forked from mirrors/nixpkgs
Added SSL support to fetchmail, maybe its better to add an argument withSSL
?
svn path=/nixpkgs/trunk/; revision=10827
This commit is contained in:
parent
2dde1dfa4f
commit
b567be7836
|
@ -6,6 +6,10 @@ stdenv.mkDerivation {
|
|||
sha256 = "5612f9af367f641e0efd084f44fcf1889669e711dbd8c60f6b7953e494d1b09b";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib openssl ];
|
||||
|
||||
configureFlags = "--with-ssl=${openssl}";
|
||||
|
||||
patches = [ ./security-fix.patch ];
|
||||
|
||||
meta = {
|
||||
|
|
|
@ -4739,7 +4739,7 @@ rec {
|
|||
fbpanel = fbpanelFun {version="4.12";} null;
|
||||
|
||||
fetchmail = import ../applications/misc/fetchmail {
|
||||
inherit stdenv fetchurl;
|
||||
inherit stdenv fetchurl zlib openssl;
|
||||
};
|
||||
|
||||
wireshark = import ../applications/networking/sniffers/wireshark {
|
||||
|
|
Loading…
Reference in a new issue