3mux: 0.3.0 -> 1.0.1

This commit is contained in:
AndersonTorres 2020-10-09 15:15:04 -03:00
parent a945c573dc
commit 70f8c8fc1b

View file

@ -2,21 +2,27 @@
buildGoModule rec {
pname = "3mux";
version = "0.3.0";
version = "1.0.1";
src = fetchFromGitHub {
owner = "aaronjanse";
repo = pname;
rev = "v${version}";
sha256 = "164jylifkdfsi3r6vmlp5afgly73fqfbad7lbr58wmy21l9x5rcj";
sha256 = "sha256-auEMG3txO2JS/2dMFBtEujv9s5I0A80Vwts5kXjH600=";
};
vendorSha256 = "0dc1c0z3xkfpwmwb3hafsv7qa6lc7bzz78by5w20rxrrk4r87gic";
vendorSha256 = "sha256-rcbnyScD2GU1DLY6dTEPgFNXZfgkxXPn5lt6HRqa0d8=";
meta = with stdenv.lib; {
description = "Terminal multiplexer inspired by i3";
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.
'';
homepage = "https://github.com/aaronjanse/3mux";
license = licenses.mit;
maintainers = with maintainers; [ aaronjanse filalex77 ];
platforms = platforms.unix;
};
}