Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
980 B
Nix
39 lines
980 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "taskwarrior-tui";
|
|
version = "0.26.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kdheepak";
|
|
repo = "taskwarrior-tui";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-8PFGlsm9B6qHRrY7YIPwknmGS+Peg5MWd0kMT173wIQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-y5tHZIsbHLU9acIUM/QUx1T0eLK/E/jR+XXys5JnGjU=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
# Because there's a test that requires terminal access
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
installManPage docs/taskwarrior-tui.1
|
|
installShellCompletion completions/taskwarrior-tui.{bash,fish} --zsh completions/_taskwarrior-tui
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Terminal user interface for taskwarrior";
|
|
homepage = "https://github.com/kdheepak/taskwarrior-tui";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
mainProgram = "taskwarrior-tui";
|
|
};
|
|
}
|