2005-01-22 00:19:27 +00:00
|
|
|
perl:
|
|
|
|
|
2013-08-26 10:04:56 +00:00
|
|
|
{ buildInputs ? [], name, ... } @ attrs:
|
2005-01-22 00:19:27 +00:00
|
|
|
|
2009-02-12 15:56:35 +00:00
|
|
|
perl.stdenv.mkDerivation (
|
|
|
|
{
|
2015-10-28 17:56:00 +00:00
|
|
|
outputs = [ "out" "docdev" ];
|
2013-08-26 10:04:56 +00:00
|
|
|
|
2009-02-12 15:56:35 +00:00
|
|
|
doCheck = true;
|
2013-08-26 10:04:56 +00:00
|
|
|
|
2009-02-12 15:56:35 +00:00
|
|
|
checkTarget = "test";
|
2013-08-26 10:04:56 +00:00
|
|
|
|
2009-07-02 13:54:52 +00:00
|
|
|
# Prevent CPAN downloads.
|
|
|
|
PERL_AUTOINSTALL = "--skipdeps";
|
|
|
|
|
2014-04-10 11:45:26 +00:00
|
|
|
# Avoid creating perllocal.pod, which contains a timestamp
|
|
|
|
installTargets = "pure_install";
|
|
|
|
|
2009-07-02 13:54:52 +00:00
|
|
|
# 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;
|
2009-02-12 15:56:35 +00:00
|
|
|
}
|
|
|
|
//
|
|
|
|
attrs
|
|
|
|
//
|
|
|
|
{
|
2013-08-26 10:04:56 +00:00
|
|
|
name = "perl-" + name;
|
2009-02-12 15:56:35 +00:00
|
|
|
builder = ./builder.sh;
|
2010-04-01 14:41:51 +00:00
|
|
|
buildInputs = buildInputs ++ [ perl ];
|
2009-02-12 15:56:35 +00:00
|
|
|
}
|
|
|
|
)
|