25 lines
653 B
Nix
25 lines
653 B
Nix
{ lib, stdenv, fetchFromGitHub, xercesc, getopt, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xalan-c";
|
|
version = "1.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "apache";
|
|
repo = "xalan-c";
|
|
rev = "Xalan-C_1_12_0";
|
|
sha256 = "sha256:0q1204qk97i9h14vxxq7phcfpyiin0i1zzk74ixvg4wqy87b62s8";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ xercesc getopt ];
|
|
|
|
meta = {
|
|
homepage = "https://xalan.apache.org/";
|
|
description = "A XSLT processor for transforming XML documents";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
maintainers = [ lib.maintainers.jagajaga ];
|
|
};
|
|
}
|