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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
738 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, xalanc, xercesc, openssl, pkg-config }:
2016-04-26 16:13:09 +00:00
stdenv.mkDerivation rec {
pname = "xml-security-c";
2021-12-06 02:17:15 +00:00
version = "2.0.4";
2016-04-26 16:13:09 +00:00
src = fetchurl {
url = "mirror://apache/santuario/c-library/${pname}-${version}.tar.gz";
2021-12-06 02:17:15 +00:00
sha256 = "sha256-p42mcg9sK6FBANJCYTHg0z6sWi26XMEb3QSXS364kAM=";
2016-04-26 16:13:09 +00:00
};
2017-08-26 08:23:16 +00:00
configureFlags = [
"--with-openssl"
"--with-xerces"
"--with-xalan"
];
2016-04-26 16:13:09 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ xalanc xercesc openssl ];
2016-04-26 16:13:09 +00:00
meta = {
homepage = "https://santuario.apache.org/";
2016-04-26 16:13:09 +00:00
description = "C++ Implementation of W3C security standards for XML";
license = lib.licenses.gpl2;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.jagajaga ];
2016-04-26 16:13:09 +00:00
};
}