nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildPerlModule,
3 remctl,
4 TestPod,
5}:
6
7buildPerlModule {
8 pname = "NetRemctl";
9
10 inherit (remctl) meta src version;
11
12 postPatch = ''
13 cp -R tests/tap/perl/Test perl/t/lib
14 rm perl/t/backend/options.t
15 cd perl
16 '';
17
18 buildInputs = [ remctl ];
19
20 checkInputs = [ TestPod ];
21}