summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2020-10-09 15:15:04 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2020-10-12 04:07:17 -0300
commit70f8c8fc1bb2322eb681630a1150870ffd243266 (patch)
treec71b5d40efc4ceeb0d12a1234478d0f8461c1b45
parenta945c573dc356d0129793afce7a4514c89216475 (diff)
downloadnixpkgs-70f8c8fc1bb2322eb681630a1150870ffd243266.tar
nixpkgs-70f8c8fc1bb2322eb681630a1150870ffd243266.tar.gz
nixpkgs-70f8c8fc1bb2322eb681630a1150870ffd243266.tar.bz2
nixpkgs-70f8c8fc1bb2322eb681630a1150870ffd243266.tar.lz
nixpkgs-70f8c8fc1bb2322eb681630a1150870ffd243266.tar.xz
nixpkgs-70f8c8fc1bb2322eb681630a1150870ffd243266.tar.zst
nixpkgs-70f8c8fc1bb2322eb681630a1150870ffd243266.zip
3mux: 0.3.0 -> 1.0.1
-rw-r--r--pkgs/tools/misc/3mux/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/tools/misc/3mux/default.nix b/pkgs/tools/misc/3mux/default.nix
index 45c0209e917..04335d3f33a 100644
--- a/pkgs/tools/misc/3mux/default.nix
+++ b/pkgs/tools/misc/3mux/default.nix
@@ -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;
   };
 }