2022-01-07 04:07:37 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, xercesc, getopt, cmake }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-01-07 04:07:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "xalan-c";
|
2022-01-07 04:07:37 +00:00
|
|
|
version = "1.12.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-01-07 04:07:37 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "apache";
|
|
|
|
repo = "xalan-c";
|
|
|
|
rev = "Xalan-C_1_12_0";
|
|
|
|
sha256 = "sha256:0q1204qk97i9h14vxxq7phcfpyiin0i1zzk74ixvg4wqy87b62s8";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-01-07 04:07:37 +00:00
|
|
|
buildInputs = [ xercesc getopt cmake ];
|
2021-12-06 16:07:01 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = {
|
2022-01-03 16:56:52 +00:00
|
|
|
homepage = "https://xalan.apache.org/";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A XSLT processor for transforming XML documents";
|
2021-02-05 17:12:51 +00:00
|
|
|
license = lib.licenses.asl20;
|
|
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
|
|
maintainers = [ lib.maintainers.jagajaga ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|