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; + }; +})