stuebinm
ae67b38304
however, for some reason, ACME still fails. Hopefully it's just the rate limit, but it does look suspicious; there' still a "www.muc.hacc.space" in the log that oughtn't be there …
14 lines
229 B
Nix
14 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
|
|
'';
|
|
|
|
}
|