mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 07:05:13 +00:00
f9fdf2d402
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
29 lines
832 B
Nix
29 lines
832 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.0.4";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.shibboleth.net/git/cpp-xmltooling.git";
|
|
rev = version;
|
|
sha256 = "0frj4w70l06nva6dvdcivgm1ax69rqbjdzzbgp0sxhiqhddslbas";
|
|
};
|
|
|
|
buildInputs = [ boost curl openssl log4shib xercesc xml-security-c ];
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-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 = [ maintainers.jammerful ];
|
|
};
|
|
}
|