Thomas Gerbet and GitHub
57b60da4ab
varnish: fixes for VSV00019 ( #522046 )
2026-05-21 09:29:18 +00:00
Leona Maroni and GitHub
8a313d74f3
pdns: 5.0.4 -> 5.0.5 ( #522407 )
2026-05-21 09:26:46 +00:00
nixpkgs-ci[bot] and GitHub
ae1431efe0
betterleaks: 1.2.0 -> 1.3.0 ( #522533 )
2026-05-21 09:26:33 +00:00
nixpkgs-ci[bot] and GitHub
17b5ce6c88
clojure: 1.12.5.1638 -> 1.12.5.1645 ( #522503 )
2026-05-21 09:26:27 +00:00
nixpkgs-ci[bot] and GitHub
414ebb0d34
cloudflare-dynamic-dns: 4.4.4 -> 4.4.5 ( #522434 )
2026-05-21 09:26:25 +00:00
nixpkgs-ci[bot] and GitHub
bb922e8779
snx-rs: 6.0.5 -> 6.0.6 ( #522419 )
2026-05-21 09:26:24 +00:00
nixpkgs-ci[bot] and GitHub
6eaf3a1a10
anytype-cli: 0.3.1 -> 0.3.2 ( #522375 )
2026-05-21 09:26:20 +00:00
nixpkgs-ci[bot] and GitHub
f2ba737ff7
notesnook: 3.3.17 -> 3.3.19 ( #521825 )
2026-05-21 09:25:51 +00:00
Pol Dellaiera and GitHub
8e90c804da
mcp-server-time: fix meta.mainProgram ( #522581 )
2026-05-21 09:18:07 +00:00
André Silva and GitHub
160fe83114
sone: 0.15.0 -> 0.17.0 ( #521978 )
2026-05-21 09:15:46 +00:00
Gaétan Lepage and GitHub
7de3d49410
turso: 0.4.0 -> 0.6.0 ( #502943 )
2026-05-21 09:10:26 +00:00
Pol Dellaiera
5c35c9ca14
mcp-server-time: fix meta.mainProgram
2026-05-21 11:09:16 +02:00
Moritz Sanft and GitHub
4a29d733e8
gossip: fix vendored SDL2 build with current toolchain ( #522283 )
2026-05-21 08:15:18 +00:00
nixpkgs-ci[bot] and GitHub
30343f40db
typescript-go: 0-unstable-2026-05-12 -> 0-unstable-2026-05-20 ( #522505 )
2026-05-21 08:07:57 +00:00
nixpkgs-ci[bot] and GitHub
61efd1fa49
ledger-live-desktop: 4.2.2 -> 4.4.0 ( #522486 )
2026-05-21 08:07:49 +00:00
nixpkgs-ci[bot] and GitHub
f3a48f9ac8
cwal: 0.8.5 -> 0.9.0 ( #522367 )
2026-05-21 08:07:41 +00:00
yaya and GitHub
30a9cbbe41
feishin: bump electron to 40 ( #522301 )
2026-05-21 08:07:17 +00:00
K900 and GitHub
657e2fa076
staging-nixos merge for 2026-05-21 ( #522532 )
2026-05-21 07:53:38 +00:00
dram and GitHub
eae2be7609
nixos/security: warn if wrappers are disabled and wrappers are defined ( #519464 )
2026-05-21 07:50:57 +00:00
R. Ryantm
7f6a6b5d41
betterleaks: 1.2.0 -> 1.3.0
2026-05-21 07:46:49 +00:00
K900 and GitHub
738de3a368
netbird: 0.71.2 -> 0.71.3 ( #522521 )
2026-05-21 07:43:56 +00:00
K900 and GitHub
1a605b309e
nixos/system-environment: Export PATH to systemd transient environment ( #522477 )
2026-05-21 07:42:15 +00:00
Stefan Frijters and GitHub
02a0b168dc
build-support/vm: fix unpopulated debsGrouped after structuredAttrs refactor ( #522322 )
2026-05-21 07:38:43 +00:00
K900
8a02e5b944
netbird: 0.71.2 -> 0.71.3
...
Diff: https://github.com/netbirdio/netbird/compare/v0.71.2...v0.71.3
Changelog: https://github.com/netbirdio/netbird/releases/tag/v0.71.3
2026-05-21 10:37:23 +03:00
Thiago Kenji Okada and GitHub
ab3689b7ff
libretro.dosbox-pure: 0-unstable-2026-05-12 -> 0-unstable-2026-05-21 ( #522450 )
2026-05-21 07:33:42 +00:00
Thiago Kenji Okada and GitHub
8faecbf590
libretro.gambatte: 0-unstable-2026-05-12 -> 0-unstable-2026-05-15 ( #522427 )
2026-05-21 07:33:16 +00:00
Thiago Kenji Okada and GitHub
07abe2c919
libretro.swanstation: 0-unstable-2026-05-11 -> 0-unstable-2026-05-20 ( #522422 )
2026-05-21 07:32:40 +00:00
Thiago Kenji Okada and GitHub
7105217c92
libretro.vba-next: 0-unstable-2026-05-12 -> 0-unstable-2026-05-14 ( #522389 )
2026-05-21 07:31:59 +00:00
Colin and Stefan Frijters
86ada36e02
build-support/vm: fix unpopulated debsGrouped after structuredAttrs refactor
...
debsGrouped was a nested array, like `[ [ drv1 drv2 ] [ drv3 ] ... ]`.
that doesn't map to any bash item, so it would live only in the json attrs.
the `for component in "${debsGrouped[@]}"; ...` part of buildCommand
was thus referring to an unset variable... but the default bash behavior
is to treat that as an empty array even with `set -u` so the loop was
just doing nothing.
instead, flatten the array on the nix side. bash gets something like
`("drv1 drv2" "drv3" ...)` and the existing shell code destructures
that as expected.
verify by building a vm (e.g.
`tests.vmTools.buildPatchelfInDebian.diskImage`) and checking the
nix-log before and after for `INSTALLING COMPONENT` messages.
Co-Authored-By: Stefan Frijters <sfrijters@gmail.com >
2026-05-21 07:28:29 +00:00
nixpkgs-ci[bot] and GitHub
4671c04c09
Merge master into staging-nixos
2026-05-21 07:19:56 +00:00
Doron Behar and GitHub
c213c29311
gtk-gnutella: 1.2.2 -> 1.3.1 ( #522424 )
2026-05-21 07:18:57 +00:00
Doron Behar
188fe4bc87
gtk-gnutella: 1.2.2 -> 1.3.1
...
Diff: https://github.com/gtk-gnutella/gtk-gnutella/compare/v1.2.2...v1.3.1
Changelog: https://raw.githubusercontent.com/gtk-gnutella/gtk-gnutella/v1.3.1/ChangeLog
2026-05-21 10:11:12 +03:00
Doron Behar
5af886c57f
gtk-gnutella: use modern src arguments - tag & hash
2026-05-21 10:09:58 +03:00
R. Ryantm
c3a7601705
typescript-go: 0-unstable-2026-05-12 -> 0-unstable-2026-05-20
2026-05-21 07:09:48 +00:00
Doron Behar
f4d58b57de
gtk-gnutella: enable strictDeps && structured attrs
...
Mainly for nixpkgs-vet in #522424 , but is also justified anyway.
2026-05-21 10:09:39 +03:00
nixpkgs-ci[bot] and GitHub
a3c4cf99ba
ringboard-wayland: 0.14.0-unstable-2026-01-19 -> 0.16.2-unstable-2026-05-10 ( #522403 )
2026-05-21 06:46:18 +00:00
R. Ryantm
b6c4779d26
clojure: 1.12.5.1638 -> 1.12.5.1645
2026-05-21 06:42:51 +00:00
Pol Dellaiera and GitHub
e69db3665f
drupal: 11.3.9 -> 11.3.10 ( #522448 )
2026-05-21 06:24:53 +00:00
Sefa Eyeoglu and GitHub
e4418c6595
kyverno: 1.18.0 -> 1.18.1 ( #521634 )
2026-05-21 06:24:13 +00:00
Pol Dellaiera and GitHub
c74d9e83e5
csmith: bump, fix darwin build ( #521441 )
2026-05-21 06:20:18 +00:00
Ryan Hendrickson and GitHub
7d4ccb8239
firefox-devedition-unwrapped: 150.0b7 -> 152.0b1 ( #510832 )
2026-05-21 06:19:23 +00:00
Ivan Mincik and GitHub
4406890d63
{python3Packages.py-,}arwen: init at 0.0.5-unstable-2026-04-07 ( #521621 )
2026-05-21 06:09:31 +00:00
Ivan Mincik and GitHub
2902cb6db2
python3Packages.geodatasets: 2026.5.0 -> 2026.5.1 ( #522429 )
2026-05-21 06:08:34 +00:00
Will Fancher
44e15166e0
nixos/system-environment: Export PATH to systemd transient environment
...
Since e73170e38a , we no longer patch
systemd to prevent it resetting `PATH` for generators. Generators that
depended on this deviating behavior will no longer work, which
ironically includes the upstream `systemd-xdg-autostart-generator`.
Previously, generators would see systemd's actual environment, which
included environment variables set for the PAM session like `PATH`. To
preserve the old behavior *exactly*, we'd really want to be
replicating exactly what the `systemd-user` PAM service sets up, which
could technically include things other than just what we put in
`/etc/pam/environment`. But this is arguably a systemd bug (either
because `systemd-xdg-autostart-generator` shouldn't use the
generator's `PATH`, or because systemd should pass along the `PATH` it
got from PAM), so for now, we can keep it simple and fix it by
replicating what `/etc/pam/environment` does in `/etc/environment.d`.
2026-05-21 02:03:58 -04:00
R. Ryantm
dee2583487
firefox-devedition-unwrapped: 150.0b7 -> 152.0b1
2026-05-21 05:40:59 +00:00
zowoq and GitHub
838e49ca74
terraform-providers.hashicorp_tls: 4.2.1 -> 4.3.0 ( #522468 )
2026-05-21 05:28:05 +00:00
R. Ryantm
620d3d95fb
ledger-live-desktop: 4.2.2 -> 4.4.0
2026-05-21 05:27:42 +00:00
nartsisss and GaetanLepage
7ab5bf6ba1
turso: 0.4.0 -> 0.6.0
...
Co-authored-by: GaetanLepage <gaetan@glepage.com >
2026-05-21 08:26:01 +03:00
nixpkgs-ci[bot] and GitHub
01e736e418
kiro: 0.12.184 -> 0.12.200 ( #522473 )
2026-05-21 05:19:12 +00:00
nixpkgs-ci[bot] and GitHub
c37b3b9ec7
flow: 0.313.0 -> 0.314.0 ( #522366 )
2026-05-21 05:19:01 +00:00