nix/pkgs/taskwarrior-tui.nix

30 lines
714 B
Nix
Raw Normal View History

{
lib,
rustPlatform,
fetchFromGitHub,
...
}:
rustPlatform.buildRustPackage rec {
pname = "taskwarrior-tui-2";
version = "0.19.4";
src = fetchFromGitHub {
owner = "kdheepak";
repo = "taskwarrior-tui";
rev = "v${version}";
sha256 = "sha256-Rztz/qye+VsZ0czPt6xk4PwK0e6Aq1GC404+843W55Y=";
};
# Because there's a test that requires terminal access
doCheck = false;
cargoSha256 = "sha256-CKTVC7OY6XEA8SRVGfkK/arogRvbWlR7umlBA/sDWh0=";
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];
};
}