_3mux: init at 0.2.0 (#85141)
* _3mux: init at 0.1.0 * _3mux: 0.1.0 -> 0.2.0
This commit is contained in:
commit
f6be877728
24
pkgs/tools/misc/3mux/default.nix
Normal file
24
pkgs/tools/misc/3mux/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "3mux";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "aaronjanse";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "02ry066psvlqdyhimci7nskw4sfb70dw5z7ag7s7rz36gmx1vnmr";
|
||||
};
|
||||
|
||||
modSha256 = "1ag9lx8xcp2z9lrg404914zin45n8f4s08365yk71q5vyiwxjj3i";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Terminal multiplexer inspired by i3";
|
||||
homepage = "https://github.com/aaronjanse/3mux";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ aaronjanse filalex77 ];
|
||||
# TODO: fix modules build on darwin
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
@ -510,6 +510,8 @@ in
|
||||
|
||||
_3llo = callPackage ../tools/misc/3llo { };
|
||||
|
||||
_3mux = callPackage ../tools/misc/3mux { };
|
||||
|
||||
_1password = callPackage ../applications/misc/1password { };
|
||||
|
||||
_6tunnel = callPackage ../tools/networking/6tunnel { };
|
||||
|
Loading…
Reference in New Issue
Block a user