about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/dotnet/update.sh
blob: 39ccfdf33b4051bcdd303ed3df8130a251386ded (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
#!/usr/bin/env nix-shell
#!nix-shell -I nixpkgs=../../../../. -i bash -p curl jq nix gnused
# shellcheck shell=bash

set -Eeuo pipefail

release () {
  local content="$1"
  local version="$2"

  jq -r '.releases[] | select(.sdks[] | ."version" == "'"$version"'")' <<< "$content"
}

release_files () {
  local release="$1"
  local type="$2"

  jq -r '[."'"$type"'".files[] | select(.name | test("^.*.tar.gz$"))]' <<< "$release"
}

sdk_files () {
  local release="$1"
  local version="$2"

  jq -r '[.sdks[] | select(.version == "'"$version"'") | .files[] | select(.name | test("^.*.tar.gz$"))]' <<< "$release"
}


release_platform_attr () {
  local release_files="$1"
  local platform="$2"
  local attr="$3"

  jq -r '.[] | select((.rid == "'"$platform"'") and (.name | contains("composite") | not)) | ."'"$attr"'"' <<< "$release_files"
}

platform_sources () {
  local release_files="$1"
  local platforms=(
    "x86_64-linux   linux-x64"
    "aarch64-linux  linux-arm64"
    "x86_64-darwin  osx-x64"
    "aarch64-darwin osx-arm64"
  )

  echo "srcs = {"
  for kv in "${platforms[@]}"; do
    local nix_platform=${kv%% *}
    local ms_platform=${kv##* }

    local url=$(release_platform_attr "$release_files" "$ms_platform" url)
    local hash=$(release_platform_attr "$release_files" "$ms_platform" hash)

    [[ -z "$url" || -z "$hash" ]] && continue
    echo "      $nix_platform = {
        url     = \"$url\";
        sha512  = \"$hash\";
      };"
    done
    echo "    };"
}

generate_package_list() {
    local version pkgs nuget_url
    version="$1"
    shift
    pkgs=( "$@" )

    nuget_url="$(curl -f "https://api.nuget.org/v3/index.json" | jq --raw-output '.resources[] | select(."@type" == "PackageBaseAddress/3.0.0")."@id"')"

    for pkg in "${pkgs[@]}"; do
        local url hash
        url="${nuget_url}${pkg,,}/${version,,}/${pkg,,}.${version,,}.nupkg"
        hash="$(nix-prefetch-url "$url")"
        if [[ -z "$hash" ]]; then
            echo "Failed to fetch hash for $url" >&2
            exit 1
        fi

        echo "      (fetchNuGet { pname = \"${pkg}\"; version = \"${version}\"; sha256 = \"${hash}\"; })"
    done
}

version_older () {
    cur_version=$1
    max_version=$2
    result=$(nix-instantiate -I ../../../../. \
        --eval -E "(import ../../../../. {}).lib.versionOlder \"$cur_version\" \"$max_version\"")
    if [[ "$result" == "true" ]]; then
        return 0
    else
        return 1
    fi
}

aspnetcore_packages () {
    local version=$1
    # These packages are implicitly references by the build process,
    # based on the specific project configurations (RIDs, used features, etc.)
    # They are always referenced with the same version as the SDK used for building.
    # Since we lock nuget dependencies, when these packages are included in the generated
    # lock files (deps.nix), every update of SDK required those lock files to be
    # updated to reflect the new versions of these packages - otherwise, the build
    # would fail due to missing dependencies.
    #
    # Moving them to a separate list stored alongside the SDK package definitions,
    # and implicitly including them along in buildDotnetModule allows us
    # to make updating .NET SDK packages a lot easier - we now just update
    # the versions of these packages in one place, and all packages that
    # use buildDotnetModule continue building with the new .NET version without changes.
    #
    # Keep in mind that there is no canonical list of these implicitly
    # referenced packages - this list was created based on looking into
    # the deps.nix files of existing packages, and which dependencies required
    # updating after a SDK version bump.
    #
    # Due to this, make sure to check if new SDK versions introduce any new packages.
    # This should not happend in minor or bugfix updates, but probably happens
    # with every new major .NET release.
    local pkgs=(
      "Microsoft.AspNetCore.App.Runtime.linux-arm"
      "Microsoft.AspNetCore.App.Runtime.linux-arm64"
      "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"
      "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"
      "Microsoft.AspNetCore.App.Runtime.linux-x64"
      "Microsoft.AspNetCore.App.Runtime.osx-x64"
      "Microsoft.AspNetCore.App.Runtime.win-arm64"
      "Microsoft.AspNetCore.App.Runtime.win-x64"
      "Microsoft.AspNetCore.App.Runtime.win-x86"
    )

    # These packages are currently broken on .NET 8
    if version_older "$version" "8"; then
        pkgs+=(
            "Microsoft.AspNetCore.App.Runtime.win-arm"
        )
    fi

    # Packages that only apply to .NET 6 and up
    if ! version_older "$version" "6"; then
        pkgs+=(
          "Microsoft.AspNetCore.App.Ref"
          "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"
          "Microsoft.AspNetCore.App.Runtime.osx-arm64"
        )
    fi


    generate_package_list "$version" "${pkgs[@]}"
}

sdk_packages () {
    local version=$1
    # These packages are implicitly references by the build process,
    # based on the specific project configurations (RIDs, used features, etc.)
    # They are always referenced with the same version as the SDK used for building.
    # Since we lock nuget dependencies, when these packages are included in the generated
    # lock files (deps.nix), every update of SDK required those lock files to be
    # updated to reflect the new versions of these packages - otherwise, the build
    # would fail due to missing dependencies.
    #
    # Moving them to a separate list stored alongside the SDK package definitions,
    # and implicitly including them along in buildDotnetModule allows us
    # to make updating .NET SDK packages a lot easier - we now just update
    # the versions of these packages in one place, and all packages that
    # use buildDotnetModule continue building with the new .NET version without changes.
    #
    # Keep in mind that there is no canonical list of these implicitly
    # referenced packages - this list was created based on looking into
    # the deps.nix files of existing packages, and which dependencies required
    # updating after a SDK version bump.
    #
    # Due to this, make sure to check if new SDK versions introduce any new packages.
    # This should not happend in minor or bugfix updates, but probably happens
    # with every new major .NET release.
    local pkgs=(
      "Microsoft.NETCore.App.Host.linux-arm"
      "Microsoft.NETCore.App.Host.linux-arm64"
      "Microsoft.NETCore.App.Host.linux-musl-arm64"
      "Microsoft.NETCore.App.Host.linux-musl-x64"
      "Microsoft.NETCore.App.Host.linux-x64"
      "Microsoft.NETCore.App.Host.osx-x64"
      "Microsoft.NETCore.App.Host.win-arm64"
      "Microsoft.NETCore.App.Host.win-x64"
      "Microsoft.NETCore.App.Host.win-x86"
      "Microsoft.NETCore.App.Runtime.linux-arm"
      "Microsoft.NETCore.App.Runtime.linux-arm64"
      "Microsoft.NETCore.App.Runtime.linux-musl-arm64"
      "Microsoft.NETCore.App.Runtime.linux-musl-x64"
      "Microsoft.NETCore.App.Runtime.linux-x64"
      "Microsoft.NETCore.App.Runtime.osx-x64"
      "Microsoft.NETCore.App.Runtime.win-arm64"
      "Microsoft.NETCore.App.Runtime.win-x64"
      "Microsoft.NETCore.App.Runtime.win-x86"
      "Microsoft.NETCore.DotNetAppHost"
      "Microsoft.NETCore.DotNetHost"
      "Microsoft.NETCore.DotNetHostPolicy"
      "Microsoft.NETCore.DotNetHostResolver"
      "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"
      "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"
      "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"
      "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"
      "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"
      "runtime.linux-arm.Microsoft.NETCore.DotNetHost"
      "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"
      "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"
      "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"
      "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"
      "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"
      "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"
      "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"
      "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"
      "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"
      "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"
      "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"
      "runtime.linux-x64.Microsoft.NETCore.DotNetHost"
      "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"
      "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"
      "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"
      "runtime.osx-x64.Microsoft.NETCore.DotNetHost"
      "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"
      "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"
      "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"
      "runtime.win-arm64.Microsoft.NETCore.DotNetHost"
      "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"
      "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"
      "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"
      "runtime.win-x64.Microsoft.NETCore.DotNetHost"
      "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"
      "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"
      "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"
      "runtime.win-x86.Microsoft.NETCore.DotNetHost"
      "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"
      "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"
      "Microsoft.NETCore.App.Host.linux-musl-arm"
      "Microsoft.NETCore.App.Host.osx-arm64"
      "Microsoft.NETCore.App.Runtime.linux-musl-arm"
      "Microsoft.NETCore.App.Runtime.osx-arm64"
      "Microsoft.NETCore.App.Ref"
      "Microsoft.NETCore.App.Runtime.Mono.linux-arm"
      "Microsoft.NETCore.App.Runtime.Mono.linux-arm64"
      "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64"
      "Microsoft.NETCore.App.Runtime.Mono.linux-x64"
      "Microsoft.NETCore.App.Runtime.Mono.osx-arm64"
      "Microsoft.NETCore.App.Runtime.Mono.osx-x64"
      "Microsoft.NETCore.App.Runtime.Mono.win-x64"
      "Microsoft.NETCore.App.Runtime.Mono.win-x86"
      "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"
      "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"
      "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"
      "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"
      "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"
      "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"
      "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"
      "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"
      "Microsoft.NETCore.App.Crossgen2.linux-musl-arm"
      "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64"
      "Microsoft.NETCore.App.Crossgen2.linux-musl-x64"
      "Microsoft.NETCore.App.Crossgen2.linux-arm"
      "Microsoft.NETCore.App.Crossgen2.linux-arm64"
      "Microsoft.NETCore.App.Crossgen2.linux-x64"
      "Microsoft.NETCore.App.Crossgen2.osx-x64"
      "Microsoft.NETCore.App.Crossgen2.osx-arm64"
    )

    # These packages were removed on .NET 9
    if ! version_older "$version" "9"; then
      local newpkgs=()
      for pkg in "${pkgs[@]}"; do
        [[ "$pkg" = *Microsoft.NETCore.DotNetHost* ]] || newpkgs+=("$pkg")
      done
      pkgs=("${newpkgs[@]}")
    fi

    # These packages were removed on .NET 8
    if version_older "$version" "8"; then
        pkgs+=(
            "Microsoft.NETCore.App.Host.win-arm"
            "Microsoft.NETCore.App.Runtime.win-arm"
            "runtime.win-arm.Microsoft.NETCore.DotNetAppHost"
            "runtime.win-arm.Microsoft.NETCore.DotNetHost"
            "runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy"
            "runtime.win-arm.Microsoft.NETCore.DotNetHostResolver"
            "Microsoft.NETCore.App.Composite"
        )
    fi

    # Packages that only apply to .NET 7 and up
    if ! version_older "$version" "7"; then
        pkgs+=(
          "runtime.linux-arm64.Microsoft.DotNet.ILCompiler"
          "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler"
          "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler"
          "runtime.linux-x64.Microsoft.DotNet.ILCompiler"
          "runtime.osx-x64.Microsoft.DotNet.ILCompiler"
          "runtime.win-arm64.Microsoft.DotNet.ILCompiler"
          "runtime.win-x64.Microsoft.DotNet.ILCompiler"
        )
    fi

    # These packges were added on .NET 8
    if ! version_older "$version" "8"; then
        pkgs+=(
            "Microsoft.NET.ILLink.Tasks"
        )
    fi

    generate_package_list "$version" "${pkgs[@]}"
}

main () {
  pname=$(basename "$0")
  if [[ ! "$*" =~ ^.*[0-9]{1,}\.[0-9]{1,}.*$ ]]; then
    echo "Usage: $pname [sem-versions]
Get updated dotnet src (platform - url & sha512) expressions for specified versions

Examples:
  $pname 6.0.14 7.0.201    - specific x.y.z versions
  $pname 6.0 7.0           - latest x.y versions
" >&2
    exit 1
  fi

  for sem_version in "$@"; do
    echo "Generating ./versions/${sem_version}.nix"
    patch_specified=false
    # Check if a patch was specified as an argument.
    # If so, generate file for the specific version.
    # If only x.y version was provided, get the latest patch
    # version of the given x.y version.
    if [[ "$sem_version" =~ ^[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}$ ]]; then
        patch_specified=true
    elif [[ ! "$sem_version" =~ ^[0-9]{1,}\.[0-9]{1,}$ ]]; then
        continue
    fi

    # Make sure the x.y version is properly passed to .NET release metadata url.
    # Then get the json file and parse it to find the latest patch release.
    major_minor=$(sed 's/^\([0-9]*\.[0-9]*\).*$/\1/' <<< "$sem_version")
    content=$(curl -sL https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/"$major_minor"/releases.json)
    major_minor_patch=$([ "$patch_specified" == true ] && echo "$sem_version" || jq -r '."latest-sdk"' <<< "$content")
    major_minor_underscore=${major_minor/./_}

    sdk_version=$major_minor_patch
    release_content=$(release "$content" "$sdk_version")
    aspnetcore_version=$(jq -r '."aspnetcore-runtime".version' <<< "$release_content")
    runtime_version=$(jq -r '.runtime.version' <<< "$release_content")

    # If patch was not specified, check if the package is already the latest version
    # If it is, exit early
    if [ "$patch_specified" == false ] && [ -f "./versions/${sem_version}.nix" ]; then
        current_version=$(nix-instantiate --eval -E "(import ./versions/${sem_version}.nix { \
            buildAspNetCore = { ... }: {}; \
            buildNetRuntime = { ... }: {}; \
            buildNetSdk = { version, ... }: version; \
            }).sdk_${major_minor_underscore}" | jq -r)

        if [[ "$current_version" == "$sdk_version" ]]; then
            echo "Nothing to update."
            exit
        fi
    fi

    aspnetcore_files="$(release_files "$release_content" "aspnetcore-runtime")"
    runtime_files="$(release_files "$release_content" "runtime")"
    sdk_files="$(sdk_files "$release_content" "$sdk_version")"

    channel_version=$(jq -r '."channel-version"' <<< "$content")
    support_phase=$(jq -r '."support-phase"' <<< "$content")

    aspnetcore_sources="$(platform_sources "$aspnetcore_files")"
    runtime_sources="$(platform_sources "$runtime_files")"
    sdk_sources="$(platform_sources "$sdk_files")"

    aspnetcore_packages="$(aspnetcore_packages "${aspnetcore_version}")"
    sdk_packages="$(sdk_packages "${runtime_version}")"

    result=$(mktemp)
    trap "rm -f $result" TERM INT EXIT

    echo "{ buildAspNetCore, buildNetRuntime, buildNetSdk }:

# v$channel_version ($support_phase)
{
  aspnetcore_$major_minor_underscore = buildAspNetCore {
    version = \"${aspnetcore_version}\";
    $aspnetcore_sources
  };

  runtime_$major_minor_underscore = buildNetRuntime {
    version = \"${runtime_version}\";
    $runtime_sources
  };

  sdk_$major_minor_underscore = buildNetSdk {
    version = \"${sdk_version}\";
    $sdk_sources
    packages = { fetchNuGet }: [
$aspnetcore_packages
$sdk_packages
    ];
  };
}" > "${result}"

    cp "${result}" "./versions/${sem_version}.nix"
    echo "Generated ./versions/${sem_version}.nix"
  done
}

main "$@"