zed-editor: 0.224.11 -> 0.225.12 (#496138)

This commit is contained in:
Masum Reza
2026-03-03 11:08:34 +00:00
committed by GitHub
+11 -3
View File
@@ -107,7 +107,7 @@ let
in
rustPlatform.buildRustPackage (finalAttrs: {
pname = "zed-editor";
version = "0.224.11";
version = "0.225.12";
outputs = [
"out"
@@ -120,7 +120,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
owner = "zed-industries";
repo = "zed";
tag = "v${finalAttrs.version}";
hash = "sha256-VOPAypHlcr7nY3/wk4ec/Ltv+DUf/v4rHDa5oCsg0aE=";
hash = "sha256-rVJ+NNsnhoXr6y2j2VFrXQVrgbXQY/a6l2Khs36SvDU=";
};
postPatch = ''
@@ -140,7 +140,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
rm -r $out/git/*/candle-book/
'';
cargoHash = "sha256-V61uZEl6LG/xckOajcWugf/K+mJR8Bn9WjqxvvwBbfw=";
cargoHash = "sha256-i6BZPAKCgomWA/c923/tB9uWtXGr5VXIqmGCYtUUBLM=";
nativeBuildInputs = [
cmake
@@ -203,6 +203,14 @@ rustPlatform.buildRustPackage (finalAttrs: {
]
++ finalAttrs.buildFeatures;
# cargo-nextest does not support the `=` syntax for parameters, so all test skips must be defined
# as two separate arguments
checkFlags = lib.optionals stdenv.hostPlatform.isLinux [
# Fails on Linux since v0.225, possibly related to https://github.com/zed-industries/zed/pull/48800
"--skip"
"zed::tests::test_window_edit_state_restoring_enabled"
];
env = {
ALLOW_MISSING_LICENSES = true;
ZSTD_SYS_USE_PKG_CONFIG = true;