nixpkgs/pkgs/development/libraries/xml-security-c/default.nix

29 lines
762 B
Nix
Raw Normal View History

2016-04-26 17:13:09 +01:00
{ stdenv, fetchurl, xalanc, xercesc, openssl, pkgconfig }:
stdenv.mkDerivation rec {
pname = "xml-security-c";
2019-07-29 23:03:24 +01:00
version = "2.0.2";
2016-04-26 17:13:09 +01:00
src = fetchurl {
url = "https://www.apache.org/dist/santuario/c-library/${pname}-${version}.tar.gz";
2019-07-29 23:03:24 +01:00
sha256 = "1prh5sxzipkqglpsh53iblbr7rxi54wbijxdjiahzjmrijqa40y3";
2016-04-26 17:13:09 +01:00
};
2017-08-26 09:23:16 +01:00
configureFlags = [
"--with-openssl"
"--with-xerces"
"--with-xalan"
];
2016-04-26 17:13:09 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ xalanc xercesc openssl ];
2016-04-26 17:13:09 +01:00
meta = {
homepage = http://santuario.apache.org/;
description = "C++ Implementation of W3C security standards for XML";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
2016-04-26 17:13:09 +01:00
maintainers = [ stdenv.lib.maintainers.jagajaga ];
};
}