nixpkgs/pkgs/development/compilers/jdk/default.nix
Martin Bravenboer 6bae4d7e4e Prelim. support for JDK on PowerPC using IBM's SDK
svn path=/nixpkgs/trunk/; revision=6405
2006-08-31 01:51:41 +00:00

9 lines
197 B
Nix

args:
if args.stdenv.system == "i686-linux" then
(import ./jdk5-sun-linux.nix) args
else if args.stdenv.system == "powerpc-linux" then
(import ./jdk5-ibm-powerpc-linux.nix) args
else
false