about summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2021-09-26 23:06:38 +0200
committerPavol Rusnak <pavol@rusnak.io>2021-10-18 23:46:17 +0200
commiteca667180beb2473ec85895a8679df7ffff9e7c8 (patch)
tree65a648c32f5915ce745cd228a507978711cc3c60 /pkgs/build-support
parenteee29df430927d2618f397acd8d02b11d04a92b0 (diff)
dotnet: cleanup; point dotnet-sdk alias to 5_0; remove unsupported SDKs
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/build-dotnet-module/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/build-dotnet-module/default.nix b/pkgs/build-support/build-dotnet-module/default.nix
index 0c1a1f686e7e4..0161c101e5bf2 100644
--- a/pkgs/build-support/build-dotnet-module/default.nix
+++ b/pkgs/build-support/build-dotnet-module/default.nix
@@ -32,7 +32,7 @@
 # The dotnet SDK to use.
 , dotnet-sdk ? dotnetCorePackages.sdk_5_0
 # The dotnet runtime to use.
-, dotnet-runtime ? dotnetCorePackages.net_5_0
+, dotnet-runtime ? dotnetCorePackages.runtime_5_0
 , ... } @ args:
 
 assert projectFile == null -> throw "Defining the `projectFile` attribute is required. This is usually an `.csproj`, or `.sln` file.";