From f3ea13c87991252d2b3dc19d86fca5a4f7e2a4ab Mon Sep 17 00:00:00 2001 From: Emil Lindqvist Date: Fri, 22 Nov 2024 17:00:30 +0100 Subject: [PATCH] jetbrains.rider: Use unwrapped location of sdk Rider needs the location of the actual sdk to function. This commit uses the unwrapped sdk location instead of the wrapper which causes errors on startup of Rider. The issue makes it impossible to use Rider in practice. --- pkgs/applications/editors/jetbrains/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix index 0e3241a0397c1..5e837de7b3432 100644 --- a/pkgs/applications/editors/jetbrains/default.nix +++ b/pkgs/applications/editors/jetbrains/default.nix @@ -230,7 +230,7 @@ rec { for dir in lib/ReSharperHost/linux-*; do rm -rf $dir/dotnet - ln -s ${dotnet-sdk_7} $dir/dotnet + ln -s ${dotnet-sdk_7.unwrapped}/share/dotnet $dir/dotnet done ) '';