1 { lib, stdenv, fetchurl, xalanc, xercesc, openssl, pkg-config }:
3 stdenv.mkDerivation rec {
4 pname = "xml-security-c";
8 url = "https://www.apache.org/dist/santuario/c-library/${pname}-${version}.tar.gz";
9 sha256 = "1prh5sxzipkqglpsh53iblbr7rxi54wbijxdjiahzjmrijqa40y3";
18 nativeBuildInputs = [ pkg-config ];
19 buildInputs = [ xalanc xercesc openssl ];
22 homepage = "http://santuario.apache.org/";
23 description = "C++ Implementation of W3C security standards for XML";
24 license = lib.licenses.gpl2;
25 platforms = lib.platforms.unix;
26 maintainers = [ lib.maintainers.jagajaga ];