install to `share/uninsane-dot-org`

This commit is contained in:
colin 2022-10-11 04:59:48 -07:00
parent 7b526e62f2
commit af93b5af8a
1 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,9 @@ with pkgs;
src = ./.;
buildInputs = [ rsync zola ];
nativeBuildInputs = [ gnumake ];
installFlags = [ "PREFIX=$(out)" ];
preInstall = ''
mkdir -p $out/share/uninsane-dot-org
'';
installFlags = [ "PREFIX=$(out)/share/uninsane-dot-org" ];
};
}