blob: b5b6cd6e548fc3f1291bc8fe944b868581ee3b2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ 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
'';
}
|