* Improve the determinism of Perl builds: don't try to download stuff

from CPAN.

svn path=/nixpkgs/trunk/; revision=16137
This commit is contained in:
Eelco Dolstra 2009-07-02 13:54:52 +00:00
parent 0806854b24
commit ce84af677b

View File

@ -5,7 +5,16 @@ 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