default.nix: format
This commit is contained in:
21
default.nix
21
default.nix
@@ -1,17 +1,26 @@
|
||||
{ stdenv
|
||||
, gnumake
|
||||
, rsync
|
||||
, zola
|
||||
{
|
||||
gnumake,
|
||||
rsync,
|
||||
stdenv,
|
||||
zola,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "uninsane-dot-org";
|
||||
src = ./.;
|
||||
buildInputs = [ rsync zola ];
|
||||
nativeBuildInputs = [ gnumake ];
|
||||
|
||||
buildInputs = [
|
||||
rsync
|
||||
zola
|
||||
];
|
||||
nativeBuildInputs = [
|
||||
gnumake
|
||||
];
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/share/uninsane-dot-org
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
rm $out/share/uninsane-dot-org/404.html
|
||||
'';
|
||||
|
Reference in New Issue
Block a user