summary refs log tree commit diff
path: root/pkgs/development/compilers/jdk/default-5.nix
blob: 9fb52378b3f77002ae878dd9dadd4abe8d2293b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
{stdenv, fetchurl, unzip}: 

if stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"
  then
    (import ./jdk5-sun-linux.nix) {
      inherit stdenv fetchurl unzip;
    }
  else
    abort "the Java 5 SDK is not supported on this platform"