_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:
Milan 2020-04-18 20:26:36 +02:00 committed by GitHub
commit f6be877728
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View 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;
};
}

View File

@ -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 { };