nixpkgs/pkgs/development/libraries/libcouchbase/default.nix

29 lines
689 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, pkgconfig, libevent, openssl}:
2014-11-06 06:48:13 +00:00
stdenv.mkDerivation rec {
name = "libcouchbase-${version}";
version = "2.7.2";
src = fetchFromGitHub {
owner = "couchbase";
repo ="libcouchbase";
rev = version;
sha256 = "1182r9z3cykkgx1vn36l0a50wvh5mr3yj89x0ynyjhfi3iwalrar";
2014-11-06 06:48:13 +00:00
};
cmakeFlags = "-DLCB_NO_MOCK=ON";
2014-11-06 06:48:13 +00:00
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ libevent openssl ];
doCheck = true;
checkPhase = "ctest";
2014-11-06 06:48:13 +00:00
meta = with stdenv.lib; {
2015-04-28 08:54:58 +00:00
description = "C client library for Couchbase";
homepage = https://github.com/couchbase/libcouchbase;
license = licenses.asl20;
platforms = platforms.unix;
2014-11-06 06:48:13 +00:00
};
2015-04-28 08:54:58 +00:00
}