Commit Graph
860150 Commits
Author SHA1 Message Date
EmilyandGitHub 892ee021eb haskell.compiler.ghc{924,963,984}Binary: use broken for NCG check (#441069) 2025-09-08 02:36:01 +01:00
Yang, BoandMatt Sturgeon 33dfc47d5e nixos/timekpr: init at 0.5.8
Co-authored-by: Matt Sturgeon <matt@sturgeon.me.uk>
2025-09-08 01:34:02 +00:00
Jared BaurandGitHub 0eaac9afb2 acct: repair buffer overflow with dump-acct (#439249) 2025-09-07 18:09:15 -07:00
nixpkgs-merge-bot[bot]andGitHub 22c76d59c1 s7: 11.5-unstable-2025-08-26 -> 11.5-unstable-2025-09-06 (#441000) 2025-09-08 01:06:21 +00:00
Kira BruneauandGitHub d00e73bd09 anytype: 0.46.5 -> 0.49.2 (#411491) 2025-09-07 21:00:59 -04:00
R. Ryantm ec796723fb npm-check-updates: 18.0.3 -> 18.1.0 2025-09-08 00:54:23 +00:00
nixpkgs-merge-bot[bot]andGitHub 1af473c06a mirrord: 3.159.0 -> 3.161.0 (#440930) 2025-09-08 00:50:59 +00:00
nixpkgs-merge-bot[bot]andGitHub 25cbda6546 starlark: 0-unstable-2025-08-04 -> 0-unstable-2025-09-06 (#440876) 2025-09-08 00:50:52 +00:00
R. Ryantm e06e564785 duf: 0.8.1 -> 0.9.0 2025-09-08 00:47:34 +00:00
Luna Nova b52064b309 python3Packages.pyqt6: fix QtMultimediaWidgets
QtMultimediaWidgets wasn't built due to a link error as QtMultimedia was
missing from buildInputs.
2025-09-07 17:43:24 -07:00
YtandGitHub b2e6b00998 python3Packages.weaviate-client: 4.16.5 -> 4.16.9 (#441053) 2025-09-07 20:41:20 -04:00
R. Ryantm e83bd24afb git-codereview: 1.16.0 -> 1.17.0 2025-09-08 00:34:39 +00:00
Chris Hall b17f1938a1 hdf5-threadsafe: fix cmake flag, disable c++ api.
Short:
 - fix incorrect cmake flag `"-DDHDF5_ENABLE_THREADSAFE:BOOL=ON"` -> `"-DHDF5_ENABLE_THREADSAFE:BOOL=ON"`.
 - disable unsupported c++ api in hdf5-threadsafe.

Breaking:
Note: this bug means that historically nixpkgs was building hdf5-threadsafe without threadsafety enabled, but with c++ support.
C++ and threadsafe are unsupported, so this fix is a slight breaking change if downstream users were relying on hdf5-threadsafe exposing the c++ api.
If we instead want to expose both c++ and threadsafe, we would need "-DALLOW_UNSUPPORTED=ON", but then we are exposing a combination not supported or tested by upstream.

Related:
typo introduced in https://github.com/NixOS/nixpkgs/commit/cbd4d659e34c27cae5f48d7fdf6b2863f6492e6f
in the transition to cmake `"--enable-threadsafe"` was changed to `"-DDHDF5_ENABLE_THREADSAFE:BOOL=ON"`.
Note the double `D`, the correct syntax is `-DFLAG_NAME=VALUE`.

C++ was enabled by default in https://github.com/NixOS/nixpkgs/commit/9046690c73d913972e510566f03fad33fbe7eaf1

Longer:
```
$ nix build .#legacyPackages.aarch64-darwin.hdf5-threadsafe
$ nix log $(nix eval --raw .#legacyPackages.aarch64-darwin.hdf5-threadsafe.drvPath)
[...]
CMake Warning:
  Manually-specified variables were not used by the project:

    CMAKE_EXPORT_NO_PACKAGE_REGISTRY
    CMAKE_INSTALL_BINDIR
    CMAKE_INSTALL_DOCDIR
    CMAKE_INSTALL_INCLUDEDIR
    CMAKE_INSTALL_INFODIR
    CMAKE_INSTALL_LIBDIR
    CMAKE_INSTALL_LIBEXECDIR
    CMAKE_INSTALL_LOCALEDIR
    CMAKE_INSTALL_MANDIR
    CMAKE_INSTALL_SBINDIR
    CMAKE_POLICY_DEFAULT_CMP0025
    DHDF5_ENABLE_THREADSAFE

[...]
```

```
$ git grep -ni 'DHDF5_ENABLE_THREADSAFE'
pkgs/tools/misc/hdf5/default.nix:93:    "-DDHDF5_ENABLE_THREADSAFE:BOOL=ON"
```

We can see the correct version of this flag in the hdf5 repo
```
$ git grep -ni 'HDF5_ENABLE_THREADSAFE'
.github/workflows/arm-main-cmake.yml:94:            -DHDF5_ENABLE_THREADSAFE:BOOL=ON \
[...]
CMakeBuildOptions.cmake:59:option (HDF5_ENABLE_THREADSAFE "Enable thread-safety" OFF)
[...]
```

after this fix we can again inspect the cmake output, and we no longer see a warning for this unsupported variable

```
$ nix build .#legacyPackages.aarch64-darwin.hdf5-threadsafe
$ nix log $(nix eval --raw .#legacyPackages.aarch64-darwin.hdf5-threadsafe.drvPath)
[...]

CMake Warning:
  Manually-specified variables were not used by the project:

    CMAKE_EXPORT_NO_PACKAGE_REGISTRY
    CMAKE_INSTALL_BINDIR
    CMAKE_INSTALL_DOCDIR
    CMAKE_INSTALL_INCLUDEDIR
    CMAKE_INSTALL_INFODIR
    CMAKE_INSTALL_LIBDIR
    CMAKE_INSTALL_LIBEXECDIR
    CMAKE_INSTALL_LOCALEDIR
    CMAKE_INSTALL_MANDIR
    CMAKE_INSTALL_SBINDIR
    CMAKE_POLICY_DEFAULT_CMP0025

[...]
```

if we try to compile with both cppSupport and threadsafe we receive
```
> CMake Error at CMakeLists.txt:959 (message):
>    **** C++ and thread-safety options are not supported, override with ALLOW_UNSUPPORTED option ****
```

Testing:
Builds clean on aarch64-darwin and x86_64-linux.
2025-09-08 10:28:10 +10:00
R. Ryantm 3bde2f954c fstl: 0.11.0 -> 0.11.1 2025-09-08 00:27:38 +00:00
Kira Bruneau 518b5ba83d anytype: mark as broken on darwin 2025-09-07 20:25:58 -04:00
R. Ryantm c9bd86e736 slint-lsp: 1.12.1 -> 1.13.0 2025-09-08 00:24:10 +00:00
nixpkgs-ci[bot]andGitHub a0966d7a77 Merge master into staging-next 2025-09-08 00:17:21 +00:00
R. Ryantm ce9b49d89f komodo: 1.19.1 -> 1.19.3 2025-09-08 00:04:43 +00:00
R. Ryantm 1978a33e11 networkmanager-iodine: 1.2.0-unstable-2024-11-02 -> 1.2.0-unstable-2025-09-06 2025-09-07 23:57:58 +00:00
R. Ryantm d1331163ff thunderbird-140-unwrapped: 140.2.0esr -> 140.2.1esr 2025-09-07 23:56:31 +00:00
nixpkgs-merge-bot[bot]andGitHub 464137e82d pocketbase: 0.29.3 -> 0.30.0 (#440931) 2025-09-07 23:46:11 +00:00
R. Ryantm 312558293b terraform-providers.huaweicloud: 1.77.6 -> 1.78.1 2025-09-07 23:44:43 +00:00
Emily 4f342a1bcc haskell.compiler.ghc{924,963,984}Binary: use broken for NCG check
Fix availability checks on platforms where this would be false.
2025-09-08 00:37:00 +01:00
gadorandsternenseemann 9137f77959 git-annex: patch another test failure
https://git-annex.branchable.com/bugs/flaky_test_failure_add_dup/
https://hydra.nixos.org/build/306633277

similar to #438309 but applied on master due to failure for aarch64

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2025-09-08 01:28:23 +02:00
SandroandGitHub 7e7446639e nixos/gitea: use systemd-notify, use watchdog (#440644) 2025-09-08 01:08:46 +02:00
R. Ryantm 02a37cadc8 tokyonight-gtk-theme: 0-unstable-2025-08-21 -> 0-unstable-2025-08-28 2025-09-07 23:05:00 +00:00
R. Ryantm 66c4c6253a buf: 1.56.0 -> 1.57.0 2025-09-07 22:50:41 +00:00
R. Ryantm eabd3b77eb pgmoneta: 0.18.0 -> 0.19.1 2025-09-07 22:45:11 +00:00
R. Ryantm 2adb9c0f06 cursor-cli: 0-unstable-2025-08-27 -> 0-unstable-2025-09-04 2025-09-07 22:32:25 +00:00
R. Ryantm 734ed09eba supabase-cli: 2.40.0 -> 2.40.6 2025-09-07 22:22:16 +00:00
Gaétan LepageandGitHub 252726f4b7 vimPlugins.hlargs-nvim: init at 2025-06-16 (#440995) 2025-09-08 00:18:11 +02:00
R. Ryantm 5fb053afac python3Packages.dissect-extfs: 3.13 -> 3.14 2025-09-07 22:11:29 +00:00
SandroandGitHub f8ba13ccb6 python313Packages.napari-npe2: fix build (#440266) 2025-09-07 23:59:02 +02:00
R. Ryantm 647ac040cf python3Packages.zipstream-ng: 1.8.0 -> 1.9.0 2025-09-07 21:55:31 +00:00
Yohann BonifaceandGitHub 9a49b2f427 python3Packages.discordpy: 2.5.2 -> 2.6.3 (#439094) 2025-09-07 23:53:44 +02:00
Yohann BonifaceandGitHub 9d1d681e82 python3Packages.uxsim: 1.8.2 -> 1.9.0 (#439614) 2025-09-07 23:53:19 +02:00
Yohann BonifaceandGitHub 6c9b509d74 sbt-with-scala-native: 1.11.5 -> 1.11.6 (#436716) 2025-09-07 23:51:42 +02:00
Yohann BonifaceandGitHub 261455e4e0 python3Packages.rigour: 1.2.9 -> 1.3.2 (#440877) 2025-09-07 23:50:35 +02:00
Gaétan LepageandGitHub e8d3447b6d vimPlugins.vim-textobj-line: init at 2021-09-27 (#441002) 2025-09-07 23:43:01 +02:00
Gaétan LepageandGitHub 98f6855683 python3Packages.pynvim: 0.5.2 -> 0.6.0 (#441040) 2025-09-07 23:42:10 +02:00
SandroandGitHub bccf34fa22 go_1_25: 1.25.0 -> 1.25.1 (#441005) 2025-09-07 23:33:37 +02:00
R. Ryantm 514d7e0176 python3Packages.weaviate-client: 4.16.5 -> 4.16.9 2025-09-07 21:31:16 +00:00
SandroandGitHub 696de4eb61 nixos/podman: use nftables as firewall driver when enabled (#365847) 2025-09-07 23:10:41 +02:00
SandroandGitHub 5e4a8ab0b5 pgadmin: 9.7 -> 9.8 (#440887) 2025-09-07 23:07:38 +02:00
Tristan Ross e7a609e865 llvmPackages_git: 22.0.0-unstable-2025-08-31 -> 22.0.0-unstable-2025-09-07 2025-09-07 14:02:41 -07:00
Sandro Jäckel a9a9de4415 youtube-music: 3.10.0 -> 3.11.0
Diff: https://github.com/th-ch/youtube-music/compare/v3.10.0...v3.11.0

Changelog: https://github.com/th-ch/youtube-music/blob/master/changelog.md#v3110
2025-09-07 22:56:26 +02:00
Gaetan Lepage 83c7fc132d python3Packages.pynvim: 0.5.2 -> 0.6.0
Diff: https://github.com/neovim/pynvim/compare/0.5.2...0.6.0

Changelog: https://github.com/neovim/pynvim/releases/tag/0.6.0
2025-09-07 22:51:10 +02:00
Mauricio Collares ac85f482e3 sage: import cython and rpy2 update patches 2025-09-07 17:49:34 -03:00
Mauricio Collares def736708e python313Packages.rpy2: 3.6.2 -> 3.6.3, unbreak 2025-09-07 17:48:48 -03:00
Mauricio Collares dd86eded68 python313Packages.rpy2-robjects: init at 3.6.2 2025-09-07 17:48:48 -03:00