Commit graph

1,005,639 commits

Author SHA1 Message Date
Joseph Price
442545e58e nextcloud32: 32.0.10 -> 32.0.11
(cherry picked from commit 30a9824bb0)
2026-06-05 13:12:53 +00:00
nixpkgs-ci[bot]
171252d55e
[Backport release-26.05] jackett: 0.24.1954 -> 0.24.2021 (#528334) 2026-06-05 11:29:05 +00:00
Arian van Putten
37168c6cea
[Backport release-26.05] fluent-bit: 5.0.5 -> 5.0.6 (#528106) 2026-06-05 11:07:08 +00:00
Gergő Gutyina
730193be88
[Backport release-26.05] pnpm_11: 11.4.0 -> 11.5.1 (#527942) 2026-06-05 10:19:29 +00:00
R. Ryantm
8aa67cf4d2 jackett: 0.24.1954 -> 0.24.2021
(cherry picked from commit 9cacfa5a67)
2026-06-05 10:16:59 +00:00
nixpkgs-ci[bot]
8fe6cf6fb5
[Backport release-26.05] checkstyle: 13.4.2 -> 13.5.0 (#528295) 2026-06-05 10:11:35 +00:00
Weijia Wang
bd45396db7
[Backport release-26.05] pixelfed: 0.12.6 -> 0.12.7; fix build (#528296) 2026-06-05 09:34:10 +00:00
phanirithvij
251e82b864 nixosTests.pixelfed.standard: allow running on aarch64-linux
Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
(cherry picked from commit fd38c2f3a2)
2026-06-05 08:47:19 +00:00
phanirithvij
58993bc3e5 pixelfed: 0.12.6 -> 0.12.7; fix build
Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
(cherry picked from commit 3c945fb780)
2026-06-05 08:47:19 +00:00
R. Ryantm
0125dd85ba checkstyle: 13.4.2 -> 13.5.0
(cherry picked from commit 4190b1c0cd)
2026-06-05 08:44:06 +00:00
Pavol Rusnak
d7715a8c83
[Backport release-26.05] ollama: 0.30.4 -> 0.30.5 (#528272) 2026-06-05 08:13:12 +00:00
phibkro
5e026fcb57 ollama: fix darwin build for 0.30.5
Two darwin-only issues surfaced when building on x86_64-darwin:

1. The conditional postPatch removed three test files
   (ml/backend/ggml/ggml_test.go, ml/nn/pooling/pooling_test.go,
   model/models/nemotronh/model_omni_test.go) that no longer exist
   in v0.30.5 upstream. The `rm` failed with "No such file or directory"
   and aborted patchPhase. Tests in the new paths
   (e.g. fs/ggml/ggml_test.go) pass on darwin without removal — verified
   via the test phase in this commit's local build.

2. preFixup ran `patchelf --shrink-rpath` unconditionally; patchelf is
   ELF-only and darwin's Mach-O dylibs don't carry the build-dir RPATH
   problem in the first place. Gated on stdenv.hostPlatform.isLinux.

Verified: nix-build -A ollama on x86_64-darwin (macOS 15.6.1, Sequoia)
lands /nix/store/.../ollama-0.30.5; checkPhase green for all listed
packages including x/models/gemma4; ollama --version reports 0.30.5.

Assisted-by: Claude Opus 4.7 <noreply@anthropic.com>
(cherry picked from commit bba51cb247)
2026-06-05 08:08:18 +00:00
phibkro
1d53a5d32d ollama: 0.30.4 -> 0.30.5
Upstream patch release; notably fixes a divide-by-zero crash in
gemma3:12b. Bumps the vendored llama.cpp pin b9493 -> b9509 to match
upstream's LLAMA_CPP_VERSION. Verified ollama-cuda + ollama-vulkan
build on x86_64-linux.

https://github.com/ollama/ollama/releases/tag/v0.30.5

Assisted-by: Claude Opus 4.7 <noreply@anthropic.com>
(cherry picked from commit 0e1071782c)
2026-06-05 08:08:18 +00:00
Pavol Rusnak
b433c73a82
[Backport release-26.05] ollama: 0.24.0 -> 0.30.4 (#528269) 2026-06-05 07:53:04 +00:00
phibkro
48c8ccf0f0 ollama: fix vulkan variant — wire SPIRV-Headers across the ExternalProject boundary
Two layers were missing for ollama-vulkan after the 0.30.x bump's switch to
per-accelerator runners via ExternalProject_Add:

1. spirv-headers wasn't in nativeBuildInputs, so the parent cmake configure
   never even saw `SPIRV-HeadersConfig.cmake`. Add it (header-only — native
   is the right slot).

2. The runner sub-builds (`ollama-llama-server-vulkan` et al.) are launched
   by `cmake/local.cmake`'s `ExternalProject_Add`, whose child cmake process
   inherits env vars but not the parent's `-D` flags. Even after fixing
   (1), the child's `find_package(SPIRV-Headers REQUIRED)` at
   `ggml-vulkan/CMakeLists.txt:14` couldn't see the config, and once that
   was worked around with `CMAKE_PREFIX_PATH` as env, the compile then
   failed with `fatal error: spirv/unified1/spirv.hpp` — because
   upstream's `target_link_libraries(ggml-vulkan PRIVATE Vulkan::Vulkan)`
   notably does NOT link `SPIRV-Headers::SPIRV-Headers`, so the interface
   include path the cmake config exports never flows into the compile
   commands. Force the include via `NIX_CFLAGS_COMPILE` rather than
   patching upstream's CMakeLists across llama.cpp pins.

Verified: `ollama-vulkan` builds end-to-end; `$out/lib/ollama/vulkan/libggml-vulkan.so`
is present (not a silent CPU fallback like the cuda variant suffered in
the first 0.30 attempt).

🤖 Assisted by Claude

(cherry picked from commit 6432d78bff)
2026-06-05 07:48:08 +00:00
phibkro
e2dd21ba2b ollama: 0.24.0 -> 0.30.4
Notable upstream build changes folded into this bump:

* llama.cpp moved from in-tree vendoring to CMake FetchContent, pinned
  via the `LLAMA_CPP_VERSION` file at the repo root (b9493 here →
  llama.cpp commit a731805c). Pre-stage it as `fetchFromGitHub` and
  apply Ollama's compat patch in `postPatch` — neither
  `cmake/local.cmake` nor `llama/server/CMakeLists.txt` auto-applies
  the patch when the source is overridden via
  `FETCHCONTENT_SOURCE_DIR_LLAMA_CPP` (the parent's `ExternalProject_Add`
  passes `OLLAMA_LLAMA_CPP_SKIP_COMPAT_PATCH=ON` to the child build).
  The `apply-patch.cmake` script is idempotent.

* Since 0.30, `cmake/local.cmake` splits the llama.cpp build into
  per-runner sub-projects gated by `OLLAMA_LLAMA_BACKENDS`. Without
  setting it, only the CPU runner is built — `ollama-cuda` /
  `ollama-rocm` / `ollama-vulkan` would all silently fall back to CPU
  at runtime, with `libggml-{cuda,hip,vulkan}.so` absent from
  `$out/lib/ollama`. Map the package's `acceleration` value to the
  cmake backend name the elseif chain accepts:
    cuda   → cuda_v${cudaMajor}               (cuda_v12 / cuda_v13)
    rocm   → rocm_v${rocmMajor}_${rocmMinor}  (rocm_v7_1 / rocm_v7_2)
    vulkan → vulkan

* `cmd/launch/*_test.go` are integration tests for user-facing CLI
  launchers (claude, qwen, cline, codex, kimi, droid, openclaw,
  hermes, …) that install the target binary via npm and exec it on
  PATH. Both prerequisites are unavailable in the nix sandbox, so the
  launch subpackage's tests can't pass here. Drop them — same
  precedent as the existing darwin Metal test removals.

* The llama.cpp sub-build is driven by ExternalProject_Add and does
  not inherit the parent's `CMAKE_SKIP_BUILD_RPATH` setting, so its
  `.so` payloads end up with build-dir entries in RPATH. Strip with
  `patchelf --shrink-rpath --allowed-rpath-prefixes /nix/store` in
  preFixup; `$ORIGIN` is preserved unconditionally (non-absolute
  entries always allowed) so peer-lib lookup in `$out/lib/ollama`
  still works.

Drive-by cleanup: deadnix + statix passes (overrideModAttrs unused
lambda args → `_:_`, `inherit (rocmPackages) stdenv;` /
`inherit (vulkan-tools) stdenv;` for `buildGoModule.override`, drop
unused `coreutils` input — the old launch-test substitutions that
needed coreutils are dropped along with the tests).

Release notes:
  https://github.com/ollama/ollama/releases/tag/v0.30.4
  https://github.com/ollama/ollama/releases/tag/v0.30.0

Assisted-by: Claude Opus 4.7 <noreply@anthropic.com>
(cherry picked from commit 63e0d2d52d)
2026-06-05 07:48:07 +00:00
Doron Behar
f08d988439
[Backport release-26.05] zsh: 5.9 -> 5.9.1 (#527959) 2026-06-05 06:52:49 +00:00
Vladimír Čunát
f44602cdc2
[Backport release-26.05] scaleway-cli: disable time-dependent test (#528233) 2026-06-05 06:01:32 +00:00
Sam Estep
788da811d5 scaleway-cli: disable time-dependent test
Assisted-by: Claude:opus-4.8
(cherry picked from commit 2f19858831)
2026-06-05 05:46:05 +00:00
Dmitry Kalinkin
bf5a8d7f92
[Backport release-26.05] root: fix Darwin build (#525657) 2026-06-05 04:37:29 +00:00
nixpkgs-ci[bot]
301f712e65
[Backport release-26.05] mailpit: 1.30.0 -> 1.30.1 (#528187) 2026-06-05 02:30:02 +00:00
nixpkgs-ci[bot]
66dd0b2ff1
[Backport release-26.05] dprint-plugins.dprint-plugin-biome: 0.12.11 -> 0.12.12 (#528062) 2026-06-05 02:29:57 +00:00
R. Ryantm
ab33851ba8 mailpit: 1.30.0 -> 1.30.1
(cherry picked from commit fc5a4186be)
2026-06-05 02:02:08 +00:00
Adam C. Stephens
cc598dfd09
[Backport release-26.05] dexter: 0.6.0 -> 0.7.0 (#528130) 2026-06-04 23:13:20 +00:00
Martin Weinelt
5bd4198393
[Backport release-26.05] python3Packages.django_6: 6.0.5 -> 6.0.6] (#528045) 2026-06-04 23:05:52 +00:00
nixpkgs-ci[bot]
d3c462ac49
[Backport release-26.05] redis: 8.6.3 -> 8.8.0 (#524824) 2026-06-04 22:48:17 +00:00
Martin Weinelt
ec3a9fca7c
pretix: relax diango-formtools constraint 2026-06-05 00:37:26 +02:00
Michele Guerini Rocco
fa9f5ebead
[Backport release-26.05] nixos/wireless: restrict chown /etc/wpa_supplicant scope (#528087) 2026-06-04 21:34:53 +00:00
Adam C. Stephens
bfff353b19 dexter: 0.6.0 -> 0.7.0
Diff: https://github.com/remoteoss/dexter/compare/v0.6.0...v0.7.0

Changelog: https://github.com/remoteoss/dexter/blob/refs/tags/v0.7.0/CHANGELOG.md
(cherry picked from commit c5ebd4868c)
2026-06-04 20:55:46 +00:00
Emily
0fb5349b52
[Backport release-26.05] ungoogled-chromium: 148.0.7778.215-1 -> 149.0.7827.53-1 (#528125) 2026-06-04 20:53:23 +00:00
emilylange
ee250790b6 ungoogled-chromium: 148.0.7778.215-1 -> 149.0.7827.53-1
https://developer.chrome.com/blog/new-in-chrome-149

https://developer.chrome.com/release-notes/149

https://chromereleases.googleblog.com/2026/06/stable-channel-update-for-desktop.html
(cherry picked from commit 193479f2bb)
2026-06-04 20:45:41 +00:00
Adam C. Stephens
07970dac16
[Backport release-26.05] beamMinimal27Packages.erlang: use upstream doc target patch (#527837) 2026-06-04 20:30:23 +00:00
R. Ryantm
0c6e21290a fluent-bit: 5.0.5 -> 5.0.6
(cherry picked from commit 54d31096be)
2026-06-04 20:15:47 +00:00
Leona Maroni
631eaabe38
[Backport release-26.05] keycloak: 26.6.2 -> 26.6.3 (#528084) 2026-06-04 20:08:30 +00:00
nixpkgs-ci[bot]
c267482b1b
[Backport release-26.05] kimai: 2.57.0 -> 2.58.0 (#528082) 2026-06-04 19:59:21 +00:00
Felix Bargfeldt
54514c3bb9
[Backport release-26.05] glance: 0.8.4 -> 0.8.5 (#528090) 2026-06-04 19:33:18 +00:00
Marcin Serwin
d8c71d9bad
[Backport release-26.05] polyml: move to by-name and various fixes (#527988) 2026-06-04 19:27:09 +00:00
jaredmontoya
bd0cdc7b33 glance: 0.8.4 -> 0.8.5
(cherry picked from commit 397879d831)
2026-06-04 19:25:36 +00:00
rnhmjoj
1459fad584 nixos/wireless: restrict chown /etc/wpa_supplicant scope
Otherwise the recursive chown can fail, hence wpa_supplicant doesn't
start, if some read-only file has been bind-mounted into
/etc/wpa_supplicant.

This can happen if one uses `extraConfigFile` to add a file that is
under /etc/wpa_supplicant.

(cherry picked from commit 197a055a02)
2026-06-04 19:23:36 +00:00
transcaffeine
a010a9b728 keycloak: 26.6.2 -> 26.6.3
Release notes: https://github.com/keycloak/keycloak/releases/tag/26.6.3
Full changelog: https://github.com/keycloak/keycloak/compare/26.6.2...26.6.3

(cherry picked from commit 8e6c666e62)
2026-06-04 19:19:57 +00:00
R. Ryantm
284fa832b1 kimai: 2.57.0 -> 2.58.0
(cherry picked from commit a8b0f5bbe8)
2026-06-04 19:13:53 +00:00
Nick Cao
20042a1ebc
[Backport release-26.05] python3Packages.stanza: 1.12.0 -> 1.12.1 (#527485) 2026-06-04 18:42:51 +00:00
Marcus Ramberg
d030f73856
[Backport release-26.05] vivaldi: 8.0.4033.34 -> 8.0.4033.42 (#528025) 2026-06-04 18:36:25 +00:00
R. Ryantm
518ddb999c dprint-plugins.dprint-plugin-biome: 0.12.11 -> 0.12.12
(cherry picked from commit 65afd408d4)
2026-06-04 18:22:58 +00:00
Felix Bargfeldt
202285dc76
[Backport release-26.05] zipline: 4.6.1 -> 4.6.2 (#528040) 2026-06-04 17:41:42 +00:00
Martin Weinelt
7a7d7e916b pretalx: relax django-formtools
(cherry picked from commit 6f40befa55)
2026-06-04 19:16:23 +02:00
R. Ryantm
c61baa7a41 zipline: 4.6.1 -> 4.6.2
(cherry picked from commit cf904205a0)
2026-06-04 17:14:25 +00:00
Felix Bargfeldt
e8f678b675
[Backport release-26.05] go-httpbin: 2.22.1 -> 2.23.0 (#528022) 2026-06-04 16:33:28 +00:00
R. Ryantm
61f430b101 vivaldi: 8.0.4033.34 -> 8.0.4033.42
(cherry picked from commit 24d2bb0745)
2026-06-04 16:25:07 +00:00
R. Ryantm
35e137381f go-httpbin: 2.22.1 -> 2.23.0
(cherry picked from commit c98e3d885f)
2026-06-04 16:20:18 +00:00