Merge pull request #239136 from wegank/mongoc-darwin

mongoc: unbreak on x86_64-darwin
This commit is contained in:
Martin Weinelt 2023-06-25 12:22:55 +02:00 committed by GitHub
commit 416ff5e8d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
cyrus_sasl cyrus_sasl
snappy snappy
] ++ lib.optionals stdenv.isDarwin [ ] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security darwin.apple_sdk_11_0.frameworks.Security
]; ];
cmakeFlags = [ cmakeFlags = [
@ -56,7 +56,6 @@ stdenv.mkDerivation rec {
''; '';
meta = with lib; { meta = with lib; {
broken = stdenv.isDarwin && stdenv.isx86_64;
description = "The official C client library for MongoDB"; description = "The official C client library for MongoDB";
homepage = "http://mongoc.org"; homepage = "http://mongoc.org";
license = licenses.asl20; license = licenses.asl20;

View file

@ -39524,7 +39524,7 @@ with pkgs;
openzwave = callPackage ../development/libraries/openzwave { }; openzwave = callPackage ../development/libraries/openzwave { };
mongoc = callPackage ../development/libraries/mongoc { }; mongoc = darwin.apple_sdk_11_0.callPackage ../development/libraries/mongoc { };
mongoose = callPackage ../development/libraries/science/math/mongoose { }; mongoose = callPackage ../development/libraries/science/math/mongoose { };