nixpkgs/pkgs/development/libraries/xalanc/default.nix

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

25 lines
653 B
Nix
Raw Normal View History

2022-01-03 17:41:18 +00:00
{ lib, stdenv, fetchFromGitHub, xercesc, getopt, cmake }:
2016-04-26 15:53:33 +00:00
2022-01-03 17:41:18 +00:00
stdenv.mkDerivation rec {
pname = "xalan-c";
2022-01-03 17:41:18 +00:00
version = "1.12.0";
2016-04-26 15:53:33 +00:00
2022-01-03 17:41:18 +00:00
src = fetchFromGitHub {
owner = "apache";
repo = "xalan-c";
rev = "Xalan-C_1_12_0";
sha256 = "sha256:0q1204qk97i9h14vxxq7phcfpyiin0i1zzk74ixvg4wqy87b62s8";
2016-04-26 15:53:33 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ xercesc getopt ];
2016-04-26 15:53:33 +00:00
meta = {
homepage = "https://xalan.apache.org/";
2016-04-26 15:53:33 +00:00
description = "A XSLT processor for transforming XML documents";
license = lib.licenses.asl20;
2021-01-23 17:15:07 +00:00
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = [ lib.maintainers.jagajaga ];
2016-04-26 15:53:33 +00:00
};
}