mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
libmongo-client: Add derivation
This commit is contained in:
parent
e6a486058f
commit
5545212000
28
pkgs/development/libraries/libmongo-client/default.nix
Normal file
28
pkgs/development/libraries/libmongo-client/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libmongo-client-0.1.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "algernon";
|
||||
repo = "libmongo-client";
|
||||
rev = name;
|
||||
sha256 = "1cjx06i3gd9zkyvwm2ysjrf0hkhr7bjg3c27s7n0y31j10igfjp0";
|
||||
};
|
||||
|
||||
buildInputs = [ autoreconfHook pkgconfig ];
|
||||
propagatedBuildInputs = [ glib ];
|
||||
|
||||
postPatch = ''
|
||||
# Fix when uses glib in public headers
|
||||
sed -i 's/Requires.private/Requires/g' src/libmongo-client.pc.in
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://algernon.github.io/libmongo-client/;
|
||||
description = "An alternative C driver for MongoDB";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
@ -1777,6 +1777,8 @@ let
|
||||
|
||||
libmbim = callPackage ../development/libraries/libmbim { };
|
||||
|
||||
libmongo-client = callPackage ../development/libraries/libmongo-client { };
|
||||
|
||||
libtorrent = callPackage ../tools/networking/p2p/libtorrent { };
|
||||
|
||||
libtorrent-git = callPackage ../tools/networking/p2p/libtorrent/git.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user