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