forked from mirrors/nixpkgs
mongodb: fix build on OSX by adding Security framework
This commit is contained in:
parent
83df0e7b18
commit
6bfbb7a07c
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchurl, fetchpatch, scons, boost, gperftools, pcre-cpp, snappy
|
||||
, zlib, libyamlcpp, sasl, openssl, libpcap, wiredtiger
|
||||
, zlib, libyamlcpp, sasl, openssl, libpcap, wiredtiger, Security
|
||||
}:
|
||||
|
||||
# Note:
|
||||
|
@ -22,8 +22,8 @@ let version = "3.2.9";
|
|||
|
||||
buildInputs = [
|
||||
sasl boost gperftools pcre-cpp snappy
|
||||
zlib libyamlcpp sasl openssl libpcap
|
||||
]; # ++ optional stdenv.is64bit wiredtiger;
|
||||
zlib libyamlcpp sasl openssl.dev openssl.out libpcap
|
||||
] ++ stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
other-args = concatStringsSep " " ([
|
||||
"--ssl"
|
||||
|
|
|
@ -10039,6 +10039,7 @@ in
|
|||
|
||||
mongodb = callPackage ../servers/nosql/mongodb {
|
||||
sasl = cyrus_sasl;
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
mongodb248 = callPackage ../servers/nosql/mongodb/2.4.8.nix { };
|
||||
|
|
Loading…
Reference in a new issue