knazarov.com/knazarov.com.nix

27 lines
330 B
Nix
Raw Permalink Normal View History

2023-06-11 17:41:26 +00:00
{
pkgs,
stdenv
}:
stdenv.mkDerivation rec {
pname = "knazarov.com";
version = "0.1.0";
dontPatch = true;
installFlags = "PREFIX=${placeholder "out"} VERSION=${version}";
2023-06-11 18:01:25 +00:00
preBuild = ''
patchShebangs bin/*.sh
'';
2023-06-11 17:41:26 +00:00
buildInputs = with pkgs; [
gawk
gnused
rsync
2023-06-12 12:40:15 +00:00
darkhttpd
2023-06-11 17:41:26 +00:00
];
src = ./.;
}