Merge pull request #187668 from marsam/jekyll-gemconfig

defaultGemConfig: use v8_8_x as v8
This commit is contained in:
Mario Rodas 2022-08-21 08:38:51 -05:00 committed by GitHub
commit 36ce6c3c87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15169,6 +15169,8 @@ with pkgs;
inherit (darwin) libobjc;
};
defaultGemConfig = callPackage ../development/ruby-modules/gem-config {
# recent v8 doesn't build on nixpkgs Darwin yet. https://github.com/NixOS/nixpkgs/issues/158076
v8 = if stdenv.isDarwin then v8_8_x else v8;
inherit (darwin) DarwinTools cctools;
inherit (darwin.apple_sdk.frameworks) CoreServices;
};