blob: f2d6f024fd068774b827669bc6da65e8db07364a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
python3,
stdenv,
}:
stdenv.mkDerivation {
pname = "increment-zone-serials";
version = "1.0.0";
propagatedBuildInputs = [
(python3.withPackages (py: []))
];
dontUnpack = true;
installPhase = ''
install -Dm755 ${./increment-zone-serials.py} $out/bin/increment-zone-serials
'';
}
|