-
-
Notifications
You must be signed in to change notification settings - Fork 16.1k
electron-{bin,source,chromedriver}_35: init at 35.0.3 #387294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
cd050a1
c912334
9c12ed5
eb66169
112942f
2a66805
5213e7e
506d38b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -64,6 +64,23 @@ in | |||||||||||||||||||||||||||||||||||||||||||||
hash = info.chromium_npm_hash; | ||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
env = | ||||||||||||||||||||||||||||||||||||||||||||||
base.env | ||||||||||||||||||||||||||||||||||||||||||||||
// { | ||||||||||||||||||||||||||||||||||||||||||||||
# Hydra can fail to build electron due to clang spamming deprecation | ||||||||||||||||||||||||||||||||||||||||||||||
# warnings mid-build, causing the build log to grow beyond the limit | ||||||||||||||||||||||||||||||||||||||||||||||
# of 64mb and then getting killed by Hydra. | ||||||||||||||||||||||||||||||||||||||||||||||
# For some reason, the log size limit appears to only be enforced on | ||||||||||||||||||||||||||||||||||||||||||||||
# aarch64-linux. x86_64-linux happily succeeds to build with ~180mb. To | ||||||||||||||||||||||||||||||||||||||||||||||
# unbreak the build on h.n.o, we simply disable those warnings for now. | ||||||||||||||||||||||||||||||||||||||||||||||
# https://hydra.nixos.org/build/283952243 | ||||||||||||||||||||||||||||||||||||||||||||||
NIX_CFLAGS_COMPILE = base.env.NIX_CFLAGS_COMPILE + " -Wno-deprecated"; | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
// lib.optionalAttrs (lib.versionAtLeast info.version "35") { | ||||||||||||||||||||||||||||||||||||||||||||||
# Needed for header generation in electron 35 and above | ||||||||||||||||||||||||||||||||||||||||||||||
ELECTRON_OUT_DIR = "Release"; | ||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
src = null; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
patches = base.patches; | ||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -178,7 +195,7 @@ in | |||||||||||||||||||||||||||||||||||||||||||||
# build/args/all.gn | ||||||||||||||||||||||||||||||||||||||||||||||
is_electron_build = true; | ||||||||||||||||||||||||||||||||||||||||||||||
root_extra_deps = [ "//electron" ]; | ||||||||||||||||||||||||||||||||||||||||||||||
node_module_version = info.modules; | ||||||||||||||||||||||||||||||||||||||||||||||
node_module_version = lib.toInt info.modules; | ||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I find it a bit funny that you opted to use Rather, because I find the chain of function invocations funny:
nixpkgs/pkgs/applications/networking/browsers/chromium/common.nix Lines 130 to 151 in 71d3a69
|
||||||||||||||||||||||||||||||||||||||||||||||
v8_promise_internal_field_count = 1; | ||||||||||||||||||||||||||||||||||||||||||||||
v8_embedder_string = "-electron.0"; | ||||||||||||||||||||||||||||||||||||||||||||||
v8_enable_snapshot_native_code_counters = false; | ||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -193,7 +210,6 @@ in | |||||||||||||||||||||||||||||||||||||||||||||
allow_runtime_configurable_key_storage = true; | ||||||||||||||||||||||||||||||||||||||||||||||
enable_cet_shadow_stack = false; | ||||||||||||||||||||||||||||||||||||||||||||||
is_cfi = false; | ||||||||||||||||||||||||||||||||||||||||||||||
use_qt = false; | ||||||||||||||||||||||||||||||||||||||||||||||
v8_builtins_profiling_log_file = ""; | ||||||||||||||||||||||||||||||||||||||||||||||
enable_dangling_raw_ptr_checks = false; | ||||||||||||||||||||||||||||||||||||||||||||||
dawn_use_built_dxc = false; | ||||||||||||||||||||||||||||||||||||||||||||||
|
Uh oh!
There was an error while loading. Please reload this page.