nixpkgs/pkgs/tools/misc/lazycli/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

29 lines
763 B
Nix

{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "lazycli";
version = "0.1.15";
src = fetchFromGitHub {
owner = "jesseduffield";
repo = pname;
rev = "v${version}";
sha256 = "1qq167hc7pp9l0m40ysphfljakmm8hjjnhpldvb0kbc825h0z8z5";
};
cargoSha256 = "sha256-1BIUXepR7ppEkTLDOCZz9RBv+RazNMXnCnH1rvzVFgs=";
checkFlags = [
# currently broken: https://github.com/jesseduffield/lazycli/pull/20
"--skip=command::test_run_command_fail"
];
meta = with lib; {
description = "Tool to static turn CLI commands into TUIs";
homepage = "https://github.com/jesseduffield/lazycli";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
mainProgram = "lazycli";
};
}