about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-08-02 21:09:18 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2016-08-02 21:25:34 +0200
commit93758f6b2fd4da1db7868138fcb2236145dcfcd3 (patch)
tree63cf190434ddd4c1dec2631fe0e87677a6a127c9 /pkgs
parent1c00f258953594ac8577f241ba7bea838b453889 (diff)
downloadnixlib-93758f6b2fd4da1db7868138fcb2236145dcfcd3.tar
nixlib-93758f6b2fd4da1db7868138fcb2236145dcfcd3.tar.gz
nixlib-93758f6b2fd4da1db7868138fcb2236145dcfcd3.tar.bz2
nixlib-93758f6b2fd4da1db7868138fcb2236145dcfcd3.tar.lz
nixlib-93758f6b2fd4da1db7868138fcb2236145dcfcd3.tar.xz
nixlib-93758f6b2fd4da1db7868138fcb2236145dcfcd3.tar.zst
nixlib-93758f6b2fd4da1db7868138fcb2236145dcfcd3.zip
perlPackages.NetSSLeay: link openssl pkgconfig files
Instead of linking the lib folder with the libraries, link the lib
directory from the dev output containing the pkgconfig files. This is
enough for finding the libs and fixes a build failure with libressl.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/perl-packages.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 95a762df33ee..fe6af5725bb6 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -9583,11 +9583,10 @@ let self = _self // overrides; _self = with self; {
       url = "mirror://cpan/authors/id/M/MI/MIKEM/${name}.tar.gz";
       sha256 = "06h6wbr923jxmazmv5shdg1767s7r60bvzcza52dk31yckks6l31";
     };
-    buildInputs = [ pkgs.openssl ];
     doCheck = false; # Test performs network access.
     preConfigure = ''
       mkdir openssl
-      ln -s ${pkgs.openssl.out}/lib openssl
+      ln -s ${pkgs.openssl.dev}/lib openssl
       ln -s ${pkgs.openssl.bin}/bin openssl
       ln -s ${pkgs.openssl.dev}/include openssl
       export OPENSSL_PREFIX=$(realpath openssl)