nixpkgs/pkgs/development/perl-modules/generic/default.nix
Eelco Dolstra d1a7c6e39f * Don't use nested lists.
svn path=/nixpkgs/trunk/; revision=20914
2010-04-01 14:41:51 +00:00

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 ];
}
)