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

bzip2, zstd: Add enableStatic option #237563

Closed
wants to merge 396 commits into from
Closed
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Jul 2, 2023

  1. Merge pull request NixOS#240893 from helsinki-systems/upd/libwebp

    libwebp: 1.3.0 -> 1.3.1
    SuperSandro2000 authored Jul 2, 2023
    Configuration menu
    Copy the full SHA
    9fc468d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a7facaf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8066e45 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    be6f407 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    394e69c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b257412 View commit details
    Browse the repository at this point in the history
  7. Merge pull request NixOS#240131 from SuperSandro2000/execnet

    pypy3Packages.execnet: disable tests as they randomly crash, cleanup
    SuperSandro2000 authored Jul 2, 2023
    Configuration menu
    Copy the full SHA
    311a17d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e58198b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d3954e9 View commit details
    Browse the repository at this point in the history
  10. db: fix build with clang 16

    The configure scripts frequently use `main` returning an implicit `int`,
    which causes spurious failures when CC is clang 16+. This is fixed by
    patching the provided macros and regenerating the scripts with
    autoreconfHook, though it requires some manual processing (see below).
    
    The upstream `configure.ac` is written in such a way that it requires
    fixups and post-processing.
    
    * Fixups are required because the original build process just cats the
      macros together into one file. When `aclocal` is run, it does not pick
      up all of them. This is worked around by catting the missing macros to
      a file that is picked up by autoreconfHook.
    * Post-processing is required to populate the version information. This
      is done in a subshell to avoid polluting the environment with the
      contents of `RELEASE`. Otherwise, the build will fail because the
      version C macros it expects will not be defined.
    reckenrode committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    6302ba0 View commit details
    Browse the repository at this point in the history
  11. db: fix build with clang 16 on Darwin

    Both `_spin_lock_try` and `_spin_unlock` are private and deprecated
    APIs, which are not exported by any headers in the SDK. The build fails
    because the configure script does not define the functions before
    calling them, which is treated as error by clang 16.
    
    This patch replaces use of those APIs with `os_unfair_lock`, which is
    the recommended replacement per the deprecation messages.
    reckenrode committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    3801851 View commit details
    Browse the repository at this point in the history
  12. darwin.stdenv: refactor stdenv definition

    In preparation for bumping the LLVM used by Darwin, this change
    refactors and reworks the stdenv build process. When it made sense,
    existing behaviors were kept to avoid causing any unwanted breakage.
    However, there are some differences. The reasoning and differences are
    discussed below.
    
    - Improved cycle times - Working on the Darwin stdenv was a tedious
      process because `allowedRequisites` determined what was allowed
      between stages. If you made a mistake, you might have to wait a
      considerable amount of time for the build to fail. Using assertions
      makes many errors fail at evaluation time and makes moving things
      around safer and easier to do.
    - Decoupling from bootstrap tools - The stdenv build process builds as
      much as it can in the early stages to remove the requirement that the
      bootstrap tools need bumped in order to bump the stdenv itself. This
      should lower the barrier to updates and make it easier to bump in the
      future. It also allows changes to be made without requiring additional
      tools be added to the bootstrap tools.
    - Patterned after the Linux stdenv - I tried to follow the patterns
      established in the Linux stdenv with adaptations made to Darwin’s
      needs. My hope is this makes the Darwin stdenv more approable for
      non-Darwin developers who made need to interact with it. It also
      allowed some of the hacks to be removed.
    - Documentation - Comments were added explaining what was happening and
      why things were being done. This is particular important for some
      stages that might not be obvious (such as the sysctl stage).
    - Cleanup - Converting the intermediate `allowedRequisites` to
      assertions revealed that many packages were being referenced that no
      longer exist or have been renamed. Removing them reduces clutter and
      should help make the stdenv bootstrap process be more understandable.
    reckenrode committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    a845397 View commit details
    Browse the repository at this point in the history
  13. swift-corelibs: fix build with clang 16

    swift-corelibs fails to build due to a missing header and an invalid
    pointer conversion. Patches are provided to fix both of these issues.
    reckenrode committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    8c16d17 View commit details
    Browse the repository at this point in the history
  14. swift-corelibs: switch build system to cmake

    Switching the build system to cmake makes it easier to make changes to
    the build (particularly which dependencies to link). It also removes a
    lot of manual build steps and fixes the issue identified by @emilazy in
    NixOS#238791.
    
    Fixes NixOS#238791.
    reckenrode committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    aeb53a8 View commit details
    Browse the repository at this point in the history
  15. swift-corelibs: switch to nixpkgs icu

    Upstream swift-corelibs links against icu on Linux, so it is not
    necessarily tied to the version of ICU provided by Apple for Darwin.
    
    swift-corelibs and qtwebkit are the only two packages that link against
    darwin.ICU. Switching to the nixpkgs icu will allow the Darwin-specific
    package to be deprecated and removed eventually.
    reckenrode committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    6dbdf28 View commit details
    Browse the repository at this point in the history
  16. swift-corelibs: don’t link against libcurl

    swift-corelibs uses libcurl to implement `NSURLSession` in Foundation
    via the symbols exported by CF. Foundation is not build on Darwin, and
    these symbols are not exported by the system CoreFoundation.
    
    By not linking against libcurl, this breaks a cycle between CF and
    libcurl. That should allow libcurl to drop the patch disabling
    linking against the SystemConfiguration and restore NAT64 support.
    
    Unfortunately, the Darwin stdenv bootstrap still needs to build
    dependencies that use `fetchFromGitHub`. While it can drop curl from the
    final stdenv, it still needs to use it during the stdenv bootstrap.
    reckenrode committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    ebc1bcf View commit details
    Browse the repository at this point in the history
  17. swift-corelibs: actually provide and use the hook

    @emilazy found a bug in NixOS#234861. Specifically, the hook is not actually
    applied. e2fsprogs links against darwin.CF, but since it cannot find the
    framework by rpath, it crashes.
    
    Since the hook should always be used, it is copied directly to
    `nix-support/setup-hook` instead of providing it as an attribute. This
    preserves dropping the hook in the cross-compilation case while
    providing it for everything else that needs it.
    
    To avoid further churn and due to the complexity of building the stdenv
    with the hook active, this change required the stdenv rework.
    reckenrode committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    8bee297 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2023

  1. Configuration menu
    Copy the full SHA
    9fb09f7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9fc1b7b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4457dfe View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5a450bd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c346485 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    61abd83 View commit details
    Browse the repository at this point in the history
  7. Merge pull request NixOS#240644 from reckenrode/xmlto-clang16

    xmlto: fix build with clang 16
    wegank authored Jul 3, 2023
    Configuration menu
    Copy the full SHA
    3136499 View commit details
    Browse the repository at this point in the history
  8. Merge pull request NixOS#240987 from RaitoBezarius/update/kernel

    linux_6_1, linux_6_3, linux_6_4: update stable kernels
    Ma27 authored Jul 3, 2023
    Configuration menu
    Copy the full SHA
    67767c8 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    16f4d58 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    5d7ecca View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    afae8ea View commit details
    Browse the repository at this point in the history
  12. vala: Merge graphviz patches into one

    I don't see a reason to separate the gvc-compact patch, we are actually already
    maintaining our graphviz patch for a while (since openembedded-core is now simply
    disabling valadoc).
    bobby285271 committed Jul 3, 2023
    Configuration menu
    Copy the full SHA
    8c86064 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    089f6ad View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    d5a546b View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    0f844d9 View commit details
    Browse the repository at this point in the history
  16. diffutils: disable hanging test on x86_64-darwin

    The test-c-stack tests hang on x86_64-darwin when they are run under
    Rosetta 2. Disabling these tests allows the rest of the tests to run
    successfully on that platform.
    
    This is a similar to the issue that affected gnugrep (NixOS#236229).
    reckenrode committed Jul 3, 2023
    Configuration menu
    Copy the full SHA
    597f837 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2023

  1. Configuration menu
    Copy the full SHA
    120eae9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    97808bf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ddbc49b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c24f38a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fe0b002 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    34c63e9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    88e268b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1d35186 View commit details
    Browse the repository at this point in the history
  9. openexr: increase test timeout

    The default timeout is 1500.  We've been seeing consistent timeouts on
    builders under high load.  Let's see if this helps.
    
    Link: NixOS#234754 (comment)
    Fixes: NixOS#240660
    alyssais committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    6c6abba View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    3d3d00e View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    14bdc27 View commit details
    Browse the repository at this point in the history
  12. zimg: 3.0.4 -> 3.0.5

    r-ryantm committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    e27bbea View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    b6d0932 View commit details
    Browse the repository at this point in the history
  14. Merge pull request NixOS#241354 from reckenrode/diffutils-darwin

    diffutils: disable hanging test on x86_64-darwin
    wegank authored Jul 4, 2023
    Configuration menu
    Copy the full SHA
    cad9efb View commit details
    Browse the repository at this point in the history
  15. libxcrypt: Fix building with -march=native

    When using super.impureUseNativeOptimizations as an overlay for stdenv,
    libxcrypt fails building with -Werror=sign-conversion
    
    Co-authored-by: Artturin <Artturin@artturin.com>
    cheriimoya and Artturin committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    f83c38e View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    8d24e60 View commit details
    Browse the repository at this point in the history
  17. Merge pull request NixOS#240654 from reckenrode/cctools-port-clang16

    cctools-port: fix build with clang 16 on x86_64-darwin
    wegank authored Jul 4, 2023
    Configuration menu
    Copy the full SHA
    297886f View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    76349bb View commit details
    Browse the repository at this point in the history
  19. iproute2: 6.3.0 -> 6.4.0

    r-ryantm authored and yu-re-ka committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    ded1ecb View commit details
    Browse the repository at this point in the history
  20. Merge pull request NixOS#241216 from r-ryantm/auto-update/iproute2

    iproute2: 6.3.0 -> 6.4.0
    mweinelt authored Jul 4, 2023
    Configuration menu
    Copy the full SHA
    fb7b05b View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2023

  1. Configuration menu
    Copy the full SHA
    c0ba7fb View commit details
    Browse the repository at this point in the history
  2. Merge branch 'staging-next' into staging

    ; Conflicts:
    ;	pkgs/development/libraries/nss/generic.nix
    
    - bb53634 removed the conditionals since firefox-esr-91 and nss <3.69 has been dropped a while ago.
    - cb37628 updated the conditionals to always partition the tests based on the nss_latest version. Chosen that since it will remain future proof.
    jtojnar committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    2819e54 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6efafe1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1629e8b View commit details
    Browse the repository at this point in the history
  5. Merge pull request NixOS#241450 from alyssais/openexr-timeout

    openexr: increase test timeout
    wegank authored Jul 5, 2023
    Configuration menu
    Copy the full SHA
    8edb52b View commit details
    Browse the repository at this point in the history
  6. Merge pull request NixOS#241467 from r-ryantm/auto-update/zimg

    zimg: 3.0.4 -> 3.0.5
    rnhmjoj authored Jul 5, 2023
    Configuration menu
    Copy the full SHA
    031101f View commit details
    Browse the repository at this point in the history
  7. Merge pull request NixOS#240433 from reckenrode/darwin-stdenv-rework

    darwin.stdenv: Darwin stdenv rework
    wegank authored Jul 5, 2023
    Configuration menu
    Copy the full SHA
    f0a11a5 View commit details
    Browse the repository at this point in the history
  8. Merge pull request NixOS#241220 from NickCao/xorg-all

    xorg.*: update to latest version
    NickCao authored Jul 5, 2023
    Configuration menu
    Copy the full SHA
    8fcd23c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    94324ce View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    007ab6f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    73d415c View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f4dc076 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    7d9be8a View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    a23a2a1 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    7f06487 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    8791a24 View commit details
    Browse the repository at this point in the history
  17. Merge pull request NixOS#241178 from reckenrode/bdb-clang16

    db: fix build on Darwin and clang 16
    wegank authored Jul 5, 2023
    Configuration menu
    Copy the full SHA
    ff9ba20 View commit details
    Browse the repository at this point in the history
  18. Merge pull request NixOS#240724 from reckenrode/configd-clang16

    configd: fix build with clang 16
    wegank authored Jul 5, 2023
    Configuration menu
    Copy the full SHA
    2b9656e View commit details
    Browse the repository at this point in the history
  19. openldap: drop unused db

    wegank committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    9e2f0be View commit details
    Browse the repository at this point in the history
  20. Merge pull request NixOS#235780 from fabaff/asgiref-bump

    python311Packages.asgiref: 3.6.0 -> 3.7.2
    SuperSandro2000 authored Jul 5, 2023
    Configuration menu
    Copy the full SHA
    a29c9a4 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    d507f1d View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    d45279b View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    3d1f881 View commit details
    Browse the repository at this point in the history
  24. Merge pull request NixOS#240687 from r-ryantm/auto-update/xterm

    xterm: 382 -> 383
    trofi authored Jul 5, 2023
    Configuration menu
    Copy the full SHA
    f047c8c View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    8bf1b87 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2023

  1. Configuration menu
    Copy the full SHA
    4d41c5f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b9424c7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    76c7dfe View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c8e3cba View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e86eb60 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1b49940 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    72f9a50 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c543d28 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    32fcf61 View commit details
    Browse the repository at this point in the history
  10. stoken: Clean up

    - Format the expression.
    - Use static repo name.
    - Use autoreconfHook.
    jtojnar committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    cd94a00 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    5519641 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    99a328d View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    124f53d View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    5839265 View commit details
    Browse the repository at this point in the history
  15. Merge pull request NixOS#241755 from wegank/openldap-mdb

    openldap: drop unused db
    wegank authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    aa0f095 View commit details
    Browse the repository at this point in the history
  16. Merge pull request NixOS#241779 from mweinelt/libxcrypt-4.4.36

    libxcrypt: 4.4.35 -> 4.4.36
    mweinelt authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    82a0774 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    4b64637 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    35524da View commit details
    Browse the repository at this point in the history
  19. umockdev: Move libgudev tests into passthru

    libgudev is needed for an optional test but it itself relies on umockdev for testing.
    jtojnar committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    d9a4482 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    7ff70d5 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    446a870 View commit details
    Browse the repository at this point in the history
  22. Merge pull request NixOS#241782 from mweinelt/sqlalchemy-2.0.18

    python310Packages.sqlalchemy: 2.0.17 -> 2.0.18
    mweinelt authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    4c42445 View commit details
    Browse the repository at this point in the history
  23. Merge pull request NixOS#241700 from jtojnar/libxml2

    libxml2: 2.10.4 → 2.11.4
    mweinelt authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    a1ef5c0 View commit details
    Browse the repository at this point in the history
  24. Merge pull request NixOS#241701 from jtojnar/itstool

    itstool: 2.0.6 → 2.0.7
    mweinelt authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    f269a1b View commit details
    Browse the repository at this point in the history
  25. Merge pull request NixOS#241490 from mweinelt/exceptiongroup-1.1.2

    python310Packages.exceptiongroup: 1.1.0 -> 1.1.2
    mweinelt authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    497a851 View commit details
    Browse the repository at this point in the history
  26. Merge pull request NixOS#241270 from mweinelt/django-3.2.20

    python310Packages.django_3: 3.2.19 -> 3.2.20
    mweinelt authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    d58e2d5 View commit details
    Browse the repository at this point in the history
  27. Merge pull request NixOS#240840 from r-ryantm/auto-update/cups

    cups: 2.4.5 -> 2.4.6
    mweinelt authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    2386a5e View commit details
    Browse the repository at this point in the history
  28. Merge pull request NixOS#239748 from r-ryantm/auto-update/fluidsynth

    fluidsynth: 2.3.2 -> 2.3.3
    wegank authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    8077040 View commit details
    Browse the repository at this point in the history
  29. Merge pull request NixOS#239840 from r-ryantm/auto-update/libassuan

    libassuan: 2.5.5 -> 2.5.6
    wegank authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    1aac374 View commit details
    Browse the repository at this point in the history
  30. Merge pull request NixOS#241419 from r-ryantm/auto-update/openresolv

    openresolv: 3.12.0 -> 3.13.2
    wegank authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    e46f07a View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    1faabed View commit details
    Browse the repository at this point in the history
  32. Merge pull request NixOS#241571 from SuperSandro2000/cython

    python310Packages.Cython: 0.29.34 -> 0.29.36
    mweinelt authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    fee0517 View commit details
    Browse the repository at this point in the history
  33. Merge pull request NixOS#240925 from r-ryantm/auto-update/p11-kit

    p11-kit: 0.24.1 -> 0.25.0
    wegank authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    5bcb897 View commit details
    Browse the repository at this point in the history
  34. libgudev: Enable tests

    jtojnar committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    a27a2a8 View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    eafa5c9 View commit details
    Browse the repository at this point in the history
  36. Merge pull request NixOS#237472 from r-ryantm/auto-update/libdc1394

    libdc1394: 2.2.6 -> 2.2.7
    wegank authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    eb0ea8b View commit details
    Browse the repository at this point in the history
  37. mutest: unstable-2019-08-26 → 0-unstable-2023-02-24

    ebassi/mutest@e6246c9...18a2007
    
    - Use new version schema.
    - Add update script.
    - Use more convenient homepage.
    jtojnar committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    b5f2631 View commit details
    Browse the repository at this point in the history
  38. Merge pull request NixOS#235887 from r-ryantm/auto-update/isocodes

    isocodes: 4.11.0 -> 4.15.0
    wegank authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    87f95b7 View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    91dadd0 View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    46451b5 View commit details
    Browse the repository at this point in the history
  41. Merge pull request NixOS#241948 from K900/pipewire-0.3.73

    pipewire: 0.3.72 -> 0.3.73
    K900 authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    4383b3d View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    1a76e12 View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    0d7186b View commit details
    Browse the repository at this point in the history
  44. Merge pull request NixOS#240409 from SuperSandro2000/numpy-fail-tests

    python310Packages.numpy: run tests correct so that actually fail the build
    SuperSandro2000 authored Jul 6, 2023
    Configuration menu
    Copy the full SHA
    87956df View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2023

  1. Configuration menu
    Copy the full SHA
    c0f0122 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b9c74f9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cdb00fd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6f39774 View commit details
    Browse the repository at this point in the history
  5. librdf_raptor2: backport fix for libxml2-2.11

    `libxml2-2.11` removed `checked` bit of private API and broke
    `librdf_raptor2` build as:
    
           src/raptor_libxml.c:256:12: error: 'xmlEntity' {aka 'struct _xmlEntity'} has no member named 'checked'
             256 |     if(!ret->checked)
                 |            ^~
    
    The change pull upstream fix.
    trofi committed Jul 7, 2023
    Configuration menu
    Copy the full SHA
    1692524 View commit details
    Browse the repository at this point in the history
  6. Merge pull request NixOS#242012 from trofi/librdf_raptor2-libxml2-fix

    librdf_raptor2: backport fix for `libxml2-2.11`
    mweinelt authored Jul 7, 2023
    Configuration menu
    Copy the full SHA
    850e41f View commit details
    Browse the repository at this point in the history
  7. Merge pull request NixOS#240236 from mweinelt/curl-8.1.2

    curl: 8.1.1 -> 8.1.2
    mweinelt authored Jul 7, 2023
    Configuration menu
    Copy the full SHA
    a4d705f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    da44aac View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    daf025e View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a76023f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    84b0836 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f66291a View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    4d8cb04 View commit details
    Browse the repository at this point in the history
  14. Merge pull request NixOS#242060 from reckenrode/bdb-clang16-mk2

    db: make patches and autoreconfHook unconditional
    SuperSandro2000 authored Jul 7, 2023
    Configuration menu
    Copy the full SHA
    44a8228 View commit details
    Browse the repository at this point in the history
  15. Merge pull request NixOS#241913 from mweinelt/pillow-9.5.0

    python310Packages.pillow: 9.4.0 -> 9.5.0
    mweinelt authored Jul 7, 2023
    Configuration menu
    Copy the full SHA
    226e4d6 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2023

  1. Configuration menu
    Copy the full SHA
    6d9902b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7e696a9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cc1af72 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9769400 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b39481b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3ab86b3 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    31c88af View commit details
    Browse the repository at this point in the history
  8. gcc: restore 'Configured with:' output on 'gcc -v' output

    When reporting 'gcc' bugs upstream I'm occasionally asked for the actual
    configure flags I used to build gcc.
    
    Before the change `gcc -v` always reported empty string:
    
        $ gcc -v
        ...
        Target: x86_64-unknown-linux-gnu
        Configured with:
    
    After the change `gcc -v` contains original options with slightly
    mangled nix store paths to avoid build-only dependency retention:
    
        $ gcc -v
        ...
        Target: x86_64-unknown-linux-gnu
        Configured with: ../source/configure --prefix=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-14.0.0 --with-gmp-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.2.1-dev/include --with-gmp-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.2.1/lib --with-mpfr-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.0-dev/include --with-mpfr-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.0/lib --with-mpc=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libmpc-1.3.1 --with-native-system-header-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.37-8-dev/include --with-build-sysroot=/ --program-prefix= --enable-lto --disable-libstdcxx-pch --without-included-gettext --with-system-zlib --enable-checking=release --enable-static --enable-languages=c,c++ --disable-multilib --enable-plugin --disable-libcc1 --with-isl=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-isl-0.20 --disable-bootstrap --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=x86_64-unknown-linux-gnu
    
    While a bit verbose I think it's useful to see how we build gcc.
    trofi committed Jul 8, 2023
    Configuration menu
    Copy the full SHA
    41b146f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    93320f3 View commit details
    Browse the repository at this point in the history
  10. Merge NixOS#242108: gcc: fix build on x86_64-darwin

    ...into staging-next
    vcunat committed Jul 8, 2023
    Configuration menu
    Copy the full SHA
    c9706d1 View commit details
    Browse the repository at this point in the history
  11. luarocks: can be embedded with lua.withPackages

    lua.withPackages only brings packages that have passthru.luaModule, which was not the case of luarocks (because it's built differently than other lua packages). We call toLuaModule on luarocks so that it is brought in a lua.withPackages call
    teto committed Jul 8, 2023
    Configuration menu
    Copy the full SHA
    d87a6a9 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    e949ec4 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    a53be06 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    44d074c View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    55032e7 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    6ebedad View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2023

  1. Configuration menu
    Copy the full SHA
    24fc2ed View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a3477a0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a52559d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    18cf872 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ff15181 View commit details
    Browse the repository at this point in the history
  6. Merge pull request NixOS#242316 from wegank/reckenrode-cctools-llvm-fix

    cctools-llvm: match binutils targetPrefix definition
    wegank authored Jul 9, 2023
    Configuration menu
    Copy the full SHA
    c5fd953 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5d100b0 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    b6186e1 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8dda355 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    3feefc9 View commit details
    Browse the repository at this point in the history
  11. Merge pull request NixOS#242085 from misuzu/orjson-update

    python310Packages.orjson: 3.8.11 -> 3.9.2
    mweinelt authored Jul 9, 2023
    Configuration menu
    Copy the full SHA
    54e97f1 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    c83bb71 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    c60d482 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    381f0e0 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    f6a103d View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    7d687c1 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    c3217f1 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    67d8fed View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    8e6d31c View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    0142902 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    445c385 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    a61c7c5 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    ecb5bd2 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    e37dc85 View commit details
    Browse the repository at this point in the history
  25. cctools-llvm: use cctools assembler on x86_64-darwin and LLVM 11

    Clang 11 performs an optimization on x86_64 that is sensitive to the
    presence of debug information. This results in GCC’s bootstrap failing
    because it builds stage 2 with debug information and stage 3 without,
    and the resulting objects do not match.
    
    This patch uses the cctools assembler on LLVM 11 and x86_64-darwin while
    using the integrated assembler on newer versions, which matches the
    platform tools (Apple has uses the integrated assembler since Xcode 12).
    reckenrode committed Jul 9, 2023
    Configuration menu
    Copy the full SHA
    c810782 View commit details
    Browse the repository at this point in the history
  26. Revert "gcc: fix build on x86_64-darwin"

    This reverts commit b39481b.
    reckenrode committed Jul 9, 2023
    Configuration menu
    Copy the full SHA
    937f472 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    62a3586 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    2c0610c View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    bf55980 View commit details
    Browse the repository at this point in the history
  30. Merge pull request NixOS#241075 from tjni/requests-mock

    python310Packages.requests-mock: 1.10.0 -> 1.11.0
    SuperSandro2000 authored Jul 9, 2023
    Configuration menu
    Copy the full SHA
    4765199 View commit details
    Browse the repository at this point in the history
  31. Merge pull request NixOS#240413 from SuperSandro2000/pytest-timeout

    python310Packages.pytest-timeout: remove dependency on pytest-cov
    SuperSandro2000 authored Jul 9, 2023
    Configuration menu
    Copy the full SHA
    46be285 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    8ec5e67 View commit details
    Browse the repository at this point in the history
  33. darwin.stdenv: allow patchShebangs during the bootstrap

    This fixes pyicu (and any other package that uses `icu-config` instead
    of the CMake or some other module to get the build flags).
    
    What happened here is the bootstrap disables `patchShebangs` to avoid
    propagating the bootstrap tools to the final stdenv (due to `sh` and
    `bash` being on the `PATH` from the bootstrap tools). Because of that,
    the `#!/bin/sh` line in `icu-config` was not updated, causing it to
    invoke the system bash on Darwin. While that is undesirable in its own
    right, when the system bash is invoked as `sh`, `echo -n` will print
    `-n`, resulting in the breakage see in NixOS#241951 (comment).
    
    The fix is to build bash earlier in the bootstrap while making sure it
    is picked up over the one in the bootstrap tools. That allows
    `patchShebangs` to be enabled during the bootstrap. Any package with
    scripts that is included in the final stdenv should now have its
    scripts’ shebang lines properly patched.
    reckenrode committed Jul 9, 2023
    Configuration menu
    Copy the full SHA
    856ebe6 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2023

  1. Configuration menu
    Copy the full SHA
    09bdd38 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6610f45 View commit details
    Browse the repository at this point in the history
  3. buildenv: Limit exclusion of info/dir

    While trying to exclude a generated `/share/info/dir` in a package
    from symlinking into a profile, we also ended up excluding the Emacs
    info manual for `dired-x`.  This change excludes only the dir file.
    league committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    ef2d657 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ac16218 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    58f5e2c View commit details
    Browse the repository at this point in the history
  6. Merge NixOS#242519: darwin.stdenv: patchShebangs during bootstrap

    ..into staging-next
    vcunat committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    f855ba2 View commit details
    Browse the repository at this point in the history
  7. Merge NixOS#241270: python310Packages.django_3: 3.2.19 -> 3.2.20

    ...into staging-next, i.e. this will come to nixpkgs master earlier
    than the first merge of the PR in commit d58e2d5.
    vcunat committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    5fbb4da View commit details
    Browse the repository at this point in the history
  8. Merge NixOS#240840: cups: 2.4.5 -> 2.4.6

    ...into staging-next, i.e. this will come to nixpkgs master earlier
    than the first merge of the PR in commit 2386a5e.
    vcunat committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    fb7cc1a View commit details
    Browse the repository at this point in the history
  9. Merge pull request NixOS#242433 from wegank/rewrite-tbd-update

    darwin.rewrite-tbd: 20201114 -> unstable-2023-03-27
    wegank authored Jul 10, 2023
    Configuration menu
    Copy the full SHA
    847c543 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9105ae5 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    88e2243 View commit details
    Browse the repository at this point in the history
  12. Merge pull request NixOS#234880 from raboof/yarl-1.8.2-to-1.9.2

    python310Packages.yarl: 1.8.2 -> 1.9.2
    raboof authored Jul 10, 2023
    Configuration menu
    Copy the full SHA
    6df560a View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    4eca450 View commit details
    Browse the repository at this point in the history
  14. Merge pull request NixOS#241298 from bobby285271/upd/vala

    vala: 0.56.7 → 0.56.9
    bobby285271 authored Jul 10, 2023
    Configuration menu
    Copy the full SHA
    35b538f View commit details
    Browse the repository at this point in the history
  15. Merge pull request NixOS#239947 from SuperSandro2000/constantly-tests

    python310Packages.constantly: run tests
    SuperSandro2000 authored Jul 10, 2023
    Configuration menu
    Copy the full SHA
    3cfa204 View commit details
    Browse the repository at this point in the history
  16. Merge pull request NixOS#241000 from SuperSandro2000/pypy3/protobuf

    pypy3Packages.protobuf: fix build
    SuperSandro2000 authored Jul 10, 2023
    Configuration menu
    Copy the full SHA
    b98fc86 View commit details
    Browse the repository at this point in the history
  17. fluidsynth: Fix CMake config

    Upstream is concatenating CMAKE_INSTALL_LIBDIR onto CMAKE_INSTALL_PREFIX to get
    a directory to use for the install_name on Darwin. This is not the right way of
    making CMAKE_INSTALL_LIBDIR absolute.
    
    The config was first set up for breakage when the CMAKE_INSTALL_LIBDIR was made relative,
    in order to work around the wrong concatenation. This caused the _IMPORT_PREFIX to be
    computed by walking up the directory tree from the config file, instead of using
    the absolute CMAKE_INSTALL_LIBDIR.
    
    Then outputs were introduced to the derivation and the config was moved to a different
    output. Now the prefix it walks up to is the wrong prefix, and the config is busted.
    
    Fix by reverting the original workaround so we have an absolute CMAKE_INSTALL_LIBDIR,
    and pulling a patch that fixes the bad concatenation.
    OPNA2608 committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    f43a46f View commit details
    Browse the repository at this point in the history
  18. Merge NixOS#242647: util-linux: fix linking tools to $bin

    ...into staging-next
    vcunat committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    03bf9ff View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    de5a74e View commit details
    Browse the repository at this point in the history
  20. Merge pull request NixOS#242657 from OPNA2608/fix/fluidsynth_cmake_co…

    …nfig
    
    fluidsynth: Fix CMake config
    trofi authored Jul 10, 2023
    Configuration menu
    Copy the full SHA
    4701d81 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    7df9bcc View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    f341dac View commit details
    Browse the repository at this point in the history
  23. Merge pull request NixOS#241980 from trofi/gcc-print-configure-flags

    gcc: restore 'Configured with:' output on 'gcc -v' output
    trofi authored Jul 10, 2023
    Configuration menu
    Copy the full SHA
    bc1e685 View commit details
    Browse the repository at this point in the history
  24. ragel: enableParallelBuilding

    ragel: 47s -> 9s
    ragelDev: 1m51s  45s
    Artturin committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    ff49613 View commit details
    Browse the repository at this point in the history
  25. rustc: remove Darwin special-casing

    An attempt to remove it was made in NixOS#106886, but there was a build
    failure. Since that failure no longer occurs, remove it now.
    
    Based on thefloweringash/nixpkgs@1904236.
    reckenrode committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    5df1c24 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    9cd2426 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    77e1f51 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

  1. Configuration menu
    Copy the full SHA
    8e15f46 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    89036c3 View commit details
    Browse the repository at this point in the history
  3. openldap: 2.6.4 -> 2.6.5

    mweinelt committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    a51b82f View commit details
    Browse the repository at this point in the history
  4. Merge pull request NixOS#240653 from NickCao/libde265

    libde265: 1.0.11 -> 1.0.12
    NickCao authored Jul 11, 2023
    Configuration menu
    Copy the full SHA
    001f3bf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ddb72f3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e664454 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d25c057 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    75e44f5 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    3c65edb View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e13a581 View commit details
    Browse the repository at this point in the history
  11. Merge pull request NixOS#241751 from jtojnar/gnome-staging

    GNOME staging updates 2023-07-05
    jtojnar authored Jul 11, 2023
    Configuration menu
    Copy the full SHA
    df2d611 View commit details
    Browse the repository at this point in the history
  12. Merge pull request NixOS#241939 from jtojnar/libgudev

    libgudev: 237 → 238
    jtojnar authored Jul 11, 2023
    Configuration menu
    Copy the full SHA
    39e6cff View commit details
    Browse the repository at this point in the history
  13. Merge NixOS#242202: cctools-llvm: use cctools assembler on LLVM 11 an…

    …d x86_64-darwin
    
    ...into staging-next
    vcunat committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    b3d701e View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    64eda01 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    12991eb View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    e4fb059 View commit details
    Browse the repository at this point in the history
  17. Merge pull request NixOS#242749 from reckenrode/rustc-darwin-cleanup

    rustc: remove Darwin special-casing
    SuperSandro2000 authored Jul 11, 2023
    Configuration menu
    Copy the full SHA
    9a705f9 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2023

  1. Configuration menu
    Copy the full SHA
    c7f86a0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3614b96 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4d2d9f5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4d7aeee View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8ed29e7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    07b09fa View commit details
    Browse the repository at this point in the history
  7. Merge pull request NixOS#242736 from mweinelt/openldap-2.6.5

    openldap: 2.6.4 -> 2.6.5
    ajs124 authored Jul 12, 2023
    Configuration menu
    Copy the full SHA
    6230e8f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4284872 View commit details
    Browse the repository at this point in the history
  9. Merge pull request NixOS#243011 from K900/sdl2-2.28.1

    [staging-next] SDL2: 2.28.0 -> 2.28.1
    K900 authored Jul 12, 2023
    Configuration menu
    Copy the full SHA
    fc26824 View commit details
    Browse the repository at this point in the history
  10. Merge pull request NixOS#243044 from K900/pipewire-0.3.74

    [staging-next] Pipewire 0.3.74
    K900 authored Jul 12, 2023
    Configuration menu
    Copy the full SHA
    822f998 View commit details
    Browse the repository at this point in the history
  11. Merge pull request NixOS#242887 from pacien/mercurial-6-5-staging

    mercurial: 6.4.5 -> 6.5
    drupol authored Jul 12, 2023
    Configuration menu
    Copy the full SHA
    92bf582 View commit details
    Browse the repository at this point in the history
  12. Merge pull request NixOS#240939 from PedroHLC/nix-prefetch-git-sri

    nix-prefetch-git: add sri-hash to output
    drupol authored Jul 12, 2023
    Configuration menu
    Copy the full SHA
    99152c0 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    bc41da4 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    ddce1eb View commit details
    Browse the repository at this point in the history
  15. Merge pull request NixOS#242466 from risicle/ris-fortify3-disable-var…

    …ious
    
    disable `fortify3` hardening flag on various packages
    collares authored Jul 12, 2023
    Configuration menu
    Copy the full SHA
    e2622ee View commit details
    Browse the repository at this point in the history
  16. Merge pull request NixOS#243067 from marsam/update-bundler

    bundler: 2.4.15 -> 2.4.16
    marsam authored Jul 12, 2023
    Configuration menu
    Copy the full SHA
    e0c7f35 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    79f291c View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    0110755 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    c9c2ff7 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    0a6d0d6 View commit details
    Browse the repository at this point in the history