Merge pull request #126468 from marsam/update-tmux

tmux: 3.2 -> 3.2a

authored by

Maximilian Bosch and committed by
GitHub
ef8e4bde 576c0f0c

+2 -12
+2 -12
pkgs/tools/misc/tmux/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitHub 3 - , fetchpatch 4 3 , autoreconfHook 5 4 , pkg-config 6 5 , bison ··· 21 20 22 21 stdenv.mkDerivation rec { 23 22 pname = "tmux"; 24 - version = "3.2"; 23 + version = "3.2a"; 25 24 26 25 outputs = [ "out" "man" ]; 27 26 ··· 29 28 owner = "tmux"; 30 29 repo = "tmux"; 31 30 rev = version; 32 - sha256 = "0alq81h1rz1f0zsy8qb2dvsl47axpa86j4bplngwkph0ksqqgr3p"; 31 + sha256 = "0143ylfk7zsl3xmiasb768238gr582cfhsgv3p0h0f13bp8d6q09"; 33 32 }; 34 - 35 - patches = [ 36 - # Fix cross-compilation 37 - # https://github.com/tmux/tmux/pull/2651 38 - (fetchpatch { 39 - url = "https://github.com/tmux/tmux/commit/bb6242675ad0c7447daef148fffced882e5b4a61.patch"; 40 - sha256 = "1acr3xv3gqpq7qa2f8hw7c4f42hi444lfm1bz6wqj8f3yi320zjr"; 41 - }) 42 - ]; 43 33 44 34 nativeBuildInputs = [ 45 35 pkg-config