mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
Added Xalan-Java 2.7.0 (binary).
svn path=/nixpkgs/trunk/; revision=5212
This commit is contained in:
parent
6860ccf4b9
commit
fd2d743748
5
pkgs/development/libraries/java/xalanj/builder.sh
Normal file
5
pkgs/development/libraries/java/xalanj/builder.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
source $stdenv/setup
|
||||
|
||||
unpackPhase
|
||||
mkdir -p $out
|
||||
cp -r $directory/* $out
|
14
pkgs/development/libraries/java/xalanj/default.nix
Normal file
14
pkgs/development/libraries/java/xalanj/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
/*
|
||||
This is a binary package containing the jars... yuck!
|
||||
*/
|
||||
stdenv.mkDerivation {
|
||||
name = "xalanj-2.7.0";
|
||||
directory = "xalan-j_2_7_0";
|
||||
src = fetchurl {
|
||||
url = "http://apache.cs.uu.nl/dist/xml/xalan-j/xalan-j_2_7_0-bin-2jars.tar.gz";
|
||||
md5 = "4d7b03dcaf2484b5f9685cc4309a9910";
|
||||
};
|
||||
builder = ./builder.sh;
|
||||
}
|
|
@ -1416,6 +1416,10 @@ rec {
|
|||
inherit (xlibs) libXtst;
|
||||
};
|
||||
|
||||
xalanj = import ../development/libraries/java/xalanj {
|
||||
inherit stdenv fetchurl;
|
||||
};
|
||||
|
||||
### DEVELOPMENT / LIBRARIES / HASKELL
|
||||
|
||||
uulib = import ../development/libraries/haskell/uulib {
|
||||
|
|
Loading…
Reference in a new issue