Merge pull request #179648 from amjoseph-nixpkgs/pr/java/dont-use-meta-available
java-packages.nix: detect i686 using stdenv.hostPlatform
This commit is contained in:
commit
29e2da27e3
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ in {
|
|||
|
||||
mkBootstrap = adoptopenjdk: path: args:
|
||||
/* adoptopenjdk not available for i686, so fall back to our old builds for bootstrapping */
|
||||
if adoptopenjdk.jdk-hotspot.meta.available
|
||||
if !stdenv.hostPlatform.isi686
|
||||
then
|
||||
# only linux has the gtkSupport option
|
||||
if stdenv.isLinux
|
||||
|
|
Loading…
Reference in a new issue