depot/third_party/nixpkgs/pkgs/development/perl-modules/NetRemctl/default.nix

20 lines
263 B
Nix

{
buildPerlModule,
remctl,
TestPod,
}:
buildPerlModule {
pname = "NetRemctl";
inherit (remctl) meta src version;
postPatch = ''
cp -R tests/tap/perl/Test perl/t/lib
cd perl
'';
buildInputs = [ remctl ];
checkInputs = [ TestPod ];
}