summary refs log blame commit diff
path: root/pkgs/development/libraries/libcouchbase/default.nix
blob: 9e271a781e1151f2b75fac06c2e2b1f2704f8b4d (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                      
 
                         
                         
                    


                         
                          
                  
                                                                   

    
                                      
 
                                           

                                     


                                           
                             
 
                    
                                                   
                                                           

                               
    
 
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libevent, openssl}:

stdenv.mkDerivation rec {
  pname = "libcouchbase";
  version = "3.1.4";

  src = fetchFromGitHub {
    owner = "couchbase";
    repo = "libcouchbase";
    rev = version;
    sha256 = "sha256-6IBTUodKpE/RkqQb0IwSEgXfnIhfYyNNrZt5hxJ6DV8=";
  };

  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;
  };
}