8020c37f55
These are the JDK 5 on powerpc-linux (no longer a maintained Nixpkgs platform), JDK 1.4 (required a manual download) and JDK 5 on Linux (idem).
10 lines
356 B
Nix
10 lines
356 B
Nix
args:
|
|
|
|
if args.stdenv.system == "i686-linux" || args.stdenv.system == "x86_64-linux" then
|
|
(import ./jdk6-linux.nix) ( removeAttrs args ["cabextract"] )
|
|
else if args.stdenv.system == "i686-cygwin" then
|
|
(import ./jdk6-cygwin.nix) (removeAttrs args ["pluginSupport" "xlibs" "installjdk" "xlibs"])
|
|
else
|
|
abort "the JDK is not supported on this platform"
|
|
|