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;