Skip to content

Commit 4525bcc

Browse files
authored
tooling-language-server: rename to deputy, 0.5.0 -> 0.6.0 (#418998)
2 parents 11c5ba8 + dcacba4 commit 4525bcc

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

doc/release-notes/rl-2511.section.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424

2525
- `gnome-keyring` no longer ships with an SSH agent anymore because it has been deprecated upstream. You should use `gcr_4` instead, which provides the same features. More information on why this was done can be found on [the relevant GCR upstream PR](https://gitlab.gnome.org/GNOME/gcr/-/merge_requests/67).
2626

27+
- `tooling-language-server` has been renamed to `deputy` (both the package and binary), following the rename of the upstream project.
28+
2729
- `lima` package now only includes the guest agent for the host's architecture by default. If your guest VM's architecture differs from your Lima host's, you'll need to enable the `lima-additional-guestagents` package by setting `withAdditionalGuestAgents = true` when overriding lima with this input.
2830

2931
- `telegram-desktop` packages now uses `Telegram` for its binary. The previous name was `telegram-desktop`. This is due to [an upstream decision](https://github.com/telegramdesktop/tdesktop/commit/56ff5808a3d766f892bc3c3305afb106b629ef6f) to make the name consistent with other platforms.

pkgs/by-name/to/tooling-language-server/package.nix renamed to pkgs/by-name/de/deputy/package.nix

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
nix-update-script,
77
}:
88

9-
rustPlatform.buildRustPackage rec {
10-
pname = "tooling-language-server";
11-
version = "0.5.0";
9+
rustPlatform.buildRustPackage (finalAttrs: {
10+
pname = "deputy";
11+
version = "0.6.0";
1212

1313
src = fetchFromGitHub {
1414
owner = "filiptibell";
15-
repo = "tooling-language-server";
16-
tag = "v${version}";
17-
hash = "sha256-0FF9p3Z8C3C/fcTvu66ozCs/G3UAJ/Kf2v+4IZU4eCA=";
15+
repo = "deputy";
16+
tag = "v${finalAttrs.version}";
17+
hash = "sha256-dTCikfHqfSVb1F6LYrLqFAEufD6dPgAi6F65yPlCO18=";
1818
};
1919

2020
useFetchCargoVendor = true;
21-
cargoHash = "sha256-DxQMAnlE8oWtigU1gUEdTdBIvEtbL8xhaPLx6kt8T2c=";
21+
cargoHash = "sha256-nGheg/HnkYsvfrsd/dPNbFQEHXFtjB5so436nrbKRqo=";
2222

2323
nativeInstallCheckInputs = [ versionCheckHook ];
2424
versionCheckProgramArg = "--version";
@@ -28,10 +28,10 @@ rustPlatform.buildRustPackage rec {
2828

2929
meta = {
3030
description = "Language server for tools and package managers";
31-
homepage = "https://github.com/filiptibell/tooling-language-server";
32-
changelog = "https://github.com/filiptibell/tooling-language-server/blob/${src.tag}/CHANGELOG.md";
31+
homepage = "https://github.com/filiptibell/deputy";
32+
changelog = "https://github.com/filiptibell/deputy/blob/${finalAttrs.src.tag}/CHANGELOG.md";
3333
license = lib.licenses.mpl20;
3434
maintainers = with lib.maintainers; [ niklaskorz ];
35-
mainProgram = "tooling-language-server";
35+
mainProgram = "deputy";
3636
};
37-
}
37+
})

pkgs/top-level/aliases.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1969,6 +1969,7 @@ mapAliases {
19691969
tokyo-night-gtk = tokyonight-gtk-theme; # Added 2024-01-28
19701970
tomcat_connectors = apacheHttpdPackages.mod_jk; # Added 2024-06-07
19711971
ton = throw "'ton' has been removed as there were insufficient maintainer resources to keep up with updates"; # Added 2025-04-27
1972+
tooling-language-server = deputy; # Added 2025-06-22
19721973
tor-browser-bundle-bin = tor-browser; # Added 2023-09-23
19731974
torrenttools = throw "torrenttools has been removed due to lack of maintanance upstream"; # Added 2025-04-06
19741975
torq = throw "torq has been removed because the project went closed source"; # Added 2024-11-24

0 commit comments

Comments
 (0)