Skip to content

Commit

Permalink
dotnet: 9.0.0-preview.7 -> 9.0.0-rc.1 (#342299)
Browse files Browse the repository at this point in the history
  • Loading branch information
corngood authored Sep 16, 2024
2 parents 69df3ac + bcc99eb commit 310ee00
Show file tree
Hide file tree
Showing 7 changed files with 119 additions and 135 deletions.
20 changes: 8 additions & 12 deletions pkgs/development/compilers/dotnet/9/deps.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pkgs/development/compilers/dotnet/9/release-info.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"tarballHash": "sha256-DOBRHD6WnvLoCCm9PwtWqfL5CHR8xK3bU3zHsgmuDAM=",
"artifactsUrl": "https://dotnetcli.azureedge.net/source-built-artifacts/assets/Private.SourceBuilt.Artifacts.9.0.100-preview.7.24380.1.centos.9-x64.tar.gz",
"artifactsHash": "sha256-G1gMBCUMO3BiluShVu4sjLc6nLE9V/taXwIIlSOqhJc="
"tarballHash": "sha256-t4BQcN1rCG5XKfsJJqnpBHzyXtCrWbQaxpJ8gBpRrVk=",
"artifactsUrl": "https://dotnetcli.azureedge.net/source-built-artifacts/assets/Private.SourceBuilt.Artifacts.9.0.100-rc.1.24452.1.centos.9-x64.tar.gz",
"artifactsHash": "sha256-HRu23+7cJVAoTaFm0hnHk1lOC8HiBIvTs9TgWKVS8xw="
}
12 changes: 6 additions & 6 deletions pkgs/development/compilers/dotnet/9/release.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"release": "9.0.0-preview.7",
"release": "9.0.0-rc.1",
"channel": "9.0",
"tag": "v9.0.0-preview.7.24405.7",
"sdkVersion": "9.0.100-preview.7.24407.1",
"runtimeVersion": "9.0.0-preview.7.24405.7",
"aspNetCoreVersion": "9.0.0-preview.7.24406.2",
"tag": "v9.0.0-rc.1.24431.7",
"sdkVersion": "9.0.100-rc.1.24452.1",
"runtimeVersion": "9.0.0-rc.1.24431.7",
"aspNetCoreVersion": "9.0.0-rc.1.24452.1",
"sourceRepository": "https://github.com/dotnet/dotnet",
"sourceVersion": "aecea31eada5f5506de2112d72b3bd238a5317b4"
"sourceVersion": "f2e150252ab0fe4f796fac30ba5ffeb22c1c4156"
}
4 changes: 1 addition & 3 deletions pkgs/development/compilers/dotnet/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,7 @@ in {
'';

passthru = {
inherit (vmr) icu targetRid;
# ilcompiler is currently broken: https://github.com/dotnet/source-build/issues/1215
hasILCompiler = false;
inherit (vmr) icu targetRid hasILCompiler;
};

meta = vmr.meta // {
Expand Down
6 changes: 5 additions & 1 deletion pkgs/development/compilers/dotnet/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,11 @@ sdk_packages () {
local newpkgs=()
local pkg
for pkg in "${pkgs[@]}"; do
[[ "$pkg" = *Microsoft.NETCore.DotNetHost* ]] || newpkgs+=("$pkg")
case "$pkg" in
*Microsoft.NETCore.DotNetHost*);;
Microsoft.NETCore.App.Runtime.Mono.*);;
*) newpkgs+=("$pkg");;
esac
done
pkgs=("${newpkgs[@]}")
fi
Expand Down
Loading

0 comments on commit 310ee00

Please sign in to comment.