3
0
Fork 0
forked from mirrors/nixpkgs

pycurl: add missing shared library

This commit is contained in:
Matthias Herrmann 2016-10-25 17:58:19 +02:00
parent a22c990e33
commit 9431130f4b

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";