wezterm: 20220905-102802-7d4b8249 -> 20221119-145034-49b9839f
This commit is contained in:
parent
f8636f5d05
commit
03f2f6b9c4
1 changed files with 11 additions and 3 deletions
|
@ -30,16 +30,24 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "wezterm";
|
pname = "wezterm";
|
||||||
version = "20220905-102802-7d4b8249";
|
version = "20221119-145034-49b9839f";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "wez";
|
owner = "wez";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
sha256 = "sha256-Xvi0bluLM4F3BFefIPhkhTF3dmRvP8u+qV70Rz4CGKI=";
|
sha256 = "sha256-1gnP2Dn4nkhxelUsXMay2VGvgvMjkdEKhFK5AAST++s=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Rust 1.65 does better at enum packing (according to
|
||||||
|
# 40e08fafe2f6e5b0c70d55996a0814d6813442ef), but Nixpkgs doesn't have 1.65
|
||||||
|
# yet (still in staging), so skip these tests for now.
|
||||||
|
checkFlags = [
|
||||||
|
"--skip=escape::action_size"
|
||||||
|
"--skip=surface::line::storage::test::memory_usage"
|
||||||
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
echo ${version} > .tag
|
echo ${version} > .tag
|
||||||
|
|
||||||
|
@ -47,7 +55,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
rm -r wezterm-ssh/tests
|
rm -r wezterm-ssh/tests
|
||||||
'';
|
'';
|
||||||
|
|
||||||
cargoSha256 = "sha256-XJAeMDwtLtBzHMU/cb3lZgmcw5F3ifjKzKVmuP85/RY=";
|
cargoSha256 = "sha256-D6/biuLsXaCr0KSiopo9BuAVmniF8opAfDH71C3dtt0=";
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
installShellFiles
|
installShellFiles
|
||||||
|
|
Loading…
Reference in a new issue