mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
mongoc: init at 1.1.10
[Bjørn: Minor coding style cleanup.]
This commit is contained in:
parent
fd7144e455
commit
4bdcf1fa95
2 changed files with 28 additions and 0 deletions
26
pkgs/development/libraries/mongoc/default.nix
Normal file
26
pkgs/development/libraries/mongoc/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchzip, autoconf, automake114x, perl, pkgconfig, libbson, libtool
|
||||
, openssl, which
|
||||
}:
|
||||
|
||||
let
|
||||
version = "1.1.10";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mongoc-${version}";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/mongodb/mongo-c-driver/releases/download/${version}/mongo-c-driver-${version}.tar.gz";
|
||||
sha256 = "13yg8dpqgbpc44lsblr3szk2a5bnl2prlayv4xlkivx90m86lcx3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ libbson ];
|
||||
buildInputs = [ autoconf automake114x libtool openssl perl pkgconfig which ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "The official C client library for MongoDB";
|
||||
homepage = "https://github.com/mongodb/mongo-c-driver";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -14846,6 +14846,8 @@ let
|
|||
inherit (pkgs.gnome) GConf;
|
||||
};
|
||||
|
||||
mongoc = callPackage ../development/libraries/mongoc { };
|
||||
|
||||
mupen64plus = callPackage ../misc/emulators/mupen64plus { };
|
||||
|
||||
mupen64plus1_5 = callPackage ../misc/emulators/mupen64plus/1.5.nix { };
|
||||
|
|
Loading…
Reference in a new issue