commit 0ffe0d41ea14e7ee34856678afce8a4648968f45 parent 385793a186159874463aea0a26801dc714f0a214 Author: Nikolay Korotkiy <sikmir@disroot.org> Date: Sun, 15 Feb 2026 14:47:24 +0400 Add tatuin Diffstat:
| A | pkgs/by-name/ta/tatuin/package.nix | | | 30 | ++++++++++++++++++++++++++++++ |
1 file changed, 30 insertions(+), 0 deletions(-)
diff --git a/pkgs/by-name/ta/tatuin/package.nix b/pkgs/by-name/ta/tatuin/package.nix @@ -0,0 +1,30 @@ +{ + lib, + rustPlatform, + fetchFromGitHub, + perl, +}: + +rustPlatform.buildRustPackage (finalAttrs: { + pname = "tatuin"; + version = "0.26.0"; + + src = fetchFromGitHub { + owner = "panter-dsd"; + repo = "tatuin"; + tag = "v${finalAttrs.version}"; + hash = "sha256-TPIjVpIFgBdZvPdmC1IyPyAjRP2Zq4Tx2HPAPrik7Ok="; + }; + + cargoHash = "sha256-MIWm84Dmhy71glhAQLEIX69IWQHePx4nY9TT2O9E7Fw="; + + nativeBuildInputs = [ perl ]; + + meta = { + description = "Task Aggregator TUI for N providers"; + homepage = "https://github.com/panter-dsd/tatuin"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sikmir ]; + mainProgram = "tatuin"; + }; +})
