lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
892a84ae cbfc406a

+1240 -741
+1 -4
.github/workflows/backport.yml
··· 26 26 fetch-depth: 0 27 27 ref: ${{ github.event.pull_request.head.sha }} 28 28 - name: Create backport PRs 29 - # should be kept in sync with `version` 30 - uses: zeebe-io/backport-action@v0.0.5 29 + uses: zeebe-io/backport-action@v0.0.8 31 30 with: 32 31 # Config README: https://github.com/zeebe-io/backport-action#backport-action 33 32 github_token: ${{ secrets.GITHUB_TOKEN }} 34 33 github_workspace: ${{ github.workspace }} 35 - # should be kept in sync with `uses` 36 - version: v0.0.5 37 34 pull_description: |- 38 35 Bot-based backport to `${target_branch}`, triggered by a label in #${pull_number}. 39 36
+2 -2
doc/languages-frameworks/dotnet.section.md
··· 71 71 72 72 To package Dotnet applications, you can use `buildDotnetModule`. This has similar arguments to `stdenv.mkDerivation`, with the following additions: 73 73 74 - * `projectFile` has to be used for specifying the dotnet project file relative to the source root. These usually have `.sln` or `.csproj` file extensions. This can be an array of multiple projects as well. 74 + * `projectFile` is used for specifying the dotnet project file, relative to the source root. These usually have `.sln` or `.csproj` file extensions. This can be a list of multiple projects as well. Most of the time dotnet can figure this location out by itself, so this should only be set if necessary. 75 75 * `nugetDeps` takes either a path to a `deps.nix` file, or a derivation. The `deps.nix` file can be generated using the script attached to `passthru.fetch-deps`. This file can also be generated manually using `nuget-to-nix` tool, which is available in nixpkgs. If the argument is a derivation, it will be used directly and assume it has the same output as `mkNugetDeps`. 76 76 * `packNupkg` is used to pack project as a `nupkg`, and installs it to `$out/share`. If set to `true`, the derivation can be used as a dependency for another dotnet project by adding it to `projectReferences`. 77 77 * `projectReferences` can be used to resolve `ProjectReference` project items. Referenced projects can be packed with `buildDotnetModule` by setting the `packNupkg = true` attribute and passing a list of derivations to `projectReferences`. Since we are sharing referenced projects as NuGets they must be added to csproj/fsproj files as `PackageReference` as well. ··· 100 100 * `dotnetPackFlags` can be used to pass flags to `dotnet pack`. Used only if `packNupkg` is set to `true`. 101 101 * `dotnetFlags` can be used to pass flags to all of the above phases. 102 102 103 - When packaging a new application, you need to fetch it's dependencies. You can set `nugetDeps` to an empty string to make the derivation temporarily evaluate, and then run `nix-build -A package.passthru.fetch-deps` to generate it's dependency fetching script. After running the script, you should have the location of the generated lockfile printed to the console. This can be copied to a stable directory. Note that if either `projectFile` or `nugetDeps` are unset, this script cannot be generated! 103 + When packaging a new application, you need to fetch its dependencies. You can run `nix-build -A package.fetch-deps` to generate a script that will build a lockfile for you. After running the script you should have the location of the generated lockfile printed to the console, which can be copied to a stable directory. Then set `nugetDeps = ./deps.nix` and you're ready to build the derivation. 104 104 105 105 Here is an example `default.nix`, using some of the previously discussed arguments: 106 106 ```nix
+3 -1
nixos/tests/zfs.nix
··· 8 8 let 9 9 10 10 makeZfsTest = name: 11 - { kernelPackage ? if enableUnstable then pkgs.linuxPackages_latest else pkgs.linuxPackages 11 + { kernelPackage ? if enableUnstable 12 + then pkgs.zfsUnstable.latestCompatibleLinuxPackages 13 + else pkgs.linuxPackages 12 14 , enableUnstable ? false 13 15 , extraTest ? "" 14 16 }:
+3 -3
pkgs/applications/audio/cider/default.nix
··· 2 2 3 3 appimageTools.wrapType2 rec { 4 4 pname = "cider"; 5 - version = "1.4.1.1680"; 5 + version = "1.5.6"; 6 6 7 7 src = fetchurl { 8 - url = "https://github.com/ciderapp/cider-releases/releases/download/v${version}/Cider-${builtins.concatStringsSep "." (lib.take 3 (lib.splitVersion version))}-alpha.${builtins.elemAt (lib.splitVersion version) 3}.AppImage"; 9 - sha256 = "sha256-hEv+vfMMH+Trwa1UF5R8EtyYeyiRVLP0BrXOK2+1q8M="; 8 + url = "https://github.com/ciderapp/cider-releases/releases/download/v${version}/Cider-${version}.AppImage"; 9 + sha256 = "sha256-gn0dRoPPolujZ1ukuo/esSLwbhiPdcknIe9+W6iRaYw="; 10 10 }; 11 11 12 12 extraInstallCommands =
+2 -2
pkgs/applications/audio/ft2-clone/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "ft2-clone"; 16 - version = "1.57"; 16 + version = "1.58"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "8bitbubsy"; 20 20 repo = "ft2-clone"; 21 21 rev = "v${version}"; 22 - sha256 = "sha256-47MDroiO8zvYDdHe0350ukczzemRbesEzIXZ2KoXZUI="; 22 + sha256 = "sha256-FHhASs1PKTz6G1sAKNUeft0BHbWgl44l7eiOnyQXZb8="; 23 23 }; 24 24 25 25 # Adapt the linux-only CMakeLists to darwin (more reliable than make-macos.sh)
+2 -2
pkgs/applications/science/chemistry/jmol/default.nix
··· 25 25 }; 26 26 in 27 27 stdenv.mkDerivation rec { 28 - version = "14.32.74"; 28 + version = "14.32.75"; 29 29 pname = "jmol"; 30 30 31 31 src = let 32 32 baseVersion = "${lib.versions.major version}.${lib.versions.minor version}"; 33 33 in fetchurl { 34 34 url = "mirror://sourceforge/jmol/Jmol/Version%20${baseVersion}/Jmol%20${version}/Jmol-${version}-binary.tar.gz"; 35 - sha256 = "sha256-wqZJn/kp3nd94AVe1kJpIa6VU1HYhiM4WoY6fRaJoNg="; 35 + sha256 = "sha256-2D2WBrBmmA84RVLsICFMeQKLvv5nIekbS/EGlmlvtYQ="; 36 36 }; 37 37 38 38 patchPhase = ''
+3 -3
pkgs/applications/version-management/git-and-tools/git-cliff/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "git-cliff"; 5 - version = "0.9.1"; 5 + version = "0.9.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "orhun"; 9 9 repo = "git-cliff"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-dtvA7wH2RNqaFnT8SbHHe3dCEBjWdEC21SWEWxI8XrU="; 11 + sha256 = "sha256-6OxYIr2ElyB4QHiPV/KAELmKC+qFGpgerhlDPjLvsio="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-e6YifzTPZ6XS50F7rLomhgdXYY2WC24xLvnLkTj494U="; 14 + cargoSha256 = "sha256-+C7MXmn3FrhD9UVdRmRZbH/rzleATBT0bdlQUSOae5Y="; 15 15 16 16 # attempts to run the program on .git in src which is not deterministic 17 17 doCheck = false;
+3 -3
pkgs/applications/version-management/tortoisehg/default.nix
··· 7 7 8 8 python3Packages.buildPythonApplication rec { 9 9 pname = "tortoisehg"; 10 - version = "6.1"; 10 + version = "6.2.2"; 11 11 12 12 src = fetchurl { 13 13 url = "https://www.mercurial-scm.org/release/tortoisehg/targz/tortoisehg-${version}.tar.gz"; 14 - sha256 = "sha256-UG13BlFY9DcsCPWaBiYa6r2oA3ieJtTYfXknDoKNkYI="; 14 + sha256 = "sha256-Xbvg/FcuX/AL2reWsaM2oaFyLby3+HDCfYtRyswE7DA="; 15 15 }; 16 16 17 17 # Extension point for when thg's mercurial is lagging behind mainline. ··· 54 54 homepage = "https://tortoisehg.bitbucket.io/"; 55 55 license = lib.licenses.gpl2Only; 56 56 platforms = lib.platforms.linux; 57 - maintainers = with lib.maintainers; [ danbst ]; 57 + maintainers = with lib.maintainers; [ danbst gbtb ]; 58 58 }; 59 59 }
+157 -122
pkgs/build-support/dotnet/build-dotnet-module/default.nix
··· 1 1 { lib 2 2 , stdenvNoCC 3 3 , callPackage 4 + , writeShellScript 5 + , writeText 6 + , srcOnly 4 7 , linkFarmFromDrvs 8 + , symlinkJoin 9 + , makeWrapper 5 10 , dotnetCorePackages 6 11 , dotnetPackages 7 12 , mkNugetSource 8 13 , mkNugetDeps 9 - , srcOnly 10 - , writeShellScript 11 - , writeText 12 - , makeWrapper 13 14 , nuget-to-nix 14 15 , cacert 15 - , symlinkJoin 16 16 , coreutils 17 17 }: 18 18 ··· 20 20 , pname ? name 21 21 , enableParallelBuilding ? true 22 22 , doCheck ? false 23 - # Flags to pass to `makeWrapper`. This is done to avoid double wrapping. 24 - , makeWrapperArgs ? [] 23 + # Flags to pass to `makeWrapper`. This is done to avoid double wrapping. 24 + , makeWrapperArgs ? [ ] 25 25 26 - # Flags to pass to `dotnet restore`. 27 - , dotnetRestoreFlags ? [] 28 - # Flags to pass to `dotnet build`. 29 - , dotnetBuildFlags ? [] 30 - # Flags to pass to `dotnet test`, if running tests is enabled. 31 - , dotnetTestFlags ? [] 32 - # Flags to pass to `dotnet install`. 33 - , dotnetInstallFlags ? [] 34 - # Flags to pass to `dotnet pack`. 35 - , dotnetPackFlags ? [] 36 - # Flags to pass to dotnet in all phases. 37 - , dotnetFlags ? [] 26 + # Flags to pass to `dotnet restore`. 27 + , dotnetRestoreFlags ? [ ] 28 + # Flags to pass to `dotnet build`. 29 + , dotnetBuildFlags ? [ ] 30 + # Flags to pass to `dotnet test`, if running tests is enabled. 31 + , dotnetTestFlags ? [ ] 32 + # Flags to pass to `dotnet install`. 33 + , dotnetInstallFlags ? [ ] 34 + # Flags to pass to `dotnet pack`. 35 + , dotnetPackFlags ? [ ] 36 + # Flags to pass to dotnet in all phases. 37 + , dotnetFlags ? [ ] 38 38 39 - # The path to publish the project to. When unset, the directory "$out/lib/$pname" is used. 39 + # The path to publish the project to. When unset, the directory "$out/lib/$pname" is used. 40 40 , installPath ? null 41 - # The binaries that should get installed to `$out/bin`, relative to `$out/lib/$pname/`. These get wrapped accordingly. 42 - # Unfortunately, dotnet has no method for doing this automatically. 43 - # If unset, all executables in the projects root will get installed. This may cause bloat! 41 + # The binaries that should get installed to `$out/bin`, relative to `$out/lib/$pname/`. These get wrapped accordingly. 42 + # Unfortunately, dotnet has no method for doing this automatically. 43 + # If unset, all executables in the projects root will get installed. This may cause bloat! 44 44 , executables ? null 45 - # Packs a project as a `nupkg`, and installs it to `$out/share`. If set to `true`, the derivation can be used as a dependency for another dotnet project by adding it to `projectReferences`. 45 + # Packs a project as a `nupkg`, and installs it to `$out/share`. If set to `true`, the derivation can be used as a dependency for another dotnet project by adding it to `projectReferences`. 46 46 , packNupkg ? false 47 - # The packages project file, which contains instructions on how to compile it. This can be an array of multiple project files as well. 47 + # The packages project file, which contains instructions on how to compile it. This can be an array of multiple project files as well. 48 48 , projectFile ? null 49 - # The NuGet dependency file. This locks all NuGet dependency versions, as otherwise they cannot be deterministically fetched. 50 - # This can be generated by running the `passthru.fetch-deps` script. 49 + # The NuGet dependency file. This locks all NuGet dependency versions, as otherwise they cannot be deterministically fetched. 50 + # This can be generated by running the `passthru.fetch-deps` script. 51 51 , nugetDeps ? null 52 - # A list of derivations containing nupkg packages for local project references. 53 - # Referenced derivations can be built with `buildDotnetModule` with `packNupkg=true` flag. 54 - # Since we are sharing them as nugets they must be added to csproj/fsproj files as `PackageReference` as well. 55 - # For example, your project has a local dependency: 56 - # <ProjectReference Include="../foo/bar.fsproj" /> 57 - # To enable discovery through `projectReferences` you would need to add a line: 58 - # <ProjectReference Include="../foo/bar.fsproj" /> 59 - # <PackageReference Include="bar" Version="*" Condition=" '$(ContinuousIntegrationBuild)'=='true' "/> 60 - , projectReferences ? [] 61 - # Libraries that need to be available at runtime should be passed through this. 62 - # These get wrapped into `LD_LIBRARY_PATH`. 63 - , runtimeDeps ? [] 52 + # A list of derivations containing nupkg packages for local project references. 53 + # Referenced derivations can be built with `buildDotnetModule` with `packNupkg=true` flag. 54 + # Since we are sharing them as nugets they must be added to csproj/fsproj files as `PackageReference` as well. 55 + # For example, your project has a local dependency: 56 + # <ProjectReference Include="../foo/bar.fsproj" /> 57 + # To enable discovery through `projectReferences` you would need to add a line: 58 + # <ProjectReference Include="../foo/bar.fsproj" /> 59 + # <PackageReference Include="bar" Version="*" Condition=" '$(ContinuousIntegrationBuild)'=='true' "/> 60 + , projectReferences ? [ ] 61 + # Libraries that need to be available at runtime should be passed through this. 62 + # These get wrapped into `LD_LIBRARY_PATH`. 63 + , runtimeDeps ? [ ] 64 64 65 - # Tests to disable. This gets passed to `dotnet test --filter "FullyQualifiedName!={}"`, to ensure compatibility with all frameworks. 66 - # See https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#filter-option-details for more details. 67 - , disabledTests ? [] 68 - # The project file to run unit tests against. This is usually referenced in the regular project file, but sometimes it needs to be manually set. 69 - # It gets restored and build, but not installed. You may need to regenerate your nuget lockfile after setting this. 65 + # Tests to disable. This gets passed to `dotnet test --filter "FullyQualifiedName!={}"`, to ensure compatibility with all frameworks. 66 + # See https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#filter-option-details for more details. 67 + , disabledTests ? [ ] 68 + # The project file to run unit tests against. This is usually referenced in the regular project file, but sometimes it needs to be manually set. 69 + # It gets restored and build, but not installed. You may need to regenerate your nuget lockfile after setting this. 70 70 , testProjectFile ? "" 71 71 72 - # The type of build to perform. This is passed to `dotnet` with the `--configuration` flag. Possible values are `Release`, `Debug`, etc. 72 + # The type of build to perform. This is passed to `dotnet` with the `--configuration` flag. Possible values are `Release`, `Debug`, etc. 73 73 , buildType ? "Release" 74 - # If set to true, builds the application as a self-contained - removing the runtime dependency on dotnet 74 + # If set to true, builds the application as a self-contained - removing the runtime dependency on dotnet 75 75 , selfContainedBuild ? false 76 - # The dotnet SDK to use. 76 + # The dotnet SDK to use. 77 77 , dotnet-sdk ? dotnetCorePackages.sdk_6_0 78 - # The dotnet runtime to use. 78 + # The dotnet runtime to use. 79 79 , dotnet-runtime ? dotnetCorePackages.runtime_6_0 80 - # The dotnet SDK to run tests against. This can differentiate from the SDK compiled against. 80 + # The dotnet SDK to run tests against. This can differentiate from the SDK compiled against. 81 81 , dotnet-test-sdk ? dotnet-sdk 82 - , ... } @ args: 83 - 84 - assert projectFile == null -> throw "Defining the `projectFile` attribute is required. This is usually an `.csproj`, or `.sln` file."; 85 - 86 - # TODO: Automatically generate a dependency file when a lockfile is present. 87 - # This file is unfortunately almost never present, as Microsoft recommands not to push this in upstream repositories. 88 - assert nugetDeps == null -> throw "Defining the `nugetDeps` attribute is required, as to lock the NuGet dependencies. This file can be generated by running the `passthru.fetch-deps` script."; 82 + , ... 83 + } @ args: 89 84 90 85 let 91 86 inherit (callPackage ./hooks { 92 87 inherit dotnet-sdk dotnet-test-sdk disabledTests nuget-source dotnet-runtime runtimeDeps buildType; 93 88 }) dotnetConfigureHook dotnetBuildHook dotnetCheckHook dotnetInstallHook dotnetFixupHook; 94 89 95 - localDeps = if (projectReferences != []) 90 + localDeps = 91 + if (projectReferences != [ ]) 96 92 then linkFarmFromDrvs "${name}-project-references" projectReferences 97 93 else null; 98 94 99 - _nugetDeps = if lib.isDerivation nugetDeps 100 - then nugetDeps 101 - else mkNugetDeps { inherit name; nugetDeps = import nugetDeps; }; 95 + _nugetDeps = 96 + if (nugetDeps != null) then 97 + if lib.isDerivation nugetDeps 98 + then nugetDeps 99 + else mkNugetDeps { inherit name; nugetDeps = import nugetDeps; } 100 + else throw "Defining the `nugetDeps` attribute is required, as to lock the NuGet dependencies. This file can be generated by running the `passthru.fetch-deps` script."; 102 101 103 102 # contains the actual package dependencies 104 - _dependenciesSource = mkNugetSource { 103 + dependenciesSource = mkNugetSource { 105 104 name = "${name}-dependencies-source"; 106 105 description = "A Nuget source with the dependencies for ${name}"; 107 106 deps = [ _nugetDeps ] ++ lib.optional (localDeps != null) localDeps; ··· 110 109 # this contains all the nuget packages that are implictly referenced by the dotnet 111 110 # build system. having them as separate deps allows us to avoid having to regenerate 112 111 # a packages dependencies when the dotnet-sdk version changes 113 - _sdkDeps = mkNugetDeps { 112 + sdkDeps = mkNugetDeps { 114 113 name = "dotnet-sdk-${dotnet-sdk.version}-deps"; 115 114 nugetDeps = dotnet-sdk.passthru.packages; 116 115 }; 117 116 118 - _sdkSource = mkNugetSource { 117 + sdkSource = mkNugetSource { 119 118 name = "dotnet-sdk-${dotnet-sdk.version}-source"; 120 - deps = [ _sdkDeps ]; 119 + deps = [ sdkDeps ]; 121 120 }; 122 121 123 122 nuget-source = symlinkJoin { 124 123 name = "${name}-nuget-source"; 125 - paths = [ _dependenciesSource _sdkSource ]; 124 + paths = [ dependenciesSource sdkSource ]; 126 125 }; 127 - in stdenvNoCC.mkDerivation (args // { 128 - nativeBuildInputs = args.nativeBuildInputs or [] ++ [ 126 + in 127 + stdenvNoCC.mkDerivation (args // { 128 + nativeBuildInputs = args.nativeBuildInputs or [ ] ++ [ 129 129 dotnetConfigureHook 130 130 dotnetBuildHook 131 131 dotnetCheckHook ··· 150 150 passthru = { 151 151 inherit nuget-source; 152 152 153 - fetch-deps = let 154 - # Because this list is rather long its put in its own store path to maintain readability of the generated script 155 - exclusions = writeText "nuget-package-exclusions" (lib.concatStringsSep "\n" (dotnet-sdk.passthru.packages { fetchNuGet = attrs: attrs.pname; })); 153 + fetch-deps = 154 + let 155 + # Because this list is rather long its put in its own store path to maintain readability of the generated script 156 + exclusions = writeText "nuget-package-exclusions" (lib.concatStringsSep "\n" (dotnet-sdk.passthru.packages { fetchNuGet = attrs: attrs.pname; })); 157 + 158 + # Derivations may set flags such as `--runtime <rid>` based on the host platform to avoid restoring/building nuget dependencies they dont have or dont need. 159 + # This introduces an issue; In this script we loop over all platforms from `meta` and add the RID flag for it, as to fetch all required dependencies. 160 + # The script would inherit the RID flag from the derivation based on the platform building the script, and set the flag for any iteration we do over the RIDs. 161 + # That causes conflicts. To circumvent it we remove all occurances of the flag. 162 + flags = 163 + let 164 + hasRid = flag: lib.any (v: v) (map (rid: lib.hasInfix rid flag) (lib.attrValues dotnet-sdk.runtimeIdentifierMap)); 165 + in 166 + builtins.filter (flag: !(hasRid flag)) (dotnetFlags ++ dotnetRestoreFlags); 156 167 157 - runtimeIds = map (system: dotnet-sdk.systemToDotnetRid system) (args.meta.platforms or dotnet-sdk.meta.platforms); 168 + runtimeIds = map (system: dotnet-sdk.systemToDotnetRid system) (args.meta.platforms or dotnet-sdk.meta.platforms); 169 + in 170 + writeShellScript "fetch-${pname}-deps" '' 171 + set -euo pipefail 158 172 159 - # Derivations may set flags such as `--runtime <rid>` based on the host platform to avoid restoring/building nuget dependencies they dont have or dont need. 160 - # This introduces an issue; In this script we loop over all platforms from `meta` and add the RID flag for it, as to fetch all required dependencies. 161 - # The script would inherit the RID flag from the derivation based on the platform building the script, and set the flag for any iteration we do over the RIDs. 162 - # That causes conflicts. To circumvent it we remove all occurances of the flag. 163 - flags = 164 - let 165 - hasRid = flag: lib.any (v: v) (map (rid: lib.hasInfix rid flag) (lib.attrValues dotnet-sdk.runtimeIdentifierMap)); 166 - in 167 - builtins.filter (flag: !(hasRid flag)) (dotnetFlags ++ dotnetRestoreFlags); 173 + export PATH="${lib.makeBinPath [ coreutils dotnet-sdk nuget-to-nix ]}" 168 174 169 - in writeShellScript "fetch-${pname}-deps" '' 170 - set -euo pipefail 175 + for arg in "$@"; do 176 + case "$arg" in 177 + --keep-sources|-k) 178 + keepSources=1 179 + shift 180 + ;; 181 + --help|-h) 182 + echo "usage: $0 <output path> [--keep-sources] [--help]" 183 + echo " <output path> The path to write the lockfile to. A temporary file is used if this is not set" 184 + echo " --keep-sources Dont remove temporary directories upon exit, useful for debugging" 185 + echo " --help Show this help message" 186 + exit 187 + ;; 188 + esac 189 + done 190 + 191 + exitTrap() { 192 + test -n "''${ranTrap-}" && return 193 + ranTrap=1 194 + 195 + if test -n "''${keepSources-}"; then 196 + echo -e "Path to the source: $src\nPath to the fake home: $HOME" 197 + else 198 + rm -rf "$src" "$HOME" 199 + fi 200 + 201 + # Since mktemp is used this will be empty if the script didnt succesfully complete 202 + ! test -s "$depsFile" && rm -rf "$depsFile" 203 + } 204 + 205 + trap exitTrap EXIT INT TERM 206 + 207 + dotnetRestore() { 208 + local -r project="''${1-}" 209 + local -r rid="$2" 210 + 211 + dotnet restore ''${project-} \ 212 + -p:ContinuousIntegrationBuild=true \ 213 + -p:Deterministic=true \ 214 + --packages "$HOME/nuget_pkgs" \ 215 + --runtime "$rid" \ 216 + ${lib.optionalString (!enableParallelBuilding) "--disable-parallel"} \ 217 + ${lib.optionalString (flags != []) (toString flags)} 218 + } 171 219 172 - export PATH="${lib.makeBinPath [ coreutils dotnet-sdk nuget-to-nix ]}" 220 + declare -a projectFiles=( ${toString (lib.toList projectFile)} ) 221 + declare -a testProjectFiles=( ${toString (lib.toList testProjectFile)} ) 173 222 174 - case "''${1-}" in 175 - --help|-h) 176 - echo "usage: $0 <output path> [--help]" 177 - echo " <output path> The path to write the lockfile to" 178 - echo " --help Show this help message" 179 - exit 180 - ;; 181 - esac 223 + export HOME=$(mktemp -td "${pname}-home-XXXXXX") 224 + export DOTNET_NOLOGO=1 225 + export DOTNET_CLI_TELEMETRY_OPTOUT=1 182 226 183 - deps_file="$(realpath "''${1:-$(mktemp -t "${pname}-deps-XXXXXX.nix")}")" 184 - export HOME=$(mktemp -td "${pname}-home-XXXXXX") 185 - mkdir -p "$HOME/nuget_pkgs" 227 + depsFile="$(realpath "''${1:-$(mktemp -t "${pname}-deps-XXXXXX.nix")}")" 228 + mkdir -p "$HOME/nuget_pkgs" 186 229 187 - store_src="${srcOnly args}" 188 - src="$(mktemp -td "${pname}-src-XXXXXX")" 189 - cp -rT "$store_src" "$src" 190 - chmod -R +w "$src" 191 - trap "rm -rf $src $HOME" EXIT 230 + storeSrc="${srcOnly args}" 231 + src="$(mktemp -td "${pname}-src-XXXXXX")" 232 + cp -rT "$storeSrc" "$src" 233 + chmod -R +w "$src" 192 234 193 - cd "$src" 194 - echo "Restoring project..." 235 + cd "$src" 236 + echo "Restoring project..." 195 237 196 - export DOTNET_NOLOGO=1 197 - export DOTNET_CLI_TELEMETRY_OPTOUT=1 238 + for rid in "${lib.concatStringsSep "\" \"" runtimeIds}"; do 239 + (( ''${#projectFiles[@]} == 0 )) && dotnetRestore "" "$rid" 198 240 199 - for rid in "${lib.concatStringsSep "\" \"" runtimeIds}"; do 200 - for project in "${lib.concatStringsSep "\" \"" ((lib.toList projectFile) ++ lib.optionals (testProjectFile != "") (lib.toList testProjectFile))}"; do 201 - dotnet restore "$project" \ 202 - -p:ContinuousIntegrationBuild=true \ 203 - -p:Deterministic=true \ 204 - --packages "$HOME/nuget_pkgs" \ 205 - --runtime "$rid" \ 206 - ${lib.optionalString (!enableParallelBuilding) "--disable-parallel"} \ 207 - ${lib.optionalString (flags != []) (toString flags)} 208 - done 209 - done 241 + for project in ''${projectFiles[@]-} ''${testProjectFiles[@]-}; do 242 + dotnetRestore "$project" "$rid" 243 + done 244 + done 210 245 211 - echo "Succesfully restored project" 246 + echo "Succesfully restored project" 212 247 213 - echo "Writing lockfile..." 214 - echo -e "# This file was automatically generated by passthru.fetch-deps.\n# Please dont edit it manually, your changes might get overwritten!\n" > "$deps_file" 215 - nuget-to-nix "$HOME/nuget_pkgs" "${exclusions}" >> "$deps_file" 216 - echo "Succesfully wrote lockfile to: $deps_file" 217 - ''; 218 - } // args.passthru or {}; 248 + echo "Writing lockfile..." 249 + echo -e "# This file was automatically generated by passthru.fetch-deps.\n# Please dont edit it manually, your changes might get overwritten!\n" > "$depsFile" 250 + nuget-to-nix "$HOME/nuget_pkgs" "${exclusions}" >> "$depsFile" 251 + echo "Succesfully wrote lockfile to $depsFile" 252 + ''; 253 + } // args.passthru or { }; 219 254 220 255 meta = { 221 256 platforms = dotnet-sdk.meta.platforms; 222 - } // args.meta or {}; 257 + } // args.meta or { }; 223 258 })
+24 -18
pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-build-hook.sh
··· 7 7 runHook preBuild 8 8 9 9 if [ "${enableParallelBuilding-}" ]; then 10 - maxCpuFlag="$NIX_BUILD_CORES" 11 - parallelBuildFlag="true" 10 + local -r maxCpuFlag="$NIX_BUILD_CORES" 11 + local -r parallelBuildFlag="true" 12 12 else 13 - maxCpuFlag="1" 14 - parallelBuildFlag="false" 13 + local -r maxCpuFlag="1" 14 + local -r parallelBuildFlag="false" 15 15 fi 16 16 17 17 if [ "${selfContainedBuild-}" ]; then ··· 21 21 fi 22 22 23 23 if [ "${version-}" ]; then 24 - versionFlag="-p:Version=${version-}" 24 + local -r versionFlag="-p:Version=${version-}" 25 25 fi 26 26 27 - for project in ${projectFile[@]} ${testProjectFile[@]}; do 28 - env \ 29 - dotnet build "$project" \ 30 - -maxcpucount:$maxCpuFlag \ 31 - -p:BuildInParallel=$parallelBuildFlag \ 32 - -p:ContinuousIntegrationBuild=true \ 33 - -p:Deterministic=true \ 34 - -p:UseAppHost=true \ 35 - --configuration "@buildType@" \ 36 - --no-restore \ 37 - ${versionFlag-} \ 38 - ${dotnetBuildFlags[@]} \ 39 - ${dotnetFlags[@]} 27 + dotnetBuild() { 28 + local -r project="${1-}" 29 + env dotnet build ${project-} \ 30 + -maxcpucount:$maxCpuFlag \ 31 + -p:BuildInParallel=$parallelBuildFlag \ 32 + -p:ContinuousIntegrationBuild=true \ 33 + -p:Deterministic=true \ 34 + -p:UseAppHost=true \ 35 + --configuration "@buildType@" \ 36 + --no-restore \ 37 + ${versionFlag-} \ 38 + ${dotnetBuildFlags[@]} \ 39 + ${dotnetFlags[@]} 40 + } 41 + 42 + (( "${#projectFile[@]}" == 0 )) && dotnetBuild 43 + 44 + for project in ${projectFile[@]} ${testProjectFile[@]-}; do 45 + dotnetBuild "$project" 40 46 done 41 47 42 48 runHook postBuild
+8 -2
pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-check-hook.sh
··· 7 7 runHook preCheck 8 8 9 9 if [ "${disabledTests-}" ]; then 10 - disabledTestsFlag="--filter FullyQualifiedName!=@disabledTests@" 10 + local -r disabledTestsFlag="--filter FullyQualifiedName!=@disabledTests@" 11 11 fi 12 12 13 - for project in ${testProjectFile[@]}; do 13 + if [ "${enableParallelBuilding-}" ]; then 14 + local -r maxCpuFlag="$NIX_BUILD_CORES" 15 + else 16 + local -r maxCpuFlag="1" 17 + fi 18 + 19 + for project in ${testProjectFile[@]-}; do 14 20 env "LD_LIBRARY_PATH=@libraryPath@" \ 15 21 dotnet test "$project" \ 16 22 -maxcpucount:$maxCpuFlag \
+16 -10
pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-configure-hook.sh
··· 10 10 runHook preConfigure 11 11 12 12 if [ -z "${enableParallelBuilding-}" ]; then 13 - parallelFlag="--disable-parallel" 13 + local -r parallelFlag="--disable-parallel" 14 14 fi 15 15 16 - for project in ${projectFile[@]} ${testProjectFile[@]}; do 17 - env \ 18 - dotnet restore "$project" \ 19 - -p:ContinuousIntegrationBuild=true \ 20 - -p:Deterministic=true \ 21 - --source "@nugetSource@/lib" \ 22 - ${parallelFlag-} \ 23 - ${dotnetRestoreFlags[@]} \ 24 - ${dotnetFlags[@]} 16 + dotnetRestore() { 17 + local -r project="${1-}" 18 + env dotnet restore ${project-} \ 19 + -p:ContinuousIntegrationBuild=true \ 20 + -p:Deterministic=true \ 21 + --source "@nugetSource@/lib" \ 22 + ${parallelFlag-} \ 23 + ${dotnetRestoreFlags[@]} \ 24 + ${dotnetFlags[@]} 25 + } 26 + 27 + (( "${#projectFile[@]}" == 0 )) && dotnetRestore 28 + 29 + for project in ${projectFile[@]} ${testProjectFile[@]-}; do 30 + dotnetRestore "$project" 25 31 done 26 32 27 33 runHook postConfigure
+12 -13
pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-fixup-hook.sh
··· 5 5 # the second is the destination for the wrapper. 6 6 wrapDotnetProgram() { 7 7 if [ ! "${selfContainedBuild-}" ]; then 8 - dotnetRootFlag=("--set" "DOTNET_ROOT" "@dotnetRuntime@") 8 + local -r dotnetRootFlag=("--set" "DOTNET_ROOT" "@dotnetRuntime@") 9 9 fi 10 10 11 11 makeWrapper "$1" "$2" \ 12 - "${dotnetRootFlag[@]}" \ 13 12 --suffix "LD_LIBRARY_PATH" : "@runtimeDeps@" \ 13 + "${dotnetRootFlag[@]}" \ 14 14 "${gappsWrapperArgs[@]}" \ 15 15 "${makeWrapperArgs[@]}" 16 16 17 - echo "Installed wrapper to: "$2"" 17 + echo "installed wrapper to "$2"" 18 18 } 19 19 20 20 dotnetFixupHook() { 21 21 echo "Executing dotnetFixupPhase" 22 22 23 - if [ "${executables}" ]; then 23 + if [ "${executables-}" ]; then 24 24 for executable in ${executables[@]}; do 25 - execPath="$out/lib/${pname}/$executable" 25 + path="$out/lib/$pname/$executable" 26 26 27 - if [[ -f "$execPath" && -x "$execPath" ]]; then 28 - wrapDotnetProgram "$execPath" "$out/bin/$(basename "$executable")" 27 + if test -x "$path"; then 28 + wrapDotnetProgram "$path" "$out/bin/$(basename "$executable")" 29 29 else 30 - echo "Specified binary \"$executable\" is either not an executable, or does not exist!" 30 + echo "Specified binary \"$executable\" is either not an executable or does not exist!" 31 + echo "Looked in $path" 31 32 exit 1 32 33 fi 33 34 done 34 35 else 35 - for executable in $out/lib/${pname}/*; do 36 - if [[ -f "$executable" && -x "$executable" && "$executable" != *"dll"* ]]; then 37 - wrapDotnetProgram "$executable" "$out/bin/$(basename "$executable")" 38 - fi 39 - done 36 + while IFS= read -d '' executable; do 37 + wrapDotnetProgram "$executable" "$out/bin/$(basename "$executable")" \; 38 + done < <(find "$out/lib/$pname" ! -name "*.dll" -executable -type f -print0) 40 39 fi 41 40 42 41 echo "Finished dotnetFixupPhase"
+38 -22
pkgs/build-support/dotnet/build-dotnet-module/hooks/dotnet-install-hook.sh
··· 12 12 dotnetInstallFlags+=("--no-self-contained") 13 13 fi 14 14 15 - for project in ${projectFile[@]}; do 16 - env \ 17 - dotnet publish "$project" \ 18 - -p:ContinuousIntegrationBuild=true \ 19 - -p:Deterministic=true \ 20 - -p:UseAppHost=true \ 21 - --output "$out/lib/${pname}" \ 22 - --configuration "@buildType@" \ 23 - --no-build \ 24 - ${dotnetInstallFlags[@]} \ 25 - ${dotnetFlags[@]} 26 - done 15 + dotnetPublish() { 16 + local -r project="${1-}" 17 + env dotnet publish ${project-} \ 18 + -p:ContinuousIntegrationBuild=true \ 19 + -p:Deterministic=true \ 20 + -p:UseAppHost=true \ 21 + --output "$out/lib/${pname}" \ 22 + --configuration "@buildType@" \ 23 + --no-build \ 24 + ${dotnetInstallFlags[@]} \ 25 + ${dotnetFlags[@]} 26 + } 27 27 28 - if [[ "${packNupkg-}" ]]; then 28 + dotnetPack() { 29 + local -r project="${1-}" 30 + env dotnet pack ${project-} \ 31 + -p:ContinuousIntegrationBuild=true \ 32 + -p:Deterministic=true \ 33 + --output "$out/share" \ 34 + --configuration "@buildType@" \ 35 + --no-build \ 36 + ${dotnetPackFlags[@]} \ 37 + ${dotnetFlags[@]} 38 + } 39 + 40 + if (( "${#projectFile[@]}" == 0 )); then 41 + dotnetPublish 42 + else 29 43 for project in ${projectFile[@]}; do 30 - env \ 31 - dotnet pack "$project" \ 32 - -p:ContinuousIntegrationBuild=true \ 33 - -p:Deterministic=true \ 34 - --output "$out/share" \ 35 - --configuration "@buildType@" \ 36 - --no-build \ 37 - ${dotnetPackFlags[@]} \ 38 - ${dotnetFlags[@]} 44 + dotnetPublish "$project" 39 45 done 46 + fi 47 + 48 + if [[ "${packNupkg-}" ]]; then 49 + if (( "${#projectFile[@]}" == 0 )); then 50 + dotnetPack 51 + else 52 + for project in ${projectFile[@]}; do 53 + dotnetPack "$project" 54 + done 55 + fi 40 56 fi 41 57 42 58 runHook postInstall
+4 -15
pkgs/data/icons/fluent-icon-theme/default.nix
··· 6 6 , jdupes 7 7 , roundedIcons ? false 8 8 , blackPanelIcons ? false 9 - , colorVariants ? [] 9 + , colorVariants ? [ ] 10 10 , 11 11 }: 12 12 let 13 13 pname = "Fluent-icon-theme"; 14 14 in 15 - lib.checkListOfEnum "${pname}: available color variants" [ 16 - "standard" 17 - "green" 18 - "grey" 19 - "orange" 20 - "pink" 21 - "purple" 22 - "red" 23 - "yellow" 24 - "teal" 25 - "all" 26 - ] colorVariants 15 + lib.checkListOfEnum "${pname}: available color variants" [ "standard" "green" "grey" "orange" "pink" "purple" "red" "yellow" "teal" "all" ] colorVariants 27 16 28 17 stdenvNoCC.mkDerivation rec { 29 18 inherit pname; 30 - version = "2022-02-28"; 19 + version = "2022-09-20"; 31 20 32 21 src = fetchFromGitHub { 33 22 owner = "vinceliuice"; 34 23 repo = pname; 35 24 rev = version; 36 - sha256 = "UMj3qF9lhd9kM7J/3RtG3AiWlBontrowfsFOb3yr0tQ="; 25 + sha256 = "Ce8LTIxKabeqV9QVK68DqUVwtwG5lyxDPDQx0mLIr5o="; 37 26 }; 38 27 39 28 nativeBuildInputs = [ gtk3 jdupes ];
+2 -2
pkgs/data/icons/numix-icon-theme-circle/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "numix-icon-theme-circle"; 5 - version = "22.09.18"; 5 + version = "22.09.24"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "numixproject"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-O81tOldb7QAKtMOeL5/Bb7+FWQhiIID3AJWybJah+kY="; 11 + sha256 = "sha256-HHJkhQ8icKaPslGIh0gGKHXeTZKWpWcdwkdvQocW9jU="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ gtk3 ];
+2 -2
pkgs/data/icons/numix-icon-theme-square/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "numix-icon-theme-square"; 5 - version = "22.09.18"; 5 + version = "22.09.24"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "numixproject"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-cJexDI4egOGLggL0kGTu/nplQQg1lPjvnoVk9VCS5gA="; 11 + sha256 = "sha256-LoEG/wTx2EYhuln7TYgcJrd4YkrX2ZJrl8ztVJ0xSyk="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ gtk3 ];
+19
pkgs/development/compilers/dotnet/build-dotnet.nix
··· 23 23 , lttng-ust_2_12 24 24 , testers 25 25 , runCommand 26 + , writeShellScript 26 27 }: 27 28 28 29 let ··· 120 121 "x86_64-darwin" = "osx-x64"; 121 122 "aarch64-darwin" = "osx-arm64"; 122 123 }; 124 + 125 + updateScript = 126 + if type != "sdk" then 127 + lib.warn "${pname}-${version}: only the SDK package can be updated - this script will do nothing!" 128 + writeShellScript "dummy-update" '' 129 + echo "Doing nothing..." 130 + echo "Run the updateScript from the SDK package" 131 + '' 132 + else 133 + let 134 + majorVersion = 135 + with lib; 136 + concatStringsSep "." (take 2 (splitVersion version)); 137 + in 138 + writeShellScript "update-dotnet-${majorVersion}" '' 139 + pushd pkgs/development/compilers/dotnet 140 + exec ${./update.sh} "${majorVersion}" 141 + ''; 123 142 124 143 # Convert a "stdenv.hostPlatform.system" to a dotnet RID 125 144 systemToDotnetRid = system: runtimeIdentifierMap.${system} or (throw "unsupported platform ${system}");
+16 -1
pkgs/development/compilers/dotnet/update.sh
··· 297 297 major_minor=$(sed 's/^\([0-9]*\.[0-9]*\).*$/\1/' <<< "$sem_version") 298 298 content=$(curl -sL https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/"$major_minor"/releases.json) 299 299 major_minor_patch=$([ "$patch_specified" == true ] && echo "$sem_version" || jq -r '."latest-release"' <<< "$content") 300 + major_minor_underscore=${major_minor/./_} 300 301 301 302 release_content=$(release "$content" "$major_minor_patch") 302 303 aspnetcore_version=$(jq -r '."aspnetcore-runtime".version' <<< "$release_content") 303 304 runtime_version=$(jq -r '.runtime.version' <<< "$release_content") 304 305 sdk_version=$(jq -r '.sdk.version' <<< "$release_content") 305 306 307 + # If patch was not specified, check if the package is already the latest version 308 + # If it is, exit early 309 + if [ "$patch_specified" == false ] && [ -f "./versions/${sem_version}.nix" ]; then 310 + current_version=$(nix-instantiate --eval -E "(import ./versions/${sem_version}.nix { \ 311 + buildAspNetCore = { ... }: {}; \ 312 + buildNetRuntime = { ... }: {}; \ 313 + buildNetSdk = { version, ... }: version; \ 314 + icu = null; }).sdk_${major_minor_underscore}" | jq -r) 315 + 316 + if [[ "$current_version" == "$sdk_version" ]]; then 317 + echo "Nothing to update." 318 + exit 319 + fi 320 + fi 321 + 306 322 aspnetcore_files="$(release_files "$release_content" "aspnetcore-runtime")" 307 323 runtime_files="$(release_files "$release_content" "runtime")" 308 324 sdk_files="$(release_files "$release_content" "sdk")" 309 325 310 - major_minor_underscore=${major_minor/./_} 311 326 channel_version=$(jq -r '."channel-version"' <<< "$content") 312 327 support_phase=$(jq -r '."support-phase"' <<< "$content") 313 328 echo "{ buildAspNetCore, buildNetRuntime, buildNetSdk, icu }:
+126 -118
pkgs/development/compilers/dotnet/versions/6.0.nix
··· 4 4 { 5 5 aspnetcore_6_0 = buildAspNetCore { 6 6 inherit icu; 7 - version = "6.0.8"; 7 + version = "6.0.9"; 8 8 srcs = { 9 9 x86_64-linux = { 10 - url = "https://download.visualstudio.microsoft.com/download/pr/5cc06c3a-4d8a-4fb2-8f7a-ecd23cd8c4e0/dd386c0e3a41ea54f459907c834acedf/aspnetcore-runtime-6.0.8-linux-x64.tar.gz"; 11 - sha512 = "b74676ca0d2f47a95533739fd36977bb1552890a81820ee51b29b3d6514398f0952362417bbb31fad4bdf031803cb3e8d2aaf065dfb154a78a1b471a536d4abd"; 10 + url = "https://download.visualstudio.microsoft.com/download/pr/1a2bca2e-f525-4ecf-9c46-06889b4ce3a4/1a7ad60df284ca6b00ca5d31cc1b1c7c/aspnetcore-runtime-6.0.9-linux-x64.tar.gz"; 11 + sha512 = "e808036155bc324335c309aaf948b2be1940a62eaf0135752989644698653c8f3a5ce310c3ee6742e3af73dbe175c6e529298eedf6eeb31cc38bfeab628f6d7b"; 12 12 }; 13 13 aarch64-linux = { 14 - url = "https://download.visualstudio.microsoft.com/download/pr/83695c9b-c954-459e-b9bf-2f1ac269e34e/1316ff4a6fe4c6916e7ecb3623d67cee/aspnetcore-runtime-6.0.8-linux-arm64.tar.gz"; 15 - sha512 = "07babe85c8872ca303a17268b0d23c382a9ac49f8b923c45c496db039f6c01094303cd18cd31f964ba7369bb993c896eeadbb7e458a77d5b86992222b91db52c"; 14 + url = "https://download.visualstudio.microsoft.com/download/pr/bff2e771-8180-47eb-b12a-757a67001e21/63a7f79af649efe65c20f2ca56834048/aspnetcore-runtime-6.0.9-linux-arm64.tar.gz"; 15 + sha512 = "ed3315276f918f52188430b0d84d843e938c770e0be06afaec6de0b398a1268bae0195c71a29971923b5b7331b6bb64a623a27f48e21a4c8538fde2a543b2dd2"; 16 16 }; 17 17 x86_64-darwin = { 18 - url = "https://download.visualstudio.microsoft.com/download/pr/0601cae2-aa41-4318-a996-36633cd641f3/ffc290161ae37b28894ff7465dd50c17/aspnetcore-runtime-6.0.8-osx-x64.tar.gz"; 19 - sha512 = "73d3569c13965de927e9d1eb02ce7d31b44643335a351ddc6392be1a693837263287d9bc5e82a89f2456b7a9cf1bd6c217d9f98cf9fa8da1b6c820e9ddf43933"; 18 + url = "https://download.visualstudio.microsoft.com/download/pr/5d9f409c-0fd2-477f-8a80-44eb18f9ccdb/3dc6bc3edf033ab3d84b36889f1253cf/aspnetcore-runtime-6.0.9-osx-x64.tar.gz"; 19 + sha512 = "d67dd72cfd0fb9d96077bc6c3518fabbde107d97b4645c13dc82ec99abdfb4030e10638e4fb0c52aa5246d90628348fd877625469f14fb45e4467934229749d7"; 20 20 }; 21 21 aarch64-darwin = { 22 - url = "https://download.visualstudio.microsoft.com/download/pr/7859a31f-74c9-4756-a9ab-f040550666ac/3c4ad4317e732436f8c092eb9cdb4168/aspnetcore-runtime-6.0.8-osx-arm64.tar.gz"; 23 - sha512 = "a6cabc3b4c7350deb141e122c194c7eefaf99127cee726ee227e4218add7155b8decdb2a5cd217f757410e267f2370a78806c22a0294098f245105cea925a7b2"; 22 + url = "https://download.visualstudio.microsoft.com/download/pr/e13f930a-a71a-4cea-8f3a-2280505fa0aa/cdd56e3fbfadbed989b2acbf7d3aae3f/aspnetcore-runtime-6.0.9-osx-arm64.tar.gz"; 23 + sha512 = "d47e828c160b7e162f26d0074a47a1646863fc63fde393758d020546d03843e3f98adb92e3c0041a9088ad31043314317a2e8be616f8079d8c98754f94eb55cc"; 24 24 }; 25 25 }; 26 26 }; 27 27 28 28 runtime_6_0 = buildNetRuntime { 29 29 inherit icu; 30 - version = "6.0.8"; 30 + version = "6.0.9"; 31 31 srcs = { 32 32 x86_64-linux = { 33 - url = "https://download.visualstudio.microsoft.com/download/pr/5596ef6f-a174-4fba-aef1-99173e3f3c67/77edd755d605688885ca7114bc4f9ae9/dotnet-runtime-6.0.8-linux-x64.tar.gz"; 34 - sha512 = "c776813bf87c25766b31a3a514d124d0526086ceea514a10f104d70ba435c91a6bd3c8bf10c6662b4df2b13ffcdf385518f3418e51d05cccec6a2cf2c26099de"; 33 + url = "https://download.visualstudio.microsoft.com/download/pr/05f1a3dd-75f2-49f4-a976-25ce08f77cbb/b6e8e327a84b91513c2744bfccf90140/dotnet-runtime-6.0.9-linux-x64.tar.gz"; 34 + sha512 = "a6df2cfef73047247bd36f51eaf696f616c6aa9b428e42f219bf91dcf05c03dff817a8ec826740002c8aa83df2fce8a7ace562ad2e2956789542f0b8ab8b1173"; 35 35 }; 36 36 aarch64-linux = { 37 - url = "https://download.visualstudio.microsoft.com/download/pr/866ce4df-8aaa-417d-ad81-26131a2b8734/7ba8391188bc194156ee7d82f494ee00/dotnet-runtime-6.0.8-linux-arm64.tar.gz"; 38 - sha512 = "7cd60eda5219a6b882e53e85e2b6543dedc91605503ce8085f447835382fd1b6abd7c8810e0fd865ecaa33167cedf2a33884dd4eb2bdd2857fe69d509cd62a9c"; 37 + url = "https://download.visualstudio.microsoft.com/download/pr/2dc40bad-57b6-42ae-b9dd-bd457af4e73e/b95f86d6f9cf49e156227bad231d4aa0/dotnet-runtime-6.0.9-linux-arm64.tar.gz"; 38 + sha512 = "a4ce5ec71c60690e577e96a2cd821c05d5f05b7c1754fb753353db77e938349a53d4cc55596f7384813bc44f74eac8f991a1c00cbee60483f552663cf4d8ac31"; 39 39 }; 40 40 x86_64-darwin = { 41 - url = "https://download.visualstudio.microsoft.com/download/pr/1c11dcab-2b1b-4f89-88a8-32665c56a131/c1654a9f3d01805033b7fd8d505050e8/dotnet-runtime-6.0.8-osx-x64.tar.gz"; 42 - sha512 = "8100003430b073e9f1f16910eef8af5a5ea806754a1818971ba15f4ba44e12455330334bd1488088880f7ed3ff67c2a4c4a3d8037f4202c95e6bc029806c8b15"; 41 + url = "https://download.visualstudio.microsoft.com/download/pr/cd4ba3ed-7f37-46d5-ab1c-dc479a08333d/f27d3ab52b0830861bed594be6da86a8/dotnet-runtime-6.0.9-osx-x64.tar.gz"; 42 + sha512 = "b52542c1850c14b409c0938a31188821b428199a7f3f55779f4986867a78eedfe06478f8ea79e8b20d078fcfd9201dc10d4a73146ef8fd56753f0cd23c5328ac"; 43 43 }; 44 44 aarch64-darwin = { 45 - url = "https://download.visualstudio.microsoft.com/download/pr/0b8a7b71-8f77-439b-a4d8-b4fd863466d3/7a852ca4536bdef2e63d9f5e98731777/dotnet-runtime-6.0.8-osx-arm64.tar.gz"; 46 - sha512 = "99264f4e34e2b6e1a82f3716cce5753967f3386348593e7f51085d96dbec4acf1400a451e9320afbfb45a9b777df1f8bbed8e78d7c4810336f3d226bdfd4343f"; 45 + url = "https://download.visualstudio.microsoft.com/download/pr/c7c51353-ded6-4846-87ac-d840b1ac2f9f/88641f913c8e886b4e38fc5b0c547ed4/dotnet-runtime-6.0.9-osx-arm64.tar.gz"; 46 + sha512 = "07dfd194fdc67bd096db0edc691fc2a2d0e41d8a3023582ef1ff7348eb0fca3a58d97b79c454e5c67339f6d9c9b0f3b997d68f6ec7bd0e8c86d584da6d94cd8c"; 47 47 }; 48 48 }; 49 49 }; 50 50 51 51 sdk_6_0 = buildNetSdk { 52 52 inherit icu; 53 - version = "6.0.400"; 53 + version = "6.0.401"; 54 54 srcs = { 55 55 x86_64-linux = { 56 - url = "https://download.visualstudio.microsoft.com/download/pr/cd0d0a4d-2a6a-4d0d-b42e-dfd3b880e222/008a93f83aba6d1acf75ded3d2cfba24/dotnet-sdk-6.0.400-linux-x64.tar.gz"; 57 - sha512 = "8decbba0a6b09501daede52cbb5a9ae9e5f31ade201918c03efcd1b4cc345ec934f88321704ec3beb1f90f2204934be7259c76f66d9204cbdd15933582602763"; 56 + url = "https://download.visualstudio.microsoft.com/download/pr/8159607a-e686-4ead-ac99-b4c97290a5fd/ec6070b1b2cc0651ebe57cf1bd411315/dotnet-sdk-6.0.401-linux-x64.tar.gz"; 57 + sha512 = "6fce5f29e6cfc80da1df86d2de3a637108023397d275e0dcfa0b79ef36eb85c2c3433db467aa5d8fda7e32bc21205a126636b53d56c4eb4c547d9d3b2370cb31"; 58 58 }; 59 59 aarch64-linux = { 60 - url = "https://download.visualstudio.microsoft.com/download/pr/901f7928-5479-4d32-a9e5-ba66162ca0e4/d00b935ec4dc79a27f5bde00712ed3d7/dotnet-sdk-6.0.400-linux-arm64.tar.gz"; 61 - sha512 = "a21010f9e0e091bf0a4df9dfc4ec9893c056c2b07b10be093ea392a4fa5c8a38bad9535f66e570b45dc25165b685199fb729434b845bcfb35f8b79cceb22c632"; 60 + url = "https://download.visualstudio.microsoft.com/download/pr/a567a07f-af9d-451a-834c-a746ac299e6b/1d9d74b54cf580f93cad71a6bf7b32be/dotnet-sdk-6.0.401-linux-arm64.tar.gz"; 61 + sha512 = "8c05f9e02e0a48fcc3e4534fa7225fe5b974c07f1a4788c46207e18e94031194e1c881e40452ee6c432764e92331c50ae47305d4aec5afa363fab3a8a6727cdf"; 62 62 }; 63 63 x86_64-darwin = { 64 - url = "https://download.visualstudio.microsoft.com/download/pr/f52fb2f4-a0a3-4094-9f75-add72fcbc21e/d46eda7abf39baf278c0b0b040c7b81d/dotnet-sdk-6.0.400-osx-x64.tar.gz"; 65 - sha512 = "35b80347e31baefdbd42e7434ffa0df1069367a4f8deec8b4051a44658b3ed531832f0e92357887a2f5a27c6433304537c846cdd4793aac874bace82a899053e"; 64 + url = "https://download.visualstudio.microsoft.com/download/pr/e79e447d-20fd-4ed9-992d-39165aaf964a/1f101c161bc4a931e16c697e3934e413/dotnet-sdk-6.0.401-osx-x64.tar.gz"; 65 + sha512 = "6cc47bd279ba3d5e2df9f41b14b25662c8a3d61d5dee0fe021ad54a8709aa8a34430deb644c3525d66124a6a1bdf6a273008ea5fcbddccee238f4c470bac3e05"; 66 66 }; 67 67 aarch64-darwin = { 68 - url = "https://download.visualstudio.microsoft.com/download/pr/0e45597f-a72d-42fa-95c5-85a811a7a8b6/1d77d2eeb8c08815edd1a6e9e9dfda4a/dotnet-sdk-6.0.400-osx-arm64.tar.gz"; 69 - sha512 = "c3b016bc558f42fba29a8aebcc04be7b3aa3b0290755b6ee2fea1f48f921da78b86cb31913c4b7e32c0421b45a617b551ba593f98f349fae43ea1faa38348412"; 68 + url = "https://download.visualstudio.microsoft.com/download/pr/dfeaba35-b5b0-4299-b4fa-56735e3f224e/80cc6c2404d0319fb3eab5d0f407b169/dotnet-sdk-6.0.401-osx-arm64.tar.gz"; 69 + sha512 = "0e1974a99863afe0b2c03fe52874ad388c3e019e34c7e0a1dc29955dfa9783a946082270fbd767272817509b30d1928d0c9f12cda43777292587693e0b0fc604"; 70 70 }; 71 71 }; 72 72 packages = { fetchNuGet }: [ 73 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "6.0.8"; sha256 = "1sxl6nsv8magamqbykdr6jnd9q6r1afavc7pzm2jmcqyxv121hv3"; }) 74 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; version = "6.0.8"; sha256 = "1qksplqav4nrjbib6hrbdqg8rd8lxr63ljq57p4h7lbgw0wpxa5c"; }) 75 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "6.0.8"; sha256 = "049s2617s3aqcqxbvb0idrmjw6vnwjjfnqrn7s6hi2w4w5f4z10x"; }) 76 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; version = "6.0.8"; sha256 = "0pphpvag4i0zq7c51r72b9zjlj726wv2hn1vxd1mdsj85f2q77zz"; }) 77 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; version = "6.0.8"; sha256 = "00hhv36d8wjdhnz10jjdv3nikpd4x0sj6v2jfi5p3firl64p5wf2"; }) 78 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; version = "6.0.8"; sha256 = "1lcvphg7s6iwh3dkl9c2c0h5mx9gsp0aic7v2xaqgaq3sz0jalnk"; }) 79 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "6.0.8"; sha256 = "1lmcy66m1yrm0ii1agydn8zmvydjf2sdvng5x07vda574shrr39h"; }) 80 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "6.0.8"; sha256 = "14q6sjbcs1xvd1lz670bnq4pgi1cgayih2bpsjbv33z6w1wshay5"; }) 81 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "6.0.8"; sha256 = "14968kh3c0028nyyxivx01wj1k6a6mk2wm4fk0sbh6p2g7wpaqdp"; }) 82 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm"; version = "6.0.8"; sha256 = "1dmajf3hqs5njm6yd6g9vy72sndf93g4p6ghsjkxizgz46z3qsxh"; }) 83 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; version = "6.0.8"; sha256 = "1cyczl8a4b3plb7f1w0jp06v65yd1fk7mcx2y1jr8qpcmxrad3gl"; }) 84 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; version = "6.0.8"; sha256 = "1qcg7awjd9xf6bvn5wsbd8kiy3vf6iag8q2myzzzy5jj4azbl2wd"; }) 85 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; version = "6.0.8"; sha256 = "1dm953nh7d1k9cpclxxf3831rlx739skrxxw1whqnczffd8rjfmd"; }) 86 - (fetchNuGet { pname = "Microsoft.NETCore.App.Composite"; version = "6.0.8"; sha256 = "1g21mp68ljpvv6g4xgzihpfn96szchpny1h0g9g71bwbgp93aad8"; }) 87 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm"; version = "6.0.8"; sha256 = "0gp93f4ch0h95wl30xbz60xn7i752hvjkiivn3q7wnkary2g8mpr"; }) 88 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "6.0.8"; sha256 = "1bdfpxs31x0a6cbb911vl3ncy26gsffgba3v598k6ki4662xlawv"; }) 89 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; version = "6.0.8"; sha256 = "0w5pxahcgxr4826hv6b72aq60gpbbrj6va2hvj4gzi917dkqdb94"; }) 90 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; version = "6.0.8"; sha256 = "03x0zz9ig1m78gmf2r8wny1y1ripyzsdxak6cqha1zl8gbf0bcck"; }) 91 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; version = "6.0.8"; sha256 = "167kc0766ppkfrv66b0xg844cm7vj7q6p3bm695j8m0gakz71kx3"; }) 92 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "6.0.8"; sha256 = "0a0zrk6lcmbjyl0wkal9p0xw3n5qzvbc72by492vi3cwl8j6qv6d"; }) 93 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "6.0.8"; sha256 = "04l1smar1hrg0r5pzqa5580aw17jx4cbk7i2mrgj7yy2m86m3d4s"; }) 94 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "6.0.8"; sha256 = "0j1qdixwxj2bwgcfxf6fbs2krw6gcm7s9mcx41z9l9q4lq9qh1gc"; }) 95 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm"; version = "6.0.8"; sha256 = "17ji5vjqw59dkrjqfrdbmwf318x9f61ch855l6z3099g84bp9nqk"; }) 96 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm64"; version = "6.0.8"; sha256 = "0c9pxqsi99m91c25n7j2pq9gmyl88k9bf4a5bisqv7v5w7mi2h9x"; }) 97 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x64"; version = "6.0.8"; sha256 = "1k8jh8s2rqyp7rr2vdwqfj35zkr77vnba4jnmgx5ank87z24vmhd"; }) 98 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x86"; version = "6.0.8"; sha256 = "1z5ja82jxmlndivxrm4abapg41zkgs5bjc7ks2azzn8znghksvya"; }) 99 - (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "6.0.8"; sha256 = "1654jcqp80i3gkasf9axnfrjnk8iaxkhgfkbrgv5fi5vz0lbgi2h"; }) 100 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; version = "6.0.8"; sha256 = "0999pi4dyr4l7grrw47xip8prqsc3inpz9gkxjd34dzi7wcpfy47"; }) 101 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "6.0.8"; sha256 = "040c6505idayhym3j90ixw85h4l6m23nlwp5g9zf4p9dl2mfgicv"; }) 102 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; version = "6.0.8"; sha256 = "0qd9pz33wibc3db2sn452wd5vipzq6kf7gclc6lfzz4cavlzqxc4"; }) 103 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; version = "6.0.8"; sha256 = "0qzkybsfx4pps97kzyy8325brljdi4h9vqapcgyfb2rmkvvfqsby"; }) 104 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; version = "6.0.8"; sha256 = "0fxp7zz6pjxhmasy7xza9gi83zag81b2gpp08cam69kjn1razlq1"; }) 105 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "6.0.8"; sha256 = "01fci2411qhi6gxp0jddmy4pb248n08ng8wxap37ysh5zc1qmjcm"; }) 106 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "6.0.8"; sha256 = "06ahjlsr43vx3dnw28fpkk2vmagrrn1m8jds8pdgj44jpn57lc8r"; }) 107 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "6.0.8"; sha256 = "0bz6qja5lbi1a7iqkbin4p97dinn9iykw0x0nmmjs4ihx33ic1jr"; }) 108 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm"; version = "6.0.8"; sha256 = "080jaw5y9zwfsj3b0ziw3s75whankyn99q5sjhq7pmpi6763xw48"; }) 109 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; version = "6.0.8"; sha256 = "0wmb4jx6l9dg17ng5cf4k3s54s08lf220gzphdgrcl0w1jihg7n5"; }) 110 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x64"; version = "6.0.8"; sha256 = "067blnpwccsfp201803yrb4j4gp9vzkppgc4h7s13dxjz78cf7ss"; }) 111 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x86"; version = "6.0.8"; sha256 = "1ws1sbsly7n7p6p5k057m063vk5by88fxfkkqw5i61vh6iwkcbnd"; }) 112 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "04dknyln95q0qx0h374d3xxs5rwh4sm0j489p370bkv0czl0ha4b"; }) 113 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "1rav7v08nc01b443cy58gk32n6d30zkjx99m8hpsz17vcxw8jiqq"; }) 114 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "1g03lm7ckqa67m9l701lmw6pwxym8l390zlf8km02gfq0x1g2fyj"; }) 115 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "1wb9db76nnm9sr2kj8q53j8wamybkrk7x6gwqw17xk6cxq2fgxq4"; }) 116 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "02l7ahcrhq8lnxnf323d6qk3saha73d2sbmgjmp1rcy5q2mqly05"; }) 117 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "0cinkimphbrpjmz38acrmjqr9md4vi7ad7r757gm363z0hal2783"; }) 118 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "1dr2a2bgia8i5pwk8b8z3jwlbkshh9pb8hhzbkhjmc56sx49h0lx"; }) 119 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "1kj8a9l65slgb3r45b8x5qnhcs80bx8437cfisyfbhjkw17i5cgg"; }) 120 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "1v06qri2f6h2ndbaydgsnpas6nfhvi58yx68v3w4gdbdablnycvb"; }) 121 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "0vskm16p0aj7jlwsp5mfbilszwvfaglp6p69196v7kdqmskwxw8c"; }) 122 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "1j1j81az67rwdnqfapjnvxx35fjr1n035pwb2nlg6kz2r2mfw4ph"; }) 123 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "0sfqc7v6zi3ma446jgrd4bjfjl0d48wpyb40wc1frcsvms9zskwr"; }) 124 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "0sp90fz8qyz7gn2fmgavsq909dpk44ymq3cs1mxdwfp3v9dssmyh"; }) 125 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "08k90llf2p1bg62w1mk7vv5lk8s4ymfq5j6hdl1al5an4gl7niif"; }) 126 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "1akvfw5p9s7w9jr09s20ph4x82kfbabsbd5dafpvakd4zw7cawfx"; }) 127 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "0r4fbkjqy1g9cmaa55rpbsphslcmlpzmag5w47kmq4hxz0ll68d2"; }) 128 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "015dadmlghkbvxz7d7m3fanrq2lqls094immxdv0laxl3smkg7pw"; }) 129 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "0gnnpxv0pnbrsx4zf28agwrgra7y3zm0z4lsr09i0wvrz97n65p7"; }) 130 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "136kjcl98n019764sy3pck9v4pmrz6q68qi8a2cdqm6hw7canc05"; }) 131 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "0ibrah9jzcs7i27z9alllg1d46dx0px0m3mgvnsg34zhbpqfbilp"; }) 132 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "0i4vmdgrvnr9fkmk2h88h1x37m4g4ksz7c24l585q6sg0343p0hp"; }) 133 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "0rpb7py9j40jqhi9ndfpvspdkrbl4vwqq8r6hva7kfjva61x9ky2"; }) 134 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "06jf5qv6ldsapbjd8g01pwm0yw20w7slpi9yrgxr8q2y0f9fqnhy"; }) 135 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "1mj8gzvnk5f16vchwc94bp6726m6n8j6bi9d3rzbly8k63xdnnv3"; }) 136 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "05491m5xzd6sbbpad6v7z1apkf00ip13sl23d9r2g5hv22i61qr9"; }) 137 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "1wsafi273xsh9q9cbfq123p33k2kgvrqz7hvkj4hlshl0dzlky7z"; }) 138 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "1661dn6v40g8yzwxdfskv0llvwf422zs5b5ndrhbs15cihh10axw"; }) 139 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "17dicgyc24x4krjy37j36cln0770cl52ihyyrg40n8l1b6q3hcdx"; }) 140 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "0pjhfxkzbgf0zxibrwrkzjhqz163qhczc476pzvd5fy9cxcdnkl5"; }) 141 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "145zkswksir8q0n83jw1kv2xsg5x4sf6w80hyynfjmpfhv7klmcw"; }) 142 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "1r473bl4g9xgn69q9jp1mfxrvllsg7a2z4lan7nv58anwsz1bfyl"; }) 143 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "1kcx09jsklbnjl6mhdarg0c2j84553q6zj9bs73n70idczzn6iyp"; }) 144 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "1g7vb2dba007aqw51k1ab962d63xh549zd3j9jsrnrmwpbk7yp58"; }) 145 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "0p2rv3n9pkv27q20jmps4xl29dmraqc1wgcyw78wm5pgz1717wr4"; }) 146 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "0153c9n7zx4cpxwa71yddgjpy021c98r7h2w6mxg4fqnb8hrk23b"; }) 147 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "199qscm2is4xrbhnvyjp0lb4wwgw71c436vfxn7g6qmq7c4y1cyz"; }) 148 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "1h5ndqz2djp21d3qj2rqcf41z7y6njb5gjflvhzgjgpqb2xmsqaz"; }) 149 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "0d10q75a645gdfk2krcwyhj3ncivmgbdkr1j7p7varl38ml1631i"; }) 150 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "1lb78gjg28r3s0wwjsz3hvannlhqafc5jf8aqlyfk6w92c7p9y3z"; }) 151 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "05nay2zf8fp2y2ki232pkgwb29119fkhhg3z5dgbqn44dpsk7x1h"; }) 152 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "14yn29p83il7jympnnl34srqcygvlzn797702vg1qfdjs18iy6j9"; }) 153 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "1d8z4yk06qcqzfhs1424bwvvpy07m4dafilgxl3qlnynfb2i4jzi"; }) 154 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "1np746181wn7mzf424qg4j68bs7nwr2iylq18hi1jcl2ysrdcfn3"; }) 155 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "1b4qb36sgqbp5mpfni3iz2qs2kvvj341xn6w2rncvjajvgl73mpx"; }) 156 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "19ha49v8wfn48v011jhrg9mlpalmb254rvkv409s4zj089612nfc"; }) 157 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "1g6raxhpx7vlwl68xcw4r0xjra95zcbwifnj95w21wzv0nndna91"; }) 158 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "1imhc4a3yb9q0cslp0mnsvrvjm152kmj8iiw58c9j8g8sypxcw5g"; }) 159 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "1ynn1apan8czndb4n8pdvday2jw6jc19zx8nsla8rv6m7q3vc23r"; }) 160 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; version = "6.0.8"; sha256 = "03xkg1yg2h4k2y774vc438ahs0mlrbgh0w7nxyzn15pvlp95yyc6"; }) 161 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHost"; version = "6.0.8"; sha256 = "0dgcnlsmjhqz8m2y8lpyd0s626pj48whb8fzsxv51l125acinsn7"; }) 162 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.8"; sha256 = "05xisaphkmpfx2w1irb7vhc0f2rfycxkicbyjhgmpqq9cbdxg09l"; }) 163 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.8"; sha256 = "1p5h36si87c461k854ky7hn5h5354mh9cprlkf6k814bhi4hjx7y"; }) 73 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; version = "6.0.9"; sha256 = "1grw9xypa4wlpqdjbgn73j4vlsz1xsrzil0pzb86r4902pcvvf37"; }) 74 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "6.0.9"; sha256 = "0xjhg58dzsqajl5y24rb4kwq87l6qplnffvr34bi2w94kw0s5kjc"; }) 75 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; version = "6.0.9"; sha256 = "1ycidvr1h7k3i1fijw8nfsvhrj3vqggyz82jykllmxwligx5fpm5"; }) 76 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; version = "6.0.9"; sha256 = "1imicpzyyr1dhiqqnx6klkqmi1jr56lfiqgjzwjbv49d1jjx1m1j"; }) 77 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "6.0.9"; sha256 = "1a2fw406dmffdl75046qc7z3rj76jbc74xgml7gis109i1s693pq"; }) 78 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "6.0.9"; sha256 = "10dmgv1rd4rac58xvhggkv2icq78ci0c8jfmnri3z32p14brlqwd"; }) 79 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm"; version = "6.0.9"; sha256 = "1z268bp615g4k9bq7hscq418i9k8f126lf8w60yq88rh0phslvyk"; }) 80 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; version = "6.0.9"; sha256 = "0j2wxpvdgvipzy2qbpil8rbxszbp8wwgr28n3gn2r23gnsbkqpwq"; }) 81 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; version = "6.0.9"; sha256 = "0w3mrb1c21w0ri2pi9pxrpazxm94pbh6glfknjbc45awalqc94xq"; }) 82 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; version = "6.0.9"; sha256 = "1ws4x3l82m3kdrmaj67g6s9cc6p03rkg0pfaj11k4vmin5xbn9c4"; }) 83 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "6.0.9"; sha256 = "16zdir94cacz2qrndspkyvwq7gp0cp20wdixkazfzxk8h5fhgbzw"; }) 84 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; version = "6.0.9"; sha256 = "12flsql4wzgq1pp6w2xdc0ar493s9znzx17fvk9kz9kpbiwfivlh"; }) 85 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "6.0.9"; sha256 = "0zhsvrydnhzxjmc2jjm95lzx93w8x4hh2wckcr8rpmvrlpr6gs9y"; }) 86 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm"; version = "6.0.9"; sha256 = "1lq8gdmkl1a68fr7ra74q4rlcc28fs0krsymhpiki5vch0jphjlw"; }) 87 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "6.0.9"; sha256 = "145viis984mdg29wdm21r13kd9dhiapjfxvm2wlvfdn617aymrkk"; }) 88 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; version = "6.0.9"; sha256 = "0ncw5kilaq3gl9smd4jy32z63kqaqagmxiii0hyp3ai3cg6zpwj3"; }) 89 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; version = "6.0.9"; sha256 = "1rxi40ikai558dgy8n9izgkl4xbvqgyyh4pf0865a5qg1hhbis4w"; }) 90 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "6.0.9"; sha256 = "07mkd56q2285izciy5dcc4y38dpl16xmpsz7401lg7drkwwkxxn9"; }) 91 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "6.0.9"; sha256 = "11nxvyf51c78hhjrjd9zmjb70nrp4iqg6gm2p30gsviii91y3gry"; }) 92 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm"; version = "6.0.9"; sha256 = "1l51bnw559mas6rza92wfdwksr59y105rpkjlhq2q2ymf3klys8z"; }) 93 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm64"; version = "6.0.9"; sha256 = "1iqs93klibsy08zw147zflajizkih1p748q3c37y9gp8glwqxcd5"; }) 94 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x64"; version = "6.0.9"; sha256 = "18cmj54f39albhmkpisrwvzdjv5hxc6bc8fjfcs4hh79clxhb6pk"; }) 95 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x86"; version = "6.0.9"; sha256 = "11zsyjn5smg797alfzzk0ilw5b8jiffsy9f734djpkpkykh4dvgy"; }) 96 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; version = "6.0.9"; sha256 = "0rn22v2hxr7a1rzbrwml9wbjh2s3356lm28ks4aqah9iaj607q27"; }) 97 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "6.0.9"; sha256 = "0jq73m9gzph7a91xgs9h683n2y552d1shhhr4h1ihiwm2nnwdkqm"; }) 98 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; version = "6.0.9"; sha256 = "13kk1k1011bi2fmzfrg4vhv480kbl7yc9zdk09d7660xxqavxgyc"; }) 99 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; version = "6.0.9"; sha256 = "1wrgdv2av0v4wpxw2fv8ryfaha8yg3yaf5zynz67pbb5r3yimkmd"; }) 100 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "6.0.9"; sha256 = "0bzfymrni9vibimpi85pggz3d0k625dl35sigjmn0lgpn2w53f01"; }) 101 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "6.0.9"; sha256 = "0ggh4iargpjsgjjcisi4bgfqlv9h3gkwff14cfw34lnficqykm8p"; }) 102 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm"; version = "6.0.9"; sha256 = "089bpm0yh0n59a4fn6abbwc4c6imgr9msrscbjaqas8v5amisg6y"; }) 103 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; version = "6.0.9"; sha256 = "0hmb4ysplch0lms8s2v2hs9lh3gk3pidvpv0h2qxbbfq2qwhjz7r"; }) 104 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x64"; version = "6.0.9"; sha256 = "0yka0ymd36qksgrl94m300yiy803daf4vr1lns06ybr39dlgwvan"; }) 105 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x86"; version = "6.0.9"; sha256 = "15kw84wvy0g6q16293yj4blr0i1yvj1w7rgq9fqxgfmjgakrqg0z"; }) 106 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "1gfl347dxcfc0y4a5a171cn040pb6llvg9vxpgab4l33asgph5gb"; }) 107 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "0qf05pl6b5xgcwk42cph9baxqmfim6kzxxck4imh645js0bhkl6r"; }) 108 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "0a6c83s7lr7vrw170cigxw83ffxjsnzgxc652ig73pbi0y4p7d9g"; }) 109 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "0mhbsh4p118nwja0v5di1la7h49hjws6nnvjd799cp65ybqap986"; }) 110 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "1ncc1x9paky7380z4djzx8i881ks56izkfb10pzigb2azm87knhs"; }) 111 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "1ywscs59f0qvmy9w5ls1dkqzk5lg0a5p0nvhlzkxc4zmwr65vq5n"; }) 112 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "0qj4ns9f8yf5wk4h0n6dnz3banix1jhgn3bd57x62cghfpwr7jn9"; }) 113 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "1g7mvb5js3kdcmylnn22z9vcvwndzrqps23klnz7cjs207pldhw6"; }) 114 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "172pxzsxr0x4nvyslm4gh6ar4mhy85fd9bmwqqja9k395rc9vh48"; }) 115 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "1zwlc5y7zis93jzyixpgnhx1cjxi76mawxvcwcf215shrq80i5r8"; }) 116 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "04hxa7924vaabqiw2imwn4d4jbxxyg950wpss420g6jxshv19zcy"; }) 117 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "0srwj2xgxi0w8hfgpfbqjrsm79kghb9x6fkkfwqjxsa7v95jh4bc"; }) 118 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "0b45wvpidp5zcchn5qspdqc9b60ivj67ic2a210px8vf57973a3b"; }) 119 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "0jhflmmih4dhazyd7dqqiy207i3d153080hdy5bqqs21zl5ipc5v"; }) 120 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "04dpv282hibxlq23g75sji7f9k4w4z64azl8j399ny4l409vw339"; }) 121 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "11b4p88jbx5amzb3y04yziq3wmrm9kqzhwmrhlsw0n8aa0fwc633"; }) 122 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "1cxrww0m61l883jmrjx5f6kgmk75p0jf4dwv8jkb5jnpq5lncjwk"; }) 123 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "03wgcvxyrm6hk5z8m87m1n0idgsyv54lsgbk8iz4qiww89r8xq61"; }) 124 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "1b4b3751jjh87g62w6fkrpfk3h92wh6927lwi0k2yxgdsbvadabv"; }) 125 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "1vk22ff2jhaf3di1p2pkz0il1knl3hpfyhqw10b9mpxg3pk4ap3p"; }) 126 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "09q38lwkx53fdl09ariv1d14md4brib9f0azah0bqhldkrjk92kv"; }) 127 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "1mxi37xq6ghafg174x527xsv8l6r9cvrpskkf9h9lhk4lr9y2z67"; }) 128 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "0cyddk0ylsa48xwjhi5cy498ys9y92r8kad1x7kqb0qkrzkjpzvv"; }) 129 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "1jvilnvibx13hnkygfgkgkn3r1n549f67qzyg6z6ycd3cp8l915q"; }) 130 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "1cb29wz495fwrbm7kwg8h4cmblsaqjff4f7kzmhw6qin56bvcw6r"; }) 131 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "1q8fnyl6yzgjb1pmilgj0hnwkg482py7avpsfc7fsvygpk8izipz"; }) 132 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "04az20nar6n43vrg131ppwnwzgij8781lb9wb113af5q323j94xk"; }) 133 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "1h5hk3mfz730960hj86v6f1sqwb1kg2pfnp14l42cfdhjjs20zlv"; }) 134 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "14xm25ynrjymrp2xmmblv523zsgggn35qzl88qcs4gbvp2j25hn8"; }) 135 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "1kz2shcfhhy9aswzja1hk4lyrvicfppzkz4ggbn32vsbxlfaxyzx"; }) 136 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "1a6k4gww8752pll4jz0wing1sqsplp9w0jxl5s5mfwj3p0laywly"; }) 137 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "0kkbb6dxwgjnaazvhs81qbp6g0bc6w11mmrbx7cz65ps1hks1gl9"; }) 138 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "1kzvyncbqdn9vn6lbvqzw1i3fzzdbj5xp5yzasdf843qi60vzv37"; }) 139 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "12dxp96s115xrhh18q7bf5r2rk1d485dqcbiwfhqi9xcbs11hlqg"; }) 140 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "1b6hzkn9pflbdr2lzrmdqpw93g23817ga5g4zbjdz05rd2ar2j95"; }) 141 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "06va78yd32rhrylmy7hfkf6a92zaj9vkn3kmqzzzzisjzzrwws2d"; }) 142 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "0k7kyqdm2mlb2w7q5fpzj3sc20dqc1yc3bdzgx0qy5sfp3n2qdkq"; }) 143 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "1dcc9kf1abkdcq7n09s1vjyl39kbnpi8cqgmnhkhzlzh3l3xgvaa"; }) 144 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "15zlpkf4ms616whp251q387fwabfmbvcxkhnx8m1jvfjc40smm0k"; }) 145 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "1i2fzw6d8kpn8jrl0zmz0l6sxyaahs15f97xymkhv9xfj7w87ipr"; }) 146 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "0dyrizlh0vyvjjrjzn7p4wqzsr7360ppizifjl4y3fjxsixc7r76"; }) 147 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "1jsn0nadpnnlhn7y3s8zrkkm6fl1fsl4xxcf157m483qlswmlf9j"; }) 148 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "114a4y1xn6n0qwn9ssz510yq634liw5nkzyg8qqwka3d61g9vxap"; }) 149 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "0qvhh2qzj0676vcbls6pmx0yydlm2fyb4pr1393siag7rn59ivhr"; }) 150 + (fetchNuGet { pname = "Microsoft.NETCore.App.Composite"; version = "6.0.9"; sha256 = "1wll6y5jg3f24pf6zs2aygmnz2lc71436svfqn6kxrfk6v3c32zq"; }) 151 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; version = "6.0.9"; sha256 = "1kxql8yzi47prsl0ymjgyplfkxdfv1a048wghi7mc94zzjapz67w"; }) 152 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "6.0.9"; sha256 = "1mf7xgjqn2d4pcvdy6g1igihygfjlplmfr2c88y8vq75l42bj641"; }) 153 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; version = "6.0.9"; sha256 = "0djmb6i7jn9qgc9cv52c3jvkzqhm7688xcj9wb19594dcrdmrq9y"; }) 154 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "6.0.9"; sha256 = "1ia7g6rx6jka54c0b5bvy45yr0nfs0cd64vwq1hkd5fq4wq0pmsc"; }) 155 + (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "6.0.9"; sha256 = "0mrpvpvyxvkbk3q2ngs5ls3j4nq0pr2zhd0vls9bcv2sysby8yw0"; }) 156 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm"; version = "6.0.9"; sha256 = "0p8a9001f9bv85k4fm76skc1zam4k1damxk8k8cyrg11m3p1m4zp"; }) 157 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm64"; version = "6.0.9"; sha256 = "04fndyh42irxgxk99y6bvay415ikb63xr0hqjsg1l2ympzv0n19f"; }) 158 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64"; version = "6.0.9"; sha256 = "1d7alkqfbh58jdj1m9r99ppf5bm8br40a8xqd6p64mj88iwmz2i5"; }) 159 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-x64"; version = "6.0.9"; sha256 = "0bqr8sgd7d1lwyyyclrpyi4p0d5nm7jk4hkapna142mxl1gckc8r"; }) 160 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-arm64"; version = "6.0.9"; sha256 = "0cp47v4xjyjfwmm2r6spgiys60qsjkah9pf4ynl02jhyfncv4rdp"; }) 161 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-x64"; version = "6.0.9"; sha256 = "06xi0hknlpwbxkdr8rj3paw5gigyp16m8r4w9ghwgdzigszwfcb2"; }) 162 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x64"; version = "6.0.9"; sha256 = "1sp1zwld1kdcaax177laqfdgc8yma54w1k84xnjxrb8w2qkyw1wr"; }) 163 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x86"; version = "6.0.9"; sha256 = "1didb5656m40g0h42ldw4qzwzvnfxsgyp90qlm8z2f4xjr2z2vvk"; }) 164 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "1lk2afw5x6dyfj88jk5a7iwnf5p1g2zs1xp9vbgqqcfw64lxw04s"; }) 165 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "0n87srqrh1xrlj9xz1q7fb6l1yzvcbajy5p6906iasvshyrj90aq"; }) 166 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "1jksa2j7v33lj0rdpcrmj4ibjafs7qm60knfxxa7xsp4zvqyhwx0"; }) 167 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "0qdrx14chj6yx78cn2zxxfp9qs90alqb718z4y9ca1ix49wld8kh"; }) 168 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.9"; sha256 = "0afrgd5l531jlgf3s93cqxphiirnifiw6rlqp3zaz3ijxwlikzkz"; }) 169 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.9"; sha256 = "1gb4cr6f8ridwg8krh6fd6lygl7d3kcv5a3jda47ppvwi1kc6i4m"; }) 170 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.9"; sha256 = "1yqmq0raafi7i8s8v3mjwdl45gxfs3gb6dm2cb4n19w2jihrn7nl"; }) 171 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.9"; sha256 = "09pr6llr1zy9l74lhrla7aa1mxw444qn817kxkwrfqdj0nq0aqx3"; }) 164 172 ]; 165 173 }; 166 174 }
+34
pkgs/development/compilers/hvm/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchCrate 4 + , pkg-config 5 + , openssl 6 + , stdenv 7 + , Security 8 + }: 9 + 10 + rustPlatform.buildRustPackage rec { 11 + pname = "hvm"; 12 + version = "0.1.88"; 13 + 14 + src = fetchCrate { 15 + inherit pname version; 16 + sha256 = "sha256-VnVyTUOtoplt0Zd5VkCe/h85/Mqcz7lgeIiZVD+Vrxk="; 17 + }; 18 + 19 + cargoSha256 = "sha256-4D63OEz7/2pJGPXiFEwl6ggaV2DNZcoN//BM7H0Sp7I="; 20 + 21 + nativeBuildInputs = [ pkg-config ]; 22 + 23 + buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security; 24 + 25 + # memory allocation of 34359738368 bytes failed 26 + doCheck = false; 27 + 28 + meta = with lib; { 29 + description = "A pure functional compile target that is lazy, non-garbage-collected, and parallel"; 30 + homepage = "https://github.com/kindelia/hvm"; 31 + license = licenses.mit; 32 + maintainers = with maintainers; [ figsoda ]; 33 + }; 34 + }
+3
pkgs/development/interpreters/spidermonkey/common.nix
··· 75 75 url = "https://hg.mozilla.org/releases/mozilla-esr102/raw-rev/1fa20fb474f5d149cc32d98df169dee5e6e6861b"; 76 76 sha256 = "sha256-eCisKjNxy9SLr9KoEE2UB26BflUknnR7PIvnpezsZeA="; 77 77 }) 78 + ] ++ lib.optionals (lib.versionAtLeast version "91" && stdenv.hostPlatform.system == "i686-linux") [ 79 + # Fixes i686 build, https://bugzilla.mozilla.org/show_bug.cgi?id=1729459 80 + ./fix-float-i686.patch 78 81 ]; 79 82 80 83 nativeBuildInputs = [
+16
pkgs/development/interpreters/spidermonkey/fix-float-i686.patch
··· 1 + diff --git a/modules/fdlibm/src/math_private.h b/modules/fdlibm/src/math_private.h 2 + index 51d79f9c2ec59..fafd7d6fc1e0d 100644 3 + --- a/modules/fdlibm/src/math_private.h 4 + +++ b/modules/fdlibm/src/math_private.h 5 + @@ -30,5 +30,9 @@ 6 + * Adapted from https://github.com/freebsd/freebsd-src/search?q=__double_t 7 + */ 8 + 9 + +#if defined __FLT_EVAL_METHOD__ && (__FLT_EVAL_METHOD__ == 2) 10 + +typedef long double __double_t; 11 + +#else 12 + typedef double __double_t; 13 + +#endif 14 + typedef __double_t double_t; 15 + 16 + /*
+3 -3
pkgs/development/node-packages/node-packages.nix
··· 120356 120356 pnpm = nodeEnv.buildNodePackage { 120357 120357 name = "pnpm"; 120358 120358 packageName = "pnpm"; 120359 - version = "7.12.0"; 120359 + version = "7.12.2"; 120360 120360 src = fetchurl { 120361 - url = "https://registry.npmjs.org/pnpm/-/pnpm-7.12.0.tgz"; 120362 - sha512 = "Zc38WaMNkomazbIFl5nq2TR1e97R4iG+G7f9QKUL+YHbHOnkOYV3UuR45xYPhhpn1ArLfTpxjxmRu1H3gn6SPw=="; 120361 + url = "https://registry.npmjs.org/pnpm/-/pnpm-7.12.2.tgz"; 120362 + sha512 = "8QvnKANKN+YZXDmVYGI7zRJysdKldZI+w3AYnxu9IwtnLv1x6WuzrJr0nxMcTeuUAT908RjDqK+/6KJB9wNqxA=="; 120363 120363 }; 120364 120364 buildInputs = globalBuildInputs; 120365 120365 meta = {
+54
pkgs/development/python-modules/energyflow/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , h5py 5 + , numpy 6 + , six 7 + , wasserstein 8 + , pytestCheckHook 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "EnergyFlow"; 13 + version = "1.3.2"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "pkomiske"; 17 + repo = pname; 18 + rev = "v${version}"; 19 + hash = "sha256-fjT8c0ZTjdufP334upPzRVdTJDIBs84I7PkFu4CMcQw="; 20 + }; 21 + 22 + postPatch = '' 23 + substituteInPlace setup.cfg \ 24 + --replace "setup_requires=" "" \ 25 + --replace "pytest-runner" "" 26 + ''; 27 + 28 + propagatedBuildInputs = [ 29 + h5py 30 + numpy 31 + six 32 + wasserstein 33 + ]; 34 + 35 + checkInputs = [ 36 + pytestCheckHook 37 + ]; 38 + pytestFlagsArray = [ 39 + "energyflow/tests" 40 + ]; 41 + disabledTestPaths = [ 42 + "energyflow/tests/test_archs.py" # requires tensorflow 43 + "energyflow/tests/test_emd.py" # requires "ot" 44 + ]; 45 + 46 + pythonImportsCheck = [ "energyflow" ]; 47 + 48 + meta = with lib; { 49 + description = "Python package for the EnergyFlow suite of tools"; 50 + homepage = "https://energyflow.network/"; 51 + license = licenses.gpl3Only; 52 + maintainers = with maintainers; [ veprbl ]; 53 + }; 54 + }
+50
pkgs/development/python-modules/wasserstein/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , numpy 5 + , llvmPackages 6 + , wurlitzer 7 + , pytestCheckHook 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "Wasserstein"; 12 + version = "1.1.0"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "pkomiske"; 16 + repo = pname; 17 + rev = "89c2d6279a7e0aa3b56bcc8fb7b6009420f2563e"; # https://github.com/pkomiske/Wasserstein/issues/1 18 + hash = "sha256-s9en6XwvO/WPsF7/+SEmGePHZQgl7zLgu5sEn4nD9YE="; 19 + }; 20 + 21 + buildInputs = [ 22 + llvmPackages.openmp 23 + ]; 24 + propagatedBuildInputs = [ 25 + numpy 26 + wurlitzer 27 + ]; 28 + 29 + checkInputs = [ 30 + pytestCheckHook 31 + ]; 32 + pytestFlagsArray = [ 33 + "wasserstein/tests" 34 + ]; 35 + disabledTestPaths = [ 36 + "wasserstein/tests/test_emd.py" # requires "ot" 37 + # cyclic dependency on energyflow 38 + "wasserstein/tests/test_externalemdhandler.py" 39 + "wasserstein/tests/test_pairwiseemd.py" 40 + ]; 41 + 42 + pythonImportsCheck = [ "wasserstein" ]; 43 + 44 + meta = with lib; { 45 + description = "Python/C++ library for computing Wasserstein distances efficiently"; 46 + homepage = "https://github.com/pkomiske/Wasserstein"; 47 + license = licenses.gpl3Only; 48 + maintainers = with maintainers; [ veprbl ]; 49 + }; 50 + }
+2 -2
pkgs/development/tools/analysis/checkstyle/default.nix
··· 1 1 { lib, stdenv, fetchurl, makeWrapper, jre }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "10.3.3"; 4 + version = "10.3.4"; 5 5 pname = "checkstyle"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; 9 - sha256 = "sha256-J4Ty6nblCylRfyHcxqDXJ6LAh2g7+cD+uNorW1EmwYc="; 9 + sha256 = "sha256-HOKEbBU2jo7AJmSMVG2j1yM4VfcdN+Tl/MiazxtKYHw="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/development/tools/convco/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "convco"; 14 - version = "0.3.11"; 14 + version = "0.3.12"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "convco"; 18 18 repo = pname; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-v/0NtJYprd8YxwSdeH4v7mY0v3vElDx2PNIIUKsczW8="; 20 + sha256 = "sha256-FGNMpBd2tgkJBbvgjgOYlLkAa8NqFUwa7rPp9jaWcio="; 21 21 }; 22 22 23 - cargoSha256 = "sha256-Zh/Aiuu1Mx2osscSG0E1MTGKCVsYtL66FUnew6OCyZ4="; 23 + cargoSha256 = "sha256-trlMO9+zf1+1cZu2jAzflB737ZT1lO/s1ekE5mGVo5Y="; 24 24 25 25 nativeBuildInputs = [ cmake pkg-config ]; 26 26
+23
pkgs/development/tools/dum/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "dum"; 5 + version = "0.1.19"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "egoist"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "0rnm59zhpaa8nbbh6rh53svnlb484q1k6s4wc4w9516b18xhmkca"; 12 + }; 13 + 14 + cargoSha256 = "sha256-aMx4xfWYiiz5TY/CVCogZ3WNR6md77jb8RKhhVwqeto="; 15 + 16 + meta = with lib; { 17 + description = "An npm scripts runner written in Rust"; 18 + homepage = "https://github.com/egoist/dum"; 19 + changelog = "https://github.com/egoist/dum/blob/v${version}/CHANGELOG.md"; 20 + license = licenses.mit; 21 + maintainers = with maintainers; [ figsoda ]; 22 + }; 23 + }
+2 -2
pkgs/development/tools/faas-cli/default.nix
··· 18 18 in 19 19 buildGoModule rec { 20 20 pname = "faas-cli"; 21 - version = "0.14.7"; 21 + version = "0.14.8"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "openfaas"; 25 25 repo = "faas-cli"; 26 26 rev = version; 27 - sha256 = "sha256-iUS8bhTZc7oy7qy0ydmbVW3BNa/lZ2Q+kYefBKrNRyc="; 27 + sha256 = "sha256-sdvApbsVgs5+pd/gVdkWbBk4eWojbqYbXXIjdbJXwGs="; 28 28 }; 29 29 30 30 vendorSha256 = null;
+2 -2
pkgs/os-specific/linux/kernel/linux-4.14.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.14.293"; 6 + version = "4.14.294"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "047gl9nqrvpi9jaxlmhfnx848qvnrhf13710ka8fwn3lyv22k342"; 16 + sha256 = "069i11hv4fhwc9dirqbag1g1k3fn21wzpfggah4f1a41whf98apy"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.19.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.19.258"; 6 + version = "4.19.259"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "002sw8b272dzkp3vff0x89sbj5p3vrrikqygfdgrsxv7k3w4459x"; 16 + sha256 = "1ska6v95zjjj44h53gi34rnbsrm4507jwxi3kklnky6d0aykiy1z"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.9.nix
··· 1 1 { buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args: 2 2 3 3 buildLinux (args // rec { 4 - version = "4.9.328"; 4 + version = "4.9.329"; 5 5 extraMeta.branch = "4.9"; 6 6 extraMeta.broken = stdenv.isAarch64; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 10 - sha256 = "1px2np3k796cjwq1sp9gfxyql6hqyqya82vq9cb5y0canq6fqmg8"; 10 + sha256 = "168hy7vhgw2sfknflhhf6ykhkp4xs8v0igii6ivjlvs3dmwm21sj"; 11 11 }; 12 12 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.10.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.10.143"; 6 + version = "5.10.145"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "14af0lsvgh1k0fh283d0nrm1pkrk2kaf2mz0ab59vlvjybg9wb7s"; 16 + sha256 = "0qdcqmwvc70hfgj8hb8ccwmnvwl41dvdffqrmyg3cyblwprr0ngw"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.15.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.15.68"; 6 + version = "5.15.70"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0zlb44bwpc0hwfynzz5v5b3lkv4aha7w5737ns1qb8cvbk5v7fqp"; 16 + sha256 = "0xhdjz7aqq13pkh1yr7ax3msqdb2xvrcpj464wibn1rl4pq2cz0s"; 17 17 }; 18 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.19.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.19.9"; 6 + version = "5.19.11"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0dvzjbyknzlx4ndz77fsm6v28fj2chxbq1z85fbc3bckcscbbm8a"; 16 + sha256 = "0wyrwdqm4dypx2jbb7d8c3b7fl7q5j434d6g9x2v6sw01gwx4m2m"; 17 17 }; 18 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.4.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.4.213"; 6 + version = "5.4.214"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "1wdssqmac66zqsnq5lx2z8ampa0rd3qswg0gm1sh6n3y8xlf2z76"; 16 + sha256 = "1ny57g5agk8sq6cbp2crjiay5bfkwqy32i4a5yw7x0lch2s7kg4s"; 17 17 }; 18 18 } // (args.argsOverride or {}))
-25
pkgs/servers/matrix-synapse/matrix-appservice-irc/default.nix
··· 7 7 }; 8 8 version = (lib.importJSON ./package.json).version; 9 9 srcInfo = lib.importJSON ./src.json; 10 - 11 - # TODO: package matrix-rust-sdk and use that instead of fetching & patching binaries 12 - platform = { 13 - "x86_64-linux" = "linux-x64-gnu"; 14 - "aarch64-linux" = "linux-arm64-gnu"; 15 - }.${stdenv.hostPlatform.system} or 16 - (throw "matrix-appservice-irc: Unsupported platform ${stdenv.hostPlatform.system}"); 17 - 18 - matrix-sdk-crypto = let 19 - version = "0.1.0-beta.1"; 20 - base = "https://github.com/matrix-org/matrix-rust-sdk/releases/download/matrix-sdk-crypto-nodejs-v${version}"; 21 - in 22 - fetchurl { 23 - url = "${base}/matrix-sdk-crypto.${platform}.node"; 24 - hash = { 25 - "x86_64-linux" = "sha256-a6FX+KhHooipIMsJ7Fl7gmUBt8WbTUgT6sXN4N3NXRk="; 26 - "aarch64-linux" = "sha256-jvr6gMTQ4aAk5x0iXpA28ADdaCgDpvOjmogd52Z6bIY="; 27 - }.${stdenv.hostPlatform.system} or 28 - (throw "matrix-appservice-irc: Unsupported platform ${stdenv.hostPlatform.system}"); 29 - }; 30 10 in 31 11 ourNodePackages.package.override { 32 12 pname = "matrix-appservice-irc"; ··· 46 26 postInstall = '' 47 27 makeWrapper '${nodejs}/bin/node' "$out/bin/matrix-appservice-irc" \ 48 28 --add-flags "$out/lib/node_modules/matrix-appservice-irc/app.js" 49 - 50 - # install the native bindings for matrix-sdk-crypto 51 - export CRYPTO_SDK_PATH="$out/lib/node_modules/matrix-appservice-irc/node_modules/@matrix-org/matrix-sdk-crypto-nodejs/matrix-sdk-crypto.${platform}.node" 52 - cp -v ${matrix-sdk-crypto} "$CRYPTO_SDK_PATH" 53 - autoPatchelf "$CRYPTO_SDK_PATH" 54 29 ''; 55 30 56 31 passthru.tests.matrix-appservice-irc = nixosTests.matrix-appservice-irc;
+386 -168
pkgs/servers/matrix-synapse/matrix-appservice-irc/node-packages.nix
··· 355 355 sha512 = "oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g=="; 356 356 }; 357 357 }; 358 - "@matrix-org/matrix-sdk-crypto-nodejs-0.1.0-beta.1" = { 359 - name = "_at_matrix-org_slash_matrix-sdk-crypto-nodejs"; 360 - packageName = "@matrix-org/matrix-sdk-crypto-nodejs"; 361 - version = "0.1.0-beta.1"; 358 + "@matrix-org/olm-https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.4.tgz" = { 359 + name = "_at_matrix-org_slash_olm"; 360 + packageName = "@matrix-org/olm"; 361 + version = 1; 362 362 src = fetchurl { 363 - url = "https://registry.npmjs.org/@matrix-org/matrix-sdk-crypto-nodejs/-/matrix-sdk-crypto-nodejs-0.1.0-beta.1.tgz"; 364 - sha512 = "jCSKrmNh6kaqnOwS/Pqgqkeb+CAvwGuS0oNEW3LaWKrJWFAfUrt+lXBCs7kAP79Qo5ZKBU06BekbZuwYhWbhkQ=="; 363 + name = "olm-1.tar.gz"; 364 + url = "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.4.tgz"; 365 + sha512 = "ddaXWILlm1U0Z9qpcZffJjBFZRpz/GxQ1n/Qth3xKvYRUbniuPOgftNTDaxkEC4h04uJG5Ls/OdI1YJUyfuRzQ=="; 365 366 }; 366 367 }; 367 368 "@nodelib/fs.scandir-2.1.5" = { ··· 389 390 src = fetchurl { 390 391 url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"; 391 392 sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 392 - }; 393 - }; 394 - "@selderee/plugin-htmlparser2-0.6.0" = { 395 - name = "_at_selderee_slash_plugin-htmlparser2"; 396 - packageName = "@selderee/plugin-htmlparser2"; 397 - version = "0.6.0"; 398 - src = fetchurl { 399 - url = "https://registry.npmjs.org/@selderee/plugin-htmlparser2/-/plugin-htmlparser2-0.6.0.tgz"; 400 - sha512 = "J3jpy002TyBjd4N/p6s+s90eX42H2eRhK3SbsZuvTDv977/E8p2U3zikdiehyJja66do7FlxLomZLPlvl2/xaA=="; 401 393 }; 402 394 }; 403 395 "@sentry/core-6.19.7" = { ··· 913 905 sha512 = "iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ=="; 914 906 }; 915 907 }; 916 - "async-lock-1.3.2" = { 917 - name = "async-lock"; 918 - packageName = "async-lock"; 919 - version = "1.3.2"; 920 - src = fetchurl { 921 - url = "https://registry.npmjs.org/async-lock/-/async-lock-1.3.2.tgz"; 922 - sha512 = "phnXdS3RP7PPcmP6NWWzWMU0sLTeyvtZCxBPpZdkYE3seGLKSQZs9FrmVO/qwypq98FUtWWUEYxziLkdGk5nnA=="; 923 - }; 924 - }; 925 908 "asynckit-0.4.0" = { 926 909 name = "asynckit"; 927 910 packageName = "asynckit"; ··· 949 932 sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 950 933 }; 951 934 }; 935 + "axios-0.23.0" = { 936 + name = "axios"; 937 + packageName = "axios"; 938 + version = "0.23.0"; 939 + src = fetchurl { 940 + url = "https://registry.npmjs.org/axios/-/axios-0.23.0.tgz"; 941 + sha512 = "NmvAE4i0YAv5cKq8zlDoPd1VLKAqX5oLuZKs8xkJa4qi6RGn0uhCYFjWtHHC9EM/MwOwYWOs53W+V0aqEXq1sg=="; 942 + }; 943 + }; 952 944 "balanced-match-1.0.2" = { 953 945 name = "balanced-match"; 954 946 packageName = "balanced-match"; ··· 967 959 sha512 = "H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ=="; 968 960 }; 969 961 }; 962 + "base64-js-1.5.1" = { 963 + name = "base64-js"; 964 + packageName = "base64-js"; 965 + version = "1.5.1"; 966 + src = fetchurl { 967 + url = "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"; 968 + sha512 = "AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="; 969 + }; 970 + }; 970 971 "basic-auth-2.0.1" = { 971 972 name = "basic-auth"; 972 973 packageName = "basic-auth"; ··· 983 984 src = fetchurl { 984 985 url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; 985 986 sha512 = "qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w=="; 987 + }; 988 + }; 989 + "better-sqlite3-7.6.2" = { 990 + name = "better-sqlite3"; 991 + packageName = "better-sqlite3"; 992 + version = "7.6.2"; 993 + src = fetchurl { 994 + url = "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-7.6.2.tgz"; 995 + sha512 = "S5zIU1Hink2AH4xPsN0W43T1/AJ5jrPh7Oy07ocuW/AKYYY02GWzz9NH0nbSMn/gw6fDZ5jZ1QsHt1BXAwJ6Lg=="; 986 996 }; 987 997 }; 988 998 "binary-search-tree-0.2.5" = { ··· 994 1004 sha512 = "CvNVKS6iXagL1uGwLagSXz1hzSMezxOuGnFi5FHGKqaTO3nPPWrAbyALUzK640j+xOTVm7lzD9YP8W1f/gvUdw=="; 995 1005 }; 996 1006 }; 1007 + "bindings-1.5.0" = { 1008 + name = "bindings"; 1009 + packageName = "bindings"; 1010 + version = "1.5.0"; 1011 + src = fetchurl { 1012 + url = "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz"; 1013 + sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="; 1014 + }; 1015 + }; 997 1016 "bintrees-1.0.2" = { 998 1017 name = "bintrees"; 999 1018 packageName = "bintrees"; ··· 1003 1022 sha512 = "VOMgTMwjAaUG580SXn3LacVgjurrbMme7ZZNYGSSV7mmtY6QQRh0Eg3pwIcntQ77DErK1L0NxkbetjcoXzVwKw=="; 1004 1023 }; 1005 1024 }; 1025 + "bl-4.1.0" = { 1026 + name = "bl"; 1027 + packageName = "bl"; 1028 + version = "4.1.0"; 1029 + src = fetchurl { 1030 + url = "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"; 1031 + sha512 = "1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="; 1032 + }; 1033 + }; 1006 1034 "bluebird-3.7.2" = { 1007 1035 name = "bluebird"; 1008 1036 packageName = "bluebird"; ··· 1064 1092 src = fetchurl { 1065 1093 url = "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz"; 1066 1094 sha512 = "Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw=="; 1095 + }; 1096 + }; 1097 + "buffer-5.7.1" = { 1098 + name = "buffer"; 1099 + packageName = "buffer"; 1100 + version = "5.7.1"; 1101 + src = fetchurl { 1102 + url = "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"; 1103 + sha512 = "EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="; 1067 1104 }; 1068 1105 }; 1069 1106 "buffer-writer-2.0.0" = { ··· 1165 1202 sha512 = "NpwMDdSIprbYx1CLnfbxEIarI0Z+s9MssEgggMNheGM+WD68yOhV7IEA/3r6tr0yTRgQD0HuZJDw32s99i6L+A=="; 1166 1203 }; 1167 1204 }; 1205 + "chownr-1.1.4" = { 1206 + name = "chownr"; 1207 + packageName = "chownr"; 1208 + version = "1.1.4"; 1209 + src = fetchurl { 1210 + url = "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz"; 1211 + sha512 = "jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="; 1212 + }; 1213 + }; 1168 1214 "clean-stack-2.2.0" = { 1169 1215 name = "clean-stack"; 1170 1216 packageName = "clean-stack"; ··· 1253 1299 src = fetchurl { 1254 1300 url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"; 1255 1301 sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; 1256 - }; 1257 - }; 1258 - "commander-2.20.3" = { 1259 - name = "commander"; 1260 - packageName = "commander"; 1261 - version = "2.20.3"; 1262 - src = fetchurl { 1263 - url = "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"; 1264 - sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; 1265 1302 }; 1266 1303 }; 1267 1304 "commondir-1.0.1" = { ··· 1390 1427 sha512 = "z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="; 1391 1428 }; 1392 1429 }; 1430 + "decompress-response-6.0.0" = { 1431 + name = "decompress-response"; 1432 + packageName = "decompress-response"; 1433 + version = "6.0.0"; 1434 + src = fetchurl { 1435 + url = "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz"; 1436 + sha512 = "aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ=="; 1437 + }; 1438 + }; 1439 + "deep-extend-0.6.0" = { 1440 + name = "deep-extend"; 1441 + packageName = "deep-extend"; 1442 + version = "0.6.0"; 1443 + src = fetchurl { 1444 + url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz"; 1445 + sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="; 1446 + }; 1447 + }; 1393 1448 "deep-is-0.1.4" = { 1394 1449 name = "deep-is"; 1395 1450 packageName = "deep-is"; ··· 1444 1499 sha512 = "2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="; 1445 1500 }; 1446 1501 }; 1502 + "detect-libc-2.0.1" = { 1503 + name = "detect-libc"; 1504 + packageName = "detect-libc"; 1505 + version = "2.0.1"; 1506 + src = fetchurl { 1507 + url = "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz"; 1508 + sha512 = "463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w=="; 1509 + }; 1510 + }; 1447 1511 "diff-5.1.0" = { 1448 1512 name = "diff"; 1449 1513 packageName = "diff"; ··· 1460 1524 src = fetchurl { 1461 1525 url = "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"; 1462 1526 sha512 = "WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="; 1463 - }; 1464 - }; 1465 - "discontinuous-range-1.0.0" = { 1466 - name = "discontinuous-range"; 1467 - packageName = "discontinuous-range"; 1468 - version = "1.0.0"; 1469 - src = fetchurl { 1470 - url = "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz"; 1471 - sha512 = "c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ=="; 1472 1527 }; 1473 1528 }; 1474 1529 "doctrine-3.0.0" = { ··· 1579 1634 sha512 = "TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="; 1580 1635 }; 1581 1636 }; 1637 + "end-of-stream-1.4.4" = { 1638 + name = "end-of-stream"; 1639 + packageName = "end-of-stream"; 1640 + version = "1.4.4"; 1641 + src = fetchurl { 1642 + url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"; 1643 + sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; 1644 + }; 1645 + }; 1582 1646 "entities-2.2.0" = { 1583 1647 name = "entities"; 1584 1648 packageName = "entities"; ··· 1768 1832 sha512 = "8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="; 1769 1833 }; 1770 1834 }; 1835 + "expand-template-2.0.3" = { 1836 + name = "expand-template"; 1837 + packageName = "expand-template"; 1838 + version = "2.0.3"; 1839 + src = fetchurl { 1840 + url = "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz"; 1841 + sha512 = "XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg=="; 1842 + }; 1843 + }; 1771 1844 "express-4.18.1" = { 1772 1845 name = "express"; 1773 1846 packageName = "express"; ··· 1775 1848 src = fetchurl { 1776 1849 url = "https://registry.npmjs.org/express/-/express-4.18.1.tgz"; 1777 1850 sha512 = "zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q=="; 1851 + }; 1852 + }; 1853 + "express-rate-limit-6.6.0" = { 1854 + name = "express-rate-limit"; 1855 + packageName = "express-rate-limit"; 1856 + version = "6.6.0"; 1857 + src = fetchurl { 1858 + url = "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-6.6.0.tgz"; 1859 + sha512 = "HFN2+4ZGdkQOS8Qli4z6knmJFnw6lZed67o6b7RGplWeb1Z0s8VXaj3dUgPIdm9hrhZXTRpCTHXA0/2Eqex0vA=="; 1778 1860 }; 1779 1861 }; 1780 1862 "extend-3.0.2" = { ··· 1867 1949 sha512 = "u+dBid4PvZw17PmDeRcNOtCP9CCK/9lRN2w+r1xIS7yOL9JFrIBKTvrYsxT4P0pGtThYTn++QS5ChHaUov3+zQ=="; 1868 1950 }; 1869 1951 }; 1952 + "file-uri-to-path-1.0.0" = { 1953 + name = "file-uri-to-path"; 1954 + packageName = "file-uri-to-path"; 1955 + version = "1.0.0"; 1956 + src = fetchurl { 1957 + url = "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz"; 1958 + sha512 = "0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw=="; 1959 + }; 1960 + }; 1870 1961 "fill-keys-1.0.2" = { 1871 1962 name = "fill-keys"; 1872 1963 packageName = "fill-keys"; ··· 1948 2039 sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="; 1949 2040 }; 1950 2041 }; 2042 + "follow-redirects-1.15.2" = { 2043 + name = "follow-redirects"; 2044 + packageName = "follow-redirects"; 2045 + version = "1.15.2"; 2046 + src = fetchurl { 2047 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz"; 2048 + sha512 = "VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="; 2049 + }; 2050 + }; 1951 2051 "foreground-child-2.0.0" = { 1952 2052 name = "foreground-child"; 1953 2053 packageName = "foreground-child"; ··· 2002 2102 sha512 = "cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg=="; 2003 2103 }; 2004 2104 }; 2105 + "fs-constants-1.0.0" = { 2106 + name = "fs-constants"; 2107 + packageName = "fs-constants"; 2108 + version = "1.0.0"; 2109 + src = fetchurl { 2110 + url = "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz"; 2111 + sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="; 2112 + }; 2113 + }; 2005 2114 "fs.realpath-1.0.0" = { 2006 2115 name = "fs.realpath"; 2007 2116 packageName = "fs.realpath"; ··· 2090 2199 src = fetchurl { 2091 2200 url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"; 2092 2201 sha512 = "0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng=="; 2202 + }; 2203 + }; 2204 + "github-from-package-0.0.0" = { 2205 + name = "github-from-package"; 2206 + packageName = "github-from-package"; 2207 + version = "0.0.0"; 2208 + src = fetchurl { 2209 + url = "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz"; 2210 + sha512 = "SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw=="; 2093 2211 }; 2094 2212 }; 2095 2213 "glob-7.2.3" = { ··· 2272 2390 sha512 = "r0KNC5aqCAItsjlgtirW6RW25c92Ee3ybQj8z//4Sl4suE3HIPqM4deGpYCUJULLjtVPEP1+Ma+1ZeX1iMsCiA=="; 2273 2391 }; 2274 2392 }; 2275 - "html-to-text-8.2.1" = { 2276 - name = "html-to-text"; 2277 - packageName = "html-to-text"; 2278 - version = "8.2.1"; 2279 - src = fetchurl { 2280 - url = "https://registry.npmjs.org/html-to-text/-/html-to-text-8.2.1.tgz"; 2281 - sha512 = "aN/3JvAk8qFsWVeE9InWAWueLXrbkoVZy0TkzaGhoRBC2gCFEeRLDDJN3/ijIGHohy6H+SZzUQWN/hcYtaPK8w=="; 2282 - }; 2283 - }; 2284 2393 "htmlencode-0.0.4" = { 2285 2394 name = "htmlencode"; 2286 2395 packageName = "htmlencode"; ··· 2353 2462 sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="; 2354 2463 }; 2355 2464 }; 2465 + "ieee754-1.2.1" = { 2466 + name = "ieee754"; 2467 + packageName = "ieee754"; 2468 + version = "1.2.1"; 2469 + src = fetchurl { 2470 + url = "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"; 2471 + sha512 = "dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="; 2472 + }; 2473 + }; 2356 2474 "ignore-5.2.0" = { 2357 2475 name = "ignore"; 2358 2476 packageName = "ignore"; ··· 2416 2534 sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 2417 2535 }; 2418 2536 }; 2537 + "ini-1.3.8" = { 2538 + name = "ini"; 2539 + packageName = "ini"; 2540 + version = "1.3.8"; 2541 + src = fetchurl { 2542 + url = "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"; 2543 + sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 2544 + }; 2545 + }; 2546 + "ip-address-7.1.0" = { 2547 + name = "ip-address"; 2548 + packageName = "ip-address"; 2549 + version = "7.1.0"; 2550 + src = fetchurl { 2551 + url = "https://registry.npmjs.org/ip-address/-/ip-address-7.1.0.tgz"; 2552 + sha512 = "V9pWC/VJf2lsXqP7IWJ+pe3P1/HCYGBMZrrnT62niLGjAfCbeiwXMUxaeHvnVlz19O27pvXP4azs+Pj/A0x+SQ=="; 2553 + }; 2554 + }; 2555 + "ip-cidr-3.0.10" = { 2556 + name = "ip-cidr"; 2557 + packageName = "ip-cidr"; 2558 + version = "3.0.10"; 2559 + src = fetchurl { 2560 + url = "https://registry.npmjs.org/ip-cidr/-/ip-cidr-3.0.10.tgz"; 2561 + sha512 = "PXSsrRYirsuaCI1qBVyVXRLUIpNzxm76eHd3UvN5NXTMUG85GWGZpr6P+70mimc5e7Nfh/tShmjk0oSywErMWg=="; 2562 + }; 2563 + }; 2419 2564 "ipaddr.js-1.9.1" = { 2420 2565 name = "ipaddr.js"; 2421 2566 packageName = "ipaddr.js"; ··· 2704 2849 sha512 = "UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg=="; 2705 2850 }; 2706 2851 }; 2852 + "jsbn-1.1.0" = { 2853 + name = "jsbn"; 2854 + packageName = "jsbn"; 2855 + version = "1.1.0"; 2856 + src = fetchurl { 2857 + url = "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz"; 2858 + sha512 = "4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A=="; 2859 + }; 2860 + }; 2707 2861 "jsesc-2.5.2" = { 2708 2862 name = "jsesc"; 2709 2863 packageName = "jsesc"; ··· 2893 3047 sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 2894 3048 }; 2895 3049 }; 2896 - "lru-cache-7.14.0" = { 2897 - name = "lru-cache"; 2898 - packageName = "lru-cache"; 2899 - version = "7.14.0"; 2900 - src = fetchurl { 2901 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.14.0.tgz"; 2902 - sha512 = "EIRtP1GrSJny0dqb50QXRUNBxHJhcpxHC++M5tD7RYbvLLn5KVWKsbyswSSqDuU15UFi3bgTQIY8nhDMeF6aDQ=="; 2903 - }; 2904 - }; 2905 3050 "lru_map-0.3.3" = { 2906 3051 name = "lru_map"; 2907 3052 packageName = "lru_map"; ··· 2929 3074 sha512 = "bxkvPaFXzuuRfqSQgIBbA6M+nKXeRJEeZlJfzjhP0RBBMl62HQTXqNLSVHhLRCdzKbr1OayrbDKL+BnmoghDDA=="; 2930 3075 }; 2931 3076 }; 2932 - "matrix-appservice-bridge-3.2.0" = { 3077 + "matrix-appservice-bridge-4.0.2" = { 2933 3078 name = "matrix-appservice-bridge"; 2934 3079 packageName = "matrix-appservice-bridge"; 2935 - version = "3.2.0"; 3080 + version = "4.0.2"; 2936 3081 src = fetchurl { 2937 - url = "https://registry.npmjs.org/matrix-appservice-bridge/-/matrix-appservice-bridge-3.2.0.tgz"; 2938 - sha512 = "fkVarDN2vLwgr/j2gOAT58AOVK+ualZghOI5oIOCImwut4U7gXBig2sjJ9f+NYjE2ljlWOas4UPSRLsly16EvQ=="; 3082 + url = "https://registry.npmjs.org/matrix-appservice-bridge/-/matrix-appservice-bridge-4.0.2.tgz"; 3083 + sha512 = "bMdkvbm6A9KEA+VonFO5nfrzgPwrmINv+8U6Ed7nLn29YHdXrXLYMYlTHk0Hyope48rkSA06jkeUSFJqiaoApA=="; 2939 3084 }; 2940 3085 }; 2941 3086 "matrix-bot-sdk-0.5.19" = { ··· 2947 3092 sha512 = "RIPyvQPkOVp2yTKeDgp5rcn6z/DiKdHb6E8c69K+utai8ypRGtfDRj0PGqP+1XzqC9Wb1OFrESCUB5t0ffdC9g=="; 2948 3093 }; 2949 3094 }; 2950 - "matrix-bot-sdk-0.6.1" = { 3095 + "matrix-bot-sdk-0.6.0-beta.2" = { 2951 3096 name = "matrix-bot-sdk"; 2952 3097 packageName = "matrix-bot-sdk"; 2953 - version = "0.6.1"; 3098 + version = "0.6.0-beta.2"; 2954 3099 src = fetchurl { 2955 - url = "https://registry.npmjs.org/matrix-bot-sdk/-/matrix-bot-sdk-0.6.1.tgz"; 2956 - sha512 = "xbSQUpbuQq9Oj5f5GeprKndJZqdB9N9majg+VwIEcBGBscpWCskX32kTaoNhTHAE92XlM+qnwFME45TYElf4tA=="; 3100 + url = "https://registry.npmjs.org/matrix-bot-sdk/-/matrix-bot-sdk-0.6.0-beta.2.tgz"; 3101 + sha512 = "D9aQ2++1bJIzka2uIz22HkaeyT058QGOh96xdxiDOaezyzLY5BN7ehYg+P0xRzDYDFKx9DbqDYCt97IkfahtPw=="; 2957 3102 }; 2958 3103 }; 2959 3104 "matrix-js-sdk-12.5.0" = { ··· 3046 3191 sha512 = "ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="; 3047 3192 }; 3048 3193 }; 3194 + "mimic-response-3.1.0" = { 3195 + name = "mimic-response"; 3196 + packageName = "mimic-response"; 3197 + version = "3.1.0"; 3198 + src = fetchurl { 3199 + url = "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz"; 3200 + sha512 = "z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="; 3201 + }; 3202 + }; 3049 3203 "minimalistic-assert-1.0.1" = { 3050 3204 name = "minimalistic-assert"; 3051 3205 packageName = "minimalistic-assert"; ··· 3091 3245 sha512 = "vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="; 3092 3246 }; 3093 3247 }; 3248 + "mkdirp-classic-0.5.3" = { 3249 + name = "mkdirp-classic"; 3250 + packageName = "mkdirp-classic"; 3251 + version = "0.5.3"; 3252 + src = fetchurl { 3253 + url = "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz"; 3254 + sha512 = "gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="; 3255 + }; 3256 + }; 3094 3257 "module-not-found-error-1.0.1" = { 3095 3258 name = "module-not-found-error"; 3096 3259 packageName = "module-not-found-error"; ··· 3107 3270 src = fetchurl { 3108 3271 url = "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz"; 3109 3272 sha512 = "5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w=="; 3110 - }; 3111 - }; 3112 - "moo-0.5.1" = { 3113 - name = "moo"; 3114 - packageName = "moo"; 3115 - version = "0.5.1"; 3116 - src = fetchurl { 3117 - url = "https://registry.npmjs.org/moo/-/moo-0.5.1.tgz"; 3118 - sha512 = "I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w=="; 3119 3273 }; 3120 3274 }; 3121 3275 "morgan-1.10.0" = { ··· 3163 3317 sha512 = "MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="; 3164 3318 }; 3165 3319 }; 3320 + "napi-build-utils-1.0.2" = { 3321 + name = "napi-build-utils"; 3322 + packageName = "napi-build-utils"; 3323 + version = "1.0.2"; 3324 + src = fetchurl { 3325 + url = "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz"; 3326 + sha512 = "ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg=="; 3327 + }; 3328 + }; 3166 3329 "natural-compare-1.4.0" = { 3167 3330 name = "natural-compare"; 3168 3331 packageName = "natural-compare"; ··· 3172 3335 sha512 = "OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="; 3173 3336 }; 3174 3337 }; 3175 - "nearley-2.20.1" = { 3176 - name = "nearley"; 3177 - packageName = "nearley"; 3178 - version = "2.20.1"; 3179 - src = fetchurl { 3180 - url = "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz"; 3181 - sha512 = "+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ=="; 3182 - }; 3183 - }; 3184 3338 "nedb-1.8.0" = { 3185 3339 name = "nedb"; 3186 3340 packageName = "nedb"; ··· 3199 3353 sha512 = "+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="; 3200 3354 }; 3201 3355 }; 3202 - "node-downloader-helper-2.1.4" = { 3203 - name = "node-downloader-helper"; 3204 - packageName = "node-downloader-helper"; 3205 - version = "2.1.4"; 3356 + "node-abi-3.24.0" = { 3357 + name = "node-abi"; 3358 + packageName = "node-abi"; 3359 + version = "3.24.0"; 3206 3360 src = fetchurl { 3207 - url = "https://registry.npmjs.org/node-downloader-helper/-/node-downloader-helper-2.1.4.tgz"; 3208 - sha512 = "Cbc5jwGTe58apFIPjxgcUzX0Se+pcUgdbym6G+sk2yb1m/qwxYTLmD4C2xEHTJO9YkZ/eRujMJPl3WW+7fVksQ=="; 3361 + url = "https://registry.npmjs.org/node-abi/-/node-abi-3.24.0.tgz"; 3362 + sha512 = "YPG3Co0luSu6GwOBsmIdGW6Wx0NyNDLg/hriIyDllVsNwnI6UeqaWShxC3lbH4LtEQUgoLP3XR1ndXiDAWvmRw=="; 3209 3363 }; 3210 3364 }; 3211 3365 "node-gyp-build-4.5.0" = { ··· 3467 3621 src = fetchurl { 3468 3622 url = "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz"; 3469 3623 sha512 = "/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q=="; 3470 - }; 3471 - }; 3472 - "parseley-0.7.0" = { 3473 - name = "parseley"; 3474 - packageName = "parseley"; 3475 - version = "0.7.0"; 3476 - src = fetchurl { 3477 - url = "https://registry.npmjs.org/parseley/-/parseley-0.7.0.tgz"; 3478 - sha512 = "xyOytsdDu077M3/46Am+2cGXEKM9U9QclBDv7fimY7e+BBlxh2JcBp2mgNsmkyA9uvgyTjVzDi7cP1v4hcFxbw=="; 3479 3624 }; 3480 3625 }; 3481 3626 "parseurl-1.3.3" = { ··· 3694 3839 sha512 = "9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ=="; 3695 3840 }; 3696 3841 }; 3842 + "prebuild-install-7.1.1" = { 3843 + name = "prebuild-install"; 3844 + packageName = "prebuild-install"; 3845 + version = "7.1.1"; 3846 + src = fetchurl { 3847 + url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz"; 3848 + sha512 = "jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw=="; 3849 + }; 3850 + }; 3697 3851 "prelude-ls-1.2.1" = { 3698 3852 name = "prelude-ls"; 3699 3853 packageName = "prelude-ls"; ··· 3746 3900 src = fetchurl { 3747 3901 url = "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz"; 3748 3902 sha512 = "E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="; 3903 + }; 3904 + }; 3905 + "pump-3.0.0" = { 3906 + name = "pump"; 3907 + packageName = "pump"; 3908 + version = "3.0.0"; 3909 + src = fetchurl { 3910 + url = "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz"; 3911 + sha512 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww=="; 3749 3912 }; 3750 3913 }; 3751 3914 "punycode-2.1.1" = { ··· 3793 3956 sha512 = "WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="; 3794 3957 }; 3795 3958 }; 3796 - "railroad-diagrams-1.0.0" = { 3797 - name = "railroad-diagrams"; 3798 - packageName = "railroad-diagrams"; 3799 - version = "1.0.0"; 3800 - src = fetchurl { 3801 - url = "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz"; 3802 - sha512 = "cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A=="; 3803 - }; 3804 - }; 3805 - "randexp-0.4.6" = { 3806 - name = "randexp"; 3807 - packageName = "randexp"; 3808 - version = "0.4.6"; 3809 - src = fetchurl { 3810 - url = "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz"; 3811 - sha512 = "80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ=="; 3812 - }; 3813 - }; 3814 3959 "range-parser-1.2.1" = { 3815 3960 name = "range-parser"; 3816 3961 packageName = "range-parser"; ··· 3827 3972 src = fetchurl { 3828 3973 url = "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz"; 3829 3974 sha512 = "qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig=="; 3975 + }; 3976 + }; 3977 + "rc-1.2.8" = { 3978 + name = "rc"; 3979 + packageName = "rc"; 3980 + version = "1.2.8"; 3981 + src = fetchurl { 3982 + url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz"; 3983 + sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="; 3830 3984 }; 3831 3985 }; 3832 3986 "readable-stream-3.6.0" = { ··· 3946 4100 sha512 = "qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="; 3947 4101 }; 3948 4102 }; 3949 - "ret-0.1.15" = { 3950 - name = "ret"; 3951 - packageName = "ret"; 3952 - version = "0.1.15"; 3953 - src = fetchurl { 3954 - url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz"; 3955 - sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="; 3956 - }; 3957 - }; 3958 4103 "retry-0.13.1" = { 3959 4104 name = "retry"; 3960 4105 packageName = "retry"; ··· 4045 4190 sha512 = "oOpe8l4J8CaBk++2haoN5yNI5beekjuHv3JRPKUx/7h40Rdr85pemn4NkvUB3TcBP7yjat574sPlcMAyv4UQig=="; 4046 4191 }; 4047 4192 }; 4048 - "selderee-0.6.0" = { 4049 - name = "selderee"; 4050 - packageName = "selderee"; 4051 - version = "0.6.0"; 4052 - src = fetchurl { 4053 - url = "https://registry.npmjs.org/selderee/-/selderee-0.6.0.tgz"; 4054 - sha512 = "ibqWGV5aChDvfVdqNYuaJP/HnVBhlRGSRrlbttmlMpHcLuTqqbMH36QkSs9GEgj5M88JDYLI8eyP94JaQ8xRlg=="; 4055 - }; 4056 - }; 4057 4193 "semver-6.3.0" = { 4058 4194 name = "semver"; 4059 4195 packageName = "semver"; ··· 4144 4280 sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 4145 4281 }; 4146 4282 }; 4283 + "simple-concat-1.0.1" = { 4284 + name = "simple-concat"; 4285 + packageName = "simple-concat"; 4286 + version = "1.0.1"; 4287 + src = fetchurl { 4288 + url = "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz"; 4289 + sha512 = "cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q=="; 4290 + }; 4291 + }; 4292 + "simple-get-4.0.1" = { 4293 + name = "simple-get"; 4294 + packageName = "simple-get"; 4295 + version = "4.0.1"; 4296 + src = fetchurl { 4297 + url = "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz"; 4298 + sha512 = "brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA=="; 4299 + }; 4300 + }; 4147 4301 "simple-swizzle-0.2.2" = { 4148 4302 name = "simple-swizzle"; 4149 4303 packageName = "simple-swizzle"; ··· 4207 4361 sha512 = "D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="; 4208 4362 }; 4209 4363 }; 4364 + "sprintf-js-1.1.2" = { 4365 + name = "sprintf-js"; 4366 + packageName = "sprintf-js"; 4367 + version = "1.1.2"; 4368 + src = fetchurl { 4369 + url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz"; 4370 + sha512 = "VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug=="; 4371 + }; 4372 + }; 4210 4373 "sshpk-1.17.0" = { 4211 4374 name = "sshpk"; 4212 4375 packageName = "sshpk"; ··· 4288 4451 sha512 = "3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w=="; 4289 4452 }; 4290 4453 }; 4454 + "strip-json-comments-2.0.1" = { 4455 + name = "strip-json-comments"; 4456 + packageName = "strip-json-comments"; 4457 + version = "2.0.1"; 4458 + src = fetchurl { 4459 + url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; 4460 + sha512 = "4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="; 4461 + }; 4462 + }; 4291 4463 "strip-json-comments-3.1.1" = { 4292 4464 name = "strip-json-comments"; 4293 4465 packageName = "strip-json-comments"; ··· 4324 4496 sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 4325 4497 }; 4326 4498 }; 4499 + "tar-fs-2.1.1" = { 4500 + name = "tar-fs"; 4501 + packageName = "tar-fs"; 4502 + version = "2.1.1"; 4503 + src = fetchurl { 4504 + url = "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz"; 4505 + sha512 = "V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng=="; 4506 + }; 4507 + }; 4508 + "tar-stream-2.2.0" = { 4509 + name = "tar-stream"; 4510 + packageName = "tar-stream"; 4511 + version = "2.2.0"; 4512 + src = fetchurl { 4513 + url = "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz"; 4514 + sha512 = "ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ=="; 4515 + }; 4516 + }; 4327 4517 "tdigest-0.1.2" = { 4328 4518 name = "tdigest"; 4329 4519 packageName = "tdigest"; ··· 4760 4950 args = { 4761 4951 name = "matrix-appservice-irc"; 4762 4952 packageName = "matrix-appservice-irc"; 4763 - version = "0.35.0"; 4953 + version = "0.35.1"; 4764 4954 src = ./.; 4765 4955 dependencies = [ 4766 4956 sources."@alloc/quick-lru-5.2.0" ··· 4837 5027 sources."@jridgewell/set-array-1.1.2" 4838 5028 sources."@jridgewell/sourcemap-codec-1.4.14" 4839 5029 sources."@jridgewell/trace-mapping-0.3.15" 4840 - sources."@matrix-org/matrix-sdk-crypto-nodejs-0.1.0-beta.1" 5030 + sources."@matrix-org/olm-https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.4.tgz" 4841 5031 sources."@nodelib/fs.scandir-2.1.5" 4842 5032 sources."@nodelib/fs.stat-2.0.5" 4843 5033 sources."@nodelib/fs.walk-1.2.8" 4844 - sources."@selderee/plugin-htmlparser2-0.6.0" 4845 5034 sources."@sentry/core-6.19.7" 4846 5035 sources."@sentry/hub-6.19.7" 4847 5036 sources."@sentry/minimal-6.19.7" ··· 4911 5100 sources."asn1-0.2.6" 4912 5101 sources."assert-plus-1.0.0" 4913 5102 sources."async-0.2.10" 4914 - sources."async-lock-1.3.2" 4915 5103 sources."asynckit-0.4.0" 4916 5104 sources."aws-sign2-0.7.0" 4917 5105 sources."aws4-1.11.0" 5106 + sources."axios-0.23.0" 4918 5107 sources."balanced-match-1.0.2" 4919 5108 sources."base-x-3.0.9" 5109 + sources."base64-js-1.5.1" 4920 5110 (sources."basic-auth-2.0.1" // { 4921 5111 dependencies = [ 4922 5112 sources."safe-buffer-5.1.2" 4923 5113 ]; 4924 5114 }) 4925 5115 sources."bcrypt-pbkdf-1.0.2" 5116 + sources."better-sqlite3-7.6.2" 4926 5117 sources."binary-search-tree-0.2.5" 5118 + sources."bindings-1.5.0" 4927 5119 sources."bintrees-1.0.2" 5120 + sources."bl-4.1.0" 4928 5121 sources."bluebird-3.7.2" 4929 5122 (sources."body-parser-1.20.0" // { 4930 5123 dependencies = [ ··· 4937 5130 sources."browser-request-0.3.3" 4938 5131 sources."browserslist-4.21.3" 4939 5132 sources."bs58-4.0.1" 5133 + sources."buffer-5.7.1" 4940 5134 sources."buffer-writer-2.0.0" 4941 5135 sources."bytes-3.1.2" 4942 5136 sources."caching-transform-4.0.0" ··· 4947 5141 sources."caseless-0.12.0" 4948 5142 sources."chalk-4.1.2" 4949 5143 sources."chardet-1.4.0" 5144 + sources."chownr-1.1.4" 4950 5145 sources."clean-stack-2.2.0" 4951 5146 sources."cliui-6.0.0" 4952 5147 (sources."color-3.2.1" // { ··· 4960 5155 sources."color-string-1.9.1" 4961 5156 sources."colorspace-1.1.4" 4962 5157 sources."combined-stream-1.0.8" 4963 - sources."commander-2.20.3" 4964 5158 sources."commondir-1.0.1" 4965 5159 sources."concat-map-0.0.1" 4966 5160 sources."content-disposition-0.5.4" ··· 4977 5171 sources."dashdash-1.14.1" 4978 5172 sources."debug-4.3.4" 4979 5173 sources."decamelize-1.2.0" 5174 + sources."decompress-response-6.0.0" 5175 + sources."deep-extend-0.6.0" 4980 5176 sources."deep-is-0.1.4" 4981 5177 sources."deepmerge-4.2.2" 4982 5178 sources."default-require-extensions-3.0.0" 4983 5179 sources."delayed-stream-1.0.0" 4984 5180 sources."depd-2.0.0" 4985 5181 sources."destroy-1.2.0" 5182 + sources."detect-libc-2.0.1" 4986 5183 sources."diff-5.1.0" 4987 5184 sources."dir-glob-3.0.1" 4988 - sources."discontinuous-range-1.0.0" 4989 5185 sources."doctrine-3.0.0" 4990 5186 sources."dom-serializer-1.4.1" 4991 5187 sources."domelementtype-2.3.0" ··· 4997 5193 sources."emoji-regex-8.0.0" 4998 5194 sources."enabled-2.0.0" 4999 5195 sources."encodeurl-1.0.2" 5196 + sources."end-of-stream-1.4.4" 5000 5197 sources."entities-2.2.0" 5001 5198 sources."es6-error-4.1.1" 5002 5199 sources."escalade-3.1.1" ··· 5032 5229 sources."esutils-2.0.3" 5033 5230 sources."etag-1.8.1" 5034 5231 sources."eventemitter3-4.0.7" 5232 + sources."expand-template-2.0.3" 5035 5233 (sources."express-4.18.1" // { 5036 5234 dependencies = [ 5037 5235 sources."cookie-0.5.0" ··· 5039 5237 sources."ms-2.0.0" 5040 5238 ]; 5041 5239 }) 5240 + sources."express-rate-limit-6.6.0" 5042 5241 sources."extend-3.0.2" 5043 5242 sources."extsprintf-1.3.0" 5044 5243 sources."fast-deep-equal-3.1.3" ··· 5049 5248 sources."fecha-4.2.3" 5050 5249 sources."file-entry-cache-6.0.1" 5051 5250 sources."file-stream-rotator-0.6.1" 5251 + sources."file-uri-to-path-1.0.0" 5052 5252 sources."fill-keys-1.0.2" 5053 5253 sources."fill-range-7.0.1" 5054 5254 (sources."finalhandler-1.2.0" // { ··· 5062 5262 sources."flat-cache-3.0.4" 5063 5263 sources."flatted-3.2.7" 5064 5264 sources."fn.name-1.1.0" 5265 + sources."follow-redirects-1.15.2" 5065 5266 sources."foreground-child-2.0.0" 5066 5267 sources."forever-agent-0.6.1" 5067 5268 sources."form-data-2.3.3" 5068 5269 sources."forwarded-0.2.0" 5069 5270 sources."fresh-0.5.2" 5070 5271 sources."fromentries-1.3.2" 5272 + sources."fs-constants-1.0.0" 5071 5273 sources."fs.realpath-1.0.0" 5072 5274 sources."function-bind-1.1.1" 5073 5275 sources."functional-red-black-tree-1.0.1" ··· 5078 5280 sources."get-intrinsic-1.1.2" 5079 5281 sources."get-package-type-0.1.0" 5080 5282 sources."getpass-0.1.7" 5283 + sources."github-from-package-0.0.0" 5081 5284 sources."glob-7.2.3" 5082 5285 sources."glob-parent-5.1.2" 5083 5286 sources."glob-to-regexp-0.4.1" ··· 5098 5301 }) 5099 5302 sources."he-1.2.0" 5100 5303 sources."html-escaper-2.0.2" 5101 - sources."html-to-text-8.2.1" 5304 + (sources."html-to-text-6.0.0" // { 5305 + dependencies = [ 5306 + sources."domhandler-3.3.0" 5307 + sources."htmlparser2-4.1.0" 5308 + ]; 5309 + }) 5102 5310 sources."htmlencode-0.0.4" 5103 5311 sources."htmlparser2-6.1.0" 5104 5312 sources."http-errors-2.0.0" 5105 5313 sources."http-signature-1.2.0" 5106 5314 sources."https-proxy-agent-5.0.1" 5107 5315 sources."iconv-lite-0.4.24" 5316 + sources."ieee754-1.2.1" 5108 5317 sources."ignore-5.2.0" 5109 5318 sources."immediate-3.0.6" 5110 5319 sources."import-fresh-3.3.0" ··· 5112 5321 sources."indent-string-4.0.0" 5113 5322 sources."inflight-1.0.6" 5114 5323 sources."inherits-2.0.4" 5324 + sources."ini-1.3.8" 5325 + (sources."ip-address-7.1.0" // { 5326 + dependencies = [ 5327 + sources."jsbn-1.1.0" 5328 + sources."sprintf-js-1.1.2" 5329 + ]; 5330 + }) 5331 + (sources."ip-cidr-3.0.10" // { 5332 + dependencies = [ 5333 + sources."jsbn-1.1.0" 5334 + ]; 5335 + }) 5115 5336 sources."ipaddr.js-1.9.1" 5116 5337 sources."irc-colors-1.5.0" 5117 5338 sources."is-arrayish-0.3.2" ··· 5170 5391 sources."logform-2.4.2" 5171 5392 sources."loglevel-1.8.0" 5172 5393 sources."lowdb-1.0.0" 5173 - sources."lru-cache-7.14.0" 5394 + sources."lru-cache-6.0.0" 5174 5395 sources."lru_map-0.3.3" 5175 5396 (sources."make-dir-3.1.0" // { 5176 5397 dependencies = [ ··· 5178 5399 ]; 5179 5400 }) 5180 5401 sources."matrix-appservice-0.10.0" 5181 - (sources."matrix-appservice-bridge-3.2.0" // { 5402 + (sources."matrix-appservice-bridge-4.0.2" // { 5182 5403 dependencies = [ 5183 - sources."matrix-bot-sdk-0.6.1" 5404 + sources."matrix-bot-sdk-0.6.0-beta.2" 5184 5405 sources."nopt-5.0.0" 5406 + sources."uuid-8.3.2" 5185 5407 ]; 5186 5408 }) 5187 - (sources."matrix-bot-sdk-0.5.19" // { 5188 - dependencies = [ 5189 - sources."domhandler-3.3.0" 5190 - sources."html-to-text-6.0.0" 5191 - sources."htmlparser2-4.1.0" 5192 - sources."lru-cache-6.0.0" 5193 - ]; 5194 - }) 5409 + sources."matrix-bot-sdk-0.5.19" 5195 5410 sources."matrix-js-sdk-12.5.0" 5196 5411 (sources."matrix-org-irc-1.3.0" // { 5197 5412 dependencies = [ ··· 5206 5421 sources."mime-1.6.0" 5207 5422 sources."mime-db-1.52.0" 5208 5423 sources."mime-types-2.1.35" 5424 + sources."mimic-response-3.1.0" 5209 5425 sources."minimalistic-assert-1.0.1" 5210 5426 sources."minimatch-3.1.2" 5211 5427 sources."minimist-1.2.6" 5212 5428 sources."mkdirp-1.0.4" 5429 + sources."mkdirp-classic-0.5.3" 5213 5430 sources."module-not-found-error-1.0.1" 5214 5431 sources."moment-2.29.4" 5215 - sources."moo-0.5.1" 5216 5432 (sources."morgan-1.10.0" // { 5217 5433 dependencies = [ 5218 5434 sources."debug-2.6.9" ··· 5222 5438 }) 5223 5439 sources."ms-2.1.2" 5224 5440 sources."nanoid-3.3.4" 5441 + sources."napi-build-utils-1.0.2" 5225 5442 sources."natural-compare-1.4.0" 5226 - sources."nearley-2.20.1" 5227 5443 (sources."nedb-1.8.0" // { 5228 5444 dependencies = [ 5229 5445 sources."mkdirp-0.5.6" 5230 5446 ]; 5231 5447 }) 5232 5448 sources."negotiator-0.6.3" 5233 - sources."node-downloader-helper-2.1.4" 5449 + sources."node-abi-3.24.0" 5234 5450 sources."node-gyp-build-4.5.0" 5235 5451 sources."node-preload-0.2.1" 5236 5452 sources."node-releases-2.0.6" ··· 5264 5480 sources."packet-reader-1.0.0" 5265 5481 sources."parent-module-1.0.1" 5266 5482 sources."parse-srcset-1.0.2" 5267 - sources."parseley-0.7.0" 5268 5483 sources."parseurl-1.3.3" 5269 5484 sources."path-exists-4.0.0" 5270 5485 sources."path-is-absolute-1.0.1" ··· 5296 5511 sources."postgres-bytea-1.0.0" 5297 5512 sources."postgres-date-1.0.7" 5298 5513 sources."postgres-interval-1.2.0" 5514 + sources."prebuild-install-7.1.1" 5299 5515 sources."prelude-ls-1.2.1" 5300 5516 sources."process-on-spawn-1.0.0" 5301 5517 sources."prom-client-14.1.0" 5302 5518 sources."proxy-addr-2.0.7" 5303 5519 sources."proxyquire-2.1.3" 5304 5520 sources."psl-1.9.0" 5521 + sources."pump-3.0.0" 5305 5522 sources."punycode-2.1.1" 5306 5523 sources."qs-6.10.3" 5307 5524 sources."queue-microtask-1.2.3" 5308 5525 sources."quick-lru-5.1.1" 5309 - sources."railroad-diagrams-1.0.0" 5310 - sources."randexp-0.4.6" 5311 5526 sources."range-parser-1.2.1" 5312 5527 sources."raw-body-2.5.1" 5528 + (sources."rc-1.2.8" // { 5529 + dependencies = [ 5530 + sources."strip-json-comments-2.0.1" 5531 + ]; 5532 + }) 5313 5533 sources."readable-stream-3.6.0" 5314 5534 sources."regenerator-runtime-0.13.9" 5315 5535 sources."regexpp-3.2.0" ··· 5326 5546 sources."require-main-filename-2.0.0" 5327 5547 sources."resolve-1.22.1" 5328 5548 sources."resolve-from-4.0.0" 5329 - sources."ret-0.1.15" 5330 5549 sources."retry-0.13.1" 5331 5550 sources."reusify-1.0.4" 5332 5551 sources."rimraf-3.0.2" ··· 5340 5559 sources."safe-stable-stringify-2.3.1" 5341 5560 sources."safer-buffer-2.1.2" 5342 5561 sources."sanitize-html-2.7.1" 5343 - sources."selderee-0.6.0" 5344 - (sources."semver-7.3.7" // { 5345 - dependencies = [ 5346 - sources."lru-cache-6.0.0" 5347 - ]; 5348 - }) 5562 + sources."semver-7.3.7" 5349 5563 (sources."send-0.18.0" // { 5350 5564 dependencies = [ 5351 5565 (sources."debug-2.6.9" // { ··· 5363 5577 sources."shebang-regex-3.0.0" 5364 5578 sources."side-channel-1.0.4" 5365 5579 sources."signal-exit-3.0.7" 5580 + sources."simple-concat-1.0.1" 5581 + sources."simple-get-4.0.1" 5366 5582 sources."simple-swizzle-0.2.2" 5367 5583 sources."slash-3.0.0" 5368 5584 sources."source-map-0.6.1" ··· 5382 5598 sources."strip-json-comments-3.1.1" 5383 5599 sources."supports-color-7.2.0" 5384 5600 sources."supports-preserve-symlinks-flag-1.0.0" 5601 + sources."tar-fs-2.1.1" 5602 + sources."tar-stream-2.2.0" 5385 5603 sources."tdigest-0.1.2" 5386 5604 sources."test-exclude-6.0.0" 5387 5605 sources."text-hex-1.0.0"
+2 -2
pkgs/servers/matrix-synapse/matrix-appservice-irc/package.json
··· 1 1 { 2 2 "name": "matrix-appservice-irc", 3 - "version": "0.35.0", 3 + "version": "0.35.1", 4 4 "description": "An IRC Bridge for Matrix", 5 5 "main": "app.js", 6 6 "bin": "./bin/matrix-appservice-irc", ··· 33 33 "extend": "^3.0.2", 34 34 "he": "^1.2.0", 35 35 "logform": "^2.4.0", 36 - "matrix-appservice-bridge": "^3.2.0", 36 + "matrix-appservice-bridge": "^4.0.2", 37 37 "matrix-org-irc": "1.3.0", 38 38 "matrix-bot-sdk": "0.5.19", 39 39 "nopt": "^3.0.1",
+4 -4
pkgs/servers/matrix-synapse/matrix-appservice-irc/src.json
··· 1 1 { 2 2 "url": "https://github.com/matrix-org/matrix-appservice-irc", 3 - "rev": "b52ac9ec9e45fe82fb3eb9c1a5e420c1eba73b9b", 4 - "date": "2022-09-13T09:07:52+01:00", 5 - "path": "/nix/store/nd7jrqynfikcirmzc22jp82bgmliglnp-matrix-appservice-irc", 6 - "sha256": "0bw06rzlsi3rddjmw1v32vlpq3clda26dcyq3f8qaily9rdxr7vn", 3 + "rev": "766d1ad7b29d9aa63f03091b1c7f5834087dc62b", 4 + "date": "2022-09-26T12:23:03+01:00", 5 + "path": "/nix/store/znwafvyiszhildblxq7iamc7s1fzbc4y-matrix-appservice-irc", 6 + "sha256": "134snlri05nrm49b2qlkgfa5qipkl480gxl2dlalr0wd410qipnb", 7 7 "fetchLFS": false, 8 8 "fetchSubmodules": false, 9 9 "deepClone": false,
+161 -161
pkgs/tools/admin/pulumi/data.nix
··· 1 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 2 { }: 3 3 { 4 - version = "3.38.0"; 4 + version = "3.40.1"; 5 5 pulumiPkgs = { 6 6 x86_64-linux = [ 7 7 { 8 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.38.0-linux-x64.tar.gz"; 9 - sha256 = "1335rb4aki9pj5m8v6c90mg8wwj8afnzj8mk5q2hj5p48fhzv1ry"; 8 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.40.1-linux-x64.tar.gz"; 9 + sha256 = "07zh77spxsgrq409p61pfik0b8r87ib02x8hcpfhsjd9kgmc9614"; 10 10 } 11 11 { 12 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v5.3.1-linux-amd64.tar.gz"; 13 - sha256 = "025573virxpcak26blq5l40dqznaipkbgdmibxkkzhb8jhzwy8rp"; 12 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v5.4.0-linux-amd64.tar.gz"; 13 + sha256 = "0g3s60yscxrwzbq40zii0mnh2z9yggz0wc2kg9yrfzybrmsmx8z3"; 14 14 } 15 15 { 16 16 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v3.0.0-linux-amd64.tar.gz"; ··· 21 21 sha256 = "1hbjni74gqyfsp4amn1mimz53v89fhrmpq3aa46a6mgvv47215ks"; 22 22 } 23 23 { 24 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v2.6.1-linux-amd64.tar.gz"; 25 - sha256 = "10bckr3lr4yxfhd41wlhngskmz56kfsscjjjkvnbijg7g6ijxz2z"; 24 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v2.8.0-linux-amd64.tar.gz"; 25 + sha256 = "0ipzn5947fgjnsg9lci4zsb685880gxigckd500mq0c9w2cbaw2n"; 26 26 } 27 27 { 28 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.12.0-linux-amd64.tar.gz"; 29 - sha256 = "1hydlkbqxx7wn2dmzgnb7j7pshsy3mp4klmr8nn2qc8w8g0b4f2w"; 28 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.13.0-linux-amd64.tar.gz"; 29 + sha256 = "0y7np2qg2hp81cji78bjbcw7ng2g81y1asbnqb2jd2ip0yf43aqp"; 30 + } 31 + { 32 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v5.14.0-linux-amd64.tar.gz"; 33 + sha256 = "099ljh9kkjp2cy64qs6mvbscgr9whmgqd81c6nfmvxjbfy1i118p"; 30 34 } 31 35 { 32 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v5.11.0-linux-amd64.tar.gz"; 33 - sha256 = "1ggqrmdrhs2rj9vzxghb0900w1mw93cygxiididnrq6774wna19v"; 36 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.19.0-linux-amd64.tar.gz"; 37 + sha256 = "10xmh1apjhp1b94c8z8v7x3zpmv2nlh85vbkd83d7pb4cvv0dixq"; 34 38 } 35 39 { 36 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.27.0-linux-amd64.tar.gz"; 37 - sha256 = "04ya7a9gfng3vlfxd0536a44gc0dvpvdmpf81n0c5rc09w96q77a"; 40 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.28.0-linux-amd64.tar.gz"; 41 + sha256 = "0rjzn2jcaylgnilb9jqzia1cdkjdvqwbm4djmv8sdcrp64jdx0r9"; 38 42 } 39 43 { 40 44 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v2.5.0-linux-amd64.tar.gz"; 41 45 sha256 = "12sxvvjzf9761cag1kah7sdvjg98mi05jrfy0g06xf7lghlyxpcr"; 42 46 } 43 47 { 44 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.16.0-linux-amd64.tar.gz"; 45 - sha256 = "1xlb55nk9sm149qf8lbgnkvdygw9bzz2637j8rh3psijknj9m7m4"; 46 - } 47 - { 48 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.9.0-linux-amd64.tar.gz"; 49 - sha256 = "0fhbp72nr3pjzkw3iq495h1p7lp6h02rw8hbnm0jqlz32i68z07b"; 48 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.11.0-linux-amd64.tar.gz"; 49 + sha256 = "16hkrmw35vvsg1m9bfh6bw989yfmn784hzj7058hpd6mwhac7c07"; 50 50 } 51 51 { 52 52 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.6.0-linux-amd64.tar.gz"; 53 53 sha256 = "0a5nav53dg3j4rrx7747a7bk90krfg9fxj0kw0wahcnjijbv1255"; 54 54 } 55 55 { 56 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.10.0-linux-amd64.tar.gz"; 57 - sha256 = "1y9kpr1kafjp8hvrvpx0mp6i23sf2m5f229kw5hr1h718pnkymwc"; 56 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.11.0-linux-amd64.tar.gz"; 57 + sha256 = "1wcxz4sg7ca0n8csp3j2qjd60cvn984mllbv3js55rrzbh8iqfwp"; 58 58 } 59 59 { 60 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.15.1-linux-amd64.tar.gz"; 61 - sha256 = "0g1msaiirzwz5cz2hmid53lj9a5a82psxmv7fskfmhsv2w0zy4k4"; 60 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.15.2-linux-amd64.tar.gz"; 61 + sha256 = "0dv6vnm34qnj4qlw65fffb4knbph3yy1afj7zim9bzxbm07nv2wh"; 62 62 } 63 63 { 64 64 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.4.1-linux-amd64.tar.gz"; ··· 69 69 sha256 = "0hnardid0kbzy65dmn7vz8ddy5hq78nf2871zz6srf2hfyiv7qa4"; 70 70 } 71 71 { 72 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-fastly-v5.0.0-linux-amd64.tar.gz"; 73 - sha256 = "1f2ivpqd6vhwq6pz1gh69fdzh7qh4sicnlwmmqspvw5wl1zxi42p"; 72 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-fastly-v5.0.1-linux-amd64.tar.gz"; 73 + sha256 = "1087d10z0h2vlx18czh4yhplb4qqyy94zf0hvqm5n6vmyh9kpr8j"; 74 74 } 75 75 { 76 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.34.0-linux-amd64.tar.gz"; 77 - sha256 = "10skfvwhbs1zaa37849ba5798f2jn2cccz27ivvhkbk14yihgnw9"; 76 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.37.0-linux-amd64.tar.gz"; 77 + sha256 = "11wpxzvzw4mbp3mqywgy5n9fx6217w823hqmb6an6m8zskrfgh5m"; 78 78 } 79 79 { 80 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.16.0-linux-amd64.tar.gz"; 81 - sha256 = "13sdprhj4wi49cfgabaf2w171bqc97as592wrzsbda546przxk1c"; 80 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.17.0-linux-amd64.tar.gz"; 81 + sha256 = "14sdhvn2y32y1a6ydqgy1bsbld976c66aiyc9raybxjn9ym28gkd"; 82 82 } 83 83 { 84 84 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.8.0-linux-amd64.tar.gz"; 85 85 sha256 = "08kal2cwbaaxif0hxzxylrqkg0msz1jw1l65dzp3r903jclwc1zx"; 86 86 } 87 87 { 88 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-google-native-v0.23.0-linux-amd64.tar.gz"; 89 - sha256 = "16cigqfls82z80a43sx3q71qchr0wnww5ryw0vqiqjb8kkzfb8lx"; 88 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-google-native-v0.26.0-linux-amd64.tar.gz"; 89 + sha256 = "196pgs43l6n98hf7068a9684jvhmaszs8pql7p9gwcf0539fdsx6"; 90 90 } 91 91 { 92 92 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.10.1-linux-amd64.tar.gz"; 93 93 sha256 = "09i6lh9wfsfpa5jkj2nb80f3gvmpg3m3flfgfcc794khlrikqmib"; 94 94 } 95 95 { 96 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.20.5-linux-amd64.tar.gz"; 97 - sha256 = "1kg57mhm8yhrxipznhlvv1wa2mg0jxybsv5y97sh42zz2ybf60w6"; 96 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.21.2-linux-amd64.tar.gz"; 97 + sha256 = "1ihy52ckcvw2kpaz7905nm19lzahw26c39x4v8mrlz7zjb0pgxj8"; 98 98 } 99 99 { 100 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.10.0-linux-amd64.tar.gz"; 101 - sha256 = "1w47s1bkjn4xj12b6ygj7qhawd4svycwq7f5lj3l2dsyf1q17ynd"; 100 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.10.1-linux-amd64.tar.gz"; 101 + sha256 = "0cndpj0fiqy90sv6r5zvd2kcs5xbk84w8619lwgi0n03isylilc0"; 102 102 } 103 103 { 104 104 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.4.0-linux-amd64.tar.gz"; ··· 113 113 sha256 = "1yva7q0xbgz03807cmk0p7glzw6amsr259r230hhkx1iyx4mdj1m"; 114 114 } 115 115 { 116 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.5.0-linux-amd64.tar.gz"; 117 - sha256 = "08wyx9j5q9pn1jya849wg35v2d7kagzj77h8qr94j8w7agf6ds2a"; 116 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.6.0-linux-amd64.tar.gz"; 117 + sha256 = "1cdz32s7bfri7n81gviyg3gh1l6pz95fp6alwrsn797adl3qq3s7"; 118 118 } 119 119 { 120 120 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.8.2-linux-amd64.tar.gz"; ··· 133 133 sha256 = "1i5y1kqyc84v90c7lh5gaydk5qvvs62gc6xxd6n8zzmn9ygkr0c4"; 134 134 } 135 135 { 136 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.10.2-linux-amd64.tar.gz"; 137 - sha256 = "1xmndvg43gqbml5m5a8ky7ymkpkwbif4gxq2af3vvdi9gpn38biq"; 136 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.11.0-linux-amd64.tar.gz"; 137 + sha256 = "08wlq27x0ca3x0k9aw9cbpm43f0mn4xsgpxyzfyvbn1hjmcbf388"; 138 138 } 139 139 { 140 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v4.6.0-linux-amd64.tar.gz"; 141 - sha256 = "1jx1h7p72wacplnqdvjqrzkgfc6fsrpjx6xl4f6dyvnvc9sgv7l9"; 140 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v4.6.1-linux-amd64.tar.gz"; 141 + sha256 = "1yq72jgvarbh754a1ym9b8jk40jmk25ly78cw2wj31a96rxv1qp9"; 142 142 } 143 143 { 144 144 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v5.6.0-linux-amd64.tar.gz"; ··· 163 163 ]; 164 164 x86_64-darwin = [ 165 165 { 166 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.38.0-darwin-x64.tar.gz"; 167 - sha256 = "1g4hs6f3xri5z2cr8rf7hl91bzr2snpny12rngw27ilw4r7fw3k0"; 166 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.40.1-darwin-x64.tar.gz"; 167 + sha256 = "0av0i5g2450l5ndvihxw32cxzamjqwr338200yaw4wh2qyl8p7rw"; 168 168 } 169 169 { 170 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v5.3.1-darwin-amd64.tar.gz"; 171 - sha256 = "1q0ij0cib2n58yjfkq7sdjha8i5230pfw8rsdsr4rcsjcyw2mk67"; 170 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v5.4.0-darwin-amd64.tar.gz"; 171 + sha256 = "0f62xfma1d299625ydj3f95anz47l41dyasq9vpvsi1cqii6h4a1"; 172 172 } 173 173 { 174 174 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v3.0.0-darwin-amd64.tar.gz"; ··· 179 179 sha256 = "127b62pznybyp4scv1avwpw4ni540496yki0h0k4blm5gnrvr600"; 180 180 } 181 181 { 182 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v2.6.1-darwin-amd64.tar.gz"; 183 - sha256 = "1i17a1s2ixnpvc3lmyy0kpr1ljw0dwl79yzkzm81x6kfq54l94sz"; 182 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v2.8.0-darwin-amd64.tar.gz"; 183 + sha256 = "0zz3jb5hbgzwcdcyivz5pd4lfn716fnzld9pms4bjjfvcgpvydn2"; 184 184 } 185 185 { 186 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.12.0-darwin-amd64.tar.gz"; 187 - sha256 = "0ppkpbhl6l875rcfsr3hgsg61ambk7j3lyrqcbyn490xvv8xv407"; 186 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.13.0-darwin-amd64.tar.gz"; 187 + sha256 = "0dz583zm47v2x2aznc4yszxibmp9schp3b38yzmbry0xrkm1gryx"; 188 188 } 189 189 { 190 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v5.11.0-darwin-amd64.tar.gz"; 191 - sha256 = "0jj09ng5ksr36ipjmlnyn34jjd27mlmvhc27457bh7jyd5pvsxhw"; 190 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v5.14.0-darwin-amd64.tar.gz"; 191 + sha256 = "1ar4cfjmq3iszh08i9xmrqvhwc7lb8qvyhnnx4nh99wyw32ssk0a"; 192 192 } 193 193 { 194 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.27.0-darwin-amd64.tar.gz"; 195 - sha256 = "0gvycn3dx6r7f4qzdhlf2p166q7lpsfmnqh098gq1l2zq0vrw5zb"; 194 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.19.0-darwin-amd64.tar.gz"; 195 + sha256 = "1g5hjpi7w2zwknv6lcvlrbwvd7nq73n5953qzx764hfh6whp5431"; 196 196 } 197 197 { 198 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v2.5.0-darwin-amd64.tar.gz"; 199 - sha256 = "026i7hxa80b7mipw792anv1wplmz2w23irfy26bsh77an36hk46y"; 198 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.28.0-darwin-amd64.tar.gz"; 199 + sha256 = "01mar9qhgdmh02cqpjrsczfshiv0mpz83vm33y8igjnf371gg51g"; 200 200 } 201 201 { 202 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.16.0-darwin-amd64.tar.gz"; 203 - sha256 = "1wlqwm0661ksslzkn345qznqqj4acdawrwq30nkdf4xn998hnvx7"; 202 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v2.5.0-darwin-amd64.tar.gz"; 203 + sha256 = "026i7hxa80b7mipw792anv1wplmz2w23irfy26bsh77an36hk46y"; 204 204 } 205 205 { 206 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.9.0-darwin-amd64.tar.gz"; 207 - sha256 = "0ipfaq8bv4z63krrbday20nv5968k3gs8srkj9vfaw8nmzf6p4n5"; 206 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.11.0-darwin-amd64.tar.gz"; 207 + sha256 = "0gs08839j2miqvw8rx4b3hz76y5ac6sy7h8pryychcficgf3h2px"; 208 208 } 209 209 { 210 210 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.6.0-darwin-amd64.tar.gz"; 211 211 sha256 = "0pvq5mwl8scsyvkqgy32v1qs4060w0m12z0f1cw0aw34wd3zs67a"; 212 212 } 213 213 { 214 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.10.0-darwin-amd64.tar.gz"; 215 - sha256 = "097357wf3bcywyy46y6prl2q4dcfdhm299hhfjvn3vv610a04c3d"; 214 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.11.0-darwin-amd64.tar.gz"; 215 + sha256 = "1g3wxvw27v942s4fdym6nxcgipxrqgkh219mi6dn4j3n3kp15scj"; 216 216 } 217 217 { 218 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.15.1-darwin-amd64.tar.gz"; 219 - sha256 = "0y569cycmdgwapis05n1509krbihi00r9iqlxqpd8iaw9n07myry"; 218 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.15.2-darwin-amd64.tar.gz"; 219 + sha256 = "031pkzx7xshzbf9x5fb84a9699c6zcwqvx295s5diqw4jrcx6003"; 220 220 } 221 221 { 222 222 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.4.1-darwin-amd64.tar.gz"; ··· 227 227 sha256 = "1m5lh59h7nck1flzxs9m4n0ag0klk3jmnpf7hc509vffxs89xnjq"; 228 228 } 229 229 { 230 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-fastly-v5.0.0-darwin-amd64.tar.gz"; 231 - sha256 = "0mq9xak9m6qw6wzd33b20dapqandi23hid79ysry179p8hjg0dgy"; 230 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-fastly-v5.0.1-darwin-amd64.tar.gz"; 231 + sha256 = "02p8g3kirc9g9jgmv50l8c9jamidk389in33f7qnz22hck880dr8"; 232 232 } 233 233 { 234 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.34.0-darwin-amd64.tar.gz"; 235 - sha256 = "0h0p796qdx5ghbjslh0yzjlncrky0kx3xf1x19j0cd5xpqzakdp1"; 234 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.37.0-darwin-amd64.tar.gz"; 235 + sha256 = "1p37i9c8d66rvjp11ghjh5fhxg07lgwgpjmr0amjic1vpxlx96wc"; 236 236 } 237 237 { 238 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.16.0-darwin-amd64.tar.gz"; 239 - sha256 = "0bdz83vz8acad39fqcws26qm8wzr7pc1wwclh79vp8caav3hnbza"; 238 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.17.0-darwin-amd64.tar.gz"; 239 + sha256 = "16a8q87yb4d6ssdrvw5zgflq7bfr6zpf4ldf01y0ffc7hmgwpwbn"; 240 240 } 241 241 { 242 242 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.8.0-darwin-amd64.tar.gz"; 243 243 sha256 = "1z9kg9h1gw4s9k1qypir62hv4flx4njrxbxfkknawx29dps3wkff"; 244 244 } 245 245 { 246 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-google-native-v0.23.0-darwin-amd64.tar.gz"; 247 - sha256 = "0cagqdbg8gpihfy3qx31w0hgj96mv33paycwsgi53ra96vsz63hx"; 246 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-google-native-v0.26.0-darwin-amd64.tar.gz"; 247 + sha256 = "01d2vc6fqzp7zg30pmyp3i3jm0004k2jk8xxqp4hy03p6v7xvyc1"; 248 248 } 249 249 { 250 250 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.10.1-darwin-amd64.tar.gz"; 251 251 sha256 = "1jp9cfw8jj1wms73b5d1xhkmnylly061fxilxzvnpd49glam7da6"; 252 252 } 253 253 { 254 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.20.5-darwin-amd64.tar.gz"; 255 - sha256 = "058rbm195zdm8x5757r2i07ilayx5wbd0zfm0kxhqp3c4lrhz7a5"; 254 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.21.2-darwin-amd64.tar.gz"; 255 + sha256 = "038phqrwvyjqh9kvnrn9ic4ac3h6niahrlwz81lllqg757ibrd08"; 256 256 } 257 257 { 258 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.10.0-darwin-amd64.tar.gz"; 259 - sha256 = "11p3qa49nqaz2s30izhs9dbqz668fx36y88hs1llk59z0crj8x75"; 258 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.10.1-darwin-amd64.tar.gz"; 259 + sha256 = "1vl28h3vjxlcl86s8c74qx34wfxwx5rc0ba26zjjv0q91pklmlh8"; 260 260 } 261 261 { 262 262 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.4.0-darwin-amd64.tar.gz"; ··· 271 271 sha256 = "0a42rdjzircqkmhmw1m7qbs30vn1if48j4440daw5sr1r8gamcmf"; 272 272 } 273 273 { 274 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.5.0-darwin-amd64.tar.gz"; 275 - sha256 = "0d1w1zak2ma701w26va74ahi3lmsjywsk2x84ds4l4mj8ckpl2va"; 274 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.6.0-darwin-amd64.tar.gz"; 275 + sha256 = "1p79wp1sk5ka9xisjmmrv9s7aw6dghp22lkiz15vzrqwifm6nxmb"; 276 276 } 277 277 { 278 278 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.8.2-darwin-amd64.tar.gz"; ··· 291 291 sha256 = "0yv03kh209cwzi1b47bhsbxslmnk454qkx5lqcn6qnjyc7ij7k6x"; 292 292 } 293 293 { 294 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.10.2-darwin-amd64.tar.gz"; 295 - sha256 = "0h7jnrflm4p17jgan2i8g3clkrl5arkw7rd1wml80azhi6626qh1"; 294 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.11.0-darwin-amd64.tar.gz"; 295 + sha256 = "1f1wfj5vwa13d5rz2kfg9p3l12p0nl6vgyc6wiad2j5cmk9rmzd8"; 296 296 } 297 297 { 298 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v4.6.0-darwin-amd64.tar.gz"; 299 - sha256 = "16dxc4pkb5arb8qb6gg45m59jn20is3fcn0d1lc66d6sh35z7lsb"; 298 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v4.6.1-darwin-amd64.tar.gz"; 299 + sha256 = "0g1kh5zkkr9m1k5qmmmkay089j0yqbz9qap6k7gii1k601mm09sf"; 300 300 } 301 301 { 302 302 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v5.6.0-darwin-amd64.tar.gz"; ··· 321 321 ]; 322 322 aarch64-linux = [ 323 323 { 324 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.38.0-linux-arm64.tar.gz"; 325 - sha256 = "11nikfjvpc95cn4250wb19d4cvbr94mhi2fjhcafcha6xddyzpkl"; 324 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.40.1-linux-arm64.tar.gz"; 325 + sha256 = "1vb7ad3gadqhxf4jv5fkr9pf7lzliwaazmfl6j2ja5imqdl4iyri"; 326 326 } 327 327 { 328 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v5.3.1-linux-arm64.tar.gz"; 329 - sha256 = "0qyk51xrfdvlhj2fqyx1b8zsg68i0pvsv85ms34nhgiwzavgga0x"; 328 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v5.4.0-linux-arm64.tar.gz"; 329 + sha256 = "10gmwqfhvz1yp0ld69w01fmjnfw907pa0pmzjndm3p9fwqjrr2nd"; 330 330 } 331 331 { 332 332 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v3.0.0-linux-arm64.tar.gz"; ··· 337 337 sha256 = "1qrg5sq8fqyn9vq92xmdx0pql7hy4dhha3lxjp5ka386bf6jmamc"; 338 338 } 339 339 { 340 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v2.6.1-linux-arm64.tar.gz"; 341 - sha256 = "1584q22a6k5idvcya8a40xsaqj2r1yqwi9wq170l0ra05c716y5y"; 340 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v2.8.0-linux-arm64.tar.gz"; 341 + sha256 = "1n632w71bb93aajq13lgx0ijjx1wws0j8giwlv9pfp9fcgmsx42c"; 342 342 } 343 343 { 344 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.12.0-linux-arm64.tar.gz"; 345 - sha256 = "0kzcham4g6hymjkmmk0gidj5516fi01hw8apks6cqw98ms7wijj2"; 344 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.13.0-linux-arm64.tar.gz"; 345 + sha256 = "0ni0dp0wghcaybnzvvwyf0nbnyq8k2akkghxlym48z8dq7n4206y"; 346 + } 347 + { 348 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v5.14.0-linux-arm64.tar.gz"; 349 + sha256 = "0knzcqjpvgs9blarj0rf36racnaav8vii2yxl99rrs731cnf4l1w"; 346 350 } 347 351 { 348 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v5.11.0-linux-arm64.tar.gz"; 349 - sha256 = "17ifmpxpn900rd95s22h77dvvwzgiilpwgkqywfpd4mbg5v1n2fr"; 352 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.19.0-linux-arm64.tar.gz"; 353 + sha256 = "0agz4izq6plzsb4j5jic6dvnkks8q37gy025y5xlrlnczrr45k41"; 350 354 } 351 355 { 352 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.27.0-linux-arm64.tar.gz"; 353 - sha256 = "1qwrd49dwvalc08l9sbdxv6qy4m9y2v5cmpa2xrvbiab68azw3q8"; 356 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.28.0-linux-arm64.tar.gz"; 357 + sha256 = "0m44k0cllmaw17injy8l1pl9xx180nydia937p78v93fwmk8f65a"; 354 358 } 355 359 { 356 360 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v2.5.0-linux-arm64.tar.gz"; 357 361 sha256 = "1bxrh89hkw9b0g20d4apwhswl1dxb4v4nn5rkkkjd91ykin5idp2"; 358 362 } 359 363 { 360 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.16.0-linux-arm64.tar.gz"; 361 - sha256 = "0yzzch8mr8xfaymsjgvmvdn7dwmzpvc1cjqv83d1x7wqgjj241kx"; 362 - } 363 - { 364 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.9.0-linux-arm64.tar.gz"; 365 - sha256 = "0ikjbbhfb84b2zwm3wi6ffav5dfhgdkr9ks58i3xicrbc3swarfc"; 364 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.11.0-linux-arm64.tar.gz"; 365 + sha256 = "1l54kgg14lhgx694yrzabjn27m4xy90v7kifj9b0cdfly4jlhzhz"; 366 366 } 367 367 { 368 368 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.6.0-linux-arm64.tar.gz"; 369 369 sha256 = "085flnzp062p6ankfl77p1y7n8ijrhmknnb4r46x6b3lrw891pgd"; 370 370 } 371 371 { 372 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.10.0-linux-arm64.tar.gz"; 373 - sha256 = "0ykrfa4r7xhjbpbm8mnc2ry58a3h7zynbn8gxnspg0493znx1lva"; 372 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.11.0-linux-arm64.tar.gz"; 373 + sha256 = "1kmp1lg312d8l1b3sylc6fan5rracmb7rd2v871gwyqx6gya6aqk"; 374 374 } 375 375 { 376 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.15.1-linux-arm64.tar.gz"; 377 - sha256 = "1hz0hm3prwklkj8gjmkqvljjwcn7wrrsqga6mc53p6ljd370kn4k"; 376 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.15.2-linux-arm64.tar.gz"; 377 + sha256 = "0vanpq5mb3rdbdqflfwp8f1w94xim42ih3a7hc2cmbavyf1vg16a"; 378 378 } 379 379 { 380 380 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.4.1-linux-arm64.tar.gz"; ··· 385 385 sha256 = "111pia2f5xwkwaqs6p90ri29l5b3ivmahsa1bji4fwyyjyp22h4r"; 386 386 } 387 387 { 388 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-fastly-v5.0.0-linux-arm64.tar.gz"; 389 - sha256 = "0i32s062nmayj5dxl4ridblkz8h7rrvxdid16880m8x992apdrrs"; 388 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-fastly-v5.0.1-linux-arm64.tar.gz"; 389 + sha256 = "1cymvx8dx836d2vcnakgqz51nc033702dph66w8j4swj0sg4wd92"; 390 390 } 391 391 { 392 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.34.0-linux-arm64.tar.gz"; 393 - sha256 = "10cf1ki69ps21z905xd05rsvb42y4dp71g3rz5r3qibdsqc9rd8x"; 392 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.37.0-linux-arm64.tar.gz"; 393 + sha256 = "0wihyyww8nr2asfw1qkcn7zb31w6f15j94135v7wnzljil6pfibx"; 394 394 } 395 395 { 396 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.16.0-linux-arm64.tar.gz"; 397 - sha256 = "0hxbv264rp9iv5xng1q5wqwddazk9jqxll7as4pnlm9wcmf0inf6"; 396 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.17.0-linux-arm64.tar.gz"; 397 + sha256 = "0bjpccmn7h4cl7cvmflfzz5avh2hzmkfh3gibnjxfmgs5m92h0bf"; 398 398 } 399 399 { 400 400 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.8.0-linux-arm64.tar.gz"; 401 401 sha256 = "1w0azz06rhj04gs0bvfxn0a37z16jywhsyiyhimimynwpawh2amn"; 402 402 } 403 403 { 404 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-google-native-v0.23.0-linux-arm64.tar.gz"; 405 - sha256 = "1vx4gchka3kzrzwasmil180ji3756pakaha6fm85h49skgiwk59f"; 404 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-google-native-v0.26.0-linux-arm64.tar.gz"; 405 + sha256 = "0ra0ai2hfrdr9xpk83dykaddxknyngk2j6a71i4xwk3kmy4yy692"; 406 406 } 407 407 { 408 408 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.10.1-linux-arm64.tar.gz"; 409 409 sha256 = "0gis39k5kgdxl0i4afy78hkcmwpzm1shh4x713p7dg6h8w0afdmi"; 410 410 } 411 411 { 412 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.20.5-linux-arm64.tar.gz"; 413 - sha256 = "1df84xy6b13k9injjg11zxad8jn2xk66cizv2qphlwa1xripz7xw"; 412 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.21.2-linux-arm64.tar.gz"; 413 + sha256 = "12awf88y3iy3hhvpclwlvf6nx46phn0gb84z77k3mb3mp296fnyg"; 414 414 } 415 415 { 416 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.10.0-linux-arm64.tar.gz"; 417 - sha256 = "1sj7bxd415j1gr0p6rwg8k4z9vhjc1kc6vw4gj2cbnaby6mv43mr"; 416 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.10.1-linux-arm64.tar.gz"; 417 + sha256 = "1wkswrjh31m8smlwwl50n7z4pfg7gs0lkis2bqiwlyma2zqdqggr"; 418 418 } 419 419 { 420 420 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.4.0-linux-arm64.tar.gz"; ··· 429 429 sha256 = "1kqwb8i0gra5as5bd9r1swp1fwrfrr7x3vyag5xb0lmyljlcm4cb"; 430 430 } 431 431 { 432 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.5.0-linux-arm64.tar.gz"; 433 - sha256 = "0lky1gchcmjn6nxlasjqviq89hi2k9fi8lx7ac7hy6x6b7wl40sf"; 432 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.6.0-linux-arm64.tar.gz"; 433 + sha256 = "1knyj2djz077c38kls5gyjn0v83qif8qddgji488mr8k8nf4k6lg"; 434 434 } 435 435 { 436 436 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.8.2-linux-arm64.tar.gz"; ··· 449 449 sha256 = "1b9nw8q5m30csgxq0mg6npzwbsna4nwkwh7b33gax6fimalbcpal"; 450 450 } 451 451 { 452 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.10.2-linux-arm64.tar.gz"; 453 - sha256 = "14mhn1497gnbywk0z5ism303q3d8vd784i28fsf9xbzyhw58ci09"; 452 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.11.0-linux-arm64.tar.gz"; 453 + sha256 = "0d82rsr1aqkpvv0vaz3d11dwqnyww2na0vx7dqjxw5zf34z78h87"; 454 454 } 455 455 { 456 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v4.6.0-linux-arm64.tar.gz"; 457 - sha256 = "0mnw1cbi789c9iqnxg67pw1v6rgp6s0g2w3yvnbllbdafvd6pp3b"; 456 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v4.6.1-linux-arm64.tar.gz"; 457 + sha256 = "11n751m4z2gjslvf28xazhq123yfqyyhshni97ad5ki23i1v785l"; 458 458 } 459 459 { 460 460 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v5.6.0-linux-arm64.tar.gz"; ··· 479 479 ]; 480 480 aarch64-darwin = [ 481 481 { 482 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.38.0-darwin-arm64.tar.gz"; 483 - sha256 = "1h2l13x40iqdxdiys5714pb8l2vscwmc5c2gcyvdf2zhm2rwasv2"; 482 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.40.1-darwin-arm64.tar.gz"; 483 + sha256 = "1zhga32lii81pdgdj6bc2zsm45v8w0sqxk1m2srxgx27kynm848q"; 484 484 } 485 485 { 486 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v5.3.1-darwin-arm64.tar.gz"; 487 - sha256 = "16hkkcrv25xa74dz7sh5fppvz68smm6c70a8cph01pbxxr7gyamy"; 486 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v5.4.0-darwin-arm64.tar.gz"; 487 + sha256 = "1v6dwsjbqmg9qnlhf5jl98r5c171xnsp3fnyfkg2h8874scg2gpp"; 488 488 } 489 489 { 490 490 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v3.0.0-darwin-arm64.tar.gz"; ··· 495 495 sha256 = "10wjnyrwrmg1qjsqlizf9g85wadss3nxmdsh87cjvdbkfb3crp3b"; 496 496 } 497 497 { 498 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v2.6.1-darwin-arm64.tar.gz"; 499 - sha256 = "1qkbmig8831iwgnmygaj1055np49m6gl59lfvwd2yj6dz12fqxdi"; 498 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v2.8.0-darwin-arm64.tar.gz"; 499 + sha256 = "0lcg9p0wq6mk677xp0ga8wcy0pziag5n7y86plklbd2hs5ik13y6"; 500 500 } 501 501 { 502 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.12.0-darwin-arm64.tar.gz"; 503 - sha256 = "04jjxdlsywps3d03l4g37s5b7rlk97w35qjpnsf60nygxzxmvjk2"; 502 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.13.0-darwin-arm64.tar.gz"; 503 + sha256 = "11qrwc44vl0s59bbhjbb15nkcy8nb9lcsw9brb7whvxh2z080nbk"; 504 504 } 505 505 { 506 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v5.11.0-darwin-arm64.tar.gz"; 507 - sha256 = "1b3m5ndabhyh6fklbb9flgl07zqy3c82skfjd94021q7slp6hwaf"; 506 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v5.14.0-darwin-arm64.tar.gz"; 507 + sha256 = "1ib3162lbcg4ri0mrqj9qjzfxfgbf47vrazx58bj24j0z804wpcg"; 508 508 } 509 509 { 510 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.27.0-darwin-arm64.tar.gz"; 511 - sha256 = "011ryplg6ca1a5xal3bcv36rgwxgzf89h36k9nvwd8dsjq1qwrik"; 510 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.19.0-darwin-arm64.tar.gz"; 511 + sha256 = "1lw0gp5lyc2r1a3dsgr55adcja3rj66bfrmp5qncpdmpkcx2fs74"; 512 512 } 513 513 { 514 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v2.5.0-darwin-arm64.tar.gz"; 515 - sha256 = "030fyfj5yd4p0f7ffwdsqvkjwxihz96vgy2qqibhyyv3p6ymdpym"; 514 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.28.0-darwin-arm64.tar.gz"; 515 + sha256 = "15xhkk4d8l445zn3kmh7aqd476gcbig109jchz0r57yhs76hycyg"; 516 516 } 517 517 { 518 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.16.0-darwin-arm64.tar.gz"; 519 - sha256 = "0ilfxh9wghhyb62si2saxanb5gm2yipr4fh7zrjr1cl3qsh3qrsl"; 518 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v2.5.0-darwin-arm64.tar.gz"; 519 + sha256 = "030fyfj5yd4p0f7ffwdsqvkjwxihz96vgy2qqibhyyv3p6ymdpym"; 520 520 } 521 521 { 522 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.9.0-darwin-arm64.tar.gz"; 523 - sha256 = "0z1c0di0p35hn30di2vv93rzdfzqrswy4gg35ngqq4h1bwn7lszi"; 522 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.11.0-darwin-arm64.tar.gz"; 523 + sha256 = "1762izxr7vm2invlpff99afs76vln8q87xa0kxdlsn3jp664gbhw"; 524 524 } 525 525 { 526 526 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.6.0-darwin-arm64.tar.gz"; 527 527 sha256 = "11b8dr2ycn3p4k06y2f4pj19hy7zpq0glh8npqixmvn66flp3wa7"; 528 528 } 529 529 { 530 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.10.0-darwin-arm64.tar.gz"; 531 - sha256 = "1vgck2nwargd7rrmfgxd2j9qahhalas5fsad8szwj83anxi6r1jn"; 530 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.11.0-darwin-arm64.tar.gz"; 531 + sha256 = "0903sjihlr5wjf9ddnib3j072549d4342p0pnjprb4kacc1b43ln"; 532 532 } 533 533 { 534 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.15.1-darwin-arm64.tar.gz"; 535 - sha256 = "0vg38pn14h9sw7mcylbwnk78kz7yvnl78a0za11lybgl6qqybc8b"; 534 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.15.2-darwin-arm64.tar.gz"; 535 + sha256 = "1s2faanxajzd0x8qd1a42nzkzfjrkinwqw7654zgb8l25bgnhykd"; 536 536 } 537 537 { 538 538 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.4.1-darwin-arm64.tar.gz"; ··· 543 543 sha256 = "12bzicm43l7yvh02v5fx3z8v46l9i7a9f677735xi5rjbmd2an4c"; 544 544 } 545 545 { 546 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-fastly-v5.0.0-darwin-arm64.tar.gz"; 547 - sha256 = "11frjymm7k2lgrdiwjsa5hcak1z3mdjjfmzdz6a0sv84bqlxjj0j"; 546 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-fastly-v5.0.1-darwin-arm64.tar.gz"; 547 + sha256 = "1gmx1lympd3r4i2vsnnmd70qq3x0ijbv53j7vkys59g560rw1bvm"; 548 548 } 549 549 { 550 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.34.0-darwin-arm64.tar.gz"; 551 - sha256 = "0clsx0bsprqbv3rs3d960w1l40b9i8md9hqf7fm5k9dwjs0330by"; 550 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.37.0-darwin-arm64.tar.gz"; 551 + sha256 = "029zq7r58m69gwxr8ihay70qsgm2609daqn0h62ach0p9dzyisdq"; 552 552 } 553 553 { 554 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.16.0-darwin-arm64.tar.gz"; 555 - sha256 = "0l1jwmiscfwbh61q22gjx9yhng7dc5rvnln8licvih48193hqvbw"; 554 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.17.0-darwin-arm64.tar.gz"; 555 + sha256 = "0kqp1w7w6g9a6q0h0ahmrq2klxxj128x9dcln577f5js0yb14g1w"; 556 556 } 557 557 { 558 558 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.8.0-darwin-arm64.tar.gz"; 559 559 sha256 = "02jkpzz7kyb9i8mqis4ckqz5mwpwcgas1br7vmiipk8mw1pzwhyw"; 560 560 } 561 561 { 562 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-google-native-v0.23.0-darwin-arm64.tar.gz"; 563 - sha256 = "0gp6a9rbnlvi1g5ms7m7pd8g97lsi1rwp95p4rb3yv3fzypx5gh8"; 562 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-google-native-v0.26.0-darwin-arm64.tar.gz"; 563 + sha256 = "1k5a68pxis0hfk4lkfbz7s3jcj39pip035snl5p4kix6rn6k6n3n"; 564 564 } 565 565 { 566 566 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.10.1-darwin-arm64.tar.gz"; 567 567 sha256 = "1679zpv2r3i2acjmx2a6i7dc47p73gf3jw1k1aclasd5cyjf46jf"; 568 568 } 569 569 { 570 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.20.5-darwin-arm64.tar.gz"; 571 - sha256 = "151i1733ab4v93zm61kbzqj76h87vx6pgmysf7vjmzbpxjg1dida"; 570 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.21.2-darwin-arm64.tar.gz"; 571 + sha256 = "0csvmcbwpqlychwg5h12vjmdxf803aw5m6v10rlbhdhncg38zgcj"; 572 572 } 573 573 { 574 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.10.0-darwin-arm64.tar.gz"; 575 - sha256 = "1gqmpy46w49hi3d71qkvmps3mq1wkdrcfbcb04x0sjdhirbyapq9"; 574 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.10.1-darwin-arm64.tar.gz"; 575 + sha256 = "0x883w9nvvxdsm0knxzzfnnv0lbbysbs04ym681qxzy9pi7ijhj3"; 576 576 } 577 577 { 578 578 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.4.0-darwin-arm64.tar.gz"; ··· 587 587 sha256 = "0kgakfslwy4pz5k74d9ciywapdw7a2zq9y9cs8rigyq97m4vphwf"; 588 588 } 589 589 { 590 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.5.0-darwin-arm64.tar.gz"; 591 - sha256 = "0im3ydgkm4vjia17c03szv1i77jq7abczq0a023k0kw8r3dgd8xc"; 590 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.6.0-darwin-arm64.tar.gz"; 591 + sha256 = "1cl9qj041z8fgc95vgsx7y0f5jxyjr8cjb5ain4gl501v4s88hn9"; 592 592 } 593 593 { 594 594 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.8.2-darwin-arm64.tar.gz"; ··· 607 607 sha256 = "09vg056rjzrp8zqh4kjjlq4dnkkzxz32kzawmaj8fxi6ds1s9y9i"; 608 608 } 609 609 { 610 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.10.2-darwin-arm64.tar.gz"; 611 - sha256 = "19qpzjrdhjqwz0zr0yj4f34fgwwa7r8fm548ymdfx9a6x3k9a1yb"; 610 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.11.0-darwin-arm64.tar.gz"; 611 + sha256 = "0nhmi6m22xlxbxq6scknj3025wpmmf32vly5k7dpzjai695n48s7"; 612 612 } 613 613 { 614 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v4.6.0-darwin-arm64.tar.gz"; 615 - sha256 = "143qpa51q6fl2s759fjhfq6z2fqwkqcwfpzmzsxdjh74mfqz5xpz"; 614 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v4.6.1-darwin-arm64.tar.gz"; 615 + sha256 = "0yyr5dv612ar8c12w74zwp0n1v77lry548fs6b0d20cc3a6d10gb"; 616 616 } 617 617 { 618 618 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v5.6.0-darwin-arm64.tar.gz";
+1 -1
pkgs/tools/admin/pulumi/update.sh
··· 12 12 13 13 # Version of Pulumi from 14 14 # https://www.pulumi.com/docs/get-started/install/versions/ 15 - VERSION="3.38.0" 15 + VERSION="3.40.1" 16 16 17 17 # An array of plugin names. The respective repository inside Pulumi's 18 18 # Github organization is called pulumi-$name by convention.
+3 -3
pkgs/tools/misc/mutagen-compose/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "mutagen-compose"; 5 - version = "0.15.3"; 5 + version = "0.15.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mutagen-io"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-B7ZMECeNYIfFQ7+VM+tBLj6KLCxicNfopXzL7AtrSFc="; 11 + sha256 = "sha256-fr9x9QA82wybfsnO/nXPgRBPmNgCBO0Rx+AosBV8Its="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-AfOsnD3e2C2c/Qc26IlP9CeaoSAhP78Nupu245ma1Z0="; 14 + vendorSha256 = "sha256-tFrwrpUIc7BnNJe8BBn+jmEeYTekBwEz0GAkHxLUcnU="; 15 15 16 16 doCheck = false; 17 17
+20
pkgs/tools/misc/proximity-sort/default.nix
··· 1 + { lib, rustPlatform, fetchCrate }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "proximity-sort"; 5 + version = "1.2.0"; 6 + 7 + src = fetchCrate { 8 + inherit pname version; 9 + sha256 = "sha256-So3cvL2F7wfcPVPEBspMLH4f5KSbVQeUKLJve/BXLA4="; 10 + }; 11 + 12 + cargoSha256 = "sha256-VGxU3CD5pj0Hrt6nUbNU7eNEpNrzHp/WaFHAKPUz8DA="; 13 + 14 + meta = with lib; { 15 + description = "Simple command-line utility for sorting inputs by proximity to a path argument"; 16 + homepage = "https://github.com/jonhoo/proximity-sort"; 17 + license = with licenses; [ mit /* or */ asl20 ]; 18 + maintainers = with maintainers; [ figsoda ]; 19 + }; 20 + }
+2 -2
pkgs/tools/security/cdk-go/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "cdk-go"; 9 - version = "1.4.1"; 9 + version = "1.5.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "cdk-team"; 13 13 repo = "CDK"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-OeQlepdHu5+rGEhw3x0uM1wy7/8IkA5Lh5k3yhytXwY="; 15 + sha256 = "sha256-17LeHYhOhRt6s9Hhb5yhCUUdauVgYHI4QCUPoPMr4DI="; 16 16 }; 17 17 18 18 vendorSha256 = "sha256-aJN/d/BxmleRXKw6++k6e0Vb0Gs5zg1QfakviABYTog=";
+1 -1
pkgs/tools/security/silenthound/default.nix
··· 17 17 18 18 propagatedBuildInputs = with python3.pkgs; [ 19 19 colorama 20 - ldap 20 + python-ldap 21 21 ]; 22 22 23 23 dontBuild = true;
+1 -5
pkgs/tools/system/rocm-smi/default.nix
··· 32 32 substituteInPlace oam/CMakeLists.txt \ 33 33 --replace "DESTINATION oam/" "DESTINATION " \ 34 34 --replace 'DESTINATION ''${OAM_NAME}/' "DESTINATION " 35 - 36 - # Update relative path to librocm_smi64 in the Python binding. 37 - substituteInPlace python_smi_tools/rsmiBindings.py \ 38 - --replace "/../lib/librocm_smi64.so" "/../../librocm_smi64.so" 39 35 ''; 40 36 41 37 postInstall = '' 42 - wrapPythonProgramsIn $out/bin 38 + wrapPythonProgramsIn $out 43 39 ''; 44 40 45 41 passthru.updateScript = writeScript "update.sh" ''
+8
pkgs/top-level/all-packages.nix
··· 3744 3744 3745 3745 duf = callPackage ../tools/misc/duf { }; 3746 3746 3747 + dum = callPackage ../development/tools/dum { }; 3748 + 3747 3749 inherit (ocaml-ng.ocamlPackages_4_10) dune_1; 3748 3750 inherit (ocamlPackages) dune_2 dune_3 dune-release; 3749 3751 ··· 13983 13985 13984 13986 gwt240 = callPackage ../development/compilers/gwt/2.4.0.nix { }; 13985 13987 13988 + hvm = callPackage ../development/compilers/hvm { 13989 + inherit (darwin.apple_sdk.frameworks) Security; 13990 + }; 13991 + 13986 13992 idrisPackages = dontRecurseIntoAttrs (callPackage ../development/idris-modules { 13987 13993 idris-no-deps = haskellPackages.idris; 13988 13994 }); ··· 23748 23754 prometheus-xmpp-alerts = callPackage ../servers/monitoring/prometheus/xmpp-alerts.nix { }; 23749 23755 23750 23756 prometheus-cpp = callPackage ../development/libraries/prometheus-cpp { }; 23757 + 23758 + proximity-sort = callPackage ../tools/misc/proximity-sort { }; 23751 23759 23752 23760 psqlodbc = callPackage ../development/libraries/psqlodbc { }; 23753 23761
+4
pkgs/top-level/python-packages.nix
··· 2953 2953 2954 2954 enamlx = callPackage ../development/python-modules/enamlx { }; 2955 2955 2956 + energyflow = callPackage ../development/python-modules/energyflow { }; 2957 + 2956 2958 enhancements = callPackage ../development/python-modules/enhancements { }; 2957 2959 2958 2960 enlighten = callPackage ../development/python-modules/enlighten { }; ··· 11671 11673 waqiasync = callPackage ../development/python-modules/waqiasync { }; 11672 11674 11673 11675 wasabi = callPackage ../development/python-modules/wasabi { }; 11676 + 11677 + wasserstein = callPackage ../development/python-modules/wasserstein { }; 11674 11678 11675 11679 wasm = callPackage ../development/python-modules/wasm { }; 11676 11680