depot/third_party/nixpkgs/pkgs/development/libraries/libcouchbase/default.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

30 lines
752 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libevent, openssl}:
stdenv.mkDerivation rec {
pname = "libcouchbase";
version = "3.3.7";
src = fetchFromGitHub {
owner = "couchbase";
repo = "libcouchbase";
rev = version;
sha256 = "sha256-EPVz9+qEuJe4VGXNuUnbH61EDxdyohZhxoxleO5j/Uk=";
};
cmakeFlags = [ "-DLCB_NO_MOCK=ON" ];
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libevent openssl ];
# Running tests in parallel does not work
enableParallelChecking = false;
doCheck = !stdenv.isDarwin;
meta = with lib; {
description = "C client library for Couchbase";
homepage = "https://github.com/couchbase/libcouchbase";
license = licenses.asl20;
platforms = platforms.unix;
};
}