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.
27 lines
779 B
Nix
27 lines
779 B
Nix
{ stdenv, fetchgit, autoreconfHook, pkg-config
|
|
, boost, curl, openssl, log4shib, xercesc, xml-security-c
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xml-tooling-c";
|
|
version = "3.0.4";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.shibboleth.net/git/cpp-xmltooling.git";
|
|
rev = version;
|
|
sha256 = "0frj4w70l06nva6dvdcivgm1ax69rqbjdzzbgp0sxhiqhddslbas";
|
|
};
|
|
|
|
buildInputs = [ boost curl openssl log4shib xercesc xml-security-c ];
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A low-level library that provides a high level interface to XML processing for OpenSAML 2";
|
|
platforms = platforms.unix;
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.jammerful ];
|
|
};
|
|
}
|