From 22be75cbbeebdb56bc682c74201662b6b9f7d707 Mon Sep 17 00:00:00 2001 From: ElXreno Date: Wed, 20 Apr 2022 11:03:48 +0300 Subject: [PATCH] jetbrains.rider: bump dotnet sdk Jetbrains have upgraded their internal runtime to .NET 6. This can be checked by executing a command in the original package: `strings lib/ReSharperHost/linux-x64/dotnet/dotnet | grep "Version "` --- pkgs/applications/editors/jetbrains/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix index 04e352e2a5ea..7273212bfdb6 100644 --- a/pkgs/applications/editors/jetbrains/default.nix +++ b/pkgs/applications/editors/jetbrains/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, callPackage, fetchurl , jdk, cmake, gdb, zlib, python3 -, dotnet-sdk_5 +, dotnet-sdk_6 , maven , autoPatchelfHook , libdbusmenu @@ -210,7 +210,7 @@ let postPatch = lib.optionalString (!stdenv.isDarwin) (attrs.postPatch + '' rm -rf lib/ReSharperHost/linux-x64/dotnet mkdir -p lib/ReSharperHost/linux-x64/dotnet/ - ln -s ${dotnet-sdk_5}/bin/dotnet lib/ReSharperHost/linux-x64/dotnet/dotnet + ln -s ${dotnet-sdk_6}/bin/dotnet lib/ReSharperHost/linux-x64/dotnet/dotnet ''); });