From 9c0c9517bbcd8b04cdc039172ad7c52e0760b68b Mon Sep 17 00:00:00 2001 From: Jan-Niklas Burfeind Date: Fri, 12 Jun 2026 23:46:50 +0200 Subject: [PATCH 1/2] thokr: modernize by marking strictDeps and __structuredAttrs and portray the ownership transfer on GitHub. Co-authored-by: Tom van Dijk <18gatenmaker6@gmail.com> --- pkgs/by-name/th/thokr/package.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/th/thokr/package.nix b/pkgs/by-name/th/thokr/package.nix index 0b95ea03803e..4a89443ea615 100644 --- a/pkgs/by-name/th/thokr/package.nix +++ b/pkgs/by-name/th/thokr/package.nix @@ -8,8 +8,11 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "thokr"; version = "0.4.1"; + __structuredAttrs = true; + strictDeps = true; + src = fetchFromGitHub { - owner = "thatvegandev"; + owner = "jrnxf"; repo = "thokr"; rev = "v${finalAttrs.version}"; sha256 = "0aryfx9qlnjdq3iq2d823c82fhkafvibmbz58g48b8ah5x5fv3ir"; @@ -19,7 +22,7 @@ rustPlatform.buildRustPackage (finalAttrs: { meta = { description = "Typing tui with visualized results and historical logging"; - homepage = "https://github.com/thatvegandev/thokr"; + homepage = "https://github.com/jrnxf/thokr"; license = lib.licenses.mit; maintainers = [ ]; mainProgram = "thokr"; From a18ad235233782fb607c7d711132fe3bf89b665b Mon Sep 17 00:00:00 2001 From: Jan-Niklas Burfeind Date: Fri, 12 Jun 2026 23:47:50 +0200 Subject: [PATCH 2/2] thokr: add aiyion as maintainer --- pkgs/by-name/th/thokr/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/th/thokr/package.nix b/pkgs/by-name/th/thokr/package.nix index 4a89443ea615..232c451f9902 100644 --- a/pkgs/by-name/th/thokr/package.nix +++ b/pkgs/by-name/th/thokr/package.nix @@ -24,7 +24,7 @@ rustPlatform.buildRustPackage (finalAttrs: { description = "Typing tui with visualized results and historical logging"; homepage = "https://github.com/jrnxf/thokr"; license = lib.licenses.mit; - maintainers = [ ]; + maintainers = with lib.maintainers; [ aiyion ]; mainProgram = "thokr"; }; })