Skip to content

Commit c54d175

Browse files
authored
zed-editor: 0.176.2 -> 0.176.3 (#387808)
2 parents 8a97acd + 9789178 commit c54d175

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

pkgs/by-name/ze/zed-editor/package.nix

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
gitUpdater,
2828
cargo-about,
2929
versionCheckHook,
30-
zed-editor,
3130
buildFHSEnv,
3231
cargo-bundle,
3332
git,
@@ -59,6 +58,7 @@ let
5958
# extension tooling without significant pain.
6059
fhs =
6160
{
61+
zed-editor,
6262
additionalPkgs ? pkgs: [ ],
6363
}:
6464
buildFHSEnv {
@@ -98,7 +98,7 @@ let
9898
in
9999
rustPlatform.buildRustPackage (finalAttrs: {
100100
pname = "zed-editor";
101-
version = "0.176.2";
101+
version = "0.176.3";
102102

103103
outputs =
104104
[ "out" ]
@@ -110,7 +110,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
110110
owner = "zed-industries";
111111
repo = "zed";
112112
tag = "v${finalAttrs.version}";
113-
hash = "sha256-uTq9/skBMz8n2NjGBQKOIOMp/rTDL+azEUzV4jTUJvE=";
113+
hash = "sha256-5bn70R5phHZmAf/71IK8o2laHcCo92cCiaKQ7xo0Uag=";
114114
};
115115

116116
patches = [
@@ -136,7 +136,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
136136
'';
137137

138138
useFetchCargoVendor = true;
139-
cargoHash = "sha256-b4YTVrz2nOwQnVU42E+LD1YjsUAWN7+fCr2z8IVwH6o=";
139+
cargoHash = "sha256-IaAY1u5xLomvUtb4FjE4uE0w01rMmyR/DH0QD9cOK5Y=";
140140

141141
nativeBuildInputs =
142142
[
@@ -309,17 +309,22 @@ rustPlatform.buildRustPackage (finalAttrs: {
309309
rev-prefix = "v";
310310
ignoredVersions = "(*-pre|0.999999.0|0.9999-temporary)";
311311
};
312-
fhs = fhs { };
313-
fhsWithPackages = f: fhs { additionalPkgs = f; };
312+
fhs = fhs { zed-editor = finalAttrs.finalPackage; };
313+
fhsWithPackages =
314+
f:
315+
fhs {
316+
zed-editor = finalAttrs.finalPackage;
317+
additionalPkgs = f;
318+
};
314319
tests =
315320
{
316321
remoteServerVersion = testers.testVersion {
317-
package = zed-editor.remote_server;
322+
package = finalAttrs.finalPackage.remote_server;
318323
command = "zed-remote-server-stable-${finalAttrs.version} version";
319324
};
320325
}
321326
// lib.optionalAttrs stdenv.hostPlatform.isLinux {
322-
withGles = zed-editor.override { withGLES = true; };
327+
withGles = finalAttrs.finalPackage.override { withGLES = true; };
323328
};
324329
};
325330

pkgs/top-level/all-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15760,6 +15760,8 @@ with pkgs;
1576015760
autoconf = buildPackages.autoconf269;
1576115761
};
1576215762

15763+
zed-editor-fhs = zed-editor.fhs;
15764+
1576315765
zgv = callPackage ../applications/graphics/zgv {
1576415766
# Enable the below line for terminal display. Note
1576515767
# that it requires sixel graphics compatible terminals like mlterm

0 commit comments

Comments
 (0)