f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
49 lines
912 B
Nix
49 lines
912 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
boost,
|
|
curl,
|
|
openssl,
|
|
log4shib,
|
|
xercesc,
|
|
xml-security-c,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xml-tooling-c";
|
|
version = "3.2.4";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.shibboleth.net/git/cpp-xmltooling.git";
|
|
rev = version;
|
|
hash = "sha256-FQ109ahOSWj3hvaxu1r/0FTpCuWaLgSEKM8NBio+wqU=";
|
|
};
|
|
|
|
buildInputs = [
|
|
boost
|
|
curl
|
|
openssl
|
|
log4shib
|
|
xercesc
|
|
xml-security-c
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString (!stdenv.isDarwin) "-std=c++14";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Low-level library that provides a high level interface to XML processing for OpenSAML 2";
|
|
platforms = lib.platforms.unix;
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.sigmanificient ];
|
|
};
|
|
}
|