haccfiles/websites/infra4future.de/default.nix

15 lines
229 B
Nix
Raw Normal View History

{ jekyll, stdenvNoCC }:
stdenvNoCC.mkDerivation {
name = "infra4future.de-static";
src = ./.;
phases = [ "buildPhase" ];
buildPhase = ''
cd $src
${jekyll}/bin/jekyll build -d $out --disable-disk-cache
'';
}