Improved Ants in Nix. The names of the various Ants now reflects the j2sdk configuration: ant-j2sdk-1.4.2, ant-j2sdk-1.5.0, ant-blackdown

svn path=/nixpkgs/trunk/; revision=1325
This commit is contained in:
Martin Bravenboer 2004-08-24 11:26:26 +00:00
parent 5f15317a59
commit c70943c332
2 changed files with 14 additions and 7 deletions

View file

@ -1,9 +1,9 @@
{stdenv, fetchurl, j2sdk}:
{stdenv, fetchurl, j2sdk, name}:
rec {
body =
stdenv.mkDerivation {
name = ant.realname;
name = name;
builder = ./builder.sh;
buildInputs = [ant j2sdk];
inherit ant j2sdk;

View file

@ -407,12 +407,20 @@ rec {
apacheant14 = (import ../development/tools/build-managers/apache-ant) {
inherit fetchurl stdenv j2sdk;
name = "ant-j2sdk-1.4.2";
};
# apacheant15 = (import ../development/tools/build-managers/apache-ant) {
# inherit fetchurl stdenv;
# j2sdk = j2sdk15;
# };
apacheantblackdown14 = (import ../development/tools/build-managers/apache-ant) {
inherit fetchurl stdenv;
j2sdk = blackdown;
name = "ant-blackdown-1.4.2";
};
apacheant15 = (import ../development/tools/build-managers/apache-ant) {
inherit fetchurl stdenv;
name = "ant-j2sdk-1.5.0";
j2sdk = j2sdk15;
};
tomcat5 = (import ../servers/http/tomcat) {
inherit fetchurl stdenv j2sdk;
@ -623,7 +631,6 @@ rec {
buildClientLibs = true;
};
### OS-SPECIFIC
kernelHeaders = (import ../os-specific/linux/kernel-headers) {