2010-12-05 12:42:24 +01:00
|
|
|
{stdenv, fetchurl, unzip, requireFile}:
|
2008-01-23 13:25:08 +01:00
|
|
|
|
2008-01-24 11:14:33 +01:00
|
|
|
if stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"
|
2008-01-23 13:25:08 +01:00
|
|
|
then
|
2010-11-22 09:58:00 +01:00
|
|
|
(import ./jdk5-oracle-linux.nix) {
|
2010-12-05 12:42:24 +01:00
|
|
|
inherit stdenv fetchurl unzip requireFile;
|
2008-01-23 13:25:08 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
abort "the Java 5 SDK is not supported on this platform"
|