fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1perl:
2
3{ buildInputs ? [], name, ... } @ attrs:
4
5perl.stdenv.mkDerivation (
6 {
7 outputs = [ "out" "docdev" ];
8
9 doCheck = true;
10
11 checkTarget = "test";
12
13 # Prevent CPAN downloads.
14 PERL_AUTOINSTALL = "--skipdeps";
15
16 # Avoid creating perllocal.pod, which contains a timestamp
17 installTargets = "pure_install";
18
19 # From http://wiki.cpantesters.org/wiki/CPANAuthorNotes: "allows
20 # authors to skip certain tests (or include certain tests) when
21 # the results are not being monitored by a human being."
22 AUTOMATED_TESTING = true;
23 }
24 //
25 attrs
26 //
27 {
28 name = "perl-" + name;
29 builder = ./builder.sh;
30 buildInputs = buildInputs ++ [ perl ];
31 }
32)