Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
boost,
|
|
openssl,
|
|
log4shib,
|
|
xercesc,
|
|
xml-security-c,
|
|
xml-tooling-c,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "opensaml-cpp";
|
|
version = "3.0.1";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.shibboleth.net/git/cpp-opensaml.git";
|
|
rev = version;
|
|
sha256 = "0ms3sqmwqkrqb92d7jy2hqwnz5yd7cbrz73n321jik0jilrwl5w8";
|
|
};
|
|
|
|
buildInputs = [
|
|
boost
|
|
openssl
|
|
log4shib
|
|
xercesc
|
|
xml-security-c
|
|
xml-tooling-c
|
|
zlib
|
|
];
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
configureFlags = [ "--with-xmltooling=${xml-tooling-c}" ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString (!stdenv.hostPlatform.isDarwin) "-std=c++14";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://shibboleth.net/products/opensaml-cpp.html";
|
|
description = "Low-level library written in C++ that provides support for producing and consuming SAML messages";
|
|
mainProgram = "samlsign";
|
|
platforms = platforms.unix;
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|