summary refs log tree commit diff
path: root/pkgs/development/perl-modules
diff options
context:
space:
mode:
authorAlexander Kjeldaas <ak@formalprivacy.com>2014-04-10 13:45:26 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-12-30 17:03:15 +0100
commitd0bad145f5e78f2be6d745da305067398722df17 (patch)
tree808e29700dbe365891830ddb2c12b83086f2e017 /pkgs/development/perl-modules
parent88fd7f452703f3280a3747e97b938c8e50ae962c (diff)
downloadnixpkgs-d0bad145f5e78f2be6d745da305067398722df17.tar
nixpkgs-d0bad145f5e78f2be6d745da305067398722df17.tar.gz
nixpkgs-d0bad145f5e78f2be6d745da305067398722df17.tar.bz2
nixpkgs-d0bad145f5e78f2be6d745da305067398722df17.tar.lz
nixpkgs-d0bad145f5e78f2be6d745da305067398722df17.tar.xz
nixpkgs-d0bad145f5e78f2be6d745da305067398722df17.tar.zst
nixpkgs-d0bad145f5e78f2be6d745da305067398722df17.zip
perl-modules: do not create perllocal.pod, for determinism
Diffstat (limited to 'pkgs/development/perl-modules')
-rw-r--r--pkgs/development/perl-modules/generic/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/perl-modules/generic/default.nix b/pkgs/development/perl-modules/generic/default.nix
index 96094ab4e53..6cd4134cc9c 100644
--- a/pkgs/development/perl-modules/generic/default.nix
+++ b/pkgs/development/perl-modules/generic/default.nix
@@ -11,6 +11,9 @@ perl.stdenv.mkDerivation (
     # Prevent CPAN downloads.
     PERL_AUTOINSTALL = "--skipdeps";
 
+    # Avoid creating perllocal.pod, which contains a timestamp
+    installTargets = "pure_install";
+
     # 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."