mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
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 "`
This commit is contained in:
parent
d0a82d34f3
commit
22be75cbbe
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
'');
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue