17 lines
300 B
Nix
17 lines
300 B
Nix
{
|
|
stdenv,
|
|
zola,
|
|
zerm,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "averywinters.org";
|
|
version = "1.0.0";
|
|
src = ./.;
|
|
nativeBuildInputs = [zola];
|
|
configurePhase = ''
|
|
mkdir -p themes
|
|
ln -snf "${zerm}" "themes/zerm"
|
|
'';
|
|
buildPhase = "zola build";
|
|
installPhase = "cp -r public $out";
|
|
}
|