nixpkgs/pkgs/development/compilers/jdk/default.nix

10 lines
330 B
Nix
Raw Normal View History

args:
if args.stdenv.system == "i686-linux" || args.stdenv.system == "x86_64-linux" then
(import ./jdk6-linux.nix) args
else if args.stdenv.system == "powerpc-linux" then
(import ./jdk5-ibm-powerpc-linux.nix) (removeAttrs args ["pluginSupport" "xlibs" "installjdk"])
else
abort "the JDK is not supported on this platform"