1{ stdenv, fetchgit, autoreconfHook, boost, curl, openssl, log4shib, xercesc, xml-security-c }:
2
3stdenv.mkDerivation rec {
4 name = "xml-tooling-c-${version}";
5 version = "1.6.3";
6
7 src = fetchgit {
8 url = "https://git.shibboleth.net/git/cpp-xmltooling.git";
9 rev = version;
10 sha256 = "09z2pp3yy3kqx22vwgxyi3s0vlpdv9camw8dpi3q8piff6zxak3q";
11 };
12
13 buildInputs = [ boost curl openssl log4shib xercesc xml-security-c ];
14 nativeBuildInputs = [ autoreconfHook ];
15
16 enableParallelBuilding = true;
17
18 meta = with stdenv.lib; {
19 description = "A low-level library that provides a high level interface to XML processing for OpenSAML 2";
20 platforms = platforms.unix;
21 license = licenses.asl20;
22 maintainers = [ maintainers.jammerful ];
23 };
24}