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