From 0d20d14c0ae071c29220ef7cf1483150fe18829d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 15 Apr 2026 18:02:30 +0000 Subject: [PATCH 01/97] vpl-gpu-rt: 26.1.4 -> 26.1.6 --- pkgs/by-name/vp/vpl-gpu-rt/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/vp/vpl-gpu-rt/package.nix b/pkgs/by-name/vp/vpl-gpu-rt/package.nix index 1ba0a20c6592..83bb7cac0df3 100644 --- a/pkgs/by-name/vp/vpl-gpu-rt/package.nix +++ b/pkgs/by-name/vp/vpl-gpu-rt/package.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "vpl-gpu-rt"; - version = "26.1.4"; + version = "26.1.6"; outputs = [ "out" @@ -21,7 +21,7 @@ stdenv.mkDerivation (finalAttrs: { owner = "intel"; repo = "vpl-gpu-rt"; rev = "intel-onevpl-${finalAttrs.version}"; - hash = "sha256-DqEg7GClyWdy9Clop7nIJSllN5gLTSZujgBwN2WmBds="; + hash = "sha256-E8CQC2jHSo2ZHp8drXXTgcOOHru3kDJtoLNKwm++YG8="; }; nativeBuildInputs = [ From 78469b9e7c85f64081fd605400ca673158155999 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 21 Apr 2026 20:08:22 +0000 Subject: [PATCH 02/97] ntfs3g: 2022.10.3 -> 2026.2.25 --- pkgs/by-name/nt/ntfs3g/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/nt/ntfs3g/package.nix b/pkgs/by-name/nt/ntfs3g/package.nix index df33a3abac77..7bda93b3c434 100644 --- a/pkgs/by-name/nt/ntfs3g/package.nix +++ b/pkgs/by-name/nt/ntfs3g/package.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { pname = "ntfs3g"; - version = "2022.10.3"; + version = "2026.2.25"; outputs = [ "out" @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { owner = "tuxera"; repo = "ntfs-3g"; rev = version; - sha256 = "sha256-nuFTsGkm3zmSzpwmhyY7Ke0VZfZU0jHOzEWaLBbglQk="; + sha256 = "sha256-uiVh87ExLXq94NVqR8MEg7Lrvamm6MrH+qP3Nosii5c="; }; buildInputs = [ From 146bc8dcb2c41f221b277042b8f6a9139947c3a7 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 5 Jan 2026 15:27:21 +0200 Subject: [PATCH 03/97] doc/python: document fixed-point arguments (#271387) --- doc/languages-frameworks/python.section.md | 34 ++++++++++++++++++++++ doc/redirects.json | 3 ++ 2 files changed, 37 insertions(+) diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md index 23a03b8c259e..6472c3f57789 100644 --- a/doc/languages-frameworks/python.section.md +++ b/doc/languages-frameworks/python.section.md @@ -207,6 +207,40 @@ following are specific to `buildPythonPackage`: * `setupPyGlobalFlags ? []`: List of flags passed to `setup.py` command. * `setupPyBuildFlags ? []`: List of flags passed to `setup.py build_ext` command. +##### Using fixed-point arguments {#buildpythonpackage-fixed-point-arguments} + +Both `buildPythonPackage` and `buildPythonApplication` support [fixed-point arguments](#chap-build-helpers-finalAttrs), similar to `stdenv.mkDerivation`. +This allows you to reference the final attributes of the derivation. + +Instead of using `rec`: + +```nix +buildPythonPackage rec { + pname = "pyspread"; + version = "2.4"; + src = fetchPypi { + inherit pname version; + hash = "sha256-..."; + }; +} +``` + +You can use the `finalAttrs` pattern: + +```nix +buildPythonPackage (finalAttrs: { + pname = "pyspread"; + version = "2.4"; + src = fetchPypi { + pname = "pyspread"; + inherit (finalAttrs) version; + hash = "sha256-..."; + }; +}) +``` + +See the [general documentation on fixed-point arguments](#chap-build-helpers-finalAttrs) for more details on the benefits of this pattern. + The [`stdenv.mkDerivation`](#sec-using-stdenv) function accepts various parameters for describing build inputs (see "Specifying dependencies"). The following are of special interest for Python packages, either because these are primarily used, or diff --git a/doc/redirects.json b/doc/redirects.json index bf2b4029e8d0..97637b55e505 100644 --- a/doc/redirects.json +++ b/doc/redirects.json @@ -4059,6 +4059,9 @@ "buildpythonpackage-parameters": [ "index.html#buildpythonpackage-parameters" ], + "buildpythonpackage-fixed-point-arguments": [ + "index.html#buildpythonpackage-fixed-point-arguments" + ], "overriding-python-build-helpers": [ "index.html#overriding-python-build-helpers" ], From 5bbf21430d51800d1a585367fbcc3af9f93695c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 27 Apr 2026 18:20:44 +0200 Subject: [PATCH 04/97] knot-resolver_6: 6.2.0 -> 6.3.0 https://gitlab.nic.cz/knot/knot-resolver/-/releases/v6.3.0 --- pkgs/by-name/kn/knot-resolver_6/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/kn/knot-resolver_6/package.nix b/pkgs/by-name/kn/knot-resolver_6/package.nix index 7d1edf5d7451..e515f6933a23 100644 --- a/pkgs/by-name/kn/knot-resolver_6/package.nix +++ b/pkgs/by-name/kn/knot-resolver_6/package.nix @@ -36,11 +36,11 @@ let # TODO: we could cut the `let` short here, but it would de-indent everything. unwrapped = stdenv.mkDerivation (finalAttrs: { pname = "knot-resolver_6"; - version = "6.2.0"; + version = "6.3.0"; src = fetchurl { url = "https://secure.nic.cz/files/knot-resolver/knot-resolver-${finalAttrs.version}.tar.xz"; - hash = "sha256-tEYzvIQxgMC8fHfPexX+VxJDrpkrTdt0r97kz6gDcBs="; + hash = "sha256-uHMGGX90NrSQecYzNkvF33GjkyNvsl6fzn0ESAvHUY4="; }; outputs = [ From 303c5a4a6cb62a202d5a9137d432059a3eb7b6f4 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Mon, 27 Apr 2026 11:50:48 -0500 Subject: [PATCH 05/97] teams-for-linux: 2.8.0 -> 2.8.1 --- pkgs/by-name/te/teams-for-linux/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/te/teams-for-linux/package.nix b/pkgs/by-name/te/teams-for-linux/package.nix index e9e2ac9dfcd5..b01f5392b4a0 100644 --- a/pkgs/by-name/te/teams-for-linux/package.nix +++ b/pkgs/by-name/te/teams-for-linux/package.nix @@ -16,16 +16,16 @@ buildNpmPackage rec { pname = "teams-for-linux"; - version = "2.8.0"; + version = "2.8.1"; src = fetchFromGitHub { owner = "IsmaelMartinez"; repo = "teams-for-linux"; tag = "v${version}"; - hash = "sha256-ybxJCCdam5g43Ycf+Ro3ptOr+4+49Fw+y0rqG4fEzBc="; + hash = "sha256-kD04SMErq92k+F4/3v6bpoJf2lfaGM6bAn+bCa9ACbA="; }; - npmDepsHash = "sha256-+VwOlzR+80m+qQS4L0IPmFTn4xuPM7aX7EtSd50D9KM="; + npmDepsHash = "sha256-497bL7l3OIAgkbXP3FkeFFpPz2VtRENrw6sQmJsnXBY="; nativeBuildInputs = [ makeWrapper From eacc33e4cfb849cdd973ba4d6228fb7fff0f1dcc Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Mon, 27 Apr 2026 20:18:37 +0100 Subject: [PATCH 06/97] badrobot: fix changelog --- pkgs/by-name/ba/badrobot/package.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ba/badrobot/package.nix b/pkgs/by-name/ba/badrobot/package.nix index 66ef63c07eb9..628c41978e11 100644 --- a/pkgs/by-name/ba/badrobot/package.nix +++ b/pkgs/by-name/ba/badrobot/package.nix @@ -13,7 +13,7 @@ buildGoModule (finalAttrs: { src = fetchFromGitHub { owner = "controlplaneio"; repo = "badrobot"; - rev = "v${finalAttrs.version}"; + tag = "v${finalAttrs.version}"; sha256 = "sha256-U3b5Xw+GjnAEXteivztHdcAcXx7DYtgaUbW5oax0mIk="; }; vendorHash = "sha256-oYdkCEdrw1eE5tnKveeJM3upRy8hOVc24JNN1bLX+ec="; @@ -35,7 +35,7 @@ buildGoModule (finalAttrs: { meta = { homepage = "https://github.com/controlplaneio/badrobot"; - changelog = "https://github.com/controlplaneio/badrobot/blob/v${finalAttrs.version}/CHANGELOG.md"; + changelog = "https://github.com/controlplaneio/badrobot/releases/tag/v${finalAttrs.src.tag}"; description = "Operator Security Audit Tool"; mainProgram = "badrobot"; longDescription = '' @@ -47,6 +47,8 @@ buildGoModule (finalAttrs: { cluster permissions. ''; license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ jk ]; + maintainers = with lib.maintainers; [ + jk + ]; }; }) From 870b2e6d4672a19b794941e352dbda570b2a9510 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 27 Apr 2026 21:42:07 +0000 Subject: [PATCH 07/97] garmin-grafana: 0.3.0 -> 0.5.0 --- pkgs/by-name/ga/garmin-grafana/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ga/garmin-grafana/package.nix b/pkgs/by-name/ga/garmin-grafana/package.nix index 262c1adaf30e..376c8584fd3c 100644 --- a/pkgs/by-name/ga/garmin-grafana/package.nix +++ b/pkgs/by-name/ga/garmin-grafana/package.nix @@ -5,7 +5,7 @@ }: python3Packages.buildPythonPackage rec { pname = "garmin-grafana"; - version = "0.3.0"; + version = "0.5.0"; pyproject = true; @@ -13,7 +13,7 @@ python3Packages.buildPythonPackage rec { owner = "arpanghosh8453"; repo = "garmin-grafana"; tag = "v${version}"; - hash = "sha256-nuVT6LK9KIs/FwUbdfI4xpKru4jfAyj1/vmk7ji43zk="; + hash = "sha256-NrT4erpdWwqFBUumQdd5GqpmhIayszzkPd8fUgDRwXY="; }; build-system = with python3Packages; [ From 767e1070a7d8c693f17ca9fa698398817f9a330d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 28 Apr 2026 02:23:01 +0000 Subject: [PATCH 08/97] proftpd: 1.3.9 -> 1.3.9a --- pkgs/by-name/pr/proftpd/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pr/proftpd/package.nix b/pkgs/by-name/pr/proftpd/package.nix index 6e3bd70b8704..8d664a8e0699 100644 --- a/pkgs/by-name/pr/proftpd/package.nix +++ b/pkgs/by-name/pr/proftpd/package.nix @@ -19,13 +19,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "proftpd"; - version = "1.3.9"; + version = "1.3.9a"; src = fetchFromGitHub { owner = "proftpd"; repo = "proftpd"; tag = "v${finalAttrs.version}"; - hash = "sha256-4Iyzk0OctTvDDkYXPDSrvaWQOjkbBXHY7ELyhkUx/X0="; + hash = "sha256-SNLzIwMF6XU2SAc5B9LIW2Jeh1Fa4CVumQYd2O0XxRY="; }; patches = [ ./no-install-user.patch ]; From f3f2e579517aea2b596d1002275f702da8e15026 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 28 Apr 2026 11:39:05 +0000 Subject: [PATCH 09/97] renovate: 43.132.1 -> 43.150.1 --- pkgs/by-name/re/renovate/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/re/renovate/package.nix b/pkgs/by-name/re/renovate/package.nix index 243247907113..c71030bc00a7 100644 --- a/pkgs/by-name/re/renovate/package.nix +++ b/pkgs/by-name/re/renovate/package.nix @@ -20,13 +20,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "renovate"; - version = "43.132.1"; + version = "43.150.1"; src = fetchFromGitHub { owner = "renovatebot"; repo = "renovate"; tag = finalAttrs.version; - hash = "sha256-vb7MIDxc1ZnjU/sBZqe0BwFzS8jlDjmW2HYkEPOQzIM="; + hash = "sha256-yCkwlPf6jLM906U7BdY1h5IcaOSe6aureYIKXQk+re0="; }; postPatch = '' @@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs) pname version src; pnpm = pnpm_10; fetcherVersion = 2; - hash = "sha256-F7yity4PK3WYgq/DguJ4uz9QnOW9VRZuCgfUi2BryqQ="; + hash = "sha256-gDffEtUWqSWbwr4S0HZIPTvSrXDvl/q2Y5QuA+U6Ndk="; }; env.COREPACK_ENABLE_STRICT = 0; From 522ead47454567b95f5bfb60f9b0528300e97b34 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 28 Apr 2026 12:54:07 +0000 Subject: [PATCH 10/97] apidog: 2.8.24 -> 2.8.26 --- pkgs/by-name/ap/apidog/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ap/apidog/package.nix b/pkgs/by-name/ap/apidog/package.nix index b0b73272c95c..9f40de3c39b6 100644 --- a/pkgs/by-name/ap/apidog/package.nix +++ b/pkgs/by-name/ap/apidog/package.nix @@ -7,11 +7,11 @@ let pname = "apidog"; - version = "2.8.24"; + version = "2.8.26"; src = fetchurl { url = "https://file-assets.apidog.com/download/${version}/Apidog-${version}.AppImage"; - hash = "sha256-gGhA++wfgURhibGF2tXAmH0orX2VSUiJsAo3wAu6t1g="; + hash = "sha256-u+J5OKgqOKEE35IhMpL7LUB4UgaX2XZKfnUczfLhjoU="; }; appimageContents = appimageTools.extract { From 8aa784b17646066c7d147082f2363f0648881bbd Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Tue, 28 Apr 2026 13:58:07 +0100 Subject: [PATCH 11/97] ryubing: fix changelog --- pkgs/by-name/ry/ryubing/package.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ry/ryubing/package.nix b/pkgs/by-name/ry/ryubing/package.nix index 1596cf56a0aa..5684f57ac98d 100644 --- a/pkgs/by-name/ry/ryubing/package.nix +++ b/pkgs/by-name/ry/ryubing/package.nix @@ -135,7 +135,8 @@ buildDotnetModule rec { meta = { homepage = "https://ryujinx.app"; - changelog = "https://git.ryujinx.app/ryubing/ryujinx/-/wikis/changelog"; + # historical changelog https://git.ryujinx.app/projects/Ryubing/wiki/Changelog + changelog = "https://git.ryujinx.app/projects/Ryubing/releases/tag/${src.tag}"; description = "Experimental Nintendo Switch Emulator written in C# (community fork of Ryujinx)"; longDescription = '' Ryujinx is an open-source Nintendo Switch emulator, created by gdkchan, From d00e5c41bfa77e877b70a0954f26ad22080ef673 Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Tue, 28 Apr 2026 13:56:41 +0100 Subject: [PATCH 12/97] shisho: drop --- doc/release-notes/rl-2605.section.md | 2 + pkgs/by-name/sh/shisho/package.nix | 63 ---------------------------- pkgs/top-level/aliases.nix | 1 + 3 files changed, 3 insertions(+), 63 deletions(-) delete mode 100644 pkgs/by-name/sh/shisho/package.nix diff --git a/doc/release-notes/rl-2605.section.md b/doc/release-notes/rl-2605.section.md index 9ce8921e827d..55eb84685c12 100644 --- a/doc/release-notes/rl-2605.section.md +++ b/doc/release-notes/rl-2605.section.md @@ -262,6 +262,8 @@ - `opensmtpd-filter-dkimsign` is now installed into `libexec/smtpd` instead of `libexec/opensmtpd` so that now it is properly linked into the environment built by `services.opensmtpd.procPackages`. If you hardcoded path to `filter-dkimsign` please consider using this option. +- `shisho` has been removed because it's archived. `semgrep`, `opengrep`, and `ast-grep` provide similar functionality. + - `services.openssh.settings.AcceptEnv` now explicitly defined as an option that takes a list of strings, to facilitate option merging. Setting it to a string value is no longer supported. - All Xfce packages have been moved to top level (e.g. if you previously added `pkgs.xfce.xfce4-whiskermenu-plugin` to `environment.systemPackages`, you will need to change it to `pkgs.xfce4-whiskermenu-plugin`). The `xfce` scope will be removed in NixOS 26.11. diff --git a/pkgs/by-name/sh/shisho/package.nix b/pkgs/by-name/sh/shisho/package.nix deleted file mode 100644 index 80a54a90f3d1..000000000000 --- a/pkgs/by-name/sh/shisho/package.nix +++ /dev/null @@ -1,63 +0,0 @@ -{ - lib, - fetchFromGitHub, - rustPlatform, - installShellFiles, - rustfmt, - stdenv, -}: - -rustPlatform.buildRustPackage (finalAttrs: { - pname = "shisho"; - version = "0.5.2"; - - src = fetchFromGitHub { - owner = "flatt-security"; - repo = "shisho"; - tag = "v${finalAttrs.version}"; - hash = "sha256-G7sHaDq+F5lXNaF1sSLUecdjZbCejJE79P4AQifKdFY="; - fetchSubmodules = true; - }; - - cargoHash = "sha256-gv3qvDzqwuuAVpbaOpMI7DuapSALMr/qzyhor3avYQI="; - - nativeBuildInputs = [ - installShellFiles - # required to build serde-sarif dependency - rustfmt - ]; - - postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' - installShellCompletion --cmd shisho \ - --bash <($out/bin/shisho completion bash) \ - --fish <($out/bin/shisho completion fish) \ - --zsh <($out/bin/shisho completion zsh) - ''; - - doInstallCheck = true; - installCheckPhase = '' - runHook preInstallCheck - - $out/bin/shisho --help - $out/bin/shisho --version | grep "${finalAttrs.version}" - - runHook postInstallCheck - ''; - - meta = { - homepage = "https://docs.shisho.dev/shisho/"; - changelog = "https://docs.shisho.dev/changelog/"; - description = "Lightweight static analyzer for several programming languages"; - mainProgram = "shisho"; - longDescription = '' - Shisho is a lightweight static code analyzer designed for developers and - is the core engine for Shisho products. It is, so to speak, like a - pluggable and configurable linter; it gives developers a way to codify - your domain knowledge over your code as rules. With powerful automation - and integration capabilities, the rules will help you find and fix issues - semiautomatically. - ''; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ jk ]; - }; -}) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 11c1707ba984..c05e977419a3 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1855,6 +1855,7 @@ mapAliases { shades-of-gray-theme = throw "'shades-of-gray-theme' has been removed because upstream is a 404"; # Added 2025-12-20 shared_desktop_ontologies = throw "'shared_desktop_ontologies' has been removed as it had been abandoned upstream"; # Added 2025-11-09 shipyard = throw "'shipyard' has been renamed to/replaced by 'jumppad'"; # Converted to throw 2025-10-27 + shisho = throw "'shisho' has been removed, as it is archived upstream. Consider using 'semgrep', 'opengrep', or 'ast-grep' instead"; # Added 2026-04-28 sic-image-cli = warnAlias "'sic-image-cli' has been renamed to 'imagineer'" imagineer; # Added 2026-03-29 siduck76-st = throw "'siduck76-st' has been renamed to/replaced by 'st-snazzy'"; # Converted to throw 2025-10-27 sierra-breeze-enhanced = throw "'sierra-breeze-enhanced' has been removed, as it is only compatible with Plasma 5, which is EOL"; # Added 2025-08-20 From 6fabbf80bdaf64834dc07fb18de1ffb6679a78f9 Mon Sep 17 00:00:00 2001 From: liberodark Date: Mon, 20 Apr 2026 22:19:26 +0200 Subject: [PATCH 13/97] python3Packages.crewai: fix build issue --- pkgs/development/python-modules/crewai/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkgs/development/python-modules/crewai/default.nix b/pkgs/development/python-modules/crewai/default.nix index 307440f10bc7..6fc1b8d17010 100644 --- a/pkgs/development/python-modules/crewai/default.nix +++ b/pkgs/development/python-modules/crewai/default.nix @@ -2,6 +2,7 @@ lib, buildPythonPackage, fetchFromGitHub, + nix-update-script, # build-system hatchling, @@ -534,6 +535,9 @@ buildPythonPackage (finalAttrs: { "test_azure_agent_with_native_tool_calling" "test_azure_agent_kickoff_with_tools_mocked" "test_azure_streaming_emits_tool_call_events" + + # Tests time dependent + "test_older_than" ]; nativeCheckInputs = [ @@ -556,6 +560,13 @@ buildPythonPackage (finalAttrs: { "--override-ini=addopts=" ]; + passthru.updateScript = nix-update-script { + extraArgs = [ + "--version-regex" + "^([0-9]+\\.[0-9]+\\.[0-9]+)$" + ]; + }; + meta = { description = "Framework for orchestrating role-playing, autonomous AI agents"; homepage = "https://github.com/crewAIInc/crewAI"; From 55f70b1ae5196acb8f84182ed8859b522c645702 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 28 Apr 2026 17:33:35 +0000 Subject: [PATCH 14/97] gearboy: 3.8.2 -> 3.8.3 --- pkgs/by-name/ge/gearboy/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ge/gearboy/package.nix b/pkgs/by-name/ge/gearboy/package.nix index 07da3788b61c..831dd4ae0464 100644 --- a/pkgs/by-name/ge/gearboy/package.nix +++ b/pkgs/by-name/ge/gearboy/package.nix @@ -16,13 +16,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "gearboy"; - version = "3.8.2"; + version = "3.8.3"; src = fetchFromGitHub { owner = "drhelius"; repo = "Gearboy"; tag = finalAttrs.version; - hash = "sha256-JgvTt/nUV2CiSJNC3NnKpoa28xAMhRxEh9txqE9FPzU="; + hash = "sha256-3wyAwK61lusmVYbt9m10H4I4KUHAUAlC0bP9LqGB/OE="; }; __structuredAttrs = true; From b7d94a8a694128393db9a5b9214226033245213f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 28 Apr 2026 17:33:52 +0000 Subject: [PATCH 15/97] lstk: 0.5.7 -> 0.5.8 --- pkgs/by-name/ls/lstk/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ls/lstk/package.nix b/pkgs/by-name/ls/lstk/package.nix index 9b5a4c84e820..119965a2c322 100644 --- a/pkgs/by-name/ls/lstk/package.nix +++ b/pkgs/by-name/ls/lstk/package.nix @@ -6,7 +6,7 @@ }: buildGoModule (finalAttrs: { pname = "lstk"; - version = "0.5.7"; + version = "0.5.8"; __structuredAttrs = true; @@ -14,10 +14,10 @@ buildGoModule (finalAttrs: { owner = "localstack"; repo = "lstk"; tag = "v${finalAttrs.version}"; - sha256 = "sha256-HWkCDnbg/D2zX3rdvmFTdKrx03SO6FaiA/Pzj0f4hlA="; + sha256 = "sha256-sZd3hZaS6rJoAUkCfgQh/zQj4ng8nevsQFsZaxOccHs="; }; - vendorHash = "sha256-rEcVtSFnBQ+3bbU5pjbCXEJZo89+lL/1HJG9bCn8OSE="; + vendorHash = "sha256-MzvWeJa9fXqek/MenT4B28XKB0srjGpqwUxAuT1zgI4="; excludedPackages = "test/integration"; From d19d3e9d826711c2f5748399cccd102da014868c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 28 Apr 2026 18:29:46 +0000 Subject: [PATCH 16/97] wasm-tools: 1.247.0 -> 1.248.0 --- pkgs/by-name/wa/wasm-tools/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/wa/wasm-tools/package.nix b/pkgs/by-name/wa/wasm-tools/package.nix index bedaaf4a11b1..c292251f1bdd 100644 --- a/pkgs/by-name/wa/wasm-tools/package.nix +++ b/pkgs/by-name/wa/wasm-tools/package.nix @@ -6,20 +6,20 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "wasm-tools"; - version = "1.247.0"; + version = "1.248.0"; src = fetchFromGitHub { owner = "bytecodealliance"; repo = "wasm-tools"; tag = "v${finalAttrs.version}"; - hash = "sha256-whUI6nUD/ibuaqt3hEGG4tLU4U84nFWHYMZ/3HxPM7U="; + hash = "sha256-B0G+k5RI7j1J0G4l2lcpA6iTTNUmjQOOwi3zij0Ww+c="; fetchSubmodules = true; }; # Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is solved. auditable = false; - cargoHash = "sha256-mERF+ls0lrBasVFdjcFJS3v7KH6B/Zm2uW0N1EHTHew="; + cargoHash = "sha256-yMp8AWcWfxTXq4eIekuPhgOdMbuoscck+r0O01cC+AA="; cargoBuildFlags = [ "--package" "wasm-tools" From 0483567e183c3f4295a2098b404d237e64700a21 Mon Sep 17 00:00:00 2001 From: Shawn8901 Date: Tue, 28 Apr 2026 19:29:23 +0000 Subject: [PATCH 17/97] victoriametrics: 1.141.0 -> 1.142.0 --- pkgs/by-name/vi/victoriametrics/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/vi/victoriametrics/package.nix b/pkgs/by-name/vi/victoriametrics/package.nix index 4a0e3ce6fe63..061cbeefe50a 100644 --- a/pkgs/by-name/vi/victoriametrics/package.nix +++ b/pkgs/by-name/vi/victoriametrics/package.nix @@ -13,13 +13,13 @@ buildGoModule (finalAttrs: { pname = "VictoriaMetrics"; - version = "1.141.0"; + version = "1.142.0"; src = fetchFromGitHub { owner = "VictoriaMetrics"; repo = "VictoriaMetrics"; tag = "v${finalAttrs.version}"; - hash = "sha256-eMaCChrv3/w7KNlnLdV1/YGGh4ZMGqeNAnMV1OlIQWE="; + hash = "sha256-PI4P0CGMcYbkrT8Rrgl5P56yTC+r3tnZudvFySzNJeY="; }; vendorHash = null; From 3d80ba5174b454fa38d77b11aaae83e2e13ce25b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 28 Apr 2026 20:20:58 +0000 Subject: [PATCH 18/97] python3Packages.databricks-sdk: 0.102.0 -> 0.105.0 --- pkgs/development/python-modules/databricks-sdk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/databricks-sdk/default.nix b/pkgs/development/python-modules/databricks-sdk/default.nix index d65cd09759bc..4aa1d26ad9de 100644 --- a/pkgs/development/python-modules/databricks-sdk/default.nix +++ b/pkgs/development/python-modules/databricks-sdk/default.nix @@ -22,14 +22,14 @@ buildPythonPackage (finalAttrs: { pname = "databricks-sdk"; - version = "0.102.0"; + version = "0.105.0"; pyproject = true; src = fetchFromGitHub { owner = "databricks"; repo = "databricks-sdk-py"; tag = "v${finalAttrs.version}"; - hash = "sha256-WHy+JTdjgq7D+Iy7OTx5V8zLBpY4SNztL3UkPM9gIns="; + hash = "sha256-Xy5Yy5ZCp+9y2DqLMpzdO0KeT3KdRIMkogvou4eiyEI="; }; build-system = [ From d121483ce39d7d5912b7255094e6b0a2243ffe9b Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:43:31 +0200 Subject: [PATCH 19/97] btest: fix changelog --- pkgs/by-name/bt/btest/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/bt/btest/package.nix b/pkgs/by-name/bt/btest/package.nix index 451e8f9c0394..48d73cd7f887 100644 --- a/pkgs/by-name/bt/btest/package.nix +++ b/pkgs/by-name/bt/btest/package.nix @@ -44,7 +44,7 @@ rustPlatform.buildRustPackage (finalAttrs: { meta = { description = "Bandwidth Test server and client"; homepage = "https://github.com/manawenuz/btest-rs"; - changelog = "https://github.com/manawenuz/btest-rs/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/manawenuz/btest-rs/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; mainProgram = "btest"; From 666b4a56d23c64bb3fda84b5470273e8b676c7f8 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:43:37 +0200 Subject: [PATCH 20/97] gonzo: fix changelog --- pkgs/by-name/go/gonzo/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/go/gonzo/package.nix b/pkgs/by-name/go/gonzo/package.nix index 52d953fa9aed..499706db3437 100644 --- a/pkgs/by-name/go/gonzo/package.nix +++ b/pkgs/by-name/go/gonzo/package.nix @@ -38,7 +38,7 @@ buildGoModule (finalAttrs: { description = "TUI log analysis tool"; homepage = "https://gonzo.controltheory.com/"; downloadPage = "https://github.com/control-theory/gonzo"; - changelog = "https://github.com/control-theory/gonzo/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/control-theory/gonzo/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ kpbaks ]; mainProgram = "gonzo"; From d850985826666b52987bb2ea9c6851dda262bee9 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:43:44 +0200 Subject: [PATCH 21/97] jj-pre-push: fix changelog --- pkgs/by-name/jj/jj-pre-push/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/jj/jj-pre-push/package.nix b/pkgs/by-name/jj/jj-pre-push/package.nix index 1ff5b8512f3a..d5c7ac94e86d 100644 --- a/pkgs/by-name/jj/jj-pre-push/package.nix +++ b/pkgs/by-name/jj/jj-pre-push/package.nix @@ -51,7 +51,7 @@ python3Packages.buildPythonApplication (finalAttrs: { meta = { description = "Run pre-commit.com before `jj git push`"; homepage = "https://github.com/acarapetis/jj-pre-push"; - changelog = "https://github.com/acarapetis/jj-pre-push/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/acarapetis/jj-pre-push/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ xanderio ]; mainProgram = "jj-pre-push"; From 6d0a55e3511274524c0de2d2bc15be2b6c6e1779 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:43:50 +0200 Subject: [PATCH 22/97] legitify: fix changelog --- pkgs/by-name/le/legitify/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/le/legitify/package.nix b/pkgs/by-name/le/legitify/package.nix index b861fb50d964..6147fc470318 100644 --- a/pkgs/by-name/le/legitify/package.nix +++ b/pkgs/by-name/le/legitify/package.nix @@ -30,7 +30,7 @@ buildGoModule rec { meta = { description = "Tool to detect and remediate misconfigurations and security risks of GitHub assets"; homepage = "https://github.com/Legit-Labs/legitify"; - changelog = "https://github.com/Legit-Labs/legitify/releases/tag/v${src.tag}"; + changelog = "https://github.com/Legit-Labs/legitify/releases/tag/${src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; mainProgram = "legitify"; From dfdf258aa70c33e19bf9c437280437289eaea8c9 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:43:56 +0200 Subject: [PATCH 23/97] mx-takeover: fix changelog --- pkgs/by-name/mx/mx-takeover/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/mx/mx-takeover/package.nix b/pkgs/by-name/mx/mx-takeover/package.nix index 1ce106b016ea..42aeba59f09e 100644 --- a/pkgs/by-name/mx/mx-takeover/package.nix +++ b/pkgs/by-name/mx/mx-takeover/package.nix @@ -26,7 +26,7 @@ buildGoModule (finalAttrs: { meta = { description = "Tool to work with DNS MX records"; homepage = "https://github.com/musana/mx-takeover"; - changelog = "https://github.com/musana/mx-takeover/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/musana/mx-takeover/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; mainProgram = "mx-takeover"; From 68be312ccc62564ce02a1ca9c70a060e936e02cf Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:44:15 +0200 Subject: [PATCH 24/97] nile: fix changelog --- pkgs/by-name/ni/nile/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ni/nile/package.nix b/pkgs/by-name/ni/nile/package.nix index 7b4d5854b25c..d7c22df3f02f 100644 --- a/pkgs/by-name/ni/nile/package.nix +++ b/pkgs/by-name/ni/nile/package.nix @@ -47,7 +47,7 @@ python3Packages.buildPythonApplication (finalAttrs: { meta = { description = "Unofficial Amazon Games client"; homepage = "https://github.com/imLinguin/nile"; - changelog = "https://github.com/imLinguin/nile/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/imLinguin/nile/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.gpl3Only; mainProgram = "nile"; maintainers = [ ]; From d2888dc2904b3ab70baa8dadde89d870d4f1aa80 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:44:24 +0200 Subject: [PATCH 25/97] regexploit: fix changelog --- pkgs/by-name/re/regexploit/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/re/regexploit/package.nix b/pkgs/by-name/re/regexploit/package.nix index 00afe1b51696..bed39f091464 100644 --- a/pkgs/by-name/re/regexploit/package.nix +++ b/pkgs/by-name/re/regexploit/package.nix @@ -27,7 +27,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: { meta = { description = "Tool to find regular expressions which are vulnerable to ReDoS"; homepage = "https://github.com/doyensec/regexploit"; - changelog = "https://github.com/doyensec/regexploit/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/doyensec/regexploit/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; From c712f23e0363a0cb535871c3e515dbe946ec09bf Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:44:32 +0200 Subject: [PATCH 26/97] sequoia-sop: fix changelog --- pkgs/by-name/se/sequoia-sop/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/se/sequoia-sop/package.nix b/pkgs/by-name/se/sequoia-sop/package.nix index 976c2334d062..ec64a9a8a39d 100644 --- a/pkgs/by-name/se/sequoia-sop/package.nix +++ b/pkgs/by-name/se/sequoia-sop/package.nix @@ -54,7 +54,7 @@ rustPlatform.buildRustPackage (finalAttrs: { meta = { description = "Implementation of the Stateless OpenPGP Command Line Interface using Sequoia"; homepage = "https://gitlab.com/sequoia-pgp/sequoia-sop"; - changelog = "https://gitlab.com/sequoia-pgp/sequoia-sop/-/blob/v${finalAttrs.src.tag}/NEWS"; + changelog = "https://gitlab.com/sequoia-pgp/sequoia-sop/-/blob/${finalAttrs.src.tag}/NEWS"; license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = "sqop"; From e5d11d28a43ff6f94437f56e6bbf5782f6b349f8 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:30 +0200 Subject: [PATCH 27/97] dnsight: fix changelog --- pkgs/development/python-modules/dnsight/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/dnsight/default.nix b/pkgs/development/python-modules/dnsight/default.nix index 0da61c71b7d6..f7773a9a68d9 100644 --- a/pkgs/development/python-modules/dnsight/default.nix +++ b/pkgs/development/python-modules/dnsight/default.nix @@ -85,7 +85,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "SDK and CLI tool for DNS, email and web security hygiene"; homepage = "https://github.com/dnsight/dnsight"; - changelog = "https://github.com/dnsight/dnsight/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/dnsight/dnsight/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; mainProgram = "dnsight"; From 0b23aedaed20ddba79434c0acf3c5fba7288e1f3 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:31 +0200 Subject: [PATCH 28/97] heretic: fix changelog --- pkgs/development/python-modules/heretic-llm/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/heretic-llm/default.nix b/pkgs/development/python-modules/heretic-llm/default.nix index 749d46b9fad9..fb7a05c08439 100644 --- a/pkgs/development/python-modules/heretic-llm/default.nix +++ b/pkgs/development/python-modules/heretic-llm/default.nix @@ -80,7 +80,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Tool to remove censorship removal for language models"; homepage = "https://github.com/p-e-w/heretic"; - changelog = "https://github.com/p-e-w/heretic/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/p-e-w/heretic/releases/tag/${finalAttrs.src.tag}"; license = with lib.licenses; [ agpl3Only agpl3Plus From 4b3d3ac000fdb01a5fcc59e6883aa9dc00f811e8 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:31 +0200 Subject: [PATCH 29/97] msoffcrypto-tool: fix changelog --- pkgs/development/python-modules/msoffcrypto-tool/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/msoffcrypto-tool/default.nix b/pkgs/development/python-modules/msoffcrypto-tool/default.nix index 7e3d9735e438..2c643f134bb3 100644 --- a/pkgs/development/python-modules/msoffcrypto-tool/default.nix +++ b/pkgs/development/python-modules/msoffcrypto-tool/default.nix @@ -41,7 +41,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Python tool and library for decrypting MS Office files with passwords or other keys"; homepage = "https://github.com/nolze/msoffcrypto-tool"; - changelog = "https://github.com/nolze/msoffcrypto-tool/blob/v${finalAttrs.src.tag}/CHANGELOG.md"; + changelog = "https://github.com/nolze/msoffcrypto-tool/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; mainProgram = "msoffcrypto-tool"; From f89b3aee40fb51d4532278e7fe4254dff432d94c Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:32 +0200 Subject: [PATCH 30/97] python313Packages.aiohttp-asgi-connector: fix changelog --- .../python-modules/aiohttp-asgi-connector/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/aiohttp-asgi-connector/default.nix b/pkgs/development/python-modules/aiohttp-asgi-connector/default.nix index e5e23d75d69d..e6ebf80bfbe5 100644 --- a/pkgs/development/python-modules/aiohttp-asgi-connector/default.nix +++ b/pkgs/development/python-modules/aiohttp-asgi-connector/default.nix @@ -38,7 +38,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "An AIOHTTP ClientSession connector for directly interacting with ASGI applications"; homepage = "https://github.com/thearchitector/aiohttp-asgi-connector"; - changelog = "https://github.com/thearchitector/aiohttp-asgi-connector/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/thearchitector/aiohttp-asgi-connector/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fab ]; }; From 89400615e28a3a2ebafcbb563488be04ecd6cf1f Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:32 +0200 Subject: [PATCH 31/97] python313Packages.aiopegelonline: fix changelog --- pkgs/development/python-modules/aiopegelonline/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/aiopegelonline/default.nix b/pkgs/development/python-modules/aiopegelonline/default.nix index 7d9fe6f35ca4..59bc8ab73f18 100644 --- a/pkgs/development/python-modules/aiopegelonline/default.nix +++ b/pkgs/development/python-modules/aiopegelonline/default.nix @@ -41,7 +41,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Library to retrieve data from PEGELONLINE"; homepage = "https://github.com/mib1185/aiopegelonline"; - changelog = "https://github.com/mib1185/aiopegelonline/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/mib1185/aiopegelonline/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; From f9220b0b24a79c580fdc91fc55c664d15d4445e1 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:32 +0200 Subject: [PATCH 32/97] python313Packages.aiovlc: fix changelog --- pkgs/development/python-modules/aiovlc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/aiovlc/default.nix b/pkgs/development/python-modules/aiovlc/default.nix index 0996fc96e86e..87802bbc7856 100644 --- a/pkgs/development/python-modules/aiovlc/default.nix +++ b/pkgs/development/python-modules/aiovlc/default.nix @@ -41,7 +41,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Python module to control VLC"; homepage = "https://github.com/MartinHjelmare/aiovlc"; - changelog = "https://github.com/MartinHjelmare/aiovlc/blob/v${finalAttrs.src.tag}/CHANGELOG.md"; + changelog = "https://github.com/MartinHjelmare/aiovlc/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; From 2b258c176eb296391f6b51083d9d59431f9ff37c Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:32 +0200 Subject: [PATCH 33/97] python313Packages.asgineer: fix changelog --- pkgs/development/python-modules/asgineer/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/asgineer/default.nix b/pkgs/development/python-modules/asgineer/default.nix index 30f1b77fbbeb..676ebb921f71 100644 --- a/pkgs/development/python-modules/asgineer/default.nix +++ b/pkgs/development/python-modules/asgineer/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { meta = { description = "Really thin ASGI web framework"; homepage = "https://asgineer.readthedocs.io"; - changelog = "https://github.com/almarklein/asgineer/releases/tag/v${src.tag}"; + changelog = "https://github.com/almarklein/asgineer/releases/tag/${src.tag}"; license = lib.licenses.bsd2; maintainers = with lib.maintainers; [ matthiasbeyer ]; }; From 443b04c28ce2c2edfdaa567baf05d3f0ad474309 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:32 +0200 Subject: [PATCH 34/97] python313Packages.asyncio-dgram: fix changelog --- pkgs/development/python-modules/asyncio-dgram/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/asyncio-dgram/default.nix b/pkgs/development/python-modules/asyncio-dgram/default.nix index eb0ae2f6528d..e36298ef4e29 100644 --- a/pkgs/development/python-modules/asyncio-dgram/default.nix +++ b/pkgs/development/python-modules/asyncio-dgram/default.nix @@ -41,7 +41,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Python support for higher level Datagram"; homepage = "https://github.com/jsbronder/asyncio-dgram"; - changelog = "https://github.com/jsbronder/asyncio-dgram/blob/v${finalAttrs.src.tag}/ChangeLog"; + changelog = "https://github.com/jsbronder/asyncio-dgram/blob/${finalAttrs.src.tag}/ChangeLog"; license = with lib.licenses; [ mit ]; maintainers = with lib.maintainers; [ fab ]; }; From 3e56a323f03d1f0afb51d5e17c761fe98367b7f0 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:32 +0200 Subject: [PATCH 35/97] python313Packages.censys: fix changelog --- pkgs/development/python-modules/censys/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/censys/default.nix b/pkgs/development/python-modules/censys/default.nix index 558da207c50d..dcd92647d0fa 100644 --- a/pkgs/development/python-modules/censys/default.nix +++ b/pkgs/development/python-modules/censys/default.nix @@ -59,7 +59,7 @@ buildPythonPackage rec { meta = { description = "Python API wrapper for the Censys Search Engine (censys.io)"; homepage = "https://github.com/censys/censys-python"; - changelog = "https://github.com/censys/censys-python/releases/tag/v${src.tag}"; + changelog = "https://github.com/censys/censys-python/releases/tag/${src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; mainProgram = "censys"; From 30934fc5b56f293653cdd7fd6bd9bfe025b1df84 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:32 +0200 Subject: [PATCH 36/97] python313Packages.container-inspector: fix changelog --- pkgs/development/python-modules/container-inspector/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/container-inspector/default.nix b/pkgs/development/python-modules/container-inspector/default.nix index da2a8d11f986..900b61320bc5 100644 --- a/pkgs/development/python-modules/container-inspector/default.nix +++ b/pkgs/development/python-modules/container-inspector/default.nix @@ -40,7 +40,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Suite of analysis utilities and command line tools for container images"; homepage = "https://github.com/nexB/container-inspector"; - changelog = "https://github.com/nexB/container-inspector/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/nexB/container-inspector/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; From a7683e93cbdf670908c5bcab9d74461f4df89792 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:32 +0200 Subject: [PATCH 37/97] python313Packages.cwl-upgrader: fix changelog --- pkgs/development/python-modules/cwl-upgrader/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/cwl-upgrader/default.nix b/pkgs/development/python-modules/cwl-upgrader/default.nix index bf378e69b529..9ee9927b26af 100644 --- a/pkgs/development/python-modules/cwl-upgrader/default.nix +++ b/pkgs/development/python-modules/cwl-upgrader/default.nix @@ -46,7 +46,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Library to upgrade CWL syntax to a newer version"; homepage = "https://github.com/common-workflow-language/cwl-upgrader"; - changelog = "https://github.com/common-workflow-language/cwl-upgrader/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/common-workflow-language/cwl-upgrader/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; mainProgram = "cwl-upgrader"; From b4e69f91fc2ffc170803b7442071a7d7891b38e7 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:33 +0200 Subject: [PATCH 38/97] python313Packages.cwl-utils: fix changelog --- pkgs/development/python-modules/cwl-utils/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/cwl-utils/default.nix b/pkgs/development/python-modules/cwl-utils/default.nix index e91507d1815b..2e57faa20b74 100644 --- a/pkgs/development/python-modules/cwl-utils/default.nix +++ b/pkgs/development/python-modules/cwl-utils/default.nix @@ -65,7 +65,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Utilities for CWL"; homepage = "https://github.com/common-workflow-language/cwl-utils"; - changelog = "https://github.com/common-workflow-language/cwl-utils/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/common-workflow-language/cwl-utils/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; From 888bee69813a4a5e30ea6870f6bc122621bb3f2d Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:33 +0200 Subject: [PATCH 39/97] python313Packages.django-modeltranslation: fix changelog --- .../python-modules/django-modeltranslation/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/django-modeltranslation/default.nix b/pkgs/development/python-modules/django-modeltranslation/default.nix index d55eca8dede7..d41c9daaa84f 100644 --- a/pkgs/development/python-modules/django-modeltranslation/default.nix +++ b/pkgs/development/python-modules/django-modeltranslation/default.nix @@ -44,7 +44,7 @@ buildPythonPackage rec { meta = { description = "Translates Django models using a registration approach"; homepage = "https://github.com/deschler/django-modeltranslation"; - changelog = "https://github.com/deschler/django-modeltranslation/blob/v${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/deschler/django-modeltranslation/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ augustebaum ]; }; From 812b5ba4578a24cd1953feea1018a106d845faa4 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:33 +0200 Subject: [PATCH 40/97] python313Packages.dotwiz: fix changelog --- pkgs/development/python-modules/dotwiz/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/dotwiz/default.nix b/pkgs/development/python-modules/dotwiz/default.nix index 03c135cde365..f48073117402 100644 --- a/pkgs/development/python-modules/dotwiz/default.nix +++ b/pkgs/development/python-modules/dotwiz/default.nix @@ -32,7 +32,7 @@ buildPythonPackage rec { meta = { description = "Dict subclass that supports dot access notation"; homepage = "https://github.com/rnag/dotwiz"; - changelog = "https://github.com/rnag/dotwiz/blob/v${src.tag}/HISTORY.rst"; + changelog = "https://github.com/rnag/dotwiz/blob/${src.tag}/HISTORY.rst"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; From 9332b20da97bce6741127d75da9bf54896010acc Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:33 +0200 Subject: [PATCH 41/97] python313Packages.emoji-country-flag: fix changelog --- pkgs/development/python-modules/emoji-country-flag/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/emoji-country-flag/default.nix b/pkgs/development/python-modules/emoji-country-flag/default.nix index 074a3a64c0c3..36161f8d16bc 100644 --- a/pkgs/development/python-modules/emoji-country-flag/default.nix +++ b/pkgs/development/python-modules/emoji-country-flag/default.nix @@ -35,7 +35,7 @@ buildPythonPackage rec { meta = { description = "Flag emoji from country codes for Python"; homepage = "https://github.com/cvzi/flag"; - changelog = "https://github.com/cvzi/flag/releases/tag/v${src.tag}"; + changelog = "https://github.com/cvzi/flag/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ skohtv From aac8bbce9168a7e91a0bd2bbfd0764c6113df80a Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:33 +0200 Subject: [PATCH 42/97] python313Packages.freebox-api: fix changelog --- pkgs/development/python-modules/freebox-api/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/freebox-api/default.nix b/pkgs/development/python-modules/freebox-api/default.nix index 01cc6cefbc04..b93de984153c 100644 --- a/pkgs/development/python-modules/freebox-api/default.nix +++ b/pkgs/development/python-modules/freebox-api/default.nix @@ -36,7 +36,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Python module to interact with the Freebox OS API"; homepage = "https://github.com/hacf-fr/freebox-api"; - changelog = "https://github.com/hacf-fr/freebox-api/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/hacf-fr/freebox-api/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ fab ]; mainProgram = "freebox_api"; From e3977b85353c52da660ade02314a87d6db766543 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:34 +0200 Subject: [PATCH 43/97] python313Packages.hier-config: fix changelog --- pkgs/development/python-modules/hier-config/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/hier-config/default.nix b/pkgs/development/python-modules/hier-config/default.nix index 4d8c8a24e7ac..681c8a86df1e 100644 --- a/pkgs/development/python-modules/hier-config/default.nix +++ b/pkgs/development/python-modules/hier-config/default.nix @@ -34,7 +34,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Module to handle hierarchical configurations"; homepage = "https://github.com/netdevops/hier_config"; - changelog = "https://github.com/netdevops/hier_config/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/netdevops/hier_config/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; From 8341a8b27712ba2a307c06660e93f16a6d08e661 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:34 +0200 Subject: [PATCH 44/97] python313Packages.iaqualink: fix changelog --- pkgs/development/python-modules/iaqualink/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/iaqualink/default.nix b/pkgs/development/python-modules/iaqualink/default.nix index 519712568574..259bdfcb097e 100644 --- a/pkgs/development/python-modules/iaqualink/default.nix +++ b/pkgs/development/python-modules/iaqualink/default.nix @@ -43,7 +43,7 @@ buildPythonPackage rec { meta = { description = "Python library for Jandy iAqualink"; homepage = "https://github.com/flz/iaqualink-py"; - changelog = "https://github.com/flz/iaqualink-py/releases/tag/v${src.tag}"; + changelog = "https://github.com/flz/iaqualink-py/releases/tag/${src.tag}"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fab ]; }; From 2e3458b0f45df01fa1b2433814acefef5a23a25a Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:34 +0200 Subject: [PATCH 45/97] python313Packages.irisclient: fix changelog --- pkgs/development/python-modules/irisclient/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/irisclient/default.nix b/pkgs/development/python-modules/irisclient/default.nix index d3250cdb1aa6..5d463edcc8b6 100644 --- a/pkgs/development/python-modules/irisclient/default.nix +++ b/pkgs/development/python-modules/irisclient/default.nix @@ -35,7 +35,7 @@ buildPythonPackage rec { meta = { description = "Python client for Iris REST api"; - changelog = "https://github.com/houqp/iris-python-client/blob/v${src.tag}/HISTORY.rst"; + changelog = "https://github.com/houqp/iris-python-client/blob/${src.tag}/HISTORY.rst"; homepage = "https://github.com/houqp/iris-python-client"; license = lib.licenses.bsd2; maintainers = with lib.maintainers; [ onny ]; From 3eb92b4e645c6ebac5797fc59aeef2ad6cc61a2e Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:34 +0200 Subject: [PATCH 46/97] python313Packages.juliandate: fix changelog --- pkgs/development/python-modules/juliandate/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/juliandate/default.nix b/pkgs/development/python-modules/juliandate/default.nix index 68032d721d2a..667bbc231a04 100644 --- a/pkgs/development/python-modules/juliandate/default.nix +++ b/pkgs/development/python-modules/juliandate/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { meta = { description = "Conversions between Julian Dates and Julian/Gregorian calendar dates"; homepage = "https://github.com/seanredmond/juliandate"; - changelog = "https://github.com/seanredmond/juliandate/blob/v${src.tag}/HISTORY.MD"; + changelog = "https://github.com/seanredmond/juliandate/blob/${src.tag}/HISTORY.MD"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ fab ]; }; From 20297875e9b4d843a0295efee2d6d0f370dae025 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:34 +0200 Subject: [PATCH 47/97] python313Packages.logurich: fix changelog --- pkgs/development/python-modules/logurich/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/logurich/default.nix b/pkgs/development/python-modules/logurich/default.nix index 0e65d7f47acc..9006b3713c73 100644 --- a/pkgs/development/python-modules/logurich/default.nix +++ b/pkgs/development/python-modules/logurich/default.nix @@ -48,7 +48,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Logger that combine loguru and rich"; homepage = "https://github.com/PakitoSec/logurich"; - changelog = "https://github.com/PakitoSec/logurich/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/PakitoSec/logurich/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; From 58c537dfdd2739258cba00182d7e00308264fb36 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:34 +0200 Subject: [PATCH 48/97] python313Packages.pook: fix changelog --- pkgs/development/python-modules/pook/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pook/default.nix b/pkgs/development/python-modules/pook/default.nix index 187c570c645e..5fb49bd83749 100644 --- a/pkgs/development/python-modules/pook/default.nix +++ b/pkgs/development/python-modules/pook/default.nix @@ -61,7 +61,7 @@ buildPythonPackage rec { meta = { description = "HTTP traffic mocking and testing"; homepage = "https://github.com/h2non/pook"; - changelog = "https://github.com/h2non/pook/blob/v${src.tag}/History.rst"; + changelog = "https://github.com/h2non/pook/blob/${src.tag}/History.rst"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; From 3892f0815f61967aa1cae4b4d70f6ecd5e7fffd5 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:34 +0200 Subject: [PATCH 49/97] python313Packages.postgrest: fix changelog --- pkgs/development/python-modules/postgrest/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/postgrest/default.nix b/pkgs/development/python-modules/postgrest/default.nix index c43e09d93f3b..8d73316e36dc 100644 --- a/pkgs/development/python-modules/postgrest/default.nix +++ b/pkgs/development/python-modules/postgrest/default.nix @@ -61,7 +61,7 @@ buildPythonPackage rec { meta = { description = "Client library for Supabase Functions"; homepage = "https://github.com/supabase/supabase-py"; - changelog = "https://github.com/supabase/supabase-py/blob/v${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/supabase/supabase-py/blob/${src.tag}/CHANGELOG.md"; maintainers = with lib.maintainers; [ macbucheron ]; license = lib.licenses.mit; }; From 75369317d3ab2bdd21b14c500712f33705324454 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:35 +0200 Subject: [PATCH 50/97] python313Packages.ppf-datamatrix: fix changelog --- pkgs/development/python-modules/ppf-datamatrix/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/ppf-datamatrix/default.nix b/pkgs/development/python-modules/ppf-datamatrix/default.nix index 1cc755e11ac3..0ce9d5625a5a 100644 --- a/pkgs/development/python-modules/ppf-datamatrix/default.nix +++ b/pkgs/development/python-modules/ppf-datamatrix/default.nix @@ -30,6 +30,6 @@ buildPythonPackage (finalAttrs: { homepage = "https://github.com/adrianschlatter/ppf.datamatrix"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ kurogeek ]; - changelog = "https://github.com/adrianschlatter/ppf.datamatrix/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/adrianschlatter/ppf.datamatrix/releases/tag/${finalAttrs.src.tag}"; }; }) From fdf5efe944228cc810dcb74f0adc75ad85fbaf15 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:35 +0200 Subject: [PATCH 51/97] python313Packages.pyjpegls: fix changelog --- pkgs/development/python-modules/pyjpegls/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pyjpegls/default.nix b/pkgs/development/python-modules/pyjpegls/default.nix index 8e36ceffa59c..812be43bd35c 100644 --- a/pkgs/development/python-modules/pyjpegls/default.nix +++ b/pkgs/development/python-modules/pyjpegls/default.nix @@ -48,7 +48,7 @@ buildPythonPackage rec { meta = { description = "JPEG-LS for Python via CharLS C++ Library"; homepage = "https://github.com/pydicom/pyjpegls"; - changelog = "https://github.com/pydicom/pyjpegls/releases/tag/v${src.tag}"; + changelog = "https://github.com/pydicom/pyjpegls/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ bcdarwin ]; }; From 7281384c0e786d2fe44bcec988df9166f7630f89 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:35 +0200 Subject: [PATCH 52/97] python313Packages.pytest-insta: fix changelog --- pkgs/development/python-modules/pytest-insta/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytest-insta/default.nix b/pkgs/development/python-modules/pytest-insta/default.nix index d13adb3aba8b..391c31925b2b 100644 --- a/pkgs/development/python-modules/pytest-insta/default.nix +++ b/pkgs/development/python-modules/pytest-insta/default.nix @@ -40,7 +40,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Pytest plugin for snapshot testing"; homepage = "https://github.com/vberlier/pytest-insta"; - changelog = "https://github.com/vberlier/pytest-insta/blob/v${finalAttrs.src.tag}/CHANGELOG.md"; + changelog = "https://github.com/vberlier/pytest-insta/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = [ ]; }; From e3c0fd920fe4887647f105f400e8db8e8adfb5b8 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:35 +0200 Subject: [PATCH 53/97] python313Packages.python-obfuscator: fix changelog --- pkgs/development/python-modules/python-obfuscator/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/python-obfuscator/default.nix b/pkgs/development/python-modules/python-obfuscator/default.nix index af3c6b530e0f..ca3469b968ac 100644 --- a/pkgs/development/python-modules/python-obfuscator/default.nix +++ b/pkgs/development/python-modules/python-obfuscator/default.nix @@ -36,7 +36,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Module to obfuscate code"; homepage = "https://github.com/davidteather/python-obfuscator"; - changelog = "https://github.com/davidteather/python-obfuscator/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/davidteather/python-obfuscator/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; From 0d433644c529b1eee5608ff958fa68ef0ad9f0b5 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:35 +0200 Subject: [PATCH 54/97] python313Packages.realtime: fix changelog --- pkgs/development/python-modules/realtime/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/realtime/default.nix b/pkgs/development/python-modules/realtime/default.nix index 345d00f17c4b..34ac3f9bafb5 100644 --- a/pkgs/development/python-modules/realtime/default.nix +++ b/pkgs/development/python-modules/realtime/default.nix @@ -55,7 +55,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Client library for Supabase Functions"; homepage = "https://github.com/supabase/supabase-py"; - changelog = "https://github.com/supabase/supabase-py/blob/v${finalAttrs.src.tag}/CHANGELOG.md"; + changelog = "https://github.com/supabase/supabase-py/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ siegema ]; }; From eae0f37be2af1fa3993edb8387a37b6feb661a88 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:35 +0200 Subject: [PATCH 55/97] python313Packages.socid-extractor: fix changelog --- pkgs/development/python-modules/socid-extractor/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/socid-extractor/default.nix b/pkgs/development/python-modules/socid-extractor/default.nix index 5b650087ff1b..9a2c740ec7b9 100644 --- a/pkgs/development/python-modules/socid-extractor/default.nix +++ b/pkgs/development/python-modules/socid-extractor/default.nix @@ -38,7 +38,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Python module to extract details from personal pages"; homepage = "https://github.com/soxoj/socid-extractor"; - changelog = "https://github.com/soxoj/socid-extractor/blob/v${finalAttrs.src.tag}/CHANGELOG.md"; + changelog = "https://github.com/soxoj/socid-extractor/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ fab ]; mainProgram = "socid_extractor"; From f21e9f5804efe1c4f622d508cc8d6453f7dca505 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:35 +0200 Subject: [PATCH 56/97] python313Packages.starlette-context: fix changelog --- pkgs/development/python-modules/starlette-context/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/starlette-context/default.nix b/pkgs/development/python-modules/starlette-context/default.nix index a18225be77ab..8d624e5dccb2 100644 --- a/pkgs/development/python-modules/starlette-context/default.nix +++ b/pkgs/development/python-modules/starlette-context/default.nix @@ -36,7 +36,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Middleware for Starlette that allows you to store and access the context data of a request"; homepage = "https://github.com/tomwojcik/starlette-context"; - changelog = "https://github.com/tomwojcik/starlette-context/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/tomwojcik/starlette-context/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; From 4e0bd1edac347f993c1e2d2963fbca0199f8edd1 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:36 +0200 Subject: [PATCH 57/97] python313Packages.storage3: fix changelog --- pkgs/development/python-modules/storage3/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/storage3/default.nix b/pkgs/development/python-modules/storage3/default.nix index dd96780cbed3..97d6ba899034 100644 --- a/pkgs/development/python-modules/storage3/default.nix +++ b/pkgs/development/python-modules/storage3/default.nix @@ -61,7 +61,7 @@ buildPythonPackage rec { meta = { description = "Client library for Supabase Functions"; homepage = "https://github.com/supabase/supabase-py"; - changelog = "https://github.com/supabase/supabase-py/blob/v${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/supabase/supabase-py/blob/${src.tag}/CHANGELOG.md"; maintainers = with lib.maintainers; [ siegema ]; license = lib.licenses.mit; }; From 6d184a4dbb8427db67d4ff43e109a2305301a0d3 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:36 +0200 Subject: [PATCH 58/97] python313Packages.supabase-auth: fix changelog --- pkgs/development/python-modules/supabase-auth/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/supabase-auth/default.nix b/pkgs/development/python-modules/supabase-auth/default.nix index 3e0334be50c6..9d09abc88313 100644 --- a/pkgs/development/python-modules/supabase-auth/default.nix +++ b/pkgs/development/python-modules/supabase-auth/default.nix @@ -59,7 +59,7 @@ buildPythonPackage rec { meta = { description = "Client library for Supabase Auth"; homepage = "https://github.com/supabase/supabase-py/"; - changelog = "https://github.com/supabase/supabase-py/blob/v${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/supabase/supabase-py/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ macbucheron ]; }; From 85a4832ee4017edf03f570424fdfbe0a555eec3b Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:36 +0200 Subject: [PATCH 59/97] python313Packages.supabase-functions: fix changelog --- pkgs/development/python-modules/supabase-functions/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/supabase-functions/default.nix b/pkgs/development/python-modules/supabase-functions/default.nix index 4ce9853c9419..5b64f658a45a 100644 --- a/pkgs/development/python-modules/supabase-functions/default.nix +++ b/pkgs/development/python-modules/supabase-functions/default.nix @@ -53,7 +53,7 @@ buildPythonPackage rec { meta = { description = "Client library for Supabase Functions"; homepage = "https://github.com/supabase/supabase-py"; - changelog = "https://github.com/supabase/supabase-py/blob/v${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/supabase/supabase-py/blob/${src.tag}/CHANGELOG.md"; maintainers = with lib.maintainers; [ macbucheron ]; license = lib.licenses.mit; }; From 6d86d8f490de5edc1c014cc5d0b1e08fa08ca189 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:36 +0200 Subject: [PATCH 60/97] python313Packages.teamcity-messages: fix changelog --- pkgs/development/python-modules/teamcity-messages/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/teamcity-messages/default.nix b/pkgs/development/python-modules/teamcity-messages/default.nix index 9c61387138b5..fe38ecce0db5 100644 --- a/pkgs/development/python-modules/teamcity-messages/default.nix +++ b/pkgs/development/python-modules/teamcity-messages/default.nix @@ -29,7 +29,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Python unit test reporting to TeamCity"; homepage = "https://github.com/JetBrains/teamcity-messages"; - changelog = "https://github.com/JetBrains/teamcity-messages/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/JetBrains/teamcity-messages/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; From 3f4b4889dd218f8b59f57b6b58c9cd65e9331b40 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:36 +0200 Subject: [PATCH 61/97] python313Packages.typst: fix changelog --- pkgs/development/python-modules/typst/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/typst/default.nix b/pkgs/development/python-modules/typst/default.nix index e6e94fb7898a..1047d820d480 100644 --- a/pkgs/development/python-modules/typst/default.nix +++ b/pkgs/development/python-modules/typst/default.nix @@ -49,7 +49,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Python binding to typst"; homepage = "https://github.com/messense/typst-py"; - changelog = "https://github.com/messense/typst-py/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/messense/typst-py/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; From 70b5aad8e32c474c1964ea85028075429bcd540b Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:36 +0200 Subject: [PATCH 62/97] python313Packages.whodap: fix changelog --- pkgs/development/python-modules/whodap/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/whodap/default.nix b/pkgs/development/python-modules/whodap/default.nix index 36c7b8a66ff9..33bdf8b427ae 100644 --- a/pkgs/development/python-modules/whodap/default.nix +++ b/pkgs/development/python-modules/whodap/default.nix @@ -45,7 +45,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Python RDAP utility for querying and parsing information about domain names"; homepage = "https://github.com/pogzyb/whodap"; - changelog = "https://github.com/pogzyb/whodap/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/pogzyb/whodap/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; From 01e3a52cb13f7cfec9c58c5274040aa38a7d38e9 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:36 +0200 Subject: [PATCH 63/97] python313Packages.yaxmldiff: fix changelog --- pkgs/development/python-modules/yaxmldiff/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/yaxmldiff/default.nix b/pkgs/development/python-modules/yaxmldiff/default.nix index 5ffae301df62..a321c78e15d6 100644 --- a/pkgs/development/python-modules/yaxmldiff/default.nix +++ b/pkgs/development/python-modules/yaxmldiff/default.nix @@ -34,7 +34,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Yet Another XML Differ"; homepage = "https://github.com/latk/yaxmldiff.py"; - changelog = "https://https://github.com/latk/yaxmldiff.py/blob/v${finalAttrs.src.tag}/CHANGELOG.md"; + changelog = "https://github.com/latk/yaxmldiff.py/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ sigmanificient ]; }; From 0c3d37050da685cd7be51980d7b4747c9a652b5c Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:46 +0200 Subject: [PATCH 64/97] statping-ng: fix changelog --- pkgs/by-name/st/statping-ng/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/st/statping-ng/package.nix b/pkgs/by-name/st/statping-ng/package.nix index 589ed1c9f6d1..c132dcf640d8 100644 --- a/pkgs/by-name/st/statping-ng/package.nix +++ b/pkgs/by-name/st/statping-ng/package.nix @@ -93,7 +93,7 @@ buildGoModule rec { meta = { description = "Status Page for monitoring your websites and applications with beautiful graphs, analytics, and plugins"; homepage = "https://github.com/statping-ng/statping-ng"; - changelog = "https://github.com/statping-ng/statping-ng/releases/tag/v${src.tag}"; + changelog = "https://github.com/statping-ng/statping-ng/releases/tag/${src.tag}"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ FKouhai From 0692a5f3d81d73008f25280d96d2006e42afd52e Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:47 +0200 Subject: [PATCH 65/97] wappalyzergo: fix changelog --- pkgs/by-name/wa/wappalyzergo/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/wa/wappalyzergo/package.nix b/pkgs/by-name/wa/wappalyzergo/package.nix index 3d7bbf2da7ff..23b15b996926 100644 --- a/pkgs/by-name/wa/wappalyzergo/package.nix +++ b/pkgs/by-name/wa/wappalyzergo/package.nix @@ -26,7 +26,7 @@ buildGoModule (finalAttrs: { meta = { description = "Implementation of the Wappalyzer Technology Detection Library"; homepage = "https://github.com/projectdiscovery/wappalyzergo"; - changelog = "https://github.com/projectdiscovery/wappalyzergo/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/projectdiscovery/wappalyzergo/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; mainProgram = "wappalyzergo"; From d929c0ae8ba67509ea7e924669047ef7c351a105 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:47 +0200 Subject: [PATCH 66/97] wtcat: fix changelog --- pkgs/by-name/wt/wtcat/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/wt/wtcat/package.nix b/pkgs/by-name/wt/wtcat/package.nix index 75f045d43e55..68806b0b40f6 100644 --- a/pkgs/by-name/wt/wtcat/package.nix +++ b/pkgs/by-name/wt/wtcat/package.nix @@ -39,7 +39,7 @@ rustPlatform.buildRustPackage (finalAttrs: { meta = { description = "WebTransport CLI"; homepage = "https://github.com/pervrosen/wtcat"; - changelog = "https://github.com/pervrosen/wtcat/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/pervrosen/wtcat/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; mainProgram = "wtcat"; From 59772fb5a7389f35836400f6d86c66fddb9d3635 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:47 +0200 Subject: [PATCH 67/97] zapper: fix changelog --- pkgs/by-name/za/zapper/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/za/zapper/package.nix b/pkgs/by-name/za/zapper/package.nix index fe22cfa0cae6..3284106699e2 100644 --- a/pkgs/by-name/za/zapper/package.nix +++ b/pkgs/by-name/za/zapper/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: { meta = { description = "Zaps arguments and environment from the process list"; homepage = "https://github.com/hackerschoice/zapper"; - changelog = "https://github.com/hackerschoice/zapper/releases/tag/v${finalAttrs.src.tag}"; + changelog = "https://github.com/hackerschoice/zapper/releases/tag/${finalAttrs.src.tag}"; # https://github.com/hackerschoice/zapper/issues/4 license = lib.licenses.unfree; maintainers = with lib.maintainers; [ fab ]; From 41d7d6176475cba5368ac4cef733bc9afe54c20f Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 22 Apr 2026 23:45:47 +0200 Subject: [PATCH 68/97] zgrab2: fix changelog --- pkgs/by-name/zg/zgrab2/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/zg/zgrab2/package.nix b/pkgs/by-name/zg/zgrab2/package.nix index 51e0bcd47397..a7ec0bf632f2 100644 --- a/pkgs/by-name/zg/zgrab2/package.nix +++ b/pkgs/by-name/zg/zgrab2/package.nix @@ -24,7 +24,7 @@ buildGoModule (finalAttrs: { meta = { description = "Fast Application Layer Scanner"; homepage = "https://github.com/zmap/zgrab2"; - changelog = "https://github.com/zmap/zgrab2/releases/tag/vv${finalAttrs.version}"; + changelog = "https://github.com/zmap/zgrab2/releases/tag/v${finalAttrs.version}"; license = with lib.licenses; [ asl20 isc From a9897a52574f3ceb0c0e59b5af5998fda1deebf1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 28 Apr 2026 22:01:43 +0000 Subject: [PATCH 69/97] amdgpu_top: 0.11.3 -> 0.11.4 --- pkgs/by-name/am/amdgpu_top/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/am/amdgpu_top/package.nix b/pkgs/by-name/am/amdgpu_top/package.nix index e33216d67a70..2bc7b78f269f 100644 --- a/pkgs/by-name/am/amdgpu_top/package.nix +++ b/pkgs/by-name/am/amdgpu_top/package.nix @@ -16,16 +16,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "amdgpu_top"; - version = "0.11.3"; + version = "0.11.4"; src = fetchFromGitHub { owner = "Umio-Yasuno"; repo = "amdgpu_top"; tag = "v${finalAttrs.version}"; - hash = "sha256-k+/y8YaEP8DJuW8n/Xq/Ea9DWG79Cux+PgZbSP4m3pQ="; + hash = "sha256-ap1X53Ou/eWhHvXOnHY7zGb6i+ZLs8LeSNpOJWm+IKc="; }; - cargoHash = "sha256-+eMItSemE69UGfGF9CeKyEvUxvhiZjkJJPeZoVfa+dk="; + cargoHash = "sha256-b9OO//9M/LyS4ZMQzppvLHJHL3JyPVoSOIPVlrX1Wes="; buildInputs = [ libdrm From 75377e3b3696d17a84a12da48cd9fad1064833f4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 28 Apr 2026 22:47:51 +0000 Subject: [PATCH 70/97] wofi-power-menu: 0.3.3 -> 0.3.4 --- pkgs/by-name/wo/wofi-power-menu/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/wo/wofi-power-menu/package.nix b/pkgs/by-name/wo/wofi-power-menu/package.nix index 869ddd5e8957..774b715dc419 100644 --- a/pkgs/by-name/wo/wofi-power-menu/package.nix +++ b/pkgs/by-name/wo/wofi-power-menu/package.nix @@ -10,16 +10,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "wofi-power-menu"; - version = "0.3.3"; + version = "0.3.4"; src = fetchFromGitHub { owner = "szaffarano"; repo = "wofi-power-menu"; tag = "v${finalAttrs.version}"; - hash = "sha256-iz+iiJv5MEQ/Yh6h28uPgRrmnw7xM/X4nUW+VHCarpE="; + hash = "sha256-5dhwDfWL0pP28rgbS5eoOARrXDZVTF6EDNimcfcjH3Y="; }; - cargoHash = "sha256-6CNoHxC1AMTbbx3s4eqYPfqJ3pePdN2DJw6INUQFbek="; + cargoHash = "sha256-Avful4JlhYrdHpzWfseCmmx5jxuOJxEA2Yl6dfkJpXs="; nativeBuildInputs = [ makeBinaryWrapper ]; From 6c6f26568f8229cf3cb6bf9d1633e4502a9aa327 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 28 Apr 2026 23:59:11 +0000 Subject: [PATCH 71/97] libretro.pcsx-rearmed: 0-unstable-2026-04-15 -> 0-unstable-2026-04-25 --- pkgs/applications/emulators/libretro/cores/pcsx-rearmed.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/pcsx-rearmed.nix b/pkgs/applications/emulators/libretro/cores/pcsx-rearmed.nix index fea158277b70..808ac6e5a3b9 100644 --- a/pkgs/applications/emulators/libretro/cores/pcsx-rearmed.nix +++ b/pkgs/applications/emulators/libretro/cores/pcsx-rearmed.nix @@ -5,13 +5,13 @@ }: mkLibretroCore { core = "pcsx-rearmed"; - version = "0-unstable-2026-04-15"; + version = "0-unstable-2026-04-25"; src = fetchFromGitHub { owner = "libretro"; repo = "pcsx_rearmed"; - rev = "00512d47f9d4d220efa4f2418b4a5896f9cd2e75"; - hash = "sha256-ERllT1RkoLMafnHx2HSHdURoWdnF8fJlZ80pfiw18gQ="; + rev = "a97efbb0646dd7766bd66fe9e93118206edec36a"; + hash = "sha256-2MAj/UdEg/kRZuGZcVQ+hBMe2pRlZWvEQnXeqb+444Y="; }; dontConfigure = true; From 6856424dc6e1172329a9484900a02cb5f2c791ed Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 29 Apr 2026 00:15:03 +0000 Subject: [PATCH 72/97] polarity: latest-unstable-2026-03-27 -> latest-unstable-2026-04-28 --- pkgs/by-name/po/polarity/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/po/polarity/package.nix b/pkgs/by-name/po/polarity/package.nix index b8eb6e18c1dd..813a847c9ece 100644 --- a/pkgs/by-name/po/polarity/package.nix +++ b/pkgs/by-name/po/polarity/package.nix @@ -7,16 +7,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "polarity"; - version = "latest-unstable-2026-03-27"; + version = "latest-unstable-2026-04-28"; src = fetchFromGitHub { owner = "polarity-lang"; repo = "polarity"; - rev = "5d253a2701288573a32b58fbf592c66254b825ee"; - hash = "sha256-jOIuBqJd5dKxEwHoaMMV4Jh9tOhQLkrIuuKsszPkpnE="; + rev = "dbcece0e8b572193a5605296392ef1f0d85bba74"; + hash = "sha256-8wVsiLSTbjIZOObdiawvQy5rw+sf93cp6+wbY+XaByI="; }; - cargoHash = "sha256-eat5XK8GZlbdPdkcrvOF99ln0a2SHZexAnqH55i8Vec="; + cargoHash = "sha256-9PMQQHydqgeKeB0eM49dJpL+8cstK8yUkc728ATXroQ="; passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; From 0593d8544ef05c80d05ebe095423f4fd521497e0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 29 Apr 2026 00:33:07 +0000 Subject: [PATCH 73/97] terraform-mcp-server: 0.5.1 -> 0.5.2 --- pkgs/by-name/te/terraform-mcp-server/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/te/terraform-mcp-server/package.nix b/pkgs/by-name/te/terraform-mcp-server/package.nix index f83843677771..bc23b234e95f 100644 --- a/pkgs/by-name/te/terraform-mcp-server/package.nix +++ b/pkgs/by-name/te/terraform-mcp-server/package.nix @@ -6,16 +6,16 @@ }: buildGoModule (finalAttrs: { pname = "terraform-mcp-server"; - version = "0.5.1"; + version = "0.5.2"; src = fetchFromGitHub { owner = "hashicorp"; repo = "terraform-mcp-server"; tag = "v${finalAttrs.version}"; - hash = "sha256-pYco93oARCqgUk99X3oxBcuNKStw0JeyVQOoEt6PYn8="; + hash = "sha256-4NUSMNLWn5Pmwq//M0yHn7qw9oUI4Q3MDXeQ8xBLLSI="; }; - vendorHash = "sha256-fJ3G/kqJlnoBdBVgnl1MzYLrNhucNocWT3rHgrTpfQU="; + vendorHash = "sha256-FuAt2epg4wH7oNa0nvQMWZZwOL1YtpSVdEBxkeY2Heg="; ldflags = [ "-X main.version=${finalAttrs.version}" From 7aa36d67a7ae352be2b7c3b92bd0fc9f64a5c04c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 29 Apr 2026 01:00:30 +0000 Subject: [PATCH 74/97] biome: 2.4.12 -> 2.4.13 --- pkgs/by-name/bi/biome/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/bi/biome/package.nix b/pkgs/by-name/bi/biome/package.nix index 723858e3de4b..de8832023e8c 100644 --- a/pkgs/by-name/bi/biome/package.nix +++ b/pkgs/by-name/bi/biome/package.nix @@ -11,16 +11,16 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "biome"; - version = "2.4.12"; + version = "2.4.13"; src = fetchFromGitHub { owner = "biomejs"; repo = "biome"; rev = "@biomejs/biome@${finalAttrs.version}"; - hash = "sha256-PVax57P496gDksvyGskW3MeR9YDZFE0E8yiv2zW6L/o="; + hash = "sha256-Pie1oc1mc6lsdmSiOu04ci67DToDYRt36hdHsU0ZGXw="; }; - cargoHash = "sha256-638M2/qRXTZSD4/2/PWkfo5DbsLzWlhwwSBGlkUaLBc="; + cargoHash = "sha256-ayFCjh1gBLOJoUnDKm+kwUzshGS0utqTewfe5wEdvQ0="; nativeBuildInputs = [ pkg-config ]; From 030d223e7f652e6db2c777eb6ef0cd4b2008c8f3 Mon Sep 17 00:00:00 2001 From: Andrew Marshall Date: Tue, 28 Apr 2026 22:00:27 -0400 Subject: [PATCH 75/97] linuxPackages.nvidia_x11.persistenced: fix eval Broken in f62660141cd5aa5f574f379445d37829ad11ef87. --- pkgs/os-specific/linux/nvidia-x11/persistenced.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/nvidia-x11/persistenced.nix b/pkgs/os-specific/linux/nvidia-x11/persistenced.nix index cf9a8f0f404b..96cb8b08e1cc 100644 --- a/pkgs/os-specific/linux/nvidia-x11/persistenced.nix +++ b/pkgs/os-specific/linux/nvidia-x11/persistenced.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation { stdenv.cc.cc.lib ]; - makeFlags = nvidia_x11.makeFlags ++ [ "DATE=true" ]; + makeFlags = nvidia_x11.passthru.mod.makeFlags ++ [ "DATE=true" ]; installFlags = [ "PREFIX=$(out)" ]; From 3768694a00ef7e1c885ba35065c8fc547cb9acae Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 29 Apr 2026 02:07:02 +0000 Subject: [PATCH 76/97] typos: 1.45.1 -> 1.45.2 --- pkgs/by-name/ty/typos/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ty/typos/package.nix b/pkgs/by-name/ty/typos/package.nix index 629b7bda2e2e..729552c62856 100644 --- a/pkgs/by-name/ty/typos/package.nix +++ b/pkgs/by-name/ty/typos/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "typos"; - version = "1.45.1"; + version = "1.45.2"; src = fetchFromGitHub { owner = "crate-ci"; repo = "typos"; tag = "v${finalAttrs.version}"; - hash = "sha256-v051wBxAgTlsFOAlysRlUOz/VoSSxbm3rqRJBxLOPuI="; + hash = "sha256-bribbiFYA8YYT6ZJNVyZ2l6FrAlfSuQ/WldqmHHG5lI="; }; - cargoHash = "sha256-S7koGmH6C8wigRD+/ldDltTziHQ3uadHGfeI+Vk/Wak="; + cargoHash = "sha256-cdAjIRWaMWPDJuJg9mw/8Ky8ePYCIFzmn0Ir00UO5HM="; passthru.updateScript = nix-update-script { }; From c9fe41bb552bb7716772203c923532da2b6e1b14 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 29 Apr 2026 02:12:13 +0000 Subject: [PATCH 77/97] stackit-cli: 0.60.0 -> 0.61.0 --- pkgs/by-name/st/stackit-cli/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/st/stackit-cli/package.nix b/pkgs/by-name/st/stackit-cli/package.nix index 592e2578a215..beee09671db1 100644 --- a/pkgs/by-name/st/stackit-cli/package.nix +++ b/pkgs/by-name/st/stackit-cli/package.nix @@ -12,16 +12,16 @@ buildGoModule (finalAttrs: { pname = "stackit-cli"; - version = "0.60.0"; + version = "0.61.0"; src = fetchFromGitHub { owner = "stackitcloud"; repo = "stackit-cli"; rev = "v${finalAttrs.version}"; - hash = "sha256-PS5FJUA3+3gBJ7tY/Dl8HUz78GQEl3wS9BYe7MRIxoE="; + hash = "sha256-kuo0Fj/LgkbTLp+F6xvPUOS5vabjigwX4fVWLQVwO2I="; }; - vendorHash = "sha256-HZ5k1AIuSsAdVIHMzo3awguw+AlctLMicLRzzGgM7xA="; + vendorHash = "sha256-NYvqQVDqSV5wyQGEkoAHnT0i+iNF6DKIYIwyiYY5G6M="; subPackages = [ "." ]; From 5383d773342cde53d737823b05fded53affbcce2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 29 Apr 2026 02:27:54 +0000 Subject: [PATCH 78/97] libretro.stella: 0-unstable-2026-04-19 -> 0-unstable-2026-04-28 --- pkgs/applications/emulators/libretro/cores/stella.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/stella.nix b/pkgs/applications/emulators/libretro/cores/stella.nix index e58ec0b77599..8b89949cc74c 100644 --- a/pkgs/applications/emulators/libretro/cores/stella.nix +++ b/pkgs/applications/emulators/libretro/cores/stella.nix @@ -5,13 +5,13 @@ }: mkLibretroCore { core = "stella"; - version = "0-unstable-2026-04-19"; + version = "0-unstable-2026-04-28"; src = fetchFromGitHub { owner = "stella-emu"; repo = "stella"; - rev = "8b7bc991d2500cbf2e861c25f96ff81e0d13f273"; - hash = "sha256-jeu/7hHuPfSoJg2/6UxUqHWOGMSe0vX6cgWLmVYHABQ="; + rev = "0c1b944387b5ac2b1bf753c2c4221db4fdc10f79"; + hash = "sha256-mohkp6oOP8MtRs/WHw4Rxs3FrB6h4X6/ENrRdjiiXlQ="; }; makefile = "Makefile"; From 4ce887d890479772d40de9e1a96039ec76813d4a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 29 Apr 2026 03:06:01 +0000 Subject: [PATCH 79/97] home-assistant-custom-lovelace-modules.atomic-calendar-revive: 10.2.0 -> 10.2.2 --- .../atomic-calendar-revive/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/atomic-calendar-revive/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/atomic-calendar-revive/package.nix index e1abe02afce2..639b3d77735c 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/atomic-calendar-revive/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/atomic-calendar-revive/package.nix @@ -15,20 +15,20 @@ in stdenv.mkDerivation (finalAttrs: { pname = "atomic-calendar-revive"; - version = "10.2.0"; + version = "10.2.2"; src = fetchFromGitHub { owner = "totaldebug"; repo = "atomic-calendar-revive"; tag = "v${finalAttrs.version}"; - hash = "sha256-cqtXhBSFuEuh8IH/6S0qZN3+SrdCt0WXrBJlBcDUujY="; + hash = "sha256-FiER75oDc9fbdZlh/dLPKmuA11i/UWy2uoX/aPW2m1s="; }; pnpmDeps = fetchPnpmDeps { inherit (finalAttrs) pname version src; inherit pnpm; fetcherVersion = 3; - hash = "sha256-fhi1ysI2ygMfPTSiu40tt713fA/dy7r28Xyk0HxSvXE="; + hash = "sha256-DoMzpXCkK60o1YPpStCNCdpj0I+4OqXr7PcX3hjVhSg="; }; nativeBuildInputs = [ From f2f38721c2a20bf67a3bc2e9e2c5e7250a48a83d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 29 Apr 2026 03:32:22 +0000 Subject: [PATCH 80/97] roon-server: 2.64.1646 -> 2.65.1653 --- pkgs/by-name/ro/roon-server/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ro/roon-server/package.nix b/pkgs/by-name/ro/roon-server/package.nix index 9ae93a6ad5f4..8615f6cbffbd 100644 --- a/pkgs/by-name/ro/roon-server/package.nix +++ b/pkgs/by-name/ro/roon-server/package.nix @@ -16,7 +16,7 @@ stdenv, }: let - version = "2.64.1646"; + version = "2.65.1653"; urlVersion = builtins.replaceStrings [ "." ] [ "0" ] version; in stdenv.mkDerivation { @@ -25,7 +25,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://download.roonlabs.com/updates/production/RoonServer_linuxx64_${urlVersion}.tar.bz2"; - hash = "sha256-tvNjz31xIo7UAB0t0seOfjiS7Qx6DPVu8VTBLK5ZjEo="; + hash = "sha256-t+i2s73D+N/CStIGKNZgGGRisEACxM5ug//YBBXVfpo="; }; dontConfigure = true; From b50b89b477f366a4c4bc0e5a9684b54dd478af6d Mon Sep 17 00:00:00 2001 From: LuckShiba Date: Wed, 29 Apr 2026 00:49:37 -0300 Subject: [PATCH 81/97] dms-shell: 1.4.5 -> 1.4.6 --- pkgs/by-name/dm/dms-shell/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/dm/dms-shell/package.nix b/pkgs/by-name/dm/dms-shell/package.nix index 0c3f7be424e6..033bf01d20c9 100644 --- a/pkgs/by-name/dm/dms-shell/package.nix +++ b/pkgs/by-name/dm/dms-shell/package.nix @@ -28,13 +28,13 @@ buildGoModule ( in { pname = "dms-shell"; - version = "1.4.5"; + version = "1.4.6"; src = fetchFromGitHub { owner = "AvengeMedia"; repo = "DankMaterialShell"; tag = "v${finalAttrs.version}"; - hash = "sha256-K/DtFratLxaZ4+YS9G+HZA37banWacXYznmul3XPKKM="; + hash = "sha256-g6r/Gx8PTDzO3jCNzzySA+Ff1lmLF9nDlMCNyyoQjoE="; }; sourceRoot = "${finalAttrs.src.name}/core"; From 83fdcdf676eb233d0e635c54bbb6d53098459128 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 29 Apr 2026 04:20:23 +0000 Subject: [PATCH 82/97] tree: 2.3.1 -> 2.3.2 --- pkgs/by-name/tr/tree/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tr/tree/package.nix b/pkgs/by-name/tr/tree/package.nix index da67f9a37411..51838f624080 100644 --- a/pkgs/by-name/tr/tree/package.nix +++ b/pkgs/by-name/tr/tree/package.nix @@ -25,13 +25,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "tree"; - version = "2.3.1"; + version = "2.3.2"; src = fetchFromGitLab { owner = "OldManProgrammer"; repo = "unix-tree"; rev = finalAttrs.version; - hash = "sha256-ks3bj916tDdizywQnZKNSAfA2AzWh3np2F6QN5eOzIc="; + hash = "sha256-hmnBG96qQXvTulPnUYyliqidfKC+Wvky+d7xzYrCdTw="; }; preConfigure = '' From 9ae716ebbbd1b7ac6dad4b554e159d31783ab7a2 Mon Sep 17 00:00:00 2001 From: "Aaron L. Zeng" Date: Wed, 29 Apr 2026 01:49:27 -0400 Subject: [PATCH 83/97] ocamlPackages.postgresql: fix meta.changelog --- pkgs/development/ocaml-modules/postgresql/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/ocaml-modules/postgresql/default.nix b/pkgs/development/ocaml-modules/postgresql/default.nix index 8c71a2321e3d..8b193e13ea90 100644 --- a/pkgs/development/ocaml-modules/postgresql/default.nix +++ b/pkgs/development/ocaml-modules/postgresql/default.nix @@ -25,7 +25,7 @@ buildDunePackage rec { meta = { description = "Bindings to the PostgreSQL library"; license = lib.licenses.lgpl21Plus; - changelog = "https://raw.githubusercontent.com/mmottl/postgresql-ocaml/refs/tags/${version}/CHANGES.md"; + changelog = "https://raw.githubusercontent.com/mmottl/postgresql-ocaml/refs/tags/${version}/CHANGELOG.md"; maintainers = with lib.maintainers; [ bcc32 ]; homepage = "https://mmottl.github.io/postgresql-ocaml"; }; From 7dfebf9c96112a4e68dedb093d48a5fc1af65012 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Tue, 6 Jan 2026 17:02:08 +0200 Subject: [PATCH 84/97] python.section.md: List finalAttrs.passthru only attributes --- doc/languages-frameworks/python.section.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md index 6472c3f57789..990b12d3a9db 100644 --- a/doc/languages-frameworks/python.section.md +++ b/doc/languages-frameworks/python.section.md @@ -241,6 +241,27 @@ buildPythonPackage (finalAttrs: { See the [general documentation on fixed-point arguments](#chap-build-helpers-finalAttrs) for more details on the benefits of this pattern. +::: {.note} + +Some `buildPythonPackage`/`buildPythonApplication` arguments are passed down indirectly to `stdenv.mkDerivation` via `passthru`. +Therefore the final states of these attributes can be accessed via `finalAttrs.passthru.${name}`, and they can be overridden via [`.overrideAttrs`](#sec-pkg-overrideAttrs) under the `passthru` attribute. +Such arguments include: + +- `disabled` +- `pyproject` +- `format` +- `build-system` +- `dependencies` +- `optional-dependencies` + + +::: + The [`stdenv.mkDerivation`](#sec-using-stdenv) function accepts various parameters for describing build inputs (see "Specifying dependencies"). The following are of special interest for Python packages, either because these are primarily used, or From bfa489d718c7dccb8e2e364560f0be951fdf967d Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 12 Jan 2026 20:44:52 +0200 Subject: [PATCH 85/97] doc/python: explain better passthru note Co-authored-by: Matt Sturgeon --- doc/languages-frameworks/python.section.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md index 990b12d3a9db..28826768cd0b 100644 --- a/doc/languages-frameworks/python.section.md +++ b/doc/languages-frameworks/python.section.md @@ -244,7 +244,8 @@ See the [general documentation on fixed-point arguments](#chap-build-helpers-fin ::: {.note} Some `buildPythonPackage`/`buildPythonApplication` arguments are passed down indirectly to `stdenv.mkDerivation` via `passthru`. -Therefore the final states of these attributes can be accessed via `finalAttrs.passthru.${name}`, and they can be overridden via [`.overrideAttrs`](#sec-pkg-overrideAttrs) under the `passthru` attribute. +Therefore the final state of these attributes can be accessed via `finalAttrs.passthru.${name}`. +[`.overrideAttrs`](#sec-pkg-overrideAttrs) can override them using the `passthru = prevAttrs.passthru // { foo = "bar"; }` pattern. Such arguments include: - `disabled` From f8f04a972e3c53148fb9d28f6fb6fb227659ce99 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 12 Jan 2026 20:40:53 +0200 Subject: [PATCH 86/97] doc/python: simplify packageOverrides example --- doc/languages-frameworks/python.section.md | 40 +++++++++------------- 1 file changed, 17 insertions(+), 23 deletions(-) diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md index 28826768cd0b..da76fb682b39 100644 --- a/doc/languages-frameworks/python.section.md +++ b/doc/languages-frameworks/python.section.md @@ -293,29 +293,23 @@ the overrides for packages in the package set. ```nix with import { }; -( - let - python = - let - packageOverrides = self: super: { - pandas = super.pandas.overridePythonAttrs (old: rec { - version = "0.19.1"; - src = fetchPypi { - pname = "pandas"; - inherit version; - hash = "sha256-JQn+rtpy/OA2deLszSKEuxyttqBzcAil50H+JDHUdCE="; - }; - }); - }; - in - pkgs.python3.override { - inherit packageOverrides; - self = python; - }; - - in - python.withPackages (ps: [ ps.blaze ]) -).env +let + python = pkgs.python3.override { + packageOverrides = self: super: { + pandas = super.pandas.overridePythonAttrs ( + finalAttrs: prevAttrs: { + version = "0.19.1"; + src = fetchPypi { + pname = "pandas"; + inherit (finalAttrs) version; + hash = "sha256-JQn+rtpy/OA2deLszSKEuxyttqBzcAil50H+JDHUdCE="; + }; + } + ); + }; + }; +in +(python.withPackages (ps: [ ps.blaze ])).env ``` The next example shows a non trivial overriding of the `blas` implementation to From d7d25be051d01b8d217c781dafbaecce979d402e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 29 Apr 2026 06:09:09 +0000 Subject: [PATCH 87/97] vscode-extensions.saoudrizwan.claude-dev: 3.79.0 -> 3.81.0 --- .../vscode/extensions/saoudrizwan.claude-dev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix b/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix index 68d61c8976fe..582e54e64b17 100644 --- a/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix +++ b/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix @@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "claude-dev"; publisher = "saoudrizwan"; - version = "3.79.0"; - hash = "sha256-BqIJNUkq7q2/WlsWqN/dHZtYqHvDm3v7CesEM4XJ1Es="; + version = "3.81.0"; + hash = "sha256-gVQmKuyUH+bXpr7X2Z23U2oKFnAV2mxhckjef2uL8KQ="; }; meta = { From 8d925f2e3e21745fbc8b9308148a8df2a76beb75 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 29 Apr 2026 07:10:10 +0000 Subject: [PATCH 88/97] prometheus: 3.11.2 -> 3.11.3 --- pkgs/by-name/pr/prometheus/source.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/pr/prometheus/source.nix b/pkgs/by-name/pr/prometheus/source.nix index 1090548f6e35..7a582275a2f2 100644 --- a/pkgs/by-name/pr/prometheus/source.nix +++ b/pkgs/by-name/pr/prometheus/source.nix @@ -1,6 +1,6 @@ { - version = "3.11.2"; - hash = "sha256-pSps9LKOOgWUA27lkgFOYliI8Skejx895EKwD88ysn8="; - npmDepsHash = "sha256-ZYbyWtqv7SL/SVAOuQmgb7atkrBQDumYB6Wpa39MThw="; + version = "3.11.3"; + hash = "sha256-JmnVTVW6LsrdiQspKznksyhAYkmCXQcqCLK8q5nZI48="; + npmDepsHash = "sha256-6uE8d3+v5wobSyCl8oYlbNQZjRj/WtvVrpzo/PR2hQA="; vendorHash = "sha256-wR1b5jV/2B50OeKokv8Ss+tpSXNjJBsLIZrK7gOb168="; } From ce09ef4aedc702bd23a2746fe7af6ee649859e91 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 29 Apr 2026 09:48:11 +0200 Subject: [PATCH 89/97] python3Packages.pydantic-graph: 1.87.0 -> 1.88.0 https://github.com/pydantic/pydantic-ai/compare/v1.87.0...v1.88.0 --- pkgs/development/python-modules/pydantic-graph/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pydantic-graph/default.nix b/pkgs/development/python-modules/pydantic-graph/default.nix index 10e216cb3bf0..82ccbaf2a39c 100644 --- a/pkgs/development/python-modules/pydantic-graph/default.nix +++ b/pkgs/development/python-modules/pydantic-graph/default.nix @@ -16,14 +16,14 @@ buildPythonPackage (finalAttrs: { pname = "pydantic-graph"; - version = "1.87.0"; + version = "1.88.0"; pyproject = true; src = fetchFromGitHub { owner = "pydantic"; repo = "pydantic-ai"; tag = "v${finalAttrs.version}"; - hash = "sha256-Q5h+7XZ3SU1B9/kY2qBYraYrWFX3vcDFwQLld2oeQaA="; + hash = "sha256-2DyPJNbGFkbgYd2qLqhlTkmsgpLcTkkq3+7JKMocnBk="; }; sourceRoot = "${finalAttrs.src.name}/pydantic_graph"; From f3906fb016f23e2df4dede0fe9bf2c099c259729 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 29 Apr 2026 09:51:06 +0200 Subject: [PATCH 90/97] python3Packages.pydantic-ai-slim: 1.87.0 -> 1.88.0 https://github.com/pydantic/pydantic-ai/compare/v1.87.0...v1.88.0 --- pkgs/development/python-modules/pydantic-ai-slim/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pydantic-ai-slim/default.nix b/pkgs/development/python-modules/pydantic-ai-slim/default.nix index eef240e4dd49..acbd447db5cd 100644 --- a/pkgs/development/python-modules/pydantic-ai-slim/default.nix +++ b/pkgs/development/python-modules/pydantic-ai-slim/default.nix @@ -20,14 +20,14 @@ buildPythonPackage (finalAttrs: { pname = "pydantic-ai-slim"; - version = "1.87.0"; + version = "1.88.0"; pyproject = true; src = fetchFromGitHub { owner = "pydantic"; repo = "pydantic-ai"; tag = "v${finalAttrs.version}"; - hash = "sha256-Q5h+7XZ3SU1B9/kY2qBYraYrWFX3vcDFwQLld2oeQaA="; + hash = "sha256-2DyPJNbGFkbgYd2qLqhlTkmsgpLcTkkq3+7JKMocnBk="; }; sourceRoot = "${finalAttrs.src.name}/pydantic_ai_slim"; From ca4aae1e6debd23394c657f5ca5df7a2d71c29ae Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Wed, 29 Apr 2026 11:06:33 +0200 Subject: [PATCH 91/97] yarr: fix meta.changelog url During the v2.6 release, the file was renamed. See also #514132. Signed-off-by: Christoph Heiss --- pkgs/by-name/ya/yarr/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ya/yarr/package.nix b/pkgs/by-name/ya/yarr/package.nix index ff84ace8d72a..e659fa62f305 100644 --- a/pkgs/by-name/ya/yarr/package.nix +++ b/pkgs/by-name/ya/yarr/package.nix @@ -45,7 +45,7 @@ buildGoModule (finalAttrs: { description = "Yet another rss reader"; mainProgram = "yarr"; homepage = "https://github.com/nkanaev/yarr"; - changelog = "https://github.com/nkanaev/yarr/blob/v${finalAttrs.version}/doc/changelog.txt"; + changelog = "https://github.com/nkanaev/yarr/blob/v${finalAttrs.version}/doc/changelog.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ sikmir From 880ca65b0a58544166c0ed8114c27a61533273d5 Mon Sep 17 00:00:00 2001 From: Patrick Hobusch Date: Wed, 29 Apr 2026 17:10:31 +0800 Subject: [PATCH 92/97] vscode-extensions.anthropic.claude-code: fix bundled binary on NixOS The bundled `claude` binary shipped with #513902 is a dynamically-linked ELF and does not run on NixOS without patching. Run `autoPatchelfHook` on Linux, and add a passthru test that executes the bundled binary so that this kind of regression is caught. I missed this because I didn't test it locally. --- .../anthropic.claude-code/default.nix | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix index 7cfd9a85a96e..a79407bb7f1b 100644 --- a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix +++ b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix @@ -1,10 +1,21 @@ { lib, + stdenv, stdenvNoCC, + autoPatchelfHook, + alsa-lib, + testers, vscode-utils, }: -vscode-utils.buildVscodeMarketplaceExtension { +vscode-utils.buildVscodeMarketplaceExtension (finalAttrs: { + nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ autoPatchelfHook ]; + + buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ + (lib.getLib stdenv.cc.cc) + alsa-lib + ]; + mktplcRef = let sources = { @@ -34,6 +45,11 @@ vscode-utils.buildVscodeMarketplaceExtension { // sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system ${stdenvNoCC.hostPlatform.system}"); + passthru.tests.bundled-claude-runs = testers.testVersion { + package = finalAttrs.finalPackage; + command = "${finalAttrs.finalPackage}/share/vscode/extensions/anthropic.claude-code/resources/native-binary/claude --version"; + }; + meta = { description = "Harness the power of Claude Code without leaving your IDE"; homepage = "https://docs.anthropic.com/s/claude-code"; @@ -48,4 +64,4 @@ vscode-utils.buildVscodeMarketplaceExtension { "aarch64-darwin" ]; }; -} +}) From b5bb13f9d57cd011010a1543b66eb707d285de3e Mon Sep 17 00:00:00 2001 From: adisbladis Date: Thu, 26 Mar 2026 18:00:36 +1300 Subject: [PATCH 93/97] stdenv: Don't copy dependency input lists when type checking --- pkgs/stdenv/generic/make-derivation.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/stdenv/generic/make-derivation.nix b/pkgs/stdenv/generic/make-derivation.nix index c178f82aaa01..12a6dffb426f 100644 --- a/pkgs/stdenv/generic/make-derivation.nix +++ b/pkgs/stdenv/generic/make-derivation.nix @@ -25,7 +25,7 @@ let filterAttrs getDev head - imap1 + foldl' isAttrs isBool isDerivation @@ -44,6 +44,8 @@ let toFunction unique zipAttrsWith + isPath + seq ; inherit (import ../../build-support/lib/cmake.nix { inherit lib stdenv; }) makeCMakeFlags; @@ -436,17 +438,17 @@ let checkDependencyList = checkDependencyList' [ ]; checkDependencyList' = positions: name: deps: - imap1 ( + seq (foldl' ( index: dep: - if dep == null || isDerivation dep || isString dep || builtins.isPath dep then - dep + if dep == null || isDerivation dep || isString dep || isPath dep then + index + 1 else if isList dep then - checkDependencyList' ([ index ] ++ positions) name dep + seq (checkDependencyList' ([ index ] ++ positions) name dep) (index + 1) else throw "Dependency is not of a valid type: ${ concatMapStrings (ix: "element ${toString ix} of ") ([ index ] ++ positions) }${name} for ${attrs.name or attrs.pname}" - ) deps; + ) 1 deps) deps; in if erroneousHardeningFlags != [ ] then abort ( From 1b323971c2c8bda3150f3dc365b3d7c29647a6dc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 29 Apr 2026 09:56:55 +0000 Subject: [PATCH 94/97] terraform-providers.fastly_fastly: 9.1.0 -> 9.1.1 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index de3d3a67dcf9..0b8fb499109a 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -400,13 +400,13 @@ "vendorHash": null }, "fastly_fastly": { - "hash": "sha256-2QfgzzWYXPOCMAX2EBodDPVEtcIHHPT4Lbh0W1+q2to=", + "hash": "sha256-deph1BQ/aUgTOf4Bgaxpac4V2fmy4dSdbBRa/qvvKdk=", "homepage": "https://registry.terraform.io/providers/fastly/fastly", "owner": "fastly", "repo": "terraform-provider-fastly", - "rev": "v9.1.0", + "rev": "v9.1.1", "spdx": "MPL-2.0", - "vendorHash": "sha256-E64AMHGFpAhg6UNYHJXAdRWPdWWdZineW/b+Gs2O2jk=" + "vendorHash": "sha256-lxBvfkuvf1eoprkCuPtYqOw6P7sTzS70VXTYGToazf8=" }, "flexibleenginecloud_flexibleengine": { "hash": "sha256-yEZ9JiUSqFFbfqzOOD59ZBv4yFCeUBBKlp6aiUqDqiM=", From 045ce4854b5b3efc3dd126a1630439ab56ca1f24 Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Wed, 29 Apr 2026 09:32:26 +0100 Subject: [PATCH 95/97] nono: 0.35.0 -> 0.43.1 Diff: https://github.com/always-further/nono/compare/v0.35.0...v0.43.1 Changelog: https://github.com/always-further/nono/blob/refs/tags/v0.43.1/CHANGELOG.md --- pkgs/by-name/no/nono/package.nix | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/no/nono/package.nix b/pkgs/by-name/no/nono/package.nix index 047da60943cc..7bfc52646cc8 100644 --- a/pkgs/by-name/no/nono/package.nix +++ b/pkgs/by-name/no/nono/package.nix @@ -13,15 +13,17 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "nono"; - version = "0.35.0"; + version = "0.43.1"; + + __darwinAllowLocalNetworking = true; # required for tests src = fetchFromGitHub { owner = "always-further"; repo = "nono"; tag = "v${finalAttrs.version}"; - hash = "sha256-/bKquUbVMM1e/YPcuSb0vW4tX/3yNDUxmaBWHKFw+Qs="; + hash = "sha256-a9RwEbe0x49EyBSGX0mBk2GNeWmc6NhanExqbDyTM40="; }; - cargoHash = "sha256-ibGIpH6Ls9nxtF6rRl+dZBbbmVRXDQA6vpPI/jzpDqI="; + cargoHash = "sha256-/+CfiWbg3anUbzgGigFxWs0+KavGEa2odo5kBF9c7Wg="; nativeBuildInputs = [ pkg-config @@ -35,7 +37,23 @@ rustPlatform.buildRustPackage (finalAttrs: { writableTmpDirAsHomeHook ]; - checkFlags = lib.optionals stdenv.hostPlatform.isDarwin [ + checkFlags = [ + # fails to initialize the sandbox under '/build' + "--skip=test_all_profiles_signal_mode_resolves" + # panic + "--skip=build_run_profile_patch_adds_override_deny_for_sensitive_file" + "--skip=build_run_profile_patch_merges_read_and_write_to_allow_file" + "--skip=prepare_profile_save_from_patch_updates_existing_user_profile" + "--skip=would_shadow_builtin_allows_update_of_existing_user_override" + "--skip=would_shadow_builtin_flags_known_builtin_names" + "--skip=create_audit_state_creates_session_when_enabled" + + # audit_attestation + # needs /bin/pwd + "--skip=audit_verify_reports_signed_attestation_with_pinned_public_key" + "--skip=rollback_signed_session_verifies_from_audit_dir_bundle" + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ # panics with "Deny-within-allow overlap on Linux ... Landlock cannot enforce this. ..." # landlock is linux only "--skip=policy::tests::test_all_groups_no_deny_within_allow_overlap" @@ -56,6 +74,10 @@ rustPlatform.buildRustPackage (finalAttrs: { "--skip=env_nono_upstream_bypass_comma_separated" "--skip=env_nono_upstream_proxy" "--skip=legacy_env_nono_net_block_still_works" + "--skip=environment_allow_vars_bare_star" + "--skip=environment_allow_vars_default_allows_all" + "--skip=environment_allow_vars_prefix_patterns" + "--skip=environment_allow_vars_with_profile" ]; meta = { From 70c6afab8ca3a4db4fa2510ac0a9021b146d0e9e Mon Sep 17 00:00:00 2001 From: Diogo Correia Date: Wed, 29 Apr 2026 11:41:35 +0100 Subject: [PATCH 96/97] doc: remove warning from php docs about composer bug See #451395 --- doc/languages-frameworks/php.section.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/doc/languages-frameworks/php.section.md b/doc/languages-frameworks/php.section.md index a78bbf724206..ee6961b6ffc0 100644 --- a/doc/languages-frameworks/php.section.md +++ b/doc/languages-frameworks/php.section.md @@ -214,12 +214,6 @@ code, while others choose not to. In Nix, there are multiple approaches to building a Composer-based project. -::: {.warning} -`buildComposerProject2` has a [known bug](https://github.com/NixOS/nixpkgs/issues/451395) -where the `vendorHash` changes every time a Composer release happens that changes the -`autoload.php` or vendored composer code. -::: - One such method is the `php.buildComposerProject2` helper function, which serves as a wrapper around `mkDerivation`. From 9e00f0c852f4ca21057fc82c1c139eb97a6313a4 Mon Sep 17 00:00:00 2001 From: adisbladis Date: Thu, 26 Mar 2026 18:58:27 +1300 Subject: [PATCH 97/97] rustPlatform.fetchCargoVendor: Don't recompute internal data Calling nix-prefetch-git.override on every call to fetchCargoVendor is bad for performance. --- .../build-support/rust/fetch-cargo-vendor.nix | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/pkgs/build-support/rust/fetch-cargo-vendor.nix b/pkgs/build-support/rust/fetch-cargo-vendor.nix index a02bbd89c7fc..2802bf9e73f1 100644 --- a/pkgs/build-support/rust/fetch-cargo-vendor.nix +++ b/pkgs/build-support/rust/fetch-cargo-vendor.nix @@ -22,6 +22,21 @@ let ]; } (builtins.readFile ./replace-workspace-values.py); + nix-prefetch-git' = nix-prefetch-git.override { + git = gitMinimal; + # break loop of nix-prefetch-git -> git-lfs -> asciidoctor -> ruby (yjit) -> fetchCargoVendor -> nix-prefetch-git + # Cargo does not currently handle git-lfs: https://github.com/rust-lang/cargo/issues/9692 + git-lfs = null; + }; + + removedArgs = [ + "name" + "pname" + "version" + "nativeBuildInputs" + "hash" + ]; + mkFetchCargoVendorUtil = name: src: writers.writePython3Bin name { @@ -57,14 +72,6 @@ in # TODO: add asserts about pname version and name let - removedArgs = [ - "name" - "pname" - "version" - "nativeBuildInputs" - "hash" - ]; - vendorStaging = stdenvNoCC.mkDerivation ( { name = "${name}-vendor-staging"; @@ -74,12 +81,7 @@ let nativeBuildInputs = [ fetchCargoVendorUtilV2 cacert - (nix-prefetch-git.override { - git = gitMinimal; - # break loop of nix-prefetch-git -> git-lfs -> asciidoctor -> ruby (yjit) -> fetchCargoVendor -> nix-prefetch-git - # Cargo does not currently handle git-lfs: https://github.com/rust-lang/cargo/issues/9692 - git-lfs = null; - }) + nix-prefetch-git' ] ++ nativeBuildInputs; @@ -108,7 +110,6 @@ let // removeAttrs args removedArgs ); in - runCommand "${name}-vendor" { inherit vendorStaging;