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 -1
View File
@@ -1,3 +1,3 @@
buildInputs="$perl $python $j2sdk"
buildInputs="$perl $python $jdk"
. $stdenv/setup
genericBuild
+3 -3
View File
@@ -1,9 +1,9 @@
{ perlSupport, pythonSupport, javaSupport
, stdenv, fetchurl, perl ? null, python ? null, j2sdk ? null}:
, stdenv, fetchurl, perl ? null, python ? null, jdk ? null}:
assert perlSupport -> perl != null;
assert pythonSupport -> python != null;
assert javaSupport -> j2sdk != null;
assert javaSupport -> jdk != null;
stdenv.mkDerivation {
name = "swig-1.3.19";
@@ -18,5 +18,5 @@ stdenv.mkDerivation {
perl = if perlSupport then perl else null;
python = if pythonSupport then python else null;
j2sdk = if javaSupport then j2sdk else null;
jdk = if javaSupport then jdk else null;
}