mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 11:37:46 +00:00
Merge staging-next into staging
This commit is contained in:
commit
a984d3a7ac
@ -45,7 +45,11 @@ 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
|
||||
then adoptopenjdk.jdk-hotspot.override { gtkSupport = false; }
|
||||
then
|
||||
# only linux has the gtkSupport option
|
||||
if stdenv.isLinux
|
||||
then adoptopenjdk.jdk-hotspot.override { gtkSupport = false; }
|
||||
else adoptopenjdk.jdk-hotspot
|
||||
else callPackage path args;
|
||||
|
||||
mkOpenjdk = path-linux: path-darwin: args:
|
||||
|
Loading…
Reference in New Issue
Block a user