1 { lib, stdenv, fetchFromGitHub, boost, libxml2, pkg-config, docbook2x, curl, autoreconfHook, cppunit }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "0s6prfh55hn11vrs72ph1gs01v0vngly81pvyjm5v1sgwymdxx57";
14 nativeBuildInputs = [ autoreconfHook pkg-config docbook2x ];
15 buildInputs = [ boost libxml2 curl cppunit ];
19 "DOCBOOK2MAN=${docbook2x}/bin/docbook2man"
24 enableParallelBuilding = true;
27 description = "C++ client library for the CMIS interface";
28 homepage = "https://github.com/tdf/libcmis";
29 license = licenses.gpl2;
30 mainProgram = "cmis-client";
31 platforms = platforms.unix;