17 lines
215 B
Nix
17 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
|
||
|
'';
|
||
|
|
||
|
}
|