1 { lib, stdenv, fetchgit, autoreconfHook, pkg-config
2 , boost, openssl, log4shib, xercesc, xml-security-c, xml-tooling-c, zlib
5 stdenv.mkDerivation rec {
6 pname = "opensaml-cpp";
10 url = "https://git.shibboleth.net/git/cpp-opensaml.git";
12 sha256 = "0ms3sqmwqkrqb92d7jy2hqwnz5yd7cbrz73n321jik0jilrwl5w8";
16 boost openssl log4shib xercesc xml-security-c xml-tooling-c zlib
18 nativeBuildInputs = [ autoreconfHook pkg-config ];
20 configureFlags = [ "--with-xmltooling=${xml-tooling-c}" ];
22 NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
24 enableParallelBuilding = true;
27 homepage = "https://shibboleth.net/products/opensaml-cpp.html";
28 description = "A low-level library written in C++ that provides support for producing and consuming SAML messages";
29 platforms = platforms.unix;
30 license = licenses.asl20;
31 maintainers = [ maintainers.jammerful ];