python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / opensaml-cpp / default.nix
blob1f4ad96c2977b980e3f2dc549e315cf054197371
1 { lib, stdenv, fetchgit, autoreconfHook, pkg-config
2 , boost, openssl, log4shib, xercesc, xml-security-c, xml-tooling-c, zlib
3 }:
5 stdenv.mkDerivation rec {
6   pname = "opensaml-cpp";
7   version = "3.0.1";
9   src = fetchgit {
10     url = "https://git.shibboleth.net/git/cpp-opensaml.git";
11     rev = version;
12     sha256 = "0ms3sqmwqkrqb92d7jy2hqwnz5yd7cbrz73n321jik0jilrwl5w8";
13   };
15   buildInputs = [
16     boost openssl log4shib xercesc xml-security-c xml-tooling-c zlib
17   ];
18   nativeBuildInputs = [ autoreconfHook pkg-config ];
20   configureFlags = [ "--with-xmltooling=${xml-tooling-c}" ];
22   NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
24   enableParallelBuilding = true;
26   meta = with lib; {
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 ];
32   };