default.nix: format

This commit is contained in:
2024-11-16 14:32:25 +00:00
parent 70a0b79689
commit ae49127473

View File

@@ -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
'';