From ce1667b698c37d870057b7a1079abfd366fa4f7d Mon Sep 17 00:00:00 2001 From: ners Date: Wed, 12 Nov 2025 12:48:26 +0100 Subject: [PATCH] jetbrains.{clion,rider}: use dotnet 9 --- 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 917c037cc6db..ccf66339bb76 100644 --- a/pkgs/applications/editors/jetbrains/default.nix +++ b/pkgs/applications/editors/jetbrains/default.nix @@ -45,7 +45,7 @@ let products = versions.${system} or (throw "Unsupported system: ${system}"); - dotnet-sdk = dotnetCorePackages.sdk_8_0-source; + dotnet-sdk = dotnetCorePackages.sdk_9_0-source; package = if stdenv.hostPlatform.isDarwin then ./bin/darwin.nix else ./bin/linux.nix; mkJetBrainsProductCore = callPackage package { inherit vmopts; };