summary refs log tree commit diff
path: root/pkgs/tools/misc/tmuxp
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-08-13 04:45:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-08-13 04:45:00 +0000
commite64306119cede2bdde3560a09f6c5a9cff71ee48 (patch)
tree16279e8f568a7093504d134b4d27d32f9b62d118 /pkgs/tools/misc/tmuxp
parentc088cf36823eb28d25a8b43623e1219dd1e18b7b (diff)
downloadnixpkgs-e64306119cede2bdde3560a09f6c5a9cff71ee48.tar
nixpkgs-e64306119cede2bdde3560a09f6c5a9cff71ee48.tar.gz
nixpkgs-e64306119cede2bdde3560a09f6c5a9cff71ee48.tar.bz2
nixpkgs-e64306119cede2bdde3560a09f6c5a9cff71ee48.tar.lz
nixpkgs-e64306119cede2bdde3560a09f6c5a9cff71ee48.tar.xz
nixpkgs-e64306119cede2bdde3560a09f6c5a9cff71ee48.tar.zst
nixpkgs-e64306119cede2bdde3560a09f6c5a9cff71ee48.zip
tmuxp: 1.11.0 -> 1.12.1
https://github.com/tmux-python/tmuxp/releases/tag/v1.12.0
https://github.com/tmux-python/tmuxp/releases/tag/v1.12.1
Diffstat (limited to 'pkgs/tools/misc/tmuxp')
-rw-r--r--pkgs/tools/misc/tmuxp/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/tools/misc/tmuxp/default.nix b/pkgs/tools/misc/tmuxp/default.nix
index b24c3ead956..84a4519c0ea 100644
--- a/pkgs/tools/misc/tmuxp/default.nix
+++ b/pkgs/tools/misc/tmuxp/default.nix
@@ -6,13 +6,18 @@ let
 in
 pypkgs.buildPythonApplication rec {
   pname = "tmuxp";
-  version = "1.11.0";
+  version = "1.12.1";
 
   src = pypkgs.fetchPypi {
     inherit pname version;
-    sha256 = "sha256-N5kZ+e17ZgLOCvV/lcT/hdG1VNqLxh98QOQyM0BmZCA=";
+    sha256 = "078624c5ac7aa4142735f856fadb9281fcebb10e6b98d1be2b2f2bbd106613b9";
   };
 
+  postPatch = ''
+    substituteInPlace setup.py \
+      --replace "libtmux>=0.12.0,<0.13.0" "libtmux"
+  '';
+
   # No tests in archive
   doCheck = false;