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

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