d1a7c6e39f
svn path=/nixpkgs/trunk/; revision=20914
28 lines
562 B
Nix
28 lines
562 B
Nix
perl:
|
|
|
|
{ buildInputs ? [], ... } @ attrs:
|
|
|
|
perl.stdenv.mkDerivation (
|
|
{
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
|
|
|
# Prevent CPAN downloads.
|
|
PERL_AUTOINSTALL = "--skipdeps";
|
|
|
|
# From http://wiki.cpantesters.org/wiki/CPANAuthorNotes: "allows
|
|
# authors to skip certain tests (or include certain tests) when
|
|
# the results are not being monitored by a human being."
|
|
AUTOMATED_TESTING = true;
|
|
}
|
|
//
|
|
attrs
|
|
//
|
|
{
|
|
name = "perl-" + attrs.name;
|
|
builder = ./builder.sh;
|
|
buildInputs = buildInputs ++ [ perl ];
|
|
}
|
|
)
|