nixpkgs/pkgs/tools/misc/tab-rs/default.nix

28 lines
753 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, IOKit }:
rustPlatform.buildRustPackage rec {
pname = "tab-rs";
2021-01-22 02:17:58 +00:00
version = "0.5.6";
src = fetchFromGitHub {
owner = "austinjones";
repo = pname;
rev = "v${version}";
2021-01-22 02:17:58 +00:00
sha256 = "1gyl2dxyhh4d2lpxg9s5cx734sfs1kys5z5hjqfgbiny28hp9sw6";
};
2021-01-22 02:17:58 +00:00
cargoSha256 = "1apjzn164kakb2snrq1wfl7grm72hkddi3am6d01h5kkngkp68qm";
2021-01-15 09:19:50 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ IOKit ];
# many tests are failing
doCheck = false;
meta = with lib; {
description = "Intuitive, config-driven terminal multiplexer designed for software & systems engineers";
homepage = "https://github.com/austinjones/tab-rs";
license = licenses.mit;
maintainers = with maintainers; [ bbigras ];
};
}