Merge pull request #304266 from hacker1024/fix/clion-nova

jetbrains.clion: Add .NET SDK for ReSharper engine
This commit is contained in:
Jörg Thalheim 2024-04-30 09:56:09 +02:00 committed by GitHub
commit 55d6983104
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -113,6 +113,17 @@ rec {
xz
];
}).overrideAttrs (attrs: {
postInstall = (attrs.postInstall or "") + lib.optionalString (stdenv.isLinux) ''
(
cd $out/clion
for dir in plugins/clion-radler/DotFiles/linux-*; do
rm -rf $dir/dotnet
ln -s ${dotnet-sdk_7} $dir/dotnet
done
)
'';
postFixup = (attrs.postFixup or "") + lib.optionalString (stdenv.isLinux) ''
(
cd $out/clion