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

10 lines
152 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
if stdenv.system == "i686-linux"
then
(import ./jdk5-sun-linux.nix) {
inherit stdenv fetchurl;
}
else
false