about summary refs log tree commit diff
path: root/pkgs/development/libraries/libcouchbase/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/libcouchbase/default.nix')
-rw-r--r--pkgs/development/libraries/libcouchbase/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/development/libraries/libcouchbase/default.nix b/pkgs/development/libraries/libcouchbase/default.nix
deleted file mode 100644
index 4f813d74a897..000000000000
--- a/pkgs/development/libraries/libcouchbase/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libevent, openssl}:
-
-stdenv.mkDerivation rec {
-  pname = "libcouchbase";
-  version = "3.3.9";
-
-  src = fetchFromGitHub {
-    owner = "couchbase";
-    repo = "libcouchbase";
-    rev = version;
-    sha256 = "sha256-dvXRbAdgb1WmKLijYkx6+js60ZxK1Tl2aTFSF7EpN74=";
-  };
-
-  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;
-  };
-}