zed-editor: 0.154.3 -> 0.154.4

This commit is contained in:
Bruno Bigras 2024-10-01 12:39:49 -04:00 committed by Gaétan Lepage
parent 76864916cb
commit b461e407bd
2 changed files with 7 additions and 9 deletions

View File

@ -14375,7 +14375,7 @@ dependencies = [
[[package]] [[package]]
name = "zed" name = "zed"
version = "0.154.3" version = "0.154.4"
dependencies = [ dependencies = [
"activity_indicator", "activity_indicator",
"anyhow", "anyhow",

View File

@ -27,7 +27,7 @@
makeFontsConf, makeFontsConf,
vulkan-loader, vulkan-loader,
envsubst, envsubst,
nix-update-script, gitUpdater,
cargo-about, cargo-about,
testers, testers,
zed-editor, zed-editor,
@ -86,13 +86,13 @@ let
in in
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "zed-editor"; pname = "zed-editor";
version = "0.154.3"; version = "0.154.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "zed-industries"; owner = "zed-industries";
repo = "zed"; repo = "zed";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-6W4YKtYeLUv1N51YJonb7I2BO4zEESgI8vmMhJVoLDI="; hash = "sha256-/sL5SVRNVJBMPPZek9zBiek3nXHI1czNwbkGtlk9CzU=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
@ -244,11 +244,9 @@ rustPlatform.buildRustPackage rec {
''; '';
passthru = { passthru = {
updateScript = nix-update-script { updateScript = gitUpdater {
extraArgs = [ rev-prefix = "v";
"--version-regex" ignoredVersions = "pre";
"v(.*)"
];
}; };
tests.version = testers.testVersion { tests.version = testers.testVersion {
inherit version; inherit version;