mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Merge pull request #295115 from LeSuisse/libbson-drop
libbson: drop in favor of mongoc
This commit is contained in:
commit
1a4fe0e069
@ -1,23 +0,0 @@
|
||||
{ fetchFromGitHub, perl, lib, stdenv, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libbson";
|
||||
version = "1.9.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mongodb";
|
||||
repo = "libbson";
|
||||
rev = version;
|
||||
sha256 = "16rmzxhhmbvhp4q6qac5j9c74z2pcg5raag5w16mynzikdd2l05b";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ perl ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A C Library for parsing, editing, and creating BSON documents";
|
||||
homepage = "https://github.com/mongodb/libbson";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -561,6 +561,7 @@ mapAliases ({
|
||||
libayatana-appindicator-gtk3 = libayatana-appindicator; # Added 2022-10-18
|
||||
libbencodetools = bencodetools; # Added 2022-07-30
|
||||
libbpf_1 = libbpf; # Added 2022-12-06
|
||||
libbson = mongoc; # Added 2024-03-11
|
||||
libcap_pam = throw "'libcap_pam' has been replaced with 'libcap'"; # Converted to throw 2023-09-10
|
||||
libclc = llvmPackages_latest.libclc; # Added 2023-10-28
|
||||
libgme = game-music-emu; # Added 2022-07-20
|
||||
|
@ -22176,8 +22176,6 @@ with pkgs;
|
||||
|
||||
libbs2b = callPackage ../development/libraries/audio/libbs2b { };
|
||||
|
||||
libbson = callPackage ../development/libraries/libbson { };
|
||||
|
||||
libbytesize = callPackage ../development/libraries/libbytesize { };
|
||||
|
||||
libcaca = callPackage ../development/libraries/libcaca { };
|
||||
|
Loading…
Reference in New Issue
Block a user