From 2c070f69fa417382db58863c417f2f017ee2b079 Mon Sep 17 00:00:00 2001 From: DontEatOreo <57304299+DontEatOreo@users.noreply.github.com> Date: Fri, 8 Nov 2024 19:38:00 +0200 Subject: [PATCH] csharprepl: fix runtime environment Use `dotnet-sdk` as runtime since the REPL tool requires SDK functionality to work --- pkgs/by-name/cs/csharprepl/package.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/cs/csharprepl/package.nix b/pkgs/by-name/cs/csharprepl/package.nix index 1279ccec03e8..22a538c6e74b 100644 --- a/pkgs/by-name/cs/csharprepl/package.nix +++ b/pkgs/by-name/cs/csharprepl/package.nix @@ -10,7 +10,8 @@ buildDotnetGlobalTool { version = "0.6.6"; dotnet-sdk = dotnetCorePackages.sdk_8_0; - dotnet-runtime = dotnetCorePackages.runtime_8_0; + # We're using an SDK here because it's a REPL, and it requires an SDK instaed of a runtime + dotnet-runtime = dotnetCorePackages.sdk_8_0; nugetHash = "sha256-VkZGnfD8p6oAJ7i9tlfwJfmKfZBHJU7Wdq+K4YjPoRs=";