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