about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2018-10-16 20:09:59 +0200
committerGitHub <noreply@github.com>2018-10-16 20:09:59 +0200
commit887bf77621dbd93c3e5296a6b047d00bf3da8b78 (patch)
tree08651c3cbeaa394219deeb960ec0ae3c4d2ade0f /pkgs/tools
parent10addad6035034b2b78f3c74ef436cd7146d5231 (diff)
parent4e75120cd4541a2f919d1d3663217e6f1b1a1820 (diff)
downloadnixlib-887bf77621dbd93c3e5296a6b047d00bf3da8b78.tar
nixlib-887bf77621dbd93c3e5296a6b047d00bf3da8b78.tar.gz
nixlib-887bf77621dbd93c3e5296a6b047d00bf3da8b78.tar.bz2
nixlib-887bf77621dbd93c3e5296a6b047d00bf3da8b78.tar.lz
nixlib-887bf77621dbd93c3e5296a6b047d00bf3da8b78.tar.xz
nixlib-887bf77621dbd93c3e5296a6b047d00bf3da8b78.tar.zst
nixlib-887bf77621dbd93c3e5296a6b047d00bf3da8b78.zip
Merge pull request #48574 from kmille/tmux-2.8
tmux: 2.7 -> 2.8
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/tmux/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/tools/misc/tmux/default.nix b/pkgs/tools/misc/tmux/default.nix
index fcec511b7ef5..038b3206ac24 100644
--- a/pkgs/tools/misc/tmux/default.nix
+++ b/pkgs/tools/misc/tmux/default.nix
@@ -13,7 +13,7 @@ in
 
 stdenv.mkDerivation rec {
   name = "tmux-${version}";
-  version = "2.7";
+  version = "2.8";
 
   outputs = [ "out" "man" ];
 
@@ -21,9 +21,13 @@ stdenv.mkDerivation rec {
     owner = "tmux";
     repo = "tmux";
     rev = version;
-    sha256 = "1yr4l8ckd67c3id4vrbpha91xxpdfpw0cpbr3v81lam0m7k4rgba";
+    sha256 = "0n8sjddy00xgh1rvvw968hh72pyslg1gahmzajfc4b3xax87drpi";
   };
 
+  postPatch = ''
+    sed -i 's/2.8-rc/2.8/' configure.ac
+  '';
+
   nativeBuildInputs = [ pkgconfig autoreconfHook ];
 
   buildInputs = [ ncurses libevent makeWrapper ];