Skip to content
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

Merged
merged 557 commits into from
Nov 14, 2024
Merged

staging-next 2024-11-07 #354201

merged 557 commits into from
Nov 14, 2024
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Nov 1, 2024

  1. Configuration menu
    Copy the full SHA
    0d874b4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    958a2c9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    670be3a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b78ad13 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e4e28b0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f2b00cb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3c433c9 View commit details
    Browse the repository at this point in the history
  8. tdb: 1.4.10 -> 1.4.11

    wegank committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    933687c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    82f5e8e View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    48927d9 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    6e6e33b View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    507c5dd View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2024

  1. Configuration menu
    Copy the full SHA
    e46fdbc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5605fc7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8190cd6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0a375cc View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d6ccd28 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bf4d9cd View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0639506 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d32fe41 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8869364 View commit details
    Browse the repository at this point in the history
  10. sphinx: disable racy test

    This one fails when tests are run with too many cores.
    
    Closes: #353176
    mweinelt committed Nov 2, 2024
    Configuration menu
    Copy the full SHA
    7e7dce4 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    0fc2bbc View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    d0c3078 View commit details
    Browse the repository at this point in the history
  13. 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
    Ma27 committed Nov 2, 2024
    Configuration menu
    Copy the full SHA
    aaeeef5 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2024

  1. Configuration menu
    Copy the full SHA
    8156648 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2ca8831 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    086e59c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6f5fe24 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5ec4d4f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ed28ebd View commit details
    Browse the repository at this point in the history
  7. libsForQt5.*: consistently build with the macOS 13 SDK

    This was changed for `qtbase` in
    3be309e, but affects Qt WebEngine
    as well.
    emilazy committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    4e3c8f4 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8aaea37 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    e7a360a View commit details
    Browse the repository at this point in the history
  10. 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
    paparodeo committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    fa8ce61 View commit details
    Browse the repository at this point in the history
  11. 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
    paparodeo committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    0efe75e View commit details
    Browse the repository at this point in the history
  12. ld64: fix build with llvm19

    remove unused and incomplete function
    paparodeo committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    f91487f View commit details
    Browse the repository at this point in the history
  13. 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
    paparodeo committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    0fc9787 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    90375e5 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    1fb8dbc View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    9f089a3 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    529b023 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    a5693ce View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    5248318 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    b9aa5b3 View commit details
    Browse the repository at this point in the history
  21. 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
    adisbladis committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    687371a View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    97e7e07 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    a808a98 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    7f56758 View commit details
    Browse the repository at this point in the history
  25. bubblewrap: 0.10.0 -> 0.11.0

    r-ryantm authored and wegank committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    285f093 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    67ca7a7 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    46a1f3a View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    4113cc0 View commit details
    Browse the repository at this point in the history
  29. portaudio: use implicit apple-sdk pattern

    Matteo Pacini committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    d81b4fe View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    e21f807 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    15ece21 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    b3f3035 View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    a307173 View commit details
    Browse the repository at this point in the history
  34. 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.
    reckenrode committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    e166c9b View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    19fd3f0 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    50c534e View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    03524a8 View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    a99d2b7 View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    f995406 View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    cb404b3 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    bee49bd View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    42f60c5 View commit details
    Browse the repository at this point in the history
  43. python3Packages.moto: reformat

    onny committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    eb9cde0 View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    583c82b View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    dd116e8 View commit details
    Browse the repository at this point in the history
  46. ffmpeg: add librist

    randomizedcoder committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    18d48aa View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2024

  1. Configuration menu
    Copy the full SHA
    8cc792e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3020b7f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d2e8dbc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ad3f605 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    70b769c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5a10946 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9a023e5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    33dd80f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2ff59d4 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    fe71abd View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    7fdeeba View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    18bd3e7 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    ef86bf6 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    7bea7ca View commit details
    Browse the repository at this point in the history
  15. dhcpcd: 10.0.6 -> 10.1.0

    This works around #291, halfway.
    deepfire committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    e2210c0 View commit details
    Browse the repository at this point in the history
  16. 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
    trofi committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    5b13631 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    b15dd30 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2024

  1. Configuration menu
    Copy the full SHA
    2b84944 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e953c01 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    777ba2c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bab7ef3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ccb418b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e4f2f9d View commit details
    Browse the repository at this point in the history
  7. pythonRelaxDepsHook: handle attributes __structuredAttrs-agnostically

    Make the interation across pythonRelaxDeps and pythonRemoveDeps work
    regardless of __structuredAttrs.
    ShamrockLee committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    3a79bc3 View commit details
    Browse the repository at this point in the history
  8. pythonRelaxDepsHook: lint with ShellCheck

    Ignore SC2164 at this moment, as it will be gone when adding `set -e`.
    ShamrockLee committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    29c08ad View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    65293f4 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e32457a View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    6597b74 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    61dec15 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    77b4697 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    60d7073 View commit details
    Browse the repository at this point in the history
  15. Reapply "less: Fix withSecure regression"

    This reverts commit 6df0b10.
    This change was originally merged as PR #352298
    but it got moved to staging here.
    vcunat committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    b048be0 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    09459d1 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    7d1abc0 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    a08508d View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    e891128 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    f07f514 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    a186ca0 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    62cc8b3 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    651acae View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    f899bb5 View commit details
    Browse the repository at this point in the history
  25. 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.
    reckenrode committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    c8df669 View commit details
    Browse the repository at this point in the history
  26. 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.
    reckenrode committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    7ae8a1e View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    e4b106e View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    50259ac View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2024

  1. Configuration menu
    Copy the full SHA
    bdd0627 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e7cf0b4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    17cc7a6 View commit details
    Browse the repository at this point in the history
  4. apple-sdk: propagate the darwin.libutil library

    The SDK provides this without headers and apparently some things
    try to link to it. This should help increase compatibility with the
    native toolchain.
    emilazy committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    877e345 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ee80206 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    22f2052 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5907156 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ca614aa View commit details
    Browse the repository at this point in the history
  9. curl: 8.10.1 -> 8.11.0

    Signed-off-by: Sefa Eyeoglu <[email protected]>
    Scrumplex committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    c55530f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e233397 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f77d730 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    5a82e7a View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    46e0917 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    9038b3e View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    e9877d2 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    cee9a79 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    6c32a11 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    c87f921 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    ec62a8e View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    3602fc3 View commit details
    Browse the repository at this point in the history
  21. 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.
    paparodeo committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    7eb7798 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    1ab5205 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    3cd45d0 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    a886e49 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2024

  1. Configuration menu
    Copy the full SHA
    9c05a29 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    91a300a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    67cf25d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1b08033 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    81a6749 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d1e7262 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7863b8c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6bcccb6 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    5af01c3 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    59da82b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    9bf6e33 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    8072991 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    514bd9d View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    f144fc5 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    07f4874 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    8d77160 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    cb37e29 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    dc697d6 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    b25a5d5 View commit details
    Browse the repository at this point in the history
  20. darwin.copyfile: use a bootstrap SDK

    This is required to avoid an infinite recursion via `darwin.libutil`
    on `x86_64-darwin`.
    emilazy committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    2a61b91 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    bd7bbd9 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    f258a10 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    8021f83 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    be653d9 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    34abc6e View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    ad6b2bb View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    6b50ea9 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    dfa1d81 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    42c877c View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    8f76347 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    c068f3c View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    50f3bc8 View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    8d37fdd View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    127a31c View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    b3a0f2d View commit details
    Browse the repository at this point in the history
  36. 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.
    emilazy committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    c455166 View commit details
    Browse the repository at this point in the history
  37. stdenv/darwin: fix SDK overlays for macOS SDK < 11

    Quite impressive that this worked up until now.
    
    Co-authored-by: Lily Foster <[email protected]>
    emilazy and lilyinstarlight committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    ad625dd View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    271bc34 View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    a3600c0 View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    2074196 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    38835c8 View commit details
    Browse the repository at this point in the history
  42. 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.
    emilazy committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    a061b02 View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    b2a0e31 View commit details
    Browse the repository at this point in the history
  44. qt6.wrapQtAppsHook: add qtwayland to propagatedBuildInputs

    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]>
    wineee and Artturin committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    ae4fd66 View commit details
    Browse the repository at this point in the history
  45. qt6.wrapQtAppsNoGuiHook: init

    Unlike wrapQtAppsHook, wrapQtAppsNoGuiHook does not propagate qtwayland,
    to reduce closure size for CLI or other non-GUI applications.
    
    Co-authored-by: eclairevoyant <[email protected]>
    2 people authored and Artturin committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    b7cd0d3 View commit details
    Browse the repository at this point in the history
  46. Configuration menu
    Copy the full SHA
    f542c49 View commit details
    Browse the repository at this point in the history
  47. qt6.wrapQtAppsHook: Only propagate plugins,qml of qtwayland

    qt6.{wrapQtAppsHook,wrapQtAppsNoGuiHook}: propagate `qtbase` plugins
    
    https://www.github.com/NixOS/nixpkgs/pull/352419#discussion_r1823132984
    Artturin committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    ff6a084 View commit details
    Browse the repository at this point in the history
  48. qtbase-setup-hook: add wrapQtAppsNoGuiHook to error message

    Co-authored-by: eclairevoyant <[email protected]>
    2 people authored and Artturin committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    9501a20 View commit details
    Browse the repository at this point in the history
  49. deepin.dde-application-manager: use wrapQtAppsNoGuiHook to avoid prop…

    …agating qtwayland
    
    Co-authored-by: eclairevoyant <[email protected]>
    2 people authored and Artturin committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    a2d3be9 View commit details
    Browse the repository at this point in the history
  50. Configuration menu
    Copy the full SHA
    89fd771 View commit details
    Browse the repository at this point in the history
  51. doc/qt: Mention propagates and wrapQtAppsNoGuiHook

    Co-authored-by: eclairevoyant <[email protected]>
    Co-authored-by: Artturin <[email protected]>
    3 people committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    98774a3 View commit details
    Browse the repository at this point in the history
  52. qt: editing pass on docs

    K900 authored and Artturin committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    c8aec3b View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    2f696cb View commit details
    Browse the repository at this point in the history
  54. Configuration menu
    Copy the full SHA
    3533282 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2024

  1. Configuration menu
    Copy the full SHA
    d16ff94 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4ab3ca7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4dab54a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2900723 View commit details
    Browse the repository at this point in the history
  5. Reapply "haskellPackages: update stackage and hackage" (#354547)

    This reverts commit 7701a9e, reversing
    changes made to 8991dc8.
    
    Restore haskell-updates on staging-next to save resources on hydra.
    mweinelt committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    46b1474 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f9a10f1 View commit details
    Browse the repository at this point in the history
  7. 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.
    emilazy committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    51190ab View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    88895fc View commit details
    Browse the repository at this point in the history
  9. 2 Configuration menu
    Copy the full SHA
    8606038 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2024

  1. Configuration menu
    Copy the full SHA
    f3327c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ce1a535 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8e80325 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ce78877 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b977757 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a902801 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7ebe973 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2024

  1. Configuration menu
    Copy the full SHA
    48d4a0a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6e1f5c9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    24e5e7f View commit details
    Browse the repository at this point in the history
  4. qt6: expose darwinVersionInputs; python312Packages.{shiboken6,pysid…

    …e6}: use `qt6.darwinVersionInputs` (#354599)
    K900 authored Nov 10, 2024
    Configuration menu
    Copy the full SHA
    73cdc95 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    77ed931 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b064085 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4e6fffa View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1136f4b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0644d3b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    aa75974 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2024

  1. Configuration menu
    Copy the full SHA
    81f60ef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0958e34 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    351e0a0 View commit details
    Browse the repository at this point in the history
  4. p11-kit: disable test timeouts

    Fixes the build for me.
    emilazy committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    79d0f5d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2e58289 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    34f5aba View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1ca0de5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2cb56f3 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    1c3064c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    88f2bd4 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2024

  1. Configuration menu
    Copy the full SHA
    31a78bf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1a4ebf1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1628b4a View commit details
    Browse the repository at this point in the history
  4. livepeer: nixfmt

    Bot-wxt1221 committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    dd2b640 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bac24e8 View commit details
    Browse the repository at this point in the history
  6. livepeer: 0.5.20 -> 0.8.0

    Bot-wxt1221 committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    98b7a76 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a22d388 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    00b1e22 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b4d4509 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9c85c8a View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    be6dc3c View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2024

  1. Configuration menu
    Copy the full SHA
    80fdc8b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    50eb4d0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7ae1889 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d6721ed View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b3a71c7 View commit details
    Browse the repository at this point in the history
  6. 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.
    sternenseemann committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    57fd2fc View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2024

  1. Configuration menu
    Copy the full SHA
    b50e753 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c79fde3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3a06a0e View commit details
    Browse the repository at this point in the history