mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
xalanc: init at 1.11
This commit is contained in:
parent
5dbb42ce6c
commit
f223e114da
2 changed files with 30 additions and 0 deletions
28
pkgs/development/libraries/xalanc/default.nix
Normal file
28
pkgs/development/libraries/xalanc/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchurl, xercesc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "xalan-c-${version}";
|
||||
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
|
||||
mkdir -p $out/usr
|
||||
./runConfigure -p linux -c gcc -x g++ -P$out/usr
|
||||
'';
|
||||
|
||||
buildInputs = [ xercesc ];
|
||||
|
||||
meta = {
|
||||
homepage = http://xalan.apache.org/;
|
||||
description = "A XSLT processor for transforming XML documents";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
||||
};
|
||||
}
|
|
@ -9142,6 +9142,8 @@ in
|
|||
|
||||
xercesc = callPackage ../development/libraries/xercesc {};
|
||||
|
||||
xalanc = callPackage ../development/libraries/xalanc {};
|
||||
|
||||
# Avoid using this. It isn't really a wrapper anymore, but we keep the name.
|
||||
xlibsWrapper = callPackage ../development/libraries/xlibs-wrapper {
|
||||
packages = [
|
||||
|
|
Loading…
Reference in a new issue