kanban: init at 0.1.16 (#456042)

This commit is contained in:
Sandro
2026-01-09 23:31:20 +00:00
committed by GitHub
2 changed files with 45 additions and 0 deletions
+7
View File
@@ -9133,6 +9133,13 @@
githubId = 23723926;
name = "Dash R";
};
fulsomenko = {
email = "max.blomstervall@gmail.com";
github = "fulsomenko";
githubId = 14945057;
name = "Max Emil Yoon Blomstervall";
keys = [ { fingerprint = "D14A 78F2 AAC5 9A1B 3E1F 0547 044B 046E 5745 CC2B"; } ];
};
funkeleinhorn = {
email = "git@funkeleinhorn.com";
github = "funkeleinhorn";
+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;
};
})