2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2021-01-06 16:14:23 +00:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "taskwarrior-tui";
|
2022-04-01 04:59:33 +01:00
|
|
|
version = "0.22.0";
|
2021-01-06 16:14:23 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kdheepak";
|
|
|
|
repo = "taskwarrior-tui";
|
|
|
|
rev = "v${version}";
|
2022-04-01 04:59:33 +01:00
|
|
|
sha256 = "sha256-121TfmaWrWppsOiuF+8gxy+3J5YzbliYj88nw4aLt9w=";
|
2021-01-06 16:14:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Because there's a test that requires terminal access
|
|
|
|
doCheck = false;
|
|
|
|
|
2022-04-01 04:59:33 +01:00
|
|
|
cargoSha256 = "sha256-oTb1pSA9g9cExCXKaQjNm+h5WB4bWuqODkU7MvvspGQ=";
|
2021-01-06 16:14:23 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-01-06 16:14:23 +00:00
|
|
|
description = "A terminal user interface for taskwarrior ";
|
|
|
|
homepage = "https://github.com/kdheepak/taskwarrior-tui";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
|
|
};
|
|
|
|
}
|