dotnetCorePackages: move systemToDotnetRid out of sdk

This commit is contained in:
David McFarland
2022-10-03 11:13:17 -03:00
parent d38c3c8484
commit 3fdb6c5a90
7 changed files with 17 additions and 17 deletions
@@ -26,7 +26,7 @@ buildDotnetModule rec {
dotnet-sdk = dotnetCorePackages.sdk_3_1;
dotnet-runtime = dotnetCorePackages.runtime_3_1;
dotnetRestoreFlags = [ "--runtime ${dotnet-sdk.systemToDotnetRid stdenvNoCC.targetPlatform.system}" ];
dotnetRestoreFlags = [ "--runtime ${dotnetCorePackages.systemToDotnetRid stdenvNoCC.targetPlatform.system}" ];
nativeBuildInputs = [ autoPatchelfHook ];
buildInputs = [ stdenv.cc.cc.lib ];