2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2021-01-06 17:14:23 +01:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "taskwarrior-tui";
|
2021-10-12 09:49:52 +02:00
|
|
|
version = "0.13.34";
|
2021-01-06 17:14:23 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kdheepak";
|
|
|
|
repo = "taskwarrior-tui";
|
|
|
|
rev = "v${version}";
|
2021-10-12 09:49:52 +02:00
|
|
|
sha256 = "0p0nkqvkir6lriq75ingpfywn2yvyn3l35yxzk4aiq6vr2n7h3mw";
|
2021-01-06 17:14:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Because there's a test that requires terminal access
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-10-12 09:49:52 +02:00
|
|
|
cargoSha256 = "1mzc6rnqcv97dlkl4j4p180f46wlyq45lc6nq7gqw396wc6m04km";
|
2021-01-06 17:14:23 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2021-01-06 17:14:23 +01:00
|
|
|
description = "A terminal user interface for taskwarrior ";
|
|
|
|
homepage = "https://github.com/kdheepak/taskwarrior-tui";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
|
|
};
|
|
|
|
}
|