Merge pull request #294488 from brprice/remove-rnix-lsp

rnix-lsp: remove package
This commit is contained in:
Adam C. Stephens 2024-03-11 16:35:44 -04:00 committed by GitHub
commit b9a1cf2f56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 2 additions and 29 deletions

View file

@ -176,7 +176,7 @@ For example, the `libxml2` package builds both a library and some tools; but it
- **If its a _language server_:**
- `development/tools/language-servers` (e.g. `ccls` or `rnix-lsp`)
- `development/tools/language-servers` (e.g. `ccls` or `nil`)
- **Else:**

View file

@ -1,24 +0,0 @@
{ stdenv, lib, fetchFromGitHub, rustPlatform, nix }:
rustPlatform.buildRustPackage rec {
pname = "rnix-lsp";
version = "unstable-2022-11-27";
src = fetchFromGitHub {
owner = "nix-community";
repo = "rnix-lsp";
rev = "95d40673fe43642e2e1144341e86d0036abd95d9";
sha256 = "sha256-F0s0m62S5bHNVWNHLZD6SeHiLrsDx98VQbRjDyIu+qQ=";
};
cargoSha256 = "sha256-RKHBp+/bEH9FEPLcf1MKmTugk1A8rQU447mNm9Le3DE=";
nativeCheckInputs = lib.optional (!stdenv.isDarwin) nix;
meta = with lib; {
description = "A work-in-progress language server for Nix, with syntax checking and basic completion";
license = licenses.mit;
maintainers = with maintainers; [ ];
mainProgram = "rnix-lsp";
};
}

View file

@ -984,6 +984,7 @@ mapAliases ({
ricochet = throw "ricochet has been deprecated in favor of ricochet-refresh"; # Added 2024-02-26
rigsofrods = rigsofrods-bin; # Added 2023-03-22
ring-daemon = jami-daemon; # Added 2021-10-26
rnix-lsp = throw "'rnix-lsp' has been removed as it is unmaintained"; # Added 2024-03-09
rockbox_utility = rockbox-utility; # Added 2022-03-17
rocalution = throw "'rocalution' has been replaced with 'rocmPackages.rocalution'"; # Added 2023-10-08
rocblas = throw "'rocblas' has been replaced with 'rocmPackages.rocblas'"; # Added 2023-10-08

View file

@ -18186,10 +18186,6 @@ with pkgs;
pylyzer = callPackage ../development/tools/language-servers/pylyzer { };
rnix-lsp = callPackage ../development/tools/language-servers/rnix-lsp {
nix = nixVersions.nix_2_15;
};
ruff-lsp = python3Packages.callPackage ../development/tools/language-servers/ruff-lsp { };
rune-languageserver = callPackage ../development/tools/language-servers/rune-languageserver { };