knazarov.com/knazarov.com.nix

26 lines
316 B
Nix
Raw 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
];
src = ./.;
}