2017-03-15 20:40:47 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, libevent, openssl}:
|
2014-11-06 06:48:13 +00:00
|
|
|
|
2017-03-15 20:40:47 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libcouchbase";
|
2019-07-01 22:34:53 +01:00
|
|
|
version = "2.10.4";
|
2017-03-15 20:40:47 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "couchbase";
|
2017-08-22 22:31:38 +01:00
|
|
|
repo = "libcouchbase";
|
2017-03-15 20:40:47 +00:00
|
|
|
rev = version;
|
2019-07-01 22:34:53 +01:00
|
|
|
sha256 = "1yfmcx65aqd5l87scha6kmm2s38n85ci3gg0h6qfs16s3jfi6bw7";
|
2014-11-06 06:48:13 +00:00
|
|
|
};
|
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
cmakeFlags = [ "-DLCB_NO_MOCK=ON" ];
|
2014-11-06 06:48:13 +00:00
|
|
|
|
2015-07-25 14:36:28 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2017-03-15 20:40:47 +00:00
|
|
|
buildInputs = [ libevent openssl ];
|
|
|
|
|
2018-12-11 08:49:30 +00:00
|
|
|
# Running tests in parallel does not work
|
|
|
|
enableParallelChecking = false;
|
|
|
|
|
2019-10-05 12:49:52 +01:00
|
|
|
patches = [ ./0001-Fix-timeouts-in-libcouchbase-testsuite.patch ];
|
|
|
|
|
2018-07-16 17:26:13 +01:00
|
|
|
doCheck = !stdenv.isDarwin;
|
2014-11-06 06:48:13 +00:00
|
|
|
|
2017-03-15 20:40:47 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-04-28 09:54:58 +01:00
|
|
|
description = "C client library for Couchbase";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/couchbase/libcouchbase;
|
2017-03-15 20:40:47 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
2014-11-06 06:48:13 +00:00
|
|
|
};
|
2015-04-28 09:54:58 +01:00
|
|
|
}
|