pycurl: add missing shared library

This commit is contained in:
Matthias Herrmann
2016-10-29 18:46:21 +02:00
parent a22c990e33
commit 9431130f4b
+6 -1
View File
@@ -19260,7 +19260,7 @@ in modules // {
sha256 = "0hqsap82zklhi5fxhc69kxrwzb0g9566f7sdpz7f9gyxkmyam839";
};
propagatedBuildInputs = with self; [ pkgs.curl pkgs.openssl ];
propagatedBuildInputs = with self; [ pkgs.curl pkgs.openssl.out ];
# error: invalid command 'test'
doCheck = false;
@@ -19270,6 +19270,11 @@ in modules // {
export PYCURL_SSL_LIBRARY=openssl
'';
#TODO no idea why this is needed
postInstall = ''
ln -s ${pkgs.openssl.out}/lib/libcrypto* $out/lib/
'';
meta = {
homepage = http://pycurl.sourceforge.net/;
description = "Python wrapper for libcurl";