mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 08:28:20 +00:00
10 lines
151 B
Nix
10 lines
151 B
Nix
{stdenv, fetchurl}:
|
|
|
|
if stdenv.system == "i686-linux"
|
|
then
|
|
(import ./jre-sun-linux.nix) {
|
|
inherit stdenv fetchurl;
|
|
}
|
|
else
|
|
false
|