mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 06:05:13 +00:00
512fbb280f
(cherry picked from commit 91c7e8747af1fdc2a70cd98594ccbb12a5c6902d) Signed-off-by: Domen Kožar <domen@dev.si>
28 lines
772 B
Nix
28 lines
772 B
Nix
{ stdenv, fetchgit, autoconf, automake, libtool,
|
|
pkgconfig, perl, git, libevent, openssl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libcouchbase-2.4.4";
|
|
src = fetchgit {
|
|
url = "https://github.com/couchbase/libcouchbase.git";
|
|
rev = "4410eebcd813844b6cd6f9c7eeb4ab3dfa2ab8ac";
|
|
sha256 = "02lzv5l6fvnqr2l9bqfha0pzkzlzjfddn3w5zcbjz36kw4p2p4h9";
|
|
leaveDotGit = true;
|
|
};
|
|
|
|
preConfigure = ''
|
|
./config/autorun.sh
|
|
'';
|
|
|
|
configureFlags = "--disable-couchbasemock";
|
|
|
|
buildInputs = [ autoconf automake libtool pkgconfig perl git libevent openssl];
|
|
|
|
meta = {
|
|
description = "C client library for Couchbase.";
|
|
homepage = "https://github.com/couchbase/libcouchbase";
|
|
license = stdenv.lib.licenses.asl20;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|