xml-security-c: 1.6.3 -> 3.0.4

This commit is contained in:
Robin Gloster 2019-07-30 00:05:21 +02:00
parent 9ff94fb740
commit bb7c98c162
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF

View file

@ -1,17 +1,19 @@
{ stdenv, fetchgit, autoreconfHook, boost, curl, openssl, log4shib, xercesc, xml-security-c }:
{ stdenv, fetchgit, autoreconfHook, pkgconfig
, boost, curl, openssl, log4shib, xercesc, xml-security-c
}:
stdenv.mkDerivation rec {
name = "xml-tooling-c-${version}";
version = "1.6.3";
version = "3.0.4";
src = fetchgit {
url = "https://git.shibboleth.net/git/cpp-xmltooling.git";
rev = version;
sha256 = "09z2pp3yy3kqx22vwgxyi3s0vlpdv9camw8dpi3q8piff6zxak3q";
sha256 = "0frj4w70l06nva6dvdcivgm1ax69rqbjdzzbgp0sxhiqhddslbas";
};
buildInputs = [ boost curl openssl log4shib xercesc xml-security-c ];
nativeBuildInputs = [ autoreconfHook ];
nativeBuildInputs = [ autoreconfHook pkgconfig ];
enableParallelBuilding = true;