nixpkgs/pkgs/by-name/li/libcouchbase/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
765 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libevent, openssl}:
2014-11-06 06:48:13 +00:00
stdenv.mkDerivation rec {
pname = "libcouchbase";
2023-10-01 02:28:47 +00:00
version = "3.3.9";
src = fetchFromGitHub {
owner = "couchbase";
2017-08-22 21:31:38 +00:00
repo = "libcouchbase";
rev = version;
2023-10-01 02:28:47 +00:00
sha256 = "sha256-dvXRbAdgb1WmKLijYkx6+js60ZxK1Tl2aTFSF7EpN74=";
2014-11-06 06:48:13 +00:00
};
cmakeFlags = [ "-DLCB_NO_MOCK=ON" ];
2014-11-06 06:48:13 +00:00
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libevent openssl ];
# Running tests in parallel does not work
enableParallelChecking = false;
2018-07-16 16:26:13 +00:00
doCheck = !stdenv.hostPlatform.isDarwin;
2014-11-06 06:48:13 +00:00
meta = with 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
}