mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Move jdk -> oraclejdk
This commit is contained in:
parent
c39bee0c0f
commit
94db68d283
7 changed files with 3 additions and 3 deletions
|
@ -3067,17 +3067,17 @@ let
|
||||||
jdkdistro = installjdk: pluginSupport:
|
jdkdistro = installjdk: pluginSupport:
|
||||||
assert supportsJDK;
|
assert supportsJDK;
|
||||||
(if pluginSupport then appendToName "with-plugin" else x: x)
|
(if pluginSupport then appendToName "with-plugin" else x: x)
|
||||||
(callPackage ../development/compilers/jdk/jdk6-linux.nix { });
|
(callPackage ../development/compilers/oraclejdk/jdk6-linux.nix { });
|
||||||
|
|
||||||
oraclejdk7distro = installjdk: pluginSupport:
|
oraclejdk7distro = installjdk: pluginSupport:
|
||||||
assert supportsJDK;
|
assert supportsJDK;
|
||||||
(if pluginSupport then appendToName "with-plugin" else x: x)
|
(if pluginSupport then appendToName "with-plugin" else x: x)
|
||||||
(callPackage ../development/compilers/jdk/jdk7-linux.nix { inherit installjdk; });
|
(callPackage ../development/compilers/oraclejdk/jdk7-linux.nix { inherit installjdk; });
|
||||||
|
|
||||||
oraclejdk8distro = installjdk: pluginSupport:
|
oraclejdk8distro = installjdk: pluginSupport:
|
||||||
assert supportsJDK;
|
assert supportsJDK;
|
||||||
(if pluginSupport then appendToName "with-plugin" else x: x)
|
(if pluginSupport then appendToName "with-plugin" else x: x)
|
||||||
(callPackage ../development/compilers/jdk/jdk8-linux.nix { inherit installjdk; });
|
(callPackage ../development/compilers/oraclejdk/jdk8-linux.nix { inherit installjdk; });
|
||||||
|
|
||||||
jikes = callPackage ../development/compilers/jikes { };
|
jikes = callPackage ../development/compilers/jikes { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue