lol

mongoc: init at 1.1.10

[Bjørn: Minor coding style cleanup.]

authored by

Ian Duncan and committed by
Bjørn Forsman
4bdcf1fa fd7144e4

+28
+26
pkgs/development/libraries/mongoc/default.nix
··· 1 + { stdenv, fetchzip, autoconf, automake114x, perl, pkgconfig, libbson, libtool 2 + , openssl, which 3 + }: 4 + 5 + let 6 + version = "1.1.10"; 7 + in 8 + 9 + stdenv.mkDerivation rec { 10 + name = "mongoc-${version}"; 11 + 12 + src = fetchzip { 13 + url = "https://github.com/mongodb/mongo-c-driver/releases/download/${version}/mongo-c-driver-${version}.tar.gz"; 14 + sha256 = "13yg8dpqgbpc44lsblr3szk2a5bnl2prlayv4xlkivx90m86lcx3"; 15 + }; 16 + 17 + propagatedBuildInputs = [ libbson ]; 18 + buildInputs = [ autoconf automake114x libtool openssl perl pkgconfig which ]; 19 + 20 + meta = with stdenv.lib; { 21 + description = "The official C client library for MongoDB"; 22 + homepage = "https://github.com/mongodb/mongo-c-driver"; 23 + license = licenses.asl20; 24 + platforms = platforms.all; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 14846 14846 inherit (pkgs.gnome) GConf; 14847 14847 }; 14848 14848 14849 + mongoc = callPackage ../development/libraries/mongoc { }; 14850 + 14849 14851 mupen64plus = callPackage ../misc/emulators/mupen64plus { }; 14850 14852 14851 14853 mupen64plus1_5 = callPackage ../misc/emulators/mupen64plus/1.5.nix { };