* 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:
parent
0806854b24
commit
ce84af677b
@ -5,7 +5,16 @@ attrs:
|
|||||||
perl.stdenv.mkDerivation (
|
perl.stdenv.mkDerivation (
|
||||||
{
|
{
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
checkTarget = "test";
|
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
|
attrs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user