HermitCollective.nix/sites/blog.hermitcollective.net/package.nix

16 lines
343 B
Nix
Raw Normal View History

2024-03-13 15:45:34 +00:00
{ stdenv, hugo }:
stdenv.mkDerivation {
name = "blog-hermitcollective-net";
src = ./blog;
nativeBuildInputs = [ hugo ];
buildPhase = ''
2024-03-14 10:30:39 +00:00
hugo
2024-03-13 15:45:34 +00:00
'';
2024-03-14 10:28:03 +00:00
installPhase = ''
2024-03-14 10:42:14 +00:00
mkdir -p /var/www/blog.hermitcollective.net
cp -r public/* /var/www/blog.hermitcollective.net
2024-03-14 10:46:57 +00:00
chown nginx: /var/www/blog.hermitcollective.net
2024-03-14 10:28:03 +00:00
'';
2024-03-13 15:45:34 +00:00
}