Merge pull request #334871 from bbigras/push-ymnosxkvyzuv

zed-editor: 0.148.0 -> 0.148.1
This commit is contained in:
Gaétan Lepage 2024-08-16 00:22:48 +02:00 committed by GitHub
commit 646799bd1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 3 deletions

View File

@ -13775,7 +13775,7 @@ dependencies = [
[[package]]
name = "zed"
version = "0.148.0"
version = "0.148.1"
dependencies = [
"activity_indicator",
"anyhow",

View File

@ -35,13 +35,13 @@ assert withGLES -> stdenv.isLinux;
rustPlatform.buildRustPackage rec {
pname = "zed";
version = "0.148.0";
version = "0.148.1";
src = fetchFromGitHub {
owner = "zed-industries";
repo = "zed";
rev = "refs/tags/v${version}";
hash = "sha256-fwxKzd2YKGAMbDDJPj4A0MHBRLg8oBc6JZzrbr7BaHM=";
hash = "sha256-ed6/QQObmclSA36g+civhii1aFKTBSjqB+LOyp2LUPg=";
fetchSubmodules = true;
};
@ -135,6 +135,10 @@ rustPlatform.buildRustPackage rec {
patchelf --add-rpath ${wayland}/lib $out/libexec/*
'';
preCheck = ''
export HOME=$(mktemp -d);
'';
checkFlags = lib.optionals stdenv.hostPlatform.isLinux [
# Fails on certain hosts (including Hydra) for unclear reason
"--skip=test_open_paths_action"