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 …
16 lines
215 B
Nix
16 lines
215 B
Nix
{ stdenvNoCC }:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
name = "hacc.earth-static";
|
|
|
|
src = ./.;
|
|
|
|
phases = [ "buildPhase" ];
|
|
buildPhase = ''
|
|
cd $src
|
|
mkdir -p $out
|
|
cp -r * $out
|
|
rm $out/default.nix
|
|
'';
|
|
|
|
}
|