tmux: 3.6a → 3.7

This commit is contained in:
Alexis Hildebrandt
2026-06-29 09:41:58 +02:00
parent ff207b1278
commit 2b54fe9cd4
+2 -14
View File
@@ -2,7 +2,6 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
autoreconfHook,
bison,
libevent,
@@ -26,7 +25,7 @@
stdenv.mkDerivation (finalAttrs: {
pname = "tmux";
version = "3.6a";
version = "3.7";
outputs = [
"out"
@@ -37,20 +36,9 @@ stdenv.mkDerivation (finalAttrs: {
owner = "tmux";
repo = "tmux";
tag = finalAttrs.version;
hash = "sha256-VwOyR9YYhA/uyVRJbspNrKkJWJGYFFktwPnnwnIJ97s=";
hash = "sha256-dgqI1jZjnluN/F/AjngzcaMy3TgudmkvDT336YlhGZM=";
};
patches = [
# Fix NULL pointer dereference in control_write() when a control-mode
# client is notified before control_state has been allocated.
# https://github.com/tmux/tmux/issues/4980
(fetchpatch {
name = "tmux-control-notify-uninitialized.patch";
url = "https://github.com/tmux/tmux/commit/e5a2a25fafb8ee107c230d8acad694f6b635f8bb.patch";
hash = "sha256-UPbhMNnH1WJwTH/LVwjVonTqvNhyuniUrYm7iLVkCfg=";
})
];
nativeBuildInputs = [
pkg-config
autoreconfHook