python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / shibboleth-sp / default.nix
blob5dd997352f1397c1b104f4d0565f9b9687142335
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";
5   version = "3.0.4.1";
7   src = fetchgit {
8     url = "https://git.shibboleth.net/git/cpp-sp.git";
9     rev = version;
10     sha256 = "1qb4dbz5gk10b9w1rf6f4vv7c2wb3a8bfzif6yiaq96ilqad7gdr";
11   };
13   nativeBuildInputs = [ autoreconfHook pkg-config ];
14   buildInputs = [ boost fcgi openssl opensaml-cpp log4shib xercesc xml-security-c xml-tooling-c ];
16   configureFlags = [
17     "--without-apxs"
18     "--with-xmltooling=${xml-tooling-c}"
19     "--with-saml=${opensaml-cpp}"
20     "--with-fastcgi"
21   ];
23   NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
25   enableParallelBuilding = true;
27   meta = with lib; {
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 ];
33   };