{ lib , stdenv , fetchFromGitHub , cmake , pkg-config , openssl , zlib , zstd , icu , cyrus_sasl , snappy , darwin }: stdenv.mkDerivation rec { pname = "mongoc"; version = "1.27.0"; src = fetchFromGitHub { owner = "mongodb"; repo = "mongo-c-driver"; rev = "refs/tags/${version}"; hash = "sha256-P0Mavs09FUmHxRYx/70wtjswWnrkQIo0+NrYtW4KJXo="; }; nativeBuildInputs = [ cmake pkg-config ]; buildInputs = [ openssl zlib zstd icu cyrus_sasl snappy ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk_11_0.frameworks.Security ]; cmakeFlags = [ "-DBUILD_VERSION=${version}" "-DENABLE_UNINSTALL=OFF" "-DENABLE_AUTOMATIC_INIT_AND_CLEANUP=OFF" "-DCMAKE_INSTALL_LIBDIR=lib" ]; # remove forbidden reference to $TMPDIR preFixup = '' rm -rf src/{libmongoc,libbson} ''; meta = with lib; { description = "The official C client library for MongoDB"; homepage = "http://mongoc.org"; license = licenses.asl20; mainProgram = "mongoc-stat"; maintainers = with maintainers; [ archer-65 ]; platforms = platforms.all; }; }