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

29 lines
847 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-04-13 11:49:57 +01:00
buildGoModule rec {
pname = "3mux";
2020-10-09 19:15:04 +01:00
version = "1.0.1";
2020-04-13 11:49:57 +01:00
src = fetchFromGitHub {
owner = "aaronjanse";
repo = pname;
rev = "v${version}";
2020-10-09 19:15:04 +01:00
sha256 = "sha256-auEMG3txO2JS/2dMFBtEujv9s5I0A80Vwts5kXjH600=";
2020-04-13 11:49:57 +01:00
};
2020-10-09 19:15:04 +01:00
vendorSha256 = "sha256-rcbnyScD2GU1DLY6dTEPgFNXZfgkxXPn5lt6HRqa0d8=";
meta = with lib; {
2020-04-13 11:49:57 +01:00
description = "Terminal multiplexer inspired by i3";
2020-10-09 19:15:04 +01: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 11:49:57 +01:00
homepage = "https://github.com/aaronjanse/3mux";
license = licenses.mit;
maintainers = with maintainers; [ aaronjanse Br1ght0ne ];
2020-10-09 19:15:04 +01:00
platforms = platforms.unix;
2020-04-13 11:49:57 +01:00
};
}