From 40b0a76c94309deaee333e84d0aa00e22776ab0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 1 Jul 2026 20:54:12 +0200 Subject: [PATCH 1/3] tmux: 3.7 -> 3.7b Diff: https://github.com/tmux/tmux/compare/3.7...3.7b Changelog: https://github.com/tmux/tmux/raw/3.7a/CHANGES Changelog: https://github.com/tmux/tmux/raw/3.7b/CHANGES --- pkgs/by-name/tm/tmux/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tm/tmux/package.nix b/pkgs/by-name/tm/tmux/package.nix index 9f479fa366aa..babc774b187c 100644 --- a/pkgs/by-name/tm/tmux/package.nix +++ b/pkgs/by-name/tm/tmux/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "tmux"; - version = "3.7"; + version = "3.7b"; outputs = [ "out" @@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: { owner = "tmux"; repo = "tmux"; tag = finalAttrs.version; - hash = "sha256-dgqI1jZjnluN/F/AjngzcaMy3TgudmkvDT336YlhGZM="; + hash = "sha256-CTq06XP997M0ODxQihTq34dI9H6jSRLUXLYuTWOwDpc="; }; nativeBuildInputs = [ From 1ec413ad635782eb17d5475f8092618fb11dc62c Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Fri, 3 Jul 2026 20:01:07 +0200 Subject: [PATCH 2/3] python3Packages.libtmux: 0.59.0 -> 0.60.0 Diff: https://github.com/tmux-python/libtmux/compare/v0.59.0...v0.60.0 Changelog: https://github.com/tmux-python/libtmux/raw/v0.60.0/CHANGES --- pkgs/development/python-modules/libtmux/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/libtmux/default.nix b/pkgs/development/python-modules/libtmux/default.nix index 8a648f904396..f9fbb25f1f5c 100644 --- a/pkgs/development/python-modules/libtmux/default.nix +++ b/pkgs/development/python-modules/libtmux/default.nix @@ -14,14 +14,14 @@ buildPythonPackage (finalAttrs: { pname = "libtmux"; - version = "0.59.0"; + version = "0.60.0"; pyproject = true; src = fetchFromGitHub { owner = "tmux-python"; repo = "libtmux"; tag = "v${finalAttrs.version}"; - hash = "sha256-RsK3nVGpgNX05tCc5kK5GFLUS5vVoe8NRKgg7Y/DzwM="; + hash = "sha256-1h+qkQDYRwP2peMOvKC1kk4DFcG4cwuBApsF8MmkWbo="; }; patches = [ ./0001-fix-test_control_mode_stdout_preserves_non_ascii_out.patch ]; @@ -45,7 +45,12 @@ buildPythonPackage (finalAttrs: { enabledTestPaths = [ "tests" ]; disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ "tests/test/test_retry.py" ]; - disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ + disabledTests = [ + # test is broken for tmux 3.7a and later + # https://github.com/tmux-python/libtmux/issues/697 + "test_new_window_name_invalid_on_3_7" + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ # Fail with: 'no server running on /tmp/tmux-1000/libtmux_test8sorutj1'. "test_new_session_width_height" # AssertionError: assert '' == '$' From 4055b857d7a3c7fa62f624fe3cbc89182ca6c005 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Fri, 3 Jul 2026 19:59:02 +0200 Subject: [PATCH 3/3] tmuxp: 1.71.0 -> 1.73.0 Changelog: https://github.com/tmux-python/tmuxp/raw/v1.73.0/CHANGES --- pkgs/by-name/tm/tmuxp/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tm/tmuxp/package.nix b/pkgs/by-name/tm/tmuxp/package.nix index af15e89c0bdc..621044b3d72f 100644 --- a/pkgs/by-name/tm/tmuxp/package.nix +++ b/pkgs/by-name/tm/tmuxp/package.nix @@ -7,12 +7,12 @@ python3Packages.buildPythonApplication (finalAttrs: { pname = "tmuxp"; - version = "1.71.0"; + version = "1.73.0"; pyproject = true; src = fetchPypi { inherit (finalAttrs) pname version; - hash = "sha256-+Nsr4gNem/gB6ZMre53rfuM8Kwkiu86aGJmrxiFRorY="; + hash = "sha256-UExY0hC7HDWeISQ/mMZLMcMnqDko4i188MyoDbNePZc="; }; build-system = with python3Packages; [