9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
33 lines
813 B
Nix
33 lines
813 B
Nix
{ stdenv, fetchFromGitHub, boost, libxml2, pkg-config, docbook2x, curl, autoreconfHook, cppunit }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libcmis";
|
|
version = "0.5.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tdf";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0s6prfh55hn11vrs72ph1gs01v0vngly81pvyjm5v1sgwymdxx57";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config docbook2x ];
|
|
buildInputs = [ boost libxml2 curl cppunit ];
|
|
|
|
configureFlags = [
|
|
"--disable-werror"
|
|
"DOCBOOK2MAN=${docbook2x}/bin/docbook2man"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "C++ client library for the CMIS interface";
|
|
homepage = "https://sourceforge.net/projects/libcmis/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|