28 lines
834 B
Nix
28 lines
834 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;
|
|
sha256 = "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 = with lib; {
|
|
description = "A low-level library that provides a high level interface to XML processing for OpenSAML 2";
|
|
platforms = platforms.unix;
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|