nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #202297 from cole-h/wezterm

authored by

Sandro and committed by
GitHub
657a4386 58ae822d

+11 -3
+11 -3
pkgs/applications/terminal-emulators/wezterm/default.nix
··· 30 30 31 31 rustPlatform.buildRustPackage rec { 32 32 pname = "wezterm"; 33 - version = "20220905-102802-7d4b8249"; 33 + version = "20221119-145034-49b9839f"; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "wez"; 37 37 repo = pname; 38 38 rev = version; 39 39 fetchSubmodules = true; 40 - sha256 = "sha256-Xvi0bluLM4F3BFefIPhkhTF3dmRvP8u+qV70Rz4CGKI="; 40 + sha256 = "sha256-1gnP2Dn4nkhxelUsXMay2VGvgvMjkdEKhFK5AAST++s="; 41 41 }; 42 + 43 + # Rust 1.65 does better at enum packing (according to 44 + # 40e08fafe2f6e5b0c70d55996a0814d6813442ef), but Nixpkgs doesn't have 1.65 45 + # yet (still in staging), so skip these tests for now. 46 + checkFlags = [ 47 + "--skip=escape::action_size" 48 + "--skip=surface::line::storage::test::memory_usage" 49 + ]; 42 50 43 51 postPatch = '' 44 52 echo ${version} > .tag ··· 55 47 rm -r wezterm-ssh/tests 56 48 ''; 57 49 58 - cargoSha256 = "sha256-XJAeMDwtLtBzHMU/cb3lZgmcw5F3ifjKzKVmuP85/RY="; 50 + cargoSha256 = "sha256-D6/biuLsXaCr0KSiopo9BuAVmniF8opAfDH71C3dtt0="; 59 51 60 52 nativeBuildInputs = [ 61 53 installShellFiles