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"; sha256 = "0hqsap82zklhi5fxhc69kxrwzb0g9566f7sdpz7f9gyxkmyam839";
}; };
propagatedBuildInputs = with self; [ pkgs.curl pkgs.openssl ]; propagatedBuildInputs = with self; [ pkgs.curl pkgs.openssl.out ];
# error: invalid command 'test' # error: invalid command 'test'
doCheck = false; doCheck = false;
@ -19270,6 +19270,11 @@ in modules // {
export PYCURL_SSL_LIBRARY=openssl export PYCURL_SSL_LIBRARY=openssl
''; '';
#TODO no idea why this is needed
postInstall = ''
ln -s ${pkgs.openssl.out}/lib/libcrypto* $out/lib/
'';
meta = { meta = {
homepage = http://pycurl.sourceforge.net/; homepage = http://pycurl.sourceforge.net/;
description = "Python wrapper for libcurl"; description = "Python wrapper for libcurl";