forked from mirrors/nixpkgs
pycurl: add missing shared library
This commit is contained in:
parent
a22c990e33
commit
9431130f4b
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue