nix/pkgs/taskwarrior-tui.nix

30 lines
712 B
Nix
Raw Normal View History

{
lib,
rustPlatform,
fetchFromGitHub,
...
}:
rustPlatform.buildRustPackage rec {
2022-02-19 22:30:20 +00:00
pname = "taskwarrior-tui";
2022-03-24 21:46:26 +00:00
version = "0.22.0";
src = fetchFromGitHub {
owner = "kdheepak";
repo = "taskwarrior-tui";
rev = "v${version}";
2022-03-24 21:46:26 +00:00
sha256 = "sha256-121TfmaWrWppsOiuF+8gxy+3J5YzbliYj88nw4aLt9w=";
};
# Because there's a test that requires terminal access
doCheck = false;
cargoSha256 = "sha256-oTb1pSA9g9cExCXKaQjNm+h5WB4bWuqODkU7MvvspGQ=";
meta = with lib; {
description = "A terminal user interface for taskwarrior ";
homepage = "https://github.com/kdheepak/taskwarrior-tui";
2022-02-17 19:51:28 +00:00
license = with licenses; [mit];
maintainers = with maintainers; [matthiasbeyer];
};
}