From aff25da20b1a31242d3ce8242a1060f8d8ba33df Mon Sep 17 00:00:00 2001 From: teutat3s <10206665+teutat3s@users.noreply.github.com> Date: Wed, 3 Jun 2026 10:12:19 +0200 Subject: [PATCH 01/49] libreoffice: unvendor libfreehand --- pkgs/applications/office/libreoffice/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index 75880b33f528..183c2c52ef41 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -111,6 +111,7 @@ gpgmepp, libwebp, abseil-cpp, + libfreehand, libepubgen, libetonyek, libpng, @@ -518,6 +519,7 @@ stdenv.mkDerivation (finalAttrs: { libatomic_ops libcdr libcmis + libfreehand libe-book libepoxy libepubgen @@ -662,6 +664,7 @@ stdenv.mkDerivation (finalAttrs: { "--with-system-headers" "--with-system-libabw" "--with-system-libcmis" + "--with-system-libfreehand" "--with-system-libepubgen" "--with-system-libetonyek" "--with-system-liblangtag" @@ -679,7 +682,6 @@ stdenv.mkDerivation (finalAttrs: { # TODO: package these as system libraries "--without-system-altlinuxhyph" "--without-system-libeot" - "--without-system-libfreehand" "--without-system-libmspub" "--without-system-libnumbertext" "--without-system-libpagemaker" From c228984ad626cd35d118e329e967555190443814 Mon Sep 17 00:00:00 2001 From: Skye Soss Date: Thu, 4 Jun 2026 15:06:04 -0500 Subject: [PATCH 02/49] plocate: Fix the package license --- pkgs/by-name/pl/plocate/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/pl/plocate/package.nix b/pkgs/by-name/pl/plocate/package.nix index 9748a7ebb6ad..f90fcec7f5f1 100644 --- a/pkgs/by-name/pl/plocate/package.nix +++ b/pkgs/by-name/pl/plocate/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { meta = { description = "Much faster locate"; homepage = "https://plocate.sesse.net/"; - license = lib.licenses.mit; + license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ peterhoeg SuperSandro2000 From e20ecbf1c70a15d3156554db1af79aaaf05b9d06 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 5 Jun 2026 03:25:45 +0000 Subject: [PATCH 03/49] worktrunk: 0.53.0 -> 0.56.0 --- pkgs/by-name/wo/worktrunk/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/wo/worktrunk/package.nix b/pkgs/by-name/wo/worktrunk/package.nix index 1e2fca36c949..1ba94bcf30db 100644 --- a/pkgs/by-name/wo/worktrunk/package.nix +++ b/pkgs/by-name/wo/worktrunk/package.nix @@ -11,16 +11,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "worktrunk"; - version = "0.53.0"; + version = "0.56.0"; src = fetchFromGitHub { owner = "max-sixty"; repo = "worktrunk"; tag = "v${finalAttrs.version}"; - hash = "sha256-1qWVELd9+XINjnzNNKeeCR9CxX/0DJVV6TS2cI0KhP4="; + hash = "sha256-6Soz41fyieWczJBNiv50UGUVMsvVej/1pMX3iPnvXg8="; }; - cargoHash = "sha256-sT9zOGhvsV3QKfRA2wtP4OnWitjxhL0B4guMBdkciE8="; + cargoHash = "sha256-NKjbn8RVtHWv/DqcQ/HqvvhKr9jAyisElD0OYyYbVAg="; cargoBuildFlags = [ "--package=worktrunk" ]; From 87262e6569680a49998fb858ca7bd88004428d0e Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Sat, 6 Jun 2026 15:45:29 -0700 Subject: [PATCH 04/49] ripgrep: modernize Signed-off-by: Ethan Carter Edwards --- pkgs/by-name/ri/ripgrep/package.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ri/ripgrep/package.nix b/pkgs/by-name/ri/ripgrep/package.nix index 69d06b695139..fbfb4fc87bfc 100644 --- a/pkgs/by-name/ri/ripgrep/package.nix +++ b/pkgs/by-name/ri/ripgrep/package.nix @@ -19,10 +19,12 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "ripgrep"; version = "15.1.0"; + __structuredAttrs = true; + src = fetchFromGitHub { owner = "BurntSushi"; repo = "ripgrep"; - rev = finalAttrs.version; + tag = finalAttrs.version; hash = "sha256-0gjwYMUlXYnmIWQS1SVzF1yQw1lpveRLw5qp049lc3I="; }; From 569d438b58d0448df289dd0ec3ed8235681e4027 Mon Sep 17 00:00:00 2001 From: Harinn Date: Sun, 7 Jun 2026 11:00:06 +0700 Subject: [PATCH 05/49] python3Packages.classify-imports: migrate to pyproject --- pkgs/development/python-modules/classify-imports/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/classify-imports/default.nix b/pkgs/development/python-modules/classify-imports/default.nix index daac93e4e8f1..589015655967 100644 --- a/pkgs/development/python-modules/classify-imports/default.nix +++ b/pkgs/development/python-modules/classify-imports/default.nix @@ -2,13 +2,14 @@ lib, buildPythonPackage, fetchFromGitHub, + setuptools, pytestCheckHook, }: buildPythonPackage (finalAttrs: { pname = "classify-imports"; version = "4.2.0"; - format = "setuptools"; + pyproject = true; src = fetchFromGitHub { owner = "asottile"; @@ -17,6 +18,8 @@ buildPythonPackage (finalAttrs: { hash = "sha256-f5wZfisKz9WGdq6u0rd/zg2CfMwWvQeR8xZQNbD7KfU="; }; + build-system = [ setuptools ]; + pythonImportsCheck = [ "classify_imports" ]; nativeCheckInputs = [ pytestCheckHook ]; From 1c8f98020052b5aeb51f7ed4e368833836e4a9d1 Mon Sep 17 00:00:00 2001 From: Harinn Date: Sun, 7 Jun 2026 11:03:15 +0700 Subject: [PATCH 06/49] python3Packages.classify-imports: modernize --- pkgs/development/python-modules/classify-imports/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/classify-imports/default.nix b/pkgs/development/python-modules/classify-imports/default.nix index 589015655967..35a5d8663db1 100644 --- a/pkgs/development/python-modules/classify-imports/default.nix +++ b/pkgs/development/python-modules/classify-imports/default.nix @@ -11,10 +11,12 @@ buildPythonPackage (finalAttrs: { version = "4.2.0"; pyproject = true; + __structuredAttrs = true; + src = fetchFromGitHub { owner = "asottile"; repo = "classify-imports"; - rev = "v${finalAttrs.version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-f5wZfisKz9WGdq6u0rd/zg2CfMwWvQeR8xZQNbD7KfU="; }; From 0059b0de354144370a1c27f1bd346668d4af164e Mon Sep 17 00:00:00 2001 From: kilianar Date: Mon, 8 Jun 2026 08:51:15 +0200 Subject: [PATCH 07/49] wealthfolio: 3.4.0 -> 3.5.2 https://github.com/wealthfolio/wealthfolio/releases/tag/v3.5.2 --- pkgs/by-name/we/wealthfolio/package.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/we/wealthfolio/package.nix b/pkgs/by-name/we/wealthfolio/package.nix index f1a058129fb1..e56f5a9bfe32 100644 --- a/pkgs/by-name/we/wealthfolio/package.nix +++ b/pkgs/by-name/we/wealthfolio/package.nix @@ -9,7 +9,7 @@ nodejs, openssl, pkg-config, - pnpm_9, + pnpm_10, fetchPnpmDeps, pnpmConfigHook, rustPlatform, @@ -19,20 +19,20 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "wealthfolio"; - version = "3.4.0"; + version = "3.5.2"; src = fetchFromGitHub { owner = "afadil"; repo = "wealthfolio"; rev = "v${finalAttrs.version}"; - hash = "sha256-SYI0LosdR82rUubxl0pNi1huEDcR6bxcaHbjCVT/T/0="; + hash = "sha256-WU87VmnbzUno1CmIVwBLYjmTZybM4qSuRmBH/2n/Tfo="; }; pnpmDeps = fetchPnpmDeps { inherit (finalAttrs) src pname version; - pnpm = pnpm_9; - fetcherVersion = 3; - hash = "sha256-LXPQpQFXwPEHxktLoRiWTi8NbtzrS5ItUmoKJki3zcs"; + pnpm = pnpm_10; + fetcherVersion = 4; + hash = "sha256-EDnHlaW3Ad32N8wl38ryo6pYvKU2T1OH6IkOuTLI7Vs="; }; cargoRoot = "."; @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { src cargoRoot ; - hash = "sha256-cCaZ5X57WAaO9F2lP2/wdilXc0Al0Vr3ntyV1/Q5sj8="; + hash = "sha256-KoS2EouZ0Uf3cijUUOpwYBYEjEB5VxIArU1CuCji2+I="; }; nativeBuildInputs = [ @@ -55,7 +55,7 @@ stdenv.mkDerivation (finalAttrs: { nodejs pkg-config pnpmConfigHook - pnpm_9 + pnpm_10 rustPlatform.cargoSetupHook wrapGAppsHook3 ]; From 23325efa0f4e0c51a53832c799218691c27bb95a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 10 Jun 2026 07:32:06 -0700 Subject: [PATCH 08/49] python3Packages.serialx: 1.8.0 -> 1.8.1 Diff: https://github.com/puddly/serialx/compare/v1.8.0...v1.8.1 Changelog: https://github.com/puddly/serialx/releases/tag/v1.8.1 --- pkgs/development/python-modules/serialx/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/serialx/default.nix b/pkgs/development/python-modules/serialx/default.nix index 4de8088ec6a6..51eb4c20331c 100644 --- a/pkgs/development/python-modules/serialx/default.nix +++ b/pkgs/development/python-modules/serialx/default.nix @@ -20,14 +20,14 @@ buildPythonPackage (finalAttrs: { pname = "serialx"; - version = "1.8.0"; + version = "1.8.1"; pyproject = true; src = fetchFromGitHub { owner = "puddly"; repo = "serialx"; tag = "v${finalAttrs.version}"; - hash = "sha256-JNaS7nRzqNr6y+Qj8bG4U0vwtvfNmllr9vpS4IcSjV4="; + hash = "sha256-89lRB96lit4XxPhACnZ3Lv01G0IcddlwyPTttrWwsLQ="; }; cargoDeps = rustPlatform.fetchCargoVendor { From 98b6b1ead19e38d84b69f16c9a0c3cc49bea5b17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 10 Jun 2026 19:44:13 -0700 Subject: [PATCH 09/49] flare-signal: 0.20.5 -> 0.20.6 Diff: https://gitlab.com/schmiddi-on-mobile/flare/-/compare/0.20.5...0.20.6 Changelog: https://gitlab.com/schmiddi-on-mobile/flare/-/blob/0.20.6/CHANGELOG.md --- pkgs/by-name/fl/flare-signal/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/fl/flare-signal/package.nix b/pkgs/by-name/fl/flare-signal/package.nix index b4a416120895..fee8f4adcadf 100644 --- a/pkgs/by-name/fl/flare-signal/package.nix +++ b/pkgs/by-name/fl/flare-signal/package.nix @@ -24,18 +24,18 @@ stdenv.mkDerivation (finalAttrs: { pname = "flare"; - version = "0.20.5"; + version = "0.20.6"; src = fetchFromGitLab { owner = "schmiddi-on-mobile"; repo = "flare"; tag = finalAttrs.version; - hash = "sha256-ZxUIqfEQe7tv6HBwOMLKruYDNJLlRie3nztwVER6sAE="; + hash = "sha256-X+3fwIDqRC9S0SYkN3knjQ5wFSptxuM0iggu4pgZ89Q="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit (finalAttrs) pname version src; - hash = "sha256-dNcHPLoKbHFj73Xtb4Ud42xKmmLy9eADUnsqPj9+l8Y="; + hash = "sha256-EEIZjK8bVPg1AFkmOvckkVMCRHXLoiBz5CITwpolJ4k="; }; nativeBuildInputs = [ From a1196ce8183f9430ae7824e8a9971cfb0eb8eb5c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 11 Jun 2026 09:50:03 +0000 Subject: [PATCH 10/49] filius: 2.11.0 -> 2.12.1 --- pkgs/by-name/fi/filius/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/fi/filius/package.nix b/pkgs/by-name/fi/filius/package.nix index 63f8ce377928..3bf63e93e17c 100644 --- a/pkgs/by-name/fi/filius/package.nix +++ b/pkgs/by-name/fi/filius/package.nix @@ -10,16 +10,16 @@ maven.buildMavenPackage rec { pname = "filius"; - version = "2.11.0"; + version = "2.12.1"; src = fetchFromGitLab { owner = "filius1"; repo = "filius"; tag = "v${version}"; - hash = "sha256-l90KnHfndGsEzgJpTNabW0ADJhTYr7z3243TZUJbxNw="; + hash = "sha256-sIcYjbWONg8Cq+dHpoBYj07cyHV7oX06Xh1zK0CHn64="; }; - mvnHash = "sha256-R14EtImJJEC/DhKm7MKWzq9XEOqDGNPtLIaK3OKbyiQ="; + mvnHash = "sha256-/gA49V1Kjh4zJTzDCzFNwZF30ERwPk2lG6lw/jxM2Qo="; mvnParameters = "-Plinux"; # tests want to create an X11 window which isn't often feasible From 1ae517acfc59acc4ee7acf601508734dac9cbc44 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 11 Jun 2026 14:01:43 +0000 Subject: [PATCH 11/49] vscode-extensions.saoudrizwan.claude-dev: 3.86.2 -> 3.89.2 --- .../vscode/extensions/saoudrizwan.claude-dev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix b/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix index c99945c49b50..c4b9eee45455 100644 --- a/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix +++ b/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix @@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "claude-dev"; publisher = "saoudrizwan"; - version = "3.86.2"; - hash = "sha256-Peoja4AQUPlwAKeJMOziGjd/WU4wz5B8cplCTh20yTA="; + version = "3.89.2"; + hash = "sha256-lDt/xn1PFs0UDg0rOOun8Bl/FTXSjvQ//ETkoHFypAM="; }; meta = { From af1883ed43e35d3f934d76976f0957aa38364daf Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 11 Jun 2026 18:57:15 +0000 Subject: [PATCH 12/49] vscode-extensions.ms-vscode-remote.remote-ssh: 0.123.0 -> 0.124.0 --- .../vscode/extensions/ms-vscode-remote.remote-ssh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.remote-ssh/default.nix b/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.remote-ssh/default.nix index aec06a3bb8e2..36392353acac 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.remote-ssh/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.remote-ssh/default.nix @@ -84,8 +84,8 @@ buildVscodeMarketplaceExtension { mktplcRef = { name = "remote-ssh"; publisher = "ms-vscode-remote"; - version = "0.123.0"; - hash = "sha256-/9NyRSNUCx65FOA6w86e2DvrynAHRleIULzDpneV25E="; + version = "0.124.0"; + hash = "sha256-GokSJOEpHomkBbkPUBhVXWZCrGbi5oZTlw5PFV12ZBY="; }; postPatch = '' From e1705e9bc072a59deac22740ca7c77bf606cba7c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 11 Jun 2026 23:52:00 +0000 Subject: [PATCH 13/49] opentrack: 2026.1.0-unstable-2026-05-23 -> 2026.1.0-unstable-2026-06-08 --- pkgs/by-name/op/opentrack/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/op/opentrack/package.nix b/pkgs/by-name/op/opentrack/package.nix index d3198e72627e..806e08afb4d3 100644 --- a/pkgs/by-name/op/opentrack/package.nix +++ b/pkgs/by-name/op/opentrack/package.nix @@ -23,13 +23,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "opentrack"; - version = "2026.1.0-unstable-2026-05-23"; + version = "2026.1.0-unstable-2026-06-08"; src = fetchFromGitHub { owner = "opentrack"; repo = "opentrack"; - rev = "5c4b8f13617b69e4c315a86c0adafdccc01223cd"; - hash = "sha256-ppUtkudwXAaFipKY554ZgLF/Nqi+hLMy8BMhNc8q8UQ="; + rev = "2a6f10fec50940125d2409b151cf05eeb58cebfe"; + hash = "sha256-p3Sy/JVa8LFNyF/SUVLrUsPebaOMZe0cSC8Lo6R/kMQ="; }; aruco = callPackage ./aruco.nix { }; From 651bb4f2463cb26744426434b50723251ef5412e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 11 Jun 2026 23:58:35 +0000 Subject: [PATCH 14/49] vscode-extensions.nefrob.vscode-just-syntax: 0.10.1 -> 0.10.2 --- 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 4f30fd2ffa01..37c93c5b0c4f 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -3587,8 +3587,8 @@ let mktplcRef = { name = "vscode-just-syntax"; publisher = "nefrob"; - version = "0.10.1"; - hash = "sha256-s/JxIALrYb/dew1CdvvM1UmnewyRcJPB/ETJ/Ai2QJA="; + version = "0.10.2"; + hash = "sha256-F7H9f24TjB3JtWLVICYwRTjxa+GTOpYN7IzSlU1audo="; }; meta = { changelog = "https://marketplace.visualstudio.com/items/nefrob.vscode-just-syntax/changelog"; From eca21e66b8c5a62e5657f8d59804a73377d38046 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 01:26:54 +0000 Subject: [PATCH 15/49] torrserver: 141.4 -> 141.5 --- pkgs/by-name/to/torrserver/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/to/torrserver/package.nix b/pkgs/by-name/to/torrserver/package.nix index d5863bdd746d..e1d4572eb289 100644 --- a/pkgs/by-name/to/torrserver/package.nix +++ b/pkgs/by-name/to/torrserver/package.nix @@ -7,15 +7,15 @@ }: buildGo126Module rec { pname = "torrserver"; - version = "141.4"; + version = "141.5"; src = fetchFromGitHub { owner = "YouROK"; repo = "TorrServer"; tag = "MatriX.${version}"; - sha256 = "sha256-wTcHBD4rfcuZWSZjwqAXwlAp6qFQWacjqvXl9L7CnnQ="; + sha256 = "sha256-f1D6ZeIa5Uw6I/dG4OCN2ZbRudftaMlgQx+NuQVTWIA="; }; - vendorHash = "sha256-IPVaGgjcQp6+jw2nbzZZ4ZiQYzqw7zs5RM07J5ON4Bw="; + vendorHash = "sha256-AHkSemWYa4w20YKUyfhD1Liw9AwbgCxq+UmqVW0G70g="; modRoot = "server"; subPackages = [ "cmd" ]; From 524e78abe63b72872ca0053e9d658961fd868a82 Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Thu, 11 Jun 2026 21:54:28 -0400 Subject: [PATCH 16/49] ci: update pinned I had managed to not actually include the nixpkgs-vet update (0.3.0 -> 0.3.2) in my last pin bump. --- ci/pinned.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/pinned.json b/ci/pinned.json index d161a3d78e1c..0e8f2b8ff61c 100644 --- a/ci/pinned.json +++ b/ci/pinned.json @@ -9,9 +9,9 @@ }, "branch": "nixpkgs-unstable", "submodules": false, - "revision": "cbb5cf358f50aa6acc9efd6113b7bcfbc352cd73", - "url": "https://github.com/NixOS/nixpkgs/archive/cbb5cf358f50aa6acc9efd6113b7bcfbc352cd73.tar.gz", - "hash": "sha256-IX7G1dlKrOqPOImfbo7ADDfV5yU1+j+MRChI3TL4tAA=" + "revision": "8c91a71d13451abc40eb9dae8910f972f979852f", + "url": "https://github.com/NixOS/nixpkgs/archive/8c91a71d13451abc40eb9dae8910f972f979852f.tar.gz", + "hash": "sha256-fnzKKPvS+oieI/pTzotA5tkoM47EB1NpaBcgk4R97hE=" }, "treefmt-nix": { "type": "Git", From e562a1f224661b2261dda468c9ed39db49536560 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 02:06:42 +0000 Subject: [PATCH 17/49] vscode-extensions.shd101wyy.markdown-preview-enhanced: 0.8.27 -> 0.8.30 --- 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 2a0c79a11eb0..1e3a804d5b2c 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -4222,8 +4222,8 @@ let mktplcRef = { publisher = "shd101wyy"; name = "markdown-preview-enhanced"; - version = "0.8.27"; - hash = "sha256-v4CZul1uuNlMrIgfml9EjUy0I626GkBArNH7F+5Z/dA="; + version = "0.8.30"; + hash = "sha256-wtI+W+ZNxXv8WonGDmSt1NxeF8WN8fqPCuMougERxDE="; }; meta = { description = "Provides a live preview of markdown using either markdown-it or pandoc"; From 138d8d6bc89e5259079eb1b321a2de51b6a9a251 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Fri, 12 Jun 2026 12:29:55 +1000 Subject: [PATCH 18/49] zfs_2_3: 2.3.7 -> 2.3.8 Diff: https://github.com/openzfs/zfs/compare/zfs-2.3.7...zfs-2.3.8 Changelog: https://github.com/openzfs/zfs/releases/tag/zfs-2.3.8 --- pkgs/os-specific/linux/zfs/2_3.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/zfs/2_3.nix b/pkgs/os-specific/linux/zfs/2_3.nix index bf6701cc0ff8..34e173e12d78 100644 --- a/pkgs/os-specific/linux/zfs/2_3.nix +++ b/pkgs/os-specific/linux/zfs/2_3.nix @@ -16,7 +16,7 @@ callPackage ./generic.nix args { kernelMaxSupportedMajorMinor = "7.0"; # this package should point to the latest release. - version = "2.3.7"; + version = "2.3.8"; tests = { inherit (nixosTests.zfs) series_2_3; @@ -30,5 +30,5 @@ callPackage ./generic.nix args { amarshall ]; - hash = "sha256-67Yo5bAJP3dXC94xybrC4xhwz7pGtrp0MUT9P6OInog="; + hash = "sha256-qNBInNRpWrmImcermSHC0emYmnnjNvxWj3QnGtA6SUg="; } From e431b35de8ca352c6bc1de1945a74a447fa7ec7b Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Fri, 12 Jun 2026 12:30:28 +1000 Subject: [PATCH 19/49] zfs_2_4: 2.4.2 -> 2.4.3 Diff: https://github.com/openzfs/zfs/compare/zfs-2.4.2...zfs-2.4.3 Changelog: https://github.com/openzfs/zfs/releases/tag/zfs-2.4.3 --- pkgs/os-specific/linux/zfs/2_4.nix | 4 ++-- pkgs/os-specific/linux/zfs/unstable.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/zfs/2_4.nix b/pkgs/os-specific/linux/zfs/2_4.nix index 5752d198e755..6f4cbc6861d4 100644 --- a/pkgs/os-specific/linux/zfs/2_4.nix +++ b/pkgs/os-specific/linux/zfs/2_4.nix @@ -16,7 +16,7 @@ callPackage ./generic.nix args { kernelMaxSupportedMajorMinor = "7.0"; # this package should point to the latest release. - version = "2.4.2"; + version = "2.4.3"; tests = { inherit (nixosTests.zfs) series_2_4; @@ -30,5 +30,5 @@ callPackage ./generic.nix args { amarshall ]; - hash = "sha256-OqsKHzyFjjyX8CoajDGydY4TbuQqMA37PIaEOL+vDug="; + hash = "sha256-I1wLbstr0cFiGsyynP9kJ9ATRp/2b+fnnsdz0up+IzM="; } diff --git a/pkgs/os-specific/linux/zfs/unstable.nix b/pkgs/os-specific/linux/zfs/unstable.nix index f72e792a16c0..dfc43de1c33e 100644 --- a/pkgs/os-specific/linux/zfs/unstable.nix +++ b/pkgs/os-specific/linux/zfs/unstable.nix @@ -16,14 +16,14 @@ callPackage ./generic.nix args { # IMPORTANT: Always use a tagged release candidate or commits from the # zfs--staging branch, because this is tested by the OpenZFS # maintainers. - version = "2.4.2"; + version = "2.4.3"; # rev = ""; tests = { inherit (nixosTests.zfs) unstable; }; - hash = "sha256-OqsKHzyFjjyX8CoajDGydY4TbuQqMA37PIaEOL+vDug="; + hash = "sha256-I1wLbstr0cFiGsyynP9kJ9ATRp/2b+fnnsdz0up+IzM="; extraLongDescription = '' This is "unstable" ZFS, and will usually be a pre-release version of ZFS. From e99eb6d145151539d4117ef1449997a934c657af Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Fri, 12 Jun 2026 12:42:47 +1000 Subject: [PATCH 20/49] zfs: remove patch included in 2.3.8 and 2.4.3 --- pkgs/os-specific/linux/zfs/generic.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/pkgs/os-specific/linux/zfs/generic.nix b/pkgs/os-specific/linux/zfs/generic.nix index 1dc98829da38..ea017985f78e 100644 --- a/pkgs/os-specific/linux/zfs/generic.nix +++ b/pkgs/os-specific/linux/zfs/generic.nix @@ -4,7 +4,6 @@ let lib, stdenv, fetchFromGitHub, - fetchpatch2, autoreconfHook269, util-linux, nukeReferences, @@ -100,12 +99,7 @@ let inherit rev hash; }; - patches = - extraPatches - ++ lib.optional (kernel != null && lib.versionOlder kernel.version "5.14") (fetchpatch2 { - url = "https://github.com/openzfs/zfs/commit/58c8dc5f6926eb96903a3f38b141e8998ef9261b.patch?full_index=1"; - hash = "sha256-eYkMhHsHBA9MKXnB/GuHpuv44g1SCGV5Or0InPBeNkU="; - }); + patches = extraPatches; postPatch = optionalString buildKernel '' From f55f28320c6198347fda7a66214455b6b57e1689 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 04:13:49 +0000 Subject: [PATCH 21/49] androidStudioPackages.canary: 2026.1.2.4 -> 2026.1.2.7 --- pkgs/applications/editors/android-studio/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/android-studio/default.nix b/pkgs/applications/editors/android-studio/default.nix index 8391b4428825..f3cecb980d19 100644 --- a/pkgs/applications/editors/android-studio/default.nix +++ b/pkgs/applications/editors/android-studio/default.nix @@ -26,9 +26,9 @@ let url = "https://edgedl.me.gvt1.com/android/studio/ide-zips/2026.1.1.7/android-studio-quail1-rc2-linux.tar.gz"; }; latestVersion = { - version = "2026.1.2.4"; # "Android Studio Quail 2 | 2026.1.2 Canary 4" - sha256Hash = "sha256-fnJYHZPy9bOZJ2leG2+Mr5JGH5HMc2HeMeYGHBUxJXo="; - url = "https://edgedl.me.gvt1.com/android/studio/ide-zips/2026.1.2.4/android-studio-quail2-canary4-linux.tar.gz"; + version = "2026.1.2.7"; # "Android Studio Quail 2 | 2026.1.2 Canary 7" + sha256Hash = "sha256-LHszfAtM5ZLNbTZG0isb+aUW3uwp+zav/igHT4HDeEM="; + url = "https://edgedl.me.gvt1.com/android/studio/ide-zips/2026.1.2.7/android-studio-quail2-canary7-linux.tar.gz"; }; in { From ba5ae1ad5a4ea64e99bf4d00e012e01176c8aa3c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 04:34:03 +0000 Subject: [PATCH 22/49] phpExtensions.xdebug: 3.5.1 -> 3.5.3 --- pkgs/development/php-packages/xdebug/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/php-packages/xdebug/default.nix b/pkgs/development/php-packages/xdebug/default.nix index 2fbcfdb340c6..96d30a5223c3 100644 --- a/pkgs/development/php-packages/xdebug/default.nix +++ b/pkgs/development/php-packages/xdebug/default.nix @@ -5,7 +5,7 @@ }: let - version = "3.5.1"; + version = "3.5.3"; in buildPecl { inherit version; @@ -16,7 +16,7 @@ buildPecl { owner = "xdebug"; repo = "xdebug"; rev = version; - hash = "sha256-GOlWCKDLwptsHV9SvOOlR4uScvcw8V/DjwXIpfWjSkM="; + hash = "sha256-UrRQqnWEE0y8I4DTDWn21yGScG42+XaFFl6UjcJXbtM="; }; doCheck = true; From 4739bc83842e525c2948389ead11b2674623169b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 05:53:04 +0000 Subject: [PATCH 23/49] qownnotes: 26.6.2 -> 26.6.5 --- pkgs/by-name/qo/qownnotes/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/qo/qownnotes/package.nix b/pkgs/by-name/qo/qownnotes/package.nix index 1068cf819afb..b5262ca64293 100644 --- a/pkgs/by-name/qo/qownnotes/package.nix +++ b/pkgs/by-name/qo/qownnotes/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "qownnotes"; appname = "QOwnNotes"; - version = "26.6.2"; + version = "26.6.5"; src = fetchurl { url = "https://github.com/pbek/QOwnNotes/releases/download/v${finalAttrs.version}/qownnotes-${finalAttrs.version}.tar.xz"; - hash = "sha256-+tyOP+nx28gM/IYkwQ9jaM0PNbvJIX95RGO1kOAw4zY="; + hash = "sha256-M1Yqiyl0aUodvEva4y3fQiTthslDo2/54NNDEdcPsJY="; }; nativeBuildInputs = [ From 3ecb784492935620e868845bcf4cb18a99164d13 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 07:04:43 +0000 Subject: [PATCH 24/49] vscode-extensions.redhat.vscode-xml: 0.29.2 -> 0.29.3 --- .../vscode/extensions/redhat.vscode-xml/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/redhat.vscode-xml/default.nix b/pkgs/applications/editors/vscode/extensions/redhat.vscode-xml/default.nix index ab922608e4bc..4e311914bc7a 100644 --- a/pkgs/applications/editors/vscode/extensions/redhat.vscode-xml/default.nix +++ b/pkgs/applications/editors/vscode/extensions/redhat.vscode-xml/default.nix @@ -11,22 +11,22 @@ vscode-utils.buildVscodeMarketplaceExtension { sources = { "x86_64-linux" = { arch = "linux-x64"; - hash = "sha256-vm12qVJ6+KbyHdzB/Q4SrEZDUKVsKJufjbVn9OBGbns="; + hash = "sha256-cP/oFn19CZ/G3kjdHNZGqXvoDE1qUtg6xrg/2MO14Lo="; }; "x86_64-darwin" = { arch = "darwin-x64"; - hash = "sha256-1dunJX+7oL2RqsK2pCScKAe/O0b3ypfgsuHXoDvvChM="; + hash = "sha256-wtk8SasxXEQ3pCJpVTWR8wcY/bNaIZmImbAtrFWYWOo="; }; "aarch64-darwin" = { arch = "darwin-arm64"; - hash = "sha256-5IG0H3QIY6ll77aZ6/8uFeIpgjupjBx0GfFJaX7Wep4="; + hash = "sha256-XYdwVoDqK+88ZYUm6APyamFNx6XlYjy0R4CIhSMuRmU="; }; }; in { publisher = "redhat"; name = "vscode-xml"; - version = "0.29.2"; + version = "0.29.3"; } // sources.${stdenvNoCC.hostPlatform.system} or { }; From 5287b701a378aa6235490d8f9e374a5e4b19baf3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 07:55:31 +0000 Subject: [PATCH 25/49] buildbox: 1.4.7 -> 1.4.8 --- pkgs/by-name/bu/buildbox/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/bu/buildbox/package.nix b/pkgs/by-name/bu/buildbox/package.nix index 0a319fca91e7..2a45605a0fcf 100644 --- a/pkgs/by-name/bu/buildbox/package.nix +++ b/pkgs/by-name/bu/buildbox/package.nix @@ -23,13 +23,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "buildbox"; - version = "1.4.7"; + version = "1.4.8"; src = fetchFromGitLab { owner = "BuildGrid"; repo = "buildbox/buildbox"; tag = finalAttrs.version; - hash = "sha256-+OK9rmAGGLq/rJIHs++dbdyvh6WFu+Xhcp48TpnYV0w="; + hash = "sha256-P7CFgK5CkHAf5gddmm0SBGIkC/AAdCO5pkya/XNuby0="; }; nativeBuildInputs = [ From 43262049e56ad81f16fe5d3b9c62615bf30e210b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 08:45:54 +0000 Subject: [PATCH 26/49] zerofs: 1.1.15 -> 1.2.5 --- pkgs/by-name/ze/zerofs/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ze/zerofs/package.nix b/pkgs/by-name/ze/zerofs/package.nix index 807258e08238..927deb891416 100644 --- a/pkgs/by-name/ze/zerofs/package.nix +++ b/pkgs/by-name/ze/zerofs/package.nix @@ -10,18 +10,18 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "zerofs"; - version = "1.1.15"; + version = "1.2.5"; src = fetchFromGitHub { owner = "Barre"; repo = "ZeroFS"; tag = "v${finalAttrs.version}"; - hash = "sha256-FfIiGULAxwnU/TOUxlnGj1IPC71TxBW9HZ57qbs0qZY="; + hash = "sha256-Nyv+GAy+SeWbYrEfHLilgWGUqnVS0cUoOd4+4Ah8GeQ="; }; sourceRoot = "${finalAttrs.src.name}/zerofs"; - cargoHash = "sha256-01yKdVuWR16ckmwyjpk4FMjLQl+b1VvcyGP2r1KMRCc="; + cargoHash = "sha256-Jsv/LDugP2Xp1zcCUvVmDHVkQNBoNlapMF3BRcWA3Q4="; nativeBuildInputs = [ cmake ]; From 8e1adec4ae3f29bb4d45265f2df06d62d9beb45c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 09:37:24 +0000 Subject: [PATCH 27/49] python3Packages.mplhep-data: 0.0.5 -> 0.1.0 --- pkgs/development/python-modules/mplhep-data/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mplhep-data/default.nix b/pkgs/development/python-modules/mplhep-data/default.nix index 6f8d0f42716b..0a6ea1f76c7f 100644 --- a/pkgs/development/python-modules/mplhep-data/default.nix +++ b/pkgs/development/python-modules/mplhep-data/default.nix @@ -8,13 +8,13 @@ buildPythonPackage rec { pname = "mplhep-data"; - version = "0.0.5"; + version = "0.1.0"; pyproject = true; src = fetchPypi { pname = "mplhep_data"; inherit version; - hash = "sha256-TlxOrj5CN2LrPUrVQgYPG+fxIsGKFxZPf8/tz5Q/rH0="; + hash = "sha256-v5zcxlw6nOfY8OMHj/ZZ7z/P3hGeYloPcfIbBu2rxMk="; }; nativeBuildInputs = [ From 07824f8de7db5167d3de1da445ebae2c73a083ff Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 12 Jun 2026 12:09:01 +0200 Subject: [PATCH 28/49] rustical: 0.12.15 -> 0.13.1 https://github.com/lennart-k/rustical/releases/tag/v0.12.16 https://github.com/lennart-k/rustical/releases/tag/v0.12.17 https://github.com/lennart-k/rustical/releases/tag/v0.13.0 https://github.com/lennart-k/rustical/releases/tag/v0.13.1 --- pkgs/by-name/ru/rustical/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ru/rustical/package.nix b/pkgs/by-name/ru/rustical/package.nix index 07f244b5b22e..8e58c6e13df2 100644 --- a/pkgs/by-name/ru/rustical/package.nix +++ b/pkgs/by-name/ru/rustical/package.nix @@ -10,16 +10,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "rustical"; - version = "0.12.15"; + version = "0.13.1"; src = fetchFromGitHub { owner = "lennart-k"; repo = "rustical"; tag = "v${finalAttrs.version}"; - hash = "sha256-ll7CFxYpzseYstBLe60VhYgvCYtobWeZ9/trBPTCSMg="; + hash = "sha256-DNwxQq2QKPQ6gzIxBJUhdMNbmHNYnt+MSFJ28PLzunQ="; }; - cargoHash = "sha256-eqY5xzlPOlGSqqegTWTHeLR+YJb9l52Ku2yGVfflQkk="; + cargoHash = "sha256-bIbDohCkSlV7uBi+lyylLE/gSqjzlp+xwxQRS9zBiio="; nativeBuildInputs = [ pkg-config ]; From 588b05b7c0071328b5d37b923fdebc51ada20ec7 Mon Sep 17 00:00:00 2001 From: Leona Maroni Date: Fri, 12 Jun 2026 12:23:22 +0200 Subject: [PATCH 29/49] Revert "litestar: 2.21.1 -> 2.23.0" --- pkgs/development/python-modules/litestar/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/litestar/default.nix b/pkgs/development/python-modules/litestar/default.nix index 53e189ef577b..e0d0c0f0224b 100644 --- a/pkgs/development/python-modules/litestar/default.nix +++ b/pkgs/development/python-modules/litestar/default.nix @@ -60,14 +60,14 @@ buildPythonPackage (finalAttrs: { pname = "litestar"; - version = "2.23.0"; + version = "2.21.1"; pyproject = true; src = fetchFromGitHub { owner = "litestar-org"; repo = "litestar"; tag = "v${finalAttrs.version}"; - hash = "sha256-EKCQQElL4pq5Li52RUP68UKJQ+NyuCdEh7zz15ugP2s="; + hash = "sha256-dH51GecYwVTnOO+F1FJnFR2VO3IvLbpKWbxK7jssak8="; }; build-system = [ hatchling ]; From e063b7f6ebdc76140f5b8e08812030951eb91451 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 12 Jun 2026 12:02:49 +0200 Subject: [PATCH 30/49] nixos/rustical: migrate to http.bind Deprecates http.host and http.port options. --- .../manual/release-notes/rl-2611.section.md | 2 ++ nixos/modules/services/web-apps/rustical.nix | 29 +++++++++++-------- nixos/tests/web-apps/rustical.nix | 11 +++++-- 3 files changed, 28 insertions(+), 14 deletions(-) diff --git a/nixos/doc/manual/release-notes/rl-2611.section.md b/nixos/doc/manual/release-notes/rl-2611.section.md index 3697b3bb2e3e..6723c7ed3ed8 100644 --- a/nixos/doc/manual/release-notes/rl-2611.section.md +++ b/nixos/doc/manual/release-notes/rl-2611.section.md @@ -24,6 +24,8 @@ - Support for the legacy U‐Boot image format has been removed from the initrd generators, as it is deprecated upstream and no longer used by any platform in Nixpkgs. +- Rustical migrates from `settings.http.host` and `settings.http.port` to `settings.http.bind` to support UNIX domain sockets as well as TCP sockets in one setting. + - `services.llama-cpp` is now configured using structured `services.llama-cpp.settings` attribute. - Python 2 has been removed from the top-level package set, as it is long past end-of-life. The `python2`, `python27`, `python2Full`, `python27Full`, `python2Packages`, and `python27Packages` attributes, along with the legacy `python`, `pythonFull`, and `pythonPackages` aliases, now throw an error directing you to `python3`. The `isPy2` and `isPy27` package flags have been removed accordingly. The only remaining Python 2 interpreter is vendored inside the `resholve` package for its `oil` dependency and is not exposed for general use. diff --git a/nixos/modules/services/web-apps/rustical.nix b/nixos/modules/services/web-apps/rustical.nix index 0764f384ab0d..a92daf8c07b4 100644 --- a/nixos/modules/services/web-apps/rustical.nix +++ b/nixos/modules/services/web-apps/rustical.nix @@ -55,12 +55,12 @@ in }; http = { - host = mkOption { + bind = mkOption { type = types.str; - default = "[::1]"; - example = "[::]"; + default = "unix:/run/rustical/sock"; + example = "[::]:4000"; description = '' - Host address to bind the HTTP service to. + Address and port or UNIX socket path to bind the HTTP service to. :::{.note} Rustical expects to be hosted behind a reverse proxy that @@ -69,14 +69,6 @@ in ::: ''; }; - - port = mkOption { - type = types.port; - default = 4000; - description = '' - Port to bind the HTTP service to. - ''; - }; }; dav_push.enabled = mkOption { @@ -126,6 +118,19 @@ in }; config = mkIf cfg.enable { + warnings = lib.optionals (cfg.settings.http ? host || cfg.settings.http ? port) [ + '' + Rustical 0.13 deprecations + + The following options are now deprecated and will be removed in a + future release: + - `services.rustical.settings.http.host` + - `services.rustical.settings.http.port` + + Migrate to `services.rustical.settings.http.bind` instead. + '' + ]; + # install the config at a path where the cli will find it environment.etc."rustical/config.toml".source = configFile; diff --git a/nixos/tests/web-apps/rustical.nix b/nixos/tests/web-apps/rustical.nix index 86b0e95afa20..d55f14ba3a3d 100644 --- a/nixos/tests/web-apps/rustical.nix +++ b/nixos/tests/web-apps/rustical.nix @@ -3,6 +3,11 @@ lib, ... }: + +let + port = "4000"; +in + { name = "rustical"; @@ -14,7 +19,10 @@ ... }: { - services.rustical.enable = true; + services.rustical = { + enable = true; + settings.http.bind = "[::]:${port}"; + }; environment.systemPackages = with pkgs; [ calendar-cli ]; }; @@ -24,7 +32,6 @@ ... }: let - port = toString nodes.machine.services.rustical.settings.http.port; url = "http://localhost:${toString port}"; createPrincipalScript = pkgs.writeScript "rustical-create-principal" '' From ac0b56ee3a2d2f8e902fdb09861a76fb2cd75c66 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 12 Jun 2026 12:22:46 +0200 Subject: [PATCH 31/49] nixos/tests/rustical: migrate to nspawn test --- nixos/tests/web-apps/rustical.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/web-apps/rustical.nix b/nixos/tests/web-apps/rustical.nix index d55f14ba3a3d..15a718e87702 100644 --- a/nixos/tests/web-apps/rustical.nix +++ b/nixos/tests/web-apps/rustical.nix @@ -13,7 +13,7 @@ in meta.maintainers = pkgs.rustical.meta.maintainers; - nodes.machine = + containers.machine = { pkgs, ... @@ -28,7 +28,7 @@ in testScript = { - nodes, + containers, ... }: let From 0b1816c9bbb7891b6deb0e3f72469fa4cc46848b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 10:44:56 +0000 Subject: [PATCH 32/49] attyx: 0.4.3 -> 0.4.5 --- pkgs/by-name/at/attyx/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/at/attyx/package.nix b/pkgs/by-name/at/attyx/package.nix index db515a54731e..81fe0f14851d 100644 --- a/pkgs/by-name/at/attyx/package.nix +++ b/pkgs/by-name/at/attyx/package.nix @@ -18,13 +18,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "attyx"; - version = "0.4.3"; + version = "0.4.5"; src = fetchFromGitHub { owner = "semos-labs"; repo = "attyx"; tag = "v${finalAttrs.version}"; - hash = "sha256-DJe1HreijOwFaqDY+Ai1utiK4u66pUbBkEY6TOat27A="; + hash = "sha256-9/Zl6IrgrT8vHYllCKb977Ar5QRYQiXDmK/g+4YWcqM="; }; deps = callPackage ./build.zig.zon.nix { }; From 659f26db42e3042ad2b63fed9a6a8f45318638a5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 11:09:06 +0000 Subject: [PATCH 33/49] python3Packages.disposable-email-domains: 0.0.193 -> 0.0.201 --- .../python-modules/disposable-email-domains/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/disposable-email-domains/default.nix b/pkgs/development/python-modules/disposable-email-domains/default.nix index ca3392a22637..bd91ae04f67e 100644 --- a/pkgs/development/python-modules/disposable-email-domains/default.nix +++ b/pkgs/development/python-modules/disposable-email-domains/default.nix @@ -8,7 +8,7 @@ buildPythonPackage (finalAttrs: { pname = "disposable-email-domains"; - version = "0.0.193"; + version = "0.0.201"; pyproject = true; __structuredAttrs = true; @@ -16,7 +16,7 @@ buildPythonPackage (finalAttrs: { src = fetchPypi { pname = "disposable_email_domains"; inherit (finalAttrs) version; - hash = "sha256-5XT3UtSwPM2xQM44QgezX0YitUXR4xS/2tICH/O6BB4="; + hash = "sha256-8YA/GzaB3wo67/lrK+tM4wCuu9BIDGdB1ZzIP8bQIAA="; }; build-system = [ From 89ce1ed5567a52fb774cfeb2ead607c8168b1d67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Fri, 12 Jun 2026 14:48:42 +0200 Subject: [PATCH 34/49] taler-wallet-core: clean up nodeSources --- pkgs/by-name/ta/taler-wallet-core/package.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/by-name/ta/taler-wallet-core/package.nix b/pkgs/by-name/ta/taler-wallet-core/package.nix index 7b38c18ffb3e..524e16a030f6 100644 --- a/pkgs/by-name/ta/taler-wallet-core/package.nix +++ b/pkgs/by-name/ta/taler-wallet-core/package.nix @@ -17,9 +17,7 @@ zip, }: let - nodeSources = (srcOnly nodejs-slim_24).overrideAttrs { - outputChecks = { }; - }; + nodeSources = srcOnly nodejs-slim_24; pnpm' = pnpm_11.override { nodejs-slim = nodejs-slim_24; }; esbuild' = esbuild.override { buildGoModule = From 3bd59abdd38fa5ff0f9960e660a93e27850d28e8 Mon Sep 17 00:00:00 2001 From: winston Date: Fri, 12 Jun 2026 15:29:33 +0200 Subject: [PATCH 35/49] fractal: 13 -> 14 --- pkgs/by-name/fr/fractal/package.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/fr/fractal/package.nix b/pkgs/by-name/fr/fractal/package.nix index 2aae752c96e6..d74d1e036524 100644 --- a/pkgs/by-name/fr/fractal/package.nix +++ b/pkgs/by-name/fr/fractal/package.nix @@ -26,26 +26,26 @@ sqlite, xdg-desktop-portal, libseccomp, - libglycin, + libglycin-gtk4, glycin-loaders, libwebp, }: stdenv.mkDerivation (finalAttrs: { pname = "fractal"; - version = "13"; + version = "14"; src = fetchFromGitLab { domain = "gitlab.gnome.org"; owner = "World"; repo = "fractal"; tag = finalAttrs.version; - hash = "sha256-zIB04OIhMSm6OWHalnLO9Ng87dsvsmYurrro3hKwoYU="; + hash = "sha256-pgu+O9fRyZiRYkxRTlPgnd5jaGPL1nN0agMR+x6+oGg="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit (finalAttrs) src; - hash = "sha256-5wI74sKytewbRs0T/IQZFEaRTgJcF6HyDEK0mpjy0LU="; + hash = "sha256-Fsw0hIAYiF+31PNuC5a9SatRatY7A8OwABhlyHIl1Lc="; }; patches = [ @@ -58,13 +58,14 @@ stdenv.mkDerivation (finalAttrs: { substituteInPlace src/meson.build --replace-fail \ "target_dir / rust_target / meson.project_name()" \ "target_dir / '${stdenv.hostPlatform.rust.cargoShortTarget}' / rust_target / meson.project_name()" + + patchShebangs ./build-aux/compile-blueprints.sh ''; nativeBuildInputs = [ glib grass-sass gtk4 - libglycin.patchVendorHook meson ninja pkg-config @@ -80,12 +81,12 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ glib - libglycin.setupHook glycin-loaders gtk4 gtksourceview5 lcms2 libadwaita + libglycin-gtk4 openssl pipewire libshumate From 08557f81ee061bb5126ed14b88bec771d7b5d261 Mon Sep 17 00:00:00 2001 From: "Adam C. Stephens" Date: Thu, 11 Jun 2026 10:24:46 -0400 Subject: [PATCH 36/49] claude-code: 2.1.172 -> 2.1.175 Changelog: https://github.com/anthropics/claude-code/blob/v2.1.175/CHANGELOG.md --- pkgs/by-name/cl/claude-code/manifest.json | 38 +++++++++++------------ pkgs/by-name/cl/claude-code/package.nix | 2 +- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/pkgs/by-name/cl/claude-code/manifest.json b/pkgs/by-name/cl/claude-code/manifest.json index 5521b16d66fc..5f2e80c7f9ce 100644 --- a/pkgs/by-name/cl/claude-code/manifest.json +++ b/pkgs/by-name/cl/claude-code/manifest.json @@ -1,47 +1,47 @@ { - "version": "2.1.172", - "commit": "1b719ca2781a2dccc4a769b66bc35b4a60509ad7", - "buildDate": "2026-06-10T16:38:17Z", + "version": "2.1.175", + "commit": "0b9163019454512fd2b2ed8e6bef5470f9259f35", + "buildDate": "2026-06-12T01:33:39Z", "platforms": { "darwin-arm64": { "binary": "claude", - "checksum": "3c31f345575bf6f261c7e19981f6491bb93eeb0ffb499e95033610a7184831ce", - "size": 223390752 + "checksum": "6b75bf132c866ed409bf913c318ca32011e73ffb12d3cd67ecc37bc4ee9ec65d", + "size": 224216352 }, "darwin-x64": { "binary": "claude", - "checksum": "c507f98750c5230e4247f7eadff38e4db04c006904f85379e31c5d5e82e1c384", - "size": 225892528 + "checksum": "3770f2cb42d3f776e62a59aa16230843dc7b8422b36be9b1532e02a6e92e7fa8", + "size": 226734640 }, "linux-arm64": { "binary": "claude", - "checksum": "4ef0d735bd4180c3bffc381f6dc38df979229a8637d294be751c6043d93d12e1", - "size": 248624776 + "checksum": "360f1f6f43ec26d9bb6e20e487bf44b753d9b8407e89e74bfeeb79707399f435", + "size": 249476744 }, "linux-x64": { "binary": "claude", - "checksum": "c0915dd1691d569aeebc7978b12e029718323685ec0dd4b5c6a453108d6be1f7", - "size": 248743632 + "checksum": "4fc72fa6090c9a03f1850e1b1ccb3d6806bf802b67e3cb9dc5f2ced4b7ed5ca1", + "size": 249566928 }, "linux-arm64-musl": { "binary": "claude", - "checksum": "6b10aad4270348175206bd2475f82ef3c56007dfb55d7b90f1950dfa8fb9eb40", - "size": 241479512 + "checksum": "27234d99851b2e343184466924d8f5c9318d1cfc4156fc4198c99e26c8a8ab86", + "size": 242331480 }, "linux-x64-musl": { "binary": "claude", - "checksum": "58f2c60711f95e51d86d1af5b915cbdd0458710f1830b7c26d59b78f1ad1f861", - "size": 243153968 + "checksum": "f40f977d2555f349e4d94f6efdc7deece3596c2cffa9d1a6a66b14ee30cfca54", + "size": 243977264 }, "win32-x64": { "binary": "claude.exe", - "checksum": "07132ca4bbef551c92c1ae6ca0220a5e523092c9fa9cf402f65f428450687455", - "size": 244181152 + "checksum": "c1b5b0ae1b607c1f8623d222c9eb6005a35dd6873aa834910a6fb3e00450e096", + "size": 244979872 }, "win32-arm64": { "binary": "claude.exe", - "checksum": "1e3e165c03de2af83c1e3516b73890b56e9785a2382338adcc28f41918bf4d2f", - "size": 240146080 + "checksum": "f01eea49c920e990a7c3d2c1071abbc7e79ab54a099380982c11a6f462ca7c4a", + "size": 240943776 } } } diff --git a/pkgs/by-name/cl/claude-code/package.nix b/pkgs/by-name/cl/claude-code/package.nix index 1fded730bd27..5887d13fb28a 100644 --- a/pkgs/by-name/cl/claude-code/package.nix +++ b/pkgs/by-name/cl/claude-code/package.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster"; homepage = "https://github.com/anthropics/claude-code"; downloadPage = "https://claude.com/product/claude-code"; - changelog = "https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md"; + changelog = "https://github.com/anthropics/claude-code/blob/v${finalAttrs.version}/CHANGELOG.md"; license = lib.licenses.unfree; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; platforms = [ From 11413b2e2f7a34bdd1925d823fb0b3be5475c31a Mon Sep 17 00:00:00 2001 From: "Adam C. Stephens" Date: Thu, 11 Jun 2026 14:43:28 -0400 Subject: [PATCH 37/49] vscode-extensions.anthropic.claude-code: 2.1.172 -> 2.1.175 --- .../extensions/anthropic.claude-code/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix index d5e75c2183e3..3acd29d4b269 100644 --- a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix +++ b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix @@ -21,26 +21,26 @@ vscode-utils.buildVscodeMarketplaceExtension (finalAttrs: { sources = { "x86_64-linux" = { arch = "linux-x64"; - hash = "sha256-R3ab2IeY9QnDhZFk52/05pIv4A+sZU3kJ9Jn5uLRa4Y="; + hash = "sha256-XA4xSd/sg9vhOGqcCNliHzloBxPZsgXW/dSkKp/RzM0="; }; "aarch64-linux" = { arch = "linux-arm64"; - hash = "sha256-AE6zS8bJ4vec+P36NkxWYQ1tmcJG2WsFkv75+gRlrxA="; + hash = "sha256-l2NjDHBOMBzJT9Pis7sqSuFuG07eZPALximND+hVqDU="; }; "x86_64-darwin" = { arch = "darwin-x64"; - hash = "sha256-n1qV1Lrl65HSDthMc5/7hLppeNBO6067Z+Rf5+kxfnA="; + hash = "sha256-hE/1N28f9uAzg2fG3Hrc4z1kW21rdhtCRmF9SphqiFc="; }; "aarch64-darwin" = { arch = "darwin-arm64"; - hash = "sha256-g+lkUYym43o8cEFseWCrcSUUTx296u8DS9JvnU1dBLU="; + hash = "sha256-68CmDax385o0juoQWNX/NLx+tjIt9YytTHjRZkqAR98="; }; }; in { name = "claude-code"; publisher = "anthropic"; - version = "2.1.172"; + version = "2.1.175"; } // sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system ${stdenvNoCC.hostPlatform.system}"); From 9ecd895fb12741a8612e1fad9acb3f94dcd03d40 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 13:40:28 +0000 Subject: [PATCH 38/49] scalingo: 1.44.1 -> 1.45.0 --- pkgs/by-name/sc/scalingo/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sc/scalingo/package.nix b/pkgs/by-name/sc/scalingo/package.nix index 9c9de873ec41..3c0c8465b21c 100644 --- a/pkgs/by-name/sc/scalingo/package.nix +++ b/pkgs/by-name/sc/scalingo/package.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "scalingo"; - version = "1.44.1"; + version = "1.45.0"; src = fetchFromGitHub { owner = "scalingo"; repo = "cli"; rev = version; - hash = "sha256-fLP7t1cgLOgU+xHLPFqDH+KbNuVxupuit5FBZ5iuQBE="; + hash = "sha256-UVXHhJEUqkVs/sMXl1wfYTIJkbZca5oJyoQ4byPw18s="; }; vendorHash = null; From 9dc318b758cee69a62824ac330ceafbd4a211dd1 Mon Sep 17 00:00:00 2001 From: SkohTV Date: Fri, 12 Jun 2026 09:40:52 -0400 Subject: [PATCH 39/49] autoprefixer: migrate to pnpm 10 and fetcherVersion 4 --- pkgs/by-name/au/autoprefixer/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/au/autoprefixer/package.nix b/pkgs/by-name/au/autoprefixer/package.nix index 25ea91c261c6..fb8027667b39 100644 --- a/pkgs/by-name/au/autoprefixer/package.nix +++ b/pkgs/by-name/au/autoprefixer/package.nix @@ -2,7 +2,7 @@ lib, stdenv, nodejs, - pnpm_9, + pnpm_10, fetchPnpmDeps, pnpmConfigHook, fetchFromGitHub, @@ -23,14 +23,14 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ nodejs pnpmConfigHook - pnpm_9 + pnpm_10 ]; pnpmDeps = fetchPnpmDeps { inherit (finalAttrs) pname version src; - pnpm = pnpm_9; - fetcherVersion = 3; - hash = "sha256-PPYyEsc0o5ufBexUdiX9EJLEsQZ0wX7saBzxJGsnseU="; + pnpm = pnpm_10; + fetcherVersion = 4; + hash = "sha256-Sxt4vtdlMdXxXqt22hfZJskj8mkB5t85IZ5BsbCoDF4="; }; installPhase = '' From 22569f1c50a0c15ec9dca06ed78ca8ba382fde57 Mon Sep 17 00:00:00 2001 From: SkohTV Date: Fri, 12 Jun 2026 09:41:26 -0400 Subject: [PATCH 40/49] autoprefixer: 10.4.24 -> 10.5.0 --- pkgs/by-name/au/autoprefixer/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/au/autoprefixer/package.nix b/pkgs/by-name/au/autoprefixer/package.nix index fb8027667b39..3de6913a223e 100644 --- a/pkgs/by-name/au/autoprefixer/package.nix +++ b/pkgs/by-name/au/autoprefixer/package.nix @@ -11,13 +11,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "autoprefixer"; - version = "10.4.24"; + version = "10.5.0"; src = fetchFromGitHub { owner = "postcss"; repo = "autoprefixer"; rev = finalAttrs.version; - hash = "sha256-9XZWkBDqkaBbIHq3wIbo4neToPM+NCxi9c1AyVqmnvc="; + hash = "sha256-s152v9sIuQLvhfPsZvQa+O9UhoASgm/e8dnz0t4pP3A="; }; nativeBuildInputs = [ From 92a8ae163982cd9793056b85e870717e635b36b5 Mon Sep 17 00:00:00 2001 From: SkohTV Date: Fri, 12 Jun 2026 09:42:28 -0400 Subject: [PATCH 41/49] autoprefixer: modernize --- pkgs/by-name/au/autoprefixer/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/au/autoprefixer/package.nix b/pkgs/by-name/au/autoprefixer/package.nix index 3de6913a223e..a5cf80ecbb09 100644 --- a/pkgs/by-name/au/autoprefixer/package.nix +++ b/pkgs/by-name/au/autoprefixer/package.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation (finalAttrs: { src = fetchFromGitHub { owner = "postcss"; repo = "autoprefixer"; - rev = finalAttrs.version; + tag = finalAttrs.version; hash = "sha256-s152v9sIuQLvhfPsZvQa+O9UhoASgm/e8dnz0t4pP3A="; }; @@ -60,7 +60,7 @@ stdenv.mkDerivation (finalAttrs: { meta = { description = "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website"; homepage = "https://github.com/postcss/autoprefixer"; - changelog = "https://github.com/postcss/autoprefixer/releases/tag/${finalAttrs.version}"; + changelog = "https://github.com/postcss/autoprefixer/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; mainProgram = "autoprefixer"; maintainers = [ ]; From 7ec013fcede9709ef144e81402110faccd70577c Mon Sep 17 00:00:00 2001 From: SkohTV Date: Fri, 12 Jun 2026 09:42:34 -0400 Subject: [PATCH 42/49] autoprefixer: adopt --- pkgs/by-name/au/autoprefixer/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/au/autoprefixer/package.nix b/pkgs/by-name/au/autoprefixer/package.nix index a5cf80ecbb09..35ea1a5adc2c 100644 --- a/pkgs/by-name/au/autoprefixer/package.nix +++ b/pkgs/by-name/au/autoprefixer/package.nix @@ -63,6 +63,6 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/postcss/autoprefixer/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; mainProgram = "autoprefixer"; - maintainers = [ ]; + maintainers = [ lib.maintainers.skohtv ]; }; }) From 307a2bf66f4d964b8f42167e5e1870ee38083af5 Mon Sep 17 00:00:00 2001 From: emilylange Date: Fri, 12 Jun 2026 16:36:10 +0200 Subject: [PATCH 43/49] chromium,chromedriver: 149.0.7827.102 -> 149.0.7827.114 https://chromereleases.googleblog.com/2026/06/stable-channel-update-for-desktop_01962725236.html This update includes 28 security fixes. CVEs: CVE-2026-12007 CVE-2026-12008 CVE-2026-12009 CVE-2026-12010 CVE-2026-12011 CVE-2026-12012 CVE-2026-12013 CVE-2026-12014 CVE-2026-12015 CVE-2026-12016 CVE-2026-12017 CVE-2026-12018 CVE-2026-12019 CVE-2026-12020 CVE-2026-12022 CVE-2026-12023 CVE-2026-12024 CVE-2026-12025 CVE-2026-12026 CVE-2026-12027 CVE-2026-12028 CVE-2026-12029 CVE-2026-12030 CVE-2026-12031 CVE-2026-12032 CVE-2026-12033 CVE-2026-12034 CVE-2026-12035 --- .../networking/browsers/chromium/info.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/info.json b/pkgs/applications/networking/browsers/chromium/info.json index 686a3f7aa05e..7c04bd3200c0 100644 --- a/pkgs/applications/networking/browsers/chromium/info.json +++ b/pkgs/applications/networking/browsers/chromium/info.json @@ -1,10 +1,10 @@ { "chromium": { - "version": "149.0.7827.102", + "version": "149.0.7827.114", "chromedriver": { - "version": "149.0.7827.103", - "hash_darwin": "sha256-3ws6RyF5SwjRcdo4IY+MzqcaZ6214dCVV3YB4YL+h6k=", - "hash_darwin_aarch64": "sha256-S8/dGAlipcYXzZIEJEGAnvsu3ilqjnBb8IdXUxGrp2o=" + "version": "149.0.7827.115", + "hash_darwin": "sha256-DOhM1knKphvLNyrkf0uvb9NZ3kBwSuVN5hkQLqAZR1Y=", + "hash_darwin_aarch64": "sha256-HXWvAjMdMMbeF8DsgFKNM+S0ZEYr2M8Wj0uUZC7tmxY=" }, "deps": { "depot_tools": { @@ -21,8 +21,8 @@ "DEPS": { "src": { "url": "https://chromium.googlesource.com/chromium/src.git", - "rev": "112f665d98a2fe84b156c74fbea2aed742f16c15", - "hash": "sha256-75PYsss5Qob493WCc28XHncjFIlvUr2HQx79w5UmK/k=", + "rev": "5be7af702aa73ed64f47858cecc86290e42f2a20", + "hash": "sha256-R2vnW3Wa+REar23OhyFWzOo44F8NN9IqH7GjWJ1g1lo=", "recompress": true }, "src/third_party/clang-format/script": { From c9ab01d7e77b67167bcc36f00843e807b7d2c616 Mon Sep 17 00:00:00 2001 From: SkohTV Date: Fri, 12 Jun 2026 10:15:51 -0400 Subject: [PATCH 44/49] tabby-agent: migrate to pnpm 11 and fetcherVersion 4 --- pkgs/by-name/ta/tabby-agent/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/ta/tabby-agent/package.nix b/pkgs/by-name/ta/tabby-agent/package.nix index 380e93f36c17..ce4c71dde583 100644 --- a/pkgs/by-name/ta/tabby-agent/package.nix +++ b/pkgs/by-name/ta/tabby-agent/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, nix-update-script, nodejs, - pnpm_9, + pnpm_11, fetchPnpmDeps, pnpmConfigHook, wrapGAppsHook3, @@ -22,7 +22,7 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ pnpmConfigHook - pnpm_9 + pnpm_11 wrapGAppsHook3 ]; @@ -51,9 +51,9 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = fetchPnpmDeps { inherit (finalAttrs) pname version src; - pnpm = pnpm_9; - fetcherVersion = 3; - hash = "sha256-xx45vudeW6OnUgyH0N+gQI5GPT8k5B4x0HdCvHF+f9A="; + pnpm = pnpm_11; + fetcherVersion = 4; + hash = "sha256-idEByCnQmqpnvni0RahZ7qEa0C/0zVPRFv0jaj3BcnM="; }; passthru.updateScript = nix-update-script { From 7419fc9e4e54b17a40cfd2f3f4552ddee79c5e61 Mon Sep 17 00:00:00 2001 From: SkohTV Date: Fri, 12 Jun 2026 10:16:07 -0400 Subject: [PATCH 45/49] tabby-agent: 0.31.2 -> 0.32.0 --- pkgs/by-name/ta/tabby-agent/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ta/tabby-agent/package.nix b/pkgs/by-name/ta/tabby-agent/package.nix index ce4c71dde583..ade9b0748e48 100644 --- a/pkgs/by-name/ta/tabby-agent/package.nix +++ b/pkgs/by-name/ta/tabby-agent/package.nix @@ -11,13 +11,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "tabby-agent"; - version = "0.31.2"; + version = "0.32.0"; src = fetchFromGitHub { owner = "TabbyML"; repo = "tabby"; tag = "v${finalAttrs.version}"; - hash = "sha256-dVQ/OLJnXgkzWfX3p6Cplw9hti2jXoMKCvKhm6YNzAI="; + hash = "sha256-OeHRJOg7UEOVBG7jTUGCpiuKZI0Jj7Gl7QDKpsjX5Bc="; }; nativeBuildInputs = [ From 8f546578b411c5a843d610076abbbaa73e56e783 Mon Sep 17 00:00:00 2001 From: SkohTV Date: Fri, 12 Jun 2026 10:16:34 -0400 Subject: [PATCH 46/49] tabby-agent: modernize --- pkgs/by-name/ta/tabby-agent/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ta/tabby-agent/package.nix b/pkgs/by-name/ta/tabby-agent/package.nix index ade9b0748e48..38cebb8dfbac 100644 --- a/pkgs/by-name/ta/tabby-agent/package.nix +++ b/pkgs/by-name/ta/tabby-agent/package.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation (finalAttrs: { meta = { homepage = "https://github.com/TabbyML/tabby"; - changelog = "https://github.com/TabbyML/tabby/releases/tag/v${finalAttrs.version}"; + changelog = "https://github.com/TabbyML/tabby/releases/tag/v${finalAttrs.src.tag}"; description = "Language server used to communicate with Tabby server"; mainProgram = "tabby-agent"; license = lib.licenses.asl20; From d9f2553da8dc567f0ca9593199e41c31eef84565 Mon Sep 17 00:00:00 2001 From: SkohTV Date: Fri, 12 Jun 2026 10:16:55 -0400 Subject: [PATCH 47/49] tabby-agent: adopt --- pkgs/by-name/ta/tabby-agent/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ta/tabby-agent/package.nix b/pkgs/by-name/ta/tabby-agent/package.nix index 38cebb8dfbac..f53f6d877d11 100644 --- a/pkgs/by-name/ta/tabby-agent/package.nix +++ b/pkgs/by-name/ta/tabby-agent/package.nix @@ -69,6 +69,6 @@ stdenv.mkDerivation (finalAttrs: { description = "Language server used to communicate with Tabby server"; mainProgram = "tabby-agent"; license = lib.licenses.asl20; - maintainers = [ ]; + maintainers = [ lib.maintainers.skohtv ]; }; }) From 155a9322c9f4722c250f7fbaab61d86e38d8f3e1 Mon Sep 17 00:00:00 2001 From: networkException Date: Fri, 12 Jun 2026 17:03:11 +0200 Subject: [PATCH 48/49] ungoogled-chromium: 149.0.7827.102-1 -> 149.0.7827.114-1 https://chromereleases.googleblog.com/2026/06/stable-channel-update-for-desktop_01962725236.html This update includes 28 security fixes. CVEs: CVE-2026-12007 CVE-2026-12008 CVE-2026-12009 CVE-2026-12010 CVE-2026-12011 CVE-2026-12012 CVE-2026-12013 CVE-2026-12014 CVE-2026-12015 CVE-2026-12016 CVE-2026-12017 CVE-2026-12018 CVE-2026-12019 CVE-2026-12020 CVE-2026-12022 CVE-2026-12023 CVE-2026-12024 CVE-2026-12025 CVE-2026-12026 CVE-2026-12027 CVE-2026-12028 CVE-2026-12029 CVE-2026-12030 CVE-2026-12031 CVE-2026-12032 CVE-2026-12033 CVE-2026-12034 CVE-2026-12035 --- .../networking/browsers/chromium/info.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/info.json b/pkgs/applications/networking/browsers/chromium/info.json index 7c04bd3200c0..3b348ec2911a 100644 --- a/pkgs/applications/networking/browsers/chromium/info.json +++ b/pkgs/applications/networking/browsers/chromium/info.json @@ -823,7 +823,7 @@ } }, "ungoogled-chromium": { - "version": "149.0.7827.102", + "version": "149.0.7827.114", "deps": { "depot_tools": { "rev": "45dedc4c3b87c982fd846b3dc599b233ed3aff90", @@ -835,16 +835,16 @@ "hash": "sha256-oFs7fZAZEs/gQ7X1A4uigo9+Y+iEN9sMMQYwAjEuD04=" }, "ungoogled-patches": { - "rev": "149.0.7827.102-1", - "hash": "sha256-I2yrFav9r+vfkKfCpa71F8amzApGViVT8Enlmukwe7s=" + "rev": "149.0.7827.114-1", + "hash": "sha256-F0pIlZM/EBPLIZxD8jyLX7HWe0vFn2HXs2vkM5+Xplg=" }, "npmHash": "sha256-pF0JtwFpPC4/fodbhSJnQKkczA9WlDg4VqEAy9aDVLg=" }, "DEPS": { "src": { "url": "https://chromium.googlesource.com/chromium/src.git", - "rev": "112f665d98a2fe84b156c74fbea2aed742f16c15", - "hash": "sha256-75PYsss5Qob493WCc28XHncjFIlvUr2HQx79w5UmK/k=", + "rev": "5be7af702aa73ed64f47858cecc86290e42f2a20", + "hash": "sha256-R2vnW3Wa+REar23OhyFWzOo44F8NN9IqH7GjWJ1g1lo=", "recompress": true }, "src/third_party/clang-format/script": { From 8fed7958a5ecf9826810f7fcbf3e97b0dc5093da Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 15:14:37 +0000 Subject: [PATCH 49/49] slothy: 0.2.1 -> 0.2.2 --- pkgs/development/python-modules/slothy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/slothy/default.nix b/pkgs/development/python-modules/slothy/default.nix index fa35bc5d3ec0..15b740b22fd5 100644 --- a/pkgs/development/python-modules/slothy/default.nix +++ b/pkgs/development/python-modules/slothy/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "slothy"; - version = "0.2.1"; + version = "0.2.2"; pyproject = true; src = fetchFromGitHub { owner = "slothy-optimizer"; repo = "slothy"; tag = version; - hash = "sha256-/xjOhf/Z4IQjrI05IfLWurZ0x0zTH97pr9F8dtEEsbA="; + hash = "sha256-pyES6ithBVAFSVdjsM61kp6eeEUxNsLs7jdekpX+YuA="; }; build-system = [ setuptools ];