nixpkgs/pkgs/development/compilers/jdk/default-5.nix
Tobias Hammerschmidt b9a1196479 jdk5 updated to 1.5.22
svn path=/nixpkgs/trunk/; revision=24802
2010-11-22 08:58:00 +00:00

10 lines
254 B
Nix

{stdenv, fetchurl, unzip}:
if stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"
then
(import ./jdk5-oracle-linux.nix) {
inherit stdenv fetchurl unzip;
}
else
abort "the Java 5 SDK is not supported on this platform"