about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-01-20 13:41:30 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-01-20 14:08:17 +0100
commitcd993d0e10b1bcc02d579843902398fbdb702e81 (patch)
tree24ed47aa61599f19d21e5f6a45913c4eae4bdc88 /pkgs
parent365ce3ddba0554c1a8c0ac0abd343ac907d04e66 (diff)
downloadnixlib-cd993d0e10b1bcc02d579843902398fbdb702e81.tar
nixlib-cd993d0e10b1bcc02d579843902398fbdb702e81.tar.gz
nixlib-cd993d0e10b1bcc02d579843902398fbdb702e81.tar.bz2
nixlib-cd993d0e10b1bcc02d579843902398fbdb702e81.tar.lz
nixlib-cd993d0e10b1bcc02d579843902398fbdb702e81.tar.xz
nixlib-cd993d0e10b1bcc02d579843902398fbdb702e81.tar.zst
nixlib-cd993d0e10b1bcc02d579843902398fbdb702e81.zip
perl DB_file: fix build by not changing $out/lib/perl5
The package already installs into $oul/lib/perl5/site_perl by itself.
Presumably it broke after d0bad145f5 due to removing perllocal.pod
(because this compiles on master and not here).
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/perl-modules/DB_File/default.nix8
1 files changed, 0 insertions, 8 deletions
diff --git a/pkgs/development/perl-modules/DB_File/default.nix b/pkgs/development/perl-modules/DB_File/default.nix
index 4195f8d613e7..7dd04463d18f 100644
--- a/pkgs/development/perl-modules/DB_File/default.nix
+++ b/pkgs/development/perl-modules/DB_File/default.nix
@@ -16,12 +16,4 @@ buildPerlPackage rec {
     INCLUDE = ${db}/include
     EOF
   '';
-
-  # I don't know about perl paths, but PERL5LIB env var is managed through
-  # lib/perl5/site_perl, and the *.pm should be inside lib/perl5/site_perl/...
-  # for other packages to get that in the PERL5LIB env var.
-  postInstall = ''
-    mkdir -p $out/lib/perl5/site_perl/
-    cp -R $out/lib/perl5/5* $out/lib/perl5/site_perl
-  '';
 }