linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / xml-security-c / default.nix
blob7548a45e5d41693ec42b14afd99bee6a0312ef6b
1 { lib, stdenv, fetchurl, xalanc, xercesc, openssl, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "xml-security-c";
5   version = "2.0.2";
7   src = fetchurl {
8     url = "https://www.apache.org/dist/santuario/c-library/${pname}-${version}.tar.gz";
9     sha256 = "1prh5sxzipkqglpsh53iblbr7rxi54wbijxdjiahzjmrijqa40y3";
10   };
12   configureFlags = [
13     "--with-openssl"
14     "--with-xerces"
15     "--with-xalan"
16   ];
18   nativeBuildInputs = [ pkg-config ];
19   buildInputs = [ xalanc xercesc openssl ];
21   meta = {
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 ];
27   };