1 { lib, stdenv, fetchgit, autoreconfHook, boost, fcgi, openssl, opensaml-cpp, log4shib, pkg-config, xercesc, xml-security-c, xml-tooling-c }:
3 stdenv.mkDerivation rec {
4 pname = "shibboleth-sp";
8 url = "https://git.shibboleth.net/git/cpp-sp.git";
10 sha256 = "1qb4dbz5gk10b9w1rf6f4vv7c2wb3a8bfzif6yiaq96ilqad7gdr";
13 nativeBuildInputs = [ autoreconfHook pkg-config ];
14 buildInputs = [ boost fcgi openssl opensaml-cpp log4shib xercesc xml-security-c xml-tooling-c ];
18 "--with-xmltooling=${xml-tooling-c}"
19 "--with-saml=${opensaml-cpp}"
23 NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
25 enableParallelBuilding = true;
28 homepage = "https://shibboleth.net/products/service-provider.html";
29 description = "Enables SSO and Federation web applications written with any programming language or framework";
30 platforms = platforms.unix;
31 license = licenses.asl20;
32 maintainers = [ maintainers.jammerful ];