Unverified Commit afb5ba77 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #335038 from GaetanLepage/csharp-ls

csharp-ls: 0.14.0 -> 0.15.0 + cleaning
parents 6d156358 d46f91b1
Loading
Loading
Loading
Loading
+15 −9
Original line number Diff line number Diff line
{ lib
, buildDotnetGlobalTool
, dotnetCorePackages
{
  lib,
  buildDotnetGlobalTool,
  dotnetCorePackages,
  nix-update-script,
}:
let
  inherit (dotnetCorePackages) sdk_8_0;
@@ -8,20 +10,24 @@ in

buildDotnetGlobalTool rec {
  pname = "csharp-ls";
  version = "0.14.0";
  version = "0.15.0";

  nugetHash = "sha256-agcx7VPIqGhl3NzdGLPwXYJsRuvSjL4SdbNg9vFjIh4=";
  nugetHash = "sha256-Fp1D2z4x2e85z4IO4xQentS7dbqhFT3e/BPZm0d5L5M=";

  dotnet-sdk = sdk_8_0;
  dotnet-runtime = sdk_8_0;

  meta = with lib; {
  passthru.tests = {
    updateScript = nix-update-script { };
  };

  meta = {
    description = "Roslyn-based LSP language server for C#";
    mainProgram = "csharp-ls";
    homepage = "https://github.com/razzmatazz/csharp-language-server";
    changelog = "https://github.com/razzmatazz/csharp-language-server/releases/tag/v${version}";
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = with maintainers; [ GaetanLepage ];
    license = lib.licenses.mit;
    platforms = lib.platforms.unix;
    maintainers = with lib.maintainers; [ GaetanLepage ];
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -864,8 +864,6 @@ with pkgs;
  # Dotnet
  csharp-ls = callPackage ../development/tools/language-servers/csharp-ls { };
  dotnetCorePackages = recurseIntoAttrs (callPackage ../development/compilers/dotnet {});
  dotnet-sdk_6 = dotnetCorePackages.sdk_6_0;