biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / tab-rs / default.nix
blob7d3721acb3c4075512c1e9d42949c3b00a4be1e3
1 { lib, stdenv, fetchFromGitHub, rustPlatform, IOKit }:
3 rustPlatform.buildRustPackage rec {
4   pname = "tab-rs";
5   version = "0.5.7";
7   src = fetchFromGitHub {
8     owner = "austinjones";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1crj0caimin667f9kz34c0sm77892dmqaf1kxryqakqm75az5wfr";
12   };
14   cargoHash = "sha256-56gy9AH3i4OSvExMuR3n/2hF5pJgbn5JJpxZLXKfu2w=";
16   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ IOKit ];
18   # many tests are failing
19   doCheck = false;
21   meta = with lib; {
22     description = "Intuitive, config-driven terminal multiplexer designed for software & systems engineers";
23     homepage = "https://github.com/austinjones/tab-rs";
24     license = licenses.mit;
25     maintainers = [ ];
26     mainProgram = "tab";
27     broken = (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64); # Added 2023-11-13
28   };