3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/xalanc/default.nix

42 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, xercesc, getopt }:
2016-04-26 16:53:33 +01:00
2017-04-25 22:48:26 +01: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 16:53:33 +01:00
version = "1.11";
src = fetchurl {
url = "mirror://apache/xalan/xalan-c/sources/xalan_c-${version}-src.tar.gz";
2016-04-26 16:53:33 +01:00
sha256 = "0a3a2b15vpacnqgpp6fiy1pwyc8q6ywzvyb5445f6wixfdspypjg";
};
configurePhase = ''
export XALANCROOT=`pwd`/c
cd `pwd`/c
2018-04-09 14:28:52 +01:00
mkdir -p $out
./runConfigure -p ${platform} -c cc -x c++ -P$out
2016-04-26 16:53:33 +01:00
'';
2017-04-25 22:48:26 +01:00
buildInputs = [ xercesc getopt ];
2016-04-26 16:53:33 +01:00
# Parallel build fails as:
# c++ ... -c ... ExecutionContext.cpp
# ProblemListenerBase.hpp:28:10: fatal error: LocalMsgIndex.hpp: No such file or directory
# The build failure happens due to missing intra-project dependencies
# against generated headers. Future 1.12 version dropped
# autotools-based build system. Let's disable parallel builds until
# next release.
enableParallelBuilding = false;
2016-04-26 16:53:33 +01:00
meta = {
homepage = "http://xalan.apache.org/";
2016-04-26 16:53:33 +01: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 16:53:33 +01:00
};
}