about summary refs log tree commit diff
path: root/pkgs/development/libraries/mongoc
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-22 11:16:13 +0300
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-22 11:16:13 +0300
commitf7beea058c020a16fcc6a266667772c7871a05c9 (patch)
treee8e3a0e88dc1f9d9efda48382e7ea39ec896258d /pkgs/development/libraries/mongoc
parentf1992487d64870512fc73ab78374d747953b485a (diff)
mongoc: unbreak on x86_64-darwin
Diffstat (limited to 'pkgs/development/libraries/mongoc')
-rw-r--r--pkgs/development/libraries/mongoc/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/libraries/mongoc/default.nix b/pkgs/development/libraries/mongoc/default.nix
index edd86dd71cdf5..6defd508a74d3 100644
--- a/pkgs/development/libraries/mongoc/default.nix
+++ b/pkgs/development/libraries/mongoc/default.nix
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
     cyrus_sasl
     snappy
   ] ++ lib.optionals stdenv.isDarwin [
-    darwin.apple_sdk.frameworks.Security
+    darwin.apple_sdk_11_0.frameworks.Security
   ];
 
   cmakeFlags = [
@@ -56,7 +56,6 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with lib; {
-    broken = stdenv.isDarwin && stdenv.isx86_64;
     description = "The official C client library for MongoDB";
     homepage = "http://mongoc.org";
     license = licenses.asl20;