Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
61 lines
1.0 KiB
Nix
61 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
openssl,
|
|
zlib,
|
|
zstd,
|
|
icu,
|
|
cyrus_sasl,
|
|
snappy,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mongoc";
|
|
version = "1.30.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mongodb";
|
|
repo = "mongo-c-driver";
|
|
tag = version;
|
|
hash = "sha256-3mzqsrbXfrtAAC5igIna5dAgU8FH23lkMS2IacVlCmI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
zlib
|
|
zstd
|
|
icu
|
|
cyrus_sasl
|
|
snappy
|
|
];
|
|
|
|
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 = "Official C client library for MongoDB";
|
|
homepage = "http://mongoc.org";
|
|
license = licenses.asl20;
|
|
mainProgram = "mongoc-stat";
|
|
maintainers = with maintainers; [ archer-65 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|