kanban: init at 0.1.16 (#456042)
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user