nixpkgs/pkgs/development/interpreters/jre/default.nix
Eelco Dolstra e17d20b6d2 * Purify the JRE.
svn path=/nixpkgs/trunk/; revision=7936
2007-02-20 17:04:37 +00:00

10 lines
164 B
Nix

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