2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-04-13 03:49:57 -07:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "3mux";
|
2020-10-09 11:15:04 -07:00
|
|
|
version = "1.0.1";
|
2020-04-13 03:49:57 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aaronjanse";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-10-09 11:15:04 -07:00
|
|
|
sha256 = "sha256-auEMG3txO2JS/2dMFBtEujv9s5I0A80Vwts5kXjH600=";
|
2020-04-13 03:49:57 -07:00
|
|
|
};
|
|
|
|
|
2020-10-09 11:15:04 -07:00
|
|
|
vendorSha256 = "sha256-rcbnyScD2GU1DLY6dTEPgFNXZfgkxXPn5lt6HRqa0d8=";
|
2020-08-03 17:26:27 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-04-13 03:49:57 -07:00
|
|
|
description = "Terminal multiplexer inspired by i3";
|
2020-10-09 11:15:04 -07: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 03:49:57 -07:00
|
|
|
homepage = "https://github.com/aaronjanse/3mux";
|
|
|
|
license = licenses.mit;
|
2020-11-17 03:02:06 -08:00
|
|
|
maintainers = with maintainers; [ aaronjanse Br1ght0ne ];
|
2020-10-09 11:15:04 -07:00
|
|
|
platforms = platforms.unix;
|
2020-04-13 03:49:57 -07:00
|
|
|
};
|
2020-07-30 20:58:04 -07:00
|
|
|
}
|