11 lines
173 B
Nix
11 lines
173 B
Nix
|
{stdenv, fetchurl}:
|
||
|
|
||
|
if stdenv.system == "i686-linux"
|
||
|
then
|
||
|
(import ./j2re-sun-linux.nix) {
|
||
|
stdenv = stdenv;
|
||
|
fetchurl = fetchurl;
|
||
|
}
|
||
|
else
|
||
|
false
|