1 { lib, stdenv, fetchgit, autoreconfHook, pkg-config
2 , boost, curl, openssl, log4shib, xercesc, xml-security-c
5 stdenv.mkDerivation rec {
6 pname = "xml-tooling-c";
10 url = "https://git.shibboleth.net/git/cpp-xmltooling.git";
12 sha256 = "0frj4w70l06nva6dvdcivgm1ax69rqbjdzzbgp0sxhiqhddslbas";
15 buildInputs = [ boost curl openssl log4shib xercesc xml-security-c ];
16 nativeBuildInputs = [ autoreconfHook pkg-config ];
18 env.NIX_CFLAGS_COMPILE = lib.optionalString (!stdenv.isDarwin) "-std=c++14";
20 enableParallelBuilding = true;
23 description = "A low-level library that provides a high level interface to XML processing for OpenSAML 2";
24 platforms = platforms.unix;
25 license = licenses.asl20;
26 maintainers = [ maintainers.jammerful ];