summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/jetbrains
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2020-07-29 22:53:03 +0100
committerGitHub <noreply@github.com>2020-07-29 22:53:03 +0100
commitc285657e86e8e848db5eb5d4b2031f05aa9220c5 (patch)
tree5d4bf4e7e590c6646c8728721f56adb1269ed681 /pkgs/applications/editors/jetbrains
parentea1287110f3fa124d31e59520f5c248029bd74da (diff)
parentb90dfdab83c196f479c2eb2209031585e7d961fc (diff)
Merge pull request #86227 from BananchickPasha/master
jetbrains rider: backend on .Net Core support
Diffstat (limited to 'pkgs/applications/editors/jetbrains')
-rw-r--r--pkgs/applications/editors/jetbrains/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix
index bfdf320aeb93..4e609462eaae 100644
--- a/pkgs/applications/editors/jetbrains/default.nix
+++ b/pkgs/applications/editors/jetbrains/default.nix
@@ -1,13 +1,13 @@
{ lib, stdenv, callPackage, fetchurl
, python
, jdk, cmake, libxml2, zlib, python3, ncurses5
+, dotnet-sdk_3
}:
with stdenv.lib;
let
mkJetBrainsProduct = callPackage ./common.nix { };
-
# Sorted alphabetically
buildClion = { name, version, src, license, description, wmClass, ... }:
@@ -223,6 +223,8 @@ let
# Patch built-in mono for ReSharperHost to start successfully
interpreter=$(echo ${stdenv.glibc.out}/lib/ld-linux*.so.2)
patchelf --set-interpreter "$interpreter" lib/ReSharperHost/linux-x64/mono/bin/mono-sgen
+ rm -rf lib/ReSharperHost/linux-x64/dotnet
+ ln -s ${dotnet-sdk_3} lib/ReSharperHost/linux-x64/dotnet
'');
});