2024-11-10 23:59:47 +00:00
|
|
|
{
|
|
|
|
stdenv,
|
|
|
|
lib,
|
|
|
|
elixir,
|
|
|
|
erlang,
|
|
|
|
hex,
|
|
|
|
git,
|
|
|
|
rebar,
|
|
|
|
rebar3,
|
|
|
|
fetchMixDeps,
|
|
|
|
findutils,
|
|
|
|
ripgrep,
|
|
|
|
bbe,
|
|
|
|
makeWrapper,
|
|
|
|
coreutils,
|
|
|
|
gnused,
|
|
|
|
gnugrep,
|
|
|
|
gawk,
|
|
|
|
}@inputs:
|
|
|
|
|
|
|
|
{
|
|
|
|
pname,
|
|
|
|
version,
|
|
|
|
src,
|
|
|
|
nativeBuildInputs ? [ ],
|
|
|
|
buildInputs ? [ ],
|
|
|
|
meta ? { },
|
|
|
|
enableDebugInfo ? false,
|
|
|
|
mixEnv ? "prod",
|
|
|
|
compileFlags ? [ ],
|
|
|
|
# Build a particular named release.
|
|
|
|
# see https://hexdocs.pm/mix/1.12/Mix.Tasks.Release.html#content
|
|
|
|
mixReleaseName ? "",
|
|
|
|
|
|
|
|
# Options to be passed to the Erlang compiler. As documented in the reference
|
|
|
|
# manual, these must be valid Erlang terms. They will be turned into an
|
|
|
|
# erlang list and set as the ERL_COMPILER_OPTIONS environment variable.
|
|
|
|
# See https://www.erlang.org/doc/man/compile
|
|
|
|
erlangCompilerOptions ? [ ],
|
|
|
|
|
|
|
|
# Deterministic Erlang builds remove full system paths from debug information
|
|
|
|
# among other things to keep builds more reproducible. See their docs for more:
|
|
|
|
# https://www.erlang.org/doc/man/compile
|
|
|
|
erlangDeterministicBuilds ? true,
|
|
|
|
|
|
|
|
# Mix dependencies provided as a fixed output derivation
|
|
|
|
mixFodDeps ? null,
|
|
|
|
|
|
|
|
# Mix dependencies generated by mix2nix
|
|
|
|
#
|
|
|
|
# This assumes each dependency is built by buildMix or buildRebar3. Each
|
|
|
|
# dependency needs to have a setup hook to add the lib path to $ERL_LIBS.
|
|
|
|
# This is how Mix finds dependencies.
|
|
|
|
mixNixDeps ? { },
|
|
|
|
|
|
|
|
elixir ? inputs.elixir,
|
|
|
|
erlang ? inputs.erlang,
|
|
|
|
hex ? inputs.hex.override { inherit elixir; },
|
|
|
|
|
|
|
|
# Remove releases/COOKIE
|
|
|
|
#
|
|
|
|
# People have different views on the nature of cookies. Some believe that they are
|
|
|
|
# secrets, while others believe they are just ids for clustering nodes instead of
|
|
|
|
# secrets.
|
|
|
|
#
|
|
|
|
# If you think cookie is secret, you can set this attr to true, then it will be
|
|
|
|
# removed from nix store. If not, you can set it to false.
|
|
|
|
#
|
|
|
|
# For backward compatibility, it is set to true by default.
|
|
|
|
#
|
|
|
|
# You can always specify a custom cookie by using RELEASE_COOKIE environment
|
|
|
|
# variable, regardless of the value of this attr.
|
|
|
|
removeCookie ? true,
|
|
|
|
|
|
|
|
# This reduces closure size, but can lead to some hard to understand runtime
|
|
|
|
# errors, so use with caution. See e.g.
|
|
|
|
# https://github.com/whitfin/cachex/issues/205
|
|
|
|
# https://framagit.org/framasoft/mobilizon/-/issues/1169
|
|
|
|
stripDebug ? false,
|
|
|
|
|
|
|
|
...
|
|
|
|
}@attrs:
|
|
|
|
let
|
|
|
|
# Remove non standard attributes that cannot be coerced to strings
|
|
|
|
overridable = builtins.removeAttrs attrs [
|
|
|
|
"compileFlags"
|
|
|
|
"erlangCompilerOptions"
|
|
|
|
"mixNixDeps"
|
|
|
|
];
|
|
|
|
in
|
|
|
|
assert mixNixDeps != { } -> mixFodDeps == null;
|
|
|
|
assert stripDebug -> !enableDebugInfo;
|
|
|
|
|
|
|
|
stdenv.mkDerivation (
|
|
|
|
overridable
|
|
|
|
// {
|
|
|
|
nativeBuildInputs =
|
|
|
|
nativeBuildInputs
|
|
|
|
++
|
|
|
|
# Erlang/Elixir deps
|
|
|
|
[
|
|
|
|
erlang
|
|
|
|
elixir
|
|
|
|
hex
|
|
|
|
git
|
|
|
|
]
|
|
|
|
++
|
|
|
|
# Mix deps
|
|
|
|
(builtins.attrValues mixNixDeps)
|
|
|
|
++
|
|
|
|
# other compile-time deps
|
|
|
|
[
|
|
|
|
findutils
|
|
|
|
ripgrep
|
|
|
|
bbe
|
|
|
|
makeWrapper
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = buildInputs;
|
|
|
|
|
|
|
|
MIX_ENV = mixEnv;
|
|
|
|
MIX_DEBUG = if enableDebugInfo then 1 else 0;
|
|
|
|
HEX_OFFLINE = 1;
|
|
|
|
|
|
|
|
DEBUG = if enableDebugInfo then 1 else 0; # for Rebar3 compilation
|
|
|
|
# The API with `mix local.rebar rebar path` makes a copy of the binary
|
|
|
|
# some older dependencies still use rebar.
|
|
|
|
MIX_REBAR = "${rebar}/bin/rebar";
|
|
|
|
MIX_REBAR3 = "${rebar3}/bin/rebar3";
|
|
|
|
|
|
|
|
ERL_COMPILER_OPTIONS =
|
|
|
|
let
|
|
|
|
options = erlangCompilerOptions ++ lib.optionals erlangDeterministicBuilds [ "deterministic" ];
|
|
|
|
in
|
|
|
|
"[${lib.concatStringsSep "," options}]";
|
|
|
|
|
Squashed 'third_party/nixpkgs/' changes from 6313551cd0542..e3e32b642a31e
e3e32b642a31e libcupsfilters: 2.1.0 -> 2.1.1 (#383227)
7e9f446c01a1f jsbeautifier: 1.15.1 -> 1.15.4 (#383241)
dc56e0155d389 blasfeo: 0.1.4.1 -> 0.1.4.2 (#383652)
113fc0c0fd1db python312Packages.mypy-boto3-*: updates (#388389)
4b3841feb874f python313Packages.deprecat: remove, python313Packages.ciscoconfparse: remove, python313Packages.ciscoconfparse2: init at 0.8.6 (#388215)
310517b8c0b04 qpwgraph: 0.8.1 -> 0.8.2 (#388336)
d8843681421e1 gocatcli: init at 1.0.6 (#388101)
be55d4a7c5fcb moxide: 0.1.0 -> 0.2.0 (#388374)
59acba6d85494 pnpm.fetchDeps: ignore packageManager field in package.json (#388252)
21e4b751ae4b9 trenchbroom: 2024.1 -> 2025.2
4abfe28752410 mgba: adopt
e49336fd38625 mgba: 0.10.4 -> 0.10.5
7978d240c2550 nixos/iosched: exclude loop devices by default; mention in release notes (#385106)
23d4e8f27a64a python313Packages.accuweather: 4.1.0 -> 4.2.0 (#388322)
768deaf13c967 python313Packages.in-place: update build-system (#388326)
ecfc2f957fa2e apt: 2.9.25 -> 2.9.31 (#380411)
79e2d415e9012 python313Packages.boto3-stubs: 1.37.8 -> 1.37.9
34c17c2ae0df0 python313Packages.botocore-stubs: 1.37.8 -> 1.37.9
57b7f4d2dfa6b python312Packages.mypy-boto3-elbv2: 1.37.0 -> 1.37.9
67cc9a6cb4a7d python312Packages.mypy-boto3-ec2: 1.37.5 -> 1.37.9
917fe74b86fef python312Packages.mypy-boto3-cloudfront: 1.37.2 -> 1.37.9
5c2e2f294c3b9 evcc: 0.200.7 -> 0.200.8 (#387816)
ea1c4bace69d4 signal-export: 3.2.2 -> 3.4.1 (#382634)
88f17aa894616 pnpm_9: 9.15.5 -> 9.15.7 (#384815)
d7e7e530ca25c SDL_compat: symlink package config specification file into sdl.pc (#388304)
aa8bb53991267 pkgs/SDL_compat: symlink package config specification file into sdl.pc
b6584992e0406 boxflat: 1.27.1 -> 1.28.4 (#388369)
338fd156260e0 thunderbird-bin-unwrapped: 128.7.1esr -> 128.8.0esr (#388159)
23e80e449390f treewide: `finalAttrs.doCheck` -> `finalAttrs.finalPackage.doCheck` (#386590)
d7b5df845a624 pulsar: 1.125.0 -> 1.126.0 (#387668)
6ee1752a91be2 moxide: 0.1.0 -> 0.2.0
c5f68ec37f0c3 boxflat: 1.27.1 -> 1.28.4
9004cb4a05a42 nixos/h2o: add simple listen.host setting, add example (#386318)
1e3e30d56649d nixos/h2o: clarify/format some docs to point to upstream config
3a8ebeb1dfb2c mesa: fix cross compilation (#388328)
901b87f8fd4d5 nixos/doc/rl-2411: mention iosched module
1513a50f2a046 qpwgraph: 0.8.1 -> 0.8.2
5c2eeaafda070 nghttp3: 1.7.0 -> 1.8.0 (#383944)
6bf3337ff59ff mesa: fix cross compilation
13a8d610e2cc9 tdb: 1.4.12 -> 1.4.13 (#379992)
d124a832efe56 python313Packages.in-place: update build-system
282fbdf89c4b3 markdown-oxide: use fetchCargoVendor; use finalAttrs; etc (#388100)
6a54cb3a92d1d python313Packages.accuweather: 4.1.0 -> 4.2.0
aa172ed022015 toppler: unbreak and refactor (#387132)
e15d06cb6f50a rofi: add pandoc to generate manpages (#388245)
a40b86d5850e7 brave: 1.75.181 -> 1.76.73 (#388283)
5d3dee1b6db39 castxml: 0.6.10 -> 0.6.11 (#381052)
c4ffc1b9431cc linuxPackages.corefreq: 2.0.0 -> 2.0.1 (#382562)
f17f4f51389b3 librewolf-unwrapped: restore patch application (#388153)
360eefbc261f7 cudaPackages.tensorrt: remove old extension.nix (#388234)
54116fcb8e43a firebird_3: 3.0.10 → 3.0.12 (#371926)
4cd73c77b9bc7 wily: fix build for gcc14 (#388223)
e7cfa565fff0d armadillo: 14.2.2 -> 14.4.0 (#379356)
b3eb62dabca9c python312Packages.apt: 2.9.2 -> 2.9.9
976faf0f79415 apt: 2.9.25 -> 2.9.31
3f95796a0fb62 minijinja: 2.7.0 -> 2.8.0 (#386832)
7c0574563e5e3 jql: 8.0.3 -> 8.0.4 (#386833)
c6c785cc60235 unit: 1.34.1 -> 1.34.2 (#386843)
fcb5f0c1f7030 wabt: 1.0.36 -> 1.0.37 (#386852)
01c9736678cc2 kubevela: 1.10.1 -> 1.10.2 (#386881)
62b6587ce6236 credhub-cli: 2.9.42 -> 2.9.43 (#386886)
66ea04438beb2 scdl: 2.12.3 -> 2.12.4 (#386898)
c7daabe60d32a python312Packages.array-api-compat: 1.10 -> 1.11 (#386910)
da63ce950a9dd python312Packages.gspread: 6.1.4 -> 6.2.0 (#386917)
dcb250aecc47e treefmt1: remove (#387745)
26c186cbd208b automatic-timezoned: 2.0.60 -> 2.0.64 (#388301)
2093f75939c66 patchelfUnstable: 0.18.0-unstable-2025-01-07 -> 0.18.0-unstable-2025-02-15 (#375187)
ef9bda324b1c6 terraform-providers.sumologic: 3.0.4 -> 3.0.5 (#388254)
9943e24e4b384 gql: 0.36.0 -> 0.37.0 (#388258)
2e9ccdae00502 terraform-providers.bigip: 1.22.7 -> 1.22.8 (#388265)
2eee43415946f kittycad-kcl-lsp: 0.1.69 -> 0.1.71 (#388277)
8511116fddfb6 lxgw-neoxihei: 1.213 -> 1.214 (#388280)
9bea65ab145e5 terraform-providers.spotinst: 1.209.2 -> 1.211.0 (#388236)
de322475a1745 terraform-providers.equinix: 3.2.0 -> 3.4.0 (#388239)
53627349dd148 python313Packages.cyclopts: 3.9.1 -> 3.9.2 (#388251)
7c6a639a7683b labwc-tweaks-gtk: 0-unstable-2025-01-26 -> 0-unstable-2025-03-07 (#388210)
263aff0bf5465 mqtt-exporter: 1.6.1 -> 1.7.0 (#388176)
668897d63e708 terraform-providers.doppler: 1.14.1 -> 1.15.0 (#388107)
9ec75a914a506 pdf2svg: 0.2.3 -> 0.2.4 (#388111)
62c142396485c sqldef: 0.17.32 -> 1.0.0 (#388112)
cae9948b282f3 terraform-providers.kafka: 0.8.3 -> 0.9.0 (#388132)
8cfc288fc85f0 cyclonedx-python: 5.2.0 -> 5.3.0 (#388133)
986270da117d2 amazon-ssm-agent: 3.3.1802.0 -> 3.3.1957.0 (#388135)
90c21ee7eb71a python312Packages.monty: 2025.1.9 -> 2025.3.3 (#388078)
1778406681a8b coroot: 1.8.6 -> 1.8.11 (#388080)
bf7afb66b031c certificate-ripper: 2.4.0 -> 2.4.1 (#388081)
4b5bcabd279e6 c2fmzq: 0.4.28 -> 0.4.29 (#388102)
0c501b94a9532 nixpacks: 1.33.0 -> 1.34.0 (#388103)
1fcaab4bb62e0 python313Packages.django-pwa: update build-system (#388186)
658bd128b5d16 cargo-public-api: 0.44.1 -> 0.44.2 (#388040)
6279f506bfaab aws-nuke: 3.48.1 -> 3.48.2 (#388051)
4043fe3ec2853 claude-code: 0.2.30 -> 0.2.32 (#388055)
0411cf90433cb rootlesskit: 2.3.1 -> 2.3.2 (#377440)
fe4cddfa94ea2 neatvnc: 0.9.3 -> 0.9.4 (#388292)
00e19eeea0e7f libslirp: 4.8.0 -> 4.9.0 (#377977)
65e1352a4a8d8 libwpe: 1.16.0 -> 1.16.2 (#375689)
90c9004407c2c hylafaxplus: 7.0.9 -> 7.0.10, misc improvements (also module) (#376418)
93c5687db93db {bite,browsers,bws,python312Packages.bytewax}: use fetchCargoVendor (#388174)
160bab3e319a7 home-manager: 0-unstable-2025-02-22 -> 0-unstable-2025-03-08 (#388144)
31484c38651f2 iosevka-bin: 32.5.0 -> 33.0.1 (#388161)
98b1c2ef72d43 automatic-timezoned: 2.0.60 -> 2.0.64
080cd0461c34e spotube: 3.9.0 -> 4.0.0 (#388187)
a4feece98313c freetds: 1.4.24 -> 1.4.26 (#376717)
739d5590a635a libmysqlconnectorcpp: 9.1.0 -> 9.2.0 (#376114)
52ba78048f563 nextcloud31Packages.apps.recognize: various cleanups and improvements (#387961)
d66b28be7ae24 libelfin: unstable-2018-08-25 -> 0.3-unstable-2024-03-11 (#387930)
f02347fc5a1b2 quantframe: init at 1.3.4 (#387814)
b7692a7ba6190 osinfo-db: 20240701 -> 20250124 (#376696)
56e686e5791e1 obs-studio: 31.0.1 -> 31.0.2 (#388225)
821c95bc41193 bitwarden-desktop: add darwin support and do minor refactor (#369559)
54bd09a515fba nixos/iosched: exclude loop devices by default
0eb6a300f0b71 obs-studio-plugins: mark some plugins as broken
63e31591f2727 nixos/matrix-alertmanager: set NODE_ENV to production, fix shellcheck when it is enabled (#388000)
4b64906ce933c obs-studio-plugins.obs-hyperion: fix build
de0b5d91b29e0 bitwarden-desktop: add darwin support and do minor refactor
35689274647e7 neatvnc: 0.9.3 -> 0.9.4
12164794863a8 ckbcomp: 1.232 -> 1.234 (#368722)
6e6cd2b1c4a3e libpqxx: 7.9.2 -> 7.10.0 (#370127)
a07a42e961d16 brave: 1.75.181 -> 1.76.73
84bdf736d0211 lxgw-neoxihei: 1.213 -> 1.214
2d9e4457f8e83 polkit-kde-agent: throw the correct package name for qt6 (#387951)
ffd42f2414c01 kittycad-kcl-lsp: 0.1.69 -> 0.1.71
83176b34bbf6b medusa: unstable-2018-12-16 -> 2.3 (#388017)
a9bd4f2bad140 imsprog: 1.5.1 -> 1.5.2 (#387664)
e29ebe8d64473 paho-mqtt-c: 1.3.13 -> 1.3.14, paho-mqtt-cpp: 1.4.1 → 1.5.1 (#371999)
3d694ed9d38e9 waveterm: 0.11.0 -> 0.11.1 (#387958)
4f04903728c14 konstraint: 0.40.0 -> 0.41.0 (#388256)
0d1585a0f6cee terraform-providers.bigip: 1.22.7 -> 1.22.8
97c50585a37bc gql: 0.36.0 -> 0.37.0
709055fb7016c konstraint: 0.40.0 -> 0.41.0
c1ee262029643 treewide: replace references to SDL*.dev with lib.getDev and lib.getInclude (#388253)
30739a5b4ab77 python3Packages.litellm: add missing optional dependencies for proxy (#388249)
9cb5a1fa3a079 terraform-providers.sumologic: 3.0.4 -> 3.0.5
0a0418c153443 vencord: use latest pnpm_10
4bf7bc6bfe0a8 pnpm.fetchDeps: ignore packageManager field in package.json
6770bd8f0bd11 python313Packages.cyclopts: 3.9.1 -> 3.9.2
9b5f94b51f5ae treewide: replace references to SDL2.dev with lib.getDev and lib.getInclude
dc0dc0313068d python3Packages.litellm: add missing optional dependencies for proxy
20dc9726861af rofi: add pandoc to generate manpages
16d30c563d4f2 treewide: replace references to SDL.dev with lib.getDev SDL
18d69a9d14f1b gocatcli: init at 1.0.6
4a6505819667d woodpecker-plugin-git: 2.6.1 -> 2.6.2 (#387875)
810f3b88e4ae9 nixos/synapse-auto-compressor: init (#383168)
713ae5917fa58 mkBinaryCache: add missing .nar extension (#388173)
568795a1b6e8b terraform-providers.equinix: 3.2.0 -> 3.4.0
eaf382d9db0c6 elementary-xfce-icon-theme: 0.20.1 -> 0.21 (#387689)
25a6112c0299b terraform-providers.spotinst: 1.209.2 -> 1.211.0
9833fa8dbd317 cudaPackages.tensorrt: remove old extension.nix
e9b255a8c4b9d python312Packages.fastembed: 0.5.1 -> 0.6.0 (#388217)
7611065d9b348 wily: fix build for gcc14
d20f07c522092 laurel: 0.6.5 -> 0.7.0 (#387571)
42565a80f178c wine64Packages.{unstable,staging}: 10.0 -> 10.2 (#384537)
e8678650e3686 saga: Fix compiling on Darwin (#384655)
a64e65b58661b obs-studio: 31.0.1 -> 31.0.2
db54ea84bfa2c librewolf-bin: 135.0-1 -> 136.0-2 (#387662)
b97d92aaef927 nixos/cloudflare-dyndns: fix missing home error (#386211)
77d77c17c7abc librewolf: 136.0-1 -> 136.0-2
04ebc42c3551a librewolf: add fpletz to maintainers
a017ad7039ab5 librewolf-unwrapped: sync build patching with upstream
21d0d2f988844 quba: Add support for darwin (#385983)
6a5079ab2151b jawiki-all-titles-in-ns0: 0-unstable-2025-02-01 -> 0-unstable-2025-03-01 (#388193)
20b5d6930c3f1 jp-zip-codes: 0-unstable-2025-02-01 -> 0-unstable-2025-03-01 (#388198)
329a253d1aa17 python312Packages.fastembed: 0.5.1 -> 0.6.0
191cb1ca7a529 python313Packages.ciscoconfparse: remove
4a9d9027e093c python313Packages.ciscoconfparse2: init at 0.8.6
e5de02b50ce8c python313Packages.scrypt: init at 0.8.27
aeafbfae2c765 CONTRIBUTING: fix a small typo (#388199)
645e2def5e01c labwc-tweaks-gtk: 0-unstable-2025-01-26 -> 0-unstable-2025-03-07
9516fe564319e justbuild: 1.4.3 -> 1.5.0 (#388191)
b29071bba6d26 mold: 2.37.0 -> 2.37.1 (#388140)
53f0d039ab59b pmbootstrap: 3.2.0 -> 3.3.1 (#387591)
626303c40a96f slurm: 24.11.2.1 -> 24.11.3.1 (#387903)
f2fbaf34b0056 bed: init at 0.2.8 (#386116)
21934db919ed3 xlsxsql: init at 0.4.0 (#386125)
bc9e507349747 mdtsql: init at 0.1.0 (#386127)
508939d1b37a8 xo: init at 1.0.2 (#386134)
4ef83f2de2c3a guesswidth: init at 0.4.0 (#386322)
f6d17c2d8747c CONTRIBUTING: fix a small typo
2014ddabbe2d8 lib60870: fix darwin build (#388083)
aee0ad3443a4f macskk: 1.4.1 -> 1.11.0 (#387878)
a9d40d52f782b unityhub: fix unity 6 editor vulkan backend (#386815)
7795050ca0a0d python312Packages.pytubefix: 8.12.1 -> 8.12.2 (#386499)
d57ea7fe181f0 jp-zip-codes: 0-unstable-2025-02-01 -> 0-unstable-2025-03-01
10de0f1d6d273 anup: modernize, format, move to by-name (#388115)
cad01ebfeb216 python313Packages.hier-config: init at 3.2.2
7791660b3f1fe nixos/nextcloud: update nextcloud version in example (#387933)
5cef95c41ea7c python313Packages.deprecat: remove
03c7d305c121c zgv: fix GCC 14 build (#372721)
4e0fb12e27922 jawiki-all-titles-in-ns0: 0-unstable-2025-02-01 -> 0-unstable-2025-03-01
a65889ad2a951 justbuild: 1.4.3 -> 1.5.0
9a7887ca6545e python313Packages.django-pwa: update build-system
a7caa3c574f95 spotube: 3.9.0 -> 4.0.0
c41a9c8722d6f fishy: init at 0.2.1 (#366546)
7d20629294f58 libipt: fix linkage on FreeBSD. this fixes the gdb build (#387386)
2fdfba78ef1b7 nixfmt-rfc-style: 2024-12-04 -> 2025-03-03 (#387047)
9df621303c3e0 gdmd: init at 0.1.0-unstable-2024-05-30 (#330572)
11ca1c3d1d6fc roc-toolkit: fix build for FreeBSD (#387692)
111d908094edb dunst: 1.12.1 -> 1.12.2 (#388114)
27bf61988ce02 pulseaudio: fix build for FreeBSD (#387700)
3ea41d4051a81 wmenu: 0.1.9 -> 0.1.9-unstable-2025-03-01
52653625a7d7d fishy: init at 0.2.1
ba87dcd68fc4f python313Packages.django_5: 5.1.6 -> 5.1.7 (#388169)
0c3220e151327 super-productivity: 11.1.2 -> 11.1.3, build from source (#334933)
5b6221d1ac8b0 ollama: 0.5.12 -> 0.5.13 (#388065)
19bae8038c857 snakefmt: init at 0.10.2 (#371774)
9ac142b30c280 feedbackd: 0.4.1 -> 0.7.0 (#385050)
96e04bbfabd9a python312Packages.bytewax: use fetchCargoVendor
d5226dd22c4a8 bws: use fetchCargoVendor
02f3af2ee4e33 browsers: use fetchCargoVendor
0f8b77c9f942d bite: use fetchCargoVendor
349fdcd745173 mqtt-exporter: 1.6.1 -> 1.7.0
18e84362b6380 mkBinaryCache: add missing .nar extension
bdb539f1ed9a4 benchexec: 3.21 → 3.27 (#374278)
6fe52c5daee02 Merge: nixos/nextcloud: fix shellcheck after #367433 (#387913)
26d938c4c5220 prusa-slicer: patch curl version checks (#374850)
afdc6ae625d95 python313Packages.django_5: 5.1.6 -> 5.1.7
2f15c804319f6 fping: 5.2 -> 5.3 (#370585)
a355d5fe30db9 python312Packages.plugwise: 1.7.2 -> 1.7.3 (#388121)
961a3f0713cb9 semgrep{,-core}: 1.74.0 -> 1.104.0 (#355763)
e91d089d83bf1 Merge: rust-synapse-compress-state: rename from rust-synapse-state-compress (#387126)
6b7deaae183df osu-lazer{,-bin}: 2025.225.0 -> 2025.306.0 (#387715)
f2b63c2c6e49c terraform-compliance: 1.3.49 -> 1.3.50 (#388141)
84bf4644fb437 iosevka-bin: 32.5.0 -> 33.0.1
b78061e2fd622 imhex: 1.37.1 -> 1.37.4 (#388116)
276b10007fec8 xlights: 2025.03 -> 2025.04 (#387944)
f5f35fe488c04 thunderbird-bin-unwrapped: 128.7.1esr -> 128.8.0esr
7e530de84bb14 jwx: 2.1.3 -> 2.1.4 (#388076)
16fc9ce10bd55 linux-manual: clean up and improve (#380978)
23e610d63f7bb emacs: support and enable __structuredAttrs in elisp build helpers (#387193)
a3982961cf127 nixos/k3s: use dynamic networking in multi node test (#381122)
2e9285a04467f nuclei: 3.3.9 -> 3.3.10 (#388005)
e43340da27c0e nixos/emacs: improve description of services.emacs.enable (#387966)
52a1dddc7931e xkeysnail: fix build (#385401)
89cdd8a1bdaf3 home-assistant: 2025.3.0 -> 2025.3.1 (#388098)
60a57318a554e ppsspp-qt: Fix Qt wrapping (#386712)
ea011c1ece94a aerc: make notmuch optional (#386733)
f2ef5d1a9e084 tauon: doc fixes (#387077)
0f4e977201481 qsstv: fix source url (#388001)
1a4575f9dbe76 nixos/modules: Add security.pki.caBundle option and make all services use it for CA bundles (#352244)
de42e24c4fc0a librewolf-unwrapped: restore patch application
b9d99ad6dff76 home-assistant.python.pkgs.pytest-homeassistant-custom-component: 0.13.220 -> 0.13.222
f40557a42b728 python313Packages.homeassistant-stubs: 2025.3.0 -> 2025.3.1
a8294c092db3a home-assistant: 2025.3.0 -> 2025.3.1
dbd5f4e5a6d1a python313Packages.pysmartthings: 2.6.1 -> 2.7.0
74c4f53149c21 python313Packages.py-synologydsm-api: 2.7.0 -> 2.7.1
908c6f3c39e0c python313Packages.aiohomeconnect: 0.16.2 -> 0.16.3
7c97c44d2e442 rust-synapse-compress-state: rename from rust-synapse-state-compress
f5dadc8f64f6a sm64coopdx: 1.1.1 -> 1.2.1 (#384940)
3d16bc1e62f06 buffybox: 3.2.0-unstable-2024-12-09 -> 3.2.0-unstable-2025-02-27 (#386629)
3f9dc9855dc85 qt6ct: use new upstream and use CMake (#387423)
d71c8568f2d2f pnpm: 10.5.2 -> 10.6.1 (#387640)
4f161f015a885 gitxray: 1.0.17.2 -> 1.0.17.3 (#388075)
c35cea877815a prometheus-postgres-exporter: 0.17.0 -> 0.17.1 (#388057)
1e80cd1a49ca5 mpd: 0.23.16 -> 0.23.17 (#388008)
1805040b91586 home-manager: 0-unstable-2025-02-22 -> 0-unstable-2025-03-08
953f9b7930f62 bunster: 0.8.0 -> 0.9.0 (#387683)
0605b0270e82a mold: 2.37.0 -> 2.37.1
762169c20a899 buildRustCrate: make default value for codegenUnits configurable (#383716)
893c17338ccd5 terraform-compliance: 1.3.49 -> 1.3.50
c0aaa9a2eb0bb projectm: move to projectm_3
4457f3606c598 projectm-sdl-cpp: init at 0-unstable-2024-08-07
861c05f27e115 libprojectm: init at 4.1.4
c4d300bed6f7a ktailctl: 0.19.3 -> 0.20.0 (#388119)
d6850534717e1 amazon-ssm-agent: 3.3.1802.0 -> 3.3.1957.0
2d23b8a214470 siyuan: 3.1.22 -> 3.1.24 (#387995)
9085b9b9decdb cyclonedx-python: 5.2.0 -> 5.3.0
9b0a4ab119642 terraform-providers.kafka: 0.8.3 -> 0.9.0
16d17a34e1d71 pnetcdf: init at 1.14.0 (#386926)
4ce9f560e703a warp-terminal: 0.2025.02.26.08.02.stable_02 -> 0.2025.03.05.08.02.stable_02
871cda0b06afd testers.shellcheck: refactor, update docs, and simplify tests (#385940)
dd5a41a9a5408 prometheus-alertmanager: 0.28.0 -> 0.28.1 (#388013)
cabc52474459a python312Packages.netgen: rename to python312Packages.netgen-mesher (#387902)
4fdfadb909f3b railway: 3.21.0 -> 3.22.0 (#388039)
f17e702eaf0ac vimPlugins.avante-nvim: 0.0.21 -> 0.0.22 (#388117)
c852af0f8d2c4 python312Packages.plugwise: 1.7.2 -> 1.7.3
9168c96e0c664 ktailctl: 0.19.3 -> 0.20.0
ed0b1881565c1 iodine: fix patches, misc cleanup (#383742)
c2b2e00861417 vimPlugins.avante-nvim: 0.0.21 -> 0.0.22
4c780036f83b6 imhex: 1.37.1 -> 1.37.4
75778658c0f01 anup: run nixfmt-rfc-style
9a416feab31c6 tdlib: 1.8.45 -> 1.8.46 (#388066)
f0a6082d2b88f anup: use useFetchCargoVendor and rm Cargo.lock
94b9c238c45ae dunst: 1.12.1 -> 1.12.2
22d1592a3d521 microsoft-edge: 133.0.3065.69 -> 134.0.3124.51 (#387768)
81512209aedee sqldef: 0.17.32 -> 1.0.0
fad6249846fb9 anup: move to by-name
0f585a25297bc pdf2svg: 0.2.3 -> 0.2.4
37c32b136325c refine: 0.4.4 -> 0.5.2 (#388092)
664c8ef3c1e4e certinfo-go: 0.1.40 -> 0.1.42 (#388038)
a9a863305252a opnborg: 0.1.64 -> 0.1.66 (#388052)
cc945828c81be tlsinfo: 0.1.43 -> 0.1.45 (#388074)
73d19ae9d6ddd terraform-providers.doppler: 1.14.1 -> 1.15.0
6d1dba1cca7de mangayomi: 0.3.8 -> 0.5.2 (#382094)
36790a9d0c510 sdl3-image: init at 3.2.4 (#384531)
ee43c31e4b69d python313Packages.pyfronius: 0.7.6 -> 0.7.7 (#388095)
f16e7799a16cb python313Packages.evohome-async: 1.0.2 -> 1.0.3 (#388097)
67e50e5de1a3c syncterm: 1.1 -> 1.6 (#386390)
cdbd7e9c96ba7 sdl2-compat: 2.30.52 -> 2.32.52 (#386759)
84febf04e9068 nixpacks: 1.33.0 -> 1.34.0
a71884e7abd64 c2fmzq: 0.4.28 -> 0.4.29
fcaec330392e6 markdown-oxide: add HeitorAugustoLN as a maintainer
ef8a1f08ce4a2 markdown-oxide: use `tag` instead of `rev`
cfd22fac54e48 markdown-oxide: use `finalAttrs`
14b03f89c1faa python313Packages.pyfronius: remove disabled
2acb12abe62f5 markdown-oxide: use fetchCargoVendor
22a986ce36df6 python313Packages.evohome-async: 1.0.2 -> 1.0.3
acfcbc99e5bd5 python313Packages.pyfronius: 0.7.6 -> 0.7.7
85e6335e0988a refine: 0.4.4 -> 0.5.2
cd7df192e3f77 treewide: add name argument to calls to testers.shellcheck
ea7ec7044b1f0 tests.testers.shellcheck: switch to testBuildFailure'
3de1aeac1f3b9 testers.shellcheck: refactor and update docs
1389fff391809 lib60870: fix darwin build
cb26667f94d3d testers.shfmt: init (#385939)
6463959cb7722 certificate-ripper: 2.4.0 -> 2.4.1
e55dc60caa2c3 python313Packages.wallbox: 0.7.0 -> 0.8.0 (#388032)
1d2f4602071e5 coroot: 1.8.6 -> 1.8.11
e2f6e5d7bce6a testers.testEqualArrayOrMap: init (#383214)
3b0cc6e6c9ac1 python313Packages.nats-py: disable failing tests (#388024)
eb07d50948284 tunnelgraf: 0.7.2 -> 1.0.6 (#388068)
1644ed958925d python313Packages.asgineer: 0.8.3 -> 0.9.3 (#388072)
a4be235863931 python312Packages.monty: 2025.1.9 -> 2025.3.3
43655b06b0a83 jwx: 2.1.3 -> 2.1.4
5be24021db7f4 gitxray: 1.0.17.2 -> 1.0.17.3
2e0a27382f3aa python313Packages.wallbox: 0.7.0 -> 0.8.0
b515ae8dabf17 tlsinfo: 0.1.43 -> 0.1.45
6381f838f3d9d python312Packages.pyoverkiz: 1.16.1 -> 1.16.2 (#388069)
144f9b6962513 python313Packages.asgineer: add pythonImportsCheck
864bc34732a09 mjmap: 0.1.0-unstable-2023-11-13 -> 0.1.0-unstable-2025-03-06 (#388062)
eaea9be9d2a4f python313Packages.asgineer: 0.8.3 -> 0.9.3
f00bd45d70d78 tunnelgraf: 0.7.2 -> 1.0.6
6b8dd0cf7bc37 pnetcdf: init at 1.14.0
57aca459a1a63 apcupsd: darwin support
6d9057fd519b8 apcupsd: enable parallel builds
8e220757305ad apcupsd: replace util-linux with unixtools.col
aae795ff01221 ollama: 0.5.12 -> 0.5.13
a1de6c302a8d4 python312Packages.pyoverkiz: 1.16.1 -> 1.16.2
a673c4ce04f0b mill: 0.12.5 -> 0.12.8 (#386321)
56df24aee344d python313Packages.myst-docutils: disable failing tests (#388029)
e45fe779af649 python313Packages.universal-silabs-flasher: 0.0.29 -> 0.0.30 (#388045)
38fb0d8bd0a1d python313Packages.weheat: 2025.2.27 -> 2025.3.7 (#388034)
b92e9d86cc898 python313Packages.johnnycanencrypt: 0.15.0 -> 0.16.0 (#388033)
a6434f96aecb1 prowler: 5.3.0 -> 5.4.0 (#387865)
629af6020f859 tdlib: 1.8.45 -> 1.8.46
42d08e3426064 python313Packages.aioesphomeapi: 29.3.1 -> 29.4.0 (#387554)
42b8543588293 python312Packages.slack-bolt: fix postPatch section (#388058)
7ced069934aba python313Packages.sense-energy: 0.13.6 -> 0.13.7 (#388059)
4af00440b893e python313Packages.googletrans: 4.0.0 -> 4.0.2 (#388053)
dc15739b920e9 python313Packages.pywebcopy: add legacy-cgi for Python >= 3.13 (#388056)
c3dba0b70720b python313Packages.pytedee-async: fix pythonImportsCheck (#388014)
6b7a6b7de1bae python313Packages.cryptodatahub: 0.12.5 -> 1.0.0, python313Packages.cryptoparser: remove postPatch section (#388022)
bc3c2e41d9757 python313Packages.sqlobject: 3.12.0 -> 3.13.0 (#387994)
c0788b43076f7 python313Packages.types-aiobotocore-*: 2.20.0 -> 2.21.1 (#388002)
a87386935316b netgen: hardcoding libnggui path in tcl script
a593c7fe616cd python313Packages.sense-energy: 0.13.6 -> 0.13.7
c4aa871f80a53 mjmap: 0.1.0-unstable-2023-11-13 -> 0.1.0-unstable-2025-03-06
463f3cceadc81 python312Packages.slack-bolt: fix postPatch section
4189ddeddf6ca python313Packages.pywebcopy: add legacy-cgi for Python >= 3.13
b7e632f4ad844 claude-code: 0.2.30 -> 0.2.32
1e34cc0ca2ce0 fiddler-everywhere: 6.1.0 -> 6.2.0 (#388036)
1b1c60feb06c2 prometheus-postgres-exporter: 0.17.0 -> 0.17.1
ac0a4b98f02b1 python313Packages.googletrans: 4.0.0 -> 4.0.2
2dc0f3639001e nixos/matrix-alertmanager: fix shellcheck when it is enabled
56b68af9bf126 opnborg: 0.1.64 -> 0.1.66
222d45b1149f9 aws-nuke: 3.48.1 -> 3.48.2
f69db8010c54a python313Packages.universal-silabs-flasher: 0.0.29 -> 0.0.30
ce07af6e5978b linuxPackages.facetimehd: 0.6.8.2 -> 0.6.13 (#387019)
6c8c4152101cb filebot: 5.1.6 -> 5.1.7 (#387709)
2675ff35b7a06 python313Packages.borb: remove space (#388025)
dd3bdc2c3a98f ddns-go: 6.8.1 -> 6.9.0 (#387984)
a3e8c2b853b72 geesefs: 0.42.4 -> 0.43.0 (#387992)
f83fef799b2fc python312Packages.strpdatetime: fix build (#387997)
324393dbb9198 kubecfg: 0.35.2 -> 0.36.0 (#387999)
d7044f30dca1f terraform-providers.yandex: 0.138.0 -> 0.139.0 (#387950)
7db74bc7f4b17 tailscale: fix darwin build (#387998)
3e14bab7b48da mpd: 0.23.16 -> 0.23.17
2f6072cd30ede nixosTests.user-enable-option: fix build (#388023)
f62c65a20d069 kubevpn: 2.3.12 -> 2.3.13 (#387967)
0bb16a01ddb00 sentry-cli: 2.42.1 -> 2.42.2 (#387968)
9d330944093d4 python313Packages.msgraph-sdk: 1.22.0 -> 1.23.0 (#387849)
3f9987efbf663 cargo-public-api: 0.44.1 -> 0.44.2
60e8950fa07a8 python313Packages.johnnycanencrypt: 0.15.0 -> 0.16.0
4ab006ef3527f terraform-providers.tencentcloud: 1.81.168 -> 1.81.171 (#387886)
d0c341d077fc2 dtools: 2.109.1 -> 2.110.0 (#387899)
4be490b4244de railway: 3.21.0 -> 3.22.0
c65c6cc2681b4 certinfo-go: 0.1.40 -> 0.1.42
4d5f3588e297f Kernel updates for 2025-03-07 (#387983)
872cd9dc6ec26 python313Packages.weheat: 2025.2.27 -> 2025.3.7
7da77d50fff9b interactive-html-bom: init at 9.2.0 (#387628)
ba436b79dda95 focuswriter: 1.8.10 -> 1.8.11 (#387905)
9f388bb11174f frp: 0.61.1 -> 0.61.2 (#387907)
5246c66b4374c terraform-providers.alicloud: 1.243.0 -> 1.244.0 (#387914)
5385ae6b5503f r2modman: 3.1.55 -> 3.1.56 (#387915)
a1e0803a055ad fiddler-everywhere: 6.1.0 -> 6.2.0
79dab6b4451fb mullvad-browser: 14.0.5 -> 14.0.7 (#387739)
e9d8a4b995b72 vscode-extensions.ms-python.python: update hash (#387839)
1901bd1d4deb8 checkov: 3.2.381 -> 3.2.382 (#387841)
e03730a3ea4e0 python313Packages.myst-docutils: disable failing tests
814554eba3dd3 python312Packages.mypy-boto3-*: updates (#387842)
74af959ed1090 python312Packages.langfuse: 2.59.3 -> 2.59.7 (#387845)
79d1f9db26fc4 karmor: 1.3.1 -> 1.3.3 (#387850)
e8cc4a4e3ec27 python313Packages.publicsuffixlist: 1.0.2.20250306 -> 1.0.2.20250307 (#387853)
1f3a87f8e6134 python313Packages.pysmartthings: 2.5.0 -> 2.6.1 (#387856)
c767218fd5b39 python313Packages.aiowebdav2: 0.4.0 -> 0.4.1 (#387859)
bc8f02a402802 python313Packages.sqlmodel: 0.0.23 -> 0.0.24 (#387860)
14f1c4f1e4d7b prometheus-mysqld-exporter: 0.17.1 -> 0.17.2 (#387862)
6aa4b93d20549 trufflehog: 3.88.14 -> 3.88.15 (#387863)
08cc35ce08ab4 python313Packages.borb: remove space
9fe8bad76047d kdlfmt: 0.0.13 -> 0.0.14 (#387866)
0bb98f6dcd062 ignite-cli: 28.8.0 -> 28.8.1 (#387867)
d6056f502df18 jx: 3.11.52 -> 3.11.56 (#387870)
1588ba61df156 maintainers: add nyukuru
f041d52e7b035 nixos/users-groups: Add assert on null shells (#279431)
bc23f147cffd5 python313Packages.nats-py: disable failing tests
b285588a8e96b python313Packages.whirlpool-sixth-sense: 0.19 -> 0.19.1 (#387871)
c13632700a9d5 terraform-providers.aws: 5.88.0 -> 5.90.0 (#387798)
26f91255daaac v2ray: 5.29.1 -> 5.29.2 (#387805)
20bbbe132a55f ghidra-extensions.lightkeeper: 1.2.3 -> 1.2.4 (#387818)
f2e6bde416837 ceph-csi: 3.13.0 -> 3.13.1 (#387821)
10abfb9691b79 python313Packages.cryptolyzer: refactor
a83e16b963221 python313Packages.cryptoparser: remove postPatch section
297f2c4266ed9 prometheus-redis-exporter: 1.67.0 -> 1.68.0 (#387834)
ada2fc05ef193 python313Packages.cryptodatahub: 0.12.5 -> 1.0.0
5c5012444abd3 nixosTests.user-enable-option: fix build
36fd87baa9083 dyff: 1.9.0 -> 1.10.0 (#387766)
5b8c68391871a nvidia-modprobe: 570.86.16 -> 570.124.04 (#387771)
6bdacb42d2ba8 kargo: 1.3.0 -> 1.3.1 (#387777)
352a06cbe2619 dracula-theme: 4.0.0-unstable-2025-02-14 -> 4.0.0-unstable-2025-03-04 (#387786)
5518fcaca0cb7 terraform-providers.google: 6.21.0 -> 6.24.0 (#387787)
f28e6aa5f322a python312Packages.netbox-routing: 0.2.3 -> 0.3.0 (#388019)
9d0a8319f738a openssh_gssapi, openssh_hpn: remove self (aneeshusa) from maintainers (#153359)
ed8d298000933 postfix: 3.9.3 -> 3.10.1 (#383517)
e02b2d8c0ca63 medusa: unstable-2018-12-16 -> 2.3
a72c5dd553918 python312Packages.dask: 2025.1.0 -> 2025.2.0 (#381896)
b232b6fa10ad5 tailscale: fix darwin build
aded50da108e8 openssh_gssapi, openssh_hpn: remove self (aneeshusa) from maintainers
90367a5ac318e python313Packages.pytedee-async: fix pythonImportsCheck
148a4d136cbe6 python313Packages.cyclopts: 3.9.0 -> 3.9.1 (#387957)
e17d9db97aa79 ospd-openvas: 22.8.0 -> 22.8.1 (#387864)
40641142855a2 python313Packages.aiosseclient: 0.1.6 -> 0.1.7 (#387851)
4baec765ad5c3 python313Packages.nexia: 2.2.1 -> 2.2.3 (#387854)
e9705dd727a2c prometheus-alertmanager: 0.28.0 -> 0.28.1
c267465f5e4dd python313Packages.pontos: 25.1.0 -> 25.3.1 (#387857)
470550ae24245 updatecli: 0.92.0 -> 0.94.1 (#387982)
027c70b7e06e7 python313Packages.typst: 0.13.0 -> 0.13.1 (#387858)
ef722c111dcf1 python313Packages.bc-detect-secrets: 1.5.36 -> 1.5.37 (#387952)
f12d4c2efdc57 python313Packages.coinmetrics-api-client: 2025.2.26.16 -> 2025.3.3.16 (#387953)
ee1d07ae00a7d python313Packages.pysuezv2: 2.0.3 -> 2.0.4 (#387954)
2bed6cea8148c python313Packages.xkcdpass: 1.19.9 -> 1.20.0 (#387955)
9eca50c73f686 python313Packages.eufylife-ble-client: 0.1.8 -> 0.1.9 (#387956)
982accafef7a5 python313Packages.tencentcloud-sdk-python: 3.0.1331 -> 3.0.1333 (#387861)
9fac8ebc99902 python313Packages.yamlloader: refactor
6c08fd1c4797b nuclei: 3.3.9 -> 3.3.10
1c39c0092d8be python313Packages.types-aiobotocore-*: 2.20.0 -> 2.21.1
95fa8bfc7023b nixos/matrix-alertmanager: set NODE_ENV to production
9baedcb45b320 qsstv: fix source url
10d71f4b8c189 nextcloud31Packages.apps.recognize: use headless ffmpeg to avoid GUI dependencies like SDL2
52eb593cf31fd nextcloud31Packages.apps.recognize: throw a proper error message when the nextcloud version is not supported
ca8f2ea7e9d93 python312Packages.types-aiobotocore: 2.20.0 -> 2.21.1
48ecb73067aee netbox_4_2: init (#376100)
c798d0e6dad83 python312Packages.strpdatetime: fix build
afcd88a52b054 kubecfg: 0.35.2 -> 0.36.0
f9ead9c43e472 cpptrace: 0.8.1 -> 0.8.2 (#387890)
2e43bc08230f3 readarr: 0.4.10.2734 -> 0.4.11.2747 (#387803)
088a4912ef260 python313Packages.sqlobject: 3.12.0 -> 3.13.0
28a4648821d6d python313Packages.formencode: 2.1.0 -> 2.1.1
ea79d17e5bfed nixos/nextcloud: update nextcloud version in example
ca6edbf7e26a1 siyuan: 3.1.22 -> 3.1.24
495ae700f1e0d geesefs: 0.42.4 -> 0.43.0
6415f787086e9 catppuccin: add element (#386893)
07c24fffa3fcb nixos/matrix-alertmanager: init module (#378966)
b45b30e22a4a5 python312Packages.lightning-utilities: 0.13.1 -> 0.14.0 (#387972)
2efa259458925 nextcloud31Packages.apps.recognize: drop nextcloud 28
be593e22c2218 linux_6_1: 6.1.129 -> 6.1.130
170eefe8535ed linux_6_6: 6.6.80 -> 6.6.81
e0622aad66446 linux_6_12: 6.12.17 -> 6.12.18
3e042434c17ef linux_6_13: 6.13.5 -> 6.13.6
a36c0324adb24 readest: init at 0.9.19 (#378599)
fa59c10517e47 lk-jwt-service: 0.1.2 -> 0.2.0 (#387978)
0f122ad9e49fa ddns-go: 6.8.1 -> 6.9.0
531b1c6489eab updatecli: 0.92.0 -> 0.94.1
5deeee393a763 nixos/wireshark: usbmon permissions
c8e3ade10926e lk-jwt-service: 0.1.2 -> 0.2.0
d95b40ed108f0 netbox-routing: init at 0.2.3 (#387430)
9cb65c88b8de3 cargo-bolero: 0.12.0 -> 0.13.0 (#387965)
c2c4ce7631321 python312Packages.lightning-utilities: 0.13.1 -> 0.14.0
21dd77ac623db libdevil: move to openexr_3 (#375386)
80a504c641c83 curv: switch to openexr_3 (#376251)
08833cc76f254 ruff: 0.9.9 -> 0.9.10 (#387940)
74682356b120c vpl-gpu-rt: 25.1.2 -> 25.1.3 (#387812)
3db74ebaf3f2b tigerbeetle: 0.16.28 -> 0.16.30 (#387784)
e8c9148f5c674 curv: switch to openexr_3
9cfc0bfb0ebe8 sentry-cli: 2.42.1 -> 2.42.2
937ea38f3132b kubevpn: 2.3.12 -> 2.3.13
b13801b7cb502 mangohud: add option to disable nvidia support and x11Support (#386505)
22aa6ff22e957 zed-editor: gitUpdater -> nix-update-script (#387937)
eb3a92699e1d4 pdi: 1.8.2 -> 1.8.3 (#387959)
70a818cc73c94 hydrus: 609 -> 612, move to by-name, fix on darwin (#387547)
fb934aa9959da nextcloud31Packages.apps.recognize: add hash for nextcloud 31 (#387037)
b91fc4fbe57d7 nextcloud31Packages.apps.recognize: cleanup, fix typos
43d9964161fa7 pdi: 1.8.2 -> 1.8.3
f6c39b92c86f6 organicmaps: 2025.02.17-3 -> 2025.03.02-7
1b69c31a5b087 python313Packages.bc-detect-secrets: 1.5.36 -> 1.5.37
ccfd85de5681b zed-editor: gitUpdater -> nix-update-script
238d6cb8993a2 python313Packages.coinmetrics-api-client: 2025.2.26.16 -> 2025.3.3.16
fe36d1e378384 python313Packages.pysuezv2: 2.0.3 -> 2.0.4
f74aa0774010f python313Packages.xkcdpass: 1.19.9 -> 1.20.0
ec1ec5b4f89f9 python313Packages.eufylife-ble-client: 0.1.8 -> 0.1.9
f2af639f1231e python313Packages.cyclopts: 3.9.0 -> 3.9.1
833664e9bee66 waveterm: 0.11.0 -> 0.11.1
367d294bb3c07 dxx-rebirth: 0.60.0-beta2-unstable-2024-12-07 -> 0.60.0-beta2-unstable-2025-01-12 (#367869)
ea4b3093f553b polkit-kde-agent: throw the correct package name for qt6
3cf0517adc548 vscode-extensions.mongodb.mongodb-vscode: 1.12.0 -> 1.12.1 (#387943)
d5a56529176f7 apache-directory-studio: remove redundant parenthesis
b707af9ad1d2c apache-directory-studio: fix startup by creating /tmp/SWT-GDBusServer
83d69521caaf4 apache-directory-studio: add missing glib
c37ed3a10637f terraform-providers.yandex: 0.138.0 -> 0.139.0
6fa5cb30e5ec7 electron{,-bin}: add tomasajt as a maintainer
1f465bbe413c1 jenkins: 2.492.1 -> 2.492.2
d2c9668398cc8 uv: 0.6.4 -> 0.6.5 (#387927)
5af94f8bb2104 matrix-synapse-plugins.matrix-synapse-mjolnir-antispam: 1.8.3 -> 1.9.2 (#366023)
50674da309e16 xlights: 2025.03 -> 2025.04
2eebfbb886ad5 vscode-extensions.mongodb.mongodb-vscode: 1.12.0 -> 1.12.1
83b6ab03fb2db python312Packages.huggingface-hub: 0.29.1 -> 0.29.2 (#387293)
f3b9f47891775 nixos/umurmur: init (#387580)
74680bc6fbda9 aerospike: 8.0.0.2 -> 8.0.0.4 (#384445)
e548e39566c2d ruff: 0.9.9 -> 0.9.10
1137c471eec61 seagoat: 0.50.1 -> 0.54.3 (#387910)
7175b2d9bf3e1 ceph: 19.2.0 -> 19.2.1 (#381075)
f91fa97e67f11 renode-dts2repl: 0-unstable-2025-02-19 -> 0-unstable-2025-03-05 (#387883)
7c4cc9449ed09 bitcoin: modernize
d43357b4aeb08 bitcoin: add __darwinAllowNetworking to fix build in sandbox
b890f62df9c62 miniupnpc: modernize, add versionCheckHook
5232aceb7b502 miniupnpc: fix on darwin
cb9fc30245352 hydrus: disable tests on darwin
198e7a50f062b pnpm: 10.5.2 -> 10.6.1
b18dc74d13e4c Pantheon updates 2024-03-07 (#387627)
64f84905a5537 uv: 0.6.4 -> 0.6.5
ab536e4a3d77a libelfin: unstable-2018-08-25 -> 0.3-unstable-2024-03-11
35ce970576efe python312Packages.pyiceberg: 0.8.1 -> 0.9.0 (#387827)
dbcbf49d39efe python312Packages.pymc: 5.21.0 -> 5.21.1 (#387831)
b61a7b7e9fabc hurl: Use nix curl instead of bundled curl to enable http2 support (#387593)
7c3e84849ccdc librewolf-bin: use librewolf-bin-unwrapped
bee08b3640c13 python312Packages.pgcli: 4.1.0 -> 4.2.0 (#387898)
58551fd7fa51a netlify-cli: 18.0.4 -> 18.1.0 (#384433)
132d8ac65ccea python312Packages.spectral-cube: disable failing tests
b4ed4f95beb7c python312Packages.pgcli: 4.1.0 -> 4.2.0
39deb90fa6ed0 hydrus: 609 -> 612
4ef36e6f21891 hydrus: cleanup
31d77f9ef9cc8 hydrus: move to by-name
b2659ba5de6b0 r2modman: 3.1.55 -> 3.1.56
98b175f44a71c nixos/nextcloud: fix shellcheck after #367433
c0283939c9931 terraform-providers.alicloud: 1.243.0 -> 1.244.0
c6e2327f62e51 seagoat: 0.50.1 -> 0.54.3
6b31915a00417 komac: migrate to `finalAttrs` (#387439)
66bf805d9ddff typst: 0.13.0 -> 0.13.1 (#387877)
decbece965579 llvmPackages_{12,13,14,15,16,17,18,19,20,git}.llvm: move patches out of common
2b28900a1f609 llvmPackages_{12,13,14,15,16,17,18,19,20,git}.lldb: move patches out of common
394ef62fb0b6a llvmPackages_{12,13,14,15,16,17,18,19,20,git}.libcxx: move patches out of common
c330ebeb4fb44 llvmPackages_{12,13,14,15,16,17,18,19,20,git}.compiler-rt: move patches out of common
946113bbf7cc3 llvmPackages_{12,13,14,15,16,17,18,19,20,git}.openmp: move patches out of common
1a148262f409c llvmPackages_{12,13,14,15,16,17,18,19,20,git}.libunwind: move patches out of common
20e4f33f16363 llvmPackages_{12,13,14,15,16,17,18,19,20,git}.lld: move patches out of common
e85abae0ae822 llvmPackages_{12,13,14,15,16,17,18,19,20,git}.clang: move patches out of common
41d68f672d7ca llvmPackages_{19,20,git}.bolt: move patches out of common
e23da238f9285 frp: 0.61.1 -> 0.61.2
72a9bc94bc42a wit-bindgen: 0.39.0 -> 0.40.0 (#387792)
802cc68850d38 focuswriter: 1.8.10 -> 1.8.11
8079fb45d5a7c postgresqlPackages.pg_tle: init at 1.4.0 (#387868)
567191baaaf36 slurm: 24.11.2.1 -> 24.11.3.1
b67ba45f8bbd4 python3Packages.aria2p: Change python3Packages.appdirs to python3Packages.platformdirs in dependencies (#380746)
6b8084c9ec359 opensnitch-ui: 1.6.7 -> 1.6.8 (#387648)
c11fb08f6f471 pantheon.appcenter: 8.0.1 -> 8.1.0
f344310e9a1f6 python312Packages.netgen: rename to python312Packages.netgen-mesher
4ef7f3b7d2e85 scite: 5.5.4 -> 5.5.5 (#385027)
d1e408cd51021 pacparser: add darwin support (#347951)
73caa97ac733e fcft: 3.1.10 -> 3.2.0
89257da78b808 dtools: 2.109.1 -> 2.110.0
132a324ab368d linux_latest-libre: 19712 -> 19729
bd750b5d3c37d gancio: 1.23.1 -> 1.24.0 (#387847)
b4adb3da9bc49 mill: 0.12.5 -> 0.12.8
92c50e9378ea8 cpptrace: 0.8.1 -> 0.8.2
b23e7d4ee6651 vyxal: update mill dependency to use fetchurl for version and URL locking (#387820)
ef0f3cb053ca4 libsForQt5.qtstyleplugin-kvantum: 1.1.3 -> 1.1.4 (#386896)
c54d175b9234e zed-editor: 0.176.2 -> 0.176.3 (#387808)
8a97acdb82aac go-graft, gg: merge duplicated package (#387824)
acb9e018ab8a4 terraform-providers.tencentcloud: 1.81.168 -> 1.81.171
44e1bd5af5f43 electron_32-bin, electron-chromedriver_32: 32.3.2 -> 32.3.3 (#387264)
3784412e59fbd vscode-extensions.johnpapa.winteriscoming: init at 1.4.4 (#387716)
c0201c84cb917 mold: 2.36.0 -> 2.37.0 (#387813)
4a842e1bc8cc8 python313Packages.datafusion: fix build (#386867)
ff7ded73d017b python313Packages.sopel: fix build (#386507)
9773a03aedf95 typst: use finalAttrs
f1ca775df746a python313Packages.mrsqm: r4 -> v.0.0.7 (#386524)
b6c8808c1fff6 python313Packages.anybadge: fix build, modernize (#386526)
357f5f8de379f castero: fix build (#386538)
16e32c330623a python313Packages.trimesh: 4.6.3 -> 4.6.4 (#386597)
2e9c65f24d44a cartridges: 2.11 -> 2.11.1 (#382939)
7e1e1dd735b99 rabbit: fix build, relax dependencies (#387879)
e8438127e3baf swayosd: 0.1.0 -> 0.2.0 (#387052)
a418f07be1a64 renode-dts2repl: 0-unstable-2025-02-19 -> 0-unstable-2025-03-05
8a3cae7a972fb aapt: disable on aarch64-linux (#387876)
f4c30237d6f45 cachix: set meta.mainProgram (#385825)
d44a4bc62e83a kermit: fix build (#386337)
8f6fc1e620c74 rabbit: fix build, relax dependencies
1354da4f60c64 lzwolf: drop (#386243)
18a61aa4e376a protoc-gen-connect-es: remove (#383159)
bfd23b90b6670 vimix-cursor-theme: remove (#387165)
f72cd87737b9c typst: 0.13.0 -> 0.13.1
a85d10330ef19 aapt: disable on aarch64-linux
a400abd88ed4a gnome-commander: 1.18.1-unstable-2024-10-18 -> 1.18.2 (#386966)
63d1a7b7331d3 woodpecker-plugin-git: 2.6.1 -> 2.6.2
ee6ce39e04a9e kdePackages: Gear 24.12.2 -> 24.12.3 (#387835)
e0d5cb8b81e58 tracexec: 0.8.2 -> 0.10.0 (#386684)
6b6b8701ea562 python313Packages.whirlpool-sixth-sense: 0.19 -> 0.19.1
e61a0201087f8 evcc: add envsubst secret support (#387829)
6efd243142263 decklink: fix build for kernel 6.13 (#387352)
524b6ac09cdcd jx: 3.11.52 -> 3.11.56
ce4d8c59a32f4 networkmanager: 1.50.2 -> 1.52.0 (#386037)
859a900d0a97f trufflehog: 3.88.14 -> 3.88.15
12328192c55aa ospd-openvas: 22.8.0 -> 22.8.1
4d4e9911ba979 prowler: 5.3.0 -> 5.4.0
6d67e8506218e python313Packages.tencentcloud-sdk-python: 3.0.1331 -> 3.0.1333
1f9b2dd59a34b ignite-cli: 28.8.0 -> 28.8.1
97891783561c8 zed-editor: use finalAttrs.finalPackage whenever possible
5aab35504452d zed-editor.fhs: add entrypoint zed-editor-fhs in all-packages
c044a02856ab0 python313Packages.aiowebdav2: 0.4.0 -> 0.4.1
32b5c615483f4 python313Packages.sqlmodel: 0.0.23 -> 0.0.24
b6f0166c0cf12 kdlfmt: 0.0.13 -> 0.0.14
ab810217f9be1 python313Packages.pysmartthings: 2.5.0 -> 2.6.1
0dd025a7fca60 python313Packages.nexia: 2.2.1 -> 2.2.3
118760dabdff5 prometheus-mysqld-exporter: 0.17.1 -> 0.17.2
e15c38b2dbd63 python313Packages.pontos: 25.1.0 -> 25.3.1
286dca893038d python313Packages.typst: 0.13.0 -> 0.13.1
76c7d10547946 python313Packages.iterfzf: 1.4.0.60.2 -> 1.5.0.60.2 (#387852)
a5ffb136aca47 python313Packages.msgraph-sdk: 1.22.0 -> 1.23.0
3995e0311671e electron_32-bin: mark as insecure because it's EOL, electron-source.electron_32: remove as it's EOL (#383660)
69480c5f6dc20 python313Packages.iterfzf: 1.4.0.60.2 -> 1.5.0.60.2
1fe8d8fd87acd python313Packages.aiosseclient: 0.1.6 -> 0.1.7
38fbec25b10c1 python313Packages.publicsuffixlist: 1.0.2.20250306 -> 1.0.2.20250307
73f66200cc7a1 karmor: 1.3.1 -> 1.3.3
7453946c0a2c5 python313Packages.dissect-volume: disable failing test (#372357)
ac1b915d44a5d gancio: 1.23.1 -> 1.24.0
d6abd550e5630 python312Packages.langfuse: 2.59.3 -> 2.59.7
dda528cb07f0d python313Packages.boto3-stubs: 1.37.7 -> 1.37.8
66955d72acefa python313Packages.botocore-stubs: 1.37.7 -> 1.37.8
6c4f93e1139b0 Merge: nixos/nextcloud: use LoadCredential to read secrets (#367433)
80f36cbd4f36e python312Packages.mypy-boto3-workspaces: 1.37.7 -> 1.37.8
df7c76c748a6b python312Packages.mypy-boto3-wafv2: 1.37.0 -> 1.37.8
8f1fb513d31d5 python312Packages.mypy-boto3-redshift-data: 1.37.0 -> 1.37.8
a6c97f0ead2c7 python312Packages.mypy-boto3-ivs-realtime: 1.37.0 -> 1.37.8
a1d814a411a20 python312Packages.mypy-boto3-cloudtrail: 1.37.0 -> 1.37.8
fa453bc0a8513 checkov: 3.2.381 -> 3.2.382
092bfe6a8a118 above: 2.7 -> 2.8 (#387802)
b315099aa930e memray: 1.15.0 -> 1.16.0 (#387797)
bdcf80b1f9825 protoc-gen-swift: 1.28.2 -> 1.29.0 (#387103)
d6431e7f642aa Windmill 1.410.3 -> 1.474.0 (#387629)
4b825d85c76eb python312Packages.coiled: 1.79.2 -> 1.82.0 (#387649)
8b6d06538c8de aider-chat: 0.75.1 -> 0.75.2; add withPlaywright override (#387822)
82f4b643c2ed4 xan: 0.45.0 -> 0.46.2 (#386851)
2c237fd0919fe alire: 2.0.2 → 2.1.0 (#386989)
f4cc76687060f tracelinks: 1.0.1 -> 1.0.2 (#386943)
4886e147e1b28 vscode-extensions.ms-python.python: update hash
b8dbb5d7eed8c vencord: 1.11.5 -> 1.11.6 (#387708)
9b6b9fe995f1c python312Packages.mandown: 1.11.1 -> 1.11.2 (#387782)
8eacae31a2c64 xdg-desktop-portal-gtk: 1.15.1 -> 1.15.2 (#372545)
ec13878888106 prometheus-redis-exporter: 1.67.0 -> 1.68.0
2270999fd0b5b go-graft: add changelog
b59729a0ae95c go-graft: clarify license to agpl3Only
067732921fae5 nixos/evcc: support passing secrets with envsubst
095da00b2d970 nixos/umurmur: init
e31a8ecf35dbf papeer: 0.8.3 -> 0.8.4
9ab684efa85ae python312Packages.pymc: 5.21.0 -> 5.21.1
369eaeefa37aa evcc: set mainProgram
70d6886ddfab2 python312Packages.pyiceberg: 0.8.1 -> 0.9.0
cee01a7a06c7b opensbi: 1.5.1 -> 1.6
7488ac7ab10a3 python3Packages.lida: init at 0.0.14 (#383724)
7500cb1861202 go-graft: alias to gg
954cd0049f7ee aider-chat: add withPlaywright override
b4a654aaf7222 python3Packages.aider-chat: 0.75.1 -> 0.75.2
56ef85ba0c5ca go-graft, gg: merge duplicated package
92d11f06d5cfa nixos/movim: run nixfmt-rfc-style (#387633)
a41a07b29fe59 jetbrains: 2024.3 -> 2024.3.6 (#386114)
98cd4da1a2b4b ceph-csi: 3.13.0 -> 3.13.1
b70ba4b58ea0b .git-blame-ignore-revs: add nixos/movim
43c1654cae47c nixos/movim: run nixfmt on module
b76e33388f3e2 vscode-extensions.github.{copilot, copilot-chat}: bump (compatible with VSCode 1.98) (#387817)
ba2b130736b9c vscode-extensions.github.copilot: 1.277.1411 -> 1.279.1416
f8d1fdd4689c7 vscode-extensions.github.copilot-chat: 0.25.2025021201 -> 0.26.2025030506
cbe8aa9d32c02 restinio: 0.7.3 -> 0.7.4 (#386835)
9357fa32e9813 ghidra-extensions.lightkeeper: 1.2.3 -> 1.2.4
de62d4331a363 evcc: 0.200.7 -> 0.200.8
94d0b41dd97f8 emacs: add a patch to fix upstream bug#63288 and bug#76523 (#387574)
35e64dfcfe612 meerk40t: 0.9.7010 -> 0.9.7020 (#387800)
a4b5f4bc42aeb evcc: 0.200.6 -> 0.200.7 (#387671)
7c2f0b830a840 libdnf: 0.73.4 -> 0.74.0 (#387778)
fa7baffa4e1c1 kdePackages: Gear 24.12.2 -> 24.12.3
5a9480f65058e svtplay-dl: 4.101 -> 4.103
187b7a1c6507b vscode-extensions.astro-build.astro-vscode: 2.10.2 -> 2.15.4
1c0ceab1ab06f vscode-extensions.redhat.vscode-yaml: 1.14.0 -> 1.16.0
288911807b67e vscode-extensions.editorconfig.editorconfig: 0.16.4 -> 0.17.0
7454c3d13d682 vscode-extensions.davidanson.vscode-markdownlint: 0.56.0 -> 0.58.2
ac7dd1bf305d6 vscode-extensions.continue.continue: 0.8.54 -> 0.8.68
5aa6f0aa52a8d mold: 2.36.0 -> 2.37.0
5938a720cc089 vscode-extensions.github.copilot{-,chat}: 1.27{5.0 -> 7.1411}, 0.24.2025021302 -> 0.25.202502 (#387746)
4c48954936875 clever-tools: 3.11.0 -> 3.12.0 (#387770)
c9b959c0d214b quantframe: init at 1.3.4
e3ec614d7b3e9 vscode-extension.johnpapa.winteriscoming: init at 1.4.4
df1bbd4a666e3 vpl-gpu-rt: 25.1.2 -> 25.1.3
7876fb9dd43de firebird_3: add bbenno as maintainer
55fbd4b35dee1 zed-editor: 0.176.2 -> 0.176.3
05ba6d453cc19 v2ray: 5.29.1 -> 5.29.2
b4f9c06454758 readarr: 0.4.10.2734 -> 0.4.11.2747
e97e847bc5f5f above: 2.7 -> 2.8
3061e5622ce73 meerk40t: 0.9.7010 -> 0.9.7020
f104cca31ba6c netgen: init at 6.2.2501 (#387788)
3e321389dff07 libinotify-kqueue: 20180201 -> 20240724 (#387512)
1246f9f50fa3e netgen: init at 6.2.2501
69d4d07510ce1 karp: 0-unstable-2025-02-21 -> 0-unstable-2025-03-05 (#387706)
0d0d360c1e663 superlu_dist: init at 9.1.0 (#386883)
a441473164022 superlu_dist: init at 9.1.0
28312f13b9c76 terraform-providers.aws: 5.88.0 -> 5.90.0
50cedbb8bf590 memray: 1.15.0 -> 1.16.0
a0de99a25cc56 garage: 1.0 and 0.9 are no longer broken on Darwin (#366373)
978facdf5b447 localstack: fix build, move to toplevel, 4.0.3 -> 4.1.1 (#384156)
5ef3aea0ff033 wit-bindgen: 0.39.0 -> 0.40.0
eb4f490424fec zig: 0.13 -> 0.14 (#387154)
c8ea358454738 beam26Packages.ex_doc: 0.37.2 -> 0.37.3 (#387767)
a4c80aee8e047 vyxal: update mill dependency to use fetchurl for version and URL locking
62b0d31085231 readest: init at 0.9.19
6762748d43482 globalping-cli: 1.4.4 -> 1.5.0 (#387653)
463de74a35abd terraform-providers.google: 6.21.0 -> 6.24.0
46f90d3931151 dracula-theme: 4.0.0-unstable-2025-02-14 -> 4.0.0-unstable-2025-03-04
2542d110ddc3a python312Packages.gitingest: 0.1.3 -> 0.1.4 (#387781)
20be3b4f9d1b1 vscode-extensions.castwide.solargraph: init at 0.24.1 (#387656)
91c63383a4d9c python312Packages.google-genai: 1.4.0 -> 1.5.0 (#387780)
408f1f1ac662c beamPackages.ex_doc: add erlang builds to tests
7276e3b2c1145 tigerbeetle: 0.16.28 -> 0.16.30
f9e927c9f26f8 woodpecker-{server,agent,cli} 3.1.0 -> 3.3.0 (#387703)
232647a5cf833 python312Packages.mandown: 1.11.1 -> 1.11.2
b215052b0bce3 python312Packages.gitingest: 0.1.3 -> 0.1.4
9154158bce496 python312Packages.google-genai: 1.4.0 -> 1.5.0
8c3eacc220bba mangohud: split gamescopeSupport into mangoapp & mangoctl support
190a9a09c973f mangohud: add option to disable waylandSupport
d2c2b2c2870c0 libdnf: 0.73.4 -> 0.74.0
be4a2bec60894 kargo: 1.3.0 -> 1.3.1
de0fe301211c2 python312Packages.mplhep: 0.3.56 -> 0.3.57
1e41a945431b6 mangohud: add option to disable x11 support
c60fcad63c600 mangohud: add option to disable nvidia support
7955a7cf86d43 nvidia-modprobe: 570.86.16 -> 570.124.04
ce3a724791888 clever-tools: 3.11.0 -> 3.12.0
ffd5fe791cc33 microsoft-edge: 133.0.3065.69 -> 134.0.3124.51
07fa717fa18f5 mujoco: 3.2.7 -> 3.3.0 (#387752)
b3d481359c031 dyff: 1.9.0 -> 1.10.0
ccfa640cc5a30 mujoco: 3.2.7 -> 3.3.0
6b1a950a08665 python312Packages.cf-xarray: 0.10.0 -> 0.10.1 (#387754)
5c6bec2e11225 beam26Packages.elixir-ls: 0.26.4 -> 0.27.1 (#387758)
bf0747081d2af openapi-changes: 0.0.75 -> 0.0.76 (#387738)
399359196502b zed-editor: 0.176.1 -> 0.176.2 (#387735)
40754b990e989 gh: 2.67.0 -> 2.68.1
1a82a80a8159b beam26Packages.ex_doc: 0.37.2 -> 0.37.3
9f0d4660f1d05 beam26Packages.elixir-ls: 0.26.4 -> 0.27.1
ee8941481b1d9 python312Packages.cf-xarray: 0.10.0 -> 0.10.1
014f8fbad46a3 vips: Fix cross build for FreeBSD (#387409)
4d68e0da82cea nixos/tests/matrix-alertmanager: init
1abe2c848b140 vscode-extensions.castwide.solargraph: init at 0.24.1
ca13ff05b7fbf libinotify-kqueue: 20180201 -> 20240724
d084ce7bc028b cargo-tauri: 2.2.7 -> 2.3.1 (#387659)
46d81ec28ad66 {lnx,lsp-ai,lapce,lazymc,lightdm-mobile-greeter}: use fetchCargoVendor (#387583)
18ba3db18757a yabridgectl: use fetchCargoVendor (#387696)
3221be7be20cc vscode-extensions.github.copilot-chat: 0.24.2025021302 -> 0.25.2025021201
2d27214701edd vscode-extensions.github.copilot: 1.275.0 -> 1.277.1411
2f9277968f1a5 fzf: 0.60.2 -> 0.60.3
f2367e7d85d98 zed-editor: 0.176.1 -> 0.176.2
c11e680c5a85e zed-editor: switch to `finalAttrs` pattern, minor cleanup
f0f00d4c14747 nixos/dendrite: rename settings.sync_api.search.enable option to sett… (#386393)
83d5ffe4df216 auth0-cli: 1.9.1 -> 1.9.2 (#387717)
3a67351fbf074 eigenmath: 337-unstable-2025-02-18 -> 337-unstable-2025-03-05 (#387674)
2f423f0ac3cba chirp: 0.4.0-unstable-2025-02-20 -> 0.4.0-unstable-2025-03-05 (#387677)
8ef99e14604cb youtube-tui: use fetchCargoVendor & 0.8.0 -> 0.8.1 (#387438)
4d244f3289827 vscode-extensions.ms-python.vscode-pylance: 2025.2.1 -> 2025.3.1 (#387737)
1d1665154b630 firebird_3: 3.0.10 → 3.0.12
ce90b7889c4a8 nixos/matrix-alertmanager: init module
0809c6cd33c6b terraform-providers.snowflake: 1.0.3 -> 1.0.4 (#387679)
749422ad11c21 json-sort-cli: 2.0.2 -> 2.0.3 (#387693)
aea57d4f79b88 gvproxy: 0.8.3 -> 0.8.4 (#387695)
d0ebda74de459 kubergrunt: 0.16.0 -> 0.17.0 (#387702)
f63ee357bdda8 picom-pijulius: 8.2-unstable-2025-02-19 -> 8.2-unstable-2025-03-01 (#387660)
ff1e39be7f3a5 terraform-providers.digitalocean: 2.49.0 -> 2.49.1 (#387672)
e6a97936c85e8 skate: 1.0.0 -> 1.0.1 (#387621)
03ea096725f02 subxt: 0.39.0 -> 0.40.0 (#387622)
e80f48e495816 starlark: 0-unstable-2025-02-05 -> 0-unstable-2025-02-25 (#387623)
f475a3454e0c0 agate: 3.3.12 -> 3.3.13 (#387635)
6ab11f86fb4fc youtube-tui: 0.8.0 -> 0.8.1
9b9b0a77fcc09 youtube-tui: use fetchCargoVendor
46dadad687605 openapi-changes: 0.0.75 -> 0.0.76
529a1634f7813 vscode-extensions.ms-python.vscode-pylance: 2025.2.1 -> 2025.3.1
e407e9b3c792e python313Packages.pycfmodel: 1.0.1 -> 1.1.0 (#387565)
3552bfb38cc80 bundletool: 1.18.0 -> 1.18.1 (#387589)
877de41af18c6 flannel: 0.26.4 -> 0.26.5 (#387595)
f508a2ee3f2b7 pywal16: 3.8.0 -> 3.8.2 (#387598)
c3c6270310920 goflow2: 2.2.1 -> 2.2.2 (#387518)
710433ac411e6 hermitcli: 0.44.0 -> 0.44.1 (#387519)
90420dbaf67ac jsonfmt: 0.5.0 -> 0.5.1 (#387521)
cf342f77f3357 pgmetrics: 1.17.0 -> 1.17.1 (#387527)
243184185ba4e python313Packages.publicsuffixlist: 1.0.2.20250302 -> 1.0.2.20250306 (#387529)
4fe46df5de1f8 solo5: 0.9.0 -> 0.9.1 (#387544)
97b2a33bcc8cc python313Packages.aiolifx: 1.1.3 -> 1.1.4 (#387559)
e3892c33cfcd1 terraform-providers.okta: 4.14.0 -> 4.14.1 (#387561)
770dbf486ea4d python313Packages.pykulersky: 0.5.5 -> 0.5.8 (#387563)
4469ba610484f plantuml-server: 1.2025.0 -> 1.2025.2 (#387477)
663971d9bc85e step-cli: 0.28.3 -> 0.28.5 (#387484)
85194ecec6442 glaze: 4.3.1 -> 5.0.0 (#379791)
88929adecc16b mullvad-browser: 14.0.5 -> 14.0.7
0d19e67c3ef32 moar: 1.31.3 -> 1.31.4 (#387485)
ad19016672e93 yek: 0.16.0 -> 0.21.0 (#380294)
e719d174bf270 aliyun-cli: 3.0.254 -> 3.0.256 (#387509)
bf5f93c6aadfd hyperspeedcube: use fetchCargoVendor & 1.0.7 -> 1.0.12 (#387424)
14907cbcebdd9 goxlr-utility: use fetchCargoVendor (#387427)
c8449e050e40d jumpy: use fetchCargoVendor (#387431)
5a222537c3774 licensure: 0.7.1 -> 0.7.2 (#387436)
bb58cda8d54f9 rpl: 1.17 -> 1.18 (#387456)
ea004e315814e ukmm: use fetchCargoVendor (#387691)
24584045797eb python312Packages.commitizen: 4.2.2 -> 4.4.1 (#387728)
4e7d17350b03e jasmin-compiler: 2024.07.3 → 2025.02.0
2a06ed8bf3716 treewide: avoid using finalAttrs.pname (#387725)
6895fad2252c9 terraform-providers.ibm: 1.75.2 -> 1.76.0 (#387380)
f9691553e145e python312Packages.pdm-build-locked: 0.3.4 -> 0.3.5 (#387402)
6b831b03a5e2b mergiraf: 0.5.1 -> 0.6.0 (#387724)
580eb2ecd8096 python312Packages.debugpy: 1.8.12 -> 1.8.13 (#387707)
01231fc207c12 jbang: 0.123.0 -> 0.124.0 (#387332)
b9a9cd9bbafc4 python312Packages.edk2-pytool-library: 0.22.5 -> 0.22.6 (#387353)
a58c6979fc4e1 protonmail-bridge: 3.17.0 -> 3.18.0 (#387714)
0fe766d236de2 buildkit: 0.20.0 -> 0.20.1 (#387358)
0087c96f3c077 libretro.bsnes: 0-unstable-2025-01-17 -> 0-unstable-2025-02-28 (#387206)
7d10c3db68184 kdash: 0.6.1 -> 0.6.2 (#387222)
16abfbc2846cb python313Packages.aiogithubapi: relax async-timeout (#387227)
cfb9b8c1c5a58 webex: 44.10.2.31237 -> 45.2.0.31846 (#387229)
4c8688db0eb51 backblaze-b2: 4.3.0 -> 4.3.1 (#387257)
50d202e88e68b ssdfs-utils: 4.49 -> 4.50 (#387260)
a5383abd74136 rcu: 2025.001r -> 2025.001s (#387261)
757af0457031e stellarsolver: avoid using finalAttrs.pname
5b777fac578b3 youki: 0.5.1 -> 0.5.2 (#387281)
dcd7bc77fdb2c zinit: avoid using finalAttrs.pname
0a539165d1d7d ytmdesktop: avoid using finalAttrs.pname
8b218a7bf728b tslib: avoid using finalAttrs.pname
bab5d497b63b0 tart: avoid using finalAttrs.pname
38db49a5df45c misskey: avoid using finalAttrs.pname
5747644628c67 minutor: avoid using finalAttrs.pname
7a564478a5209 iio-oscilloscope: avoid using finalAttrs.pname
d009fc44e0546 frr: avoid using finalAttrs.pname
07fad50b2acbc chsrc: avoid using finalAttrs.pname
fa211f1a3c382 base45: avoid using finalAttrs.pname
396d33115c6f3 agorakit: avoid using finalAttrs.pname
db29c8208801e python312Packages.commitizen: 4.2.2 -> 4.4.1
92a278b6b2221 libretro.nestopia: 0-unstable-2025-01-19 -> 0-unstable-2025-02-22 (#387191)
bf211e1ef60d8 libretro.parallel-n64: 0-unstable-2025-02-06 -> 0-unstable-2025-03-02 (#387195)
8acdb449c165a wasmtime: 30.0.0 -> 30.0.2 (#387196)
c6ae3b86dea46 routinator: 0.14.1 -> 0.14.2 (#387105)
9d285c86539a7 simple64-netplay-server: 2025.02.3 -> 2025.03.1 (#387115)
86154ea7f7ed0 mergiraf: 0.5.1 -> 0.6.0
9f597c66bce89 python312Packages.aiolifx-themes: 0.6.8 -> 0.6.9 (#386968)
cf1d3f8860b38 cargo-bundle-licenses: 3.0.0 -> 3.1.0 (#387144)
d46c9c53132d0 libcxxrt: 4.0.10-unstable-2024-10-30 -> 4.0.10-unstable-2025-02-25 (#387128)
60085f2d8dddc home-assistant-custom-lovelace-modules.advanced-camera-card: 7.3.2 -> 7.3.3 (#387694)
0b724ce0ac7bf roc-toolkit: fix build for FreeBSD
db2c33d9efc9d lemminx: 0.29.0 -> 0.30.0 (#387657)
c9146d5fd7d41 codeql: 2.20.5 -> 2.20.6 (#387682)
051077b28ffd9 fanficfare: 4.42.0 -> 4.43.0 (#387120)
a5f0e4be0b78d looking-glass-client: B7-rc1 -> B7 (#387491)
d2efc6464a402 python312Packages.chess: 1.11.1 -> 1.11.2 (#386971)
f5645c785c334 wasm-tools: 1.225.0 -> 1.226.0 (#386988)
0dc89fd2f2afd pulseaudio: fix build for FreeBSD
335ad2c2c47e4 auth0-cli: 1.9.1 -> 1.9.2
17e4dd1a311ff lunacy: 10.11 -> 11.0 (#387006)
3cd234c2adb1c exfatprogs: 1.2.7 -> 1.2.8 (#387008)
dc28b97f575e9 osu-lazer-bin: 2025.225.0 -> 2025.306.0
fef29951f0568 pnpm_9: 9.15.5 -> 9.15.7
112f86e68386e osu-lazer: 2025.225.0 -> 2025.306.0
5b38de68b545f nu_scripts: 0-unstable-2025-02-17 -> 0-unstable-2025-02-28 (#387032)
1d2678fc98891 trunk: 0.21.7 -> 0.21.8 (#387035)
5fbe869e9a80f python312Packages.google-cloud-bigtable: 2.28.1 -> 2.29.0 (#387039)
abf40b7b67913 cnspec: 11.43.0 -> 11.44.0 (#387067)
ea3ff5b439bb1 dcrwallet: 2.0.5 -> 2.0.6 (#387071)
c2e43ca64b00e espup: 0.14.0 -> 0.14.1 (#387073)
8793169d456f0 protonmail-bridge: 3.17.0 -> 3.18.0
1667af58e1e93 elasticsearch-curator: 8.0.17 -> 8.0.18 (#387089)
3bcfb42d15c89 kubernetes-helmPlugins.helm-dt: 0.4.3 -> 0.4.4 (#387090)
dc7d1f08c0ff3 vencord: refactor `meta`
2bf303a70a9ce vencord: 1.11.5 -> 1.11.6
4c10d728b07d0 python312Packages.debugpy: 1.8.12 -> 1.8.13
0b23f813f786f filebot: 5.1.6 -> 5.1.7
e12d25eb50cbd woodpecker_{server,agent,cli} 3.1.0 -> 3.3.0
3f9511fd8734c karp: 0-unstable-2025-02-21 -> 0-unstable-2025-03-05
0715ef7d570f7 kubergrunt: 0.16.0 -> 0.17.0
f6bef71b23cf3 ukmm: use fetchCargoVendor
b67e2565261a0 ukmm: prefer finalAttrs over rec
b7c288a8cb124 librewolf-bin-unwrapped: init at 136.0-2
ebb0a834850fc json-sort-cli: 2.0.2 -> 2.0.3
2fa2e9a3aa73f pre-commit: fix building on i686-linux
a6c226060091d gvproxy: 0.8.3 -> 0.8.4
a1ab31e7d9e35 yabridgectl: use fetchCargoVendor
d45049062ccb5 {ukmm,unimap,vkdt,python3Packages.verilogae,veilid}: use fetchCargoVendor (#387675)
4899e1306a941 elementary-xfce-icon-theme: 0.20.1 -> 0.21
8876dd4a15eaa openrct2: 0.4.19.1 -> 0.4.20, asset fixes and overall cleanup (#385785)
af29d35b02f86 ukmm: simplify link flags with NIX_LDFLAGS
c6a3c2785446e stellarsolver: switch to qt6, by-name path, add myself to maintainers; kstars: switch to qt6, by-name path, add myself to maintainers, 3.7.4 -> 3.7.5 (#373694)
3a7002a4edfe5 application-title-bar: 0.8.3 -> 0.8.4 (#387348)
ef4166de7f2b4 jujutsu: 0.26.0 -> 0.27.0 (#387469)
8eb6ff44a5716 roddhjav-apparmor-rules: 0-unstable-2025-02-17 -> 0-unstable-2025-03-04
3aa13e02b04ba bunster: 0.8.0 -> 0.9.0
1de76b0446dc4 codeql: 2.20.5 -> 2.20.6
7065a1bff283c mangojuice: use vkbasalt (#387287)
55332c9c4fdc0 terraform-providers.snowflake: 1.0.3 -> 1.0.4
27937a200f637 veilid: use fetchCargoVendor
fb6cdd73dba10 python3Packages.verilogae: use fetchCargoVendor
d14e6f75c09f9 vkdt: use fetchCargoVendor
9b6330637c24d unimap: use fetchCargoVendor
bb4136530029a ukmm: use fetchCargoVendor
a32e2786a479e chirp: 0.4.0-unstable-2025-02-20 -> 0.4.0-unstable-2025-03-05
7498c779d088e python313Packages.ytmusicapi: 1.10.1 -> 1.10.2 (#387451)
3b2d2f082d322 python313Packages.pynecil: 4.0.1 -> 4.1.0 (#387558)
bf476aeca302f smartgithg: 24.1.1 -> 24.1.2 (#384989)
bb85195ebc55f evcc: 0.200.6 -> 0.200.7
6097902621cd8 immich: 1.128.0 -> 1.129.0 (#387539)
b85a0ea70c7fb eigenmath: 337-unstable-2025-02-18 -> 337-unstable-2025-03-05
c24d10244d7ac cartridges: 2.11 -> 2.11.1
8bc72ce4832fd terraform-providers.digitalocean: 2.49.0 -> 2.49.1
398f7eb6f8cfd evcc: 0.200.5 -> 0.200.6 (#387569)
2760b679f2ea3 teams-for-linux: 1.12.7 -> 1.12.8 (#386108)
a65e2c635e992 parsec-bin: 150_95 -> 150_97c (#385410)
707cfc23cb08b python312Packages.arviz: 0.20.0 -> 0.21.0 (#387632)
cfd22507f7016 television: 0.10.6 -> 0.10.7 (#387646)
4cc717a20a117 python312Packages.gymnasium: 1.1.0 -> 1.1.1 (#387631)
9ab61b2537be8 nixos/doc: convert links to manpages (#383975)
7bdc9b798f691 oo7: 0.3.3 -> 0.4.0 (#385515)
345ae0c950d53 pulsar: 1.125.0 -> 1.126.0
d01baac03dc88 imsprog: 1.5.1 -> 1.5.2
a0bba7bc236d0 cargo-tauri: 2.2.7 -> 2.3.1
024dedc8d1775 picom-pijulius: 8.2-unstable-2025-02-19 -> 8.2-unstable-2025-03-01
242c2b2f4f8fe poetry: 2.0.1 -> 2.1.1 (#387217)
64734a970f884 dolibarr: 20.0.4 -> 21.0.0 (#387651)
fe36c0e0458a8 Squid: 6.13 -> 7.0.1 (#384972)
d30929d369e0a lemminx: 0.29.0 -> 0.30.0
f7aa633b1f782 globalping-cli: 1.4.4 -> 1.5.0
c8b53289d49f9 megasync: 5.6.1.0 -> 5.7.1.0 (#377302)
5278e867f0535 ausweisapp: 2.2.2 -> 2.3.0 (#387523)
7338a65ae6c1d dolibarr: 20.0.4 -> 21.0.0
c4dfcc6c5ebf8 python312Packages.coiled: 1.79.2 -> 1.82.0
0c59f630e4729 opensnitch-ui: 1.6.7 -> 1.6.8
29a5f3856d4ee television: 0.10.6 -> 0.10.7
ec9e6541a567a passepartui: 0.1.5 -> 0.1.7 (#373864)
6d043a28f60e7 deltachat-desktop: 1.54.1 -> 1.54.2 (#386818)
b081804b7c61f authentik: 2024.12.2 -> 2025.2.1 (#384542)
be1d16b597a35 python312Packages.niaarm: 0.3.13 -> 0.4.1 (#387566)
15f1a4362b78e janus-gateway: 1.3.0 -> 1.3.1 (#387588)
eab4cd8756dbf lightningcss: 1.29.0 → 1.29.2
6e9fccb11ca8d buildPython*: unify the use of standard library function (#386449)
d7c76ba27833e python312Packages.arviz: 0.20.0 -> 0.21.0
6e22fe5fbeccb python312Packages.gymnasium: 1.1.0 -> 1.1.1
652b84a9a56cb vips: fix build on FreeBSD
03b564110f5ec vips: fix use of gobject-introspection
27a51a9f9cad3 agate: 3.3.12 -> 3.3.13
14a4a1f827736 python312Packages.nutpie: 0.13.4 -> 0.14.2 (#387320)
596e44dab33df poetryPlugins.poetry-plugin-export: add upstream patch to build with poetry 2.1.1
1665852875559 poetry: 2.0.1 -> 2.1.1
6686f92e1a988 megasync: Use substituteInPlace instead of patch for ISOLATED_GFX
e3e6db3de9631 Windmill 1.473.1 -> 1.474.0
7683f25460db1 Add missing dependencies and restore working runtimes
5317e5624fc23 Windmill 1.410.3 -> 1.473.1
ac1f52746a778 Add updater procedure
b4169ef93639a liferea: 1.16-RC1 -> 1.16-RC2 (#386409)
f0ab22b574359 beamPackages.elixir: 1.18.2 -> 1.18.3 (#387608)
eef828ca82944 python313Packages.simpleeval: refactor (#387568)
8f4ae84ef1987 python313Packages.thermobeacon-ble: 0.8.0 -> 0.8.1 (#387551)
f6ab6cbb81ae3 python313Packages.govee-ble: 0.43.0 -> 0.43.1 (#387532)
3e5b5bf084190 python312Packages.mypy-boto3-*: updates (#387531)
374a0f3e074ad checkov: 3.2.379 -> 3.2.381 (#387530)
e1d9d42e48acc flyctl: 0.3.85 -> 0.3.87 (#387614)
75f2af6b9f4a6 inxi: 3.3.35-1 -> 3.3.37-1 (#374967)
cddfe271e8ca2 pantheon.wingpanel-quick-settings: 1.0.1 -> 1.1.0
db7b77cda6688 umurmur: add patch that fixes the crash (#387384)
0c108f8e25bc9 starlark: 0-unstable-2025-02-05 -> 0-unstable-2025-02-25
0a078d8b64668 python312Packages.python-snoo: 0.6.0 -> 0.6.1 (#387610)
4ab6fe8188a59 subxt: 0.39.0 -> 0.40.0
4963d2561fc2e python312Packages.aiowebdav2: 0.3.1 -> 0.4.0 (#387607)
45356cfc345c9 umurmur: add patch that fixes the crash
fea053b77451c skate: 1.0.0 -> 1.0.1
5a8afe6feb699 obj2tiles: init at 1.0.13 (#383590)
2dc4a43904bdb linuxKernel.packages.kvmfr: fix for looking glass B7
688c8b45acfd5 garnet: 1.0.57 -> 1.0.58 (#387066)
f23fccab4f6d1 mangojuice: use vkbasalt
3ee0b74c2fe87 flyctl: 0.3.85 -> 0.3.87
58d2463f3bb79 lock: 1.4.1 -> 1.4.2 (#387572)
8eb01a5d615ca tuba: 0.9.1 -> 0.9.2 (#387570)
c1202f7f9cfb1 python312Packages.python-snoo: 0.6.0 -> 0.6.1
3f7aa85c3e624 clash-rs: adopt (#377227)
d0845ecfbba28 patchelfUnstable: 0.18.0-unstable-2025-01-07 -> 0.18.0-unstable-2025-02-15
4b60fceff5d5d libpqxx: 7.9.2 -> 7.10.0
a775105c5fa4e hydrus: format
e7ee9b3f29389 python312Packages.aiowebdav2: 0.3.1 -> 0.4.0
c2bcbbd44fc3b python3Packages.lida: init at 0.0.14
0a91a79061335 hurl: Use nix curl instead of bundled curl to enable http2 support
0d9b4c3641dc1 pywal16: 3.8.0 -> 3.8.2
4ebae9c99fc11 watcher: 0.13.2 -> 0.13.5 (#384292)
40599faf47ffa flannel: 0.26.4 -> 0.26.5
17fc9b9d6c379 pmbootstrap: disable test that would reach the Internet
48e2d19559ace transcrypt: 2.3.0 -> 2.3.1 (#384806)
6ff54d4c90ad7 python312Packages.testcontainers: 4.9.1 -> 4.9.2 (#387301)
1e9e18d004efa pmbootstrap: 3.2.0 -> 3.3.1
3a819f1c7448d prometheus-fastly-exporter: 9.0.0 -> 9.0.1 (#384932)
b929309afc271 pidgin: 2.14.13 -> 2.14.14 (#376103)
3195b14ee02ef python312Packages.nutpie: 0.14.0 -> 0.14.2
eb33998cda323 python312Packages.nutpie: 0.13.4 -> 0.14.0
70686a808a3be python312Packages.flowjax: init at 17.1.1
047f9a45c4571 python312Packages.paramax: init at 0.0.0
de28f7bf78c9e the-powder-toy: 99.2.382 -> 99.3.384 (#384237)
3ea884eb939c2 python312Packages.tftpy: 0.8.2 -> 0.8.5 (#384771)
a95a4d3712493 quarto: 1.6.39 -> 1.6.41 (#384661)
3992ef2a10276 fcron: 3.3.1 -> 3.3.3 (#383184)
cba7a9058f14e beam26Packages.elixir: 1.18.2 -> 1.18.3
4f1eb3887e412 bundletool: 1.18.0 -> 1.18.1
f284d6829a316 cilium-cli: 0.16.24 -> 0.18.0 (#383820)
14f552556e89b newlib-nano: Fix build (#375945)
58927853bb713 ocamlPackages.qcheck-multicoretests-util: 0.4 -> 0.7 (#385480)
18fcf89cabc73 marimo: 0.11.8 -> 0.11.13 (#386252)
3dc38c5aaa821 janus-gateway: 1.3.0 -> 1.3.1
3c8e2e8774f61 terramate: 0.11.9 -> 0.12.1 (#386003)
b9c939b0df70a yarn-berry: 4.6.0 -> 4.7.0 (#387414)
368e578d1a52a bunster: init at 0.8.0 (#382239)
1217702e1b4c0 lightdm-mobile-greeter: use fetchCargoVendor
31e6303a737a0 lazymc: use fetchCargoVendor
5b955f658bd22 lapce: use fetchCargoVendor
7f6ebee9e7a2e lsp-ai: use fetchCargoVendor
6c92aaed91875 lnx: use fetchCargoVendor
905537956250b ocamlPackages.netchannel: 2.1.2 -> 2.1.3 (#383007)
6a2e5d5e400ab android-studio: 2024.2.2.15 -> 2024.3.1.13
48023746d2fd5 tmuxPlugins.tmux-sessionx: init at 0-unstable-2024-09-22 (#343755)
930833ac48652 ocamlPackages.functoria-runtime: 4.4.1 -> 4.4.2 (#383019)
308bbc5001adf rattler-build: 0.37.0 -> 0.38.0 (#387578)
26e3ba6f7bd94 ocamlPackages.domain-name: 0.4.0 -> 0.4.1 (#382837)
39a250a9950d1 lastversion, python3Packages.lastversion: init at 3.5.0 (#291176)
61f5b92adb0fe simulide: fix darwin build and clean up (#384999)
5e9c6c9b562c4 s2geometry: 0.11.1 -> 0.12.0 (#382864)
b1b0f6e444add owocr: init at 1.7.5-unstable-2024-06-26; python312Packages.{azure-ai-vision-imageanalysis,pyperclipfix,ewmhlib,pymonctl,winbox,winct}: init (#335869)
3058834efa3fe ratman.dashboard: use yarnConfigHook
a8ae11024b808 ratman.dashboard: pin to nodejs 20.x
c2488574f99ac electron-source.electron_32: remove as it's EOL
d12ae5ee32b41 renode-unstable: 1.15.3+20250214git71a264d7b -> 1.15.3+20250227git5f21d12f9 (#386427)
8537967f657af rattler-build: 0.37.0 -> 0.38.0
ff473f8ef6881 rattler-build: cleanup
212ce15bf1f8f pythonPackages.pyvows: init at 3.0.0 (#192081)
39cb1880af593 smartgit: remove outdated category "Application"
433c7989ed084 opa-envoy-plugin: 1.1.0-envoy-1 -> 1.2.0-envoy-2 (#387373)
3f6c93f40345d ficsit-cli: init at 0.6.0, maintainers: add weirdrock (#368980)
55c46ede1b2d1 cifs-utils: 7.1 -> 7.2 (#382039)
df4b3bf85e120 ocamlPackages.unisim_archisec: 0.0.9 -> 0.0.10 (#382719)
871fbdee7bb06 electron_32-bin: mark as insecure because it's EOL
138040c72c0df scrypt: 1.3.2 -> 1.3.3 (#382034)
17fd6119545e7 emacs: add a patch to fix upstream bug#63288 and bug#76523
69edf950a208e laurel: 0.6.5 -> 0.7.0
21ce18efd5e55 lock: 1.4.1 -> 1.4.2
742d8ccf38b16 python312Packages.dask-ml: skip failing tests
41f1bdc87b5e6 python312Packages.distributed: 2025.1.0 -> 2025.2.0
547b18b09c312 python312Packages.dask: 2025.1.0 -> 2025.2.0
aec2350b56f19 tuba: 0.9.1 -> 0.9.2
dcc0ce5ed4977 eccodes: 2.39.0 -> 2.40.0 (#382208)
728173057b216 seafile-client: 9.0.11 -> 9.0.12 (#382044)
551ce0e69a8f6 python313Packages.simpleeval: refactor
1b39dffb7eba9 evcc: 0.200.5 -> 0.200.6
0fa90d642277d python313Packages.ohme: 1.3.2 -> 1.4.0 (#387552)
63622ca5aa7d7 python312Packages.niaarm: 0.3.13 -> 0.4.1
6a7db3a1a1805 logrotate: allow access to unix socket (#387522)
fd487d6ba169c miniupnpc: 2.3.1 -> 2.3.2 (#387514)
5caf66731135b python313Packages.pykulersky: 0.5.5 -> 0.5.8
01a928ddf0ead python313Packages.pycfmodel: 1.0.1 -> 1.1.0
1bf64f7f98c98 talloc: 2.4.2 -> 2.4.3 (#380116)
0ca7a8163d9cb assemblyscript: 0.27.30 -> 0.27.34 (#382621)
8625ee8e83f01 terraform-providers.okta: 4.14.0 -> 4.14.1
8879dd7477993 minizinc: 2.8.7 -> 2.9.0 (#381150)
af030e99cdf73 debootstrap: add zstd to debootstrap's binPath (#387473)
c115f8a387cd7 shfmt: 3.10.0 -> 3.11.0 (#387481)
ce853920e3246 portaudio: fix build for FreeBSD (#387546)
5e1f792d818e2 libaom: fix build on FreeBSD (#387508)
6654c9dc8bcdd squid: 6.13 -> 7.0.1
019f100d178c4 squid: add inverse test
b2e9c3636c7e6 monaspace: 1.101 -> 1.200 (#380110)
baf7e00bab385 portaudio: fix build for FreeBSD
1904c72642c8d liboggz: 1.1.1 -> 1.1.2 (#380627)
96467b34d9f19 hifile: 0.9.9.18 -> 0.9.9.19 (#387102)
f22735e82d664 clojure: 1.12.0.1495 -> 1.12.0.1517 (#380599)
f0cae6b543135 python313Packages.pynecil: 4.0.1 -> 4.1.0
4e9dba7aa3bec python313Packages.aiolifx: 1.1.3 -> 1.1.4
0d6cc761bca7e trivy: 0.59.1 -> 0.60.0 (#387276)
f479c6911e129 python313Packages.thermobeacon-ble: 0.8.0 -> 0.8.1
6ade2f254f25d python313Packages.ohme: 1.3.2 -> 1.4.0
01b796a14aedf python313Packages.aioesphomeapi: 29.3.1 -> 29.4.0
13bef8e6585eb dosage-tracker: 1.9.1 -> 1.9.3 (#387499)
c7471e8576c28 protonplus: 0.4.24 -> 0.4.25 (#387480)
eab40f7aac2fb python313Packages.standardwebhooks: init at 1.0.0 (#387537)
62ed28eab0e6b open-webui: 0.5.19 -> 0.5.20 (#387528)
56eb159f62595 SDL2_mixer: 2.8.0 -> 2.8.1 (#380264)
0134b4f56f383 partio: 1.17.3 -> 1.19.0 (#377751)
38516cac9da79 terraform: 1.11.0 -> 1.11.1 (#387443)
1c82ff0d024ef ly: pin to zig 0.13
500eb29a69d1e cargo-lambda: pin to zig 0.13
c1a2b6279fa40 waylock: pin to zig 0.13
1cc776321f86d flow-editor: pin to zig 0.13
cd3b40103e9f9 ocamlPackages.iter: 1.8 -> 1.9 (#379595)
dd16039bbd3e3 parallel-hashmap: 1.4.1 -> 2.0.0 (#377321)
ed7c190d98a31 ghostty: pin to zig 0.13
f77a948f26cc7 river: pin to zig 0.13
86f96768eda6b windsurf: 1.3.10 -> 1.4.3 (#387538)
73343afaa5fc2 solo5: 0.9.0 -> 0.9.1
279b5a2a81326 python313Packages.standardwebhooks: init at 1.0.0
a764bd4a0ba05 immich: 1.128.0 -> 1.129.0
d0c64c53cd1a4 windsurf: 1.3.10 -> 1.4.3
fca3d43b7cf2a chatgpt: 1.2025.014 -> 1.2025.057 (#387273)
cb2c327ef33d4 pixi: 0.40.3 -> 0.42.1 (#383075)
34ce1b77826a8 ircdHybrid: 8.2.45 -> 8.2.46 (#375977)
8a35708b84f50 superhtml: pin to zig 0.13
bfb5bb7fe5f07 poop: pin to zig 0.13
7b9b602322d35 ncdu: pin to zig 0.13
e6be0c6ebc0cf ocamlPackages.ocaml_sqlite3: 5.2.0 -> 5.3.0 (#375442)
660d361237d36 ocamlPackages.gen_js_api: 1.1.3 -> 1.1.4 (#375997)
a8da3ac443091 frawk: disable llvm support (#381871)
bd16d06f802ce pari: 2.17.1 -> 2.17.2 (#387472)
c33c90b28504f diamond: 2.1.10 -> 2.1.11 (#376705)
3e792aa1b546c argparse: 3.1 -> 3.2 (#376843)
22d24c1503a34 catboost: use llvm 14 for cuda (#333562)
d0dea98b18fa6 burpsuite: 2025.1.2 -> 2025.1.3 (#387397)
ab6aab0323757 firmware-manager: use fetchCargoVendor (#387426)
c6ddea83fd2a2 xeol: 0.10.7 -> 0.10.8 (#387420)
2abd2098a4089 okteta: 0.26.19 -> 0.26.20
1c4ac8fe1ff4a qt6ct: use CMake
671e390c61253 qt6ct: switch to new upstream
3e43bb1ee4db3 vscode-extensions.ms-toolsai.jupyter: 2025.2.0 -> 2025.1.2025013001 (#387524)
c8ecd9f991d4a python313Packages.publicsuffixlist: 1.0.2.20250302 -> 1.0.2.20250306
c86e2f2c1a99e checkov: 3.2.379 -> 3.2.381
cdc727460da95 open-webui: 0.5.19 -> 0.5.20
f50fd492dae6c python313Packages.boto3-stubs: 1.37.6 -> 1.37.7
8fea731504799 python313Packages.botocore-stubs: 1.37.4 -> 1.37.7
548549b69b620 python312Packages.mypy-boto3-workspaces: 1.37.0 -> 1.37.7
a8c6865407847 python312Packages.mypy-boto3-iotfleetwise: 1.37.2 -> 1.37.7
fdb7b8aa2b693 python312Packages.mypy-boto3-datasync: 1.37.0 -> 1.37.7
dc014e13bb3f3 python313Packages.govee-ble: 0.43.0 -> 0.43.1
ada697f6ffc60 pgmetrics: 1.17.0 -> 1.17.1
b62c2d1134310 vscode-extensions.ms-toolsai.jupyter: 2025.2.0 -> 2025.1.2025013001
32dd3f0e27329 ausweisapp: 2.2.2 -> 2.3.0
01e8036a98167 logrotate: allow access to unix socket
10069ef4cf863 Revert "calamares: 3.3.13 -> 3.3.14" (#387517)
89cd9e56a57cd rpcs3: 0.0.34-17265-418a99a62 -> 0.0.34-17323-92d070729 (#372036)
b255322f409ca rdfind: 1.6.0 -> 1.7.0 (#379725)
97fb0f9e47027 jsonfmt: 0.5.0 -> 0.5.1
7dc950109d154 mako: replace systemd with systemdMinimal (#387375)
3e3dbeb16bd26 hermitcli: 0.44.0 -> 0.44.1
1e158a846e6b8 goflow2: 2.2.1 -> 2.2.2
1f218ba55e07a pixi: 0.40.3 -> 0.42.1
bb4d8d9487f9c pixi: cleanup
4f4891ecf9501 calamares: add .tests
469fa07be0aff Revert "calamares: 3.3.13 -> 3.3.14"
fad4b47f79898 addwater: 1.2.5 -> 1.2.6 (#387507)
6936a7042c53f miniupnpc: 2.3.1 -> 2.3.2
b456cbb7be012 libaom: fix build on FreeBSD
0ebf067f02f0e aliyun-cli: 3.0.254 -> 3.0.256
cdec7e97b5b11 affine: 0.20.3 -> 0.20.4 (#387497)
ffe8d1b1030b5 mesa: 24.3.4 -> 25.0.0 (#383432)
bf27402467bb5 addwater: 1.2.5 -> 1.2.6
ca3482476eca7 xf86-video-vmware: drop the now useless mesa dependency
afe2ba39e434c mesa: output cleanup, part 1
a103c8363af28 mutter46: use mesa-gl-headers
9dc26d95a5f96 mutter: use mesa-gl-headers
70247ee7bca0c muffin: use mesa-gl-headers
3badb3f2570c6 magpie: use mesa-gl-headers
9a16c2b268a66 kodi: use mesa-gl-headers
e3d253138dbbe enlightenment.efl: use mesa-gl-headers
ed656d02fa588 cogl: use mesa-gl-headers
0c746c8c0aa03 mesa-gl-headers: init at 25.0.1
b3d0fa247fdab wine: build without osmesa
cdbf9dc01fd0c qqmusic: remove unused Mesa input
888487a7463b3 python312Packages.horizon-eda: build without osmesa
d8b8fcb32363c primus: remove spurious Mesa reference
d3631853bd708 orca-slicer: get rid of osmesa dependency, clean up other mesa-related things
1db9e2a4f55c2 hey-mail: mesa -> libgbm
5ae0d557c0396 arrayfire: mark broken
4e009205b7716 mesa: 24.3.4 -> 25.0.1
0ce9de036c913 1password-gui-beta: 8.10.60-4.BETA -> 8.10.68-12.BETA (#387482)
b503f1730381b dosage-tracker: 1.9.1 -> 1.9.3
235acafb2402d affine: 0.20.3 -> 0.20.4
25050c9c2a7f6 vscode-extensions.illixion.vscode-vibrancy-continued: init at 1.1.44
aa0652c925726 maintainers: add _2hexed
179fd3100c725 vscode-extensions.ms-python.python: 2025.1.2025022501 -> 2025.2.0 (#387455)
6a721b7f07f19 superfile: 1.1.7.1 -> 1.2.0.0 (#387323)
36fafd7aab5ee affine: 0.20.2 -> 0.20.3 (#386317)
9b8b1ba8c4083 looking-glass-client: B7-rc1 -> B7
bc9c870bc5d16 htgettoken: 2.0-2 -> 2.1
1767c5354be95 servo: 0-unstable-2025-03-01 -> 0-unstable-2025-03-05 (#387489)
79b15f8b09510 vscode: 1.97.2 -> 1.98.0
93c9cd67eabd2 home-assistant: bump ecosystem packages (#387487)
d4a1f41003ed0 home-assistant-lovelace-modules.advanced-camera-card: init at 7.3.2
44bf7f8725bd6 home-assistant-custom-components.smartir: 1.17.9 -> 1.18.0
ff5268a8298d6 home-assistant-custom-components.frigate: 5.4.0 -> 5.8.0
d663db8ad8673 home-assistant.python.pkgs.hass-web-proxy-lib: init at 0.0.7
75bc9487e45fb garage: 1.0 and 0.9 is no longer broken on Darwin
3248fab823735 servo: 0-unstable-2025-03-01 -> 0-unstable-2025-03-05
241277cf447d5 cilium-cli: 0.16.24 -> 0.18.0
53abe0f4b673c emacs: patch mailcap.el to find pkgs.mailcap (#387185)
c8a2b9a3f5ad0 moar: 1.31.3 -> 1.31.4
0f11152448f4c step-cli: 0.28.3 -> 0.28.5
263e887202f19 1password-gui-beta: 8.10.60-4.BETA -> 8.10.68-12.BETA
3c18f233f2e27 shfmt: 3.10.0 -> 3.11.0
df85f5d23586b python312Packages.scikit-hep-testdata: 0.5.2 -> 0.5.3
19fff691ae56e home-assistant-custom-lovelace-modules.clock-weather-card: 2.8.9 -> 2.8.10
3614af9565042 home-assistant-custom-components.yoto_ha: 1.23.0 -> 1.23.2
36af8c6fd1008 home-assistant-custom-components.xiaomi_miot: 1.0.12 -> 1.0.13
06f80f51080e9 home-assistant-custom-components.localtuya: 2025.3.0 -> 2025.3.1
b2311bcd6ae2a glaze: 4.3.1 -> 5.0.0
62f7eee1b192f protonplus: 0.4.24 -> 0.4.25
667b1f61ff7a9 home-assistant-custom-components.daikin_onecta: 4.2.2 -> 4.2.3
a4b4eebe8b4cb home-assistant.python.pkgs.pytest-homeassistant-custom-component: 0.13.214 -> 0.13.220
e20c0f2d09222 python313Packages.homeassistant-stubs: 2025.2.5 -> 2025.3.0
a16fc600aaeb5 debootstrap: add zstd to debootstrap's binPath
b2a3838164400 plantuml-server: 1.2025.0 -> 1.2025.2
8fe0b9de3200f garage: 1.0.1 -> 1.1.0 (#387398)
520bf50f44e69 jujutsu: remove old Darwin SDK detritus
ce62a1161fb33 snakemake: 8.29.0 -> 8.29.2
72482476c105e chatgpt: 1.2025.014 -> 1.2025.057
f85fe2b15d631 jujutsu: 0.26.0 -> 0.27.0
b82acc7c45b92 pari: 2.17.1 -> 2.17.2
925ac765d0ed5 music-assistant: 2.3.6 -> 2.4.2 (#387392)
e9d2cb8925f2a vscode-extensions.ms-python.python: 2025.1.2025022501 -> 2025.2.0
eac749c181048 rpl: 1.17 -> 1.18
d7987eac86209 python313Packages.ytmusicapi: 1.10.1 -> 1.10.2
274ea258ee704 orca-slicer: Don't show update dialog by default (#378396)
97cb30a6568db rosa: 1.2.50 -> 1.2.51 (#387429)
9613c2844ccd9 top-git: 0.19.13 -> 0.19.14 (#380122)
c228ddb561240 monaspace: 1.101 -> 1.200
102c779543e70 entr: 5.6 -> 5.7 (#380087)
2127c8d779123 music-assistant: 2.3.6 -> 2.4.2
fed188c3516b8 python312Packages.aioaudiobookshelf: init at 0.1.4
b5930cb68f5c3 python312Packages.deezer-python-async: init at 0.3.0
30ad414f52814 python312Packages.duration-parser: init at 1.0.1
19b01fd7ce74f komac: migrate to `finalAttrs`
9ba655c111d44 clamav: 1.4.1 -> 1.4.2 (#375974)
8e590dd68c874 python313Packages.aiorun: 2024.8.1 -> 2025.1.1
efeb03ba4c340 ghostfolio: 2.139.1 -> 2.143.0 (#387368)
e36051965ac52 neovim-qt-unwrapped: 0.2.18 -> 0.2.19 (#375995)
30c06664f35a0 home-assistant: 2025.2.5 -> 2025.3.0 (#386461)
7a6115076d206 firmware-manager: use fetchCargoVendor
fbbabf41c3b7a fstl: 0.10.0 -> 0.11.0 (#375969)
31e9ac86d6382 ocamlPackages.spdx_licenses: 1.2.0 -> 1.3.0 (#375216)
b6d691cfa05ed hyperspeedcube: 1.0.7 -> 1.0.12
c1017d07ae5c5 hyperspeedcube: use fetchCargoVendor
95cff36c66c1b goxlr-utility: use fetchCargoVendor
496ea837b363c various: extremely lightweight fixes to support FreeBSD build (#387230)
f4e5a303ea1b1 hp2p: unstable-2023-10-25 -> 4.1 (#387247)
a295b9c396525 jumpy: use fetchCargoVendor
f21847f019c57 granted: remove withFish flag completely (#387013)
cf659838604b4 ocamlPackages.ocaml-version: 3.7.2 -> 3.7.3 (#375614)
84b8c06695915 python3Packages.pycairo: mark support for FreeBSD
900b9b37c8024 spacenavd: 1.3 -> 1.3.1 (#372277)
f094dbd787f15 openblas: enable support for x86_64-freebsd
406efa04433b5 opencv: mark support for FreeBSD
8dd49365b599a libdvdread: mark support for FreeBSD
26fabe77ea583 libdvdcss: mark support for FreeBSD
5708672a33ed7 ffmpeg: fix build for FreeBSD
0e21e01d04cb7 licensure: 0.7.1 -> 0.7.2
0f2b0447fc963 calamares-nixos-extensions: 0.3.21 -> 0.3.22 (#387432)
8b3636c6b6b06 parsedmarc: 8.17.0 -> 8.18.1 (#375476)
74c80cecbaac1 calamares-nixos-extensions: 0.3.21 -> 0.3.22
eaaea8bdc02bd xavs: mark support for FreeBSD
2138f8e870334 x265: fix build for FreeBSD
94c6912c793ee socat: fix build for FreeBSD
9052f5223a595 quirc: fix build for FreeBSD
4ab80fec2f91c libvisual: mark support for FreeBSD
cfcdb0e1bd69f libcamera: mark as linux-only
ef4490603d3c1 frei0r: mark support for FreeBSD
f8c7dd4d0bfd5 imagemagick: Mark support for FreeBSD
38f5f81af720d {alsa-lib,alsa-topology-conf,alsa-ucm-conf}: fix build for FreeBSD
4dc9948c81ef1 opencv: format
f84d86e9141b0 ffmpeg: format
c84d678e7dbb4 imagemagick: format
5b67dad13c7fc darwin.cf-private: remove alias (#387125)
5f85d34972ce4 imgbrd-grabber: 7.12.2 -> 7.13.0 (#373088)
b672f84f37190 whitesur-cursors: 0-unstable-2022-06-17 -> 0-unstable-2025-01-13 (#387310)
e894a183d31c8 evolution-ews: 3.54.2 -> 3.54.3.0 (#373358)
f30411fef6340 erlang_27: 27.2.4 -> 27.3 (#387295)
d8409e84dade7 rosa: 1.2.50 -> 1.2.51
43b36582cdfe3 allure: 2.32.2 -> 2.33.0 (#387359)
05dd23b11f407 irpf: 2024-1.5 -> 2024-1.6 (#372909)
85f74898ba4a8 ocamlPackages.miou: 0.3.0 -> 0.3.1 (#373453)
eda1f928bb3e2 vscode-extensions.ms-python.debugpy: 2025.0.1 -> 2025.4.0 (#387418)
b00d8d5812a96 python313Packages.python-picnic-api: drop
9d43dae293e8e python313Packages.paho-mqtt_1: drop
04598d1b3f260 home-assistant: 2025.2.5 -> 2025.3.0
635f5af9506aa kstars: 3.7.4 -> 3.7.5
f34731eeb9785 kstars: add returntoreality to maintainers
2c6c4b87d9603 stellarsolver: add returntoreality to maintainers
81da05138e8ae stellarsolver, kstars: switch to qt6, by-name path
ea1a70df8124f home-assistant.python.pkgs.home-assistant-intents: 2025.2.5 -> 2025.3.5
bcf137c149c49 home-assistant.python.pkgs.home-assistant-frontend: 20250221.0 -> 20250305.0
b983ba6b1970d python313Packages.pyfronius: 0.7.5 -> 0.7.6
84cbf1bcf478b python313Packages.pybalboa: 1.0.2 -> 1.1.3
4a754ccf50bbd python312Packages.evohome-async: 0.4.21 -> 1.0.2
54250e5db6fd2 python313Packages.thinqconnect: 1.0.3 -> 1.0.4
bab88cc0c7559 python313Packages.zigpy: 0.76.1 -> 0.76.2
d8de3c8bcc12f python312Packages.zha-quirks: 0.0.133 -> 0.0.134
23b334e33ae0b python313Packages.zha: 0.0.49 -> 0.0.51
30662649369a3 python312Packages.zeroconf: 0.144.1 -> 0.145.1
3435b8e4286de python313Packages.weheat: 2025.2.13 -> 2025.2.27
20023d0c06b00 python313Packages.upb-lib: 0.5.9 -> 0.6.0
a7e88a4aa5e24 python313Packages.tesla-fleet-api: 0.9.10 -> 0.9.12
b116c2a68e082 python313Packages.stookwijzer: 1.5.4 -> 1.6.1
07065a9d847ee python312Packages.soco: 0.30.8 -> 0.30.9
f67ec8b4b4c8e python313Packages.sensorpush-ha init at 1.3.2
d8bed5f0c2900 python313Packages.sensorpush-api init at 2.1.1
44c787a4ec6b2 python313Packages.securetar: 2025.1.4 -> 2025.2.1
5d94c4cbe6c07 python313Packages.pytouchline-extended: init at 0.4.5
7615a716b0b9c python313Packages.python-technove: 1.3.1 -> 2.0.0
902208b355956 python313Packages.python-snoo: init at 0.6.0
6e517f395224a python313Packages.python-picnic-api2: init at 1.2.2
11b7422109605 python313Packages.pysmlight: 0.1.7 -> 0.2.3
3d5131d8dca28 python313Packages.pysmhi: init at 1.0.0
410d05c41aeed python313Packages.pysmartthings: 0.7.8 -> 2.5.0
6e1f5fc925b29 python313Packages.pyrisco: 0.6.6 -> 0.6.7
4455198015741 python313Packages.pypglab: init at 0.0.3
0192f3d50ceb6 python313Packages.py-synologydsm-api: 2.6.3 -> 2.7.0
4974c86dac1bc python312Packages.plugwise: 1.6.4 -> 1.7.2
efa69a186ca85 python313Packages.onedrive-personal-sdk: 0.0.11 -> 0.0.13
e0fb86930b296 python313Packages.ohme: 1.2.9 -> 1.3.2
8c031f54bcf69 python313Packages.nhc: 0.3.9 -> 0.4.10
9226e4e2196cc python313Packages.nexia: 2.1.0 -> 2.2.1
d6d1356895ca0 python313Packages.music-assistant-models: 1.1.3 -> 1.1.30
8b0a7020e30b1 python313Packages.music-assistant-client: 1.0.8 -> 1.1.1
e6f8c5dd96b1d python313Packages.iometer: init at 0.1.0
027739139b95d python313Packages.home-assistant-bluetooth: 1.13.0 -> 1.13.1
5e4871acfdbac python313Packages.habluetooth: 3.21.1 -> 3.24.1
f902b3468d17c python313Packages.google-nest-sdm: 7.1.3 -> 7.1.4
8bc6f3203339a python313Packages.google-genai: init at 1.4.0
28fc886503245 python313Packages.fnv-hash-fast: 1.2.3 -> 1.2.6
7b15a656293f8 python313Packages.eq3btsmart: update dependencies
6ce8685c8810d python313Packages.deebot-client: 12.2.0 -> 12.3.1
943f3a63de137 python313Packages.cached-ipaddress: 0.8.0 -> 0.9.2
ea1b27d7bf8dd python312Packages.bluetooth-auto-recovery: 1.4.2 -> 1.4.4
52e010bf6b871 python313Packages.bluetooth-auto-recovery: run all tests
3e2a9d575326d python313Packages.bleak-esphome: 2.7.1 -> 2.9.0
a52e0f507cd30 python313Packages.bleak-retry-connector: 3.8.1 -> 3.9.0
63b6c596b1363 python313Packages.async-interrupt: 1.2.0 -> 1.2.2
5a778846501d7 python313Packages.arcam-fmj: 1.8.0 -> 1.8.1
2be582a1f3dee python313Packages.aioshelly: 12.4.2 -> 13.1.0
cec4cda45a6a6 python312Packages.aiowebostv: 0.6.2 -> 0.7.3
35fadddcd452b python313Packages.aiowebdav2: init at 0.3.1
4888b63ff8f06 python313Packages.aiohue: 4.7.3 -> 4.7.4
f015b82c5bb03 python313Packages.aiohomeconnect: 0.16.0 -> 0.16.2
3d579b9c90e2f python313Packages.aioesphomeapi: 29.2.0 -> 29.3.1
25da483d0df37 python313Packages.aioecowitt: 2024.2.2 -> 2025.3.1
8033eebe36fc6 python313Packages.aiodiscover: 2.2.0 -> 2.6.1
dc21113474c6f f2fs-tools: backport upstream C23 fix (#377149)
cd163cb58e153 vscode-extensions.ms-python.black-formatter: 2024.6.0 -> 2025.2.0 (#387417)
1d47aacfb67c7 platformio: 6.1.16 -> 6.1.17 (#387394)
287c1073cfb00 ibus-engines.typing-booster-unwrapped: 2.27.1 -> 2.27.27 (#373378)
bbfdc280cfdcf protonmail-desktop: 1.7.0 -> 1.7.1 (#387396)
ce986396f8862 vscode-extensions.ms-python.pylint: 2024.2.0 -> 2025.2.0 (#387415)
90cc2a2dfb680 vscode-extensions.ms-python.flake8: 2025.1.10441012 -> 2025.2.0 (#387410)
a7b961c2f8ea0 i3status-rust: make notmuch optional (#387062)
18ca48aee0b2a openapi-generator-cli: 7.10.0 -> 7.12.0 (#375447)
f79e2453a959a minify: 2.21.2 -> 2.21.3 (#375880)
b97d758b4c67e vscode-extensions.ms-python.mypy-type-checker: 2025.1.10451009 -> 2025.2.0 (#387408)
a3871f2825169 qtox: 1.18.0 -> 1.18.2 (#374157)
5e516044eb01f xeol: 0.10.7 -> 0.10.8
2e6af89cf6895 vscode-extensions.ms-python.debugpy: 2025.0.1 -> 2025.4.0
1926ca275a6a4 python313Packages.pyfronius: 0.7.3 -> 0.7.5 (#387147)
90ad157c1fb4c vscode-extensions.ms-python.black-formatter: 2024.6.0 -> 2025.2.0
a7e2b3a64b99d schemacrawler: 16.25.1 -> 16.25.2 (#375684)
424cb7122b12c brainflow: 5.15.0 -> 5.16.0 (#375478)
5b774e05b2631 vcpkg: 2025.01.13 -> 2025.02.14 (#375644)
76a5bd7ba50d2 vscode-extensions.ms-python.pylint: 2024.2.0 -> 2025.2.0
297427a398e9a vscode-extensions.ms-python.flake8: 2025.1.10441012 -> 2025.2.0
f35c200215e20 vscode-extensions.ms-python.mypy-type-checker: 2025.1.10451009 -> 2025.2.0
cdde2d114df08 yarn-berry: 4.6.0 -> 4.7.0
fceb14736229a SDL2_ttf: 2.22.0 -> 2.24.0 (#370469)
34b4de3af937a nix-heuristic-gc: 0.6.0 -> 0.6.1 (#387354)
66079e7802549 python312Packages.pdm-build-locked: 0.3.4 -> 0.3.5
2ccb7e79a82de cloudlist: 1.2.0 -> 1.2.1 (#387166)
50b7bd4da8e4b alpaca: 5.0.5 -> 5.0.6 (#387171)
417e36729f76e claude-code: 0.2.29 -> 0.2.30 (#387254)
caf3f8bbe954e element-{web,desktop}: use yarnConfigHook (#387319)
cbf8fb2f3fe86 garage: 1.0.1 -> 1.1.0
4adce1dab9475 rocketchat-desktop: remove gbtb from maintainers (#387326)
e96f1877ade20 calamares: 3.3.13 -> 3.3.14 (#387331)
6f52f21ad2ca3 testers.shfmt: init
e5874484fafd3 signalbackup-tools: 20250304-1 -> 20250305-2 (#387361)
5556053402413 python312Packages.openai: 1.65.2 -> 1.65.3 (#387376)
4b160f388ddc1 pspg: 5.8.7 -> 5.8.8 (#387381)
d542aaf9c3ca3 protonmail-desktop: 1.7.0 -> 1.7.1
f7c4babc0ac33 burpsuite: 2025.1.2 -> 2025.1.3
8270e4030f420 swayws: 1.2.0 -> 1.3.0 (#386382)
08a3810a7c832 jsoncons: 1.2.0 -> 1.3.0 (#387367)
db4f467976b4b platformio: 6.1.16 -> 6.1.17
56d2260fcca43 libipt: fix linkage on FreeBSD. this fixes the gdb build
c1c82774aecde yarnConfigHook: add yarn.lock consistency check (#387316)
f2bea4758346e librewolf: 135.0.1-1 -> 136.0-1 (#387338)
5b69d11e06dfa chromium,chromedriver: 133.0.6943.141 -> 134.0.6998.35 (#387370)
db784d7344507 serial-studio: enable on darwin (#387123)
4d293acdbf8f5 llvmPackages_git: 21.0.0-unstable-2025-02-23 -> 21.0.0-unstable-2025-… (#386602)
1a60334181012 pspg: 5.8.7 -> 5.8.8
fcb85120d8bd4 terraform-providers.ibm: 1.75.2 -> 1.76.0
42ee0656c21b7 edgedb: change name to gel, 6.1.2 -> 7.0.3 (#384703)
a1e05f1db233c decklink: fix build for kernel 6.13
4282873308984 mako: replace systemd with systemdMinimal
69636b1317a27 python312Packages.msgraph-core: 1.3.1 -> 1.3.2 (#387290)
41f990cb8295f opa-envoy-plugin: 1.1.0-envoy-1 -> 1.2.0-envoy-2
6bde446b32cb8 ghostfolio: 2.139.1 -> 2.143.0
790fc20209939 jsoncons: 1.2.0 -> 1.3.0
a99d0352de4e0 oci-cli: 3.51.8 -> 3.52.0 (#387355)
a9ec22d7da679 ledger-live-desktop: 2.100.0 -> 2.102.0 (#387342)
b5e523de6fc06 kdePackages.kwin: backport fix recommended by upstream (#387362)
704b9848fefa2 kdePackages.kwin: backport fix recommended by upstream
7c38e713a5410 python312Packages.openai: 1.65.2 -> 1.65.3
391e0fce34f45 home-assistant-custom-components.waste_collection_schedule: 2.6.0 -> 2.7.0 (#387330)
ec40a1cb8eecd qtorganizer-mkcal: 0-unstable-2025-02-14 -> 0-unstable-2025-02-19 (#385397)
ade3d408f2707 signalbackup-tools: 20250304-1 -> 20250305-2
67ed9abb8500d allure: 2.32.2 -> 2.33.0
1af80a2892499 buildkit: 0.20.0 -> 0.20.1
4c098032d0c4b oci-cli: 3.51.8 -> 3.52.0
82c4fb10d17a7 python312Packages.mcp: allow network access on darwin to fix tests
cfdcf0720684a python312Packages.testcontainers: 4.9.1 -> 4.9.2
d223cfb742542 parted: backport upstream C23 fix (#378578)
ee8aa7a3646a5 python312Packages.edk2-pytool-library: 0.22.5 -> 0.22.6
b9970c8ef7c91 nix-heuristic-gc: 0.6.0 -> 0.6.1
d6607ca510d4d go-dnscollector: 1.4.0 -> 1.5.0 (#387017)
364fab19ae925 tahoe-lafs: unstable-2021-07-09 -> 1.19.0 (#387244)
c3fde4bcc6206 python312Packages.keras: 3.8.0 -> 3.9.0 (#387270)
3aabf4d8d64e1 python312Packages.pytensor: 2.28.2 -> 2.28.3 (#387285)
52328cfe3bab9 vimPlugins.lackluster-nvim: init at 2024-12-29 (#387347)
6e96684190af8 python312Packages.langgraph: skip failing tests (#387309)
1e0217b0c5fdb nixos/soft-serve: restart trigger added (#384829)
3c80cf2a01cb6 gosec: 2.22.1 -> 2.22.2 (#387296)
a2131b1b3bb5c vue-language-server: 2.2.2 -> 2.2.8 (#387298)
b4047c378bd86 xdg-terminal-exec: 0.12.1 -> 0.12.2 (#387314)
c0bc0840d32a6 k8sgpt: 0.3.49 -> 0.3.50 (#387321)
91928bec8edf4 stayrtr: 0.6.1 -> 0.6.2 (#387322)
53476063aca97 python312Packages.jobspy: 1.1.75 -> 1.1.77 (#387333)
7d0e07580e141 python312Packages.skytemple-ssb-emulator: 1.8.1 -> 1.8.2 (#387344)
eade05f74fb24 python312Packages.json-repair: 0.39.0 -> 0.39.1 (#387279)
4f5cd11212200 mangohud: use `--replace-fail`
91a4324c2c6c4 mangohud: 0.8.0 -> 0.8.1
3b57d7d3f0203 application-title-bar: 0.8.3 -> 0.8.4
8a605d3c61492 obsidian: 1.8.7 -> 1.8.9 (#387328)
0dbcd90006566 docling: 2.25.1 -> 2.25.2 (#387335)
866b43171c341 python3Packages.logbook: add missing pytest-rerunfailures dep (#382246)
17a789e154096 remnote: 1.18.46 -> 1.18.49 (#387300)
de7370ac609db python312Packages.skytemple-ssb-emulator: 1.8.1 -> 1.8.2
db9eed7f6f62d keepassxc: 2.7.9 -> 2.7.10
2f454a9ea5416 hp2p: unstable-2023-10-25 -> 4.1
824b1569faf06 ledger-live-desktop: 2.100.0 -> 2.102.0
3321bb6c544eb vimPlugins.lackluster-nvim: init at 2024-12-29
227e660edf72c python313Packages.uv: patch find_uv_bin() (#387153)
70a6026a905c0 librewolf: 135.0.1-1 -> 136.0-1
aadce7cfb002a docling: 2.25.1 -> 2.25.2
b5a9e6a2ff9c3 open-webui: 0.5.18 -> 0.5.19 (#387267)
5bc03383426ee python312Packages.jobspy: 1.1.75 -> 1.1.77
0c5ca49ace5b7 i3status-rust: format code
01aaf2a79b7bd i3status-rust: add an attribute to be able to disable notmuch support
03c82b9303d7a jbang: 0.123.0 -> 0.124.0
e19531bc09dca xrsh: init at 0.143 (#375328)
2c84221af3a67 floorp: 11.23.1 -> 11.24.0 (#387250)
25d2e2d67fbdd home-assistant-custom-components.waste_collection_schedule: 2.6.0 -> 2.7.0
7366bb5218fda calamares: 3.3.13 -> 3.3.14
1fa7febe21964 ha-mqtt-discoverable-cli: 0.16.4.1 -> 0.18.0 (#387152)
11f36e699e812 obsidian: 1.8.7 -> 1.8.9
5ca7fffe87d04 nezha: 0.20.3 -> 1.9.5; nezha-agent: 0.20.5 -> 1.9.2; nixos/nezha-agent: refactor (#361515)
29ef052bcc291 chromium,chromedriver: 133.0.6943.141 -> 134.0.6998.35
1287480e166b7 python3Packages.peacasso: init at 0.0.19a0 (#383722)
304e9bd027442 ghostfolio: init at 2.139.1 (#383390)
8d3e29532e9cc 1password-cli: define nativeBuildInputs properly (#380156)
2fe736f2193fa python313Packages.uv: patch find_uv_bin()
432d274c810c7 nixos/nextcloud-notify_push: use RestartMode=direct
085d399214cdd namespace-cli: 0.0.403 -> 0.0.405 (#387178)
480daed563a09 scalafmt: 3.7.17 -> 3.9.2 (#385440)
269c8c3d18f3f shot-scraper: 1.6 -> 1.7 (#386359)
355c8762a9305 stunner: init at 0.0.8 (#387280)
a039eab8db855 wails: 2.9.2 -> 2.10.1 (#383784)
1dff9b49f7f0c doc: fix grammar in explanation of duneVersion in buildDunePackage (#385856)
267461dafbec4 rails-new: init at 0.5.0 (#384913)
a59ffb727d361 rocketchat-desktop: remove gbtb from maintainers
4335e240aee3b python313Packages.kasa-crypt: 0.5.0 -> 0.6.1 (#387208)
e30fb3059696f python313Packages.pybrowsers: 0.6.0 -> 0.7.0 (#387210)
4a0ff69422ae0 nixos/restic: unlock database before doing pruning (#387116)
8de1cdaf59617 python313Packages.asyncwhois: 1.1.9 -> 1.1.10 (#387211)
3b7dcac9b7849 python313Packages.asn1: 2.8.0 -> 3.0.0 (#387212)
3c95dc102ac45 python313Packages.deebot-client: 12.2.0 -> 12.3.1 (#387214)
e2069f281df1d python313Packages.discogs-client: 2.7.1 -> 2.8 (#387216)
9d450a9fa6659 python312Packages.mypy-boto3-*: updates (#387223)
6db8a686869b9 python313Packages.schema-salad: 8.8.20241206093842 -> 8.8.20250205075315, python313Packages.cwl-utils: 0.36 -> 0.37 (#387226)
ceea833f49076 python312Packages.llama-index-core: 0.12.17.post2 -> 0.12.22.post1 (#387228)
8ebf0d2b5cbc8 python313Packages.whispers: adjust inputs (#387233)
e24cc572ef79b cero: disable tests (#387240)
f518c46cc133d ragenix: init at 0-unstable-2024-09-19 (#383042)
59205d7b045a1 python313Packages.pyfnip: refactor (#387256)
3ceeecea02265 python313Packages.aiohttp-middlewares: relax async-timeout (#387258)
3a891de8b04d2 wayfirePlugins.wayfire-shadows: 0-unstable-2024-08-30 -> 0-unstable-2025-03-04 (#387312)
866fdbece1bda pineapple-pictures: 0.9.1 -> 0.9.2 (#387307)
3629a2b8fda67 checkpolicy: remove meta.name and add main program (#385646)
da2d09d8736e3 treewide: fix typo in runHook (#387278)
c82c400647f70 ragenix: init at 0-unstable-2024-09-19
1dbbb319f194a superfile: 1.1.7.1 -> 1.2.0.0
7f777e60ed787 stayrtr: 0.6.1 -> 0.6.2
15fd40ac13386 element-desktop: use yarnConfigHook
e95ea5544fe49 element-web: use yarnConfigHook
57863e93a21ea k8sgpt: 0.3.49 -> 0.3.50
f6304d35e2d43 codeium: 1.38.0 -> 1.40.1 (#386655)
062eb42eba19a chromium: prepare for M134
28eddb26d2d4c xdg-terminal-exec: 0.12.1 -> 0.12.2
2de0c12f6751f python312Packages.keras: 3.8.0 -> 3.9.0
b4853dbe93a28 gitea: 1.23.4 -> 1.23.5 (#387139)
81874c55a8f35 tint2: fix build (#386987)
bdadf0d0ccdae nixos-rebuild-ng: only propagate nix's `bin` output (#387269)
a1e5f47523510 btop: add cuda version (#387291)
4781bc86fbe00 go_1_24: 1.24.0 -> 1.24.1 (#387199)
9731031c17beb wayfirePlugins.wayfire-shadows: 0-unstable-2024-08-30 -> 0-unstable-2025-03-04
8d9b242755879 noto-fonts: 2025.02.01 -> 2025.03.01 (#387288)
bdfcc5848314b rustdesk 1.3.1 -> 1.3.8 (#387034)
d52a42c0c1b58 part-db: init at 1.14.5 (#365249)
c5a7c8b47373e whitesur-cursors: 0-unstable-2022-06-17 -> 0-unstable-2025-01-13
6b2edad081c3e python312Packages.langgraph: skip failing tests
d837c12c62e8a pineapple-pictures: 0.9.1 -> 0.9.2
d3d77fbad043f feedbackd: 0.4.1 -> 0.7.0
ba9fb5494f2a0 feedbackd: add passthru.updateScript
e4f7cdf8873ab feedbackd: add Luflosi as maintainer
4f48368f11e73 airwindows: 0-unstable-2025-02-16 -> 0-unstable-2025-03-02 (#387122)
4ca20838c6c72 remnote: 1.18.46 -> 1.18.49
4467422d11101 quill-log: 8.1.1 -> 8.2.0 (#385449)
e3f319bd098ec erlang_27: 27.2.4 -> 27.3
ab17ef95165b0 vue-language-server: 2.2.2 -> 2.2.8
cbc552555532b python312Packages.huggingface-hub: 0.29.1 -> 0.29.2
6806edffe2744 gosec: 2.22.1 -> 2.22.2
19f37d5f2dac8 electron-chromedriver_32: 32.3.2 -> 32.3.3
15c9d7eb99925 electron_32-bin: 32.3.2 -> 32.3.3
3de97cbf05b14 lib/strings: allow CA paths in isStorePath (#387277)
ad5170c1465e5 btop: add cuda version
5503e9a9ebe20 lean4: 4.16.0 -> 4.17.0 (#386735)
bc92a937335bd golangci-lint: 1.64.5 -> 1.64.6 (#387091)
801b49b2ef7ed dotnet: add 10.0 preview.1 packages (#385259)
57f8478344221 libretro.gambatte: 0-unstable-2025-02-14 -> 0-unstable-2025-02-28
4a887dcbe78fc badger: 4.5.1 -> 4.5.2
00163481d6028 vimPlugins.avante-nvim: add vimPlugins.img-clip-nvim dependency (#387283)
6f0751fbf5504 rattler-build: 0.36.0 -> 0.37.0 (#387272)
b34f72fa9da3a cnspec: 11.43.0 -> 11.44.0 (#387205)
e9e1a2554203a ggshield: 1.36.0 -> 1.37.0 (#387204)
11fbf7ac15703 cfripper: 1.16.0 -> 1.17.0 (#387200)
c2319bfe3010e vimPlugins.avante-nvim: add vimPlugins.img-clip-nvim dependency
0ae8d332527ef tytools: 0.9.8 -> 0.9.9 (#385393)
06e133c3cc953 python312Packages.pytensor: 2.28.2 -> 2.28.3
f88706fa0fa77 stunner: init at 0.0.8
df2d3546ae26f ft2-clone: 1.94 -> 1.95
69f4e479da22b youki: 0.5.1 -> 0.5.2
7c7f62800c012 qtorganizer-mkcal: Disable tests
1f3be5a7e190e tetrio-plus: fix typo in runHook
3f41d626f687e msecli: fix typo in runHook
5083a4ae52e75 timer: 1.4.5 -> 1.4.6 (#387112)
30606ce08c50a ayatana-indicator-sound: 24.5.1 -> 24.5.2 (#385394)
50ccfacc4a83a python312Packages.json-repair: 0.39.0 -> 0.39.1
7a07cc0da9787 lib/strings: allow CA paths in isStorePath
3265fe46d7042 tideways-cli: 1.2.6 -> 1.2.8 (#387251)
6abd862418add miriway: 24.11.1 -> 25.02 (#385391)
c4568961089f5 nixos/part-db: init module
270a49da99a00 python312Packages.msgraph-core: 1.3.1 -> 1.3.2
4ffa25f041468 frigate: 0.14.1 -> 0.15.0 (#386266)
daeba872e7276 macskk: 1.4.1 -> 1.11.0
0c28c9fee063e macskk: Add passthru.updateScript
9373b32717db7 trivy: 0.59.1 -> 0.60.0
c14ca4ae7f946 tytools: 0.9.8 -> 0.9.9
46c7edcc0741d electron-{24,27,28,29,30,31}-bin: remove (#384809)
d69ab0d71b22f haproxy: 3.1.4 -> 3.1.5 (#387170)
2d74a2e009476 chatgpt: Fix update script
57bca7f7a4130 bacon: install shell completions (#387189)
c388860977bef nixos-rebuild-ng: only propagate nix's `bin` output
0a565b4f20d12 rattler-build: 0.36.0 -> 0.37.0
f562f638f25f5 python3Packages.pylibrespot-java: init at 0.1.1 (#380791)
b635a1ca9f0ee python312Packages.energyflow: disable failing tests on darwin (#387253)
f8bbde094502e python312Packages.tf2onnx: unmark as broken
b0678e3cd4a46 python313Packages.django-js-asset: 3.1 -> 3.1.2 (#387255)
761878d564c5c python3Packages.glocaltokens: init at 0.7.3 (#380984)
8c7aa317598bd electron-chomedriver_31: drop
65ae686979dc7 electron_31-bin: drop
fc93bf83a84e5 electron-chromedriver_30: drop
98782cf16cdf1 electron_30-bin: drop
92fc2793d4a52 electron-chromedriver_29: drop
58e60b215bb11 electron_29-bin: drop
8c1a31d2a5c3e breitbandmessung: 3.6.0 -> 3.8.0
72bb5dcdc0cb0 passky-desktop: drop
9fd203c1f153e electron_28-bin: drop
547f592154d96 electron_27-bin: drop
621c33eaf59f4 micropad: drop
87d6708fd4f43 logseq: remove
5381cd31d200c electron_24-bin: drop
3425cada70628 open-webui: 0.5.18 -> 0.5.19
75507ec6f8c49 xrsh: init at 0-unstable-2025-02-28
59e3cd3bfcd5e firefox-{beta,devedition}-bin: 134.0b10 -> 137.0b1 (#387259)
aca6eaec1087a rcu: 2025.001r -> 2025.001s
e47bbc1f7cf0b firefox-{beta,devedition}-bin: 134.0b10 -> 137.0b1
00b3325cc45a0 python313Packages.aiohttp-middlewares: relax async-timeout
175f6007d1764 python313Packages.pyfnip: switch to SRI hash
2cbf1225ed56a python313Packages.pyfnip: refactor
d35993a5ff6c4 tahoe-lafs: unstable-2021-07-09 -> 1.20.0
4f433e90f2888 python313Packages.pyfnip: add standard-telnetlib for later Python releases
89eed45883c80 claude-code: 0.2.29 -> 0.2.30
0b19dd9eec022 plausible: 2.1.4 -> 2.1.5 (#382345)
bc5cd00d70528 python312Packages.energyflow: disable failing tests on darwin
444f2c742b7ac python313Packages.django-js-asset: 3.1 -> 3.1.2
248e19dc582ae gallia: relax httpx and msgspec (#387224)
200f6f16f1eec ssdfs-utils: 4.49 -> 4.50
b3d01b2664bdf backblaze-b2: 4.3.0 -> 4.3.1
4855ffa511a07 python313Packages.dissect: add dissect-fve
dbcda979079fc noto-fonts: 2025.02.01 -> 2025.03.01
0b9a12f8884cc python313Packages.dissect-fve: init at 4.0
31c96607aa5f1 floorp: 11.23.1 -> 11.24.0
a3cd526f08839 ncdc: 1.24.1 -> 1.25
7b88999fb876b tideways-cli: 1.2.6 -> 1.2.8
370bcffd35b6b nixos/networkd-dispatcher: added missing enum value "enslaved" to option "onState" (#382574)
2f213e2862832 mariadb-galera: 26.4.21 -> 26.4.22 (#386479)
675bf5f905ad1 home-assistant-custom-lovelace-modules.mushroom: 4.3.0 -> 4.3.1 (#386235)
b5291ac53087f python313Packages.acquire: disable failing tests
35a219fc36ed5 vimPlugins.orgmode: fix tree-sitter-org error (#387235)
40f194271e81a yek: 0.16.0 -> 0.21.0
9534136002a13 python313Packages.dissect-target: disable failing tests
581106f28a964 python312Packages.collections-extended: fix for python>=3.11
aac2a3c78c0e7 python313Packages.dissect-volume: disable failing test
e7de44d62a13b nesting: init at 0.3.0 (#338281)
321281bb0c940 nesting: init at 0.3.0
fdad224e14d07 smartgithg: rename to "smartgit"
9b919690237da smartgithg: 24.1.1 -> 24.1.2
2add8a032e908 smartgithg: fix description, add long description
ceb13880d3273 cero: disable tests
91943aaa5ff38 vimPlugins.orgmode: fix tree-sitter-org error
9dd5d4cc68fdc python312Packages.llama-index: relax llama-index-multi-modal-llms-openai
fa376cf5a574a rustdesk 1.3.1 -> 1.3.8
f122272670a3d udpspeeder: init at 20230206.0 (#385260)
2ad000b540399 cwltool: 3.1.20241217163858 -> 3.1.20250110105449
9ae8c25fb4698 python313Packages.whispers: adjust inputs
6a05321acb39c signal-desktop: 7.42.0 -> 7.44.0; signal-desktop(darwin): 7.42.0 -> 7.44.0 (#383770)
349333d269ec2 build-support/php: refactor build scripts (#386757)
4007017348328 webex: 44.10.2.31237 -> 45.2.0.31846
4c607a0624608 python312Packages.llama-index-readers-file: 0.4.5 -> 0.4.6
757acf824f291 python312Packages.llama-index-multi-modal-llms-openai: 0.4.3 -> 0.5.0
94a8c4a695945 python312Packages.llama-index-llms-openai-like: 0.3.3 -> 0.3.4
df6e66512e9fc python312Packages.llama-index-llms-openai: 0.3.20 -> 0.3.25
3eeaef10affdc python312Packages.llama-index-indices-managed-llama-cloud: 0.6.4 -> 0.6.8
08c1549a5e82b python312Packages.llama-index-cli: 0.4.0 -> 0.4.1
bbe36bf5b8e3e python312Packages.llama-index-agent-openai: 0.4.3 -> 0.4.6
7a801c5f3e388 python312Packages.llama-index-core: 0.12.17.post2 -> 0.12.22.post1
a05a39a234a37 openttd: Fix packaging issues (#385790)
80b2d7fe6b263 libgeotiff: 1.7.3 -> 1.7.4 (#387159)
e1aab5f7e2805 python313Packages.aiogithubapi: relax async-timeout
2b254336c216b python313Packages.cwl-utils: 0.36 -> 0.37
a6f4ddb593b18 python313Packages.schema-salad: 8.8.20241206093842 -> 8.8.20250205075315
d073485e69d13 gallia: relax httpx and msgspec
18aace6d4a9f8 python313Packages.boto3-stubs: 1.37.5 -> 1.37.6
fd884b71de347 python312Packages.mypy-boto3-rds: 1.37.0 -> 1.37.6
d7eb2e48895df python312Packages.lightning-utilities: 0.13.0 -> 0.13.1 (#387110)
c86c3a9ae0a26 python312Packages.mypy-boto3-iotsitewise: 1.37.0 -> 1.37.6
bddcd79a8f611 python312Packages.mypy-boto3-elasticache: 1.37.0 -> 1.37.6
9ebdac572e83a monado: set VIT_SYSTEM_LIBRARY_PATH so that libbasalt.so can be found (#387175)
41c55b098770b wtfutil: rename wtf to wtfutil (#386150)
cb2884204ac0f kdash: 0.6.1 -> 0.6.2
748fdcf7ee56f python313Packages.kasa-crypt: 0.5.0 -> 0.6.1
41d075375d9ad python313Packages.pybrowsers: 0.6.0 -> 0.7.0
0c62d387cf312 python313Packages.asyncwhois: 1.1.9 -> 1.1.10
bf56ca9a8e623 python313Packages.asn1: 2.8.0 -> 3.0.0
905905fffef5d python313Packages.deebot-client: 12.2.0 -> 12.3.1
d5fb48e63fa3b python313Packages.discogs-client: 2.7.1 -> 2.8
8833b8d6619fd python312Packages.guidata: skip crashing tests on darwin (#387050)
492ad4f39790b ggshield: 1.36.0 -> 1.37.0
b2ffb775df90c libretro.bsnes: 0-unstable-2025-01-17 -> 0-unstable-2025-02-28
96d417a49fe30 cnspec: 11.43.0 -> 11.44.0
6413e50dfe946 go_1_24: 1.24.0 -> 1.24.1
3563c058f4c36 cfripper: 1.16.0 -> 1.17.0
4ed4d3138f1c0 wasmtime: 30.0.0 -> 30.0.2
6969d5057da01 libretro.parallel-n64: 0-unstable-2025-02-06 -> 0-unstable-2025-03-02
d64a233e4cfbf emacs: enable __structuredAttrs by default in elisp build helpers
f698c4dd15488 emacs: support __structuredAttrs in elisp build helpers
c6fef55616237 emacs.pkgs.{pdf-tools,auto-complete-clang-async}: use env attr
4b1c49fedec45 emacs.pkgs.irony: respect old.env in overrideAttrs
9c567e10d87ef libretro.nestopia: 0-unstable-2025-01-19 -> 0-unstable-2025-02-22
3761a22c768ba emacs: patch mailcap.el to find pkgs.mailcap
eb833bebe3779 bacon: install shell completions
67973c62e5005 namespace-cli: 0.0.403 -> 0.0.405
d325772e9e721 pkgs: write down that meta should be last
9b301c5b1ba08 wtfutil: fix wtfutil --version
f6a0f156dfcac wtfutil: add xiaoxiangmoe as maintainer
6cbe4bd3ade90 wtfutil: rename wtf to wtfutil
293f97544cc49 tor-browser: 14.0.6 -> 14.0.7
783dff1c6f8e2 monado: set VIT_SYSTEM_LIBRARY_PATH so that libbasalt.so can be found
b7fb205edeaba udpspeeder: init at 20230206.0
3e30957ac42d6 vimix-cursor-theme: remove
3ba95d5d51155 alpaca: 5.0.5 -> 5.0.6
3c7045c28ab15 openttd: Fix packaging issues
ae7856907e300 haproxy: 3.1.4 -> 3.1.5
96c2125a8c56a zig: 0.13 -> 0.14
3325c6af40558 cloudlist: 1.2.0 -> 1.2.1
5af44182f87a6 windsend-rs: init at 1.4.9 (#383919)
faed197f05a69 waydroid-helper: init at 0.1.2 (#378653)
e54cdfa8fef46 unity-test:init at 2.61 (#381665)
3ed153068431f ha-mqtt-discoverable-cli: 0.16.4.1 -> 0.18.0
d295ab9fc6da1 python313Packages.ha-mqtt-discoverable: 0.16.4 -> 0.18.0
7bffbf3c4c89d nixos/nats: add option validateConfig (#387048)
eae9c56b072b4 python313Packages.pyfronius: 0.7.3 -> 0.7.5
d471c11dd1585 simdutf: 6.2.0 -> 6.2.1 (#387108)
593e449cb3125 erigon: 2.61.1 -> 2.61.2 (#387140)
c4fccc20f02e7 cargo-bundle-licenses: 3.0.0 -> 3.1.0
4f7fc6dfdfaeb nixos/glitchtip: init module (#386013)
a7bb3d664844d libgeotiff: 1.7.3 -> 1.7.4
48a038e76ef1b erigon: 2.61.1 -> 2.61.2
d1edd1d7e7cff gitea: 1.23.4 -> 1.23.5
1eeeaa0843436 teams: Update Nix formatting team (#387085)
8c742268023d8 libmsquic: 2.4.7 -> 2.4.8 (#386897)
65340e16cb7fb goldendict-ng: 24.09.1 -> 25.02.0 (#386005)
afe49b7b2b43f remotebox: 3.4 -> 3.5 (#385789)
9f7b96dc56fac termdown: 1.17.0 -> 1.18.0 (#386483)
dd87a30c58b96 nixos/tests/glitchtip: init
5da710d274e73 nixos/glitchtip: init module
f4381af036181 glitchtip: init at 4.2.5
e1c3cec88cc35 domoticz: fix build on GCC 14, Boost 1.87 (#387121)
452d96c4a5114 saunafs: 4.7.0 -> 4.8.0 (#387106)
55ee819621878 termius: 9.14.0 -> 9.15.2 (#386509)
ee6ad1aa5d895 python313Packages.torch-geometric: disable tests failing on python 3.13 (#387027)
3aa5c3e43acd1 yoshimi: 2.3.3.2 -> 2.3.3.3 (#386527)
b208c22be6a35 python312Packages.lightning-utilities: 0.13.0 -> 0.13.1
a83db58518c56 python313Packages.aiodocker: fix build (#386548)
83ca949ef7c48 tpmmanager: 0.8.1 -> 0.9.0 (#386676)
45693de57e779 toppler: modernize derivation
8468dc8ec1eff flix: 0.57.1 -> 0.58.0 (#386609)
2c7baaaae909d python312Packages.mmengine: 0.10.6 -> 0.10.7 (#387004)
1afb093ed66dc phpPackages.box: 4.6.2 -> 4.6.6, fix `installCheck`
2692fdf56f3a2 libcxxrt: 4.0.10-unstable-2024-10-30 -> 4.0.10-unstable-2025-02-25
14518fc5aaa95 python313Packages.mrsqm: add updateScript
23e7c43f51f4c klog-rs: 0.4.0 -> 0.4.1 (#386829)
7c5dc3f901086 bochs: 2.8 -> 3.0 (#386872)
949443f222de4 nix-heuristic-gc: init at 0.6.0 (#386861)
ae2b4fb7b5e53 darwin.cf-private: remove alias
a58a0bf4eeecb tailscale: 1.80.2 -> 1.80.3 (#387107)
19ac89803d795 serial-studio: enable on darwin
c0999f435e35b phpdocumentor: 3.6.0 -> 3.7.1
64b246657df86 build-support/php: enable support for `dontCheckForBrokenSymlinks` set to `true` by default
489ac4817f5ed build-support/php: refactor build scripts
1de8208e4a542 laravel: update hash
6e8e6c413d7a1 robo: update hash, add `installCheck`
66d96a76b590e phel: update hash, add `installCheck`
e7304f587a2d6 paratest: 7.6.0 -> 7.8.2
7e70611b1ed00 phpPackages.phpinsights: update hash, add `installCheck`
be449e7e40b73 fish-lsp: 1.0.8-1 -> 1.0.8-4 (#385076)
c1ad7af574799 airwindows: 0-unstable-2025-02-16 -> 0-unstable-2025-03-02
fe92c2a63a461 domoticz: modernize derivation
b6044982352ea domoticz: fix build on GCC 14, Boost 1.87
ce22aab43ebf0 toppler: move to by-name tree
5a441b7836bdb percona-server_8_0: 8.0.40-31 -> 8.0.41-32 (#386743)
a76d0ea42eb6a tint2: add versionCheckHook
a7892c1ddebc6 fanficfare: 4.42.0 -> 4.43.0
138abab480251 nixos/restic: unlock database before doing pruning
7c9c34241901c nixos/restic: suggest to cleanup cache
573b14b450ca8 tint2: minor cleanup
b560cfb45652b tint2: fix build
3b33c51443fcf vimPlugins.mini-test: build from lua package
e739ebc3c7e55 simple64-netplay-server: 2025.02.3 -> 2025.03.1
8cf288aea9bef vscode-extensions.ms-toolsai.jupyter: 2025.1.0 -> 2025.2.0 (#387113)
4063f1e23d12e vscode-extensions.ms-toolsai.jupyter: 2025.1.0 -> 2025.2.0
c597c809b30f1 timer: 1.4.5 -> 1.4.6
599808056ec5e tailscale: 1.80.2 -> 1.80.3
3e3fe7b6b129d toppler: add gcc14 patch
ee164ade862f2 saunafs: 4.7.0 -> 4.8.0
9c72c1c667cb2 python312Packages.dvc: refactor (#386940)
23df782d524df simdutf: 6.2.0 -> 6.2.1
6991956957605 routinator: 0.14.1 -> 0.14.2
3035099d790b2 dotnetCorePackages.dotnet_10.vmr: init at 10.0.0-preview.1
b9fbbaca5e477 signalbackup-tools: 20250303-2 -> 20250304-1 (#387068)
6f61ef8970028 tradingview: 2.9.3 -> 2.9.6 (#386907)
2970ff278228f firefox-bin: add linux-aarch64 to mozillaPlatfoms, update.nix, and release_sources.nix (#318937)
3847fafbbc866 sigal: 2.4 -> 2.5 (#386901)
8d78805dfd933 sbt-with-scala-native: 1.10.7 -> 1.10.9 (#386904)
092bc3e66ff2b firefox-bin: release_sources: add linux-aarch64
51614792659c1 sbt: 1.10.7 -> 1.10.9 (#386905)
e5aa62a44bbcd firefox-bin: update.nix: also update linux-aarch64 now
9b617fcc72eff firefox-bin: add linux-aarch64 to mozillaPlatforms
4a33bdacb9f0a star-history: 1.0.26 -> 1.0.27 (#386908)
5c22fc7391ce3 fish-lsp: 1.0.8-1 -> 1.0.8-4
5c1672fd4cfe6 python312Packages.rich-argparse: 1.6.0 -> 1.7.0 (#386920)
8a29146974f1b protoc-gen-swift: 1.28.2 -> 1.29.0
457c1f17c3703 python312Packages.pyfibaro: 0.8.1 -> 0.8.2 (#386936)
c852432c16139 hifile: 0.9.9.18 -> 0.9.9.19
0bb4f3d745faf Firefox: 135.0.1 -> 136.0; 128.7.0esr -> 128.8.0esr (#386854)
492420d2c33b3 dissent: 0.0.31 -> 0.0.32 (#386952)
6a23adeb223b1 qscintilla: fix broken symlinks for qt6 (#386982)
cdd87aa77e6ab ssh-mitm: 5.0.0 -> 5.0.1 (#386921)
f504128d7f4a3 vunnel: 0.30.0 -> 0.31.0 (#386922)
bb1f1aa699071 reptor: 0.26 -> 0.27 (#386923)
d3b863160bbac renderdoc: 1.36 -> 1.37 (#387055)
d7803f9d24a82 python312Packages.mypy-boto3-*: updates (#386981)
564103431bed1 photofield: 0.17.1 -> 0.18.0 (#387056)
8fbbd75d8ba1d python312Packages.lightning-utilities: 0.12.0 -> 0.13.0 (#387045)
5015b98b1209b python312Packages.skytemple-ssb-emulator: 1.8.0 -> 1.8.1 (#386984)
56f15a2535ceb fingerprintx: 1.1.14 -> 1.1.15 (#387074)
93aeac7dc2813 istioctl: 1.24.3 -> 1.25.0 (#386938)
5ea1c50b37e0f python313Packages.zamg: add missing input (#386942)
bb1cdb62956cf python312Packages.pygithub: 2.6.0 -> 2.6.1 (#386950)
0fad4ba61f8a2 rasm: 2.3.4 -> 2.3.5 (#386975)
2e79e89b159f0 python312Packages.optree: 0.14.0 -> 0.14.1 (#386994)
e59595c3bba49 vscode-extensions.github.codespaces: 1.16.9 -> 1.17.3 (#377846)
7c144d3fb8862 awscli2: 2.24.7 -> 2.24.16 (#386909)
43b5d6cf667af python312Packages.deal: 4.24.4 -> 4.24.5 (#386990)
d2994afd9eeab python313Packages.pycfmodel: 1.0.0 -> 1.0.1 (#386979)
79d2e9ac71954 upcloud-cli: 3.14.0 -> 3.15.0
d38624ef952f4 hddfancontrol: 1.5.1->2.0.1 (#387029)
5e5509977d8b2 vscode-extensions.ms-python.python: 2025.1.2025021102 -> 2025.1.2025022501 (#387084)
9fe1e739a610f vscode-extensions.streetsidesoftware.code-spell-checker: 4.0.21 -> 4.0.41 (#387088)
bbf5421ba974a pkgs-lib.formats.xml: Fix withHeader parameter (#387059)
b2d1179245a95 golangci-lint: 1.64.5 -> 1.64.6
7c5ef35cc4e88 tailscale: use buildGoModule and enable tests (#386492)
172e551c5ae7d vscode-extensions.streetsidesoftware.code-spell-checker: 4.0.21 -> 4.0.41
45782a83b73a3 nixosTests.hddfancontrol: remove
6a791193b65a2 nixos/hddfancontrol: support v2 argument format
ee708daec7c45 kubernetes-helmPlugins.helm-dt: 0.4.3 -> 0.4.4
0f36a3d7187af elasticsearch-curator: 8.0.17 -> 8.0.18
654972b7328bb teams: Update Nix formatting team
17ce56fbf0344 vscode-extensions.ms-python.python: 2025.1.2025021102 -> 2025.1.2025022501
9ae53ffe5d3ab nixfmt-tree: init (#384857)
fe274fe5cda9c adguardhome: 0.107.56 -> 0.107.57
ed11e43e3db3d vscode-extensions.vscodevim.vim: 1.26.1 -> 1.29.0
5d81e7cc681b8 vscode-extensions.asciidoctor.asciidoctor-vscode: 2.8.9 -> 3.4.2
2c0585fc38143 vscode-extensions.llvm-vs-code-extensions.vscode-clangd: 0.1.24 -> 0.1.33
aa6af5dff355b vscode-extensions.eamodio.gitlens: 16.0.5 -> 16.3.2
89738a5427ad1 go-passbolt-cli: 0.3.1 -> 0.3.2 (#387078)
aa8fe453981f3 hddfancontrol: 1.5.1->2.0.1
5db66035980fe electron-bin: don't wrap inside libexec (#386808)
536c30178136a qt5.qtwebengine: fix missing GN dependency (#386846)
932c76111ec08 cargo-clean-recursive: init at 1.0.0
2866687c1941f maintainers: added qubic
43b4c23be4a2b qt5.qtwebengine: fix missing GN dependency
8cfff8cba9ce0 electron-bin: don't wrap inside libexec
afc2613411fb2 bs-manager: set ELECTRON_FORCE_IS_PACKAGED
d0dfd3b3f9282 python312Packages.plotpy: skip crashing tests on darwin
47310c4622262 tauon: update changelog URL
8bd9f1d37344e tauon: add DB migration warning to release notes
d37a6a671f931 go-passbolt-cli: 0.3.1 -> 0.3.2
c2fd31d740d20 fingerprintx: 1.1.14 -> 1.1.15
0e161e41dfa12 espup: 0.14.0 -> 0.14.1
7611aea8d5db6 grafana-alloy: 1.6.1 -> 1.7.1 (#386991)
ba906110f9b24 kstars: downgrade eigen (#386939)
9e7fd54b0ea12 dcrwallet: 2.0.5 -> 2.0.6
c4c761db63688 cnspec: 11.43.0 -> 11.44.0
0773546b46038 sdl3-image: init at 3.2.4
27a33c4fe1c47 ente-desktop: fix tray icon (#387042)
8ee076f188862 pflogsumm: move to pkgs/by-name
f973370df2434 pfixtools: move to pkgs/by-name
5d35ce9b838d8 postfix: move to pkgs/by-name
7736c471ef710 postfix: 3.9.3 -> 3.10.1
b3af8c84e62b4 rofi-network-manager: init at 2024-09-03 (#379331)
9a18fdb009f23 signalbackup-tools: 20250303-2 -> 20250304-1
81b5c727ae45e python3Packages.uwsgi-chunked: init at 0.1.8
e82f1f110a6b5 python3Packages.symbolic: init at 10.2.1
674c6976c9a7b desktopToDarwinBundle: use ARGB format (#386434)
d461687ece71f garnet: 1.0.57 -> 1.0.58
ecb2fc13e7c83 python312Packages.shiny: 1.2.1 -> 1.3.0 (#387041)
f104eb707b3d5 maintainers: add evythedemon
874a6d7d36638 phpPackages.psysh: update hash, add `installCheck`
47f6b52a45667 phpPackages.phing: update hash, add `installCheck`
2e4faebd4d9e4 deployer: 7.4.0 -> 7.5.12-unstable-2025-03-02
a3c502b6c9957 python3Packages.django-sql-utils: init at 0.7.0
4f8cf45715452 nixos/inadyn: fix defaultText (#384773)
7917a509fd301 miniupnpc: 2.2.8 -> 2.3.1 (#385384)
07bcf3e909f5d pkgs-lib.formats.xml: Fix withHeader parameter
e73ecef3d28d4 nixos/nvidia: add a read only enabled option (#386728)
a9a42a6ca6212 kiwix-tools: 3.7.0 -> 3.7.0-unstable-2024-12-21 to fix build kiwix-14.0 (#387044)
38ead936942e9 ArchiSteamFarm: 6.1.2.3 -> 6.1.3.3 (#386997)
7398b0d38ddc7 photofield: 0.17.1 -> 0.18.0
37309b733105e zx: 8.3.0 -> 8.4.0 (#387023)
ef01b05b9eb6c firefox-esr-128-unwrapped: 128.7.0esr -> 128.8.0esr
8645a5b39b3bb firefox-bin-unwrapped: 135.0.1 -> 136.0
e1a870dbedf26 firefox-unwrapped: 135.0.1 -> 136.0
f69df6fd85077 renderdoc: 1.36 -> 1.37
b29d5d1d41538 vscode-extensions.arrterian.nix-env-selector: 1.0.10 -> 1.0.12 (#387036)
6f4685c87b30e fish: 3.7.1 -> 4.0 (#367229)
04e9a8e5ba8bd python312Packages.guidata: skip crashing tests on darwin
70ec4179988bb proton-pass: 1.29.3 -> 1.29.5 (#386890)
e68a96fbea134 cinny{,-desktop}: 4.3.2 -> 4.5.0 (#384503)
ec0d31d375f8f swayosd: 0.1.0 -> 0.2.0
c5c6c1830640f python312Packages.lightning-utilities: 0.12.0 -> 0.13.0
417b73156fe6f gitu: 0.28.1 -> 0.28.2 (#386953)
0ae7ec758d819 nixfmt-rfc-style: 2024-12-04 -> 2025-03-03
374258629f5b9 nixosTests.lomiri-system-settings: Switch to runTest (#386999)
5cdf27419298b python312Packages.shiny: 1.2.1 -> 1.3.0
c2859e8a71949 vscode-extensions.jnoortheen.nix-ide: 0.3.5 -> 0.4.12
4ccec684a6f50 kiwix-tools: 3.7.0 -> 3.7.0-unstable-2024-12-21 to fix build against kiwix-14.0
3523d821b5f0c vscode-extensions.asvetliakov.vscode-neovim: 1.18.14 -> 1.18.17
d19a7e68f8944 claude-code: 0.2.27 -> 0.2.29 (#386512)
831e1260de062 solanum: 0-unstable-2025-01-29 -> 0-unstable-2025-02-25 (#383436)
053fc09de51e6 python312Packages.google-cloud-bigtable: 2.28.1 -> 2.29.0
efda6243f5f92 nextcloud31Packages.apps.recognize: add hash for nextcloud 31
85bde3039f301 vscode-extensions.arrterian.nix-env-selector: 1.0.10 -> 1.0.12
bad44b18be845 solanum: 0-unstable-2025-01-29 -> 0-unstable-2025-02-25
8180a3b752607 trunk: 0.21.7 -> 0.21.8
9145cb8b8844c svg2pdf: 0.12.0 -> 0.13.0 (#387033)
a429051ff8172 python3Packages.qpsolvers: add proxsuite, python3Packages.piqp: fix on darwin (#374657)
43b6845ba7ab4 svg2pdf: 0.12.0 -> 0.13.0
9944ae16313c5 nu_scripts: 0-unstable-2025-02-17 -> 0-unstable-2025-02-28
c6488c08a8e77 vmTools: mount `/dev` when creating a VM image from RPM-based distro (#350925)
ef07b11bb48fe sourcegit: 2025.04 -> 2025.07 (#386665)
95a09348b12b0 sdl3: 3.2.2 -> 3.2.6, fix version regex (#383127)
eb555bb4ad911 python313Packages.torch-geometric: disable tests failing on python 3.13
036500eb05f60 klipper: 0.12.0-unstable-2025-02-02 -> 0.12.0-unstable-2025-02-28
75725b86fe7f1 basedpyright: 1.28.0 -> 1.28.1 (#386328)
adf2496b79725 vmTools: add Ubuntu 24.04 Noble (amd64) (#386888)
54b00bec76d29 eas-cli: replace yarnInstallHook to fix symlink and missing cli features (#382261)
5cb517d3dad98 tt-rss: 0-unstable-2025-02-08 -> 0-unstable-2025-02-26 (#386587)
f52dcb53f13fb azure-cli: 2.69.0 -> 2.70.0 (#386935)
cc3b4b394ce84 cinny-desktop: 4.3.2 -> 4.5.0
edf89ef18f2e0 cinny: 4.3.2 -> 4.5.0
7dc6352e3a761 zx: 8.3.0 -> 8.4.0
b7607566baa43 pikchr: 0-unstable-2024-02-12 -> 0-unstable-2025-02-28
3b15e29ea4857 ladybird: 0-unstable-2025-02-04 -> 0-unstable-2025-03-04
328e9b2807a83 nixosTests.nomad: Use runTest (#386866)
242b16a7ddef6 runInLinuxVM: apply Qemu's vCPU limit (#386224)
ee2c1b83521ea nixos/osquery: fix database_path + logger_path opts per systemd docs (#370003)
5cf285a943c04 notmuch: fix build with emacs30 (#386738)
17bc9f505bbb3 go-dnscollector: 1.4.0 -> 1.5.0
c42a61d3837b2 linuxPackages.facetimehd: 0.6.8.2 -> 0.6.13
f0d91fd0d0166 kubectl-gadget: 0.37.0 -> 0.38.0 (#386831)
460f1807af0ae git-sim: fix pyav manim breakage (#386603)
597de108e7a15 python313Packages.teslajsonpy: 3.12.3 -> 3.13.0 (#386924)
8e76045f3ed18 python313Packages.dvc-gs: refactor (#386925)
2be71d2143060 python313Packages.volkszaehler: 0.5.0 -> 0.5.2 (#386946)
96d4a0c2adcaf python313Packages.pysolcast: relax isodate (#386948)
be704ade7ca8a python312Packages.nicegui: 2.11.1 -> 2.12.1 (#386973)
30e85bdff4e75 python312Packages.mmengine: 0.10.6 -> 0.10.7
d7af142eb1686 exfatprogs: 1.2.7 -> 1.2.8
daa078a43b58b temporal-cli: 1.2.0 -> 1.3.0 (#386976)
c9ca330b58db9 lunacy: 10.11 -> 11.0
11ec9fa1a0a84 adwaita-fonts: Remove unused dependencies (#386737)
bc8298dd8ec4d Petsc: 3.21.4 -> 3.22.4 (#386732)
91be6b3c8ff6a nixosTests.lomiri-system-settings: Switch to runTest
2581b064a1bfd aider-chat: v0.74.1 -> v0.75.1 (#385795)
9b70666ac883b supabase-cli: 2.15.0 -> 2.17.0 (#386748)
6c0e95a219d08 ArchiSteamFarm: 6.1.2.3 -> 6.1.3.3
a5674b00ed645 turso-cli: 0.98.0 -> 0.98.1 (#386903)
555734323a9fa anytype: build against electron ABI (#385029)
54040bae8e666 skypeforlinux: 8.136.0.203 -> 8.137.0.425 (#386986)
13138422bced9 uv: 0.6.3 -> 0.6.4 (#386978)
c1f0ad5b9566f python312Packages.deal: 4.24.4 -> 4.24.5
532a284129805 alire: 2.0.2 → 2.1.0
27798c240c102 python312Packages.pytensor: 2.28.1 -> 2.28.2 (#386954)
e0ac5194ab67c nixos/osquery: revert test for database_path
4e19ef3e7a81d lightningstream: init at 0.4.3 (#385065)
4422dc0c6270b grafana-alloy: 1.6.1 -> 1.7.1
f5167764fc185 tradingview: 2.9.3 -> 2.9.6
ee25b523345f0 pipenv-poetry-migrate: 0.6.1 -> 0.6.2 (#386421)
6e23095df7939 lightningstream: init at 0.4.3
333122915b411 grafana-alloy: fix updateScript selecting the wrong tag
f42dfe083de17 wasm-tools: 1.225.0 -> 1.226.0
33b98e8ac6d6e gajim: 2.0.0 -> 2.0.1 (#386929)
e4b3e4454d679 skypeforlinux: 8.136.0.203 -> 8.137.0.425
e6dd68de1792d pgadmin: 9.0 -> 9.1 (#386945)
c5cd965e341bb python312Packages.skytemple-ssb-emulator: 1.8.0 -> 1.8.1
26549c9320279 python312Packages.optree: 0.14.0 -> 0.14.1
2bada39937c83 opencpn: use wrapGAppsHook3 (#386346)
727268c719e32 python313Packages.boto3-stubs: 1.37.2 -> 1.37.5
c956e68f619c7 python312Packages.mypy-boto3-transcribe: 1.37.0 -> 1.37.5
390069ef39497 python312Packages.mypy-boto3-sagemaker: 1.37.3 -> 1.37.5
5b3a0fec09276 python312Packages.mypy-boto3-rum: 1.37.0 -> 1.37.5
0b32cf1ebaba8 heimdall-proxy: 0.15.7 -> 0.15.8 (#386724)
052e3dbc35782 python312Packages.mypy-boto3-ec2: 1.37.2 -> 1.37.5
4fafc85e26bb8 python312Packages.mypy-boto3-cognito-idp: 1.37.0 -> 1.37.5
823ae72d3324c kube-bench: 0.10.0 -> 0.10.2 (#386958)
744a9430aad42 granted: 0.37.0 -> 0.38.0 (#386691)
0aa3b417d2d88 python313Packages.pycfmodel: 1.0.0 -> 1.0.1
01757f8a6bbe9 multimon-ng: 1.4.0 -> 1.4.1 (#386955)
d93c197b31bf4 uv: 0.6.3 -> 0.6.4
25e851d0887cb pest: 3.3.1 -> 3.7.4
5387f9cc48c93 phpPackages.php-cs-fixer: 3.67.0 -> 3.70.1
e1b70a72f1f5c temporal-cli: 1.2.0 -> 1.3.0
8cb376fc8d97f rasm: 2.3.4 -> 2.3.5
80703bf39c653 python312Packages.nicegui: 2.11.1 -> 2.12.1
1df119a49c62e nixos/doc/rl-2505: mention Nezha update
1235bed1b5018 nixos/nezha-agent: refactor
6b79819539eb3 nezha-agent: 0.20.5 -> 1.9.2
91ea1cdcd1a1b nezha: 0.20.3 -> 1.9.5
4db3723321fdb librewolf: 135.0-1 -> 135.0.1-1 (#386426)
d5d7b7f3c13d3 televido: 0.4.0 -> 0.5.0 (#386469)
8cecb26b0dc43 tidgi: 0.9.6 -> 0.12.1 (#386554)
92529f93096ce tortoisehg: 6.6.3 -> 6.9 (#386673)
e13f116b17183 sshx, sshx-server: 0.3.1 -> 0.4.1 (#386139)
9923cd2a0ebb6 qscintilla: fix broken symlinks for qt6
601f4bf38bd14 odoo: 18.0.20241010 -> 18.0.20250213 (#381818)
d784db18f2df7 nixos/osquery: set default database_path and logger_path
2c636ad0caffc gnome-commander: 1.18.1-unstable-2024-10-18 -> 1.18.2
ca64e3b92ef63 kstars: downgrade eigen
3969161bed913 geckodriver: 0.35.0 -> 0.36.0
1e1b847013634 python312Packages.aiolifx-themes: 0.6.8 -> 0.6.9
80ed347099753 python312Packages.chess: 1.11.1 -> 1.11.2
d39eee5271067 lib.types.functionTo: preserve functionArgs (#386208)
a18088ecf46bc kime: fix build (#386911)
106f5e5f86bdc plausible: 2.1.4 -> 2.1.5
9ce2c657ebb75 plausible: simplify update script
7de8347157c1d kube-bench: 0.10.0 -> 0.10.2
654f07565264c gitu: 0.28.1 -> 0.28.2
bad5163210c20 multimon-ng: 1.4.0 -> 1.4.1
d77c2bf8da8ad python312Packages.pytensor: 2.28.1 -> 2.28.2
ec45368e950c4 python312Packages.pytensor: re-enable working tests
5c328dc4f5408 dissent: 0.0.31 -> 0.0.32
5aeeed52dfcf1 qbittorrent-enhanced: 5.0.3.10 -> 5.0.4.10 (#385847)
c87e3597dfe7b python313Packages.django-cachalot: fix build (#386545)
0182a04b2d0db python312Packages.celery-redbeat: 2.2.0 -> 2.3.2 (#385483)
e80ba09f0aa6d ad: 0.2.0 -> 0.3.1 (#385388)
fd08a22f9f94c python313Packages.pysolcast: relax isodate
8bc3ee63961bd dependency-track: stop bundling frontend in jar (#386408)
86a906f92437f python313Packages.volkszaehler: 0.5.0 -> 0.5.2
1b36d2850fd0d zed-editor: 0.175.5 -> 0.176.1 (#386906)
a7d5b23d2984c armTrustedFirmware: specify CC and LD explicitly (#386941)
39b0f3a98bc82 vscode-extensions.streetsidesoftware.code-spell-checker-german: init at 2.3.2 (#386739)
891a19a1d8db6 open-webui: add pyodide (#386756)
2e820d0ff65e2 azure-cli-extensions.stack-hci-vm: 1.5.0 -> 1.6.5
620444d86f84b azure-cli-extensions.durabletask: 1.0.0b2 -> 1.0.0b3
dd02caf90e63f azure-cli-extensions.cosmosdb-preview: 1.2.0b1 -> 1.2.0
a6deba61ec2c9 azure-cli-extensions.workloads: 1.1.0b3 -> 1.1.0
61c1feaa2e284 azure-cli-extensions.image-copy-extension: 1.0.0 -> 1.0.1
9dbcf35f51b2d azure-cli-extensions.datamigration: 1.0.0b3 -> 1.0.0b4
ff287eba8cd4b azure-cli-extensions.customlocation: update url
e835570257ead azure-cli-extensions.portal: 0.1.3 -> 1.0.0b1
5deb4c3fa41d7 azure-cli-extensions.aks-preview: 13.0.0b5 -> 13.0.0b8
27735c30748af azure-cli-extensions.managednetworkfabric: 7.0.0 -> 7.1.0
dca9738aac66d azure-cli: 2.69.0 -> 2.70.0
50e6e66a04e27 python3Packages.azure-mgmt-storage: 21.2.1 -> 22.1.1
5dfd51e189def python3Packages.azure-synapse-artifact: 0.19.0 -> 0.20.0
2c5edad712b9c python3Packages.py-deiviceid: init at 0.1.0
be6800bc560d4 managarr: 0.4.2 -> 0.5.1 (#386096)
4792f0ff5dba1 python312Packages.pygithub: 2.6.0 -> 2.6.1
a0fce0a65d8e9 python313Packages.volkszaehler: refactor
c4fd2ab9e61b7 python313Packages.zamg: add missing input
335757b406848 tracelinks: 1.0.1 -> 1.0.2
78c6d58d0f47c cura-appimage: 5.9.0 -> 5.9.1 (#386520)
27c8a282f9f08 vscode-extensions.streetsidesoftware.code-spell-checker-german: init at 2.3.2
41800490c44f1 maintainers: add koschi13
12a83c209e67c armTrustedFirmware: specify CC and LD explicitly
13a5009ea8efb python312Packages.dvc: add oss
9b8d290ab548d python312Packages.dvc-oss: init at 3.0.0
c9bb3ce592f90 python312Packages.dvc: adjust inputs
385d1c94570dd twitch-dl: 2.10.0 -> 2.11.0 (#386849)
47076cf5af6eb python313Packages.wfuzz: fix build (#386551)
aa5193da7c7fb python313Packages.web: fix build (#386540)
07d4199f94ca8 ccextractor: fix build (#386537)
d7dc48f3d1665 llvm: also apply GOTOffsetMap to versions 15 and 16 (#384367)
071c6e6ccee5e python312Packages.dvc: add webhdfs and webhdfs_kerberos
71dc2f1520cef python312Packages.dvc-webhdfs: init at 3.1.0
831f024b35893 istioctl: 1.24.3 -> 1.25.0
72bccb2960235 fantomas: 7.0.0 -> 7.0.1 (#386798)
8a8d1122eeeb4 angular-language-server: 19.1.0 -> 19.2.0 (#386928)
2315b09db5cee nickel: mark as broken on aarch64-linux, cleanup (#386758)
8fa00eedbc163 python312Packages.dvc: add webdav
c493d93f9eeaa python313Packages.dvc-webdav: init at 3.0.0
8de97c122239d libfive: revert eigen to fix build (#386914)
32424042adb8e python312Packages.pyfibaro: 0.8.1 -> 0.8.2
ad33149c9d33a llm-jq: init at 0.1.1 (#386438)
a9dfa72c0c906 python312Packages.dvc: add ssh_gssapi
8426b0e64e59b Update Gajim to 2.0.1
c6b95d92c7127 python313Packages.dvc-ssh: 4.1.1 -> 4.2.1
1faec5602444d nixosTests/frigate: convert to runTest
b67a41097afc8 opencomposite: 0-unstable-2025-02-08 -> 1.0.1473 (#383356)
e7fa48f7d48b5 python313Packages.dvc-gs: refactor
5c3df8025f012 frigate: 0.14.1 -> 0.15.0
8072da51328d5 angular-language-server: 19.1.0 -> 19.2.0
5831524024b84 ssh-mitm: 5.0.0 -> 5.0.1
8cc3f022bf60f vunnel: 0.30.0 -> 0.31.0
0eb2a2086e5b3 reptor: 0.26 -> 0.27
b49c5463d7460 python313Packages.starlette-context: 0.3.6 -> 0.4.0 (#386919)
063fbd56cce0a python313Packages.teslajsonpy: 3.12.3 -> 3.13.0
5ebf84f16ba5e hot-resize: 0.1.1 -> 0.1.2 (#386725)
47df557975817 steel: init at 0.6.0-unstable-2025-02-27 (#380503)
fed773e0b72be python313Packages.starlette-context: 0.3.6 -> 0.4.0
5e2119f033fee nixos/wyoming-piper: Remove range validation for numerical options (#384315)
3ac60dd3f9e03 libfive: revert eigen to fix build
c0fb4f887cb57 python312Packages.gspread: 6.1.4 -> 6.2.0
1a1e8ab785dca kime: fix build
9e6af31c9c64b python312Packages.rich-argparse: 1.6.0 -> 1.7.0
b6729079f70f6 python312Packages.array-api-compat: 1.10 -> 1.11
91e0792093b59 awscli2: 2.24.7 -> 2.24.16
1492476b6ed61 star-history: 1.0.26 -> 1.0.27
6b5592268233b sbt-with-scala-native: 1.10.7 -> 1.10.9
e5c630d446841 sbt: 1.10.7 -> 1.10.9
eba3fd883e2d3 turso-cli: 0.98.0 -> 0.98.1
bc4dbacd927c6 sigal: 2.4 -> 2.5
34ee1c6560104 scdl: 2.12.3 -> 2.12.4
2eea346955dd5 libmsquic: 2.4.7 -> 2.4.8
2fb744732947c python3Packages.django-organizations: init at 2.4.1
e04b476c7c689 python3Packages.dj-stripe: init at 2.8.4
b8b8b735286f8 python3Packages.celery-batches: init at 0.9
f1d9a2c9d5ee4 python3Packages.anonymizeip: init at 1.0.0
92625230d3c17 python3Packages.django-allauth: refactor
99da0485450b1 python3Packages.django-allauth: 65.3.1 -> 65.4.1
203231b708efd python3Packages.django-autoslug: init at 1.9.9
059e4a4932d0e python3Packages.mock-django: init at 0.6.10
2cc9bbf8e5003 mitra: 3.16.0 -> 3.18.0 (#386300)
2b88093cf7e4f libsForQt5.qtstyleplugin-kvantum: 1.1.3 -> 1.1.4
941cf99422f21 zed-editor: 0.175.5 -> 0.176.1
2e70385ddbca4 catppuccin: add element
549024b6a1641 proton-pass: 1.29.3 -> 1.29.5
952f5af9f06bf vmTool: add Ubuntu 24.04 Noble (amd64)
25068c534b2c3 lightburn: 1.7.04 -> 1.7.06 (#385829)
37d557ee3dd9d credhub-cli: 2.9.42 -> 2.9.43
b2e02c98a4794 tail-tray: 0.2.16 -> 0.2.17 (#386055)
749d9130f2f5e gnomeExtensions.valent: 1.0.0.alpha.46 -> 1.0.0.alpha.47 (#386001)
20b2fabbb3cbe auto-editor: 24w29a -> 26.2.0 (#385626)
0905e3b0b59a8 infisical: 0.34.2 -> 0.35.0 (#385495)
cda3f01b7f8a0 mopidy-jellyfin: 1.0.5 -> 1.0.6 (#385274)
06287a5342f94 pytr: 0.3.1 -> 0.4.1; python312Packages.hatch-babel: init at 0.1.2 (#384298)
864af89c0d9fc mesos-dns: 0.9.2 -> 0.9.3 (#384670)
f327ad4e05dd2 kubevela: 1.10.1 -> 1.10.2
6d4a5fdc780b9 incus: 6.9.0 -> 6.10.1, ui: 0.14.7 -> 0.15.0 (#386395)
9c2ee04b6ab7f tpm2-pkcs11: 1.9.0 -> 1.9.1 + adopt (#378737)
1718372cfe172 framework-tool: 0.1.0-unstable-2024-06-14 -> 0.2.1 (#386187)
d03162cd453ac pandoc-mustache: init at 0.1.0 (#382100)
e9ad0e60fa3d1 confy: 0.7.1 -> 0.8.0 (#372892)
ef5af1e8baba3 firebase-tools: 13.30.0 -> 13.32.0 (#386207)
45ea3ecccf2bb theforceengine: 1.10.000 -> 1.15.000 (#385783)
732540d7ab03a retext: 8.0.2 -> 8.1.0 (#385264)
17caf824416b3 ddev: install autocompletion scripts (#384953)
f6bb00a003d81 git-remote-codecommit: 1.15.1 -> 1.17 (#384113)
b58280f87c133 wechat-uos: 4.0.1.7 -> 4.0.1.12 (#383852)
3e102a1b3ee3f virt-manager: add StartupWMClass= to desktop file (#386775)
acb84893faa17 pathvector: add shell completions (#382894)
9b075c0934453 guile-goblins: 0.14.0 -> 0.15.0 (#382052)
09ac43bcbe3c9 python312Packages.peblar: init at 0.3.3 (#371229)
1f025764777c6 python313Packages.aiohomekit: 3.2.7 -> 3.2.8 (#386845)
bae7a922c84c5 python313Packages.holidays: 0.67 -> 0.68 (#386859)
bd130ae1e801a python313Packages.sense-energy: 0.13.5 -> 0.13.6 (#386868)
859c52f445847 python313Packages.tencentcloud-sdk-python: 3.0.1330 -> 3.0.1331 (#386869)
45c739cbc9dc7 pymol: 3.0.0 -> 3.1.0, fix msgpack on non-Darwin (#382665)
73c34cf58d475 grafana-image-renderer: 3.12.0 -> 3.12.1 (#386103)
a7f50af5006a4 rpiboot: fix broken symlink failure (#385719)
4a0a0cfd07a83 timescaledb-parallel-copy: 0.4.0 -> 0.9.0 (#383957)
65be273566187 exoscale-cli: 1.77.2 -> 1.83.1 (#383646)
1c9b68b0274a2 fake-gcs-server: init at 1.52.2 (#385745)
0d65e960d6658 bochs: 2.8 -> 3.0
7cc22953e743f tmff2: 0.82 -> 0.82-unstable-2025-02-03 (#380244)
32aa6561bfdc4 python313Packages.sense-energy: 0.13.5 -> 0.13.6
33e284a249c24 python313Packages.tencentcloud-sdk-python: 3.0.1330 -> 3.0.1331
8152e5409d5e6 python313Packages.datafusion: fix build
49aef132864f8 nixosTests.nomad: Use runTest
fb280d10feacd nix-heuristic-gc: init at 0.6.0
6e15303353a1a ente-desktop: init at 1.7.10 (#386162)
d0671265fc52a xrgears: 1.0.1-unstable-2024-07-09 -> 1.0.1-unstable-2025-03-03 (#386754)
cc2a40aea166e python312Packages.peblar: 0.3.3 -> 0.4.0
c3887bebb1636 python313Packages.holidays: 0.67 -> 0.68
c3b1c33c7fca8 incus: 6.10.0 -> 6.10.1
082193eab1f84 python312Packages.torchmetrics: 1.6.1 -> 1.6.2 (#386687)
2d11d0875b455 python312Packages.openai: 1.65.0 -> 1.65.2 (#386799)
3df7288117d17 python313Packages.pylast: 5.3.0 -> 5.4.0 (#386045)
946388e5696cd unrar: 7.1.4 -> 7.1.5 (#386701)
ec3f5ee74ed50 patroni: 4.0.4 -> 4.0.5 (#385036)
e67b928add1b2 lmstudio: 0.3.6 -> 0.3.11 (#383546)
6493f3e0e987f curv: 0.5-unstable-2025-01-06 -> 0.5-unstable-2025-01-20 (#386478)
f15f81d909289 veryl: 0.13.2 -> 0.13.5 (#386470)
28d006e6a772a cri-o: 1.31.3 -> 1.32.0 (#377510)
aff072191a6af libzim: Add upstream icu76 compat patch, kiwix: 2.3.1-unstable-2024-02-20 -> 2.4.1, libkiwix: 13.1.0 -> 14.0.0 (#385849)
5c7744ade11d9 twitch-dl: 2.10.0 -> 2.11.0
45cebbe82a66a scheme48: 1.9.2 -> 1.9.3 (#383638)
145fa2ff35ae1 python313Packages.pylast: 5.3.0 -> 5.4.0
ed516e623d8d0 python313Packages.hikari-crescent: fix build (#386516)
eff9c3d6591b4 python312Packages.django-health-check: refactor (#386776)
50058dd8ec2b5 python312Packages.aiosseclient: 0.1.3 -> 0.1.6 (#386827)
9240660678782 wiremock: 3.12.0 -> 3.12.1 (#386730)
1e4685055685b signalbackup-tools: 20250224-1 -> 20250303-2 (#386797)
b07f7997dd011 portfolio-filemanager: 1.0.1 -> 1.0.2 (#386805)
ad40c90ec78ba fclones: 0.34.0 -> 0.35.0 (#386811)
07298e48862d4 python313Packages.aiohomekit: 3.2.7 -> 3.2.8
91c561d8ed25a python312Packages.censys: migrate to pytest-cov-stub (#386752)
f362c814c127a python312Packages.aiowithings: migrate to pytest-cov-stub (#386753)
e2bc278995ca6 xan: 0.45.0 -> 0.46.2
48e4eecf7c8a6 python312Packages.ssdp: refactor (#386760)
9b7b97cdf53b6 python312Packages.wled: migrate to pytest-cov-stub (#386761)
242baa423b120 wabt: 1.0.36 -> 1.0.37
de57e0e79382f lmstudio: 0.3.6 -> 0.3.11
02032da4af073 electron{-source,-bin,-chromedriver}: 32.3.1 -> 32.3.2, 33.4.1 -> 33.4.2, 34.2.0 -> 34.3.0 (#385597)
a9f86f1b855c8 unit: 1.34.1 -> 1.34.2
fad26659a9e2d libblake3: 1.6.0 -> 1.6.1
88461d96f48a2 poco: 1.13.3 -> 1.14.1; fix build with new poco in dependent packages (#383163)
b54d20262c6b5 restinio: 0.7.3 -> 0.7.4
192877da4da13 jql: 8.0.3 -> 8.0.4
61abbc9ee8e7a minijinja: 2.7.0 -> 2.8.0
f2b8a6e2945e8 kubectl-gadget: 0.37.0 -> 0.38.0
099a565131400 pwvucontrol: 0.4.7 -> 0.4.8
8901802f49a0f markdown-oxide: 0.25.0 -> 0.25.1 (#386823)
70e0df67825cf klog-rs: 0.4.0 -> 0.4.1
6d5c06c1fc671 meowlnir: init at 0.2.0 (#386813)
1638b89a79316 pacup: remove discontinued version
a1d54947a71a4 perlPackages.pacup: init at 3.3.11
6b03e9fedd863 python312Packages.aiosseclient: 0.1.3 -> 0.1.6
fde5a42ef6dcf python312Packages.elgato: refactor (#386762)
3403819b4d52c netbox_4_2: init
64503c8633359 runInLinuxVM: apply Qemu's vCPU limit
8ccc2513f318f xdg-desktop-portal-cosmic: 1.0.0-alpha.5.1 -> 1.0.0-alpha.6 (#386198)
e09eae7b0aba6 python312Packages.pysigma-backend-*: refactor (#386764)
65660591dbcfc python312Packages.iaqualink: refactor (#386765)
ad8ab3cc8c42b reindeer: 2025.02.17.00 -> 2025.02.24.00 (#386766)
76ad551bd748d paper-plane: use fetchCargoVendor and refactor (#386767)
99bb5ef55cdbd argo-workflows: 3.6.3 -> 3.6.4 (#386777)
dd1e57316107e tuicam: 0.0.2 -> 0.0.3 (#386778)
b4d141d39bf9f cargo-expand: 1.0.100 -> 1.0.101 (#386718)
82455e768713d markdown-oxide: 0.25.0 -> 0.25.1
fa71f329e8ba1 python312Packages.aiowaqi: migrate to pytest-cov-stub (#386769)
51bd9fedaeb3d python312Packages.asteval: migrate to pytest-cov-stub (#386771)
76831d47e620a coroot-node-agent: 1.23.11 -> 1.23.12 (#386742)
6d59f313eac31 openterface-qt: add udev rules for user access (#379379)
7cefa0f4304b0 filesender: 2.52 -> 2.53 (#386809)
2fcf6fba90c3d fastfetch: 2.37.0 -> 2.38.0 (#386741)
f52d202b7c476 OWNERS: Add @hsjobeki to lib files (#386793)
c987d94883ca6 deltachat-desktop: 1.54.1 -> 1.54.2
250085450052b gitlab: fix merge requests pages by running script of vue-demi (#386706)
c0981510d0fd3 python312Packages.diffenator2: 0.4.5 -> 0.4.8 (#386755)
26aa4aaf60dee unityhub: fix unity 6 editor vulkan backend
355ee51947384 fn-cli: 0.6.38 -> 0.6.39 (#386696)
5029b3fe773e0 lighthouse-steamvr: 1.3.0 -> 1.3.1 (#386697)
432227b773320 kitex: 0.12.2 -> 0.12.3 (#386699)
35a429deb426c pods: use fetchCargoVendor and refactor (#386705)
5e7b74bdb717e commonsLogging: 1.3.4 -> 1.3.5 (#386709)
4b897be854e77 cargo-tarpaulin: 0.32.0 -> 0.32.1 (#386714)
ea26fd71125ff pulumi-bin: 3.153.0 -> 3.153.1 (#386625)
f217cd7b4b1d6 pkgsite: 0-unstable-2025-02-14 -> 0-unstable-2025-02-18 (#386628)
7867671971365 git-repo: 2.51 -> 2.52 (#386643)
48387559ac2ff zoekt: 3.7.2-2-unstable-2025-02-17 -> 3.7.2-2-unstable-2025-02-21 (#386650)
0649f7a9cccc2 meowlnir: init at 0.2.0
06074bf6e3ce4 python312Packages.airportsdata: 20241001 -> 20250224 (#386674)
ddd7790c20916 slumber: 3.0.0 -> 3.0.1 (#386571)
f04f4675719dc terraform-providers.azurerm: 4.19.0 -> 4.21.1 (#386579)
e7fbd37776ff5 cargo-modules: 0.22.0 -> 0.22.1 (#386523)
f102c9afd20e5 adwsteamgtk: 0.7.2 -> 0.8.0 (#386533)
ee40a050431a1 cpm-cmake: 0.40.5 -> 0.40.6 (#386534)
688d526b27d52 ets: 0.3.0 -> 0.3.1 (#386539)
f32ded0eb0386 glamoroustoolkit: 1.1.13 -> 1.1.14 (#386542)
d3fe78236ed15 terraform-providers.oci: 6.26.0 -> 6.28.0 (#386544)
3500e955c2080 livekit: 1.8.3 -> 1.8.4 (#386547)
d62ec262c4b1e linux_testing: 6.14-rc4 -> 6.14-rc5 (#386613)
a2145e412f122 snx-rs: 3.0.6 -> 3.1.0 (#386555)
ffe79fbc606f0 spade: migrate to useFetchCargoVendor (#386558)
e931e22938274 fclones: 0.34.0 -> 0.35.0
e9b88200d2dd7 filesender: 2.52 -> 2.53
ebd865f44cdcb flet-client-flutter: 0.26.0 -> 0.27.4 (#386326)
b5d5d642da983 mangojuice: add pciutils to $PATH
a36d6ef1457aa portfolio-filemanager: 1.0.1 -> 1.0.2
82ab779a54138 nixfmt-tree: init
e7f018210cff4 python312Packages.openai: 1.65.0 -> 1.65.2
33aff63999fac electron-chromedriver_34: 34.2.0 -> 34.3.0
d2b532b6ca267 electron_34-bin: 34.2.0 -> 34.3.0
3dc7e7f704d36 electron-chromedriver_33: 33.4.1 -> 33.4.2
0c7cb18b972a2 electron-source.electron_33: 33.4.1 -> 33.4.2
7c88608de4d41 electron_33-bin: 33.4.1 -> 33.4.2
4c69fb6bcd4ba electron-chromedriver_32: 32.3.1 -> 32.3.2
67866f730bd35 electron-source.electron_32: 32.3.1 -> 32.3.2
3b5dd2884b6b5 papis: 0.14 -> 0.14.1
29b1d0386c9d9 signalbackup-tools: 20250224-1 -> 20250303-2
c2899284a90b9 fantomas: 7.0.0 -> 7.0.1
cda5844ca2935 build(deps): bump actions/create-github-app-token from 1.11.5 to 1.11.6 (#386683)
9eb38166a742d pytr: 0.3.1 -> 0.4.1
eb4e6ceb4c48c git-revise: macOS: Skip failing GPG test (#385865)
1f102bd0ace4c prometheus-borgmatic-exporter: 0.2.7 -> 0.2.8 (#386791)
33daa356ec55f jsbeautifier: 1.15.1 -> 1.15.4
5ed63a84d5ea0 OWNERS: Add @hsjobeki to lib files
1fcc0d977272a python312Packages.hatch-babel: init at 0.1.2
789d5d063318f python313Packages.servefile: fix build (#386552)
105bae2869e1a llm-jq: init at 0.1.1
6fb2a6516fc12 swc: 0.91.369 -> 0.91.495 (#386386)
a3529fec669c4 swi-prolog: 9.2.7 -> 9.2.9 (#386387)
b265ee0a5765c tenv: 4.1.0 -> 4.2.4 (#386480)
76d3842e411d0 prometheus-borgmatic-exporter: 0.2.7 -> 0.2.8
2313e1d57e1b8 librewolf: 135.0-1 -> 135.0.1-1
7ce11f384f65e librewolf: fix update script
2b93bb147cefb steel: init at 0.6.0-unstable-2025-02-27
b5ab55f256403 git-revise: macOS: Skip failing GPG test
9e28a778517d9 yandex-cloud: 0.143.0 -> 0.144.0 (#385985)
879cb98823976 openvas-scanner: 23.15.4 -> 23.16.0 (#386780)
f8742ed039bfa open-webui: add pyodide
6a0034b2fb839 televido: 0.4.0 -> 0.5.0
9b71d9aa366f7 libdeltachat: 1.156.1 -> 1.156.2 (#386588)
369ee49efa03e flare-signal: 0.15.9 -> 0.15.12 (#385599)
228594582e47d kdePackages.akonadi: fix typo, again (#386788)
85cc96a7902fc kdePackages.akonadi: fix typo, again
26601d16bd997 python312Packages.simsimd: 6.3.3 -> 6.4.0 (#386635)
e9d364ece7498 github-backup: 0.49.0 -> 0.50.0 (#386617)
d3e4d75750977 python312Packages.qbusmqttapi: 1.2.4 -> 1.3.0 (#386608)
38baff9deb86f primesieve: 12.6 -> 12.7 (#386494)
305aa40a7bd77 python312Packages.wolf-comm: 0.0.19 -> 0.0.21 (#386595)
75c3f7bc97a9c slint-lsp: 1.9.2 -> 1.10.0 (#386713)
bb2c0236933b4 kdePackages.akonadi: fix typo (#386783)
9d9af30741fdf rnote: use fetchCargoVendor and refactor (#386717)
d9ecff99f4557 kdePackages.akonadi: fix typo
68e81ca8cb112 kdePackages.akonadi: enable support for SQLite and PostgreSQL backends (#384804)
c5a810062fc4e kdePackages.akonadi: enable support for SQLite and PostgreSQL backends
c05c9f64192b2 cedar: 4.3.2 -> 4.3.3 (#386626)
1d4d3c0cfc5ea tuicam: 0.0.2 -> 0.0.3
674c90732c4de tests.testers.testEqualArrayOrMap: switch to testBuildFailure'
b2bb4944104b8 testers.testEqualArrayOrMap: inline let expression
12ffaa4e85fa8 testers.testEqualArrayOrMap: switch to callPackage
40019a5e14779 testers.testEqualArrayOrMap: unwrap namerefs before passing to avoid nesting
4e6be8f313fd6 testers.testEqualArrayOrMap: use default.nix and move recurseIntoAttrs into tests.nix
abf9e606cfab6 testers.testEqualArrayOrMap: move argument check from bash to Nix
c80dc38159bc0 testers.testEqualArrayOrMap: remove unused finalAttrs
082dc59c1410a openvas-scanner: 23.15.4 -> 23.16.0
1a47f317c22fc testers.testEqualArrayOrMap: remove old comment
731b74db8b1e2 testers.testEqualArrayOrMap: use buildCommandPath and change checkSetupScript argument to script
261693fe5d961 testers.testEqualArrayOrMap: init
01ca56991a299 python312Packages.django-health-check: refactor
fd5ad5c2b662b virtualgl: fix library paths
733d67787534f virt-manager: add StartupWMClass= to desktop file
176922c4d917c argo-workflows: 3.6.3 -> 3.6.4
65b5a30614b3a pgadmin: 9.0 -> 9.1
8701c649f6fcc python312Packages.iaqualink: refactor
1ee72631c3d66 python312Packages.asteval: migrate to pytest-cov-stub
687ff067c2187 python312Packages.ssdp: refactor and add optional dependencies
fc3e47d102558 tribler: fix , closes #375940 (#384197)
9e759235f20ea python312Packages.aiowaqi: migrate to pytest-cov-stub
f990a063ab94b paper-plane: use fetchCargoVendor and refactor
64729d46669b3 waycheck: 1.5.0 -> 1.6.0 (#386647)
ca735645a1dd4 ocamlPackages.tcpip: 8.2.0 → 9.0.0; ocamlPackages.arp: 3.1.1 → 4.0.0 (#385499)
f040307d1a1d6 stm32cubemx: add StartupWMClass= to desktop file
15344b2b048b8 yutto: 2.0.0 -> 2.0.1 (#383260)
44d3006ee605d quartoMinimal: 1.6.39 -> 1.6.41 (#384660)
385662341c231 python312Packages.pysigma-backend-opensearch: refactor
ba3f5db96bfac reindeer: 2025.02.17.00 -> 2025.02.24.00
950676708e25c python312Packages.pysigma-backend-elasticsearch: migrate to pytest-cov-stub
6cbdd89a422c7 python312Packages.elgato: refactor
37cb97a388ccb libcosmicAppHook: replace `stdenv.isDarwin` with `stdenv.hostPlatform.isDarwin` (#385120)
6ef3f69fce093 sdl2-compat: 2.30.52 -> 2.32.52
802799f07b9cc python312Packages.ssdp: migrate to pytest-cov-stub
1f8374d28a28d nickel: mark as broken on aarch64-linux
6a9da8d2e38f1 python312Packages.wled: migrate to pytest-cov-stub
ecd63ea23fdc7 nickel: cleanup
0974a837a2b77 trojan-go: init at 0.10.6 (#373125)
be2913c9acbae python312Packages.censys: migrate to pytest-cov-stub
d38541d80987c python312Packages.diffenator2: 0.4.5 -> 0.4.8
61afeb82e5c0e python312Packages.aiowithings: migrate to pytest-cov-stub
5b2724bf523d7 xrgears: 1.0.1-unstable-2024-07-09 -> 1.0.1-unstable-2025-03-03
c364e31dc111d librenms: 25.1.0 -> 25.2.0 (#384034)
04d9a29879d3a kiwix: add greg as maintainer
41462bcdb0493 kiwix: 2.3.1-unstable-2024-02-20 -> 2.4.1
2451a49e55b57 libkiwix: 13.1.0 -> 14.0.0
0a9efd56f09d3 python312Packages.django-otp-webauthn: 0.4.0 -> 0.5.0 (#386746)
6e0b1a3c47d12 svu: 3.0.0 -> 3.1.0 (#386568)
91c996b11e6cf supabase-cli: 2.15.0 -> 2.17.0
3c19aa5170a7d python313Packages.aiosseclient: init at 0.1.3 (#386076)
10dc185c2af32 python313Packages.tencentcloud-sdk-python: 3.0.1329 -> 3.0.1330 (#386649)
d402e4e793a7b checkov: 3.2.377 -> 3.2.379 (#386651)
86f8815b75bce python312Packages.django-otp-webauthn: 0.4.0 -> 0.5.0
403aa2e8dfa47 trojan-go: init at 0.10.6
fbce63590810d bruno: 1.38.1 -> 1.39.1 (#386672)
2bf982eeb3c4a percona-server_8_0: 8.0.40-31 -> 8.0.41-32
e4f13cd38fb59 fastfetch: 2.37.0 -> 2.38.0
4b1a4f861bc5c adwaita-fonts: Add update script
01debcf4759c1 coroot-node-agent: 1.23.11 -> 1.23.12
daadaaca8e126 heimdall-proxy: fix mainProgram
bf68ce7d1b20a aerc: make notmuch optional
8674efe537f59 adwaita-fonts: Remove unused dependencies
8ba830c8bc186 gitlab: fix merge requests pages by running script of vue-demi
e5bf766db7f3f yutto: 2.0.0 -> 2.0.1
2265e3014c02f libzim: Add upstream icu76 compat patch
ba487dbc9d04e komikku: 1.70.0 -> 1.71.0 (#386521)
65bbec92a5037 drum-machine: 1.0.0 -> 1.3.1 (#386566)
e08eecb8c4557 lean4: 4.16.0 -> 4.17.0
dcff13341e754 v2ray-domain-list-community: 20250227085631 -> 20250302153845 (#386623)
bb479b3fe9471 petsc: 3.21.4 -> 3.22.4
77345dd2d5060 petsc: add setupHook to set PETSC_DIR env
dd6e89f2ecad2 pflotran: replace hdf5 with hdf5-fortran-mpi
0b791963814f4 air-formatter: 0.4.0 -> 0.4.1 (#386693)
19813cc4d7af3 wiremock: 3.12.0 -> 3.12.1
a7cb4b51d5309 xdg-desktop-portal-cosmic: fix package tests after ashpd API updates
7d99d5d3f447d nixos/nvidia: add a read only enabled option
70d23ab6672b2 notmuch: fix build with emacs30
ba8dc49f2f304 phpPackages.php-cs-fixer: fix hash (#386707)
085db0ea60327 clairvoyant: 3.1.8 -> 3.1.10 (#386009)
c3de2291715f2 frankenphp: 1.4.3 -> 1.4.4 (#386702)
b4bf7a9a889cb hot-resize: 0.1.1 -> 0.1.2
ad0344bd3ed88 heimdall-proxy: 0.15.7 -> 0.15.8
95eacfb6d1acc zsh-forgit: 25.02.0 -> 25.03.0 (#386086)
52eebd2541779 fish: disable flaky test on darwin
0bc160ade0f6a ppsspp-qt: Fix Qt wrapping
46750884073df podman-bootc: init at 0.1.2 (#376469)
5c9adbab2eab9 cargo-tarpaulin: 0.32.0 -> 0.32.1
a112081712d1d slint-lsp: 1.9.2 -> 1.10.0
2add84343daf4 cargo-expand: 1.0.100 -> 1.0.101
e71b875463bbf commonsLogging: 1.3.4 -> 1.3.5
665581202ac4e phpPackages.php-cs-fixer: fix hash
6365b15e2c3cc python312Packages.finetuning-scheduler: disable dynamo tests on python <=3.13
e52c2a6869829 gitlab: update ruby and downgrade nodejs to meet upstreams recommendations
c02027a182227 rnote: use fetchCargoVendor and refactor
9356acac9aff3 fish: add patch to fix wrong version number in Cargo.toml
248b27a56bd2f fish: add patch to fix kitty build
e38c82f4cc71f frankenphp: 1.4.3 -> 1.4.4
a33aae73fd939 unrar: 7.1.4 -> 7.1.5
f1ca8a3103a63 pods: use fetchCargoVendor and refactor
fb5038048b57b authentik,authentik.outposts.{ldap,radius,proxy}: 2024.12.2 -> 2025.2.1
99a974455aa2d driversi686Linux.amdvlk: 2025.Q1.1 -> 2025.Q1.2 (#386441)
fd04a309cf497 kitex: 0.12.2 -> 0.12.3
c0a85dd5caf88 bacon: 3.10.0 -> 3.11.0 (#386689)
5649e27e26e7f tray-tui: 0.1.0 -> 0.2.0 (#386488)
f50d7ecb25048 lighthouse-steamvr: 1.3.0 -> 1.3.1
db64804fe2066 fn-cli: 0.6.38 -> 0.6.39
94e563c77fbe5 air-formatter: 0.4.0 -> 0.4.1
af0c7c759d7fc python312Packages.docling: 2.23.0 -> 2.25.1 (#386660)
7768e6b94fdec buildkite-agent: override buildVersion sentinel value to fix crashes
bbfdb679cc94b bacon: 3.10.0 -> 3.11.0
8c84131f68f68 granted: 0.37.0 -> 0.38.0
bd92f7fb61a8a treewide: remove orphaned Cargo.lock files (#386580)
a7ee2bab3362f python312Packages.torchmetrics: 1.6.1 -> 1.6.2
c9ce18fd2fa33 ddm: init at 3.0.2 (#385063)
271ae9a668c8c tracexec: 0.8.2 -> 0.10.0
94816e8c96a8b build(deps): bump actions/create-github-app-token from 1.11.5 to 1.11.6
b50dacf1f15e7 tpmmanager: 0.8.1 -> 0.9.0
86116722fd1d9 Revert "electron-bin: don't wrap inside libexec"
807a57ff887b3 Revert "electron-bin: remove leftover logic"
b79d7a76cdf40 tortoisehg: 6.6.3 -> 6.9
9f779050d87e0 python312Packages.airportsdata: 20241001 -> 20250224
73c3fb00fe21d bruno: 1.38.1 -> 1.39.1
0e3f7cb527290 vimPlugins.blink-cmp: remove old patch and use upstream bypass method (#386511)
c7ebf0efe4ac9 cargo-insta: Fix build (#386668)
d39e23d37c832 vimPlugins.blink-cmp: fetch patches using a URL that gives us stable diffs
4c5af10411bc0 python312Packages.docling: 2.23.0 -> 2.25.1
44e8bf6e8a6d9 python312Packages.docling-ibm-models: 3.3.2 -> 3.4.1
9bc6260998b53 Add coq Matrix package 8.18 (#373307)
20ec0eab411e5 eigenrand: skip test_mv (#383685)
13392df49ad13 cargo-insta: Fix build
ae1f0f5715e86 nixos/tandoor-recipes: fix default user and group creation (#386648)
1bb16098441dc sourcegit: 2025.04 -> 2025.07
3e591e4e09479 update cargo-insta 1.40 -> 1.42.2 (#386657)
4bdcf9a81585f walker: 0.12.15 -> 0.12.16 (#386605)
d191cf9a3d67d wlx-overlay-s: 25.2.0 -> 25.3.0 (#386658)
6b38a2e613b9c linuxPackages.prl-tools: 20.2.1-55876 -> 20.2.2-55879 (#385803)
985650cff2a1d python313Packages.model-checker: 0.8.5 -> 0.8.6 (#386029)
e3f8b2f1445a7 update cargo-insta 1.40 -> 1.42.2
05452072b1994 python312Packages.pynndescent: disable on aarch64-linux (#386620)
7c8b6ea9c1c13 switch-to-configuration-ng: increase dbus timeout to 10s (#385997)
6bb73a8872701 llvm: also apply GOTOffsetMap to versions 15 and 16
4798092ab48eb wlx-overlay-s: 25.2.0 -> 25.3.0
79ff739c1fb74 sarasa-gothic: 1.0.28 -> 1.0.29 (#386535)
098a83c4a2df7 mqttui: 0.21.1 → 0.22.0 (#386168)
3d00b60a343ba codeium: 1.38.0 -> 1.40.1
78f667cea97e4 checkov: 3.2.377 -> 3.2.379
7b54756d21c0b python313Packages.botocore-stubs: 1.37.1 -> 1.37.4 (#386630)
dc8f5bdb89e82 python313Packages.pyexploitdb: 0.2.69 -> 0.2.70 (#386631)
dd2b7b6d1b0b6 python313Packages.pypykatz: 0.6.10 -> 0.6.11 (#386632)
9e1aff61c8f54 python313Packages.motionblinds: 0.6.25 -> 0.6.26 (#386633)
2217a77db35cd python313Packages.iterfzf: 1.4.0.54.3 -> 1.4.0.60.2 (#386638)
f9cbc06a81e75 python313Packages.inkbird-ble: 0.7.0 -> 0.7.1 (#386639)
784d78de4f651 python313Packages.aiohomeconnect: 0.15.1 -> 0.16.0 (#386640)
7a8e522365a62 python313Packages.aiocomelit: 0.11.0 -> 0.11.1 (#386641)
dd82cce76670a nixos/tandoor-recipes: fix default user and group creation
218345cd13b20 nixos-rebuild-ng: Fix typo in README (#386503)
3874e843600da libretro-shaders-slang: 0-unstable-2025-02-14 -> 0-unstable-2025-02-27 (#386564)
aff8f3021725a troubadix: 25.2.0 -> 25.2.4 (#386592)
874e3b67c1146 zoekt: 3.7.2-2-unstable-2025-02-17 -> 3.7.2-2-unstable-2025-02-21
2593171178efe polarity: latest-unstable-2025-02-13 -> latest-unstable-2025-02-28 (#386627)
2efada0401ed5 ldeep: 1.0.81 -> 1.0.84 (#386618)
655e4c20a1b99 python313Packages.tencentcloud-sdk-python: 3.0.1329 -> 3.0.1330
a78e53973d782 python313Packages.tencentcloud-sdk-python: 3.0.1328 -> 3.0.1329
d630ea65108da python313Packages.tencentcloud-sdk-python: 3.0.1327 -> 3.0.1328 (#386636)
a6c76716876ff python313Packages.publicsuffixlist: 1.0.2.20250301 -> 1.0.2.20250302 (#386637)
3765b5f1d0f6d dcmtk: update build flags, add patches (#386215)
170f92e07b166 waycheck: 1.5.0 -> 1.6.0
831e50369a6ad git-repo: 2.51 -> 2.52
c79c9cccd6f5c mangojuice: 0.8.1 -> 0.8.2 (#386624)
66f9dc732ea5d hyprgraphics: 0.1.1 -> 0.1.2
7948ce986f26e hyprgraphics: fix meta, add libspng
077593927749d ente-web: 0.9.97 -> 0.9.98 (#386325)
8450cd14668ed circt: 1.107.0 -> 1.108.0 (#386612)
b455353e842c1 python313Packages.iterfzf: 1.4.0.54.3 -> 1.4.0.60.2
c4b1f020863e6 python313Packages.inkbird-ble: 0.7.0 -> 0.7.1
3c705883ef506 python313Packages.aiohomeconnect: 0.15.1 -> 0.16.0
fd1c9b35959c1 python313Packages.aiocomelit: 0.11.0 -> 0.11.1
25622334ec790 python313Packages.tencentcloud-sdk-python: 3.0.1327 -> 3.0.1328
95a3b72a206b7 python313Packages.publicsuffixlist: 1.0.2.20250301 -> 1.0.2.20250302
cc275c5d51309 python313Packages.pypykatz: 0.6.10 -> 0.6.11
170af88f666cb python313Packages.pyexploitdb: 0.2.69 -> 0.2.70
a775d43750dd8 python313Packages.motionblinds: 0.6.25 -> 0.6.26
92e20413be49c python313Packages.model-checker: 0.8.5 -> 0.8.6
11cc03633fd19 python313Packages.botocore-stubs: 1.37.1 -> 1.37.4
8254e57e9c724 python312Packages.simsimd: 6.3.3 -> 6.4.0
5b82a10c4bb46 buffybox: 3.2.0-unstable-2024-12-09 -> 3.2.0-unstable-2025-02-27
4cf11a00a3ee3 python312Packages.umap-learn: 0.5.7 -> 0.5.8
f2859fe2355d0 python312Packages.ripser: cleanup & skip failing tests on darwin
3f16388e73fd5 python312Packages.pynndescent: disable on aarch64-linux
8e5d5c044f237 b3sum: 1.6.0 -> 1.6.1 (#386570)
fa2bdc26626e6 pkgsite: 0-unstable-2025-02-14 -> 0-unstable-2025-02-18
5dee9a0f9b2c9 polarity: latest-unstable-2025-02-13 -> latest-unstable-2025-02-28
adb1840376c90 pulumi-bin: 3.153.0 -> 3.153.1
d124a64295c3b treewide: use mirror urls (#386594)
043628be0e308 discord: 0.0.86 -> 0.0.87 (#386621)
1bdd1a9240eb4 cedar: 4.3.2 -> 4.3.3
239fa0449b4b3 python3Packages.sphinx-markdown-builder: init at 0.6.8 (#357535)
cba76e399761e mangojuice: 0.8.1 -> 0.8.2
1f473129f7182 v2ray-domain-list-community: 20250227085631 -> 20250302153845
6aa24e498de2a os-agent: 1.6.0 -> 1.7.1 (#386047)
41d25838b370e llvmPackages_git: 21.0.0-unstable-2025-02-23 -> 21.0.0-unstable-2025-03-02
28a4466060a0b virtnbdbackup: 2.20 -> 2.21 (#386050)
9cd5e3e9511ec xdp-tools: patch to allow building with Emacs 30 (#386619)
5e93f9d111d74 python312Packages.pynndescent: modernize
862962af8713f xdp-tools: patch to allow building with Emacs 30
91c5feeefd014 discord: 0.0.86 -> 0.0.87
d4f02cfa2f005 ldeep: 1.0.81 -> 1.0.84
571a7772a61ae github-backup: 0.49.0 -> 0.50.0
73e5401f71dc4 tideways-daemon: 1.9.32 -> 1.9.34 (#386583)
8b27ad3ad956e linux_testing: 6.14-rc4 -> 6.14-rc5
377d4f3120178 python312Packages: langgraph* update (with langraph 0.3.x) (#386226)
f82daa41c98dc python312Packages.docling-parse: 3.3.1 -> 3.4.0 (#386223)
1fb4d6356818c python312Packages.docling-core: 2.19.1 -> 2.21.1 (#386244)
6f990a0b437be podman-desktop: 1.13.2 -> 1.16.2 (#379002)
b4d37d2e59f56 flix: 0.57.1 -> 0.58.0
8ea022af5bd9e nixos/tlp: fix NetworkManager RDW dispatcher script location (again) (#362161)
c2bc9c69fb60a python312Packages.qbusmqttapi: 1.2.4 -> 1.3.0
f17646e697e14 python313Packages.trimesh: 4.6.3 -> 4.6.4
5db7ae07d010a jjui: 0.4 -> 0.5 (#385082)
6dee6be3a1246 walker: 0.12.15 -> 0.12.16
f151c435f22d9 git-sim: fix pyav manim breakage
1d2fe0135f360 lutris: 0.5.18 -> 0.5.19 (#385282)
303485eecc4e8 python313Packages.servefile: fix build
94a2160061f4f snyk: 1.1295.3 -> 1.1295.4 (#385489)
750aa0bbb49c5 circt: 1.106.0 -> 1.107.0 (#385568)
499c127f6af1c sdkmanager: 0.6.8 -> 0.6.11 (#385699)
8b79e0428446a nodejs_18: 18.20.6 -> 18.20.7 (#383613)
213f53ff67d9c nzbget: 24.5 -> 24.6 (#385159)
fc25dc16a8085 dbgate: 6.1.0 -> 6.2.0 (#383381)
d1567901bc74b melodeon: 0.4.3 -> 0.4.4 (#382846)
9051207505502 flaca: 3.2.0 -> 3.2.3 (#382829)
41bae9cef253b jjui: 0.4 -> 0.5
b9bb118646d85 gamescope: 3.16.1 -> 3.16.2 (#386531)
fb3ecbc12cb32 obs-studio-plugins.obs-replay-source: 1.6.13-unstable-2024-02-03 -> 1.8.0 (#384264)
7f6131fca6eff armTrustedFirmwareTools: 2.10.0 -> 2.12.1 (#386582)
f19aca96e1eb0 ibus-engines.table-chinese: 1.8.2 -> 1.8.3 (#384140)
ed8c0dc92c4b5 heroic-unwrapped: 2.15.2 -> 2.16.0 (#386424)
4d753be4b19c3 multiviewer: 1.36.2 -> 1.38.1 (#385201)
f3741489a0f76 surrealist 3.1.9 -> 3.2.4 (#384983)
05e7981ee3343 razergenie: 0.9.0 -> 1.2.0 (#384900)
4425fbfe0c01f sql-studio: 0.1.32 -> 0.1.35 (#384699)
1db422e9f1d5d rappel: unstable-2019-09-09 -> 0-unstable-2024-03-07 (#384613)
f3e48147b14f0 qdrant: 1.12.1 -> 1.13.4 (#384456)
216194c8041b7 obs-studio-plugins.obs-source-clone: 0.1.4-unstable-2024-02-19 -> 0.1.5 (#384267)
d00cad3b4a10f obs-studio-plugins.obs-scale-to-sound: 1.2.3 -> 1.2.4 (#384265)
5bbf5aafd55dc electron-bin: remove leftover logic (#386073)
6f3a8909f6e6b jdom: add sourceProvenance to metadata (#386276)
dd5d63872d1ff python312Packages.wolf-comm: 0.0.19 -> 0.0.21
885ba7c2919a8 snapmaker-luban: 4.14.0 -> 4.15.0 (#385981)
40702a1c7a183 scorecard: 5.0.0 -> 5.1.1 (#385696)
7972442a9e739 treewide: `finalAttrs.doCheck` -> `finalAttrs.finalPackage.doCheck`
482f013748ffb troubadix: 25.2.0 -> 25.2.4
4305ff261e1e9 tt-rss: 0-unstable-2025-02-08 -> 0-unstable-2025-02-26
7ea4c86c907df flare-signal: 0.15.9 -> 0.15.12
8d2c754859d80 libdeltachat: 1.156.1 -> 1.156.2
a62aa5ae8d12f armTrustedFirmwareTools: 2.12.0 -> 2.12.1
021ca2c9fb878 tideways-daemon: 1.9.32 -> 1.9.34
aeaabd5b12c19 treewide: remove orphaned Cargo.lock files
2075894398f3e emacs: default to 30 (#386348)
04eba48cc8e30 terraform-providers.azurerm: 4.19.0 -> 4.21.1
9afb75059b269 python313Packages.swisshydrodata: fix build (#386546)
f8e4e5a403557 python3Packages.isbnlib: propagate setuptools (#386550)
11bbea6a257cf python313Packages.tlds: 2024092600 -> 2025022800 (#386553)
d8d33bb439adb seamly2d: 2022-08-15.0339 -> 2025.2.24.204 (#385707)
30979186758b4 _1oom: 1.11 -> 1.11.1 (#385585)
ead67d4289dbf samplv1: 0.9.23 -> 1.3.0 (#385428)
92f5ad204a9e9 revolt-desktop: 1.0.6 -> 1.0.8 (#385291)
ac6ee550a6863 matrix-hookshot: 6.0.2 -> 6.0.3 (#385385)
c442cf086d568 whalebird: 6.1.0 -> 6.2.0-unstable-2025-02-26 (#385318)
d933912440c10 quickjs-ng: 0.6.1 -> 0.8.0 (#384400)
6934c6eda57ea raze: 1.10.2 -> 1.11.0 (#384427)
c4b1fa4ed3f08 bililiverecorder:2.13.0 -> 2.15.1 (#382381)
de6ce2521dcd0 nicotine-plus: 3.3.7 -> 3.3.8; refactor to remove rec (#384984)
ceb555164014e python313Packages.django-bootstrap{3,4,5}: 25.1 -> 25.1 (#386557)
d68ef1b1ce1d0 golink: 0-unstable-2024-01-26 -> 1.0.0 (#378928)
77999d0e4cbed crystal-dock: 2.7 -> 2.8 (#386530)
6764829270d5e python313Packages.msmart-ng: 2025.2.1 -> 2025.2.2 (#386565)
fdd6e7103226b spf-engine: 3.0.4 -> 3.1.0 (#386066)
30ef5b9c30d4e slumber: 3.0.0 -> 3.0.1
aa9327be8888c smile: 2.9.5 -> 2.10.1 (#385971)
0aec7a4f507a3 kbibtex: add temporary patch to allow compilation with icu version 76 (#385778)
ff57751a72e65 pretix: relax django-boostrap3 constraint
bb21d03a82592 b3sum: 1.6.0 -> 1.6.1
28f656d0f6c66 celeste: adjust librclone-sys path (#384996)
2d9a469c369ab python313Packages.django-js-asset: 3.0.1 -> 3.1 (#386561)
e4bb855cdcdfc svu: 3.0.0 -> 3.1.0
4967f4ff4931a home-assistant-custom-components.midea_ac: 2025.2.1 -> 2025.2.3
4924e708ccbda python313Packages.msmart-ng: 2025.2.1 -> 2025.2.2
83c878262e35e python313Packages.django-bootstrap5: 24.3 -> 25.1
036fc16918587 drum-machine: 1.0.0 -> 1.3.1
8b350ec6590f3 python313Packages.django-bootstrap3: 24.3 -> 25.1
a7b99dda99edb python313Packages.django-js-asset: 3.0.1 -> 3.1
aab3095cdce7d libretro-shaders-slang: 0-unstable-2025-02-14 -> 0-unstable-2025-02-27
79c03bceb16d3 spade: migrate to useFetchCargoVendor
79e82b5b85f16 pretalx: drop django-bootstrap4 dependency
706283d8513ce python313Packages.django-bootstrap4: 25.1 -> 25.1
d998995cbb3f5 python313Packages.wfuzz: fix build
7540c3a2f6852 snx-rs: 3.0.6 -> 3.1.0
6bce45cbdb5df tidgi: 0.9.6 -> 0.12.1
1c447f37049d1 python313Packages.tlds: 2024092600 -> 2025022800
5ca1ebd85cb99 python3Packages.isbnlib: propagate setuptools
123dff69d2b16 gajim: 1.9.5 -> 2.0.0, nbxmpp 5.0.4 -> 6.0.0 (#386444)
ce79cddc61465 python313Packages.aiodocker: fix build
e60d109743421 tbls: 1.80.0 -> 1.82.0 (#386442)
f5a7af8399eb8 flightgear: 2020.3.19 -> 2024.1.1 (#386331)
cf8f342cf9c0f python313Packages.swisshydrodata: fix build
c8d916bc7d88d gzdoom: 4.14.0 -> 4.14.1 (#386525)
283faf873c6c4 livekit: 1.8.3 -> 1.8.4
0fc0b1b698780 python313Packages.django-cachalot: fix build
0a1cb045b175f heroic: add umu-launcher to fhsEnv
1a142a02e3edc matrix-authentication-service: 0.13.0 -> 0.14.1 (#386314)
85451e334d9e0 terraform-providers.oci: 6.26.0 -> 6.28.0
a34a121a3efd4 mkBinaryCache: add release notes entry about new zstd compression by default (#386506)
9842ae7e940fc python313Packages.web: fix build
0bebb1eff8dcc glamoroustoolkit: 1.1.13 -> 1.1.14
515eb7492751c zigbee2mqtt_2: 2.1.2 -> 2.1.3 (#386517)
77fb2f71f01f9 castero: fix build
b9a45b69bca1c ccextractor: fix build
da351bad71ae5 xdg-desktop-portal-cosmic: replace `rec` with `finalAttrs`
4a3e33c9e4b20 ets: 0.3.0 -> 0.3.1
59073e08c144b sarasa-gothic: 1.0.28 -> 1.0.29
8a83a151bb74c adwsteamgtk: 0.7.2 -> 0.8.0
1b9791abf45fe upbound-main: 0.38.0-0.rc.0.29.g59359e0 -> 0.39.0-0.rc.0.80.g101d5d22 (#386388)
c0f6073f74825 cpm-cmake: 0.40.5 -> 0.40.6
8fcb6f1c49483 gamescope: 3.16.1 -> 3.16.2
dfdd4230f240d python313Packages.anybadge: fix build, modernize
c45ac80d7eafb crystal-dock: 2.7 -> 2.8
e206e510e9bc8 gzdoom: 4.14.0 -> 4.14.1
e6644282aeaac yoshimi: 2.3.3.2 -> 2.3.3.3
d92712b07bce4 rustus: 1.1.2 -> 1.1.3 (#386493)
adb168c52ec2c python313Packages.mrsqm: r4 -> v.0.0.7
9f6eead260e1e komikku: 1.70.0 -> 1.71.0
b4458d5e058ab cargo-modules: 0.22.0 -> 0.22.1
9a49850068d1c zigbee2mqtt_2: 2.1.2 -> 2.1.3
8951c02ad7806 cura-appimage: 5.9.0 -> 5.9.1
1505f2ecff639 handbrake: 1.9.0 -> 1.9.2 (#381922)
63123d3574ed0 python313Packages.hikari-crescent: fix build
e991b42b9b315 vimPlugins.blink-cmp: remove old patch and use upstream bypass method
985263df765c8 claude-code: 0.2.27 -> 0.2.29
f8b07beb6a998 python313Packages.sopel: fix build
40f691e0a5347 termius: 9.14.0 -> 9.15.2
60f9abdbf4963 mkBinaryCache: add release notes entry about new zstd compression by default
44d63babed9c1 edk2: 202502 -> 202411 (#386486)
3ebbe88a4ce56 terragrunt: 0.73.12 -> 0.73.15 (#385916)
bc28b6b4f6ed3 nixos-rebuild-ng: Fix typo in README
d96a0969fed1e google-clasp: fix build by removing dangling symlinks (#385556)
633cd02496bcf python312Packages.petsc4py: fix python installLibPath (#385915)
6160515323d43 video2x: init at 6.4.0 (#385636)
a9d9cdbffafe5 python312Packages.pytubefix: 8.12.1 -> 8.12.2
7c12d2cf89316 video2x: init at 6.4.0
7185fed383e04 rustus: 1.1.2 -> 1.1.3
079c28fb814d4 tailscale: re-enable tests
a0ec8cf1e4c36 tailscale-nginx-auth: move back to buildGoModule
b10b8846883e2 tailscale: move back to buildGoModule
c063a288356a8 nixos/tlp: fix NetworkManager RDW dispatcher script location (again)
f748da70d3808 tray-tui: 0.1.0 -> 0.2.0
1be848df711e3 edk2: 202502 -> 202411
beb9682f36d9b stgit: 2.5.2 -> 2.5.3 (#386335)
a58fbf976ca1c rio: 0.2.7 -> 0.2.8 (#386342)
ee911ff5b8f91 maven: add source provenance to metadata (#386292)
75e9d5e5cc345 gnucash: add patch to fix QIF import (#386397)
ef4d26fc58f6a offpunk: 2.4 -> 2.6 (#386422)
a894b849aa59e python313Packages.{aioweenect,aiowaqi,aiohttp-jinja2}: allow networking on darwin (#384050)
7a47bcc531f9e flexget: 3.15.7 -> 3.15.19 (#386467)
b6a6bd6be0b18 spade: 0.12.0 -> 0.13.0 (#383947)
96042c697aa08 newsflash: use fetchCargoVendor (#386477)
a3bd9d92bfaa8 python312Packages.readabilipy: fix Readability.js support (#385146)
795019b3a8347 llama-cpp: 4783 -> 4798 (#386352)
e1257eac2641c libqalculate: 5.5.1 -> 5.5.2 (#386457)
058958a07b8af diffoscope: 288 -> 289
5472f9df6216d primesieve: 12.6 -> 12.7
a396da7a08ca2 termdown: 1.17.0 -> 1.18.0
715a24daad0b8 tinymist: 0.13.2 -> 0.13.4 (#386411)
ef29c767a44e2 digiham: 0.6.0 -> 0.6.2, fix build (#384311)
0aa8a1d5edd3f tenv: 4.1.0 -> 4.2.4
242c170b76180 mariadb-galera: 26.4.21 -> 26.4.22
a3148686626e3 curv: downgrade eigen
d7fde720f41c3 ventoy-full: 1.1.01 -> 1.1.05
462768e02bb66 terraform-providers.github: 6.5.0 -> 6.6.0
9035059522182 terraform-providers.fortios: 1.21.1 -> 1.22.0
3066b43f0f065 terraform-providers.gitlab: 17.8.0 -> 17.9.0
8ad3d601b6af9 terraform-providers.cloudinit: 2.3.5 -> 2.3.6
47355aa3d03b1 newsflash: use fetchCargoVendor
6b6e72c3c9911 tinymist: 0.13.2 -> 0.13.4
ba41f18cc3572 syncthing: Install desktop entry for opening the web interface
72476d8a5ef9f bigpemu: 1.17 -> 1.18, fix metadata (#373863)
cb89114390526 stevenblack-blocklist: 3.15.17 -> 3.15.20
0323372078c2d veryl: 0.13.2 -> 0.13.5
ce87fb8088fc8 qsv: 0.138.0 -> 2.2.1 (#382472)
da52e41e2eef4 virt-top: 1.1.1 -> 1.1.2
c9b762b935da8 dcmtk: update build flags, add patches
5b6318d2727b2 flexget: 3.15.7 -> 3.15.19
428ea92d25bc6 juju: 3.6.2 -> 3.6.3 (#386153)
9d62bde8cf4e2 quarkus: 3.18.3 -> 3.19.1 (#386316)
e46f7b3ec86db curv: 0.5-unstable-2025-01-06 -> 0.5-unstable-2025-01-20
e8c6c890860af iosevka: 32.5.0 -> 33.0.0 (#386271)
3b905b4f1b6dc vscode-extensions.antfu.slidev: 0.4.1 -> 51.3.0 (#386274)
c7803bec862c4 adminer: 4.16.0 → 4.17.1 (#386294)
1f1219c892953 typos: 1.29.7 -> 1.30.0 (#386347)
4088f58a99da5 digiham: fix repo, tag, description
e2b376dfdfd4a zizmor: 1.3.1 -> 1.4.1 (#386165)
3a0844fbab699 linux_xanmod, linux_xanmod_latest: 2025-02-27 (#385377)
ab23320d2d262 linux/hardened/patches/6.13: init at v6.13.5-hardened1
607d955e2ae1c linux/hardened/patches/6.12: v6.12.12-hardened1 -> v6.12.17-hardened1
4ed62fb7e281f linux/hardened/patches/6.6: v6.6.75-hardened1 -> v6.6.80-hardened1
b2bcab69157b6 linux/hardened/patches/6.1: v6.1.128-hardened1 -> v6.1.129-hardened1
79049ef759178 flightgear: 2020.3.19 -> 2024.1.1
9241892ee12f4 frida-python: support aarch64-{darwin,linux}, x86_64-darwin (#371232)
0d6bfc924eab6 vscode-extensions.fstarlang.fstar-vscode-assistant: init at 0.17.1 (#385058)
975b56a8be8f4 convmv: 2.05 -> 2.06 (#385956)
141d29af7d5a3 libqalculate: 5.5.1 -> 5.5.2
51037fd434106 otb: fix build for unstable branch (#383071)
7d9aad8339e93 yazi-unwrapped: 25.2.26 -> 25.3.2 (#386399)
56911820a7d46 vscode-extensions.fstarlang.fstar-vscode-assistant: init at 0.17.1
321c59069b90d luau: 0.661 -> 0.662 (#385814)
437bbd6388020 handbrake: 1.9.0 -> 1.9.2
359c7c943c705 python3Packages.dragonmapper: init at 0.2.7 (#335514)
0de72b58d21ac puncia: 0.27 -> 0.29 (#386299)
b03a118742cc3 python312Packages.pyixapi: 0.2.3 -> 0.2.5 (#385115)
b009272d92590 python312Packages.griffe: 1.5.7 -> 1.6.0 (#386113)
ca6948e78a150 python312Packages.narwhals: 1.26.0 -> 1.28.0 (#386117)
ab3d39aebe46c lacus: 1.12.0 -> 1.13.0 (#386379)
fce47081bc70d maintainers: add parrot7483
1fd39892398c7 phpExtensions.openswoole: mark as broken on 8.1 (#386446)
7ad4098df0404 immich.geodata: fix hash (#386435)
ce76a6c4f73e0 frida-python: support aarch64-{darwin,linux}, x86_64-darwin
9dd4beece937f pmtiles: 1.25.1 -> 1.25.3 (#386418)
2bb86d54bf059 python312Packages.azure-ai-vision-imageanalysis: init at 1.0.0b3
dc5a24b7faede owocr: init at 1.7.5-unstable-2024-06-26
35840986b6f99 python312Packages.winctl: init at 0.4
d45e32544ae74 python312Packages.winbox: init at 0.7
1910f6e07242c python312Packages.pymonctl: init at 0.92
add69bfc4e0a1 python312Packages.ewmhlib: 0.2
9c2919e7c813e python312Packages.pyperclipfix: init at 1.9.4-unstable-01-23
1f70a34c85dbb phpExtensions.openswoole: mark as broken on 8.1
19e55f18d55fc sdl3: 3.2.2 -> 3.2.6, fix version regex
d1af4541b7174 Fix Gajim GTK
d60eb459c059e Update gajim to 2.0.0
a4f3cf9cf5f24 Update nbxmpp to 6.0.0
de26325e054f7 fake-gcs-server: init at 1.52.2
c1db388166b95 tbls: 1.80.0 -> 1.82.0
2ffed2bc3d278 python312Packages.gradio: 5.11.0 -> 5.20.0 (#382974)
172dc33176752 symmetrica: 3.0.1 -> 3.1.0 (#386389)
4347ffbee0581 emacs-pgtk: init at 30.1
60904e8b2a9ee emacs: bump default version to latest stable release 30.1
f613377b44e8d emacs: let hydra not build epkgs to speed up bumping default Emacs
9b8a2204c4ff7 driversi686Linux.amdvlk: 2025.Q1.1 -> 2025.Q1.2
78f5404eb7c70 python312Packages.gradio-pdf: 0.0.19 -> 0.0.22
0de1ae02205cc python312Packages.gradio: 5.11.0 -> 5.20.0
f7f0434d2912c python312Packages.gradio-client: 1.5.3 -> 1.7.2
bc0e5c9d9a8da python312Packages.groovy: init at 0.1.2
e900029fd433d immich.geodata: fix hash
2a535d1a587aa home-assistant-custom-components.localtuya: 2025.2.1 -> 2025.3.0 (#386405)
831de6188949a rust-analyzer-unwrapped: 2025-02-10 -> 2025-02-24 (#386295)
6f134e29ca289 python312Packages.readabilipy: fix Readability.js support
ed0a92c735e65 desktopToDarwinBundle: use ARGB format
0d84998d5f285 home-assistant-custom-lovelace-modules.universal-remote-card: 4.3.10 -> 4.3.12 (#386432)
09b22eb8a65f6 i810switch: fix build on gcc-14 & modernize (#384245)
daad793b6c0f2 home-assistant-custom-lovelace-modules.universal-remote-card: 4.3.10 -> 4.3.12
2f934679d0efc mycli: 1.27.2 -> 1.29.2 (#384241)
2d2d00d38f3ee localsend: 1.16.1 -> 1.17.0 (#383751)
96e91a296648e nicotine-plus: refactor to remove rec
c86a0f763c699 nicotine-plus: 3.3.7 -> 3.3.8
0bb63e32c3484 ghidra, ghidra-bin: 11.3 -> 11.3.1 (#383479)
222ef81b8637b gpu-screen-recorder: 5.0.0 -> 5.2.0; gpu-screen-recorder-gtk: 5.1.2 -> 5.1.6 (#382624)
92a6233df6c38 renode-unstable: 1.15.3+20250214git71a264d7b -> 1.15.3+20250227git5f21d12f9
6d9aa3deffbbe gridcoin-research: 5.4.8.0-hotfix-1 -> 5.4.9.0 (#382469)
1ba4003908d7c cmake-language-server: 0.1.10 -> 0.1.11 (#381274)
03a4ee10c7a50 dart-sass: 1.85.0 -> 1.85.1 (#386067)
ff830af84f7e9 godot3: 3.5.2 -> 3.6 (#385844)
a3426aa6d4387 lunatask: 2.0.16 -> 2.0.18, switch to nix-update-script (#385622)
047dde4a9471c gnucash: add patch to fix QIF import
f5b09895b86b8 subversion: remove obsolete Darwin cruft (#371316)
d034ac5d2a30d offpunk: Remove platform restriction
2280106474939 offpunk: 2.4 -> 2.6
ba128c818e19c heroic-unwrapped: 2.15.2 -> 2.16.0
cba2e26f918e0 python3Packages.sphinx-markdown-builder: init at 0.6.8
f19139966aab1 arduino-cli: 1.1.1 -> 1.2.0 (#385421)
ad5c483a782c0 limine: 9.0.0 -> 9.0.1 (#386410)
7c9967713b951 rset: 2.1 -> 3.2 (#385404)
d076ed4671d57 clash-verge-rev: 2.0.3 -> 2.1.2 (#385142)
eaab7c29342f4 rpi-imager: 1.8.5 -> 1.9.0 (#385381)
831b99cf9084b cosmic-launcher: 1.0.0-alpha.5.1 -> 1.0.0-alpha.6 (#385113)
0abf2d4af74d5 clifm: 1.23 -> 1.24 (#386376)
fb76f8ba30f3f pipenv-poetry-migrate: 0.6.1 -> 0.6.2
df879052393c1 librep: fix build on gcc-14 & modernize (#384557)
50ace76e933fe fuse-archive: 0.1.14 -> 1.10 (#384994)
37691e0e64c99 cwtch-ui: 1.15.4 -> 1.15.5 (#384908)
4efa6c87efe8c pmtiles: 1.25.1 -> 1.25.3
0f0e3b3b5ca1c oterm: 0.8.3 -> 0.9.1 (#384885)
7ca3f7be2fc8a goku: 0.7.2 -> 0.8.0 (#384578)
7c9f14f9f4579 aerospace: 0.16.2-Beta -> 0.17.1-Beta (#384558)
e185f36c71f90 lightburn: 1.7.04 -> 1.7.06 (#383906)
562ffeb27da1f prover9: fix build on GCC 14 (#384533)
5417b6f558a23 radamsa: 0.6 -> 0.7 (#384451)
254417cf7fec3 scorecard: 5.0.0 -> 5.1.1
384ebbce42321 variety: 0.8.12 -> 0.8.13 (#386131)
973f5a79f7c4c ayugram-desktop: 5.10.3 -> 5.11.1 (#386201)
6c6a30ff3d79b smokeping: 2.8.2 -> 2.9.0 (#385974)
16079e1230067 vrcx: 2025.01.31 -> 2025.03.01 (#385950)
c6dd4ab3b0a17 sourcery: 1.23.0 -> 1.35.0 (#386054)
943a281470a0f termsonic: 0-unstable-2024-09-15 -> 0-unstable-2025-01-07 (#385887)
296f2b9f6615f sqlite-jdbc: 3.25.2 -> 3.49.1.0 (#386121)
3ba35e3ea220c sigil: 2.0.1 -> 2.4.2 (#385949)
53cdf1b8849ab sticky-notes: 0.2.5 -> 0.2.6 (#385986)
b8e973da78ff3 liferea: 1.16-RC1 -> 1.16-RC2
0cede075bbc87 jellyfin-tui: 1.1.2 -> 1.1.3 (#386094)
bb952f5ff0775 claude-code: 0.2.19 -> 0.2.27 (#385851)
c171fa6962537 go-judge: 1.8.9 -> 1.9.0 (#385958)
01057878704f7 koboldcpp: 1.84.2 -> 1.85 (#386179)
8af0a5abfd816 dependency-track: don't bundle frontend in jar
28e18569a4f3a nixosTests.dependency-track: increase memorySize to fix test
ced84b20301d3 sharedown: 5.3.1 -> 5.3.6 (#385852)
eb91a67c345d7 limine: 9.0.0 -> 9.0.1
4398daadc337f segger-ozone: 3.30b -> 3.38c (#385813)
cd050d2385f12 snapmaker-luban: 4.14.0 -> 4.15.0
d87aa95ac9a9b icewm: 3.7.0 -> 3.7.1 & fix icon-less start menu entries (#386156)
c8364760c7388 home-assistant-custom-components.localtuya: 2025.2.1 -> 2025.3.0
de9a81da68885 warp-terminal: 0.2025.02.19.08.02.stable_05 -> 0.2025.02.26.08.02.stable_02 (#386115)
18112e6aa1394 meshlab: support gltf (#386130)
914ed053f8385 ronin: 2.1.0 -> 2.1.1 (#385806)
27127eb4a106c python312Packages.petsc4py: fix python installLibPath
79086fad6412b wcurl: 2024.12.08 -> 2025.02.24 (#385651)
24ce065e4c4d7 p4est: use mpiCheckPhaseHook (#385898)
fd19e10b526f2 yazi-unwrapped: 25.2.26 -> 25.3.2
683f1556544b6 sudo-rs: 0.2.3 -> 0.2.4 (#385039)
add622aa3c47b pythonPackages.pyvows: init at 3.0.0
0b483037f7209 nixos/synapse-auto-compressor: init
5427fe1b9e88b python312Packages.gradio: disable failing tests on darwin
a737e541acae1 incus-ui-canonical: 0.14.7 -> 0.15.0
d7cd4f34717ba incus-ui-canonical: add updateScript
e7348801ed015 nixos/dendrite: rename settings.sync_api.search.enable option to settings.sync_api.search.enabled
af6f06905fe4e incus: 6.9.0 -> 6.10.0
7834e70bf1ced syncterm: 1.1 -> 1.6
4dd843d2acb14 terraform-providers.auth0: 1.12.0 -> 1.13.1 (#386372)
2a0bde2bc726c cfspeedtest: 1.3.0 -> 1.3.1 (#386375)
68574ccb19ec2 prometheus-pve-exporter: 3.5.1 -> 3.5.2 (#386378)
30fd93ff65081 symmetrica: 3.0.1 -> 3.1.0
eb18d848e81b2 suitesparse-graphblas: 9.4.4 -> 9.4.5 (#386334)
4a6ba2ae95e54 files-cli: 2.13.247 -> 2.13.251 (#386351)
44c2eacde3134 qqmusic: init at 1.1.5 (#312961)
2510e24d56780 kubeshark: 52.4.2 -> 52.5.0 (#386298)
fd048d3c0593a cargo-nextest: 0.9.91 -> 0.9.92 (#386324)
c88fb01079fa0 vale: 3.9.5 -> 3.9.6 (#386302)
7f3255554f823 qownnotes: 25.2.7 -> 25.2.9 (#386310)
f14f02ff3af1f strip-tags: 0.5.1 -> 0.6 (#386312)
1fe268725248d python312Packages.sqlalchemy-json: refactor (#373361)
bd922233e7a2f duperemove: 0.15 -> 0.15.1 (#386269)
a93b53521ebd7 terraform-providers.temporalcloud: 0.6.0 -> 0.6.1 (#386290)
f30770049c260 python312Packages.great-tables: 0.15.0 -> 0.16.1 (#386229)
a093f9a8802f7 erg: 0.6.51 -> 0.6.52 (#386231)
9a367711e0ef5 google-lighthouse: 12.3.0 -> 12.4.0 (#386239)
5b06204e118b9 minio-client: 2025-02-08T19-14-21Z -> 2025-02-21T16-00-46Z (#386240)
643257c437b3a swi-prolog: 9.2.7 -> 9.2.9
52d400f7d6e57 dbip-{country,city,asn}-lite: 2025-02 -> 2025-03 (#386195)
abb71f4822c6c scooter: 0.2.3 -> 0.3.0 (#386210)
801ddf8b2e236 upbound-main: 0.38.0-0.rc.0.29.g59359e0 -> 0.39.0-0.rc.0.80.g101d5d22
2ffb7a125f093 python312Packages.qbittorrent-api: 2024.12.71 -> 2025.2.0 (#386218)
e49652a0c62a6 rke: 1.7.2 -> 1.7.3 (#386220)
d1925ca479ac3 stripe-cli: 1.24.0 -> 1.25.0 (#386221)
96ed6e432b8fa marwaita-icons: dontWrapQtApps (#386236)
ba78e71053479 python312Packages.cohere: 5.13.12 -> 5.14.0 (#386160)
d24d0c6fafc68 gallery-dl: 1.28.5 -> 1.29.0 (#386177)
c5f894cf130ef swc: 0.91.369 -> 0.91.495
ed7f817ad0f32 otb: 9.1.0 -> unstable
f957ee47033b0 got: 0.108 -> 0.109 (#386178)
2a9d43ed175df alt-tab-macos: 7.20.0 -> 7.21.1 (#386180)
ad8dfff2dd96c buildPythonPackage: add and use lib inheritance
4aeb7229b3275 moon: 1.32.5 -> 1.32.7 (#386181)
11b08cf75138e hawkeye: 6.0.1 -> 6.0.2 (#386185)
be163e3b13b08 bpf-linker: 0.9.13 -> 0.9.14 (#386186)
58e5e90008f17 misconfig-mapper: 1.13.5 -> 1.13.7 (#386188)
d71218e749fa3 python312Packages.python-debian: 0.1.49 -> 0.1.52 (#386190)
f2cbc7da9e078 buildPythonPackage: sort lib inheritance
d7d8b0bfc7cc8 v2ray-domain-list-community: 20250216152937 -> 20250227085631 (#386194)
be3139b48a0eb terraform-providers.google-beta: 6.20.0 -> 6.23.0 (#386118)
d44dddf4128c2 rmg-wayland: 0.7.5 -> 0.7.6 (#386119)
d91b4bf30c090 starboard: 0.15.23 -> 0.15.24 (#386120)
2aa22b5edc43c buildPythonPackage: remove obsolete lib inheritance
ee2b7bafb575a stats: 2.11.31 -> 2.11.32 (#386122)
79419e0f463ea zef: 0.22.7 -> 0.22.8 (#386123)
e8fb039565ce1 sqlpage: 0.32.1 -> 0.33.1 (#386128)
d977ebde095e4 kumactl: 2.9.3 -> 2.9.4 (#386138)
70322e2fa27f5 buildPythonPackage: format expression
6955d1cbb7825 v2rayn: 7.8.3 -> 7.10.0 (#386141)
31104f427e0e0 swayws: 1.2.0 -> 1.3.0
6ae4d304bf3cc brave: 1.75.180 -> 1.75.181 (#386144)
5c7825496b2e7 python312Packages.compressed-tensors: 0.9.1 -> 0.9.2 (#386146)
127559ab27549 linuxKernel.kernels.linux_zen: 6.13.4-zen1 -> 6.13.5-zen1, linuxKernel.kernels.linux_lqx: 6.12.16-lqx1 -> 6.13.5-lqx1 (#386308)
a89b4fe7a43c2 lacus: 1.12.0 -> 1.13.0
a46f8c8cbcd7f prometheus-pve-exporter: 3.5.1 -> 3.5.2
2fa3e4422a353 maintainers/teams: explicitly specify a list of members (#385792)
c9472b3a93af4 otb: update otb-itk 4.13 -> 5.3
59cb218115a05 clifm: 1.23 -> 1.24
a3d898c2c89ce clash-verge-rev: 2.0.3 -> 2.1.2
bd23fa0e826ce cfspeedtest: 1.3.0 -> 1.3.1
47023a96abb1d maintainers/teams: explicitly specify a list of members
5632647cdd2e3 fluent-icon-theme: 2024-02-25 -> 2025-02-26 (#385411)
7d6a47edf82ed terraform-providers.auth0: 1.12.0 -> 1.13.1
4c02921df9047 uniex: init at 0.1.6 (#371096)
8c24392a88c7a todesk: bind tmpfs on /opt/todesk (#383023)
f614d214c2a95 python312Packages.safetensors: 0.5.2 -> 0.5.3 (#385210)
37eeb01fbfd59 wikit: init at 4.4-unstable-2022-10-17 (#359439)
b5f8b18d89ce8 hugo: 0.143.1 -> 0.145.0, adopt (#386133)
ebcdd5142df39 vue-language-server: 2.2.0 -> 2.2.2 (#383624)
48848c773b2b2 waypipe: 0.10.2 -> 0.10.3
4a565d6b1fa93 todesk: bind tmpfs on /opt/todesk
b58e19b11fe72 beetsPackages.audible: init at 1.0.0 (#362827)
a66f6b266547d wikit: init at 4.4-unstable-2022-10-17
e28794fb2826d worldpainter: init at 2.23.2 (#323644)
d5465afa22453 mmj2: init at 2.5.2-unstable-2023-06-27 (#265991)
3010c36f3e132 shot-scraper: 1.6 -> 1.7
8078889a4f7bd uniex: init at 0.1.6
ef8cfa473c30d epson_201207w: 1.0.0 -> 1.0.1 (#379773)
a2d690a2cf383 beam: fix locale errors on darwin (#386233)
9c19f3f33de0f teamspeak6-client: rename the desktop entry (#385586)
7daee98dd8553 libphonenumber: 8.13.53 -> 8.13.55 (#378175)
fcf0d30bcc466 files-cli: 2.13.247 -> 2.13.251
323cd2cf6ef7b llama-cpp: 4783 -> 4798
337938307036e typos: 1.29.7 -> 1.30.0
71601a7874469 opencpn: use wrapGAppsHook3
f176582204e09 python3Packages.urlmatch: init at 1.0.0 (#384439)
c8dad6e2b1dc7 wemeet: init at 3.19.2.400 (#379095)
c78f8a4d519e8 rio: 0.2.7 -> 0.2.8
3fd7b37b3c40c kew: 1.5.2->3.0.3, darwin support, add darwin maintainer, derivation cleanup (#386250)
3e353b5473bf4 conmon: 2.1.12 -> 2.1.13 (#385141)
51ff0ade3b217 kermit: fix build
53370ca116c20 git-machete: 3.32.1 -> 3.33.0 (#383793)
92325980f8976 nbdkit: 1.40.4 -> 1.42.0 (#381859)
5c806f3a6ebbe katago: remove cudatoolkit from deps (#386336)
abed2b7b9289d katago: remove cudatoolkit from deps
0c2bb58465bf3 kew: nix-rfc-format
af05d750e0530 kew: updateScript, install and version checks
1af904c5b75c1 kew: with lib; and derivation cleanup
9a9f331ee51c0 kew: add matteopacini as darwin maintainer
d4a61733e8591 kew: 1.5.2->3.0.3, darwin support
d17d3378d5caa stgit: 2.5.2 -> 2.5.3
1f8ad263c01ee suitesparse-graphblas: 9.4.4 -> 9.4.5
63045b429f1b6 stm32cubemx: fix missing icon
28aa290145892 nixos/h2o: add access to listen.host
dcee208a31f13 nixos/h2o: provide a settings example
8b5aaaee539b3 swayfx-unwrapped 0.4 -> 0.5; scenefx 0.1 -> 0.2.1 (#385660)
4aa836d718b7d jetbrains: fix brokenPlugins hash (#386275)
6e7d50c88c966 basedpyright: 1.28.0 -> 1.28.1
9f17717b7fbda simgear: 2020.3.19 -> 2024.1.1
67a49c434ee99 python312Packages.craft-application: 4.9.1 -> 4.10.0 (#386305)
f661441c3f155 flet-client-flutter: 0.26.0 -> 0.27.4
d51f4c5bc18ef ente-web: 0.9.97 -> 0.9.98
457a59136e8a5 guesswidth: init at 0.4.0
dc1bccd2b1421 cargo-nextest: 0.9.91 -> 0.9.92
8caf4f8230950 affine: 0.20.2 -> 0.20.3
ed22fbec7263e pgscv: init package + module (#386064)
80b437dfa7200 nixos/pgscv: init
7cc85f9cf8ca8 pgscv: init at 0.13.0
4b65b85990a7b qt6.qtmqtt: 6.8.1 -> 6.8.2 (#386193)
c1c66514abf5d quarkus: 3.18.3 -> 3.19.1
f6b7361fc0350 syn2mas: 0.14.0 -> 0.14.1
f7957a47b376a libvmi: 0.14.0-unstable-2024-11-06 -> 0.14.0-unstable-2025-02-27 (#386303)
dd818178b7609 matrix-authentication-service: 0.13.0 -> 0.14.1
90912f41701c5 strip-tags: 0.5.1 -> 0.6
228ff38be73a1 yazi-unwrapped: fix update script; use finalAttrs (#385409)
b5c12d9ad20e0 qownnotes: 25.2.7 -> 25.2.9
c98cf154e81f3 linuxKernel.kernels.linux_lqx: 6.12.16-lqx1 -> 6.13.5-lqx1
4d4555c14a717 nss_latest: 3.108 -> 3.109 (#386166)
fdf74128b08d9 linuxKernel.kernels.linux_zen: 6.13.4-zen1 -> 6.13.5-zen1
eb187b9630f0b python312Packages.craft-application: 4.9.1 -> 4.10.0
018ae91af69e5 libvmi: 0.14.0-unstable-2024-11-06 -> 0.14.0-unstable-2025-02-27
348c6bfd7d903 maven: add source provenance to metadata
e15ca31dad4aa vale: 3.9.5 -> 3.9.6
c180308891232 mitra: 3.16.0 -> 3.18.0
00c067eb72350 puncia: 0.27 -> 0.29
a161e0dfba50c rustscan: 2.3.0 -> 2.4.1 (#384643)
9c0f251b20c17 kubeshark: 52.4.2 -> 52.5.0
f22d0b85d867f adminer: 4.16.0 → 4.17.1
dd66961340c5f rust-analyzer-unwrapped: 2025-02-10 -> 2025-02-24
c93efd471907b immich: update geonames hash and allow overriding of sourcesJSON (#386137)
fbbcae334975e terraform-providers.temporalcloud: 0.6.0 -> 0.6.1
3ff12aaaaf8d7 python3Packages.urlmatch: init at 1.0.0
dce71cf375b46 evcc: 0.200.4 -> 0.200.5 (#386183)
eb317d0ce3c90 scalafmt: 3.7.17 -> 3.9.2
f35bf8ee25d1d jetbrains: fix brokenPlugins hash
b33050cf0de0f jdom: add sourceProvenance to metadata
652d0c02bfe6b vscode-extensions.antfu.slidev: 51.2.2 -> 51.3.0
900110b847ce0 eduvpn-client: change repository to codeberg.org (#386136)
fd1a079c88842 vscode-extensions.antfu.slidev: 0.4.1 -> 51.2.2
77cdb20a97561 iosevka: 32.5.0 -> 33.0.0
bd7b5e245b034 duperemove: 0.15 -> 0.15.1
cdf29635ffee7 python312Packages.safetensors: 0.5.2 -> 0.5.3
8bf44b3e8815d podman-desktop: 1.13.2 -> 1.16.2
e537703c621ec tailspin: fix build and refactor (#385327)
13d04a55b69ec clorinde: 0.12.1 -> 0.13.1 (#385132)
afa3302ca849d octodns-cloudflare: init at 0.0.9 (#383034)
1ab5bf7f6c1d2 wails: 2.9.2 -> 2.10.1
a7dee58c3909b maintainers: add ret2pop
3a24073022aff octodns-cloudflare: init at 0.0.9
f03be67abe736 mangayomi: 0.3.8 -> 0.5.2
4ed8d70fbe3bc python312Packages.openai-whisper: cleanup & skip test crashing on aarch64-linux (#386259)
bcd7c3e4dcc7b python312Packages.openai-whisper: cleanup & skip test crashing on aarch64-linux
f03c983c83471 ada: 3.1.2 -> 3.1.3 (#386197)
4697d9df2d1cf python312Packages.xgrammar: 0.1.11 -> 0.1.14 (#386255)
9225072017ae2 python312Packages.xgrammar: 0.1.11 -> 0.1.14
3996a40a27b07 python312Packages.whenever: 0.6.17 -> 0.7.2 (#386151)
bcad08fff4ef6 python312Packages.flask-session: cleanup & fix on darwin (#385237)
18ec0b83ba5c5 podman-tui: 1.3.1 -> 1.4.0 (#386085)
b32bb86a454fc python312Packages.dukpy: mark as broken on clang (#386247)
3dd7a79594cb3 mattermostLatest: 10.5.0 -> 10.5.1 (#385932)
f82b910f02486 python312Packages.dukpy: mark as broken on clang platforms
da297a598802a python312Packages.flask-session: cleanup & fix on darwin
0de1d18795089 lib.types.functionTo: preserve functionArgs
e8d7d41626766 marimo: 0.11.8 -> 0.11.13
2f9286da9cf57 emilua: 0.10.1 -> 0.11.1, update plugins (#385926)
a293bbb210775 beam: fix locale errors on darwin
04056452a3397 python312Packages.python-telegram-bot: 21.10 -> 21.11.1
c92984b60d9c6 signal-cli: 0.13.12 -> 0.13.13 (#385798)
d491e9b2fada2 signal-cli: add meta.sourceProvenance
160f20b0a8979 mlkit: set dontCheckForBrokenSymlinks (#385089)
3fcc133470b5c lazygit: 0.47.2 -> 0.48.0 (#386002)
c8e9345ee83b2 python312Packages.docling-core: 2.19.1 -> 2.21.1
8ae6b06dc99b5 lzwolf: drop
616bf7f312300 python312Packages.para: disable tests on darwin (#386109)
4ff53a845f7b3 google-lighthouse: 12.3.0 -> 12.4.0
6fb1f5ba620b7 xterm: format, add musl test (#384027)
f4078f4b531de emacs: mark version < 30 as insecure and tell users to use emacs30 (#386174)
5ced6b8f8bb25 minio-client: 2025-02-08T19-14-21Z -> 2025-02-21T16-00-46Z
b7d381a4b6051 home-assistant-custom-lovelace-modules.mushroom: 4.3.0 -> 4.3.1
e5fad5185b76e home-assistant-custom-lovelace-modules.mushroom: 4.2.1 -> 4.3.0 (#385907)
46335808911dd firebase-tools: 13.30.0 -> 13.32.0
361c15942b211 marwaita-icons: dontWrapQtApps
e82b2d6601dcf zigbee2mqtt_2: 2.1.1 -> 2.1.2 (#386227)
0a2e4c1f55f02 python312Packages.mwxml: disable failing test on darwin
2b0c931ffcee8 python312Packages.jax[lib]: 0.5.0 -> 0.5.1 (#384879)
0707e1724f6dc erg: 0.6.51 -> 0.6.52
71e3d9eb5e638 python312Packages.langgraph-checkpoint-sqlite: 2.0.2 -> 2.0.5
9bda9c3af3041 python312Packages.langgraph-checkpoint-postgres: 2.0.13 -> 2.0.15
81501ab26c118 python312Packages.langgraph-checkpoint: 2.0.10 -> 2.0.16
0cf6f144e8ecc python312Packages.langgraph-cli: 0.1.71 -> 0.1.74
883617b008012 python3Packages.langgraph-sdk: 0.1.51 -> 0.1.53
1b2a6f81f0093 python312Packages.langgraph: 0.2.70 -> 0.3.2
2f0c9948ef95c dcap: fix and enable strictDeps (#375261)
ae35b3d39f4d8 python312Packages.great-tables: 0.15.0 -> 0.16.1
6b15311eb5da5 zigbee2mqtt_2: 2.1.1 -> 2.1.2
f90fbe9ee4cd0 mlkit: set dontCheckForBrokenSymlinks
42b311198748f python312Packages.oryx: mark as broken
3f03580b9a260 distant: fix on aarch64-linux, modernize (#386217)
5290d34457619 pleroma: 2.8.0 -> 2.9.0 (#386189)
7494927588666 distant: modernize
03916a2f78286 distant: fix on aarch64-linux
d418a0554e502 stripe-cli: 1.24.0 -> 1.25.0
53ed00e09614e python312Packages.docling-parse: 3.3.1 -> 3.4.0
70dfdded90a13 dcap: fix and enable strictDeps
c8e205cd8ccaa rke: 1.7.2 -> 1.7.3
22d52eb361834 dosage-tracker: 1.8.3 -> 1.9.1 (#382940)
8a5838e41adc7 python312Packages.qbittorrent-api: 2024.12.71 -> 2025.2.0
4fac92529970a nixos/cloudflare-dyndns: fix missing home error
4ced3f50ec26e scooter: 0.2.3 -> 0.3.0
bde0806cd9150 python312Packages.craft-archives: relax depdendency on python-debian
9462340b68eff python312Packages.python-debian: disable tests failing on darwin
e4331b5e6d746 ayugram-desktop: 5.10.3 -> 5.11.1
a9b96f5dce9c1 ubports-click: add missing dependency on chardet
50696930b4bab rails-new: init at 0.5.0
2d1fce7ff96eb emacsPackages.elpaca: 0-unstable-2025-02-07 -> 0-unstable-2025-02-16
b18701a77fe95 neomutt: adopt, bump, add metadata, move to by-name (#384297)
18f5ab940abe0 xdg-desktop-portal-cosmic: fix service execution
86d8bf9b8094d ada: 3.1.2 -> 3.1.3
bd2e0b9a36031 xdg-desktop-portal-cosmic: add HeitorAugustoLN as a maintainer
a24be4d8d570b python312Packages.distrax: disable flaky test
7c871e5b6e1a4 python312Packages.numpyro: disable failing test on darwin
d6da15c15f05c python312Packages.equinox: relax speed constraints on tests that can fail on busy builders
64250c6583896 python312Packages.flax: ignore DeprecationWarning during tests
987640768a606 python312Packages.jax[lib]: 0.5.0 -> 0.5.1
5135729b97ecb xdg-desktop-portal-cosmic: 1.0.0-alpha.5.1 -> 1.0.0-alpha.6
f9642bd8de370 hugo: 0.143.1 -> 0.145.0
5259d81e90bb2 dbip-asn-lite: 2025-02 -> 2025-03
311709f2edbee dbip-city-lite: 2025-02 -> 2025-03
ac3c3308880f3 dbip-country-lite: 2025-02 -> 2025-03
5bbe8d8baa031 xdg-desktop-portal-cosmic: add updateScript
098deeff675aa v2ray-domain-list-community: 20250216152937 -> 20250227085631
97be9fbfc7a8a qt6.qtmqtt: 6.8.1 -> 6.8.2
1c561b89c52f0 xdg-desktop-portal-cosmic: remove vendored Cargo.lock
e3ff7d22f68a0 xdg-desktop-portal-cosmic: refactor
86bd26b32b0f1 python312Packages.python-debian: 0.1.49 -> 0.1.52
1f062083d3cd7 xdg-desktop-portal-cosmic: use libcosmicAppHook
56e397616bde9 ocamlPackages.posix-math2: init at 2.2.0 (#385383)
f32297ec7229a pleroma: 2.8.0 -> 2.9.0
a2061eefc24c9 framework-tool: 0.1.0-unstable-2024-06-14 -> 0.2.1
cbd2674bfe96d bpf-linker: 0.9.13 -> 0.9.14
3d1b5ad206878 misconfig-mapper: 1.13.5 -> 1.13.7
00e5607c2a4cc evcc: 0.200.4 -> 0.200.5
3f22849c956e4 perl: CompilerLexer: add -Wno-register to fix build with clang (#386081)
ab0485ecb9dc1 hawkeye: 6.0.1 -> 6.0.2
222d7d9cca690 alt-tab-macos: 7.20.0 -> 7.21.1
f5acc15ac138c koboldcpp: 1.84.2 -> 1.85
f885cdd5c7495 snakemake: 8.23.0 -> 8.29.0 (#385979)
8c657866c5ad5 moon: 1.32.5 -> 1.32.7
a9d1c1e729816 gallery-dl: 1.28.5 -> 1.29.0
067184e574841 emacs: mark version < 30 as insecure and tell users to use emacs30
dfd2f67a49aaa got: 0.108 -> 0.109
e84e2dc4ab8e3 python3Packages.dragonmapper: init at 0.2.7
c6f839f35b696 python3Packages.hanzidentifier: init at 1.2.0
bee9907b4bbfc python3Packages.zhon: init at 2.0.2
05de42c3d8839 blender: Disable assert abort as is expected in blender release builds (#385913)
8b24638d4d411 sherpa: 2.2.16 -> 3.0.1 (#385906)
74adfcf30b550 mqttui: 0.21.1 → 0.22.0
1639f1fda65b1 servo: 0-unstable-2025-02-27 -> 0-unstable-2025-03-01 (#386157)
501a766733e65 nss_latest: 3.108 -> 3.109
a457d05aaa878 lastversion, python3Packages.lastversion: init at 3.5.0
a90f6a9e78289 zizmor: 1.3.1 -> 1.4.1
3efc5280fe028 vscode-extensions.charliermarsh.ruff: 2024.34.0 → 2025.14.0 (#386140)
59f337a6e29c1 python3Packages.jax: add missing cuda libraries (#375186)
3db65802dd8c0 cudaPackages.cutensor: 2.0.2.4 -> 2.1.0.9 (#386158)
f0b31540c803e meshlab: support gltf
336536d159ce8 python312Packages.cohere: 5.13.12 -> 5.14.0
57bbcfa3395f8 vcpkg: 2025.01.13 -> 2025.02.14
d5144effdc79b zapret: 70 -> 70.3 (#385846)
8c3455422640e cudaPackages.cutensor: 2.0.2.4 -> 2.1.0.9
11c0e89e918ff servo: 0-unstable-2025-02-27 -> 0-unstable-2025-03-01
4b34a490a2797 kubectl-cnpg: 1.25.0 -> 1.25.1 (#385964)
8824a59b7f54f icewm: 3.7.0 -> 3.7.1
c069bd588d9a8 networkmanager: 1.50.2 -> 1.52.0
576b47b2ad5d1 icewm: fetch patch to fix start menu entries without icons
4561d0392df8c syncthingtray: 1.7.1 -> 1.7.2 (#385982)
02ce2c0753a7a aider-chat: add full playwright support (under withPlaywright) (#385972)
66e887f966abd python3Packages.pymc: fix source hash (#386147)
c68f2d24761cc juju: 3.6.2 -> 3.6.3
ca52dfcb6d504 aider-chat: run nixfmt with nixfmt-rfc-style
d548d63ba89f1 python312Packages.whenever: 0.6.17 -> 0.7.2
a5de6d7bd8d27 python3Packages.pymc: fix source hash
e9b0ff70ddc61 libvirt: 10.10.0 -> 11.0.0 (#375888)
5a140d8d4886d cudaPackages.tensorrt: 10.3.0.26 -> 10.8.0.43 (#386143)
c91461aed5daf uwsm: stop propagating wrapped tools (#385933)
496278b63d90d katago: fix cuda and tensorrt builds
291344b3b7f1d python312Packages.compressed-tensors: 0.9.1 -> 0.9.2
e1fad0547fc06 v2rayn: 7.8.3 -> 7.10.0
99c8dfdddadbb brave: 1.75.180 -> 1.75.181
c3bb7450f2be4 electron-fiddle: 0.32.6 → 0.36.5 (#385681)
b60952b06cd53 vscode-extensions.charliermarsh.ruff: 2024.34.0 → 2025.14.0
292d501178a40 sshx, sshx-server: 0.3.1 -> 0.4.1
4ce5a83623568 immich: allow overriding of sourcesJSON
1609398c9def5 cudaPackages.tensorrt: 10.3.0.26 -> 10.8.0.43
8f4b7f29c391a wizer: 7.0.5 -> 8.0.0 (#386124)
9bf27e2442bd0 immich: update geonames hash
4afff4ff215b0 kumactl: 2.9.3 -> 2.9.4
723c29aaf4851 xo: init at 1.0.2
8bddb61b6582c mtr-exporter: 0.5.0 -> 0.5.1 (#385534)
099f579b26d09 variety: 0.8.12 -> 0.8.13
49128296654ac runme: 3.8.3 -> 3.12.2 (#383995)
402091d7f3e5e android-studio: 2024.2.2.14 -> 2024.2.2.15
f848ce5ed56ea pacparser: add darwin support
cc026dfbf5c2d xlsxsql: init at 0.4.0
c8fab731982eb mdtsql: init at 0.1.0
31ac53fdca63b maintainers: Add federicoschonborn
8a285cc7559f5 sqlpage: 0.32.1 -> 0.33.1
cb04ce958b9a3 python312Packages.nifty8: 8.5.4 -> 8.5.6 (#386061)
95779c4cb4045 nixos/rippled: move drop notice to nixos release notes (#385928)
4171849b85c7c cudaPackages.cudnn_9_7: init at 9.7.1.26 (#386044)
4584824d05f68 nrr: 0.9.5 -> 0.10.0 (#386095)
a7e027fc1f4e9 wizer: 7.0.5 -> 8.0.0
750e3f179ba7e nvc: 1.15.1 -> 1.15.2 (#386097)
dbcab36ef9d36 zef: 0.22.7 -> 0.22.8
2d3bad249c144 stats: 2.11.31 -> 2.11.32
2b94af0ac3f4f sqlite-jdbc: 3.25.2 -> 3.49.1.0
55d3c845196f1 gobgp: 3.34.0 -> 3.35.0 (#386090)
f5daf02ef88af gobgpd: 3.34.0 -> 3.35.0 (#386091)
4cf5ebad7a1e4 starboard: 0.15.23 -> 0.15.24
0fb864b553cda rqlite: 8.36.11 -> 8.36.12 (#386092)
ded395af112ea phase-cli: 1.18.6 -> 1.18.7 (#386053)
342cc1cedb2cf heimdall-proxy: 0.15.5 -> 0.15.7 (#386100)
3dc6aa364d526 rmg-wayland: 0.7.5 -> 0.7.6
d108c99713d46 ibus-engines.table: 1.17.10 -> 1.17.11 (#386069)
ed366e79e3bf9 python312Packages.sagemaker: 2.239.1 -> 2.240.0 (#386071)
419fbb34488f6 sketchybar-app-font: 2.0.31 -> 2.0.32 (#386077)
10a256fe04e96 tgt: 1.0.94 -> 1.0.95 (#386082)
22c5e8f32da3d python312Packages.mypy-boto3-*: updates (#386021)
c3e10e05c6ce6 python313Packages.aiovlc: 0.6.5 -> 0.6.6 (#386022)
a1fc234172622 python313Packages.influxdb3-python: 0.10.0 -> 0.11.0 (#386025)
6b435db2a09b3 python313Packages.reolink-aio: 0.12.0 -> 0.12.1 (#386026)
3a3eb07f4de17 python313Packages.pyswitchbot: 0.56.0 -> 0.57.0 (#386027)
b1170a90c9cac python313Packages.python-motionmount: 2.3.0 -> 2.3.1 (#386028)
9a99b33c27493 python313Packages.mill-local: 0.3.0 -> 0.4.0 (#386030)
6c5a874b111a1 google-cloud-sql-proxy: 2.15.0 -> 2.15.1 (#386031)
09d43d2da651b python313Packages.python-smarttub: 0.0.38 -> 0.0.39 (#386034)
e983b262e7336 python313Packages.sqlmodel: 0.0.22 -> 0.0.23 (#386035)
681d6db1afb52 python313Packages.tencentcloud-sdk-python: 3.0.1326 -> 3.0.1327 (#386038)
b83c769dde4cb trufflehog: 3.88.13 -> 3.88.14 (#386040)
c1b62d6f307ed python313Packages.publicsuffixlist: 1.0.2.20250228 -> 1.0.2.20250301 (#386039)
9ceec95bfb22b python313Packages.pyoverkiz: 1.16.0 -> 1.16.1 (#386042)
1d468ea3fe141 python313Packages.bloodyad: 2.1.7 -> 2.1.8 (#386043)
c70c348c42d63 terraform-providers.google-beta: 6.20.0 -> 6.23.0
798804c030c2c bed: init at 0.2.8
09e87c7df8eec warp-terminal: 0.2025.02.19.08.02.stable_05 -> 0.2025.02.26.08.02.stable_02
5bcb808dad6ff terraform-providers.artifactory: 12.8.4 -> 12.9.1 (#385989)
a20f6509555e0 eigenlayer: 0.11.1 -> 0.11.2 (#385990)
420c6f3f891b0 terraform-providers.huaweicloud: 1.72.1 -> 1.73.0 (#385992)
6602507d60f1c cargo-tally: 1.0.58 -> 1.0.59 (#385994)
05ed073ffc3e8 clipcat: 0.20.0 -> 0.21.0 (#385995)
70316ce039079 terraform-providers.migadu: 2025.2.13 -> 2025.2.27 (#385999)
928cdac992e07 slurm: 24.11.1.1 -> 24.11.2.1 (#385504)
3696a67ef0e72 terraform-providers.datadog: 3.54.0 -> 3.57.0 (#386000)
e9106749f2143 melange: 0.20.0 -> 0.22.0 (#386008)
34162fd7304a1 go-ios: 1.0.174 -> 1.0.175 (#386010)
7973101d8c8e2 borgmatic: 1.9.5 -> 1.9.12 (#384909)
81aecf8979b66 recyclarr: 7.2.4 -> 7.4.1 (#384906)
d7ebf98224d14 wait4x: 2.14.3 -> 3.0.0 (#385969)
c71222412cbd7 rang: 3.1.0 -> 3.2 (#384516)
d5471a69e9cbf stirling-pdf: use Gradle 8 (#358912)
2fcb072d642d1 cargo-audit: 0.21.1 -> 0.21.2 (#385973)
acc24c5d9841f python312Packages.narwhals: 1.26.0 -> 1.28.0
a2e081d9ca681 terraform-providers.grafana: 3.19.0 -> 3.20.0 (#385977)
c2f6f028eb016 pocketbase: 0.25.4 -> 0.25.8 (#385978)
6884c5169323e python312Packages.griffe: 1.5.7 -> 1.6.0
4e52cfc516d56 fishPlugins.forgit: 25.02.0 -> 25.03.0 (#386087)
3c310cceb41ba arkade: 0.11.33 -> 0.11.34 (#385930)
b46e8d23ba393 Prefect: init at 3.2.7 (#384484)
c99d0dcff7fb6 drawio: 26.0.4 -> 26.0.16 (#385837)
0d58632d01d96 backrest: 1.7.1 -> 1.7.2 (#385944)
7d6dbb529aba6 Fix rust-rover build
efb87ed7ba60c gnomeExtensions.pop-shell: 1.2.0-unstable-2024-12-31 -> 1.2.0-unstable-2025-02-20 (#385891)
14faca06e6d01 sesh: 2.10.0 -> 2.13.0 (#385909)
d8d21a47bdaad shopware-cli: 0.5.2 -> 0.5.7 (#385912)
b55ef89c8249a python312Packages.para: disable tests on darwin
026d1f47ea04f linuxPackages.nvidiaPackages.vulkan_beta: 550.40.85 -> 570.123.01 (#386046)
b277c02e4ced7 tt-rss-plugin-freshapi: init at unstable-2024-11-14 (#370518)
cbbe32cefefec comrak: 0.35.0 -> 0.36.0 (#385797)
2247ec3dae678 authentik: sentry-sdk -> sentry-sdk_2 (#374345)
d9248eda76d42 spread: 0-unstable-2023-03-01 -> 0-unstable-2025-02-06 (#386093)
24bda1f07b1be teams-for-linux: 1.12.7 -> 1.12.8
ca33ca19cfbdd bisq2: add coreutils and tor to PATH (#383224)
c1a9ccb9d37f7 python3Package.grep-ast: 0.4.1 -> 0.6.1
0c6721eeb751a python3Packages.aider-chat: 0.74.1 -> 0.75.1
d5cf9e4aabd8b python3Packages.mwxml: 0.3.4 -> 0.3.5 (#381522)
570bb31d4e557 alcom: 1.8.2 -> 1.0.1 (#368786)
07248ff1a66a3 Merge: meshcentral: 1.1.38 -> 1.1.39 (#385838)
8f975084496af heimdall-proxy: 0.15.5 -> 0.15.7
0f725b07abfff osquery: 5.14.1 -> 5.15.0 (#376312)
4f02f28588aac python312Packages.stringzilla: 3.12.0 -> 3.12.1 (#386065)
129eeb2aee260 jetbrains.plugins: update
a79a42a6f00de esp-generate: 0.2.2 -> 0.3.0 (#385084)
e2246f6d8488f jetbrains: 2024.3 -> 2024.3.6
4289a1da1f7a2 zapzap: 5.3.9 -> 6.0.1.3 (#384502)
7af2edac81239 grafana-image-renderer: 3.12.0 -> 3.12.1
29c96e27c9642 nvc: 1.15.1 -> 1.15.2
9c771ebfd194c jellyfin-tui: 1.1.2 -> 1.1.3
c416fe9f6e9d4 managarr: 0.4.2 -> 0.5.1
565a287577158 nrr: 0.9.5 -> 0.10.0
87806c913c93b nixos/syncthing: prevent enabling overrideFolders and autoAcceptFolders simultaneously (#321872)
5189fc147bed5 emilua: opt-in io_uring
78c7bc7b37500 spread: 0-unstable-2023-03-01 -> 0-unstable-2025-02-06
7d41451ea2754 rqlite: 8.36.11 -> 8.36.12
02e7da7a0aeda gobgpd: 3.34.0 -> 3.35.0
39f74da204c51 gobgp: 3.34.0 -> 3.35.0
4da35d191700a gnomeExtensions.systemd-manager: 17 -> 18
17b7c27f1193f fishPlugins.forgit: 25.02.0 -> 25.03.0
ca1bf755d9147 git-credential-oauth: 0.14.0 -> 0.15.0 (#386084)
35f9e7750646d python312Packages.sagemaker-core: 1.0.22 -> 1.0.25 (#386070)
e1adba412f188 c-periphery: 2.4.2 -> 2.4.3 (#386079)
8268c1b3ac173 c-periphery: 2.4.2 -> 2.4.3
d2b3b4975e134 python312Packages.nifty8: disable crashing tests on darwin
d2673def8eab8 python312Packages.nifty8: refactor checkPhase
d00bbbecb9cac python312Packages.nifty8: 8.5.4 -> 8.5.6
8f9d6c1ce1874 zsh-forgit: 25.02.0 -> 25.03.0
8af5b7828dbf2 podman-tui: 1.3.1 -> 1.4.0
361c52ee90c33 python312Packages.sagemaker-core: 1.0.22 -> 1.0.25
a5763c98f8314 git-credential-oauth: 0.14.0 -> 0.15.0
3819cf0226e22 luaPackages: update on 2025-02-28 (#385811)
0674f0eb95197 python312Packages.nifty8: add pytest-xdist to speed up the tests
72d67cec14a96 python312Packages.nifty8: remove nifty8.re as it is incompatible with the latest jax version
e06ad9501b9b9 eduvpn-client: change repository to codeberg.org
447c48d5d7c79 tgt: 1.0.94 -> 1.0.95
fff9885d23dbd perl: CompilerLexer: add -Wno-register
2cf427c0455fe Merge: nextcloud31: init at 31.0.0 (#385060)
cda51909e082d python313Packages.aiosseclient: init at 0.1.3
9fd226cee015e sketchybar-app-font: 2.0.31 -> 2.0.32
3db26e263639a python312Packages.google-cloud-compute: 1.25.0 -> 1.26.0 (#385372)
08cbecb419a62 nixos/postfixadmin: refactor, replace use of deprecated postgresql port option with new one, `set -o pipefail` (#362463)
64f90c5682eea electron-bin: remove leftover logic
a1226737a4634 nixos/postfixadmin: use `config.services.postgresql.settings.port` instead of old ...`postgresql.port`
bab7f1e99e98a nixos/postfixadmin: add `set -o pipefail` for `postfixadmin-postgres` script
2de264f2091a6 nixos/postfixadmin: refactor
c0c3fa6a7883e nixos/postfixadmin: format with nixfmt-rfc-style
e318dabd6397a xen: patch with XSA-467 (#385642)
e006332761547 python312Packages.sagemaker: 2.239.1 -> 2.240.0
cf28fd4611321 pgbouncer: 1.23.1 -> 1.24.0 (#372807)
51b5d9df85480 ibus-engines.table: 1.17.10 -> 1.17.11
0a1e9351c95d4 spf-engine: 3.0.4 -> 3.1.0
303bd80713774 Merge: nixos/nginx: add locations."name".uwsgiPass option and use it (#346776)
cc65a31c757e4 spades: 4.0.0 -> 4.1.0 (#386062)
b81fe3458f4ad luarocks-packages: fix papis.nvim name
e6bb47b73b293 luaPackages: update on 2025-02-28
aa125ff8a131b nextcloudPackages.apps: update (and recreate 31.json)
636905b780096 python312Packages.stringzilla: 3.12.0 -> 3.12.1
b9d5cbcf97449 vcmi: 1.6.6 -> 1.6.7 (#386059)
780c092504cbe sourcery: 1.23.0 -> 1.35.0
bb9abd73464c9 spades: 4.0.0 -> 4.1.0
db2f00a160d80 jreleaser-cli: 1.16.0 -> 1.17.0 (#385963)
7a87b07877e1a tail-tray: 0.2.16 -> 0.2.17
be4fd8fdf2c6c nixos/nextcloud: update docs
0ead12d04dda1 python312Packages.folium: 0.19.4 -> 0.19.5 (#385807)
e154a5da7dcb4 vcmi: 1.6.6 -> 1.6.7
6f5808c6534d5 pulumi: 3.122.0 -> 3.152.0 (#382594)
5166ae69c4245 ayugram-desktop: add kaeeraa, s0me1newithhand7s to maintainers (#384864)
610f42ecab162 dart-sass: 1.85.0 -> 1.85.1
4a32d8cda6d50 pgpool: 4.5.5 -> 4.6.0 (#385788)
1461d87fb40df gpxsee: 13.35 -> 13.36 (#385883)
8c185b375795f heimdall-proxy: init at 0.15.5 (#385501)
318dd02a99b98 mutt: Add zlib to buildInputs (#385835)
e331f0926aaa8 vscode-extensions.equinusocio.vsc-material-theme{-icons}: move to aliases (#386023)
77877ec9659aa vscode-extensions.bmewburn.vscode-intelephense-client: 1.14.1 -> 1.14.2 (#386020)
779f8c1f392ba linuxPackages.nvidiaPackages.vulkan_beta: 550.40.85 -> 570.123.01
fedaf5d9dc73a azurehound: 2.2.1 -> 2.3.0 (#385680)
77525f8734d6d phase-cli: 1.18.6 -> 1.18.7
98ad32f1152a0 kubexporter: init at 0.6.3; maintainers: add bakito (#384179)
9c2f224cc4040 changedetection-io: 0.49.1 -> 0.49.3 (#385987)
96878f540a5bc virtnbdbackup: 2.20 -> 2.21
286bd0c14f661 os-agent: 1.6.0 -> 1.7.1
ea6e596d8e81f cargo-sort: 1.1.0 -> 1.0.9
6d1755c6743cf python313Packages.pyoverkiz: 1.16.0 -> 1.16.1
d5a896024c908 ayugram-desktop: add kaeeraa and s0me1newithhand7s to maintainers
662a2022960e2 cudaPackages.cudnn_9_7: init at 9.7.1.26
6a4bf7de92a4a python313Packages.bloodyad: 2.1.7 -> 2.1.8
0e0665bbfdaf3 nats-server: 2.10.25 -> 2.10.26 (#385157)
82cd725c2b9aa python313Packages.tencentcloud-sdk-python: 3.0.1326 -> 3.0.1327
a296921c9b9c3 python313Packages.publicsuffixlist: 1.0.2.20250228 -> 1.0.2.20250301
bca878314bc9c trufflehog: 3.88.13 -> 3.88.14
69931d20ad7ff python313Packages.sqlmodel: 0.0.22 -> 0.0.23
4c2aee8705c77 python313Packages.python-smarttub: 0.0.38 -> 0.0.39
1df8cc80419e9 kubexporter: init at 0.6.3
3ddd7de76c5b5 python313Packages.reolink-aio: 0.12.0 -> 0.12.1
8235f6fa7bcaa python313Packages.pyswitchbot: 0.56.0 -> 0.57.0
827aa1a5fcf99 python313Packages.python-motionmount: 2.3.0 -> 2.3.1
d725127674b1b python313Packages.mill-local: 0.3.0 -> 0.4.0
35e1df86ab3a1 python313Packages.influxdb3-python: 0.10.0 -> 0.11.0
ce0e640514259 google-cloud-sql-proxy: 2.15.0 -> 2.15.1
6c678cb7f1729 vscode-extensions.equinusocio.vsc-material-theme{-icons}: move to aliases
a75a0d157699e maintainers: add bakito
cfb9f640274c9 parsedmarc: 8.17.0 -> 8.18.1
666cb91588ffb python313Packages.aiovlc: 0.6.5 -> 0.6.6
2934e7b22f6e8 vscode-extensions.bmewburn.vscode-intelephense-client: 1.14.1 -> 1.14.2
000ddaa2f12e4 python312Packages.mypy-boto3-ssm: 1.37.0 -> 1.37.4
1d9bca5c6608d python312Packages.mypy-boto3-pricing: 1.37.0 -> 1.37.4
daf4da3eea15e python312Packages.mypy-boto3-mediaconvert: 1.37.0 -> 1.37.4
6d6df8288d241 rathole: fix test failures due to expired certs, fix darwin build (#384040)
421f9b373fc94 python312Packages.mypy-boto3-eks: 1.37.0 -> 1.37.4
63b61d2738aeb python312Packages.mypy-boto3-dms: 1.37.0 -> 1.37.4
0c4bc741cfff3 nixos/radarr,lidarr,readarr,whisparr,prowlarr: add settings option (#384052)
f5090d4920dfc perlPackages.SearchXapian: remove at 1.2.25.5
1fc36967926e0 public-inbox: use Xapian over SearchXapian
074660896aa34 perlPackages.Xapian: init at 1.4.27
e63c0f8dd9381 dbeaver-bin: 24.3.4 -> 24.3.5 (#385858)
fb146990ca6cc openapi-generator-cli: 7.10.0 -> 7.12.0
ea9c81bc8d62c gfs2-utils: 3.5.1 -> 3.6.0
2d74f093d501d fcitx5-mcbopomofo: 2.9.0 -> 2.9.1 (#385976)
5dbb3ed2b19e2 deck: 1.44.1 -> 1.45.0 (#386004)
e9e541cf47c5a go-ios: 1.0.174 -> 1.0.175
5b88dd5bcfb2f buildkit: 0.19.0 -> 0.20.0 (#383545)
74c82582342d8 clairvoyant: 3.1.8 -> 3.1.10
0188f10d78cff n-m3u8dl-re: init at 0.3.0-beta (#384692)
45afd92515f73 melange: 0.20.0 -> 0.22.0
61e0966b15874 goldendict-ng: 24.09.1 -> 25.02.0
6aad4a6c18cc6 immich: 1.127.0 -> 1.128.0 (#385945)
cd850d57e0df1 build-support/php: support `lib.extendMkDerivation` for `php.mkComposerVendor`
862a3e90a063c build-support/php: support `lib.extendMkDerivation` for `php.buildComposerProject2`
568375f50533e deck: 1.44.1 -> 1.45.0
1e181ece32a0f ntpd-rs: 1.4.0 -> 1.5.0 (#385818)
1dda369e8880f terramate: 0.11.9 -> 0.12.1
9dd3b6fda554b lazygit: 0.47.2 -> 0.48.0
eb6f5a927b892 gnomeExtensions.valent: 1.0.0.alpha.46 -> 1.0.0.alpha.47
d43c75f5e69fe terraform-providers.datadog: 3.54.0 -> 3.57.0
be3ccfb06c070 python312Packages.zwave-js-server-python: 0.60.0 -> 0.60.1 (#385863)
856d93df3465d python312Packages.checkdmarc: 5.7.8 -> 5.8.1 (#385917)
85c1058c25d63 terraform-providers.migadu: 2025.2.13 -> 2025.2.27
5cc934707eb6e switch-to-configuration-ng: increase dbus timeout to 10s
9cdbb89b30b22 clipcat: 0.20.0 -> 0.21.0
134edc3b35db3 cargo-tally: 1.0.58 -> 1.0.59
ee3ebe26f18db terraform-providers.huaweicloud: 1.72.1 -> 1.73.0
5567f4cd1be62 eigenlayer: 0.11.1 -> 0.11.2
778598698bd22 tmff2: 0.82 -> 0.82-unstable-2025-02-03
76bebdf18ffd0 heimdall-proxy: init at 0.15.5
15f0e5abde7b9 heimdall-proxy: init at 0.15.5
6e282518d2a7a nemo-seahorse: init at 6.4.0 (#381413)
1ed98330339b9 python312Packages.openstacksdk: 4.3.0 -> 4.4.0 (#385799)
54b7b07b9d2d0 electron-bin: don't wrap inside libexec (#384865)
924de68539d87 terraform-providers.artifactory: 12.8.4 -> 12.9.1
3e929a8283656 rofi-network-manager: init at 2024-09-03
52362420d17d8 changedetection-io: 0.49.1 -> 0.49.3
9114ab05304c8 vimPlugins: update on 2025-02-28 (#385809)
2beaf5e5a6afa quba: Add support for darwin
e9335d635f11e sticky-notes: 0.2.5 -> 0.2.6
f5f7e407cc31d stylelint: 16.14.1 -> 16.15.0 (#385966)
b803de6e930bc python312Packages.openstacksdk: 4.3.0 -> 4.4.0
d343afa12b565 python313Packages.python-openstackclient: 7.2.1 -> 7.4.0
624cc72a7f95f yandex-cloud: 0.143.0 -> 0.144.0
08f0a70efb30a syncthingtray: 1.7.1 -> 1.7.2
f836b8998fe56 Revert "nixos/grub: generate BLS entries" (#385879)
1cce2a1a306c2 libvirt: 10.10.0 -> 11.0.0
46897ae2f4329 upscayl: darwin support, add darwin maintainer (#372657)
2e8dff0af32d9 cherry-studio: init at 1.0.1 (#382728)
b1cdf059e473f super-productivity: 11.1.2 -> 11.1.3, build from source
18233063318dc prefect: init at 3.2.7
96011017f75e7 volanta: init at 1.10.10 (#385206)
312c944309f4a pantheon.wingpanel-applications-menu: 8.0.0 -> 8.0.1 (#385942)
74363deb1dcab pocketbase: 0.25.4 -> 0.25.8
72a11a5b96c72 terraform-providers.grafana: 3.19.0 -> 3.20.0
3fc8dc557e9d0 fcitx5-mcbopomofo: 2.9.0 -> 2.9.1
7518e27b72037 smokeping: 2.8.2 -> 2.9.0
62b6f9a5151e8 aider-chat: run nixfmt
f532f55449d53 smile: 2.9.5 -> 2.10.1
09413a675b58c cargo-audit: 0.21.1 -> 0.21.2
0f490f14af3c7 pantheon.wingpanel-applications-menu: 8.0.0 -> 8.0.1
abf668fb611fa wait4x: 2.14.3 -> 3.0.0
e714b7ce00ca4 aider-chat: add full playwright support (under withPlaywright)
7c85fe54a6691 stylelint: 16.14.1 -> 16.15.0
8eb7390a763f7 kubectl-cnpg: 1.25.0 -> 1.25.1
199169a2135e6 ast-grep: cleanup & fix on aarch64-linux (#385922)
952501edda3fa windsurf: 1.3.9 -> 1.3.10 (#385941)
157b9399e3849 velocity: init at 3.4.0-unstable-2025-02-28 (#384071)
5c3ef3a2c3456 jreleaser-cli: 1.16.0 -> 1.17.0
b571e6d98a0d4 volanta: init at 1.10.10
4878c1d900387 maintainers: added SirBerg
a8f187da8178c go-judge: 1.8.9 -> 1.9.0
aa332bbbdc5ab convmv: 2.05 -> 2.06
6db3a857b5426 sigil: 2.0.1 -> 2.4.2
e2ea484dd67f7 vrcx: 2025.01.31 -> 2025.03.01
3d368ed050ba9 immich: 1.127.0 -> 1.128.0
fd05773a2982e backrest: 1.7.1 -> 1.7.2
f734b740fc746 emiluaPlugins.beast: add meta
1603fbcdaf8b0 emiluaPlugins.beast: 1.1.1 -> 1.1.2
f5d2ed22c3e50 emiluaPackages.this-thread: 1.0.1 -> 1.0.2
ecfe28c6a828c emiluaPlugins.tdlib: 1.0.3 -> 1.0.4
fab6de0e0d9bf emiluaPlugins.secp256k1: 0.5.0 -> 0.5.1
d4509228735cf emiluaPlugins.qt6: 1.1.0 -> 1.2.0
4e44068f70b7e emiluaPlugins.qt5: 1.0.1 -> 1.0.2
7fab5aa869452 emiluaPlugins.botan: 1.1.0 -> 1.1.1
83b1af6344883 emiluaPlugins.bech32: 1.1.0 -> 1.1.1
a930c63509679 emilua: 0.10.1 -> 0.11.1
677a8a4cec6eb windsurf: 1.3.9 -> 1.3.10
47c271667487c voicevox-engine: 0.22.2 -> 0.23.0; voicevox: 0.22.4 -> 0.23.0 (#385895)
bde79d0fc3274 windsurf: 1.3.4 -> 1.3.9 (#385436)
626e6e784ca39 python313Packages.systemd: use libredirect.hook (#385612)
4e9ed37e1cf13 openrct2: 0.4.19.1 -> 0.4.20, swap to finalAttrs, fix meta
01845e415e17b keycloak: 26.1.2 -> 26.1.3 (#385782)
d6a59d3b2ef0b python312Packages.django-stubs: 5.1.2 -> 5.1.3 (#385920)
7d826682674f5 rainfrog: 0.2.13 -> 0.2.14 (#385868)
f63d353d7ae26 terraform-providers.ns1: 2.5.1 -> 2.5.2 (#385871)
994c9719d7754 terraform-providers.mongodbatlas: 1.26.1 -> 1.28.0 (#385872)
a2ca3c1ee9148 uwsm: stop propagating wrapped tools
62f0d192a5036 uwsm: cleanup multiline string conditionals, misc cleanup
803c1965c956a code-cursor: 0.45.11 -> 0.45.14 (#385854)
b84e7d665f97d mpvScripts.mpv-playlistmanager: 0-unstable-2025-01-08 -> 0-unstable-2025-02-23 (#385881)
c409f2c260da6 python312Packages.pylamarzocco: 1.4.6 -> 1.4.7 (#385886)
44ea98a48b6b3 cargo-show-asm: 0.2.47 -> 0.2.48 (#385892)
7752264d4badd efmt: 0.19.0 -> 0.19.1 (#385843)
925bd85787929 ronin: 2.1.0 -> 2.1.1
f284bba273f6b perlPackages.NetSNMP: use libredirect.hook (#385614)
bd49ce60e1343 libastyle: 3.6.6 -> 3.6.7 (#385793)
fe7c3d45d9e93 python312Packages.django-import-export: 4.3.5 -> 4.3.7 (#385810)
25725c82a1834 python313Packages.systemd: use libredirect.hook
d348ed2998202 msolve: 0.7.3 -> 0.7.4 (#385758)
af15c3796e4df mattermostLatest: 10.5.0 -> 10.5.1
2883b76f09519 summon: 0.10.2 -> 0.10.3 (#385765)
2f83ae68e2e0a python312Packages.lm-format-enforcer: 0.10.9 -> 0.10.11 (#385766)
3d9d1bd6d80ca dedup-darwin: init at 0.0.6 (#385897)
fb000fc089177 python312Packages.publicsuffixlist: 1.0.2.20250227 -> 1.0.2.20250228 (#385774)
d5bcd47e83c65 arkade: 0.11.33 -> 0.11.34
371bdffebf66d python312Packages.python-roborock: 2.11.2 -> 2.12.0 (#385780)
5ee5315fc18a7 pretender: 1.3.1 -> 1.3.2 (#385781)
87ec83b6a5f67 python3Packages.subliminal: set setuptools as build system (#385786)
0eb686c42f3c0 hyprls: 0.5.0 -> 0.5.2 (#385923)
eb915d4200273 src-cli: 6.0.1 -> 6.1.0 (#385715)
5dc5d66e9c12c stylance-cli: 0.5.4 -> 0.5.5 (#385716)
af74cbc2922b9 nixos/rippled: move drop notice to nixos release notes
585bbcbda3018 hot-resize: init at 0.1.1 (#385815)
e1fb43f4633a9 fwupd: use libredirect.hook (#385611)
d4c105bedf16b python312Packages.google-cloud-dlp: 3.27.0 -> 3.28.0 (#385742)
924f241bcb102 python312Packages.weaviate-client: 4.10.4 -> 4.11.1 (#385899)
e14e9e0dd6d5b pulumi-bin: 3.152.0 -> 3.153.0 (#385744)
fcba706038d2c ast-grep: cleanup & fix on aarch64-linux
282a8330c219d gqlgen: 0.17.65 -> 0.17.66 (#385751)
02aaff9a4e7ba python313Packages.aiohomeconnect: 0.13.0 -> 0.15.1 (#385661)
623285adc5312 python313Packages.accuweather: 4.0.0 -> 4.1.0 (#385662)
7d2a89a32003f python313Packages.aiounifi: 81 -> 83 (#385663)
e234e95bda1a9 python313Packages.aiostreammagic: 2.10.0 -> 2.11.0 (#385664)
df138bb999ce1 python313Packages.aiolifx-themes: 0.6.7 -> 0.6.8 (#385665)
dc8db1192ea61 bosh-cli: 7.9.2 -> 7.9.3 (#385671)
1a970c13ffb23 intelephense: 1.12.6 -> 1.14.1 (#385873)
8a168658d8894 python312Packages.google-cloud-dataproc: 5.17.0 -> 5.18.0 (#385677)
5fb8f783a0260 nix-output-monitor: 2.1.4 -> 2.1.5 (#385874)
fb39fafccf89f vscode-extensions.bmewburn.vscode-intelephense-client: 1.12.5 -> 1.14.1 (#385877)
5f8e5613a8c84 python312Packages.drf-yasg: 1.21.8 -> 1.21.9 (#385678)
538ba70e5910f hyprls: 0.5.0 -> 0.5.2
260109c9b80cd vscode-extensions.equinusocio.vsc-material-theme*: remove (#385914)
374ae1b399069 docker-credential-helpers: 0.8.2 -> 0.9.0 (#385685)
5dc1789db1b05 infrastructure-agent: 1.60.1 -> 1.62.0 (#385692)
f1a7a6e94f781 prometheus-artifactory-exporter: 1.15.0 -> 1.15.1 (#385700)
920df35ad1cf9 python312Packages.django-stubs: 5.1.2 -> 5.1.3
afcc902c69cbe python312Packages.checkdmarc: 5.7.8 -> 5.8.1
eb8be568c3991 python312Packages.elevenlabs: 1.51.0 -> 1.52.0 (#385902)
e5e995382c6cf terragrunt: 0.73.12 -> 0.73.15
cddd94c4ce2b9 vscode-extensions.equinusocio.vsc-material-theme: remove at 34.7.5
6c70dec0e2018 vscode-extensions.equinusocio.vsc-material-theme-icons: remove at 3.8.8
ae4c24cb897d1 python312Packages.flax: 0.10.3 -> 0.10.4 (#385676)
616deb2952880 faircamp: 1.1.1 -> 1.2.0
35537223a8f1e shopware-cli: 0.5.2 -> 0.5.7
a09de6a902564 dedup-darwin: init at 0.0.6
452cde71a377c sesh: 2.10.0 -> 2.13.0
def3915dd436a hubble: 0.13.6 -> 1.17.1 (#382313)
c34e158ba3ba2 home-assistant-custom-lovelace-modules.mushroom: 4.2.1 -> 4.3.0
d4b6c6a4cc518 freefilesync: 14.0 -> 14.2 (#384269)
8341b4789b41e lightning-terminal: init at 0.14.1-alpha (#383162)
6d7ccd9566c51 perlPackages.NetSNMP: use libredirect.hook
58af30abcdaa7 python312Packages.eliot: 1.16.0 -> 1.17.5 (#385880)
8cc9dc4dc7fe1 python313Packages.drf-extra-fields: add pytz dependency (#385255)
178028674a59c k3s_1_31: 1.31.5 -> 1.31.6 (#385770)
3d44a299fa18f maintainers: update fredeb (#382833)
34105c64c4d31 k3s_1_30: 1.30.9 -> 1.30.10 (#385769)
5c5accb6977e3 p4est: use mpiCheckPhaseHook
55998362c4a3e python312Packages.elevenlabs: 1.51.0 -> 1.52.0
5a7f2c7aa2755 phpunit: 12.0.2 -> 12.0.5 (#385893)
a49864a7c242d python312Packages.weaviate-client: 4.10.4 -> 4.11.1
e1ba41ff49420 perlPackages.SDL: fix build with GCC 14 (#370538)
48352194c2885 perlPackages.Tirex: fix build with recent mapnik (#366883)
bae20f27d768e voicevox: 0.22.4 -> 0.23.0
cbef2a7517d03 voicevox-engine: 0.22.2 -> 0.23.0
a0ff946d90629 k3s_1_32: 1.32.1 -> 1.32.2 (#385771)
1e0c366f366f9 python312Packages.eliot: 1.16.0 -> 1.17.5
bb6431d63bda1 mxnet: remove cuda support (#382891)
2563f38d01ea1 mxnet: don't try to build on darwin
7380f4b4ea7b6 python312Packages.pycuda: 2024.1.2 -> 2025.1 (#385387)
44145a0c7d12f c-blosc2: 2.16.0 -> 2.17.0 (#385433)
3251113327443 k3s_1_29: 1.29.13 -> 1.29.14 (#385768)
ee769d74cdb96 phpunit: 12.0.2 -> 12.0.5
661d9d8a98299 gnomeExtensions.pop-shell: 1.2.0-unstable-2024-12-31 -> 1.2.0-unstable-2025-02-20
6a68ed86182a0 cargo-show-asm: 0.2.47 -> 0.2.48
861f591eb72db hot-resize: init at 0.1.1
0e91a65772312 termsonic: 0-unstable-2024-09-15 -> 0-unstable-2025-01-07
f5d2974534b74 spdx-license-list-data: 3.25.0 -> 3.26.0 (#369568)
b03ddc0714297 sedutil: 1.20.0 -> 1.49.6
7315e80cb3c7e python312Packages.pylamarzocco: 1.4.6 -> 1.4.7
5bb6489b2b225 vimPlugins.nvim-treesitter: update grammars
d3563e6b7c014 vimPlugins: resolve github repository redirects
f4f79c9c9fa02 vimPlugins: update on 2025-02-28
764b1ae7b65c3 gpxsee: 13.35 -> 13.36
413fe34e47670 mpvScripts.mpv-playlistmanager: 0-unstable-2025-01-08 -> 0-unstable-2025-02-23
6ec6eae586437 Revert "nixos/grub: generate BLS entries"
8113e2003d978 morgen: 3.5.9 -> 3.6.6 (#367347)
9f03bab37c6df ananicy-rules-cachyos: 0-unstable-2025-02-05 -> 0-unstable-2025-02-28
9e8390e3b263c vscode-extensions.bmewburn.vscode-intelephense-client: 1.12.5 -> 1.14.1
92a0f1c301192 nix-output-monitor: 2.1.4 -> 2.1.5
9e966214638a7 oh-my-zsh: 2025-02-14 -> 2025-02-19 (#385869)
3856bf17c40c7 libdeltachat: 1.156.0 -> 1.156.1 (#385860)
a719a4fe04179 intelephense: 1.12.6 -> 1.14.1
5d1b6d13458e6 goose-lang: 0.9.1 -> 0.9.2 (#385866)
f55a529b3b0d0 fedifetcher: 7.1.14 -> 7.1.15 (#385867)
cfb72a5fd461e terraform-providers.mongodbatlas: 1.26.1 -> 1.28.0
6795e9498f885 terraform-providers.ns1: 2.5.1 -> 2.5.2
30de7131a407f rainfrog: 0.2.13 -> 0.2.14
e264a0df1aefa goose-lang: 0.9.1 -> 0.9.2
717325ed9c3c8 fedifetcher: 7.1.14 -> 7.1.15
c8bbbe536b069 dependency-track: 4.12.5 -> 4.12.6 (#385839)
0e1026474f2d1 nemo-seahorse: init at 6.4.0
5740c4f2eacea dapr-cli: 1.14.1 -> 1.15.0 (#385682)
2416555900cdc python313Packages.drf-extra-fields: add pytz dependency
323ad328f602f webpack-cli: 5.1.4 -> 6.0.1 (#379373)
8954980a7d4c7 python312Packages.zwave-js-server-python: 0.60.0 -> 0.60.1
ff8d7e104e856 openvino: enable npu/gpu support (#385853)
5a931a17db109 Merge: bind.dnsutils: remove reference to main output (#382577)
151350089ae61 doc: fix grammar in explanation of duneVersion in buildDunePackage
72fe6ca5f1f93 dbeaver-bin: 24.3.4 -> 24.3.5
d46ced5ab5ed8 code-cursor: 0.45.11 -> 0.45.14
b155e9d70a174 sharedown: 5.3.1 -> 5.3.6
3fb6f4fe9a6c0 openvino: enable npu/gpu support
6159c28f79e40 godot3: 3.5.2 -> 3.6
2884dea84b577 godot3: format with nixfmt
6421090605340 all-the-package-names: 2.0.2042 -> 2.0.2070 (#385840)
11ba3a4e0e8d1 amnezia-vpn: 4.8.3.2 -> 4.8.4.1 (#385779)
f1b419e82987b tray-tui: init at 0.1.0 (#385338)
429d834e2512a claude-code: 0.2.19 -> 0.2.27
784f63bf406fd sharedown: update updateScript
259e17b69140a libdeltachat: 1.156.0 -> 1.156.1
979c08d171936 tray-tui: init at 0.1.0
5954d3359cc71 opencv: fix ade hash to fix gapi support (#385821)
36634ebfa53ae qbittorrent-enhanced: 5.0.3.10 -> 5.0.4.10
536ed6052520c zapret: 70 -> 70.3
fcce151169811 paperless-ngx: set meta.mainProgram (#385841)
077f472c281bc efmt: 0.19.0 -> 0.19.1
8bbce427ff680 all-the-package-names: 2.0.2042 -> 2.0.2070
ad1307444c243 dependency-track: 4.12.5 -> 4.12.6
76c8a8631c5f9 Merge: gitlab-ci-ls: 1.0.1 -> 1.0.2 (#385691)
75403c4e23163 mutt: Add zlib to buildInputs
a94dc905b34f1 webpack-cli: 5.1.4 -> 6.0.1
a42d9b29094f2 drawio: 26.0.4 -> 26.0.16
cfeaf61d5933c paperless-ngx: set meta.mainProgram
a51c0975ef007 sql-formatter: 15.4.10 -> 15.4.11 (#384288)
0c5c10cb2b720 taze: init at 18.6.0 (#385729)
d0cd839bb3567 bumpp: init at 10.0.3 (#385728)
b151711c17522 meshcentral: 1.1.38 -> 1.1.39
fb2b0b6e6b5cb weblate: 5.10.1 -> 5.10.2 (#385776)
23ddba7a80ac3 cachix: set meta.mainProgram
3f29dce6df22f nixos/tests/velocity: init
30f82d2e883b1 velocity: init at 3.4.0-unstable-2025-02-28
306968264396e freefilesync: 14.0 -> 14.2
c5c9435249e5b coc-diagnostic: fix by removing dangling symlink (#385820)
32ad75bfe7f29 opencv: fix fallback which causes infinite recursion
22e9956a941c2 opencv: fix ade hash to fix gapi support
2eafee5fcd479 opencv: cleanup unused code
482814a6bc89a python313Packages.ipwhois: use libredirect.hook (#385608)
d857a857cef1f vimPlugins.blink-cmp: 0.13.0 -> 0.13.1 (#385817)
c2601d1118b68 coc-diagnostic: fix by removing dangling symlink
188e27a26c947 taze: init at 18.6.0
0198b2e4e6e39 lenovo-legion-app: 0.0.18 -> 0.0.19-unstable-2025-02-20 (#385594)
bab6826695957 ntpd-rs: 1.4.0 -> 1.5.0
b8fe9a299bb0d tfswitch: 1.3.0 -> 1.4.0 (#385717)
230a1fcb1a5f3 vimPlugins.blink-cmp: 0.13.0 -> 0.13.1
287fd17090bba n98-magerun2: 7.5.0 -> 8.0.0 (#385812)
c878c6c7d2397 lightburn: 1.7.04 -> 1.7.06
f41852b92bf3c a-keys-path: init at 0.7.1 (#373994)
ed071e42cb468 segger-ozone: 3.30b -> 3.38c
d57b2746e4dcc awscli2: 2.23.11 -> 2.24.7 (#383267)
7a00bc50ca523 edgedb: change name to gel, 6.1.2 -> 7.0.3
0ca2eba5a23af luau: 0.661 -> 0.662
f633c4e69d4f6 n98-magerun2: 7.5.0 -> 8.0.0
50ceb1411145c python312Packages.mypy-boto3-*: updates (#385667)
65e5bedcf996d simple-completion-language-server: init at 0-unstable-2025-01-31 (#378338)
120c1d6db4c0c vimPlugins: remove nvim-web-devicons from vim-plugin-names
6816d4dd1d3e8 python312Packages.django-import-export: 4.3.5 -> 4.3.7
6bf084c4ea625 nixos/grub: generate BLS entries (#95901)
f70879f8d8ec8 python312Packages.folium: 0.19.4 -> 0.19.5
a6178d65c3722 mu: 1.12.8 -> 1.12.9
4c7d09550ba8f linuxPackages.prl-tools: 20.2.1-55876 -> 20.2.2-55879
986bdfdfa3504 goose-cli: 1.0.7 -> 1.0.10, add cloudripper as maintainer (#383788)
ed500e2ebe6e8 a-keys-path: init at 0.7.1
7d4a1a9fcfb32 pcl: fix build on darwin (#385701)
9c0711a51511e minio-warp: 1.1.0 -> 1.1.1 (#385625)
0d1166e2bb2e4 pcl: add usertam to maintainers
50a5ea49f361f pcl: fix build on darwin
ae6b1ebf78ea8 signal-cli: 0.13.12 -> 0.13.13
647f5e50b1eb6 comrak: 0.35.0 -> 0.36.0
79f56a0a40858 epic5: 3.0.2 -> 3.0.3 (#385791)
bceedda59e65e cherry-studio: init at 1.0.1
0f72ce72b4ed1 bililiverecorder:2.13.0 -> 2.15.1
a05f4efc06641 libastyle: 3.6.6 -> 3.6.7
61016c1edaef0 epic5: 3.0.2 -> 3.0.3
087e1c9c05c4c remotebox: 3.4 -> 3.5
f4d6f4e1f372c pgpool: 4.5.5 -> 4.6.0
04236f5a5f947 ruff: 0.9.8 -> 0.9.9 (#385775)
74c80c350e37e beetsPackages.alternatives: 0.13.1 -> 0.13.2 (#385784)
9151cdb81ea0f python3Packages.subliminal: set setuptools as build system
7940ddb9cbf32 candy-icons: 0-unstable-2025-02-08 -> 0-unstable-2025-02-23 (#385762)
657ecc9bf8d4c aonsoku: init at 0.8.3 (#385245)
fdf10c7f6dd20 beetsPackages.alternatives: 0.13.1 -> 0.13.2
c90c03523ce71 theforceengine: 1.10.000 -> 1.15.000
d3a36c571e666 openrct2: fix missing assets
fc5e7b8340710 keycloak: 26.1.2 -> 26.1.3
9db42a35a7a08 openrct2: fix doc path
c0980c4120094 openrct2: add keenanweaver to maintainers
3c506a3030f97 pretender: 1.3.1 -> 1.3.2
31782c65e2509 rasdaemon: 0.8.0 -> 0.8.2 (#369375)
81b6cd2ff85c0 python312Packages.python-roborock: 2.11.2 -> 2.12.0
b303ad89525ee amnezia-vpn: 4.8.3.2 -> 4.8.4.1
7be7dbf631699 amazon-cloudwatch-agent: 1.300053.0 -> 1.300052.1 (#385753)
e9ca61ee193f0 cosmic-randr: 1.0.0-alpha.5.1 -> 1.0.0-alpha.6 (#385386)
7712c98891b80 weblate: 5.10.1 -> 5.10.2
d6cc212d8f666 freshrss: 1.25.0 -> 1.26.0 (#384546)
70e36f903e7ce kbibtex: add temporary patch to allow compilation with icu version 76
da55598e22582 ruff: 0.9.8 -> 0.9.9
0823e91eaaf9d cosmic-design-demo: refactor (#385355)
378268410c460 bfs: 4.0.5 -> 4.0.6 (#385688)
071ae0115f7e9 aonsoku: init at 0.8.3
3249c2e44c470 python312Packages.publicsuffixlist: 1.0.2.20250227 -> 1.0.2.20250228
c369a57cb90ea k3s_1_32: 1.32.1 -> 1.32.2
9e0e81c286228 k3s_1_31: 1.31.5 -> 1.31.6
4c50ac6dfb832 k3s_1_30: 1.30.9 -> 1.30.10
f2f1fa3abfbe9 k3s_1_29: 1.29.13 -> 1.29.14
2f396a3577859 msolve: improve darwin support
fd716163fc619 python312Packages.lm-format-enforcer: 0.10.9 -> 0.10.11
847250ec32d76 summon: 0.10.2 -> 0.10.3
ce9e005f67bc3 vscode-extensions.saoudrizwan.claude-dev: 3.3.0 -> 3.4.0 (#385763)
f541f14445aa7 ocm: 1.0.3 -> 1.0.4 (#385697)
57a0ddeb281f0 vscode-extensions.saoudrizwan.claude-dev: 3.3.0 -> 3.4.0
113035f1abaed candy-icons: 0-unstable-2025-02-08 -> 0-unstable-2025-02-23
aed9fca513162 qlog: 0.42.0 -> 0.42.1 (#385756)
c7693ab8576ce obj2tiles: init at 1.0.13
e44a5f7f21766 tandoor_recipes: use static user and group instead of DynamicUser (#382858)
856a4ff055604 coqPackages.extructures: fix dependency
f91b6f3581fc3 nixos/rasdaemon: add package option
498c2d6827dde rasdaemon: 0.8.0 -> 0.8.2
b2af5ff292fe1 beets: modernize and disable failing test (#385592)
2dbb1fbb498c5 msolve: 0.7.3 -> 0.7.4
e09d65064fbac maintainers: add coderofsalvation
4a7cb78cd1dcf windsurf: 1.3.4 -> 1.3.9 (#385731)
b94db40c3fa7e super-productivity: 10.0.11 -> 11.1.2 (#379186)
2b3b74c58e51f beetsPackages.alternatives: 0.13.0 -> 0.13.1
f3060e1468dbe beetsPackages.alternatives: modernize
75bddc6a8fb82 beets: disable flaky tests on darwin
5f8ae668ae2cf beets: fetch patch to fix IMBackend
2306f9dd64a9a qlog: 0.42.0 -> 0.42.1
1d76886bcbf92 teamspeak6-client: rename the desktop entry
7b71abeaac8f9 nixos/release-notes: mention GRUB boot loader entries
5e5476e544c78 nixos/tests/nixos-rebuild-install-bootloader: check boot loader entries
7e6d6f778c83b nixos/tests/grub: check boot loader entries
5db39d669a21c directx-shader-compiler: 1.8.2407 -> 1.8.2502 (#384100)
0568cffc8fe94 eks-node-modules: 0.6.0 -> 0.7.1 & fix build (#384621)
3338a93f448c1 beets: modernize
1753d89c249b3 efibootmgr: fetch patch to allow reordering boot entries (#383167)
435a72e46910a nixos/grub: generate BLS entries
0317c88520a26 seamly2d: 2022-08-15.0339 -> 2025.2.24.204
03528fb772137 opensc: fix strictDeps build (#373798)
4e7b3c0508183 pixi-pack: 0.3.2 -> 0.3.3 (#385733)
a83a3a314dc26 kargo: init at 1.3.0 (#385092)
a245263038c18 influxdb3: init at 0-unstable-2025-02-17 (#383186)
d559cafaf147c amazon-cloudwatch-agent: 1.300053.0 -> 1.300052.1
5c9f26d8a72ad gqlgen: 0.17.65 -> 0.17.66
8955e3d500e11 ceph: Add benaryorg as co-maintainer (#385596)
56e88da108cf8 rebuilderd: init at 0.22.1 (#343334)
624ad16738403 phpExtensions.tideways: 5.17.2 -> 5.18.2 (#385720)
eec494f255ed7 airtame: init at 4.12.0 (#385723)
9b35179ffe447 shattered-pixel-dungeon: 2.5.4 -> 3.0.0
4653d8346e905 sc-controller: 0.4.8.21 -> 0.5.0 (#385590)
57de8fb5313cf skeema: 1.12.2 -> 1.12.3 (#385714)
9214f3fe6d659 dust: 1.1.1 -> 1.1.2 (#385690)
e0eaefa7f6099 airtame: init at 4.12.0
d8604e6ea867e pot: use fetchCargoVendor (#385657)
5f28abf363e32 pulumi-bin: 3.152.0 -> 3.153.0
eb7ce217d4856 python312Packages.pystac: 1.12.1 -> 1.12.2 (#385469)
b4ba8ed8f4bd5 python312Packages.google-cloud-dlp: 3.27.0 -> 3.28.0
9305398729940 wemeet: init at 3.19.2.400
f494f28c6847b pcm: 202409 -> 202502 (#385446)
981e5ed1796e5 gifsicle: 1.95 -> 1.96 (#385505)
1c677df787880 nodejs_23: 23.8.0 -> 23.9.0 (#385308)
9d510c7349fb0 phpPackages.grumphp: 2.10.0 -> 2.11.0 (#385709)
cbb958fa3f62c phpPackages.phpstan: 2.1.5 -> 2.1.6 (#385708)
bedb0282db98d Kernel updates for 2025-02-27 (#385734)
3485418a7534f linux_6_6: 6.6.79 -> 6.6.80
03544abd9b1dc linux_6_12: 6.12.16 -> 6.12.17
7934f4ccc816e linux_6_13: 6.13.4 -> 6.13.5
fd42d5fcb435d pixi-pack: 0.3.2 -> 0.3.3
c8e888af15203 windsurf: 1.3.4 -> 1.3.9
e6417c628dcd8 bumpp: init at 10.0.3
16957e130a20e n-m3u8dl-re: init at 0.3.0-beta
d7edfd5dafa01 python312Packages.google-cloud-artifact-registry: 1.15.0 -> 1.15.1 (#385363)
f61bd35c9f371 cosmic-term: 1.0.0-alpha.5.1 -> 1.0.0-alpha.6 (#384693)
42f0c702e7c3c phpExtensions.tideways: 5.17.2 -> 5.18.2
0696bcac3013d rpiboot: fix broken symlink failure
abf3bcb428fe7 xlights: 2025.01 -> 2025.03 (#383704)
b2627a2c2f906 qbittorrent: 5.0.3 -> 5.0.4 (#384559)
882343a39d53f tfswitch: 1.3.0 -> 1.4.0
4961e2089f975 stylance-cli: 0.5.4 -> 0.5.5
ab396698c1d8d src-cli: 6.0.1 -> 6.1.0
87afdc0a5c3d9 skeema: 1.12.2 -> 1.12.3
7bde8be097dfa cosmic-term: 1.0.0-alpha.5.1 -> 1.0.0-alpha.6
2ca95eef7e3b3 terraform-providers.aws: 5.86.0 -> 5.88.0
42a84338f0b71 terraform-providers.scaleway: 2.49.0 -> 2.50.0
c7f1c1a263de5 terraform-providers.btp: 1.9.0 -> 1.10.0
0f2c961355e7f terraform-providers.akamai: 6.6.1 -> 7.0.0
d8a79f6aa58e9 nfpm: 2.41.2 -> 2.41.3 (#385689)
93c45db29532d thunderbird-bin: 128.6.1esr -> 128.7.1esr [High security fixes] (#384250)
53b84ecd40dbf phpPackages.grumphp: 2.10.0 -> 2.11.0
1fa482668c5ba phpPackages.phpstan: 2.1.5 -> 2.1.6
a253d33898eed sdkmanager: 0.6.8 -> 0.6.11
dbc029cc25856 prometheus-artifactory-exporter: 1.15.0 -> 1.15.1
abf22991c704c ocm: 1.0.3 -> 1.0.4
544ad16643c82 servo: 0-unstable-2025-02-20 -> 0-unstable-2025-02-27 (#385686)
b98b569e15e10 infrastructure-agent: 1.60.1 -> 1.62.0
04edce9c1621b gitlab-ci-ls: 1.0.1 -> 1.0.2
42389e561c63c python312Packages.rlax: skip failing tests (#385584)
9fd74884b7265 dust: 1.1.1 -> 1.1.2
c5b9cec119853 lego.tests: fix the eval (#385653)
88ce8dc125462 nfpm: 2.41.2 -> 2.41.3
4edb87fb90f91 bfs: 4.0.5 -> 4.0.6
0329ad90d6284 servo: 0-unstable-2025-02-20 -> 0-unstable-2025-02-27
9e14d6dd11ed4 docker-credential-helpers: 0.8.2 -> 0.9.0
f4eb83630a84d dapr-cli: 1.14.1 -> 1.15.0
d08b23299f0d4 electron-fiddle: 0.32.6 → 0.36.5
72629a62614e4 azurehound: 2.2.1 -> 2.3.0
6e22d318671a6 serial-studio: 1.1.7 -> 3.0.6 + fixes (#383768)
6851837245736 ddnet: 18.9 -> 19.0 (#385026)
7c18267aa7129 python313Packages.pymilter: remove unused libredirect, use substitute… (#385606)
4d9976fd86236 liquid-dsp: don't leak impure builder cpu extensions into the build (#384350)
d09b9507fefb6 python313Packages.python-engineio: use libredirect.hook (#385609)
ec8cf9adc0507 python312Packages.flax: 0.10.3 -> 0.10.4
8adec9b9884eb opshin: 0.23.0 -> 0.24.0 (#385675)
936174353d406 python312Packages.distrax: disable flaky test
5e611c118e954 python312Packages.drf-yasg: 1.21.8 -> 1.21.9
93c81c0a7caa1 materialgram: 5.10.3.1 -> 5.11.1.1 (#384361)
84ceb76b6bd93 python313Packages.ipwhois: use libredirect.hook
b30a73b799b22 python312Packages.google-cloud-dataproc: 5.17.0 -> 5.18.0
511c954ee2138 catppuccin-cursors: 1.0.2 -> 2.0.0 (#384820)
c902847aa423e python312Packages.nicegui: 2.9.1 -> 2.11.1 (#385669)
52ee18697e792 cosmic-player: refactor (#385360)
18c956d3ff2b4 cosmic-store: refactor (#385376)
02c0e2b5860b2 opshin: 0.23.0 -> 0.24.0
ce6d8b83e3fe9 python3Packages.pycardano: 0.11.1 -> 0.12.3
41f973ccb1609 python3Packages.blockfrost-python: patch version number
7276d27bb51c4 python3Packages.ogmios: init at 1.3.0
8b4ce134c0fef python3Packages.cardano-tools: init at 2.1.0
866089f9b6fb3 python312Packages.nicegui-highcharts: 2.0.2 -> 2.1.0
0639529471b77 python312Packages.nicegui: 2.9.1 -> 2.11.1
784d919777067 python312Packages.ray: 2.42.1 -> 2.43.0 (#385655)
bdcdaf33af99c python313Packages.{oslo-{concurrency,utils},swift}: use libredirect.hook (#385605)
fbfc99774e8a8 bosh-cli: 7.9.2 -> 7.9.3
103327fa5cf35 linuxPackages.nvidiaPackages.production: 550.142 -> 570.124.04 (#385604)
77aa7401b0de2 python312Packages.ray: 2.42.1 -> 2.43.0, add prefetch.sh script
440a99b8bfc6d python312Packages.ray: add prefetch.sh script
cd5a0d1a9664c canon-cups-ufr2: Rework build script with RPM spec (#381315)
a82161e51a2a1 mastodon: 4.3.3 -> 4.3.4 (#385629)
5a81a8e4e3f85 python3Packages.planetary-computer: init at 1.0.0 (#383347)
e35b8c0b4d0cc sc-controller: move to pkgs/by-name
a72314b7e2307 python312Packages.mypy-boto3-storagegateway: 1.37.0 -> 1.37.3
5bc44b62b08ec python312Packages.mypy-boto3-sagemaker: 1.37.0 -> 1.37.3
7370a2b126876 python312Packages.mypy-boto3-redshift-serverless: 1.37.0 -> 1.37.3
39a2150c3ca18 python312Packages.mypy-boto3-oam: 1.37.0 -> 1.37.2
8c006eb88120d python312Packages.mypy-boto3-iotfleetwise: 1.37.0 -> 1.37.2
a6902aaa4466f python312Packages.mypy-boto3-emr: 1.37.0 -> 1.37.3
ec1aaa552575b python312Packages.mypy-boto3-ec2: 1.37.1 -> 1.37.2
68203c286d969 python312Packages.mypy-boto3-cloudfront: 1.37.0 -> 1.37.2
0051f2db3df32 python312Packages.mypy-boto3-chime: 1.37.0 -> 1.37.2
4aa725bfe520e python312Packages.mypy-boto3-batch: 1.37.0 -> 1.37.2
bc08bdb777988 sc-controller: 0.4.8.21 -> 0.5.0
bcd12f578bab4 python312Packages.ioctl-opt: init at 1.3
f8c2006a2e357 python313Packages.aiounifi: 81 -> 83
8680923d84e6d pot: use fetchCargoVendor and refactor
f3412ad4b8784 python313Packages.aiostreammagic: 2.10.0 -> 2.11.0
c1001ee9438ca python312Packages.rlax: skip failing tests
6e770d1ed56fb python313Packages.aiolifx-themes: 0.6.7 -> 0.6.8
176a1ead8e480 borgmatic: 1.9.5 -> 1.9.12
ce7e63af1aa02 air-formatter: init at 0.4.0 (#384848)
43357b5c458a5 python313Packages.aiohomeconnect: 0.13.0 -> 0.15.1
32d2826f35a49 nixos/archtika: init at 1.0.1 (#365218)
1ca1bcfe9f029 python313Packages.accuweather: 4.0.0 -> 4.1.0
d1c535f62a937 nixos/user-groups: add a toggle for user account creation (#358646)
622ad6b317c24 ungoogled-chromium: 133.0.6943.126-1 -> 133.0.6943.141-1 (#385638)
ef87feb7b06bd fcitx5-mcbopomofo: enable strictDeps (#382760)
c909d3efaca09 python312Packages.gemmi: skip failing test on aarch64-linux (#385578)
3fd3383906eb7 python3Packages.moviepy: increase test timeout to 600s (#385647)
26a955e815e99 upscayl: add darwin maintainer
0d29d5e898aae upscayl: darwin support
75f83b13f6087 release-notes/25.05: drop extra added new line
48b45f6f9f5b8 swayfx-unwrapped: 0.4 -> 0.5
99142b983957f xkeysnail: fix build
ae3b2edfefe59 lego.tests: fix the eval
d0067f608dcb9 scenefx: 0.1 -> 0.2.1
235516720622c wcurl: 2024.12.08 -> 2025.02.24
5cf014471f831 python3Packages.moviepy: increase test timeout to 600s
bdef187f69eb2 checkpolicy: remove meta.name and add main program
6a289bafb98fa canon-cups-ufr2: Rework build script with RPM spec
a77350764593c yazi-unwrapped: use finalAttrs
fe544f3c08785 yazi-unwrapped: fix update script
5af1d19112213 xen: patch with XSA-467
63164b5a4dc23 ungoogled-chromium: 133.0.6943.126-1 -> 133.0.6943.141-1
ae5462eeb00f5 mastodon: 4.3.3 -> 4.3.4
2c8bdd00fdf8b nixos/rebuilderd: init
0af59758f4e17 linux_xanmod_latest: 6.13.4 -> 6.13.5
f0ea055de4a21 linux_xanmod: 6.12.16 -> 6.12.17
6bb93f9ab2c0b auto-editor: 24w29a -> 26.2.0
cc02379370110 minio-warp: 1.1.0 -> 1.1.1
9827540d36ca0 lunatask: 2.0.16 -> 2.0.18
36bcc71a96a63 lunatask: switch to nix-update-script
24987a557981d rebuilderd: init at 0.22.1
16ac89e7ab543 fwupd: use libredirect.hook
80ce0318030b1 python313Packages.python-engineio: use libredirect.hook
3bc22fc35f398 python313Packages.pymilter: remove unused libredirect, use substituteInPlace
19678740fea74 python313Packages.swift: use libredirect.hook
3ef0a38a050b5 python313Packages.oslo-utils: use libredirect.hook
63b83318000ed python313Packages.oslo-concurrency: use libredirect.hook
d46c531d3ca67 linuxPackages.nvidiaPackages.production: 550.142 -> 570.124.04
cc8d1eeb9f6a0 lenovo-legion-app: 0.0.18 -> unstable-2025-02-20
3c20cfa3be484 electron_32-bin: 32.3.1 -> 32.3.2
28e6f92d20a97 python3Packages.planetary-computer: init at 1.0.0
da349fc2bae19 ceph: Add benaryorg as co-maintainer
dcb25cfe6db18 _1oom: 1.11 -> 1.11.1
638dfd60acfb4 python312Packages.gemmi: skip failing test on aarch64-linux
98ca712b8aca3 fish: use finalAttrs.finalPackage
8b63e944e34d3 fish: don't generate man pages in the test VM
55ad99e013e49 fish: replace usages of sed by substituteInPlace
add1bd1032482 fish: generate the documentation from source
49ea3fd1eaa6f fish: fix tests
67d453c8fa365 fish: use finalAttrs
3d484715c4154 fish: 3.7.1 -> 4.0
dd33ae51e1fc1 fish: move to by-name
15433ca1a8046 fish: use runTest for the nixos test
f79e11adb99d7 fish: remove unneeded config from test, this was fixed in nixpkgs
5ff8eaba36426 gpu-screen-recorder-gtk: 5.1.2 -> 5.1.6
24237d1161d84 gpu-screen-recorder: 5.0.0 -> 5.2.0
504d4c3e11e25 circt: 1.106.0 -> 1.107.0
f100a183b952c google-clasp: fix build by removing dangling symlinks
33cd05cfa5bc2 google-clasp: no with lib; in meta
f530d338d0b4a clorinde: 0.12.1 -> 0.13.1
a46528adb3e82 mtr-exporter: 0.5.0 -> 0.5.1
3244bcff7ac75 oo7-server: init at 0.4.0
6fee7756bd0ae oo7-portal: init at 0.4.0
4761daca672ee oo7: 0.3.3 -> 0.4.0
3211543c16a65 oo7: re-add updateScript
c45cf07732920 alcom: 1.8.2 -> 1.0.1
f28d05b85eca9 gifsicle: 1.95 -> 1.96
30b5fafcc40e1 slurm: 24.11.1.1 -> 24.11.2.1
d1dae7667f7d0 libphonenumber: 8.13.53 -> 8.13.55
188b6b6d8859d maintainers: add albertilagan
19c044d8cae4b infisical: 0.34.2 -> 0.35.0
1e9f22f118be8 ocamlPackages.arp: 3.1.1 → 4.0.0
21409b645064e ocamlPackages.mirage-mtime: init at 5.0.0
e81e75f86e8dd ocamlPackages.mirage-sleep: init at 4.0.0
fedb27da03eb2 snyk: 1.1295.3 -> 1.1295.4
01b8650e193b6 python312Packages.celery-redbeat: 2.2.0 -> 2.3.2
f4659737971c8 ocamlPackages.qcheck-multicoretests-util: 0.4 -> 0.7
0508ba9c0b5f0 python312Packages.pystac: 1.12.1 -> 1.12.2
e12bc01f0a375 wechat-uos: Remove hardened glibc as it seems no longer needed on 4.0.1.12
aaa5a6f96bc50 python3Packages.jinja2-humanize-extension: init at 0.4.0
68d38bed114ae python3Packages.coolname: init at 2.2.0
b48234a8a028e goose-cli: 1.0.7 -> 1.0.10, add cloudripper as maintainer, remove nayeko as maintainer
0d5abeec5486c quill-log: 8.1.1 -> 8.2.0
c67ad8814139e pcm: 202409 -> 202502
b3021b9894f10 windsurf: 1.3.4 -> 1.3.9
e29798a97a24c samplv1: 0.9.23 -> 1.3.0
30db0eb6a48d8 c-blosc2: 2.16.0 -> 2.17.0
1b3d8dd373afe arduino-cli: 1.1.1 -> 1.2.0
6dcac3fe168f8 qbittorrent: 5.0.3 -> 5.0.4
46fd635ab11d6 s2geometry: 0.11.1 -> 0.12.0
f687def422258 fluent-icon-theme: 2024-02-25 -> 2025-02-26
8829654d89a20 signal-desktop(darwin): 7.42.0 -> 7.44.0
d6458064e7ca9 signal-desktop: 7.42.0 -> 7.44.0
3c4e19df2fc04 fcron: 3.3.1 -> 3.3.3
7e2fcdc998e8c nbdkit: 1.40.4 -> 1.42.0
19e16c91805ef cifs-utils: 7.1 -> 7.2
94bdf76b1fcd1 seafile-client: 9.0.11 -> 9.0.12
c294f5d04cc5c assemblyscript: 0.27.30 -> 0.27.34
c74ef836d0be7 parsec-bin: 150_95 -> 150_97c
3e39356976d37 rset: 2.1 -> 3.2
faa80240eea21 qtorganizer-mkcal: 0-unstable-2025-02-14 -> 0-unstable-2025-02-19
a714ae7de4eac ayatana-indicator-sound: 24.5.1 -> 24.5.2
03b0b73fbd0a3 miriway: 24.11.1 -> 25.02
2f454ca9fe44e ad: 0.2.0 -> 0.3.1
5e2a7884a692c cosmic-randr: add HeitorAugustoLN as a maintainer
be8ed9b3e841d cosmic-randr: refactor
09b2e6fc1b569 cosmic-randr: 1.0.0-alpha.5.1 -> 1.0.0-alpha.6
1b9eb5f8a53f8 matrix-hookshot: 6.0.2 -> 6.0.3
55b103d4fff54 cosmic-randr: add updateScript
911f632d74ccb python312Packages.pycuda: 2024.1.2 -> 2025.1
092c64a6fdbb4 miniupnpc: 2.2.8 -> 2.3.1
4cd8b5832fb78 cosmic-store: remove vergen env variables
27c74b5dc5789 cosmic-store: add HeitorAugustoLN as a maintainer
d7441fa0f3090 cosmic-store: remove unneeded patch
7f96b20ad4a96 cosmic-store: fix updateScript
4475f092f2e28 cosmic-store: refactor
ecae691634efc rpi-imager: 1.8.5 -> 1.9.0
a7e1ef28c44a6 ocamlPackages.posix-math2: init at 2.2.0
29cee7df19e11 ocamlPackages.posix-socket: disable for OCaml < 4.12
c5f4171f2a9a4 linux_xanmod_latest: 6.12.15 -> 6.13.4
e7d22f9fb9175 linux_xanmod: 6.12.15 -> 6.12.16
f50cace56b93f cosmic-player: add updateScript
f38861be6280d cosmic-player: add HeitorAugustoLN as a maintainer
1b3898d06e470 cosmic-player: wrap with `GST_PLUGIN_SYSTEM_PATH_1_0`
b029646afcf01 nixosTests/prometheus-exporters.exportarr-sonarr: use new env-vars
f622612445a7d cosmic-player: refactor
6a1e1423a8874 simulide: fix darwin build
f1580b384408f cosmic-design-demo: add HeitorAugustoLN as a maintainer
47fcada1f3818 cosmic-design-demo: prefix `0-` in unstable version
57fb7a95c4e05 cosmic-design-demo: refactor
94d01a1bd16d3 python312Packages.google-cloud-compute: 1.25.0 -> 1.26.0
2736c06a77c39 tailspin: refactor
ac4af2578e85d tailspin: fix build
f7bcfbbcc334b whalebird: 6.1.0 -> 6.2.0-unstable-2025-02-26
07fa66f832707 python312Packages.google-cloud-artifact-registry: 1.15.0 -> 1.15.1
84442eb8856e8 nodejs_23: 23.8.0 -> 23.9.0
97572ba5a7deb revolt-desktop: 1.0.6 -> 1.0.8
5496a2c06829c lutris: 0.5.18 ->0.5.19
81dc52990b396 mopidy-jellyfin: 1.0.5 -> 1.0.6
9798022270039 retext: 8.0.2 -> 8.1.0
d084c2cfa4c85 dotnet-{sdk,runtime,aspnetcore}_10: init at 10.0.0-preview.1.25080.5
922679848eb0e multiviewer: 1.36.2 -> 1.38.1
df9b5b808a335 influxdb3: init at 0-unstable-2025-02-17
8a031ae182bd3 ddnet: fix licenses
eeb1ab1688cc4 ddnet: modernize src
dfe1187fea776 nextcloud31: init at 31.0.0
a38f742fd6275 nzbget: 24.5 -> 24.6
3afc7a4bb49ff nats-server: 2.10.25 -> 2.10.26
9aaeb818d3705 kargo: init at 1.3.0
323ea4f91b2a9 conmon: 2.1.12 -> 2.1.13
304716bb792b6 flaca: 3.2.0 -> 3.2.3
9090691089d7e libcosmicAppHook: prefer `stdenv.hostPlatform.isDarwin`
de8bdeaa60901 simulide: inline more scripts and remove usage of `with`
8e606cef34b29 python312Packages.pyixapi: 0.2.3 -> 0.2.5
b762ea39195dd cosmic-launcher: 1.0.0-alpha.5.1 -> 1.0.0-alpha.6
42d5049940736 oterm: 0.8.3 -> 0.9.1
b426ec8500320 cosmic-launcher: add HeitorAugustoLN to maintainers
fa5b9d97497bf cosmic-launcher: add updateScript
c89ddf743b582 cosmic-launcher: use libcosmicAppHook
c10374349f74e cosmic-launcher: refactor
33f6d24bad78d multipass: fix build against poco-1.14.1
00e7e2644c915 mumble: fix build against poco 1.14.1
4a35118a98992 air-formatter: init at 0.4.0
a44bc57f3b395 esp-generate: 0.2.2 -> 0.3.0
ccb4d5d21d4d8 matrix-synapse-plugins.matrix-synapse-mjolnir-antispam: 1.8.3 -> 1.9.2
7d589df100822 ocamlPackages.iter: 1.8 -> 1.9
e31fc8776862e ddm: init at 3.0.2
f80dfb3f0b1c5 schemacrawler: 16.25.1 -> 16.25.2
d175238731d9f fstl: 0.10.0 -> 0.11.0
e04a2515a1329 clamav: 1.4.1 -> 1.4.2
cb2735b089a2b ircdHybrid: 8.2.45 -> 8.2.46
bd510017e3062 libmysqlconnectorcpp: 9.1.0 -> 9.2.0
89d8bac6a6444 sudo-rs: 0.2.3 -> 0.2.4
aad4c13c15b17 openterface-qt: add udev rules for user access
e5e786ee548a1 patroni: 4.0.4 -> 4.0.5
65872bc4686ca anytype: build against electron ABI
d2d19025e2e90 fuse-archive: 0.1.14 -> 1.10
65bcebfa19ab3 ddnet: move to by-name
8c8fa169510b1 ddnet: add Scrumplex to maintainers
234c754c6cba5 ddnet: 18.9 -> 19.0
aaf9b61d427b0 scite: 5.5.4 -> 5.5.5
e8326cc79a7b7 celeste: adjust librclone-sys path
49415e02b85d8 netbox_4_0: removal
4954a67f5cd66 fping: 5.2 -> 5.3
dcf45820e9727 ficsit-cli: init at 0.6.0
816683394f96c sm64coopdx: 1.1.1 -> 1.2.1
0e95b1db08632 prometheus-fastly-exporter: 9.0.0 -> 9.0.1
ffdce2bf4b5b7 maintainers: add coat
7f7b4883df403 cwtch-ui: 1.15.4 -> 1.15.5
ffc22cd60c78e cwtch: 0.1.5 -> 0.1.6
7cbdd808ca570 recyclarr: 7.2.4 -> 7.4.1
95e7bb82fc4e9 razergenie: 0.9.0 -> 1.2.0
f1619a64863a5 razergenie: remove with lib and use finalAttrs
5f960ba9cd365 sawfish: modernize
ca2ba227c929b rep-gtk: fix build on gcc-14 & modernize
86275edcced7a ddev: install autocompletion scripts
aa3ba4cb2314c electron-bin: don't wrap inside libexec
4d2678a6e924c maintainers: add kaeeraa
b191a4cda75cc surrealist 3.1.9 -> 3.2.4
4618d53edafee nixos/servarr: organize files
7b0f7e2696292 nixos/prowlarr: add settings option
22b311429ffb6 nixos/whisparr: add settings option
7045b5061f56c nixos/readarr: add settings option
ae25ae9c3d7e9 nixos/lidarr: add settings option
0ee1f7fd4c0f5 nixos/radarr: add settings option
dcf1b856ac434 nixos/sonarr: add settings option
2542b9e428abb nixos/servarr: add options and env-var functions
e94e9c27b3069 catppuccin-cursors: 1.0.2 -> 2.0.0
2f4fa8c50bbe8 transcrypt: 2.3.0 -> 2.3.1
9d2e28a82eccf nixos/inadyn: fix defaultText
ea5d08d4e24b4 python312Packages.tftpy: 0.8.2 -> 0.8.5
4c29065d48be4 sql-studio: 0.1.32 -> 0.1.35
6741cd74ac9d0 mesos-dns: 0.9.2 -> 0.9.3
19b11edbfd9c5 quarto: 1.6.39 -> 1.6.41
76047f668170f quartoMinimal: 1.6.39 -> 1.6.41
6e27715c6d890 saga: Fix compiling on Darwin
abd42e4b28f6d rustscan: 2.3.0 -> 2.4.1
267395e20bc7c waydroid-helper: init at 0.1.2
028d47c20af1a eks-node-modules: 0.6.0 -> 0.7.1 & fix build
b1d37acb9dad5 rappel: unstable-2019-09-09 -> 0-unstable-2024-03-07
5e782690289ef goku: add `meta.changelog`
d05c2b7b1430c goku: 0.7.2 -> 0.8.0
6c1f4eab64505 pulumi: fix cross-compilation
421c26da8cdf5 pulumi: 3.122.0 -> 3.152.0
e263a52767d31 pulumiPackages.pulumi-language-python: clean up
feaffd7199462 pulumiPackages.pulumi-language-nodejs: clean up
8b62f1454d98f pulumiPackages.pulumi-language-go: clean up
5e736861f638f pulumiPackages.pulumi-language-python: update meta
1348ad901f570 pulumiPackages.pulumi-language-nodejs: update meta
eb693ca3c4546 pulumiPackages.pulumi-language-go: update meta
f875a4491cc58 aerospace: 0.16.2-Beta -> 0.17.1-Beta
babb4e173c604 librep: fix build on gcc-14 & modernize
d7f4e399bfffc pulumi: update meta
b257e7c1dfc16 pulumi: remove `with lib;`
1d575e19e4003 pulumi: add tie as maintainer
74dfd23b0a8ff radamsa: 0.6 -> 0.7
147262748cbf1 freshrss: 1.25.0 -> 1.26.0
78339a440e474 python3Packages.python-kadmin-rs: 0.5.2 -> 0.5.3
17d68c235717c prover9: fix build on GCC 14
2df9bf3523b66 Add wineWow64Packages as acceptable test targets
62b2914c44043 wine64Packages.{unstable,staging}: 10.0 -> 10.2
ae31c5f2e8256 rang: 3.1.0 -> 3.2
aaff09ec5ba7c zapzap: 5.3.9 -> 6.0.1.3
346fb39c13c66 qdrant: 1.12.1 -> 1.13.4
bcae4b6975523 aerospike: 8.0.0.2 -> 8.0.0.4
b2ee40b37e65f netlify-cli: 18.0.4 -> 18.1.0
d9d0fa164e048 raze: 1.10.2 -> 1.11.0
62a4163e2f0ee quickjs-ng: 0.6.1 -> 0.8.0
8fc18f2f36dfc maintainers: add weirdrock
1488556bd4380 tpm2-pkcs11: enable integration tests
b38b9c493f3c5 lightning-terminal: init at 0.14.1-alpha
9b45381683d55 liquid-dsp: don't leak impure builder cpu extensions into the build
c0e121f4f62ca iodine: fix patches, misc cleanup
524e5425474b3 python312Packages.pydigiham: 0.6.0 -> 0.6.2
ff4cc43a860c3 digiham: 0.6.0 -> 0.6.2, fix build
73bd4afeffe99 qdrant: refactor
fe1e141cb01d6 materialgram: 5.10.3.1 -> 5.11.1.1
2b8f4470237e5 neomutt: add ethancedwards8 to maintainers
199b12981e609 neomutt: add changelog and downloadPage
890f00c154427 neomutt: 20241002 -> 20250113
4cae18076194e neomutt: move to by-name and modernize
c404d2e76dc14 watcher: 0.13.2 -> 0.13.5
3e0b720dcf21e sql-formatter: 15.4.10 -> 15.4.11
8b2e6a71728ac obs-studio-plugins.obs-source-clone: 0.1.4-unstable-2024-02-19 -> 0.1.5
8671bd46eb906 obs-studio-plugins.obs-source-clone: remove with lib
989f44dd31ee6 obs-studio-plugins.obs-scale-to-sound: 1.2.3 -> 1.2.4
07eeb1f1a2db1 obs-studio-plugins.obs-scale-to-sound: refactor
aa0845b19e554 obs-studio-plugins.obs-replay-source: 1.6.13-unstable-2024-02-03 -> 1.8.0
2ba5678083eb3 obs-studio-plugins.obs-replay-source: refactor
708238fdc8615 thunderbird-bin: 128.6.1esr -> 128.7.1esr
39a2802a51125 i810switch: modernize
20c674d409d25 mycli: 1.27.2 -> 1.29.2
9469c20cb8246 i810switch: fix build on gcc-14
da3d311e07512 the-powder-toy: 99.2.382 -> 99.3.384
814f9ca728ba3 python3Packages.localstack-client: 1.38 -> 2.7
aa06c67367fc5 python3Packages.localstack-ext: 4.0.3 -> 4.1.1
7803c05f0c7ac localstack: 4.0.3 -> 4.1.1
5bdd046b80587 localstack: promote to top-level attribute
383aaa65d13b9 python3Packages.plux: 1.11.0 -> 1.12.0
672baebe65cab ibus-engines.table-chinese: 1.8.2 -> 1.8.3
2eaf5da7fb8a4 ibus-engines.table-chinese: remove with lib
99f06cd6f573a git-remote-codecommit: 1.15.1 -> 1.17
c87a39affff1b directx-shader-compiler: 1.8.2407 -> 1.8.2502
9576655173d01 mumble: format in standard nix format.
b542ec2c62561 collabora-online: fix build against poco-1.14
a82c5f1e7ea29 craftos-pc: fix the build against poco-1.14
dbe5797591797 pothos: fix the build against poco-1.14
4a1a1058e08fc poco: 1.13.3 -> 1.14.1
5cbf60a55949b python313Packages.aioweenect: allow networking on darwin
e4019cb10426f python313Packages.aiowaqi: allow networking on darwin
f7e880ae17174 python313Packages.aiohttp-jinja2: allow networking on darwin
c2dd438510a52 rathole: get rid of vergen
27ab6c1a9fec0 librenms: 25.1.0 -> 25.2.0
c76e00362f86c xterm.tests.musl: init
3218ced8b89b4 rathole: regenerate expired self-signed certs for tests
5e7dcb62a49a0 xterm: format with nixfmt-rfc-style
57224ad9d9c87 runme: 3.8.3 -> 3.12.2
211aeb8da9f05 ibus-engines.typing-booster-unwrapped: 2.27.1 -> 2.27.27
527be1432109c nixos/doc: convert links to manpages
da397a286e1cd timescaledb-parallel-copy: 0.4.0 -> 0.9.0
0aec71b4f131e timescaledb-parallel-copy: remove lib
70234c6f7a0b1 swim: 0.12.0 -> 0.13.0
e34e319d39c74 spade: 0.12.0 -> 0.13.0
46d6d07fcb228 nghttp3: 1.7.0 -> 1.8.0
32186569c9a20 morgen: 3.5.9 -> 3.6.6
2ad694fff9ed8 nixos/nginx: remove custom HTTP_ header from recommendedUwsgiSettings
f1021afcf5ba8 windsend-rs: init at 1.4.9
73ef38aee06fe lightburn: 1.7.04 -> 1.7.06
5633eca71a53f lightburn: fix qt version incompatibility
e75791d411f71 serial-studio: 1.1.7 -> 3.0.6 + fixes
e4a72293ae627 wechat-uos: 4.0.1.7 -> 4.0.1.12
239511fa04427 git-machete: 3.32.1 -> 3.33.0
e10f7fc96c4d0 maintainers: update fredeb
69c09ae8881a2 localsend: 1.16.1 -> 1.17.0
052d23442b1f9 dart.rhttp: add 0.10.0
fd4e5841f2793 python3Packages.peacasso: init at 0.0.19a0
091a9595f34ce buildRustCrate: make default value for codegenUnits configurable
4bef3d66230df xlights: 2025.01 -> 2025.03
60abacf4dc5de eigenrand: skip test_mv
29e175caa7462 benchexec: 3.21 → 3.27
3bc1d33e81f85 exoscale-cli: 1.77.2 -> 1.83.1
7dfdd2c7c8976 blasfeo: 0.1.4.1 -> 0.1.4.2
89888968cffcc vue-language-server: 2.2.0 -> 2.2.2
ab7885f1ef92f nodejs_18: 18.20.6 -> 18.20.7
baccfe8940408 unity-test:init at 2.61
0891239e13998 maintainers: add i01011001
de85fc8eadf19 tpm2-pkcs11: add numinit as maintainer
f7ee78c68266d tpm2-pkcs11: 1.9.0 -> 1.9.1
3d36f0d2a72d9 buildkit: 0.19.0 -> 0.20.0
ce5f4333e2ee3 gihdra-bin: 11.3 -> 11.3.1
8d94befdfd62a ghidra: 11.3 -> 11.3.1
a293dbbda6388 eas-cli: replace yarnInstallHook to fix symlink and missing cli features
00aadaea3e9c1 maintainers: add mapperfr
d5051fcc52bab ghostfolio: init at 2.139.1
e63d014548374 dbgate: 6.1.0 -> 6.2.0
d81a974063163 opencomposite: 0-unstable-2025-02-08 -> 1.0.1473
e4883d63a891f awscli2: 2.23.11 -> 2.24.7
b4069de368a95 libcupsfilters: 2.1.0 -> 2.1.1
3d2139bae77a3 bisq2: add coreutils and tor to PATH
930f7c6eca92e armadillo: 14.2.2 -> 14.4.0
f57fbfb5f4eb3 efibootmgr: fetch patch to allow reordering boot entries
54f63650cdbbb protoc-gen-connect-es: remove
16a1ed4802915 fcitx5-mcbopomofo: enable strictDeps
aa105181b6df2 ocamlPackages.functoria-runtime: 4.4.1 -> 4.4.2
2101d8e102b19 ocamlPackages.netchannel: 2.1.2 -> 2.1.3
361f29cf69485 podman-bootc: init at 0.1.2
fe2727c45b7c6 tandoor_recipes: use static user and group instead of DynamicUser
a14ef5f53f620 passepartui: 0.1.5 -> 0.1.7
ca69347aea5df dosage-tracker: 1.8.3 -> 1.9.1
5aa1fe8ea995a mxnet: remove cuda support
b5075f9c94a04 pathvector: add shell completions
53c60b8c6144c melodeon: 0.4.3 -> 0.4.4
5996b63e60bb8 ocamlPackages.domain-name: 0.4.0 -> 0.4.1
2aea7f3dfcbf4 bunster: init at v0.8.0
81bd85b51758f ocamlPackages.unisim_archisec: 0.0.9 -> 0.0.10
fa587bbf34fb4 guile-goblins: 0.14.0 -> 0.15.0
f03da2128b987 pymol: 3.0.0 -> 3.1.0, fix msgpack on non-Darwin
62d4b3f3c7c3a signal-export: 3.2.2 -> 3.4.1
3020a7cfb68db libwpe: 1.16.0 -> 1.16.2
3bf4b696ffce6 bind.dnsutils: remove reference to main output
224f7fc47810f nixos/networkd-dispatcher: added missing enum value "enslaved" to option "onState"
129752b6de1a8 linuxPackages.corefreq: 2.0.0 -> 2.0.1
dc30d4bace528 qsv: 0.138.0 -> 2.2.1
4b39fb895131b gridcoin-research: 5.4.8.0-hotfix-1 -> 5.4.9.0
489769f7c4d72 pandoc-mustache: init at 0.1.0
564acb6f6cdc5 bililiverecorder: format
429b582e37742 hubble: 0.13.6 -> 1.17.1
8add72d64b89b maintainers: add FKouhai
bc5caaa08843a ckbcomp: 1.232 -> 1.234
c782c8cd03b90 python3Packages.logbook: add missing pytest-rerunfailures dep
95fb56faff8e3 maintainers: add yunz
ed8e53dc2383b eccodes: 2.39.0 -> 2.40.0
9208cef238e9c python3Packages.aria2p: Change python3Packages.appdirs to python3Packages.platformdirs in dependencies
13e2f381d5224 python3Packages.aria2p: Changed mkDerivation input arguments into buildPythonPackage inputs
7f676a8e18b52 maintainers: add averdow
a1a6862929e65 mangayomi: refactor
0be91b8e52bc2 mangayomi: add update script
0386c7f096853 scrypt: 1.3.2 -> 1.3.3
20e53fbc3b2a9 python3Packages.pipq: fix on darwin
559f172e477b9 python3Packages.qpsolvers: add proxsuite
302c6450deb86 odoo: 18.0.20241010 -> 18.0.20250213
715c5298f5367 frawk: disable llvm support
875148c924aba python3Packages.mwxml: 0.3.4 -> 0.3.5
2a8ccbbcb9a2b cmake-language-server: 0.1.10 -> 0.1.11
fa7a70912c208 minizinc: 2.8.7 -> 2.9.0
bfa83fd383c89 python3Packages.pylibrespot-java: init at 0.1.1
2d3136320b030 partio: 1.17.3 -> 1.19.0
53abb1196c528 python3Packages.glocaltokens: init at 0.7.3
c256d7b5ecd90 nixos/k3s: use dynamic networking in multi node test
884b4116d26aa linux-manual: provide simple installation check
b26abf80023b9 linux-manual: call pre / post hooks
0f8ba00a48480 linux-manual: properly quote all shell expansions
192ae83bd19b3 linux-manual: rely on SOURCE_DATE_EPOCH instead of stat
9b19af176f07c linux-manual: define meta.platforms
0b0485e729fff linux-manual: remove use of with lib;
99ab228827cc7 linux-manual: remove use of rec
f2d31558b8d44 ceph: 19.2.0 -> 19.2.1
04e5f1d3f79a3 castxml: 0.6.10 -> 0.6.11
dbd31d478b76c subversion: remove obsolete Darwin cruft
57fcc948ae882 paho-mqtt-cpp: 1.4.1 → 1.5.1
7660fca7e3c97 simple-completion-language-server: init at version 0-unstable-2025-01-31
a02b96e222375 liboggz: 1.1.1 -> 1.1.2
a528f04cd4fad clojure: 1.12.0.1495 -> 1.12.0.1517
fa41211913acb SDL2_mixer: 2.8.0 -> 2.8.1
54e699dd67e24 bigpemu: 1.17 -> 1.18, fix metadata
f2ac05ced6e91 1password-cli: define nativeBuildInputs properly
8cd960c4db0fb top-git: 0.19.13 -> 0.19.14
10e92c1832132 part-db: init at 1.14.5
eae349ff91aad entr: 5.6 -> 5.7
fcb54a3abd947 talloc: 2.4.2 -> 2.4.3
6a601965e5975 maintainers: add thiloho
5f7664a53b518 nixos/archtika: init module
d5f3dfe327846 tdb: 1.4.12 -> 1.4.13
39003ad9d710b nixos/hylafax: add `package` option
eb52347d8c59f nixos/hylafax: use `toGNUCommandLine`
6e51b48777e7b nixos/hylafax: use `concatLines`
455c195fe4522 nixos/hylafax: use `getExe'`
8378491df3d5e nixos/hylafax: unify `lib` imports
61740d3793062 hylafaxplus: 7.0.9 -> 7.0.10
cc4b18c542c70 hylafaxplus: enable parallel building
b1218ce254c81 hylafaxplus: use `finalAttrs` pattern
93426690040b8 armTrustedFirmwareTools: reformat with nixfmt
960b2f6d055a2 armTrustedFirmwareTools: fix build issues
09b2a1dccce72 epson_201207w: 1.0.0 -> 1.0.1
b4e50bb293153 rdfind: 1.6.0 -> 1.7.0
054ff11ba2288 maintainers: add wenjinnn
57dae19828971 golink: 0-unstable-2024-01-26 -> 1.0.0
6bd323bfd77c4 super-productivity: 10.0.11 -> 11.1.2
8f5c59005391d maintainers: add wrvsrx
f9c16aa476885 python3Packages.jax: add operations to cuda test
813244ed0ff41 nixos/userborn: filter enabled users
d36a3641485ae nixos/tests: add user-enable-option
1dd23b5d74525 nixos/user-groups: add a toggle for user account creation
fa3cb966a91b7 parted: enable parallel building and testing
926bb4273e564 parted: backport upstream C23 fix
67302a21ae9cb maintainers: add kpbaks
95d113d9ea011 libslirp: 4.8.0 -> 4.9.0
9abdf7235ff77 vscode-extensions.github.codespaces: 1.16.9 -> 1.17.3
f05962d7fc11a archtika: init at 1.0.1
4da0e1d3632e7 confy: 0.7.1 -> 0.8.0
17b3ef77f0b2a cri-o: 1.31.3 -> 1.32.0
a21fefe1b6f6b rootlesskit: 2.3.1 -> 2.3.2
61a05336ef3d1 semgrep{,-core}: 1.74.0 -> 1.104.0
c795119909298 parallel-hashmap: 1.4.1 -> 2.0.0
ed3e064d3b767 megasync: 5.6.1.0 -> 5.7.1.0
00bcf9d7726a8 clash-rs: adopt
558314344fbfa f2fs-tools: backport upstream C23 fix
be1df66c9dbf0 argparse: 3.1 -> 3.2
0a654e7585370 freetds: 1.4.24 -> 1.4.26
066f62aa43eee diamond: 2.1.10 -> 2.1.11
66200fb07eda2 osinfo-db: 20240701 -> 20250124
705289bf705f5 prusa-slicer: patch curl version checks
db96f5bfc44dc osquery: 5.14.1 -> 5.15.0
ab66c4d9f95a6 catboost: use llvm 14 for cuda
e64437c75ea87 pidgin: 2.14.13 -> 2.14.14
60ecc05efe036 ocamlPackages.gen_js_api: 1.1.3 -> 1.1.4
a67e49cb831e8 neovim-qt-unwrapped: 0.2.18 -> 0.2.19
cf69ff82653dd newlib-nano: Fix build
5356b1a56bee6 minify: 2.21.2 -> 2.21.3
8583a0de6f3d5 nixos/nextcloud: document systemd credentials as a backwards incompatible change in the 25.05 release notes
3d29092753fac ocamlPackages.ocaml-version: 3.7.2 -> 3.7.3
549d8a6d44b9a nixos/tests/nextcloud: fix redis cache non empty tests
18de1c264ec53 nixos/tests/nextcloud: use lib instead of pkgs.lib wherever trivial
2ce1e841032ea nixos/nextcloud: use LoadCredential to read secrets
e6b078981b0b6 nixos/nextcloud: move systemd service overrides for phpfpm-nextcloud closer to phpfpm config
598ba3922cc17 nixos/nextcloud: use writeShellApplication for nextcloud-occ
9ffa0a5945cc7 nixos/tests/nextcloud: test for notify_push in with-declarative-redis-and-secrets
61cc8b99aa250 brainflow: 5.15.0 -> 5.16.0
5890cd9043cf3 ocamlPackages.ocaml_sqlite3: 5.2.0 -> 5.3.0
e0aadd1072a72 libdevil: move to openexr_3
17b79646e2648 python3Packages.jax: remove outdated longDescription
9bd08f040ed9c python3Packages.jax-cuda12-plugin: patch like jax-cuda12-pjrt
659babe816692 python312Packages.jax-cuda12-pjrt: add missing cuda libraries
1da907e6d39cc ocamlPackages.spdx_licenses: 1.2.0 -> 1.3.0
cf14b5d63b3e9 inxi: 3.3.35-1 -> 3.3.37-1
5892745d1360f authentik: sentry-sdk -> sentry-sdk_2
394f6fe075cd6 qtox: 1.18.0 -> 1.18.2
3dd58b0beeeb5 opensc: fix strictDeps build
2d1609b0ef74c armTrustedFirmwareTools: 2.10.0 -> 2.12.0
b8fea7045c853 dxx-rebirth: 0.60.0-beta2-unstable-2024-12-07 -> 0.60.0-beta2-unstable-2025-01-12
490d6ecdf9c07 ocamlPackages.miou: 0.3.0 -> 0.3.1
303a115d49bdc python312Packages.sqlalchemy-json: refactor
6cab8a3e045bf evolution-ews: 3.54.2 -> 3.54.3.0
362ab3dacdcdf imgbrd-grabber: 7.12.2 -> 7.13.0
152056209b1c5 irpf: 2024-1.5 -> 2024-1.6
2c47cfa4ed05b pgbouncer: 1.23.1 -> 1.24.0
55fd2e6ebf0cc zgv: fix GCC 14 build
fac2647fdfaa5 xdg-desktop-portal-gtk: 1.15.1 -> 1.15.2
f8158e825bc57 spacenavd: 1.3 -> 1.3.1
f83cf62e2330d paho-mqtt-c: modernize
53ab149dc75c3 rpcs3: 0.0.34-17265-418a99a62 -> 0.0.34-17323-92d070729
8adfe0f8350c7 paho-mqtt-c: 1.3.13 -> 1.3.14
d810e9e936624 snakefmt: init at 0.10.2
576a0754c8185 maintainers: add jolars
93559749834b5 maintainers: add okwilkins
a21afd4142455 tmuxPlugins.tmux-sessionx: init at 0-unstable-2024-09-22
e2320adf50667 home-assistant: update component-packages
c4da49304055b python312Packages.peblar: init at 0.3.3
1f067869e8299 tt-rss-plugin-freshapi: init at unstable-2024-11-14
8d45fcd45c615 perlPackages.SDL: fix build with GCC 14
f22692dc23849 SDL2_ttf: 2.22.0 -> 2.24.0
29b42bd7310ff nixos/osquery: fix database_path + logger_path opts per systemd docs
54199c86cf14d spdx-license-list-data: 3.25.0 -> 3.26.0
4cb2498f3f180 perlPackages.Tirex: fix build with recent mapnik
e14a65219276f worldpainter: init at 2.23.2
d1a28bbdb4824 nixos/nginx: add locations."name".uwsgiPass and related options and use it
e947089d443c0 beetsPackages.audible: init at 1.0.0
e7c21191edfd8 mmj2: init at 2.5.2-unstable-2023-06-27
e7ce805987b88 qqmusic: init at 1.1.7
14ffa0e572af5 stirling-pdf: use Gradle 8
6355db00b2207 Mount /dev when creating a VM image from RPMs
6257c8d29bc7e gdmd: init at 0.1.0-unstable-2024-05-30
f4bd2c83e909d nixos/users-groups: Add assert on null shells
git-subtree-dir: third_party/nixpkgs
git-subtree-split: e3e32b642a31e6714ec1b712de8c91a3352ce7e1
2025-03-11 10:06:59 +00:00
|
|
|
LANG = if stdenv.isLinux then "C.UTF-8" else "C";
|
|
|
|
LC_CTYPE = if stdenv.isLinux then "C.UTF-8" else "UTF-8";
|
2024-11-10 23:59:47 +00:00
|
|
|
|
|
|
|
postUnpack =
|
|
|
|
''
|
|
|
|
# Mix and Hex
|
|
|
|
export MIX_HOME="$TEMPDIR/mix"
|
|
|
|
export HEX_HOME="$TEMPDIR/hex"
|
|
|
|
|
|
|
|
# Rebar
|
|
|
|
export REBAR_GLOBAL_CONFIG_DIR="$TEMPDIR/rebar3"
|
|
|
|
export REBAR_CACHE_DIR="$TEMPDIR/rebar3.cache"
|
|
|
|
|
|
|
|
${lib.optionalString (mixFodDeps != null) ''
|
|
|
|
# Compilation of the dependencies will require that the dependency path is
|
|
|
|
# writable, thus a copy to the $TEMPDIR is inevitable here.
|
|
|
|
export MIX_DEPS_PATH="$TEMPDIR/deps"
|
|
|
|
cp --no-preserve=mode -R "${mixFodDeps}" "$MIX_DEPS_PATH"
|
|
|
|
''}
|
|
|
|
''
|
|
|
|
+ (attrs.postUnpack or "");
|
|
|
|
|
|
|
|
configurePhase =
|
|
|
|
attrs.configurePhase or ''
|
|
|
|
runHook preConfigure
|
|
|
|
|
|
|
|
${./mix-configure-hook.sh}
|
|
|
|
|
|
|
|
# This is needed for projects that have a specific compile step
|
|
|
|
# the dependency needs to be compiled in order for the task
|
|
|
|
# to be available.
|
|
|
|
#
|
|
|
|
# Phoenix projects for example will need compile.phoenix.
|
|
|
|
mix deps.compile --no-deps-check --skip-umbrella-children
|
|
|
|
|
|
|
|
# Symlink dependency sources. This is needed for projects that require
|
|
|
|
# access to the source of their dependencies. For example, Phoenix
|
|
|
|
# projects need javascript assets to build asset bundles.
|
|
|
|
${lib.optionalString (mixNixDeps != { }) ''
|
|
|
|
mkdir -p deps
|
|
|
|
|
|
|
|
${lib.concatMapStringsSep "\n" (dep: ''
|
|
|
|
dep_name=$(basename ${dep} | cut -d '-' -f2)
|
|
|
|
dep_path="deps/$dep_name"
|
|
|
|
if [ -d "${dep}/src" ]; then
|
|
|
|
ln -s ${dep}/src $dep_path
|
|
|
|
fi
|
|
|
|
'') (builtins.attrValues mixNixDeps)}
|
|
|
|
''}
|
|
|
|
|
|
|
|
# Symlink deps to build root. Similar to above, but allows for mixFodDeps
|
|
|
|
# Phoenix projects to find javascript assets.
|
|
|
|
${lib.optionalString (mixFodDeps != null) ''
|
|
|
|
ln -s ../deps ./
|
|
|
|
''}
|
|
|
|
|
|
|
|
runHook postConfigure
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase =
|
|
|
|
attrs.buildPhase or ''
|
|
|
|
runHook preBuild
|
|
|
|
|
|
|
|
mix compile --no-deps-check ${lib.concatStringsSep " " compileFlags}
|
|
|
|
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase =
|
|
|
|
attrs.installPhase or ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mix release ${mixReleaseName} --no-deps-check --path "$out"
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup =
|
|
|
|
''
|
|
|
|
echo "removing files for Microsoft Windows"
|
|
|
|
rm -f "$out"/bin/*.bat
|
|
|
|
|
|
|
|
echo "wrapping programs in $out/bin with their runtime deps"
|
|
|
|
for f in $(find $out/bin/ -type f -executable); do
|
|
|
|
wrapProgram "$f" \
|
|
|
|
--prefix PATH : ${
|
|
|
|
lib.makeBinPath [
|
|
|
|
coreutils
|
|
|
|
gnused
|
|
|
|
gnugrep
|
|
|
|
gawk
|
|
|
|
]
|
|
|
|
}
|
|
|
|
done
|
|
|
|
''
|
|
|
|
+ lib.optionalString removeCookie ''
|
|
|
|
if [ -e $out/releases/COOKIE ]; then
|
|
|
|
echo "removing $out/releases/COOKIE"
|
|
|
|
rm $out/releases/COOKIE
|
|
|
|
fi
|
|
|
|
''
|
|
|
|
+ ''
|
|
|
|
if [ -e $out/erts-* ]; then
|
|
|
|
# ERTS is included in the release, then erlang is not required as a runtime dependency.
|
|
|
|
# But, erlang is still referenced in some places. To removed references to erlang,
|
|
|
|
# following steps are required.
|
|
|
|
|
|
|
|
# 1. remove references to erlang from plain text files
|
|
|
|
for file in $(rg "${erlang}/lib/erlang" "$out" --files-with-matches); do
|
|
|
|
echo "removing references to erlang in $file"
|
|
|
|
substituteInPlace "$file" --replace "${erlang}/lib/erlang" "$out"
|
|
|
|
done
|
|
|
|
|
|
|
|
# 2. remove references to erlang from .beam files
|
|
|
|
#
|
|
|
|
# No need to do anything, because it has been handled by "deterministic" option specified
|
|
|
|
# by ERL_COMPILER_OPTIONS.
|
|
|
|
|
|
|
|
# 3. remove references to erlang from normal binary files
|
|
|
|
for file in $(rg "${erlang}/lib/erlang" "$out" --files-with-matches --binary --iglob '!*.beam'); do
|
|
|
|
echo "removing references to erlang in $file"
|
|
|
|
# use bbe to substitute strings in binary files, because using substituteInPlace
|
|
|
|
# on binaries will raise errors
|
|
|
|
bbe -e "s|${erlang}/lib/erlang|$out|" -o "$file".tmp "$file"
|
|
|
|
rm -f "$file"
|
|
|
|
mv "$file".tmp "$file"
|
|
|
|
done
|
|
|
|
|
|
|
|
# References to erlang should be removed from output after above processing.
|
|
|
|
fi
|
|
|
|
''
|
|
|
|
+ lib.optionalString stripDebug ''
|
|
|
|
# Strip debug symbols to avoid hardreferences to "foreign" closures actually
|
|
|
|
# not needed at runtime, while at the same time reduce size of BEAM files.
|
|
|
|
erl -noinput -eval 'lists:foreach(fun(F) -> io:format("Stripping ~p.~n", [F]), beam_lib:strip(F) end, filelib:wildcard("'"$out"'/**/*.beam"))' -s init stop
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
)
|