Skip to content

Commit

Permalink
dotnet: 9.0.0-preview.6 -> 9.0.0-preview.7
Browse files Browse the repository at this point in the history
  • Loading branch information
corngood committed Aug 20, 2024
1 parent f5cb52f commit 39db502
Show file tree
Hide file tree
Showing 7 changed files with 126 additions and 121 deletions.
20 changes: 12 additions & 8 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-9MfRifCL91p9TWgIL5qlKxcn2Hgq4gY7cleQyRvx+Vw=",
"artifactsUrl": "https://dotnetcli.azureedge.net/source-built-artifacts/assets/Private.SourceBuilt.Artifacts.9.0.100-preview.6.24312.1.centos.9-x64.tar.gz",
"artifactsHash": "sha256-I0vw3uDV7xze3p/JutImAvoHw3pH74p+xahCdnEWTWM="
"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="
}
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.6",
"release": "9.0.0-preview.7",
"channel": "9.0",
"tag": "v9.0.0-preview.6.24327.7",
"sdkVersion": "9.0.100-preview.6.24328.1",
"runtimeVersion": "9.0.0-preview.6.24327.7",
"aspNetCoreVersion": "9.0.0-preview.6.24328.4",
"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",
"sourceRepository": "https://github.com/dotnet/dotnet",
"sourceVersion": "df2bf85c5dd6f3b834db7ee91d53c5d0b9469ca6"
"sourceVersion": "aecea31eada5f5506de2112d72b3bd238a5317b4"
}
1 change: 1 addition & 0 deletions pkgs/development/compilers/dotnet/patch-nupkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ in writeShellScriptBin "patch-nupkgs" (''
if [ "$magic" = $'\177ELF' ]; then return 0; else return 1; fi
}
cd "$1"
'' + lib.optionalString stdenv.isLinux ''
for x in */* */*; do
# .nupkg.metadata is written last, so we know the packages is complete
[[ -d "$x" ]] && [[ -f "$x"/.nupkg.metadata ]] \
Expand Down
5 changes: 2 additions & 3 deletions pkgs/development/compilers/dotnet/stage0.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,9 @@ let

nativeBuildInputs =
old.nativeBuildInputs or []
++ [ xmlstarlet ]
++ lib.optional stdenv.isLinux patchNupkgs;
++ [ xmlstarlet patchNupkgs ];

postPatch = old.postPatch or "" + lib.optionalString stdenv.isLinux ''
postPatch = old.postPatch or "" + ''
xmlstarlet ed \
--inplace \
-s //Project -t elem -n Import \
Expand Down
Loading

0 comments on commit 39db502

Please sign in to comment.