0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

Merge pull request #282573 from GaetanLepage/csharp

csharp-ls: 0.10.0 -> 0.11.0
This commit is contained in:
Nick Cao 2024-01-21 10:54:13 -05:00 committed by GitHub
commit f9d9cc712b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,17 +3,17 @@
, dotnetCorePackages
}:
let
inherit (dotnetCorePackages) sdk_7_0;
inherit (dotnetCorePackages) sdk_8_0;
in
buildDotnetGlobalTool rec {
pname = "csharp-ls";
version = "0.10.0";
version = "0.11.0";
nugetSha256 = "sha256-1t8U2Q4lIlj2QwbnevAMMGcqtpPh5zk0Bd7EHa7qvCI=";
nugetSha256 = "sha256-zB8uJqlf8kL8jh3WNsPQF7EJpONqi23co3O/iBzfEoU=";
dotnet-sdk = sdk_7_0;
dotnet-runtime = sdk_7_0;
dotnet-sdk = sdk_8_0;
dotnet-runtime = sdk_8_0;
meta = with lib; {
description = "Roslyn-based LSP language server for C#";