kanban: init at 0.1.16

This commit is contained in:
Max Blomstervall
2026-01-09 23:30:42 +01:00
committed by Sandro Jäckel
parent 6c44c69c41
commit 2ca9e6f7ef
+38
View File
@@ -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;
};
})