c9c133ab11
svn path=/nixpkgs/trunk/; revision=24972
10 lines
279 B
Nix
10 lines
279 B
Nix
{stdenv, fetchurl, unzip, requireFile}:
|
|
|
|
if stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"
|
|
then
|
|
(import ./jdk5-oracle-linux.nix) {
|
|
inherit stdenv fetchurl unzip requireFile;
|
|
}
|
|
else
|
|
abort "the Java 5 SDK is not supported on this platform"
|