From 43b3f5386654ada5cbc5509acefdb69a180a136f Mon Sep 17 00:00:00 2001 From: whispers Date: Mon, 2 Feb 2026 20:10:14 -0500 Subject: [PATCH 1/2] arti: 1.9.0 -> 2.0.0 Release announcement: https://blog.torproject.org/arti_2_0_0_released/ Changelog: https://gitlab.torproject.org/tpo/core/arti/-/blob/arti-v2.0.0/CHANGELOG.md --- doc/release-notes/rl-2605.section.md | 2 ++ pkgs/by-name/ar/arti/package.nix | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/release-notes/rl-2605.section.md b/doc/release-notes/rl-2605.section.md index 6b7a5a919d9f..ea6ad0998707 100644 --- a/doc/release-notes/rl-2605.section.md +++ b/doc/release-notes/rl-2605.section.md @@ -65,6 +65,8 @@ - `nodePackages.wavedrom-cli` has been removed, as it was unmaintained within nixpkgs. +- `arti` has been updated to major version 2, which removed the long-deprecated `proxy.socks_port` and `proxy.dns_port` and the legacy syntax for specifying directory authorities. For more information, see the [changelog for 2.0.0](https://gitlab.torproject.org/tpo/core/arti/-/blob/arti-v2.0.0/CHANGELOG.md). + - `kanata` now requires `karabiner-dk` version 6.0+ or later. The package has been updated to use the new `karabiner-dk` package and the `darwinDriver` output stays at the version defined in the package. diff --git a/pkgs/by-name/ar/arti/package.nix b/pkgs/by-name/ar/arti/package.nix index ce6738fac47e..e179312b856d 100644 --- a/pkgs/by-name/ar/arti/package.nix +++ b/pkgs/by-name/ar/arti/package.nix @@ -12,7 +12,7 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "arti"; - version = "1.9.0"; + version = "2.0.0"; src = fetchFromGitLab { domain = "gitlab.torproject.org"; @@ -20,10 +20,10 @@ rustPlatform.buildRustPackage (finalAttrs: { owner = "core"; repo = "arti"; tag = "arti-v${finalAttrs.version}"; - hash = "sha256-b5DWu38/iKwKcmp4BNgkeE5F522YRZZiev9gUZ/Rb1E="; + hash = "sha256-eqCQwBP/QLxBwjGvksFwNwNSCng/pf19DiBQ+tA4a7M="; }; - cargoHash = "sha256-SGxSZaY8//FHhySbarfgleafF5YEWJW/fUAwo3576NI="; + cargoHash = "sha256-0CxlvTetxXM+xe6r98T6hzoD/IGfYkI9TqqUe+u1U2I="; nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ]; From a45e04dd397601e3a9991f89428787e20fcaf364 Mon Sep 17 00:00:00 2001 From: whispers Date: Mon, 2 Feb 2026 21:47:14 -0500 Subject: [PATCH 2/2] arti: add whispersofthedawn as maintainer --- pkgs/by-name/ar/arti/package.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ar/arti/package.nix b/pkgs/by-name/ar/arti/package.nix index e179312b856d..06f4591d2866 100644 --- a/pkgs/by-name/ar/arti/package.nix +++ b/pkgs/by-name/ar/arti/package.nix @@ -79,6 +79,9 @@ rustPlatform.buildRustPackage (finalAttrs: { asl20 mit ]; - maintainers = with lib.maintainers; [ rapiteanu ]; + maintainers = with lib.maintainers; [ + rapiteanu + whispersofthedawn + ]; }; })