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

10 lines
210 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
if stdenv.system == "i686-linux"
then
(import ./j2sdk-1.4.x-sun-linux.nix) {
inherit stdenv fetchurl;
}
else
abort "the Java 2 SDK is not supported on this platform"