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
41 lines
993 B
Nix
41 lines
993 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "tydra";
|
|
version = "1.0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Mange";
|
|
repo = "tydra";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-bH/W54b7UHdkbgLXAd+l5I6UAKjWDMW+I5mfwT4yEEY=";
|
|
};
|
|
|
|
cargoHash = "sha256-sFNrpddhsqxy7HtCXV78oacyNzrTeM0rUcL7qgeJTcM=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installManPage doc/{tydra.1,tydra-actions.5}
|
|
|
|
$out/bin/tydra --generate-completions bash > tydra.bash
|
|
$out/bin/tydra --generate-completions fish > tydra.fish
|
|
$out/bin/tydra --generate-completions zsh > _tydra
|
|
|
|
installShellCompletion tydra.{bash,fish} _tydra
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Shortcut menu-based task runner, inspired by Emacs Hydra";
|
|
homepage = "https://github.com/Mange/tydra";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
|
mainProgram = "tydra";
|
|
};
|
|
}
|