-
-
Notifications
You must be signed in to change notification settings - Fork 14.3k
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
staging-next 2024-11-07 #354201
staging-next 2024-11-07 #354201
Commits on Nov 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0d874b4 - Browse repository at this point
Copy the full SHA 0d874b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 958a2c9 - Browse repository at this point
Copy the full SHA 958a2c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 670be3a - Browse repository at this point
Copy the full SHA 670be3aView commit details -
Configuration menu - View commit details
-
Copy full SHA for b78ad13 - Browse repository at this point
Copy the full SHA b78ad13View commit details -
Configuration menu - View commit details
-
Copy full SHA for e4e28b0 - Browse repository at this point
Copy the full SHA e4e28b0View commit details -
Configuration menu - View commit details
-
Copy full SHA for f2b00cb - Browse repository at this point
Copy the full SHA f2b00cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c433c9 - Browse repository at this point
Copy the full SHA 3c433c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 933687c - Browse repository at this point
Copy the full SHA 933687cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 82f5e8e - Browse repository at this point
Copy the full SHA 82f5e8eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 48927d9 - Browse repository at this point
Copy the full SHA 48927d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e6e33b - Browse repository at this point
Copy the full SHA 6e6e33bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 507c5dd - Browse repository at this point
Copy the full SHA 507c5ddView commit details
Commits on Nov 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e46fdbc - Browse repository at this point
Copy the full SHA e46fdbcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5605fc7 - Browse repository at this point
Copy the full SHA 5605fc7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8190cd6 - Browse repository at this point
Copy the full SHA 8190cd6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a375cc - Browse repository at this point
Copy the full SHA 0a375ccView commit details -
Configuration menu - View commit details
-
Copy full SHA for d6ccd28 - Browse repository at this point
Copy the full SHA d6ccd28View commit details -
Configuration menu - View commit details
-
Copy full SHA for bf4d9cd - Browse repository at this point
Copy the full SHA bf4d9cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0639506 - Browse repository at this point
Copy the full SHA 0639506View commit details -
Configuration menu - View commit details
-
Copy full SHA for d32fe41 - Browse repository at this point
Copy the full SHA d32fe41View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8869364 - Browse repository at this point
Copy the full SHA 8869364View commit details -
This one fails when tests are run with too many cores. Closes: #353176
Configuration menu - View commit details
-
Copy full SHA for 7e7dce4 - Browse repository at this point
Copy the full SHA 7e7dce4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0fc2bbc - Browse repository at this point
Copy the full SHA 0fc2bbcView commit details -
Configuration menu - View commit details
-
Copy full SHA for d0c3078 - Browse repository at this point
Copy the full SHA d0c3078View commit details -
stdenv: fix custom hardening settings when using `__structuredAttrs =…
… true;` Replaces / Closes #353131 A while ago `postgresql` switched to using structured attrs[1]. In the PR it was reported that this made postgresql notably slower when importing SQL dumps[2]. After a bit of debugging it turned out that the hardening was entirely missing and the following combination of settings was the culprit: hardeningEnable = [ "pie" ]; __structuredAttrs = true; I.e. the combination of custom hardening settings and structured attrs. What happened here is that internally the default and enabled hardening flags get written into `NIX_HARDENING_ENABLE`. However, the value is a list and the setting is not in the `env` section. This means that in the structured-attrs case we get something like declare -ax NIX_HARDENING_ENABLE=([0]="bindnow" [1]="format" [2]="fortify" [3]="fortify3" [4]="pic" [5]="relro" [6]="stackprotector" [7]="strictoverflow" [8]="zerocallusedregs" [9]="pie") i.e. an actual array rather than a string with all hardening flags being space-separated which is what the hardening code of the cc-wrapper expects[3]. This only happens if `hardeningEnable` or `hardeningDisable` are explicitly set by a derivation: if none of those are set, `NIX_HARDENING_ENABLE` won't be set by `stdenv.mkDerivation` and the default hardening flags are configured by the setup hook of the cc-wrapper[4]. In other words, this _only_ applies to derivations that have both custom hardening settings _and_ `__structuredAttrs = true;`. All values of `NIX_HARDENING_ENABLE` are well-known, so we don't have to worry about escaping issues. Just forcing it to a string by concatenating the list everytime solves the issue without additional issues like eval errors when inheriting `env` from a structuredAttrs derivation[5]. The price we're paying is a full rebuild. [1] #294504 [2] #294504 (comment) [3] https://github.com/NixOS/nixpkgs/blob/cf3e5d3744dc26c3498aa5dadfa0e078c632cede/pkgs/build-support/cc-wrapper/add-hardening.sh#L9 [4] https://github.com/NixOS/nixpkgs/blob/cf3e5d3744dc26c3498aa5dadfa0e078c632cede/pkgs/build-support/cc-wrapper/setup-hook.sh#L114 [5] 1e84a7f
Configuration menu - View commit details
-
Copy full SHA for aaeeef5 - Browse repository at this point
Copy the full SHA aaeeef5View commit details
Commits on Nov 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8156648 - Browse repository at this point
Copy the full SHA 8156648View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ca8831 - Browse repository at this point
Copy the full SHA 2ca8831View commit details -
Configuration menu - View commit details
-
Copy full SHA for 086e59c - Browse repository at this point
Copy the full SHA 086e59cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6f5fe24 - Browse repository at this point
Copy the full SHA 6f5fe24View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ec4d4f - Browse repository at this point
Copy the full SHA 5ec4d4fView commit details -
Configuration menu - View commit details
-
Copy full SHA for ed28ebd - Browse repository at this point
Copy the full SHA ed28ebdView commit details -
libsForQt5.*: consistently build with the macOS 13 SDK
This was changed for `qtbase` in 3be309e, but affects Qt WebEngine as well.
Configuration menu - View commit details
-
Copy full SHA for 4e3c8f4 - Browse repository at this point
Copy the full SHA 4e3c8f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8aaea37 - Browse repository at this point
Copy the full SHA 8aaea37View commit details -
Configuration menu - View commit details
-
Copy full SHA for e7a360a - Browse repository at this point
Copy the full SHA e7a360aView commit details -
llvmPackages_19.compiler_rt: don't codesign
The codesign binary is part of the bootstrapTools and is incompatible with the version required by the compiler_rt build. Remove find_program(.., codesign) from the cmake files to prevent the build from using and then breaking due to an incompatible codesign
Configuration menu - View commit details
-
Copy full SHA for fa8ce61 - Browse repository at this point
Copy the full SHA fa8ce61View commit details -
libffi: move label before .cfi_starproc
after llvm/llvm-project@0b06727 clang_19 will produce errors if the function label comes after .cfi_starproc. Vendor upstream commit libffi/libffi@8308bed to fix the issue
Configuration menu - View commit details
-
Copy full SHA for 0efe75e - Browse repository at this point
Copy the full SHA 0efe75eView commit details -
Configuration menu - View commit details
-
Copy full SHA for f91487f - Browse repository at this point
Copy the full SHA f91487fView commit details -
darwin.stdenv: add file to early stdenv stages
file is part of the final stdenv and llvm_19 requires it for tests. add file to the path to the early stage stdenv's for the upcoming switch to llvm_19
Configuration menu - View commit details
-
Copy full SHA for 0fc9787 - Browse repository at this point
Copy the full SHA 0fc9787View commit details -
Configuration menu - View commit details
-
Copy full SHA for 90375e5 - Browse repository at this point
Copy the full SHA 90375e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1fb8dbc - Browse repository at this point
Copy the full SHA 1fb8dbcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f089a3 - Browse repository at this point
Copy the full SHA 9f089a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 529b023 - Browse repository at this point
Copy the full SHA 529b023View commit details -
Configuration menu - View commit details
-
Copy full SHA for a5693ce - Browse repository at this point
Copy the full SHA a5693ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5248318 - Browse repository at this point
Copy the full SHA 5248318View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9aa5b3 - Browse repository at this point
Copy the full SHA b9aa5b3View commit details -
auto-patchelf: Don't use buildPythonApplication
#340162 introduced `autoPatchelfHook` as it's own top-level attribute. This also made it use the Nixpkgs Python build infrastructure, which relies on dependency propagation, leaking Python as a dependency into many builds erroneously. This change uses a `withPackages` constructed environment instead, and manually patches the script shebangs, not triggering the `buildPython*` dependency propagation mechanism
Configuration menu - View commit details
-
Copy full SHA for 687371a - Browse repository at this point
Copy the full SHA 687371aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 97e7e07 - Browse repository at this point
Copy the full SHA 97e7e07View commit details -
Configuration menu - View commit details
-
Copy full SHA for a808a98 - Browse repository at this point
Copy the full SHA a808a98View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f56758 - Browse repository at this point
Copy the full SHA 7f56758View commit details -
Configuration menu - View commit details
-
Copy full SHA for 285f093 - Browse repository at this point
Copy the full SHA 285f093View commit details -
Configuration menu - View commit details
-
Copy full SHA for 67ca7a7 - Browse repository at this point
Copy the full SHA 67ca7a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 46a1f3a - Browse repository at this point
Copy the full SHA 46a1f3aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4113cc0 - Browse repository at this point
Copy the full SHA 4113cc0View commit details -
portaudio: use implicit apple-sdk pattern
Matteo Pacini committedNov 3, 2024 Configuration menu - View commit details
-
Copy full SHA for d81b4fe - Browse repository at this point
Copy the full SHA d81b4feView commit details -
Configuration menu - View commit details
-
Copy full SHA for e21f807 - Browse repository at this point
Copy the full SHA e21f807View commit details -
Configuration menu - View commit details
-
Copy full SHA for 15ece21 - Browse repository at this point
Copy the full SHA 15ece21View commit details -
Configuration menu - View commit details
-
Copy full SHA for b3f3035 - Browse repository at this point
Copy the full SHA b3f3035View commit details -
Configuration menu - View commit details
-
Copy full SHA for a307173 - Browse repository at this point
Copy the full SHA a307173View commit details -
apple-sdk: only rewrite old SDK paths
Rewriting SDK paths is only needed when a text-based stub is an umbrella framework that does not include the contents of the stubs for the libraries re-exported by the framework. This is only the case for older SDKs. Once macOS introduced the dyld cache (and removed system dylibs) in 11.0, all umbrella frameworks in the SDK include the contents of their re-exported stubs. While rewriting newer SDKs is mostly harmless, it breaks Zig, which tries to interpret the paths relative to the SDKROOT.
Configuration menu - View commit details
-
Copy full SHA for e166c9b - Browse repository at this point
Copy the full SHA e166c9bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 19fd3f0 - Browse repository at this point
Copy the full SHA 19fd3f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 50c534e - Browse repository at this point
Copy the full SHA 50c534eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 03524a8 - Browse repository at this point
Copy the full SHA 03524a8View commit details -
Configuration menu - View commit details
-
Copy full SHA for a99d2b7 - Browse repository at this point
Copy the full SHA a99d2b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for f995406 - Browse repository at this point
Copy the full SHA f995406View commit details -
Configuration menu - View commit details
-
Copy full SHA for cb404b3 - Browse repository at this point
Copy the full SHA cb404b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for bee49bd - Browse repository at this point
Copy the full SHA bee49bdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 42f60c5 - Browse repository at this point
Copy the full SHA 42f60c5View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb9cde0 - Browse repository at this point
Copy the full SHA eb9cde0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 583c82b - Browse repository at this point
Copy the full SHA 583c82bView commit details -
Configuration menu - View commit details
-
Copy full SHA for dd116e8 - Browse repository at this point
Copy the full SHA dd116e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 18d48aa - Browse repository at this point
Copy the full SHA 18d48aaView commit details
Commits on Nov 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8cc792e - Browse repository at this point
Copy the full SHA 8cc792eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3020b7f - Browse repository at this point
Copy the full SHA 3020b7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for d2e8dbc - Browse repository at this point
Copy the full SHA d2e8dbcView commit details -
Configuration menu - View commit details
-
Copy full SHA for ad3f605 - Browse repository at this point
Copy the full SHA ad3f605View commit details -
Configuration menu - View commit details
-
Copy full SHA for 70b769c - Browse repository at this point
Copy the full SHA 70b769cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5a10946 - Browse repository at this point
Copy the full SHA 5a10946View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a023e5 - Browse repository at this point
Copy the full SHA 9a023e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 33dd80f - Browse repository at this point
Copy the full SHA 33dd80fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ff59d4 - Browse repository at this point
Copy the full SHA 2ff59d4View commit details -
Configuration menu - View commit details
-
Copy full SHA for fe71abd - Browse repository at this point
Copy the full SHA fe71abdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7fdeeba - Browse repository at this point
Copy the full SHA 7fdeebaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 18bd3e7 - Browse repository at this point
Copy the full SHA 18bd3e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for ef86bf6 - Browse repository at this point
Copy the full SHA ef86bf6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7bea7ca - Browse repository at this point
Copy the full SHA 7bea7caView commit details -
Configuration menu - View commit details
-
Copy full SHA for e2210c0 - Browse repository at this point
Copy the full SHA e2210c0View commit details -
pkgsi686Linux.swtpm: pull upstream 64-bit file api fix
Without the change the build of `pkgsi686Linux.swtpm` fails on filesystems with 64-bit inodes as: FAIL: test_parameters FAIL: test_swtpm_setup_file_backend FAIL: test_swtpm_setup_overwrite FAIL: test_tpm2_swtpm_setup_create_cert FAIL: test_tpm2_swtpm_setup_overwrite FAIL: test_swtpm_setup_create_cert FAIL: test_tpm2_parameters
Configuration menu - View commit details
-
Copy full SHA for 5b13631 - Browse repository at this point
Copy the full SHA 5b13631View commit details -
Configuration menu - View commit details
-
Copy full SHA for b15dd30 - Browse repository at this point
Copy the full SHA b15dd30View commit details
Commits on Nov 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2b84944 - Browse repository at this point
Copy the full SHA 2b84944View commit details -
Configuration menu - View commit details
-
Copy full SHA for e953c01 - Browse repository at this point
Copy the full SHA e953c01View commit details -
Configuration menu - View commit details
-
Copy full SHA for 777ba2c - Browse repository at this point
Copy the full SHA 777ba2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for bab7ef3 - Browse repository at this point
Copy the full SHA bab7ef3View commit details -
Configuration menu - View commit details
-
Copy full SHA for ccb418b - Browse repository at this point
Copy the full SHA ccb418bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e4f2f9d - Browse repository at this point
Copy the full SHA e4f2f9dView commit details -
pythonRelaxDepsHook: handle attributes
__structuredAttrs
-agnosticallyMake the interation across pythonRelaxDeps and pythonRemoveDeps work regardless of __structuredAttrs.
Configuration menu - View commit details
-
Copy full SHA for 3a79bc3 - Browse repository at this point
Copy the full SHA 3a79bc3View commit details -
pythonRelaxDepsHook: lint with ShellCheck
Ignore SC2164 at this moment, as it will be gone when adding `set -e`.
Configuration menu - View commit details
-
Copy full SHA for 29c08ad - Browse repository at this point
Copy the full SHA 29c08adView commit details -
Configuration menu - View commit details
-
Copy full SHA for 65293f4 - Browse repository at this point
Copy the full SHA 65293f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for e32457a - Browse repository at this point
Copy the full SHA e32457aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6597b74 - Browse repository at this point
Copy the full SHA 6597b74View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61dec15 - Browse repository at this point
Copy the full SHA 61dec15View commit details -
Configuration menu - View commit details
-
Copy full SHA for 77b4697 - Browse repository at this point
Copy the full SHA 77b4697View commit details -
Configuration menu - View commit details
-
Copy full SHA for 60d7073 - Browse repository at this point
Copy the full SHA 60d7073View commit details -
Configuration menu - View commit details
-
Copy full SHA for b048be0 - Browse repository at this point
Copy the full SHA b048be0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 09459d1 - Browse repository at this point
Copy the full SHA 09459d1View commit details -
musescore: apple-sdk migration, removed portaudio override
Matteo Pacini committedNov 5, 2024 Configuration menu - View commit details
-
Copy full SHA for 7d1abc0 - Browse repository at this point
Copy the full SHA 7d1abc0View commit details -
Configuration menu - View commit details
-
Copy full SHA for a08508d - Browse repository at this point
Copy the full SHA a08508dView commit details -
Configuration menu - View commit details
-
Copy full SHA for e891128 - Browse repository at this point
Copy the full SHA e891128View commit details -
Configuration menu - View commit details
-
Copy full SHA for f07f514 - Browse repository at this point
Copy the full SHA f07f514View commit details -
Configuration menu - View commit details
-
Copy full SHA for a186ca0 - Browse repository at this point
Copy the full SHA a186ca0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 62cc8b3 - Browse repository at this point
Copy the full SHA 62cc8b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 651acae - Browse repository at this point
Copy the full SHA 651acaeView commit details -
Configuration menu - View commit details
-
Copy full SHA for f899bb5 - Browse repository at this point
Copy the full SHA f899bb5View commit details -
xcbuild: look in system toolchain for binaries on
/usr/bin
Dropping `/usr/bin` from the search path of `xcrun` breaks running system binaries from dev shells. This approach looks them up while avoiding the recursive `xcrun` issue.
Configuration menu - View commit details
-
Copy full SHA for c8df669 - Browse repository at this point
Copy the full SHA c8df669View commit details -
xcbuild: suppress warnings for unknown keys
Newer SDKs have keys that xcbuild doesn’t recognize. These warnings generate a lot of noise, especially when `xcrun` is used in an interactive session, so suppress them.
Configuration menu - View commit details
-
Copy full SHA for 7ae8a1e - Browse repository at this point
Copy the full SHA 7ae8a1eView commit details -
Configuration menu - View commit details
-
Copy full SHA for e4b106e - Browse repository at this point
Copy the full SHA e4b106eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 50259ac - Browse repository at this point
Copy the full SHA 50259acView commit details
Commits on Nov 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for bdd0627 - Browse repository at this point
Copy the full SHA bdd0627View commit details -
Configuration menu - View commit details
-
Copy full SHA for e7cf0b4 - Browse repository at this point
Copy the full SHA e7cf0b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 17cc7a6 - Browse repository at this point
Copy the full SHA 17cc7a6View commit details -
apple-sdk: propagate the
darwin.libutil
libraryThe SDK provides this without headers and apparently some things try to link to it. This should help increase compatibility with the native toolchain.
Configuration menu - View commit details
-
Copy full SHA for 877e345 - Browse repository at this point
Copy the full SHA 877e345View commit details -
Configuration menu - View commit details
-
Copy full SHA for ee80206 - Browse repository at this point
Copy the full SHA ee80206View commit details -
Configuration menu - View commit details
-
Copy full SHA for 22f2052 - Browse repository at this point
Copy the full SHA 22f2052View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5907156 - Browse repository at this point
Copy the full SHA 5907156View commit details -
Configuration menu - View commit details
-
Copy full SHA for ca614aa - Browse repository at this point
Copy the full SHA ca614aaView commit details -
Signed-off-by: Sefa Eyeoglu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c55530f - Browse repository at this point
Copy the full SHA c55530fView commit details -
Configuration menu - View commit details
-
Copy full SHA for e233397 - Browse repository at this point
Copy the full SHA e233397View commit details -
Configuration menu - View commit details
-
Copy full SHA for f77d730 - Browse repository at this point
Copy the full SHA f77d730View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5a82e7a - Browse repository at this point
Copy the full SHA 5a82e7aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 46e0917 - Browse repository at this point
Copy the full SHA 46e0917View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9038b3e - Browse repository at this point
Copy the full SHA 9038b3eView commit details -
Configuration menu - View commit details
-
Copy full SHA for e9877d2 - Browse repository at this point
Copy the full SHA e9877d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for cee9a79 - Browse repository at this point
Copy the full SHA cee9a79View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c32a11 - Browse repository at this point
Copy the full SHA 6c32a11View commit details -
Configuration menu - View commit details
-
Copy full SHA for c87f921 - Browse repository at this point
Copy the full SHA c87f921View commit details -
Configuration menu - View commit details
-
Copy full SHA for ec62a8e - Browse repository at this point
Copy the full SHA ec62a8eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3602fc3 - Browse repository at this point
Copy the full SHA 3602fc3View commit details -
llvmPackages_19.libclc: use unwrapped clang only
The build requires an unwrapped clang due to passing in --arch flags. However, for c++ it doesn't pass in --arch and requires standard headers so which requires the wrapped compiler.
Configuration menu - View commit details
-
Copy full SHA for 7eb7798 - Browse repository at this point
Copy the full SHA 7eb7798View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ab5205 - Browse repository at this point
Copy the full SHA 1ab5205View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3cd45d0 - Browse repository at this point
Copy the full SHA 3cd45d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for a886e49 - Browse repository at this point
Copy the full SHA a886e49View commit details
Commits on Nov 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9c05a29 - Browse repository at this point
Copy the full SHA 9c05a29View commit details -
Configuration menu - View commit details
-
Copy full SHA for 91a300a - Browse repository at this point
Copy the full SHA 91a300aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 67cf25d - Browse repository at this point
Copy the full SHA 67cf25dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b08033 - Browse repository at this point
Copy the full SHA 1b08033View commit details -
Configuration menu - View commit details
-
Copy full SHA for 81a6749 - Browse repository at this point
Copy the full SHA 81a6749View commit details -
Configuration menu - View commit details
-
Copy full SHA for d1e7262 - Browse repository at this point
Copy the full SHA d1e7262View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7863b8c - Browse repository at this point
Copy the full SHA 7863b8cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6bcccb6 - Browse repository at this point
Copy the full SHA 6bcccb6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5af01c3 - Browse repository at this point
Copy the full SHA 5af01c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 59da82b - Browse repository at this point
Copy the full SHA 59da82bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9bf6e33 - Browse repository at this point
Copy the full SHA 9bf6e33View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8072991 - Browse repository at this point
Copy the full SHA 8072991View commit details -
Changelog: https://go.dev/doc/devel/release#go1.23
Configuration menu - View commit details
-
Copy full SHA for 514bd9d - Browse repository at this point
Copy the full SHA 514bd9dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f144fc5 - Browse repository at this point
Copy the full SHA f144fc5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 07f4874 - Browse repository at this point
Copy the full SHA 07f4874View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8d77160 - Browse repository at this point
Copy the full SHA 8d77160View commit details -
Configuration menu - View commit details
-
Copy full SHA for cb37e29 - Browse repository at this point
Copy the full SHA cb37e29View commit details -
Configuration menu - View commit details
-
Copy full SHA for dc697d6 - Browse repository at this point
Copy the full SHA dc697d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for b25a5d5 - Browse repository at this point
Copy the full SHA b25a5d5View commit details -
darwin.copyfile: use a bootstrap SDK
This is required to avoid an infinite recursion via `darwin.libutil` on `x86_64-darwin`.
Configuration menu - View commit details
-
Copy full SHA for 2a61b91 - Browse repository at this point
Copy the full SHA 2a61b91View commit details -
Configuration menu - View commit details
-
Copy full SHA for bd7bbd9 - Browse repository at this point
Copy the full SHA bd7bbd9View commit details -
Configuration menu - View commit details
-
Copy full SHA for f258a10 - Browse repository at this point
Copy the full SHA f258a10View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8021f83 - Browse repository at this point
Copy the full SHA 8021f83View commit details -
Configuration menu - View commit details
-
Copy full SHA for be653d9 - Browse repository at this point
Copy the full SHA be653d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 34abc6e - Browse repository at this point
Copy the full SHA 34abc6eView commit details -
Configuration menu - View commit details
-
Copy full SHA for ad6b2bb - Browse repository at this point
Copy the full SHA ad6b2bbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b50ea9 - Browse repository at this point
Copy the full SHA 6b50ea9View commit details -
Configuration menu - View commit details
-
Copy full SHA for dfa1d81 - Browse repository at this point
Copy the full SHA dfa1d81View commit details -
Configuration menu - View commit details
-
Copy full SHA for 42c877c - Browse repository at this point
Copy the full SHA 42c877cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f76347 - Browse repository at this point
Copy the full SHA 8f76347View commit details -
Configuration menu - View commit details
-
Copy full SHA for c068f3c - Browse repository at this point
Copy the full SHA c068f3cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 50f3bc8 - Browse repository at this point
Copy the full SHA 50f3bc8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8d37fdd - Browse repository at this point
Copy the full SHA 8d37fddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 127a31c - Browse repository at this point
Copy the full SHA 127a31cView commit details -
Configuration menu - View commit details
-
Copy full SHA for b3a0f2d - Browse repository at this point
Copy the full SHA b3a0f2dView commit details -
python{27,39,310,311,312,313,314}: use a bootstrap SDK on Darwin
Not sure why this is necessary now, since it should already be handled as part of the bootstrap. This might not be the right fix but it does fix eval.
Configuration menu - View commit details
-
Copy full SHA for c455166 - Browse repository at this point
Copy the full SHA c455166View commit details -
stdenv/darwin: fix SDK overlays for macOS SDK < 11
Quite impressive that this worked up until now. Co-authored-by: Lily Foster <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ad625dd - Browse repository at this point
Copy the full SHA ad625ddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 271bc34 - Browse repository at this point
Copy the full SHA 271bc34View commit details -
Configuration menu - View commit details
-
Copy full SHA for a3600c0 - Browse repository at this point
Copy the full SHA a3600c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2074196 - Browse repository at this point
Copy the full SHA 2074196View commit details -
Configuration menu - View commit details
-
Copy full SHA for 38835c8 - Browse repository at this point
Copy the full SHA 38835c8View commit details -
Revert "python{27,39,310,311,312,313,314}: use a bootstrap SDK on Dar…
…win" No longer necessary to mask an unwanted Python rebuild. This reverts commit c455166.
Configuration menu - View commit details
-
Copy full SHA for a061b02 - Browse repository at this point
Copy the full SHA a061b02View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2a0e31 - Browse repository at this point
Copy the full SHA b2a0e31View commit details -
qt6.wrapQtAppsHook: add
qtwayland
topropagatedBuildInputs
qtwayland client side is the wayland platform plugin, provides a way to run Qt applications as Wayland clients without this, Qt applications only work on x11/xwayland Co-authored-by: Artturin <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ae4fd66 - Browse repository at this point
Copy the full SHA ae4fd66View commit details -
Unlike wrapQtAppsHook, wrapQtAppsNoGuiHook does not propagate qtwayland, to reduce closure size for CLI or other non-GUI applications. Co-authored-by: eclairevoyant <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b7cd0d3 - Browse repository at this point
Copy the full SHA b7cd0d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for f542c49 - Browse repository at this point
Copy the full SHA f542c49View commit details -
qt6.wrapQtAppsHook: Only propagate plugins,qml of
qtwayland
qt6.{wrapQtAppsHook,wrapQtAppsNoGuiHook}: propagate `qtbase` plugins https://www.github.com/NixOS/nixpkgs/pull/352419#discussion_r1823132984
Configuration menu - View commit details
-
Copy full SHA for ff6a084 - Browse repository at this point
Copy the full SHA ff6a084View commit details -
qtbase-setup-hook: add wrapQtAppsNoGuiHook to error message
Co-authored-by: eclairevoyant <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9501a20 - Browse repository at this point
Copy the full SHA 9501a20View commit details -
deepin.dde-application-manager: use wrapQtAppsNoGuiHook to avoid prop…
…agating qtwayland Co-authored-by: eclairevoyant <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a2d3be9 - Browse repository at this point
Copy the full SHA a2d3be9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 89fd771 - Browse repository at this point
Copy the full SHA 89fd771View commit details -
doc/qt: Mention propagates and wrapQtAppsNoGuiHook
Co-authored-by: eclairevoyant <[email protected]> Co-authored-by: Artturin <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 98774a3 - Browse repository at this point
Copy the full SHA 98774a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c8aec3b - Browse repository at this point
Copy the full SHA c8aec3bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f696cb - Browse repository at this point
Copy the full SHA 2f696cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3533282 - Browse repository at this point
Copy the full SHA 3533282View commit details
Commits on Nov 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d16ff94 - Browse repository at this point
Copy the full SHA d16ff94View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ab3ca7 - Browse repository at this point
Copy the full SHA 4ab3ca7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4dab54a - Browse repository at this point
Copy the full SHA 4dab54aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2900723 - Browse repository at this point
Copy the full SHA 2900723View commit details -
Reapply "haskellPackages: update stackage and hackage" (#354547)
Configuration menu - View commit details
-
Copy full SHA for 46b1474 - Browse repository at this point
Copy the full SHA 46b1474View commit details -
Configuration menu - View commit details
-
Copy full SHA for f9a10f1 - Browse repository at this point
Copy the full SHA f9a10f1View commit details -
qt6: expose
darwinVersionInputs
This is a little gross as it’s not a very good name and should really be considered an internal API, but PySide wants it.
Configuration menu - View commit details
-
Copy full SHA for 51190ab - Browse repository at this point
Copy the full SHA 51190abView commit details -
Configuration menu - View commit details
-
Copy full SHA for 88895fc - Browse repository at this point
Copy the full SHA 88895fcView commit details -
2
Configuration menu - View commit details
-
Copy full SHA for 8606038 - Browse repository at this point
Copy the full SHA 8606038View commit details
Commits on Nov 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f3327c0 - Browse repository at this point
Copy the full SHA f3327c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for ce1a535 - Browse repository at this point
Copy the full SHA ce1a535View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e80325 - Browse repository at this point
Copy the full SHA 8e80325View commit details -
Configuration menu - View commit details
-
Copy full SHA for ce78877 - Browse repository at this point
Copy the full SHA ce78877View commit details -
Configuration menu - View commit details
-
Copy full SHA for b977757 - Browse repository at this point
Copy the full SHA b977757View commit details -
Configuration menu - View commit details
-
Copy full SHA for a902801 - Browse repository at this point
Copy the full SHA a902801View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7ebe973 - Browse repository at this point
Copy the full SHA 7ebe973View commit details
Commits on Nov 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 48d4a0a - Browse repository at this point
Copy the full SHA 48d4a0aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e1f5c9 - Browse repository at this point
Copy the full SHA 6e1f5c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 24e5e7f - Browse repository at this point
Copy the full SHA 24e5e7fView commit details -
qt6: expose
darwinVersionInputs
; python312Packages.{shiboken6,pysid……e6}: use `qt6.darwinVersionInputs` (#354599)
Configuration menu - View commit details
-
Copy full SHA for 73cdc95 - Browse repository at this point
Copy the full SHA 73cdc95View commit details -
Configuration menu - View commit details
-
Copy full SHA for 77ed931 - Browse repository at this point
Copy the full SHA 77ed931View commit details -
Configuration menu - View commit details
-
Copy full SHA for b064085 - Browse repository at this point
Copy the full SHA b064085View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e6fffa - Browse repository at this point
Copy the full SHA 4e6fffaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1136f4b - Browse repository at this point
Copy the full SHA 1136f4bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0644d3b - Browse repository at this point
Copy the full SHA 0644d3bView commit details -
Configuration menu - View commit details
-
Copy full SHA for aa75974 - Browse repository at this point
Copy the full SHA aa75974View commit details
Commits on Nov 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 81f60ef - Browse repository at this point
Copy the full SHA 81f60efView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0958e34 - Browse repository at this point
Copy the full SHA 0958e34View commit details -
Configuration menu - View commit details
-
Copy full SHA for 351e0a0 - Browse repository at this point
Copy the full SHA 351e0a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 79d0f5d - Browse repository at this point
Copy the full SHA 79d0f5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e58289 - Browse repository at this point
Copy the full SHA 2e58289View commit details -
Configuration menu - View commit details
-
Copy full SHA for 34f5aba - Browse repository at this point
Copy the full SHA 34f5abaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ca0de5 - Browse repository at this point
Copy the full SHA 1ca0de5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2cb56f3 - Browse repository at this point
Copy the full SHA 2cb56f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c3064c - Browse repository at this point
Copy the full SHA 1c3064cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 88f2bd4 - Browse repository at this point
Copy the full SHA 88f2bd4View commit details
Commits on Nov 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 31a78bf - Browse repository at this point
Copy the full SHA 31a78bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a4ebf1 - Browse repository at this point
Copy the full SHA 1a4ebf1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1628b4a - Browse repository at this point
Copy the full SHA 1628b4aView commit details -
Configuration menu - View commit details
-
Copy full SHA for dd2b640 - Browse repository at this point
Copy the full SHA dd2b640View commit details -
Configuration menu - View commit details
-
Copy full SHA for bac24e8 - Browse repository at this point
Copy the full SHA bac24e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 98b7a76 - Browse repository at this point
Copy the full SHA 98b7a76View commit details -
Configuration menu - View commit details
-
Copy full SHA for a22d388 - Browse repository at this point
Copy the full SHA a22d388View commit details -
Configuration menu - View commit details
-
Copy full SHA for 00b1e22 - Browse repository at this point
Copy the full SHA 00b1e22View commit details -
Configuration menu - View commit details
-
Copy full SHA for b4d4509 - Browse repository at this point
Copy the full SHA b4d4509View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c85c8a - Browse repository at this point
Copy the full SHA 9c85c8aView commit details -
Configuration menu - View commit details
-
Copy full SHA for be6dc3c - Browse repository at this point
Copy the full SHA be6dc3cView commit details
Commits on Nov 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 80fdc8b - Browse repository at this point
Copy the full SHA 80fdc8bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 50eb4d0 - Browse repository at this point
Copy the full SHA 50eb4d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7ae1889 - Browse repository at this point
Copy the full SHA 7ae1889View commit details -
Configuration menu - View commit details
-
Copy full SHA for d6721ed - Browse repository at this point
Copy the full SHA d6721edView commit details -
Configuration menu - View commit details
-
Copy full SHA for b3a71c7 - Browse repository at this point
Copy the full SHA b3a71c7View commit details -
haskellPackages.immortal: disable flaky tests on darwin
It took 5 tries in <https://hydra.nixos.org/eval/1809897> for the tests to succeed on x86_64 and aarch64 darwin, respectively.
Configuration menu - View commit details
-
Copy full SHA for 57fd2fc - Browse repository at this point
Copy the full SHA 57fd2fcView commit details
Commits on Nov 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b50e753 - Browse repository at this point
Copy the full SHA b50e753View commit details -
Configuration menu - View commit details
-
Copy full SHA for c79fde3 - Browse repository at this point
Copy the full SHA c79fde3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3a06a0e - Browse repository at this point
Copy the full SHA 3a06a0eView commit details