From 10302bd6b61f68d2f647088f59aebd3f10abfac3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 6 Sep 2025 01:33:44 +0000 Subject: [PATCH 001/146] libdatachannel: 0.23.1 -> 0.23.2 --- pkgs/by-name/li/libdatachannel/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/li/libdatachannel/package.nix b/pkgs/by-name/li/libdatachannel/package.nix index ca22335e075e..4032cad92efd 100644 --- a/pkgs/by-name/li/libdatachannel/package.nix +++ b/pkgs/by-name/li/libdatachannel/package.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation rec { pname = "libdatachannel"; - version = "0.23.1"; + version = "0.23.2"; src = fetchFromGitHub { owner = "paullouisageneau"; repo = "libdatachannel"; rev = "v${version}"; - hash = "sha256-+2xJ3H5tnlP015dr0V5WidMl434EsMHwu6p7SrvizgM="; + hash = "sha256-76rlnO0wr7xQAGCc0GmpHQldzHKnZ8NZWpHmrE70h/c="; }; outputs = [ From 501a82e406edc1c91f2df08e1cb5f051715cf1f0 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Fri, 5 Sep 2025 13:33:45 +0200 Subject: [PATCH 002/146] mozart: pin boost to boost183 This package has not been building correctly for a while. This is the last version of boost that mozart will build against with the current source. --- pkgs/development/compilers/mozart/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/mozart/default.nix b/pkgs/development/compilers/mozart/default.nix index 41604a27a8ad..88736dffdeec 100644 --- a/pkgs/development/compilers/mozart/default.nix +++ b/pkgs/development/compilers/mozart/default.nix @@ -5,7 +5,7 @@ cmake, unzip, makeWrapper, - boost, + boost183, llvmPackages, gmp, emacs, @@ -68,7 +68,7 @@ stdenv.mkDerivation rec { ''; buildInputs = [ - boost + boost183 gmp emacs jre_headless From ff959099ad5a46c51c10861580fa2d820fb5a6aa Mon Sep 17 00:00:00 2001 From: "Richard J. Acton" Date: Sat, 6 Sep 2025 12:19:10 +0100 Subject: [PATCH 003/146] python3Packages.crypt4gh: init at 1.7 --- pkgs/by-name/cr/crypt4gh/package.nix | 3 + .../python-modules/crypt4gh/default.nix | 67 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 3 files changed, 72 insertions(+) create mode 100644 pkgs/by-name/cr/crypt4gh/package.nix create mode 100644 pkgs/development/python-modules/crypt4gh/default.nix diff --git a/pkgs/by-name/cr/crypt4gh/package.nix b/pkgs/by-name/cr/crypt4gh/package.nix new file mode 100644 index 000000000000..49b5c19f76e9 --- /dev/null +++ b/pkgs/by-name/cr/crypt4gh/package.nix @@ -0,0 +1,3 @@ +{ python3Packages }: + +python3Packages.toPythonApplication python3Packages.crypt4gh diff --git a/pkgs/development/python-modules/crypt4gh/default.nix b/pkgs/development/python-modules/crypt4gh/default.nix new file mode 100644 index 000000000000..dd28fca6cda9 --- /dev/null +++ b/pkgs/development/python-modules/crypt4gh/default.nix @@ -0,0 +1,67 @@ +{ + lib, + buildPythonPackage, + setuptools, + fetchFromGitHub, + installShellFiles, + bats, + openssh, + + # deps + cryptography, + bcrypt, + pyyaml, + docopt, + pynacl, +}: + +buildPythonPackage rec { + pname = "crypt4gh"; + version = "1.7"; + pyproject = true; + src = fetchFromGitHub { + owner = "EGA-archive"; + repo = "crypt4gh"; + rev = "v${version}"; + hash = "sha256-kPXD/SityWscHuRn068E6fFxUjt67cC5VEe5o8wtxwk="; + }; + + build-system = [ setuptools ]; + + dependencies = [ + pyyaml + docopt + cryptography + pynacl + bcrypt + ]; + + pythonImportsCheck = [ "crypt4gh" ]; + + nativeBuildInputs = [ installShellFiles ]; + + postInstall = '' + installShellCompletion \ + completions/crypt4gh-debug.bash \ + completions/crypt4gh-debug.bash \ + completions/crypt4gh.bash + ''; + + nativeCheckInputs = [ + bats + openssh + ]; + installCheckPhase = '' + PATH=$PATH:$out/bin + bats tests + ''; + + meta = { + mainProgram = "crypt4gh"; + description = "Tool to encrypt, decrypt or re-encrypt files, according to the GA4GH encryption file format"; + homepage = "https://github.com/EGA-archive/crypt4gh"; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.richardjacton ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0093d6ac9ec1..21567078ddfc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3104,6 +3104,8 @@ self: super: with self; { crownstone-uart = callPackage ../development/python-modules/crownstone-uart { }; + crypt4gh = callPackage ../development/python-modules/crypt4gh { }; + cryptg = callPackage ../development/python-modules/cryptg { }; cryptodatahub = callPackage ../development/python-modules/cryptodatahub { }; From e1d28ae48680298adaf1b58f97c5453623218ec8 Mon Sep 17 00:00:00 2001 From: "Richard J. Acton" Date: Sun, 7 Sep 2025 13:25:41 +0100 Subject: [PATCH 004/146] ia-writer-mono: init at 0-unstable-2023-06-16 --- pkgs/by-name/ia/ia-writer-mono/package.nix | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 pkgs/by-name/ia/ia-writer-mono/package.nix diff --git a/pkgs/by-name/ia/ia-writer-mono/package.nix b/pkgs/by-name/ia/ia-writer-mono/package.nix new file mode 100644 index 000000000000..0239d3170c0c --- /dev/null +++ b/pkgs/by-name/ia/ia-writer-mono/package.nix @@ -0,0 +1,34 @@ +{ + lib, + stdenvNoCC, + fetchFromGitHub, +}: + +stdenvNoCC.mkDerivation { + pname = "ia-writer-mono"; + version = "0-unstable-2023-06-16"; + + src = fetchFromGitHub { + owner = "iaolo"; + repo = "iA-Fonts"; + rev = "f32c04c3058a75d7ce28919ce70fe8800817491b"; + hash = "sha256-2T165nFfCzO65/PIHauJA//S+zug5nUwPcg8NUEydfc="; + }; + + installPhase = '' + runHook preInstall + + mkdir -p $out/share/fonts/truetype + cp iA\ Writer\ Mono/Variable/*.ttf $out/share/fonts/truetype + + runHook postInstall + ''; + + meta = { + description = "iA Writer Mono Typeface"; + homepage = "https://ia.net/topics/in-search-of-the-perfect-writing-font"; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.richardjacton ]; + }; +} From b20ad6893d1fe4ad5ca509f6974c4546878a6be1 Mon Sep 17 00:00:00 2001 From: magicquark <198001825+magicquark@users.noreply.github.com> Date: Tue, 9 Sep 2025 04:09:35 +0100 Subject: [PATCH 005/146] maintainers: add magicquark --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 7acda00ceae6..c1ebb9b6b0e2 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -15421,6 +15421,11 @@ githubId = 1809783; name = "Marco Maggesi"; }; + magicquark = { + name = "magicquark"; + github = "magicquark"; + githubId = 198001825; + }; magistau = { name = "Mg. Tau"; email = "nix@alice-carroll.pet"; From 0d54c60268b8fe05a2d5b145ebe2c1d86b3ceb31 Mon Sep 17 00:00:00 2001 From: magicquark <198001825+magicquark@users.noreply.github.com> Date: Tue, 9 Sep 2025 04:10:58 +0100 Subject: [PATCH 006/146] python3Packages.locust-cloud: init at 1.26.3 Homepage: https://www.locust.cloud/ Upstream: https://github.com/locustio/locust --- .../python-modules/locust-cloud/default.nix | 49 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 51 insertions(+) create mode 100644 pkgs/development/python-modules/locust-cloud/default.nix diff --git a/pkgs/development/python-modules/locust-cloud/default.nix b/pkgs/development/python-modules/locust-cloud/default.nix new file mode 100644 index 000000000000..c93dd8d8443b --- /dev/null +++ b/pkgs/development/python-modules/locust-cloud/default.nix @@ -0,0 +1,49 @@ +{ + buildPythonPackage, + configargparse, + fetchFromGitHub, + gevent, + hatch-vcs, + hatchling, + lib, + platformdirs, + python-engineio, + python-socketio, + requests, + tomli, +}: + +buildPythonPackage rec { + pname = "locust-cloud"; + version = "1.26.3"; + pyproject = true; + + src = fetchFromGitHub { + owner = "locustcloud"; + repo = "locust-cloud"; + tag = version; + hash = "sha256-gOlCxu6f3+T3tmAIolze7K/+aViqO8DjuooXqEELUvs="; + }; + + build-system = [ + hatchling + hatch-vcs + ]; + + dependencies = [ + configargparse + gevent + platformdirs + python-engineio + python-socketio + requests + tomli + ]; + + meta = { + description = "Hosted version of Locust to run distributed load tests"; + homepage = "https://www.locust.cloud/"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ magicquark ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 81523a7049d6..6c3953e1aa76 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8728,6 +8728,8 @@ self: super: with self; { locust = callPackage ../development/python-modules/locust { }; + locust-cloud = callPackage ../development/python-modules/locust-cloud { }; + log-symbols = callPackage ../development/python-modules/log-symbols { }; logassert = callPackage ../development/python-modules/logassert { }; From 9f39ad8bf77eb3c96c0873be6d1b4953cbf89542 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 9 Sep 2025 18:45:51 +0000 Subject: [PATCH 007/146] unicorn: 2.1.3 -> 2.1.4 --- pkgs/by-name/un/unicorn/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/un/unicorn/package.nix b/pkgs/by-name/un/unicorn/package.nix index 3cb3e80b8c1e..99f74db91dc6 100644 --- a/pkgs/by-name/un/unicorn/package.nix +++ b/pkgs/by-name/un/unicorn/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation rec { pname = "unicorn"; - version = "2.1.3"; + version = "2.1.4"; src = fetchFromGitHub { owner = "unicorn-engine"; repo = "unicorn"; tag = version; - hash = "sha256-vBggblml+lQFhyNrfIp5GKVQ09fd+ccblKHEzWteMbI="; + hash = "sha256-jEQXjYlLUdKrKPL4XfSbixn2KWJlNG7IYQveF4jDgl4="; }; nativeBuildInputs = [ From 13cf61eb118dcf3846190873873b01b360f2f5f7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 9 Sep 2025 19:14:23 +0000 Subject: [PATCH 008/146] sitespeed-io: 38.1.2 -> 38.3.0 --- pkgs/by-name/si/sitespeed-io/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/si/sitespeed-io/package.nix b/pkgs/by-name/si/sitespeed-io/package.nix index 0da1a79be71e..e273ba9ce236 100644 --- a/pkgs/by-name/si/sitespeed-io/package.nix +++ b/pkgs/by-name/si/sitespeed-io/package.nix @@ -26,13 +26,13 @@ assert (!withFirefox && !withChromium) -> throw "Either `withFirefox` or `withChromium` must be enabled."; buildNpmPackage rec { pname = "sitespeed-io"; - version = "38.1.2"; + version = "38.3.0"; src = fetchFromGitHub { owner = "sitespeedio"; repo = "sitespeed.io"; tag = "v${version}"; - hash = "sha256-S7XYDxKODK6R/O9kNVq04pponYfcwTwsyVQO8yh598w="; + hash = "sha256-45lvEM8vkoXdbZNJamUR94PD0EwtoNEhWSNyV68yzPo="; }; postPatch = '' @@ -50,7 +50,7 @@ buildNpmPackage rec { dontNpmBuild = true; npmInstallFlags = [ "--omit=dev" ]; - npmDepsHash = "sha256-rVxVD2c+xijup7XrtwwmECahL3S2S98+71d7H1Bwa+U="; + npmDepsHash = "sha256-rXGoIIbKNZCBhhuRM/0WcaciH/bLQamipmOIh1EXJlU="; postInstall = '' mv $out/bin/sitespeed{.,-}io From b5be3fe04cb6843f1bfadeae792b9fb25e40c842 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 10 Sep 2025 21:57:23 +0000 Subject: [PATCH 009/146] python3Packages.coredis: 5.0.1 -> 5.1.0 --- pkgs/development/python-modules/coredis/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/coredis/default.nix b/pkgs/development/python-modules/coredis/default.nix index c3bd2b0f1859..6814eda82296 100644 --- a/pkgs/development/python-modules/coredis/default.nix +++ b/pkgs/development/python-modules/coredis/default.nix @@ -19,14 +19,14 @@ buildPythonPackage rec { pname = "coredis"; - version = "5.0.1"; + version = "5.1.0"; pyproject = true; src = fetchFromGitHub { owner = "alisaifee"; repo = "coredis"; tag = version; - hash = "sha256-LDK/tVGBsuhf0WzGjdCJznUVh9vrtRrjtU0wKpsr/Ag="; + hash = "sha256-KaS048C8YLo7UNiryqjYk3yulf/gYGsFQ//Jnx10dQ4="; }; postPatch = '' From f4e74e4934c646eb2573b32316d53f441b845290 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 01:12:51 +0000 Subject: [PATCH 010/146] decker: 1.58 -> 1.59 --- pkgs/by-name/de/decker/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/de/decker/package.nix b/pkgs/by-name/de/decker/package.nix index daebdb06c7d6..bd6379da4e5b 100644 --- a/pkgs/by-name/de/decker/package.nix +++ b/pkgs/by-name/de/decker/package.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { pname = "decker"; - version = "1.58"; + version = "1.59"; src = fetchFromGitHub { owner = "JohnEarnest"; repo = "Decker"; rev = "v${version}"; - hash = "sha256-oPB+TT7mHJ6GNBnGIVmbAxNoD2oexPI2Sm8kxxsV6d4="; + hash = "sha256-56yIbIKMppO1eyvnlHvqkQvIT3x5t3W1KQ4M2HWRU3U="; }; buildInputs = [ From 63acf34e951e178c39329f2f7c1d728f345a90fb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 01:55:14 +0000 Subject: [PATCH 011/146] pageedit: 2.5.0 -> 2.6.2 --- pkgs/by-name/pa/pageedit/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pa/pageedit/package.nix b/pkgs/by-name/pa/pageedit/package.nix index a8aa4dd1dc25..638a282264d0 100644 --- a/pkgs/by-name/pa/pageedit/package.nix +++ b/pkgs/by-name/pa/pageedit/package.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "pageedit"; - version = "2.5.0"; + version = "2.6.2"; src = fetchFromGitHub { owner = "Sigil-Ebook"; repo = "pageedit"; tag = finalAttrs.version; - hash = "sha256-Tkc8iOH+HG3ULrdUvVdeOzAl0i1R3QFaZ1U/vjCKGjo="; + hash = "sha256-9+kWfyOfwbWh41cTXpP0raCY/dblQZP0PWFzGV+f4dY="; }; nativeBuildInputs = with qt6Packages; [ From 364577c873c3b4798238b9bcc17c6e1bba8bde8e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 03:17:29 +0000 Subject: [PATCH 012/146] steampipePackages.steampipe-plugin-github: 1.5.0 -> 1.6.0 --- .../steampipe-packages/steampipe-plugin-github/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/steampipe-packages/steampipe-plugin-github/default.nix b/pkgs/tools/misc/steampipe-packages/steampipe-plugin-github/default.nix index b5c9def30c3a..94f474597ba1 100644 --- a/pkgs/tools/misc/steampipe-packages/steampipe-plugin-github/default.nix +++ b/pkgs/tools/misc/steampipe-packages/steampipe-plugin-github/default.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "steampipe-plugin-github"; - version = "1.5.0"; + version = "1.6.0"; src = fetchFromGitHub { owner = "turbot"; repo = "steampipe-plugin-github"; tag = "v${version}"; - hash = "sha256-+RHYPeVY19zRWhI4U4dWuHJseBO9r7hms7XsLrknA2I="; + hash = "sha256-A9dmn6a6K86EMxEUUyMj5OH3bhvaOFaX+xMMtwQuilo="; }; - vendorHash = "sha256-vZDXLfo9EtPKSLE8hHA5lR/RgJtWESdOqOjpFywXKbs="; + vendorHash = "sha256-wBzD/D4FDtfOTmbgbrbu54aDrKFE0bbmMehTB0cF0tE="; ldflags = [ "-s" From 901ba79de6c399730334bdaa1904710279fa5f6d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 03:21:09 +0000 Subject: [PATCH 013/146] python3Packages.cf-xarray: 0.10.7 -> 0.10.9 --- pkgs/development/python-modules/cf-xarray/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cf-xarray/default.nix b/pkgs/development/python-modules/cf-xarray/default.nix index c8cc0d1fd416..1ca3d047413b 100644 --- a/pkgs/development/python-modules/cf-xarray/default.nix +++ b/pkgs/development/python-modules/cf-xarray/default.nix @@ -24,14 +24,14 @@ buildPythonPackage rec { pname = "cf-xarray"; - version = "0.10.7"; + version = "0.10.9"; pyproject = true; src = fetchFromGitHub { owner = "xarray-contrib"; repo = "cf-xarray"; tag = "v${version}"; - hash = "sha256-hFM3xZzal+i4H8wF83LDEL4nAJE1d59LNQgkcrLSE80="; + hash = "sha256-tYs+aZp/QbM166KNj4MjIjqS6LcuDCyXwghSoF5rj4M="; }; build-system = [ From dd21aaa2c8e36a99c8754255b020c3c11ed60f31 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 03:52:35 +0000 Subject: [PATCH 014/146] sby: 0.56 -> 0.57 --- pkgs/by-name/sb/sby/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sb/sby/package.nix b/pkgs/by-name/sb/sby/package.nix index c26a3906c79f..9cc4797657f7 100644 --- a/pkgs/by-name/sb/sby/package.nix +++ b/pkgs/by-name/sb/sby/package.nix @@ -19,13 +19,13 @@ in stdenv.mkDerivation (finalAttrs: { pname = "sby"; - version = "0.56"; + version = "0.57"; src = fetchFromGitHub { owner = "YosysHQ"; repo = "sby"; tag = "v${finalAttrs.version}"; - hash = "sha256-uKndGUoLbG7SBhsOSYyM/v9g33pq7zFFajzvTUYa7NY="; + hash = "sha256-vhgLP2twPPGsey5lzmt/zUFme4GjIdWgRyWoCHxLxRU="; }; postPatch = '' From abf7961070a627e9e455dc96279806d3a5deba5d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 05:03:58 +0000 Subject: [PATCH 015/146] vscode-extensions.ms-toolsai.jupyter: 2025.7.0 -> 2025.8.0 --- .../editors/vscode/extensions/ms-toolsai.jupyter/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/ms-toolsai.jupyter/default.nix b/pkgs/applications/editors/vscode/extensions/ms-toolsai.jupyter/default.nix index 176c8ef55a50..7ac421ae46fc 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-toolsai.jupyter/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-toolsai.jupyter/default.nix @@ -9,8 +9,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "jupyter"; publisher = "ms-toolsai"; - version = "2025.7.0"; - hash = "sha256-wedMPo+mL3yvb9WqJComlyZWvSSaJXv/4LWcl0wwqdQ="; + version = "2025.8.0"; + hash = "sha256-MZHsgFxrAbDjRn0cH+cBolVvFQXlZPiVSZDUWDU6/jA="; }; nativeBuildInputs = [ From 4464c227fd9d6b36784256f4bf553b3c644687cb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 05:23:16 +0000 Subject: [PATCH 016/146] carapace: 1.4.1 -> 1.5.0 --- pkgs/shells/carapace/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/carapace/default.nix b/pkgs/shells/carapace/default.nix index 67d0f5531625..f1c4a7db2c8d 100644 --- a/pkgs/shells/carapace/default.nix +++ b/pkgs/shells/carapace/default.nix @@ -9,16 +9,16 @@ buildGoModule (finalAttrs: { pname = "carapace"; - version = "1.4.1"; + version = "1.5.0"; src = fetchFromGitHub { owner = "carapace-sh"; repo = "carapace-bin"; tag = "v${finalAttrs.version}"; - hash = "sha256-aI69LQuyXUGqxjcUIH3J8AG7cgn/onBg0mZc+zz+YrA="; + hash = "sha256-BMj0bjoqUIT4zVs6CRqeBqfSQ17NNyeE+AAtTTnv4bo="; }; - vendorHash = "sha256-AwR+Oh1Rlg1z/pYdc9VDvp/FLH1ZiPsP/q4lks3VqqE="; + vendorHash = "sha256-UOqHQPF+5luabuLM95+VR+tsb1+3+MUpaJmjbZqCNvs="; ldflags = [ "-s" From bc71c9782df956f521dbd8e6531e2cb352d590f3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 14:00:15 +0000 Subject: [PATCH 017/146] lego: 4.25.2 -> 4.26.0 --- pkgs/by-name/le/lego/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/le/lego/package.nix b/pkgs/by-name/le/lego/package.nix index 6d336e783a38..bf4b2409359d 100644 --- a/pkgs/by-name/le/lego/package.nix +++ b/pkgs/by-name/le/lego/package.nix @@ -7,16 +7,16 @@ buildGoModule rec { pname = "lego"; - version = "4.25.2"; + version = "4.26.0"; src = fetchFromGitHub { owner = "go-acme"; repo = "lego"; tag = "v${version}"; - hash = "sha256-VAYptzJYyo6o5MPq0DB8+VrhqzwJSPwZK6BuaXOn8VM="; + hash = "sha256-wSTymGprdoXxBRlGDapF5H8SMbBRTI24PMgakGetABI="; }; - vendorHash = "sha256-8135PtcC98XxbdQnF58sglAgZUkuBA+A3bSxK0+tQ9U="; + vendorHash = "sha256-BdOS4BNWtonLoZO4YA85VdB6MRbMqoO8MGb4XNEwfCk="; doCheck = false; From bec65b6dc8ee2ed7bfa786db85daa9b9b8c72595 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 15:28:43 +0000 Subject: [PATCH 018/146] python3Packages.llama-index-multi-modal-llms-openai: 0.6.0 -> 0.6.1 --- .../llama-index-multi-modal-llms-openai/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix b/pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix index 2b1954b76fa3..31c4c3967b52 100644 --- a/pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix +++ b/pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix @@ -9,13 +9,13 @@ buildPythonPackage rec { pname = "llama-index-multi-modal-llms-openai"; - version = "0.6.0"; + version = "0.6.1"; pyproject = true; src = fetchPypi { pname = "llama_index_multi_modal_llms_openai"; inherit version; - hash = "sha256-4YWvPQH5GevRVsmegIXU5AApt+nsMEj0DSDebWsPYR4="; + hash = "sha256-08taZAGV+qyLJ6T8o3gAY9UT9vbNM8T8U83/FqB6GPU="; }; build-system = [ hatchling ]; From bdbdc1899a737a29e286a9a32a4f799cd400feb8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 15:42:03 +0000 Subject: [PATCH 019/146] iosevka: 33.2.9 -> 33.3.0 --- pkgs/by-name/io/iosevka/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/io/iosevka/package.nix b/pkgs/by-name/io/iosevka/package.nix index d2ff55523ff0..0b404132c52d 100644 --- a/pkgs/by-name/io/iosevka/package.nix +++ b/pkgs/by-name/io/iosevka/package.nix @@ -56,16 +56,16 @@ assert (extraParameters != null) -> set != null; buildNpmPackage rec { pname = "Iosevka${toString set}"; - version = "33.2.9"; + version = "33.3.0"; src = fetchFromGitHub { owner = "be5invis"; repo = "iosevka"; rev = "v${version}"; - hash = "sha256-EC3daY7R2AhqrE62dp6sT5BspyZkLccuC5PnBibeRaI="; + hash = "sha256-6Ys9OzZ9/k8VOD9rbU7QBbJumJMWKq/GFHtPWJGqJ+M="; }; - npmDepsHash = "sha256-ekODYQ1GjGytlcX4VGIfyl5kPEWW/9VL/He0BBtWeK0="; + npmDepsHash = "sha256-UGEl+RFNPZ+3Cnp6vtxbcuZbs86T3VDgDAF0J++83/w="; nativeBuildInputs = [ remarshal From aa1b195269348f20f9fc37f8cf1abc2d5d3a22dd Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 19:03:46 +0000 Subject: [PATCH 020/146] rain-bittorrent: 2.2.1 -> 2.2.2 --- pkgs/by-name/ra/rain-bittorrent/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ra/rain-bittorrent/package.nix b/pkgs/by-name/ra/rain-bittorrent/package.nix index bb4efbe110d6..550bc064b0a3 100644 --- a/pkgs/by-name/ra/rain-bittorrent/package.nix +++ b/pkgs/by-name/ra/rain-bittorrent/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "rain"; - version = "2.2.1"; + version = "2.2.2"; src = fetchFromGitHub { owner = "cenkalti"; repo = "rain"; tag = "v${version}"; - hash = "sha256-hXNup0ROW+0jFqMzC1bF48XZIIyzy7/jWepEp1sPF0Q="; + hash = "sha256-FU0RjWT+ewM/13n/4zCdxLVrN8ikUJCtosXsx8L8vMk="; }; - vendorHash = "sha256-e7adl7B2TFjkVlA2YQ3iXQRMhHThJHWOLPphmhdEmTE="; + vendorHash = "sha256-TFIrepXZPokVu9lW2V2s3seq58yQiHceu+zRHucB+0g="; meta = { description = "BitTorrent client and library in Go"; From 36928a05c4202e5a3f00e710d065256e1c4dd4a8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 19:14:47 +0000 Subject: [PATCH 021/146] mullvad: 2025.7 -> 2025.9 --- pkgs/applications/networking/mullvad/mullvad.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/mullvad/mullvad.nix b/pkgs/applications/networking/mullvad/mullvad.nix index 22e72a0f0333..eef9c46e164f 100644 --- a/pkgs/applications/networking/mullvad/mullvad.nix +++ b/pkgs/applications/networking/mullvad/mullvad.nix @@ -30,17 +30,17 @@ let in rustPlatform.buildRustPackage rec { pname = "mullvad"; - version = "2025.7"; + version = "2025.9"; src = fetchFromGitHub { owner = "mullvad"; repo = "mullvadvpn-app"; tag = version; fetchSubmodules = true; - hash = "sha256-q5RYgU7VlhTXAN0uQeHNTJ1eFCQZzymLo/eiKr805O8="; + hash = "sha256-BfWPFkNXGDV0ql2hBXh+3hjyn7+pUXL3XzH8w8aIfKw="; }; - cargoHash = "sha256-UUYAmNdzTthoWOIU5wr7Q059MAezpuRvCadGTjwoKGM="; + cargoHash = "sha256-kgtjLdTkCnLk27gYEjovPv5k5eHOqQdL8iERKhVDKNQ="; cargoBuildFlags = [ "-p mullvad-daemon --bin mullvad-daemon" From 2e9b935ed53c2633ace2401fe544df34c70f29dd Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 19:45:48 +0000 Subject: [PATCH 022/146] python3Packages.msgraph-sdk: 1.40.0 -> 1.44.0 --- pkgs/development/python-modules/msgraph-sdk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/msgraph-sdk/default.nix b/pkgs/development/python-modules/msgraph-sdk/default.nix index 9e6ac51e6df8..7704cc1be8c9 100644 --- a/pkgs/development/python-modules/msgraph-sdk/default.nix +++ b/pkgs/development/python-modules/msgraph-sdk/default.nix @@ -16,14 +16,14 @@ buildPythonPackage rec { pname = "msgraph-sdk"; - version = "1.40.0"; + version = "1.44.0"; pyproject = true; src = fetchFromGitHub { owner = "microsoftgraph"; repo = "msgraph-sdk-python"; tag = "v${version}"; - hash = "sha256-qoQbYSFL96ovKKZ3KJAeTtwNRJxHjnmGDbSAZ4lTVNw="; + hash = "sha256-KRB3knoNXN6l38CekzbFhHzwuMI92udzfHLTfTQn6v4="; }; build-system = [ flit-core ]; From d57afbaaa13f80a83348419d967b97031c6fd2c6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Sep 2025 20:01:55 +0000 Subject: [PATCH 023/146] firefoxpwa: 2.15.0 -> 2.16.0 --- pkgs/by-name/fi/firefoxpwa/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/fi/firefoxpwa/package.nix b/pkgs/by-name/fi/firefoxpwa/package.nix index f66a9eef39f0..1a4e71e9411a 100644 --- a/pkgs/by-name/fi/firefoxpwa/package.nix +++ b/pkgs/by-name/fi/firefoxpwa/package.nix @@ -29,19 +29,19 @@ rustPlatform.buildRustPackage rec { pname = "firefoxpwa"; - version = "2.15.0"; + version = "2.16.0"; src = fetchFromGitHub { owner = "filips123"; repo = "PWAsForFirefox"; rev = "v${version}"; - hash = "sha256-UqgPAGDekM9bKx4kNH+IuB31ML/Jn4E6g86suVESRRU="; + hash = "sha256-kFhnlWiNCbs0arJfQRRWubnIrdXKrwyJNLAN1KlDHoc="; }; sourceRoot = "${src.name}/native"; buildFeatures = [ "immutable-runtime" ]; - cargoHash = "sha256-7v+Ohll8k3YHKYoQZIWvV+YLHT62ygFb0kPEIXh0jP4="; + cargoHash = "sha256-3o/Ub452PbiicmgyW6z9BP2PaECfFYN+Tx24/Go2N2M="; preConfigure = '' sed -i 's;version = "0.0.0";version = "${version}";' Cargo.toml From 13f26bd119107f3d5825d81b7a28046d4d420c6a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Sep 2025 01:37:28 +0000 Subject: [PATCH 024/146] drawterm: 0-unstable-2025-08-18 -> 0-unstable-2025-09-11 --- pkgs/by-name/dr/drawterm/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/dr/drawterm/package.nix b/pkgs/by-name/dr/drawterm/package.nix index db082e86640a..ea7893024b3c 100644 --- a/pkgs/by-name/dr/drawterm/package.nix +++ b/pkgs/by-name/dr/drawterm/package.nix @@ -23,13 +23,13 @@ let in stdenv.mkDerivation { pname = "drawterm"; - version = "0-unstable-2025-08-18"; + version = "0-unstable-2025-09-11"; src = fetchFrom9Front { owner = "plan9front"; repo = "drawterm"; - rev = "44a7bdfaeb268bbc9df69693fa52d551beb2516d"; - hash = "sha256-ov0BkKWUpRBi4COETtEw3x9WOSMy6HXkxrU9bVSI+AM="; + rev = "7523180ec9e5210e28eb0191268066188cdf91ab"; + hash = "sha256-IOZCpNXJcTpqCRsNp8aaP2vORvusLktLtyoQ7gykJB8="; }; enableParallelBuilding = true; From 174651dc36c1e1792918f92cdfddb0dcf984f348 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Sep 2025 03:39:28 +0000 Subject: [PATCH 025/146] python3Packages.azure-mgmt-containerservice: 39.0.0 -> 39.1.0 --- .../python-modules/azure-mgmt-containerservice/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix index a9466082adce..eab2e2e88e4e 100644 --- a/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "azure-mgmt-containerservice"; - version = "39.0.0"; + version = "39.1.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -19,7 +19,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "azure_mgmt_containerservice"; inherit version; - hash = "sha256-qgAWke3WPQc3S1gggcC7IMi+b/uIWlkqFXfSH0EYqDc="; + hash = "sha256-bww/5E6Tfo79C2A3vhAjkjWZpSzle4EeMFbYC3+XONA="; }; build-system = [ setuptools ]; From ec1640cd44f005c9769813be8a5ed21b5f52f1f9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Sep 2025 05:10:37 +0000 Subject: [PATCH 026/146] python3Packages.llama-index-vector-stores-qdrant: 0.8.3 -> 0.8.4 --- .../llama-index-vector-stores-qdrant/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/llama-index-vector-stores-qdrant/default.nix b/pkgs/development/python-modules/llama-index-vector-stores-qdrant/default.nix index 55f8ee2cb592..b1b72af174d5 100644 --- a/pkgs/development/python-modules/llama-index-vector-stores-qdrant/default.nix +++ b/pkgs/development/python-modules/llama-index-vector-stores-qdrant/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "llama-index-vector-stores-qdrant"; - version = "0.8.3"; + version = "0.8.4"; pyproject = true; disabled = pythonOlder "3.8"; @@ -19,7 +19,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "llama_index_vector_stores_qdrant"; inherit version; - hash = "sha256-elou2rxBKMJq3XVV42C7bgXn7szz2JmEfSs6SJonOaU="; + hash = "sha256-12LfuKEuCjdzx22QE1LLpEi9KsSz5QH3I5M6M9lsvL4="; }; build-system = [ hatchling ]; From b8864258f43e4ac1a554caa73cecbfec4b62ae47 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Sep 2025 10:50:29 +0000 Subject: [PATCH 027/146] quarkus: 3.25.4 -> 3.26.3 --- pkgs/by-name/qu/quarkus/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/qu/quarkus/package.nix b/pkgs/by-name/qu/quarkus/package.nix index a3a49e1124bf..ace9be702345 100644 --- a/pkgs/by-name/qu/quarkus/package.nix +++ b/pkgs/by-name/qu/quarkus/package.nix @@ -8,11 +8,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "quarkus-cli"; - version = "3.25.4"; + version = "3.26.3"; src = fetchurl { url = "https://github.com/quarkusio/quarkus/releases/download/${finalAttrs.version}/quarkus-cli-${finalAttrs.version}.tar.gz"; - hash = "sha256-L7j+yuYjCWUuAuUA6YQjnU/fyppn9HkxPvsNiRDj8I8="; + hash = "sha256-iFJJ1l1EloP3ChDaVF1ipJA54ia/THYl+0kMvfJn5a4="; }; nativeBuildInputs = [ makeWrapper ]; From 1524ebdd02a223493c3a9add4468d5757334b31b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Sep 2025 12:33:29 +0000 Subject: [PATCH 028/146] yquake2: 8.51 -> 8.60 --- pkgs/games/quake2/yquake2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/quake2/yquake2/default.nix b/pkgs/games/quake2/yquake2/default.nix index 31e2b7ee9d65..749147859273 100644 --- a/pkgs/games/quake2/yquake2/default.nix +++ b/pkgs/games/quake2/yquake2/default.nix @@ -32,13 +32,13 @@ let yquake2 = stdenv.mkDerivation rec { pname = "yquake2"; - version = "8.51"; + version = "8.60"; src = fetchFromGitHub { owner = "yquake2"; repo = "yquake2"; rev = "QUAKE2_${builtins.replaceStrings [ "." ] [ "_" ] version}"; - sha256 = "sha256-u8WXelbvfmbD+t6uTaE9z+kHBD3Re0P4SOUBL4MfAR4="; + sha256 = "sha256-XD0Fnx3TZwZUvjLOpzM5oWoIQFykDuBOddQXudkiyB0="; }; postPatch = '' From bed1eb3d9a9d7bc501e02af06030eb296759b270 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Sep 2025 16:11:06 +0000 Subject: [PATCH 029/146] mariadb-connector-java: 3.5.5 -> 3.5.6 --- pkgs/by-name/ma/mariadb-connector-java/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ma/mariadb-connector-java/package.nix b/pkgs/by-name/ma/mariadb-connector-java/package.nix index 0ebde21d813b..d842a08b996f 100644 --- a/pkgs/by-name/ma/mariadb-connector-java/package.nix +++ b/pkgs/by-name/ma/mariadb-connector-java/package.nix @@ -7,13 +7,13 @@ maven.buildMavenPackage rec { pname = "mariadb-connector-java"; - version = "3.5.5"; + version = "3.5.6"; src = fetchFromGitHub { owner = "mariadb-corporation"; repo = "mariadb-connector-j"; tag = version; - hash = "sha256-RtBc40pH8eumfgXCuhxk7BCtvgPTsAMgsf5UJuHcuPk="; + hash = "sha256-vBrXK8g+eAxD85iIEtJhTZ4sdohcdjhtzojS+JScLos="; }; mvnHash = "sha256-q61OyBg84Zaf9prM6J3lUVsJXEnmoptcq2EuNs+faDc="; From 2d687cce94792e9cc3448e622d6dc8370388a81d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Sep 2025 16:44:50 +0000 Subject: [PATCH 030/146] codebuff: 1.0.473 -> 1.0.485 --- pkgs/by-name/co/codebuff/package-lock.json | 8 ++++---- pkgs/by-name/co/codebuff/package.nix | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/co/codebuff/package-lock.json b/pkgs/by-name/co/codebuff/package-lock.json index da80335136e6..7b24701d8a6d 100644 --- a/pkgs/by-name/co/codebuff/package-lock.json +++ b/pkgs/by-name/co/codebuff/package-lock.json @@ -5,7 +5,7 @@ "packages": { "": { "dependencies": { - "codebuff": "^1.0.473" + "codebuff": "^1.0.485" } }, "node_modules/chownr": { @@ -18,9 +18,9 @@ } }, "node_modules/codebuff": { - "version": "1.0.473", - "resolved": "https://registry.npmjs.org/codebuff/-/codebuff-1.0.473.tgz", - "integrity": "sha512-maT1kgspsqqDBYZ5K2Fpze3cB3NwTzl5nQZ9EY7CFjkiypYRjlFosrkxY8eUXs6hCZy/WmuBEYRjdyobEaqrcA==", + "version": "1.0.485", + "resolved": "https://registry.npmjs.org/codebuff/-/codebuff-1.0.485.tgz", + "integrity": "sha512-RC+DPvi2radIVR5mQ+L53J6dg9RYR6mtmnAz6v3b3sUS6vlAX5r2huDFK5vjWh4pvphLyYzXxnc8nxjGLwqDVA==", "cpu": [ "x64", "arm64" diff --git a/pkgs/by-name/co/codebuff/package.nix b/pkgs/by-name/co/codebuff/package.nix index b9463b82dc8e..dd9662fcba01 100644 --- a/pkgs/by-name/co/codebuff/package.nix +++ b/pkgs/by-name/co/codebuff/package.nix @@ -6,14 +6,14 @@ buildNpmPackage rec { pname = "codebuff"; - version = "1.0.473"; + version = "1.0.485"; src = fetchzip { url = "https://registry.npmjs.org/codebuff/-/codebuff-${version}.tgz"; - hash = "sha256-SlSS1++pEVtvY3sSDZzoD4K6PiFA8Z6tBX+hfIDrhrY="; + hash = "sha256-TeHIRz6FmpyAIVS58IgyJ0Y/Ob/crCFey4eTk3vDIHE="; }; - npmDepsHash = "sha256-fEK3CzK66AwHlZyt9ax+r5QGqUCfOw11EMMzA2d337c="; + npmDepsHash = "sha256-ZQdg464SXIwAhFgotIXO6xjpAdquOlKKPuejl6qS3xo="; postPatch = '' cp ${./package-lock.json} package-lock.json From 4a3f74efdb94831991c7c05a5b9b987ae3ac1354 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Sep 2025 18:43:06 +0000 Subject: [PATCH 031/146] python3Packages.klayout: 0.30.3 -> 0.30.4 --- pkgs/development/python-modules/klayout/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/klayout/default.nix b/pkgs/development/python-modules/klayout/default.nix index ef153202b311..f39fd185aad2 100644 --- a/pkgs/development/python-modules/klayout/default.nix +++ b/pkgs/development/python-modules/klayout/default.nix @@ -13,12 +13,12 @@ buildPythonPackage rec { pname = "klayout"; - version = "0.30.3"; + version = "0.30.4"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-zyj5s2pHjgrk7/l2cqvcvqCvhdxh7dNG7tlLNGFlOX8="; + hash = "sha256-lr58Sdv2FZlXf2q0fbbTwQeDdrtabtLXEZBTsNW6m6I="; }; build-system = [ From c352933c9c2aaedde8c0055af0b4e2d1e1334750 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Sep 2025 19:53:13 +0000 Subject: [PATCH 032/146] gqlgen: 0.17.78 -> 0.17.79 --- pkgs/by-name/gq/gqlgen/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gq/gqlgen/package.nix b/pkgs/by-name/gq/gqlgen/package.nix index a2625cc4aed5..297353665f57 100644 --- a/pkgs/by-name/gq/gqlgen/package.nix +++ b/pkgs/by-name/gq/gqlgen/package.nix @@ -6,7 +6,7 @@ }: let - version = "0.17.78"; + version = "0.17.79"; in buildGoModule { pname = "gqlgen"; @@ -16,10 +16,10 @@ buildGoModule { owner = "99designs"; repo = "gqlgen"; tag = "v${version}"; - hash = "sha256-rFmcyEEliP8Kv75/UMB57IjKB8qTDrhvVDGMRlC1gc8="; + hash = "sha256-hvBP+MbdyWirovDFbgscg7ilfvlXjhSde/C3mHfjdxs="; }; - vendorHash = "sha256-qDPJKGQmZz5Taj/gXakx3t/4bDaMrNR+HehV19HvdCI="; + vendorHash = "sha256-MFQwLWpjgsCkS1GFRbO/egDIWbh3HDAYuqekjGOC+ug="; subPackages = [ "." ]; From d17f93b25ca4112bebe7f425bc6257dc4ed92379 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Sep 2025 21:02:26 +0000 Subject: [PATCH 033/146] gnu-shepherd: 1.0.6 -> 1.0.7 --- pkgs/by-name/gn/gnu-shepherd/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gn/gnu-shepherd/package.nix b/pkgs/by-name/gn/gnu-shepherd/package.nix index 16b0c584e9ec..6cb16071f43d 100644 --- a/pkgs/by-name/gn/gnu-shepherd/package.nix +++ b/pkgs/by-name/gn/gnu-shepherd/package.nix @@ -9,11 +9,11 @@ stdenv.mkDerivation rec { pname = "gnu-shepherd"; - version = "1.0.6"; + version = "1.0.7"; src = fetchurl { url = "mirror://gnu/shepherd/shepherd-${version}.tar.gz"; - hash = "sha256-/HTf2kmaaV5lD8WDnTmtU44uMjlJuJBK/Pr/o0FxvjM="; + hash = "sha256-MlqbdYHug6FRFd+/vMJHyetRD3UlSaI/OukSqOxydZc="; }; configureFlags = [ "--localstatedir=/" ]; From 8ec944a972b2eaabb8c278688822ae4a5d03ea31 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Sep 2025 21:41:12 +0000 Subject: [PATCH 034/146] ark-pixel-font: 2025.08.11 -> 2025.08.24 --- pkgs/by-name/ar/ark-pixel-font/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ar/ark-pixel-font/package.nix b/pkgs/by-name/ar/ark-pixel-font/package.nix index 01dfa0e346ff..57222b4739ea 100644 --- a/pkgs/by-name/ar/ark-pixel-font/package.nix +++ b/pkgs/by-name/ar/ark-pixel-font/package.nix @@ -7,14 +7,14 @@ python312Packages.buildPythonPackage rec { pname = "ark-pixel-font"; - version = "2025.08.11"; + version = "2025.08.24"; pyproject = false; src = fetchFromGitHub { owner = "TakWolf"; repo = "ark-pixel-font"; tag = version; - hash = "sha256-Rcn2zlZyMoziYd1b3wjjh1tYpm6A0qYGiKEg+Wd+0m8="; + hash = "sha256-kxct994UmZhJBMlXZmayN24eiKqeG9T7GdyfsjBYpn0="; }; dependencies = with python312Packages; [ From 67319c27fd3b3343f20cc1e7005e121bb063b2dc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Sep 2025 22:15:13 +0000 Subject: [PATCH 035/146] python3Packages.drf-nested-routers: 0.94.2 -> 0.95.0 --- .../development/python-modules/drf-nested-routers/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/drf-nested-routers/default.nix b/pkgs/development/python-modules/drf-nested-routers/default.nix index e7ed06183786..ce243c17e2dc 100644 --- a/pkgs/development/python-modules/drf-nested-routers/default.nix +++ b/pkgs/development/python-modules/drf-nested-routers/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "drf-nested-routers"; - version = "0.94.2"; + version = "0.95.0"; format = "setuptools"; src = fetchFromGitHub { owner = "alanjds"; repo = "drf-nested-routers"; tag = "v${version}"; - hash = "sha256-ETRj14xoSv3fGXggg+P7651ZhbsEkxUaTO7ZPpKidRA="; + hash = "sha256-9oB6pmhZJVvVJeueY44q9ST1JgjmK1FF8QMx7mX5ZFI="; }; buildInputs = [ django ]; From 7ca8735bfc4c11aec27af02eabc58d6ca7f7ccf6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 00:32:23 +0000 Subject: [PATCH 036/146] stylua: 2.1.0 -> 2.2.0 --- pkgs/by-name/st/stylua/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/st/stylua/package.nix b/pkgs/by-name/st/stylua/package.nix index 159ab6ffb5d8..56b39c91b1dd 100644 --- a/pkgs/by-name/st/stylua/package.nix +++ b/pkgs/by-name/st/stylua/package.nix @@ -12,16 +12,16 @@ rustPlatform.buildRustPackage rec { pname = "stylua"; - version = "2.1.0"; + version = "2.2.0"; src = fetchFromGitHub { owner = "johnnymorganz"; repo = "stylua"; rev = "v${version}"; - sha256 = "sha256-yVie8/aey77WbeUGM6rzuKBKLmAH1Jhhj9Y7LxbvIUw="; + sha256 = "sha256-PBe3X4YUFUV2xQdYYOdPNgJCnCOzrzogP/2sECef4ck="; }; - cargoHash = "sha256-ow8lldu36qBHcXFgeBhHo2u+sSAFCEFbxUk2oZI7sj4="; + cargoHash = "sha256-C9g6kA+xc0nixiPAijc5MIF9xHbbeXBHtmdM4QRdf/Q="; # remove cargo config so it can find the linker on aarch64-unknown-linux-gnu postPatch = '' From 9988f8dd20bfce3b6e71f61fe38e0f039c9c7255 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 03:58:20 +0000 Subject: [PATCH 037/146] kcc: 9.0.0 -> 9.1.0 --- pkgs/by-name/kc/kcc/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/kc/kcc/package.nix b/pkgs/by-name/kc/kcc/package.nix index 01ef570e63e7..1c86d62b41ef 100644 --- a/pkgs/by-name/kc/kcc/package.nix +++ b/pkgs/by-name/kc/kcc/package.nix @@ -15,14 +15,14 @@ python3.pkgs.buildPythonApplication rec { pname = "kcc"; - version = "9.0.0"; + version = "9.1.0"; pyproject = true; src = fetchFromGitHub { owner = "ciromattia"; repo = "kcc"; tag = "v${version}"; - hash = "sha256-J4nuVY5eOmHziteLvoBf/+CAY0X/7wBbRtPoIgdd5MA="; + hash = "sha256-FGRd2JVcz45KVjQCTEKIjKlkLJS/AsSsopeW9tXHWwk="; }; nativeBuildInputs = [ From d32af8da6f00390e990e0dd5f6a0332a0d1c5368 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 03:59:08 +0000 Subject: [PATCH 038/146] aws-iam-authenticator: 0.7.5 -> 0.7.7 --- pkgs/by-name/aw/aws-iam-authenticator/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/aw/aws-iam-authenticator/package.nix b/pkgs/by-name/aw/aws-iam-authenticator/package.nix index 443879996c7e..95555e74eeb5 100644 --- a/pkgs/by-name/aw/aws-iam-authenticator/package.nix +++ b/pkgs/by-name/aw/aws-iam-authenticator/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "aws-iam-authenticator"; - version = "0.7.5"; + version = "0.7.7"; src = fetchFromGitHub { owner = "kubernetes-sigs"; repo = "aws-iam-authenticator"; tag = "v${version}"; - hash = "sha256-FvXK4yrWPtM7uhXb0eJB2Hs1eE/+h3R79xVbHFSX2hQ="; + hash = "sha256-nnl5QPJWG0hGp15dwcMdhWCPn5Z4noydLA/Nn5koQCU="; }; - vendorHash = "sha256-fLA+dPAqvCPo8p+NUdmziAhUbi7wQVp2gnzv4493zr8="; + vendorHash = "sha256-oa0wOI7fbMjuG20g+8u5V2tbX+1R3pcRR7kn1iWMp4Y="; ldflags = let From 0e115163323be1ea0937c8ed8d9bf3562d209400 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 06:48:12 +0000 Subject: [PATCH 039/146] typos-lsp: 0.1.41 -> 0.1.43 --- pkgs/by-name/ty/typos-lsp/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ty/typos-lsp/package.nix b/pkgs/by-name/ty/typos-lsp/package.nix index 2dfc93d878f4..9285039baa59 100644 --- a/pkgs/by-name/ty/typos-lsp/package.nix +++ b/pkgs/by-name/ty/typos-lsp/package.nix @@ -7,16 +7,16 @@ rustPlatform.buildRustPackage rec { pname = "typos-lsp"; # Please update the corresponding VSCode extension too. # See pkgs/applications/editors/vscode/extensions/tekumara.typos-vscode/default.nix - version = "0.1.41"; + version = "0.1.43"; src = fetchFromGitHub { owner = "tekumara"; repo = "typos-lsp"; tag = "v${version}"; - hash = "sha256-DJnq0PtRGYRgC0JhR8myeIddBTAvP+Ey3+qEZi75EmQ="; + hash = "sha256-n1OIKCfZDUaabjlJt3yNHp434M+xTUqN5+oxLBQEvLo="; }; - cargoHash = "sha256-OSTPVLVLl3LaijEorcSSscOMiDfgIGRXSvaFMKJ+hq0="; + cargoHash = "sha256-G0prgRV7vSkLjZYyS5dpGw0Kt9HQNHHGG0pqdDv5rdI="; # fix for compilation on aarch64 # see https://github.com/NixOS/nixpkgs/issues/145726 From d8df9ed3a0117225401287bd573e786a0069d0ef Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 07:23:56 +0000 Subject: [PATCH 040/146] jpegoptim: 1.5.5 -> 1.5.6 --- pkgs/by-name/jp/jpegoptim/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/jp/jpegoptim/package.nix b/pkgs/by-name/jp/jpegoptim/package.nix index a3c0f25a555f..cc64cc65e6ec 100644 --- a/pkgs/by-name/jp/jpegoptim/package.nix +++ b/pkgs/by-name/jp/jpegoptim/package.nix @@ -6,14 +6,14 @@ }: stdenv.mkDerivation rec { - version = "1.5.5"; + version = "1.5.6"; pname = "jpegoptim"; src = fetchFromGitHub { owner = "tjko"; repo = "jpegoptim"; rev = "v${version}"; - sha256 = "sha256-3p3kcUur1u09ROdKXG5H8eilu463Rzbn2yfYo5o6+KM="; + sha256 = "sha256-Nw9mz5zefkRwqkTIyBQyDlANHEx4dztiIiTuXUnuCKM="; }; # There are no checks, it seems. From 60147632666da637007a1f124175023683960b23 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 08:41:20 +0000 Subject: [PATCH 041/146] velero: 1.16.2 -> 1.17.0 --- pkgs/by-name/ve/velero/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ve/velero/package.nix b/pkgs/by-name/ve/velero/package.nix index c46faeae6ec5..d6bc2e960d62 100644 --- a/pkgs/by-name/ve/velero/package.nix +++ b/pkgs/by-name/ve/velero/package.nix @@ -8,13 +8,13 @@ buildGoModule (finalAttrs: { pname = "velero"; - version = "1.16.2"; + version = "1.17.0"; src = fetchFromGitHub { owner = "vmware-tanzu"; repo = "velero"; tag = "v${finalAttrs.version}"; - hash = "sha256-PxM9BjjCYNOOPX/Z8MHBHstZcIujTjsT+L4gxihii/c="; + hash = "sha256-2hffuTcz6mBwrEjCMhZqrDvNbC5m6lK3vM9umgV4l+0="; }; ldflags = [ @@ -26,7 +26,7 @@ buildGoModule (finalAttrs: { "-X github.com/vmware-tanzu/velero/pkg/buildinfo.GitSHA=none" ]; - vendorHash = "sha256-Wzxtg7UB5mjrhZKR1Lb0UH4Mhw41UTWAg1PzuyyOrCo="; + vendorHash = "sha256-khG/6mSYOCKBjTY+JyakFD65bLWLXpcQKPlhPT31uxc="; excludedPackages = [ "issue-template-gen" From 888f7372421871b7f6d9c446e0d0d47408993bd8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 08:48:31 +0000 Subject: [PATCH 042/146] python3Packages.django-modeltranslation: 0.19.16 -> 0.19.17 --- .../python-modules/django-modeltranslation/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/django-modeltranslation/default.nix b/pkgs/development/python-modules/django-modeltranslation/default.nix index cb4f79bf0e12..c50a3909c332 100644 --- a/pkgs/development/python-modules/django-modeltranslation/default.nix +++ b/pkgs/development/python-modules/django-modeltranslation/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "django-modeltranslation"; - version = "0.19.16"; + version = "0.19.17"; pyproject = true; disabled = pythonOlder "3.11"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "deschler"; repo = "django-modeltranslation"; tag = "v${version}"; - hash = "sha256-8A5fIZuUMlXe8bHQR0Ha5HoT9VIQsgqpJVMONB5KqCI="; + hash = "sha256-SaCuo/vnH7fDZnOZvrV3HbLtq6q2bTzhPvBCdrzukoA="; }; build-system = [ From 485060b71034f90e936230b227285b9c5f6fda78 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 11:49:24 +0000 Subject: [PATCH 043/146] spire: 1.12.5 -> 1.13.0 --- pkgs/by-name/sp/spire/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sp/spire/package.nix b/pkgs/by-name/sp/spire/package.nix index ede9d21f82ea..7f6c2984ccd4 100644 --- a/pkgs/by-name/sp/spire/package.nix +++ b/pkgs/by-name/sp/spire/package.nix @@ -6,7 +6,7 @@ buildGoModule (finalAttrs: { pname = "spire"; - version = "1.12.5"; + version = "1.13.0"; outputs = [ "out" @@ -18,10 +18,10 @@ buildGoModule (finalAttrs: { owner = "spiffe"; repo = "spire"; tag = "v${finalAttrs.version}"; - sha256 = "sha256-Ggsl40CusrHhwO/Cc9MkxHjraQsNmBLwnJJCQ1QFiAw="; + sha256 = "sha256-hUvzC3gaNpp5yvIOoWG72WcC8yy5yLgf5RRzP+hPXrA="; }; - vendorHash = "sha256-yWONqvSNOgeXkYU5TX1Sec8xNCnaqdVLXk3ylhGBvyE="; + vendorHash = "sha256-qhYuE/rlaGJyOxt4e0a1QzAySF0wWOFoNdLAe2nKQbw="; ldflags = [ "-s" From 086337ac02c4d3673a4e4d8dfb430aa9e3f12b68 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 12:30:36 +0000 Subject: [PATCH 044/146] dpic: 2024.01.01 -> 2025.08.01 --- pkgs/by-name/dp/dpic/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/dp/dpic/package.nix b/pkgs/by-name/dp/dpic/package.nix index fb5acef4157d..55a089b22602 100644 --- a/pkgs/by-name/dp/dpic/package.nix +++ b/pkgs/by-name/dp/dpic/package.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { pname = "dpic"; - version = "2024.01.01"; + version = "2025.08.01"; src = fetchurl { url = "https://ece.uwaterloo.ca/~aplevich/dpic/${pname}-${version}.tar.gz"; - sha256 = "sha256-FhkBrJr4bXMFUSuhtWSUBPtMgDoPqwYmJ8w8WJWthy8="; + sha256 = "sha256-Dzj1wekVGIJsssbpViSzkNGAjvrcBAL4ORFRLwznJsM="; }; # The prefix passed to configure is not used. From 6a435e65168d4ffad963338b52d580401642fcdc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 12:59:26 +0000 Subject: [PATCH 045/146] signal-cli: 0.13.18 -> 0.13.19 --- pkgs/by-name/si/signal-cli/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/si/signal-cli/package.nix b/pkgs/by-name/si/signal-cli/package.nix index 18d5d06760c4..bb9ca470d6d6 100644 --- a/pkgs/by-name/si/signal-cli/package.nix +++ b/pkgs/by-name/si/signal-cli/package.nix @@ -12,12 +12,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "signal-cli"; - version = "0.13.18"; + version = "0.13.19"; # Building from source would be preferred, but is much more involved. src = fetchurl { url = "https://github.com/AsamK/signal-cli/releases/download/v${finalAttrs.version}/signal-cli-${finalAttrs.version}.tar.gz"; - hash = "sha256-Dnhr/+dKSNCiM7NB8+v5OxfaGhpyHWXVIWC2pZqaoa8="; + hash = "sha256-+vO/6bn5416HdqM9x2tJQ6v4KP9hcxX1G31icBOcB58="; }; buildInputs = lib.optionals stdenvNoCC.hostPlatform.isLinux [ From 96c58abee55be6a50e4b2203cc37bebf1e64c1e2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 13:50:03 +0000 Subject: [PATCH 046/146] kdePackages.koi: 0.5.1 -> 0.6 --- pkgs/kde/third-party/koi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/kde/third-party/koi/default.nix b/pkgs/kde/third-party/koi/default.nix index 3cdc6f2bc066..9350705ff9e9 100644 --- a/pkgs/kde/third-party/koi/default.nix +++ b/pkgs/kde/third-party/koi/default.nix @@ -14,13 +14,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "koi"; - version = "0.5.1"; + version = "0.6"; src = fetchFromGitHub { owner = "baduhai"; repo = "Koi"; tag = finalAttrs.version; - hash = "sha256-fXLGlq41Qwdp0cYJcNqPlYnlpVXsZk0imYxP7Bgdcvw="; + hash = "sha256-YRbS+WZaK0gJxNTU0KKi122Sn2hVk8t0vFhYr91sGfY="; }; patches = [ From 43b39da6a3780bef896d37cf199ce20aeeb40aa3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 16:52:21 +0000 Subject: [PATCH 047/146] hyprshell: 4.6.0 -> 4.6.4 --- pkgs/by-name/hy/hyprshell/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/hy/hyprshell/package.nix b/pkgs/by-name/hy/hyprshell/package.nix index d4d9f379472a..9a7b6fecc9c6 100644 --- a/pkgs/by-name/hy/hyprshell/package.nix +++ b/pkgs/by-name/hy/hyprshell/package.nix @@ -11,16 +11,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "hyprshell"; - version = "4.6.0"; + version = "4.6.4"; src = fetchFromGitHub { owner = "H3rmt"; repo = "hyprshell"; tag = "v${finalAttrs.version}"; - hash = "sha256-lio5TLy4mtKfoH4kdFh+9l/j974UXF6DrxDWmvKj+Fo="; + hash = "sha256-+Uo7xbLlPrMG94eISub2l3Esj8l6IxwwKEfu8nZLWRg="; }; - cargoHash = "sha256-uiyoVi3w3L2DnGlBeuBArYfpaSxDRCQG1sN5mWi+QGU="; + cargoHash = "sha256-jZiOLFI3VVrPvvb2YR92mvS8QELzIoQU6ER70rZ7o1E="; nativeBuildInputs = [ wrapGAppsHook4 From 5c77e74e4d2995beeabecf04a073f6b7f446b0eb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 17:30:24 +0000 Subject: [PATCH 048/146] flow: 0.279.0 -> 0.281.0 --- pkgs/development/tools/analysis/flow/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix index c2e42213d95f..10f0843577e3 100644 --- a/pkgs/development/tools/analysis/flow/default.nix +++ b/pkgs/development/tools/analysis/flow/default.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "flow"; - version = "0.279.0"; + version = "0.281.0"; src = fetchFromGitHub { owner = "facebook"; repo = "flow"; tag = "v${version}"; - hash = "sha256-mzrCfBTnz9KlFRw1uKhQ3sIiNFbtFGVP2pEJH+D/2tk="; + hash = "sha256-YttdOu5zJo/I0e2hV5vrBSWvUMOZgfhf3RmEC8fRWlI="; }; makeFlags = [ "FLOW_RELEASE=1" ]; From 255b133f01a2a90720f650e58a3892c44163ea8e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 18:11:03 +0000 Subject: [PATCH 049/146] python3Packages.pynvml: 12.0.0 -> 13.0.1 --- pkgs/development/python-modules/pynvml/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pynvml/default.nix b/pkgs/development/python-modules/pynvml/default.nix index 5eca69d7e46e..312dd409b9cf 100644 --- a/pkgs/development/python-modules/pynvml/default.nix +++ b/pkgs/development/python-modules/pynvml/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "pynvml"; - version = "12.0.0"; + version = "13.0.1"; pyproject = true; src = fetchFromGitHub { owner = "gpuopenanalytics"; repo = "pynvml"; tag = version; - hash = "sha256-bfES6QqL9DO7rmQ3btXxVzW0KlL0eHyUvYJVeijymBk="; + hash = "sha256-Jwj3cm0l7qR/q5jzwKbD52L7ePYCdzXrYFOceMA776M="; }; build-system = [ From 1fef615ae51757f0d8107d427ae0543f7cd47fa1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 15 Sep 2025 19:19:32 +0000 Subject: [PATCH 050/146] rqlite: 8.43.4 -> 9.0.1 --- pkgs/by-name/rq/rqlite/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/rq/rqlite/package.nix b/pkgs/by-name/rq/rqlite/package.nix index ef8fc048cf96..688cc84558c4 100644 --- a/pkgs/by-name/rq/rqlite/package.nix +++ b/pkgs/by-name/rq/rqlite/package.nix @@ -6,16 +6,16 @@ buildGoModule (finalAttrs: { pname = "rqlite"; - version = "8.43.4"; + version = "9.0.1"; src = fetchFromGitHub { owner = "rqlite"; repo = "rqlite"; tag = "v${finalAttrs.version}"; - hash = "sha256-2lCMRKGsDfwvXX1iCXfvVj4xcZT9IWRl8jWTpsIOkkw="; + hash = "sha256-ll8F5doXHG3Nq3LisSpy5iuh9JhA6/HsBwrSPDGs57c="; }; - vendorHash = "sha256-Xytvin7YX3eIPE5aw38PzLxhUPwoOZswAntEwCP6Toc="; + vendorHash = "sha256-Mq469sUYgS19SVJ7noTUl7hml9xUAGDsr64MJM8Xq9g="; subPackages = [ "cmd/rqlite" From f49c602fc3b2e17df012260524fc0e00cde6eb40 Mon Sep 17 00:00:00 2001 From: polyfloyd Date: Tue, 16 Sep 2025 15:45:03 +0200 Subject: [PATCH 051/146] lief: 0.16.6 -> 0.17.0 --- pkgs/by-name/li/lief/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/li/lief/package.nix b/pkgs/by-name/li/lief/package.nix index c01e98410526..dbee168fa05a 100644 --- a/pkgs/by-name/li/lief/package.nix +++ b/pkgs/by-name/li/lief/package.nix @@ -17,13 +17,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "lief"; - version = "0.16.6"; + version = "0.17.0"; src = fetchFromGitHub { owner = "lief-project"; repo = "LIEF"; tag = finalAttrs.version; - hash = "sha256-SvwFyhIBuG0u5rE7+1OaO7VZu4/X4jVI6oFOm5+yCd8="; + hash = "sha256-icwRW9iY/MiG/x3VHqRfAU2Yk4q2hXLJsfN5Lwx37gw="; }; outputs = [ From 0898e7bc0d416f2af0a55a089fcbba417c622309 Mon Sep 17 00:00:00 2001 From: polyfloyd Date: Tue, 16 Sep 2025 17:03:18 +0200 Subject: [PATCH 052/146] lief: Fix failing build --- pkgs/by-name/li/lief/package.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/li/lief/package.nix b/pkgs/by-name/li/lief/package.nix index dbee168fa05a..bb1cfa8adf7f 100644 --- a/pkgs/by-name/li/lief/package.nix +++ b/pkgs/by-name/li/lief/package.nix @@ -47,7 +47,11 @@ stdenv.mkDerivation (finalAttrs: { scikit-build-core ]; - cmakeFlags = [ (lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)) ]; + cmakeFlags = [ + (lib.cmakeBool "LIEF_PYTHON_API" true) + (lib.cmakeBool "LIEF_EXAMPLES" false) + (lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)) + ]; postBuild = '' pushd ../api/python @@ -61,6 +65,8 @@ stdenv.mkDerivation (finalAttrs: { popd ''; + pythonImportsCheck = [ "lief" ]; + meta = with lib; { description = "Library to Instrument Executable Formats"; homepage = "https://lief.quarkslab.com/"; From c761a3fb98cdb8cb476c057ed0077bccce22f19c Mon Sep 17 00:00:00 2001 From: polyfloyd Date: Tue, 16 Sep 2025 17:21:49 +0200 Subject: [PATCH 053/146] lief: Add nix-update-script --- pkgs/by-name/li/lief/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/li/lief/package.nix b/pkgs/by-name/li/lief/package.nix index bb1cfa8adf7f..82c31fcbd8cf 100644 --- a/pkgs/by-name/li/lief/package.nix +++ b/pkgs/by-name/li/lief/package.nix @@ -5,6 +5,7 @@ python3, cmake, ninja, + nix-update-script, }: let @@ -67,6 +68,8 @@ stdenv.mkDerivation (finalAttrs: { pythonImportsCheck = [ "lief" ]; + passthru.updateScript = nix-update-script { }; + meta = with lib; { description = "Library to Instrument Executable Formats"; homepage = "https://lief.quarkslab.com/"; From 3c32eda9209c12db897e73616c1662dd57e2b723 Mon Sep 17 00:00:00 2001 From: James Ward Date: Fri, 19 Sep 2025 15:53:01 -0600 Subject: [PATCH 054/146] jetbrains: 2025.2.1 -> 2025.2.2 jetbrains.clion: 2025.2.1 -> 2025.2.2 jetbrains.gateway: 2025.2.1 -> 2025.2.2 jetbrains.goland: 2025.2.1.2 -> 2025.2.2 jetbrains.idea-community: 2025.2.1 -> 2025.2.2 jetbrains.idea-ultimate: 2025.2.1 -> 2025.2.2 jetbrains.phpstorm: 2025.2.1 -> 2025.2.2 jetbrains.rider: 2025.2.1 -> 2025.2.2 jetbrains.ruby-mine: 2025.2.1 -> 2025.2.2 jetbrains.rust-rover: 2025.2.1 -> 2025.2.2 jetbrains.webstorm: 2025.2.1 -> 2025.2.2 --- .../editors/jetbrains/bin/versions.json | 320 +++++++++--------- 1 file changed, 160 insertions(+), 160 deletions(-) diff --git a/pkgs/applications/editors/jetbrains/bin/versions.json b/pkgs/applications/editors/jetbrains/bin/versions.json index f149c9f7ef14..c0c83c50f863 100644 --- a/pkgs/applications/editors/jetbrains/bin/versions.json +++ b/pkgs/applications/editors/jetbrains/bin/versions.json @@ -11,10 +11,10 @@ "clion": { "update-channel": "CLion RELEASE", "url-template": "https://download.jetbrains.com/cpp/CLion-{version}.tar.gz", - "version": "2025.2.1", - "sha256": "f50e1a1e5172f652efdb7d72dc8c2a6222564671983b0c8b03caa68c56630648", - "url": "https://download.jetbrains.com/cpp/CLion-2025.2.1.tar.gz", - "build_number": "252.25557.127" + "version": "2025.2.2", + "sha256": "47b84f1c853a63586743b28834dfd6b949672f3b0a7a67435907a7ef51730606", + "url": "https://download.jetbrains.com/cpp/CLion-2025.2.2.tar.gz", + "build_number": "252.26199.153" }, "datagrip": { "update-channel": "DataGrip RELEASE", @@ -35,34 +35,34 @@ "gateway": { "update-channel": "Gateway RELEASE", "url-template": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-{version}.tar.gz", - "version": "2025.2.1", - "sha256": "bf96140b50e890215104f0806f5f160161a2889ebf7362a3b936ca0eb304bf67", - "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.2.1.tar.gz", - "build_number": "252.25557.133" + "version": "2025.2.2", + "sha256": "d1e8c8c61da42adcc9300a2a005830db386698912071eace9813a5c170a9fff8", + "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.2.2.tar.gz", + "build_number": "252.26199.160" }, "goland": { "update-channel": "GoLand RELEASE", "url-template": "https://download.jetbrains.com/go/goland-{version}.tar.gz", - "version": "2025.2.1.2", - "sha256": "66cb93202b9c4bc34688838a8c39e0d0ed876d01ca651d9f2b0d455139b27169", - "url": "https://download.jetbrains.com/go/goland-2025.2.1.2.tar.gz", - "build_number": "252.25557.189" + "version": "2025.2.2", + "sha256": "e5816136312a419b67cdfab203bd30e305cb2f8952eea76445e908c01f3113c0", + "url": "https://download.jetbrains.com/go/goland-2025.2.2.tar.gz", + "build_number": "252.26199.158" }, "idea-community": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.tar.gz", - "version": "2025.2.1", - "sha256": "fc76fe8b6693b18d5d7385bb005f415287dbd5897b313287b9ef56dd0df9d5bd", - "url": "https://download.jetbrains.com/idea/ideaIC-2025.2.1.tar.gz", - "build_number": "252.25557.131" + "version": "2025.2.2", + "sha256": "3f1adc095bf78f0949e3f62f6cf02be0c5c9e6528271f16caa3baa041e637664", + "url": "https://download.jetbrains.com/idea/ideaIC-2025.2.2.tar.gz", + "build_number": "252.26199.169" }, "idea-ultimate": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.tar.gz", - "version": "2025.2.1", - "sha256": "ac36d03153894f393fb65c05f57be4722c2a2374d03b7374b37baf856705d5fd", - "url": "https://download.jetbrains.com/idea/ideaIU-2025.2.1.tar.gz", - "build_number": "252.25557.131" + "version": "2025.2.2", + "sha256": "7150ece389a4bc8649f68b103018edeeb09205559671549410ded11de523da62", + "url": "https://download.jetbrains.com/idea/ideaIU-2025.2.2.tar.gz", + "build_number": "252.26199.169" }, "mps": { "update-channel": "MPS RELEASE", @@ -75,10 +75,10 @@ "phpstorm": { "update-channel": "PhpStorm RELEASE", "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.tar.gz", - "version": "2025.2.1", - "sha256": "0cc9235210dc09fb54602f176de881c4f2b6852d7a5f2ae9f7750d83a3ffa8f6", - "url": "https://download.jetbrains.com/webide/PhpStorm-2025.2.1.tar.gz", - "build_number": "252.25557.128", + "version": "2025.2.2", + "sha256": "1010c4cfed0d74a0088c80e966c0ea75ed1238dc5b8ae25111e8be3e06bde741", + "url": "https://download.jetbrains.com/webide/PhpStorm-2025.2.2.tar.gz", + "build_number": "252.26199.163", "version-major-minor": "2022.3" }, "pycharm-community": { @@ -100,34 +100,34 @@ "rider": { "update-channel": "Rider RELEASE", "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}.tar.gz", - "version": "2025.2.1", - "sha256": "bdccdc837ab6683082bef1ab76b7699ee3ed44ec6fe037db5be7161837ca0701", - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.2.1.tar.gz", - "build_number": "252.25557.182" + "version": "2025.2.2", + "sha256": "1ebffac91d70f8ce64567955de35738bb52d5e81b45d8c67dd494ff3fa0301df", + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.2.2.tar.gz", + "build_number": "252.26199.154" }, "ruby-mine": { "update-channel": "RubyMine RELEASE", "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.tar.gz", - "version": "2025.2.1", - "sha256": "fbed517b4c60623c04b045dd6cfff08105783a56dd1b831b164a72aa2ead6a38", - "url": "https://download.jetbrains.com/ruby/RubyMine-2025.2.1.tar.gz", - "build_number": "252.25557.135" + "version": "2025.2.2", + "sha256": "f103c2c5ab074aace1ce4678d32fa80d8521a25bb6497130d1185662244cf46d", + "url": "https://download.jetbrains.com/ruby/RubyMine-2025.2.2.tar.gz", + "build_number": "252.26199.157" }, "rust-rover": { "update-channel": "RustRover RELEASE", "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.tar.gz", - "version": "2025.2.1", - "sha256": "19fde47a5c3c8e1b21b402c3351018eed64e2cff575f32a86c884168b522074a", - "url": "https://download.jetbrains.com/rustrover/RustRover-2025.2.1.tar.gz", - "build_number": "252.25557.134" + "version": "2025.2.2", + "sha256": "cc2cfd0af3967a5ce65af5064ccac03bfb2ee2a1ed7e18e8a2c1a009a6d3721c", + "url": "https://download.jetbrains.com/rustrover/RustRover-2025.2.2.tar.gz", + "build_number": "252.26199.159" }, "webstorm": { "update-channel": "WebStorm RELEASE", "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.tar.gz", - "version": "2025.2.1", - "sha256": "8d03ae22e4bac309edbf58310b4fc758fedaee5dc065467eeda005fac5217d2b", - "url": "https://download.jetbrains.com/webstorm/WebStorm-2025.2.1.tar.gz", - "build_number": "252.25557.126" + "version": "2025.2.2", + "sha256": "8bb3bed5c670514ced8614b29848c5d3b7ff4f4e86056cf5cdc5930951c87ff6", + "url": "https://download.jetbrains.com/webstorm/WebStorm-2025.2.2.tar.gz", + "build_number": "252.26199.162" }, "writerside": { "update-channel": "Writerside EAP", @@ -150,10 +150,10 @@ "clion": { "update-channel": "CLion RELEASE", "url-template": "https://download.jetbrains.com/cpp/CLion-{version}-aarch64.tar.gz", - "version": "2025.2.1", - "sha256": "7fff28163607d3a6da7eceb788829cb81ac03e90f694d7b2c0a47b2821b47f4a", - "url": "https://download.jetbrains.com/cpp/CLion-2025.2.1-aarch64.tar.gz", - "build_number": "252.25557.127" + "version": "2025.2.2", + "sha256": "b8749bbec247544767023a25b9e955a9cd462c573e1d08a24ef68c864d5d6859", + "url": "https://download.jetbrains.com/cpp/CLion-2025.2.2-aarch64.tar.gz", + "build_number": "252.26199.153" }, "datagrip": { "update-channel": "DataGrip RELEASE", @@ -174,34 +174,34 @@ "gateway": { "update-channel": "Gateway RELEASE", "url-template": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-{version}-aarch64.tar.gz", - "version": "2025.2.1", - "sha256": "8c4a8c0d15f5afbb17f0ea54e4455f4d69407536459d0d4986fce966e8ae9290", - "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.2.1-aarch64.tar.gz", - "build_number": "252.25557.133" + "version": "2025.2.2", + "sha256": "331407afc012f97b5a80fcfced59e256222549038bfe028c7d00b0b4793ebc4a", + "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.2.2-aarch64.tar.gz", + "build_number": "252.26199.160" }, "goland": { "update-channel": "GoLand RELEASE", "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.tar.gz", - "version": "2025.2.1.2", - "sha256": "c8059924c4e92756905114c6e6806c59d070b332c87bc966237474363f212876", - "url": "https://download.jetbrains.com/go/goland-2025.2.1.2-aarch64.tar.gz", - "build_number": "252.25557.189" + "version": "2025.2.2", + "sha256": "5873b53e586c1f376ec6e159c962be3400f0be964f8f0d542b55b4a99ff6c870", + "url": "https://download.jetbrains.com/go/goland-2025.2.2-aarch64.tar.gz", + "build_number": "252.26199.158" }, "idea-community": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.tar.gz", - "version": "2025.2.1", - "sha256": "ca454bcfe40196adacf12c726d8d44876d8a03c88884f7a08715e5562a45d1a2", - "url": "https://download.jetbrains.com/idea/ideaIC-2025.2.1-aarch64.tar.gz", - "build_number": "252.25557.131" + "version": "2025.2.2", + "sha256": "3ea855820772e36be4b37dd9e503e4fee9b1877dcb614b5baa36819370fa0208", + "url": "https://download.jetbrains.com/idea/ideaIC-2025.2.2-aarch64.tar.gz", + "build_number": "252.26199.169" }, "idea-ultimate": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.tar.gz", - "version": "2025.2.1", - "sha256": "bf292cf0a2822c4b697e4d1e6a7c049c6b91f8cab3d457259d52fd65bbdcdea9", - "url": "https://download.jetbrains.com/idea/ideaIU-2025.2.1-aarch64.tar.gz", - "build_number": "252.25557.131" + "version": "2025.2.2", + "sha256": "d40c5fa210a28a23b9e1d736057a711b41c785e32841f5a27969074feee5df4d", + "url": "https://download.jetbrains.com/idea/ideaIU-2025.2.2-aarch64.tar.gz", + "build_number": "252.26199.169" }, "mps": { "update-channel": "MPS RELEASE", @@ -214,10 +214,10 @@ "phpstorm": { "update-channel": "PhpStorm RELEASE", "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.tar.gz", - "version": "2025.2.1", - "sha256": "68f4d7f3ca81e25023a08a34d1163fdcf0ef8f803cbdd9bc81efdcadd2ccf7ae", - "url": "https://download.jetbrains.com/webide/PhpStorm-2025.2.1-aarch64.tar.gz", - "build_number": "252.25557.128", + "version": "2025.2.2", + "sha256": "edc147816c4fed704206d3ca03e7fcdefde23208599d7732eb0a22af2af6f2ff", + "url": "https://download.jetbrains.com/webide/PhpStorm-2025.2.2-aarch64.tar.gz", + "build_number": "252.26199.163", "version-major-minor": "2022.3" }, "pycharm-community": { @@ -239,34 +239,34 @@ "rider": { "update-channel": "Rider RELEASE", "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}-aarch64.tar.gz", - "version": "2025.2.1", - "sha256": "14c5cc877b213d7da53eea0585c1ebd13c5f43316a39ed9e6a1a745246fe42cb", - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.2.1-aarch64.tar.gz", - "build_number": "252.25557.182" + "version": "2025.2.2", + "sha256": "36523ab3b94d1ee1b92794476870727faa1ca29fbd365b7c3239f199399f6dbe", + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.2.2-aarch64.tar.gz", + "build_number": "252.26199.154" }, "ruby-mine": { "update-channel": "RubyMine RELEASE", "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.tar.gz", - "version": "2025.2.1", - "sha256": "2dc93b1eb3d40eea193eb313632f13440fa34add912a1ab0ad201349811bbcb8", - "url": "https://download.jetbrains.com/ruby/RubyMine-2025.2.1-aarch64.tar.gz", - "build_number": "252.25557.135" + "version": "2025.2.2", + "sha256": "f75616b41eff86d75f51dadb49f1033ff9af021f1d9ca354fc8f99eca251c4ac", + "url": "https://download.jetbrains.com/ruby/RubyMine-2025.2.2-aarch64.tar.gz", + "build_number": "252.26199.157" }, "rust-rover": { "update-channel": "RustRover RELEASE", "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.tar.gz", - "version": "2025.2.1", - "sha256": "60d22c93e3924f3defa51ace317fc6f715a6a5ef4e8ec18f1f361e6aa1d2a9d5", - "url": "https://download.jetbrains.com/rustrover/RustRover-2025.2.1-aarch64.tar.gz", - "build_number": "252.25557.134" + "version": "2025.2.2", + "sha256": "d76cb3f3d7affbd9cab937e813f44bafdd2675160b909f27baa7fac042de0765", + "url": "https://download.jetbrains.com/rustrover/RustRover-2025.2.2-aarch64.tar.gz", + "build_number": "252.26199.159" }, "webstorm": { "update-channel": "WebStorm RELEASE", "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.tar.gz", - "version": "2025.2.1", - "sha256": "ce335848f4771392c971d054b4a378a98ee6f77347c1e64d0631981715a034e3", - "url": "https://download.jetbrains.com/webstorm/WebStorm-2025.2.1-aarch64.tar.gz", - "build_number": "252.25557.126" + "version": "2025.2.2", + "sha256": "aa8eaa8bb200a6fce42582cb37235f3abf77ca7bcad2c9b98c318686c45772e1", + "url": "https://download.jetbrains.com/webstorm/WebStorm-2025.2.2-aarch64.tar.gz", + "build_number": "252.26199.162" }, "writerside": { "update-channel": "Writerside EAP", @@ -289,10 +289,10 @@ "clion": { "update-channel": "CLion RELEASE", "url-template": "https://download.jetbrains.com/cpp/CLion-{version}.dmg", - "version": "2025.2.1", - "sha256": "1cc896ae584c51009674f12d9c43d481b108b8e59243e60b094e7a967bb64652", - "url": "https://download.jetbrains.com/cpp/CLion-2025.2.1.dmg", - "build_number": "252.25557.127" + "version": "2025.2.2", + "sha256": "f9c42a3417db66bc88fc039829840662a650fdf79fc02619c5d6fd8a633f6606", + "url": "https://download.jetbrains.com/cpp/CLion-2025.2.2.dmg", + "build_number": "252.26199.153" }, "datagrip": { "update-channel": "DataGrip RELEASE", @@ -313,34 +313,34 @@ "gateway": { "update-channel": "Gateway RELEASE", "url-template": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-{version}.dmg", - "version": "2025.2.1", - "sha256": "4f48557a9a1ded6a88bc6bf17d65879f54b2314142c65e65d844df92d770de03", - "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.2.1.dmg", - "build_number": "252.25557.133" + "version": "2025.2.2", + "sha256": "1be3476dc9065e9b95f399cb24ff2e5793e09a390bf541695bc932a9f46a2321", + "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.2.2.dmg", + "build_number": "252.26199.160" }, "goland": { "update-channel": "GoLand RELEASE", "url-template": "https://download.jetbrains.com/go/goland-{version}.dmg", - "version": "2025.2.1.2", - "sha256": "e3c8195cbf54ac77d6f715b1d6ed3c91f3b5288c0bdd67b254ebb938019e4271", - "url": "https://download.jetbrains.com/go/goland-2025.2.1.2.dmg", - "build_number": "252.25557.189" + "version": "2025.2.2", + "sha256": "d23f16afaa67f120ce987b59280805f01025e5b971d85544f33f0960035f3a1c", + "url": "https://download.jetbrains.com/go/goland-2025.2.2.dmg", + "build_number": "252.26199.158" }, "idea-community": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.dmg", - "version": "2025.2.1", - "sha256": "48d3f6523cc6fe94ad8020357b6de5e977fb2a49c8041773ffae7f946d418224", - "url": "https://download.jetbrains.com/idea/ideaIC-2025.2.1.dmg", - "build_number": "252.25557.131" + "version": "2025.2.2", + "sha256": "112bfa1e1c065ec641f1a242e95b63d4fed1b7dfa1d7b57b6591d8230531adae", + "url": "https://download.jetbrains.com/idea/ideaIC-2025.2.2.dmg", + "build_number": "252.26199.169" }, "idea-ultimate": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.dmg", - "version": "2025.2.1", - "sha256": "a768de8ff17cfb940d402ed907777e50c669e770ccd7515613086cd6d35f81d4", - "url": "https://download.jetbrains.com/idea/ideaIU-2025.2.1.dmg", - "build_number": "252.25557.131" + "version": "2025.2.2", + "sha256": "7e7b672525e29554e503eecc656de025a96b680d1ee223dfbfd762a1ca6430dd", + "url": "https://download.jetbrains.com/idea/ideaIU-2025.2.2.dmg", + "build_number": "252.26199.169" }, "mps": { "update-channel": "MPS RELEASE", @@ -353,10 +353,10 @@ "phpstorm": { "update-channel": "PhpStorm RELEASE", "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.dmg", - "version": "2025.2.1", - "sha256": "8ea7143923c6f18c130e8d85530c423fa4eea5a81543094af9ad4c8155a26215", - "url": "https://download.jetbrains.com/webide/PhpStorm-2025.2.1.dmg", - "build_number": "252.25557.128", + "version": "2025.2.2", + "sha256": "60413cba4c4492a51af0dd3a439a615a08ec5fbc31c28ee7bb1af8638708eb05", + "url": "https://download.jetbrains.com/webide/PhpStorm-2025.2.2.dmg", + "build_number": "252.26199.163", "version-major-minor": "2022.3" }, "pycharm-community": { @@ -378,34 +378,34 @@ "rider": { "update-channel": "Rider RELEASE", "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}.dmg", - "version": "2025.2.1", - "sha256": "37feeae3929be95bd6f405c6d5760af7d2e43bff55e03a4256c1232b61714809", - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.2.1.dmg", - "build_number": "252.25557.182" + "version": "2025.2.2", + "sha256": "ccc7b35691ceb87e3b3103909617e1616c36dcc69cb73c1f7668591c6256ba35", + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.2.2.dmg", + "build_number": "252.26199.154" }, "ruby-mine": { "update-channel": "RubyMine RELEASE", "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.dmg", - "version": "2025.2.1", - "sha256": "389d7e790bc745126e838191d14984acaf7f3beae4ef7d669c0fed1219b8a8e6", - "url": "https://download.jetbrains.com/ruby/RubyMine-2025.2.1.dmg", - "build_number": "252.25557.135" + "version": "2025.2.2", + "sha256": "9ced0e4a5ebb0e47821d25a7b8d9a2c4a9a8ad821ffefa9b429821379da8486e", + "url": "https://download.jetbrains.com/ruby/RubyMine-2025.2.2.dmg", + "build_number": "252.26199.157" }, "rust-rover": { "update-channel": "RustRover RELEASE", "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.dmg", - "version": "2025.2.1", - "sha256": "9143fa9bfcab98ed2a5215c006bb6bf5521ee5c9a9f08f6f321d0a873cfb39cc", - "url": "https://download.jetbrains.com/rustrover/RustRover-2025.2.1.dmg", - "build_number": "252.25557.134" + "version": "2025.2.2", + "sha256": "bcb442e4d22a71cd312cae2821187da82f9c58cdd03e5343a070b12af6a11f85", + "url": "https://download.jetbrains.com/rustrover/RustRover-2025.2.2.dmg", + "build_number": "252.26199.159" }, "webstorm": { "update-channel": "WebStorm RELEASE", "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.dmg", - "version": "2025.2.1", - "sha256": "38ba2b01c688d838f5cb533eb9d575223135eb753d7f38865aaf4d27b56b5bf5", - "url": "https://download.jetbrains.com/webstorm/WebStorm-2025.2.1.dmg", - "build_number": "252.25557.126" + "version": "2025.2.2", + "sha256": "74af775f515e7cc847ee572cf7720498e6afec3387af285a6685337272c61611", + "url": "https://download.jetbrains.com/webstorm/WebStorm-2025.2.2.dmg", + "build_number": "252.26199.162" }, "writerside": { "update-channel": "Writerside EAP", @@ -428,10 +428,10 @@ "clion": { "update-channel": "CLion RELEASE", "url-template": "https://download.jetbrains.com/cpp/CLion-{version}-aarch64.dmg", - "version": "2025.2.1", - "sha256": "d8256fee77311192ffcb45d9efa5fa57fb2ea83a22925f49bc5880106f7b9ee4", - "url": "https://download.jetbrains.com/cpp/CLion-2025.2.1-aarch64.dmg", - "build_number": "252.25557.127" + "version": "2025.2.2", + "sha256": "4dceb6ba2ae1d2fcaaa7f76090bbb18664da30d371d2e950afdffb0f9589ce7e", + "url": "https://download.jetbrains.com/cpp/CLion-2025.2.2-aarch64.dmg", + "build_number": "252.26199.153" }, "datagrip": { "update-channel": "DataGrip RELEASE", @@ -452,34 +452,34 @@ "gateway": { "update-channel": "Gateway RELEASE", "url-template": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-{version}-aarch64.dmg", - "version": "2025.2.1", - "sha256": "94bb0fb41eaaea744173fe321b7e17cac898088eb7738c68b8d271ca437dee80", - "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.2.1-aarch64.dmg", - "build_number": "252.25557.133" + "version": "2025.2.2", + "sha256": "1d9be57de8075eeefcc81ef249b15a60762f82909ca4002846dce13acedba56d", + "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2025.2.2-aarch64.dmg", + "build_number": "252.26199.160" }, "goland": { "update-channel": "GoLand RELEASE", "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.dmg", - "version": "2025.2.1.2", - "sha256": "2c174e4fbd1485f3e402b9e0b693d196b8e38bc7b7bba2c33896391181c92940", - "url": "https://download.jetbrains.com/go/goland-2025.2.1.2-aarch64.dmg", - "build_number": "252.25557.189" + "version": "2025.2.2", + "sha256": "38dd5a302eba4ee5f92c5c5aa810b449b72301c89d209139e75c0efb6bdff919", + "url": "https://download.jetbrains.com/go/goland-2025.2.2-aarch64.dmg", + "build_number": "252.26199.158" }, "idea-community": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.dmg", - "version": "2025.2.1", - "sha256": "dcafd8e623819b0696044d23874423f905224462844155a3c282fd4f62a7d578", - "url": "https://download.jetbrains.com/idea/ideaIC-2025.2.1-aarch64.dmg", - "build_number": "252.25557.131" + "version": "2025.2.2", + "sha256": "cc83bbb9531522085d2892499ddb5cb87909291d58ee3e34c06b131aeb2413fe", + "url": "https://download.jetbrains.com/idea/ideaIC-2025.2.2-aarch64.dmg", + "build_number": "252.26199.169" }, "idea-ultimate": { "update-channel": "IntelliJ IDEA RELEASE", "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.dmg", - "version": "2025.2.1", - "sha256": "96523081d1d686425b166698870a4467600724faac060a938a05838b0b9f8a9c", - "url": "https://download.jetbrains.com/idea/ideaIU-2025.2.1-aarch64.dmg", - "build_number": "252.25557.131" + "version": "2025.2.2", + "sha256": "c93ef0205c18f8b9fd127df2d5f3486e3ad190a0408c374e1795aeaa7899dc8a", + "url": "https://download.jetbrains.com/idea/ideaIU-2025.2.2-aarch64.dmg", + "build_number": "252.26199.169" }, "mps": { "update-channel": "MPS RELEASE", @@ -492,10 +492,10 @@ "phpstorm": { "update-channel": "PhpStorm RELEASE", "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.dmg", - "version": "2025.2.1", - "sha256": "9da242618b2f540d8fc34937743e2ebcd71af6341420474b0bf9285464a81a68", - "url": "https://download.jetbrains.com/webide/PhpStorm-2025.2.1-aarch64.dmg", - "build_number": "252.25557.128", + "version": "2025.2.2", + "sha256": "08c30cee02829ebca2956a5dc84221322cbd0ce02f33fb023d3d340cdcc2dac3", + "url": "https://download.jetbrains.com/webide/PhpStorm-2025.2.2-aarch64.dmg", + "build_number": "252.26199.163", "version-major-minor": "2022.3" }, "pycharm-community": { @@ -517,34 +517,34 @@ "rider": { "update-channel": "Rider RELEASE", "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}-aarch64.dmg", - "version": "2025.2.1", - "sha256": "80f3f99311e8f225a6475b81dab014b13dd1782a59c6dc8abe5e5d3e614489b3", - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.2.1-aarch64.dmg", - "build_number": "252.25557.182" + "version": "2025.2.2", + "sha256": "f6d1a148123519c33d2ec8822e7d83856af68cbb518ac822c638bbd4b1127ad2", + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2025.2.2-aarch64.dmg", + "build_number": "252.26199.154" }, "ruby-mine": { "update-channel": "RubyMine RELEASE", "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.dmg", - "version": "2025.2.1", - "sha256": "27c6648ec738e29bdd22fab0ed46a321ed6c8354348cb39ac3ae863c4ffe4c78", - "url": "https://download.jetbrains.com/ruby/RubyMine-2025.2.1-aarch64.dmg", - "build_number": "252.25557.135" + "version": "2025.2.2", + "sha256": "4fa2260b6ca45a3e21bd3aa64517cb5216113a4177ec2b7808f9883cf4a071b5", + "url": "https://download.jetbrains.com/ruby/RubyMine-2025.2.2-aarch64.dmg", + "build_number": "252.26199.157" }, "rust-rover": { "update-channel": "RustRover RELEASE", "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.dmg", - "version": "2025.2.1", - "sha256": "469b4b7c42aa808a5f9d94315f4cc412ad74ef76ff51654d441ef16c5063dc27", - "url": "https://download.jetbrains.com/rustrover/RustRover-2025.2.1-aarch64.dmg", - "build_number": "252.25557.134" + "version": "2025.2.2", + "sha256": "a673c45f2183d28ac6ac37df9a8cd7084af432793f505589164096a425fa7801", + "url": "https://download.jetbrains.com/rustrover/RustRover-2025.2.2-aarch64.dmg", + "build_number": "252.26199.159" }, "webstorm": { "update-channel": "WebStorm RELEASE", "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.dmg", - "version": "2025.2.1", - "sha256": "dd3220a9458cd1574a96a75922e5439689f494516af9f5e76c5b74ffb37ec488", - "url": "https://download.jetbrains.com/webstorm/WebStorm-2025.2.1-aarch64.dmg", - "build_number": "252.25557.126" + "version": "2025.2.2", + "sha256": "68fbdbb3abd2ef5ae69d8371f72fd61e39f4331e7b9aacb792a7b6b7b6d05e8f", + "url": "https://download.jetbrains.com/webstorm/WebStorm-2025.2.2-aarch64.dmg", + "build_number": "252.26199.162" }, "writerside": { "update-channel": "Writerside EAP", From 01f7b2792ee6d9a2c1c93df45684d623eace8136 Mon Sep 17 00:00:00 2001 From: James Ward Date: Fri, 19 Sep 2025 15:54:50 -0600 Subject: [PATCH 055/146] jetbrains.plugins: update --- .../editors/jetbrains/plugins/plugins.json | 1116 ++++++++--------- 1 file changed, 557 insertions(+), 559 deletions(-) diff --git a/pkgs/applications/editors/jetbrains/plugins/plugins.json b/pkgs/applications/editors/jetbrains/plugins/plugins.json index b308626dac32..a866e49abbd2 100644 --- a/pkgs/applications/editors/jetbrains/plugins/plugins.json +++ b/pkgs/applications/editors/jetbrains/plugins/plugins.json @@ -18,15 +18,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", "252.23892.529": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", "252.25557.178": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip", "252.26199.73": "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip" }, "name": "ideavim" @@ -36,7 +36,7 @@ "idea-ultimate" ], "builds": { - "252.25557.131": "https://plugins.jetbrains.com/files/631/841433/python-252.25557.131.zip" + "252.26199.169": "https://plugins.jetbrains.com/files/631/861064/python-252.26199.169.zip" }, "name": "python" }, @@ -47,7 +47,7 @@ ], "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/1347/770332/scala-intellij-bin-2025.1.25.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/1347/842761/scala-intellij-bin-2025.2.29.zip" + "252.26199.169": "https://plugins.jetbrains.com/files/1347/861692/scala-intellij-bin-2025.2.30.zip" }, "name": "scala" }, @@ -69,15 +69,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", "252.23892.529": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", "252.25557.178": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip", "252.26199.73": "https://plugins.jetbrains.com/files/2162/820000/StringManipulation-9.16.0.zip" }, "name": "stringmanipulation" @@ -100,15 +100,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/6884/711128/handlebars-251.23774.318.zip", "252.23892.529": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", "252.25557.178": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip", "252.26199.73": "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip" }, "name": "handlebars-mustache" @@ -131,16 +131,16 @@ "builds": { "251.25410.129": null, "252.23892.529": "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/6954/841446/Kotlin-252.25557.131-IJ.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/6954/841446/Kotlin-252.25557.131-IJ.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/6954/841446/Kotlin-252.25557.131-IJ.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/6954/841446/Kotlin-252.25557.131-IJ.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/6954/841446/Kotlin-252.25557.131-IJ.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/6954/841446/Kotlin-252.25557.131-IJ.zip", "252.25557.178": "https://plugins.jetbrains.com/files/6954/841446/Kotlin-252.25557.131-IJ.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/6954/841446/Kotlin-252.25557.131-IJ.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/6954/841446/Kotlin-252.25557.131-IJ.zip", - "252.26199.73": "https://plugins.jetbrains.com/files/6954/849100/Kotlin-252.26199.7-IJ.zip" + "252.26199.153": "https://plugins.jetbrains.com/files/6954/861041/Kotlin-252.26199.169-IJ.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/6954/861041/Kotlin-252.26199.169-IJ.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/6954/861041/Kotlin-252.26199.169-IJ.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/6954/861041/Kotlin-252.26199.169-IJ.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/6954/861041/Kotlin-252.26199.169-IJ.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/6954/861041/Kotlin-252.26199.169-IJ.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/6954/861041/Kotlin-252.26199.169-IJ.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/6954/861041/Kotlin-252.26199.169-IJ.zip", + "252.26199.73": "https://plugins.jetbrains.com/files/6954/861041/Kotlin-252.26199.169-IJ.zip" }, "name": "kotlin" }, @@ -161,17 +161,17 @@ ], "builds": { "251.25410.129": null, - "252.23892.529": "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/6981/846966/ini-252.25557.135.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/6981/846966/ini-252.25557.135.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/6981/846966/ini-252.25557.135.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/6981/846966/ini-252.25557.135.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/6981/846966/ini-252.25557.135.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/6981/846966/ini-252.25557.135.zip", + "252.23892.529": null, "252.25557.178": "https://plugins.jetbrains.com/files/6981/846966/ini-252.25557.135.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/6981/846966/ini-252.25557.135.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/6981/846966/ini-252.25557.135.zip", - "252.26199.73": "https://plugins.jetbrains.com/files/6981/854478/ini-252.26199.84.zip" + "252.26199.153": "https://plugins.jetbrains.com/files/6981/861757/ini-252.26199.163.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/6981/861757/ini-252.26199.163.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/6981/861757/ini-252.26199.163.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/6981/861757/ini-252.26199.163.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/6981/861757/ini-252.26199.163.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/6981/861757/ini-252.26199.163.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/6981/861757/ini-252.26199.163.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/6981/861757/ini-252.26199.163.zip", + "252.26199.73": "https://plugins.jetbrains.com/files/6981/861757/ini-252.26199.163.zip" }, "name": "ini" }, @@ -193,15 +193,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", "252.23892.529": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", "252.25557.178": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip", "252.26199.73": "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip" }, "name": "acejump" @@ -224,15 +224,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", "252.23892.529": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", "252.25557.178": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip", "252.26199.73": "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip" }, "name": "grep-console" @@ -255,15 +255,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/7177/711086/fileWatcher-251.23774.318.zip", "252.23892.529": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", "252.25557.178": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip", "252.26199.73": "https://plugins.jetbrains.com/files/7177/796349/fileWatcher-252.23892.201.zip" }, "name": "file-watchers" @@ -275,7 +275,7 @@ ], "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/7179/767851/MavenHelper-4.30.0-IJ2022.2.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/7179/767851/MavenHelper-4.30.0-IJ2022.2.zip" + "252.26199.169": "https://plugins.jetbrains.com/files/7179/767851/MavenHelper-4.30.0-IJ2022.2.zip" }, "name": "maven-helper" }, @@ -297,15 +297,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", "252.23892.529": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", "252.25557.178": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip", "252.26199.73": "https://plugins.jetbrains.com/files/7212/809131/cucumber-java-252.23892.360.zip" }, "name": "cucumber-for-java" @@ -316,8 +316,8 @@ "phpstorm" ], "builds": { - "252.25557.128": "https://plugins.jetbrains.com/files/7219/770179/Symfony_Plugin-2025.1.280.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/7219/770179/Symfony_Plugin-2025.1.280.zip" + "252.26199.163": "https://plugins.jetbrains.com/files/7219/770179/Symfony_Plugin-2025.1.280.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/7219/770179/Symfony_Plugin-2025.1.280.zip" }, "name": "symfony-plugin" }, @@ -327,8 +327,8 @@ "phpstorm" ], "builds": { - "252.25557.128": "https://plugins.jetbrains.com/files/7320/855846/PHP_Annotations-12.0.1.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/7320/855846/PHP_Annotations-12.0.1.zip" + "252.26199.163": "https://plugins.jetbrains.com/files/7320/855846/PHP_Annotations-12.0.1.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/7320/855846/PHP_Annotations-12.0.1.zip" }, "name": "php-annotations" }, @@ -346,14 +346,14 @@ ], "builds": { "251.25410.129": null, - "252.25557.126": "https://plugins.jetbrains.com/files/7322/841474/python-ce-252.25557.131.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/7322/841474/python-ce-252.25557.131.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/7322/841474/python-ce-252.25557.131.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/7322/841474/python-ce-252.25557.131.zip", "252.25557.178": "https://plugins.jetbrains.com/files/7322/841474/python-ce-252.25557.131.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/7322/841474/python-ce-252.25557.131.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/7322/841474/python-ce-252.25557.131.zip", - "252.26199.73": "https://plugins.jetbrains.com/files/7322/853923/python-ce-252.26199.74.zip" + "252.26199.153": "https://plugins.jetbrains.com/files/7322/861072/python-ce-252.26199.169.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/7322/861072/python-ce-252.26199.169.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/7322/861072/python-ce-252.26199.169.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/7322/861072/python-ce-252.26199.169.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/7322/861072/python-ce-252.26199.169.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/7322/861072/python-ce-252.26199.169.zip", + "252.26199.73": "https://plugins.jetbrains.com/files/7322/861072/python-ce-252.26199.169.zip" }, "name": "python-community-edition" }, @@ -375,15 +375,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", "252.23892.529": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", "252.25557.178": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip", "252.26199.73": "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip" }, "name": "asciidoc" @@ -406,15 +406,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", "252.23892.529": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", - "252.25557.126": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", - "252.25557.127": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", - "252.25557.128": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", - "252.25557.131": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", - "252.25557.134": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", - "252.25557.135": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", "252.25557.178": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", - "252.25557.182": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", - "252.25557.189": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", + "252.26199.153": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", + "252.26199.154": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", + "252.26199.157": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", + "252.26199.158": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", + "252.26199.159": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", + "252.26199.162": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", + "252.26199.163": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", + "252.26199.169": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar", "252.26199.73": "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar" }, "name": "wakatime" @@ -437,15 +437,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", "252.23892.529": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", "252.25557.178": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip", "252.26199.73": "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip" }, "name": "gittoolbox" @@ -467,17 +467,17 @@ ], "builds": { "251.25410.129": null, - "252.23892.529": "https://plugins.jetbrains.com/files/7724/826726/clouds-docker-impl-252.23892.515.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/7724/841415/clouds-docker-impl-252.25557.130.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/7724/841415/clouds-docker-impl-252.25557.130.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/7724/841415/clouds-docker-impl-252.25557.130.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/7724/841415/clouds-docker-impl-252.25557.130.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/7724/841415/clouds-docker-impl-252.25557.130.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/7724/841415/clouds-docker-impl-252.25557.130.zip", + "252.23892.529": null, "252.25557.178": "https://plugins.jetbrains.com/files/7724/841415/clouds-docker-impl-252.25557.130.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/7724/841415/clouds-docker-impl-252.25557.130.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/7724/841415/clouds-docker-impl-252.25557.130.zip", - "252.26199.73": "https://plugins.jetbrains.com/files/7724/856964/clouds-docker-impl-252.26199.97.zip" + "252.26199.153": "https://plugins.jetbrains.com/files/7724/861752/clouds-docker-impl-252.26199.163.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/7724/861752/clouds-docker-impl-252.26199.163.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/7724/861752/clouds-docker-impl-252.26199.163.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/7724/861752/clouds-docker-impl-252.26199.163.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/7724/861752/clouds-docker-impl-252.26199.163.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/7724/861752/clouds-docker-impl-252.26199.163.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/7724/861752/clouds-docker-impl-252.26199.163.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/7724/861752/clouds-docker-impl-252.26199.163.zip", + "252.26199.73": "https://plugins.jetbrains.com/files/7724/861752/clouds-docker-impl-252.26199.163.zip" }, "name": "docker" }, @@ -499,15 +499,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/8097/711188/graphql-251.23774.318.zip", "252.23892.529": "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", "252.25557.178": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip", "252.26199.73": "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip" }, "name": "graphql" @@ -529,14 +529,14 @@ "builds": { "251.25410.129": null, "252.23892.529": null, - "252.25557.126": null, - "252.25557.127": null, - "252.25557.128": null, - "252.25557.131": null, - "252.25557.135": null, "252.25557.178": null, - "252.25557.182": null, - "252.25557.189": null, + "252.26199.153": null, + "252.26199.154": null, + "252.26199.157": null, + "252.26199.158": null, + "252.26199.162": null, + "252.26199.163": null, + "252.26199.169": null, "252.26199.73": null }, "name": "-deprecated-rust" @@ -558,14 +558,14 @@ "builds": { "251.25410.129": null, "252.23892.529": null, - "252.25557.126": null, - "252.25557.127": null, - "252.25557.128": null, - "252.25557.131": null, - "252.25557.135": null, "252.25557.178": null, - "252.25557.182": null, - "252.25557.189": null, + "252.26199.153": null, + "252.26199.154": null, + "252.26199.157": null, + "252.26199.158": null, + "252.26199.162": null, + "252.26199.163": null, + "252.26199.169": null, "252.26199.73": null }, "name": "-deprecated-rust-beta" @@ -588,16 +588,16 @@ "builds": { "251.25410.129": null, "252.23892.529": "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/8195/846963/toml-252.25557.135.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/8195/846963/toml-252.25557.135.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/8195/846963/toml-252.25557.135.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/8195/846963/toml-252.25557.135.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/8195/846963/toml-252.25557.135.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/8195/846963/toml-252.25557.135.zip", "252.25557.178": "https://plugins.jetbrains.com/files/8195/846963/toml-252.25557.135.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/8195/846963/toml-252.25557.135.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/8195/846963/toml-252.25557.135.zip", - "252.26199.73": "https://plugins.jetbrains.com/files/8195/854361/toml-252.26199.83.zip" + "252.26199.153": "https://plugins.jetbrains.com/files/8195/861057/toml-252.26199.169.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/8195/861057/toml-252.26199.169.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/8195/861057/toml-252.26199.169.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/8195/861057/toml-252.26199.169.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/8195/861057/toml-252.26199.169.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/8195/861057/toml-252.26199.169.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/8195/861057/toml-252.26199.169.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/8195/861057/toml-252.26199.169.zip", + "252.26199.73": "https://plugins.jetbrains.com/files/8195/861057/toml-252.26199.169.zip" }, "name": "toml" }, @@ -608,7 +608,7 @@ ], "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/8327/809293/Minecraft_Development-2025.1-1.8.6.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/8327/809294/Minecraft_Development-2025.2-1.8.6.zip" + "252.26199.169": "https://plugins.jetbrains.com/files/8327/809294/Minecraft_Development-2025.2-1.8.6.zip" }, "name": "minecraft-development" }, @@ -630,15 +630,15 @@ "builds": { "251.25410.129": null, "252.23892.529": "https://plugins.jetbrains.com/files/8554/826552/featuresTrainer-252.23892.514.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/8554/834301/featuresTrainer-252.25557.79.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/8554/834301/featuresTrainer-252.25557.79.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/8554/834301/featuresTrainer-252.25557.79.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/8554/834301/featuresTrainer-252.25557.79.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/8554/834301/featuresTrainer-252.25557.79.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/8554/834301/featuresTrainer-252.25557.79.zip", "252.25557.178": "https://plugins.jetbrains.com/files/8554/834301/featuresTrainer-252.25557.79.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/8554/834301/featuresTrainer-252.25557.79.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/8554/834301/featuresTrainer-252.25557.79.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/8554/854483/featuresTrainer-252.26199.84.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/8554/854483/featuresTrainer-252.26199.84.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/8554/854483/featuresTrainer-252.26199.84.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/8554/854483/featuresTrainer-252.26199.84.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/8554/854483/featuresTrainer-252.26199.84.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/8554/854483/featuresTrainer-252.26199.84.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/8554/854483/featuresTrainer-252.26199.84.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/8554/854483/featuresTrainer-252.26199.84.zip", "252.26199.73": "https://plugins.jetbrains.com/files/8554/854483/featuresTrainer-252.26199.84.zip" }, "name": "ide-features-trainer" @@ -661,15 +661,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", "252.23892.529": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", "252.25557.178": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip", "252.26199.73": "https://plugins.jetbrains.com/files/8607/786671/NixIDEA-0.4.0.18.zip" }, "name": "nixidea" @@ -692,15 +692,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", "252.23892.529": "https://plugins.jetbrains.com/files/9164/796366/gherkin-252.23892.201.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", "252.25557.178": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip", "252.26199.73": "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip" }, "name": "gherkin" @@ -723,15 +723,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/9525/711041/dotenv-251.23774.318.zip", "252.23892.529": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", "252.25557.178": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip", "252.26199.73": "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip" }, "name": "-env-files" @@ -742,8 +742,8 @@ "idea-ultimate" ], "builds": { - "252.25557.131": "https://plugins.jetbrains.com/files/9568/834217/go-plugin-252.25557.77.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/9568/834217/go-plugin-252.25557.77.zip" + "252.26199.158": "https://plugins.jetbrains.com/files/9568/861058/go-plugin-252.26199.169.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/9568/861058/go-plugin-252.26199.169.zip" }, "name": "go" }, @@ -765,15 +765,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/9707/702581/ANSI_Highlighter_Premium-25.1.5.jar", "252.23892.529": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", - "252.25557.126": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", - "252.25557.127": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", - "252.25557.128": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", - "252.25557.131": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", - "252.25557.134": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", - "252.25557.135": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", "252.25557.178": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", - "252.25557.182": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", - "252.25557.189": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", + "252.26199.153": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", + "252.26199.154": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", + "252.26199.157": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", + "252.26199.158": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", + "252.26199.159": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", + "252.26199.162": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", + "252.26199.163": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", + "252.26199.169": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar", "252.26199.73": "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar" }, "name": "ansi-highlighter-premium" @@ -796,15 +796,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", "252.23892.529": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", "252.25557.178": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", "252.26199.73": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip" }, "name": "key-promoter-x" @@ -827,15 +827,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", "252.23892.529": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", "252.25557.178": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip", "252.26199.73": "https://plugins.jetbrains.com/files/9836/840770/intellij-randomness-3.4.2.zip" }, "name": "randomness" @@ -858,15 +858,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", "252.23892.529": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", "252.25557.178": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip", "252.26199.73": "https://plugins.jetbrains.com/files/10037/851933/intellij-csv-validator-4.1.0.zip" }, "name": "csv-editor" @@ -889,15 +889,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", "252.23892.529": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", "252.25557.178": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip", "252.26199.73": "https://plugins.jetbrains.com/files/10080/834534/intellij-rainbow-brackets-2025.3.4.zip" }, "name": "rainbow-brackets" @@ -920,15 +920,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", "252.23892.529": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", "252.25557.178": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", "252.26199.73": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip" }, "name": "dot-language" @@ -951,15 +951,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", "252.23892.529": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", "252.25557.178": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip", "252.26199.73": "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip" }, "name": "hocon" @@ -981,14 +981,14 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", "252.23892.529": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", "252.25557.178": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip", "252.26199.73": "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip" }, "name": "go-template" @@ -1009,18 +1009,18 @@ "webstorm" ], "builds": { - "251.25410.129": "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip", - "252.23892.529": "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip", - "252.25557.178": "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip", - "252.26199.73": "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip" + "251.25410.129": "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip", + "252.23892.529": "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip", + "252.25557.178": "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip", + "252.26199.73": "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip" }, "name": "extra-icons" }, @@ -1040,18 +1040,18 @@ "webstorm" ], "builds": { - "251.25410.129": "https://plugins.jetbrains.com/files/11349/854831/aws-toolkit-jetbrains-standalone-3.93.251.zip", - "252.23892.529": "https://plugins.jetbrains.com/files/11349/854827/aws-toolkit-jetbrains-standalone-3.93.252.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/11349/854827/aws-toolkit-jetbrains-standalone-3.93.252.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/11349/854827/aws-toolkit-jetbrains-standalone-3.93.252.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/11349/854827/aws-toolkit-jetbrains-standalone-3.93.252.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/11349/854827/aws-toolkit-jetbrains-standalone-3.93.252.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/11349/854827/aws-toolkit-jetbrains-standalone-3.93.252.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/11349/854827/aws-toolkit-jetbrains-standalone-3.93.252.zip", - "252.25557.178": "https://plugins.jetbrains.com/files/11349/854827/aws-toolkit-jetbrains-standalone-3.93.252.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/11349/854827/aws-toolkit-jetbrains-standalone-3.93.252.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/11349/854827/aws-toolkit-jetbrains-standalone-3.93.252.zip", - "252.26199.73": "https://plugins.jetbrains.com/files/11349/854827/aws-toolkit-jetbrains-standalone-3.93.252.zip" + "251.25410.129": "https://plugins.jetbrains.com/files/11349/861955/aws-toolkit-jetbrains-standalone-3.94.251.zip", + "252.23892.529": "https://plugins.jetbrains.com/files/11349/861953/aws-toolkit-jetbrains-standalone-3.94.252.zip", + "252.25557.178": "https://plugins.jetbrains.com/files/11349/861953/aws-toolkit-jetbrains-standalone-3.94.252.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/11349/861953/aws-toolkit-jetbrains-standalone-3.94.252.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/11349/861953/aws-toolkit-jetbrains-standalone-3.94.252.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/11349/861953/aws-toolkit-jetbrains-standalone-3.94.252.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/11349/861953/aws-toolkit-jetbrains-standalone-3.94.252.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/11349/861953/aws-toolkit-jetbrains-standalone-3.94.252.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/11349/861953/aws-toolkit-jetbrains-standalone-3.94.252.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/11349/861953/aws-toolkit-jetbrains-standalone-3.94.252.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/11349/861953/aws-toolkit-jetbrains-standalone-3.94.252.zip", + "252.26199.73": "https://plugins.jetbrains.com/files/11349/861953/aws-toolkit-jetbrains-standalone-3.94.252.zip" }, "name": "aws-toolkit" }, @@ -1060,7 +1060,7 @@ "rider" ], "builds": { - "252.25557.182": "https://plugins.jetbrains.com/files/12024/834783/ReSharperPlugin.CognitiveComplexity-2025.2.0.zip" + "252.26199.154": "https://plugins.jetbrains.com/files/12024/834783/ReSharperPlugin.CognitiveComplexity-2025.2.0.zip" }, "name": "cognitivecomplexity" }, @@ -1082,15 +1082,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/12062/711097/keymap-vscode-251.23774.318.zip", "252.23892.529": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", "252.25557.178": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip", "252.26199.73": "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip" }, "name": "vscode-keymap" @@ -1113,15 +1113,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/12559/711714/keymap-eclipse-251.23774.329.zip", "252.23892.529": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", "252.25557.178": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip", "252.26199.73": "https://plugins.jetbrains.com/files/12559/796343/keymap-eclipse-252.23892.201.zip" }, "name": "eclipse-keymap" @@ -1144,15 +1144,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", "252.23892.529": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", "252.25557.178": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", "252.26199.73": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip" }, "name": "rainbow-csv" @@ -1175,15 +1175,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/13017/711726/keymap-visualStudio-251.23774.329.zip", "252.23892.529": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", "252.25557.178": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip", "252.26199.73": "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip" }, "name": "visual-studio-keymap" @@ -1206,15 +1206,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", "252.23892.529": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", "252.25557.178": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", "252.26199.73": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip" }, "name": "indent-rainbow" @@ -1237,15 +1237,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/14004/711000/protoeditor-251.23774.318.zip", "252.23892.529": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", "252.25557.178": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip", "252.26199.73": "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip" }, "name": "protocol-buffers" @@ -1268,15 +1268,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", "252.23892.529": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "252.25557.126": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "252.25557.127": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "252.25557.128": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "252.25557.131": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "252.25557.134": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "252.25557.135": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", "252.25557.178": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "252.25557.182": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", - "252.25557.189": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "252.26199.153": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "252.26199.154": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "252.26199.157": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "252.26199.158": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "252.26199.159": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "252.26199.162": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "252.26199.163": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", + "252.26199.169": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", "252.26199.73": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar" }, "name": "darcula-pitch-black" @@ -1299,15 +1299,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", "252.23892.529": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", - "252.25557.126": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", - "252.25557.127": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", - "252.25557.128": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", - "252.25557.131": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", - "252.25557.134": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", - "252.25557.135": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", "252.25557.178": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", - "252.25557.182": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", - "252.25557.189": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", + "252.26199.153": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", + "252.26199.154": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", + "252.26199.157": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", + "252.26199.158": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", + "252.26199.159": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", + "252.26199.162": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", + "252.26199.163": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", + "252.26199.169": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", "252.26199.73": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar" }, "name": "mario-progress-bar" @@ -1330,15 +1330,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", "252.23892.529": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", - "252.25557.126": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", - "252.25557.127": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", - "252.25557.128": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", - "252.25557.131": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", - "252.25557.134": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", - "252.25557.135": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", "252.25557.178": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", - "252.25557.182": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", - "252.25557.189": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", + "252.26199.153": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", + "252.26199.154": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", + "252.26199.157": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", + "252.26199.158": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", + "252.26199.159": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", + "252.26199.162": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", + "252.26199.163": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", + "252.26199.169": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar", "252.26199.73": "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar" }, "name": "which-key" @@ -1359,18 +1359,18 @@ "webstorm" ], "builds": { - "251.25410.129": "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip", - "252.23892.529": "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip", - "252.25557.178": "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip", - "252.26199.73": "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip" + "251.25410.129": "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip", + "252.23892.529": "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip", + "252.25557.178": "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip", + "252.26199.73": "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip" }, "name": "extra-toolwindow-colorful-icons" }, @@ -1390,18 +1390,18 @@ "webstorm" ], "builds": { - "251.25410.129": "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip", - "252.23892.529": "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip", - "252.25557.178": "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip", - "252.26199.73": "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip" + "251.25410.129": "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip", + "252.23892.529": "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip", + "252.25557.178": "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip", + "252.26199.73": "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip" }, "name": "github-copilot" }, @@ -1423,15 +1423,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", "252.23892.529": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", "252.25557.178": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", "252.26199.73": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip" }, "name": "netbeans-6-5-keymap" @@ -1454,15 +1454,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", "252.23892.529": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", "252.25557.178": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip", "252.26199.73": "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip" }, "name": "catppuccin-theme" @@ -1483,18 +1483,18 @@ "webstorm" ], "builds": { - "251.25410.129": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", - "252.23892.529": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", - "252.25557.178": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip", - "252.26199.73": "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip" + "251.25410.129": "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip", + "252.23892.529": "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip", + "252.25557.178": "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip", + "252.26199.73": "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip" }, "name": "codeglance-pro" }, @@ -1516,15 +1516,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", "252.23892.529": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", - "252.25557.126": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", - "252.25557.127": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", - "252.25557.128": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", - "252.25557.131": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", - "252.25557.134": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", - "252.25557.135": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", "252.25557.178": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", - "252.25557.182": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", - "252.25557.189": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", + "252.26199.153": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", + "252.26199.154": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", + "252.26199.157": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", + "252.26199.158": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", + "252.26199.159": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", + "252.26199.162": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", + "252.26199.163": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", + "252.26199.169": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar", "252.26199.73": "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar" }, "name": "gerry-themes" @@ -1547,15 +1547,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", "252.23892.529": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", "252.25557.178": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", "252.26199.73": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip" }, "name": "better-direnv" @@ -1578,15 +1578,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", "252.23892.529": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", "252.25557.178": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip", "252.26199.73": "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip" }, "name": "mermaid" @@ -1609,15 +1609,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", "252.23892.529": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", "252.25557.178": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", "252.26199.73": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip" }, "name": "ferris" @@ -1640,15 +1640,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", "252.23892.529": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", "252.25557.178": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip", "252.26199.73": "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip" }, "name": "code-complexity" @@ -1671,15 +1671,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", "252.23892.529": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", "252.25557.178": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", "252.26199.73": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip" }, "name": "developer-tools" @@ -1696,14 +1696,14 @@ "webstorm" ], "builds": { - "252.25557.126": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip" + "252.26199.153": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip" }, "name": "dev-containers" }, @@ -1714,9 +1714,9 @@ "rust-rover" ], "builds": { - "252.25557.127": "https://plugins.jetbrains.com/files/22407/842577/intellij-rust-252.25557.134.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/22407/842577/intellij-rust-252.25557.134.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/22407/842577/intellij-rust-252.25557.134.zip" + "252.26199.153": "https://plugins.jetbrains.com/files/22407/860027/intellij-rust-252.26199.159.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/22407/860027/intellij-rust-252.26199.159.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/22407/860027/intellij-rust-252.26199.159.zip" }, "name": "rust" }, @@ -1736,18 +1736,18 @@ "webstorm" ], "builds": { - "251.25410.129": "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip", - "252.23892.529": "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip", - "252.25557.178": "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip", - "252.26199.73": "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip" + "251.25410.129": "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip", + "252.23892.529": "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip", + "252.25557.178": "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip", + "252.26199.73": "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip" }, "name": "continue" }, @@ -1769,15 +1769,15 @@ "builds": { "251.25410.129": null, "252.23892.529": "https://plugins.jetbrains.com/files/22857/826717/vcs-gitlab-IU-252.23892.515-IU.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/22857/829212/vcs-gitlab-IU-252.25557.35-IU.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/22857/829212/vcs-gitlab-IU-252.25557.35-IU.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/22857/829212/vcs-gitlab-IU-252.25557.35-IU.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/22857/829212/vcs-gitlab-IU-252.25557.35-IU.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/22857/829212/vcs-gitlab-IU-252.25557.35-IU.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/22857/829212/vcs-gitlab-IU-252.25557.35-IU.zip", "252.25557.178": "https://plugins.jetbrains.com/files/22857/829212/vcs-gitlab-IU-252.25557.35-IU.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/22857/829212/vcs-gitlab-IU-252.25557.35-IU.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/22857/829212/vcs-gitlab-IU-252.25557.35-IU.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/22857/856960/vcs-gitlab-IU-252.26199.97-IU.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/22857/856960/vcs-gitlab-IU-252.26199.97-IU.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/22857/856960/vcs-gitlab-IU-252.26199.97-IU.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/22857/856960/vcs-gitlab-IU-252.26199.97-IU.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/22857/856960/vcs-gitlab-IU-252.26199.97-IU.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/22857/856960/vcs-gitlab-IU-252.26199.97-IU.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/22857/856960/vcs-gitlab-IU-252.26199.97-IU.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/22857/856960/vcs-gitlab-IU-252.26199.97-IU.zip", "252.26199.73": "https://plugins.jetbrains.com/files/22857/856960/vcs-gitlab-IU-252.26199.97-IU.zip" }, "name": "gitlab" @@ -1800,15 +1800,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", "252.23892.529": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", "252.25557.178": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip", "252.26199.73": "https://plugins.jetbrains.com/files/23029/764814/Catppuccin_Icons-1.12.0.zip" }, "name": "catppuccin-icons" @@ -1831,15 +1831,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", "252.23892.529": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", "252.25557.178": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", "252.26199.73": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip" }, "name": "mermaid-chart" @@ -1862,15 +1862,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/23806/784029/Oxocarbon-1.4.6.zip", "252.23892.529": null, - "252.25557.126": null, - "252.25557.127": null, - "252.25557.128": null, - "252.25557.131": null, - "252.25557.134": null, - "252.25557.135": null, "252.25557.178": null, - "252.25557.182": null, - "252.25557.189": null, + "252.26199.153": null, + "252.26199.154": null, + "252.26199.157": null, + "252.26199.158": null, + "252.26199.159": null, + "252.26199.162": null, + "252.26199.163": null, + "252.26199.169": null, "252.26199.73": null }, "name": "oxocarbon" @@ -1893,15 +1893,15 @@ "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", "252.23892.529": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", "252.25557.178": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip", "252.26199.73": "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip" }, "name": "extra-ide-tweaks" @@ -1922,18 +1922,18 @@ "webstorm" ], "builds": { - "251.25410.129": "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip", - "252.23892.529": "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip", - "252.25557.126": "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip", - "252.25557.127": "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip", - "252.25557.128": "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip", - "252.25557.131": "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip", - "252.25557.134": "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip", - "252.25557.135": "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip", - "252.25557.178": "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip", - "252.25557.182": "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip", - "252.25557.189": "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip", - "252.26199.73": "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip" + "251.25410.129": "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip", + "252.23892.529": "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip", + "252.25557.178": "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip", + "252.26199.153": "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip", + "252.26199.154": "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip", + "252.26199.157": "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip", + "252.26199.158": "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip", + "252.26199.159": "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip", + "252.26199.162": "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip", + "252.26199.163": "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip", + "252.26199.169": "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip", + "252.26199.73": "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip" }, "name": "extra-tools-pack" }, @@ -1950,14 +1950,14 @@ "webstorm" ], "builds": { - "252.25557.126": null, - "252.25557.127": null, - "252.25557.128": null, - "252.25557.131": null, - "252.25557.134": null, - "252.25557.135": null, - "252.25557.182": null, - "252.25557.189": null, + "252.26199.153": null, + "252.26199.154": null, + "252.26199.157": null, + "252.26199.158": null, + "252.26199.159": null, + "252.26199.162": null, + "252.26199.163": null, + "252.26199.169": null, "252.26199.73": null }, "name": "nix-lsp" @@ -1978,15 +1978,15 @@ ], "builds": { "251.25410.129": "https://plugins.jetbrains.com/files/26084/804883/markdtask-2025.2.zip", - "252.25557.126": null, - "252.25557.127": null, - "252.25557.128": null, - "252.25557.131": null, - "252.25557.134": null, - "252.25557.135": null, "252.25557.178": null, - "252.25557.182": null, - "252.25557.189": null, + "252.26199.153": null, + "252.26199.154": null, + "252.26199.157": null, + "252.26199.158": null, + "252.26199.159": null, + "252.26199.162": null, + "252.26199.163": null, + "252.26199.169": null, "252.26199.73": null }, "name": "markdtask" @@ -1999,9 +1999,9 @@ "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip": "sha256-GO0bXJsHx9O1A6M9NUCv9m4JwKHs5plwSssgx+InNqE=", "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip": "sha256-zX1nEdq84wwQvGhV664V5bNBPVTI4zWo306JtjXcGkE=", "https://plugins.jetbrains.com/files/10581/796391/go-template-252.23892.201.zip": "sha256-XKv4jEKOk2O++VdHycGoLgICsusULbWRlQ0J5p+KgAE=", - "https://plugins.jetbrains.com/files/11058/839325/Extra_Icons-2025.1.13.zip": "sha256-OVd8ocI8vHZI5/7KPL8aytKlLnoSJrFWy+DcLd27clk=", - "https://plugins.jetbrains.com/files/11349/854827/aws-toolkit-jetbrains-standalone-3.93.252.zip": "sha256-EPwsdzocSJgbpP5Hvaxm2yuW80o2vl0rK9vX/LBW5+k=", - "https://plugins.jetbrains.com/files/11349/854831/aws-toolkit-jetbrains-standalone-3.93.251.zip": "sha256-75CgNflGeKpy/qnw97OGPH2US+e3+etOkM+wT3VHCf4=", + "https://plugins.jetbrains.com/files/11058/857270/Extra_Icons-2025.1.14.zip": "sha256-iHyO6ZnEaP4rZMywGXZo6+PPMv+2KOjeWRLpdM8qAsU=", + "https://plugins.jetbrains.com/files/11349/861953/aws-toolkit-jetbrains-standalone-3.94.252.zip": "sha256-RABuHyvvbw1rGzvQpOk4tEpilVghQE75VzLIvRmFNfw=", + "https://plugins.jetbrains.com/files/11349/861955/aws-toolkit-jetbrains-standalone-3.94.251.zip": "sha256-y+AdD8SPKUpB1FU5bWknSkW+q1rhQR5j56pHP5s4NXE=", "https://plugins.jetbrains.com/files/12024/834783/ReSharperPlugin.CognitiveComplexity-2025.2.0.zip": "sha256-XDBmYpBpLhuLGTB8aP0csK1NBEncmMUPKWoPJx2AVao=", "https://plugins.jetbrains.com/files/12062/711097/keymap-vscode-251.23774.318.zip": "sha256-obbLL8n6gK8oFw8NnJbdAylPHfTv4GheBDnVFOUpwL0=", "https://plugins.jetbrains.com/files/12062/796429/keymap-vscode-252.23892.201.zip": "sha256-V3Vk6UYLUSiSmypD+g0DCX1sPw3/wZqvLxFhbkTqY34=", @@ -2012,18 +2012,18 @@ "https://plugins.jetbrains.com/files/13017/796396/keymap-visualStudio-252.23892.201.zip": "sha256-5qDjLRMNwn+1QVN8cKUYlakQ8aBRiTyGuA7se3l9BI0=", "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip": "sha256-eKwDE+PMtYhrGbDDZPS5cimssH+1xV4GF6RXXg/3urU=", "https://plugins.jetbrains.com/files/1347/770332/scala-intellij-bin-2025.1.25.zip": "sha256-h9GNGjqTc+h+x/0TRilKmqGoPsxhPmXIKoGC/s4/PKg=", - "https://plugins.jetbrains.com/files/1347/842761/scala-intellij-bin-2025.2.29.zip": "sha256-JZv0oxr5aHL1pyGSM5uukFSdPo0PTyyYlPRuu9V7UoI=", + "https://plugins.jetbrains.com/files/1347/861692/scala-intellij-bin-2025.2.30.zip": "sha256-cfHmeInFoymKaqBNqhquPN1pde+hRpk61P9mibAuC+s=", "https://plugins.jetbrains.com/files/14004/711000/protoeditor-251.23774.318.zip": "sha256-ZYn365EY8+VP1TKM4wBotMj1hYbSSr4J1K5oIZlE2SE=", "https://plugins.jetbrains.com/files/14004/796340/protoeditor-252.23892.201.zip": "sha256-WK9ukN6g2tCmeljFXwv3F+xFI/VZKlIeFs8DXqPcIKA=", "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar": "sha256-eXInfAqY3yEZRXCAuv3KGldM1pNKEioNwPB0rIGgJFw=", "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar": "sha256-mB09zvUg1hLXl9lgW1NEU+DyVel1utZv6s+mFykckYY=", "https://plugins.jetbrains.com/files/15976/851109/IDEA_Which-Key-0.11.2.jar": "sha256-Qujmu2j8nrgkbsRc+ei/musrNAI1UPC3vhwIjv53zxY=", "https://plugins.jetbrains.com/files/164/835262/IdeaVIM-2.27.2.zip": "sha256-upipz12aBnfW5I+IpO7FFmrSyQNTqNWxYn4Bghu4LV4=", - "https://plugins.jetbrains.com/files/16604/839318/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.13.zip": "sha256-Tlw/p4V8W9bZhQk/dVDtItCegjqDlf3QPwyyLotiJC8=", - "https://plugins.jetbrains.com/files/17718/852135/github-copilot-intellij-1.5.56-243.zip": "sha256-VDxGLGyzhP/TXSKzYJafk37fq75KIaOyvK4cGPIrn/g=", + "https://plugins.jetbrains.com/files/16604/857267/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.14.zip": "sha256-g07e6dfHkNbdiG54cqGBChxNsEHQ/5kMBhLlGkK6di4=", + "https://plugins.jetbrains.com/files/17718/859668/github-copilot-intellij-1.5.57-243.zip": "sha256-UN+4+QhGHloiSuaSf5KwTCaSorYBLb0h2OusmOjd64k=", "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip": "sha256-KrzZTKZMQqoEMw+vDUv2jjs0EX0leaPBkU8H/ecq/oI=", "https://plugins.jetbrains.com/files/18682/852457/Catppuccin_Theme-3.5.1.zip": "sha256-dxZAIsXfdwsdTx+bp/1aaahw+D4HXOSEpyY7JWAhLys=", - "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip": "sha256-/1lyQq7JANhcKmIaaBHZ8ZCR4p23sLjLTTq9/68Fz+c=", + "https://plugins.jetbrains.com/files/18824/859305/CodeGlancePro-1.9.9-signed.zip": "sha256-uAHkTDvFUEzdasYgyB0yn8yVMEHvB8dn+Z5jSoB5PQo=", "https://plugins.jetbrains.com/files/18922/856642/GerryThemes.jar": "sha256-0QVCCkrgDWEX8tAkfPfiYRpaROd3ELGZn5TBGa3lJXQ=", "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip": "sha256-hoFfIid7lClHDiT+ZH3H+tFSvWYb1tSRZH1iif+kWrM=", "https://plugins.jetbrains.com/files/20146/811306/Mermaid-0.0.26_IJ.252.zip": "sha256-QTh77pyi4lh7V0DGPFx9kERjFCop219d76wTDwD0SYY=", @@ -2032,8 +2032,8 @@ "https://plugins.jetbrains.com/files/21667/818221/code-complexity-plugin-1.6.3.zip": "sha256-8agNBVenqaV9DlvRmFP7ul3IZfj9Dij8v/h8QMUb72E=", "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip": "sha256-lOPUSxlbgagD0SuXTw+fEdwTxxfUHP1Kl6L+u/oa4fs=", "https://plugins.jetbrains.com/files/21962/828479/clouds-docker-gateway-252.25557.34.zip": "sha256-uwonawWIgXi9OXZlQaZl/GDt/iHqsyAKV7ifCgcMqWU=", - "https://plugins.jetbrains.com/files/22407/842577/intellij-rust-252.25557.134.zip": "sha256-o5Gyodlkxzcu20dvp6y0ZHbAjp1bRhHlfGvAakf02GI=", - "https://plugins.jetbrains.com/files/22707/854127/continue-intellij-extension-1.0.42.zip": "sha256-Nio4TAdeKmalPxbvJ3fEKd9uKgVDfQf+mMZj0CWPzbo=", + "https://plugins.jetbrains.com/files/22407/860027/intellij-rust-252.26199.159.zip": "sha256-/7/PFoHjJpuuqvtW9P8L/cKtiA1o5gRCCROmkGW+dl4=", + "https://plugins.jetbrains.com/files/22707/857674/continue-intellij-extension-1.0.44.zip": "sha256-EvCNPNYeEtQRmNEbLizH6MEIqPNvTwsk2qJm873s8oo=", "https://plugins.jetbrains.com/files/22857/826717/vcs-gitlab-IU-252.23892.515-IU.zip": "sha256-1fkImbCktws9WcnJSwnMiZ7ULc3hKj9TiFXuNDf+L/U=", "https://plugins.jetbrains.com/files/22857/829212/vcs-gitlab-IU-252.25557.35-IU.zip": "sha256-7fLyaf7JNH3FwKSH+HsQcGNszzzVMUy2qsFmcWgW0/g=", "https://plugins.jetbrains.com/files/22857/856960/vcs-gitlab-IU-252.26199.97-IU.zip": "sha256-dJM8j5aLWD6elv46HtXUhPvYWTdAE77m/jwRqztIwDk=", @@ -2041,17 +2041,16 @@ "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip": "sha256-ssaSY1I6FopLBgVKHUyjBrqzxHLSuI/swtDfQWJ7gxU=", "https://plugins.jetbrains.com/files/23806/784029/Oxocarbon-1.4.6.zip": "sha256-+cLKIu8abGXZqJ3GutQsoQQg3s0wkmk5qKosW0O8RII=", "https://plugins.jetbrains.com/files/23927/839297/Extra_IDE_Tweaks_Subscription-2025.1.12.zip": "sha256-EtPWFr7stHfRSVowuH3BN3r2oBx8mut2T+6Ij8LEgmE=", - "https://plugins.jetbrains.com/files/24559/839332/Extra_Tools_Pack-2025.1.15.zip": "sha256-v5DnIBqar8aqWNe7wpSVWtsL8ZZq/S80hR9mqc3dOGk=", + "https://plugins.jetbrains.com/files/24559/857271/Extra_Tools_Pack-2025.1.16.zip": "sha256-l/PChea8RmVLlD3COrikZ3xTq2iwztbCsJkzKIvUcaQ=", "https://plugins.jetbrains.com/files/26084/804883/markdtask-2025.2.zip": "sha256-2Vrm9k4ZqqpWl/EgDrAFNTpUeBhDSYt48JhAWlSWY1A=", - "https://plugins.jetbrains.com/files/631/841433/python-252.25557.131.zip": "sha256-zQO42xwWPeO0vYNlr36OZI8f1wJNQZ3LTUIKi9FagFQ=", + "https://plugins.jetbrains.com/files/631/861064/python-252.26199.169.zip": "sha256-SEX/CnP3d3itW9gzGx3QA3WyGRn2pRSDBjSbzBGOGM8=", "https://plugins.jetbrains.com/files/6884/711128/handlebars-251.23774.318.zip": "sha256-34s7pOsqMaGoVYhCuAZtylNwplQOtNQJUppepsl4F4Q=", "https://plugins.jetbrains.com/files/6884/796395/handlebars-252.23892.201.zip": "sha256-iWKLgk+eWhUmv/lH9+B2HI97d++EYvLwGgtRsJf4aSE=", "https://plugins.jetbrains.com/files/6954/809234/Kotlin-252.23892.360-IJ.zip": "sha256-pQGVguF7zzzasLm2tlmtvqiPtdFN4Q5NKRwYx1r62fM=", "https://plugins.jetbrains.com/files/6954/841446/Kotlin-252.25557.131-IJ.zip": "sha256-ogFUJ+BMATp7fM2vDjWkoGhLCRw9TN+ifopFlpP+q4Q=", - "https://plugins.jetbrains.com/files/6954/849100/Kotlin-252.26199.7-IJ.zip": "sha256-9q9abiR/R1EtGAbHgVUcHEWYqz5elETQ7Ydx0HXliwI=", - "https://plugins.jetbrains.com/files/6981/818238/ini-252.23892.449.zip": "sha256-H+ve44o4oKp14Mww4cFa6aCO7ipN/0M7Re5Lg8PNfJc=", + "https://plugins.jetbrains.com/files/6954/861041/Kotlin-252.26199.169-IJ.zip": "sha256-Fk/Df5MthwTWnhxv/u8/n2ITMLzZXKogj0tRRyPi5Zw=", "https://plugins.jetbrains.com/files/6981/846966/ini-252.25557.135.zip": "sha256-9rrbHi+3fe/dlTkGGSnZ/fKh44vsLDOEbFCx5rPokfQ=", - "https://plugins.jetbrains.com/files/6981/854478/ini-252.26199.84.zip": "sha256-ASDy0rNfexMAdb+fQmBjulww4fmEnXPFd/L83gfBXYY=", + "https://plugins.jetbrains.com/files/6981/861757/ini-252.26199.163.zip": "sha256-l+ETZNsDuQf+Cjh2vYi6/xi3th2QZeR+UflOtRRcKWI=", "https://plugins.jetbrains.com/files/7086/738977/AceJump.zip": "sha256-BW47ZEUINVnhV0RZ1np7Dkf3lfyrtKoZ9ej/SVct2Xs=", "https://plugins.jetbrains.com/files/7125/819837/GrepConsole-13.3.0-IJ2023.3.zip": "sha256-KcRoHqvCcC6qRz58DHkQ6AFqnpyqPhETekuMWBQYYw8=", "https://plugins.jetbrains.com/files/7177/711086/fileWatcher-251.23774.318.zip": "sha256-jNHP/vaCaolmvNUQRGmIgSR1ykjDtKqyJ69UIn5cz70=", @@ -2062,19 +2061,18 @@ "https://plugins.jetbrains.com/files/7219/770179/Symfony_Plugin-2025.1.280.zip": "sha256-SgldikXjVx6hUw3LqcN8/NxLLBfnr/LUc/SrIIACl7k=", "https://plugins.jetbrains.com/files/7320/855846/PHP_Annotations-12.0.1.zip": "sha256-FQmHb4oo9TgXiJ4b7EEEELagOx31C9iQtsTRoqxCnO4=", "https://plugins.jetbrains.com/files/7322/841474/python-ce-252.25557.131.zip": "sha256-OA3GRyoEzIqsIqKCwIHcMss8SSb5u/YqNUo9kEjszsA=", - "https://plugins.jetbrains.com/files/7322/853923/python-ce-252.26199.74.zip": "sha256-8PKgbLHWRnT2vdeAXNnQxHpADPlYBESsi9PKlrDj/h8=", + "https://plugins.jetbrains.com/files/7322/861072/python-ce-252.26199.169.zip": "sha256-fzoj+iBfEEE6gjlGNtqfqpYXqwaEr2LFECNOglMyz5Y=", "https://plugins.jetbrains.com/files/7391/807449/asciidoctor-intellij-plugin-0.44.8.zip": "sha256-6VpRIidsf8iWJeR3OarwwgS1NDXj9j6bLnxU/YBskeY=", "https://plugins.jetbrains.com/files/7425/760442/WakaTime.jar": "sha256-DobKZKokueqq0z75d2Fo3BD8mWX9+LpGdT9C7Eu2fHc=", "https://plugins.jetbrains.com/files/7499/840762/gittoolbox-600.1.10_243-signed.zip": "sha256-AEkeSl3yUelw5jOEBXCPPeWZU/Q2cE9ekUSXN409iCw=", - "https://plugins.jetbrains.com/files/7724/826726/clouds-docker-impl-252.23892.515.zip": "sha256-D21m3wQENj79cODe7vX2UuBqta3Tv8ctSf5Rk1VkX84=", "https://plugins.jetbrains.com/files/7724/841415/clouds-docker-impl-252.25557.130.zip": "sha256-u5BDqZlqkx9cEmDuri5+DN6E40YyF9G0f0gLehhtZ2s=", - "https://plugins.jetbrains.com/files/7724/856964/clouds-docker-impl-252.26199.97.zip": "sha256-Zre5bcJVFuNNPJ3XVeNtVA2sHxX/bbUcCy+E6NVYvso=", + "https://plugins.jetbrains.com/files/7724/861752/clouds-docker-impl-252.26199.163.zip": "sha256-izEzIQxn23ZV2ZClMmd6g9H0sd+jy+OoaISvX94H7hQ=", "https://plugins.jetbrains.com/files/8097/711188/graphql-251.23774.318.zip": "sha256-O+gSW36MwqQqUiZBQl8J4NFNK+jFowtT9k1ykhSraxM=", "https://plugins.jetbrains.com/files/8097/796399/graphql-252.23892.201.zip": "sha256-eLh0p5vDNG7fUV7pqbIbkL30dpPj19NE9JbwcDwxZXs=", "https://plugins.jetbrains.com/files/8097/827445/graphql-252.25557.23.zip": "sha256-wN3+7++f6i0MvEmOTiWZgAW1QzM5HiD7jSAMS8jWC5s=", "https://plugins.jetbrains.com/files/8195/819801/toml-252.23892.464.zip": "sha256-CXbS+/k9a4YqYPRxd5OWGxtal2+5ECshavcOSrYqca0=", "https://plugins.jetbrains.com/files/8195/846963/toml-252.25557.135.zip": "sha256-vICiXs86VP1gyMy594bCOcb5jZ+Ptw1Ui7r6dQwIveQ=", - "https://plugins.jetbrains.com/files/8195/854361/toml-252.26199.83.zip": "sha256-IRe68PZUqpl7ZsQHLWOSRvLRFHu7YJj6diXBCnQ16oA=", + "https://plugins.jetbrains.com/files/8195/861057/toml-252.26199.169.zip": "sha256-8miuDbuQkeB4Nc9DsI+NiGbZ9PdEFrFMfEG9sB4FJEM=", "https://plugins.jetbrains.com/files/8327/809293/Minecraft_Development-2025.1-1.8.6.zip": "sha256-mePVZa+63bheH85ylkbX9oOX1Nq/IYLAGHHseOJx520=", "https://plugins.jetbrains.com/files/8327/809294/Minecraft_Development-2025.2-1.8.6.zip": "sha256-NOuzQ+CL+Z8n5gwMBaberLyMvS5KNmXKwZ+j88+SFqU=", "https://plugins.jetbrains.com/files/8554/826552/featuresTrainer-252.23892.514.zip": "sha256-AQLuTcRERFq2ZfzOqUGMte/pLe7/3g6G+9UqNMuUYiY=", @@ -2086,7 +2084,7 @@ "https://plugins.jetbrains.com/files/9164/827451/gherkin-252.25557.23.zip": "sha256-y66kYTYD+R9Sert2JHWGwFFIgc5UJTssZrjgvzOjljk=", "https://plugins.jetbrains.com/files/9525/711041/dotenv-251.23774.318.zip": "sha256-0c/2qbuu+M6z0gvpme+Mkv23JlQKNTUU+9GL9mh2IFw=", "https://plugins.jetbrains.com/files/9525/796325/dotenv-252.23892.201.zip": "sha256-N0DNEtF3FDcRirfjfSCCVUbDIA4SB35F/9XY1tPXXmg=", - "https://plugins.jetbrains.com/files/9568/834217/go-plugin-252.25557.77.zip": "sha256-7E3YjvkVWVQRBya522baF9/WsFeAlhIwvtUXCENvkvg=", + "https://plugins.jetbrains.com/files/9568/861058/go-plugin-252.26199.169.zip": "sha256-tt/vvW8EVNP9n9aTGtn+9pmxwz450p3a0Rclkg65aKw=", "https://plugins.jetbrains.com/files/9707/702581/ANSI_Highlighter_Premium-25.1.5.jar": "sha256-XYCD4kOHDeIKhti0T175xhBHR8uscaFN4c9CNlUaCDs=", "https://plugins.jetbrains.com/files/9707/767822/ANSI_Highlighter_Premium-25.2.1.jar": "sha256-mp1k2BdksxbGH4zUp/7DnjcGi5OXJ7UekCfX6dWZOtU=", "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip": "sha256-Mzmmq0RzMKZeKfBSo7FHvzeEtPGIrwqEDLAONQEsR1M=", From 0f3602a90fd25abc35b00437e8a8876e58431e86 Mon Sep 17 00:00:00 2001 From: Morgan Helton Date: Tue, 2 Sep 2025 02:32:06 +0800 Subject: [PATCH 056/146] awscli2: 2.28.1 -> 2.30.6 --- pkgs/by-name/aw/awscli2/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/aw/awscli2/package.nix b/pkgs/by-name/aw/awscli2/package.nix index ebdc30b799a8..10f37af9e2bf 100644 --- a/pkgs/by-name/aw/awscli2/package.nix +++ b/pkgs/by-name/aw/awscli2/package.nix @@ -66,14 +66,14 @@ let in py.pkgs.buildPythonApplication rec { pname = "awscli2"; - version = "2.28.1"; # N.B: if you change this, check if overrides are still up-to-date + version = "2.30.6"; # N.B: if you change this, check if overrides are still up-to-date pyproject = true; src = fetchFromGitHub { owner = "aws"; repo = "aws-cli"; tag = version; - hash = "sha256-TpyjYnLTBPU83g6/h+BrX4hd4dUbZUvDyJ6m/3v38+A="; + hash = "sha256-enCI/yGnxf4/VYID/Di0ZhSiGp0ldgIKYmTnklGpjbc="; }; postPatch = '' From c14fae8ce3cc61d1286f8f4f6191d8068d18bc2c Mon Sep 17 00:00:00 2001 From: andre4ik3 Date: Fri, 19 Sep 2025 05:06:11 +0000 Subject: [PATCH 057/146] desktoppr: init at 0.5 --- pkgs/by-name/de/desktoppr/package.nix | 62 +++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 pkgs/by-name/de/desktoppr/package.nix diff --git a/pkgs/by-name/de/desktoppr/package.nix b/pkgs/by-name/de/desktoppr/package.nix new file mode 100644 index 000000000000..408141c2e664 --- /dev/null +++ b/pkgs/by-name/de/desktoppr/package.nix @@ -0,0 +1,62 @@ +{ + stdenv, + fetchFromGitHub, + fetchpatch, + swift, + swiftpm, + versionCheckHook, + lib, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "desktoppr"; + version = "0.5"; + + src = fetchFromGitHub { + owner = "scriptingosx"; + repo = "desktoppr"; + tag = "v${finalAttrs.version}"; + hash = "sha256-eEVcYSa1ntyX/Wdj4HUyXyXIrK+T11Thg23ntNoIgH0="; + }; + + patches = [ + # Update version in the code from 0.5b (beta) to 0.5 (release) + (fetchpatch { + url = "https://github.com/scriptingosx/desktoppr/commit/419363c28c99eb0f391bf231813af5e507c35573.patch"; + hash = "sha256-7A3hsXO0hZYlZMrX1U0zC2vy59M9H5OZebEbPY8E9fA="; + includes = [ "desktoppr/main.swift" ]; + }) + # Adds support for building with swiftpm + (fetchpatch { + url = "https://github.com/scriptingosx/desktoppr/commit/eaf08da7cdd5fe9aa656516b3a5a0a9ac9969e72.patch"; + hash = "sha256-8sAUNnTGqQ2UHIFUPwTP0dd3QKgI0HfOrG0HzcIStMM="; + }) + ]; + + nativeBuildInputs = [ + swift + swiftpm + ]; + + installPhase = '' + runHook preInstall + install -Dm755 "$(swiftpmBinPath)/desktoppr" -t "$out/bin" + runHook postInstall + ''; + + nativeInstallCheckInputs = [ + versionCheckHook + ]; + + versionCheckProgramArg = "version"; + doInstallCheck = true; + + meta = { + description = "Simple command line tool to read and set the desktop picture/wallpaper"; + homepage = "https://github.com/scriptingosx/desktoppr"; + platforms = lib.platforms.darwin; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ andre4ik3 ]; + mainProgram = "desktoppr"; + }; +}) From 2d1184be252f4a636b36283fbf6b52b9e3c66c25 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 20 Sep 2025 22:33:50 +0000 Subject: [PATCH 058/146] mozillavpn: 2.30.0 -> 2.31.0 --- pkgs/by-name/mo/mozillavpn/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/mo/mozillavpn/package.nix b/pkgs/by-name/mo/mozillavpn/package.nix index 9b8bf69fa8a2..088ece466bd4 100644 --- a/pkgs/by-name/mo/mozillavpn/package.nix +++ b/pkgs/by-name/mo/mozillavpn/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "mozillavpn"; - version = "2.30.0"; + version = "2.31.0"; src = fetchFromGitHub { owner = "mozilla-mobile"; repo = "mozilla-vpn-client"; tag = "v${finalAttrs.version}"; fetchSubmodules = true; - hash = "sha256-dwVgwEs1prEXOYuYlO1m5lJD5AKolW0Stj2HOZC+Y+o="; + hash = "sha256-++j3BMTkg5TG09hmsUGDcKbkvTGrd9u0FaRebbOsI3s="; }; patches = [ ]; @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { cargoDeps = rustPlatform.fetchCargoVendor { inherit (finalAttrs) src patches; - hash = "sha256-dap2t7nINWaTTahiPUFVkgAlkDuVt0w0mz13ycqwLcI="; + hash = "sha256-bJTOTHlCYSrlhy6GewpK8qhBGRH49xNkFqOXZug5lNA="; }; buildInputs = [ From c92bcc41f1d3876c65cd1a2036a62ae712de9d27 Mon Sep 17 00:00:00 2001 From: mmkaram Date: Sun, 21 Sep 2025 03:51:54 +0300 Subject: [PATCH 059/146] prisma-language-server: remove buildNpmPackage boilerplate, remove unused build inputs --- pkgs/by-name/pr/prisma-language-server/package.nix | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pkgs/by-name/pr/prisma-language-server/package.nix b/pkgs/by-name/pr/prisma-language-server/package.nix index b7cb50fadb81..e49d7d159315 100644 --- a/pkgs/by-name/pr/prisma-language-server/package.nix +++ b/pkgs/by-name/pr/prisma-language-server/package.nix @@ -2,8 +2,6 @@ lib, buildNpmPackage, fetchFromGitHub, - pkg-config, - libsecret, }: buildNpmPackage (finalAttrs: { @@ -18,16 +16,8 @@ buildNpmPackage (finalAttrs: { }; sourceRoot = "${finalAttrs.src.name}/packages/language-server"; - - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ libsecret ]; - npmDepsHash = "sha256-UAGz/qCYf+jsgCWqvR52mW6Ze3WWP9EHuE4k9wCbnH0="; - npmPackFlags = [ "--ignore-scripts" ]; - - NODE_OPTIONS = "--openssl-legacy-provider"; - meta = { description = "Language server for Prisma"; homepage = "https://github.com/prisma/language-tools"; From 18963cf58dd29ca58a61e95bdd7555dd594ba9ee Mon Sep 17 00:00:00 2001 From: thattemperature <2719023332@qq.com> Date: Sun, 21 Sep 2025 21:53:33 +0800 Subject: [PATCH 060/146] python3Package.dashscope: init at 1.24.4 --- .../python-modules/dashscope/default.nix | 73 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 75 insertions(+) create mode 100644 pkgs/development/python-modules/dashscope/default.nix diff --git a/pkgs/development/python-modules/dashscope/default.nix b/pkgs/development/python-modules/dashscope/default.nix new file mode 100644 index 000000000000..e5b7c8cf5661 --- /dev/null +++ b/pkgs/development/python-modules/dashscope/default.nix @@ -0,0 +1,73 @@ +{ + # Basic + lib, + buildPythonPackage, + fetchFromGitHub, + # Build system + setuptools, + # Dependencies + aiohttp, + requests, + websocket-client, + cryptography, + certifi, + # Test + pytestCheckHook, + tiktoken, +}: + +buildPythonPackage rec { + pname = "dashscope"; + version = "1.24.4"; + pyproject = true; + + src = fetchFromGitHub { + owner = "dashscope"; + repo = "dashscope-sdk-python"; + tag = "v${version}"; + hash = "sha256-PX7RoL4EGMU62G64+T6tjgDgO+SAOZNysl199kvAWME="; + }; + + build-system = [ setuptools ]; + + dependencies = [ + aiohttp + requests + websocket-client + cryptography + certifi + ]; + + # Specify the version explicitly + postPatch = '' + substituteInPlace setup.py \ + --replace-fail "version=get_version()," "version='${version}'," + ''; + + nativeCheckInputs = [ + pytestCheckHook + tiktoken + ]; + + pythonImportsCheck = [ "dashscope" ]; + + disabledTests = [ + # Needs network access and/or API key + "TestAsyncImageSynthesisRequest" + "TestAsyncRequest" + "TestAsyncVideoSynthesisRequest" + "TestEncryption" + "TestSpeechRecognition" + "TestSpeechTranscribe" + "TestSynthesis" + "TestWebSocketAsyncRequest" + "TestWebSocketSyncRequest" + ]; + + meta = { + description = "Python SDK for dashscope"; + homepage = "https://github.com/dashscope/dashscope-sdk-python"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thattemperature ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 59d1335b3327..40b35a423918 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3323,6 +3323,8 @@ self: super: with self; { dashing = callPackage ../development/python-modules/dashing { }; + dashscope = callPackage ../development/python-modules/dashscope { }; + dask = callPackage ../development/python-modules/dask { }; dask-awkward = callPackage ../development/python-modules/dask-awkward { }; From 113e36815e7ece2efe7115469ea168018feda2db Mon Sep 17 00:00:00 2001 From: averyv Date: Sat, 26 Jul 2025 20:48:53 +0100 Subject: [PATCH 061/146] pihole-ftl: Fix files.macvendor setting Which accidentally duplicates the gravity.db file path. --- nixos/modules/services/networking/pihole-ftl.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/pihole-ftl.nix b/nixos/modules/services/networking/pihole-ftl.nix index f1abffc9ea22..afc8ad4507f7 100644 --- a/nixos/modules/services/networking/pihole-ftl.nix +++ b/nixos/modules/services/networking/pihole-ftl.nix @@ -260,7 +260,7 @@ in files = { database = "${cfg.stateDirectory}/pihole-FTL.db"; gravity = "${cfg.stateDirectory}/gravity.db"; - macvendor = "${cfg.stateDirectory}/gravity.db"; + macvendor = "${cfg.stateDirectory}/macvendor.db"; log.ftl = "${cfg.logDirectory}/FTL.log"; log.dnsmasq = "${cfg.logDirectory}/pihole.log"; log.webserver = "${cfg.logDirectory}/webserver.log"; From 155cdfb0f9f63f508db92904464d03bb7ca5eabc Mon Sep 17 00:00:00 2001 From: averyv Date: Sat, 26 Jul 2025 21:18:49 +0100 Subject: [PATCH 062/146] pihole-ftl: Download macvendor.db in setup service As done in the update script https://github.com/pi-hole/pi-hole/blob/cef7fd4b02c9ae4314e7478c0d542379bfce7f65/automated install/basic-install.sh#L1791-L1792 --- .../services/networking/pihole-ftl-setup-script.nix | 5 ++++- nixos/modules/services/networking/pihole-ftl.nix | 8 ++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/pihole-ftl-setup-script.nix b/nixos/modules/services/networking/pihole-ftl-setup-script.nix index 96c0c224aeb1..692d9fc2b050 100644 --- a/nixos/modules/services/networking/pihole-ftl-setup-script.nix +++ b/nixos/modules/services/networking/pihole-ftl-setup-script.nix @@ -15,6 +15,7 @@ let comment = list.description; }; payloads = map makePayload cfg.lists; + macvendorURL = lib.strings.escapeShellArg cfg.macvendorURL; in '' # Can't use -u (unset) because api.sh uses API_URL before it is set @@ -22,8 +23,10 @@ in pihole="${lib.getExe pihole}" jq="${lib.getExe pkgs.jq}" + ${lib.getExe pkgs.curl} --retry 3 --retry-delay 5 "${macvendorURL}" -o "${cfg.settings.files.macvendor}" || echo "Failed to download MAC database from ${macvendorURL}" + # If the database doesn't exist, it needs to be created with gravity.sh - if [ ! -f '${cfg.stateDirectory}'/gravity.db ]; then + if [ ! -f '${cfg.settings.files.gravity}' ]; then $pihole -g # Send SIGRTMIN to FTL, which makes it reload the database, opening the newly created one ${lib.getExe' pkgs.procps "kill"} -s SIGRTMIN $(systemctl show --property MainPID --value ${config.systemd.services.pihole-ftl.name}) diff --git a/nixos/modules/services/networking/pihole-ftl.nix b/nixos/modules/services/networking/pihole-ftl.nix index afc8ad4507f7..25c3634d145e 100644 --- a/nixos/modules/services/networking/pihole-ftl.nix +++ b/nixos/modules/services/networking/pihole-ftl.nix @@ -118,6 +118,14 @@ in ''; }; + macvendorURL = mkOption { + type = types.str; + default = "https://ftl.pi-hole.net/macvendor.db"; + description = '' + URL from which to download the macvendor.db file. + ''; + }; + pihole = mkOption { type = types.package; default = piholeScript; From 8b2f0577b73e222b8d131f66eb9816b99cfaa9cf Mon Sep 17 00:00:00 2001 From: averyv Date: Sun, 21 Sep 2025 17:27:01 +0100 Subject: [PATCH 063/146] pihole: Link packages to NixOS tests --- pkgs/by-name/pi/pihole-ftl/package.nix | 3 ++- pkgs/by-name/pi/pihole-web/package.nix | 3 +++ pkgs/by-name/pi/pihole/package.nix | 3 +++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/pi/pihole-ftl/package.nix b/pkgs/by-name/pi/pihole-ftl/package.nix index 6999dc989e1b..3e7d48e7393b 100644 --- a/pkgs/by-name/pi/pihole-ftl/package.nix +++ b/pkgs/by-name/pi/pihole-ftl/package.nix @@ -1,6 +1,7 @@ { lib, stdenv, + nixosTests, fetchFromGitHub, cmake, gmp, @@ -12,7 +13,6 @@ readline, xxd, iproute2, - ... }: stdenv.mkDerivation (finalAttrs: { @@ -78,6 +78,7 @@ stdenv.mkDerivation (finalAttrs: { ''; passthru.settingsTemplate = ./pihole.toml; + passthru.tests = nixosTests.pihole-ftl; meta = { description = "Pi-hole FTL engine"; diff --git a/pkgs/by-name/pi/pihole-web/package.nix b/pkgs/by-name/pi/pihole-web/package.nix index bb578b18c10e..1cbd09116d0e 100644 --- a/pkgs/by-name/pi/pihole-web/package.nix +++ b/pkgs/by-name/pi/pihole-web/package.nix @@ -1,6 +1,7 @@ { stdenv, lib, + nixosTests, fetchFromGitHub, pihole, pihole-ftl, @@ -36,6 +37,8 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; + passthru.tests = nixosTests.pihole-ftl; + meta = { description = "Pi-hole web dashboard displaying stats and more"; homepage = "https://github.com/pi-hole/web"; diff --git a/pkgs/by-name/pi/pihole/package.nix b/pkgs/by-name/pi/pihole/package.nix index 5a816b3623f9..73362403c25f 100644 --- a/pkgs/by-name/pi/pihole/package.nix +++ b/pkgs/by-name/pi/pihole/package.nix @@ -1,5 +1,6 @@ { lib, + nixosTests, fetchFromGitHub, makeBinaryWrapper, installShellFiles, @@ -238,6 +239,8 @@ mainProgram = "pihole"; }; + passthru.tests = nixosTests.pihole-ftl; + passthru = { inherit stateDir; }; From 09c1e6c123d1fa292b96c811ad39648709e99792 Mon Sep 17 00:00:00 2001 From: lenny Date: Thu, 18 Sep 2025 20:09:30 +0200 Subject: [PATCH 064/146] skim: Move shell completions to package This also adds the previously missing fish completions --- .../manual/release-notes/rl-2511.section.md | 2 ++ nixos/modules/programs/skim.nix | 35 +++++++++---------- pkgs/by-name/sk/skim/package.nix | 5 +++ 3 files changed, 24 insertions(+), 18 deletions(-) diff --git a/nixos/doc/manual/release-notes/rl-2511.section.md b/nixos/doc/manual/release-notes/rl-2511.section.md index adc084518d04..820e0de48f39 100644 --- a/nixos/doc/manual/release-notes/rl-2511.section.md +++ b/nixos/doc/manual/release-notes/rl-2511.section.md @@ -166,6 +166,8 @@ - The default `kops` version is now 1.33.0 and versions 1.30 and older have been dropped. See [Upgrading Kubernetes](https://kops.sigs.k8s.io/tutorial/upgrading-kubernetes/) for instructions on how to update kOps. +- `programs.skim.fuzzyCompletions` has been removed in favor of adding the completions to the package itself. + - `Prosody` has been updated to major release 13 which removed some obsoleted modules and brought a couple of major and breaking changes: - The `http_files` module is now disabled by default because it now requires `http_files_dir` to be configured. - The `vcard_muc` module has been removed and got replaced by the inbuilt `muc_vcard` module. diff --git a/nixos/modules/programs/skim.nix b/nixos/modules/programs/skim.nix index 67d7396d0344..97ec4bd0ecba 100644 --- a/nixos/modules/programs/skim.nix +++ b/nixos/modules/programs/skim.nix @@ -8,38 +8,37 @@ let inherit (lib) mkEnableOption mkPackageOption - optional + mkRemovedOptionModule optionalString + mkIf ; cfg = config.programs.skim; in { + imports = [ + (mkRemovedOptionModule [ "programs" "skim" "fuzzyCompletion" ] + "programs.skim.fuzzyCompletion has been removed. Completions are now included in the package itself." + ) + ]; + options = { programs.skim = { - fuzzyCompletion = mkEnableOption "fuzzy completion with skim"; + enable = mkEnableOption "skim fuzzy finder"; keybindings = mkEnableOption "skim keybindings"; package = mkPackageOption pkgs "skim" { }; }; }; - config = { - environment.systemPackages = optional (cfg.keybindings || cfg.fuzzyCompletion) cfg.package; + config = mkIf cfg.enable { + environment.systemPackages = [ cfg.package ]; - programs.bash.interactiveShellInit = - optionalString cfg.fuzzyCompletion '' - source ${cfg.package}/share/skim/completion.bash - '' - + optionalString cfg.keybindings '' - source ${cfg.package}/share/skim/key-bindings.bash - ''; + programs.bash.interactiveShellInit = optionalString cfg.keybindings '' + source ${cfg.package}/share/skim/key-bindings.bash + ''; - programs.zsh.interactiveShellInit = - optionalString cfg.fuzzyCompletion '' - source ${cfg.package}/share/skim/completion.zsh - '' - + optionalString cfg.keybindings '' - source ${cfg.package}/share/skim/key-bindings.zsh - ''; + programs.zsh.interactiveShellInit = optionalString cfg.keybindings '' + source ${cfg.package}/share/skim/key-bindings.zsh + ''; programs.fish.interactiveShellInit = optionalString cfg.keybindings '' source ${cfg.package}/share/skim/key-bindings.fish && skim_key_bindings diff --git a/pkgs/by-name/sk/skim/package.nix b/pkgs/by-name/sk/skim/package.nix index c9c447cc9c92..fda052e974da 100644 --- a/pkgs/by-name/sk/skim/package.nix +++ b/pkgs/by-name/sk/skim/package.nix @@ -51,6 +51,11 @@ rustPlatform.buildRustPackage rec { installBin sk-share installManPage $(find man -type f) + installShellCompletion \ + --cmd sk \ + --bash shell/completion.bash \ + --fish shell/completion.fish \ + --zsh shell/completion.zsh ''; # Doc tests are broken on aarch64 From 01f6588a2484a9a448ef5fbba34ee94157cefcf1 Mon Sep 17 00:00:00 2001 From: qbisi Date: Mon, 22 Sep 2025 05:34:01 +0800 Subject: [PATCH 065/146] laszip: 3.4.3 -> 3.4.4 --- pkgs/by-name/la/laszip/package.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/la/laszip/package.nix b/pkgs/by-name/la/laszip/package.nix index 0f82562f2ffd..4b4250ec37db 100644 --- a/pkgs/by-name/la/laszip/package.nix +++ b/pkgs/by-name/la/laszip/package.nix @@ -7,16 +7,18 @@ }: stdenv.mkDerivation (finalAttrs: { - version = "3.4.3"; + version = "3.4.4"; pname = "laszip"; src = fetchFromGitHub { owner = "LASzip"; repo = "LASzip"; rev = finalAttrs.version; - hash = "sha256-9fzal54YaocONtguOCxnP7h1LejQPQ0dKFiCzfvTjCY="; + hash = "sha256-v/oLU69zqDW1o1HTlay7GDh1Kbmv1rarII2Fz5HWCqg="; }; + hardeningDisable = [ "format" ]; # -Werror=format-security + nativeBuildInputs = [ cmake ] From 6800490ba867297ddc43374e95fe953b1738debb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 04:33:24 +0000 Subject: [PATCH 066/146] ledfx: 2.0.110 -> 2.0.111 --- pkgs/by-name/le/ledfx/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/le/ledfx/package.nix b/pkgs/by-name/le/ledfx/package.nix index 6b3599eb0d89..68840bed9e5f 100644 --- a/pkgs/by-name/le/ledfx/package.nix +++ b/pkgs/by-name/le/ledfx/package.nix @@ -6,12 +6,12 @@ python3.pkgs.buildPythonApplication rec { pname = "ledfx"; - version = "2.0.110"; + version = "2.0.111"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-utYpAIt9ThgV58h4p3d2q/pLfCU2zlXyCnTP2kqkDjg="; + hash = "sha256-b6WHulQa1er0DpMfeJLqqb4z8glUt1dHvvNigXgrf7Y="; }; pythonRelaxDeps = true; From 1c2025efc9971b323bf5a57daef999dc711e13ff Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 08:43:04 +0000 Subject: [PATCH 067/146] terraform-providers.cloudflare: 5.9.0 -> 5.10.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 13fa0e6ed32f..581bf9616023 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -270,13 +270,13 @@ "vendorHash": "sha256-O/MSx6iZ0SkCsMLKMr1cetkPaePoVq62UTOhiPTzF6g=" }, "cloudflare": { - "hash": "sha256-EsbktS0pP+tJtIPHckMmgdeIBLyL9T+lVyoDzJAzi98=", + "hash": "sha256-nIceDw766f32yn8qfgY89OYcOtwUc3650x0NO4XUrmk=", "homepage": "https://registry.terraform.io/providers/cloudflare/cloudflare", "owner": "cloudflare", "repo": "terraform-provider-cloudflare", - "rev": "v5.9.0", + "rev": "v5.10.1", "spdx": "Apache-2.0", - "vendorHash": "sha256-aMEcmK2lhKg0OH0jsQXDE09eHbImieyNgT4xH+pBEEk=" + "vendorHash": "sha256-U2lC4d3MSkD8W4qJtrYlnHFflG0xgyPtL6OnjHwxV2U=" }, "cloudfoundry": { "hash": "sha256-1nYncJLVU/f9WD6Quh9IieIXgixPzbPk4zbtI1zmf9g=", From 76c618ecddf2b7bafc5805282972fa1036717211 Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Mon, 22 Sep 2025 11:10:18 +0100 Subject: [PATCH 068/146] nixos-rebuild-ng: do not parse the path part from Flake as a Path When I first wrote the Flake code for `nixos-rebuild-ng`, I set the Flake parser to normalize the `foo` part from `foo#host` as a Python's `pathlib.Path` if this looked like a path. The idea originally was to improve type-safety and make it easier to compose the path later if needed. But, in retrospect this is the wrong thing to do here because there are so many things that `nix` can do in those cases: - `foo` can be either a directory or a Flake registry - #433726 So let's stop being smart here and just assume a plain string. We don't really get a lot of type-safety or any of the nice things pathlib gives to us since there isn't any path manipulation going on. Let `nix` itself handle any translation here. Fix: #433726. --- .../src/nixos_rebuild/models.py | 13 ++------ .../nixos-rebuild-ng/src/tests/test_models.py | 31 +++++++++---------- .../ni/nixos-rebuild-ng/src/tests/test_nix.py | 4 +-- 3 files changed, 20 insertions(+), 28 deletions(-) diff --git a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py index d804a1c07ad6..19484f7e36e1 100644 --- a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py +++ b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py @@ -77,7 +77,7 @@ def _get_hostname(target_host: Remote | None) -> str | None: @dataclass(frozen=True) class Flake: - path: Path | str + path: str attr: str _re: ClassVar = re.compile(r"^(?P[^\#]*)\#?(?P[^\#\"]*)$") @@ -86,11 +86,7 @@ class Flake: @override def __str__(self) -> str: - if isinstance(self.path, Path): - # https://github.com/NixOS/nixpkgs/issues/433726 - return f"{self.path.absolute()}#{self.attr}" - else: - return f"{self.path}#{self.attr}" + return f"{self.path}#{self.attr}" @classmethod def parse(cls, flake_str: str, target_host: Remote | None = None) -> Self: @@ -101,10 +97,7 @@ class Flake: f'nixosConfigurations."{attr or _get_hostname(target_host) or "default"}"' ) path = m.group("path") - if ":" in path: - return cls(path, nixos_attr) - else: - return cls(Path(path), nixos_attr) + return cls(path, nixos_attr) @classmethod def from_arg(cls, flake_arg: Any, target_host: Remote | None) -> Self | None: # noqa: ANN401 diff --git a/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_models.py b/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_models.py index 0663d73ef538..4b7f16570c5e 100644 --- a/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_models.py +++ b/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_models.py @@ -33,10 +33,10 @@ def test_build_attr_to_attr() -> None: @patch("platform.node", autospec=True, return_value=None) def test_flake_parse(mock_node: Mock, tmpdir: Path, monkeypatch: MonkeyPatch) -> None: assert m.Flake.parse("/path/to/flake#attr") == m.Flake( - Path("/path/to/flake"), 'nixosConfigurations."attr"' + "/path/to/flake", 'nixosConfigurations."attr"' ) assert m.Flake.parse("/path/ to /flake") == m.Flake( - Path("/path/ to /flake"), 'nixosConfigurations."default"' + "/path/ to /flake", 'nixosConfigurations."default"' ) with patch( get_qualified_name(m.run_wrapper, m), @@ -45,11 +45,11 @@ def test_flake_parse(mock_node: Mock, tmpdir: Path, monkeypatch: MonkeyPatch) -> ): target_host = m.Remote("target@remote", [], None) assert m.Flake.parse("/path/to/flake", target_host) == m.Flake( - Path("/path/to/flake"), 'nixosConfigurations."remote"' + "/path/to/flake", 'nixosConfigurations."remote"' ) - assert m.Flake.parse(".#attr") == m.Flake(Path("."), 'nixosConfigurations."attr"') - assert m.Flake.parse("#attr") == m.Flake(Path("."), 'nixosConfigurations."attr"') - assert m.Flake.parse(".") == m.Flake(Path("."), 'nixosConfigurations."default"') + assert m.Flake.parse(".#attr") == m.Flake(".", 'nixosConfigurations."attr"') + assert m.Flake.parse("#attr") == m.Flake("", 'nixosConfigurations."attr"') + assert m.Flake.parse(".") == m.Flake(".", 'nixosConfigurations."default"') assert m.Flake.parse("path:/to/flake#attr") == m.Flake( "path:/to/flake", 'nixosConfigurations."attr"' ) @@ -64,7 +64,7 @@ def test_flake_parse(mock_node: Mock, tmpdir: Path, monkeypatch: MonkeyPatch) -> def test_flake_to_attr() -> None: assert ( - m.Flake(Path("/path/to/flake"), "nixosConfigurations.preAttr").to_attr( + m.Flake("/path/to/flake", "nixosConfigurations.preAttr").to_attr( "attr1", "attr2" ) == "/path/to/flake#nixosConfigurations.preAttr.attr1.attr2" @@ -73,10 +73,9 @@ def test_flake_to_attr() -> None: def test_flake__str__(monkeypatch: MonkeyPatch, tmpdir: Path) -> None: assert str(m.Flake("github:nixos/nixpkgs", "attr")) == "github:nixos/nixpkgs#attr" - assert str(m.Flake(Path("/etc/nixos"), "attr")) == "/etc/nixos#attr" - with monkeypatch.context() as patch_context: - patch_context.chdir(tmpdir) - assert str(m.Flake(Path("."), "attr")) == f"{tmpdir}#attr" + assert str(m.Flake("/etc/nixos", "attr")) == "/etc/nixos#attr" + assert str(m.Flake(".", "attr")) == ".#attr" + assert str(m.Flake("", "attr")) == "#attr" @patch("platform.node", autospec=True) @@ -87,7 +86,7 @@ def test_flake_from_arg( # Flake string assert m.Flake.from_arg("/path/to/flake#attr", None) == m.Flake( - Path("/path/to/flake"), 'nixosConfigurations."attr"' + "/path/to/flake", 'nixosConfigurations."attr"' ) # False @@ -97,7 +96,7 @@ def test_flake_from_arg( with monkeypatch.context() as patch_context: patch_context.chdir(tmpdir) assert m.Flake.from_arg(True, None) == m.Flake( - Path("."), 'nixosConfigurations."hostname"' + ".", 'nixosConfigurations."hostname"' ) # None when we do not have /etc/nixos/flake.nix @@ -122,7 +121,7 @@ def test_flake_from_arg( ), ): assert m.Flake.from_arg(None, None) == m.Flake( - Path("/etc/nixos"), 'nixosConfigurations."hostname"' + "/etc/nixos", 'nixosConfigurations."hostname"' ) with ( @@ -138,7 +137,7 @@ def test_flake_from_arg( ), ): assert m.Flake.from_arg(None, None) == m.Flake( - Path("/path/to"), 'nixosConfigurations."hostname"' + "/path/to", 'nixosConfigurations."hostname"' ) with ( @@ -149,7 +148,7 @@ def test_flake_from_arg( ), ): assert m.Flake.from_arg("/path/to", m.Remote("user@host", [], None)) == m.Flake( - Path("/path/to"), 'nixosConfigurations."remote-hostname"' + "/path/to", 'nixosConfigurations."remote-hostname"' ) diff --git a/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_nix.py b/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_nix.py index a61004a60d6a..6cc525410fe4 100644 --- a/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_nix.py +++ b/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_nix.py @@ -385,7 +385,7 @@ def test_get_build_image_variants(mock_run: Mock, tmp_path: Path) -> None: ), ) def test_get_build_image_variants_flake(mock_run: Mock) -> None: - flake = m.Flake(Path("/flake.nix"), "myAttr") + flake = m.Flake("/flake.nix", "myAttr") assert n.get_build_image_variants_flake(flake, {"eval_flag": True}) == { "azure": "nixos-image-azure-25.05.20250102.6df2492-x86_64-linux.vhd", "vmware": "nixos-image-vmware-25.05.20250102.6df2492-x86_64-linux.vmdk", @@ -574,7 +574,7 @@ def test_repl(mock_run: Mock) -> None: @patch(get_qualified_name(n.run_wrapper, n), autospec=True) def test_repl_flake(mock_run: Mock) -> None: - n.repl_flake(m.Flake(Path("flake.nix"), "myAttr"), {"nix_flag": True}) + n.repl_flake(m.Flake("flake.nix", "myAttr"), {"nix_flag": True}) # See nixos-rebuild-ng.tests.repl for a better test, # this is mostly for sanity check assert mock_run.call_count == 1 From 08371b385d0c14d5cef07151f67a421ed34b1a41 Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Mon, 22 Sep 2025 12:10:15 +0100 Subject: [PATCH 069/146] nixos-rebuild-ng: make sure mypy in CI is running with its configuration --- pkgs/by-name/ni/nixos-rebuild-ng/package.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ni/nixos-rebuild-ng/package.nix b/pkgs/by-name/ni/nixos-rebuild-ng/package.nix index b75960263e2d..1e2c8363ad6c 100644 --- a/pkgs/by-name/ni/nixos-rebuild-ng/package.nix +++ b/pkgs/by-name/ni/nixos-rebuild-ng/package.nix @@ -134,14 +134,17 @@ python3Packages.buildPythonApplication rec { # NOTE: this is a passthru test rather than a build-time test because we # want to keep the build closures small linters = runCommand "${pname}-linters" { nativeBuildInputs = [ python-with-pkgs ]; } '' + export MYPY_CACHE_DIR="$(mktemp -d)" export RUFF_CACHE_DIR="$(mktemp -d)" + pushd ${src} echo -e "\x1b[32m## run mypy\x1b[0m" - mypy ${src} + mypy . echo -e "\x1b[32m## run ruff\x1b[0m" - ruff check ${src} + ruff check . echo -e "\x1b[32m## run ruff format\x1b[0m" - ruff format --check ${src} + ruff format --check . + popd touch $out ''; From f5e7824fb3b40bcf3979a7da2064014800a9347d Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Mon, 22 Sep 2025 12:13:19 +0100 Subject: [PATCH 070/146] nixos-rebuild-ng: fix mypy issues --- pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/constants.py | 1 + pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py | 2 +- pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/utils.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/constants.py b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/constants.py index a00327060765..03d4bb79eb61 100644 --- a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/constants.py +++ b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/constants.py @@ -1,3 +1,4 @@ +# mypy: disable-error-code=comparison-overlap from typing import Final # Build-time flags diff --git a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py index 19484f7e36e1..7cf30ae9a62d 100644 --- a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py +++ b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py @@ -8,7 +8,7 @@ from typing import Any, ClassVar, Self, TypedDict, override from .process import Remote, run_wrapper -type ImageVariants = list[str] +type ImageVariants = dict[str, str] class NixOSRebuildError(Exception): diff --git a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/utils.py b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/utils.py index b5057e0cc255..6cdfaba456c6 100644 --- a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/utils.py +++ b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/utils.py @@ -14,7 +14,7 @@ class LogFormatter(logging.Formatter): } @override - def format(self, record: logging.LogRecord) -> str: + def format(self, record: logging.LogRecord) -> Any: record.levelname = record.levelname.lower() formatter = self.formatters.get(record.levelno, self.formatters["DEFAULT"]) return formatter.format(record) From 6b3743ea30f30377c3451ac4b4806aa582e4d7d9 Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Mon, 22 Sep 2025 14:18:46 +0100 Subject: [PATCH 071/146] nixos-rebuild-ng: resolve Flake path for repl --- .../src/nixos_rebuild/models.py | 6 ++++++ .../nixos-rebuild-ng/src/nixos_rebuild/nix.py | 2 +- .../nixos-rebuild-ng/src/tests/test_models.py | 17 ++++++++++++++++- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py index 7cf30ae9a62d..ef249b9a718a 100644 --- a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py +++ b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/models.py @@ -118,6 +118,12 @@ class Flake: else: return None + def resolve_path_if_exists(self) -> str: + try: + return str(Path(self.path).resolve(strict=True)) + except FileNotFoundError: + return self.path + @dataclass(frozen=True) class Generation: diff --git a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/nix.py b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/nix.py index 8580ddffd83a..9a7062c816eb 100644 --- a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/nix.py +++ b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/nix.py @@ -545,7 +545,7 @@ def repl_flake(flake: Flake, flake_flags: Args | None = None) -> None: files(__package__).joinpath(FLAKE_REPL_TEMPLATE).read_text() ).substitute( flake=flake, - flake_path=flake.path.resolve() if isinstance(flake.path, Path) else flake.path, + flake_path=flake.resolve_path_if_exists(), flake_attr=flake.attr, bold="\033[1m", blue="\033[34;1m", diff --git a/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_models.py b/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_models.py index 4b7f16570c5e..544233e6fd73 100644 --- a/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_models.py +++ b/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_models.py @@ -71,13 +71,28 @@ def test_flake_to_attr() -> None: ) -def test_flake__str__(monkeypatch: MonkeyPatch, tmpdir: Path) -> None: +def test_flake__str__() -> None: assert str(m.Flake("github:nixos/nixpkgs", "attr")) == "github:nixos/nixpkgs#attr" assert str(m.Flake("/etc/nixos", "attr")) == "/etc/nixos#attr" assert str(m.Flake(".", "attr")) == ".#attr" assert str(m.Flake("", "attr")) == "#attr" +def test_flake_resolve_path_if_exists(monkeypatch: MonkeyPatch, tmpdir: Path) -> None: + assert ( + m.Flake("github:nixos/nixpkgs", "attr").resolve_path_if_exists() + == "github:nixos/nixpkgs" + ) + assert ( + m.Flake("/an/inexistent/path", "attr").resolve_path_if_exists() + == "/an/inexistent/path" + ) + with monkeypatch.context() as patch_context: + patch_context.chdir(tmpdir) + assert m.Flake(str(tmpdir), "attr").resolve_path_if_exists() == str(tmpdir) + assert m.Flake(".", "attr").resolve_path_if_exists() == str(tmpdir) + + @patch("platform.node", autospec=True) def test_flake_from_arg( mock_node: Mock, monkeypatch: MonkeyPatch, tmpdir: Path From a14cdcb1bc34318abc928b57e1f74ec204f3180c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 14:11:37 +0000 Subject: [PATCH 072/146] kubebuilder: 4.8.0 -> 4.9.0 --- pkgs/by-name/ku/kubebuilder/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ku/kubebuilder/package.nix b/pkgs/by-name/ku/kubebuilder/package.nix index 6a1180a22acc..4feb7dea90ca 100644 --- a/pkgs/by-name/ku/kubebuilder/package.nix +++ b/pkgs/by-name/ku/kubebuilder/package.nix @@ -13,16 +13,16 @@ buildGoModule rec { pname = "kubebuilder"; - version = "4.8.0"; + version = "4.9.0"; src = fetchFromGitHub { owner = "kubernetes-sigs"; repo = "kubebuilder"; rev = "v${version}"; - hash = "sha256-HUJ/dgDVN2hgCkO/iw3CqEgl8P2TbWgQ/TNe8uO3Vvk="; + hash = "sha256-CokzuduRJyRYIrkqE+LJE6znskfZIJfU12m4vDhZB0k="; }; - vendorHash = "sha256-9hGIZgUyxMyOoxMn+KeN0+vmET2ISZtlejiaI5qUe40="; + vendorHash = "sha256-ValoM/qVrDKPjI5SOq4XkYNKPKjfQcrXKogfpd2aKLQ="; subPackages = [ "cmd" From 6038b6fb08582ce4a6341c6e2bcc2038807ec6cc Mon Sep 17 00:00:00 2001 From: Jack Rosenberg Date: Mon, 22 Sep 2025 16:12:15 +0200 Subject: [PATCH 073/146] fosrl-pangolin: 1.10.1 -> 1.10.2 --- pkgs/by-name/fo/fosrl-pangolin/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fo/fosrl-pangolin/package.nix b/pkgs/by-name/fo/fosrl-pangolin/package.nix index 897e0f1d1419..807f10243d04 100644 --- a/pkgs/by-name/fo/fosrl-pangolin/package.nix +++ b/pkgs/by-name/fo/fosrl-pangolin/package.nix @@ -29,13 +29,13 @@ in buildNpmPackage (finalAttrs: { pname = "pangolin"; - version = "1.10.1"; + version = "1.10.2"; src = fetchFromGitHub { owner = "fosrl"; repo = "pangolin"; tag = finalAttrs.version; - hash = "sha256-q5HnXJCx8wvHT+D/Pa+752xh57m/odesRjoqSdCHfrI="; + hash = "sha256-fXswhcnspyayyvvl1HEuQylKHzdgwucm1ClokJMeqys="; }; npmDepsHash = "sha256-ivG/7KTmWPjnXzO+ISc+2bsNqW/0VPhFbg1229A64cw="; From a18ac4f09898639958d7081321d90d67b5990274 Mon Sep 17 00:00:00 2001 From: kira <67888720+koffydrop@users.noreply.github.com> Date: Mon, 22 Sep 2025 12:26:24 -0300 Subject: [PATCH 074/146] revert "discord: remove libunity dependency" --- .../networking/instant-messengers/discord/linux.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/networking/instant-messengers/discord/linux.nix b/pkgs/applications/networking/instant-messengers/discord/linux.nix index 5b192aa1c986..0c6426ca3f8b 100644 --- a/pkgs/applications/networking/instant-messengers/discord/linux.nix +++ b/pkgs/applications/networking/instant-messengers/discord/linux.nix @@ -54,6 +54,7 @@ pipewire, python3, runCommand, + libunity, speechd-minimal, wayland, branch, @@ -152,6 +153,7 @@ stdenv.mkDerivation (finalAttrs: { libnotify libX11 libXcomposite + libunity libuuid libXcursor libXdamage From 7bd2247fdf5cebaf9d90372dd5f0613002d57904 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 15:54:22 +0000 Subject: [PATCH 075/146] cargo-deny: 0.18.4 -> 0.18.5 --- pkgs/by-name/ca/cargo-deny/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ca/cargo-deny/package.nix b/pkgs/by-name/ca/cargo-deny/package.nix index 679139702445..444467bd817e 100644 --- a/pkgs/by-name/ca/cargo-deny/package.nix +++ b/pkgs/by-name/ca/cargo-deny/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage rec { pname = "cargo-deny"; - version = "0.18.4"; + version = "0.18.5"; src = fetchFromGitHub { owner = "EmbarkStudios"; repo = "cargo-deny"; rev = version; - hash = "sha256-5aa13eFfGEJZBRB4/PAKKLwxw2wt8sBI7ZVOpgnO+t8="; + hash = "sha256-FYVMeq/728uXayGbDKVK2kZNkf9tdXET+uEorJ6WNto="; }; - cargoHash = "sha256-RW+drxVouQbiZsjEL+XZBE2VMzEiCkLTOC9jMxI76T8="; + cargoHash = "sha256-QfylAFybghBJzxgtrKIPGz/6EM1DlNJ/uJIEtMXpTbo="; nativeBuildInputs = [ pkg-config From 8c5f33e5b55b3b7368a2afd5ed60294fdb4e1e4a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 17:02:22 +0000 Subject: [PATCH 076/146] vscode-extensions.ionide.ionide-fsharp: 7.27.0 -> 7.27.1 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index d0aa19b26d50..f773dc354872 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -2372,8 +2372,8 @@ let mktplcRef = { name = "Ionide-fsharp"; publisher = "Ionide"; - version = "7.27.0"; - hash = "sha256-NGl5uiR4taamA8lhH/qJT1nCfUhxCQ/XQ/oEZ9N9Q5Y="; + version = "7.27.1"; + hash = "sha256-ur+/ZSewWBzLxkHVXHQJg4KzkC3Mi3E9fE3/wL6sD8g="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/Ionide.Ionide-fsharp/changelog"; From 8b3e3f5ef543d023b0236304164b5dae5b008a0a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 18:36:21 +0000 Subject: [PATCH 077/146] acquire: 3.19 -> 3.20 --- pkgs/development/python-modules/acquire/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/acquire/default.nix b/pkgs/development/python-modules/acquire/default.nix index e27075b7e133..5c0a9e3dcf26 100644 --- a/pkgs/development/python-modules/acquire/default.nix +++ b/pkgs/development/python-modules/acquire/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "acquire"; - version = "3.19"; + version = "3.20"; pyproject = true; disabled = pythonOlder "3.9"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "fox-it"; repo = "acquire"; tag = version; - hash = "sha256-0aqngfv2ZyVw1ymotz1PmXKUZeTHUVL9ICL6cyEn/wk="; + hash = "sha256-BfY7LKSP82QnRz3QdfUNFvz7epw5RwGT/H2S43MSvVk="; }; build-system = [ From 8dcecb9069788f05e8d99f6d86bd5b530624176c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 19:18:58 +0000 Subject: [PATCH 078/146] runme: 3.15.1 -> 3.15.2 --- pkgs/by-name/ru/runme/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ru/runme/package.nix b/pkgs/by-name/ru/runme/package.nix index 8425250b54cf..b8f31f3771bc 100644 --- a/pkgs/by-name/ru/runme/package.nix +++ b/pkgs/by-name/ru/runme/package.nix @@ -13,16 +13,16 @@ buildGoModule rec { pname = "runme"; - version = "3.15.1"; + version = "3.15.2"; src = fetchFromGitHub { owner = "runmedev"; repo = "runme"; rev = "v${version}"; - hash = "sha256-qC5FoRpMSWFlPGQvM+wTvCF46TvJznZAQNle5fAOp9g="; + hash = "sha256-NtFKzObi0mIdzhRiu7CCZ3e4yIhI2gHMtVsdf5TEb/s="; }; - vendorHash = "sha256-KF9yKm/b3VjZJIj9PXcm2UxdTE43YGsqgep8Us13GdI="; + vendorHash = "sha256-Uw5igaQpKKI4y7EoznFdmyTXfex350Pps6nt3lvKeAM="; nativeBuildInputs = [ installShellFiles From 6cf710346c390952c9e3e2731c08c6f7b80364c2 Mon Sep 17 00:00:00 2001 From: Tom Herbers Date: Mon, 22 Sep 2025 21:19:32 +0200 Subject: [PATCH 079/146] bird2: 2.17.1 -> 2.17.2 Changelog: https://gitlab.nic.cz/labs/bird/-/blob/v2.17.2/NEWS --- pkgs/by-name/bi/bird2/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/bi/bird2/package.nix b/pkgs/by-name/bi/bird2/package.nix index f38674666305..bf7934adc819 100644 --- a/pkgs/by-name/bi/bird2/package.nix +++ b/pkgs/by-name/bi/bird2/package.nix @@ -12,14 +12,14 @@ stdenv.mkDerivation rec { pname = "bird"; - version = "2.17.1"; + version = "2.17.2"; src = fetchFromGitLab { domain = "gitlab.nic.cz"; owner = "labs"; repo = "bird"; rev = "v${version}"; - hash = "sha256-9Zg3UmNEW+Q26PMj3Z1XDbPFC5vatX8i7RQSUlKXlwg="; + hash = "sha256-4kEtSVuEwJIYIk4+OBjBLz72i60TOUKIbvdNKlrcUYM="; }; nativeBuildInputs = [ From 76b234d5e20e5943f572cd4a34bfba30cc25eb7c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 19:31:36 +0000 Subject: [PATCH 080/146] vacuum-go: 0.18.3 -> 0.18.5 --- pkgs/by-name/va/vacuum-go/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/va/vacuum-go/package.nix b/pkgs/by-name/va/vacuum-go/package.nix index 1e70e35a4aaa..e5f6bb56ceea 100644 --- a/pkgs/by-name/va/vacuum-go/package.nix +++ b/pkgs/by-name/va/vacuum-go/package.nix @@ -7,17 +7,17 @@ buildGoModule (finalAttrs: { pname = "vacuum-go"; - version = "0.18.3"; + version = "0.18.5"; src = fetchFromGitHub { owner = "daveshanley"; repo = "vacuum"; # using refs/tags because simple version gives: 'the given path has multiple possibilities' error tag = "v${finalAttrs.version}"; - hash = "sha256-kz5QCxItcrDMnAbwwI/8xhnn74DWzkkJkFX1QRMGwSc="; + hash = "sha256-vsdSRsfGXjWlYxl3a6cGWJ7IadLP7KIM3lFkUlboTj4="; }; - vendorHash = "sha256-2GN8YTMO2Vrr0uJMBUNqdj79elJot2OH8xTAc2TfLeE="; + vendorHash = "sha256-+GkxN20mZD/ZBTCjmjiDcEAJix2Ssn9HsNrUtQkrI18="; env.CGO_ENABLED = 0; ldflags = [ From 4acc4a70f1f179701f2dd1f4f7d2f9abaef29576 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 19:40:37 +0000 Subject: [PATCH 081/146] nsc: 2.11.1 -> 2.12.0 --- pkgs/by-name/ns/nsc/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ns/nsc/package.nix b/pkgs/by-name/ns/nsc/package.nix index f29ebe190556..cd7e4d285c08 100644 --- a/pkgs/by-name/ns/nsc/package.nix +++ b/pkgs/by-name/ns/nsc/package.nix @@ -8,13 +8,13 @@ buildGoModule rec { pname = "nsc"; - version = "2.11.1"; + version = "2.12.0"; src = fetchFromGitHub { owner = "nats-io"; repo = "nsc"; rev = "v${version}"; - hash = "sha256-9HHrAT4LKVLb2+IDmXoPRtOKo1DRFznAbxJZp/B1uRY="; + hash = "sha256-ct2InMPpqbtFeKtarWXGuPiXS2OD78w2sX0BoFiCl0c="; }; ldflags = [ @@ -24,7 +24,7 @@ buildGoModule rec { "-X main.builtBy=nixpkgs" ]; - vendorHash = "sha256-sTaiaLJyokasaf1Mbaz4RkgspTd3VphZat8Bavg/Y9A="; + vendorHash = "sha256-0tJHK999AjtKYUB0gC5SlQPqit6UTyGsbb6vC7KdQQc="; nativeBuildInputs = [ installShellFiles ]; @@ -47,7 +47,7 @@ buildGoModule rec { # the test strips table formatting from the command output in a naive way # that removes all the table characters, including '-'. # The nix build directory looks something like: - # /private/tmp/nix-build-nsc-2.11.1.drv-0/nsc_test2000598938/keys + # /private/tmp/nix-build-nsc-2.12.0.drv-0/nsc_test2000598938/keys # Then the `-` are removed from the path unintentionally and the test fails. # This should be fixed upstream to avoid mangling the path when # removing the table decorations from the command output. From f716636267e59f6da693a2f26ab34607274d2fa6 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Mon, 22 Sep 2025 20:55:45 +0100 Subject: [PATCH 082/146] wlroots: 0.19.0 -> 0.19.1 Chganges: https://gitlab.freedesktop.org/wlroots/wlroots/-/tags/0.19.1 --- pkgs/development/libraries/wlroots/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/wlroots/default.nix b/pkgs/development/libraries/wlroots/default.nix index 6cd9e74402ac..2fb4711bdcdf 100644 --- a/pkgs/development/libraries/wlroots/default.nix +++ b/pkgs/development/libraries/wlroots/default.nix @@ -169,8 +169,8 @@ rec { }; wlroots_0_19 = generic { - version = "0.19.0"; - hash = "sha256-I8z50yA/ukvXEC5TksG84+GrQpfC4drBJDRGw0R8RLk="; + version = "0.19.1"; + hash = "sha256-Q4x6obwzYYncgoUzqFVzn/scjxsiUeAIlEWY43emdvA="; extraBuildInputs = [ lcms2 ]; From 1ed8e6deac7e43c0d691c37d4a5d484e04ba11eb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 20:50:25 +0000 Subject: [PATCH 083/146] credhub-cli: 2.9.49 -> 2.9.50 --- pkgs/by-name/cr/credhub-cli/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/cr/credhub-cli/package.nix b/pkgs/by-name/cr/credhub-cli/package.nix index 45e2249fcf72..9914f4b7669c 100644 --- a/pkgs/by-name/cr/credhub-cli/package.nix +++ b/pkgs/by-name/cr/credhub-cli/package.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "credhub-cli"; - version = "2.9.49"; + version = "2.9.50"; src = fetchFromGitHub { owner = "cloudfoundry-incubator"; repo = "credhub-cli"; rev = version; - sha256 = "sha256-Ilb/iieB+TCCXUPzTh6TxJtox0sicWXCUBI1SuHNsUQ="; + sha256 = "sha256-+Y+PmnCQCCpGvThzbW6byquwFx3Pz96Je0+yWWMh3BQ="; }; # these tests require network access that we're not going to give them From fa20747e7d37e24875889ea6d4466f3b1ee14643 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Mon, 22 Sep 2025 23:45:34 +0200 Subject: [PATCH 084/146] python3Packages.scooby: 0.10.1 -> 0.10.2 --- pkgs/development/python-modules/scooby/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/scooby/default.nix b/pkgs/development/python-modules/scooby/default.nix index 97a5eb288770..e3285ca6ddac 100644 --- a/pkgs/development/python-modules/scooby/default.nix +++ b/pkgs/development/python-modules/scooby/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "scooby"; - version = "0.10.1"; + version = "0.10.2"; pyproject = true; disabled = pythonOlder "3.7"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "banesullivan"; repo = "scooby"; tag = "v${version}"; - hash = "sha256-ldDmw2TDvXgfu0fMj6dSr2zh9WfYGNpBGZb3MixKq+k="; + hash = "sha256-vOcCs8U8HeBgO86bgS/kqYrNai1IsQ0upQveV06YfoE="; }; build-system = [ setuptools-scm ]; From 34bbcafc41cfb1da051bcfa21f2009a0b1ff4ef1 Mon Sep 17 00:00:00 2001 From: fmbearmf <77757734+fmbearmf@users.noreply.github.com> Date: Mon, 22 Sep 2025 14:55:05 -0700 Subject: [PATCH 085/146] libvirt: 11.6.0 -> 11.7.0 --- pkgs/by-name/li/libvirt/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/li/libvirt/package.nix b/pkgs/by-name/li/libvirt/package.nix index 56474e009923..5b19ab79011e 100644 --- a/pkgs/by-name/li/libvirt/package.nix +++ b/pkgs/by-name/li/libvirt/package.nix @@ -117,14 +117,14 @@ assert enableZfs -> isLinux; stdenv.mkDerivation rec { pname = "libvirt"; # if you update, also bump and SysVirt in - version = "11.6.0"; + version = "11.7.0"; src = fetchFromGitLab { owner = "libvirt"; repo = "libvirt"; tag = "v${version}"; fetchSubmodules = true; - hash = "sha256-t1CnShdHBCvLpw9B5iJmgLpwVc91/hwRVBefBkw4LZg="; + hash = "sha256-BLPuqKvKW3wk4ij8ag4V4odgzZXGfn7692gkeJ03xZw="; }; patches = [ From 046f8a0d853efa7874df37c34450a5f148a08ab1 Mon Sep 17 00:00:00 2001 From: fmbearmf <77757734+fmbearmf@users.noreply.github.com> Date: Mon, 22 Sep 2025 14:55:36 -0700 Subject: [PATCH 086/146] python3Packages.libvirt: 11.6.0 -> 11.7.0 --- pkgs/development/python-modules/libvirt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/libvirt/default.nix b/pkgs/development/python-modules/libvirt/default.nix index cfdcbfa9ee6c..441efbdbade1 100644 --- a/pkgs/development/python-modules/libvirt/default.nix +++ b/pkgs/development/python-modules/libvirt/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "libvirt"; - version = "11.6.0"; + version = "11.7.0"; pyproject = true; src = fetchFromGitLab { owner = "libvirt"; repo = "libvirt-python"; tag = "v${version}"; - hash = "sha256-YitfYz+g3asMmwTBFTFR9pL+HDBDwI50ZThrgoIb+xQ="; + hash = "sha256-1YyWGwotk1Zv0zsNDGmWXhIFYEEN5qgYrB0j2QDTZFY="; }; postPatch = '' From df667d54ae04f5a9ecf7cb3e0e1cbd622ec211d5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 22:10:03 +0000 Subject: [PATCH 087/146] kolla: 20.1.0 -> 20.2.0 --- pkgs/by-name/ko/kolla/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ko/kolla/package.nix b/pkgs/by-name/ko/kolla/package.nix index eb7361d9a718..69aff018b305 100644 --- a/pkgs/by-name/ko/kolla/package.nix +++ b/pkgs/by-name/ko/kolla/package.nix @@ -7,14 +7,14 @@ python3Packages.buildPythonApplication rec { pname = "kolla"; - version = "20.1.0"; + version = "20.2.0"; pyproject = true; src = fetchFromGitHub { owner = "openstack"; repo = "kolla"; tag = version; - hash = "sha256-vVP9EwxAY2NBSciPSOvVaoCu85QVdFduY5aXPUI03XI="; + hash = "sha256-aqYEzBphzwB42Z0HmnCPQlV71dOi3yLKh+zL2dMTaB8="; }; postPatch = '' From 4e058860c5dbda414b9bd3909480000f969943f7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 22:36:17 +0000 Subject: [PATCH 088/146] python3Packages.tencentcloud-sdk-python: 3.0.1463 -> 3.0.1464 --- .../python-modules/tencentcloud-sdk-python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix index 6b6ee2dc485b..7f37c9aaeb09 100644 --- a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix +++ b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "tencentcloud-sdk-python"; - version = "3.0.1463"; + version = "3.0.1464"; pyproject = true; src = fetchFromGitHub { owner = "TencentCloud"; repo = "tencentcloud-sdk-python"; tag = version; - hash = "sha256-ZGwxbndI+0hKX38BIiHIXr7NGvC9FMEoqr/HQIaZsok="; + hash = "sha256-61K03CL8cF3B8rT0Wt8MuGql8ltRaE64gPiRe6k6Bqg="; }; build-system = [ setuptools ]; From 4f127f43d32da264493d768a41fca776d4f31500 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 22:48:28 +0000 Subject: [PATCH 089/146] kaldi: 0-unstable-2025-07-22 -> 0-unstable-2025-09-22 --- pkgs/by-name/ka/kaldi/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ka/kaldi/package.nix b/pkgs/by-name/ka/kaldi/package.nix index 02e1cf3a9c77..0ca19505bd0a 100644 --- a/pkgs/by-name/ka/kaldi/package.nix +++ b/pkgs/by-name/ka/kaldi/package.nix @@ -19,13 +19,13 @@ assert blas.implementation == "openblas" && lapack.implementation == "openblas"; stdenv.mkDerivation (finalAttrs: { pname = "kaldi"; - version = "0-unstable-2025-07-22"; + version = "0-unstable-2025-09-22"; src = fetchFromGitHub { owner = "kaldi-asr"; repo = "kaldi"; - rev = "f4007661023b98b8081fd875029f0dee62242fd1"; - sha256 = "sha256-DTXS+QUQOjfkus7lsjUfiQ6ScDkrBM8gaiLRP9yueTQ="; + rev = "e02e35f0254bb033fab73d1df99fc34123e31d56"; + sha256 = "sha256-ZnVSQTETrMeU+pkqy50ldAe8g1pbnG7VS1utcUy28ls="; }; cmakeFlags = [ From 307436361e416507cf9a3657636d04e59128bb27 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 23:18:44 +0000 Subject: [PATCH 090/146] precious: 0.9.0 -> 0.10.0 --- pkgs/by-name/pr/precious/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/pr/precious/package.nix b/pkgs/by-name/pr/precious/package.nix index 4eb78dea8bf0..b59055913bbe 100644 --- a/pkgs/by-name/pr/precious/package.nix +++ b/pkgs/by-name/pr/precious/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "precious"; - version = "0.9.0"; + version = "0.10.0"; src = fetchFromGitHub { owner = "houseabsolute"; repo = "precious"; tag = "v${finalAttrs.version}"; - hash = "sha256-moJk8bwMlYtfo+Iq/OcjJkQJQiirZ6oKSoATpW3KcQI="; + hash = "sha256-bHrn78wzdkxV92Lp3MzNUpSvMTyc8l3tw+z5NBxJPoA="; }; - cargoHash = "sha256-nvHP5/njvkXcI3QtFU4CijXaX5l4DabMMVzvktvFNvA="; + cargoHash = "sha256-OA1C98C0BHEVl056UCL5alT292djuBDGFjZn2HAytEQ="; nativeInstallCheckInputs = [ versionCheckHook ]; doInstallCheck = true; From 5e56a68998e59d12fb6ea02401bcaae5e055c49b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 22 Sep 2025 23:21:31 +0000 Subject: [PATCH 091/146] python3Packages.plopp: 25.07.1 -> 25.09.0 --- pkgs/development/python-modules/plopp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/plopp/default.nix b/pkgs/development/python-modules/plopp/default.nix index 0e9ccca930eb..e4482f35e79d 100644 --- a/pkgs/development/python-modules/plopp/default.nix +++ b/pkgs/development/python-modules/plopp/default.nix @@ -35,14 +35,14 @@ buildPythonPackage rec { pname = "plopp"; - version = "25.07.1"; + version = "25.09.0"; pyproject = true; src = fetchFromGitHub { owner = "scipp"; repo = "plopp"; tag = version; - hash = "sha256-SaUjRyPgh27YfV8Pvj0dA+e+oFcxqMo5LBJAbCy+svI="; + hash = "sha256-4qC+2FlbnhlJkXX0aDaxIVKi9Cf47x8ml9o5pY0Kiv4="; }; build-system = [ From e696694d7a46a99ec964ba4b37a2a28f0e792311 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 00:08:02 +0000 Subject: [PATCH 092/146] matrix-alertmanager-receiver: 2025.9.10 -> 2025.9.17 --- pkgs/by-name/ma/matrix-alertmanager-receiver/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ma/matrix-alertmanager-receiver/package.nix b/pkgs/by-name/ma/matrix-alertmanager-receiver/package.nix index ef2959bba858..7181b269bdde 100644 --- a/pkgs/by-name/ma/matrix-alertmanager-receiver/package.nix +++ b/pkgs/by-name/ma/matrix-alertmanager-receiver/package.nix @@ -8,13 +8,13 @@ buildGoModule (finalAttrs: { pname = "matrix-alertmanager-receiver"; - version = "2025.9.10"; + version = "2025.9.17"; src = fetchFromGitHub { owner = "metio"; repo = "matrix-alertmanager-receiver"; tag = finalAttrs.version; - hash = "sha256-8oi/CeoIiv+yIkYqHXIivrd9iC3PfXbB+cELlKABafQ="; + hash = "sha256-cLAB3Pdt+bg8boaRvYclsIrQXIK50fPWi92eCg7g/LA="; }; vendorHash = "sha256-zYcc2Gtdrh0xgHc/Bj+XQovlazlHpv7Rm+3lbw1ry1g="; From b74ffeb191dc15eb9a035f86ff8cfd2a2eb531a6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 00:16:26 +0000 Subject: [PATCH 093/146] terraform-providers.oci: 7.18.0 -> 7.19.0 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 13fa0e6ed32f..63307fe439a1 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -940,11 +940,11 @@ "vendorHash": "sha256-LRIfxQGwG988HE5fftGl6JmBG7tTknvmgpm4Fu1NbWI=" }, "oci": { - "hash": "sha256-3kxR/QhWhfL4IW+YLN0z+EuYgnOdnCHfbxuXxOYHLC0=", + "hash": "sha256-xj7B4LQZalLA/APIe70JHmqPljRVDbDXfAUb3K2AtFg=", "homepage": "https://registry.terraform.io/providers/oracle/oci", "owner": "oracle", "repo": "terraform-provider-oci", - "rev": "v7.18.0", + "rev": "v7.19.0", "spdx": "MPL-2.0", "vendorHash": null }, From 3bb6f0b8e9ef04affbcc2e398c9c3fd689610ce1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 00:22:50 +0000 Subject: [PATCH 094/146] unionfs-fuse: 3.6 -> 3.7 --- pkgs/by-name/un/unionfs-fuse/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/un/unionfs-fuse/package.nix b/pkgs/by-name/un/unionfs-fuse/package.nix index 044d53d94784..0e4fea8692ec 100644 --- a/pkgs/by-name/un/unionfs-fuse/package.nix +++ b/pkgs/by-name/un/unionfs-fuse/package.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { pname = "unionfs-fuse"; - version = "3.6"; + version = "3.7"; src = fetchFromGitHub { owner = "rpodgorny"; repo = "unionfs-fuse"; tag = "v${version}"; - hash = "sha256-1Fy3evatfEplgJjAVeXgdq1CkGgIi+iZjsO0WBHmmBM="; + hash = "sha256-wha1AMwJMbC5rZBE4ybeOmH7Dq4p5YdMJDCT/a3B6cI="; }; patches = [ From f3d411acd674b67f047d24d22052ce66aafa0988 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 00:56:05 +0000 Subject: [PATCH 095/146] smartgit: 24.1.4 -> 24.1.5 --- pkgs/by-name/sm/smartgit/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sm/smartgit/package.nix b/pkgs/by-name/sm/smartgit/package.nix index 63c535d6d17e..85c153ae6c17 100644 --- a/pkgs/by-name/sm/smartgit/package.nix +++ b/pkgs/by-name/sm/smartgit/package.nix @@ -16,13 +16,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "smartgit"; - version = "24.1.4"; + version = "24.1.5"; src = fetchurl { url = "https://www.syntevo.com/downloads/smartgit/smartgit-linux-${ builtins.replaceStrings [ "." ] [ "_" ] finalAttrs.version }.tar.gz"; - hash = "sha256-1JKFSIGUE8b1yWBg41x+HRWgmg5prZF2+ND/SId4NVs="; + hash = "sha256-YqueTbwA9KcXEJG5TeWkPzzNyAnnJQ1+VQYsqZKS2/I="; }; nativeBuildInputs = [ wrapGAppsHook3 ]; From 6d30ce519f9eba0a9e8a9a8d0b662de00989e0e4 Mon Sep 17 00:00:00 2001 From: emilylange Date: Tue, 23 Sep 2025 03:18:27 +0200 Subject: [PATCH 096/146] chromium: fix xlst rendering on `release-25.05` Due to ABI mismatches between our patched libxml2 and the vendored libxlst, chromium and all of electron-source compile just fine, but then fail to actually render xslt content at runtime. Note that as of now only release-25.05 is affected by this, but the same could happen on unstable too. libxlst depends on libxml2, so we should only ever use either our versions or the vendored versions for both, but never mix our and vendored versions. --- pkgs/applications/networking/browsers/chromium/common.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index f4de63a0bb49..cdf2aa9eaf65 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -164,7 +164,8 @@ let # //third_party/libavif:libavif_enc(//build/toolchain/linux/unbundle:default) # needs //third_party/libwebp:libwebp_sharpyuv(//build/toolchain/linux/unbundle:default) # "libwebp" - "libxslt" + "libxml" + "libxslt" # depends on libxml, always remove or re-add as a pair # "opus" ]; From 0d83bf0db367edb3d4df1dc0dbeb5168acbd166a Mon Sep 17 00:00:00 2001 From: emilylange Date: Tue, 23 Sep 2025 03:26:40 +0200 Subject: [PATCH 097/146] chromium: move `export` in `preConfigure` to `env.` Better late than never. This was intended to happen a long time ago. --- .../networking/browsers/chromium/common.nix | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index cdf2aa9eaf65..a6d28e16ed86 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -812,15 +812,7 @@ let // (extraAttrs.gnFlags or { }) ); - # TODO: Migrate this to env.RUSTC_BOOTSTRAP next mass-rebuild. - # Chromium expects nightly/bleeding edge rustc features to be available. - # Our rustc in nixpkgs follows stable, but since bootstrapping rustc requires - # nightly features too, we can (ab-)use RUSTC_BOOTSTRAP here as well to - # enable those features in our stable builds. - preConfigure = '' - export RUSTC_BOOTSTRAP=1 - '' - + lib.optionalString (!isElectron) '' + preConfigure = lib.optionalString (!isElectron) '' ( cd third_party/node grep patch update_npm_deps | sh @@ -841,6 +833,11 @@ let runHook postConfigure ''; + # Chromium expects nightly/bleeding edge rustc features to be available. + # Our rustc in nixpkgs follows stable, but since bootstrapping rustc requires + # nightly features too, we can (ab-)use RUSTC_BOOTSTRAP here as well to + # enable those features in our stable builds. + env.RUSTC_BOOTSTRAP = 1; # Mute some warnings that are enabled by default. This is useful because # our Clang is always older than Chromium's and the build logs have a size # of approx. 25 MB without this option (and this saves e.g. 66 %). From 77eebfdc8fd6bf4f21470f17eff1a12e7aaae595 Mon Sep 17 00:00:00 2001 From: kyehn Date: Tue, 23 Sep 2025 11:26:21 +0800 Subject: [PATCH 098/146] sourcery: 1.35.0 -> 1.37.0 --- pkgs/by-name/so/sourcery/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/so/sourcery/package.nix b/pkgs/by-name/so/sourcery/package.nix index e7312190f14c..5594087a5c2c 100644 --- a/pkgs/by-name/so/sourcery/package.nix +++ b/pkgs/by-name/so/sourcery/package.nix @@ -11,11 +11,11 @@ let platformInfos = { "x86_64-linux" = { platform = "manylinux1_x86_64"; - hash = "sha256-DRxj6wRl7ZQFvqQirGIpqhEo54QWCkgTie1tvpAIBoI="; + hash = "sha256-tnRFcgMgHGcWtTGPFZZPkE9IKDfvejLmvvD2iwPbbLY="; }; "x86_64-darwin" = { platform = "macosx_10_9_universal2"; - hash = "sha256-GW4gvMGylbMmAF9yhjjwpLu5wf5zmdzk1ECez8ml5Ic="; + hash = "sha256-6dbLiFUku0F+UiFV6P6nXpR6dezSntriVJyTfFaIgP0="; }; }; @@ -24,7 +24,7 @@ let in python3Packages.buildPythonApplication rec { pname = "sourcery"; - version = "1.35.0"; + version = "1.37.0"; format = "wheel"; src = fetchPypi { From eda08b38c9fb113ec30f4154858894af218a58b7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 03:45:44 +0000 Subject: [PATCH 099/146] openfga: 1.10.0 -> 1.10.1 --- pkgs/by-name/op/openfga/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/op/openfga/package.nix b/pkgs/by-name/op/openfga/package.nix index 86df655b995f..56bb31d8facd 100644 --- a/pkgs/by-name/op/openfga/package.nix +++ b/pkgs/by-name/op/openfga/package.nix @@ -7,7 +7,7 @@ let pname = "openfga"; - version = "1.10.0"; + version = "1.10.1"; in buildGoModule { @@ -17,10 +17,10 @@ buildGoModule { owner = "openfga"; repo = "openfga"; rev = "v${version}"; - hash = "sha256-9VzzjuLJTP0K6R6ACLqOdi767k2fMtKn84qjyRDLJMk="; + hash = "sha256-lk677ctvk2n+8GcZiNbTV3NeD5+xhhVuojhENQTcC0s="; }; - vendorHash = "sha256-nbjPl6FYfkmiGzLES6oi7QQmpLkfm9WaVn5RJJQqlz0="; + vendorHash = "sha256-8uI8Woiu6F81y2YCGXLHx7D+nO3D9jCHUI5FUq+ImXA="; nativeBuildInputs = [ installShellFiles ]; From 13886d3cf03df42936548942902ce4ecab70f750 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 04:24:57 +0000 Subject: [PATCH 100/146] python3Packages.x-transformers: 2.7.4 -> 2.7.6 --- pkgs/development/python-modules/x-transformers/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/x-transformers/default.nix b/pkgs/development/python-modules/x-transformers/default.nix index dca5c8318006..5a09fc479aa9 100644 --- a/pkgs/development/python-modules/x-transformers/default.nix +++ b/pkgs/development/python-modules/x-transformers/default.nix @@ -19,14 +19,14 @@ buildPythonPackage rec { pname = "x-transformers"; - version = "2.7.4"; + version = "2.7.6"; pyproject = true; src = fetchFromGitHub { owner = "lucidrains"; repo = "x-transformers"; tag = version; - hash = "sha256-H9g4LlNzZLM+RBNBvapwvVrYMF9XYHpnT5wfMspXCfE="; + hash = "sha256-AC/EyF/W9CM9Kjb94fDMSAxktfdZito/ZGB6lQABYvU="; }; build-system = [ hatchling ]; From 883d4da04a825c85cec75e76a0afad797adbc1f9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 05:15:05 +0000 Subject: [PATCH 101/146] python3Packages.dogpile-cache: 1.4.0 -> 1.4.1 --- pkgs/development/python-modules/dogpile-cache/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dogpile-cache/default.nix b/pkgs/development/python-modules/dogpile-cache/default.nix index 2a3abaf4b5ac..de8a540fd806 100644 --- a/pkgs/development/python-modules/dogpile-cache/default.nix +++ b/pkgs/development/python-modules/dogpile-cache/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "dogpile-cache"; - version = "1.4.0"; + version = "1.4.1"; pyproject = true; disabled = pythonOlder "3.9"; @@ -21,7 +21,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "dogpile_cache"; inherit version; - hash = "sha256-sAqeL0Cc+b9Iwuej4+aNrF+nWROsvxpi+CfIEtNfPQk="; + hash = "sha256-4lxg5nel4o/4YSR2X78YxTJXvNeDB0nNW6NQrOKhKYk="; }; build-system = [ setuptools ]; From e1fd483fd77f2c5ec9b2187d7331aa649dbc61de Mon Sep 17 00:00:00 2001 From: eyjhb Date: Thu, 4 Sep 2025 11:20:58 +0200 Subject: [PATCH 102/146] pythonPackages.appium-python-client: init at 5.2.4 --- .../appium-python-client/default.nix | 35 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 37 insertions(+) create mode 100644 pkgs/development/python-modules/appium-python-client/default.nix diff --git a/pkgs/development/python-modules/appium-python-client/default.nix b/pkgs/development/python-modules/appium-python-client/default.nix new file mode 100644 index 000000000000..4d59e67e0fb5 --- /dev/null +++ b/pkgs/development/python-modules/appium-python-client/default.nix @@ -0,0 +1,35 @@ +{ + lib, + fetchFromGitHub, + buildPythonPackage, + hatchling, + selenium, +}: + +buildPythonPackage rec { + pname = "appium-python-client"; + version = "5.2.4"; + pyproject = true; + + src = fetchFromGitHub { + owner = "appium"; + repo = "python-client"; + tag = "v${version}"; + sha256 = "sha256-oZquEwA1iNIVftt9XBdDfCoI3DLh7eM5/ATcrjJL+jA="; + }; + + build-system = [ hatchling ]; + + dependencies = [ + selenium + ]; + + pythonImportsCheck = [ "appium" ]; + + meta = { + description = "Cross-platform automation framework for all kinds of apps, built on top of the W3C WebDriver protocol"; + homepage = "https://appium.io/"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ eyjhb ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index acfab6557f9e..45a2c2ca1598 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -801,6 +801,8 @@ self: super: with self; { appimage = callPackage ../development/python-modules/appimage { }; + appium-python-client = callPackage ../development/python-modules/appium-python-client { }; + apple-weatherkit = callPackage ../development/python-modules/apple-weatherkit { }; applicationinsights = callPackage ../development/python-modules/applicationinsights { }; From 04e22d64427dc2a7e74e484588c34d3fd0a2c31b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 06:01:14 +0000 Subject: [PATCH 103/146] python3Packages.mayim: 1.1.0 -> 1.2.0 --- pkgs/development/python-modules/mayim/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mayim/default.nix b/pkgs/development/python-modules/mayim/default.nix index 8c4cbd41fb51..47d33a4c6aa5 100644 --- a/pkgs/development/python-modules/mayim/default.nix +++ b/pkgs/development/python-modules/mayim/default.nix @@ -18,14 +18,14 @@ buildPythonPackage rec { pname = "mayim"; - version = "1.1.0"; + version = "1.2.0"; pyproject = true; src = fetchFromGitHub { owner = "ahopkins"; repo = "mayim"; tag = "v${version}"; - hash = "sha256-nb0E9kMEJUihaCp8RnqGh0nSyDQo50eL1C4K5lBPlPQ="; + hash = "sha256-azAx/+y1wrUsacCmQ1SCSkn4svf6GzSfhEW3WJwjoks="; }; build-system = [ From 36536a38684e6512c4abb6a4acad9f9748fcef73 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 06:18:11 +0000 Subject: [PATCH 104/146] libretro.gpsp: 0-unstable-2025-09-07 -> 0-unstable-2025-09-17 --- pkgs/applications/emulators/libretro/cores/gpsp.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/gpsp.nix b/pkgs/applications/emulators/libretro/cores/gpsp.nix index 3c1ce017cd7c..b2743bf45d3e 100644 --- a/pkgs/applications/emulators/libretro/cores/gpsp.nix +++ b/pkgs/applications/emulators/libretro/cores/gpsp.nix @@ -5,13 +5,13 @@ }: mkLibretroCore { core = "gpsp"; - version = "0-unstable-2025-09-07"; + version = "0-unstable-2025-09-17"; src = fetchFromGitHub { owner = "libretro"; repo = "gpsp"; - rev = "f7a6a4314697ea5e4821a15aa7110795679f6ade"; - hash = "sha256-g63KIeQUvCg9LbixeXF2JRgUEFlzBMctXV8IFqvR0sg="; + rev = "a545aafaf4e654a488f4588f4f302d8413a58066"; + hash = "sha256-94J5WqlvBgfF/0aj0Pu61psG5pbhJVsZOiIbMdZ+ryQ="; }; makefile = "Makefile"; From 2ff4333d64180ae4e94c12b79c27b21293772108 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 07:30:13 +0000 Subject: [PATCH 105/146] crush: 0.7.10 -> 0.9.2 --- pkgs/by-name/cr/crush/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/cr/crush/package.nix b/pkgs/by-name/cr/crush/package.nix index e4518335bf3c..10165ff07454 100644 --- a/pkgs/by-name/cr/crush/package.nix +++ b/pkgs/by-name/cr/crush/package.nix @@ -9,16 +9,16 @@ buildGo125Module (finalAttrs: { pname = "crush"; - version = "0.7.10"; + version = "0.9.2"; src = fetchFromGitHub { owner = "charmbracelet"; repo = "crush"; tag = "v${finalAttrs.version}"; - hash = "sha256-z7x//aTJCcAa3RkB8QOtdeU9dBcOKkJD3ftFiCt/WQo="; + hash = "sha256-VFAGjNtXKNjkv8Ryi28oFN/uLomXXdw6NFtyjT3pMEY="; }; - vendorHash = "sha256-AZOX2aRYkuLx0DRCS5dqsRCPwpHngqDc+97luRr0m0g="; + vendorHash = "sha256-ktF3kIr143uPwiEbgafladZRqIsmG6jI2BeumGSu82U="; # rename TestMain to prevent it from running, as it panics in the sandbox. postPatch = '' From 08eb7de3e77ea04233e203bed3294106bece4a8b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 07:33:16 +0000 Subject: [PATCH 106/146] vscode-extensions.tabnine.tabnine-vscode: 3.314.1 -> 3.315.0 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index d9055becb608..7fcb1e535598 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -4524,8 +4524,8 @@ let mktplcRef = { name = "tabnine-vscode"; publisher = "tabnine"; - version = "3.314.1"; - hash = "sha256-KWXQY4HyK7s4mNGh6x1eDK6okC5rxWe916RjlsACQxA="; + version = "3.315.0"; + hash = "sha256-y6nTUDMQtJWZA30/jWTu0Kj9EMYkLGUAq7xvBvwGpeY="; }; meta = { license = lib.licenses.mit; From a262a26e171869aaa479525bdd07b886f0e122d3 Mon Sep 17 00:00:00 2001 From: Jost Alemann Date: Tue, 23 Sep 2025 10:37:24 +0200 Subject: [PATCH 107/146] harper: 0.64.0 -> 0.65.0 Changelog: https://github.com/Automattic/harper/releases/tag/v0.65.0 Diff: https://github.com/Automattic/harper/compare/v0.64.0...v0.65.0 --- pkgs/by-name/ha/harper/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ha/harper/package.nix b/pkgs/by-name/ha/harper/package.nix index 7109e1875948..fea0e094595c 100644 --- a/pkgs/by-name/ha/harper/package.nix +++ b/pkgs/by-name/ha/harper/package.nix @@ -7,18 +7,18 @@ rustPlatform.buildRustPackage rec { pname = "harper"; - version = "0.64.0"; + version = "0.65.0"; src = fetchFromGitHub { owner = "Automattic"; repo = "harper"; rev = "v${version}"; - hash = "sha256-gg9fW77VYCg3/CRtVxJ3xSrJberL0ECQW4ilEZEpFL4="; + hash = "sha256-y2oYEJTZWZ7Rc7ZLjYUh3Cy9dtznGLhIXzJ6D0JUIGw="; }; buildAndTestSubdir = "harper-ls"; - cargoHash = "sha256-QuunnKfrNOd1/uMNcs8U/odi7L7CLHAFfh0hrhFlcz0="; + cargoHash = "sha256-o6RFBCvPn3AH3mMI3guHziqOcYN99o8yk5b6VXWoepI="; passthru.updateScript = nix-update-script { }; From cbb91e9dc7f0c1ab70441a8005a2573483408a56 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 23 Sep 2025 08:43:36 +0000 Subject: [PATCH 108/146] python3Packages.gymnasium: 1.2.0 -> 1.2.1 Diff: https://github.com/Farama-Foundation/gymnasium/compare/v1.2.0...v1.2.1 Changelog: https://github.com/Farama-Foundation/Gymnasium/releases/tag/v1.2.1 --- pkgs/development/python-modules/gymnasium/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/gymnasium/default.nix b/pkgs/development/python-modules/gymnasium/default.nix index 86e3fe22186e..79fbf315b7e6 100644 --- a/pkgs/development/python-modules/gymnasium/default.nix +++ b/pkgs/development/python-modules/gymnasium/default.nix @@ -38,7 +38,7 @@ buildPythonPackage rec { pname = "gymnasium"; - version = "1.2.0"; + version = "1.2.1"; pyproject = true; @@ -46,7 +46,7 @@ buildPythonPackage rec { owner = "Farama-Foundation"; repo = "gymnasium"; tag = "v${version}"; - hash = "sha256-fQsz1Qpef9js+iqkqbfxrTQgcZT+JKjwpEiWewju2Dc="; + hash = "sha256-KevA7AW73ppN6KuE0jAE3xfm/1ZWZxHtHbeNM6RC9yI="; }; build-system = [ setuptools ]; From 045081877d6a81f3d845a0e34ba1e0dc03817637 Mon Sep 17 00:00:00 2001 From: liberodark Date: Tue, 16 Sep 2025 15:06:15 +0200 Subject: [PATCH 109/146] qdrant: 1.14.0 -> 1.15.4 --- pkgs/by-name/qd/qdrant/package.nix | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/qd/qdrant/package.nix b/pkgs/by-name/qd/qdrant/package.nix index c28565ac4e03..ee3f209ddac0 100644 --- a/pkgs/by-name/qd/qdrant/package.nix +++ b/pkgs/by-name/qd/qdrant/package.nix @@ -6,22 +6,23 @@ pkg-config, openssl, rust-jemalloc-sys, - nix-update-script, rust-jemalloc-sys-unprefixed, + versionCheckHook, + nix-update-script, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage (finalAttrs: { pname = "qdrant"; - version = "1.14.0"; + version = "1.15.4"; src = fetchFromGitHub { owner = "qdrant"; repo = "qdrant"; - tag = "v${version}"; - hash = "sha256-o9Nv4UsFgVngKWpe5sUR8tovtpB81tJBSm6We6DN20c="; + tag = "v${finalAttrs.version}"; + hash = "sha256-t+j7gq0PidvBGkjkyU8Zny9bgjKGNITUJOmyFnneZVY="; }; - cargoHash = "sha256-xt7uu+YZGazbKwXEKXeIwcGg8G4djQx7nKpQYFv/L3Y="; + cargoHash = "sha256-bcPSHoUOUliAU+GersU4auzdUiv9PPuAjrPO/FxovB8="; nativeBuildInputs = [ protobuf @@ -38,6 +39,17 @@ rustPlatform.buildRustPackage rec { # Needed to get openssl-sys to use pkg-config. env.OPENSSL_NO_VENDOR = 1; + # Fix cargo-auditable issue with bench_rocksdb = ["dep:rocksdb"] + auditable = false; + + __darwinAllowLocalNetworking = true; + + nativeInstallCheckInputs = [ + versionCheckHook + ]; + versionCheckProgramArg = "--version"; + doInstallCheck = true; + passthru.updateScript = nix-update-script { }; meta = { @@ -50,4 +62,4 @@ rustPlatform.buildRustPackage rec { license = lib.licenses.asl20; maintainers = with lib.maintainers; [ dit7ya ]; }; -} +}) From 774303d8277714c553d10444c707a9ac09d9d014 Mon Sep 17 00:00:00 2001 From: Bruno Rodrigues Date: Tue, 23 Sep 2025 12:06:00 +0200 Subject: [PATCH 110/146] python3Packages.saiph: init at version 2.0.3 --- .../python-modules/saiph/default.nix | 66 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 68 insertions(+) create mode 100644 pkgs/development/python-modules/saiph/default.nix diff --git a/pkgs/development/python-modules/saiph/default.nix b/pkgs/development/python-modules/saiph/default.nix new file mode 100644 index 000000000000..db2628231ca0 --- /dev/null +++ b/pkgs/development/python-modules/saiph/default.nix @@ -0,0 +1,66 @@ +{ + lib, + buildPythonPackage, + poetry-core, + fetchFromGitHub, + pytestCheckHook, + doubles, + msgspec, + numpy, + pandas, + pydantic, + scikit-learn, + scipy, + toolz, +}: + +buildPythonPackage rec { + pname = "saiph"; + version = "2.0.3"; + + src = fetchFromGitHub { + owner = "octopize"; + repo = "saiph"; + tag = "saiph-v${version}"; + hash = "sha256-8AbV3kjPxjZo28CgahfbdNl9+ESWOfUt8YT+mWwbo5Q="; + }; + + pyproject = true; + + build-system = [ + poetry-core + ]; + + dependencies = [ + doubles + msgspec + numpy + pandas + pydantic + scikit-learn + scipy + toolz + ]; + + # No need for benchmarks + disabledTests = [ + "benchmark_test.py" + ]; + + nativeCheckInputs = [ + pytestCheckHook + ]; + + pythonRelaxDeps = true; + + pythonImportsCheck = [ + "saiph" + ]; + + meta = { + description = "Package enabling to project data"; + homepage = "https://github.com/octopize/saiph"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ b-rodrigues ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0fa2df7e9269..8289d0849653 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16293,6 +16293,8 @@ self: super: with self; { sagemaker-mlflow = callPackage ../development/python-modules/sagemaker-mlflow { }; + saiph = callPackage ../development/python-modules/saiph { }; + salib = callPackage ../development/python-modules/salib { }; salmon-mail = callPackage ../development/python-modules/salmon-mail { }; From 95ddc3dfd4ae30a9d95d6d830122a6a90bf90fd7 Mon Sep 17 00:00:00 2001 From: osbm Date: Tue, 23 Sep 2025 13:30:30 +0300 Subject: [PATCH 111/146] python3Packages.huggingface-hub: 0.34.4 -> 0.35.0, add osbm to maintainers --- .../python-modules/huggingface-hub/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/huggingface-hub/default.nix b/pkgs/development/python-modules/huggingface-hub/default.nix index d0777a4170c2..0a2a992da1f2 100644 --- a/pkgs/development/python-modules/huggingface-hub/default.nix +++ b/pkgs/development/python-modules/huggingface-hub/default.nix @@ -40,14 +40,14 @@ buildPythonPackage rec { pname = "huggingface-hub"; - version = "0.34.4"; + version = "0.35.0"; pyproject = true; src = fetchFromGitHub { owner = "huggingface"; repo = "huggingface_hub"; tag = "v${version}"; - hash = "sha256-2R4G/2VBj/URVdVn/1dPBDdFCdXZymPc2zdbzddyYwU="; + hash = "sha256-b7zuqY1d2wBjqyQ3nxhXg33limR1Nq3dGS2YoY5xcsQ="; }; build-system = [ setuptools ]; @@ -107,10 +107,13 @@ buildPythonPackage rec { meta = { description = "Download and publish models and other files on the huggingface.co hub"; - mainProgram = "huggingface-cli"; + mainProgram = "hf"; homepage = "https://github.com/huggingface/huggingface_hub"; changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/v${version}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ GaetanLepage ]; + maintainers = with lib.maintainers; [ + GaetanLepage + osbm + ]; }; } From fac3f76f8a3bfae2cad73287b8661a19aee5b3fc Mon Sep 17 00:00:00 2001 From: Ludovico Piero Date: Tue, 23 Sep 2025 10:22:04 +0000 Subject: [PATCH 112/146] gallery-dl: 1.30.7 -> 1.30.8 Changelog: https://github.com/mikf/gallery-dl/releases/tag/v1.30.8 --- pkgs/by-name/ga/gallery-dl/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ga/gallery-dl/package.nix b/pkgs/by-name/ga/gallery-dl/package.nix index 0f5f44b5aea8..0873dab3f363 100644 --- a/pkgs/by-name/ga/gallery-dl/package.nix +++ b/pkgs/by-name/ga/gallery-dl/package.nix @@ -8,7 +8,7 @@ let pname = "gallery-dl"; - version = "1.30.7"; + version = "1.30.8"; in python3Packages.buildPythonApplication { inherit pname version; @@ -18,7 +18,7 @@ python3Packages.buildPythonApplication { owner = "mikf"; repo = "gallery-dl"; tag = "v${version}"; - hash = "sha256-VFmTZpcTQQK5sfwgMJGDqHp7wu5dXd4gGfJTtnLBoxk="; + hash = "sha256-jetfEjKwAtJwOLKRZfnnnlb7G5YCDUzeHIASqJS3gcI="; }; build-system = [ python3Packages.setuptools ]; From bff07cee95bc81cefab9bb32181aa4dd6948a714 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 10:32:56 +0000 Subject: [PATCH 113/146] terraform-providers.azurerm: 4.44.0 -> 4.45.1 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index c23eed203708..4103c5bd36b4 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -153,11 +153,11 @@ "vendorHash": null }, "azurerm": { - "hash": "sha256-/7TF9ISbrM4ZYyJKBZ3OrZsNp4a7BKtda12hnuPVS6E=", + "hash": "sha256-HlsJ85NXDykycTOCA+LbjeV5Jx4VWRDVFyKtx51n22Y=", "homepage": "https://registry.terraform.io/providers/hashicorp/azurerm", "owner": "hashicorp", "repo": "terraform-provider-azurerm", - "rev": "v4.44.0", + "rev": "v4.45.1", "spdx": "MPL-2.0", "vendorHash": null }, From 851fcf933472811f9ac203d418de7a026a9dee7c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 10:36:45 +0000 Subject: [PATCH 114/146] python3Packages.repl-python-wakatime: 0.0.12 -> 0.1.1 --- .../python-modules/repl-python-wakatime/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/repl-python-wakatime/default.nix b/pkgs/development/python-modules/repl-python-wakatime/default.nix index 3c9be8145a5e..5eb699fde156 100644 --- a/pkgs/development/python-modules/repl-python-wakatime/default.nix +++ b/pkgs/development/python-modules/repl-python-wakatime/default.nix @@ -13,14 +13,14 @@ buildPythonPackage rec { pname = "repl-python-wakatime"; - version = "0.0.12"; + version = "0.1.1"; pyproject = true; src = fetchFromGitHub { owner = "wakatime"; repo = "repl-python-wakatime"; tag = version; - hash = "sha256-fp59usITk7gsUIhrnH5vj36kU1u2QWyu/bs46RDz+As="; + hash = "sha256-1uzW3Q1PE4Gdpo354JewzkR8UREPrAFMXiwOKEMbW3M="; }; build-system = [ From 507f90916647e7759c700e0c6e1d0166aad1ea79 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 10:43:32 +0000 Subject: [PATCH 115/146] open-pdf-sign: 0.2.1 -> 0.3.0 --- pkgs/by-name/op/open-pdf-sign/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/op/open-pdf-sign/package.nix b/pkgs/by-name/op/open-pdf-sign/package.nix index 923df6d2e0a6..d3e036d64427 100644 --- a/pkgs/by-name/op/open-pdf-sign/package.nix +++ b/pkgs/by-name/op/open-pdf-sign/package.nix @@ -8,12 +8,12 @@ }: stdenv.mkDerivation (finalAttrs: { - version = "0.2.1"; + version = "0.3.0"; pname = "open-pdf-sign"; src = fetchurl { url = "https://github.com/open-pdf-sign/open-pdf-sign/releases/download/v${finalAttrs.version}/open-pdf-sign.jar"; - hash = "sha256-jtaEystCiZUK93HkVPuWzAUISO4RMMxjMmFbooWZJGU="; + hash = "sha256-tGTWKw/xLhC1B+uogTUmWHUtHNNdE3BLuxToWvrduXs="; }; nativeBuildInputs = [ From b096fc755b0ff3a7573420983a346f54d954836f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 11:41:34 +0000 Subject: [PATCH 116/146] python3Packages.django-htmx: 1.24.1 -> 1.26.0 --- pkgs/development/python-modules/django-htmx/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/django-htmx/default.nix b/pkgs/development/python-modules/django-htmx/default.nix index d073e009d3b3..3d193ee919a6 100644 --- a/pkgs/development/python-modules/django-htmx/default.nix +++ b/pkgs/development/python-modules/django-htmx/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "django-htmx"; - version = "1.24.1"; + version = "1.26.0"; pyproject = true; disabled = pythonOlder "3.9"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "adamchainz"; repo = "django-htmx"; rev = version; - hash = "sha256-pxCC/LTvk2bKARb+eOCQgspp7WibnWdIvgUPf+yYRyw="; + hash = "sha256-cJpZsjPAg1ss1dxhvjY+Xw29xAzuHzlVSDxUfAU9fgI="; }; build-system = [ setuptools ]; From f8ab16bae448bd0d678115db904a859dc9c217e7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 12:13:44 +0000 Subject: [PATCH 117/146] python3Packages.arpeggio: 2.0.2 -> 2.0.3 --- pkgs/development/python-modules/arpeggio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/arpeggio/default.nix b/pkgs/development/python-modules/arpeggio/default.nix index cd98f61d4e52..da31dac82103 100644 --- a/pkgs/development/python-modules/arpeggio/default.nix +++ b/pkgs/development/python-modules/arpeggio/default.nix @@ -7,13 +7,13 @@ buildPythonPackage rec { pname = "arpeggio"; - version = "2.0.2"; + version = "2.0.3"; format = "setuptools"; src = fetchPypi { pname = "Arpeggio"; inherit version; - hash = "sha256-x5CysG4ibS3UaOT7+1t/UGzsZkFgMf3hRBzx3ioLpwA="; + hash = "sha256-noWtNc/GyThnaBfHrpoQAKfHKjTHHbDGhxNsRg0SuF4="; }; nativeCheckInputs = [ pytestCheckHook ]; From 55d33dba1a845300630cef6f6bcb23d477692905 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 12:20:20 +0000 Subject: [PATCH 118/146] terraform-providers.gitlab: 18.3.0 -> 18.4.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 c23eed203708..ff3ceb9dc265 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -516,13 +516,13 @@ "vendorHash": null }, "gitlab": { - "hash": "sha256-BMXxg6yz0b33yZK/Q8tkqDqPbYlrJWMvMenucDs+qUo=", + "hash": "sha256-wggQtY+E4O/iWo0OrjPlxK8j2aLavRAG31RpOOC08AY=", "homepage": "https://registry.terraform.io/providers/gitlabhq/gitlab", "owner": "gitlabhq", "repo": "terraform-provider-gitlab", - "rev": "v18.3.0", + "rev": "v18.4.1", "spdx": "MPL-2.0", - "vendorHash": "sha256-v0nYsQinopJ9DXtkGFe3bIYXMBMsPDafn71Xfmvi2mo=" + "vendorHash": "sha256-29uvPCepGHRPohGY7viaPD9VQPPj9XB/plragACC4e4=" }, "google": { "hash": "sha256-BDMOYw/NPCBb5VuJZGNbACJ/dq2uh+wx/y0w6LGWgwE=", From e5f5043aec623847e32c01e9e1da9636fa288476 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 12:30:03 +0000 Subject: [PATCH 119/146] gnome-pomodoro: 0.27.0 -> 0.28.0 --- pkgs/by-name/gn/gnome-pomodoro/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gn/gnome-pomodoro/package.nix b/pkgs/by-name/gn/gnome-pomodoro/package.nix index 2c9eeef32709..7a3c4e200ff4 100644 --- a/pkgs/by-name/gn/gnome-pomodoro/package.nix +++ b/pkgs/by-name/gn/gnome-pomodoro/package.nix @@ -24,13 +24,13 @@ }: stdenv.mkDerivation rec { pname = "gnome-pomodoro"; - version = "0.27.0"; + version = "0.28.0"; src = fetchFromGitHub { owner = "gnome-pomodoro"; repo = "gnome-pomodoro"; rev = version; - hash = "sha256-ZdTMaCzjA7tsXmnlHGl8MFGGViVPwMZuiu91q5v/v9U="; + hash = "sha256-cVuBJ1Rwh/mjlFKKRJkKmdtDHdWNc6uiEE3ywCesirU="; }; patches = [ From 3e12c31f6af8d479105da6f539739e11e4463eb4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 13:02:44 +0000 Subject: [PATCH 120/146] solo5: 0.9.2 -> 0.9.3 --- pkgs/by-name/so/solo5/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/so/solo5/package.nix b/pkgs/by-name/so/solo5/package.nix index 2cf85885c954..7f92d9d08b15 100644 --- a/pkgs/by-name/so/solo5/package.nix +++ b/pkgs/by-name/so/solo5/package.nix @@ -14,7 +14,7 @@ }: let - version = "0.9.2"; + version = "0.9.3"; # list of all theoretically available targets targets = [ "genode" @@ -37,7 +37,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://github.com/Solo5/solo5/releases/download/v${version}/solo5-v${version}.tar.gz"; - hash = "sha256-HiYi6VECDVZXJboTt6DwggyUyUhdlU4C7fwqYzvKWZs="; + hash = "sha256-KbeY667Y/ZPUuRIGYOZMMAuVEVJ7Kn9UDUSThX5zfII="; }; hardeningEnable = [ "pie" ]; From 3a316fc4c4a91352974669e509becaa163795f76 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Tue, 23 Sep 2025 20:01:36 +0800 Subject: [PATCH 121/146] cinnamon: 6.4.12 -> 6.4.13 https://github.com/linuxmint/cinnamon/compare/6.4.12...6.4.13 --- pkgs/by-name/ci/cinnamon/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ci/cinnamon/package.nix b/pkgs/by-name/ci/cinnamon/package.nix index 3e693757909d..f22db1eca8c4 100644 --- a/pkgs/by-name/ci/cinnamon/package.nix +++ b/pkgs/by-name/ci/cinnamon/package.nix @@ -76,13 +76,13 @@ let in stdenv.mkDerivation rec { pname = "cinnamon"; - version = "6.4.12"; + version = "6.4.13"; src = fetchFromGitHub { owner = "linuxmint"; repo = "cinnamon"; rev = version; - hash = "sha256-fEi/dUPnHC0OFqefclf0gQsZZNRVzBLaIR41prUfNP8="; + hash = "sha256-XGG5Qf6Kx1gvZITuuZWn1ggY4FNW/aEuBLbpWyxE2V8="; }; patches = [ From d20491107cd23ee0f2f8aabc4915f1670de1dc73 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Tue, 23 Sep 2025 16:14:39 +0200 Subject: [PATCH 122/146] phel: 0.21.0 -> 0.22.2 Diff: https://github.com/phel-lang/phel-lang/compare/v0.22.1...v0.22.2 Changelog: https://github.com/phel-lang/phel-lang/releases/tag/v0.22.2 --- pkgs/by-name/ph/phel/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ph/phel/package.nix b/pkgs/by-name/ph/phel/package.nix index cbef97e3c891..fd3c3395894a 100644 --- a/pkgs/by-name/ph/phel/package.nix +++ b/pkgs/by-name/ph/phel/package.nix @@ -7,16 +7,16 @@ php.buildComposerProject2 (finalAttrs: { pname = "phel"; - version = "0.21.0"; + version = "0.22.2"; src = fetchFromGitHub { owner = "phel-lang"; repo = "phel-lang"; tag = "v${finalAttrs.version}"; - hash = "sha256-4s3PCgaJfJR9+XXqT2WLrEwNUSLLCIOb+nJ8w9SbKps="; + hash = "sha256-MaCL4CLFd5B2hKwvobuye+MHlpNiIi3f47ftvvAeFiU="; }; - vendorHash = "sha256-4/J3TJPdbj+eAneMwxP73N1cI53hJSEQg4G+LlQOJeE="; + vendorHash = "sha256-ney12GFiYKFcJPj9ptmTN20BhlmCyHb/7q7+tbxz71o="; doInstallCheck = true; nativeInstallCheckInputs = [ versionCheckHook ]; From 1054f236232d23932843efc1d0427061b4f54e2b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 14:44:41 +0000 Subject: [PATCH 123/146] crispy-doom: 7.0 -> 7.1 --- pkgs/by-name/cr/crispy-doom/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/cr/crispy-doom/package.nix b/pkgs/by-name/cr/crispy-doom/package.nix index e2d5632915c5..e585d41f6230 100644 --- a/pkgs/by-name/cr/crispy-doom/package.nix +++ b/pkgs/by-name/cr/crispy-doom/package.nix @@ -17,13 +17,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "crispy-doom"; - version = "7.0"; + version = "7.1"; src = fetchFromGitHub { owner = "fabiangreffrath"; repo = "crispy-doom"; tag = "crispy-doom-${finalAttrs.version}"; - hash = "sha256-+rNZsb4GAjzNcIU5xZGBpmP+nXNOP16oVg68nfecMrw="; + hash = "sha256-LJLqlPSOarmm5oqSLMilxNMJl4+uKukDl/b58NpZ8VI="; }; postPatch = '' From af55528133479d5873d5263f112758e1b6296ef9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 21 Sep 2025 15:29:55 +0200 Subject: [PATCH 124/146] python313Packages.whitenoise: 6.9.0 -> 6.11.0 Diff: https://github.com/evansd/whitenoise/compare/6.9.0...6.11.0 Changelog: https://github.com/evansd/whitenoise/blob/6.11.0/docs/changelog.rst --- .../python-modules/whitenoise/default.nix | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/whitenoise/default.nix b/pkgs/development/python-modules/whitenoise/default.nix index 7f82b11c3600..f0b08a5d928b 100644 --- a/pkgs/development/python-modules/whitenoise/default.nix +++ b/pkgs/development/python-modules/whitenoise/default.nix @@ -11,16 +11,18 @@ buildPythonPackage rec { pname = "whitenoise"; - version = "6.9.0"; + version = "6.11.0"; pyproject = true; src = fetchFromGitHub { owner = "evansd"; repo = "whitenoise"; tag = version; - hash = "sha256-UmM8Az22ql3uUpyY6jj7ky3LelmttFBqGMYlzlNRAHg="; + hash = "sha256-pcU4qa2dlyPfMgyi1O8zME4GukIvKN4MQhFtJJjdn9w="; }; + __darwinAllowLocalNetworking = true; + build-system = [ setuptools ]; dependencies = [ brotli ]; @@ -31,15 +33,6 @@ buildPythonPackage rec { requests ]; - __darwinAllowLocalNetworking = true; - - disabledTestPaths = [ - # Don't run Django tests - "tests/test_django_whitenoise.py" - "tests/test_runserver_nostatic.py" - "tests/test_storage.py" - ]; - disabledTests = [ # Test fails with AssertionError "test_modified" From c4e71ec2b0cb6e8d2ec78199c25b73b3d344eaaf Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 23 Sep 2025 16:57:35 +0200 Subject: [PATCH 125/146] searxng: relax whitenoise --- pkgs/by-name/se/searxng/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/se/searxng/package.nix b/pkgs/by-name/se/searxng/package.nix index a4c214de36df..06be3a17c5f3 100644 --- a/pkgs/by-name/se/searxng/package.nix +++ b/pkgs/by-name/se/searxng/package.nix @@ -32,6 +32,7 @@ python.pkgs.toPythonModule ( "httpx-socks" "lxml" "typer-slim" + "whitenoise" ]; preBuild = From c0c1c10762c3be36bdb007faf09a4824a9cea776 Mon Sep 17 00:00:00 2001 From: Kerstin Humm Date: Tue, 23 Sep 2025 16:36:08 +0200 Subject: [PATCH 126/146] mastodon: 4.4.4 -> 4.4.5 Changelog: https://github.com/mastodon/mastodon/releases/tag/v4.4.5 --- pkgs/servers/mastodon/gemset.nix | 4 ++-- pkgs/servers/mastodon/source.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/mastodon/gemset.nix b/pkgs/servers/mastodon/gemset.nix index 4e0a6618028f..110a4827443e 100644 --- a/pkgs/servers/mastodon/gemset.nix +++ b/pkgs/servers/mastodon/gemset.nix @@ -3727,10 +3727,10 @@ platforms = [ ]; source = { remotes = [ "https://rubygems.org" ]; - sha256 = "1jmbf6lf7pcyacpb939xjjpn1f84c3nw83dy3p1lwjx0l2ljfif7"; + sha256 = "0hninnbvqd2pn40h863lbrn9p11gvdxp928izkag5ysx8b1s5q0r"; type = "gem"; }; - version = "3.4.1"; + version = "3.4.4"; }; rotp = { groups = [ "default" ]; diff --git a/pkgs/servers/mastodon/source.nix b/pkgs/servers/mastodon/source.nix index d2889f4d5710..2e1b352525f1 100644 --- a/pkgs/servers/mastodon/source.nix +++ b/pkgs/servers/mastodon/source.nix @@ -5,14 +5,14 @@ patches ? [ ], }: let - version = "4.4.4"; + version = "4.4.5"; in applyPatches { src = fetchFromGitHub { owner = "mastodon"; repo = "mastodon"; rev = "v${version}"; - hash = "sha256-60d+mOFOEihS21MOXStXsDOxyKTifbbZ+cwSj/KvFpg="; + hash = "sha256-+URMSqjdtxYHoVHXWzeIHETOlAs1WU+VxSQBVIEdhjI="; passthru = { inherit version; yarnHash = "sha256-K1EqeLi4dWnaLIaUU5apxE5ZOM98XBn6KTHWTkPLWE0="; From cf16bc5627678c3a7582ca51356c7b930180b2b8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 15:54:00 +0000 Subject: [PATCH 127/146] kubeseal: 0.32.1 -> 0.32.2 --- pkgs/by-name/ku/kubeseal/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ku/kubeseal/package.nix b/pkgs/by-name/ku/kubeseal/package.nix index 6faea2667ea9..3349ef9d4d35 100644 --- a/pkgs/by-name/ku/kubeseal/package.nix +++ b/pkgs/by-name/ku/kubeseal/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "kubeseal"; - version = "0.32.1"; + version = "0.32.2"; src = fetchFromGitHub { owner = "bitnami-labs"; repo = "sealed-secrets"; rev = "v${version}"; - sha256 = "sha256-JwOKyxbLy1BikRSVPONDO57YyhhaqOELZSVlMlsfUUw="; + sha256 = "sha256-WT/dNXFZ8wD2mRv4fz+R1N8YJgui0jsicreYTNVABkM="; }; - vendorHash = "sha256-zoi8Z5Jmg5E1c9B4m6870hvX0C3gFDzOCdGbdlBa70M="; + vendorHash = "sha256-PZTqR3HXXO5+mBb+y423YJAmx6dwqz6VKtWhvJBLGYs="; subPackages = [ "cmd/kubeseal" ]; From eed8a86c396bada66d8747ccb42b4a24fca97c86 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 16:10:23 +0000 Subject: [PATCH 128/146] terraform-providers.fortios: 1.22.1 -> 1.22.2 --- .../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 c23eed203708..08d85c6f1b5d 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -480,13 +480,13 @@ "vendorHash": "sha256-ZbU2z7qUHPR7vDSflesSjgK7x3LYXVe/gnVsy19q6Bs=" }, "fortios": { - "hash": "sha256-vQ5PYY2EJb7+O65YbyqmIPKiqsd9UysnZXYGzZvkTPQ=", + "hash": "sha256-1HkVSoGt9PPPv8OH9F+acedVD0sbQ42msd6OWyegZFI=", "homepage": "https://registry.terraform.io/providers/fortinetdev/fortios", "owner": "fortinetdev", "repo": "terraform-provider-fortios", - "rev": "1.22.1", + "rev": "1.22.2", "spdx": "MPL-2.0", - "vendorHash": "sha256-9BBBmuj7rEX5h3LEZzw7C7AtwvJgo7yEGReQ38lfE6U=" + "vendorHash": "sha256-1DXlugtN2G2HrKbIEJ3rJ9zRlbE8fEUdlt3gp0mRdso=" }, "gandi": { "hash": "sha256-fsCtmwyxkXfOtiZG27VEb010jglK35yr4EynnUWlFog=", From debbfa3e871488e4471d2a3d3fc96c85aaaedba0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 16:15:12 +0000 Subject: [PATCH 129/146] patch2pr: 0.37.0 -> 0.38.0 --- pkgs/by-name/pa/patch2pr/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/pa/patch2pr/package.nix b/pkgs/by-name/pa/patch2pr/package.nix index 7c87662cc6d9..d24ceb055384 100644 --- a/pkgs/by-name/pa/patch2pr/package.nix +++ b/pkgs/by-name/pa/patch2pr/package.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "patch2pr"; - version = "0.37.0"; + version = "0.38.0"; src = fetchFromGitHub { owner = "bluekeyes"; repo = "patch2pr"; rev = "v${version}"; - hash = "sha256-dijSa6BXV8hXuRDeXIHcijPzQKFkmATrlAX0uiDDYjo="; + hash = "sha256-WkjO6FBeJ5E2bc4PT9lkfNq5CYL3Kh1Mgai+39YDzSU="; }; - vendorHash = "sha256-QEgGq5/JQUIWWmJKoQ832eKhiF5xF8Jivpn1uFDERTA="; + vendorHash = "sha256-RiaFvvPwNxfQE6F93BdPT+LLmUkNC9sYOfHyFgG9/30="; ldflags = [ "-X main.version=${version}" From 4ec3096cf9f53a1a87d3e2563174a18fece8828f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 16:15:54 +0000 Subject: [PATCH 130/146] pgroll: 0.14.2 -> 0.14.3 --- pkgs/by-name/pg/pgroll/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pg/pgroll/package.nix b/pkgs/by-name/pg/pgroll/package.nix index eaf7d9033f74..424762e6fb1b 100644 --- a/pkgs/by-name/pg/pgroll/package.nix +++ b/pkgs/by-name/pg/pgroll/package.nix @@ -8,13 +8,13 @@ buildGoModule rec { pname = "pgroll"; - version = "0.14.2"; + version = "0.14.3"; src = fetchFromGitHub { owner = "xataio"; repo = "pgroll"; tag = "v${version}"; - hash = "sha256-tSiGzWxnxiNzBSory5sd676+iVwsl/nkbDWaCls52MQ="; + hash = "sha256-OqBgFeXpvoImoPMKHBCvsPQGhHSBZuNNMLh2/3DPPYo="; }; proxyVendor = true; From a0ecd3e88f2eec369791f386d3c3b4b1bdc8b55f Mon Sep 17 00:00:00 2001 From: Jost Alemann Date: Tue, 23 Sep 2025 18:42:40 +0200 Subject: [PATCH 131/146] wl-clip-persist: 0.4.3 -> 0.5.0 Changelog: https://github.com/Linus789/wl-clip-persist/releases/tag/v0.5.0 Diff: https://github.com/Linus789/wl-clip-persist/compare/v0.4.3...v0.5.0 --- pkgs/by-name/wl/wl-clip-persist/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/wl/wl-clip-persist/package.nix b/pkgs/by-name/wl/wl-clip-persist/package.nix index 1a8f3abb2386..6018653e4639 100644 --- a/pkgs/by-name/wl/wl-clip-persist/package.nix +++ b/pkgs/by-name/wl/wl-clip-persist/package.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage rec { pname = "wl-clip-persist"; - version = "0.4.3"; + version = "0.5.0"; src = fetchFromGitHub { owner = "Linus789"; repo = "wl-clip-persist"; rev = "v${version}"; - hash = "sha256-dFhHsBazBHVWgPxoRDNwh8Yctt4w64E0RyFaHEC4mvk="; + hash = "sha256-MEH8ADsFst/CgTc9QW4x0dBXJ5ssQDVa55qPcsALJRg="; }; - cargoHash = "sha256-x2kNWFfHgzoSSD75Cp3noiq61zlBnmz9twwTAlBBL9w="; + cargoHash = "sha256-iQI5Z/gk+EFNQNma+T2/y77F8M+kPuSS2QKO6QV9dm4="; nativeBuildInputs = [ pkg-config ]; From 8a4f9ac7fd083cb5f89d243bf4b9cf09b26254ba Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 16:56:26 +0000 Subject: [PATCH 132/146] vivaldi: 7.6.3797.52 -> 7.6.3797.55 --- pkgs/by-name/vi/vivaldi/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/vi/vivaldi/package.nix b/pkgs/by-name/vi/vivaldi/package.nix index 902c06db1489..756a1136ebaf 100644 --- a/pkgs/by-name/vi/vivaldi/package.nix +++ b/pkgs/by-name/vi/vivaldi/package.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation rec { pname = "vivaldi"; - version = "7.6.3797.52"; + version = "7.6.3797.55"; suffix = { @@ -79,8 +79,8 @@ stdenv.mkDerivation rec { url = "https://downloads.vivaldi.com/stable/vivaldi-stable_${version}-1_${suffix}.deb"; hash = { - aarch64-linux = "sha256-K+bPy4yd1GdXsIDYNUYx3aAlcXYwX2rAN9GAR8c3tzA="; - x86_64-linux = "sha256-cDYn6Vj+S/pft5jF2ItSUKIILCGHF++ZhH794BLNxQQ="; + aarch64-linux = "sha256-eznFA+ljcNCxUCtlXBxaV73Hnum4j6x7LWBV55fft2E="; + x86_64-linux = "sha256-lP3dQvSYGuMOEdvnulIr6D6CEXJ+2ciUSohMZFUjPys="; } .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); }; From 76a34acd0373a3dc334c29bddabc17b499870174 Mon Sep 17 00:00:00 2001 From: Bruno Rodrigues Date: Tue, 23 Sep 2025 20:23:39 +0200 Subject: [PATCH 133/146] python3Packages.rds2py: init at 0.7.3 --- .../python-modules/rds2py/default.nix | 123 ++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 125 insertions(+) create mode 100644 pkgs/development/python-modules/rds2py/default.nix diff --git a/pkgs/development/python-modules/rds2py/default.nix b/pkgs/development/python-modules/rds2py/default.nix new file mode 100644 index 000000000000..b1a62863beab --- /dev/null +++ b/pkgs/development/python-modules/rds2py/default.nix @@ -0,0 +1,123 @@ +{ + lib, + buildPythonPackage, + stdenv, + fetchFromGitHub, + cmake, + zlib, + pybind11, + pytestCheckHook, + pytest-cov-stub, + pkg-config, + setuptools, + setuptools-scm, + biocutils, + biocframe, + pandas, + scipy, +}: + +buildPythonPackage rec { + pname = "rds2py"; + version = "0.7.3"; + pyproject = true; + + src = fetchFromGitHub { + owner = "BiocPy"; + repo = "rds2py"; + tag = version; + hash = "sha256-GbRpkt+K2HXuAT7KtI4h1SnZ4RtSo5hrea2L92VZj/o="; + }; + + rds2cpp-src = fetchFromGitHub { + owner = "LTLA"; + repo = "rds2cpp"; + rev = "v1.1.0"; + hash = "sha256-q7C/oORmhgXlqnZnslhyrxBc3RRF2gdgGuQU4TimxtI="; + }; + + byteme-src = fetchFromGitHub { + owner = "LTLA"; + repo = "byteme"; + rev = "v1.2.2"; + hash = "sha256-rM/pSMGlaMWE69lYORaa8SQYGQyzhdyQnXImmAesxFA="; + }; + + # Upstream uses CMake's FetchContent to download rds2cpp and byteme into + # build/_deps at configure time. We pre-fetch both repos and copy them + # into build/_deps manually. This way the build tree matches what upstream expects. + prePatch = '' + mkdir -p build/_deps + cp -r ${rds2cpp-src} build/_deps/rds2cpp-src + cp -r ${byteme-src} build/_deps/byteme-src + chmod -R u+w build/_deps + ''; + + # Patch upstream CMakeLists.txt files to use our vendored sources instead of + # calling FetchContent. We point add_subdirectory() to the copies staged in + # build/_deps above. We also patch rds2cpp's own extern/CMakeLists.txt to + # disable its nested FetchContent call for byteme, since we already provide it. + postPatch = '' + substituteInPlace lib/CMakeLists.txt \ + --replace-fail \ + "FetchContent_MakeAvailable(byteme)" \ + "add_subdirectory(\''${CMAKE_BINARY_DIR}/../_deps/byteme-src \''${CMAKE_CURRENT_BINARY_DIR}/byteme)" \ + --replace-fail \ + "FetchContent_MakeAvailable(rds2cpp)" \ + "add_subdirectory(\''${CMAKE_BINARY_DIR}/../_deps/rds2cpp-src \''${CMAKE_CURRENT_BINARY_DIR}/rds2cpp)" + + substituteInPlace build/_deps/rds2cpp-src/extern/CMakeLists.txt \ + --replace-fail "FetchContent_MakeAvailable(byteme)" "# FetchContent_MakeAvailable(byteme) -- Patched by Nix" + ''; + + # We use the MORE_CMAKE_OPTIONS environment variable, which is a hook provided + # by the upstream setup.py, to pass our zlib flags to the CMake configure step. + preConfigure = '' + export MORE_CMAKE_OPTIONS="-DZLIB_INCLUDE_DIR=${lib.getDev zlib}/include -DZLIB_LIBRARY=${lib.getLib zlib}/lib/libz.so" + ''; + + nativeBuildInputs = [ + cmake + pkg-config + pybind11 + zlib + ]; + + build-system = [ + setuptools + setuptools-scm + ]; + + dependencies = [ + biocutils + ]; + + nativeCheckInputs = [ + pytest-cov-stub + pytestCheckHook + biocframe + pandas + scipy + ]; + + disabledTestPaths = [ + # Requires packages not in Nixpkgs + "tests/test_delayedmatrices.py" + "tests/test_granges.py" + "tests/test_mae.py" + "tests/test_sce.py" + "tests/test_se.py" + ]; + + # setuptools drives the build, so disable cmake configure hook + dontUseCmakeConfigure = true; + + pythonImportsCheck = [ "rds2py" ]; + + meta = { + description = "Read RDS files, in Python"; + homepage = "https://github.com/BiocPy/rds2py"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ b-rodrigues ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0acdb846b369..688aac02ea22 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15704,6 +15704,8 @@ self: super: with self; { }; }; + rds2py = callPackage ../development/python-modules/rds2py { }; + re-assert = callPackage ../development/python-modules/re-assert { }; reactionmenu = callPackage ../development/python-modules/reactionmenu { }; From 35d05e440b27d8be6c1dd4d2b6db6a1dc80a3c49 Mon Sep 17 00:00:00 2001 From: Felix Kimmel Date: Tue, 23 Sep 2025 20:33:10 +0200 Subject: [PATCH 134/146] vscode-extensions.mkhl.shfmt: 1.4.0 -> 1.5.1 --- .../editors/vscode/extensions/mkhl.shfmt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/mkhl.shfmt/default.nix b/pkgs/applications/editors/vscode/extensions/mkhl.shfmt/default.nix index 510a4827cc5e..bdaf18cfbb89 100644 --- a/pkgs/applications/editors/vscode/extensions/mkhl.shfmt/default.nix +++ b/pkgs/applications/editors/vscode/extensions/mkhl.shfmt/default.nix @@ -9,8 +9,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "shfmt"; publisher = "mkhl"; - version = "1.4.0"; - hash = "sha256-5qi2BRwftuW9Isveb7vRwPPPu2w7LTfhNO0xHFNruGI="; + version = "1.5.1"; + hash = "sha256-rk+ykkWHxgQyyOC8JyhyOinRPJHh9XxNRAVUzcF7TRI="; }; postInstall = '' From d1e904b5db387485ecd60b92859c5842e2678fe0 Mon Sep 17 00:00:00 2001 From: Benjamin Manuel Date: Tue, 23 Sep 2025 13:37:58 -0500 Subject: [PATCH 135/146] maintainers: remove bmanuel --- maintainers/maintainer-list.nix | 6 ------ pkgs/by-name/co/copacetic/package.nix | 2 +- pkgs/by-name/ka/kanata/package.nix | 5 +---- 3 files changed, 2 insertions(+), 11 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 09ca05897dba..d5eb311ec9fa 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3510,12 +3510,6 @@ githubId = 52386117; name = "Blusk"; }; - bmanuel = { - name = "Benjamin Manuel"; - email = "ben@benmanuel.com"; - github = "bmanuel"; - githubId = 3662307; - }; bmilanov = { name = "Biser Milanov"; email = "bmilanov11+nixpkgs@gmail.com"; diff --git a/pkgs/by-name/co/copacetic/package.nix b/pkgs/by-name/co/copacetic/package.nix index c8b434f33a35..ea59d9723cac 100644 --- a/pkgs/by-name/co/copacetic/package.nix +++ b/pkgs/by-name/co/copacetic/package.nix @@ -62,6 +62,6 @@ buildGoModule rec { description = "Tool for directly patching vulnerabilities in container images"; license = lib.licenses.asl20; mainProgram = "copa"; - maintainers = with lib.maintainers; [ bmanuel ]; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/ka/kanata/package.nix b/pkgs/by-name/ka/kanata/package.nix index 0290d48346d3..509fc4cd0a21 100644 --- a/pkgs/by-name/ka/kanata/package.nix +++ b/pkgs/by-name/ka/kanata/package.nix @@ -53,10 +53,7 @@ rustPlatform.buildRustPackage rec { description = "Tool to improve keyboard comfort and usability with advanced customization"; homepage = "https://github.com/jtroo/kanata"; license = licenses.lgpl3Only; - maintainers = with maintainers; [ - bmanuel - linj - ]; + maintainers = with maintainers; [ linj ]; platforms = platforms.unix; mainProgram = "kanata"; }; From 6a7b9500328a0eebd1b458d48be1b311312c463b Mon Sep 17 00:00:00 2001 From: Thierry Delafontaine Date: Tue, 23 Sep 2025 20:33:42 +0200 Subject: [PATCH 136/146] codex: 0.39.0 -> 0.40.0 https://github.com/openai/codex/releases/tag/rust-v0.40.0 --- pkgs/by-name/co/codex/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/co/codex/package.nix b/pkgs/by-name/co/codex/package.nix index f933de230bdd..139d9998b25a 100644 --- a/pkgs/by-name/co/codex/package.nix +++ b/pkgs/by-name/co/codex/package.nix @@ -12,18 +12,18 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "codex"; - version = "0.39.0"; + version = "0.40.0"; src = fetchFromGitHub { owner = "openai"; repo = "codex"; tag = "rust-v${finalAttrs.version}"; - hash = "sha256-VxfUhPyJRYu6xvrDJRa3BqS/G7gf+J9d+2FbW1Ps4kw="; + hash = "sha256-IBYx362R2ueYNg7/vcjGa2kKAfGlPm6JcZ/A4XKtMT4="; }; sourceRoot = "${finalAttrs.src.name}/codex-rs"; - cargoHash = "sha256-62JkVo2Dlrtgr66qn6a3vuIUsJpVZDQ8uqIJnXeeU90="; + cargoHash = "sha256-fWrZXXQfrm0L3epquDZUj0SuLRn3WiHX3nQA3d+xnUg="; nativeBuildInputs = [ installShellFiles From e7f6c1c150be406bf5dab61472d88fc179f16755 Mon Sep 17 00:00:00 2001 From: dish Date: Tue, 23 Sep 2025 15:17:20 -0400 Subject: [PATCH 137/146] espanso: remove self from maintainers list I don't use it and do not have the energy to fix bugs in the program --- pkgs/by-name/es/espanso/package.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/by-name/es/espanso/package.nix b/pkgs/by-name/es/espanso/package.nix index 6c97b4b17f6b..b72fdae546d4 100644 --- a/pkgs/by-name/es/espanso/package.nix +++ b/pkgs/by-name/es/espanso/package.nix @@ -140,7 +140,6 @@ rustPlatform.buildRustPackage (finalAttrs: { license = licenses.gpl3Plus; maintainers = with maintainers; [ kimat - pyrox0 n8henrie ]; platforms = platforms.unix; From fd2f6f94e1ffc0cddbcd110fac759e05e409ec08 Mon Sep 17 00:00:00 2001 From: Ciznia Date: Tue, 23 Sep 2025 21:25:01 +0200 Subject: [PATCH 138/146] maintainers: add cizniarova --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 09ca05897dba..ca7078822bd9 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -4775,6 +4775,12 @@ name = "Alex Zero"; keys = [ { fingerprint = "A0AA 4646 B8F6 9D45 4553 5A88 A515 50ED B450 302C"; } ]; }; + cizniarova = { + email = "gabriel.hosquet@epitech.eu"; + github = "Ciznia"; + githubId = 114656678; + name = "Gabriel Hosquet"; + }; cizra = { email = "todurov+nix@gmail.com"; github = "cizra"; From 8d3003f838c065c1fe82284f6f66b1013983d364 Mon Sep 17 00:00:00 2001 From: Ciznia Date: Tue, 23 Sep 2025 21:53:33 +0200 Subject: [PATCH 139/146] vscode-extensions.wakatime.vscode-wakatime: adopt --- .../vscode/extensions/WakaTime.vscode-wakatime/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/editors/vscode/extensions/WakaTime.vscode-wakatime/default.nix b/pkgs/applications/editors/vscode/extensions/WakaTime.vscode-wakatime/default.nix index cc46b3edcb48..b520cce8670a 100644 --- a/pkgs/applications/editors/vscode/extensions/WakaTime.vscode-wakatime/default.nix +++ b/pkgs/applications/editors/vscode/extensions/WakaTime.vscode-wakatime/default.nix @@ -17,5 +17,6 @@ buildVscodeMarketplaceExtension { from your programming activity ''; license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ cizniarova ]; }; } From 47ea10eaabd5ebcd2549e18c06886a650c653e57 Mon Sep 17 00:00:00 2001 From: magicquark <198001825+magicquark@users.noreply.github.com> Date: Tue, 9 Sep 2025 04:25:47 +0100 Subject: [PATCH 140/146] locust: fix build errors - Upstream moved from `yarn` to `yarn berry` in https://github.com/locustio/locust/commit/a863a60d5838cbe678620968cbc28e2ecf21213a - The version bump of `locust` from 2.33.1 to 2.37.14 in https://github.com/NixOS/nixpkgs/commit/0c5bbee473da46c8426bb573535824533205fa84, did not update the `webui.nix` file that inherits the source in `default.nix`. The diff (https://github.com/locustio/locust/compare/2.33.1...2.37.14) shows that the change to yarn berry was made in between the version bump. - A new dependency was added during the version bump to `locust` of `locust-cloud`. - Resolves: https://github.com/NixOS/nixpkgs/issues/441033 - Add back in a preBuild hook, slightly reworked, that was removed in PR 388942. --- .../python-modules/locust/default.nix | 9 +++ .../python-modules/locust/missing-hashes.json | 76 +++++++++++++++++++ .../python-modules/locust/webui.nix | 27 ++++--- 3 files changed, 102 insertions(+), 10 deletions(-) create mode 100644 pkgs/development/python-modules/locust/missing-hashes.json diff --git a/pkgs/development/python-modules/locust/default.nix b/pkgs/development/python-modules/locust/default.nix index 2ed342d62a4f..40b5d08429ec 100644 --- a/pkgs/development/python-modules/locust/default.nix +++ b/pkgs/development/python-modules/locust/default.nix @@ -15,6 +15,7 @@ gevent, geventhttpclient, msgpack, + locust-cloud, psutil, pyquery, pyzmq, @@ -49,6 +50,11 @@ buildPythonPackage rec { src = "${src}/locust/webui"; }; + preBuild = '' + mkdir -p $out/${python.sitePackages}/locust/webui/dist + ln -sf ${webui}/dist/* $out/${python.sitePackages}/locust/webui/dist + ''; + build-system = [ hatchling hatch-vcs @@ -57,6 +63,8 @@ buildPythonPackage rec { pythonRelaxDeps = [ # version 0.7.0.dev0 is not considered to be >= 0.6.3 "flask-login" + # version 6.0.1 is listed as 0.0.1 in the dependency check and 0.0.1 is not >= 3.0.10 + "flask-cors" ]; dependencies = [ @@ -67,6 +75,7 @@ buildPythonPackage rec { gevent geventhttpclient msgpack + locust-cloud psutil pyzmq requests diff --git a/pkgs/development/python-modules/locust/missing-hashes.json b/pkgs/development/python-modules/locust/missing-hashes.json new file mode 100644 index 000000000000..d51e45363197 --- /dev/null +++ b/pkgs/development/python-modules/locust/missing-hashes.json @@ -0,0 +1,76 @@ +{ + "@esbuild/aix-ppc64@npm:0.25.1": "6de3a364b7f79f21f66d606d4d29c72ef81c741d71ab4bb941c4eabe7b6a809b1340f4dd5c943827005e421912880741320b9617d17fce762d204cfb94175223", + "@esbuild/android-arm64@npm:0.25.1": "716c98ad3220c71cbaedcfa34aa7c877a3fae911938c3776a66600d7f65980e384799a6832a1b9aea96c6d5a8880610f54744bd0813e743c511d44056ef528d6", + "@esbuild/android-arm@npm:0.25.1": "d2c9e95dd2027f6e14250a90a11136d9ce73a2157a8d104df4a9dd199d3c50cd91f25813536b4776630acb78596bd5a025976962c6d624df7594c32f2d9c1395", + "@esbuild/android-x64@npm:0.25.1": "92f1bec801b414ecdc4b73adfbb4482f4f2cfba423d33296914fa59ffdafb81facc445a7f65d1eea813c078220a0606f4be02252843bb9039ceb2755f643387c", + "@esbuild/darwin-arm64@npm:0.25.1": "9c4cd09c0bd8479e27e04e2397edccebae928184c463684490137d2b7ea3171051b66596db229af2ad3e6a911c1c8a9d10b8aed30d11d0aa155ac0d309fd5dd6", + "@esbuild/darwin-x64@npm:0.25.1": "31b64c02be9438e175e8b343c52e0bbc7964f08a1b44e0adbfa2a1b229ccd0ad0184cdb8313272b4590298833ea0b197d82a909466caffe90105f8acb30402d0", + "@esbuild/freebsd-arm64@npm:0.25.1": "e04018ffd760dd101a5931e0248751bdfca98e3f29be9b41051d55278907f52a3e5ab80c32168e208c2ff287510d6d5b765d3adc841bfd621af7930c10a547e6", + "@esbuild/freebsd-x64@npm:0.25.1": "438215bea2dc716d2c9ffe9b921bbde06e77d96ec0c837fd79f46bc6e195aa50e5f55490228f7433df7aa47810eec5c602a9d9cf956c1794778018632b196f34", + "@esbuild/linux-arm64@npm:0.25.1": "c839788b6db471f144bc2627a117083c9a50402c76cde2f0e5411faaeb3a5cde4972bb7336b87de67cd0a65d4d5b00759668407a03b5d4ed3130d4984837429a", + "@esbuild/linux-arm@npm:0.25.1": "ecf9fd9028d2166619b9a45161a987eebb6ef3dcb0159a2607ab164c58c26a15cf274e0b1088834c07ef9166349276d595fdad5c42bce8d03a55cb213d947efa", + "@esbuild/linux-ia32@npm:0.25.1": "36f208e10a4b778a28a9002338872e52d24dfc18e25d3b41dc53892279c3ee842d76c7b608a30620f128d85344acac0dc86f203f5de7082a21fa2e908c96b68c", + "@esbuild/linux-loong64@npm:0.25.1": "75d95e6ee995c9f2abb202ca430685e5d58fbe9b0b5b01a69b498c9b360d309026d15bae7831de9c0c4f02e45028a92ffb169117c3b56dd1ac7ea8c6ef50628d", + "@esbuild/linux-mips64el@npm:0.25.1": "7fc22eb8a7dc9ee743113cb327eef3591bced4753f416f8dd722794a198a053ab6e120b3b13c1bb6cc89cbd02ea502187b1a3c9ebe8187407665c78995153740", + "@esbuild/linux-ppc64@npm:0.25.1": "84f914a776774bf209c5f96a3708e52477e1966b689a880c0256530063bc581125b5cc04b9700f4aa892e7770ba47c5a950a4be9f1bb3ccbe60a500383602156", + "@esbuild/linux-riscv64@npm:0.25.1": "97f47cd5695686254b58f950ca973df1fcecfebf3bd585629121a65323ffaa7f95cf821392011ee069da492b46fdff771be332c699a438cf123351610e12d621", + "@esbuild/linux-s390x@npm:0.25.1": "10760a999d432d092a8ebe5f09752ee7e8ea77a1afa5f1adfe7f9ccb5bbf77d6e0da6dce5d1a4a7cd731d89b6075723c2bc0328f446ed129c4b63c6441ba22ae", + "@esbuild/linux-x64@npm:0.25.1": "4cdb1625726580eb42432878912d5480a0321559ef2c6425c1db55f89f3fe1c35fb03b3adec92c3f52a4db751d7535f23086b80ed7b219d1edbb254ffbe96e68", + "@esbuild/netbsd-arm64@npm:0.25.1": "f2427b094e072d2db7944b1d2a988dd9f17627976a395b941f225aec2d0565da2ea110a845eafae960af08e3eea74eb327e5eb9dbe06dc1e14f4439596c3b47c", + "@esbuild/netbsd-x64@npm:0.25.1": "c8347ecc18b175923a3cbdaef61b64815ffe0cf2cc285f4034337c2df83e78a118ebfdf2ac3a46a8d8a19ce6a0e0605d27d11570d1758ab90074c99047b82fc0", + "@esbuild/openbsd-arm64@npm:0.25.1": "719812786b4f3ab4471a306c930ab1bf31e9d92f933ea2a34566f07d6269df5058e7d48408127daa197e6fdb21e30697303127d259b76b18936d534619a3eb15", + "@esbuild/openbsd-x64@npm:0.25.1": "21590cbeda028e9b9f8131c54c36bab65a5d5bd5dd4e6bd9f80438045a655e9ac634bb3535a8650b694db267fe23bd2318a59cdec2fae1ba389ed1a00cc0bbe7", + "@esbuild/sunos-x64@npm:0.25.1": "e20ce3891d8717fe2cb885d92d16e9409802316eaa91071be5c7d75164d23dbc5a502be3691039051843d94192e8cf43ade61014a8bce298cfc13a8d3ddd85b0", + "@esbuild/win32-arm64@npm:0.25.1": "749a211eae6a47e5ceb71898df668d083bdec2ed762116fea7772824281f793aceb0487946e20ff604d7e102d1fc8538a73f15b476ca36e07f7ddfb601f6dfa1", + "@esbuild/win32-ia32@npm:0.25.1": "bb45fd889d858678ec68114bfc398965ed8d44e46a9517fcd9f7b397101c2cf94d78938a2640f6f2a1fe65de4ae8830fd426cd21a28302bb92333913b3c16c85", + "@esbuild/win32-x64@npm:0.25.1": "e33291b9834095e6460bd20bb15c49361758bf66d28ccffe0c06a1565211c91f668d9cfc0cbd5bd7a5def693fe7272dbe290b08d4eadba29e750c8a9c739f564", + "@rollup/rollup-android-arm-eabi@npm:4.34.8": "1d21d3ba13ed2cff8b4955b9d7c5fb91fa954be9cdd8f4e5bedc4e1d95733af3249bb7f3f000b9c69e89128a9439bb35990fd5c737372bc9b7fdbea906ac63dd", + "@rollup/rollup-android-arm-eabi@npm:4.40.0": "723053f558eaeeb0a1fbf3b3063b930d3b1267a6aba211719927b0467f48513a514a05391689298a64624e98daa005e4685ef668787ebc228fd0527a5f17b419", + "@rollup/rollup-android-arm64@npm:4.34.8": "b3c44e5aaab2b429716d58b93353b0429a131a0b7e08ee39f25ceca1faf3cc453346c9cb91dd1cc278eb5621fb701da87608cc3ce323c24d5f3d191781694ec3", + "@rollup/rollup-android-arm64@npm:4.40.0": "2562821c7032d2d95b891f47f02291d714d072fd91b3dbd07c528a7543f5e7d2458903cc38829feec311f1ebca6e34624262ae2e10aa32a0532b83c564db94cc", + "@rollup/rollup-darwin-arm64@npm:4.34.8": "a117920a3f06b6fb3e57f3a240a38ea3184811f931105185942e1cb9865d609662e3849ee53bdf7265d4555b9c9d2b6723fb4c94a9b1e494b522253246767b72", + "@rollup/rollup-darwin-arm64@npm:4.40.0": "cde6c2f4fe819131f65f5d19f8d1fd4889a4b8cc130cb30582fde72c79e388ef4644f57c7b03f453d4048043524ca067d5e2b4b505a5568840c73021fb74b572", + "@rollup/rollup-darwin-x64@npm:4.34.8": "70862e22270122f61690fcf69f07a32f3cce9028c7c296cc6a37bd5ae2fe2e021cf86df877274acf07a927889faf3ffc8721871d749087ea86941853c66a1f27", + "@rollup/rollup-darwin-x64@npm:4.40.0": "28c269104ff10f0ab87a30c93139662780b0b6b4877a95cede7d66e833d478d1eb2f5aa275f60decb8383b2c05161f315902ad8fa1a52fa76283a05ceb32bf6b", + "@rollup/rollup-freebsd-arm64@npm:4.34.8": "42e5a9a8fb20585ee5fc1a94f758fdfe4d1dde03a4f6476686b1a8835167e2e210192fb8ffd733dd12baaec928a3fc753bf05609798df99bb4d8b2f6ea44f997", + "@rollup/rollup-freebsd-arm64@npm:4.40.0": "27e99df8d1c5f0dfaead8fa6ce3025c5f959b4803e7683d95183761b1ecada4d877bd7f36465c424657ef650eac6199ddcf4911eda6367555633819454a5548d", + "@rollup/rollup-freebsd-x64@npm:4.34.8": "984baffa0968907090146b0237697ee76b64eb18dbde512304e83d793030f2cec01bb08658ccb2e12ff6ecd88dccc4886acaaf8117345e564c9b7752c20a7d51", + "@rollup/rollup-freebsd-x64@npm:4.40.0": "3422ce75f0fe774925763b1b63dded9aee56038d167af0b7f8ca0e468a8fae86d6a8aecd0b86a79718b8fc78c5ad987ba5b98be17b95fdcd48e4307749376e1b", + "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8": "3a7fe8a7c80608ee54bc2c5b40424b15b0a3da8ec8201e3303f56bedbf3a34f8446b9968da849705373c02c3bd35c56ca22117c3549c8968b2cd1ad54f2d82ed", + "@rollup/rollup-linux-arm-gnueabihf@npm:4.40.0": "b32cd2a73db75926722dfd42a6c5c6f2f1631f70a8d261317a0ce54e2c5dcee849c0a59cd85de0c0c7bbea9defb4f6649b1354871e6ac7f637cc22673d1486c1", + "@rollup/rollup-linux-arm-musleabihf@npm:4.34.8": "27fbc7ec1a8ac9d44661d4024d704bc1af8c257bd454b3b56cbcf43afe60a617ac4dec50e6c5906a07945d2bed60c8d44b972aee9f53186b24b7df2b9c99e3f3", + "@rollup/rollup-linux-arm-musleabihf@npm:4.40.0": "1c1d95fe81ee31d0d9cd75258865d35d2afccd8255b856c0da9a3c8afa012feb6b9557d1c234af8f4cc5dfd9d397564c650fe2e8769cb4407f626058c2e19d9c", + "@rollup/rollup-linux-arm64-gnu@npm:4.34.8": "7ce7073fa830540fc67616b44b3155bacfe84463268ba948aa68719a197684da4ef60882ac1623d168597c3178f936262386de67425c60d645bf66eabf743351", + "@rollup/rollup-linux-arm64-gnu@npm:4.40.0": "a8d071163d135e992023a374660a72cc94af4d77a711e7720d4e3fc544a7af037add4839ef8d061503e5320ee80defd35b43a68cebad0105d16cfd870387934c", + "@rollup/rollup-linux-arm64-musl@npm:4.34.8": "1acb2a29e1a190c2df27c5e1a30424f22ca98dd5c4e12c2103e2810659c95b8e027b5b34dd0127e55b8c818bb28c49dfc9fe6586c508f85b98350ded6bb60717", + "@rollup/rollup-linux-arm64-musl@npm:4.40.0": "5582761d9426caccee50beb1fdb06ebb16fba540eabde06e21d18f59667f7c6c99ca0c2743d1b9cdb54a3d0b28445befad52c76412632bf0d79f280022acc630", + "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8": "50c416ca41ed0df3d54ccf11c7e5487c64f9e2fee97deb21741086c61a99007ee3dc011d34a6261a3d32cff3f46483bce930ae92e96d54abe607576095bc3906", + "@rollup/rollup-linux-loongarch64-gnu@npm:4.40.0": "6d65384886c655b4a9190a2c8e3cd99d7049d13864be0f9b06c32a23ba1242bd09be0e9cba9425898a48b41bba52eb98223e34e3943924370a68f7c7800f66b2", + "@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.8": "b80e0473848b7d26ab845368e75fd834f71fe6b03f1753450a9c521fe99024a5caa40a85ce8bce1bce079971b31dc2266c718e05ff950143f98a3310944863f4", + "@rollup/rollup-linux-powerpc64le-gnu@npm:4.40.0": "ebe38407efd0e45e92f939fe725e64695096c4389747b81f241e8a5d655526615e81512f3d61deae6aaf60669328a9bc93ac352351d6ccf8f1746caeb44bd7ab", + "@rollup/rollup-linux-riscv64-gnu@npm:4.34.8": "1efd1e6142b2bbaa986f5c9edc1caee98f3fbd18160da02fd6c05b324b683eec0d8a9b0d4525b67de70873375988d1a4986dfdaf94ec847d9f30a82e5bac1bcd", + "@rollup/rollup-linux-riscv64-gnu@npm:4.40.0": "32cc2e2d03eadca60f42ba14af9723584c1ef7ee29f8a79578aacd9ce17e287d1f841aa926278d4b7cbf0f6d054c4ec045873a24c67279ca37f20e999f24bd4e", + "@rollup/rollup-linux-riscv64-musl@npm:4.40.0": "507c785bde98633f0139baccce0635047d43b19fb1d1fc770d4d88b11ef62b7885b0dac51a42c5f3e05bc0a56480928ae6304898884f0b5b0e56ad0cc98920f6", + "@rollup/rollup-linux-s390x-gnu@npm:4.34.8": "d536c327ad26cf9ad586ad68e146f4cbd64b6bb1daf146f8124f6257f70f42e1d05e37afab902f97049cf8d0b7e60458480a8cf2e49379f1efa1568ac13f6107", + "@rollup/rollup-linux-s390x-gnu@npm:4.40.0": "e464366194da4d1a72fc5ecce6c59027004b878fc36114f2d7c25812da5fe1885c29eb14d7bb318a4bb3242a99e772f7713da22f7f2d93f4b6e6a3e012f3d1f4", + "@rollup/rollup-linux-x64-gnu@npm:4.34.8": "9c8e0c8ae968e8400641d782d7cb0b9b06cdec0c0a366c20259e49da0984ffea2a6af15de3e1fdfc92c1906a97044ea676195b945750848c8ddf34abf675eebf", + "@rollup/rollup-linux-x64-gnu@npm:4.40.0": "b472cd5acd066a60bd970865be1b229ca4c31a658a5c0277b6f441396243a20c535502a0ea7ea0dca6d12e2ccf53324b7e94c0d32a4f81f0b9866fd6cc3aff5a", + "@rollup/rollup-linux-x64-musl@npm:4.34.8": "994b3a904c79fa72a3c331c983c27296ebb302b08f6c624ecbbf91cfa136f03cbdad4be904fd1a80b44d521e49399aff6e7902b594146a8c73cb6d1ad13dce08", + "@rollup/rollup-linux-x64-musl@npm:4.40.0": "f553ef17a801559ca9418eb57dd9621884bde4d0d9f01292d9bb84de271efbf4ba737ddaf78a710edd6138528f3d8e2b3d6ba1a969c9e34624ad4266bfba39db", + "@rollup/rollup-win32-arm64-msvc@npm:4.34.8": "5d09e6b59d1b08bb85922170aad0b8ada8bff7a5d63bed3b1ba49d4bbe32fd2557527d85c1bb97bf8d7f20778c2266b35c86bb4b0c035835099a3f6b222bc26c", + "@rollup/rollup-win32-arm64-msvc@npm:4.40.0": "f14da0ce3062084d81fd42432ddf6c3cd869b4c48dc1acd803bc151bc3b508dbd290d60624ab5507d691b9e53bec81a508b61688304f171088549067ec86445d", + "@rollup/rollup-win32-ia32-msvc@npm:4.34.8": "d4817c6e0744f2a53c24ea6855ed061fb03437fa0187f86363768d0edffc7e1bd281f9003e684779ac5662627daab1f2816084a257a13ade5bc0fd7e63912d94", + "@rollup/rollup-win32-ia32-msvc@npm:4.40.0": "e6849d8cb8c276681f558b8212d58340488814e697486d9d125c1191479a4819387f681945f59c2b9fdd40020403cb72a099906960625da65d2114cf3df701e5", + "@rollup/rollup-win32-x64-msvc@npm:4.34.8": "47679da18b7676a91d123a73298047fca019b4a9dfc4e026c43ba0dfea763ed972a9ce0cd46766317af45ef4d2a09cccc6284c4226a006b05d2e6fb712dad29c", + "@rollup/rollup-win32-x64-msvc@npm:4.40.0": "347f3af8176858afaec0f4f0d7951d4cda81f77c30e8260c678a11809bcdee0542762f27f6a4194562c2a8a6321a774ea523216ed8cf105e041eff7498443f28", + "@swc/core-darwin-arm64@npm:1.6.13": "b55457da071a6368d270fe89d26ad00f14bf8400cf99517c62869b185afd128f9b0123524a0e7ce4397f21449b2b86ab82080c1cb351d1e461f8596bcfedf4b2", + "@swc/core-darwin-x64@npm:1.6.13": "c14d0ca32797bfbecd8ad74684201c1d88b82ac05d7177ad4c7f6fab767148a25e163fba36513f1964805a3b7b58582f2a37cb3b1f1cc18e1c4a9ed4a49ce62a", + "@swc/core-linux-arm-gnueabihf@npm:1.6.13": "b261eb4ced147281393676c7f9ce34b2134a3c2ebcd9a0a05886d116b6eac4c7f4edcfe5d9fcbcc811a8fe15817de1327cda95abe55cbe861e2fab876e4c162d", + "@swc/core-linux-arm64-gnu@npm:1.6.13": "179f4cea2add5ffb4f36cf737ebc4703ab206036e6c9ca3a8df0d91df4c5834e498cba93b24f4eb10a9bec854bcd66f31ec54b79dd25679d00daa36ba352862d", + "@swc/core-linux-arm64-musl@npm:1.6.13": "7a7c77769d06ccc02d2c20190c63adab443241f99b09139818698d4f7841d9a30545f88884027bf8037507a7a6b19fc28708f44989953b89908ff78693fc54b6", + "@swc/core-linux-x64-gnu@npm:1.6.13": "14e1c47f987ab50e67297be4b6c6b2c9186c7947b64c2c14d6077a0f196a684a7d992a79c40a30abdee0d4a1aec53c0506afbf0f1974dfe7520a058b5217daed", + "@swc/core-linux-x64-musl@npm:1.6.13": "00d5da501ce964666ba42d770c5d2a43532baaf3a9844c7cb76790ed475e3d80377528cced0b7f745da0c0fe2b20000b3a223cf792595f266405dadc66b25874", + "@swc/core-win32-arm64-msvc@npm:1.6.13": "84453749f42a0f4b3f3a8938da3be7a98091331647432117fc7511cb32a68d331ff2cb8bb10faa72cb5093ccded1dfa578a7609addbcfe359ad4643660502b62", + "@swc/core-win32-ia32-msvc@npm:1.6.13": "f674cb40b25b6a42214c666f512c7a0e94cbe99f3ea36d70ec83bd7888f6f2a97b7dff99c873a5707a8957704d40348f4493d3a75c3fd8eacc7a98027c51fcb6", + "@swc/core-win32-x64-msvc@npm:1.6.13": "44ba6fba5171022243faa4f908041f8d0d1d75d9f9bba9fc8139440ea9e3f6992973c50aa38a27a8e34df48e7fa95dff3818eb9b73cbcd5d82ae981cc334a6f3" +} diff --git a/pkgs/development/python-modules/locust/webui.nix b/pkgs/development/python-modules/locust/webui.nix index 234dee29e2c1..964329564533 100644 --- a/pkgs/development/python-modules/locust/webui.nix +++ b/pkgs/development/python-modules/locust/webui.nix @@ -1,30 +1,37 @@ { stdenv, - fetchYarnDeps, - yarnConfigHook, - yarnBuildHook, + yarn-berry_4, nodejs, version, src, + lib, }: - +let + yarn-berry = yarn-berry_4; +in stdenv.mkDerivation (finalAttrs: { pname = "locust-ui"; inherit version src; - yarnOfflineCache = fetchYarnDeps { - yarnLock = "${finalAttrs.src}/yarn.lock"; - hash = "sha256-OTGTpAAxr8rmCi5oEWIWzwZqiP3Cx3vyc3r2kbcLyUg="; + missingHashes = ./missing-hashes.json; + yarnOfflineCache = yarn-berry.fetchYarnBerryDeps { + inherit (finalAttrs) src missingHashes; + hash = "sha256-FbKaU3wezuvcn98FOcUZbmoot/iHtmeStp4n0dNwFYA="; }; nativeBuildInputs = [ - yarnConfigHook - yarnBuildHook + yarn-berry + yarn-berry.yarnBerryConfigHook nodejs ]; + buildPhase = '' + runHook preBuild + yarn build + runHook postBuild + ''; + dontNpmPrune = true; - yarnBuildScript = "build"; postInstall = '' mkdir -p $out/dist cp -r dist/** $out/dist From b59f370236cabd3991371a264d8c08c0d7535374 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 20:07:05 +0000 Subject: [PATCH 141/146] gh: 2.79.0 -> 2.80.0 --- pkgs/by-name/gh/gh/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gh/gh/package.nix b/pkgs/by-name/gh/gh/package.nix index bce588d47bfe..f1f8615394d3 100644 --- a/pkgs/by-name/gh/gh/package.nix +++ b/pkgs/by-name/gh/gh/package.nix @@ -10,16 +10,16 @@ buildGoModule rec { pname = "gh"; - version = "2.79.0"; + version = "2.80.0"; src = fetchFromGitHub { owner = "cli"; repo = "cli"; tag = "v${version}"; - hash = "sha256-ACnRcuHbIsG43bXqqpxPMA1BcFb9TckfiLNJeyxAwkk="; + hash = "sha256-3XrP3NuXYWT09Yfo3XJ6Z2SE5jkE+tvS9QrXiRy3ov8="; }; - vendorHash = "sha256-+O+cTsm9HzAJKDoNMMtcXr6iwRsqFtRLu0VTLe5/rSA="; + vendorHash = "sha256-rVNKTr3b4zShPfkiEBx7LqVQY2eMrXo/s8iC5tyQZNo="; nativeBuildInputs = [ installShellFiles ]; From 7e3a473552b570d9e61b571b472382345ce408a0 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 23 Sep 2025 20:15:55 +0000 Subject: [PATCH 142/146] python3Packages.pylance: 0.36.0 -> 0.37.0 Diff: https://github.com/lancedb/lance/compare/v0.36.0...v0.37.0 Changelog: https://github.com/lancedb/lance/releases/tag/v0.37.0 --- pkgs/development/python-modules/pylance/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pylance/default.nix b/pkgs/development/python-modules/pylance/default.nix index b6a51e7d29c5..f167b2246afb 100644 --- a/pkgs/development/python-modules/pylance/default.nix +++ b/pkgs/development/python-modules/pylance/default.nix @@ -32,14 +32,14 @@ buildPythonPackage rec { pname = "pylance"; - version = "0.36.0"; + version = "0.37.0"; pyproject = true; src = fetchFromGitHub { owner = "lancedb"; repo = "lance"; tag = "v${version}"; - hash = "sha256-/1ijyVl5CFwOXwo2Jki4o6fJ+Bf4kkDFfJT0+BO5Jhg="; + hash = "sha256-/AzjgpSS2OBW1BXd4MIPiAdG5hQcUil22zBYIbVlb9g="; }; sourceRoot = "${src.name}/python"; @@ -51,7 +51,7 @@ buildPythonPackage rec { src sourceRoot ; - hash = "sha256-VuPnzeM9m3HYV6pEt5n7KSBtS5L4zHiK38tqND2sPHk="; + hash = "sha256-5jem2SSIZDbmEXER/JQbk495xqo/wv7E4BVKU3Pd1iM="; }; nativeBuildInputs = [ @@ -113,6 +113,9 @@ buildPythonPackage rec { # subprocess.CalledProcessError: Command ... returned non-zero exit status 1. # ModuleNotFoundError: No module named 'lance' + "test_lance_log_file" + "test_lance_log_file_invalid_path" + "test_lance_log_file_with_directory_creation" "test_timestamp_precision" "test_tracing" From b3a3c0bf1d67d27e2d9331d0ff84f75c8606fcb1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 23 Sep 2025 20:51:12 +0000 Subject: [PATCH 143/146] terraform-providers.okta: 6.0.0 -> 6.1.0 --- .../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 c23eed203708..12327c646174 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -949,13 +949,13 @@ "vendorHash": null }, "okta": { - "hash": "sha256-ANGoCEHLuxTLpP9k2H/zUQjSEu7qob9Dh6c2Uzgj35Q=", + "hash": "sha256-sWiOGXeQxrUUlSM7TI4isUCdpiwwvosD+XVedM2pTSk=", "homepage": "https://registry.terraform.io/providers/okta/okta", "owner": "okta", "repo": "terraform-provider-okta", - "rev": "v6.0.0", + "rev": "v6.1.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-C+EP9ROYOnxkr895ZLZPgdRYm7Da2chDslsQRSq7NkU=" + "vendorHash": "sha256-zfmQXMgKXCU8g1tpgV8BAXc5F8wBbJhtjO1trdQ4Jm4=" }, "oktaasa": { "hash": "sha256-2LhxgowqKvDDDOwdznusL52p2DKP+UiXALHcs9ZQd0U=", From 792b5709782bdbc2e4e4ff74ec2f8769c1f09b94 Mon Sep 17 00:00:00 2001 From: Rafael Ieda Date: Wed, 17 Sep 2025 06:47:30 -0300 Subject: [PATCH 144/146] backrest: 1.8.1 -> 1.9.2 --- pkgs/by-name/ba/backrest/package.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ba/backrest/package.nix b/pkgs/by-name/ba/backrest/package.nix index d46d8d191827..98741ded90e4 100644 --- a/pkgs/by-name/ba/backrest/package.nix +++ b/pkgs/by-name/ba/backrest/package.nix @@ -12,13 +12,13 @@ }: let pname = "backrest"; - version = "1.8.1"; + version = "1.9.2"; src = fetchFromGitHub { owner = "garethgeorge"; repo = "backrest"; tag = "v${version}"; - hash = "sha256-lpYny+5bXIxj+ZFhbSn200sBrDShISESZw+L5sy+X+Q="; + hash = "sha256-3lAWViC9K34R8la/z57kjGJmMmletGd8pJ1dDt+BeKQ="; }; frontend = stdenv.mkDerivation (finalAttrs: { @@ -34,7 +34,7 @@ let pnpmDeps = pnpm_9.fetchDeps { inherit (finalAttrs) pname version src; fetcherVersion = 1; - hash = "sha256-q7VMQb/FRT953yT2cyGMxUPp8p8XkA9mvqGI7S7Eifg="; + hash = "sha256-vJgsU0OXyAKjUJsPOyIY8o3zfNW1BUZ5IL814wmJr3o="; }; buildPhase = '' @@ -62,7 +62,7 @@ buildGoModule { internal/resticinstaller/resticinstaller.go ''; - vendorHash = "sha256-AINnBkP+e9C/f/C3t6NK+6PYSVB4NON0C71S6SwUXbE="; + vendorHash = "sha256-oycV8JAJQF/PNc7mmYGzkZbpG8pMwxThmuys9e0+hcc="; nativeBuildInputs = [ gzip @@ -98,6 +98,10 @@ buildGoModule { export HOME=$(pwd) ''; + # skip tests on darwin due to /etc/protocols failure + # `__darwinAllowLocalNetworking = true;` wasn't sufficient + doCheck = !stdenv.isDarwin; + postInstall = '' wrapProgram $out/bin/backrest \ --set-default BACKREST_RESTIC_COMMAND "${lib.getExe restic}" From 7d2b5907b9c0ffe1680b8598dddb4a12f0fb867a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 24 Sep 2025 01:39:34 +0200 Subject: [PATCH 145/146] pretix: relax sepaxml constraint --- pkgs/by-name/pr/pretix/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/pr/pretix/package.nix b/pkgs/by-name/pr/pretix/package.nix index d7505624daa8..0409dfd92e05 100644 --- a/pkgs/by-name/pr/pretix/package.nix +++ b/pkgs/by-name/pr/pretix/package.nix @@ -106,6 +106,7 @@ python.pkgs.buildPythonApplication rec { "reportlab" "requests" "sentry-sdk" + "sepaxml" "ua-parser" "webauthn" ]; From 32d76a9d8d22e16e67ad6f3a046315f65069d307 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 24 Sep 2025 02:07:25 +0200 Subject: [PATCH 146/146] postfix-tlspol: restrict to linux The darwin build fails with: ``` Building subPackage . internal/config.go:86:18: undefined: unix.InotifyInit internal/config.go:91:16: undefined: unix.InotifyAddWatch internal/config.go:91:50: undefined: unix.IN_CLOSE_WRITE ``` --- pkgs/by-name/po/postfix-tlspol/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/po/postfix-tlspol/package.nix b/pkgs/by-name/po/postfix-tlspol/package.nix index 7afaaf2c3c81..e8cf6fae0bff 100644 --- a/pkgs/by-name/po/postfix-tlspol/package.nix +++ b/pkgs/by-name/po/postfix-tlspol/package.nix @@ -37,5 +37,6 @@ buildGoModule rec { valodim ]; mainProgram = "postfix-tlspol"; + platforms = lib.platforms.linux; }; }