My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/xalanc/default.nix

24 lines
653 B

{ 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 ];
};
}