blog/hub.nix
2026-02-16 15:55:05 +00:00

22 lines
263 B
Nix

{
lib,
stdenv,
hugo,
}:
stdenv.mkDerivation {
pname = "blog";
version = "0.1.0";
src = lib.cleanSource ./.;
buildInputs = [ hugo ];
buildPhase = ''
hugo --minify
'';
installPhase = ''
mkdir -p $out
cp -r public/* $out/
'';
}