12 lines
168 B
Nix
12 lines
168 B
Nix
{ fetchurl, hugo, ... }:
|
|
|
|
hugo.overrideAttrs (old: {
|
|
buildPhase = ''
|
|
hugo --minify
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r public/* $out/
|
|
'';
|
|
})
|