Cleaning up the java naming conventions

svn path=/nixpkgs/trunk/; revision=3871
This commit is contained in:
Martin Bravenboer
2005-09-17 23:58:51 +00:00
parent 3919e7593a
commit 4c70ef7e5d
27 changed files with 88 additions and 78 deletions
@@ -1,12 +1,12 @@
{stdenv, fetchurl, j2sdk, name}:
{stdenv, fetchurl, jdk, name}:
let {
body =
stdenv.mkDerivation {
name = name;
builder = ./builder.sh;
buildInputs = [ant j2sdk];
inherit ant j2sdk;
buildInputs = [ant jdk];
inherit ant jdk;
};
ant =