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

33 lines
908 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl, xercesc, getopt }:
2016-04-26 15:53:33 +00:00
2017-04-25 21:48:26 +00:00
let
platform = if stdenv.isLinux then "linux" else
if stdenv.isDarwin then "macosx" else
throw "Unsupported platform";
in stdenv.mkDerivation rec {
pname = "xalan-c";
2016-04-26 15:53:33 +00:00
version = "1.11";
src = fetchurl {
url = "http://www.eu.apache.org/dist/xalan/xalan-c/sources/xalan_c-${version}-src.tar.gz";
sha256 = "0a3a2b15vpacnqgpp6fiy1pwyc8q6ywzvyb5445f6wixfdspypjg";
};
configurePhase = ''
export XALANCROOT=`pwd`/c
cd `pwd`/c
2018-04-09 13:28:52 +00:00
mkdir -p $out
./runConfigure -p ${platform} -c cc -x c++ -P$out
2016-04-26 15:53:33 +00:00
'';
2017-04-25 21:48:26 +00:00
buildInputs = [ xercesc getopt ];
2016-04-26 15:53:33 +00:00
meta = {
homepage = "http://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
};
}