python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / lazycli / default.nix
blobd3ef8192b38b582a4602bfd0358b089cb328d70a
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "lazycli";
5   version = "0.1.15";
7   src = fetchFromGitHub {
8     owner = "jesseduffield";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1qq167hc7pp9l0m40ysphfljakmm8hjjnhpldvb0kbc825h0z8z5";
12   };
14   cargoSha256 = "sha256-1BIUXepR7ppEkTLDOCZz9RBv+RazNMXnCnH1rvzVFgs=";
16   checkFlags = [
17     # currently broken: https://github.com/jesseduffield/lazycli/pull/20
18     "--skip=command::test_run_command_fail"
19   ];
21   meta = with lib; {
22     description = "A tool to static turn CLI commands into TUIs";
23     homepage = "https://github.com/jesseduffield/lazycli";
24     license = licenses.mit;
25     maintainers = with maintainers; [ figsoda ];
26   };