nixpkgs/pkgs/tools/misc/3mux/default.nix

29 lines
857 B
Nix
Raw Normal View History

2020-04-18 15:43:58 +00:00
{ stdenv, buildGoModule, fetchFromGitHub }:
2020-04-13 10:49:57 +00:00
buildGoModule rec {
pname = "3mux";
2020-10-09 18:15:04 +00:00
version = "1.0.1";
2020-04-13 10:49:57 +00:00
src = fetchFromGitHub {
owner = "aaronjanse";
repo = pname;
rev = "v${version}";
2020-10-09 18:15:04 +00:00
sha256 = "sha256-auEMG3txO2JS/2dMFBtEujv9s5I0A80Vwts5kXjH600=";
2020-04-13 10:49:57 +00:00
};
2020-10-09 18:15:04 +00:00
vendorSha256 = "sha256-rcbnyScD2GU1DLY6dTEPgFNXZfgkxXPn5lt6HRqa0d8=";
2020-04-18 15:43:58 +00:00
meta = with stdenv.lib; {
2020-04-13 10:49:57 +00:00
description = "Terminal multiplexer inspired by i3";
2020-10-09 18:15:04 +00:00
longDescription = ''
3mux is a terminal multiplexer with out-of-the-box support for search,
mouse-controlled scrollback, and i3-like keybindings. Imagine tmux with a
smaller learning curve and more sane defaults.
'';
2020-04-13 10:49:57 +00:00
homepage = "https://github.com/aaronjanse/3mux";
license = licenses.mit;
maintainers = with maintainers; [ aaronjanse Br1ght0ne ];
2020-10-09 18:15:04 +00:00
platforms = platforms.unix;
2020-04-13 10:49:57 +00:00
};
}