From 2ca9e6f7ef7b23d4a6866287fe9444624716df8c Mon Sep 17 00:00:00 2001 From: Max Blomstervall Date: Mon, 27 Oct 2025 00:57:25 +0100 Subject: [PATCH] kanban: init at 0.1.16 --- pkgs/by-name/ka/kanban/package.nix | 38 ++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 pkgs/by-name/ka/kanban/package.nix diff --git a/pkgs/by-name/ka/kanban/package.nix b/pkgs/by-name/ka/kanban/package.nix new file mode 100644 index 000000000000..b531fa012254 --- /dev/null +++ b/pkgs/by-name/ka/kanban/package.nix @@ -0,0 +1,38 @@ +{ + lib, + fetchFromGitHub, + rustPlatform, + nix-update-script, +}: + +rustPlatform.buildRustPackage (finalAttrs: { + pname = "kanban"; + version = "0.1.16"; + + src = fetchFromGitHub { + owner = "fulsomenko"; + repo = "kanban"; + tag = "v${finalAttrs.version}"; + hash = "sha256-WksL0AhooBTV+W1knU+tns/qvHDd0z6mE2HkC57BAcU="; + }; + + GIT_COMMIT_HASH = finalAttrs.src.rev; + + cargoHash = "sha256-Q/o5MHjVRrJpfhkzNNJ6j4oASV5wDg/0Zi43zPlp5p8="; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Terminal-based project management solution"; + longDescription = '' + A terminal-based kanban/project management tool inspired by lazygit, + built with Rust. Features include file persistence, keyboard-driven + navigation, multi-select capabilities, and sprint management. + ''; + homepage = "https://github.com/fulsomenko/kanban"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fulsomenko ]; + mainProgram = "kanban"; + platforms = lib.platforms.all; + }; +})