2023-09-14 15:35:58 -05:00
|
|
|
{
|
|
|
|
stdenv,
|
|
|
|
zola,
|
2025-01-15 13:50:07 -06:00
|
|
|
terminimal,
|
2023-09-14 15:35:58 -05:00
|
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "averywinters.org";
|
|
|
|
version = "1.0.0";
|
|
|
|
src = ./.;
|
|
|
|
nativeBuildInputs = [zola];
|
|
|
|
configurePhase = ''
|
|
|
|
mkdir -p themes
|
2025-01-15 13:50:07 -06:00
|
|
|
ln -snf "${terminimal}" "themes/terminimal"
|
2023-09-14 15:35:58 -05:00
|
|
|
'';
|
|
|
|
buildPhase = "zola build";
|
|
|
|
installPhase = "cp -r public $out";
|
|
|
|
}
|