about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/xalanc
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/xalanc')
-rw-r--r--nixpkgs/pkgs/development/libraries/xalanc/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/xalanc/default.nix b/nixpkgs/pkgs/development/libraries/xalanc/default.nix
new file mode 100644
index 000000000000..3451979402b2
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/xalanc/default.nix
@@ -0,0 +1,41 @@
+{ lib, stdenv, fetchurl, xercesc, getopt }:
+
+let
+  platform = if stdenv.isLinux then "linux" else
+             if stdenv.isDarwin then "macosx" else
+             throw "Unsupported platform";
+in stdenv.mkDerivation rec {
+  pname = "xalan-c";
+  version = "1.11";
+
+  src = fetchurl {
+    url = "mirror://apache/xalan/xalan-c/sources/xalan_c-${version}-src.tar.gz";
+    sha256 = "0a3a2b15vpacnqgpp6fiy1pwyc8q6ywzvyb5445f6wixfdspypjg";
+  };
+
+  configurePhase = ''
+    export XALANCROOT=`pwd`/c
+    cd `pwd`/c
+    mkdir -p $out
+    ./runConfigure -p ${platform} -c cc -x c++ -P$out
+  '';
+
+  buildInputs = [ xercesc getopt ];
+
+  # 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;
+
+  meta = {
+    homepage = "http://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 ];
+  };
+}