about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/xml-security-c/default.nix
blob: 6be958d7d24d2cf75709a13efd74f5cb520edd63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, fetchurl, xalanc, xercesc, openssl, pkg-config }:

stdenv.mkDerivation rec {
  pname = "xml-security-c";
  version = "2.0.4";

  src = fetchurl {
    url = "mirror://apache/santuario/c-library/${pname}-${version}.tar.gz";
    sha256 = "sha256-p42mcg9sK6FBANJCYTHg0z6sWi26XMEb3QSXS364kAM=";
  };

  configureFlags = [
    "--with-openssl"
    "--with-xerces"
    "--with-xalan"
  ];

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ xalanc xercesc openssl ];

  meta = {
    homepage = "https://santuario.apache.org/";
    description = "C++ Implementation of W3C security standards for XML";
    license = lib.licenses.gpl2;
    platforms = lib.platforms.unix;
    maintainers = [ lib.maintainers.jagajaga ];
  };
}