forked from mirrors/nixpkgs
Merge pull request #193785 from figsoda/lazycli
lazycli: init at 0.1.15
This commit is contained in:
commit
db8de9eb03
27
pkgs/tools/misc/lazycli/default.nix
Normal file
27
pkgs/tools/misc/lazycli/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ 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 = "A tool to static turn CLI commands into TUIs";
|
||||
homepage = "https://github.com/jesseduffield/lazycli";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
|
@ -8586,6 +8586,8 @@ with pkgs;
|
|||
|
||||
latexrun = callPackage ../tools/typesetting/tex/latexrun { };
|
||||
|
||||
lazycli = callPackage ../tools/misc/lazycli { };
|
||||
|
||||
lcdf-typetools = callPackage ../tools/misc/lcdf-typetools { };
|
||||
|
||||
ldapmonitor = callPackage ../tools/security/ldapmonitor { };
|
||||
|
|
Loading…
Reference in a new issue