b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
30 lines
1.4 KiB
Nix
30 lines
1.4 KiB
Nix
/*
|
|
How to combine packages for use in development:
|
|
dotnetCombined = with dotnetCorePackages; combinePackages [ sdk_3_1 sdk_5_0 aspnetcore_5_0 ];
|
|
|
|
Hashes and urls below are retrieved from:
|
|
https://dotnet.microsoft.com/download/dotnet
|
|
*/
|
|
{ callPackage, icu70, icu }:
|
|
let
|
|
buildDotnet = attrs: callPackage (import ./build-dotnet.nix attrs) {};
|
|
buildAttrs = {
|
|
buildAspNetCore = attrs: buildDotnet (attrs // { type = "aspnetcore"; });
|
|
buildNetRuntime = attrs: buildDotnet (attrs // { type = "runtime"; });
|
|
buildNetSdk = attrs: buildDotnet (attrs // { type = "sdk"; });
|
|
};
|
|
|
|
## Files in versions/ are generated automatically by update.sh ##
|
|
dotnet_3_1 = import ./versions/3.1.nix (buildAttrs // { icu = icu70; });
|
|
dotnet_5_0 = import ./versions/5.0.nix (buildAttrs // { inherit icu; });
|
|
dotnet_6_0 = import ./versions/6.0.nix (buildAttrs // { inherit icu; });
|
|
dotnet_7_0 = import ./versions/7.0.nix (buildAttrs // { inherit icu; });
|
|
in
|
|
rec {
|
|
combinePackages = attrs: callPackage (import ./combine-packages.nix attrs) {};
|
|
|
|
# EOL
|
|
sdk_2_1 = throw "Dotnet SDK 2.1 is EOL, please use 3.1 (LTS), 5.0 (Current) or 6.0 (LTS)";
|
|
sdk_2_2 = throw "Dotnet SDK 2.2 is EOL, please use 3.1 (LTS), 5.0 (Current) or 6.0 (LTS)";
|
|
sdk_3_0 = throw "Dotnet SDK 3.0 is EOL, please use 3.1 (LTS), 5.0 (Current) or 6.0 (LTS)";
|
|
} // dotnet_3_1 // dotnet_5_0 // dotnet_6_0 // dotnet_7_0
|