diff --git a/.github/workflows/manual-nixos-v2.yml b/.github/workflows/manual-nixos-v2.yml index d9687774da19..362a73e4bb57 100644 --- a/.github/workflows/manual-nixos-v2.yml +++ b/.github/workflows/manual-nixos-v2.yml @@ -10,6 +10,9 @@ on: # the release notes and some css and js files from there. # See nixos/doc/manual/default.nix - "doc/**" + # Build when something in lib changes + # Since the lib functions are used to 'massage' the options before producing the manual + - "lib/**" permissions: {} diff --git a/doc/languages-frameworks/cosmic.section.md b/doc/languages-frameworks/cosmic.section.md new file mode 100644 index 000000000000..9e07985b1295 --- /dev/null +++ b/doc/languages-frameworks/cosmic.section.md @@ -0,0 +1,152 @@ +# COSMIC {#sec-language-cosmic} + +## Packaging COSMIC applications {#ssec-cosmic-packaging} + +COSMIC (Computer Operating System Main Interface Components) is a desktop environment developed by +System76, primarily for the Pop!_OS Linux distribution. Applications in the COSMIC ecosystem are +written in Rust and use libcosmic, which builds on the Iced GUI framework. This section explains +how to properly package and integrate COSMIC applications within Nix. + +### libcosmicAppHook {#ssec-cosmic-libcosmic-app-hook} + +The `libcosmicAppHook` is a setup hook that helps with this by automatically configuring +and wrapping applications based on libcosmic. It handles many common requirements like: + +- Setting up proper linking for libraries that may be dlopen'd by libcosmic/iced apps +- Configuring XDG paths for settings schemas, icons, and other resources +- Managing Vergen environment variables for build-time information +- Setting up Rust linker flags for specific libraries + +To use the hook, simply add it to your package's `nativeBuildInputs`: + +```nix +{ + lib, + rustPlatform, + libcosmicAppHook, +}: +rustPlatform.buildRustPackage { + # ... + nativeBuildInputs = [ libcosmicAppHook ]; + # ... +} +``` + +### Settings fallback {#ssec-cosmic-settings-fallback} + +COSMIC applications use libcosmic's UI components, which may need access to theme settings. The +`cosmic-settings` package provides default theme settings as a fallback in its `share` directory. +By default, `libcosmicAppHook` includes this fallback path in `XDG_DATA_DIRS`, ensuring that COSMIC +applications will have access to theme settings even if they aren't available elsewhere in the +system. + +This fallback behavior can be disabled by setting `includeSettings = false` when including the hook: + +```nix +{ + lib, + rustPlatform, + libcosmicAppHook, +}: +let + # Get build-time version of libcosmicAppHook + libcosmicAppHook' = (libcosmicAppHook.__spliced.buildHost or libcosmicAppHook).override { + includeSettings = false; + }; +in +rustPlatform.buildRustPackage { + # ... + nativeBuildInputs = [ libcosmicAppHook' ]; + # ... +} +``` + +Note that `cosmic-settings` is a separate application and not a part of the libcosmic settings +system itself. It's included by default in `libcosmicAppHook` only to provide these fallback theme +settings. + +### Icons {#ssec-cosmic-icons} + +COSMIC applications can use icons from the COSMIC icon theme. While COSMIC applications can build +and run without these icons, they would be missing visual elements. The `libcosmicAppHook` +automatically includes `cosmic-icons` in the wrapped application's `XDG_DATA_DIRS` as a fallback, +ensuring that the application has access to its required icons even if the system doesn't have the +COSMIC icon theme installed globally. + +Unlike the `cosmic-settings` fallback, the `cosmic-icons` fallback cannot be removed or disabled, as +it is essential for COSMIC applications to have access to these icons for proper visual rendering. + +### Runtime Libraries {#ssec-cosmic-runtime-libraries} + +COSMIC applications built on libcosmic and Iced require several runtime libraries that are dlopen'd +rather than linked directly. The `libcosmicAppHook` ensures that these libraries are correctly +linked by setting appropriate Rust linker flags. The libraries handled include: + +- Graphics libraries (EGL, Vulkan) +- Input libraries (xkbcommon) +- Display server protocols (Wayland, X11) + +This ensures that the applications will work correctly at runtime, even though they use dynamic +loading for these dependencies. + +### Adding custom wrapper arguments {#ssec-cosmic-custom-wrapper-args} + +You can pass additional arguments to the wrapper using `libcosmicAppWrapperArgs` in the `preFixup` hook: + +```nix +{ + lib, + rustPlatform, + libcosmicAppHook, +}: +rustPlatform.buildRustPackage { + # ... + preFixup = '' + libcosmicAppWrapperArgs+=(--set-default ENVIRONMENT_VARIABLE VALUE) + ''; + # ... +} +``` + +## Frequently encountered issues {#ssec-cosmic-common-issues} + +### Setting up Vergen environment variables {#ssec-cosmic-common-issues-vergen} + +Many COSMIC applications use the Vergen Rust crate for build-time information. The `libcosmicAppHook` +automatically sets up the `VERGEN_GIT_COMMIT_DATE` environment variable based on `SOURCE_DATE_EPOCH` +to ensure reproducible builds. + +However, some applications may explicitly require additional Vergen environment variables. +Without these properly set, you may encounter build failures with errors like: + +``` +> cargo:rerun-if-env-changed=VERGEN_GIT_COMMIT_DATE +> cargo:rerun-if-env-changed=VERGEN_GIT_SHA +> +> --- stderr +> Error: no suitable 'git' command found! +> warning: build failed, waiting for other jobs to finish... +``` + +While `libcosmicAppHook` handles `VERGEN_GIT_COMMIT_DATE`, you may need to explicitly set other +variables. For applications that require these variables, you should set them directly in the +package definition: + +```nix +{ + lib, + rustPlatform, + libcosmicAppHook, +}: +rustPlatform.buildRustPackage { + # ... + env = { + VERGEN_GIT_COMMIT_DATE = "2025-01-01"; + VERGEN_GIT_SHA = "0000000000000000000000000000000000000000"; # SHA-1 hash of the commit + }; + # ... +} +``` + +Not all COSMIC applications require these variables, but for those that do, setting them explicitly +will prevent build failures. diff --git a/doc/languages-frameworks/index.md b/doc/languages-frameworks/index.md index 50c83ec939bc..a08318540aac 100644 --- a/doc/languages-frameworks/index.md +++ b/doc/languages-frameworks/index.md @@ -58,6 +58,7 @@ beam.section.md bower.section.md chicken.section.md coq.section.md +cosmic.section.md crystal.section.md cuda.section.md cuelang.section.md diff --git a/doc/redirects.json b/doc/redirects.json index 4757c2672057..a229e00a1ec7 100644 --- a/doc/redirects.json +++ b/doc/redirects.json @@ -62,6 +62,9 @@ "sec-build-helper-extendMkDerivation": [ "index.html#sec-build-helper-extendMkDerivation" ], + "sec-language-cosmic": [ + "index.html#sec-language-cosmic" + ], "sec-modify-via-packageOverrides": [ "index.html#sec-modify-via-packageOverrides" ], @@ -317,6 +320,30 @@ "sec-tools-of-stdenv": [ "index.html#sec-tools-of-stdenv" ], + "ssec-cosmic-common-issues": [ + "index.html#ssec-cosmic-common-issues" + ], + "ssec-cosmic-common-issues-vergen": [ + "index.html#ssec-cosmic-common-issues-vergen" + ], + "ssec-cosmic-custom-wrapper-args": [ + "index.html#ssec-cosmic-custom-wrapper-args" + ], + "ssec-cosmic-icons": [ + "index.html#ssec-cosmic-icons" + ], + "ssec-cosmic-libcosmic-app-hook": [ + "index.html#ssec-cosmic-libcosmic-app-hook" + ], + "ssec-cosmic-packaging": [ + "index.html#ssec-cosmic-packaging" + ], + "ssec-cosmic-runtime-libraries": [ + "index.html#ssec-cosmic-runtime-libraries" + ], + "ssec-cosmic-settings-fallback": [ + "index.html#ssec-cosmic-settings-fallback" + ], "ssec-stdenv-dependencies": [ "index.html#ssec-stdenv-dependencies" ], diff --git a/nixos/doc/manual/installation/changing-config.chapter.md b/nixos/doc/manual/installation/changing-config.chapter.md index 192696b74171..07a0074d17e7 100644 --- a/nixos/doc/manual/installation/changing-config.chapter.md +++ b/nixos/doc/manual/installation/changing-config.chapter.md @@ -5,13 +5,12 @@ configuration of your machine. Whenever you've [changed something](#ch-configuration) in that file, you should do ```ShellSession -$ nixos-rebuild switch --use-remote-sudo +# nixos-rebuild switch ``` -to build the new configuration as your current user, and as the root user, -make it the default configuration for booting. `switch` will also try to -realise the configuration in the running system (e.g., by restarting system -services). +to build the new configuration, make it the default configuration for +booting, and try to realise the configuration in the running system +(e.g., by restarting system services). ::: {.warning} This command doesn't start/stop [user services](#opt-systemd.user.services) @@ -20,23 +19,14 @@ user services. ::: ::: {.warning} -Applying a configuration is an action that must be done by the root user, so the -`switch`, `boot` and `test` commands should be ran with the `--use-remote-sudo` -flag. Despite its odd name, this flag runs the activation script with elevated -permissions, regardless of whether or not the target system is remote, without -affecting the other stages of the `nixos-rebuild` call. This allows unprivileged -users to rebuild the system and only elevate their permissions when necessary. - -Alternatively, one can run the whole command as root while preserving user -environment variables by prefixing the command with `sudo -E`. However, this -method may create root-owned files in `$HOME/.cache` if Nix decides to use the -cache during evaluation. +These commands must be executed as root, so you should either run them +from a root shell or by prefixing them with `sudo -i`. ::: You can also do ```ShellSession -$ nixos-rebuild test --use-remote-sudo +# nixos-rebuild test ``` to build the configuration and switch the running system to it, but @@ -47,7 +37,7 @@ configuration. There is also ```ShellSession -$ nixos-rebuild boot --use-remote-sudo +# nixos-rebuild boot ``` to build the configuration and make it the boot default, but not switch @@ -57,7 +47,7 @@ You can make your configuration show up in a different submenu of the GRUB 2 boot screen by giving it a different *profile name*, e.g. ```ShellSession -$ nixos-rebuild switch -p test --use-remote-sudo +# nixos-rebuild switch -p test ``` which causes the new configuration (and previous ones created using @@ -68,7 +58,7 @@ configurations. A repl, or read-eval-print loop, is also available. You can inspect your configuration and use the Nix language with ```ShellSession -$ nixos-rebuild repl +# nixos-rebuild repl ``` Your configuration is loaded into the `config` variable. Use tab for autocompletion, use the `:r` command to reload the configuration files. See `:?` or [`nix repl` in the Nix manual](https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-repl.html) to learn more. diff --git a/nixos/modules/services/networking/syncthing.nix b/nixos/modules/services/networking/syncthing.nix index 49ab48e3a15d..fdf38ac75539 100644 --- a/nixos/modules/services/networking/syncthing.nix +++ b/nixos/modules/services/networking/syncthing.nix @@ -62,7 +62,7 @@ let >"$RUNTIME_DIRECTORY/api_key" do sleep 1; done (printf "X-API-Key: "; cat "$RUNTIME_DIRECTORY/api_key") >"$RUNTIME_DIRECTORY/headers" - ${pkgs.curl}/bin/curl -sSLk -H "@$RUNTIME_DIRECTORY/headers" \ + ${pkgs.curl}/bin/curl --fail -sSLk -H "@$RUNTIME_DIRECTORY/headers" \ --retry 1000 --retry-delay 1 --retry-all-errors \ "$@" } @@ -121,6 +121,7 @@ let '[.[].${s.GET_IdAttrName}] - $new_ids | .[]' )" for id in ''${stale_${conf_type}_ids}; do + >&2 echo "Deleting stale device: $id" curl -X DELETE ${s.baseAddress}/$id done '' diff --git a/pkgs/applications/editors/vim/plugins/non-generated/blink-cmp/default.nix b/pkgs/applications/editors/vim/plugins/non-generated/blink-cmp/default.nix index 9ed2640a853f..a951974fd126 100644 --- a/pkgs/applications/editors/vim/plugins/non-generated/blink-cmp/default.nix +++ b/pkgs/applications/editors/vim/plugins/non-generated/blink-cmp/default.nix @@ -2,19 +2,18 @@ lib, rustPlatform, fetchFromGitHub, - fetchpatch, stdenv, vimUtils, nix-update-script, git, }: let - version = "0.13.1"; + version = "0.14.0"; src = fetchFromGitHub { owner = "Saghen"; repo = "blink.cmp"; tag = "v${version}"; - hash = "sha256-eOlTkWMzQTZPPKPKUxg8Q2PwkOhfaQdrMZkg9Ew8t/g="; + hash = "sha256-aY+bBP3DOdr+yA0HKKUBR/87g096NXH9h4EUrIJY92Y="; }; blink-fuzzy-lib = rustPlatform.buildRustPackage { inherit version src; @@ -41,18 +40,8 @@ vimUtils.buildVimPlugin { '' mkdir -p target/release ln -s ${blink-fuzzy-lib}/lib/libblink_cmp_fuzzy${ext} target/release/libblink_cmp_fuzzy${ext} - echo -n "nix" > target/release/version ''; - # TODO: Remove this patch when updating to next version - patches = [ - (fetchpatch { - name = "blink-add-bypass-for-nix.patch"; - url = "https://github.com/Saghen/blink.cmp/commit/6c83ef1ae34abd7ef9a32bfcd9595ac77b61037c.diff?full_index=1"; - hash = "sha256-304F1gDDKVI1nXRvvQ0T1xBN+kHr3jdmwMMp8CNl+GU="; - }) - ]; - passthru = { updateScript = nix-update-script { attrPath = "vimPlugins.blink-cmp.blink-fuzzy-lib"; diff --git a/pkgs/applications/editors/vim/plugins/non-generated/blink-pairs/default.nix b/pkgs/applications/editors/vim/plugins/non-generated/blink-pairs/default.nix new file mode 100644 index 000000000000..d469e1ee8dbd --- /dev/null +++ b/pkgs/applications/editors/vim/plugins/non-generated/blink-pairs/default.nix @@ -0,0 +1,61 @@ +{ + lib, + rustPlatform, + fetchFromGitHub, + pkg-config, + vimUtils, + stdenv, + nix-update-script, +}: +let + version = "0.2.0"; + + src = fetchFromGitHub { + owner = "Saghen"; + repo = "blink.pairs"; + tag = "v${version}"; + hash = "sha256-fOOo+UnrbQJFWyqjpiFwhytlPoPRnUlGswQdZb3/ws0="; + }; + + blink-pairs-lib = rustPlatform.buildRustPackage { + pname = "blink-pairs"; + inherit version src; + + useFetchCargoVendor = true; + cargoHash = "sha256-vkybRuym1yibaw943Gs9luYLdYEp4tgvA8e4maATiTY="; + + nativeBuildInputs = [ + pkg-config + ]; + }; +in +vimUtils.buildVimPlugin { + pname = "blink.pairs"; + inherit version src; + + preInstall = + let + ext = stdenv.hostPlatform.extensions.sharedLibrary; + in + '' + mkdir -p target/release + ln -s ${blink-pairs-lib}/lib/libblink_pairs${ext} target/release/ + ''; + + passthru = { + updateScript = nix-update-script { + attrPath = "vimPlugins.blink-pairs.blink-pairs-lib"; + }; + + # needed for the update script + inherit blink-pairs-lib; + }; + + meta = { + description = "Rainbow highlighting and intelligent auto-pairs for Neovim"; + homepage = "https://github.com/Saghen/blink.pairs"; + changelog = "https://github.com/Saghen/blink.pairs/blob/${src.tag}/CHANGELOG.md"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ isabelroses ]; + }; +} diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index a78d1b5c4699..c81e450df2e7 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -308,6 +308,8 @@ in dependencies = [ self.plenary-nvim ]; }; + blink-pairs = callPackage ./non-generated/blink-pairs { }; + bluloco-nvim = super.bluloco-nvim.overrideAttrs { dependencies = [ self.lush-nvim ]; }; diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 676abafbad2d..30804a0c7c26 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -4178,6 +4178,8 @@ let }; }; + rooveterinaryinc.roo-cline = callPackage ./rooveterinaryinc.roo-cline { }; + RoweWilsonFrederiskHolme.wikitext = buildVscodeMarketplaceExtension { mktplcRef = { name = "wikitext"; diff --git a/pkgs/applications/editors/vscode/extensions/rooveterinaryinc.roo-cline/default.nix b/pkgs/applications/editors/vscode/extensions/rooveterinaryinc.roo-cline/default.nix new file mode 100644 index 000000000000..2690383e57fd --- /dev/null +++ b/pkgs/applications/editors/vscode/extensions/rooveterinaryinc.roo-cline/default.nix @@ -0,0 +1,21 @@ +{ + lib, + vscode-utils, +}: + +vscode-utils.buildVscodeMarketplaceExtension { + mktplcRef = { + publisher = "RooVeterinaryInc"; + name = "roo-cline"; + version = "3.8.6"; + hash = "sha256-t3QUqe0qYizrJQcsEmYYmNYS/cpYiHQXJHtzHk9MGS8="; + }; + + meta = { + description = "AI-powered autonomous coding agent that lives in your editor"; + downloadPage = "https://marketplace.visualstudio.com/items?itemName=RooVeterinaryInc.roo-cline"; + homepage = "https://github.com/RooVetGit/Roo-Code"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ emaryn ]; + }; +} diff --git a/pkgs/applications/networking/browsers/vivaldi/default.nix b/pkgs/applications/networking/browsers/vivaldi/default.nix index a917826e62b7..0183fcb07727 100644 --- a/pkgs/applications/networking/browsers/vivaldi/default.nix +++ b/pkgs/applications/networking/browsers/vivaldi/default.nix @@ -24,7 +24,7 @@ let vivaldiName = if isSnapshot then "vivaldi-snapshot" else "vivaldi"; in stdenv.mkDerivation rec { pname = "vivaldi"; - version = "7.1.3570.58"; + version = "7.1.3570.60"; suffix = { aarch64-linux = "arm64"; @@ -34,8 +34,8 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "https://downloads.vivaldi.com/${branch}/vivaldi-${branch}_${version}-1_${suffix}.deb"; hash = { - aarch64-linux = "sha256-t5dC6FZVU3mCoEwMMYAuTJ8VksCfjxYnxCVXdxDSqbI="; - x86_64-linux = "sha256-5qr9K57fFxnsDD7uy7qUIFWxH+UevGpLN2Z2td4h9RA="; + aarch64-linux = "sha256-x7CjbOrEb0+/1eqRoYTxA1RDxQeLJFmziuFcBapYaOU="; + x86_64-linux = "sha256-G0y49vUsFJTzxKRw1ZsXQvep7/MtGaO0FAF2nAinysw="; }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); }; diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 2decc3af75d5..3253d1b18c69 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -207,13 +207,13 @@ "vendorHash": "sha256-qFOfE4yWJfdPtGiGbk+oWzA06QvW0WCd6iUqEMTxBBk=" }, "buildkite": { - "hash": "sha256-ihP2q0sCKd4myqANLhKrBfIX+macLvJkQ+/3hMzVM3A=", + "hash": "sha256-Zlc82lncNf+jeYBck8QBJKuX4pmQmkkb4vYR+T8DoXU=", "homepage": "https://registry.terraform.io/providers/buildkite/buildkite", "owner": "buildkite", "repo": "terraform-provider-buildkite", - "rev": "v1.16.2", + "rev": "v1.16.3", "spdx": "MIT", - "vendorHash": "sha256-zl9RRAqDmNigtJIYMti2PgRSSg7KRys0H5BVAm6RW1k=" + "vendorHash": "sha256-/d1oml8nUOBx6sOe1k43EhbAyfbObJJuoJCEaHQuIZs=" }, "ccloud": { "hash": "sha256-Dpx0eugcHCJV8GNPqjxx4P9ohgJgB10DTnHr+CeN/iQ=", @@ -426,11 +426,11 @@ "vendorHash": "sha256-aTQreRL0UTMYWLs25qsdwdN+PaJcOHwLRA8CjIAsYi0=" }, "exoscale": { - "hash": "sha256-r5wQQVbonGqZrzsr/gdbhrrbXC8ej/sMGvB1xk3pvUA=", + "hash": "sha256-fD2PQ/WNmifAlY27V0y47wDWEfhCXql0b1y8J5uSkNk=", "homepage": "https://registry.terraform.io/providers/exoscale/exoscale", "owner": "exoscale", "repo": "terraform-provider-exoscale", - "rev": "v0.62.3", + "rev": "v0.63.0", "spdx": "MPL-2.0", "vendorHash": null }, @@ -507,13 +507,13 @@ "vendorHash": "sha256-VPJ0ekrGEzhIZ6ExrU5sLb2meFHT9cak53BO7z6BCC4=" }, "google": { - "hash": "sha256-qpqpb1uXREMMtd/3TyXIdn3e2TjLSTSP5if+g/e4XhU=", + "hash": "sha256-9xieQT5yY1h52/tksEmX9iYXtDjYxkSL/pvC2XPXN/4=", "homepage": "https://registry.terraform.io/providers/hashicorp/google", "owner": "hashicorp", "repo": "terraform-provider-google", - "rev": "v6.24.0", + "rev": "v6.25.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-UzoyVVBSrpxQnTfTJvGHIGR0wSFx8cSVVuTpo9tio2A=" + "vendorHash": "sha256-kzugr8EaPROHy/3IVOsGkitpTixuiOw8R6kYedIrIuw=" }, "google-beta": { "hash": "sha256-1lrov28rU1K4QEiTuRqzaTLMzL+sZVsOLfgj3KNNJsw=", @@ -642,11 +642,11 @@ "vendorHash": null }, "ibm": { - "hash": "sha256-VMiTOItbL8GV3gUlUu68WCzWgGLTh6Lk6S/fUkuMI68=", + "hash": "sha256-enisQ1DOrA4HBi0Sr+6ZNIKnbUoH3LCXBN11J03hPhc=", "homepage": "https://registry.terraform.io/providers/IBM-Cloud/ibm", "owner": "IBM-Cloud", "repo": "terraform-provider-ibm", - "rev": "v1.76.0", + "rev": "v1.76.1", "spdx": "MPL-2.0", "vendorHash": "sha256-YUCyq1GiFnXSmx9VvhYc3MGnrMXdnOuAVx9BKp1R2N8=" }, @@ -913,11 +913,11 @@ "vendorHash": null }, "okta": { - "hash": "sha256-QvJ7yQmyOxhBltfckFC5Nkv7DXdpH79JRVF4BRAx+zs=", + "hash": "sha256-Yfs+yd5AgHL8Wl9/Zq922WJwJUOjoTshOa9RyI/AGZc=", "homepage": "https://registry.terraform.io/providers/okta/okta", "owner": "okta", "repo": "terraform-provider-okta", - "rev": "v4.14.1", + "rev": "v4.15.0", "spdx": "MPL-2.0", "vendorHash": "sha256-pykDVH44iZoOihiRr9rA9rEsCc9N6TD+UMbHelab6Nw=" }, @@ -1120,13 +1120,13 @@ "vendorHash": "sha256-Ry791h5AuYP03nex9nM8X5Mk6PeL7hNDbFyVRvVPJNE=" }, "scaleway": { - "hash": "sha256-ZMY69sfWN0281l+QEN6jUpVevYN7Z1CRDey+AqVDq8o=", + "hash": "sha256-5sLi0W5SKgaY8y85aFcVE/TE87SxpkGfhwYRF9fPf94=", "homepage": "https://registry.terraform.io/providers/scaleway/scaleway", "owner": "scaleway", "repo": "terraform-provider-scaleway", - "rev": "v2.50.0", + "rev": "v2.51.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-TbA6GlRSdyzkc64SU9Tn6o+DAvAN9RqR5M6DH83Tjng=" + "vendorHash": "sha256-qIBSCRvKSfSjxM+PtcS815g0WOKHZzSK9yikXbYUWaw=" }, "secret": { "hash": "sha256-MmAnA/4SAPqLY/gYcJSTnEttQTsDd2kEdkQjQj6Bb+A=", @@ -1373,13 +1373,13 @@ "vendorHash": null }, "utils": { - "hash": "sha256-rCTY06SEsppImhBZmx5AX58sOsI2NPJ5oK3+o64MIy8=", + "hash": "sha256-BnC5ihbOnua4ddTzM8mvWbKz5L13R2NT9c68teVLWo0=", "homepage": "https://registry.terraform.io/providers/cloudposse/utils", "owner": "cloudposse", "repo": "terraform-provider-utils", - "rev": "v1.28.0", + "rev": "v1.29.0", "spdx": "Apache-2.0", - "vendorHash": "sha256-Dxd/2TjxPoa+JcHlmmcoPx2wegZJzhbI1abNmF4wDik=" + "vendorHash": "sha256-rHJabyfgu3wU79h3DHHYQauFmcR/SDuikauBF+CybZA=" }, "vault": { "hash": "sha256-GlRaV9CYm8IuIzeN/KRJWLCHIhc7Fdb5DL4fTA/dzV0=", diff --git a/pkgs/applications/science/math/mathematica/versions.nix b/pkgs/applications/science/math/mathematica/versions.nix index 1fb6003ea257..103e47e7fb87 100644 --- a/pkgs/applications/science/math/mathematica/versions.nix +++ b/pkgs/applications/science/math/mathematica/versions.nix @@ -8,6 +8,20 @@ let versions = [ + { + version = "14.2.0"; + lang = "en"; + language = "English"; + sha256 = "sha256-wIuyWufKuchPl7phCxVM9vIIkjUHfRxIECfDyGJliqs="; + installer = "Wolfram_14.2.0_LIN.sh"; + } + { + version = "14.2.0"; + lang = "en"; + language = "English"; + sha256 = "sha256-wY6acGoUc7y22enSi7RrcRFLvvPGaeYTta4yWExlXho="; + installer = "Wolfram_14.2.0_LIN_Bndl.sh"; + } { version = "14.1.0"; lang = "en"; diff --git a/pkgs/build-support/closure-info.nix b/pkgs/build-support/closure-info.nix index 4ccc2b799415..c255d2feaf13 100644 --- a/pkgs/build-support/closure-info.nix +++ b/pkgs/build-support/closure-info.nix @@ -1,15 +1,42 @@ -# This derivation builds two files containing information about the -# closure of 'rootPaths': $out/store-paths contains the paths in the -# closure, and $out/registration contains a file suitable for use with -# "nix-store --load-db" and "nix-store --register-validity -# --hash-given". - { stdenvNoCC, coreutils, jq, }: +/** + Produces metadata about the closure of the given root paths. + + 1. Total NAR size in `$out/total-nar-size`. + 2. Registration, suitable for `nix-store --load-db`, in `$out/registration`. + Can also be used with `nix-store --register-validity --hash-given`. + 3. All store paths for the closure in `$out/store-paths`. + + # Inputs + + `rootPaths` ([Path]) + + : List of root paths to include in the closure information. + + # Type + + ``` + closureInfo :: { rootPaths :: [Path]; } -> Derivation + ``` + + # Examples + :::{.example} + ## `pkgs.closureInfo` usage example + ``` + pkgs.closureInfo { + rootPaths = [ pkgs.hello pkgs.bc pkgs.dwarf2json ]; + } + => + «derivation /nix/store/...-closure-info.drv» + ``` + + ::: +*/ { rootPaths }: assert builtins.langVersion >= 5; diff --git a/pkgs/by-name/al/aliyun-cli/package.nix b/pkgs/by-name/al/aliyun-cli/package.nix index f62d049994d2..8b913885bd27 100644 --- a/pkgs/by-name/al/aliyun-cli/package.nix +++ b/pkgs/by-name/al/aliyun-cli/package.nix @@ -8,17 +8,17 @@ buildGoModule rec { pname = "aliyun-cli"; - version = "3.0.256"; + version = "3.0.259"; src = fetchFromGitHub { owner = "aliyun"; repo = "aliyun-cli"; tag = "v${version}"; - hash = "sha256-yB6y7A9MuZMBUqKfeJW8n8G9x7fIK8m9kcN2lV3Lknc="; + hash = "sha256-HF8vGEIIHIlHET4buHPTijPeomv0YNwX0bOSQrnyITw="; fetchSubmodules = true; }; - vendorHash = "sha256-xPy9rVqityLWgVv9e/NbsWLoX2T20vMuqhoHLRYEkRk="; + vendorHash = "sha256-XpsMnt3AYHMn/js1E88RBxegKrTeaZYpRhHEuq4HDjM="; subPackages = [ "main" ]; diff --git a/pkgs/by-name/an/angular-language-server/package.nix b/pkgs/by-name/an/angular-language-server/package.nix index 95acc02577b0..899618766e55 100644 --- a/pkgs/by-name/an/angular-language-server/package.nix +++ b/pkgs/by-name/an/angular-language-server/package.nix @@ -11,6 +11,7 @@ common-updater-scripts, jq, unzip, + typescript, }: stdenvNoCC.mkDerivation (finalAttrs: { @@ -31,9 +32,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { installPhase = '' runHook preInstall - install -Dm755 server/bin/ngserver $out/lib/bin/ngserver - install -Dm755 server/index.js $out/lib/index.js - cp -r node_modules $out/lib/node_modules + install -Dm555 server/bin/ngserver $out/lib/bin/ngserver + install -Dm444 server/index.js $out/lib/index.js + mkdir -p $out/lib/node_modules + cp -r node_modules/* $out/lib/node_modules + # do not use vendored typescript + rm -rf $out/lib/node_modules/typescript runHook postInstall ''; @@ -41,7 +45,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { patchShebangs $out/lib/bin/ngserver $out/lib/index.js $out/lib/node_modules makeWrapper $out/lib/bin/ngserver $out/bin/ngserver \ --prefix PATH : ${lib.makeBinPath [ nodejs ]} \ - --add-flags "--tsProbeLocations $out/lib/node_modules --ngProbeLocations $out/lib/node_modules" + --add-flags "--tsProbeLocations ${typescript}/lib/node_modules/typescript --ngProbeLocations $out/lib/node_modules" ''; passthru = { diff --git a/pkgs/by-name/as/ast-grep/package.nix b/pkgs/by-name/as/ast-grep/package.nix index 90afdd3ebe19..59c6c837da3d 100644 --- a/pkgs/by-name/as/ast-grep/package.nix +++ b/pkgs/by-name/as/ast-grep/package.nix @@ -12,13 +12,13 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "ast-grep"; - version = "0.35.0"; + version = "0.36.1"; src = fetchFromGitHub { owner = "ast-grep"; repo = "ast-grep"; tag = finalAttrs.version; - hash = "sha256-uiQYqVcSSQT32Vu8iE5ATIHFGDiyuxaQvg8hkBtB4DU="; + hash = "sha256-u2eRdOreThaTAe3Uo4C6K3u3qtfW+sow9w+Q3uqtPGs="; }; # error: linker `aarch64-linux-gnu-gcc` not found @@ -27,7 +27,7 @@ rustPlatform.buildRustPackage (finalAttrs: { ''; useFetchCargoVendor = true; - cargoHash = "sha256-B/egtLMBrlLobB1m04L1NlNmZ6+DdQIV9Ae0LVPmO2Y="; + cargoHash = "sha256-Nmmka1AxWhY3InOSmxiL9gg6sznrP8yQuC0EgAywATA="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/au/audiobookshelf/source.json b/pkgs/by-name/au/audiobookshelf/source.json index a1eb8954a81f..8284635c4be9 100644 --- a/pkgs/by-name/au/audiobookshelf/source.json +++ b/pkgs/by-name/au/audiobookshelf/source.json @@ -1,9 +1,9 @@ { "owner": "advplyr", "repo": "audiobookshelf", - "rev": "c7d8021a16012a5493ae53a1310d2000887204a5", - "hash": "sha256-z0AUl2BbS1Ts6M1rz3V9ZZ7SLmfyJ1KEdmE4/bWRYFk=", - "version": "2.19.5", - "depsHash": "sha256-YAxq277klfCw+tW/vcUFdwV9ucleg7WCBsDYHh5pjMo=", - "clientDepsHash": "sha256-6+IxIHZdI/Fm/yqxpB+qX5jI4/Ne3EgRArIRfSG/sR8=" + "rev": "38f05a857ff3cec50bafb594b5d0ab49d6c585ae", + "hash": "sha256-FFZPhQRqmL6pp5aS6qg1Dhf80PAFE2O9oDJB5kSHL50=", + "version": "2.20.0", + "depsHash": "sha256-mB57omyxV338K4LpNMfIThLc2Mz71NqEyFTjWrfAo10=", + "clientDepsHash": "sha256-Wnmue1aGWN9rwP3xYp5q+POP85tHY5gbYBQMKXu9H3Q=" } diff --git a/pkgs/by-name/bi/binaryninja-free/package.nix b/pkgs/by-name/bi/binaryninja-free/package.nix new file mode 100644 index 000000000000..2162a141318b --- /dev/null +++ b/pkgs/by-name/bi/binaryninja-free/package.nix @@ -0,0 +1,94 @@ +{ + autoPatchelfHook, + copyDesktopItems, + dbus, + fetchurl, + fontconfig, + freetype, + lib, + libGLU, + libxkbcommon, + makeDesktopItem, + stdenv, + unzip, + wayland, + xcbutilimage, + xcbutilkeysyms, + xcbutilrenderutil, + xcbutilwm, +}: +stdenv.mkDerivation rec { + pname = "binaryninja-free"; + version = "4.2.6455"; + + src = fetchurl { + url = "https://web.archive.org/web/20241209150225/https://cdn.binary.ninja/installers/binaryninja_free_linux.zip"; + hash = "sha256-NOVuLmko8iYcJ/0fr0DNw7xPEC8EhT/SzcFWtNmjlYI="; + }; + + icon = fetchurl { + url = "https://raw.githubusercontent.com/Vector35/binaryninja-api/448f40be71dffa86a6581c3696627ccc1bdf74f2/docs/img/logo.png"; + hash = "sha256-TzGAAefTknnOBj70IHe64D6VwRKqIDpL4+o9kTw0Mn4="; + }; + + desktopItems = [ + (makeDesktopItem { + name = "com.vector35.binaryninja"; + desktopName = "Binary Ninja Free"; + comment = "A Reverse Engineering Platform"; + exec = "binaryninja"; + icon = "binaryninja"; + mimeTypes = [ + "application/x-binaryninja" + "x-scheme-handler/binaryninja" + ]; + categories = [ "Utility" ]; + }) + ]; + + nativeBuildInputs = [ + unzip + autoPatchelfHook + copyDesktopItems + ]; + + buildInputs = [ + dbus + fontconfig + freetype + libGLU + libxkbcommon + stdenv.cc.cc.lib + wayland + xcbutilimage + xcbutilkeysyms + xcbutilrenderutil + xcbutilwm + ]; + + installPhase = '' + runHook preInstall + mkdir -p $out/ + cp -R . $out/ + + mkdir $out/bin + ln -s $out/binaryninja $out/bin/binaryninja + + install -Dm644 ${icon} $out/share/icons/hicolor/256x256/apps/binaryninja.png + + runHook postInstall + ''; + + meta = { + description = "Interactive decompiler, disassembler, debugger"; + homepage = "https://binary.ninja/"; + license = { + fullName = "Binary Ninja Free Software License"; + url = "https://docs.binary.ninja/about/license.html#free-license"; + free = false; + }; + mainProgram = "binaryninja"; + maintainers = with lib.maintainers; [ scoder12 ]; + platforms = [ "x86_64-linux" ]; + }; +} diff --git a/pkgs/by-name/bi/bitrise/package.nix b/pkgs/by-name/bi/bitrise/package.nix index 68621566a560..cd04a4cde2b5 100644 --- a/pkgs/by-name/bi/bitrise/package.nix +++ b/pkgs/by-name/bi/bitrise/package.nix @@ -6,13 +6,13 @@ }: buildGoModule rec { pname = "bitrise"; - version = "2.30.4"; + version = "2.30.5"; src = fetchFromGitHub { owner = "bitrise-io"; repo = "bitrise"; rev = "v${version}"; - hash = "sha256-wQIoNekr4zXjhAp9XnyJ92hJ4usuWBBT1koUguGIIiU="; + hash = "sha256-j7Gbr+j/5RnM7S6eRZZkmlXgY+vBgfTJ5ZaLz8o7pww="; }; # many tests rely on writable $HOME/.bitrise and require network access diff --git a/pkgs/by-name/bu/bundler/package.nix b/pkgs/by-name/bu/bundler/package.nix index 769b487fca4e..57e08ec679e7 100644 --- a/pkgs/by-name/bu/bundler/package.nix +++ b/pkgs/by-name/bu/bundler/package.nix @@ -6,6 +6,7 @@ testers, bundler, versionCheckHook, + nix-update-script, }: buildRubyGem rec { @@ -28,20 +29,7 @@ buildRubyGem rec { doInstallCheck = true; passthru = { - updateScript = writeScript "gem-update-script" '' - #!/usr/bin/env nix-shell - #!nix-shell -i bash -p curl common-updater-scripts jq - - set -eu -o pipefail - - latest_version=$(curl -s https://rubygems.org/api/v1/gems/${gemName}.json | jq --raw-output .version) - update-source-version ${gemName} "$latest_version" - ''; - tests.version = testers.testVersion { - package = bundler; - command = "bundler -v"; - version = version; - }; + updateScript = nix-update-script { }; }; meta = { diff --git a/pkgs/by-name/cc/ccache/package.nix b/pkgs/by-name/cc/ccache/package.nix index 655f769c0c41..7be304b0546f 100644 --- a/pkgs/by-name/cc/ccache/package.nix +++ b/pkgs/by-name/cc/ccache/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "ccache"; - version = "4.11"; + version = "4.11.1"; src = fetchFromGitHub { owner = "ccache"; @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { exit 1 fi ''; - hash = "sha256-hMQ+4/5kk+QRHtMEbIk4TIWaSyYXVdXrOMKCkglNe6g="; + hash = "sha256-oYuvcM1BkOh+fj6FmZ8GiiyMyNCAHNp+zQdYvoAb/lU="; }; outputs = [ diff --git a/pkgs/by-name/ch/chirp/package.nix b/pkgs/by-name/ch/chirp/package.nix index ca0d27a1adaa..4d5d22703cf4 100644 --- a/pkgs/by-name/ch/chirp/package.nix +++ b/pkgs/by-name/ch/chirp/package.nix @@ -11,14 +11,14 @@ python3Packages.buildPythonApplication { pname = "chirp"; - version = "0.4.0-unstable-2025-03-07"; + version = "0.4.0-unstable-2025-03-17"; pyproject = true; src = fetchFromGitHub { owner = "kk7ds"; repo = "chirp"; - rev = "7ba82c4faca496cf1370554a3485c1573b6a38a0"; - hash = "sha256-UhQF6yfykraz5DblyW8cSP/XY+j/uxJtUVDpgdWlHZU="; + rev = "7d0a609a24efa7861a9cedd0abe057a250857d97"; + hash = "sha256-BL5+z3CFInCEXgwyx4sHaHbUXLWwe/JWevD1ZDxQStQ="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/co/conduit/package.nix b/pkgs/by-name/co/conduit/package.nix new file mode 100644 index 000000000000..22c208d18637 --- /dev/null +++ b/pkgs/by-name/co/conduit/package.nix @@ -0,0 +1,65 @@ +{ + lib, + stdenv, + fetchFromGitHub, + cmake, + openmpi, + + # passthru + conduit, + nix-update-script, + + mpiSupport ? false, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "conduit"; + version = "0.9.3"; + + src = fetchFromGitHub { + owner = "LLNL"; + repo = "conduit"; + tag = "v${finalAttrs.version}"; + fetchSubmodules = true; + hash = "sha256-R7DiMwaMG9VfqDJiO3kFPb76j6P2GZl/6qLxDfVex8A="; + }; + + nativeBuildInputs = [ + cmake + ]; + + cmakeDir = "../src"; + + buildInputs = lib.optionals mpiSupport [ + openmpi + ]; + + cmakeFlags = [ + (lib.cmakeBool "ENABLE_MPI" mpiSupport) + ]; + + installCheckPhase = '' + runHook preInstallCheck + + make test + + runHook postInstallCheck + ''; + doInstallCheck = true; + + passthru = { + tests = { + withMpi = conduit.override { mpiSupport = true; }; + }; + updateScript = nix-update-script { }; + }; + + meta = { + description = "Simplified Data Exchange for HPC Simulations"; + homepage = "https://github.com/LLNL/conduit"; + changelog = "https://github.com/LLNL/conduit/blob/v${finalAttrs.version}/CHANGELOG.md"; + license = lib.licenses.bsd3Lbnl; + maintainers = with lib.maintainers; [ GaetanLepage ]; + platforms = lib.platforms.all; + }; +}) diff --git a/pkgs/by-name/cr/createrepo_c/package.nix b/pkgs/by-name/cr/createrepo_c/package.nix index 0f96450cf6e0..dca06c3efc40 100644 --- a/pkgs/by-name/cr/createrepo_c/package.nix +++ b/pkgs/by-name/cr/createrepo_c/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { pname = "createrepo_c"; - version = "1.2.0"; + version = "1.2.1"; src = fetchFromGitHub { owner = "rpm-software-management"; repo = "createrepo_c"; tag = version; - hash = "sha256-IWn1in1AMN4brekerj+zu1OjTl+PE7fthU5+gcBzVU0="; + hash = "sha256-2mvU2F9rvG4FtDgq+M9VXWg+c+AsW/+tDPaEj7zVmQ0="; }; postPatch = '' diff --git a/pkgs/by-name/de/denemo/package.nix b/pkgs/by-name/de/denemo/package.nix index 1b4c0e30d46e..88c2a4dbf856 100644 --- a/pkgs/by-name/de/denemo/package.nix +++ b/pkgs/by-name/de/denemo/package.nix @@ -83,11 +83,14 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Music notation and composition software used with lilypond"; homepage = "http://denemo.org"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.olynch ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.olynch ]; + # sffile.c:38:10: error: implicit declaration of function 'isprint' [-Wimplicit-function-declaration] + # sffile.c:54:10: error: type defaults to 'int' in declaration of 'initialized' [-Wimplicit-int] + broken = true; }; } diff --git a/pkgs/by-name/dr/dracula-theme/package.nix b/pkgs/by-name/dr/dracula-theme/package.nix index 5ffb7c72e669..39f91d3694b1 100644 --- a/pkgs/by-name/dr/dracula-theme/package.nix +++ b/pkgs/by-name/dr/dracula-theme/package.nix @@ -8,7 +8,7 @@ let themeName = "Dracula"; - version = "4.0.0-unstable-2025-03-04"; + version = "4.0.0-unstable-2025-03-13"; in stdenvNoCC.mkDerivation { pname = "dracula-theme"; @@ -17,8 +17,8 @@ stdenvNoCC.mkDerivation { src = fetchFromGitHub { owner = "dracula"; repo = "gtk"; - rev = "285ff8f10084b5fdae045a8e8d09352be9af4452"; - hash = "sha256-DGUEHKlQqJ3yt6Anm+LIhSgaUjE+CvdIQZyrrPGV8HQ="; + rev = "fc59294cf67110f6487f5fd06d3c845ffffdf1a9"; + hash = "sha256-hFiYb1KqYvH66OIhmIUP3DfkSkuYgE78ihjkEaAY7LM="; }; propagatedUserEnvPkgs = [ diff --git a/pkgs/by-name/du/duplicity/package.nix b/pkgs/by-name/du/duplicity/package.nix index bd0a0d618aec..2e15d2aaca06 100644 --- a/pkgs/by-name/du/duplicity/package.nix +++ b/pkgs/by-name/du/duplicity/package.nix @@ -22,13 +22,13 @@ let self = python3.pkgs.buildPythonApplication rec { pname = "duplicity"; - version = "3.0.3.2"; + version = "3.0.4"; src = fetchFromGitLab { owner = "duplicity"; repo = "duplicity"; rev = "rel.${version}"; - hash = "sha256-aP2+MIV9EgwGb9detibHzW2AJdbnP+9ur9Y/Irw26qM="; + hash = "sha256-FoaKuB0mo2RFksMHnIUx984+h/U0tdvk+bvsuYt3r5g="; }; patches = [ @@ -51,9 +51,11 @@ let --replace-fail /usr/bin /dev ''; - disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ - # uses /tmp/ - "testing/unit/test_cli_main.py::CommandlineTest::test_intermixed_args" + disabledTests = [ + # fails on some unsupported backends, e.g. + # ************* Module duplicity.backends.swiftbackend + # duplicity/backends/swiftbackend.py:176: [E0401(import-error), SwiftBackend._put] Unable to import 'swiftclient.service' + "test_pylint" ]; nativeBuildInputs = [ @@ -62,6 +64,9 @@ let python3.pkgs.wrapPython wrapGAppsNoGuiHook python3.pkgs.setuptools-scm + python3.pkgs.pycodestyle + python3.pkgs.black + python3.pkgs.pylint ]; buildInputs = [ diff --git a/pkgs/by-name/dy/dyff/package.nix b/pkgs/by-name/dy/dyff/package.nix index 8d1b28af53fd..9c2e026bfa1d 100644 --- a/pkgs/by-name/dy/dyff/package.nix +++ b/pkgs/by-name/dy/dyff/package.nix @@ -7,16 +7,16 @@ buildGoModule rec { pname = "dyff"; - version = "1.10.0"; + version = "1.10.1"; src = fetchFromGitHub { owner = "homeport"; repo = "dyff"; rev = "v${version}"; - sha256 = "sha256-MVqj/RgUwN7andCPMo7Tp4zBhEaSNM0loWnQ/E5U1S8="; + sha256 = "sha256-dioahL3dWK+rNAcThv2vYyoGaIIFhcd5li9gtwjtGzM="; }; - vendorHash = "sha256-PH3huLNc0jFBvo3/Z/BNCeL0HxTUc5OaNysa54wKthY="; + vendorHash = "sha256-5uAe6bnYhncr2A+Y/HEjv9agvKp+1D2JH66zIDIeDro="; subPackages = [ "cmd/dyff" diff --git a/pkgs/by-name/ei/eigenmath/package.nix b/pkgs/by-name/ei/eigenmath/package.nix index fc305e20d39c..34cc8b58836b 100644 --- a/pkgs/by-name/ei/eigenmath/package.nix +++ b/pkgs/by-name/ei/eigenmath/package.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation rec { pname = "eigenmath"; - version = "337-unstable-2025-03-05"; + version = "337-unstable-2025-03-16"; src = fetchFromGitHub { owner = "georgeweigt"; repo = pname; - rev = "8fc8573000f40a8322f7fc140f384cf79e8c4a7f"; - hash = "sha256-MQnQmxafJhwxVJ+iAwAm48nFCE9QVel56xWgX8egmOk="; + rev = "622740aa22d11d08016d0ac962aa920f5e38f223"; + hash = "sha256-sFiCYvp+SC8CnkMfoUXpAPFySd5nxiqLRVGiWsZ4FcY="; }; checkPhase = diff --git a/pkgs/by-name/ev/evtx/package.nix b/pkgs/by-name/ev/evtx/package.nix index 8eeea1749925..d4c94cc94f75 100644 --- a/pkgs/by-name/ev/evtx/package.nix +++ b/pkgs/by-name/ev/evtx/package.nix @@ -6,17 +6,17 @@ rustPlatform.buildRustPackage rec { pname = "evtx"; - version = "0.8.5"; + version = "0.9.0"; src = fetchFromGitHub { owner = "omerbenamram"; repo = "evtx"; tag = "v${version}"; - hash = "sha256-qDJc8QL1nlbV9iIXZYh38N1giz6uEZtt/hjaZWE6JbE="; + hash = "sha256-fgOuhNE77zVjL16oiUifnKZ+X4CQnZuD8tY+h0JTOYU="; }; useFetchCargoVendor = true; - cargoHash = "sha256-aHc4u2sW2TIK2P/P9MdR0lgTKbY1ruevCRxghW/dii0="; + cargoHash = "sha256-E9BoqpnKhVNwOiEvZROF3xj9Ge8r2CNaBiwHdkdV5aw="; postPatch = '' # CLI tests will fail in the sandbox diff --git a/pkgs/by-name/fi/findomain/package.nix b/pkgs/by-name/fi/findomain/package.nix index dd034230dfc6..344844b98588 100644 --- a/pkgs/by-name/fi/findomain/package.nix +++ b/pkgs/by-name/fi/findomain/package.nix @@ -11,17 +11,17 @@ rustPlatform.buildRustPackage rec { pname = "findomain"; - version = "9.0.3"; + version = "9.0.4"; src = fetchFromGitHub { owner = "findomain"; repo = "findomain"; tag = version; - hash = "sha256-M6i62JI4HjaM0C2rSK8P5O19JeugFP5xIy1E6vE8KP4="; + hash = "sha256-5jbKDMULig6j3D5KEQQrHWtsc59x0Tj6n/7kwK/8IME="; }; useFetchCargoVendor = true; - cargoHash = "sha256-2CB7xmZFqej+vOx90kOPcI4FNpj1z4wnW90n7yEFpNA="; + cargoHash = "sha256-4+nRQ8HL4dQMCgeSOrgkaRj0E4HPAC3Nm82AEr1KWJo="; nativeBuildInputs = [ installShellFiles diff --git a/pkgs/by-name/gi/gitlab-ci-local/package.nix b/pkgs/by-name/gi/gitlab-ci-local/package.nix index 8f07cd318871..1dc740ba16f2 100644 --- a/pkgs/by-name/gi/gitlab-ci-local/package.nix +++ b/pkgs/by-name/gi/gitlab-ci-local/package.nix @@ -9,16 +9,16 @@ buildNpmPackage rec { pname = "gitlab-ci-local"; - version = "4.57.0"; + version = "4.58.0"; src = fetchFromGitHub { owner = "firecow"; repo = "gitlab-ci-local"; rev = version; - hash = "sha256-xr8loGmua8NiXA+YMzuVPUupnjqNsOxcWdyhxTZ7GhE="; + hash = "sha256-4Hn/I0PJ5w+Wb3tI8szy4I/vHso85GTFyT2Ek+WbYxs="; }; - npmDepsHash = "sha256-M/kRs8yaOypbSr3MhUr2UJ5G+lz5OMdBCIs4yyrLX6I="; + npmDepsHash = "sha256-fndSJd15sZ/sIFvh+MzNw25kuP9D9+Qc0mDqgnvjnPo="; postPatch = '' # remove cleanup which runs git commands diff --git a/pkgs/by-name/go/go-mockery/package.nix b/pkgs/by-name/go/go-mockery/package.nix index c5bd0378d456..0ac9e42eb5a4 100644 --- a/pkgs/by-name/go/go-mockery/package.nix +++ b/pkgs/by-name/go/go-mockery/package.nix @@ -1,69 +1,89 @@ -{ lib, buildGoModule, fetchFromGitHub, go-mockery, runCommand, go }: +{ + lib, + buildGoModule, # sync with go below, update to latest release + fetchFromGitHub, + + # passthru test + go-mockery, + runCommand, + go, +}: buildGoModule rec { pname = "go-mockery"; - version = "2.52.1"; + version = "2.53.2"; src = fetchFromGitHub { owner = "vektra"; repo = "mockery"; rev = "v${version}"; - sha256 = "sha256-algCErKmB43r/t7wo8BJSM0MHRxvxVWZ2u0n1xuLLdw="; + sha256 = "sha256-8J9sx9rPBZXZQKmuDSAuuktONyNM2U32W8CM9jts4Hw="; }; - preCheck = '' - substituteInPlace ./pkg/generator_test.go --replace-fail 0.0.0-dev ${version} - substituteInPlace ./pkg/logging/logging_test.go --replace-fail v0.0 v${lib.versions.majorMinor version} - ''; - ldflags = [ - "-s" "-w" - "-X" "github.com/vektra/mockery/v2/pkg/logging.SemVer=v${version}" + "-s" + "-w" + "-X" + "github.com/vektra/mockery/v${lib.versions.major version}/pkg/logging.SemVer=v${version}" ]; env.CGO_ENABLED = false; proxyVendor = true; - vendorHash = "sha256-nL6dDGifhtmDHfz1ae+wnmVPPQDLrRgI7v8c5cQzo8Q="; + vendorHash = "sha256-4dZnffxyxTex5wvdWP4rRslW+I8/XC1RhhrljgI630I="; subPackages = [ "." ]; + preCheck = '' + # check all paths + unset subPackages + + substituteInPlace ./pkg/generator_test.go --replace-fail 0.0.0-dev ${version} + substituteInPlace ./pkg/logging/logging_test.go --replace-fail v0.0 v${lib.versions.majorMinor version} + ''; + passthru.tests = { - generateMock = runCommand "${pname}-test" { - nativeBuildInputs = [ go-mockery ]; - buildInputs = [ go ]; - } '' - if [[ $(mockery --version) != *"${version}"* ]]; then - echo "Error: program version does not match package version" - exit 1 - fi + generateMock = + runCommand "${pname}-test" + { + nativeBuildInputs = [ go-mockery ]; + buildInputs = [ go ]; + } + '' + if [[ $(${meta.mainProgram} --version) != *"${version}"* ]]; then + echo "Error: program version does not match package version" + exit 1 + fi - export HOME=$TMPDIR + export HOME=$TMPDIR - cat < foo.go - package main + cat < foo.go + package main - type Foo interface { - Bark() string - } - EOF + type Foo interface { + Bark() string + } + EOF - mockery --name Foo --dir . + ${meta.mainProgram} --name Foo --dir . - if [[ ! -f "mocks/Foo.go" ]]; then - echo "Error: mocks/Foo.go was not generated by ${pname}" - exit 1 - fi + if [[ ! -f "mocks/Foo.go" ]]; then + echo "Error: mocks/Foo.go was not generated by ${pname}" + exit 1 + fi - touch $out - ''; + touch $out + ''; }; - meta = with lib; { + meta = { homepage = "https://github.com/vektra/mockery"; description = "Mock code autogenerator for Golang"; - maintainers = with maintainers; [ fbrs ]; + maintainers = with lib.maintainers; [ + fbrs + jk + ]; mainProgram = "mockery"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/gt/gtk4-layer-shell/package.nix b/pkgs/by-name/gt/gtk4-layer-shell/package.nix index 237d40730aaa..8a7bca4cf7ae 100644 --- a/pkgs/by-name/gt/gtk4-layer-shell/package.nix +++ b/pkgs/by-name/gt/gtk4-layer-shell/package.nix @@ -3,6 +3,7 @@ stdenv, fetchFromGitHub, meson, + mesonEmulatorHook, ninja, pkg-config, gtk-doc, @@ -50,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: { docbook_xml_dtd_43 vala wayland-scanner - ]; + ] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [ mesonEmulatorHook ]; buildInputs = [ gtk4 diff --git a/pkgs/by-name/ha/hamrs/darwin.nix b/pkgs/by-name/ha/hamrs/darwin.nix new file mode 100644 index 000000000000..fd8f413ba6d8 --- /dev/null +++ b/pkgs/by-name/ha/hamrs/darwin.nix @@ -0,0 +1,41 @@ +{ + lib, + stdenvNoCC, + pname, + version, + meta, + fetchurl, + _7zz, + undmg, +}: + +stdenvNoCC.mkDerivation (finalAttrs: { + inherit pname version; + + src = + if stdenvNoCC.hostPlatform.isAarch64 then + (fetchurl { + url = "https://hamrs-releases.s3.us-east-2.amazonaws.com/${finalAttrs.version}/HAMRS-${finalAttrs.version}.dmg"; + hash = "sha256-IQ7r2OLwJW4auiNDddzZ99jXxrtPw3uYoGIUEHU1gtc="; + }) + else + (fetchurl { + url = "https://hamrs-releases.s3.us-east-2.amazonaws.com/${finalAttrs.version}/HAMRS-${finalAttrs.version}-intel.dmg"; + hash = "sha256-bgWeIARE3gO5FA9MqidfXo1Wdn5wDUa/RNzZBxSKloM="; + }); + + nativeBuildInputs = if stdenvNoCC.hostPlatform.isAarch64 then [ _7zz ] else [ undmg ]; + + sourceRoot = "."; + + installPhase = '' + runHook preInstall + + mkdir -p $out/Applications + cp -r *.app $out/Applications + + runHook postInstall + ''; + + inherit meta; +}) diff --git a/pkgs/by-name/ha/hamrs/linux.nix b/pkgs/by-name/ha/hamrs/linux.nix new file mode 100644 index 000000000000..b163d407f39b --- /dev/null +++ b/pkgs/by-name/ha/hamrs/linux.nix @@ -0,0 +1,48 @@ +{ + lib, + stdenvNoCC, + appimageTools, + fetchurl, + pname, + version, + meta, +}: + +let + suffix = + { + aarch64-linux = "linux-armv7l"; + x86_64-linux = "linux-x86_64"; + i686-linux = "linux-i386"; + } + .${stdenvNoCC.hostPlatform.system} + or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); +in +appimageTools.wrapType2 rec { + inherit pname version; + + src = fetchurl { + url = "https://hamrs-releases.s3.us-east-2.amazonaws.com/${version}/hamrs-${version}-${suffix}.AppImage"; + hash = + { + aarch64-linux = "sha256-nBW8q7LVWQz93LkTc+c36H+2ymLLwLKfxePUwEm3D2E="; + x86_64-linux = "sha256-tplp7TADvbxkk5qBb4c4zm4mrzrVtW/WVUjiolBBJHc="; + i686-linux = "sha256-PllxLMBsPCedKU7OUN0nqi4qtQ57l2Z+huLfkfaBfT4="; + } + .${stdenvNoCC.hostPlatform.system} + or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); + }; + + extraInstallCommands = + let + contents = appimageTools.extract { inherit pname version src; }; + in + '' + install -m 444 -D ${contents}/${pname}.desktop -t $out/share/applications + substituteInPlace $out/share/applications/${pname}.desktop \ + --replace-fail 'Exec=AppRun' 'Exec=${pname}' + cp -r ${contents}/usr/share/icons $out/share + ''; + + inherit meta; +} diff --git a/pkgs/by-name/ha/hamrs/package.nix b/pkgs/by-name/ha/hamrs/package.nix index 45937658d4bb..8a8bbf4c830b 100644 --- a/pkgs/by-name/ha/hamrs/package.nix +++ b/pkgs/by-name/ha/hamrs/package.nix @@ -1,56 +1,33 @@ { - appimageTools, lib, - fetchurl, - stdenv, + stdenvNoCC, + callPackage, }: let - suffix = - { - aarch64-linux = "linux-armv7l"; - x86_64-linux = "linux-x86_64"; - i686-linux = "linux-i386"; - } - .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); -in -appimageTools.wrapType2 rec { pname = "hamrs"; version = "1.0.7"; - src = fetchurl { - url = "https://hamrs-releases.s3.us-east-2.amazonaws.com/${version}/hamrs-${version}-${suffix}.AppImage"; - hash = - { - aarch64-linux = "sha256-nBW8q7LVWQz93LkTc+c36H+2ymLLwLKfxePUwEm3D2E="; - x86_64-linux = "sha256-tplp7TADvbxkk5qBb4c4zm4mrzrVtW/WVUjiolBBJHc="; - i686-linux = "sha256-PllxLMBsPCedKU7OUN0nqi4qtQ57l2Z+huLfkfaBfT4="; - } - .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); - }; - - extraInstallCommands = - let - contents = appimageTools.extract { inherit pname version src; }; - in - '' - install -m 444 -D ${contents}/${pname}.desktop -t $out/share/applications - substituteInPlace $out/share/applications/${pname}.desktop \ - --replace-fail 'Exec=AppRun' 'Exec=${pname}' - cp -r ${contents}/usr/share/icons $out/share - ''; - - meta = with lib; { - description = "A simple, portable logger tailored for activities like Parks on the Air, Field Day, and more."; + meta = { + description = "Simple, portable logger tailored for activities like Parks on the Air, Field Day, and more."; homepage = "https://hamrs.app/"; - license = licenses.unfree; - maintainers = [ maintainers.jhollowe ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ + ethancedwards8 + jhollowe + ]; platforms = [ "aarch64-linux" "x86_64-linux" "i686-linux" + "aarch64-darwin" + "x86_64-darwin" ]; mainProgram = "hamrs"; - sourceProvenance = [ sourceTypes.binaryNativeCode ]; + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; -} +in +if stdenvNoCC.hostPlatform.isDarwin then + callPackage ./darwin.nix { inherit pname version meta; } +else + callPackage ./linux.nix { inherit pname version meta; } diff --git a/pkgs/by-name/he/heisenbridge/package.nix b/pkgs/by-name/he/heisenbridge/package.nix index e6c8ca91c379..dcd4526ef5ce 100644 --- a/pkgs/by-name/he/heisenbridge/package.nix +++ b/pkgs/by-name/he/heisenbridge/package.nix @@ -1,18 +1,19 @@ { lib, fetchFromGitHub, + nix-update-script, python3, }: python3.pkgs.buildPythonApplication rec { pname = "heisenbridge"; - version = "1.15.0"; + version = "1.15.2"; src = fetchFromGitHub { owner = "hifi"; repo = pname; tag = "v${version}"; - sha256 = "sha256-4K6Sffu/yKHkcoNENbgpci2dbJVAH3vVkogcw/IYpnw="; + sha256 = "sha256-7zOpjIRYm+F8my+Gk/SXFIpzXMublPuzo93GpD8SxvU="; }; postPatch = '' @@ -30,6 +31,8 @@ python3.pkgs.buildPythonApplication rec { pytestCheckHook ]; + passthru.updateScript = nix-update-script { }; + meta = with lib; { description = "Bouncer-style Matrix-IRC bridge"; homepage = "https://github.com/hifi/heisenbridge"; diff --git a/pkgs/by-name/he/hermitcli/package.nix b/pkgs/by-name/he/hermitcli/package.nix index 98918968a242..cda3b88172f3 100644 --- a/pkgs/by-name/he/hermitcli/package.nix +++ b/pkgs/by-name/he/hermitcli/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "hermit"; - version = "0.44.1"; + version = "0.44.3"; src = fetchFromGitHub { rev = "v${version}"; owner = "cashapp"; repo = "hermit"; - hash = "sha256-u5NklyTtrTfqC+p3UnUv7LJ2Dm7GuQnuAAyplm1M7rE="; + hash = "sha256-7u1xPpM3y8+hm732ssdA/XJtmSGyiRpMHBmzOCDSTRM="; }; - vendorHash = "sha256-GPIJ3IvTM2da962M1FLHKn8OitHDPZ9zp8nSLaeRq10="; + vendorHash = "sha256-Nmvgsso9WU4Tuc0vFUutcApgX6KXRZMl3CiWO5FaROU="; subPackages = [ "cmd/hermit" ]; diff --git a/pkgs/by-name/ig/ignite-cli/package.nix b/pkgs/by-name/ig/ignite-cli/package.nix index 960bfe500318..8f66cb6b0e99 100644 --- a/pkgs/by-name/ig/ignite-cli/package.nix +++ b/pkgs/by-name/ig/ignite-cli/package.nix @@ -9,16 +9,16 @@ buildGoModule rec { pname = "ignite-cli"; - version = "28.8.1"; + version = "28.8.2"; src = fetchFromGitHub { repo = "cli"; owner = "ignite"; rev = "v${version}"; - hash = "sha256-tecoeYQ+rWH36AwkcvO5W7mqVxc9fGHcUiQ+dZvUQP0="; + hash = "sha256-d7+T0VlmKQgmAJ8eyDg8JDL9HHJbU+nOTvJP0GTuIRY="; }; - vendorHash = "sha256-4Ab3xgP1fK2QA+qL3DyNESkOl6MeQlhhjpaWO6oRFlg="; + vendorHash = "sha256-EaOs3m5AN0EYMO8j3mkKPOQwapi0WRaTIUJKTjDpmCo="; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/by-name/in/intel-gmmlib/package.nix b/pkgs/by-name/in/intel-gmmlib/package.nix index d0db954fe51d..52996a2a554c 100644 --- a/pkgs/by-name/in/intel-gmmlib/package.nix +++ b/pkgs/by-name/in/intel-gmmlib/package.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { pname = "intel-gmmlib"; - version = "22.6.0"; + version = "22.7.0"; src = fetchFromGitHub { owner = "intel"; repo = "gmmlib"; - rev = "intel-gmmlib-${version}"; - hash = "sha256-3A5bTrRIm7ZOz2Si8u2GSDr5vIOr9NOaMRu0PbqZAIs="; + tag = "intel-gmmlib-${version}"; + hash = "sha256-SR66UaoPQYGz4Nda99ASZEfTtNlLQTqtZgDM5hlV/1w="; }; nativeBuildInputs = [ cmake ]; diff --git a/pkgs/by-name/in/intel-media-driver/package.nix b/pkgs/by-name/in/intel-media-driver/package.nix index fc415cd682f0..41ad93d9135f 100644 --- a/pkgs/by-name/in/intel-media-driver/package.nix +++ b/pkgs/by-name/in/intel-media-driver/package.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { pname = "intel-media-driver"; - version = "24.3.4"; + version = "24.4.4"; outputs = [ "out" @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { owner = "intel"; repo = "media-driver"; rev = "intel-media-${version}"; - hash = "sha256-vgbWwL4mu8YZzfvBvxna8Ioz6ig29iA2RZHKuHdh5Ic="; + hash = "sha256-vZIWH/YBrUMmXu/JBBeGPOsn7pZUDaU8O6vgoekGhVU="; }; patches = [ diff --git a/pkgs/by-name/k9/k9s/package.nix b/pkgs/by-name/k9/k9s/package.nix index 0716802b0592..9a9b20fe39d6 100644 --- a/pkgs/by-name/k9/k9s/package.nix +++ b/pkgs/by-name/k9/k9s/package.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "k9s"; - version = "0.40.5"; + version = "0.40.10"; src = fetchFromGitHub { owner = "derailed"; repo = "k9s"; rev = "v${version}"; - hash = "sha256-HntKFQnuPJ0i3yd7ItJNROs9decU6lMIxR2ptrc9yRc="; + hash = "sha256-QGymGiTHT3Qnf9l/hhE3lgJ7TBBjKMe2k1aJ32khU0E="; }; ldflags = [ @@ -23,7 +23,7 @@ buildGoModule rec { proxyVendor = true; - vendorHash = "sha256-O62yKTOW0ZyHyP/PA6cMWHdKjnvaPqm/bXAPtJbhxeY="; + vendorHash = "sha256-jAxrOdQcMIH7uECKGuuiTZlyV4aJ/a76IuKGouWg/r4="; # TODO investigate why some config tests are failing doCheck = !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64); diff --git a/pkgs/by-name/ke/keto/package.nix b/pkgs/by-name/ke/keto/package.nix index c85c5750a95a..4913a13a6d28 100644 --- a/pkgs/by-name/ke/keto/package.nix +++ b/pkgs/by-name/ke/keto/package.nix @@ -5,8 +5,8 @@ }: let pname = "keto"; - version = "0.13.0-alpha.0"; - commit = "c75695837f170334b526359f28967aa33d61bce6"; + version = "0.14.0"; + commit = "613779b6dad89f6fb6b4fa6968f13ede11963c97"; in buildGoModule { inherit pname version commit; @@ -15,10 +15,10 @@ buildGoModule { owner = "ory"; repo = "keto"; rev = "v${version}"; - hash = "sha256-0yylaaXogN2HWXY8Tb7ScN4jdyeHecJ0gBYlVvcwaNE="; + hash = "sha256-DQiE7PvRnOzdRITRl7LgUDmCJO5/aUzbFdEIyiofZfU="; }; - vendorHash = "sha256-lgwV4Ysjmd9e850Rf5c0wSZtMW3U34/piwwG7dQEUV4="; + vendorHash = "sha256-deQxdG3HZiMzzwTr6moILBSNeNR/3noFlJlIx1eyBZs="; tags = [ "sqlite" diff --git a/pkgs/by-name/ku/kubergrunt/package.nix b/pkgs/by-name/ku/kubergrunt/package.nix index 0fbd4ecb4590..c613b3ea31c7 100644 --- a/pkgs/by-name/ku/kubergrunt/package.nix +++ b/pkgs/by-name/ku/kubergrunt/package.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "kubergrunt"; - version = "0.17.0"; + version = "0.17.1"; src = fetchFromGitHub { owner = "gruntwork-io"; repo = "kubergrunt"; rev = "v${version}"; - sha256 = "sha256-m7Cx/0XsHJrnsH68vcwpsHlPggEN4XuXYXw0Xgp+qcI="; + sha256 = "sha256-g2XDrDCnbDKNcMM82BUbQ6+a0RlfHtKldcBHlYdEgTQ="; }; vendorHash = "sha256-gJrZ0iQTRUypbYaeTYNxH3AlT5J65uzKpKNtylwEApk="; diff --git a/pkgs/by-name/li/libdatachannel/package.nix b/pkgs/by-name/li/libdatachannel/package.nix index 7139b7d0c087..d90b6e0faef7 100644 --- a/pkgs/by-name/li/libdatachannel/package.nix +++ b/pkgs/by-name/li/libdatachannel/package.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation rec { pname = "libdatachannel"; - version = "0.22.5"; + version = "0.22.6"; src = fetchFromGitHub { owner = "paullouisageneau"; repo = "libdatachannel"; rev = "v${version}"; - hash = "sha256-6oJf7yHI47VOZtE2AKan+3GrcAgMMxJaZziNsSe7pdg="; + hash = "sha256-Xn2RfPFvCIx7gTFqxXbFVJZDkphZR94SAHJ+0ombf+8="; }; outputs = [ diff --git a/pkgs/by-name/li/librenms/package.nix b/pkgs/by-name/li/librenms/package.nix index 609fd9d8e283..4fc0dd740df2 100644 --- a/pkgs/by-name/li/librenms/package.nix +++ b/pkgs/by-name/li/librenms/package.nix @@ -27,16 +27,16 @@ let in phpPackage.buildComposerProject2 rec { pname = "librenms"; - version = "25.2.0"; + version = "25.3.0"; src = fetchFromGitHub { owner = "librenms"; repo = pname; tag = version; - sha256 = "sha256-BzMtUYIKbfyap8TNmGy5RReKraOoafC0Jrnq8L5URtM="; + sha256 = "sha256-iCcBP/BDHdTxlzgDGZzBdT0tFL26oCvMI+q2UuEg5jw="; }; - vendorHash = "sha256-Dkoq84E9zP7lrvZ9P5hSIeVJf1hjuhebGxEhBkYNWDM="; + vendorHash = "sha256-0YBXORA647IfR0Fes2q4lbJsgrkpcvRj1aIHJ/Te/zU="; php = phpPackage; diff --git a/pkgs/by-name/li/libui-ng/package.nix b/pkgs/by-name/li/libui-ng/package.nix index 411692458805..94977b420556 100644 --- a/pkgs/by-name/li/libui-ng/package.nix +++ b/pkgs/by-name/li/libui-ng/package.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation { pname = "libui-ng"; - version = "4.1-unstable-2024-12-14"; + version = "4.1-unstable-2025-03-15"; src = fetchFromGitHub { owner = "libui-ng"; repo = "libui-ng"; - rev = "533953b82c8510b447fe52a89ee0a3ae6d60921b"; - hash = "sha256-NrDY1EjHcSA0w/WR2UIAQQa6mbPSkVjp41h7uQzz838="; + rev = "43ba1ef553c8993a43a67f1ce6e35983a2660d8c"; + hash = "sha256-pnfrSPDIvG0tFYQoeMBONATkNRNjY/tJGp9n2I4cN/U="; }; postPatch = lib.optionalString (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) '' diff --git a/pkgs/by-name/mi/microsoft-edge/package.nix b/pkgs/by-name/mi/microsoft-edge/package.nix index f0d71f019167..719b3ad7f5b4 100644 --- a/pkgs/by-name/mi/microsoft-edge/package.nix +++ b/pkgs/by-name/mi/microsoft-edge/package.nix @@ -92,6 +92,10 @@ # For Vulkan support (--enable-features=Vulkan) addDriverRunpath, + # Edge AAD sync + cacert, + libsecret, + # Edge Specific libuuid, }: @@ -107,6 +111,7 @@ let at-spi2-core atk bzip2 + cacert cairo coreutils cups @@ -156,6 +161,7 @@ let vulkan-loader wayland wget + libsecret libuuid ] ++ lib.optional pulseSupport libpulseaudio @@ -249,6 +255,7 @@ stdenv.mkDerivation (finalAttrs: { --prefix PATH : "$binpath" \ --suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" \ --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH:${addDriverRunpath.driverLink}/share" \ + --set SSL_CERT_FILE "${cacert}/etc/ssl/certs/ca-bundle.crt" \ --set CHROME_WRAPPER "microsoft-edge-$dist" \ --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}}" \ --add-flags "--simulate-outdated-no-au='Tue, 31 Dec 2099 23:59:59 GMT'" \ diff --git a/pkgs/by-name/mi/migrate-to-uv/package.nix b/pkgs/by-name/mi/migrate-to-uv/package.nix index 160ae5be9441..acd9d31774f7 100644 --- a/pkgs/by-name/mi/migrate-to-uv/package.nix +++ b/pkgs/by-name/mi/migrate-to-uv/package.nix @@ -11,19 +11,19 @@ python3.pkgs.buildPythonApplication rec { pname = "migrate-to-uv"; - version = "0.7.0"; + version = "0.7.1"; pyproject = true; src = fetchFromGitHub { owner = "mkniewallner"; repo = "migrate-to-uv"; tag = version; - hash = "sha256-e5fwBrCzU4FUKm0UxrzNGQUwQKF2RqW9Tfd0rz3iBFs="; + hash = "sha256-+ONnunsq5DGHmAZu51SeJevHXsQbv6/upHhETJmDMMM="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit src pname version; - hash = "sha256-HajsE8PxfmFCkXKj0uSvR2zYUHu5tJIxUM+ipWBLrX4="; + hash = "sha256-7PwshE0g2sVp8xweV3OTt7LwkwqGFfCJb3DoX1zfzS8="; }; build-system = [ diff --git a/pkgs/by-name/no/nomino/package.nix b/pkgs/by-name/no/nomino/package.nix index d94d88567f91..0c2ab9a42274 100644 --- a/pkgs/by-name/no/nomino/package.nix +++ b/pkgs/by-name/no/nomino/package.nix @@ -6,17 +6,17 @@ rustPlatform.buildRustPackage rec { pname = "nomino"; - version = "1.6.0"; + version = "1.6.1"; src = fetchFromGitHub { owner = "yaa110"; repo = "nomino"; rev = version; - hash = "sha256-BWfgXg3DYdhSzO3qtkwDZ+BZGcIqm82G3ZryaetLYgM="; + hash = "sha256-pSk1v4AyXETBJ8UupLJy8cNEqKRwkqJnqfzoHU0SdmE="; }; useFetchCargoVendor = true; - cargoHash = "sha256-lfArBtwaMeeofE1cBgXFJg2UOMcOhBGF4htJwzNthyc="; + cargoHash = "sha256-P8QkAzZ7jR8U+WzMLo4kDwMrARLk+RQWOr/j+8GCN0A="; meta = with lib; { description = "Batch rename utility for developers"; diff --git a/pkgs/by-name/pa/pablodraw/deps.json b/pkgs/by-name/pa/pablodraw/deps.json index 25634a90f5af..1133788828bb 100644 --- a/pkgs/by-name/pa/pablodraw/deps.json +++ b/pkgs/by-name/pa/pablodraw/deps.json @@ -49,91 +49,11 @@ "version": "1.0.2", "hash": "sha256-LsJWQ9QVG3teOJL2dlitp6TtTKmhlGBbaBwY4D3fQE0=" }, - { - "pname": "Microsoft.AspNetCore.App.Ref", - "version": "8.0.13", - "hash": "sha256-b18KQu7MpyC16a29m2lnGjMOS7upOto/L26kjZMskXU=" - }, - { - "pname": "Microsoft.AspNetCore.App.Runtime.linux-arm64", - "version": "8.0.13", - "hash": "sha256-tcjVQYbtKq0i4iFbwrphsg6SpeY6FGruGuFXCRF3+Dk=" - }, - { - "pname": "Microsoft.AspNetCore.App.Runtime.linux-x64", - "version": "8.0.13", - "hash": "sha256-QzXIvImfuh3GJ2OvwhD++QndWsKFaG7h5ucrtlQgLhU=" - }, - { - "pname": "Microsoft.AspNetCore.App.Runtime.osx-arm64", - "version": "8.0.13", - "hash": "sha256-2d5MjWdRU1n89QiNfQ89/TtpgAzJV/AQvCv57o3K5Gs=" - }, - { - "pname": "Microsoft.AspNetCore.App.Runtime.osx-x64", - "version": "8.0.13", - "hash": "sha256-6YC8Oa8Nsf1UPe+msdSiaBH8gC3ZslPT1c+GsE3hBXY=" - }, - { - "pname": "Microsoft.NETCore.App.Host.linux-arm64", - "version": "8.0.13", - "hash": "sha256-X2AqAooaPVCv3L5yEqW7IUBYWHwLmxpKrc9DsJP2xno=" - }, - { - "pname": "Microsoft.NETCore.App.Host.linux-x64", - "version": "8.0.13", - "hash": "sha256-hC1yeXkJtU8aVEeBozSulQmbsajxR+t8gtHsQXsAXBE=" - }, - { - "pname": "Microsoft.NETCore.App.Host.osx-arm64", - "version": "8.0.13", - "hash": "sha256-zkvfXzQR02bSSXuUAAxK09Nz7eOxJujfVtfIO5u/QZI=" - }, - { - "pname": "Microsoft.NETCore.App.Host.osx-x64", - "version": "8.0.13", - "hash": "sha256-KO28ZiI4EsH+t/ax1hR8Tptbz1IbEmyuFon4jeZd/5M=" - }, - { - "pname": "Microsoft.NETCore.App.Ref", - "version": "8.0.13", - "hash": "sha256-nzok5pDT+I1w9iZ8saaBFHk2Bj6jYipiVFlGcS0OnqU=" - }, - { - "pname": "Microsoft.NETCore.App.Runtime.linux-arm64", - "version": "8.0.13", - "hash": "sha256-XMvlGp3IvvV89/7QmOQczW19HkNF3LC/Tqrf02ITHCo=" - }, - { - "pname": "Microsoft.NETCore.App.Runtime.linux-x64", - "version": "8.0.13", - "hash": "sha256-gkFFzbfwUwawXswg21uDvP9b/ejuizH+oHZ2j+JNbTs=" - }, - { - "pname": "Microsoft.NETCore.App.Runtime.osx-arm64", - "version": "8.0.13", - "hash": "sha256-R3QROReDjm10EW6sVvlKjYxKf8PueejrhThwTXFd/Vk=" - }, - { - "pname": "Microsoft.NETCore.App.Runtime.osx-x64", - "version": "8.0.13", - "hash": "sha256-REWfahbBG/XxvXHQXqIALxv0LXtQmWgnoKFfnbTv8xs=" - }, - { - "pname": "Microsoft.NETCore.Platforms", - "version": "1.1.0", - "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" - }, { "pname": "Mono.Nat", "version": "3.0.4", "hash": "sha256-NdOquU2NaKtCv0p1+eY6awjOBwwzf92CwAJ4Dgz2+4M=" }, - { - "pname": "NETStandard.Library", - "version": "2.0.3", - "hash": "sha256-Prh2RPebz/s8AzHb2sPHg3Jl8s31inv9k+Qxd293ybo=" - }, { "pname": "Newtonsoft.Json", "version": "13.0.3", @@ -149,41 +69,6 @@ "version": "0.32.2", "hash": "sha256-9QaWG8N0IwoIddpqcoo2P/shmbrSG0tcTkhFBOhCKdw=" }, - { - "pname": "System.Buffers", - "version": "4.5.1", - "hash": "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI=" - }, - { - "pname": "System.ComponentModel.Annotations", - "version": "5.0.0", - "hash": "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg=" - }, - { - "pname": "System.Memory", - "version": "4.5.4", - "hash": "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E=" - }, - { - "pname": "System.Memory", - "version": "4.5.5", - "hash": "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI=" - }, - { - "pname": "System.Numerics.Vectors", - "version": "4.4.0", - "hash": "sha256-auXQK2flL/JpnB/rEcAcUm4vYMCYMEMiWOCAlIaqu2U=" - }, - { - "pname": "System.Runtime.CompilerServices.Unsafe", - "version": "4.5.3", - "hash": "sha256-lnZMUqRO4RYRUeSO8HSJ9yBHqFHLVbmenwHWkIU20ak=" - }, - { - "pname": "System.Runtime.CompilerServices.Unsafe", - "version": "6.0.0", - "hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=" - }, { "pname": "System.Text.Encoding.CodePages", "version": "9.0.0", diff --git a/pkgs/by-name/pa/pablodraw/package.nix b/pkgs/by-name/pa/pablodraw/package.nix index 33cc3129139e..d30a5e9a7ead 100644 --- a/pkgs/by-name/pa/pablodraw/package.nix +++ b/pkgs/by-name/pa/pablodraw/package.nix @@ -27,12 +27,12 @@ buildDotnetModule rec { executables = [ "PabloDraw" ]; dotnet-sdk = dotnetCorePackages.sdk_9_0; - dotnet-runtime = dotnetCorePackages.runtime_9_0; nugetDeps = ./deps.json; dotnetFlags = [ "-p:EnableCompressionInSingleFile=false" + "-p:TargetFrameworks=net9.0" ]; nativeBuildInputs = [ diff --git a/pkgs/by-name/ra/radio-cli/package.nix b/pkgs/by-name/ra/radio-cli/package.nix index b1ac0abe6754..8b976f7eae84 100644 --- a/pkgs/by-name/ra/radio-cli/package.nix +++ b/pkgs/by-name/ra/radio-cli/package.nix @@ -9,17 +9,17 @@ }: rustPlatform.buildRustPackage rec { pname = "radio-cli"; - version = "2.3.1"; + version = "2.3.2"; src = fetchFromGitHub { owner = "margual56"; repo = "radio-cli"; rev = "v${version}"; - hash = "sha256-XN0IzU7+V0zUUXfOygWrZXQX09IEpVo2Rhwfv+Lny/E="; + hash = "sha256-De/3tkvHf8dp04A0hug+aCbiXUc+XUYeHWYOiJ/bac0="; }; useFetchCargoVendor = true; - cargoHash = "sha256-RZRddbXpMA1iQs5/4OwffoBrAh0oc/yFueGmvZDxRMA="; + cargoHash = "sha256-mxSlyQpMzLbiIbcVQUILHDyLsCf/9fanX9/yf0hyXHA="; buildInputs = [ openssl ]; diff --git a/pkgs/by-name/rd/rdrview/package.nix b/pkgs/by-name/rd/rdrview/package.nix index c9327a494430..ad50b473490a 100644 --- a/pkgs/by-name/rd/rdrview/package.nix +++ b/pkgs/by-name/rd/rdrview/package.nix @@ -6,17 +6,18 @@ curl, libseccomp, installShellFiles, + nix-update-script, }: -stdenv.mkDerivation { +stdenv.mkDerivation (finalAttrs: { pname = "rdrview"; - version = "unstable-2021-05-30"; + version = "0.1.3"; src = fetchFromGitHub { owner = "eafer"; repo = "rdrview"; - rev = "444ce3d6efd8989cd6ecfdc0560071b20e622636"; - sha256 = "02VC8r8PdcAfMYB0/NtbPnhsWatpLQc4mW4TmSE1+zk="; + rev = "v${finalAttrs.version}"; + hash = "sha256-UFHRsaLGa/jv/S+VXtXIMgLuQUPgqbRgD35bBrJyuZA="; }; buildInputs = [ @@ -42,4 +43,6 @@ stdenv.mkDerivation { maintainers = with maintainers; [ djanatyn ]; mainProgram = "rdrview"; }; -} + + passthru.updateScript = nix-update-script { }; +}) diff --git a/pkgs/by-name/ri/rivet/package.nix b/pkgs/by-name/ri/rivet/package.nix index f69fc644e841..6d7ad79dfdba 100644 --- a/pkgs/by-name/ri/rivet/package.nix +++ b/pkgs/by-name/ri/rivet/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { pname = "rivet"; - version = "4.0.3"; + version = "4.1.0"; src = fetchurl { url = "https://www.hepforge.org/archive/rivet/Rivet-${version}.tar.bz2"; - hash = "sha256-27l7dp0Yd/NMPFAZASe/2nhHvOx5uh3llWH99DzdSGk="; + hash = "sha256-ZUijUaROWkMD+yJ351IWkKnYQZXfltkscHuBbztAyEM="; }; latex = texliveBasic.withPackages ( diff --git a/pkgs/by-name/sc/scip-go/package.nix b/pkgs/by-name/sc/scip-go/package.nix index 7ffaa1ad8fdd..4b6403ba52b9 100644 --- a/pkgs/by-name/sc/scip-go/package.nix +++ b/pkgs/by-name/sc/scip-go/package.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "scip-go"; - version = "0.1.22"; + version = "0.1.23"; src = fetchFromGitHub { owner = "sourcegraph"; repo = "scip-go"; rev = "v${version}"; - hash = "sha256-1vu6+0CMQwju+Ym0iYXqVktwfJtZFWbn7aOK/w5pVq4="; + hash = "sha256-/3+vTz/W1mmI2zlVQLW4wPd66zK7HpFb8VaLFuUPRhk="; }; vendorHash = "sha256-E/1ubWGIx+sGC+owqw4nOkrwUFJfgTeqDNpH8HCwNhA="; diff --git a/pkgs/by-name/se/senpai/bump-go-version.patch b/pkgs/by-name/se/senpai/bump-go-version.patch deleted file mode 100644 index 757368942499..000000000000 --- a/pkgs/by-name/se/senpai/bump-go-version.patch +++ /dev/null @@ -1,84 +0,0 @@ -diff --git a/go.mod b/go.mod -index 8841027..fda8eb7 100644 ---- a/go.mod -+++ b/go.mod -@@ -1,6 +1,6 @@ - module git.sr.ht/~delthas/senpai - --go 1.16 -+go 1.18 - - require ( - git.sr.ht/~emersion/go-scfg v0.0.0-20231004133111-9dce55c8d63b -@@ -13,4 +13,14 @@ require ( - mvdan.cc/xurls/v2 v2.5.0 - ) - -+require ( -+ github.com/gdamore/encoding v1.0.0 // indirect -+ github.com/godbus/dbus/v5 v5.1.0 // indirect -+ github.com/lucasb-eyer/go-colorful v1.2.0 // indirect -+ github.com/rivo/uniseg v0.4.3 // indirect -+ golang.org/x/sys v0.14.0 // indirect -+ golang.org/x/term v0.14.0 // indirect -+ golang.org/x/text v0.14.0 // indirect -+) -+ - replace github.com/gdamore/tcell/v2 => github.com/delthas/tcell/v2 v2.4.1-0.20230710100648-1489e78d90fb -diff --git a/go.sum b/go.sum -index 89c5397..f4d3eaa 100644 ---- a/go.sum -+++ b/go.sum -@@ -20,44 +20,34 @@ github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh - github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= - github.com/rivo/uniseg v0.4.3 h1:utMvzDsuh3suAEnhH0RdHmoPbU648o6CvXxTx4SBMOw= - github.com/rivo/uniseg v0.4.3/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= --github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= - github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= - golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= - golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= --golang.org/x/crypto v0.15.0/go.mod h1:4ChreQoLWfG3xLDer1WdlH5NdlQ3+mwnQq1YTKY+72g= - golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= --golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= --golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= - golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= - golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= - golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= --golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= --golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= - golang.org/x/net v0.18.0 h1:mIYleuAkSbHh0tCv7RvjL3F6ZVbLjq4+R7zbOn3Kokg= - golang.org/x/net v0.18.0/go.mod h1:/czyP5RqHAH4odGYxBJ1qz0+CE5WZ+2j1YgoEo8F2jQ= - golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= - golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= --golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= - golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= - golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= - golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= - golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= - golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= - golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= --golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= - golang.org/x/sys v0.14.0 h1:Vz7Qs629MkJkGyHxUlRHizWJRG2j8fbQKjELVSNhy7Q= - golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= - golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= - golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= - golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= --golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= - golang.org/x/term v0.14.0 h1:LGK9IlZ8T9jvdy6cTdfKUCltatMFOehAQo9SRC46UQ8= - golang.org/x/term v0.14.0/go.mod h1:TySc+nGkYR6qt8km8wUhuFRTVSMIX3XPR58y2lC8vww= - golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= - golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= - golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= - golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= --golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= - golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= - golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= - golang.org/x/time v0.4.0 h1:Z81tqI5ddIoXDPvVQ7/7CC9TnLM7ubaFG2qXYd5BbYY= -@@ -65,7 +55,6 @@ golang.org/x/time v0.4.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= - golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= - golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= - golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= --golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= - golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= - mvdan.cc/xurls/v2 v2.5.0 h1:lyBNOm8Wo71UknhUs4QTFUNNMyxy2JEIaKKo0RWOh+8= - mvdan.cc/xurls/v2 v2.5.0/go.mod h1:yQgaGQ1rFtJUzkmKiHYSSfuQxqfYmd//X6PxvholpeE= diff --git a/pkgs/by-name/se/senpai/package.nix b/pkgs/by-name/se/senpai/package.nix index f85eef1eaa70..b0488b7ef307 100644 --- a/pkgs/by-name/se/senpai/package.nix +++ b/pkgs/by-name/se/senpai/package.nix @@ -4,25 +4,21 @@ fetchFromSourcehut, installShellFiles, scdoc, + nix-update-script, }: buildGoModule rec { pname = "senpai"; - version = "0.3.0"; + version = "0.4.0"; src = fetchFromSourcehut { owner = "~delthas"; repo = "senpai"; rev = "v${version}"; - sha256 = "sha256-A5kBrJJi+RcSpB0bi2heKzNl5LjdeT9h2Pc9kKXDg1A="; + sha256 = "sha256-3DVy+7mMVFmPpGxwJqtt2+QwNEMrgZazynawE/Wf+UM="; }; - vendorHash = "sha256-kKYee1QJX7N101MTikHUbX+AqZ2NhM4soE4JAAOdAPI="; - - patches = [ - # fix build failures, submitted upstream https://lists.sr.ht/~delthas/senpai-dev/patches/48581 - ./bump-go-version.patch - ]; + vendorHash = "sha256-6glslBPjJr0TmrAkDGbOQ4sDzvODlavVeTugs6RXsCU="; subPackages = [ "cmd/senpai" @@ -39,6 +35,8 @@ buildGoModule rec { installManPage doc/senpai.* ''; + passthru.updateScript = nix-update-script { }; + meta = with lib; { description = "Your everyday IRC student"; mainProgram = "senpai"; diff --git a/pkgs/by-name/sp/spotifyd/package.nix b/pkgs/by-name/sp/spotifyd/package.nix index 5dcf83303bfd..380d97266dc8 100644 --- a/pkgs/by-name/sp/spotifyd/package.nix +++ b/pkgs/by-name/sp/spotifyd/package.nix @@ -3,6 +3,7 @@ stdenv, config, alsa-lib, + apple-sdk_11, cmake, dbus, fetchFromGitHub, @@ -42,7 +43,8 @@ rustPlatform.buildRustPackage (finalAttrs: { ]; buildInputs = - lib.optionals stdenv.hostPlatform.isLinux [ openssl ] + lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ] + ++ lib.optionals stdenv.hostPlatform.isLinux [ openssl ] # The `dbus_mpris` feature works on other platforms, but only requires `dbus` on Linux ++ lib.optional (withMpris && stdenv.hostPlatform.isLinux) dbus ++ lib.optional (withALSA || withJack) alsa-lib @@ -61,6 +63,13 @@ rustPlatform.buildRustPackage (finalAttrs: { ++ lib.optional withPortAudio "portaudio_backend" ++ lib.optional withPulseAudio "pulseaudio_backend"; + checkFlags = lib.optionals stdenv.hostPlatform.isDarwin [ + # `assertion failed: shell.is_some()` + # Internally it's trying to query the user's shell through `dscl`. This is bad + # https://github.com/Spotifyd/spotifyd/blob/8777c67988508d3623d3f6b81c9379fb071ac7dd/src/utils.rs#L45-L47 + "--skip=utils::tests::test_ffi_discovery" + ]; + passthru = { tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; updateScript = nix-update-script { }; diff --git a/pkgs/by-name/st/steel/package.nix b/pkgs/by-name/st/steel/package.nix index a78eacd8ae35..71eb5df05e8b 100644 --- a/pkgs/by-name/st/steel/package.nix +++ b/pkgs/by-name/st/steel/package.nix @@ -20,13 +20,13 @@ }: rustPlatform.buildRustPackage { pname = "steel"; - version = "0.6.0-unstable-2025-02-27"; + version = "0.6.0-unstable-2025-03-17"; src = fetchFromGitHub { owner = "mattwparas"; repo = "steel"; - rev = "f1a605a0f3fe321f4605a80c4497eda2eac5ffce"; - hash = "sha256-3Iqoy2J9wY3T5jOSjtEk1aT+Q3ncNmmpQ/LY/iyvKuY="; + rev = "8482d947369230b3af45e8775b78dad2379f7a1a"; + hash = "sha256-/2j8olMZngr5tKmM0JfxM8oi+CYn05LY5406syq7jak="; }; useFetchCargoVendor = true; diff --git a/pkgs/by-name/sy/syft/package.nix b/pkgs/by-name/sy/syft/package.nix index b67304a80724..f75117c4d436 100644 --- a/pkgs/by-name/sy/syft/package.nix +++ b/pkgs/by-name/sy/syft/package.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "syft"; - version = "1.19.0"; + version = "1.20.0"; src = fetchFromGitHub { owner = "anchore"; repo = "syft"; tag = "v${version}"; - hash = "sha256-mO4mRMLoYA5WjDsA4FbMd/RLbQOekXKikl1zlZNKYtk="; + hash = "sha256-kXan8bRpZoDimTwzva9KOKG1NqL9IDTRxpnXMDTUFBs="; # populate values that require us to use git. By doing this in postFetch we # can delete .git afterwards and maintain better reproducibility of the src. leaveDotGit = true; @@ -28,7 +28,7 @@ buildGoModule rec { # hash mismatch with darwin proxyVendor = true; - vendorHash = "sha256-KmMES19mGgtSeGw31DqZQm9wp0y+nu3P2LTZh9ofCPM="; + vendorHash = "sha256-rtDJuB6xGmxtq1k1jwMf1aEGlxEHywGiJvAdaI4So9U="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/tb/tbls/package.nix b/pkgs/by-name/tb/tbls/package.nix index 81c6398299c8..5e1d96bb6d89 100644 --- a/pkgs/by-name/tb/tbls/package.nix +++ b/pkgs/by-name/tb/tbls/package.nix @@ -10,16 +10,16 @@ buildGoModule rec { pname = "tbls"; - version = "1.82.0"; + version = "1.83.0"; src = fetchFromGitHub { owner = "k1LoW"; repo = "tbls"; tag = "v${version}"; - hash = "sha256-wDovKX+1QjZ/IN73nDJ8zoIq74l8E6xXH2c3ZF7YW7A="; + hash = "sha256-9tpElkwhGSBGT1wWEzU5vvU6ntlJUYeoSHxVwIzyRYM="; }; - vendorHash = "sha256-+OnlEe5znRBhLxf8M1vAP7OmvYIvIR6avbUvYbL/Mfc="; + vendorHash = "sha256-rO437sj5hLQefLkGGGr/wFCIqfeARMcHgip5E88jdCA="; excludedPackages = [ "scripts/jsonschema" ]; diff --git a/pkgs/by-name/te/terragrunt/package.nix b/pkgs/by-name/te/terragrunt/package.nix index c02f10f5b648..f84ef1fc2d5f 100644 --- a/pkgs/by-name/te/terragrunt/package.nix +++ b/pkgs/by-name/te/terragrunt/package.nix @@ -1,26 +1,26 @@ { lib, - # Breaks with go 1.24 (see https://github.com/gruntwork-io/terragrunt/issues/4031) - # > 2025/03/17 13:30:44 internal error: package "bufio" without types was imported from "github.com/gruntwork-io/terragrunt/tf/getproviders" - # > tf/getproviders/lock.go:1: running "mockery": exit status 1 - # > make: *** [Makefile:54: generate-mocks] Error 1 - buildGo123Module, + buildGoModule, fetchFromGitHub, + versionCheckHook, go-mockery, }: -buildGo123Module rec { +buildGoModule rec { pname = "terragrunt"; - version = "0.75.10"; + version = "0.76.1"; src = fetchFromGitHub { owner = "gruntwork-io"; repo = pname; tag = "v${version}"; - hash = "sha256-lnp1prffufVOG+XV7UAo9Rh3ALE//b87ioPgimgZ5S0="; + hash = "sha256-VYoqKowP7LivXTifl0Qv3OnVyaIhhuA28jrvkaLSPFA="; }; - nativeBuildInputs = [ go-mockery ]; + nativeBuildInputs = [ + versionCheckHook + go-mockery + ]; preBuild = '' make generate-mocks @@ -39,13 +39,6 @@ buildGo123Module rec { doInstallCheck = true; - installCheckPhase = '' - runHook preInstallCheck - $out/bin/terragrunt --help - $out/bin/terragrunt --version | grep "v${version}" - runHook postInstallCheck - ''; - meta = with lib; { homepage = "https://terragrunt.gruntwork.io"; changelog = "https://github.com/gruntwork-io/terragrunt/releases/tag/v${version}"; diff --git a/pkgs/by-name/ti/tigerbeetle/package.nix b/pkgs/by-name/ti/tigerbeetle/package.nix index 44867c4bdd6c..9e4e6b8d756f 100644 --- a/pkgs/by-name/ti/tigerbeetle/package.nix +++ b/pkgs/by-name/ti/tigerbeetle/package.nix @@ -10,14 +10,14 @@ let platform = if stdenvNoCC.hostPlatform.isDarwin then "universal-macos" else stdenvNoCC.hostPlatform.system; hash = builtins.getAttr platform { - "universal-macos" = "sha256-E+CXxqa7RCJ+c4KMPPbaNm/z6IrjSlOg9rkcHtVXkew="; - "x86_64-linux" = "sha256-tqx52qO3HuSa9dQD+BlpqE+k4TP4Db9OUloLkL5uR7M="; - "aarch64-linux" = "sha256-rgaN1y0NPdYdn132ey1PjJqwkqC1Z736u7nshw1n1gE="; + "universal-macos" = "sha256-YTEC0DAhiNxbjnDNd9kJBL6MISidkKM0AOxVJ04TTZo="; + "x86_64-linux" = "sha256-OZ2O4leqJ72+Jv7Aii8YrytGbvuH3B/RDm9SVvEZxDY="; + "aarch64-linux" = "sha256-ZXlw0IrzzMDe3lq+Qt6pS/K5+MThzr80hrR2ZPyLXtE="; }; in stdenvNoCC.mkDerivation (finalAttrs: { pname = "tigerbeetle"; - version = "0.16.30"; + version = "0.16.32"; src = fetchzip { url = "https://github.com/tigerbeetle/tigerbeetle/releases/download/${finalAttrs.version}/tigerbeetle-${platform}.zip"; diff --git a/pkgs/by-name/tr/treefmt/build-config.nix b/pkgs/by-name/tr/treefmt/build-config.nix new file mode 100644 index 000000000000..65fe7ca8f089 --- /dev/null +++ b/pkgs/by-name/tr/treefmt/build-config.nix @@ -0,0 +1,29 @@ +{ + lib, + formats, +}: +module: +let + settingsFormat = formats.toml { }; + configuration = lib.evalModules { + modules = [ + { + _file = ./build-config.nix; + freeformType = settingsFormat.type; + } + { + # Wrap user's modules with a default file location + _file = ""; + imports = lib.toList module; + } + ]; + }; + settingsFile = settingsFormat.generate "treefmt.toml" configuration.config; +in +settingsFile.overrideAttrs { + passthru = { + format = settingsFormat; + settings = configuration.config; + inherit (configuration) _module options type; + }; +} diff --git a/pkgs/by-name/tr/treefmt/package.nix b/pkgs/by-name/tr/treefmt/package.nix index 0aca91e20c5c..abaf85a49436 100644 --- a/pkgs/by-name/tr/treefmt/package.nix +++ b/pkgs/by-name/tr/treefmt/package.nix @@ -1,6 +1,8 @@ { lib, buildGoModule, + callPackage, + callPackages, fetchFromGitHub, }: buildGoModule rec { @@ -27,13 +29,46 @@ buildGoModule rec { "-X github.com/numtide/treefmt/v2/build.Version=v${version}" ]; + passthru = { + /** + Wrap treefmt, configured using structured settings. + + # Type + + ``` + AttrSet -> Derivation + ``` + + # Inputs + + - `name`: `String` (default `"treefmt-configured"`) + - `settings`: `Module` (default `{ }`) + - `runtimeInputs`: `[Derivation]` (default `[ ]`) + */ + withConfig = callPackage ./with-config.nix { }; + + /** + Build a treefmt config file from structured settings. + + # Type + + ``` + Module -> Derivation + ``` + */ + buildConfig = callPackage ./build-config.nix { }; + + tests = callPackages ./tests.nix { }; + }; + meta = { description = "one CLI to format the code tree"; homepage = "https://github.com/numtide/treefmt"; license = lib.licenses.mit; - maintainers = [ - lib.maintainers.brianmcgee - lib.maintainers.zimbatm + maintainers = with lib.maintainers; [ + brianmcgee + MattSturgeon + zimbatm ]; mainProgram = "treefmt"; }; diff --git a/pkgs/by-name/tr/treefmt/tests.nix b/pkgs/by-name/tr/treefmt/tests.nix new file mode 100644 index 000000000000..763bb14e5656 --- /dev/null +++ b/pkgs/by-name/tr/treefmt/tests.nix @@ -0,0 +1,110 @@ +{ + lib, + runCommand, + testers, + treefmt, + nixfmt-rfc-style, +}: +let + inherit (treefmt) buildConfig withConfig; + + testEqualContents = + args: + testers.testEqualContents ( + args + // lib.optionalAttrs (builtins.isString args.expected) { + expected = builtins.toFile "expected" args.expected; + } + ); + + nixfmtExampleConfig = { + on-unmatched = "info"; + tree-root-file = ".git/index"; + + formatter.nixfmt = { + command = "nixfmt"; + includes = [ "*.nix" ]; + }; + }; + + nixfmtExamplePackage = withConfig { + settings = nixfmtExampleConfig; + runtimeInputs = [ nixfmt-rfc-style ]; + }; +in +{ + buildConfigEmpty = testEqualContents { + assertion = "`buildConfig { }` builds an empty config file"; + actual = buildConfig { }; + expected = ""; + }; + + buildConfigExample = testEqualContents { + assertion = "`buildConfig` builds the example config"; + actual = buildConfig nixfmtExampleConfig; + expected = '' + on-unmatched = "info" + tree-root-file = ".git/index" + [formatter.nixfmt] + command = "nixfmt" + includes = ["*.nix"] + ''; + }; + + buildConfigModules = testEqualContents { + assertion = "`buildConfig` evaluates modules to build a config"; + actual = buildConfig [ + nixfmtExampleConfig + { tree-root-file = lib.mkForce "overridden"; } + ]; + expected = '' + on-unmatched = "info" + tree-root-file = "overridden" + [formatter.nixfmt] + command = "nixfmt" + includes = ["*.nix"] + ''; + }; + + runNixfmtExample = + runCommand "run-nixfmt-example" + { + nativeBuildInputs = [ nixfmtExamplePackage ]; + passAsFile = [ + "input" + "expected" + ]; + input = '' + { + foo="bar"; + attrs={}; + list=[]; + } + ''; + expected = '' + { + foo = "bar"; + attrs = { }; + list = [ ]; + } + ''; + } + '' + export XDG_CACHE_HOME=$(mktemp -d) + # The example config assumes the tree root has a .git/index file + mkdir .git && touch .git/index + + # Copy the input file, then format it using the wrapped treefmt + cp $inputPath input.nix + treefmt + + # Assert that input.nix now matches expected + if diff -u $expectedPath input.nix; then + touch $out + else + echo + echo "treefmt did not format input.nix as expected" + exit 1 + fi + ''; +} diff --git a/pkgs/by-name/tr/treefmt/with-config.nix b/pkgs/by-name/tr/treefmt/with-config.nix new file mode 100644 index 000000000000..9d3f73c1e6b2 --- /dev/null +++ b/pkgs/by-name/tr/treefmt/with-config.nix @@ -0,0 +1,31 @@ +{ + lib, + runCommand, + treefmt, + makeBinaryWrapper, +}: +{ + name ? "treefmt-with-config", + settings ? { }, + runtimeInputs ? [ ], +}: +runCommand name + { + nativeBuildInputs = [ makeBinaryWrapper ]; + treefmtExe = lib.getExe treefmt; + binPath = lib.makeBinPath runtimeInputs; + configFile = treefmt.buildConfig { + # Wrap user's modules with a default file location + _file = ""; + imports = lib.toList settings; + }; + inherit (treefmt) meta version; + } + '' + mkdir -p $out/bin + makeWrapper \ + $treefmtExe \ + $out/bin/treefmt \ + --prefix PATH : "$binPath" \ + --add-flags "--config-file $configFile" + '' diff --git a/pkgs/by-name/tu/tuckr/package.nix b/pkgs/by-name/tu/tuckr/package.nix index 6bea73419323..283259994be1 100644 --- a/pkgs/by-name/tu/tuckr/package.nix +++ b/pkgs/by-name/tu/tuckr/package.nix @@ -6,17 +6,17 @@ rustPlatform.buildRustPackage rec { pname = "tuckr"; - version = "0.11.0"; + version = "0.11.1"; src = fetchFromGitHub { owner = "RaphGL"; repo = "Tuckr"; rev = version; - hash = "sha256-ez27IEdOPryyIQCGATjKGeos3stLHP4BkwnJBLk+1W8="; + hash = "sha256-0ZPBJ2MNeoGCvYW6HswVZ5SyjZpdR21lp9ebceIhsfw="; }; useFetchCargoVendor = true; - cargoHash = "sha256-4F54N+r/er3j9zAzfSkXiwl5iEjh47PPzHByMZ0jA+Y="; + cargoHash = "sha256-vgwO1N7FuqZaY+ShkQHmCEYwiKZRkkqDNAU7SnTg1rw="; doCheck = false; # test result: FAILED. 5 passed; 3 failed; diff --git a/pkgs/by-name/tx/txtpbfmt/package.nix b/pkgs/by-name/tx/txtpbfmt/package.nix index 0843023dac8a..92f7b5ccbf3d 100644 --- a/pkgs/by-name/tx/txtpbfmt/package.nix +++ b/pkgs/by-name/tx/txtpbfmt/package.nix @@ -7,13 +7,13 @@ buildGoModule { pname = "txtpbfmt"; - version = "0-unstable-2025-02-18"; + version = "0-unstable-2025-03-17"; src = fetchFromGitHub { owner = "protocolbuffers"; repo = "txtpbfmt"; - rev = "1ee4910263ac60befe5382667ecbdee26f4ab38c"; - hash = "sha256-8aL3NXa5icy6UzqJ6CygzNTK3EdB4bXW9ju4SXqonhY="; + rev = "bcaa21031d50b90bf873b5e952f30b4721fadfc0"; + hash = "sha256-KqIkenKJwn6QssUOJDwusDU/h9K5DSWPxflbmoWUMEY="; }; vendorHash = "sha256-iWY0b6PAw9BhA8WrTEECnVAKWTGXuIiGvOi9uhJO4PI="; diff --git a/pkgs/by-name/xg/xgboost/package.nix b/pkgs/by-name/xg/xgboost/package.nix index ef167e4f6770..6489f3d4fdcf 100644 --- a/pkgs/by-name/xg/xgboost/package.nix +++ b/pkgs/by-name/xg/xgboost/package.nix @@ -3,7 +3,6 @@ stdenv, lib, fetchFromGitHub, - fetchpatch, cmake, gtest, doCheck ? true, @@ -49,25 +48,16 @@ effectiveStdenv.mkDerivation rec { # in \ # rWrapper.override{ packages = [ xgb ]; }" pname = lib.optionalString rLibrary "r-" + pnameBase; - version = "2.0.3"; + version = "2.1.4"; src = fetchFromGitHub { owner = "dmlc"; repo = pnameBase; rev = "v${version}"; fetchSubmodules = true; - hash = "sha256-LWco3A6zwdnAf8blU4qjW7PFEeZaTcJlVTwVrs7nwWM="; + hash = "sha256-k1k6K11cWpG6PtzTt99q/rrkN3FyxCVEzfPI9fCTAjM="; }; - patches = lib.optionals (cudaSupport && cudaPackages.cudaMajorMinorVersion == "12.4") [ - (fetchpatch { - # https://github.com/dmlc/xgboost/pull/10123 - name = "Fix compilation with the ctk 12.4."; - url = "https://github.com/dmlc/xgboost/commit/c760f85db0bc7bd6379901fbfb67ceccc2b37700.patch"; - hash = "sha256-iP9mll9pg8T2ztCR7dBPnLP17/x3ImJFrr5G3e2dqHo="; - }) - ]; - nativeBuildInputs = [ cmake ] ++ lib.optionals effectiveStdenv.hostPlatform.isDarwin [ llvmPackages.openmp ] @@ -77,6 +67,7 @@ effectiveStdenv.mkDerivation rec { buildInputs = [ gtest ] ++ lib.optional cudaSupport cudaPackages.cudatoolkit + ++ lib.optional cudaSupport cudaPackages.cuda_cudart ++ lib.optional ncclSupport cudaPackages.nccl; propagatedBuildInputs = lib.optionals rLibrary [ @@ -115,12 +106,61 @@ effectiveStdenv.mkDerivation rec { GTEST_FILTER = let # Upstream Issue: https://github.com/xtensor-stack/xsimd/issues/456 - filteredTests = lib.optionals effectiveStdenv.hostPlatform.isDarwin [ + xsimdTests = lib.optionals effectiveStdenv.hostPlatform.isDarwin [ "ThreadGroup.TimerThread" "ThreadGroup.TimerThreadSimple" ]; + networkingTest = [ + "AllgatherTest.Basic" + "AllgatherTest.VAlgo" + "AllgatherTest.VBasic" + "AllgatherTest.VRing" + "AllreduceGlobal.Basic" + "AllreduceGlobal.Small" + "AllreduceTest.Basic" + "AllreduceTest.BitOr" + "AllreduceTest.Restricted" + "AllreduceTest.Sum" + "Approx.PartitionerColumnSplit" + "BroadcastTest.Basic" + "CPUHistogram.BuildHistColSplit" + "CPUPredictor.CategoricalPredictLeafColumnSplit" + "CPUPredictor.CategoricalPredictionColumnSplit" + "ColumnSplit/ColumnSplitTrainingTest*" + "ColumnSplit/TestApproxColumnSplit*" + "ColumnSplit/TestHistColumnSplit*" + "ColumnSplitObjective/TestColumnSplit*" + "CommGroupTest.Basic" + "CommTest.Channel" + "CpuPredictor.BasicColumnSplit" + "CpuPredictor.IterationRangeColmnSplit" + "CpuPredictor.LesserFeaturesColumnSplit" + "CpuPredictor.SparseColumnSplit" + "DistributedMetric/TestDistributedMetric.BinaryAUCRowSplit/Dist_*" + "InitEstimation.FitStumpColumnSplit" + "MetaInfo.GetSetFeatureColumnSplit" + "Quantile.ColumnSplit" + "Quantile.ColumnSplitBasic" + "Quantile.ColumnSplitSorted" + "Quantile.ColumnSplitSortedBasic" + "Quantile.Distributed" + "Quantile.DistributedBasic" + "Quantile.SameOnAllWorkers" + "Quantile.SortedDistributed" + "Quantile.SortedDistributedBasic" + "QuantileHist.MultiPartitionerColumnSplit" + "QuantileHist.PartitionerColumnSplit" + "SimpleDMatrix.ColumnSplit" + "TrackerAPITest.CAPI" + "TrackerTest.AfterShutdown" + "TrackerTest.Bootstrap" + "TrackerTest.GetHostAddress" + "TrackerTest.Print" + "VectorAllgatherV.Basic" + ]; + excludedTests = xsimdTests ++ networkingTest; in - "-${builtins.concatStringsSep ":" filteredTests}"; + "-${builtins.concatStringsSep ":" excludedTests}"; installPhase = '' diff --git a/pkgs/by-name/yo/yoda/package.nix b/pkgs/by-name/yo/yoda/package.nix index 9ac3387cdda5..07f87fa461d2 100644 --- a/pkgs/by-name/yo/yoda/package.nix +++ b/pkgs/by-name/yo/yoda/package.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation rec { pname = "yoda"; - version = "2.0.3"; + version = "2.1.0"; src = fetchFromGitLab { owner = "hepcedar"; repo = "yoda"; rev = "yoda-${version}"; - hash = "sha256-No2Lr4nmYNfFnJVpg7xYjd35g12CbQtpW9QMjM3owko="; + hash = "sha256-cYJNB4Nk6r9EbTbMrhUFvj6s0VR/QH2o9wl/cUw9jQ0="; }; nativeBuildInputs = with python3.pkgs; [ diff --git a/pkgs/development/compilers/dotnet/8/bootstrap-sdk.nix b/pkgs/development/compilers/dotnet/8/bootstrap-sdk.nix index 6c9b7f9dac2f..f698aa35dbd3 100644 --- a/pkgs/development/compilers/dotnet/8/bootstrap-sdk.nix +++ b/pkgs/development/compilers/dotnet/8/bootstrap-sdk.nix @@ -11,43 +11,43 @@ let commonPackages = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Ref"; - version = "8.0.12"; - hash = "sha512-IU0eI4OrQYkabBlA2WpJTv4ySiWm9d7fnnX99k4m1aEq1XnffJIg+a2YOHwbJRR94GdQMHTb0Ug87OdX10Z+JQ=="; + version = "8.0.13"; + hash = "sha512-MgSCr3Rq6GgXQajJ7r3j96vIGlfwKdJd+i5gp9FSfKFMagJ69dzdqxaAHvvpxiuyR+b4ssUW+c/3gNmpze3eKA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.DotNetAppHost"; - version = "8.0.12"; - hash = "sha512-vX8WpwQ9zE4VMheMIXm8pvQL1BYAvTTFeDxuiZ2U7edUHl+dTBA2gizqKG5x8nVJ+hBLEOnd6NVe/IQ/4jJZQA=="; + version = "8.0.13"; + hash = "sha512-YMKye+unHqv+lLVHmy/H2YTbs8DaRpcG+K4D3WqivPCoWGX6fjNvtg8g4zR6axVrFNnKczwQJEL34wetUGx61w=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Ref"; - version = "8.0.12"; - hash = "sha512-Njr8IyfftNDLVifJfppsfU8Fq0e/HM/dkll9pVVZGyEzFyaQVN2irOcwdLXxZeH/npWaBD0x9T3980vhkMbt+A=="; + version = "8.0.13"; + hash = "sha512-pWiKiUc9qaTLlZ8/kVD6s7jEYJTCAfqnphxCOJEXkP1wOcEpMWN9d21GK9ubOSq63IVAAeKmA2DoRFItcyha6g=="; }) (fetchNupkg { pname = "Microsoft.NETCore.DotNetHost"; - version = "8.0.12"; - hash = "sha512-8rjYi83EF7eBOT1xfUkQA3QxH1sZ3GDbVwX4keXHE2x5PTVg93AdNymis+6hrng1cRCmsQHXqLd7TKYaBv+IZQ=="; + version = "8.0.13"; + hash = "sha512-ZtwZhoOO0WvuptMPZmvj9QUzTNu19OroTihw6qtJS8vUreRc7UjvqH7PvOFdwgKtX1r1bDLfdR/4nRuIwoBRoA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.12"; - hash = "sha512-QO0rXIEDNJxhuxwu5DG9dSy9z2zgb2rkzQ1chPRwTKc6DQ6aM/Am9ip/ZGctBwOkd+U//rk3mAtiyt4urSkFtA=="; + version = "8.0.13"; + hash = "sha512-tJMoj/QZpYDleN/H3UghIynxnXPRgMPdrx1uqvX/3wnjsIme1ExM3ZTkZ6enJjAt73i6FVEWQyXTVczczgabDA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.12"; - hash = "sha512-62zfQPVBxlPMyBXwGoxtjGa6wG+3X7DxDBMUeXVkazAvmskE6K3oDlxizpvicC/ixs9qP9XfPG29Xnk4C2OO8g=="; + version = "8.0.13"; + hash = "sha512-UMv8jGREl+mz8P9MS20y2sWWbkGZyn5BISDz7IVlEgoY+qxRkZX8l7sQqq8XxAM1BkZLy9PM6JtHQSv+VMI7Qg=="; }) (fetchNupkg { pname = "Microsoft.DotNet.ILCompiler"; - version = "8.0.12"; - hash = "sha512-r6NUtAtfVD/yrl5I32Tgvp2omJeEudvcJKHP4P48QAq4yTcNxfIwSrnpTNala4rdesPN0oCT1EVYjjM5Zsx90w=="; + version = "8.0.13"; + hash = "sha512-suZh3YYsbkaRQOHRRtdozciCJHdxCEWV73tGBQZJzc0dFYRh3FsfYxUtDACpbWRQ2IZTYJawrEo7mZHUwXcPtQ=="; }) (fetchNupkg { pname = "Microsoft.NET.ILLink.Tasks"; - version = "8.0.12"; - hash = "sha512-x8415TsDFy1pMt6c/PvjO6N42DxS8H53M8dfXgtAETiXAhZAx20mR35MshFn/LFP1TIgk92F3XEn4jzN8alWbQ=="; + version = "8.0.13"; + hash = "sha512-W9UdnWxyclcioXrchdCpsQDJqnUtCS+m4aWRWV+2ejskgjNjUyiOrpYjQy+XVE5bW9krwd9ynOkD3KXL91sDFw=="; }) ]; @@ -55,118 +55,118 @@ let linux-arm = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm"; - version = "8.0.12"; - hash = "sha512-+mObcz+CfLpcmBUBLi0dkPyapyBWusj1xBBuEZz8Aeka6MWy5WS2ln2Tes4tKv4HKdbEQZJjI9wDH+9P+7GJdA=="; + version = "8.0.13"; + hash = "sha512-wPiH6xLRHVjd6LiOc9xEOJH+LSIamyZBPPb3VxdAOeHxcD5WjyoS7rUhI/M6DqufG6Gi7VMhehP9lLejW+2zFQ=="; }) ]; linux-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm64"; - version = "8.0.12"; - hash = "sha512-SpNIfhe1CdGsbt6F7iP0rKJZ+4qPJug3l2T33XospN7AGhHewHIQadRQqG/dQBab1e1ur3w8dCnmYlf/48gymA=="; + version = "8.0.13"; + hash = "sha512-eDzhFaPa70k8gUeu6rbr7s2aOfFSvwRkwTCoY4mVERmsbKtrwCLERhv7vuw/ze8lqloK2oXwwybL1ekOUKa94A=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.DotNet.ILCompiler"; - version = "8.0.12"; - hash = "sha512-XkM73Yq41AFG1IAwBvusNpSDn8OuPmkJEKJpPFlccX/GYlT5V/LihRlNVS4OHmlJhvklpuro8x+c6arLSnv8qA=="; + version = "8.0.13"; + hash = "sha512-OE4/Anisy5MjaOKxAhIU4b4bFjNaKW3vZpCVwIgIBcVz/WUVKYrTywEH/UzhEPqbJ/P6PJ6SMjYmdQ+bColVDQ=="; }) ]; linux-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-x64"; - version = "8.0.12"; - hash = "sha512-ix41sJBqRfoNp3zg2+QBX18XEEwA2iVcGQwrHOOgAM5IcJdbe8wO+K7Hqmb4+gtfonTuVzxf6hvDi32luuSUFw=="; + version = "8.0.13"; + hash = "sha512-UR/FmEeb+HuVKOGLxbCF8ksc928eqxLy23ifwRBX8dFiWs8z8s7zXtpFIvH1t+at5F8BUOv70aneRhQ2Wgs1zw=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.DotNet.ILCompiler"; - version = "8.0.12"; - hash = "sha512-fuwAxmHlGgVzoMiqtPeYKaKr7UQQYTOdlHddgduPDArxQRJOHFL/ssRTk+9NcaSkSfK/+CO+iP5yweuX27UH2Q=="; + version = "8.0.13"; + hash = "sha512-kWVbJrHvjFz5esVjTElVXjgS3tGH9NsaTHLQty0De7bLqrbrzKKu5OUSNdL61ev7QwF8R6iflfA5+/UvVYVkIQ=="; }) ]; linux-musl-arm = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm"; - version = "8.0.12"; - hash = "sha512-WEZ5f5D7OpmL48PowylsZO0w/bhuVSbvGjO4VtnVlvk+chNeArAd+mocPcBmleNDMu11YoZvEC8wkHvsdfIOCw=="; + version = "8.0.13"; + hash = "sha512-PUV8GmwwmK9aPFWdNo8HwN8UC35heQNqU75AszWHXkpfqnskuRdFYHoyUjxxvVlBXaen1xymXw/YX76NDoZeyw=="; }) ]; linux-musl-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64"; - version = "8.0.12"; - hash = "sha512-04gvjzunjfA5J+srNF0ew5KNSNhFwYiZdZ2554nUhG+sO/QtbiTPP9p9QqCqwv3zwf2FYz7/sUuIIC/TFJnPbQ=="; + version = "8.0.13"; + hash = "sha512-U0nbGfOc2+6zSOFNCZGhrJHQnKM3LZcBQqC0XGm4B0S/5wvZmrsLx0GSY09/EPmldWuSzaC3Exot7mC0NvUYuQ=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler"; - version = "8.0.12"; - hash = "sha512-BRkp66CwQudTw7WCejICFbAMwOaTrvjc8q2g5yj3uyAZAYDQVG9VC+QmsO7EOvZuX0vuxhWkHNg1u0yAjD/swA=="; + version = "8.0.13"; + hash = "sha512-PUsBDtDOVrGhaqyJh6D6vVJ6DBLac87qV7MojLNXEeGKn7ClTSzr78jneOUOeGcHFrinQsX8PoCMehszYjdomg=="; }) ]; linux-musl-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-x64"; - version = "8.0.12"; - hash = "sha512-WdlGK6tDI5MwJ5BTFpPhfUn1vU1CHP0UVEKnBhHOhihgQaO6Y+Itdu/erLjaEe1JE9aANdKahvLJTIbXqpDRqw=="; + version = "8.0.13"; + hash = "sha512-OAoCKmvnbiNYswLUGGZeV52PbsYyNN0RB/Tj7UdYc9V3d6LIKrEweKutQ/zJznInNWkU0FwG1M6nKzoXVDNoFw=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler"; - version = "8.0.12"; - hash = "sha512-Arv2j2asHvlV6CjMjw5ahVWQGy9To4oolKcm8Lx3P8zPMjewt5M6ubWfndOcIMhLzxtx9QrmLF1HA6xEqo1JXg=="; + version = "8.0.13"; + hash = "sha512-ug+DJuZxtRkMOFv6Dhg5VkCiwtTJSWdOyfAkg/vwYcJvk1rM6wQwsLb1G393hmEnVqzXmhVaEi7CJE9Kp4cw5w=="; }) ]; osx-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.osx-arm64"; - version = "8.0.12"; - hash = "sha512-560CmTGtQOStnCIStBedCaPIDxqD4mTLj8W0myxjLUjEai5VwHcdecjhkZ7g6Owx5igQcXdRVhsV1BgRQOfb+Q=="; + version = "8.0.13"; + hash = "sha512-8QTpY+hdI3mtN1cqsv9FeUSiIPeO+SXFAy2A6VXd75Mb21Tmpy+u28p0iU8B7dyxPOYwX/V8qXtvnFfpSJrRVw=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.DotNet.ILCompiler"; - version = "8.0.12"; - hash = "sha512-jt6Vtq6RHBHBE7Iwmw7MzCMNvNCp5+Bt3PqTIrQ21IttnpESbcLgVlI0VJAqXxIwsWiRn5hScfSm88CLGSNsfQ=="; + version = "8.0.13"; + hash = "sha512-a5TGVeUAzqJ0O9TkZ5QvFwTqLqTqY7XtcYEu8dPGzwyy2xHU0OHuQnpcVbvzNfflBWz0p8wq+O2th8D9DcR4Wg=="; }) ]; osx-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.osx-x64"; - version = "8.0.12"; - hash = "sha512-0R3R9Y9ipFnYu/kzEOjJt0VZH0JeyJkuWC6kuQIkmpcbElsCPvQWV1Q7x8Ui6od8ixUlL2Cx0o/RCB8ZeKppIA=="; + version = "8.0.13"; + hash = "sha512-EJ45DHJtHOZAfJ9KbqDnjl5QwY5esccnSlCu1jaopNT6GIVibeRA+gycjrA99vPEqO2kK4fIrsEl9qOg77/oAg=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.DotNet.ILCompiler"; - version = "8.0.12"; - hash = "sha512-fiP4Lp/fMzye0ShKP6IDUA6+4ICvGdKsIXL4Slq72E6+AUlX0dghW6tNc998ErZphdLX2sbsSc1HQnDICutvpA=="; + version = "8.0.13"; + hash = "sha512-Eb7MuECz+qf8uGFVsGt4AkEt6+1DbIBdeCHqfW+Kxs6iR9zHH+Q8KeT/N2KQHeYPuo+Te6LWr3052XJoCdNnWQ=="; }) ]; win-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.win-arm64"; - version = "8.0.12"; - hash = "sha512-10ylliwboh/r2RsZ6JxBaGTlgJFijpATV/Fu57wppCvnIs2n47jDPpF1XHGiGkSFVKuMceLTFRC/5rvY03BafQ=="; + version = "8.0.13"; + hash = "sha512-quVzy/EWr4xHHNo8sWPZIQfDPdMrNubaGdgEGnvmMuxTD+k06nWu3+HV00tNSbx2ruuPJMypR0gH1GUcAvAHiw=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.DotNet.ILCompiler"; - version = "8.0.12"; - hash = "sha512-+anxlvYQUscNCsCFQPGHyADxolr4cJlcvYhe6D9t0gfoJObTwe/N16kUv4nqY4orTGbdOVQTAzK/sP/Peexc3w=="; + version = "8.0.13"; + hash = "sha512-fIujBcXM1ZPjkhxdJG3uavyBGC70EPMbmxaEAUy4sq0sMsEwot9XCxk9lGegnN/hro4Pv37IpWWpVYiMXb1GmQ=="; }) ]; win-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.win-x64"; - version = "8.0.12"; - hash = "sha512-cZzBGVhiVMMuauiv7cpo5uGmDCJkp/T3bb/ebf4iPuiBoLpzhj3H6MUMExspoifk9YbuUreRBhFPjehxw6ZMLA=="; + version = "8.0.13"; + hash = "sha512-1cD9zMbdLSEC3U9/ebV5zOPGm15yfXw4coEQ4O1/2+pTwjwa3aYRoVVzYm1ptNOm4OufHW1E5VmurpJ7VJ7ehw=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.DotNet.ILCompiler"; - version = "8.0.12"; - hash = "sha512-FXRkE1G3pOU96QCaLzoR6bK2GMGVJZG8KYxzWG+6YJExOx8Zp7b2cpVRFmqZVzyu73WtSl/gNDXZ16yJG4csCA=="; + version = "8.0.13"; + hash = "sha512-GS1VSLt/2czy8XSLJMpzUcPAeHsKVrQGnHOkFTeJew1wsiMZHmmqftYKm5GAqCloy1wRMaMpiXk2q6Eu47xItg=="; }) ]; win-x86 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.win-x86"; - version = "8.0.12"; - hash = "sha512-CLYlwkALgB7C/u5shyYTfqq/12Og5oAvQrSB2wNvDAfRNo951HvCOU/wDsXHuIUIdPLlHlLMEAWkpm+NeE/QHw=="; + version = "8.0.13"; + hash = "sha512-Gxi/u2nXIVPLA2kFEgChk4flm/1FCvFSth8lwO/9pqyoq5mD0uti4EF3Q9kheTR1YMCykmPPP1RIsJlMKkQBPg=="; }) ]; }; @@ -175,566 +175,566 @@ let linux-arm = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; - version = "8.0.12"; - hash = "sha512-/rSaXqthJBKc6Hpo5XqMDAinY46BfCVeJZpW8FefuPsw1JPj6GcNjzHo/FlkOP1/1quDhIIwR2yibukE+4VW3g=="; + version = "8.0.13"; + hash = "sha512-h6PYukUwYkY3FNBzeLAnUVxmmcOp2cmkasfbd+VU0lNmUP1MrdlOj626v4GY9tG1h3F4+I3Ry3XmgM7aaf7ZsQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-arm"; - version = "8.0.12"; - hash = "sha512-Ht+5l1Kt2IUJ/CUj4hDt1mG27X3idPvCIjt2bCFp0Kohi0vwg1KyIhn71O4T25TGjgeIVksMYnui206PyHv3Kw=="; + version = "8.0.13"; + hash = "sha512-R3bpcLl9kzcnJv/t/SZTyYEod5Y9Eq1/DQvDhhLy994z7/2dWq236maUVstpqrNRyGRlk94ZLUDS1SQKVTCnOQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; - version = "8.0.12"; - hash = "sha512-kAYDaWNT7LpzButcbGML1KWVJPpiMT4AB45Ky5p+8rUS7qgItUEEgFXWUoxLoIUv33I83ltnBdk1YvK7wls3FA=="; + version = "8.0.13"; + hash = "sha512-kCjEavVZXespMRjSaY7sYxZiv7DEep+9WQ3fpC+OIy5Wv5nvd4kFEHDY4KuWRQ3DuSdNxEaAdDEib5tp+dSsxw=="; }) (fetchNupkg { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.12"; - hash = "sha512-e9HuZf9u4oqAV546suSM5gxxL4ya26j78ZoCvg3Q2I7jFwjiqIY5nX2gKNsCqnZvI6QmFcppdtB3pRu1fgKivw=="; + version = "8.0.13"; + hash = "sha512-qumZZHELvPZ7cXndpoTr2TIwd8aLTCME5GYXm85bKo03ruFsvg4sqlHms2XXTOR4U84pugHl6yJnzUSS8WT8Pg=="; }) (fetchNupkg { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHost"; - version = "8.0.12"; - hash = "sha512-j6SeFxXVMtQmKPQm+cFQyxmreOhqBPxgj/s1Ox/iBjmsfmjZCacPhvZaXBHOAIlofm1Cu7AHw4c/jNti/nmVVg=="; + version = "8.0.13"; + hash = "sha512-pOMUwywBQOla7x5XxBT8bhhTYrt5ZNznp2VjuRWUndJjn1XV5kfVoHgLBleWtjSdqx214+1qUV0daYigcfFjLA=="; }) (fetchNupkg { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.12"; - hash = "sha512-/VNEwbjjJt8LZamwsKfNulK2eGARbzi1m37Ci3csBXturaOHvhXzECAZvcriPumALGVFBO3Lc3WSs6rsubxiaQ=="; + version = "8.0.13"; + hash = "sha512-XqGPxuqe8+E+BnuL+6ZihrWQbxVUKWsR/9rjDHuGvPZswwGcXLAvzMLgJEmI3aR71yZL2bMskAI4p7w3L/A8dA=="; }) (fetchNupkg { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.12"; - hash = "sha512-Hv1gGAnrlwk5LoeZeudMJd2G69oI2jJzppWGJGSvXJyHus6XmsVvQwd8276rTm9o95GJzNi6kRwYJ6xLVrCixA=="; + version = "8.0.13"; + hash = "sha512-gE2lw5wRrU4OQTjvOKebfOaWAVoD8qUkU7TiDnlcbUU44nWVY9SZ5Sxg1KTDvLQG+9JQ1ilBWB4xZw7nfoOn7Q=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm"; - version = "8.0.12"; - hash = "sha512-hRd6hmc60sbTQO25kWoW/y2htMTzWLlk3GMQHjZUxB0b9F6JqzTo1UBmbqkAfZTCrDQ+redeyibbAJ1CdoGIyQ=="; + version = "8.0.13"; + hash = "sha512-g7rwnlk3MNuah6el1YadnzQkaE6W0Keb+sKhw88gXd2rmxRegnmMKM48+p3KlmgbHER9c20doUcpSCgG1FSQCw=="; }) ]; linux-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; - version = "8.0.12"; - hash = "sha512-DwGq22s4EZo9VMySm0cxAJ2kyHDQzEh0o0N3m7HyoMfdy3BxQFOoO6RGR8HSvpmBk3uPQbIOX73uv4GP2QhJeA=="; + version = "8.0.13"; + hash = "sha512-eu57Vlit1LrSAKnuXPLfcxd9OVDG5o7FGuIJmRcPC6DOtQuO4GvKx6EpHjWpgDvnq58NDonhfpKUVdr6onY8Zg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-arm64"; - version = "8.0.12"; - hash = "sha512-mJaqr8IqCRiVBf1J2isll8Ay/4R43FgDxPAT5B/NQl+hm2xhp55qyiFSIwLSHF7bmeDyneEFDFi+BzTNQ6KB0A=="; + version = "8.0.13"; + hash = "sha512-ve7hPhZeKIwPt33tozrAODERm2pK0F3o0K0I3U+CPCHa24+47eC3WNMZYoGS/CjZtUSD3X5YZV+U0jXU1nbXtA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; - version = "8.0.12"; - hash = "sha512-8Z0UJe07s/eoPjnyRxA8VshWA3eKTeQRc4BotwZcsgVblxCJPJGAmTFgKuEs3xwTxanuGJPqp2T0FQiSSFb5cQ=="; + version = "8.0.13"; + hash = "sha512-+UTfs0e7mIdkVb8zR0lqkaz9fsxgkoRq7BCsgPjIjyheR3e4AygDouuV/VnQtOXYHO48DIkidKFcg40mLlzAFQ=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.12"; - hash = "sha512-agI+Lgn5CaY9okxs9ab3UH6IN7lAHdE86WjPxU69YvtDJIA9Q6efR13fb6cKAU+6/+Vc/SCE4fQm0AKC7hQSlg=="; + version = "8.0.13"; + hash = "sha512-+FfRV8eJwWGTTHhnIKgj+YYVJ80l1atJ6shI+7BF5Pzk8eVM6edk0d9FoxYSrGpvDRvus393c91c6riJbc16fg=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"; - version = "8.0.12"; - hash = "sha512-tPEWNfOGZVqbHJIIO9nCozIVLdLwvj4ZGAAnBnSG0Zcv+cmXic7ptK/Lta9iUYhVTUUVIGmSRsfyC5ggDAn3IA=="; + version = "8.0.13"; + hash = "sha512-LOgp9W2atSRVSVIknts+VaYJmHht+JCET3nZc5+8eCqR34PoFo2P8e0f/CZf673HS5ZUMEkgmDZN2lA927AB9w=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.12"; - hash = "sha512-BvGOuh3A5AuiGbyjOu3e85/+4SBWS5AtLLZkpCfQIXY2KAUP/vt3aBSXn0HwNaaXUWrcq0NHyA5wvZ5M4QCSYA=="; + version = "8.0.13"; + hash = "sha512-TjRXIRUfWjRpJf5rcXqayBRk12WaIWHrtkbmINY1n99Xk3bnw7I5EfJv6ard3y7WrLj//Y3MzPdvlCe8gtOCKw=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.12"; - hash = "sha512-RM2A3428VuPrCnAapYC08K1t/trGBC9iqe9Htcq36CMtwhzyV0XWK5diWmDhk4dLAdH3v2tjhePfUx76TFI5Ww=="; + version = "8.0.13"; + hash = "sha512-1rVdbT+vU+uIoQk5bl5LmJH7FZeGVzOKerYwNDYzE/aNIitJLLVAbik+Bv/29m+//E7OZOPdciGALFl8U0rN9g=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm64"; - version = "8.0.12"; - hash = "sha512-RyibsHCts+wVGYxBzkPRkVJEMLzLCZpV/Fa6csnuIIixvvqMwUornjrMVNcXMRq+0HBIlJAgFwcWK7ge2uBmxw=="; + version = "8.0.13"; + hash = "sha512-fxvgW5dSYuaVZGu5NVltyyWZwiZ4MhJVfQoeHEZI9VPEZ1EPBDLYjlIyWiyk0cW5+yEtZmkeNbcQELN6t8ms7w=="; }) ]; linux-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; - version = "8.0.12"; - hash = "sha512-67ytUxCcDyaCmVkIo3J5bChFKDJf3CIjJMtBJ+1wnaGqyavoHs9c3kGeppVu+FOyxbduKHNC35IxhtMfr3DEMA=="; + version = "8.0.13"; + hash = "sha512-pXWXxDcUgCm7xBUI10o8o23ZgDSAmG/rOO1bfzY74RnXPIOcraTpUoB4GgVIb3z7ERJek1B5W6roycag6B6WVQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-x64"; - version = "8.0.12"; - hash = "sha512-cq5S411xb/jEUFPNlwoDV6PLKbCYmDHujelob530CaYP6/UfiI/Y4vqpyBySG2za+Y41vazDEBw/5Hc2u1sZ6w=="; + version = "8.0.13"; + hash = "sha512-vZcUK6f9IPTM+QBsoNZEuX7pB2p6mnBMcEE0ejK3LNt/3byj216Xw66Ur786bemJtq7AmEvt9173bbFUhqpsvA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; - version = "8.0.12"; - hash = "sha512-jan6vGT7vg8fbtNyJnmEk3jYNTbRnzxx2b37RMZSaub96HLnRARe8EHt+lFmjyxj39BRC9izrxW1GDEUebz6rA=="; + version = "8.0.13"; + hash = "sha512-cJUogvZSX0tEypF9u+fiP4qn2o+6YPrJSCozxGV7fR+NgG/r7TXlEBNEE7zfZykb0ytM51bE5i6Sl4oMZwScJQ=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.12"; - hash = "sha512-h3yV4ya3atlf59IJ6H5Eo0+zxX9aYNZAsNJHOZGO1Z9/n6eFrKtgjaBDR3tB4K6/SPjFYrmKfPAPWVkQ40zszQ=="; + version = "8.0.13"; + hash = "sha512-z61zo1KZfSY7duX11vGC/Azgo8iF9BvrNTW7/IdGlcgv/mFM593qbyu5u5P6Slfh6+uPIT+usyyOsmfmwmJLxQ=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHost"; - version = "8.0.12"; - hash = "sha512-/Udpwhuv8ukIken2Klg8k/i5lImdl7Zo103aUoZyxcFotGM70cZjEfD8wSgZ5uuybnyvHxK//rU1L7B+2DLlhw=="; + version = "8.0.13"; + hash = "sha512-wLID5tqgV8SIPLcZk74F9S2VJtPVSMKj5IyF4ce2zGIiADhPPdNn2v577xK1nZCySAUUj5gc87TG/mhUP2glTw=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.12"; - hash = "sha512-IVQ7bb/+Ay4oTDGrpbBzmLPibWQ1eKQ07xTE+KqFqF1jC/vEWcsVDWQAxTm7c1OVU3rM018flvE6x4oSwMP9PA=="; + version = "8.0.13"; + hash = "sha512-tETOLI9GXl6lQRfc+Nm0zFkmietPL0gNWgNfrDG417PwKCVn67lNOMB4QCGxws4aai4Xss1Nz1DUws8Afowv0g=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.12"; - hash = "sha512-7U+tpgXW2+obU+S4SJck81AAri52F1YjfIl5m9fWumni7FLqKiNsWGl3s5AoGy+IwApTBHymKdCrsZcU2uEELg=="; + version = "8.0.13"; + hash = "sha512-znVAeRi4kfoOAzOGH7T3DQNqw2Qr5B4cJ8MQN2ys/v8PDomK245iamkSAzzeEwkX6IsRrB/WoWsHj8t+Tk/w5A=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-x64"; - version = "8.0.12"; - hash = "sha512-8D6h096yNgQwd+2sUneE/ne2Po9n9eoVXTL1Pjt3oLhHjB+spEz0VBKtHv5u6ZTNlxiigkhZxYYQmgkidqHvZw=="; + version = "8.0.13"; + hash = "sha512-QskMMrolVlrwJtSRM5yGkeEyybdyd87J7TRRkQ3eKpGEwHRMh9decBVnIT/TF+fQlnFldTkfWtCayPNMjRaeMQ=="; }) ]; linux-musl-arm = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; - version = "8.0.12"; - hash = "sha512-dnof4ysabawNHR/GHmDPhDJNNVIo04vtfe6hdV93bCHodwH8mSXA3+q1wPgtgVVhRH7o8ivabTZtVlCrEDQsRw=="; + version = "8.0.13"; + hash = "sha512-JiSgO5Hb74QjdoOD+pDUl+zd7XyD5xg9v1gTOD1eBMueuNHG4rbziMkX6ZXw0OHDdeidtfl3CO1HZe6WG2rYZw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; - version = "8.0.12"; - hash = "sha512-UNHaTj1t8NSwSuBZt2+M4iFFSsXUwrWxGakl/cfxe5Q9O5byqeTgRncZeYoXJccnZocBb0/KJEukSLUq//uwnA=="; + version = "8.0.13"; + hash = "sha512-h8nywzrG0FLBePMdKUR7ypath0Bhdijo5mUuBfGvi41RNH/RnQYrE5G+UgSJFVJ80z+/0U0mqAvCz5tDHt6frg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; - version = "8.0.12"; - hash = "sha512-KYeu+MHDm9YuXW6r48+6y16K6luIA00DaxQ/IyVJ/d4wGGRlRbfSuezFi1UPzlVG+2rlJSXYl9Ar5dDb3hmWEA=="; + version = "8.0.13"; + hash = "sha512-dbHgT93bdY2UPLWrDvhFP5RRbujswSxnBagSBAAsluiZ9NExyyOpLH/YVT6HX6o7ZFDu5SV/toIhBqSaoknrQg=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.12"; - hash = "sha512-uViRfO8fKV/V46GOydgeiPxjMv+9xrGsESLGgdBBzqQHS+fwmmmkL6kNhEr5YNPrcTgkfID4VjXsTBNcX3UFoQ=="; + version = "8.0.13"; + hash = "sha512-CHN1Zo8QAxbmEBE8Ec8W8D+gWFIbSS5jAE0kmjpJF5zpco1XX1W/B/q8P0FtoQHqMy3c4lHKsgnSPResPOjROg=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"; - version = "8.0.12"; - hash = "sha512-wptP67Kbz5h7pv/i7eC1J/fBP09d4y3xOzhP/9nhTmm81LkfatTa/7diXpz135ON5Y2HRvtOf/Bs8Jt9A60BrQ=="; + version = "8.0.13"; + hash = "sha512-78reLCILq4xHBnubuzHLcET1YQ5exI6ZC85GHrph9OJxi0OSfYtoved1qsqUvJfVnLf0gBCZ3EDFHk2YOgEKrA=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.12"; - hash = "sha512-rxDXgjhW13dFRIuFwAXj4ANY26fxU2/kb9OqEfWEZ27+z8Ltfp94YLPo11t6OG+1zXt8oSfWg4qWODSfZ2LTMw=="; + version = "8.0.13"; + hash = "sha512-lXhhyD/0HSr3F3Z+A+4AFw/KraH2ZPglwsoVVY+pVUgSD8SxeIWe3DG4T0UnJIzsB6S/pSQZtvMw4luYV6wMjA=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.12"; - hash = "sha512-JAVp2YOMpHCX3yYAVGlOmESbuP9NIJ4uETuzsbREPpi5bxo1DNEEaWXiGl/w+R2b2Udf0lLQbf430zSMZy30qA=="; + version = "8.0.13"; + hash = "sha512-HWB4Hv9iNPIT+IEpve3O1Veo0NEakX0F1nRRssA8OjN2SSgaK99ziwnSBBMNdu9MsqZxRStmfvllE3TqSsm5Zg=="; }) ]; linux-musl-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; - version = "8.0.12"; - hash = "sha512-3hTYxYIO/eAqxsJol8bVNp9g2i54jFziO9RUjZ5V1RcCs3fXh6JvBuPipxBxgLpmWOeZFvr6oqecBmuNphiWvw=="; + version = "8.0.13"; + hash = "sha512-am+xIHI7h+W4ZBVRh4/Fkbl4SFB4T8pwgmYnLH7EE7cuBR+EFpxDXdG0NWtkVQQotTRbVLEG7W/WjYxkPYGlUA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; - version = "8.0.12"; - hash = "sha512-ebP8KcwMcLozFzphxFEpgnAb4dL6Oi1WGuvpodmVqr2k6ZFYVBsHcZ+IISUyz4n4xb2fqPHzfNIJHJGeBBYoVg=="; + version = "8.0.13"; + hash = "sha512-yfse5S0eD1JtJAqre5f8wIEoQSiyuv1zjmzckaiQ9aV7a8v0OlUAsic0X4X+SutrBaEMEChPEkW1qrhIz+FzSw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; - version = "8.0.12"; - hash = "sha512-seZ5qw4wLxMZO0R7DspDiPpNklPfBMG/Kw/6SIggVxrozB6HS01mZD84wZsQddQCrA5u+QQnd9w6SiQyByr0Ew=="; + version = "8.0.13"; + hash = "sha512-HssZ+9XVCf0R8gOYB48tEJyBwhMSv8Wtb2IrlmIdp49Ph2xNhn/RYod3NEB2iWqtgappx6Z0RiCBW3Y8VpzQsA=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.12"; - hash = "sha512-gobM3kaSrjSkmW7tRfhj1sQkCpFWwKO9i0o4FcOzreY2yezUk2yh0BflBZM0kdKQLnuUeXL7JA7E3FBvEYebZw=="; + version = "8.0.13"; + hash = "sha512-7d/XVFppfcjW/jzy9lh+M0y7QMwjfPL4A6/DC6HCNmjVTwfbV5rF6lEwZk4M8GKxnRBgKnawOQgi1KuTMrUPaA=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"; - version = "8.0.12"; - hash = "sha512-hcHaF6X4WURPtHJjrZfJHtz+X0FdD7ILo7iM0EwotEadJZEtyjxqSMKMbz8UKZMgTMEOoG4joYgcou2cN0eM4w=="; + version = "8.0.13"; + hash = "sha512-V5zIiUWCdEt+h6xfp48jmV8zd7w+SAvYmm9jEmy9Ik96gbMH9Sc2mdCu1eJn8POfBCF1iT231M4bUinhmHddgQ=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.12"; - hash = "sha512-w8lBF8Kv57bqSeAt1hvACf0he5v0dn4rQ/Xy+IbJ7KT+xaa/hkOR+KMg+o9ixttHTdMhFBGZT5j/E/qaW27nmA=="; + version = "8.0.13"; + hash = "sha512-V0exrjENWzL2ktHPEdxW/bdjiPhG+8GymsPPqZosneY/9nnDqAFbDeVgwu4DpDLr/LzWa8Im9W0w6lXVe03Ttg=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.12"; - hash = "sha512-CeYo95/17pXA33pND+nPGgvZbMuhnyURqPM18y6C2F6NIRF+tgSFv0Q4GU+y2T2+OyvmOKbb2AlLRxCaIDIM2Q=="; + version = "8.0.13"; + hash = "sha512-Qz6KG2nCsFyee92YeedAPxs4tVe8i3CtuYB13A+qTSmIeL5LFbGOeOBdCY0kUv55sZ7s/qHCcQ1GSNCLHydS9g=="; }) ]; linux-musl-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; - version = "8.0.12"; - hash = "sha512-ejn6wj4QD2SaXZjU2kqo+3FFf6IgNeK1nKAwkroDVCuNm4U2vItl0nSkCP/P8D+Azsc/20qnADWsMGc4bNygvg=="; + version = "8.0.13"; + hash = "sha512-Hm5rfo+3bCHOJtoY24Fzqh5/drvQnT+JPblM1SzabMa+f1PYew0gcxGLG6KludoGP9M8aQQhJbtb09EJrINpQA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; - version = "8.0.12"; - hash = "sha512-9QsWEMiK59ByypH9UN1fyzbR2ssDD8xUaxR79nyykN4vQMAvOnmFFJVh5Tez+tnIK8V98bFxQlo4PbkM729tDQ=="; + version = "8.0.13"; + hash = "sha512-NJk1E6+TtuZDc9N+tkTcnPhtHC6p1CC+CTE8EiXfUgBVmQUzrF4NX/YZ3kmT572H00X4pbwmoFQrXu2RuoPP7w=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; - version = "8.0.12"; - hash = "sha512-BtWP7zx4UFX6mm94kUdtGyaEnhsjZDYN/m4oMvcpcKGuS1BZ1IZZcVraLTOFzoPXgxHWXJXCCkL0oSx4eeHrww=="; + version = "8.0.13"; + hash = "sha512-FBFmvl5TVxqvWhpmdXkbQvlYBT2XqIv/29u/xeuvNL5lSA1PqMDA8fAeuXzGeGmTZOVvPrjpr6To7ngQ3g6Pfg=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.12"; - hash = "sha512-AVkiT55B5xqGixGbjxmwefC5I+uvyK9UFMe+047bjep1PA5HZIU0+iT5NdMeJsXJCSor9+FPplYP5XwFQPfGVQ=="; + version = "8.0.13"; + hash = "sha512-DNEFRTH5gtEM31R4M3KimG6EJltwPFte/D4nqAJb/06ErjEU855/4IgkpHHh6w+y73wvJL2T+o0+7s37VLCCSw=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"; - version = "8.0.12"; - hash = "sha512-aK5BtsYX8vxGuSsI8JEcgTQaSJGo5+yXkm4NrenqBXFvexuqTfsKT65i215dGz2aBOFhEITWCAXf6JzTmBaxCw=="; + version = "8.0.13"; + hash = "sha512-8/B5klBMKulU5Cium01CfdQynUQqMNjoBhgb0KAVfExIQlk9zKeDXVI4ObmvmsAyqa0h/jrkyjb8NF11j9EGJQ=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.12"; - hash = "sha512-L9j7kDdn3Q4FxQ132wUkdn0DhxYdyLxlQtPhTUAwibwsP8eqjGpaXLCUFgC75aDNZnmHhWnwxjniNPSlJg0oiA=="; + version = "8.0.13"; + hash = "sha512-avlyzKD0lmY/sOQMYgzcAUyEhwy9IIuOlmNPHGJgaW170Pwyj9TI1pDLyebHF0ySaBgpGS+Gl5x6UPnIlS/AhA=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.12"; - hash = "sha512-f9BbwJT5N9cCkK2qaf81E0OEJCp332mqCHP2J1vXtSIYujYF2ZMW4nuObgZEnYlBd06r/Q7aIAqxO44zzn7QRg=="; + version = "8.0.13"; + hash = "sha512-f+AMJ0675qIFAWUNwIJpZ9FDbNJYsvRwbGXIOUAHy1eh9aJoEU1XFM6CTvP2MKwU3ZPIyBbUr0qbwo72ni/31Q=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64"; - version = "8.0.12"; - hash = "sha512-91MXcB81uqgVuia/TDNonD/Rxy+8k4AaDxZ2jf/JOEqMNMwtSRTaPp7cBb43pQ/x5TUw11+XTzk7ju9fENuHoQ=="; + version = "8.0.13"; + hash = "sha512-mJiSalZsnxHGssprUyk+WhXqDg8HclKscJ3Kod+ZVNqvLMIX0HA/WULzrZyfERccXMmlOG8BVo+IHxFnkgMIKQ=="; }) ]; osx-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; - version = "8.0.12"; - hash = "sha512-cyo0lyxMMB8t6LH0Tn//R1MvWg/v0ezguSWKgXTR7Vk/hkJzwKLYyrhgM+Q5Pk2vhltAzBTJNdIovVtei8RzLw=="; + version = "8.0.13"; + hash = "sha512-fZJ00cBTW5K+NFuKPwTcEhGMvOS3CWECpnFCdEWzcAbbjynTmukixV+fW3q5S+/x4vFnlWX+VDWOHaVakXN3eQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.osx-arm64"; - version = "8.0.12"; - hash = "sha512-8G21b6Fs4JU/hwYonLvJ3z4MHgwOsW3WHCRGq0O2YV0gLhz/HgUihfgrvTPwsQX7zRfIgbtdjv42PLZiCBe+eA=="; + version = "8.0.13"; + hash = "sha512-WWUll8LGK3xmb8ri39/40tkOlJtbwWOqHIpIcKSc9rhD2UzmlnlCkKaeXORze8kcEIClUPok5m1fcOhpmMeJjg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; - version = "8.0.12"; - hash = "sha512-a/d+seYGVkpGTtYotJyVgg/pzuk61p7ETOOghcd62vp/LMuuMLqI9o3N/xsk7+KDDlm+DLFZpQZTMgDOOa4ZsQ=="; + version = "8.0.13"; + hash = "sha512-K83CeF/OvmznT9Sw26GkAm+zYkrIgqOx8Hy2dLvXZpdOBNe9R8JvBWq0DcIN7ksc+K92F1PxVc2S/pR9ZXrHlg=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.12"; - hash = "sha512-137EsmMMjMBT7JFpQ8w0FEZyAG/6I0KWUBvnuamdpLtKXcd6B+8ua9rlcmNBEkN6mFbxS5m6qXwwn66GvSLx5Q=="; + version = "8.0.13"; + hash = "sha512-dmuNR3DsR9BjvayJEEXk74eAZXqYjoPL4tYPXF7QUZ0LQE3WUoTHv4QD7QMEgb+HLNuPDNzHYj8EsAsQ0lZeQA=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"; - version = "8.0.12"; - hash = "sha512-KHnmVudTJSlyzdpx17lkJFKysFickorqE2/7duIknz/zhkrB6fsgD+fT/DA0j/Nz43ezzIo796rIS68X0ByOog=="; + version = "8.0.13"; + hash = "sha512-Er7lYCDr0YqkbNCqzqBvJyIExkdtS5YRP5Xjce6pXi+YEn8s/BlrK0zr+/4OJWL0v9pJ3ZIB32QrfA80HxBcvw=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.12"; - hash = "sha512-nhFohFnSuFpLyyKEfEUpfKe+AwJ9PCxcnZK5Gqd+na/MylLUkg2iuNYx7CX6RDgazg+bvvEUf3in8rMWdczf6A=="; + version = "8.0.13"; + hash = "sha512-i/WIhfsMSxxxy5IVEtMPjJ1CmOZEEdgNui2TiirYs6AgxYWQE7Z2UDsrTrfaHp4sftG35DpfFtryXZrztRV+og=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.12"; - hash = "sha512-QHgRha5tGSwRVy67PSW1yBZfcJNthI77IJaV85sOCbSRQNCQxUU7DmGb9aeI/7quGWUzM1BahaZqQfOXiOmdAw=="; + version = "8.0.13"; + hash = "sha512-lPTnUhWp03b1mMj2wzmiLcDpGA7iqtaDo028cKhAMOsKre8ffyVyl7rwc5c6rMeSRgAB+lj+3qFXi5AgYsh9uQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-arm64"; - version = "8.0.12"; - hash = "sha512-VQNqkmSpLIbHFpVSpOKNO/6JMm0SSrMV3ptcIzHSvw66Gsqr5jjo/E8S2Q5dAUlS0b/psdOiulND3rYOQaYk3A=="; + version = "8.0.13"; + hash = "sha512-mhoMYBBulekGcEv29c5H9pXZToA56zKCi+pVqU7q03dByoZ2y2YmFFrfQ1326N+4WdnyjBTITK9txRglF4O3Pw=="; }) ]; osx-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; - version = "8.0.12"; - hash = "sha512-Op9dXXTWqam9pw9UqX826kPhNvOTUS4QJPPRscD3yJKMT09Fdxp36Sz2gT3Q8ToA0RhoHTlRj98I4ZF8M0qjXg=="; + version = "8.0.13"; + hash = "sha512-MbwFIWq80Gc7HR3AfZ0xXJxowY6kaBwyMYJybQetBr8fV51k2NSOwQ7dbbbXQqFAYYbKv4/e+27anCOwUex9fg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.osx-x64"; - version = "8.0.12"; - hash = "sha512-Wi42A4IiXMx8/qWmiktaidyZXg0NfbMM8d0aSbPtHGOVUNI1BoiZARdXci+t+HXmBYV7cxr+/hJKMV/suw83wg=="; + version = "8.0.13"; + hash = "sha512-LStx1UzEEdHLfFl1mqNwZeRIDMSpGbpumQqXOJyKwudmZ9Nvly8xe1DGKHWKUy7bETnwdT+T989V1AHinaDdgw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; - version = "8.0.12"; - hash = "sha512-+QeWCI8Z0puUM08mIsfVsBVvc/jQX1PDxySTnv0BlHQ35saacdOEwa6Hf5mCxwrIsaKW4p7j9cY9MJSFjdmBRw=="; + version = "8.0.13"; + hash = "sha512-MY7r8G+jwzfr2aKpqZxtLaBSgWoeieq1JYDXaw88Arq+z27I4H3wdztzmq15zRG9R1o6gxSG1/8/0RlZAJESIA=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.12"; - hash = "sha512-/usq+rObnkCjKYd2utS1b+GYDSV/ZeJMbSpFv7CelQGbvmQ24w3Zd4jHE1jqMfbBzf15/OHqBHXHdi4Nu+XRRg=="; + version = "8.0.13"; + hash = "sha512-eZFSPMMA30+lum8u9BXmUu/By8RpfrFWqmI9G6/3aT3fxobup/ohVsW8SFgQ6TQL7qqi9DNmh284jNXxd7IyWQ=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHost"; - version = "8.0.12"; - hash = "sha512-4unTG4jtyBU2SkT5fjYQEWKCjnlNu8rTYySGCCbjClIzi7O8z3fxYWlng+B1tnA4NpKh5y5fYI+dvaXeiI2UnA=="; + version = "8.0.13"; + hash = "sha512-TnFmdxCBFtD9CPncmvZRGttCxq6QiYgj0n0lkY4C5JtFLvbjTt0r7DzZ/UHp0sC1fxowhAmpr9a/2GQLQRaAxw=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.12"; - hash = "sha512-Na4e35U88a8KvpRqAeG2OmnQcOwavnGPVNl9BnWTPcNdT7RbQ7o2hqDOSvT8jsqwMcZt+L5yGxYtGY1widnTlQ=="; + version = "8.0.13"; + hash = "sha512-snaYORwJAa6Wp6rDdnb8RLibvNUFCbP51rhnZqXA6puxeygsCfcDfMkmKz0i1GvfVpoYAIeaZU2o+Q/kSKL5yg=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.12"; - hash = "sha512-SmlxLDqwOSkq51ffwjidZfJEnBNZ2kQBWNPOhzD/NKms0OrGD6ssCTwID1xGwiVDKcyHyeWp/kpZaSgb+/SWmQ=="; + version = "8.0.13"; + hash = "sha512-wcHRpb+C+bSXxKaMPkzGyPZJZoJP0XzRgOondr+DIDD8MqarJgGUCnFyEH36Uv9orS/3FufQAv5uQGsdpvveHQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-x64"; - version = "8.0.12"; - hash = "sha512-pTM9MIEvOaIGzu2Djz7CNqtBSU/4ytuN7T47SySP/N/VnJB4QfOCEz4MYFWG5Rpqz1Zx5gV4eEfV+DFUJlZ+dQ=="; + version = "8.0.13"; + hash = "sha512-v8lYi57qnbb0VBekj6GtnTtr0FQMwPtozdrNDZ9s5Hvhb1z8pwYdXtkVXtJgv8q6hhjoaZwKYarcjnC5xw6Abg=="; }) ]; win-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; - version = "8.0.12"; - hash = "sha512-RtGa0QmyL+DxjypnrrfFr9AjPfGVbLOlAqQcIVr3xYOjhlm0+XsKanRycjOiQpY7PYJGIED1nICm610kxTpHzA=="; + version = "8.0.13"; + hash = "sha512-/T3731bLrjLbWiMLmC7ziRxnVQraFy4OSUircxxMkzEV48uIM03Y7sF/414vjLbtOP4aLWua6fiL7Gk/LKOQwg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.win-arm64"; - version = "8.0.12"; - hash = "sha512-4b4nmMBlWXn/rILg/kgfLsXYfzRBRgmuuapWgHYtmyZPKmP/8QndobpmbIKN65KgkcJoLW+6E1BggutpEeWYdg=="; + version = "8.0.13"; + hash = "sha512-iXbeKa6+JdsdV4ZBo/hmSHx2A5zKN0XXh0+I3fwJd6dv1sgDTZ6LFOcq1oUVD30XRnbDOYUYUGPodoWQJefJLg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; - version = "8.0.12"; - hash = "sha512-AbdCpfp1Zr0hKzcbOC0XD84G6RP8sc2hJfjd2hkUNoQX6rTH6zw++ZahCA9GAiNawqGQtlzu3YJG6ELLmwmP7Q=="; + version = "8.0.13"; + hash = "sha512-Mw9nFoDzI11sc/RuquWRHBvwHPvXfzAJls5pgW5CIMTCCk/DzB8Jp6YwUlfS++L/VU/1j+cb+Ecce336Ozh0qQ=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.12"; - hash = "sha512-L6Bva94q7LHaYa9GIATU5L9mrcaZ2TKD3UV7U2gbeL2hqyHjtKC32CzMJgiJpqaidO2lgf46r5ATLhBIpgv0hw=="; + version = "8.0.13"; + hash = "sha512-LnNGrhF33hiudP8mltLgiIqg8afLiNM264RcfNPZYw99t4rT0OyUuvrtSifpWExjZ3AnTyPWb2ALwdgvaIifiw=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHost"; - version = "8.0.12"; - hash = "sha512-UhlCsMqxKcT9vf3v8xygojEypCCVdWY1wUD2UXdwsQaYopOKPVrBOrK0me9+vDQxXpRwmJ8q92x83NnGsq7pDw=="; + version = "8.0.13"; + hash = "sha512-pG5Fbq35FZHbuGlZeICyGzI/uVE2zi34ODn0sCd5duzt1Jld68r7pSdN+wCzTAeC0rgbZk07g1L5JNbrIJounA=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.12"; - hash = "sha512-LryE5guy2qJZR613WmgBSVbnmGBu4wJWn8Cd/pLVhvloFpI9qodruqZN0VmO7wXEsc4m6ukq0sfv3u/qKmWLHA=="; + version = "8.0.13"; + hash = "sha512-ayq2R7iJji+qmpTN/I0CqdiTAS+Vyz66MhUlU8PGQcjdzJj4EAxkViExpRsHU+JfJxgK2ZdRmFbQOW/0xD0PPQ=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.12"; - hash = "sha512-iLAQ4BaR5cDX0DPP9s/wEq5A8He/nqJu6i2nGUOEiOYKlYGNTHQEyKqc4b1sh0XCAQPQ5gn/7NMBrqo1/0hjWA=="; + version = "8.0.13"; + hash = "sha512-8UGHyAfbMnZlrxrLC6elkWv6UBwbleZQeDajV/bceyK/cVkDfI5dBs3MOt/LUWOPBxbpvcRu7Jix8c2Q9Fw44Q=="; }) ]; win-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; - version = "8.0.12"; - hash = "sha512-fFUUZcpljb2Z6/Duwtp1RThdOEvEFuI3lYijFTVpu94oRjw5sbtH+5qO1KeqrxCkY+Fnpwe1ABBy91zdoPus1g=="; + version = "8.0.13"; + hash = "sha512-BiodKX5nKXd7JNji43HFVhZwTLNabd9ZHMifgYY2tyTqrDwBmsqmUBF/iODtDIAqHLw1fhIpqbbnBMyJKJZUCA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.win-x64"; - version = "8.0.12"; - hash = "sha512-GsgHWhLYhuzBlBp2XlL1OBXyQyUHQJOpR4bR4bwG31qoxIhjUOQrgbiXD9pVKaKVHJxHO00nLSQN8mKEg7YKsA=="; + version = "8.0.13"; + hash = "sha512-8XvPrzp8W2jUt++6uo/WaYhg0Hf0fHCPsxaAmxhnbuq7/IV5Iw0B69bvWuyuUiEcI7VYGWheUNmfy3Db+2iu1g=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.win-x64"; - version = "8.0.12"; - hash = "sha512-nCHMRmxs2ZdwPEDy1Gh6mpwA38c/TskLYLcF/DALeEsQEtCXltP7FirPHVlYASOj1k+72xV/XPm9BQ60xgrOEA=="; + version = "8.0.13"; + hash = "sha512-PHxRlaZoaexI0Pk/VdEhYs5+k3SVnsVxQktSIIDU62WOwS9LnQ/zJJnvbyCgU5rkuzwES/+Z4lZvBhWohH5WXg=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.12"; - hash = "sha512-/AzCzNAiKUaHOgyGaGw63jBJOan9TtPFEpoQVtVK/OeyJFGrAokcL7LZxEmYZHCOAB/McmVl9ktOdebe1Ip36A=="; + version = "8.0.13"; + hash = "sha512-BwGWANBtOuGWcyKHPRyC59Xz0Q01gOceosvTsxHd0azriG2j7GdJLWgBndBrk+Dh9plVE56PG/WpR9dCqznthQ=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHost"; - version = "8.0.12"; - hash = "sha512-OjWkp6to2inzfmTnMiKuCQAei74AsWgoZXHJFOU73AfLErCLRY3vdzVEE0mR7vXki8jljzpBqPG7DVH2utO6Tw=="; + version = "8.0.13"; + hash = "sha512-fA4AgGkm/30M+H4h92PvJ+wDFvRkodn4VFJWBqwU5CnjQoSAiJtqMNF7InRo8fYScIXcurHabcK8Mg4/zxHy6g=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.12"; - hash = "sha512-HH8rUT8WfI8co30Fed0+V2kcH9H0Dt4CQ4REQHL0d18Ef4BsyNilXeeYIupGUYV/oJbJJfuCENuDP4Nn4o4XVg=="; + version = "8.0.13"; + hash = "sha512-OuhVyzUqBcj/UK4t7PjBr8xtns/UvQ471V7ggmv7NiguciaqAjZPMYUvlZ5X6BY08gGkW8OeQS6ucLXobymxpg=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.12"; - hash = "sha512-A3gyFcNiSrVZ1D/IdmpUlJ1iGYdV23L8yA8jo6PgeeYas8fWnUV5fC3BXq5/zhwpy+I61Ma1fqL3pn8WJWcCfQ=="; + version = "8.0.13"; + hash = "sha512-hFAn1Re+hn8cxLfMj2e4oN9lUD1n0hqhpW/k4tTClK8Mol+Sxkr8YgzNIW5CHQYrIrNMWSy93fXTiyuHRW8ExA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x64"; - version = "8.0.12"; - hash = "sha512-Rcs2Tn4y+jEo6oLSbi7fkxg50eODt3tjZNzM0iJBnkmMI9ZdtT9PSp7ExSn7NlqjpilPzP9YRCYhPrra7MfIbg=="; + version = "8.0.13"; + hash = "sha512-83RSeioZopBFRX5AWLvPT9FpPGv1biseVQzovj5Man3TiEhfSLF9VzrTe+Ag7tVf84mp0+baLc9lrglGep6sUg=="; }) ]; win-x86 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; - version = "8.0.12"; - hash = "sha512-j+NocH9tAxjaCICEVP3g8YhQm28A7yBg3GnNI0B2aXtba8vlFomvu509icbAp0g10YTGbqlOdmt82pIOyhcBjw=="; + version = "8.0.13"; + hash = "sha512-PZr+xxwsxZ2WECruHG43ypvNhvEaSwl0aVp6ykMH70RWrp0SkeWDwSiP+U5qcSNzg8G2xZS/sq0pdSzZkdlPAg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.win-x86"; - version = "8.0.12"; - hash = "sha512-qL1rcHqe9ZRFVlU1PTABx9AS9x+zrk9gZ+zW4nDr5Ai5AgeXo1cYSH0nzEv94cScH7ipGaCrYItF6tCoquK+Tw=="; + version = "8.0.13"; + hash = "sha512-uk/07Gg+y9caMZyfG7ZRopXpXWpnl4198lkhb/IqEka1Lq2DiN4bWsejbA5Fy6U2KHxSlBr5fQ80JHzOg9atyw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.win-x86"; - version = "8.0.12"; - hash = "sha512-pgyneHJjNT8ZqOoRunpxLh1ZilEvh9xRV16LOeigV5ROmZ/cyUCB+5/vKnsuC0Yz3noErwfpukpLUGe6TTQOsw=="; + version = "8.0.13"; + hash = "sha512-6n6dSU6+rv4b+6wNj8OOaNjRJirBqVCrsfvSCD9e701hwub5dzUTh80ZueSi0goBmbafwD8clZE3fDoCueIWFg=="; }) (fetchNupkg { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.12"; - hash = "sha512-mwOme5QW7MSs0xZP3cPDTHVqLD4uZCVMkkDwajj5IGyOstFSqjOkMD9d8tW0LJZM0PbtXz4NkbS4OfZvlztetQ=="; + version = "8.0.13"; + hash = "sha512-AUqe2XlIVMqDvSiMnOL/j86s3s+wS25pwHfYS9fXNF7uJ0KDOHOKkmI/oh9UsOXHp0viCf3VqFeZecYIQ8JG3A=="; }) (fetchNupkg { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHost"; - version = "8.0.12"; - hash = "sha512-s4TAfOSVe5loFWXz17EI12BcKZKrsrBiaaOS924f9agg2Ko1KTZ4Q5fzBZbQ9ArfKe3LpTpkgagAb4qkR9xQDA=="; + version = "8.0.13"; + hash = "sha512-FfnHphaf2+fPOm1Sjer2IC0r31V3IRx/yaPFCvPuTaieuATQ1OLqBN6oomFTySaO6nLcqgcJ/Q8UmuScsEFfnw=="; }) (fetchNupkg { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.12"; - hash = "sha512-Q5KIhosisJXxTfiHVthJKuIM9FLrl6crL0nMplRQ97pg3LKhg/YstZCdrzSYoKEB6fCns3BQIXWzjYXVQl2pSA=="; + version = "8.0.13"; + hash = "sha512-OFvAeGSGCK63/9OQQcgYsVr0acd0BjXQMqPXvfafbkO4SxCK8Vs9VE7DJghYesZ/wGDgu6zuHfIfc+/LkJ8m+Q=="; }) (fetchNupkg { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.12"; - hash = "sha512-tDX7X6kN5m6U6Vxb9PvHPXWXLW4gSq/VwWlfUy8B2TBknEV4/FBkYCwwXhKOkfrguhBGW9Y3fYpw+Gk7lSdg/w=="; + version = "8.0.13"; + hash = "sha512-D2dx4sp/lUJ7S/bMCj6ZMLxZ4OY0O1hazlwpUgafxcfQHXia4lV15iW/NiuwlTf7RdyXLwsxR5IjAu1zk3tyUA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x86"; - version = "8.0.12"; - hash = "sha512-jn2v2QIk6ti9qvSQDeEdI8gtUoSojX3gifYQuyn8dBYsrf9izKopL5WhxVsiA/L/ysYSx/ciMdm71j/FhSMUtA=="; + version = "8.0.13"; + hash = "sha512-a88O6Ce4XyTTejrznAhAKyqssctCpHgzt0XPpe/GPpK09SP5n5lDIxBFw6DZ3AXRFdsMgQFKV7o52DqW1Fvqow=="; }) ]; }; in rec { - release_8_0 = "8.0.12"; + release_8_0 = "8.0.13"; aspnetcore_8_0 = buildAspNetCore { - version = "8.0.12"; + version = "8.0.13"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/26fe9c15-40f6-4eb5-88fd-63d98eb259fa/c36789f8460b7e20371c38129d7fc160/aspnetcore-runtime-8.0.12-linux-arm.tar.gz"; - hash = "sha512-FEvX1FAlN6KAbRfuFhLks8Jidmxdg9qLEDHKYfKh6r0bulpTGxv8r6uZnwhNuWHJeVgE3mUdh/gd1tZJdjNZSA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/2c764efa-2f8b-44d1-9308-87dcafaeff2f/cd8f6383aa8adb1dd9493520b57f08ef/aspnetcore-runtime-8.0.13-linux-arm.tar.gz"; + hash = "sha512-3lo9z6uqfwGq/7eLIVbZ151hTw5S6+YZZXByVoqw/Ef01T57V3p2IjklAs06c5QAr2wmmZJHzFDCmBO2qUz80A=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/8953c6fe-3542-4cee-b022-a50e029882a5/1bbce821b1ae97ed11b305dd708c0437/aspnetcore-runtime-8.0.12-linux-arm64.tar.gz"; - hash = "sha512-kyP2WEv5hQD+AjAJ3qW5Dkm7s0zc6gho6NGML+JgsIcxVDjKLfeD8lkAPBoO4x8tc1yM6oXCxPsE9tr+BThFMQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/3167f98c-e2ef-4d19-bd00-178c27ed7f3d/8f9eb25b9899009f11ae837612b52c0e/aspnetcore-runtime-8.0.13-linux-arm64.tar.gz"; + hash = "sha512-1nEwMQ6B9yfx1IBkY/Sa8Y4BLW3HZslAg4hUkis6Pn9xcch9WVxNwJ4cY0cPrjAXtU1RvphhiYUSn/N9alrAsw=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/df752f45-7e9f-4d13-8568-a88adda5aa04/9d59726fb38525b4956cbb1e1fe8a2c8/aspnetcore-runtime-8.0.12-linux-x64.tar.gz"; - hash = "sha512-A6f9N9zkbDHX502nzU2aq9gtXgh4WdAGX0cOv30LYq0f61n8P3RpAzepKPV1HgS8t4OIluZLP40lrgNcW39cgw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/2115caf0-c47f-448a-8ad6-107a742d2b9e/52036588ffe8f8abd87a3d033fd93b67/aspnetcore-runtime-8.0.13-linux-x64.tar.gz"; + hash = "sha512-eyGv9Fw8p8zcBSfG3gXCCdWKVqFc8Q5lZSImH4hM8nKpK+E2lrGg8a4rqqDYJf/aWNlUhxoXs8OoZZqfOjbH5g=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/d7cca8a1-ed7d-4dd1-a993-6766287f2f39/2775af53e9a24ddc6afac345ad417b5e/aspnetcore-runtime-8.0.12-linux-musl-arm.tar.gz"; - hash = "sha512-F0GJyFHrF43HtWJLIgsKDfisv0HEzXPhVanR79LmrSrXescZ9R7bukmE5L6Qdjom7rv5WMGneuMuJvcoAWURtg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/d0f6f5ae-d965-4836-a1cc-97e382e9e919/9bbf8231f856157d4538180e92f24b53/aspnetcore-runtime-8.0.13-linux-musl-arm.tar.gz"; + hash = "sha512-IKYyJAnkbwZPc505SNz6Nlh507/B5wTsJPdKzPnI9GSsV4LqyIzr821nMqPUXW7/K7SonjkDIzIojeJeQQZboA=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/90290d06-b7b6-4ad0-99d6-1bab0a557051/3ba84f7ecb0f681b8f7cead66124c373/aspnetcore-runtime-8.0.12-linux-musl-arm64.tar.gz"; - hash = "sha512-d65Io007lHiqEbgHf3sdb16kdpn5Lj3CnQXMzRayXgI1h6lg2bwqXCWTnLt0lBAs565/1sCfWXkUmBpeftknFg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/9f700310-0300-4863-aa9b-469020d64bfb/025c0192fbc5ff3fab066ecba8cd76c1/aspnetcore-runtime-8.0.13-linux-musl-arm64.tar.gz"; + hash = "sha512-zsHu/r/5w7hYJBf8iDzRmlzxdB8A7V315Cojk5jDKG+fjh/myaZf+9dvqVMYzyP3lB9H9hMvA6+8H6+jpIYBxw=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/8f3afd94-2927-4be9-a935-da9f4dcdb004/c594a54091b5b85063f38879d50123a4/aspnetcore-runtime-8.0.12-linux-musl-x64.tar.gz"; - hash = "sha512-p9O64tp7TalGhR02GW1BBTWTr0E40a4CDOS5sUHH6E1TRGywiR4SeYOr1efAEdfJ0gOSJ9ypQJ1vrrY4NYM4mg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/e3b6a163-097f-4fc4-9ac4-3e42f5d98a69/8ca03a327bd2dcb6b55ac066b54b99a0/aspnetcore-runtime-8.0.13-linux-musl-x64.tar.gz"; + hash = "sha512-9JksLLyAGTeK8MhGPTbJeMqpQ+U9SVIgN7gC90duydgqb2nfshePgvYZvO3WYg/wwaugJHYIZOsPc85wwE/Y+Q=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/16c2edb0-5977-4a8d-9060-1d8a673c6b44/6802cfea6e93712b7872614bf47ebb9f/aspnetcore-runtime-8.0.12-osx-arm64.tar.gz"; - hash = "sha512-l75lVblM/eIlULQ0wOuNwykYGzC5MLYsUvQEeAmUbQVYs8gJVQnNByE8ddUfXSYCB8+wkzXxYO1cVe6LaeY3Tg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/a91349c2-bbe8-4a89-a5c1-bf42b6916fed/9d25c6514ce8983ea8fd494ef8491bfe/aspnetcore-runtime-8.0.13-osx-arm64.tar.gz"; + hash = "sha512-RqGbkmHxPtWFqUpzJdsY1ifYRqNtlbY0IRNv5vVVfmWSXjluFAD4+3T1CYEW4g6JUEwUZ4ibRhjsrjqat5k7nA=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/2d69b57b-d997-4364-a898-220293f49d9f/c192bee87281e416703f53da103925d3/aspnetcore-runtime-8.0.12-osx-x64.tar.gz"; - hash = "sha512-qzE801RZhvMFrxH1SVo5bPXn1mJtDkaRfv7fSveqspy58t4RTJ1SGAgdZzndUvlpiZBrEFNplfVnK3HMhliUpw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/08747374-3c8d-4ff8-9ccd-76428ede4b69/d09395b7026ad4825c0fa73342f98a42/aspnetcore-runtime-8.0.13-osx-x64.tar.gz"; + hash = "sha512-umZ0LKuqeo4/9SeIpZtbprPrrEdOYGREYjyZGeJXsgue3XTpxvDSMs5+gj2/rXaH4klc0tcL9GZJ4ZAudLZMDw=="; }; }; }; runtime_8_0 = buildNetRuntime { - version = "8.0.12"; + version = "8.0.13"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/a50c2f56-3ee5-4387-a9a7-4338b75fb5c9/41676fb7ec43d9108a65fc0d76c15717/dotnet-runtime-8.0.12-linux-arm.tar.gz"; - hash = "sha512-C448N/IFz5Za+9cJav1fxuICJIs+PBdHEuG880trZKt7Dvhm7rbhahFDZ+NWZtrLUusLoQ3eizFDMUoFHrGh0A=="; + url = "https://download.visualstudio.microsoft.com/download/pr/e42f6ab0-c3df-46db-83dc-47205f5cb6fd/0c1cf07866e0674a18748cfed2b747b2/dotnet-runtime-8.0.13-linux-arm.tar.gz"; + hash = "sha512-XQGPtQ7qlvPppWFCICzLHHOnJSGdclew3rvu8+8ZbGmwdrmN+28JiBjAUUCE3zP2cEvBOkeNFyewEta6nuoEkg=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/4bfa2e49-fd4b-4aa7-b5c7-cd344beb72e8/d04a3458f047737f9343430e901efadb/dotnet-runtime-8.0.12-linux-arm64.tar.gz"; - hash = "sha512-wwCofkF5j6565JIMFAu+NJmhCT1BhFD5v6RpsEXr4uWEDZVIfpN+7b6KsiHhOIrtdv3MGMktgXeO5DODun/jOw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/7613adb2-d77c-40ac-b9b4-28f0f571489c/0943d0483052418201c63456b52a1908/dotnet-runtime-8.0.13-linux-arm64.tar.gz"; + hash = "sha512-5sQqwXWCOUBcinQBlAI7St4QF97zvzMFV9wWMSsvQFmb4wqL/I2wVVlknPDtpfxDrxUzIPU3jctIcq8TZ5vOiw=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/14263fc6-1fdc-46cb-b692-df3e0f4204d0/24c37267d4f4e166df57ea3ec9acff18/dotnet-runtime-8.0.12-linux-x64.tar.gz"; - hash = "sha512-4NIW1U6aIarvwSCkgQUPETfMcIy70XIE8LGkfbtkJAeOi0TchClXpmkQJc2hSQ5QYQkoAkhLX9EsWQP1umNEgQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/d26516b7-7049-4c18-974c-467190461f3a/667fb6101ef1f43f624e175b49f8ab49/dotnet-runtime-8.0.13-linux-x64.tar.gz"; + hash = "sha512-hkntoU6LyZP4yz1CHUSkq7IYrPKZlqweyTloa/ZX51tg8raQGApGVO4V67e5U4bqvJaeqYIJ4x4oAWIP+Q/OQw=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/d77d220f-ba55-45b2-9013-5def3d55d558/8293468a0a39b4a61ce94f3ae5a65fdf/dotnet-runtime-8.0.12-linux-musl-arm.tar.gz"; - hash = "sha512-7JsDT1UOgHtNT/WwfGx9kJWetNbbXZe4skUmnaa6hz/ieCJJEYH+NOSbbpiGFGQLJ1QkpYWG8CKRXqSKzekGsg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/2a7efa56-7d1d-4fe5-9913-bebde112ff7a/959441c7558e14cf628c30ceee03dda4/dotnet-runtime-8.0.13-linux-musl-arm.tar.gz"; + hash = "sha512-qMKEQGzbu475Cu3gqVB96vPO/Hlmyo3gRXa7s7riYLgbFrJEHU1DhXkuzDQX6hqzrs6rVJf4Zl5w36Ve9+WvKw=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/3b021406-40a7-4609-8046-5877ae6b2c2d/8ca6aefd8b95ee56512416448d7ccc52/dotnet-runtime-8.0.12-linux-musl-arm64.tar.gz"; - hash = "sha512-s2m3G0g63HzVPTxXzOoe2SnkQVguIfMZiUKdMf9r2qDm/nVUlAKow80t3bk1wYxDLSxyxIbQNGfyelLgCaGJYw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/88255cf7-e65f-4fa7-b9ca-5d4ce68ad28c/4f0cd54be0d4c52ada9c105e8641c434/dotnet-runtime-8.0.13-linux-musl-arm64.tar.gz"; + hash = "sha512-e0aRlkle0A2c+xZlWHBMIqxXK+EfxN+TbYaRLZwwaxAbo0EbaOlcjRmfhrpIyqQtnisGjOrie0c0fcULe5atGA=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/bcf1eef7-7287-4076-9ad0-f5c308605952/d70135d19e557c3730f5b801d67d4e84/dotnet-runtime-8.0.12-linux-musl-x64.tar.gz"; - hash = "sha512-Kpegfp+y3MgiWFDJV0oBT5oREUfYfe1ik+t78mz2vubMUWcTwCwToI6Xdtut1YNifwXm5i2qr5b2U+KMCzeyXg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/c02c39f9-a695-4924-ab27-e1935b9f1bb0/860d07a99820abb189489d8e340e01b9/dotnet-runtime-8.0.13-linux-musl-x64.tar.gz"; + hash = "sha512-+sennennnKBVg6ywTAhrGlc62giVt8cwF2wYHw052oKsK6VCZoHe1tWx2QTpfFhQgsybVtjFIH/uPpO4ixOVBQ=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/30fcac13-8a78-4495-84e6-00ae9445c76b/4989e4834115de71774568b0e606f09c/dotnet-runtime-8.0.12-osx-arm64.tar.gz"; - hash = "sha512-i+qRfQ89iqJ/Brlbl66iINRKP2sMZMZhLf41PdTfiBi9pWV7Y7yhFo619IZsqLizjHCrxe/8ovw1ik3InvEGCw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/dd971173-c30c-4fdc-aaec-015aa6a5e149/dee0d19d43982cdf456a7ab9aec99094/dotnet-runtime-8.0.13-osx-arm64.tar.gz"; + hash = "sha512-eUjTe908x/ovDVO0DhmXoQQLhm+UKoLrfjNJ2jiPYUr3iZA4ZIO8p4miK0GwuPXCUWC/fFgSsffzlK+d8btadA=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/3458a9c3-f34a-4d61-896c-1551ee66d5fe/bf3c24436ad390578caf1ccf185e3151/dotnet-runtime-8.0.12-osx-x64.tar.gz"; - hash = "sha512-sYToXFX9D/0Ue93laVtYbMGHnNqhG4MswxWJk9sphihmFwOe0voPRtq6CgHo7Om+awoWjYc0eB2XTHfI3DbVug=="; + url = "https://download.visualstudio.microsoft.com/download/pr/0803f323-5b8a-4891-be36-731d42760b4f/13078be8c22cc327924445a898e74995/dotnet-runtime-8.0.13-osx-x64.tar.gz"; + hash = "sha512-iRZgXw1wKKgZAqRpLKY4ZSGJKr9NwgmDyI4EchA2h4sE+AoLkyneBSSr5ESKWShFh8SLc4CA1nXH51PjjX2abA=="; }; }; }; sdk_8_0_1xx = buildNetSdk { - version = "8.0.112"; + version = "8.0.113"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/e9e78298-4150-465c-969b-8b1d2fb069e9/88bfb81d6fc900bf1b68ca3ab7631443/dotnet-sdk-8.0.112-linux-arm.tar.gz"; - hash = "sha512-YUD+PrzTdQD7AY3JmoRyGROee7sTIlUM1SHgP/Litz5sWn6y5g/dqhDTDIqeJVje3rhFP4UjH4EfTU2ZkjjRgw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/b2b1ff12-96c2-4de8-89a3-a17d533ca8aa/d45afb562e840be15870b23453dd672d/dotnet-sdk-8.0.113-linux-arm.tar.gz"; + hash = "sha512-LqHqv9emav1vtIkSujqKemJvw7sQ9fNUu+ir84QcSJ2CGuFnCyxklQfdNKW33GbprFSADK8GT+fGeg8GXGjCRA=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/f6d8b6bf-4e75-4ba0-a1e6-cb79255b48ab/b8cb663305eff90d17ac97e46e1e0066/dotnet-sdk-8.0.112-linux-arm64.tar.gz"; - hash = "sha512-LXwd90Dp4lxsNyJuuuZBIY0unjn/kKks4aWV7a4ADhmJ36iRvs/FOTQO3NkPu5is4yuOFrmY/wbHdBGh1CBBQA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/617f9650-3648-4813-a80b-ae9376f9926d/9d31940b65fe9e2a4debed7e52779e86/dotnet-sdk-8.0.113-linux-arm64.tar.gz"; + hash = "sha512-w8soWKF91NvqXTxWh+nGSLKLGdtSLwKXBanc9hSH5SZ01aDt3Wx/a83cIpcrTpP72b/6EOKvuv7azjElkL8GCA=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/1f338ac7-da1a-4d21-b78c-6c769b9c2dbe/5fd0e2846ef9f7c8bf6095ce201f50de/dotnet-sdk-8.0.112-linux-x64.tar.gz"; - hash = "sha512-3smWKLZ8p87unQvm423udnI6IQE43sBap4GkX0dBAnVkRC50qYav6HSRmiYxw+dVVexo5MPkdb0vgHpqyqmJ/Q=="; + url = "https://download.visualstudio.microsoft.com/download/pr/906a5846-9fc6-4755-9e58-5cd276b62752/05b51efa10b6b81fcd5efae1e71b6b8e/dotnet-sdk-8.0.113-linux-x64.tar.gz"; + hash = "sha512-58OBRcqO2yP5mSq6I4tnJe8L/MGGyHnnA8eUULd3IJdomHUaKFhadtObKltJnldj6OshZciKXS+rLDEpo1MRbw=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/672126ac-5134-4b27-ba18-28cb02fdb168/1eaaea4bc9a463f692abca1a45e9b5fb/dotnet-sdk-8.0.112-linux-musl-arm.tar.gz"; - hash = "sha512-qXiriguzCicsRzDD+TVU3qAw1mZlkrt2BAR+vzW6ZlGbrl5eRK0YhVXwHETvAAkn80Mc/Ewt13E5e5hee95gpA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/fe9c5dad-1d0a-44bc-991b-b7261a101acc/f92f4c4ccd929728a5be49219a77cea2/dotnet-sdk-8.0.113-linux-musl-arm.tar.gz"; + hash = "sha512-qN/OC2Q60jySwzz6ajYmnT0iy+7BzbUGGhw1+Syg8zd4sLKN2f/xFthUUepH1gC5t2LhN0q/9FDqf15gNueSvg=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/933119f6-9819-4a3b-b6d9-e737054bdf60/9d27ea1e7a5d00226f4a343f2cda76ad/dotnet-sdk-8.0.112-linux-musl-arm64.tar.gz"; - hash = "sha512-eQub61Y/9dwGzjLt0m5tv8O+a/nNY+Wls7SG76PBpZX9n01CVMv37948MuhUL39u6DKQ5qbl4fchnruj733M+w=="; + url = "https://download.visualstudio.microsoft.com/download/pr/6e40c625-e084-43a2-a20a-84ec80538994/f7c8c888a5e65ffdb84b3adadf6c234c/dotnet-sdk-8.0.113-linux-musl-arm64.tar.gz"; + hash = "sha512-U5Xsmc+UiglUUFSZXvio2S1iK33R9nq3uwk0Zj6gZ/+ZKaiYOo3efbPt4KzdSeS/id3xRIcpcEjSjV+047GhvQ=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/7c1c61b0-ea00-4eb6-a97a-31560c81b5b0/f5a5ede05aca2fbaca5b1486c2571462/dotnet-sdk-8.0.112-linux-musl-x64.tar.gz"; - hash = "sha512-SIMgFeCtdPw2dwhgRODuUAT8C5yvKeohE0RKBBlD4hOO/r00eAq0tjGUt5TfgKOJN7RgltmiDIMttU/gWEPSSw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/2db21b6b-c8a3-4963-bff9-51e95e9400bb/16b322c3e86f65cd7c65c78aa114f341/dotnet-sdk-8.0.113-linux-musl-x64.tar.gz"; + hash = "sha512-7BOirKMAOYyHOLHg1Ixu6PfvIY2qS8DWnd/AT+L75AwrLT1rHawZD4P8eUU4TWa0qDCTYy53iG+1S3i8ojvmNg=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/30dda97f-e407-4887-9218-96062c82d51d/1fba1e21b5e514a007cc39f97e38d60a/dotnet-sdk-8.0.112-osx-arm64.tar.gz"; - hash = "sha512-4o/vqA6KXu+huO18x79/pZIfOBz9OxbC138V7TthiPLe1OFYKBqSwn7lNJ0EoEJeTKZN7Oo8oHGLMEfh58ureA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/3b72fb20-4b11-4fba-a251-5485e059b6f0/24211930ac082fffd82011261a38060e/dotnet-sdk-8.0.113-osx-arm64.tar.gz"; + hash = "sha512-GCR0ebqmsXOS1tjT6iNQ6leGWAtBnUHoYvOxo7ndZazHMCpqv2t88VnwdiN1aoSYItEVBB5yHfA50Xk4Jg3uVw=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/ce94ae9c-4627-4b7a-8857-eb50cac41a0f/2c8804a1a59de1abcadf19deb68ef59b/dotnet-sdk-8.0.112-osx-x64.tar.gz"; - hash = "sha512-KU3LITZvQjGU2tlWqG4K7ZoOPMImX/mxv2HHjxrHg8YUwloG9k5rNXkBNbyJnkFN138dco9Plcla1XuAAVBroA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/4447b07a-1f8a-4088-8de2-cc880f630c11/1738874168616ec1522ed1effecc15e0/dotnet-sdk-8.0.113-osx-x64.tar.gz"; + hash = "sha512-ZPGThYjblhBKU8c4GrFwdJ5cQ2TEmUTcqPfJGNUirczNy8PPcGAVmbMGvejoEISafYt4P6sqve43Z9FJZTXpKw=="; }; }; inherit commonPackages hostPackages targetPackages; diff --git a/pkgs/development/compilers/dotnet/8/deps.json b/pkgs/development/compilers/dotnet/8/deps.json index f1849483280c..c6e4946af7bc 100644 --- a/pkgs/development/compilers/dotnet/8/deps.json +++ b/pkgs/development/compilers/dotnet/8/deps.json @@ -5,6 +5,12 @@ "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg", "version": "13.0.1" }, + { + "hash": "sha256-may/Wg+esmm1N14kQTG4ESMBi+GQKPp0ZrrBo/o6OXM=", + "pname": "System.Formats.Asn1", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/system.formats.asn1/8.0.1/system.formats.asn1.8.0.1.nupkg", + "version": "8.0.1" + }, { "hash": "sha256-dQGC30JauIDWNWXMrSNOJncVa1umR1sijazYwUDdSIE=", "pname": "System.Reflection.Metadata", @@ -13,50 +19,50 @@ }, { "pname": "runtime.linux-arm64.Microsoft.NETCore.ILAsm", - "sha256": "851481e92d9f365ab8f1a2f91d9ba8c1d3b1e186c97b6a53ad2e41e31cfcdf1a", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-arm64.microsoft.netcore.ilasm/8.0.12-servicing.24603.5/runtime.linux-arm64.microsoft.netcore.ilasm.8.0.12-servicing.24603.5.nupkg", - "version": "8.0.12-servicing.24603.5" + "sha256": "2254121866acbe437bf3a2e9168e119eae7e72c340f4d4d4aa76aade9526484e", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-arm64.microsoft.netcore.ilasm/8.0.13-servicing.25066.9/runtime.linux-arm64.microsoft.netcore.ilasm.8.0.13-servicing.25066.9.nupkg", + "version": "8.0.13-servicing.25066.9" }, { "pname": "runtime.linux-arm64.Microsoft.NETCore.ILDAsm", - "sha256": "fa426fe7acb104bdf5d031ac14d1293be89902cf6cf0bcf90aa788febd5c2a99", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-arm64.microsoft.netcore.ildasm/8.0.12-servicing.24603.5/runtime.linux-arm64.microsoft.netcore.ildasm.8.0.12-servicing.24603.5.nupkg", - "version": "8.0.12-servicing.24603.5" + "sha256": "4f1425927fdac61965a243e2c262853b86b977fd7722d4db777d1ab2f4f16fd4", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-arm64.microsoft.netcore.ildasm/8.0.13-servicing.25066.9/runtime.linux-arm64.microsoft.netcore.ildasm.8.0.13-servicing.25066.9.nupkg", + "version": "8.0.13-servicing.25066.9" }, { - "hash": "sha256-GVvmtd1xUASxlm4v1dQ2fOWTvOAT+u2HNd/wYKX9gJ8=", + "hash": "sha256-4WJI98Tys63kDoa3JFxmhR3YNOPMw7fbCnsvveBw3qY=", "pname": "runtime.linux-x64.Microsoft.NETCore.ILAsm", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-x64.microsoft.netcore.ilasm/8.0.12-servicing.24603.5/runtime.linux-x64.microsoft.netcore.ilasm.8.0.12-servicing.24603.5.nupkg", - "version": "8.0.12-servicing.24603.5" + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-x64.microsoft.netcore.ilasm/8.0.13-servicing.25066.9/runtime.linux-x64.microsoft.netcore.ilasm.8.0.13-servicing.25066.9.nupkg", + "version": "8.0.13-servicing.25066.9" }, { - "hash": "sha256-b/40wRNiM24qb0HTFu0Dqb4xlykzlUcnH3tap916oyc=", + "hash": "sha256-ERJt2tdyEn0dCjyYoapJxF2e/1tYRZJP+ySd7edEPUQ=", "pname": "runtime.linux-x64.Microsoft.NETCore.ILDAsm", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-x64.microsoft.netcore.ildasm/8.0.12-servicing.24603.5/runtime.linux-x64.microsoft.netcore.ildasm.8.0.12-servicing.24603.5.nupkg", - "version": "8.0.12-servicing.24603.5" + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-x64.microsoft.netcore.ildasm/8.0.13-servicing.25066.9/runtime.linux-x64.microsoft.netcore.ildasm.8.0.13-servicing.25066.9.nupkg", + "version": "8.0.13-servicing.25066.9" }, { "pname": "runtime.osx-arm64.Microsoft.NETCore.ILAsm", - "sha256": "b3dc437c856b3f9aeac1932ea0fab8bfdf7539f69b8f0be783f35ed821a0242f", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-arm64.microsoft.netcore.ilasm/8.0.12-servicing.24603.5/runtime.osx-arm64.microsoft.netcore.ilasm.8.0.12-servicing.24603.5.nupkg", - "version": "8.0.12-servicing.24603.5" + "sha256": "3e80a12018c3dbda4867083c24b586391d62b7de91d739896a4d62420a81761c", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-arm64.microsoft.netcore.ilasm/8.0.13-servicing.25066.9/runtime.osx-arm64.microsoft.netcore.ilasm.8.0.13-servicing.25066.9.nupkg", + "version": "8.0.13-servicing.25066.9" }, { "pname": "runtime.osx-arm64.Microsoft.NETCore.ILDAsm", - "sha256": "3e682ef54f63322e5ce385b3e290e26847f0d4b2ef3493e0426b4e105ad74b4c", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-arm64.microsoft.netcore.ildasm/8.0.12-servicing.24603.5/runtime.osx-arm64.microsoft.netcore.ildasm.8.0.12-servicing.24603.5.nupkg", - "version": "8.0.12-servicing.24603.5" + "sha256": "d630808c864de32e3b53a1d5fc08dc4e3bef9cf3dcb3e02be4c20d3777be2830", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-arm64.microsoft.netcore.ildasm/8.0.13-servicing.25066.9/runtime.osx-arm64.microsoft.netcore.ildasm.8.0.13-servicing.25066.9.nupkg", + "version": "8.0.13-servicing.25066.9" }, { "pname": "runtime.osx-x64.Microsoft.NETCore.ILAsm", - "sha256": "3d8661b680ec675db354d55c8063f172275a526f349770d21e01bd029a2640fe", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-x64.microsoft.netcore.ilasm/8.0.12-servicing.24603.5/runtime.osx-x64.microsoft.netcore.ilasm.8.0.12-servicing.24603.5.nupkg", - "version": "8.0.12-servicing.24603.5" + "sha256": "8aa61f9b47dcd82c1fed5834dbc6ee133964b534eee8d186fbc0ed31263cbbe9", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-x64.microsoft.netcore.ilasm/8.0.13-servicing.25066.9/runtime.osx-x64.microsoft.netcore.ilasm.8.0.13-servicing.25066.9.nupkg", + "version": "8.0.13-servicing.25066.9" }, { "pname": "runtime.osx-x64.Microsoft.NETCore.ILDAsm", - "sha256": "080c6d1098320b8fe9c5c160094f79ee0976d4f5b731279347bc5bb4411b2e96", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-x64.microsoft.netcore.ildasm/8.0.12-servicing.24603.5/runtime.osx-x64.microsoft.netcore.ildasm.8.0.12-servicing.24603.5.nupkg", - "version": "8.0.12-servicing.24603.5" + "sha256": "62eaf1bf51e02429bc60636c08e38e772c24085d4a49dc9a17e43e43e8caa2e3", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-x64.microsoft.netcore.ildasm/8.0.13-servicing.25066.9/runtime.osx-x64.microsoft.netcore.ildasm.8.0.13-servicing.25066.9.nupkg", + "version": "8.0.13-servicing.25066.9" } ] diff --git a/pkgs/development/compilers/dotnet/8/release-info.json b/pkgs/development/compilers/dotnet/8/release-info.json index 2de4dffa62f3..2448297a01a2 100644 --- a/pkgs/development/compilers/dotnet/8/release-info.json +++ b/pkgs/development/compilers/dotnet/8/release-info.json @@ -1,5 +1,5 @@ { - "tarballHash": "sha256-CpSHgYJoLHlFcSwtuurN+a6sKZbGsPSZIZE+C0f9uM0=", - "artifactsUrl": "https://builds.dotnet.microsoft.com/source-built-artifacts/assets/Private.SourceBuilt.Artifacts.8.0.112-servicing.24604.1.centos.9-x64.tar.gz", - "artifactsHash": "sha256-wx3ov1hW6ck1I/zygzGxnS6Y5wxS9cxtg6pLl7LQn7I=" + "tarballHash": "sha256-p7L5VakvJ4/q82a7BITpG4JIZQ9+EbsHn/NhbzTcl4c=", + "artifactsUrl": "https://builds.dotnet.microsoft.com/source-built-artifacts/assets/Private.SourceBuilt.Artifacts.8.0.113-servicing.25072.1.centos.9-x64.tar.gz", + "artifactsHash": "sha256-iERcdXcc52gIh5uA0iw7YNv77ligWE+DfWqzYTFLWcs=" } diff --git a/pkgs/development/compilers/dotnet/8/release.json b/pkgs/development/compilers/dotnet/8/release.json index c309f6cfbbcc..43ebdb73c654 100644 --- a/pkgs/development/compilers/dotnet/8/release.json +++ b/pkgs/development/compilers/dotnet/8/release.json @@ -1,10 +1,10 @@ { - "release": "8.0.13", + "release": "8.0.14", "channel": "8.0", - "tag": "v8.0.13", - "sdkVersion": "8.0.113", - "runtimeVersion": "8.0.13", - "aspNetCoreVersion": "8.0.13", + "tag": "v8.0.14", + "sdkVersion": "8.0.114", + "runtimeVersion": "8.0.14", + "aspNetCoreVersion": "8.0.14", "sourceRepository": "https://github.com/dotnet/dotnet", - "sourceVersion": "a970a1cfdd960e99b4b8b9bdc3099b943f70adde" + "sourceVersion": "b5416edd25debe775619037d6348bb672fb5da54" } diff --git a/pkgs/development/compilers/dotnet/9/bootstrap-sdk.nix b/pkgs/development/compilers/dotnet/9/bootstrap-sdk.nix index 0129afdb1672..bda716a88955 100644 --- a/pkgs/development/compilers/dotnet/9/bootstrap-sdk.nix +++ b/pkgs/development/compilers/dotnet/9/bootstrap-sdk.nix @@ -11,28 +11,28 @@ let commonPackages = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Ref"; - version = "9.0.1"; - hash = "sha512-j59whFHFna8m2rgyONETv2AyVTcGgNYhynz7sljGIQI9UejOz4lMtoF6ETztgdKcxLM/PQpe3iXrc/1s6cL6uw=="; + version = "9.0.2"; + hash = "sha512-5UdlvQgLHbSf3jWNIQsIgQXX8bpLPwT7Ula86VPEKYTNsxzati7wSst3w84cafWrQMIGkVrOWdhAbQWBM0LAFQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.DotNetAppHost"; - version = "9.0.1"; - hash = "sha512-MWBkM9EBf2IXGLRhtwOOXm9h/adAUyEoYEjyxvwDPJbBLX/aWCCvEzKRH3AR3WqxSCIuXMy6ylte86SiPuU2yA=="; + version = "9.0.2"; + hash = "sha512-zkZ5R92aVAnzQvvVo5GEUgw7LtC/EGEgScLcPxcAy9+wKn22ttlC6Y0jJVbmpvn8lSw65k4v4vZB9JTa3p0zVw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Ref"; - version = "9.0.1"; - hash = "sha512-yGd0EFC4wluxps8taqReKJk5fsmSf6k6SuqUnnwrw6UNtvUtJqWLiIThkzl4g2I5ECxqt+ttnN3iKnvxoSKc6A=="; + version = "9.0.2"; + hash = "sha512-Vj3zAxAV4RbAOv84QgWXFWfAPD2899tCGxAWYoeA4lbK/+piihilqglICYNUOUaOpWZk9lp1JH8YqzvUGL8gSg=="; }) (fetchNupkg { pname = "Microsoft.DotNet.ILCompiler"; - version = "9.0.1"; - hash = "sha512-IqKgv7kZ6BG8s31dCHqBgLuP96YHHSUvndDw1gCSkZ4kwtxuo4/gIonNuz9Y2BxJFVyWPpSDjNIwbOBgpUrnFg=="; + version = "9.0.2"; + hash = "sha512-XMUBd3Zp2dMhtPfaI1uKzIwoyTLml+HPOpokh37gP2XLTyq9n/oXVbsyy4c5Qb9DoArrDxTjH3kZVpRYGCXM/w=="; }) (fetchNupkg { pname = "Microsoft.NET.ILLink.Tasks"; - version = "9.0.1"; - hash = "sha512-w3hS2Z0dQpqktohyL76mSk1qKnP1CTHYg0n6LzlP8DVoCGyDW0GKOPYM6PWzgmsv62PV0spUJtdiJZxAPmF0FA=="; + version = "9.0.2"; + hash = "sha512-UqcE/MYZ954B09TZaoWziBOArkLQIjTLTs5j80iqo9G26HkukEvxn4fQ3OG7+hONoIGATR8QAi6C4c5GxRGg6g=="; }) ]; @@ -40,118 +40,118 @@ let linux-arm = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm"; - version = "9.0.1"; - hash = "sha512-ITqGyFkabgmC8HDqEvKTy1T6eAI5Jzt+FQibZqD7mXx3HezY+Vug35QIhKoZsGvBgGZePXXlXGbQXojv24oBRQ=="; + version = "9.0.2"; + hash = "sha512-UA3vQVkpqQKjUZMERbbute1QxpwOM8bZjVjcZ7ZhbzZ7mIBDv6XgJPKubLwukk7GHxCkPf2AV+XXm2ECieUjtw=="; }) ]; linux-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm64"; - version = "9.0.1"; - hash = "sha512-pJjbOtu4hjHVLu+ohoe3HW7z7D/VDlpnO8gCSZetd/DStLhBkgHx9Ne0bida9+UADDqk657d6tBNlKmk53Xe3g=="; + version = "9.0.2"; + hash = "sha512-Cmib09h/yribffQnq5cU6jaxi4DpfhFr+lLaWrxPfVstmBsx/1oQgsWl+U5zSRim40ZdH1EixJoRRbwEhFf1rw=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.DotNet.ILCompiler"; - version = "9.0.1"; - hash = "sha512-58uQG/MEDkL5KtUGOcyAbXQwPM2hguHALO2GzrRolb/G9cZBWxPdzsz/Znac44IXjPr8ELq+L1Tdj4DOYabrgg=="; + version = "9.0.2"; + hash = "sha512-/RkAhGaGWD5xlj+lgwEsje+nHEjauGvK/iNWVSwLyi4FSek38rTO35HqwLZovqKCGJqZQtLQQ3eC6CjHhR7scg=="; }) ]; linux-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-x64"; - version = "9.0.1"; - hash = "sha512-szJlHztrwdlPp3rRxcvKPuV7XUYHbYW4QOf53Md2bfz5hSZu1O/fH/Md516vGD13NXykF1sK8/+YlI/Zg1flPA=="; + version = "9.0.2"; + hash = "sha512-ld8hVstWuRRJZodUxLd5jdAPMK71xt30NLeMZIVcFsQcsQ9CP9qt0PpjDyR0y+ZSwIQkm7pnvl7BEq7xTCVcQQ=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.DotNet.ILCompiler"; - version = "9.0.1"; - hash = "sha512-9qpCPG+jgL3DG8KUycZFef6bC1Kayo1IP+h9syZYdrcLXDmbZTJu3hcAL4S94O/fSx7kNCJNfZ1IiPFc5OfafQ=="; + version = "9.0.2"; + hash = "sha512-D31woF6UsteTEHnFFxddJmpX3amTkUi/hGvnOt3FX4i6BVOKkqsJIf1x45MQUXf+O5E9q7nDDprgJPxOHA7wPw=="; }) ]; linux-musl-arm = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm"; - version = "9.0.1"; - hash = "sha512-L5D1Q+sTwN0cqr7yMFHJVialh+G9sbZYaOOQP9eBa1/rWxn/FUAGbPSDpKJTyILFPu1aiykYk+7zvBzyWUxXJQ=="; + version = "9.0.2"; + hash = "sha512-kQDgMou1CnrcX9ADD4nIcy0zkjT65pBlS2GUzoFhXdS8mAqkbCxANlHS4JBCeTZ8eZSZjT0QapAkD7DVKEwvww=="; }) ]; linux-musl-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64"; - version = "9.0.1"; - hash = "sha512-4re15jU1KkriWUfIzAvl/JgRWqNPIdoP5V9tbX2SW7+xJo/UQ4IQkJ4W9Ct33e8gmv74kqpOaUAW8Ufc3AEvZg=="; + version = "9.0.2"; + hash = "sha512-gacWyUCxmriKo66scvwafULnOI6xClFtKAqIymOx0os27ZJD/SPEvDdkPKykkqSCNPse00qUW/W36xgcfIhlGg=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler"; - version = "9.0.1"; - hash = "sha512-iFr8JbqjJuAX/358K6rVsnSxLtOi/fHufP5tDypK9OpUHeExhRw7stDKfDaZRccGfVIu3h4WG/hFzEnkAipEWQ=="; + version = "9.0.2"; + hash = "sha512-wbdVbAVjSh0H3TXg8BywEiAtAwCjcHTKYNIhYscjhWaXRW3fm6Lc7Cud9XUsaiM4K7OPDzWfgjGp8CTydvccYA=="; }) ]; linux-musl-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-x64"; - version = "9.0.1"; - hash = "sha512-BGXpmXcXPRylzaWOrojpjwa0TNPU1keLVptsJ4F4Pbd6eD0vW7aG+tIWhRDmj1hn0u2lXWpQhdUHuE9kzQokuw=="; + version = "9.0.2"; + hash = "sha512-a8M6vtlcxrbJ2J1E0bvNTKNj4ryTw5fUeIdRydIY94TPWKfU33BB3GGq2VJJhgRObKZx4+OI+Iv8k7BAU9TCuw=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler"; - version = "9.0.1"; - hash = "sha512-ZO/XMhmqlAlcFVk7LFK6X3Zw1309qMD9CQtBH0lJWqcKCoCJ/M/kR3MFC3LPehH+tmRGeiLOzTdJoXzUDQlesA=="; + version = "9.0.2"; + hash = "sha512-cv0CJDz5owemAyOBOMXhVVaavPgs/H73iSwcsv7ddB0BAxhH9RarCKgX579cKbeaD+gtCdZkT7pNN8lufUAPWg=="; }) ]; osx-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.osx-arm64"; - version = "9.0.1"; - hash = "sha512-j38WbOTxvqiOycqA+UkCdoOmAGNleiSmoaYbmR0vx8Gt/jiQ0dWUP272r4kOfytFsPvXDSq/8BClx6d5auUjbg=="; + version = "9.0.2"; + hash = "sha512-SXlfpzNHG40IJq1KE9Ypc4pExnlY13HECPQ7F1hc0u55LGWoEieYE4se+rZq6ygpfY+lG8jYXhYZ38dX1iz1VA=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.DotNet.ILCompiler"; - version = "9.0.1"; - hash = "sha512-cXNoNxA8DEwlf7r7slfLqnecqmuEkKntXwrG937SL3fEeazGsImV0dVr46k13dbIA56NyBS3vQ9DuxtqnDy2Sg=="; + version = "9.0.2"; + hash = "sha512-OmoWAZ9xkufpTtLaSGPKmJBq4Fhf+vSxPjACtDUO341k6rGXt3KTtgv2Axl9hERQIGxJIErGDAfB4Kvtpaxe+g=="; }) ]; osx-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.osx-x64"; - version = "9.0.1"; - hash = "sha512-CMu+1kW/TMcHSe9tmM9JKPm3BPr8fE81qv5shG0EOcovBu8Z2FB4x4cj7tdQIZjC/M+yxfL09lmO2joO06mLZQ=="; + version = "9.0.2"; + hash = "sha512-eu+OoIif75S+08+bSlHOHhb/St2DheAjjP5NyNu+bpoIpjIsRJJFU1l3Ozfsfva8ZolJOwO43PhmSIGBEBh7eA=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.DotNet.ILCompiler"; - version = "9.0.1"; - hash = "sha512-lw1vFGvva0T6DYbI3258wS8Aw9qHDzDR+hxaWwAJUVxPGGa5aDSeFfZ/hP2qtdn17cnlUEhCR28S2rimkJnc5A=="; + version = "9.0.2"; + hash = "sha512-a80YIRtzJ4liuCAI13NKFVzWXhJH9pIvlPHGC/OD4nXsF3sJ+3xrQLSCSKVRyLoPQzMMhYTAvZY+DnzPEpCS0A=="; }) ]; win-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.win-arm64"; - version = "9.0.1"; - hash = "sha512-Bcm+qKreOBnsaTPZA8Tf0OPKnFLdaeDmNLjgNEdQptMH4s7s6RJkSzTK24brSKTsGJWD3ku76415Jt+cHAUl3g=="; + version = "9.0.2"; + hash = "sha512-4/ly70hswwZqiiFn8N/hkjQpRl5l/CiYMKjZr2QEmZqOvgwsO/JztISm72sFEnrhl64zZDUsValNspfV3dz0Fw=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.DotNet.ILCompiler"; - version = "9.0.1"; - hash = "sha512-BJJsB434xCwvhwoBc0yS8bqoO9goLqGeoAHuSOqCC5hDNhheI52cX065vZ7dwH8gtNLXp1MLsOs8/vXD45NaNw=="; + version = "9.0.2"; + hash = "sha512-DW9WHmEenrCXtzxmU6k9M/YeypSgJcyJ2YxLSVpzgc6yYUpLloS3eZu000bdNuqJjmRsMbO+YbeDlXvofsJMaQ=="; }) ]; win-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.win-x64"; - version = "9.0.1"; - hash = "sha512-Z3ZAGYzDjE9Q/D4YRmhfTjEMsrCb88l3PEfOQmnptmmjxWxpNJTJuVldhPy5caKbviw1iSje2dvjwLQ92+0zNg=="; + version = "9.0.2"; + hash = "sha512-6npczhggIdAm8+WV/58LMfczmhac4PruV1SNXRrfEdiu83eONsiXU/RA+79hchTPIjoDx34sAlnQlFv3GJPUEQ=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.DotNet.ILCompiler"; - version = "9.0.1"; - hash = "sha512-WLYp1Nf/K8SSTK/TF+O70LkHkrk+S5KU3WwforX2QAlN9Xa6zscHSbiRulvVNLbdrb5Bx/8xcsps2DzbuJgeoQ=="; + version = "9.0.2"; + hash = "sha512-7G8+mwyW5PTEyG4K8xfVvvTWHvbpVDdV08VlbhRqlNpbJlffBtLWaQtnyCt0lPFsKi8w6NT2JEjZYerKsPqz0A=="; }) ]; win-x86 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.win-x86"; - version = "9.0.1"; - hash = "sha512-qPEOgS79oAsERd8UydEo2MHY1Waiez+XdHnUSrBCHoSL8qTwlurXtDyLkGLKPqQkkWNlKBx3jGXFAewYThzifQ=="; + version = "9.0.2"; + hash = "sha512-xAisQfDV6+gbh0DVYd+74hdDL3n2gu+uwvrHvOcjS0O16xjK8F4v+hQEJ4QAg2/lFKo4W7a4MMH6cg2ICsBFIg=="; }) ]; }; @@ -160,361 +160,361 @@ let linux-arm = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; - version = "9.0.1"; - hash = "sha512-fyD5GczwLT7IhFnWup+0Mh/2RZtO7lHrA/NMB4QFkn77R3vIS+aOcWaoS6Pk/3X7K+71L6z0WP4+4IsN6ayn1g=="; + version = "9.0.2"; + hash = "sha512-B2nakKuJA99k9cm+LMPc4UmEP/jAuQpj+yEMTIVsPS+l6kTDXw9ApjJVwzL0V8BwhNxBbV4248SxFLE+aK7jVA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-arm"; - version = "9.0.1"; - hash = "sha512-99Pkg2wyoEdNxQwn9h8VEtMxmYid1ieI2+dv3uzO4XtHN71H+mR98HMAlXFD8eBaFXm0FCIFCjrDC+OLAiiElg=="; + version = "9.0.2"; + hash = "sha512-jz4BsoVvrlBctPmLVSP3+w5Nw02baXDvpf/hzIC+BfMDjupS/MZOKQc1dy8V5an2QIEPqaUmboRtvaMHOGh6Ug=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; - version = "9.0.1"; - hash = "sha512-/nTipuxWKqvQkgSM5IB/yIWQ0OyRmQUdZM5JTaK0SJ6ZnbLiNlWHo2INZE/8syLhHjc3JXCzY0Zqh0Wd8+dHTA=="; + version = "9.0.2"; + hash = "sha512-vvtkrG6HJep4qsNI7PQzIAOnY5AYc0qJ2KQkTMXlFpsg1pl/ZyalXD5xsIfWBPJ7/LfF5dNR1SkG8H8sCpsMSQ=="; }) (fetchNupkg { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.1"; - hash = "sha512-vjgEIRRMOnS1BU0v4EB+ljQaiiRdwDG8Mt9vLfWti61mzQPuSI9UuZSVEQAhGUOZBazBrgEFi3L2/VcLKym4Gg=="; + version = "9.0.2"; + hash = "sha512-yfP6uokF49n0udnmwxYEy3zje+qIlv+oQ//CqXZug9qxPX4DABfSgTixVXdAH01iCtxWS4MDZJkcv3h6oKCFZA=="; }) ]; linux-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; - version = "9.0.1"; - hash = "sha512-CLzfEJ20LhF2QEx3Oa/p4G3kSE17OEWZ5s5yKP3voW8sw/+MoMk5Y8R57O+jSyn3ZMfauoVPB8TIcOlrl/3+kQ=="; + version = "9.0.2"; + hash = "sha512-wrydWg56hOFX+IMX8iJrsXwv2rbb5klrPdAov8KqNcYSMUL+RPWRMxJk6nCvsLVX2ISbrEJD57J/xDjB9kTB/w=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-arm64"; - version = "9.0.1"; - hash = "sha512-rGQNTsy0aS0TTAko2m1cWUwxsbKJKUMD3u2qO+3K/QlepA+gFBylCfijENB8SaTOCwyPwI6PUiSOBlPdaPbo5A=="; + version = "9.0.2"; + hash = "sha512-hkiJZ53XdVrUW4Tbb+vEpoFgS68UcJZ/8OtbXrXCeuKKo0NlFEPggQH9UAeRfHiT1/MxT3U6RmdOwOLPF+oOAg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; - version = "9.0.1"; - hash = "sha512-SMApYm/3kuQbxNDwyy7BvY9SkusCm6Iwu4wPPX7fKnQ/GyGwNeABJIqq15nAwJSZR1EKAlQe8amrXpgmrkrrig=="; + version = "9.0.2"; + hash = "sha512-OhSG4c0DlZ+UsVlHlOKSj7jaJ4ec7ZseHKbBq4OM0uIqDLenhYH99b4e4ZF+rXT9tUdMWlv4KidQY+0s136Itg=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.1"; - hash = "sha512-UFntJ1OeRdixs4nmhMxLcyXfwjmNew5EkmbquA9UKI4kKViEZEYWOPLPOYTGGhdfUJGRHbkXqIrsGAglFeLyog=="; + version = "9.0.2"; + hash = "sha512-mkwMXr+Pnm3I+Urp+TZEFGqrPtflW0Ja/19YpnYDrjKhB/OxTOotb44sRmZFfGIcxflR8e2QK5KVawSz8ulSWw=="; }) ]; linux-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; - version = "9.0.1"; - hash = "sha512-NMon6hn1ZcNwqv76Y3kPuOGhcR/l/dH1JcT1bN/qrtNIvtEPMmaSpnUXVA9/AazVGwNitsRbVI9uZ0CfWm9sjg=="; + version = "9.0.2"; + hash = "sha512-TH4+wHu2vvICyB8t5kWqJosqkdCT4vXVWZh73m8Ddafa1d7Cqa3EMruOX7dBBYt2MdT5IvLNpyPZEKPc9fF4zQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-x64"; - version = "9.0.1"; - hash = "sha512-IqVXfM1Iwip/V8Xy4/xvGbz/Uvp/We05Mt1V9WLD1pcEVFU7Lm5KRFN3+NckqhnHAgbENEjQWiqcII/0pKWvPw=="; + version = "9.0.2"; + hash = "sha512-JPEfNNTf972F9GRgXT3YwkL80I9VySIGliVHp6QU72mgBn/YQtzICLnHdKZLPfjdjLB8jCRHzyYofAjAImdXRQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; - version = "9.0.1"; - hash = "sha512-4lprzdBSYv2uvTFcYuVddGmzkqDsgCIuzOusJ2HFowxHJt3mdNS+9fbFKTMUGYxTeysQpNdyd5pTEYnswnaTug=="; + version = "9.0.2"; + hash = "sha512-wiVQYMRoujDTzCo7n7LtkQ4LTPmyhDM9/sm3nfKCEL5sAEQFsNTVdPGF5ltDqPHILOjrkOI6BvGbxq7OMbnh2Q=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.1"; - hash = "sha512-el5p+CAqxwjmvRajBNgWiQKwLDfqZq6zT4CPaoD/9zOhJhsXrR066vXzCE0FrVyP8QYj1iJlet3+oBNKoaW4lw=="; + version = "9.0.2"; + hash = "sha512-6jxM428hmJM3RpuvwsRhyjJrsb42+P/fFQBJVb6l7S4zXZHX2yLnN9np2Nbii31w+26wiujl4J8Z3IihJ0q1vQ=="; }) ]; linux-musl-arm = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; - version = "9.0.1"; - hash = "sha512-bB55+r+vjLwYcO0mAj/NgvfVvn5k338nJ41qIJUcMrnBLymZMhPKNmMDlxSrraNVqflhmzwBGX3mlk99YUssXQ=="; + version = "9.0.2"; + hash = "sha512-9OdCIs8uygtDrvr3SrY0s6bl7FnlvEe5sxGjuIqoel2XanAAo2O7YSJrQx8aDVyXkyQnizzlEb16oCA4EWf1vg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; - version = "9.0.1"; - hash = "sha512-dXGlvBXlEFhXtxslCQI64Ax8q6fWf/s+LsfrhNzbgmH1EJdhrtij1eLDU8+ByRiCQs4nNj9r08+2FKgDNRSEBg=="; + version = "9.0.2"; + hash = "sha512-tCVrizZ+4iH4SDobtoVzqBdOADYfe68bdulktuwUC5sWPW1LHdmGLMSKaJiqupXphuWDOAbHUpGtCzBV9/L0TA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; - version = "9.0.1"; - hash = "sha512-G25u4rIqRuf6PWUOq/QR4yBqoKT8yff/W8hQmJcVSCXCIudrmiqwdr8XGt9RVO/wpKNyq2TRsr/uz37P8lCfQg=="; + version = "9.0.2"; + hash = "sha512-aKgwBz7d3SEpLl43k7tkds2bDJcjvpQzjUJTaPwR3haX3ueeTO3e3RHKEfSuINDrsj2xBQopQmVtuAAfogtg7g=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.1"; - hash = "sha512-Q0DvC9HdZDWHw5j3OUPkC/0vD138RtCyrb1v59/09s+Nx9UziTyD9g1VCMV6ulRlJwVbNEM5cfOin9jnVa+aFw=="; + version = "9.0.2"; + hash = "sha512-bYxwKSniEPSnPLXdhsNrXM3xnT6BWZDBJAW4EPEsx7+U8ncwQyhck7M/Ta//J/ay8pJNVu78oS31kN8TKFusYA=="; }) ]; linux-musl-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; - version = "9.0.1"; - hash = "sha512-wif1X7iiUq2V1kwXmfZQgtHtG2GvST3W7U9bjGRApW1a4z7DX4SE0JMTqfaHdkBVroUh1M1o9tE6zX1gGkxOHQ=="; + version = "9.0.2"; + hash = "sha512-VmF7l4TWo5c/iKCK8ZqyVW8LrsgPRO17g7cGT7+aXFul7iZ8DvHZ92MKvB8GOU8ituiw1DzfshPCp68eX0gwIA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; - version = "9.0.1"; - hash = "sha512-/6Q+UtzMeunuT01kjF3WXAG0U0wAZgEZqcEteomAGKBAYncTKXAnsslQk0GLlLxG7Cks0ZetOxARURNjF84ZpQ=="; + version = "9.0.2"; + hash = "sha512-p6QlmeC3ZZNFSAN/0KkMHZeYNVY6G0+d65e/wtyGwKjTQ9tnsJ5tmfLxLgSuh5sASGNWTtfkji9WzcrpGrKKNA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; - version = "9.0.1"; - hash = "sha512-xUDRlzgeLcyG52I652qzQc9QKlW3/LwzINgfMs223EYO+sIcI/vNJxdoC05s2NVby47Y3s/bXoNU1rMdfHfEIA=="; + version = "9.0.2"; + hash = "sha512-q+SsGrAvPxIWpOXxiqeE+f/LSHd7p//ohIfmWd2K1+tk+RO6mVVnAo8LVzoFun2ooLca+nrzhKJgOYziB+gYuw=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.1"; - hash = "sha512-4+AFlX4G0far0LT8WzuVjjsYEpWnyHn9G9yK/aulaB7coCeLG/RA552MnEITGwr6RiUwvgjPFHw4RmMvvLXlbg=="; + version = "9.0.2"; + hash = "sha512-3c7noA+xvmQ0jHXPY5sKtsiVHeyTaXbz22Z90kjiruH9eyX5bmx1w2HN3mBjVxWTPA4QulFhv+oHMlfBlK3cEA=="; }) ]; linux-musl-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; - version = "9.0.1"; - hash = "sha512-9co3xS3uaCXoMQuuyMSP77T4ACIjz5zjrflm/UMiVFjzvrmb6sSByHvZYO8DOPW14pnA4aRlCr4qhcoILliUmA=="; + version = "9.0.2"; + hash = "sha512-Sa8owRalIJoJhmGGVfaqfiQhL7QPn4KOXcitPJYRCIDg8TnZ1VE43uyDgr/UCF6IbR++9m5kPzQIvns8F1Tkfw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; - version = "9.0.1"; - hash = "sha512-aOewuGT2fyUyiRLgfCP8H5p35ixkIDbegEOxnAQc8NcCvh17SG7xZCk/I+8vELcXw6QTVoFNc1Z0f7OlSAImmQ=="; + version = "9.0.2"; + hash = "sha512-wZdjJQJAvvqkUNGNiSi9zwbXEp1wNKCFGc20acagFEq9xAvYBNTyc4L/5BaPr39Rsfd3wAZQGdYx3Zyt2R3P5g=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; - version = "9.0.1"; - hash = "sha512-Y3K03HiKY4EAlTaBTCWhQkBMtupuxUabOcFsBWhwzYFVNwJDgmWeS8EBIMGK5DgxKvn2GtR6hLShucSNfgHE9A=="; + version = "9.0.2"; + hash = "sha512-3xhjfDSMN41fJi3wj5IEqfGBRw5p6L9zZxuE51gCHZwCdbl1j78Jhuh0IZZGhfy6TG6AItEi6YpIB5nLq5dIJQ=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.1"; - hash = "sha512-vUSFlMJBvIilcgSX0/lO/6oslEdVMeNpKXK8XRSQfaa3jfdAiosvN540E3Y87i700yT7T1r5qbEbW0v5P0dqUA=="; + version = "9.0.2"; + hash = "sha512-SZ4waJ4GjoeTc+CY9QywCCLtl9x6Kon5Ylrh3dxDRUoiCMpzVlCLZM0DkaIUrAdcXX7VomWtwW/FeCCpOTNW/A=="; }) ]; osx-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; - version = "9.0.1"; - hash = "sha512-rO0C4vvuGQI1fokFIG4W6u4uscFrtZiH+wBIcwB3oVp/8z5CHDUQ0mqfaxjKtQ0pWS1eBpt68ZvfRKK6giIiTw=="; + version = "9.0.2"; + hash = "sha512-0F/LPTF2uXNC6U0dQcumlQ9gBenLZF3nFOmTQnZAmXrm+3ej/b3t7JMNCwcbmclMUvhks0d95QJRDQkZ7qRbmg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.osx-arm64"; - version = "9.0.1"; - hash = "sha512-VbCfkSCgIZC/CSqe6SIbMbQ8OC/tFZbF/J7GTjwSenxEq3dZu7njH+CdyUcRoN+voxNSLXDc0PTH2icTX8sa1g=="; + version = "9.0.2"; + hash = "sha512-9OPvQJzgQOMiG1+drj/50D4QhJxNV9lQFVy9XTdoj2FUO6fDyCvAQm10acq5KKeLUnEZO4hFcYakZjmb8Z6XQg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; - version = "9.0.1"; - hash = "sha512-UWsVcwp7L/dKGN/E1YbiLhAzUare1IQc1NiOeKlB9XetS81MkSllasLViFG7TF1G4FNiy+bsh0G4JKE3PNXKrw=="; + version = "9.0.2"; + hash = "sha512-tbL6fllK0UxBFjmsdi8Cf+iAHTrCpRxSmPxrgfXNbdyUQrBHTT7yUlKGIlzW2CQKlTZGPSURsAWCSvAr+519fg=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.1"; - hash = "sha512-yzF4l/m0FV+MDtQjlx0Y8MooG5AOINYuIWTd7hLuvhQlD5xcFQCVrf2+8d3JEwFXryxn9f4coMMxG55/kNoq4g=="; + version = "9.0.2"; + hash = "sha512-oVbhX4JUS7hqqVNgCwX+hWzm8CGLK5zMo7J2PXRwzYR/xVWkWuVuf73LFs2Gz8YtJZlq8PzPT1S9iWzceUp6WA=="; }) ]; osx-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; - version = "9.0.1"; - hash = "sha512-sIyKf2ll8Fva8UMzQhHowskA+xp6f9pA/X+wnWLWrdErrI//95niLTo3MgqCZQq25n9Jo811H9gG430tdOEvrg=="; + version = "9.0.2"; + hash = "sha512-9z+jtQjmhrbMva7eQjNVDJdEDhWHF2T4ubeqafnUTEueewGDrX/TLLVpVyU5Def/ChWZDgrEnuMX4g+4jlGFiw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.osx-x64"; - version = "9.0.1"; - hash = "sha512-m3uywgan3uYgy2sQ/tZt3v5XsnFhoqGdb3IAu3vZn/AmTp6Mi24obM2We6N/HlJJ+U+M8+fb9fdxwRRg5De9cA=="; + version = "9.0.2"; + hash = "sha512-F46Ir5AWTR9894CZYAAJH1fewZs1tRJ1VRE5PS7sdDD1UmeDASWQcHAt2uBVA8JSSTOQqiojr1xokwSSR/YcHg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; - version = "9.0.1"; - hash = "sha512-QtjQWyB4NJLf/3WMXCl2D6NDXd7lBDt8jGkN+4lswz/jnBpIAyHkYVY01evcUOGK1/13QtCIQSkJjQaybXlI0w=="; + version = "9.0.2"; + hash = "sha512-Br9R3iEAfP0CGhfkxdxxZwZqF4Wbivu/TQkC2TaQTb9LUX6P+K9Oytjx1ilVgXoyclWPv9aR0dG0Uk+ppq+hvA=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.1"; - hash = "sha512-d1MDpDyn3Yc5ddPe2I7cgvrfUALxPZppiF6VhavkzybpEVq5RPPNdM5S8R/Rhq612H/Hl3C1dKmeraYjCQ0uNw=="; + version = "9.0.2"; + hash = "sha512-jpr8CwD5Cwl2vUTgl4xj9FcEELZjho2HACniNAXIHJVXTZewFz0S2gqn2is3C2xwc/MBo4F2SW202gVr4V0SjQ=="; }) ]; win-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; - version = "9.0.1"; - hash = "sha512-N2LRmh6Iz4Gc9XmSiGOgTYZhHltLY8TUjFGfcykwAKu4Dx5dXuwru2zX+4I4AstYqGWACz6rlJDFIqrzEGIvbQ=="; + version = "9.0.2"; + hash = "sha512-EQ9eXimPClVlGs6fyuoJfxMFzZOl4DUZcGxANknqDpGddoF2VZke8LfLAtgvKTGMlOm0BxX6QwBQxe4f0Po61g=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.win-arm64"; - version = "9.0.1"; - hash = "sha512-WjdTpBYhgsDflMrvj8laO7tH/Y+UHzDm7FMlt75Oa8k+AunOqjpo8hLgs3ztQcPw+rvqRNe4HTHoswVSUJg7TA=="; + version = "9.0.2"; + hash = "sha512-Fg3H4EbOJDus6sf3/Syq5RVX/C45npjCwrlH6cVllKN3O9N9Esz6gvLkDJ/k3sXqg1a9qExCHuR6K2Ni/wqDtQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; - version = "9.0.1"; - hash = "sha512-j4tValfWVEG+UhmS3NGs6nb0Gjwa1tJZjk4kFxaC5iCSXQSd8Qs+0DdH6bOiF5O4GQt9br2WJH8+UlE8S4YbCQ=="; + version = "9.0.2"; + hash = "sha512-tFQXOeDQ0/h5ArqFHYBVNo93xLPJGL1aA/PC5Gg7zoL6dTRhI2lTltED70Km9cKMC6X00Hq1vee6FvOuLs1hHA=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.1"; - hash = "sha512-WkYnRk7SmmU/iZRz+HEAtCHQWDz718HvEJ7zsrA1bNgA5TI4APWPe0xHnwb9uUmmE9BUyUvEtK+gRxYuA8kLww=="; + version = "9.0.2"; + hash = "sha512-EfCw4g9OheETWmZvwEpCYXG2Xv7ZO9fGHtH+Typ7bcvw/TztkqB9ybMbMvFWujdec3j8lL50mAJb2oAgVcQt0Q=="; }) ]; win-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; - version = "9.0.1"; - hash = "sha512-yrQ8Mq4CdJ6MO5Pc/8PrlA5yU8XozxuXg4MCRbOIYcOWgJL/S6zW6t0rmspyAlJ3j2PS89NF5bwZyLogM6IZdQ=="; + version = "9.0.2"; + hash = "sha512-rm+2rIw0XKUPfyccDpp7UMjM6IZfHVgK7OePJFU8a1NMeUZvH00haqLpERtRKJ4xghPU2ZfliL0dICbL2AGjhQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.win-x64"; - version = "9.0.1"; - hash = "sha512-m4gtvFK+OpEDeL587Zb6KYddFrWrtb1z9yoG4ts1hU1mYytiZImZbcej8OMm13/eG09JTWFxfgxecJMcwAuhhw=="; + version = "9.0.2"; + hash = "sha512-GyRAQXiq2mcespMH8nRnxWKMKeUovUSmRzufrqxB8PyVNehhbcpEDJOon23BpNrO1+YggN6G2eQ2KDNUQCmoXw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.win-x64"; - version = "9.0.1"; - hash = "sha512-DZKhEHctFy4d9v2XCIm2tKYfirXNvcMTNf2KBpV1j7mnDAop+S+d9OJ8962JJKqkZFYeDHp5R32RqgI4PDfqsQ=="; + version = "9.0.2"; + hash = "sha512-y2t/JAwRgRe6PtfSX+gU2oap5/ekL6Fm93LJBNt2awvTpgRtTnsSks0LS+2VebsUAHWnVwCg6NcwuFOPcOu1WQ=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.1"; - hash = "sha512-NGny5Tp4IrpCIUUmt9kosbuFOxLuB/glkrZHvULR/2v1IeUstsW0lP56rds+PBtkN9DY603J6LbikmwUfC/Jyw=="; + version = "9.0.2"; + hash = "sha512-j8Q2Qi4Tzv7EO5FvBqVVLtHnV3+40fX8Z9dHkB+jkf+O6ASmDnev1XS4GSOb1peHpJeCauhNxzfrNlBtD2MmyQ=="; }) ]; win-x86 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; - version = "9.0.1"; - hash = "sha512-JmmvPGzjAhPzt/OJfMqEOSPMCbFKjLSjI3JW+spalcj9R2kze2G3xR23TeTIppSY6M6UqHfYtEDLSRQ2mLjBdg=="; + version = "9.0.2"; + hash = "sha512-Lyycaaagwj36GD1DNHR2HyiojLtpwAqYJ38k2IPCCyepzkULrvjt2QQ3KpLNikSLjZJuVbpUskNrh4vkoLI5Zw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.win-x86"; - version = "9.0.1"; - hash = "sha512-K4s84fKknMNlenkFs0sSDoVV+m+tRxoZzXJ4QsqqoXYBF940T1Ryxf1Dv88vHmg4QUIEF6t4LeItQHQXQa5xZg=="; + version = "9.0.2"; + hash = "sha512-H54xNMNGYpV2+BUcRcvvVwbXQ7S/Do5iagFGxzFkCPOkTC2MyyvJYSCY4vlRf6O9r76H1xZImABmI7oQSjaraA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.win-x86"; - version = "9.0.1"; - hash = "sha512-/RZKZuUCUw/V0BTxfFU867msMi28ATMN15TS2AKOboZMFagDXCYaMYGX+IUNDzGxDF0m2B+uE8I+Eh5QHpdHYQ=="; + version = "9.0.2"; + hash = "sha512-nGU66NCplmHBPWtSoWaeZiK9Z9VJLWC9/PG4fnywm6ZCnbIMHR8nDrMmFvSXO8RGaE8WMqA1BoK9ogVliXYpAQ=="; }) (fetchNupkg { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.1"; - hash = "sha512-/MFc3XgEWV3Wt14/f/qSEitWlbZSzbSJ3uki3ln35HZAlAae4roj1MuZWfW2DL+Dtx7957N34Jndx1nXAAeHvw=="; + version = "9.0.2"; + hash = "sha512-KAttjZ45azXcqQZcUquI3CU1YM6xzpUz55lJsD2UnG4eyhEm/1J9zTYregb3K1mbVl6mcJuksUGPspxK+xWsRQ=="; }) ]; }; in rec { - release_9_0 = "9.0.1"; + release_9_0 = "9.0.2"; aspnetcore_9_0 = buildAspNetCore { - version = "9.0.1"; + version = "9.0.2"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/463fb01d-fcad-46bf-8e5f-0e568bb9ccf4/a3ac380fdc1e29ec25e5fa0a292a61df/aspnetcore-runtime-9.0.1-linux-arm.tar.gz"; - hash = "sha512-+nXY1a6ZreDRq5ABiDn+P13cTnt0YXFcrysL96iMjobh1PEKtpcD0jGLKJwHAIRuIVV0bXuxrOPS0S4XWrGL4Q=="; + url = "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-linux-arm.tar.gz"; + hash = "sha512-VXZ1HqlBREmt0QDLYMkX9yMFIJ3IMezTaYuO9qaeKoAoUBSLM8r1oF0Em+ZrGcdARTHqbs1kPMH9auYReeEkmw=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/2a193300-e0b1-4e9e-acc4-a4a695c7b94a/f197be75380aaa333c949bb8a1fe0510/aspnetcore-runtime-9.0.1-linux-arm64.tar.gz"; - hash = "sha512-433BRF5TwAvZUKUx+rgzVN77vgbG9zr0u+8gv87cBIOpj0eDaae8fX5S41srM61zeB4lW0aQDYMeJ3DNRF1pxQ=="; + url = "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-linux-arm64.tar.gz"; + hash = "sha512-qpXtOW5QEst4Fdsl8HsZYmG5Hkyi57oHNSiW4as1GpYjL9tpL73h0d3RyRaYc1PS0zgunha9epfOS0EcZCbg9g=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/78308995-ac02-4bed-b5c3-eefb06ff907c/795e0c20df95d8c432fda2a189235b67/aspnetcore-runtime-9.0.1-linux-x64.tar.gz"; - hash = "sha512-5fwwk67VdW3q4+YfmLn0uwyEcxnbMMvRZowlEeBlKcL2peGRfsd2/is2ofe7fgCfySX+5X+HaWqNUCpsj13GEw=="; + url = "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-linux-x64.tar.gz"; + hash = "sha512-SKOd1L7j5xknOk5EBLVW4uWef2Wd70n4l0WuV1/Jdvfr8SHZJjw9AJ22CBl2+CYcqC3jSu9psHdqKP0EhbttOw=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/2cfd68f3-5259-451d-83b1-6b5e80932813/bae5e023e887e42639426dd0824ac6bf/aspnetcore-runtime-9.0.1-linux-musl-arm.tar.gz"; - hash = "sha512-PqVcxQmNwIkJo4Uhn60eOGNfbu9s1m6lJrkt1X92XcNIOAQi5eC5yK3ihuGOcTyqS3/y0Gojw/7TG4tckdLcaw=="; + url = "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-linux-musl-arm.tar.gz"; + hash = "sha512-+WpmRC99tVjkBJHx3rpCpYtpcoaoxZLyC5sXAGBAVEw83jhR2+nV3Qvk/2hmZXWhCo4SJdyXBpCBpmcmqfD8iw=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/f3b0e483-26b2-4115-8a8d-983c9b0ca58a/4d0058d82438c8de99347f40d3dee091/aspnetcore-runtime-9.0.1-linux-musl-arm64.tar.gz"; - hash = "sha512-6afiV/awnkjFIrclvoq0mOVxidZof4QKN6uf5BkumFvd2ZpmNBjF1dlu58fCufcOCPeGqkobIHVIWGvT/MNxDg=="; + url = "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-linux-musl-arm64.tar.gz"; + hash = "sha512-XnSHHZEzxSOJVZ6zTugu17j/LumQhX74Dr8rJ8QF4N7hrpUcmoc1UWiQHZis++N71tUW1qC09fSVxYMmJDwGMA=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/d55550d5-16dc-4b17-90c7-e8bf65657e09/b3d4c31dd4c933aaa50e920f5465b111/aspnetcore-runtime-9.0.1-linux-musl-x64.tar.gz"; - hash = "sha512-0/YJGElZhJ91JP37VcXPmoOR0KdzSDqmZZ2bqhUmVoNfJsL+m6Mi5xio63eB+5lutOvGlTvq9v37VijvMb/IUw=="; + url = "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-linux-musl-x64.tar.gz"; + hash = "sha512-/wcOv6ux+ndt9pzm+x5pkAaf9uS3ld0OoO4CjczqonhQD2lcm6a2yDkxDuDZqso5jgeevZCB7DbB4tWmPFvBCQ=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/26f85624-0eaf-4edc-a83f-428472ab31df/ba32371bac29f1738b9b0eb959dab0a3/aspnetcore-runtime-9.0.1-osx-arm64.tar.gz"; - hash = "sha512-uKs4mbELhxFZsBiJaUSEzD2bOueKFZY41oZJoiw/Myi5LENcW830moa8SIu70PynFD9vZk9llMVSQjw36tmZmA=="; + url = "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-osx-arm64.tar.gz"; + hash = "sha512-ZvzXoFifsWbYXK69bwjBYEm90MrP0Bqz8ZnEQrmNVPhhDCJaKppvUrxLzhK7qKMAHiNokkCZbGl+K8OgCJVyJg=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/6655b880-82dc-43d1-b5b2-f76d6a3c431c/4752d9d4811a2148de7eef5dcfd08441/aspnetcore-runtime-9.0.1-osx-x64.tar.gz"; - hash = "sha512-SusJQ4d9v5NfZVTGN9KqGPjvIulpLmzT1xbd4t1UEeSIF2fL6cVUvY7EPCCahqJhlMJhjGDRFboGOOkugEI8wA=="; + url = "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-osx-x64.tar.gz"; + hash = "sha512-Tjt2vEI+kxK1VEn/FWv2UET1ZkRcQQb8RzFFF2UdTVEMBBix+PF4U7HLwUdpEAuEb0FPgNapzuX5X1pvuFR9mg=="; }; }; }; runtime_9_0 = buildNetRuntime { - version = "9.0.1"; + version = "9.0.2"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/f8762afd-ce2a-461c-9280-0f6c377b92a7/9ca2330917e1ed7dadd5f1838b6ba44d/dotnet-runtime-9.0.1-linux-arm.tar.gz"; - hash = "sha512-sczLhtqZEvy4FkE3GOJk2Jnp78QqGf2KbMuCZbZc5P6Mh40LjVwGM7Hg5LL/PuUzE6ZuP5LDsVP73+METxvMlg=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-linux-arm.tar.gz"; + hash = "sha512-vjG3kMilNHwaf7dey7qxbGdf9eY1JWFjEiC5TUF/Ge7QciDVw5cpBRI3BN1r1n0AE4/0JISBXg3vfYrZFqMNlA=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/8a8a85c8-3364-42e4-a9fa-bc4d33e4a263/cb6b67c1ef5a8fd779dc43096c1f2a14/dotnet-runtime-9.0.1-linux-arm64.tar.gz"; - hash = "sha512-ODmbYTn3LvHYNuQYRVSUqAQov0HzqvI1F0n/FEMRdmSHUz1aPJvTWcGJuTc/JDd66IaCf0UnLEAZ4itZR3O4ew=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-linux-arm64.tar.gz"; + hash = "sha512-RgEz3cJYKiCb2AZzch57mt0rmyln7xUDp9wpvid3hwhwmQ7nVJNR6CB8Pj6E2r7KbVvbvep15ePnSesWvRPn7w=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/4ec0d4e4-9774-4d69-b9a2-db99ccb24a1a/b108f97029f83c8a27d041e90583ba5c/dotnet-runtime-9.0.1-linux-x64.tar.gz"; - hash = "sha512-1KMZRKWrBjA33KUUHbyEZtDIlLjSVgJWeCvb5ajoZYXoxMeJxA++UdVrOFPhWtugmFvcaukchadjVlMW4cPPyw=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-linux-x64.tar.gz"; + hash = "sha512-3EryTV0pg5L9U0kaVsbU49HoXj4pTLSoSMesjw3OKH8R3LJ08Y+V99txlWgThuXGsNmVAICMGz5oucYJejSE1w=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/391e3ee0-16aa-4294-8641-3438307e624d/d244e58fbeff1482b0f8d3aacc6cc621/dotnet-runtime-9.0.1-linux-musl-arm.tar.gz"; - hash = "sha512-rIp746sIlVOYE8H2fDOqk+5y4qx/LYjuPKIfFEeeEaQGTN6afhWilEIiuNfChY3dOd6fbC0ni0Ep9eO6i5w44w=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-linux-musl-arm.tar.gz"; + hash = "sha512-OOA9jBL6RSDjEc8tFfssLw4BnHFlsT/L5Y/EaRR0Ps6o4KxNkUOFsUMM+14N89timUJM/czqb/5GmmgeLZ2Ttw=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/966184c6-ae9d-42d9-a5d6-1f14c46ffafd/fc65efc3447d3f1dced1c156742be6fa/dotnet-runtime-9.0.1-linux-musl-arm64.tar.gz"; - hash = "sha512-z2hldU48KLY79Oc9uVogeQKLkTL/xr7kqnrwPuFcdWChPQcmCWWDO0OYXYteL1Cndv8Xv1NDYFscG8I53a88XA=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-linux-musl-arm64.tar.gz"; + hash = "sha512-C7DcekOIxbldT+yf58oSc/mvpQICHHPrlG7Sko1tbQg2QUQA9mfv8w2pe4OwT2bTAywjRLslhwB7QAHXW2lqFg=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/dec9d9de-effe-48df-83b1-0c83f54e4cbc/cfe914fe2e2e9edb6138ce9328051f10/dotnet-runtime-9.0.1-linux-musl-x64.tar.gz"; - hash = "sha512-ObxzvnEq/KtBQlwuQqpQmBM8+aIID5HUxl8nTCxrxvgSeToX+O1rOlvKveTMXuW+g9yb750/OxDXnQ0/ALS1Xw=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-linux-musl-x64.tar.gz"; + hash = "sha512-3xFu+bf2txe3x/BX6CbJ4fHtDXQ/prJukin8NuUAq4NNGa4atV68KLHJuMtKf0HGLt0Iwt0s3LbpEt7+ooEP+w=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/5c1d13ac-90d1-4f76-bcb1-d404b1ef6748/137435417c82ec2a5a519555b93b2344/dotnet-runtime-9.0.1-osx-arm64.tar.gz"; - hash = "sha512-9l9lDuPCicoJL6FRo9nPNP6i9UJvCYgsGU/nFlXsrypoGy1Qi5x4SdbJCMpnliXcSBcdAFgM3/f5gfBRioQ8ZQ=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-osx-arm64.tar.gz"; + hash = "sha512-WtiQMRYHpfsU+aZBA6zXY4V4Hkt1CFqOdV2kdP/B1Qcwu4Bk6Lr7EXr9udBM6svVhFJTnx4OY74LlzHhn9ZRVg=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/36d3662e-b23c-46cb-994c-3a46bf2b9759/2c090a2be99f96cb33a56183e747e27b/dotnet-runtime-9.0.1-osx-x64.tar.gz"; - hash = "sha512-uZfCwPA1DvKbpuhlrAnr7LHTYy4qdWG1q+I70PtqvIwMpziNbPF8WcqH3YFoYE3taDmnsWzqGvvjbKVyNFFeGw=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-osx-x64.tar.gz"; + hash = "sha512-q+B1LzQ3zg4kFdH3CHm2sGLf2lkSjvW5bblGY5tQalTKyBhFtnddGQFNUicavrjfqs/reDRSuY9mJlxe+xs7VQ=="; }; }; }; sdk_9_0_1xx = buildNetSdk { - version = "9.0.102"; + version = "9.0.103"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/8f7ff743-f739-4b7c-835b-9405b3f7604f/b903530c774c08f30d3de3029f2e0bf9/dotnet-sdk-9.0.102-linux-arm.tar.gz"; - hash = "sha512-LExp1Gw+V+2ZBRip2CljZl2DXGalfaVLnSHiLCog6AGAINyxkO71Tf5owAH8zjhTYesr0piWMRoWg1mf+eandw=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-linux-arm.tar.gz"; + hash = "sha512-m53bvYoJDuePQFdqyfPaylpoRe45RIsQw7tRsrT55+CpebagDDHaCPPmhgH6d6aHpVbQecGdUyruTX8lvJ8TyQ=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/555b12ca-d25f-4d4a-8c62-03b57998981e/b8f8f88c7809ea6c0e1d127deb18d8c6/dotnet-sdk-9.0.102-linux-arm64.tar.gz"; - hash = "sha512-y3iTHcu5SKUEiR8RLxEhXyeS0WnwoLU+qoHAP8S6eNMakcYKQYCa5uLdyuhkAIWhWeSSA1zt/aaNJlu+tL+LLg=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-linux-arm64.tar.gz"; + hash = "sha512-MrVJTndokIbo1bk2Q05Oh6jYgDn3fDOB2WWSdX59cW9Y3hAD/kHH7zogiTZqMgUYf1bXM9X50vFQXYOxwW06Cw=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/0e717d01-aad7-475a-8b67-50c59cf043b1/6eaa1c636e15ec8e1b97b3438360c770/dotnet-sdk-9.0.102-linux-x64.tar.gz"; - hash = "sha512-8JNQfvY1w/jlcr97bqfhRLhcz2t8b5FNPxgveCIApgiHKGY99cmr4GOMm9Jz/eN2nsgkplFvX85zTEpGZM4wmQ=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-linux-x64.tar.gz"; + hash = "sha512-r9pIc2XPLQgvHcRi/wFgfq4QZX3oKBxTxOh3XfcvXtWzG0J+qK/QkXiG5zsQSiXbTGB+BRD4vjp2HelEXXl7dQ=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/db81a835-d9dc-4094-9c5c-cda20e684556/2d80354042afe6c8a2ef2f54c48a86cf/dotnet-sdk-9.0.102-linux-musl-arm.tar.gz"; - hash = "sha512-42Pj1O3Kk4MNGLzr1B4BvyhWsJWucOGiSwUzq7ClB+TB8VQv8wRsKFaJMY2sfitccaFmvLWTOoq2jYAL8+7fAw=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-linux-musl-arm.tar.gz"; + hash = "sha512-ZjwzUe2w04sl+oVL4JKiz3tv79Vo9NdFj/QHQLljdgU5C0ikrNuzVkDUDcnv5mam7ilH8Q/pyaFrl0P9dbzw0A=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/a35ae2c2-e906-4bb1-b12a-a9d435231626/d0da093a240d41c06da2f49dc3011a13/dotnet-sdk-9.0.102-linux-musl-arm64.tar.gz"; - hash = "sha512-XamORsKA4hw3NKDJCB5923itYndaUaEptCpvAhMw0mOoddovRKeq/oFW58muD5uyG1AgV2krNg8q/giC8OYRMg=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-linux-musl-arm64.tar.gz"; + hash = "sha512-vMUBmDH5Y22BqHNp4c9W5w3FLCmT62RGj2IClimmEDM7I8IGLj+TZHvry9994qrvp+nJbW6W7BYeOnRXZq4Qnw=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/5e11d2af-f335-44f6-90a0-a99cdf806855/97268da6caffc1e8182525c7a2f01b74/dotnet-sdk-9.0.102-linux-musl-x64.tar.gz"; - hash = "sha512-YOCRhU0X2ppgEVafCkgZ6scs5v4G0BdX/uuDrVbBdkX6Q4JXYx7Lv27pSsOpc+/5rU0+Et6t2j60HBtpyo1TCA=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-linux-musl-x64.tar.gz"; + hash = "sha512-rE4hFvmZmfJJwpDpqHxij2I29Zxl63Zyu7SEzBFZv3OclYXa2AtQ/3JzNeS/Ym4XWRMVaxOig/F12uf2qWWlQg=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/1b4a1593-695b-4496-aa2a-55fa572bd71a/3b44622f52d4695513dff04f0bbcc404/dotnet-sdk-9.0.102-osx-arm64.tar.gz"; - hash = "sha512-E2MsnljY+kbxkSVtGA7RkIngiyQogYJd02gvCC1lvMbZdWYp/v2rYJwRJltgQ9wRY1Jj/odhM5ty02YIrLQ1dA=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-osx-arm64.tar.gz"; + hash = "sha512-UvKdGPd4m8U9FbDh6WuDuIEerss+tgNd+5Ti0vK7GgEdCLRpEoBaKGDFdJE60zj18ICK1mMQ3YfPeBY8OwJZJQ=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/373e3b64-d88b-4d83-adf3-eb48a6d6e76c/0d24e9cdbb0e75999fc0c17dafb1ea17/dotnet-sdk-9.0.102-osx-x64.tar.gz"; - hash = "sha512-Aj6RC2SBmZGDGqDlMEQ/qYX6Zzkg/ykVQa17ekpTLiD1rIn5qRsulWz2mzgh7xNpgoz0bFROGDqFQlrktyXhhw=="; + url = "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-osx-x64.tar.gz"; + hash = "sha512-es76FxqsumY1idXJ6tCAqAjuYGlreJzomv+I4GJvIIXTKhmBVKfslKjNXNJy9wvVfhmYGbPsiZl+pS48D2uW8A=="; }; }; inherit commonPackages hostPackages targetPackages; diff --git a/pkgs/development/compilers/dotnet/9/deps.json b/pkgs/development/compilers/dotnet/9/deps.json index 972f098ae4a0..c2a6fd13893c 100644 --- a/pkgs/development/compilers/dotnet/9/deps.json +++ b/pkgs/development/compilers/dotnet/9/deps.json @@ -1,50 +1,50 @@ [ { "pname": "runtime.linux-arm64.Microsoft.NETCore.ILAsm", - "sha256": "d30418fb378bd58b9ebc313a6a92bbadf47ec40994ffe41b4d4ac65e303f16fc", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.linux-arm64.microsoft.netcore.ilasm/9.0.1-servicing.24610.10/runtime.linux-arm64.microsoft.netcore.ilasm.9.0.1-servicing.24610.10.nupkg", - "version": "9.0.1-servicing.24610.10" + "sha256": "44307a03adf26e251ca3cee4a9d91649334fadc271faa14749ad172ab98a6c0f", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.linux-arm64.microsoft.netcore.ilasm/9.0.2-servicing.25066.10/runtime.linux-arm64.microsoft.netcore.ilasm.9.0.2-servicing.25066.10.nupkg", + "version": "9.0.2-servicing.25066.10" }, { "pname": "runtime.linux-arm64.Microsoft.NETCore.ILDAsm", - "sha256": "a0a4c94e5b5de561fa0b8af865c01deed50801df89fdeb01c164937e09a767c7", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.linux-arm64.microsoft.netcore.ildasm/9.0.1-servicing.24610.10/runtime.linux-arm64.microsoft.netcore.ildasm.9.0.1-servicing.24610.10.nupkg", - "version": "9.0.1-servicing.24610.10" + "sha256": "30280043b31c5f01ba1a1bfdcd57c6991371f8dea1029a91746f1ea369d14f79", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.linux-arm64.microsoft.netcore.ildasm/9.0.2-servicing.25066.10/runtime.linux-arm64.microsoft.netcore.ildasm.9.0.2-servicing.25066.10.nupkg", + "version": "9.0.2-servicing.25066.10" }, { - "hash": "sha256-locqMqWx8GnnuCRgzOorkB+60h1EC7j/XD3W06DNyPo=", + "hash": "sha256-pKSg1M/ycoS73kGJl4Byo6BoSRSgsOmiPzz4ABGvSbo=", "pname": "runtime.linux-x64.Microsoft.NETCore.ILAsm", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.linux-x64.microsoft.netcore.ilasm/9.0.1-servicing.24610.10/runtime.linux-x64.microsoft.netcore.ilasm.9.0.1-servicing.24610.10.nupkg", - "version": "9.0.1-servicing.24610.10" + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.linux-x64.microsoft.netcore.ilasm/9.0.2-servicing.25066.10/runtime.linux-x64.microsoft.netcore.ilasm.9.0.2-servicing.25066.10.nupkg", + "version": "9.0.2-servicing.25066.10" }, { - "hash": "sha256-02kUppq6iFP6CTbe+WF27pxjWHgYSe1IKhWib2QWQws=", + "hash": "sha256-/Ka/5eqNRceDFhs1+7Rv55Rka0FA1Y7sldVtRTNF5g0=", "pname": "runtime.linux-x64.Microsoft.NETCore.ILDAsm", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.linux-x64.microsoft.netcore.ildasm/9.0.1-servicing.24610.10/runtime.linux-x64.microsoft.netcore.ildasm.9.0.1-servicing.24610.10.nupkg", - "version": "9.0.1-servicing.24610.10" + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.linux-x64.microsoft.netcore.ildasm/9.0.2-servicing.25066.10/runtime.linux-x64.microsoft.netcore.ildasm.9.0.2-servicing.25066.10.nupkg", + "version": "9.0.2-servicing.25066.10" }, { "pname": "runtime.osx-arm64.Microsoft.NETCore.ILAsm", - "sha256": "0ef392c9212699a31e864343b7af0bafe69e317f899865390d049e52e9cf0042", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.osx-arm64.microsoft.netcore.ilasm/9.0.1-servicing.24610.10/runtime.osx-arm64.microsoft.netcore.ilasm.9.0.1-servicing.24610.10.nupkg", - "version": "9.0.1-servicing.24610.10" + "sha256": "38722f600fcfe7e6bf94152c6a4a5e0d6309e7a7f0f6568388ee9db82cf1e6e6", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.osx-arm64.microsoft.netcore.ilasm/9.0.2-servicing.25066.10/runtime.osx-arm64.microsoft.netcore.ilasm.9.0.2-servicing.25066.10.nupkg", + "version": "9.0.2-servicing.25066.10" }, { "pname": "runtime.osx-arm64.Microsoft.NETCore.ILDAsm", - "sha256": "b591887fe0152c66b7f8994e8b6b869bc33f5a6d6521ae502e953e2164040c2a", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.osx-arm64.microsoft.netcore.ildasm/9.0.1-servicing.24610.10/runtime.osx-arm64.microsoft.netcore.ildasm.9.0.1-servicing.24610.10.nupkg", - "version": "9.0.1-servicing.24610.10" + "sha256": "6440a32e73380577a4ceedd3f77d20f28e010d4d79563779082039728d0978aa", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.osx-arm64.microsoft.netcore.ildasm/9.0.2-servicing.25066.10/runtime.osx-arm64.microsoft.netcore.ildasm.9.0.2-servicing.25066.10.nupkg", + "version": "9.0.2-servicing.25066.10" }, { "pname": "runtime.osx-x64.Microsoft.NETCore.ILAsm", - "sha256": "cf8ac15e33b74d1a43a9502c9a5374f8aaf03dbf85067e33e6872fdc09861226", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.osx-x64.microsoft.netcore.ilasm/9.0.1-servicing.24610.10/runtime.osx-x64.microsoft.netcore.ilasm.9.0.1-servicing.24610.10.nupkg", - "version": "9.0.1-servicing.24610.10" + "sha256": "a4217166ccb03e74f12f6c10f155160f5eccb172aac6d51eefd4fcbb163e6726", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.osx-x64.microsoft.netcore.ilasm/9.0.2-servicing.25066.10/runtime.osx-x64.microsoft.netcore.ilasm.9.0.2-servicing.25066.10.nupkg", + "version": "9.0.2-servicing.25066.10" }, { "pname": "runtime.osx-x64.Microsoft.NETCore.ILDAsm", - "sha256": "8f5e4a0ee3e0ecbd03eb5346133cfc5a3ca98408a4414d8d90bcd025c2e8fee9", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.osx-x64.microsoft.netcore.ildasm/9.0.1-servicing.24610.10/runtime.osx-x64.microsoft.netcore.ildasm.9.0.1-servicing.24610.10.nupkg", - "version": "9.0.1-servicing.24610.10" + "sha256": "2e9b2db37c6a43140fa03c1dd7cd986000447dcb8b831e3304338feec50db6be", + "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/3698578c-d33d-473f-9ffc-769cfbd11be7/nuget/v3/flat2/runtime.osx-x64.microsoft.netcore.ildasm/9.0.2-servicing.25066.10/runtime.osx-x64.microsoft.netcore.ildasm.9.0.2-servicing.25066.10.nupkg", + "version": "9.0.2-servicing.25066.10" } ] diff --git a/pkgs/development/compilers/dotnet/9/release-info.json b/pkgs/development/compilers/dotnet/9/release-info.json index ae3e59d6c7b2..59ab7a3c8cf8 100644 --- a/pkgs/development/compilers/dotnet/9/release-info.json +++ b/pkgs/development/compilers/dotnet/9/release-info.json @@ -1,5 +1,5 @@ { - "tarballHash": "sha256-HK/T1lBzQ4PwAY+KZfQ/TJQ8aauPwwDLQbmuj9a1Jmo=", - "artifactsUrl": "https://builds.dotnet.microsoft.com/source-built-artifacts/assets/Private.SourceBuilt.Artifacts.9.0.102-servicing.24611.1.centos.9-x64.tar.gz", - "artifactsHash": "sha256-xW5OiDOKi5+dkCA7DdeLOizpDUDHuquQ5A1R5Pk7S6U=" + "tarballHash": "sha256-lYUiGQuBiyjsv71iu/HZMXZTEirFjsus2tmpiww4/Ss=", + "artifactsUrl": "https://builds.dotnet.microsoft.com/source-built-artifacts/assets/Private.SourceBuilt.Artifacts.9.0.103-servicing.25071.1.centos.9-x64.tar.gz", + "artifactsHash": "sha256-gjssRnllvu7XxKHtAXJ4FuGAuWShHmaYjwu+N+XTxuY=" } diff --git a/pkgs/development/compilers/dotnet/9/release.json b/pkgs/development/compilers/dotnet/9/release.json index 852b8a0db6f1..ac6e41863319 100644 --- a/pkgs/development/compilers/dotnet/9/release.json +++ b/pkgs/development/compilers/dotnet/9/release.json @@ -1,10 +1,10 @@ { - "release": "9.0.2", + "release": "9.0.3", "channel": "9.0", - "tag": "v9.0.2", - "sdkVersion": "9.0.103", - "runtimeVersion": "9.0.2", - "aspNetCoreVersion": "9.0.2", + "tag": "v9.0.3", + "sdkVersion": "9.0.104", + "runtimeVersion": "9.0.3", + "aspNetCoreVersion": "9.0.3", "sourceRepository": "https://github.com/dotnet/dotnet", - "sourceVersion": "c4e5fd73fe5d8c004bf46cb4f1ded77ca8124b1a" + "sourceVersion": "7931ad4860249a1c9971df37e12468692890b28f" } diff --git a/pkgs/development/compilers/dotnet/record-downloaded-packages.proj b/pkgs/development/compilers/dotnet/record-downloaded-packages.proj index bb2a50bddf6b..87ede16716a3 100644 --- a/pkgs/development/compilers/dotnet/record-downloaded-packages.proj +++ b/pkgs/development/compilers/dotnet/record-downloaded-packages.proj @@ -6,7 +6,7 @@ <_NuGetToNixPackageCache Include="$(ProjectDirectory)artifacts/source-build/self/package-cache/"/> diff --git a/pkgs/development/compilers/dotnet/versions/8.0.nix b/pkgs/development/compilers/dotnet/versions/8.0.nix index 69fecfc2de59..1c2be7e695ed 100644 --- a/pkgs/development/compilers/dotnet/versions/8.0.nix +++ b/pkgs/development/compilers/dotnet/versions/8.0.nix @@ -11,43 +11,43 @@ let commonPackages = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Ref"; - version = "8.0.13"; - hash = "sha512-MgSCr3Rq6GgXQajJ7r3j96vIGlfwKdJd+i5gp9FSfKFMagJ69dzdqxaAHvvpxiuyR+b4ssUW+c/3gNmpze3eKA=="; + version = "8.0.14"; + hash = "sha512-V77R9GDhlp+JKw+glAHcUGaXc15vfv9odTkqcMqBNOdbPkhSfrEqogcvgjBDMbAGyRLidAdObmFlgMGxLyI3zg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.DotNetAppHost"; - version = "8.0.13"; - hash = "sha512-YMKye+unHqv+lLVHmy/H2YTbs8DaRpcG+K4D3WqivPCoWGX6fjNvtg8g4zR6axVrFNnKczwQJEL34wetUGx61w=="; + version = "8.0.14"; + hash = "sha512-baxYb5HaJmJLHacl1/lK3Ku1cpv+IB4ktkHvHIeSSHHRt00aIBs/UhB9H14rIp2OSGioWviswwgRv56tVz9D6g=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Ref"; - version = "8.0.13"; - hash = "sha512-pWiKiUc9qaTLlZ8/kVD6s7jEYJTCAfqnphxCOJEXkP1wOcEpMWN9d21GK9ubOSq63IVAAeKmA2DoRFItcyha6g=="; + version = "8.0.14"; + hash = "sha512-PEAiKWOkUDXDX0EEn+RrAXqyGMd6erYmpQy3zLxQ7Jkg5lIRB54OUmzAOZbJ4E9oSbv4skpWDc2faJWqRqscOQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.DotNetHost"; - version = "8.0.13"; - hash = "sha512-ZtwZhoOO0WvuptMPZmvj9QUzTNu19OroTihw6qtJS8vUreRc7UjvqH7PvOFdwgKtX1r1bDLfdR/4nRuIwoBRoA=="; + version = "8.0.14"; + hash = "sha512-e45XYXqnQGgAB98jBceSfWQtRfWu1mkOeed55NlrgTG1pFPDHle3csCV5Fpnnt6MOLA1sxkkXhTPpW1JVVe7mA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.13"; - hash = "sha512-tJMoj/QZpYDleN/H3UghIynxnXPRgMPdrx1uqvX/3wnjsIme1ExM3ZTkZ6enJjAt73i6FVEWQyXTVczczgabDA=="; + version = "8.0.14"; + hash = "sha512-CCRUGwheiGabheBCY77x/Y9mqk0Z2FtRpGIipuPTU2fHs1eBUfXOqjNhxNQq6G/H5zLrUPkklxQQedYlCFRImA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.13"; - hash = "sha512-UMv8jGREl+mz8P9MS20y2sWWbkGZyn5BISDz7IVlEgoY+qxRkZX8l7sQqq8XxAM1BkZLy9PM6JtHQSv+VMI7Qg=="; + version = "8.0.14"; + hash = "sha512-hmzIouncdA5p/O8YJaXtNzy0KNgE9Q0G6D6xe4hwzTvDpEwmSfwksaT5AbqtX+9G89VxdJy7UVMgOFNVabOWmw=="; }) (fetchNupkg { pname = "Microsoft.DotNet.ILCompiler"; - version = "8.0.13"; - hash = "sha512-suZh3YYsbkaRQOHRRtdozciCJHdxCEWV73tGBQZJzc0dFYRh3FsfYxUtDACpbWRQ2IZTYJawrEo7mZHUwXcPtQ=="; + version = "8.0.14"; + hash = "sha512-rITtrd0fkzZVON2Z9guK3xnbxva2xv0twlinXLq1rAseNjjimhrNINJs9nH9/cNr8tG6lTNqhOc1IqbBc0Yqbg=="; }) (fetchNupkg { pname = "Microsoft.NET.ILLink.Tasks"; - version = "8.0.13"; - hash = "sha512-W9UdnWxyclcioXrchdCpsQDJqnUtCS+m4aWRWV+2ejskgjNjUyiOrpYjQy+XVE5bW9krwd9ynOkD3KXL91sDFw=="; + version = "8.0.14"; + hash = "sha512-jR1L2sbbjqlnM85zk2gWRz9t20JP2LQJo2+jb16RBNetiVJAQ9nY8C+SDR8BV8X7TzIwbRvRIQM8acvJIUR9mg=="; }) ]; @@ -55,118 +55,118 @@ let linux-arm = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm"; - version = "8.0.13"; - hash = "sha512-wPiH6xLRHVjd6LiOc9xEOJH+LSIamyZBPPb3VxdAOeHxcD5WjyoS7rUhI/M6DqufG6Gi7VMhehP9lLejW+2zFQ=="; + version = "8.0.14"; + hash = "sha512-nfKaPD8SPxVE4CEUtktO51ijivZzQTfs/9KQQGlcJW4NvBcZ/1Oc0HX/tzzyuh9Bb4ak6uln7Gr9GsFzHDVcUw=="; }) ]; linux-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm64"; - version = "8.0.13"; - hash = "sha512-eDzhFaPa70k8gUeu6rbr7s2aOfFSvwRkwTCoY4mVERmsbKtrwCLERhv7vuw/ze8lqloK2oXwwybL1ekOUKa94A=="; + version = "8.0.14"; + hash = "sha512-rbshrpuSXP8ki/PmxkunWQIBk8Drlm4MKO+CV9rq3cu6GwGhPqoIcjCg+Z0MazGH25KFbdiuqpEFe005bG1pxg=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.DotNet.ILCompiler"; - version = "8.0.13"; - hash = "sha512-OE4/Anisy5MjaOKxAhIU4b4bFjNaKW3vZpCVwIgIBcVz/WUVKYrTywEH/UzhEPqbJ/P6PJ6SMjYmdQ+bColVDQ=="; + version = "8.0.14"; + hash = "sha512-EdBsWhiSrfuZHSiojFVcMUIn/+3m6Zc6oow4CG4c4XvhvUJm77gc3xRGcA1dOU37TTRVvKIZST+G8h+wVvfa2g=="; }) ]; linux-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-x64"; - version = "8.0.13"; - hash = "sha512-UR/FmEeb+HuVKOGLxbCF8ksc928eqxLy23ifwRBX8dFiWs8z8s7zXtpFIvH1t+at5F8BUOv70aneRhQ2Wgs1zw=="; + version = "8.0.14"; + hash = "sha512-qdMOh+qTaqUKFOtjSY00IBxbnmRG6RunrrG3hvF26g2f/yuL5OZl5YZyxzEbhm2bcX23B/Qkoe0IamrZq7/+1g=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.DotNet.ILCompiler"; - version = "8.0.13"; - hash = "sha512-kWVbJrHvjFz5esVjTElVXjgS3tGH9NsaTHLQty0De7bLqrbrzKKu5OUSNdL61ev7QwF8R6iflfA5+/UvVYVkIQ=="; + version = "8.0.14"; + hash = "sha512-eu1Xm8zjehwn068VC0wQ7c1Mqw4ckrhFTNdI/o4Tkw1hzNxtUcCPP6K3CnA+tqzAAA/tttNv53lqpgT3/jbcEA=="; }) ]; linux-musl-arm = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm"; - version = "8.0.13"; - hash = "sha512-PUV8GmwwmK9aPFWdNo8HwN8UC35heQNqU75AszWHXkpfqnskuRdFYHoyUjxxvVlBXaen1xymXw/YX76NDoZeyw=="; + version = "8.0.14"; + hash = "sha512-Hvp1eNx9gEI36JEFXHsyNmGxlvXL9ZyNwW8BeVldKFAUBctRSTr4hXM1MRYi0xT0WyJfd97E4ty/hAWeMJCHzQ=="; }) ]; linux-musl-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64"; - version = "8.0.13"; - hash = "sha512-U0nbGfOc2+6zSOFNCZGhrJHQnKM3LZcBQqC0XGm4B0S/5wvZmrsLx0GSY09/EPmldWuSzaC3Exot7mC0NvUYuQ=="; + version = "8.0.14"; + hash = "sha512-xFDChwFMQTHlx445FpZLZTJyjDcn71k5xQXOxsrjMGvEl25ykIln+ogYCX4fdPPGYyEb/SSTM9TvNjLfPUcWqg=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler"; - version = "8.0.13"; - hash = "sha512-PUsBDtDOVrGhaqyJh6D6vVJ6DBLac87qV7MojLNXEeGKn7ClTSzr78jneOUOeGcHFrinQsX8PoCMehszYjdomg=="; + version = "8.0.14"; + hash = "sha512-wEdInX6FejF0NfBsMxMc3KcPTMODwINm/JJdHGSh4M0H2R/k5TAMsBlYSI3KgBDrKgbyO68J1/G2ZqByMPhBnw=="; }) ]; linux-musl-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-x64"; - version = "8.0.13"; - hash = "sha512-OAoCKmvnbiNYswLUGGZeV52PbsYyNN0RB/Tj7UdYc9V3d6LIKrEweKutQ/zJznInNWkU0FwG1M6nKzoXVDNoFw=="; + version = "8.0.14"; + hash = "sha512-U0Gb/0pUDyfA5OTM3XumsgUUwmVv/xaJSOpAR848bUDpIEm0Kr/XTfhMjNtlTWVFxUmmVpefN44i8Ms9AWlt2A=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler"; - version = "8.0.13"; - hash = "sha512-ug+DJuZxtRkMOFv6Dhg5VkCiwtTJSWdOyfAkg/vwYcJvk1rM6wQwsLb1G393hmEnVqzXmhVaEi7CJE9Kp4cw5w=="; + version = "8.0.14"; + hash = "sha512-NtFv6/tK7ZiVPPWx/EhJYZ00Rit0OUnVIsbkvRx4aMSWg6VxihspJZ7DlH3FvZuYcKorOf0cFf/i9PuysGl/Dw=="; }) ]; osx-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.osx-arm64"; - version = "8.0.13"; - hash = "sha512-8QTpY+hdI3mtN1cqsv9FeUSiIPeO+SXFAy2A6VXd75Mb21Tmpy+u28p0iU8B7dyxPOYwX/V8qXtvnFfpSJrRVw=="; + version = "8.0.14"; + hash = "sha512-ncS8oaRhux84YA3KF63EmoGPrmnaUbQEywO1qFQ0DhVycizjmy65OTzDA6WzDhDob8zlLMtP8yTtXmrujZ20hQ=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.DotNet.ILCompiler"; - version = "8.0.13"; - hash = "sha512-a5TGVeUAzqJ0O9TkZ5QvFwTqLqTqY7XtcYEu8dPGzwyy2xHU0OHuQnpcVbvzNfflBWz0p8wq+O2th8D9DcR4Wg=="; + version = "8.0.14"; + hash = "sha512-jV/Es3kwWGy4yVHu1U77cnDwYUKeISf53sw+oxa6aEWmDex4fTRa/maywdzXNPohXnV3VBUTViZoDfvkyaWrYw=="; }) ]; osx-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.osx-x64"; - version = "8.0.13"; - hash = "sha512-EJ45DHJtHOZAfJ9KbqDnjl5QwY5esccnSlCu1jaopNT6GIVibeRA+gycjrA99vPEqO2kK4fIrsEl9qOg77/oAg=="; + version = "8.0.14"; + hash = "sha512-XfUvQN8PbHiTktVFHbDQFNGbkQ1c+j6+UA7v4Pww/Y+fayE0qzXQbnYEDKl59G90zesrM8DQDlurdd5yzncwdQ=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.DotNet.ILCompiler"; - version = "8.0.13"; - hash = "sha512-Eb7MuECz+qf8uGFVsGt4AkEt6+1DbIBdeCHqfW+Kxs6iR9zHH+Q8KeT/N2KQHeYPuo+Te6LWr3052XJoCdNnWQ=="; + version = "8.0.14"; + hash = "sha512-dCVHU+rKCt/z5wAnlKoGIgPUvF1A4lWsir+nVQ479bdEQAkbW1JQJmc9QIIPuJkpTFse6VnpNX3V85aQvhF1vQ=="; }) ]; win-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.win-arm64"; - version = "8.0.13"; - hash = "sha512-quVzy/EWr4xHHNo8sWPZIQfDPdMrNubaGdgEGnvmMuxTD+k06nWu3+HV00tNSbx2ruuPJMypR0gH1GUcAvAHiw=="; + version = "8.0.14"; + hash = "sha512-9D06OBULsC6rWITBWopjIID1Ojigh6vB40f+OmItRIDgik6bgFh3jGu15puHhSc2EFLCfm1yinGZwQTbyZ5h/A=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.DotNet.ILCompiler"; - version = "8.0.13"; - hash = "sha512-fIujBcXM1ZPjkhxdJG3uavyBGC70EPMbmxaEAUy4sq0sMsEwot9XCxk9lGegnN/hro4Pv37IpWWpVYiMXb1GmQ=="; + version = "8.0.14"; + hash = "sha512-ybYyzVFVmxiWINSlegKkJZfW8juEBocbhH4/Zg7yFz6K0UWI6/N42ZkGrXT9TqhM9STMU+Hi/sXl7sgNO5oVTg=="; }) ]; win-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.win-x64"; - version = "8.0.13"; - hash = "sha512-1cD9zMbdLSEC3U9/ebV5zOPGm15yfXw4coEQ4O1/2+pTwjwa3aYRoVVzYm1ptNOm4OufHW1E5VmurpJ7VJ7ehw=="; + version = "8.0.14"; + hash = "sha512-BCAj0WZ9hB97Q/GVaaoQS9xdEGLZTenfK3M/KI9oXuda4ww26FL0jYVg+vWhO28RHg+ZlQiLPs/uO4uDg77s0w=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.DotNet.ILCompiler"; - version = "8.0.13"; - hash = "sha512-GS1VSLt/2czy8XSLJMpzUcPAeHsKVrQGnHOkFTeJew1wsiMZHmmqftYKm5GAqCloy1wRMaMpiXk2q6Eu47xItg=="; + version = "8.0.14"; + hash = "sha512-Cu8rQHctwDHwq7OYcmk5ADEMFM3liTg3xmrN1oC8zv9po6Q5cz1vP8oOnVi5R84MMx/k3AkIhVozBHzMfmcRfA=="; }) ]; win-x86 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.win-x86"; - version = "8.0.13"; - hash = "sha512-Gxi/u2nXIVPLA2kFEgChk4flm/1FCvFSth8lwO/9pqyoq5mD0uti4EF3Q9kheTR1YMCykmPPP1RIsJlMKkQBPg=="; + version = "8.0.14"; + hash = "sha512-RFDIyrBMxGkcCBQwmv5HRrZQ0m7oYMQBO1TxUFs/vCfXSud2gGsi93zGUT4i3xoakye6r4qUf9huiKtlnAR/aw=="; }) ]; }; @@ -175,566 +175,566 @@ let linux-arm = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; - version = "8.0.13"; - hash = "sha512-h6PYukUwYkY3FNBzeLAnUVxmmcOp2cmkasfbd+VU0lNmUP1MrdlOj626v4GY9tG1h3F4+I3Ry3XmgM7aaf7ZsQ=="; + version = "8.0.14"; + hash = "sha512-bVjMx5x6pJQxb2ZeDfA/paeLOYXbhHO7J3Cwr4nn1Is/j3Mtmt9z2Qpw1bk6E5zIKx5dMB0eTutVZRoOPzlWHA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-arm"; - version = "8.0.13"; - hash = "sha512-R3bpcLl9kzcnJv/t/SZTyYEod5Y9Eq1/DQvDhhLy994z7/2dWq236maUVstpqrNRyGRlk94ZLUDS1SQKVTCnOQ=="; + version = "8.0.14"; + hash = "sha512-/KA7sVA7+ITz3mfq2LegHB83eidl0rcIjXU4tskhTuJy8hKF7l1D1XG+auS3e9NkThrzbk7Z7m5WmQEMO/Fi+g=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; - version = "8.0.13"; - hash = "sha512-kCjEavVZXespMRjSaY7sYxZiv7DEep+9WQ3fpC+OIy5Wv5nvd4kFEHDY4KuWRQ3DuSdNxEaAdDEib5tp+dSsxw=="; + version = "8.0.14"; + hash = "sha512-PJgFxWXGNL6OzcpOa7nLyprC3yRG+gSBgz+crarbEvd4djS0+5OiqqSPNBn1kRiqpVSKtkCSUUiG3Um33l+IpA=="; }) (fetchNupkg { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.13"; - hash = "sha512-qumZZHELvPZ7cXndpoTr2TIwd8aLTCME5GYXm85bKo03ruFsvg4sqlHms2XXTOR4U84pugHl6yJnzUSS8WT8Pg=="; + version = "8.0.14"; + hash = "sha512-7ura7+C0nkdjeb3X9Mx6klQSegpTnOjwtCDzhsi72HUyVmvojvpzZQmx44va0JybbE0wpu0y9bEO+z1SpKyi5w=="; }) (fetchNupkg { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHost"; - version = "8.0.13"; - hash = "sha512-pOMUwywBQOla7x5XxBT8bhhTYrt5ZNznp2VjuRWUndJjn1XV5kfVoHgLBleWtjSdqx214+1qUV0daYigcfFjLA=="; + version = "8.0.14"; + hash = "sha512-BM45yRmYa/XVQFCRHOVb1Ye1e0g1tXRZiLGiA7dSU6au24TFZWbdCWOwqwFiWKnGIZd9scmNvhXA6K0tIok6Qg=="; }) (fetchNupkg { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.13"; - hash = "sha512-XqGPxuqe8+E+BnuL+6ZihrWQbxVUKWsR/9rjDHuGvPZswwGcXLAvzMLgJEmI3aR71yZL2bMskAI4p7w3L/A8dA=="; + version = "8.0.14"; + hash = "sha512-H2jBl9Lkaox4kp3p+vQWXzw4V4SABsIMXfpqlZ/WlBfrWJ38v9Yyr57OSRhZO/wHHCUnjtQFVyU/yylh/FiDDQ=="; }) (fetchNupkg { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.13"; - hash = "sha512-gE2lw5wRrU4OQTjvOKebfOaWAVoD8qUkU7TiDnlcbUU44nWVY9SZ5Sxg1KTDvLQG+9JQ1ilBWB4xZw7nfoOn7Q=="; + version = "8.0.14"; + hash = "sha512-uGI7lmwN8qfxkznt57OKAZQA6/HGiSLvnU/cMGk9e/8xXZ+PXFko9FVE+EOSEwFR8dYLV9VGBRefyxlHmy5Cjg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm"; - version = "8.0.13"; - hash = "sha512-g7rwnlk3MNuah6el1YadnzQkaE6W0Keb+sKhw88gXd2rmxRegnmMKM48+p3KlmgbHER9c20doUcpSCgG1FSQCw=="; + version = "8.0.14"; + hash = "sha512-L72/lHM+XIxpZc8LAoV2ZytHnSJK3g43WJLtibmw6R9pLYgkl/kD2pIQrdGj8CAluoyFiXBdGAPnYGZwmvpG1w=="; }) ]; linux-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; - version = "8.0.13"; - hash = "sha512-eu57Vlit1LrSAKnuXPLfcxd9OVDG5o7FGuIJmRcPC6DOtQuO4GvKx6EpHjWpgDvnq58NDonhfpKUVdr6onY8Zg=="; + version = "8.0.14"; + hash = "sha512-ljXkPGSvi5uTwk3dDeNIGmTcL+iiKghJeifnfv/uj2re4J2CL1Qogb9rTUSq9Wz6QR/HG4ugw7MA2253QgFUMA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-arm64"; - version = "8.0.13"; - hash = "sha512-ve7hPhZeKIwPt33tozrAODERm2pK0F3o0K0I3U+CPCHa24+47eC3WNMZYoGS/CjZtUSD3X5YZV+U0jXU1nbXtA=="; + version = "8.0.14"; + hash = "sha512-rSACOMwu9QGIr/1o0OjKr2rO4s9++GtQG/ZymCc7IT4NP3++k/12ojSHgpKb4eMqExKB5DPQuCgoVNojqcoCmQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; - version = "8.0.13"; - hash = "sha512-+UTfs0e7mIdkVb8zR0lqkaz9fsxgkoRq7BCsgPjIjyheR3e4AygDouuV/VnQtOXYHO48DIkidKFcg40mLlzAFQ=="; + version = "8.0.14"; + hash = "sha512-wqyH1Z74biUPO2OrTTKsXJ9TP06umG09STThodA5VGmRXEbhAG+q/teXfo9Uoi6eRcyl70/hQlI9YqcMdfbHyw=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.13"; - hash = "sha512-+FfRV8eJwWGTTHhnIKgj+YYVJ80l1atJ6shI+7BF5Pzk8eVM6edk0d9FoxYSrGpvDRvus393c91c6riJbc16fg=="; + version = "8.0.14"; + hash = "sha512-UKVwdxTBPtco0irMJN+VbaquRMvWII1DaViPsRxqTsHIuKwTPRIG5W0/sQ+0I1HkvJ4l6zJ+1sw1BED9/DqznQ=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"; - version = "8.0.13"; - hash = "sha512-LOgp9W2atSRVSVIknts+VaYJmHht+JCET3nZc5+8eCqR34PoFo2P8e0f/CZf673HS5ZUMEkgmDZN2lA927AB9w=="; + version = "8.0.14"; + hash = "sha512-bSsxr71xZmh8Yo87NEfJnJb0JOiXLqhPTDtXjb3K7iQI2y18nK6S9/EsP0bH3zCZKzPITud3Uo2QzKJ4YrqzZw=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.13"; - hash = "sha512-TjRXIRUfWjRpJf5rcXqayBRk12WaIWHrtkbmINY1n99Xk3bnw7I5EfJv6ard3y7WrLj//Y3MzPdvlCe8gtOCKw=="; + version = "8.0.14"; + hash = "sha512-uUZOHCbx4kuHJTHyLQbWJOUG9BsabqPk+Ln9/7x88TOVS3eMPxhaqYU5anfjpcsVdrhb7asq6qxC5Icryy103w=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.13"; - hash = "sha512-1rVdbT+vU+uIoQk5bl5LmJH7FZeGVzOKerYwNDYzE/aNIitJLLVAbik+Bv/29m+//E7OZOPdciGALFl8U0rN9g=="; + version = "8.0.14"; + hash = "sha512-goeC57QuEPTyNw1TwFOAXO/JkyUNlqFEAGJTlmj3Eoo2PJ1kCgdmCQC86lTr+IBC3uO/RLdjx8Kk6yAm7tFRtQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm64"; - version = "8.0.13"; - hash = "sha512-fxvgW5dSYuaVZGu5NVltyyWZwiZ4MhJVfQoeHEZI9VPEZ1EPBDLYjlIyWiyk0cW5+yEtZmkeNbcQELN6t8ms7w=="; + version = "8.0.14"; + hash = "sha512-k21UqMI+ZJgWQ5FR1bK9dSgt4YAmAm8kMcvlR4wMN0CqzG53EJcpYwHPkYMH9MFUXQCOmEmVVvZWf9uKsDewKQ=="; }) ]; linux-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; - version = "8.0.13"; - hash = "sha512-pXWXxDcUgCm7xBUI10o8o23ZgDSAmG/rOO1bfzY74RnXPIOcraTpUoB4GgVIb3z7ERJek1B5W6roycag6B6WVQ=="; + version = "8.0.14"; + hash = "sha512-MrPaupmZVpgKgUDxhAyYRL43PpQHj7ktgm22AN0sHwvW6i5q04KeMjrftVz3cUnLbl+vEvTsJ1lxH8x7PW5vEg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-x64"; - version = "8.0.13"; - hash = "sha512-vZcUK6f9IPTM+QBsoNZEuX7pB2p6mnBMcEE0ejK3LNt/3byj216Xw66Ur786bemJtq7AmEvt9173bbFUhqpsvA=="; + version = "8.0.14"; + hash = "sha512-oi12yR6WS5e8mLReIppxto3On9Ok2DJ82pi9qKwGdDOjPi7+osInCx3nyflzFgscRyW32YH3/JodD9KfiAnTvQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; - version = "8.0.13"; - hash = "sha512-cJUogvZSX0tEypF9u+fiP4qn2o+6YPrJSCozxGV7fR+NgG/r7TXlEBNEE7zfZykb0ytM51bE5i6Sl4oMZwScJQ=="; + version = "8.0.14"; + hash = "sha512-i3k29laNQf7O4ZDV3brN1kwlbWBTo+N3TWkpW1atQS5xKeYnJylLNIFFnbaIhM8hanaI4FdExy8xw1btVyVV8Q=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.13"; - hash = "sha512-z61zo1KZfSY7duX11vGC/Azgo8iF9BvrNTW7/IdGlcgv/mFM593qbyu5u5P6Slfh6+uPIT+usyyOsmfmwmJLxQ=="; + version = "8.0.14"; + hash = "sha512-K6MJrSXlSS2xj8wEKdmD4WPFUm1lAnwQGdwF4lir4sIebyIg1nTnwLhtnIOVwn5tQIY25f0Ly05xUSJlzGz51Q=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHost"; - version = "8.0.13"; - hash = "sha512-wLID5tqgV8SIPLcZk74F9S2VJtPVSMKj5IyF4ce2zGIiADhPPdNn2v577xK1nZCySAUUj5gc87TG/mhUP2glTw=="; + version = "8.0.14"; + hash = "sha512-ndfmeE98qPvmmNLeRjgv/IaLnYwvVwfLRgdrgu+KN72DxKUVQXn0OrKyCxODvPjnzEy+YcHpAjIx7xwZNp8hZg=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.13"; - hash = "sha512-tETOLI9GXl6lQRfc+Nm0zFkmietPL0gNWgNfrDG417PwKCVn67lNOMB4QCGxws4aai4Xss1Nz1DUws8Afowv0g=="; + version = "8.0.14"; + hash = "sha512-SPk6qR29oxUrM1FNqThm8ESSkAyvYhqAlc9bx3fkvzPX4u3Pg9cJkhYdlNd9EdbrDldUoyBhfUgHL/delmyUNA=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.13"; - hash = "sha512-znVAeRi4kfoOAzOGH7T3DQNqw2Qr5B4cJ8MQN2ys/v8PDomK245iamkSAzzeEwkX6IsRrB/WoWsHj8t+Tk/w5A=="; + version = "8.0.14"; + hash = "sha512-/MPLARzf8FLw1hYclLPFaEqJN1WSPHpbydW5A/c3tdQWhQpqfaEfJoB5rsQLLF2GuAg2QJS2e7I0dYgc1KKVZg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-x64"; - version = "8.0.13"; - hash = "sha512-QskMMrolVlrwJtSRM5yGkeEyybdyd87J7TRRkQ3eKpGEwHRMh9decBVnIT/TF+fQlnFldTkfWtCayPNMjRaeMQ=="; + version = "8.0.14"; + hash = "sha512-cXAsRG685drGn1HBeap9r+NxXTKcFjwkXvpr3UI1CyJKKdMWYoxR1Fi4WZmzEXvysCEQPqz58DqzcKEcH7V74w=="; }) ]; linux-musl-arm = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; - version = "8.0.13"; - hash = "sha512-JiSgO5Hb74QjdoOD+pDUl+zd7XyD5xg9v1gTOD1eBMueuNHG4rbziMkX6ZXw0OHDdeidtfl3CO1HZe6WG2rYZw=="; + version = "8.0.14"; + hash = "sha512-trfTrwYGyVKzfkXmZbymIEfmPKRLqS76k6EERxEBR2r2Nh/r0sJxhfhMF4petHhbDUmYSKbkx/xLwKKTgpF0LA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; - version = "8.0.13"; - hash = "sha512-h8nywzrG0FLBePMdKUR7ypath0Bhdijo5mUuBfGvi41RNH/RnQYrE5G+UgSJFVJ80z+/0U0mqAvCz5tDHt6frg=="; + version = "8.0.14"; + hash = "sha512-43BdW4SfpjNhCSl6v9yNZvwJRqq1/eP6Pto+v0ce2Da6tkXTX29Pwqw33dLmt0mGiwHHur0sHaDB6aQIjX53uQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; - version = "8.0.13"; - hash = "sha512-dbHgT93bdY2UPLWrDvhFP5RRbujswSxnBagSBAAsluiZ9NExyyOpLH/YVT6HX6o7ZFDu5SV/toIhBqSaoknrQg=="; + version = "8.0.14"; + hash = "sha512-1vePR5K6hT2TBz+fEbAVkQl5Ju/dyETeIsPRfZmxAXqD10H9YVKVc0IyU2n3FBnwMoioE4Twz+U0YFI/Mm0BZQ=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.13"; - hash = "sha512-CHN1Zo8QAxbmEBE8Ec8W8D+gWFIbSS5jAE0kmjpJF5zpco1XX1W/B/q8P0FtoQHqMy3c4lHKsgnSPResPOjROg=="; + version = "8.0.14"; + hash = "sha512-S7hFf/tXqrqUENm+EsYxpVgJPv+gAQKsW9FR1AAPwpWc/gMdaCTKFk0joqyJQdcyf8P6NcS7b0eGUUUpnAqEuw=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"; - version = "8.0.13"; - hash = "sha512-78reLCILq4xHBnubuzHLcET1YQ5exI6ZC85GHrph9OJxi0OSfYtoved1qsqUvJfVnLf0gBCZ3EDFHk2YOgEKrA=="; + version = "8.0.14"; + hash = "sha512-uznLiEeLWenfYzBeJQNHoNJt7apxwm7EU3ifVncDURN1Mm+YgYk82ok9CCW5JybQ+VYJQ4Y88S07IKRjLc3uQw=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.13"; - hash = "sha512-lXhhyD/0HSr3F3Z+A+4AFw/KraH2ZPglwsoVVY+pVUgSD8SxeIWe3DG4T0UnJIzsB6S/pSQZtvMw4luYV6wMjA=="; + version = "8.0.14"; + hash = "sha512-eee5wySPpV7juEjAtUQJD96BRK7F+U+GUT3mZ49uI7ZCvD9mXGRuKXLook0bDsWUbuzDpyzA7oH9Udl7XL8Hbg=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.13"; - hash = "sha512-HWB4Hv9iNPIT+IEpve3O1Veo0NEakX0F1nRRssA8OjN2SSgaK99ziwnSBBMNdu9MsqZxRStmfvllE3TqSsm5Zg=="; + version = "8.0.14"; + hash = "sha512-nHSoXmypBdzIs1QodTa2j9Lbhx4YTNg8QvWF/u5h+r5ZL4CtATEDxi5N5DdRLcExxR2tU05h1A5T8dKmXSxwbQ=="; }) ]; linux-musl-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; - version = "8.0.13"; - hash = "sha512-am+xIHI7h+W4ZBVRh4/Fkbl4SFB4T8pwgmYnLH7EE7cuBR+EFpxDXdG0NWtkVQQotTRbVLEG7W/WjYxkPYGlUA=="; + version = "8.0.14"; + hash = "sha512-2FlxzE/RPJEWehV1ZFMupXhRd7zO5iwAeRr0PSAh9ekncJXq/NzwxOCO1x3FZAQ219xiyNTWZw7zTKzq/u8XiA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; - version = "8.0.13"; - hash = "sha512-yfse5S0eD1JtJAqre5f8wIEoQSiyuv1zjmzckaiQ9aV7a8v0OlUAsic0X4X+SutrBaEMEChPEkW1qrhIz+FzSw=="; + version = "8.0.14"; + hash = "sha512-u6Q0rFys+js5kqXKFYjt3r9luWz6mtlPSxWaXwHZGZx0eIIBwgf3SVVvCl3/KeW1cQpBkcJLSbaxFUeGU2jmAw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; - version = "8.0.13"; - hash = "sha512-HssZ+9XVCf0R8gOYB48tEJyBwhMSv8Wtb2IrlmIdp49Ph2xNhn/RYod3NEB2iWqtgappx6Z0RiCBW3Y8VpzQsA=="; + version = "8.0.14"; + hash = "sha512-NQWycETvn24RMbAAVdzHzz3iZFv4mykfDN7e0mEZiqEbnW5iOh52cjoXpRvRdjJyZAveJ2a/kQTdzSAnItEAJg=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.13"; - hash = "sha512-7d/XVFppfcjW/jzy9lh+M0y7QMwjfPL4A6/DC6HCNmjVTwfbV5rF6lEwZk4M8GKxnRBgKnawOQgi1KuTMrUPaA=="; + version = "8.0.14"; + hash = "sha512-44hiqu+cEG4NccE+EzBOFir2DKyQ3gOC7cLVwP8VinuNrQRd77OIfalXgkO5iEBnMRbY2hFy76VEAH74qg75/g=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"; - version = "8.0.13"; - hash = "sha512-V5zIiUWCdEt+h6xfp48jmV8zd7w+SAvYmm9jEmy9Ik96gbMH9Sc2mdCu1eJn8POfBCF1iT231M4bUinhmHddgQ=="; + version = "8.0.14"; + hash = "sha512-uL9+7x6c9QfLqiDfKYI4j9Wo7OoiqnuTlPCUEnmkvNgNhu6oJ6Oxwi5Pe8ZmcvSQ0Ro3hMbsSgcsrCSuj5ik/Q=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.13"; - hash = "sha512-V0exrjENWzL2ktHPEdxW/bdjiPhG+8GymsPPqZosneY/9nnDqAFbDeVgwu4DpDLr/LzWa8Im9W0w6lXVe03Ttg=="; + version = "8.0.14"; + hash = "sha512-qMxM6YNZq0JIh6Vci7Gv+B7xaC7np4RoQSBvVr2v2nFFTrniJuyrBa+SGvyneUbPq7Ed4Y4hPlOIWFIzpaUqzA=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.13"; - hash = "sha512-Qz6KG2nCsFyee92YeedAPxs4tVe8i3CtuYB13A+qTSmIeL5LFbGOeOBdCY0kUv55sZ7s/qHCcQ1GSNCLHydS9g=="; + version = "8.0.14"; + hash = "sha512-aEssWrrvGmUani9EoDXWA4EdAElTtUlYxGvr2tYeIH5sYoWZQUB79C+Y5OuZoM78wr10j8qDs5IYBt7UWcV0Mw=="; }) ]; linux-musl-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; - version = "8.0.13"; - hash = "sha512-Hm5rfo+3bCHOJtoY24Fzqh5/drvQnT+JPblM1SzabMa+f1PYew0gcxGLG6KludoGP9M8aQQhJbtb09EJrINpQA=="; + version = "8.0.14"; + hash = "sha512-OKndBipAQ4NQJeZ3ZkmU/QPyRUR8K1haUQDz7WA7YBRCbWKB9HYjLLKt4gKJtsT/DmpZccpOUfl6FMKTGH5tCw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; - version = "8.0.13"; - hash = "sha512-NJk1E6+TtuZDc9N+tkTcnPhtHC6p1CC+CTE8EiXfUgBVmQUzrF4NX/YZ3kmT572H00X4pbwmoFQrXu2RuoPP7w=="; + version = "8.0.14"; + hash = "sha512-EjnsSr/CNvvGZMPGRbwkYuCH4bcP6Gx/xrex1wCGncGwytU28K/5ukWktNp4yRcHTqHkTFmXVzKeZKQJk8tmcA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; - version = "8.0.13"; - hash = "sha512-FBFmvl5TVxqvWhpmdXkbQvlYBT2XqIv/29u/xeuvNL5lSA1PqMDA8fAeuXzGeGmTZOVvPrjpr6To7ngQ3g6Pfg=="; + version = "8.0.14"; + hash = "sha512-GVRm64/BUwTNbE0Bxm6cyYnRGlzjuKcfOLV5cXvjJGGVtgyH2+d+0jX6VpSmH5HaBk9W/LYgk7Hy5jTFCFIgIw=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.13"; - hash = "sha512-DNEFRTH5gtEM31R4M3KimG6EJltwPFte/D4nqAJb/06ErjEU855/4IgkpHHh6w+y73wvJL2T+o0+7s37VLCCSw=="; + version = "8.0.14"; + hash = "sha512-K0ODtP8Htc3l8dZ9fwmVPKCx9jxxowNM0xg9bTyvo7OreR03vqKEe4MMSx2zJME6s73goB4k3OpauGJeSJIeOw=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"; - version = "8.0.13"; - hash = "sha512-8/B5klBMKulU5Cium01CfdQynUQqMNjoBhgb0KAVfExIQlk9zKeDXVI4ObmvmsAyqa0h/jrkyjb8NF11j9EGJQ=="; + version = "8.0.14"; + hash = "sha512-2/TpOJVsnb7qJyQYZzsm2gtlZfHNGCTw4ZfqtdrzQBgD05CRym1gpk+vABIRuLummvRNxBR1nCjPFKfJvSbKTQ=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.13"; - hash = "sha512-avlyzKD0lmY/sOQMYgzcAUyEhwy9IIuOlmNPHGJgaW170Pwyj9TI1pDLyebHF0ySaBgpGS+Gl5x6UPnIlS/AhA=="; + version = "8.0.14"; + hash = "sha512-Mt7rKMKzhXahi/h+h0ACgp6rrSC5AdP4UWOoLFhKKOT3o89f/YMA9WDPdw/9Mtp6K3xBdTA58K7GNuRombQN6A=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.13"; - hash = "sha512-f+AMJ0675qIFAWUNwIJpZ9FDbNJYsvRwbGXIOUAHy1eh9aJoEU1XFM6CTvP2MKwU3ZPIyBbUr0qbwo72ni/31Q=="; + version = "8.0.14"; + hash = "sha512-JcRtyEsASNBQG84QDvJHpwVv10ec8O6pwsoLltWXYN31aoIFn34LEL81DT3/5eKCkMZwFzM1xywlzX9nDixDPg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64"; - version = "8.0.13"; - hash = "sha512-mJiSalZsnxHGssprUyk+WhXqDg8HclKscJ3Kod+ZVNqvLMIX0HA/WULzrZyfERccXMmlOG8BVo+IHxFnkgMIKQ=="; + version = "8.0.14"; + hash = "sha512-QBFT4LaNOnARh3rg6yB1iGktuQ5sgPeYMtrTQLEYRPFhp7cZPSmJ9zwsB18I+UE+uuhtOusNsR4DjHLjLki7RA=="; }) ]; osx-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; - version = "8.0.13"; - hash = "sha512-fZJ00cBTW5K+NFuKPwTcEhGMvOS3CWECpnFCdEWzcAbbjynTmukixV+fW3q5S+/x4vFnlWX+VDWOHaVakXN3eQ=="; + version = "8.0.14"; + hash = "sha512-dhhL+6wHQYecYgbwiLK/S7NHE2wh6ivd7L1IR+GHmP4N7wNA8S8pxDbM4933Y8X/CTGyNLIU5YAnWB9omYqZmA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.osx-arm64"; - version = "8.0.13"; - hash = "sha512-WWUll8LGK3xmb8ri39/40tkOlJtbwWOqHIpIcKSc9rhD2UzmlnlCkKaeXORze8kcEIClUPok5m1fcOhpmMeJjg=="; + version = "8.0.14"; + hash = "sha512-+2Gr6eXSLt1+5MNbtSLwgg7KBq6Jrjqbp7+tEkRvHJDURI7fZZMv3TB2Ux0dSYi4McXnEZ4XY4DW4hpY2O32BA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; - version = "8.0.13"; - hash = "sha512-K83CeF/OvmznT9Sw26GkAm+zYkrIgqOx8Hy2dLvXZpdOBNe9R8JvBWq0DcIN7ksc+K92F1PxVc2S/pR9ZXrHlg=="; + version = "8.0.14"; + hash = "sha512-QHp/N5r8NaslSYcDfOSOcTYR3/gepr0OdXqR9D4GE0IYSjI/RyiX8LAezGiIWODHY2n1Z5HgbTNs2mqRLuKI3A=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.13"; - hash = "sha512-dmuNR3DsR9BjvayJEEXk74eAZXqYjoPL4tYPXF7QUZ0LQE3WUoTHv4QD7QMEgb+HLNuPDNzHYj8EsAsQ0lZeQA=="; + version = "8.0.14"; + hash = "sha512-Yyp1Zk/U+cazP4MucjE5rZVf+8MNdv7XZiJGZKEtJyIqOCFhhToiZuvMLPFk4PHuduKLyGEpGCQKI1ec+8Ao5A=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"; - version = "8.0.13"; - hash = "sha512-Er7lYCDr0YqkbNCqzqBvJyIExkdtS5YRP5Xjce6pXi+YEn8s/BlrK0zr+/4OJWL0v9pJ3ZIB32QrfA80HxBcvw=="; + version = "8.0.14"; + hash = "sha512-fr+b0nrs26MU8FadCdjYBL6PZuwOw6cgeYMrV5LmJsBbQ5ENntMODYTmXI6WcKGug3hKnfMl77A5dJt5jLoGgw=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.13"; - hash = "sha512-i/WIhfsMSxxxy5IVEtMPjJ1CmOZEEdgNui2TiirYs6AgxYWQE7Z2UDsrTrfaHp4sftG35DpfFtryXZrztRV+og=="; + version = "8.0.14"; + hash = "sha512-RbDgUBV/nywvewQHGuC/DPFmtTSkSkcbe9ZvqW9KTyrNmaJcR5Xqi/+tD8P8N5rlKgtuwABJOLE+vHng5t2bJw=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.13"; - hash = "sha512-lPTnUhWp03b1mMj2wzmiLcDpGA7iqtaDo028cKhAMOsKre8ffyVyl7rwc5c6rMeSRgAB+lj+3qFXi5AgYsh9uQ=="; + version = "8.0.14"; + hash = "sha512-LmrDJoFWBow55Riz3isaPJ732dpchSwMpLqerY5oviq5S/AEAVozlyBBk6s7q4RULcgz0NvJVoPHtRp89/Nplw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-arm64"; - version = "8.0.13"; - hash = "sha512-mhoMYBBulekGcEv29c5H9pXZToA56zKCi+pVqU7q03dByoZ2y2YmFFrfQ1326N+4WdnyjBTITK9txRglF4O3Pw=="; + version = "8.0.14"; + hash = "sha512-uYQFhRmzV4zpDi/avDnvp8UagkbME+2Yvx+rTuzhG8/lNds9a/j2zqaJxCa/JCSOoUs4CW6ZWoTrkELgrt3fCg=="; }) ]; osx-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; - version = "8.0.13"; - hash = "sha512-MbwFIWq80Gc7HR3AfZ0xXJxowY6kaBwyMYJybQetBr8fV51k2NSOwQ7dbbbXQqFAYYbKv4/e+27anCOwUex9fg=="; + version = "8.0.14"; + hash = "sha512-TbKgoWwSO2WUnl5yIwcmgj3y3Yz7+ZtWEjsF3b9OsMDY3cjzF/gOpIL8tqwdylVe+mzgW2XWPmD8BjL5qWycwA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.osx-x64"; - version = "8.0.13"; - hash = "sha512-LStx1UzEEdHLfFl1mqNwZeRIDMSpGbpumQqXOJyKwudmZ9Nvly8xe1DGKHWKUy7bETnwdT+T989V1AHinaDdgw=="; + version = "8.0.14"; + hash = "sha512-VrmBNMU5hsPkQ9DNdqJZ4kZAwF+f3byFM7buUtI+SsFvR5oG2On0OZVCvEp7i0Yrk7jvP78jJLTEokhFN6SSdg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; - version = "8.0.13"; - hash = "sha512-MY7r8G+jwzfr2aKpqZxtLaBSgWoeieq1JYDXaw88Arq+z27I4H3wdztzmq15zRG9R1o6gxSG1/8/0RlZAJESIA=="; + version = "8.0.14"; + hash = "sha512-zlny67SFPuSMLoWVv3kpngYCCfQ8sJb2dRjxyyItmbw8NQiKgIJnU9wT0N24VwMxJCQktlYBdOP0Gch5oSBaqg=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.13"; - hash = "sha512-eZFSPMMA30+lum8u9BXmUu/By8RpfrFWqmI9G6/3aT3fxobup/ohVsW8SFgQ6TQL7qqi9DNmh284jNXxd7IyWQ=="; + version = "8.0.14"; + hash = "sha512-b60G3rqNh0pk+gf2ak5ljYjkjHN3/J4YhhgbEZbbIBcjp2vpdUOPbI/L1xh1VtQN4YmjTpcMEb+e+/DeU49BiA=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHost"; - version = "8.0.13"; - hash = "sha512-TnFmdxCBFtD9CPncmvZRGttCxq6QiYgj0n0lkY4C5JtFLvbjTt0r7DzZ/UHp0sC1fxowhAmpr9a/2GQLQRaAxw=="; + version = "8.0.14"; + hash = "sha512-gfi6kfkLNParYwUH8r00IQEGylbeY8llXfT041rH7211jYTxoRmgjBihu4inAEhBwTsHFXztff9yMJE3rUdWsw=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.13"; - hash = "sha512-snaYORwJAa6Wp6rDdnb8RLibvNUFCbP51rhnZqXA6puxeygsCfcDfMkmKz0i1GvfVpoYAIeaZU2o+Q/kSKL5yg=="; + version = "8.0.14"; + hash = "sha512-v1NnoxlDAsrrtEfCG5LTGQ9ZTX2I7ppNyX5uUQXgcl5tXXnFDpy/EE/WjHtWQJRd3xp05O2ggKtEDJo7Jm8SAg=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.13"; - hash = "sha512-wcHRpb+C+bSXxKaMPkzGyPZJZoJP0XzRgOondr+DIDD8MqarJgGUCnFyEH36Uv9orS/3FufQAv5uQGsdpvveHQ=="; + version = "8.0.14"; + hash = "sha512-la9B4zSYODRaAMPxMtYNH1f6u6TqNC4Xy7NJWflAxBH4AEXajkxLqr9PK8AppSuMYhpos6zt8iqq+KfpTgXvZg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-x64"; - version = "8.0.13"; - hash = "sha512-v8lYi57qnbb0VBekj6GtnTtr0FQMwPtozdrNDZ9s5Hvhb1z8pwYdXtkVXtJgv8q6hhjoaZwKYarcjnC5xw6Abg=="; + version = "8.0.14"; + hash = "sha512-fB0TUW2CU5D7i/w0iB2D4NJQnxj19CwBx8PRag8y7w9C61RMfug+njo0xulzvNZeH04uzIbuQuNp3tpRKmQn6Q=="; }) ]; win-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; - version = "8.0.13"; - hash = "sha512-/T3731bLrjLbWiMLmC7ziRxnVQraFy4OSUircxxMkzEV48uIM03Y7sF/414vjLbtOP4aLWua6fiL7Gk/LKOQwg=="; + version = "8.0.14"; + hash = "sha512-CIaRnasFox5kHq/E5262rehitp6H5Oy+gQsq+0ijk0qToDn54AlGlppWyXE76WgAuxJhqW0yUGs/sK3K/KET6g=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.win-arm64"; - version = "8.0.13"; - hash = "sha512-iXbeKa6+JdsdV4ZBo/hmSHx2A5zKN0XXh0+I3fwJd6dv1sgDTZ6LFOcq1oUVD30XRnbDOYUYUGPodoWQJefJLg=="; + version = "8.0.14"; + hash = "sha512-utSA/7KRJiWA2vMEMRtuc964d8t44lf2QWeF/9mFC+7uun4qMq9YdBPi+oUJ9pDRXcHcLuZxaYh+7ZeBz/gLJg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; - version = "8.0.13"; - hash = "sha512-Mw9nFoDzI11sc/RuquWRHBvwHPvXfzAJls5pgW5CIMTCCk/DzB8Jp6YwUlfS++L/VU/1j+cb+Ecce336Ozh0qQ=="; + version = "8.0.14"; + hash = "sha512-d6uXd6srcyZ5JvqeuxBfEFe+go+u4LnvHnrWq97irDFb60UNoe3Yav489sKozVFdVnsscNRTRRTTvil/7gkwhw=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.13"; - hash = "sha512-LnNGrhF33hiudP8mltLgiIqg8afLiNM264RcfNPZYw99t4rT0OyUuvrtSifpWExjZ3AnTyPWb2ALwdgvaIifiw=="; + version = "8.0.14"; + hash = "sha512-aRc1YhjUgt0bVC2yTZaUJOgTw52/e0nxNlEJwxGn5hNaVwGzVrHi+W74siGImRQgMnuwQSsG4YSAyQXpwx1ufQ=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHost"; - version = "8.0.13"; - hash = "sha512-pG5Fbq35FZHbuGlZeICyGzI/uVE2zi34ODn0sCd5duzt1Jld68r7pSdN+wCzTAeC0rgbZk07g1L5JNbrIJounA=="; + version = "8.0.14"; + hash = "sha512-AP0qvwZug2ADN9Sh9NG7/BcBvYC7bHTuTI0onEBBN66N9VdnOotJ2CVrysqB1fwCjEpKonKjFG4TnusgpI7ksw=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.13"; - hash = "sha512-ayq2R7iJji+qmpTN/I0CqdiTAS+Vyz66MhUlU8PGQcjdzJj4EAxkViExpRsHU+JfJxgK2ZdRmFbQOW/0xD0PPQ=="; + version = "8.0.14"; + hash = "sha512-eIWQq44SnsYJ1oXYcBi4lxegwL+EWCGDdp2I92nsKGPf0YJA4BzeWQH5ovufnbggm1YRtRa2tZOhCQu5zy+1qA=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.13"; - hash = "sha512-8UGHyAfbMnZlrxrLC6elkWv6UBwbleZQeDajV/bceyK/cVkDfI5dBs3MOt/LUWOPBxbpvcRu7Jix8c2Q9Fw44Q=="; + version = "8.0.14"; + hash = "sha512-sUueoH9vKyt8nsyWGAdQMWCKpu/NcFYbysSzkI/IbMQqi8DP3reEHrrUNrMJ+nfu9rEpeMVBvL/xLpEpWZTq2A=="; }) ]; win-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; - version = "8.0.13"; - hash = "sha512-BiodKX5nKXd7JNji43HFVhZwTLNabd9ZHMifgYY2tyTqrDwBmsqmUBF/iODtDIAqHLw1fhIpqbbnBMyJKJZUCA=="; + version = "8.0.14"; + hash = "sha512-i56Ojjg07PJjYCD+DPI5OYQwvnZ9Umvj1FDqH1LMyrlLEPq4XrXtpMgw8OPGBqrDlimxdiBfYTNfHuAQTPOvfg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.win-x64"; - version = "8.0.13"; - hash = "sha512-8XvPrzp8W2jUt++6uo/WaYhg0Hf0fHCPsxaAmxhnbuq7/IV5Iw0B69bvWuyuUiEcI7VYGWheUNmfy3Db+2iu1g=="; + version = "8.0.14"; + hash = "sha512-XhwpOMwc+0Is4Z9+mpnqiw+d7WQYvnRVEcYcR0wBfXnv0uzWfqla780WJpGz3poangeAbI26+DN62iu5S2Uf9A=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.win-x64"; - version = "8.0.13"; - hash = "sha512-PHxRlaZoaexI0Pk/VdEhYs5+k3SVnsVxQktSIIDU62WOwS9LnQ/zJJnvbyCgU5rkuzwES/+Z4lZvBhWohH5WXg=="; + version = "8.0.14"; + hash = "sha512-vn6R6iMz7/xqUdmRBsBYz6e3FRKrbHl2QEOjAOZ0OEEPOHzz+dBwFrCdyHCdseiAQJz91vgP4kCG7/qboGbRlQ=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.13"; - hash = "sha512-BwGWANBtOuGWcyKHPRyC59Xz0Q01gOceosvTsxHd0azriG2j7GdJLWgBndBrk+Dh9plVE56PG/WpR9dCqznthQ=="; + version = "8.0.14"; + hash = "sha512-eb+B+l/xhkd1plaUM2B3dFBawZGN+gyMofPEgPCcIeRytbM80wtnVlDoa6nQuJegnL1q57n8bjT+p5JYW+DAxQ=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHost"; - version = "8.0.13"; - hash = "sha512-fA4AgGkm/30M+H4h92PvJ+wDFvRkodn4VFJWBqwU5CnjQoSAiJtqMNF7InRo8fYScIXcurHabcK8Mg4/zxHy6g=="; + version = "8.0.14"; + hash = "sha512-0uvTv8AAZzBr7H5+N/5FxQ5M4xD3inQQcVYQf/mX86dp0o5RQleCWZAwXAwiRTn4L56DVEY7Kr6rFAn4yvHXJw=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.13"; - hash = "sha512-OuhVyzUqBcj/UK4t7PjBr8xtns/UvQ471V7ggmv7NiguciaqAjZPMYUvlZ5X6BY08gGkW8OeQS6ucLXobymxpg=="; + version = "8.0.14"; + hash = "sha512-7XXhF6/mzm/2Ytupmh31rtMXYZxvnRcbbNFjYGU87CAJiwjdPRmq4c4tMtRe6bXHvtRXVYrNXKLKVeBIs1thww=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.13"; - hash = "sha512-hFAn1Re+hn8cxLfMj2e4oN9lUD1n0hqhpW/k4tTClK8Mol+Sxkr8YgzNIW5CHQYrIrNMWSy93fXTiyuHRW8ExA=="; + version = "8.0.14"; + hash = "sha512-hZzHghZ/bfEWWLDO72EFgnDqdaJawOvMeSS7zX63kXIBvj94jIsix/GCwfFpILnGy0nMbwnnt59iXedRptU40w=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x64"; - version = "8.0.13"; - hash = "sha512-83RSeioZopBFRX5AWLvPT9FpPGv1biseVQzovj5Man3TiEhfSLF9VzrTe+Ag7tVf84mp0+baLc9lrglGep6sUg=="; + version = "8.0.14"; + hash = "sha512-vd+jJiEMJD5VM4En93ZDoewHu0eVoqnLFXP7xQx2BKLjhvViJKQBOjCFu2L8Holt6SneZZxMipwUfNfxFpjY2Q=="; }) ]; win-x86 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; - version = "8.0.13"; - hash = "sha512-PZr+xxwsxZ2WECruHG43ypvNhvEaSwl0aVp6ykMH70RWrp0SkeWDwSiP+U5qcSNzg8G2xZS/sq0pdSzZkdlPAg=="; + version = "8.0.14"; + hash = "sha512-sksqJ2OBKIkDQ3iITJoIVCfTSYgRrSc+vCGvXqwq7Bqh3UR63TeeDbpKfeooN2Pb/VOxrZWiDS0+45ZWFDbL7A=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.win-x86"; - version = "8.0.13"; - hash = "sha512-uk/07Gg+y9caMZyfG7ZRopXpXWpnl4198lkhb/IqEka1Lq2DiN4bWsejbA5Fy6U2KHxSlBr5fQ80JHzOg9atyw=="; + version = "8.0.14"; + hash = "sha512-rV0jSmylGjPRFNMFForGvk09iDkbEnDoshc/gT9XM7O+ObKj53RRQ/95+kKekRx466a6qy9dVRMk8J7UzLZUVQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.win-x86"; - version = "8.0.13"; - hash = "sha512-6n6dSU6+rv4b+6wNj8OOaNjRJirBqVCrsfvSCD9e701hwub5dzUTh80ZueSi0goBmbafwD8clZE3fDoCueIWFg=="; + version = "8.0.14"; + hash = "sha512-o7TudT+DUT3VNCtz/PUBdWHcqLqQ9Vn0P+9wYLNZvLHhQZObfPgtUEnlTC31U/8jQIZou9h0h6orWtPy0Rp0pw=="; }) (fetchNupkg { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; - version = "8.0.13"; - hash = "sha512-AUqe2XlIVMqDvSiMnOL/j86s3s+wS25pwHfYS9fXNF7uJ0KDOHOKkmI/oh9UsOXHp0viCf3VqFeZecYIQ8JG3A=="; + version = "8.0.14"; + hash = "sha512-4sGe+yG1Z71AEyqAxOLjRLqrXctEUtqmMb2Zv3d3ujonYk5lBR9K2M/nMnEaXgKW5OAKuxwB8q3KVL+yI3qgfQ=="; }) (fetchNupkg { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHost"; - version = "8.0.13"; - hash = "sha512-FfnHphaf2+fPOm1Sjer2IC0r31V3IRx/yaPFCvPuTaieuATQ1OLqBN6oomFTySaO6nLcqgcJ/Q8UmuScsEFfnw=="; + version = "8.0.14"; + hash = "sha512-rO2v2keP9iKF+o87Vw8Ch9OiP9d5RhEDqiDy2Dlu9Gcrvev5EpFfmVrxc/Meyv/xS2kzqJG4wRP7oXg8wPGIuQ=="; }) (fetchNupkg { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"; - version = "8.0.13"; - hash = "sha512-OFvAeGSGCK63/9OQQcgYsVr0acd0BjXQMqPXvfafbkO4SxCK8Vs9VE7DJghYesZ/wGDgu6zuHfIfc+/LkJ8m+Q=="; + version = "8.0.14"; + hash = "sha512-lvLGXYrDY25aBwvI8RqTN/I8vGDC5pw+v2fCXoA9wgtsPXgaxzb/mYZojwmDwRHTm7N2BWXdd/fRVa90YkDMkA=="; }) (fetchNupkg { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"; - version = "8.0.13"; - hash = "sha512-D2dx4sp/lUJ7S/bMCj6ZMLxZ4OY0O1hazlwpUgafxcfQHXia4lV15iW/NiuwlTf7RdyXLwsxR5IjAu1zk3tyUA=="; + version = "8.0.14"; + hash = "sha512-PnHB6vviwkg64h/aNWoak5gMWOPjVpEyT9S4qzPxw4dbh27pqfYclB3oj7HEBAG+PquRH7I/nozeyE0ZXl5jDg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x86"; - version = "8.0.13"; - hash = "sha512-a88O6Ce4XyTTejrznAhAKyqssctCpHgzt0XPpe/GPpK09SP5n5lDIxBFw6DZ3AXRFdsMgQFKV7o52DqW1Fvqow=="; + version = "8.0.14"; + hash = "sha512-BceK5BaK2mHRJFTWPrLZ7xBD21PnDrQr74mlm9Eiz17Ka0tQ0aYVCbNY4XTpILlsJ2FNLNEWlVBMIz4yk5JCkQ=="; }) ]; }; in rec { - release_8_0 = "8.0.13"; + release_8_0 = "8.0.14"; aspnetcore_8_0 = buildAspNetCore { - version = "8.0.13"; + version = "8.0.14"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/2c764efa-2f8b-44d1-9308-87dcafaeff2f/cd8f6383aa8adb1dd9493520b57f08ef/aspnetcore-runtime-8.0.13-linux-arm.tar.gz"; - hash = "sha512-3lo9z6uqfwGq/7eLIVbZ151hTw5S6+YZZXByVoqw/Ef01T57V3p2IjklAs06c5QAr2wmmZJHzFDCmBO2qUz80A=="; + url = "https://download.visualstudio.microsoft.com/download/pr/8e39953f-874d-4d34-a41d-2f0f761d9657/0ecb320781f83fb3a94620e1dae6fe27/aspnetcore-runtime-8.0.14-linux-arm.tar.gz"; + hash = "sha512-F5QB2N4T4g5OefzMKdYEdm5S1cFzKQrvE5nkGZuyfyn2bF7ky6ssH0RoCNQPyvk/tBagQ2i2OHdBZWBT5AUl8A=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/3167f98c-e2ef-4d19-bd00-178c27ed7f3d/8f9eb25b9899009f11ae837612b52c0e/aspnetcore-runtime-8.0.13-linux-arm64.tar.gz"; - hash = "sha512-1nEwMQ6B9yfx1IBkY/Sa8Y4BLW3HZslAg4hUkis6Pn9xcch9WVxNwJ4cY0cPrjAXtU1RvphhiYUSn/N9alrAsw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/c7cf0f96-e75f-4376-9f4b-fb10b2129d0b/a0eeda2100a9fd1858b95c8d9267fa51/aspnetcore-runtime-8.0.14-linux-arm64.tar.gz"; + hash = "sha512-ZMIkfKhMzhNSXlTi6wYsol1/hDW1RUNEKxFnOQbumYsUcyGucgkg3rjtlvZsHukXx76puQs2AQjgRThOjaRJIw=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/2115caf0-c47f-448a-8ad6-107a742d2b9e/52036588ffe8f8abd87a3d033fd93b67/aspnetcore-runtime-8.0.13-linux-x64.tar.gz"; - hash = "sha512-eyGv9Fw8p8zcBSfG3gXCCdWKVqFc8Q5lZSImH4hM8nKpK+E2lrGg8a4rqqDYJf/aWNlUhxoXs8OoZZqfOjbH5g=="; + url = "https://download.visualstudio.microsoft.com/download/pr/b901af61-a4e5-41db-9402-f6a035bf3ffc/af3e800d44ced22133fd88f8b7bc4ac0/aspnetcore-runtime-8.0.14-linux-x64.tar.gz"; + hash = "sha512-uM0GQMKnOCMwtEvjEwMn/wA2voe2IPm4rluFT840a2BYbde7pqaE17BR3JNAJRcMuUXEHqO8khFbMOZ+7q+5IA=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/d0f6f5ae-d965-4836-a1cc-97e382e9e919/9bbf8231f856157d4538180e92f24b53/aspnetcore-runtime-8.0.13-linux-musl-arm.tar.gz"; - hash = "sha512-IKYyJAnkbwZPc505SNz6Nlh507/B5wTsJPdKzPnI9GSsV4LqyIzr821nMqPUXW7/K7SonjkDIzIojeJeQQZboA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/9a764ede-3005-4614-b89c-596c4edd9817/c0d09b9f210a508b88f060761bc7e055/aspnetcore-runtime-8.0.14-linux-musl-arm.tar.gz"; + hash = "sha512-5PhLcHLHDo52qM7uCg5N/3ueRsqg7k6TiC0VwL/w5Vg94W4YHCaIC+zs4ASAeF31eZaCAo15CKs/KmlKoxRWlA=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/9f700310-0300-4863-aa9b-469020d64bfb/025c0192fbc5ff3fab066ecba8cd76c1/aspnetcore-runtime-8.0.13-linux-musl-arm64.tar.gz"; - hash = "sha512-zsHu/r/5w7hYJBf8iDzRmlzxdB8A7V315Cojk5jDKG+fjh/myaZf+9dvqVMYzyP3lB9H9hMvA6+8H6+jpIYBxw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/6051d61d-3546-43c3-a3a5-891b057dd240/59190faa572d9d8e6140e59b4da88787/aspnetcore-runtime-8.0.14-linux-musl-arm64.tar.gz"; + hash = "sha512-28bb1LuuYTe7COEV3SrWdcU3PD1XMCPO8LvcBQAOTK3y8xuMRCWuCGvhcSocuyFb+yrRnNTmXEsT5OoI8ECNcw=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/e3b6a163-097f-4fc4-9ac4-3e42f5d98a69/8ca03a327bd2dcb6b55ac066b54b99a0/aspnetcore-runtime-8.0.13-linux-musl-x64.tar.gz"; - hash = "sha512-9JksLLyAGTeK8MhGPTbJeMqpQ+U9SVIgN7gC90duydgqb2nfshePgvYZvO3WYg/wwaugJHYIZOsPc85wwE/Y+Q=="; + url = "https://download.visualstudio.microsoft.com/download/pr/5de0c7c1-feed-4f36-9207-fe89719ea60d/6504c97a7a7ef10c9966216e1ba2eeac/aspnetcore-runtime-8.0.14-linux-musl-x64.tar.gz"; + hash = "sha512-bhvg4xBpFP6G3cfrfHUxv3lDXttEwpO1shdQicFlncL50xPOID4E8Et4Sf61RNQ1aMdOrh9+gB2snXQtk7fG3w=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/a91349c2-bbe8-4a89-a5c1-bf42b6916fed/9d25c6514ce8983ea8fd494ef8491bfe/aspnetcore-runtime-8.0.13-osx-arm64.tar.gz"; - hash = "sha512-RqGbkmHxPtWFqUpzJdsY1ifYRqNtlbY0IRNv5vVVfmWSXjluFAD4+3T1CYEW4g6JUEwUZ4ibRhjsrjqat5k7nA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/f9e2d7a3-eb31-4caa-a9b3-df82114818be/05f85cfb2520e3f3a69ecb399d4533f6/aspnetcore-runtime-8.0.14-osx-arm64.tar.gz"; + hash = "sha512-4xHB/BJ52kjjTteNsNWyl9BcpbHM6lcCpY+GJKljMnRptVuhkuWE/xo2BWgm06nlUIV6ZOnVVhbVyR7YEedLZg=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/08747374-3c8d-4ff8-9ccd-76428ede4b69/d09395b7026ad4825c0fa73342f98a42/aspnetcore-runtime-8.0.13-osx-x64.tar.gz"; - hash = "sha512-umZ0LKuqeo4/9SeIpZtbprPrrEdOYGREYjyZGeJXsgue3XTpxvDSMs5+gj2/rXaH4klc0tcL9GZJ4ZAudLZMDw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/04d7eaa1-cc07-4462-96fc-e0773f598da9/5936bc22cd233400d9d9244ecffb6b56/aspnetcore-runtime-8.0.14-osx-x64.tar.gz"; + hash = "sha512-7We7cSuXEdCJE/xIIwi5MER47bvIUp8IsW06SWSqG1rb88EZu809IVU7jwR02Q5kODBlM+kxbYVfX+9iy7kkHw=="; }; }; }; runtime_8_0 = buildNetRuntime { - version = "8.0.13"; + version = "8.0.14"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/e42f6ab0-c3df-46db-83dc-47205f5cb6fd/0c1cf07866e0674a18748cfed2b747b2/dotnet-runtime-8.0.13-linux-arm.tar.gz"; - hash = "sha512-XQGPtQ7qlvPppWFCICzLHHOnJSGdclew3rvu8+8ZbGmwdrmN+28JiBjAUUCE3zP2cEvBOkeNFyewEta6nuoEkg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/c3eae65b-60c5-4f4c-b466-e2671fa9e044/ca57cc875f7991917e6542fa404e94a9/dotnet-runtime-8.0.14-linux-arm.tar.gz"; + hash = "sha512-a7sO9NiFfrub2XEPzpha9h7wSUrnlJ7CsB2JUbFTBry57E6ORerYATgo36kuk5TWvrAa1fxMauKj+5kWR2sWYQ=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/7613adb2-d77c-40ac-b9b4-28f0f571489c/0943d0483052418201c63456b52a1908/dotnet-runtime-8.0.13-linux-arm64.tar.gz"; - hash = "sha512-5sQqwXWCOUBcinQBlAI7St4QF97zvzMFV9wWMSsvQFmb4wqL/I2wVVlknPDtpfxDrxUzIPU3jctIcq8TZ5vOiw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/0e0083e7-0829-4d6b-ae47-6954508bb545/47c8c96704206348f8aced67d9f5552b/dotnet-runtime-8.0.14-linux-arm64.tar.gz"; + hash = "sha512-UZttCmE7GtP3bNgxbCnc9KlPYF42hf+pecxjKzJmbMmzegioSo+bItuovWMRLlxlOGzkt1qPjfUMUow6GjlSlQ=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/d26516b7-7049-4c18-974c-467190461f3a/667fb6101ef1f43f624e175b49f8ab49/dotnet-runtime-8.0.13-linux-x64.tar.gz"; - hash = "sha512-hkntoU6LyZP4yz1CHUSkq7IYrPKZlqweyTloa/ZX51tg8raQGApGVO4V67e5U4bqvJaeqYIJ4x4oAWIP+Q/OQw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/a52595b3-f025-4bcd-a3fe-b6091e276d76/4c0d27fd34b79bf7c21ba401b84c76e4/dotnet-runtime-8.0.14-linux-x64.tar.gz"; + hash = "sha512-W3xzAN0wCEZQoiZbZhjzZvCZ3/KykkguXgXxTzoLCFDGWOzzg2g+Hc5OdTphb9LjwWnBc0pnmvzEwMrUiLn4oA=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/2a7efa56-7d1d-4fe5-9913-bebde112ff7a/959441c7558e14cf628c30ceee03dda4/dotnet-runtime-8.0.13-linux-musl-arm.tar.gz"; - hash = "sha512-qMKEQGzbu475Cu3gqVB96vPO/Hlmyo3gRXa7s7riYLgbFrJEHU1DhXkuzDQX6hqzrs6rVJf4Zl5w36Ve9+WvKw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/b88a6ecc-0c4b-4a7d-8132-f8721d61894b/0d3709409cc78b35be63a2f1af83d71b/dotnet-runtime-8.0.14-linux-musl-arm.tar.gz"; + hash = "sha512-TwcbjlPIBGA3vclFyN1hlV3wdIIOjnvDkiqX/hvMlXRjXJoKq2Q9XU1biSjeEtFENb1usJfBib2FDU9wTbva3A=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/88255cf7-e65f-4fa7-b9ca-5d4ce68ad28c/4f0cd54be0d4c52ada9c105e8641c434/dotnet-runtime-8.0.13-linux-musl-arm64.tar.gz"; - hash = "sha512-e0aRlkle0A2c+xZlWHBMIqxXK+EfxN+TbYaRLZwwaxAbo0EbaOlcjRmfhrpIyqQtnisGjOrie0c0fcULe5atGA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/4017f053-7dfe-482b-a7d8-7302765e1753/61b9df3ac4ca545508eec68556c4ee1b/dotnet-runtime-8.0.14-linux-musl-arm64.tar.gz"; + hash = "sha512-tCi21UQUr1FHu2qAb5eJRVQLGts2pdQy2U3t63mOLP+iec3zJ6VGQ1d0O1JnAEh6735rEYzuzZ1LYjQAsErl2w=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/c02c39f9-a695-4924-ab27-e1935b9f1bb0/860d07a99820abb189489d8e340e01b9/dotnet-runtime-8.0.13-linux-musl-x64.tar.gz"; - hash = "sha512-+sennennnKBVg6ywTAhrGlc62giVt8cwF2wYHw052oKsK6VCZoHe1tWx2QTpfFhQgsybVtjFIH/uPpO4ixOVBQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/3bd37eef-8186-4ffb-bd71-5385d93463c6/76615b9cbf7057ab7a57dc661c28a4f4/dotnet-runtime-8.0.14-linux-musl-x64.tar.gz"; + hash = "sha512-+d31mYTqlpKmJMoeevJ4NpPFZJeer0YN1PuztyBw+q2h7jaiCJXEksiG8GGr8Nu4MnsfjgWBy+SZFmbwkrCXiQ=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/dd971173-c30c-4fdc-aaec-015aa6a5e149/dee0d19d43982cdf456a7ab9aec99094/dotnet-runtime-8.0.13-osx-arm64.tar.gz"; - hash = "sha512-eUjTe908x/ovDVO0DhmXoQQLhm+UKoLrfjNJ2jiPYUr3iZA4ZIO8p4miK0GwuPXCUWC/fFgSsffzlK+d8btadA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/20e4640c-f87c-4371-97e2-68937dacd3f7/7a0ed049cb85070c9babb409cd0106f5/dotnet-runtime-8.0.14-osx-arm64.tar.gz"; + hash = "sha512-mpd5c/BPNdXWNCQBdL7tOl63gh6QVCIknulJcrlpSCUoQ2IHgladn4hrd9fWqz809VXRHFGxEz5EN8A5jBQkDw=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/0803f323-5b8a-4891-be36-731d42760b4f/13078be8c22cc327924445a898e74995/dotnet-runtime-8.0.13-osx-x64.tar.gz"; - hash = "sha512-iRZgXw1wKKgZAqRpLKY4ZSGJKr9NwgmDyI4EchA2h4sE+AoLkyneBSSr5ESKWShFh8SLc4CA1nXH51PjjX2abA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/521020c8-7a44-4b39-b34d-8c82b1b8a5b0/d5e9928ff69dcc6b2c491fc87853109f/dotnet-runtime-8.0.14-osx-x64.tar.gz"; + hash = "sha512-EQ3cJzWWdwseY4p7JGS0nGq+m7zBJB5ER8lJuh2a/gHpVk2d50hSgbXeLGwidG1hVtIZMzK40hK/+kLbulToMQ=="; }; }; }; sdk_8_0_4xx = buildNetSdk { - version = "8.0.406"; + version = "8.0.407"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/18b5dd5a-24cb-4e2b-a440-1089c67d112d/dace5ece95d3ba00c984c41c52ae2e4f/dotnet-sdk-8.0.406-linux-arm.tar.gz"; - hash = "sha512-GKK/V1ptiVzgZxsi5PCFMAOSDwt/LzP/Ra/FHTRFO/1rh7KqXlM0nQxq6fbDf2Zj03+Hou5UTImn9bqI1vZUCA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/fa0b945d-9b0b-4997-9078-62f29add55fb/d147deebe6632cd7d9c4dba8a59c525d/dotnet-sdk-8.0.407-linux-arm.tar.gz"; + hash = "sha512-SMNbsTzIS466CWhVSDIQLxkOlOmsPhT2bFgUlt6gag1/i1b8A31XFuBCUPJUMW41v8EDXze+2/f/xc+HJ4MzSg=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/50bfbf66-b057-4bec-a9cc-69a43d4b32b2/489a1c7042dd654df0a71bcb9813067f/dotnet-sdk-8.0.406-linux-arm64.tar.gz"; - hash = "sha512-m5OfCfvaiggLEmaRTKAsTWCpXoX6ahNEw3jTlGl95pNet9lB3Zo665d62jqrVhxhSl/puXOCSJnLAqp06cCZiA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/b24d4004-0073-4edd-9993-92fa5964eb94/2db4e2aee247349677597657d1ac467d/dotnet-sdk-8.0.407-linux-arm64.tar.gz"; + hash = "sha512-fZi7U2yJnebFYSsFQ97zp2yaJPWaD8KzJnHh6YBjxv4X/nCv47ruOPB00LR+7Vd+mJ1tB/Qfd2AmeLTt3d7aCw=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/d2abdb4c-a96e-4123-9351-e4dd2ea20905/e8010ae2688786ffc1ebca4ebb52f41b/dotnet-sdk-8.0.406-linux-x64.tar.gz"; - hash = "sha512-1v3P69DfRpWfeFfPs76sfebIhDUV7OKLJIAnZf2c+2x+lwGzIBNMtJBzIpN6uJyukU3cIb9IubYxPpqa9cHySg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/9d07577e-f7bc-4d60-838d-f79c50b5c11a/459ef339396783db369e0432d6dc3d7e/dotnet-sdk-8.0.407-linux-x64.tar.gz"; + hash = "sha512-62IVPsyeU6VCL/RPHGlmqJ7kQqkfd56XGqpHrWpmuxMa+bOOTKASVnVHuTV7crBHa3fStzmaOKkiSo5soCqBVQ=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/542665a3-2d4a-4d29-bbcd-4ed8b8fcf247/2a1d158de1064dedef1d1df00335b172/dotnet-sdk-8.0.406-linux-musl-arm.tar.gz"; - hash = "sha512-xDOK0Yri4EJcTp1tUd0mYhfzPntkdUSDpuszuBuW9ugIYxQBBzAWYhHLlsyHyaR/t2rvw0MbA/KFzcriEZp8vQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/172bbcd2-e565-4450-b321-bb53a461c8c4/f70be49b4c0793de7a432db2c4e8b597/dotnet-sdk-8.0.407-linux-musl-arm.tar.gz"; + hash = "sha512-pBa9wZSWwah4L7HLyWh/o5qWq6VuN8AFwbC01AGeQWeikt7xWus7ZcJR0X7BJr8adzeYkdQXl3owLDAGFAwZKg=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/f7de890b-abc8-469d-b019-a974ae2bab28/7ebf3f9b60fdcc4eaa48ddf154658260/dotnet-sdk-8.0.406-linux-musl-arm64.tar.gz"; - hash = "sha512-GWH+w/rmA5E0pVLRnoag6TAQ/I1dPUwilZ7dtFpR7rAMRwNzE5f/yoAgZNc7mEoaVX3apoN0tanaAU4TW16nUQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/06f9f71f-1dea-4ab2-bc97-a718696e9981/e7e0d054b5c8f414b2e8284698877a85/dotnet-sdk-8.0.407-linux-musl-arm64.tar.gz"; + hash = "sha512-3sxQEJlMvhTxQIn/LgFJJwC3IP1LTf3/VLoRlVsZN3WzknDauzEOKQp8Nx4vKXihAkEGeRHf0OfWe2mabM41WQ=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/31d8e702-aa88-4d2e-8346-59943c20aa82/cdcc353bf803f5584a823a866c969288/dotnet-sdk-8.0.406-linux-musl-x64.tar.gz"; - hash = "sha512-DH6y41MPlB/ButQ94fsIqk0jCYr0fgSMujJbPMSAd8qxtuxjWc3IjC7PZBPRusFKQ5h4sg1q2yxiKXRgGMLhMA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/90b0107a-bd0f-4150-90b5-f02fbe4967fa/eb6d17f541646c866fb1887631462820/dotnet-sdk-8.0.407-linux-musl-x64.tar.gz"; + hash = "sha512-odW2YPn0P6m4PDws/lSzf3S49ObIoArG8P0yA4WOgvPm8m2YzajunJxSNHjbMmCEjuuq0VsoaUsjodSSZjspnA=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/def16517-1bfd-42a2-98a9-fc2c2e95f47a/6ff352d2eb373495453fe9e4c220493e/dotnet-sdk-8.0.406-osx-arm64.tar.gz"; - hash = "sha512-29a/hwyhd2qPRjdmvF0LWErGNulH8tomJwi3myHUhHXR9q+DLfD1CeBLTnHZuyw3d16YeGKd6/ztfrazdsLESQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/498ba09f-6b60-42a2-9806-7b548ab9d9a0/9108cb5aace61efe4c9bdb33232e7daf/dotnet-sdk-8.0.407-osx-arm64.tar.gz"; + hash = "sha512-HgyN6+NI5+bcP7dHIH6UtbjFJsm61otEZUSbjHvCqyJZzwREr7OUZgmUf5YLKXKc5Yqwe0qJq9uFwDvqw7mdvw=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/23552ac2-5161-402d-a7d7-397c909d945e/28a0315d5442c2a4da5374e421e41e3e/dotnet-sdk-8.0.406-osx-x64.tar.gz"; - hash = "sha512-nBf1xz2zViAahWEMmUA41AZY0PaQprA4GHiwJsNd13WXE2qlboOdY5ou7OTPrW2ISGdVw/q2oaQkCqeTy5/rSg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/dc1f1ed9-b254-4d4f-bd00-2f598cbe4222/ff4f618ff75630a971b119d1d179fed7/dotnet-sdk-8.0.407-osx-x64.tar.gz"; + hash = "sha512-aRWTXPA3ulgKq3XwXsuDrrIyIYaQlgjr8rhxPVvxGIM6xuDgju4HWk3EDd9fuIYyUel3mQbbMd5vPBS0GJH1BQ=="; }; }; inherit commonPackages hostPackages targetPackages; @@ -743,39 +743,39 @@ rec { }; sdk_8_0_3xx = buildNetSdk { - version = "8.0.309"; + version = "8.0.310"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/099e0b19-f77d-4d12-beab-83aa92307726/daa887cc504b1faea56de7a422bd6be1/dotnet-sdk-8.0.309-linux-arm.tar.gz"; - hash = "sha512-S2/S+EMQCQ7SkEJiRL0/QRUCHl+s+S1m+x8/VljkJ9syV6X4dUN0NXKWY8UfXol5kOTv6h6a/JptqaoT22wN3g=="; + url = "https://download.visualstudio.microsoft.com/download/pr/71352a1e-a3a0-4166-8bfb-7da568f1ae1e/2c97e2be425773e98e9b901eee08fcc5/dotnet-sdk-8.0.310-linux-arm.tar.gz"; + hash = "sha512-tRK1PtlNIShGSRAK1IsAdb4AEKxPpzArvsD4AuPUc1kLTcJb3sKygsYTs8PNtuhMseskEb52YTiPwFHwYQ+OWg=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/bce5ec8b-ca1b-4186-b059-82dbc61d3482/64f97623037cd1975e06be3304f64e4e/dotnet-sdk-8.0.309-linux-arm64.tar.gz"; - hash = "sha512-QoGJHp7x5QK+/nvqXl8//oQRBYNhHx/EZ/JbKLf5Xs1uWMHFKoKshgS7M4Bvt1MhqrmvqYaXvdsHLLBGIQFStA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/a38ed9fb-22ce-46fa-a0f5-d79e9e0527fe/ccce056b49040f162445a2218010162a/dotnet-sdk-8.0.310-linux-arm64.tar.gz"; + hash = "sha512-2At0xphq8g3P6jnap3MoY8lxiSjSGrbq2nTD8WKePqqtmO9I8ToOlprho141UzXjtGaF9eVnlFRXAxLjy00+YA=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/54c4141f-ffd9-4492-b224-50edbb478d50/5a9a16cb9918e3035a788f4f294225db/dotnet-sdk-8.0.309-linux-x64.tar.gz"; - hash = "sha512-8hOqvH9FjOIMoQ9yp+YAApfFdzfmGBgAXvA8RckH0Ls3J8+egoyrudbT+zvaSrwYvNjkU7xaAKxNd+YrMjf8tA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/cd4548fe-6343-4e04-9e75-1a5f4d05cb28/cc7ea3e1cf2674a9c737b9b7c6957e4b/dotnet-sdk-8.0.310-linux-x64.tar.gz"; + hash = "sha512-OaXhTl0WES+OhlvaiCKfMvaIWPgCIhMn0FfLyUHLsIIiGIXg213VALOZqR9INHYLW0/jvcjr0DRqJCm94UJSzQ=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/72f58242-4dd9-4e83-a251-dd331bf84895/724c31f93ccb5468646c0596846abeec/dotnet-sdk-8.0.309-linux-musl-arm.tar.gz"; - hash = "sha512-aBRheF0bKrfEAwm3LOcC0BfpV+LG6gwrPqPTlyIZb/mrZgSHFexCPOi5zzVCriTkKxUi0Xw1JMFzzHqjVCjFEw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/0358843a-7c5e-4c77-9b03-454aebe0e587/42e7d1266fe00d3931978d6333fd49c3/dotnet-sdk-8.0.310-linux-musl-arm.tar.gz"; + hash = "sha512-FmDxLA//ttr6TBgvMZCg2FMQy05CNoNnHnOFS364ypZIWQ1j5kf3+StI+mPL1s3/S8p3Lo74n3cQhUaX3RVEdg=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/b43c92c1-69da-4ec2-8f31-2c214e1e19dd/69d274a6bc86ed72f7191726918377f3/dotnet-sdk-8.0.309-linux-musl-arm64.tar.gz"; - hash = "sha512-2+J98xfPaqFwHQjNmgdB5o66JNX0BAlSeVtzVRS0cdMmkEVRwqNJr8Od2zdzOpB8Z/2ewgu1RcKQIDc4QhCt+g=="; + url = "https://download.visualstudio.microsoft.com/download/pr/611a6103-f9ef-4f6d-84bf-a39ba2a4fffe/ad1b2c86159f8e729710625c1380e9f9/dotnet-sdk-8.0.310-linux-musl-arm64.tar.gz"; + hash = "sha512-D1l22bTZ8G4Qxfou1We3LFOncC4UbMamFguOXpw0BDo+Qw7atL0HUOoLkTkDGohQ76eQJ3Jx4X0SHvGNHAGFcg=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/de135166-9d03-40d8-9890-bcc49686d2e5/52222baa4072cd556802523cff3fc3d7/dotnet-sdk-8.0.309-linux-musl-x64.tar.gz"; - hash = "sha512-/sYUa1bvfWF06mQoa0Mb/0DH1dyn7K8fYYDH2jB8ue56lAWqkjCFuEmry0EQDKa+/RUWw4ALS7YucTEEyU1MdQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/a8f29f5a-c004-47f4-afbd-bc6ea18815bf/8ee826a925199a3dfee871ffc5967b87/dotnet-sdk-8.0.310-linux-musl-x64.tar.gz"; + hash = "sha512-J3kQGSdBzSBk0CFluOlskP/6KCiqrnMQGR+bxXXP/5eU4Wd9waO21e87NlPeyNClR8vMV6Pz0NtBWRMGtHX7aw=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/3770f177-a18b-4ecf-a596-280060759ab8/1bdf94195662387d2d0fc4c90b5909c7/dotnet-sdk-8.0.309-osx-arm64.tar.gz"; - hash = "sha512-Y5m8756r2FOgnKafFougoiS3RD0ZNVfzvSJOn+b7TQVTbSH827z1qe8hH2GhByoeiFBEr1MdZ4Nc1VwthnrCiA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/357d11a5-9826-45f5-ab7b-edfa85c55680/3a30aabac2327935e5d0476f625d7145/dotnet-sdk-8.0.310-osx-arm64.tar.gz"; + hash = "sha512-rLheK/m8zlS5eGr4PaEIPbJpOMLF/pUALF57LPNlPR3w2C2Ujcm09AYuE0waRpHF2PctecQl/tyF72awuWgW6A=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/a17ba63e-bf54-4591-996e-d74d5e1138bc/343b525bc3bc5d3be10025136afc2e47/dotnet-sdk-8.0.309-osx-x64.tar.gz"; - hash = "sha512-EWcrhD3Yk03LInsGitmRE74mFnlcG+2XkoOvR4AZ/20ApYVhGK5NGpKXg0NyHpOkansng1PTtXE7tRqZATz7ag=="; + url = "https://download.visualstudio.microsoft.com/download/pr/3b7b4f45-2aeb-4c10-955e-6d982d247e6b/525bcfbde20e4593d7bc594ec0625386/dotnet-sdk-8.0.310-osx-x64.tar.gz"; + hash = "sha512-Hywp14OnJAO9N7mXCSd5wR3dnPSJFUD6vZPWVo+LmNowTRUA1/9tJQ6WtyJfaTuahyw+hLROs7Gyj+09m5nPbw=="; }; }; inherit commonPackages hostPackages targetPackages; @@ -784,39 +784,39 @@ rec { }; sdk_8_0_1xx = buildNetSdk { - version = "8.0.113"; + version = "8.0.114"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/b2b1ff12-96c2-4de8-89a3-a17d533ca8aa/d45afb562e840be15870b23453dd672d/dotnet-sdk-8.0.113-linux-arm.tar.gz"; - hash = "sha512-LqHqv9emav1vtIkSujqKemJvw7sQ9fNUu+ir84QcSJ2CGuFnCyxklQfdNKW33GbprFSADK8GT+fGeg8GXGjCRA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/453bbcc5-ef26-41a6-8403-fb99df41967f/30d5b7c86194120a07f06648ff1b7f07/dotnet-sdk-8.0.114-linux-arm.tar.gz"; + hash = "sha512-PuFH16rv/2DIBUu9RXU27X0EilJEAJdVPD4J5K3c8VQRKTjd7jIiqqhxmUM7JoLih62fZu6AsFPHh2BmhfAKbQ=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/617f9650-3648-4813-a80b-ae9376f9926d/9d31940b65fe9e2a4debed7e52779e86/dotnet-sdk-8.0.113-linux-arm64.tar.gz"; - hash = "sha512-w8soWKF91NvqXTxWh+nGSLKLGdtSLwKXBanc9hSH5SZ01aDt3Wx/a83cIpcrTpP72b/6EOKvuv7azjElkL8GCA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/a3897862-f00f-444e-9481-f29be3fe659d/af3fa901741428a9c313bf1e6228e331/dotnet-sdk-8.0.114-linux-arm64.tar.gz"; + hash = "sha512-NADfod1gFgyEFEMLYM0qFfVdlWVAzeGrYzgQoM3LVCOl5g4hSCJEP5S6B3d5umBsuPXeb23kkhkC1sbMkhK1VQ=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/906a5846-9fc6-4755-9e58-5cd276b62752/05b51efa10b6b81fcd5efae1e71b6b8e/dotnet-sdk-8.0.113-linux-x64.tar.gz"; - hash = "sha512-58OBRcqO2yP5mSq6I4tnJe8L/MGGyHnnA8eUULd3IJdomHUaKFhadtObKltJnldj6OshZciKXS+rLDEpo1MRbw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/10e08991-55ed-4dc9-bd12-9cfcf0339ce3/a7741b1daf778ad47d23d49005d8943a/dotnet-sdk-8.0.114-linux-x64.tar.gz"; + hash = "sha512-K7sWZwtsr6HXTfPre0/uobS+yvAKaQ2Brkjknm10IdtmDbjaQrgvFVGaRYOt4PDl4veOx9y86m8b6mW/b340tw=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/fe9c5dad-1d0a-44bc-991b-b7261a101acc/f92f4c4ccd929728a5be49219a77cea2/dotnet-sdk-8.0.113-linux-musl-arm.tar.gz"; - hash = "sha512-qN/OC2Q60jySwzz6ajYmnT0iy+7BzbUGGhw1+Syg8zd4sLKN2f/xFthUUepH1gC5t2LhN0q/9FDqf15gNueSvg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/f3ec51aa-e1b8-46bb-9985-c0bd38621c7b/a99f10edc0159e8a0786ccad88d10aa8/dotnet-sdk-8.0.114-linux-musl-arm.tar.gz"; + hash = "sha512-25rJV8PkZ2Hu6gtnCujaNmhR3s4lq/SY9e4ssXJy5bp3tsJ//Yh0O5TmDQ1jb6z5qy1Io8SrCljAGq3b2dYWiA=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/6e40c625-e084-43a2-a20a-84ec80538994/f7c8c888a5e65ffdb84b3adadf6c234c/dotnet-sdk-8.0.113-linux-musl-arm64.tar.gz"; - hash = "sha512-U5Xsmc+UiglUUFSZXvio2S1iK33R9nq3uwk0Zj6gZ/+ZKaiYOo3efbPt4KzdSeS/id3xRIcpcEjSjV+047GhvQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/10c607da-0f3d-4bb2-b4a0-a9c527af3f2a/698bd6321bd97e5341216c7c55716211/dotnet-sdk-8.0.114-linux-musl-arm64.tar.gz"; + hash = "sha512-XT9GEcxfpqcIM3lwDHQGXGlfO5K/724JJkdZP72OFhnV46SIHBujDbY3Nj78/pxG7elEjONf3iLP/4q8+TuvtA=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/2db21b6b-c8a3-4963-bff9-51e95e9400bb/16b322c3e86f65cd7c65c78aa114f341/dotnet-sdk-8.0.113-linux-musl-x64.tar.gz"; - hash = "sha512-7BOirKMAOYyHOLHg1Ixu6PfvIY2qS8DWnd/AT+L75AwrLT1rHawZD4P8eUU4TWa0qDCTYy53iG+1S3i8ojvmNg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/d9d512c3-56ad-447a-8faa-fa88f610d0d1/8a0903b787f23367bcda7117e40d81e2/dotnet-sdk-8.0.114-linux-musl-x64.tar.gz"; + hash = "sha512-ZZbCYBvGb8xM+tCpNc6Vk67FGj7CzbyzqxqyHlGZP5eWSnO8Ls2P5828j1VKSE6OkgnwUEtvrAfxn7kXE1HI5A=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/3b72fb20-4b11-4fba-a251-5485e059b6f0/24211930ac082fffd82011261a38060e/dotnet-sdk-8.0.113-osx-arm64.tar.gz"; - hash = "sha512-GCR0ebqmsXOS1tjT6iNQ6leGWAtBnUHoYvOxo7ndZazHMCpqv2t88VnwdiN1aoSYItEVBB5yHfA50Xk4Jg3uVw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/0d2377b6-74e6-4436-b1fb-17f0164647bd/24ac4b3ba73854a076fbb0f99d950ffc/dotnet-sdk-8.0.114-osx-arm64.tar.gz"; + hash = "sha512-VRYf5miw0ogyBrt0zk0yydcBnOG/xmRMGAK1PZh3TmP1hoehpfd7Wd/dvtDCS5g5CHrFoNlYUHzYs8ZO+Xw0FQ=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/4447b07a-1f8a-4088-8de2-cc880f630c11/1738874168616ec1522ed1effecc15e0/dotnet-sdk-8.0.113-osx-x64.tar.gz"; - hash = "sha512-ZPGThYjblhBKU8c4GrFwdJ5cQ2TEmUTcqPfJGNUirczNy8PPcGAVmbMGvejoEISafYt4P6sqve43Z9FJZTXpKw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/24801e69-6505-46c5-a0fc-b45c0a61f939/8e62bcf58dc67014684e15c0cf03ce0e/dotnet-sdk-8.0.114-osx-x64.tar.gz"; + hash = "sha512-2WwKQwCHvbJPLBQvJnONvxsyNlViLoL8azTDnbGTzSEMC204GJ/ZussMTamA8xant0ClTOERJndShMttuaPGJw=="; }; }; inherit commonPackages hostPackages targetPackages; diff --git a/pkgs/development/compilers/dotnet/versions/9.0.nix b/pkgs/development/compilers/dotnet/versions/9.0.nix index 61db016b83d4..914084d5821e 100644 --- a/pkgs/development/compilers/dotnet/versions/9.0.nix +++ b/pkgs/development/compilers/dotnet/versions/9.0.nix @@ -11,28 +11,28 @@ let commonPackages = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Ref"; - version = "9.0.2"; - hash = "sha512-5UdlvQgLHbSf3jWNIQsIgQXX8bpLPwT7Ula86VPEKYTNsxzati7wSst3w84cafWrQMIGkVrOWdhAbQWBM0LAFQ=="; + version = "9.0.3"; + hash = "sha512-E3OzOfnGkPJUNSSgAIKyVov0UTyOjfpp44id+42x6RGg+FISkRrpXJizOUuQW/JMKy5jLrV58P0nU8GNDIWayg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.DotNetAppHost"; - version = "9.0.2"; - hash = "sha512-zkZ5R92aVAnzQvvVo5GEUgw7LtC/EGEgScLcPxcAy9+wKn22ttlC6Y0jJVbmpvn8lSw65k4v4vZB9JTa3p0zVw=="; + version = "9.0.3"; + hash = "sha512-axhmM35J3aoGr/VPqXxkeR+Xr7CP9uqi78w+lD2GTv0LxkOY/DYuOybClrLMC/GNASWFnv9KJuWx0Hzl7XX8UQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Ref"; - version = "9.0.2"; - hash = "sha512-Vj3zAxAV4RbAOv84QgWXFWfAPD2899tCGxAWYoeA4lbK/+piihilqglICYNUOUaOpWZk9lp1JH8YqzvUGL8gSg=="; + version = "9.0.3"; + hash = "sha512-3zbzuylEut+zfT7K+/rfGs/5uS7Zwmdo8/hB1qjp83S5FRR6XvT6B1qr3wTSe8i56f3GAbuOMARTfHKhk0dktQ=="; }) (fetchNupkg { pname = "Microsoft.DotNet.ILCompiler"; - version = "9.0.2"; - hash = "sha512-XMUBd3Zp2dMhtPfaI1uKzIwoyTLml+HPOpokh37gP2XLTyq9n/oXVbsyy4c5Qb9DoArrDxTjH3kZVpRYGCXM/w=="; + version = "9.0.3"; + hash = "sha512-6MfPN+ZYnk81tb12TPEPQQAiDsbHBtaBiKRS7S1cLC6qTrktjWQG4W/T7TBSaL6wndqHzXjeF8cfy/RfT9HCnQ=="; }) (fetchNupkg { pname = "Microsoft.NET.ILLink.Tasks"; - version = "9.0.2"; - hash = "sha512-UqcE/MYZ954B09TZaoWziBOArkLQIjTLTs5j80iqo9G26HkukEvxn4fQ3OG7+hONoIGATR8QAi6C4c5GxRGg6g=="; + version = "9.0.3"; + hash = "sha512-dFzsw20Gl0SziOiYu10IGn/QSV3eG1uzbzABJ1ONcD2EzP1cp/iFRbB0Ya2lo1cofQJRh7tTqolh/zCfFtxmZw=="; }) ]; @@ -40,118 +40,118 @@ let linux-arm = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm"; - version = "9.0.2"; - hash = "sha512-UA3vQVkpqQKjUZMERbbute1QxpwOM8bZjVjcZ7ZhbzZ7mIBDv6XgJPKubLwukk7GHxCkPf2AV+XXm2ECieUjtw=="; + version = "9.0.3"; + hash = "sha512-hWQxrHph22NhpeXOKYn86XZ7IY6eih6jmtbWZVwk8GGCT4ATUC3oHMPLAPNY+jrxrQDJ+DqZo0G+c1nVz8AqFg=="; }) ]; linux-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm64"; - version = "9.0.2"; - hash = "sha512-Cmib09h/yribffQnq5cU6jaxi4DpfhFr+lLaWrxPfVstmBsx/1oQgsWl+U5zSRim40ZdH1EixJoRRbwEhFf1rw=="; + version = "9.0.3"; + hash = "sha512-OejdEW8b0RWHu2UudmWjlJpMwNW6ywPxin5TMUl/5pKXlhNN7lSvec9a2eCzbIEYRHXj69QNsw59+TVdT4ipSg=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.DotNet.ILCompiler"; - version = "9.0.2"; - hash = "sha512-/RkAhGaGWD5xlj+lgwEsje+nHEjauGvK/iNWVSwLyi4FSek38rTO35HqwLZovqKCGJqZQtLQQ3eC6CjHhR7scg=="; + version = "9.0.3"; + hash = "sha512-q1jXEhx165CFWk0StURmNsCTqFoPaRmFiyt+8NjR25FXZnAoTrR68oIu7Hyt6o5qI/IHHNgrmxCAWHK9AOaizQ=="; }) ]; linux-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-x64"; - version = "9.0.2"; - hash = "sha512-ld8hVstWuRRJZodUxLd5jdAPMK71xt30NLeMZIVcFsQcsQ9CP9qt0PpjDyR0y+ZSwIQkm7pnvl7BEq7xTCVcQQ=="; + version = "9.0.3"; + hash = "sha512-gymxE4/tDO30aCCcnVJwJMLvV8Xp+aIkSRz745hVnEpLJaqZ5oLukK0fO8nPZtm++v/YNC2LoW5P6Ru9HlYENA=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.DotNet.ILCompiler"; - version = "9.0.2"; - hash = "sha512-D31woF6UsteTEHnFFxddJmpX3amTkUi/hGvnOt3FX4i6BVOKkqsJIf1x45MQUXf+O5E9q7nDDprgJPxOHA7wPw=="; + version = "9.0.3"; + hash = "sha512-AF2bDbqA3kgg6rqnb4qLyHXjP9GMP3fihlqK4QW9MahOFURl0A/3mdN/K0b761HYVaDILW8NIef6yCkJtMEW5w=="; }) ]; linux-musl-arm = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm"; - version = "9.0.2"; - hash = "sha512-kQDgMou1CnrcX9ADD4nIcy0zkjT65pBlS2GUzoFhXdS8mAqkbCxANlHS4JBCeTZ8eZSZjT0QapAkD7DVKEwvww=="; + version = "9.0.3"; + hash = "sha512-8pyqQFpZN0NbjbmkwXwTPvGEh31i4TAQYchTJ2UK85UuY7Sm4j5oXen4Q/OVkY0g8h0hZWT9CACuQ3Jr7NfchQ=="; }) ]; linux-musl-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64"; - version = "9.0.2"; - hash = "sha512-gacWyUCxmriKo66scvwafULnOI6xClFtKAqIymOx0os27ZJD/SPEvDdkPKykkqSCNPse00qUW/W36xgcfIhlGg=="; + version = "9.0.3"; + hash = "sha512-EjRtRo4tH/dmuyv8YM0CgvPf5S7Ay3tLNXRxc94jqck+n4/OrGIHBoa/oPGwJuMvPSCxY9zHSWIJn2P7A272qg=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler"; - version = "9.0.2"; - hash = "sha512-wbdVbAVjSh0H3TXg8BywEiAtAwCjcHTKYNIhYscjhWaXRW3fm6Lc7Cud9XUsaiM4K7OPDzWfgjGp8CTydvccYA=="; + version = "9.0.3"; + hash = "sha512-RvGwagxPE4Aoe35Q9uCIonR5WEh2m/Deg8lRwF1ZIYzOwRvJrfQJINWS2/THLjH8Y0aK4/UaIMhPVnQ4gjVB/g=="; }) ]; linux-musl-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-x64"; - version = "9.0.2"; - hash = "sha512-a8M6vtlcxrbJ2J1E0bvNTKNj4ryTw5fUeIdRydIY94TPWKfU33BB3GGq2VJJhgRObKZx4+OI+Iv8k7BAU9TCuw=="; + version = "9.0.3"; + hash = "sha512-tL9b2N19J0mV3XKayoqknO5MnpHy0mbCAicb00zJtNXsvl6Ju5vbJDe6e3Y4wY7WjxsQsbciLqgcVJ/nwkkkRA=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler"; - version = "9.0.2"; - hash = "sha512-cv0CJDz5owemAyOBOMXhVVaavPgs/H73iSwcsv7ddB0BAxhH9RarCKgX579cKbeaD+gtCdZkT7pNN8lufUAPWg=="; + version = "9.0.3"; + hash = "sha512-5GVD1+N6Gh+1hgrEANxFMC80rA32BeXduOrPQlHDfnLX8uMvjie/A3LwGHtHKuTKu1jB9gM4UX4kFTrZZAEl+A=="; }) ]; osx-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.osx-arm64"; - version = "9.0.2"; - hash = "sha512-SXlfpzNHG40IJq1KE9Ypc4pExnlY13HECPQ7F1hc0u55LGWoEieYE4se+rZq6ygpfY+lG8jYXhYZ38dX1iz1VA=="; + version = "9.0.3"; + hash = "sha512-w/eJ7+woFCgCQbCifjYKZ+mxhv5FfE9hrCv4I8p7jthDCsHc9XxHXs5FQrtXQ/Fpx73TkMutQZE068ojI3ZpOQ=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.DotNet.ILCompiler"; - version = "9.0.2"; - hash = "sha512-OmoWAZ9xkufpTtLaSGPKmJBq4Fhf+vSxPjACtDUO341k6rGXt3KTtgv2Axl9hERQIGxJIErGDAfB4Kvtpaxe+g=="; + version = "9.0.3"; + hash = "sha512-xb/T2/FNBzYlYqZ8Xvq1qexxU6WyVwJsPF3kEPYKEWClWD+xasDN+WogRpmVkkOmPG4Kv3nXm5yU+yJHMWjFcw=="; }) ]; osx-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.osx-x64"; - version = "9.0.2"; - hash = "sha512-eu+OoIif75S+08+bSlHOHhb/St2DheAjjP5NyNu+bpoIpjIsRJJFU1l3Ozfsfva8ZolJOwO43PhmSIGBEBh7eA=="; + version = "9.0.3"; + hash = "sha512-UkTqMJQ0E4LkE5cVf8b7YZV0F5N5BT/JikBoO1upsqOIsDzeLmCuRLvwYjOcGaJZqcKbO1Q9SZRLAYN7rJOXTg=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.DotNet.ILCompiler"; - version = "9.0.2"; - hash = "sha512-a80YIRtzJ4liuCAI13NKFVzWXhJH9pIvlPHGC/OD4nXsF3sJ+3xrQLSCSKVRyLoPQzMMhYTAvZY+DnzPEpCS0A=="; + version = "9.0.3"; + hash = "sha512-FIw/8TzRHRerOg0ZUP1299DeAKsusBRkvAXECemxHlquJ4RKYx418sTg9d43MVebOkJPHxLyn3LpFdLqR3hYpw=="; }) ]; win-arm64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.win-arm64"; - version = "9.0.2"; - hash = "sha512-4/ly70hswwZqiiFn8N/hkjQpRl5l/CiYMKjZr2QEmZqOvgwsO/JztISm72sFEnrhl64zZDUsValNspfV3dz0Fw=="; + version = "9.0.3"; + hash = "sha512-QKqWFWPkDEIhwc2HnQ1pqdOWBFWfQsc00UpJfpLGpwFpMsQXtOYa0VCO3LmO5Xm7az9gzIFN27mCgJGmlDYRDw=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.DotNet.ILCompiler"; - version = "9.0.2"; - hash = "sha512-DW9WHmEenrCXtzxmU6k9M/YeypSgJcyJ2YxLSVpzgc6yYUpLloS3eZu000bdNuqJjmRsMbO+YbeDlXvofsJMaQ=="; + version = "9.0.3"; + hash = "sha512-4+fnzBJAnb3EAcpAaWD2wIxHyXejdhy5kYA+PoYlvrRJnCAlEy/UQ5rZe+Hkydbw+X9dmCdwKgrbDmGPWEpkTQ=="; }) ]; win-x64 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.win-x64"; - version = "9.0.2"; - hash = "sha512-6npczhggIdAm8+WV/58LMfczmhac4PruV1SNXRrfEdiu83eONsiXU/RA+79hchTPIjoDx34sAlnQlFv3GJPUEQ=="; + version = "9.0.3"; + hash = "sha512-ADttt1LWnAu4tLXaX+TQQhpSqwmmm1xUb0JUG5kHigQ234GmfZVnBxokns9qUYHLn8VQVjWPaaJwqIu1IlfvRA=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.DotNet.ILCompiler"; - version = "9.0.2"; - hash = "sha512-7G8+mwyW5PTEyG4K8xfVvvTWHvbpVDdV08VlbhRqlNpbJlffBtLWaQtnyCt0lPFsKi8w6NT2JEjZYerKsPqz0A=="; + version = "9.0.3"; + hash = "sha512-ZgxiEEJAlPdAr+b9H48cHpwkgWBCUaxoIoq/27TMpctO+2c1GNlf10N8zsWzRPSP8l3COOP4dhD4ykVNVyP/hg=="; }) ]; win-x86 = [ (fetchNupkg { pname = "Microsoft.NETCore.App.Crossgen2.win-x86"; - version = "9.0.2"; - hash = "sha512-xAisQfDV6+gbh0DVYd+74hdDL3n2gu+uwvrHvOcjS0O16xjK8F4v+hQEJ4QAg2/lFKo4W7a4MMH6cg2ICsBFIg=="; + version = "9.0.3"; + hash = "sha512-N9xe7QguNlCPbkrz+ZuHEJwrZFg5bgeGGSAvbsixA8apVDRnAdGA/5moF0WiLYdQkKUvt4z9Qi6EvkE087J/rQ=="; }) ]; }; @@ -160,361 +160,361 @@ let linux-arm = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; - version = "9.0.2"; - hash = "sha512-B2nakKuJA99k9cm+LMPc4UmEP/jAuQpj+yEMTIVsPS+l6kTDXw9ApjJVwzL0V8BwhNxBbV4248SxFLE+aK7jVA=="; + version = "9.0.3"; + hash = "sha512-YrpE6XlixeuXL4zwLmGAm2oJoGH4SSnV3/XP9TXZcS+dnQXrePeQmfXfpePPoTASDGh8dpuQgDVchbm225CLrw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-arm"; - version = "9.0.2"; - hash = "sha512-jz4BsoVvrlBctPmLVSP3+w5Nw02baXDvpf/hzIC+BfMDjupS/MZOKQc1dy8V5an2QIEPqaUmboRtvaMHOGh6Ug=="; + version = "9.0.3"; + hash = "sha512-9a23B/josuFTpPfdJ2pxcgf0HAfiyOIcOwYWsWfTAAnv/4eDGFUPYEynvmgqRcNVWqrM7VTjLOKcIEEzW3uRtA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; - version = "9.0.2"; - hash = "sha512-vvtkrG6HJep4qsNI7PQzIAOnY5AYc0qJ2KQkTMXlFpsg1pl/ZyalXD5xsIfWBPJ7/LfF5dNR1SkG8H8sCpsMSQ=="; + version = "9.0.3"; + hash = "sha512-7b3tW4P7JJokRd7o/xOy5oddDMLlaRdH/HRy6tDCe4wAg5kJP4uS+ckcQvCHvJcDEUs6Z2mct4F66EcP3WYPGA=="; }) (fetchNupkg { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.2"; - hash = "sha512-yfP6uokF49n0udnmwxYEy3zje+qIlv+oQ//CqXZug9qxPX4DABfSgTixVXdAH01iCtxWS4MDZJkcv3h6oKCFZA=="; + version = "9.0.3"; + hash = "sha512-gaMaIyedjAu1N7KioXJ1Mu7DKPXZSw52tZiW59MNbFL8vgl1kuYsvfgAzfo1CbX/VJaFGIGVtAbsjU96jcbFlg=="; }) ]; linux-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; - version = "9.0.2"; - hash = "sha512-wrydWg56hOFX+IMX8iJrsXwv2rbb5klrPdAov8KqNcYSMUL+RPWRMxJk6nCvsLVX2ISbrEJD57J/xDjB9kTB/w=="; + version = "9.0.3"; + hash = "sha512-fgs41TMsbzZYO+Y8nsBElqdQRX8kKivlky7eLmn64CKcyCK2XwEXo9gCd2V+M76lCQZPbhld7Ve8WGLEJwioDA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-arm64"; - version = "9.0.2"; - hash = "sha512-hkiJZ53XdVrUW4Tbb+vEpoFgS68UcJZ/8OtbXrXCeuKKo0NlFEPggQH9UAeRfHiT1/MxT3U6RmdOwOLPF+oOAg=="; + version = "9.0.3"; + hash = "sha512-ihEXtbA1PQkMU97w4/FgzffkQhsciQtElkfHC07OnBWdXd24mQ6Lw9zGMO8qnKwhlyEUf+fxWEZ2ETp1qMQ2Og=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; - version = "9.0.2"; - hash = "sha512-OhSG4c0DlZ+UsVlHlOKSj7jaJ4ec7ZseHKbBq4OM0uIqDLenhYH99b4e4ZF+rXT9tUdMWlv4KidQY+0s136Itg=="; + version = "9.0.3"; + hash = "sha512-j1zHS7aj+DQwfRbuxEZ6rgU2iC2rJBF5SMQQQczJ0HOOUcD+zXlKQ+H+/Mf756oo6wA4CTvx7uHwqMcjvoKg/Q=="; }) (fetchNupkg { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.2"; - hash = "sha512-mkwMXr+Pnm3I+Urp+TZEFGqrPtflW0Ja/19YpnYDrjKhB/OxTOotb44sRmZFfGIcxflR8e2QK5KVawSz8ulSWw=="; + version = "9.0.3"; + hash = "sha512-/iFwjJ2QtAYbA8tdHZ8+O58qBS++vf4oRFfvXAR0BpsnEG8vOKqb5LJzgVEO49unCHDTvjXB8wI6ZPICOC2+vQ=="; }) ]; linux-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; - version = "9.0.2"; - hash = "sha512-TH4+wHu2vvICyB8t5kWqJosqkdCT4vXVWZh73m8Ddafa1d7Cqa3EMruOX7dBBYt2MdT5IvLNpyPZEKPc9fF4zQ=="; + version = "9.0.3"; + hash = "sha512-PDZm7kf+Eoz1CuhuwnsmBNL/KWjNNb1bRHGgdc8BMlRwyK1vmWkn5QY9lie61rWeXTO5C0VYt1MpRo0qZveUMg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-x64"; - version = "9.0.2"; - hash = "sha512-JPEfNNTf972F9GRgXT3YwkL80I9VySIGliVHp6QU72mgBn/YQtzICLnHdKZLPfjdjLB8jCRHzyYofAjAImdXRQ=="; + version = "9.0.3"; + hash = "sha512-+P1T1dt6lqgyuBJolWBpwPeJ2FDFcEiHAIcHoEjd3Ivzp14fMm3k9gdI+oQqtT7f9EZI8nXrEhoO1WPJNAxfWg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; - version = "9.0.2"; - hash = "sha512-wiVQYMRoujDTzCo7n7LtkQ4LTPmyhDM9/sm3nfKCEL5sAEQFsNTVdPGF5ltDqPHILOjrkOI6BvGbxq7OMbnh2Q=="; + version = "9.0.3"; + hash = "sha512-yjF4CUHrK/P1RoUnbBCm8GuNouO3V6X/fz7R8hKjyTcaOksr06tqWeBdU+FZo3Z9yeu/g/PrVNnMe7/WBPLstw=="; }) (fetchNupkg { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.2"; - hash = "sha512-6jxM428hmJM3RpuvwsRhyjJrsb42+P/fFQBJVb6l7S4zXZHX2yLnN9np2Nbii31w+26wiujl4J8Z3IihJ0q1vQ=="; + version = "9.0.3"; + hash = "sha512-c8tP+xT6eUb4J1nzr1pPrIBWqSp7Boapi5ogx5TW0dyPCqPcEgfCf6U/dMnfFB7KkXuEuKpria6sqx74KlKTuw=="; }) ]; linux-musl-arm = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; - version = "9.0.2"; - hash = "sha512-9OdCIs8uygtDrvr3SrY0s6bl7FnlvEe5sxGjuIqoel2XanAAo2O7YSJrQx8aDVyXkyQnizzlEb16oCA4EWf1vg=="; + version = "9.0.3"; + hash = "sha512-se/tJetx17Vs1rH1UQxfDA/mfMcAbiBrLhRp4p/6O77Kv+GFmcldJ9BJqOt7j/cAec3LEQm6mBdjdJJ5d4ggSg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; - version = "9.0.2"; - hash = "sha512-tCVrizZ+4iH4SDobtoVzqBdOADYfe68bdulktuwUC5sWPW1LHdmGLMSKaJiqupXphuWDOAbHUpGtCzBV9/L0TA=="; + version = "9.0.3"; + hash = "sha512-Ey/O923PsDqLoOfwzh4I8fD4Uodmuc6cY7cWqd+fII+4Fxg9xncR/zeqXTJnYzvcGP0wjJIaObxMJYQr+NqLOw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; - version = "9.0.2"; - hash = "sha512-aKgwBz7d3SEpLl43k7tkds2bDJcjvpQzjUJTaPwR3haX3ueeTO3e3RHKEfSuINDrsj2xBQopQmVtuAAfogtg7g=="; + version = "9.0.3"; + hash = "sha512-3L9jWMQDTdm2XwhQdUYCwI3UHZOgEaz6GxCm7N+1aJ4VzJtUJrAk1AJYDcQ1Es5SBzn9azHaD5Jvr7sgs3Vfog=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.2"; - hash = "sha512-bYxwKSniEPSnPLXdhsNrXM3xnT6BWZDBJAW4EPEsx7+U8ncwQyhck7M/Ta//J/ay8pJNVu78oS31kN8TKFusYA=="; + version = "9.0.3"; + hash = "sha512-y8fpDWmKabnPsYhtOl7DEdqx+nxOHRc6OaRHdj/MXx1uvJj0IlbWfAGAPzKkxk5dJl8Ml5SAF6nVDKr2E8AICg=="; }) ]; linux-musl-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; - version = "9.0.2"; - hash = "sha512-VmF7l4TWo5c/iKCK8ZqyVW8LrsgPRO17g7cGT7+aXFul7iZ8DvHZ92MKvB8GOU8ituiw1DzfshPCp68eX0gwIA=="; + version = "9.0.3"; + hash = "sha512-iwzSMJgMTUSir80c4f4cvvbQqL67pbqmqjfI2Y43++22AOGlFFK4yzT4ZlUUSu+b2CNwKUu0l0QFyVJBAr30tw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; - version = "9.0.2"; - hash = "sha512-p6QlmeC3ZZNFSAN/0KkMHZeYNVY6G0+d65e/wtyGwKjTQ9tnsJ5tmfLxLgSuh5sASGNWTtfkji9WzcrpGrKKNA=="; + version = "9.0.3"; + hash = "sha512-0JZueJahMDZ7GMHpv2fWEyTBTJKpNwyurEIljopDrszGz0prc73DbvEPRhfks5Ts95OraLDARA7aOVBzKWIlTA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; - version = "9.0.2"; - hash = "sha512-q+SsGrAvPxIWpOXxiqeE+f/LSHd7p//ohIfmWd2K1+tk+RO6mVVnAo8LVzoFun2ooLca+nrzhKJgOYziB+gYuw=="; + version = "9.0.3"; + hash = "sha512-00TnMIRZ/h6v6HVdNm9JdSsvQpJLWwlSGF9HDSV6S6GlpV/8Wq1VO40tmdvkqmyVyulslh57Z8OIWKt79TCr6g=="; }) (fetchNupkg { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.2"; - hash = "sha512-3c7noA+xvmQ0jHXPY5sKtsiVHeyTaXbz22Z90kjiruH9eyX5bmx1w2HN3mBjVxWTPA4QulFhv+oHMlfBlK3cEA=="; + version = "9.0.3"; + hash = "sha512-V8iYp94QcK7OddGI3JcNO2a1bGpDQMjj+o7ggc7j01T5g6Ld/BYkuy8A980GHhR5D07k4AnRyx2T/iv7WXQimw=="; }) ]; linux-musl-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; - version = "9.0.2"; - hash = "sha512-Sa8owRalIJoJhmGGVfaqfiQhL7QPn4KOXcitPJYRCIDg8TnZ1VE43uyDgr/UCF6IbR++9m5kPzQIvns8F1Tkfw=="; + version = "9.0.3"; + hash = "sha512-8dhnW0JOG2f2TeaVwsGOtaI3L0DPn1eOJeNbK80q8U2PtBXhO7V1FvDpc0tCfkah2A5vq54yU9dJrfz+TshZsA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; - version = "9.0.2"; - hash = "sha512-wZdjJQJAvvqkUNGNiSi9zwbXEp1wNKCFGc20acagFEq9xAvYBNTyc4L/5BaPr39Rsfd3wAZQGdYx3Zyt2R3P5g=="; + version = "9.0.3"; + hash = "sha512-ix+dWoJN0G0UZaEMCLN2cKAJxSXkyBvUSKOBfdxxdGZW1sv4KSGcP+nDv3NCAI0TBXoR6lyCvqtTJqFFngFIkg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; - version = "9.0.2"; - hash = "sha512-3xhjfDSMN41fJi3wj5IEqfGBRw5p6L9zZxuE51gCHZwCdbl1j78Jhuh0IZZGhfy6TG6AItEi6YpIB5nLq5dIJQ=="; + version = "9.0.3"; + hash = "sha512-4Nx7jIfPLqqQUwBH8NPZV2iSh1bfwxWphJDkftnkdp6F6q2pg6CqUDtv81PDlUsXzzJN7xjqlRqs2bUJkCcmMQ=="; }) (fetchNupkg { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.2"; - hash = "sha512-SZ4waJ4GjoeTc+CY9QywCCLtl9x6Kon5Ylrh3dxDRUoiCMpzVlCLZM0DkaIUrAdcXX7VomWtwW/FeCCpOTNW/A=="; + version = "9.0.3"; + hash = "sha512-CEJfXQRzekYKHXs4myO8c4u3GeLate8V78VGfrh1wuP6nrgfHZG0QDbmCwC4WXSxSLsOAzTo48Iy3ML2j0KCYg=="; }) ]; osx-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; - version = "9.0.2"; - hash = "sha512-0F/LPTF2uXNC6U0dQcumlQ9gBenLZF3nFOmTQnZAmXrm+3ej/b3t7JMNCwcbmclMUvhks0d95QJRDQkZ7qRbmg=="; + version = "9.0.3"; + hash = "sha512-kERcZwI1UGHWdU/ms25Hu6fMOtyYCMOq8LtCGSFr48mGeqfUC7ecZ3i13rR2ZHjhc2pfaGzYIL8ktTdnYOttkg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.osx-arm64"; - version = "9.0.2"; - hash = "sha512-9OPvQJzgQOMiG1+drj/50D4QhJxNV9lQFVy9XTdoj2FUO6fDyCvAQm10acq5KKeLUnEZO4hFcYakZjmb8Z6XQg=="; + version = "9.0.3"; + hash = "sha512-LjlALRLaNMxpPyd+bPILZPjhYWxey8Ix6f1kJ539TKKSDaBXfcSD1yB3ZUb01uSIfG2zeuhv/RE7y354PD/GvQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; - version = "9.0.2"; - hash = "sha512-tbL6fllK0UxBFjmsdi8Cf+iAHTrCpRxSmPxrgfXNbdyUQrBHTT7yUlKGIlzW2CQKlTZGPSURsAWCSvAr+519fg=="; + version = "9.0.3"; + hash = "sha512-CCODAplWwLQyn7fIEU3h6GVylLWakSGeDgcTi20d1nYLuSqyFqS0HjvrQmVqLu8X+5QuJucNDdnf9DZB3+CQUA=="; }) (fetchNupkg { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.2"; - hash = "sha512-oVbhX4JUS7hqqVNgCwX+hWzm8CGLK5zMo7J2PXRwzYR/xVWkWuVuf73LFs2Gz8YtJZlq8PzPT1S9iWzceUp6WA=="; + version = "9.0.3"; + hash = "sha512-1TEYraq+NIt40JGsxj7vc3YzgySqGs7PphTHtsZChyg61KakjWmqYFjK/6lBiIF0ZdSyk+OdBboY+gJHdwH8NA=="; }) ]; osx-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; - version = "9.0.2"; - hash = "sha512-9z+jtQjmhrbMva7eQjNVDJdEDhWHF2T4ubeqafnUTEueewGDrX/TLLVpVyU5Def/ChWZDgrEnuMX4g+4jlGFiw=="; + version = "9.0.3"; + hash = "sha512-XWpS9ssLxRPR3/RSdNZ4+4JxeqytccTbHBx2Zk3Fge+PIyYp/13p1Tw7hDG2jYK14wX2U8CMLo6jW9FqX4pOvA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.osx-x64"; - version = "9.0.2"; - hash = "sha512-F46Ir5AWTR9894CZYAAJH1fewZs1tRJ1VRE5PS7sdDD1UmeDASWQcHAt2uBVA8JSSTOQqiojr1xokwSSR/YcHg=="; + version = "9.0.3"; + hash = "sha512-FbIr84v2QAo/TPu71tdK+0RvI0WGXfElw+LJ2DSDjNLH2mattwOHw1XIWnbiXSbD2U5e9B0GPWFyjJbwMz2bYg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; - version = "9.0.2"; - hash = "sha512-Br9R3iEAfP0CGhfkxdxxZwZqF4Wbivu/TQkC2TaQTb9LUX6P+K9Oytjx1ilVgXoyclWPv9aR0dG0Uk+ppq+hvA=="; + version = "9.0.3"; + hash = "sha512-Rp+KNMyyOl3hFtTjycRcwGS57qC5fw6af0uFRQRwblF6zy4r/Fl0B2UjLq3K/IV60PqVUjuJAHmntfOCJBkFdg=="; }) (fetchNupkg { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.2"; - hash = "sha512-jpr8CwD5Cwl2vUTgl4xj9FcEELZjho2HACniNAXIHJVXTZewFz0S2gqn2is3C2xwc/MBo4F2SW202gVr4V0SjQ=="; + version = "9.0.3"; + hash = "sha512-mLBibW4OgxV384kWAMVTcDSGlSKl7kLxQwqduf5idsxuvdFgbUbuI9Eg4RzlCpmB7VumPR2EDIBG5tTjLXtnOg=="; }) ]; win-arm64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; - version = "9.0.2"; - hash = "sha512-EQ9eXimPClVlGs6fyuoJfxMFzZOl4DUZcGxANknqDpGddoF2VZke8LfLAtgvKTGMlOm0BxX6QwBQxe4f0Po61g=="; + version = "9.0.3"; + hash = "sha512-1bZv0kIUBxlvMkyEw9GhGbVepuJuRKtMUrNjpsyszkb8ZrTbO/Q90jwRAS0v3VKAcLn2hlsOk8npt4yT4rC7fg=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.win-arm64"; - version = "9.0.2"; - hash = "sha512-Fg3H4EbOJDus6sf3/Syq5RVX/C45npjCwrlH6cVllKN3O9N9Esz6gvLkDJ/k3sXqg1a9qExCHuR6K2Ni/wqDtQ=="; + version = "9.0.3"; + hash = "sha512-djCk7T/QQf7KIQe5mwQq8hheU0HpW9RmJbjIOc7zBWbjVx7srUcXyRZumq2aR5Vxc19RK3kYkwLYuR1LXOwNKA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; - version = "9.0.2"; - hash = "sha512-tFQXOeDQ0/h5ArqFHYBVNo93xLPJGL1aA/PC5Gg7zoL6dTRhI2lTltED70Km9cKMC6X00Hq1vee6FvOuLs1hHA=="; + version = "9.0.3"; + hash = "sha512-IMXYYRZSd+ffRf0HbW8C9NMm7ect81J75KfWzQyh7jGPuf1HgIQT1LiSMupFnjr0dC9AvLHKR21twq5XUC/PGA=="; }) (fetchNupkg { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.2"; - hash = "sha512-EfCw4g9OheETWmZvwEpCYXG2Xv7ZO9fGHtH+Typ7bcvw/TztkqB9ybMbMvFWujdec3j8lL50mAJb2oAgVcQt0Q=="; + version = "9.0.3"; + hash = "sha512-8G6GTIn5RuPlQsdxXGZ8mPykyXy/DKRpZIHEwBSTSE9By6P7PaKjHS87LEbIL/y+p3HD6jupiw7rtXYdygu/gA=="; }) ]; win-x64 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; - version = "9.0.2"; - hash = "sha512-rm+2rIw0XKUPfyccDpp7UMjM6IZfHVgK7OePJFU8a1NMeUZvH00haqLpERtRKJ4xghPU2ZfliL0dICbL2AGjhQ=="; + version = "9.0.3"; + hash = "sha512-W2gEOuabIfQN/1MnwANGMC11Q/pyprR650yE7rIO9pag00au72CsCue7mOmFQINP3wa4izko0kDgTnZRJp0Srw=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.win-x64"; - version = "9.0.2"; - hash = "sha512-GyRAQXiq2mcespMH8nRnxWKMKeUovUSmRzufrqxB8PyVNehhbcpEDJOon23BpNrO1+YggN6G2eQ2KDNUQCmoXw=="; + version = "9.0.3"; + hash = "sha512-cdvv+v3Dy80qVpc3ZQRRZDQph4jg9+9UG1edm6eFmY3hmGaZH3UYPLSI8MVfKyu66amhCswZso+R4+DC20GiFQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.win-x64"; - version = "9.0.2"; - hash = "sha512-y2t/JAwRgRe6PtfSX+gU2oap5/ekL6Fm93LJBNt2awvTpgRtTnsSks0LS+2VebsUAHWnVwCg6NcwuFOPcOu1WQ=="; + version = "9.0.3"; + hash = "sha512-0JaJ2zI7djauo5KM3BVGY2NCRC22T2KieI49CW2PdM8dsOXB8S5z/RGeqmZM9z0nE+gePDDMpqM+6ZlUP5Lwmw=="; }) (fetchNupkg { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.2"; - hash = "sha512-j8Q2Qi4Tzv7EO5FvBqVVLtHnV3+40fX8Z9dHkB+jkf+O6ASmDnev1XS4GSOb1peHpJeCauhNxzfrNlBtD2MmyQ=="; + version = "9.0.3"; + hash = "sha512-RuVssBRwSNdejDmCOP9G/3ZX6hrXb1llzqlTyh9S5atOViWb32LBm/MeDUfVXCP3/KozvMW9bN+akyilG7vIbg=="; }) ]; win-x86 = [ (fetchNupkg { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; - version = "9.0.2"; - hash = "sha512-Lyycaaagwj36GD1DNHR2HyiojLtpwAqYJ38k2IPCCyepzkULrvjt2QQ3KpLNikSLjZJuVbpUskNrh4vkoLI5Zw=="; + version = "9.0.3"; + hash = "sha512-RtOnNqA1moJVpe1Rg3ql1rGXQxlVWkqfBBA4TFE7LkzFWqWkaBsiMPEVir1WyWDnXNDlFE3wjRGcZ7m5OeHcHA=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Host.win-x86"; - version = "9.0.2"; - hash = "sha512-H54xNMNGYpV2+BUcRcvvVwbXQ7S/Do5iagFGxzFkCPOkTC2MyyvJYSCY4vlRf6O9r76H1xZImABmI7oQSjaraA=="; + version = "9.0.3"; + hash = "sha512-eJprsqC/wK0ss8dzUUzoyt8+lCXaAaMLUHwLsGLP2hk3HRTHwBqt/XbjmlXTx9elcKNcFmPd6JJIyEYvxS4hZQ=="; }) (fetchNupkg { pname = "Microsoft.NETCore.App.Runtime.win-x86"; - version = "9.0.2"; - hash = "sha512-nGU66NCplmHBPWtSoWaeZiK9Z9VJLWC9/PG4fnywm6ZCnbIMHR8nDrMmFvSXO8RGaE8WMqA1BoK9ogVliXYpAQ=="; + version = "9.0.3"; + hash = "sha512-k3BTKg8G6MRq+VSM+oFN6P8h8Yistf+DOmVEdGtxopIq/lvEgCp9c0FBA/dKkBmLFCSRvZcPSrPY43saVB21hA=="; }) (fetchNupkg { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; - version = "9.0.2"; - hash = "sha512-KAttjZ45azXcqQZcUquI3CU1YM6xzpUz55lJsD2UnG4eyhEm/1J9zTYregb3K1mbVl6mcJuksUGPspxK+xWsRQ=="; + version = "9.0.3"; + hash = "sha512-gaUR48gxtKwzKk1itLIuCm8Px6XCNcolqj+/Apw4ORtZAmY89vGHxI2wV1+51Ngi+0nfx1SCK681tzUyPMK+sA=="; }) ]; }; in rec { - release_9_0 = "9.0.2"; + release_9_0 = "9.0.3"; aspnetcore_9_0 = buildAspNetCore { - version = "9.0.2"; + version = "9.0.3"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/0b7ddf3f-d43d-49c2-be1d-bf59075d85e7/b1da14023ea7fef1fada6c8898635fbb/aspnetcore-runtime-9.0.2-linux-arm.tar.gz"; - hash = "sha512-VXZ1HqlBREmt0QDLYMkX9yMFIJ3IMezTaYuO9qaeKoAoUBSLM8r1oF0Em+ZrGcdARTHqbs1kPMH9auYReeEkmw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/ce50fb55-0885-4427-8636-74a4be7a62b0/88b3a34f6713ba012258bc43c8f6fb2b/aspnetcore-runtime-9.0.3-linux-arm.tar.gz"; + hash = "sha512-KnUI3peV2COKHU/35034GVOMpH1v+GY92ye191FNz0h+fu0i2MhCWMrT+zAGZiGmx54I87Bg8V1k6FFFs3au8A=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/744cd467-ac89-4656-9633-ed22e3afb35e/4277cdc84219d6515cb14220ddc0bde3/aspnetcore-runtime-9.0.2-linux-arm64.tar.gz"; - hash = "sha512-qpXtOW5QEst4Fdsl8HsZYmG5Hkyi57oHNSiW4as1GpYjL9tpL73h0d3RyRaYc1PS0zgunha9epfOS0EcZCbg9g=="; + url = "https://download.visualstudio.microsoft.com/download/pr/3ad17a72-66ec-41fc-b771-8094284b066d/ebf2d0da156c97776e9d27ad699d96ff/aspnetcore-runtime-9.0.3-linux-arm64.tar.gz"; + hash = "sha512-igJweLRrbrs/S+2is/PPeWBwG3G58rZwTBfydSJ5x2R1XK39MPPi8+OrJoaeUKNcVnwvvUH9mNd64vb+zeGLUA=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/36ab7b0d-966a-44ce-ad19-bc0d7e835724/a38c1f97ccc9f4ccce58427c830c32fb/aspnetcore-runtime-9.0.2-linux-x64.tar.gz"; - hash = "sha512-SKOd1L7j5xknOk5EBLVW4uWef2Wd70n4l0WuV1/Jdvfr8SHZJjw9AJ22CBl2+CYcqC3jSu9psHdqKP0EhbttOw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/30d54f5c-f3c6-4ee3-bdef-75e7cb0a40c2/cdb0ba537467777ff193f8f3cae6fc76/aspnetcore-runtime-9.0.3-linux-x64.tar.gz"; + hash = "sha512-OKO3OmxB7m9n6RCOv2hOwIL8bfqpQeoiX26yAKHjSQnAX6R6CHw1wY6rYHNQeW7NFsCfLjd026WQCDyTdC45ow=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/5eeaba7e-4140-4e62-b96c-7223293f3bd5/9d8d51b099c3141cdf63597816bd1eb4/aspnetcore-runtime-9.0.2-linux-musl-arm.tar.gz"; - hash = "sha512-+WpmRC99tVjkBJHx3rpCpYtpcoaoxZLyC5sXAGBAVEw83jhR2+nV3Qvk/2hmZXWhCo4SJdyXBpCBpmcmqfD8iw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/2ed3b832-349f-4c3a-93c4-b78c10419da1/ed7d2f3d5deb8bf9501c9d62bd0481f2/aspnetcore-runtime-9.0.3-linux-musl-arm.tar.gz"; + hash = "sha512-QWvwcsgXq8oHo+xeNSfYuvAfeYwgipCRWZpNGCbz6a228LQLu+xZdUjgcVKDzBZvXp/2GDZCbC3lxya0X1/Ivg=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/07c2a8a7-1b36-4ed3-b8c6-48674ad102e7/ed621013baa55acb77a88013d28ae14d/aspnetcore-runtime-9.0.2-linux-musl-arm64.tar.gz"; - hash = "sha512-XnSHHZEzxSOJVZ6zTugu17j/LumQhX74Dr8rJ8QF4N7hrpUcmoc1UWiQHZis++N71tUW1qC09fSVxYMmJDwGMA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/41ba2cc4-4df1-4386-a17c-4741e1f28b8c/7a52866c6cc1a00cfb4d2f09f7d80346/aspnetcore-runtime-9.0.3-linux-musl-arm64.tar.gz"; + hash = "sha512-YyL8GnM6VB+U4T25HNJ9l29Vc0aJ1Aw/37sQoFeldffgKzKx1Kt8h5zVmTgP3dfgoX1/CtDrNw2xQvTzx+tb3A=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/435eb32e-b24f-4c82-b044-6f4b97e7338f/5e79b00ea13180f349e28f127cf1c26a/aspnetcore-runtime-9.0.2-linux-musl-x64.tar.gz"; - hash = "sha512-/wcOv6ux+ndt9pzm+x5pkAaf9uS3ld0OoO4CjczqonhQD2lcm6a2yDkxDuDZqso5jgeevZCB7DbB4tWmPFvBCQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/53087890-9ecf-4a5b-ab19-30f6d4e68472/d992febf2434ee68f9e63e0c599130ee/aspnetcore-runtime-9.0.3-linux-musl-x64.tar.gz"; + hash = "sha512-E1hakZNQuiJX8AqQrC3gMGselS67oMf5A51+yNoTVUsuPIat0B24PeTmRwCbijrGbDpoYp53AbRjcDt524bkrA=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/0e3c0776-3b1b-4e34-8dc5-1f764e435f68/3fc575fd1def4bba8258cdf39cf24e35/aspnetcore-runtime-9.0.2-osx-arm64.tar.gz"; - hash = "sha512-ZvzXoFifsWbYXK69bwjBYEm90MrP0Bqz8ZnEQrmNVPhhDCJaKppvUrxLzhK7qKMAHiNokkCZbGl+K8OgCJVyJg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/9209345f-0826-47ed-8761-de661e135630/f600961b518bbd8f70d6210332fca2ea/aspnetcore-runtime-9.0.3-osx-arm64.tar.gz"; + hash = "sha512-D5GnMRggce1RF1XoUh2C3A4Mm9G6rucF4W3bLyNei2MupwdGW4F6JAeZ5f18UktQ46H2q9fZpe3O6QJeRz9BhA=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/80ab707c-4568-4bb3-998d-04b1935648dd/cec09318721d7d5e3cdd64e987a1dd8e/aspnetcore-runtime-9.0.2-osx-x64.tar.gz"; - hash = "sha512-Tjt2vEI+kxK1VEn/FWv2UET1ZkRcQQb8RzFFF2UdTVEMBBix+PF4U7HLwUdpEAuEb0FPgNapzuX5X1pvuFR9mg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/c2e9f12c-01e1-450d-b1b4-e5d09de3d94e/01baa500c4071fb47d864d7f772047b1/aspnetcore-runtime-9.0.3-osx-x64.tar.gz"; + hash = "sha512-MqrK8+vUGZA2L/WhI2v4PHqeQxyIFppryyp+kyIni37mE/VlqIMHfFND0hfqascVvsH2luHJ6BGdxNpmSRn9+A=="; }; }; }; runtime_9_0 = buildNetRuntime { - version = "9.0.2"; + version = "9.0.3"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/6ad62cc2-7db5-4961-9192-84d50536b636/19e78b86ce8b40becdca65a7b7e8d8df/dotnet-runtime-9.0.2-linux-arm.tar.gz"; - hash = "sha512-vjG3kMilNHwaf7dey7qxbGdf9eY1JWFjEiC5TUF/Ge7QciDVw5cpBRI3BN1r1n0AE4/0JISBXg3vfYrZFqMNlA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/6a2bc9fa-ffb0-4113-993e-902e2049ffc9/fb2589c89729fabade52bc737605ed93/dotnet-runtime-9.0.3-linux-arm.tar.gz"; + hash = "sha512-IrNdykDbqKa8ZmPGPASj5u31nwSx2zv3kqHmS1c8OJb2XjIs2+jBUiAJwugdlP4O+Fq0NuKWHoH018whI7oz4w=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/3658cac0-6e40-4467-af08-02cf5bc0309c/ad2d0efa6e2bf05fd1078182d232f052/dotnet-runtime-9.0.2-linux-arm64.tar.gz"; - hash = "sha512-RgEz3cJYKiCb2AZzch57mt0rmyln7xUDp9wpvid3hwhwmQ7nVJNR6CB8Pj6E2r7KbVvbvep15ePnSesWvRPn7w=="; + url = "https://download.visualstudio.microsoft.com/download/pr/79e65a77-46e2-47b5-9bf4-efa8a6426308/211a9c0c2952d0bbdb0aa5eb1348e2b6/dotnet-runtime-9.0.3-linux-arm64.tar.gz"; + hash = "sha512-CxiFmADHXSk7BbWJOLfD69mnql1bFjyNWgiqhPlQF9LQEU3W86aIvOmXTEPb0HOpMJd7fM/gZXcgemfwAxnSDA=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/a15e92d8-e1db-402c-b06d-b6dcf7ad58eb/8c4233bceadcf8f57b40f64aceda69f7/dotnet-runtime-9.0.2-linux-x64.tar.gz"; - hash = "sha512-3EryTV0pg5L9U0kaVsbU49HoXj4pTLSoSMesjw3OKH8R3LJ08Y+V99txlWgThuXGsNmVAICMGz5oucYJejSE1w=="; + url = "https://download.visualstudio.microsoft.com/download/pr/a58fcc04-99ee-4dea-aa5d-d6d22c4040dc/4433f4e97ad4658bd76f52acc1cb9c21/dotnet-runtime-9.0.3-linux-x64.tar.gz"; + hash = "sha512-SxalfpRZL7lxJCHtkMAl/DtPkDn66je0MrbYo+jK8ZLerXMvuEu9yp36TtQN20YHjdPCcQgBySrujiHAhL/WZA=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/efa5ec39-7af0-4941-9886-6c37758df9cd/9b0910cf8f0be4645fd7bde1f2665e5c/dotnet-runtime-9.0.2-linux-musl-arm.tar.gz"; - hash = "sha512-OOA9jBL6RSDjEc8tFfssLw4BnHFlsT/L5Y/EaRR0Ps6o4KxNkUOFsUMM+14N89timUJM/czqb/5GmmgeLZ2Ttw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/e7fd172a-a601-45c2-a715-14cd18c2cddb/93a3a7689181ae8847bf940d20e56148/dotnet-runtime-9.0.3-linux-musl-arm.tar.gz"; + hash = "sha512-vYB8mUsCqgyX4AFJLBYUaJT2qh/e8S0Jef+wyE2AnN+VX9NRAWu1nVCY7JRfw8znlYpv7c0OMB7ygVlwDjgCeA=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/5a74dfdf-3b5d-4e92-bd17-878401c55dd5/a9fcf25e0571144a1cf08b23da3476fc/dotnet-runtime-9.0.2-linux-musl-arm64.tar.gz"; - hash = "sha512-C7DcekOIxbldT+yf58oSc/mvpQICHHPrlG7Sko1tbQg2QUQA9mfv8w2pe4OwT2bTAywjRLslhwB7QAHXW2lqFg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/4b7b3320-dc33-4da2-93cf-de158ad5a41f/9ea1944f72dca2106dcf1477e0b7e2da/dotnet-runtime-9.0.3-linux-musl-arm64.tar.gz"; + hash = "sha512-I4URQWnjKymzoTsnWkQa8e27TBTr7VL/j0XxGsilce+imEvi75HjjmcAOMjinbjFhf8S0eBVAvQSDk3QXpi3LA=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/e848109e-b3a7-4496-ae31-345b92345a81/78db157b0850dd7d9ce22c908d53154f/dotnet-runtime-9.0.2-linux-musl-x64.tar.gz"; - hash = "sha512-3xFu+bf2txe3x/BX6CbJ4fHtDXQ/prJukin8NuUAq4NNGa4atV68KLHJuMtKf0HGLt0Iwt0s3LbpEt7+ooEP+w=="; + url = "https://download.visualstudio.microsoft.com/download/pr/cbcb4e59-932b-4edd-9a0d-228e1c0753d8/5b2d904fdfe7381c3f6e857c409fd78d/dotnet-runtime-9.0.3-linux-musl-x64.tar.gz"; + hash = "sha512-hTOgYfT61hE1JprnmH2b3IAAy8SZngA5Lw6dI01A4gpPTnU91XJDc3cjSaiW8qhOO6huh22Bqb8GiIjkIa+xPw=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/4e559996-ff59-4cdb-8a91-e6c7d7235f4e/e5766287ef607672cc47be8119afc28a/dotnet-runtime-9.0.2-osx-arm64.tar.gz"; - hash = "sha512-WtiQMRYHpfsU+aZBA6zXY4V4Hkt1CFqOdV2kdP/B1Qcwu4Bk6Lr7EXr9udBM6svVhFJTnx4OY74LlzHhn9ZRVg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/041326f6-a1c8-4af5-8178-df0248ede629/a4a0f730a9ea09b73c30e44b3efd54eb/dotnet-runtime-9.0.3-osx-arm64.tar.gz"; + hash = "sha512-toCPaXBLItVrivSv1GlZl+IPoTyeARbSi12PMCLZwDnDr3WRDSUyhzuDMVJpl9UP/RtWQtNvHj7dZIXtwV2ACQ=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/b5a5d3a4-2054-499f-99e2-cf64bbc7ad24/bf987a5f19a84196621b725b9e41b332/dotnet-runtime-9.0.2-osx-x64.tar.gz"; - hash = "sha512-q+B1LzQ3zg4kFdH3CHm2sGLf2lkSjvW5bblGY5tQalTKyBhFtnddGQFNUicavrjfqs/reDRSuY9mJlxe+xs7VQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/b4b321f3-ee2b-46e5-96eb-8c809a901ecb/252a64bf8c5b5b196764c5b301357249/dotnet-runtime-9.0.3-osx-x64.tar.gz"; + hash = "sha512-9gaI88dH0OdcPywkuQIbFH16pKtLWqk5uGHVWEpZC/mx1uiFd70I6ewjQ3/KopXaYz7wQGWRy10UrGZZ+HJhZA=="; }; }; }; sdk_9_0_2xx = buildNetSdk { - version = "9.0.200"; + version = "9.0.201"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/3dde7d92-2a9d-44a5-8e83-6ef57d976c93/dddb3f71a8145f2729c38570694f95c3/dotnet-sdk-9.0.200-linux-arm.tar.gz"; - hash = "sha512-R2qaaGryNEguqZ71P9Gjtr1l5O9fJOseLpS2DxRue357mVGaZqiWg2aC5wIAcCegThDt6Ff8RUDDuuVrFss3gA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/a2cf96fc-f298-41e2-9dc6-8c0861916597/d505f4b28a7765d7bea6d2883a7fe170/dotnet-sdk-9.0.201-linux-arm.tar.gz"; + hash = "sha512-aBIYY1ghrUlYayCg7rA9Ap0V8s8seVB0vT4np3P5CheotrrJ30TggyM87PNiu/7n0Ma4OiSRfmlr3orX5S8RVQ=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/b94570d9-8cb1-4672-be62-4acaa8675749/2697b4ae3923b16e72f6443f30333f5d/dotnet-sdk-9.0.200-linux-arm64.tar.gz"; - hash = "sha512-wtGGRCQ9Z9EDRxcT8Om6ZZ3wwNXgmL1EExBBjdA3mNalqFOdp8jMMg1XCFwZPHU/94vf+Kl6l8UfUAQzU4+3Ig=="; + url = "https://download.visualstudio.microsoft.com/download/pr/6d91bd91-9bb6-4b3f-9256-83f8c982e817/9248655502cac509f9c738509913770c/dotnet-sdk-9.0.201-linux-arm64.tar.gz"; + hash = "sha512-TreMdgg1XKJ4CZCTRZLElXntWfCYM3fEwsmaQJGXAmRkK4/uksZekbrrbGvCIGbWlYCF6s0ahQBVtS9tBENtWw=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/3606de37-1325-4f5f-bbe9-1bc44b3c1c7f/91872629e9f0c205cace9c462d5e89a4/dotnet-sdk-9.0.200-linux-x64.tar.gz"; - hash = "sha512-GvXzpERBmz9c+ZywPudAciciR4Im0K/yetQbHRHmnXNJfiXAfvBqbfnnP7D73EubrKmszslWVNnue+TVpcOsIw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/82a7fc96-b53b-4af4-ac3a-ef0a6c9325d5/84e522c31482538cddf696d03c5b20af/dotnet-sdk-9.0.201-linux-x64.tar.gz"; + hash = "sha512-k6gITvONqBDDyWUEwg6iAgprdVtzoZ96zGzXOotirOCt2hRFLRHmRY9z3H1Y/60i/NFR8RHSMgyyOhD9VNy3cg=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/f65430d6-4ddf-4ed4-a91c-025933457f61/8e0766a17389dd840585ddc440431e19/dotnet-sdk-9.0.200-linux-musl-arm.tar.gz"; - hash = "sha512-QpftO08RLh1kpmF8uWGRv7Tr9qX70Bx13mwFkolxc/ARrvPZvn5hc44MjOi6GBWwbyjgwlHIQPLg3iYw02YWyg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/905c96fd-1e89-4024-834f-dd2690ec6eab/6b3cec8a13b42bf55f65f65badf0b89f/dotnet-sdk-9.0.201-linux-musl-arm.tar.gz"; + hash = "sha512-ONvoFPTs1SgfeCEFlmHuAmX7IZzeCF+s/M1Z6fs0DAOBhEkGTf6kYi3gwMbjkMoZeVFb3ne/MMvnquYUwc1PKw=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/071e3ccf-eb10-4658-814b-c86dc60525ee/2ef91c84593fb6f465082ee069502085/dotnet-sdk-9.0.200-linux-musl-arm64.tar.gz"; - hash = "sha512-8acIB+Cite4nK91xRTWi+j0xu4wiFrQ8FRpyyzZPZKb4k1kLruvH37K3j/UOS6EcPkyt8Rx1dEQE/vq9x/8I2w=="; + url = "https://download.visualstudio.microsoft.com/download/pr/26b8a5c2-b79c-425f-8356-d8f0d231bf45/0da5d6f19a28a5d07ebda7fe5a1ec536/dotnet-sdk-9.0.201-linux-musl-arm64.tar.gz"; + hash = "sha512-DKnTE6zKGUcW/62/ck4yV3AEKOkrW9CSBV2d9jHNOiZ/PFe6dV115B+3sCeEgyG7Crbf7gN04OReVJkLNLxnqA=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/625fe095-f8b3-4666-a4ab-b44931f482bf/bbc206404c3e402749523e37063931b3/dotnet-sdk-9.0.200-linux-musl-x64.tar.gz"; - hash = "sha512-lrAy1SCag46XUiUolj4ulYn4OE3/QpLlZwMLDaCEkQSlfNbQ8F5ft+d4dzD0fGESoBTfF8dgEIZPVcEQqXHyFg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/1de65d68-6aaf-46dc-b103-5461e03b8d81/160ce3ce92da0cc3eaf465279b6b61f1/dotnet-sdk-9.0.201-linux-musl-x64.tar.gz"; + hash = "sha512-dW/ohdWRYEDHeZXO7QLoUqk+7pRIn7JSHZYT2oCxoGbAVTUmxbPWwkvNAxwQ6YSK2A0nt1lF5GmZCeat/Tm6yw=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/be46fe4d-4225-4681-a301-8d2bd5c2e044/362014a73e57d02b9ffce618c5ab46e9/dotnet-sdk-9.0.200-osx-arm64.tar.gz"; - hash = "sha512-pF1ab+XwRunNCkSCpB8IhIIpAxNLzS8l+s5x4TInSdrMUyIc7iH4FMYXEybaD2T0IgTr159jOjvRB1wE+nPRvA=="; + url = "https://download.visualstudio.microsoft.com/download/pr/2dfd9746-db33-464f-93f7-6101f0f85968/6d20c7591ed80ad5c8b8039860b4626d/dotnet-sdk-9.0.201-osx-arm64.tar.gz"; + hash = "sha512-Il3C3Gfx/EHAUgnkmjFWUbIBlv8Ch/le4IPkyTLJDu17ePaCh6iJpB+z7RH0jQt19ihf0OgWEvmEtZz6c9Cnww=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/9983e36c-5e9f-4895-8f56-1d0a61cfa9cf/945b1788d8624457b631a383d55f109b/dotnet-sdk-9.0.200-osx-x64.tar.gz"; - hash = "sha512-84pkHRfe3wviTHIcxPeHhAUM1RhPtcxsBMSy5vdgLFX8WjyA3PKh317Fmu2tQpR3IFEPB7KzxZthhbka/yAQrg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/abc40bfa-5976-482c-9143-e8ac8ed267dd/8ec0035953d18fcb07aa3bb033ca35a2/dotnet-sdk-9.0.201-osx-x64.tar.gz"; + hash = "sha512-azGDM5p7T81pdXMfDEB5p/oaYYvPejNYOqNe2NvtXYQeXxfOEYQWwh/qcrq/q9D8LMBCZvNq+dbHvIxVIMtagQ=="; }; }; inherit commonPackages hostPackages targetPackages; @@ -523,39 +523,39 @@ rec { }; sdk_9_0_1xx = buildNetSdk { - version = "9.0.103"; + version = "9.0.104"; srcs = { linux-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/c2cb3c08-be1a-4b0f-95f3-3c2b2c2371fb/04c3b5830bb78065424666956d65a503/dotnet-sdk-9.0.103-linux-arm.tar.gz"; - hash = "sha512-m53bvYoJDuePQFdqyfPaylpoRe45RIsQw7tRsrT55+CpebagDDHaCPPmhgH6d6aHpVbQecGdUyruTX8lvJ8TyQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/aa05fba2-27d4-464d-b95c-49839de3bd90/6dc2b2e5628a115458c6d0c2cff4299a/dotnet-sdk-9.0.104-linux-arm.tar.gz"; + hash = "sha512-nU1KaalG+2Hp06CzpXXPnrh/QZR3qQrLAC3tXGo0xut0bRQQNJPjMPCkP72C+keVkbZKsTvB+SxhnXNdCGLjKg=="; }; linux-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/226328f5-ac73-4daa-99dc-04961042c422/18787af4ca8bd7d646534c559e4a3c75/dotnet-sdk-9.0.103-linux-arm64.tar.gz"; - hash = "sha512-MrVJTndokIbo1bk2Q05Oh6jYgDn3fDOB2WWSdX59cW9Y3hAD/kHH7zogiTZqMgUYf1bXM9X50vFQXYOxwW06Cw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/a8072dab-fea1-424f-a90b-12c64f6dd881/1e800a277f917b5ccef8d3476ece7bf3/dotnet-sdk-9.0.104-linux-arm64.tar.gz"; + hash = "sha512-vKVVZupf10qeD3V8ri9XKCPEUEafRWdWBCmHsn6dFfvlnhmTdCUyqC/fx/sh8mpj50tMgO0X5SsS8HOLRh1w4w=="; }; linux-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/053d1161-da60-4c43-bcf4-cfb91d3d3201/18cad0308294c91e3ca9913a33cb4371/dotnet-sdk-9.0.103-linux-x64.tar.gz"; - hash = "sha512-r9pIc2XPLQgvHcRi/wFgfq4QZX3oKBxTxOh3XfcvXtWzG0J+qK/QkXiG5zsQSiXbTGB+BRD4vjp2HelEXXl7dQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/33664896-3281-443d-a030-394719c926c9/f0f8964a84b092b7f7277ce9a6d99d9d/dotnet-sdk-9.0.104-linux-x64.tar.gz"; + hash = "sha512-mbaxvNRtPNWYlhOQVL/WwVkJt66te7LxnT6Xu/h6Ql21vORQbV93v29/Ekmwysr6Z5ybycOx5PKrLnnLXQsseQ=="; }; linux-musl-arm = { - url = "https://download.visualstudio.microsoft.com/download/pr/63a41de4-93be-4cbd-ac13-93d1feec6a30/a6bb2018d1a952daadf70852064686c9/dotnet-sdk-9.0.103-linux-musl-arm.tar.gz"; - hash = "sha512-ZjwzUe2w04sl+oVL4JKiz3tv79Vo9NdFj/QHQLljdgU5C0ikrNuzVkDUDcnv5mam7ilH8Q/pyaFrl0P9dbzw0A=="; + url = "https://download.visualstudio.microsoft.com/download/pr/3f9a99e2-ef1e-4b82-9f31-4bdb4d9066e5/fd05e0620afcc053b79c51e770ed01e9/dotnet-sdk-9.0.104-linux-musl-arm.tar.gz"; + hash = "sha512-UCIu3nGuUPrElwskV94t2Q7D5il8KcVXbvHhfVI+bcsE1goTg/hr7SiNAgZygnPfbcD93eWVz8+DJlHMo2Gcxw=="; }; linux-musl-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/bac1de02-acf7-442c-9caa-5267f24060c0/e94ab7e0015a34f7a76d33d3d0955fbf/dotnet-sdk-9.0.103-linux-musl-arm64.tar.gz"; - hash = "sha512-vMUBmDH5Y22BqHNp4c9W5w3FLCmT62RGj2IClimmEDM7I8IGLj+TZHvry9994qrvp+nJbW6W7BYeOnRXZq4Qnw=="; + url = "https://download.visualstudio.microsoft.com/download/pr/7b3014ae-980c-4756-a2db-4e1cf8a5aad0/43e168ffdf16a261bbd44926958996ff/dotnet-sdk-9.0.104-linux-musl-arm64.tar.gz"; + hash = "sha512-aKXiCpBt7dWOEoyQEWzm9B/Ls9Zzc5ejBJ64H/aozMEyMm3RR0gChFNe4XpUW+Xke0Hf20gvUMFedvW4TzG5/Q=="; }; linux-musl-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/0211b6cf-e6b2-4034-b2a4-f47828046fe3/fcbc490417d2ea0114a74aafbb46b92b/dotnet-sdk-9.0.103-linux-musl-x64.tar.gz"; - hash = "sha512-rE4hFvmZmfJJwpDpqHxij2I29Zxl63Zyu7SEzBFZv3OclYXa2AtQ/3JzNeS/Ym4XWRMVaxOig/F12uf2qWWlQg=="; + url = "https://download.visualstudio.microsoft.com/download/pr/4c76ef5d-d592-407d-8551-925a7479bdfe/44d4204797f4a435a00dcc63e4920f1f/dotnet-sdk-9.0.104-linux-musl-x64.tar.gz"; + hash = "sha512-6I0FTAuRIJ9B0AkSnRhsMYgGbuC/xf8FacZIlgLTdeY7UhQr63Vvfwnt75xg+nDV3m0Fz3sygDiP2D2T6CzKdg=="; }; osx-arm64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/c54a9a42-e212-42ce-b00e-ac352d2fc848/3cbf76fac85c39e1eb8ba4a4bd9fcd55/dotnet-sdk-9.0.103-osx-arm64.tar.gz"; - hash = "sha512-UvKdGPd4m8U9FbDh6WuDuIEerss+tgNd+5Ti0vK7GgEdCLRpEoBaKGDFdJE60zj18ICK1mMQ3YfPeBY8OwJZJQ=="; + url = "https://download.visualstudio.microsoft.com/download/pr/4db0c5f9-9a8e-4878-8711-4687108f9157/ab18273765fec69310b3c0efb6b72eeb/dotnet-sdk-9.0.104-osx-arm64.tar.gz"; + hash = "sha512-IUW3BRSRhkRJSKadEKlUUcV5/3MUx4R3VV4G92WaeSFyYw20oW/SdAH3IPXplOCCvtI/Q37+88cZjxyD5cYddw=="; }; osx-x64 = { - url = "https://download.visualstudio.microsoft.com/download/pr/7306a1d9-153d-4417-9d94-950e2d2d0426/fa4dfb44bce429d39ebbc916e949c3cf/dotnet-sdk-9.0.103-osx-x64.tar.gz"; - hash = "sha512-es76FxqsumY1idXJ6tCAqAjuYGlreJzomv+I4GJvIIXTKhmBVKfslKjNXNJy9wvVfhmYGbPsiZl+pS48D2uW8A=="; + url = "https://download.visualstudio.microsoft.com/download/pr/fe6987a1-394f-4f04-b9bf-52a9ff020ca2/de9b3377974b7e24a910d1a4184a609a/dotnet-sdk-9.0.104-osx-x64.tar.gz"; + hash = "sha512-JbZGUkQLjGAKOH8Sbcu6W8ZkbduQajwnY4sJJkqj/2aHSc/G46HlMHDJcojKcaWMfpHx0QpPD0FpotBOX4aksQ=="; }; }; inherit commonPackages hostPackages targetPackages; diff --git a/pkgs/development/compilers/mono/generic.nix b/pkgs/development/compilers/mono/generic.nix index ffa2d78bab18..087d79cd04cc 100644 --- a/pkgs/development/compilers/mono/generic.nix +++ b/pkgs/development/compilers/mono/generic.nix @@ -129,11 +129,15 @@ stdenv.mkDerivation rec { inherit enableParallelBuilding; meta = with lib; { - # Per nixpkgs#151720 the build failures for aarch64-darwin are fixed since 6.12.0.129 + # Per nixpkgs#151720 the build failures for aarch64-darwin are fixed since 6.12.0.129. + # Cross build is broken due to attempt to execute cert-sync built for the host. broken = - stdenv.hostPlatform.isDarwin - && stdenv.hostPlatform.isAarch64 - && lib.versionOlder version "6.12.0.129"; + ( + stdenv.hostPlatform.isDarwin + && stdenv.hostPlatform.isAarch64 + && lib.versionOlder version "6.12.0.129" + ) + || !stdenv.buildPlatform.canExecute stdenv.hostPlatform; homepage = "https://mono-project.com/"; description = "Cross platform, open source .NET development framework"; platforms = with platforms; darwin ++ linux; diff --git a/pkgs/development/node-packages/aliases.nix b/pkgs/development/node-packages/aliases.nix index 3944cd89e7f6..c4815d06870d 100644 --- a/pkgs/development/node-packages/aliases.nix +++ b/pkgs/development/node-packages/aliases.nix @@ -211,6 +211,45 @@ mapAliases { inherit (pkgs) textlint-rule-unexpanded-acronym; # Added 2024-05-17 inherit (pkgs) textlint-rule-write-good; # Added 2024-05-16 thelounge = pkgs.thelounge; # Added 2023-05-22 + thelounge-plugin-closepms = throw "thelounge-plugin-closepms has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-plugin-giphy = throw "thelounge-plugin-giphy has been removed because thelounge moved out of nodePackages"; # added 2025-03-12 + thelounge-plugin-shortcuts = throw "thelounge-plugin-shortcuts has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-abyss = throw "thelounge-theme-abyss has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-amoled = throw "thelounge-theme-amoled has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-amoled-sourcecodepro = throw "thelounge-theme-amoled-sourcecodepro has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-bdefault = throw "thelounge-theme-bdefault has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-bmorning = throw "thelounge-theme-bmorning has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-chord = throw "thelounge-theme-chord has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-classic = throw "thelounge-theme-classic has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-common = throw "thelounge-theme-common has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-crypto = throw "thelounge-theme-crypto has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-discordapp = throw "thelounge-theme-discordapp has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-dracula = throw "thelounge-theme-dracula has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-dracula-official = throw "thelounge-theme-dracula-official has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-flat-blue = throw "thelounge-theme-flat-blue has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-flat-dark = throw "thelounge-theme-flat-dark has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-gruvbox = throw "thelounge-theme-gruvbox has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-hexified = throw "thelounge-theme-hexified has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-ion = throw "thelounge-theme-ion has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-light = throw "thelounge-theme-light has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-midnight = throw "thelounge-theme-midnight has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-mininapse = throw "thelounge-theme-mininapse has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-monokai-console = throw "thelounge-theme-monokai-console has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-mortified = throw "thelounge-theme-mortified has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-neuron-fork = throw "thelounge-theme-neuron-fork has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-new-morning = throw "thelounge-theme-new-morning has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-new-morning-compact = throw "thelounge-theme-new-morning-compact has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-nologo = throw "thelounge-theme-nologo has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-nord = throw "thelounge-theme-nord has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-onedark = throw "thelounge-theme-onedark has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-purplenight = throw "thelounge-theme-purplenight has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-scoutlink = throw "thelounge-theme-scoutlink has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-seraphimrp = throw "thelounge-theme-seraphimrp has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-solarized = throw "thelounge-theme-solarized has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-solarized-fork-monospace = throw "thelounge-theme-solarized-fork-monospace has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-zenburn = throw "thelounge-theme-zenburn has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-zenburn-monospace = throw "thelounge-theme-zenburn-monospace has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 + thelounge-theme-zenburn-sourcecodepro = throw "thelounge-theme-zenburn-sourcecodepro has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12 three = throw "three was removed because it was no longer needed"; # Added 2023-09-08 triton = pkgs.triton; # Added 2023-05-06 typescript = pkgs.typescript; # Added 2023-06-21 diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index 6635e6a069a1..8bad14812407 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -156,45 +156,6 @@ , "svelte-check" , "svgo" , "tern" -, "thelounge-plugin-closepms" -, "thelounge-plugin-giphy" -, "thelounge-plugin-shortcuts" -, "thelounge-theme-abyss" -, "thelounge-theme-amoled" -, "thelounge-theme-amoled-sourcecodepro" -, "thelounge-theme-bdefault" -, "thelounge-theme-bmorning" -, "thelounge-theme-chord" -, "thelounge-theme-classic" -, "thelounge-theme-common" -, "thelounge-theme-crypto" -, "thelounge-theme-discordapp" -, "thelounge-theme-dracula" -, "thelounge-theme-dracula-official" -, "thelounge-theme-flat-blue" -, "thelounge-theme-flat-dark" -, "thelounge-theme-gruvbox" -, "thelounge-theme-hexified" -, "thelounge-theme-ion" -, "thelounge-theme-light" -, "thelounge-theme-midnight" -, "thelounge-theme-mininapse" -, "thelounge-theme-monokai-console" -, "thelounge-theme-mortified" -, "thelounge-theme-neuron-fork" -, "thelounge-theme-new-morning" -, "thelounge-theme-new-morning-compact" -, "thelounge-theme-nologo" -, "thelounge-theme-nord" -, "thelounge-theme-onedark" -, "thelounge-theme-purplenight" -, "thelounge-theme-scoutlink" -, "thelounge-theme-seraphimrp" -, "thelounge-theme-solarized" -, "thelounge-theme-solarized-fork-monospace" -, "thelounge-theme-zenburn" -, "thelounge-theme-zenburn-monospace" -, "thelounge-theme-zenburn-sourcecodepro" , "tiddlywiki" , "tsun" , "ts-node" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index 1480d636b858..997480177d81 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -39,31 +39,31 @@ let sha512 = "30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="; }; }; - "@angular-devkit/architect-0.1901.8" = { + "@angular-devkit/architect-0.1902.3" = { name = "_at_angular-devkit_slash_architect"; packageName = "@angular-devkit/architect"; - version = "0.1901.8"; + version = "0.1902.3"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1901.8.tgz"; - sha512 = "DzvlL1Zg+zOnVmMN3CjE5KzjZAltRZwOwwcso72iWenBPvl/trKzPDlA6ySmpRonm+AR9i9JrdLEUlwczW6/bQ=="; + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1902.3.tgz"; + sha512 = "6H8MtmskvQyU8kV5Evd8TZHCzdOlFZM9eBVNCld3vuQksE4l98aa6AiSF2u+PJA8Z0+MYYToJJvwmGkLn6XkRQ=="; }; }; - "@angular-devkit/core-19.1.8" = { + "@angular-devkit/core-19.2.3" = { name = "_at_angular-devkit_slash_core"; packageName = "@angular-devkit/core"; - version = "19.1.8"; + version = "19.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-19.1.8.tgz"; - sha512 = "j1zHKvOsGwu5YwAZGuzi835R9vcW7PkfxmSRIJeVl+vawgk31K3zFb4UPH8AY/NPWYqXIAnwpka3HC1+JrWLWA=="; + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-19.2.3.tgz"; + sha512 = "53trlqWu9/grXImOPascS0HcJhzRQfQeeMCTbEKQkxEkKTQPm1/lFQMEQZALigmync8GrkQhFlJ05I4Zhrjk3A=="; }; }; - "@angular-devkit/schematics-19.1.8" = { + "@angular-devkit/schematics-19.2.3" = { name = "_at_angular-devkit_slash_schematics"; packageName = "@angular-devkit/schematics"; - version = "19.1.8"; + version = "19.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-19.1.8.tgz"; - sha512 = "2JGUMD3zjfY8G4RYpypm2/1YEO+O4DtFycUvptIpsBYyULgnEbJ3tlp2oRiXI2vp9tC8IyWqa/swlA8DTI6ZYQ=="; + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-19.2.3.tgz"; + sha512 = "sYtnOjmhXlR720JdcWXNIP/7aTzfl40uahHxRz2wK3ATK1ifeVaTI9mAJpjFM4KVaguYNis+Mm+rjL7pjbf7Og=="; }; }; "@apidevtools/json-schema-ref-parser-11.7.2" = { @@ -102,22 +102,13 @@ let sha512 = "u/kozRnsPO/x8QtKYJOqoGtC4kH6yg1lfYkB9Au0WhYB0FNLpyFusttQtvhlwjtG3rOwiRz4D8DnnXa8iEpIKA=="; }; }; - "@asamuzakjp/css-color-2.8.3" = { + "@asamuzakjp/css-color-3.1.1" = { name = "_at_asamuzakjp_slash_css-color"; packageName = "@asamuzakjp/css-color"; - version = "2.8.3"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-2.8.3.tgz"; - sha512 = "GIc76d9UI1hCvOATjZPyHFmE5qhRccp3/zGfMPapK3jBi+yocEzp6BBB0UnfRYP9NP4FANqUZYb0hnfs3TM3hw=="; - }; - }; - "@ast-grep/napi-0.33.0" = { - name = "_at_ast-grep_slash_napi"; - packageName = "@ast-grep/napi"; - version = "0.33.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@ast-grep/napi/-/napi-0.33.0.tgz"; - sha512 = "6heRMmomhSD0dkummRQ+R4xWXXmc41OaDPoPI49mKJXPyvwJPdPZUcQjXdIitOVL4uJV+qM2ZBucDPENDBSixw=="; + url = "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.1.1.tgz"; + sha512 = "hpRD68SV2OMcZCsrbdkccTw5FXjNDLo5OuqSHyHZfwweGsDWZwDJ2+gONyNAbazZclobMirACLw0lk8WVxIqxA=="; }; }; "@asyncapi/specs-6.8.1" = { @@ -300,13 +291,13 @@ let sha512 = "PI6mjM0fmcV2fqkkRoivF3DYex4lnbEz7WIsOFAwpHJBbA9ykClQpiutCKcgl0x/yEWAeTNdQtrCVeAwbxYfvw=="; }; }; - "@aws-sdk/client-s3-3.750.0" = { + "@aws-sdk/client-s3-3.758.0" = { name = "_at_aws-sdk_slash_client-s3"; packageName = "@aws-sdk/client-s3"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.750.0.tgz"; - sha512 = "S9G9noCeBxchoMVkHYrRi1A1xW/VOTP2W7X34lP+Y7Wpl32yMA7IJo0fAGAuTc0q1Nu6/pXDm+oDG7rhTCA1tg=="; + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.758.0.tgz"; + sha512 = "f8SlhU9/93OC/WEI6xVJf/x/GoQFj9a/xXK6QCtr5fvCjfSLgMVFmKTiIl/tgtDRzxUDc8YS6EGtbHjJ3Y/atg=="; }; }; "@aws-sdk/client-sso-3.296.0" = { @@ -318,13 +309,13 @@ let sha512 = "0P0x++jhlmhzViFPOHvTb7+Z6tSV9aONwB8CchIseg2enSPBbGfml7y5gQu1jdOTDS6pBUmrPZ+9sOI4/GvAfA=="; }; }; - "@aws-sdk/client-sso-3.750.0" = { + "@aws-sdk/client-sso-3.758.0" = { name = "_at_aws-sdk_slash_client-sso"; packageName = "@aws-sdk/client-sso"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.750.0.tgz"; - sha512 = "y0Rx6pTQXw0E61CaptpZF65qNggjqOgymq/RYZU5vWba5DGQ+iqGt8Yq8s+jfBoBBNXshxq8l8Dl5Uq/JTY1wg=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.758.0.tgz"; + sha512 = "BoGO6IIWrLyLxQG6txJw6RT2urmbtlwfggapNCrNPyYjlXpzTSJhBYjndg7TpDATFd0SXL0zm8y/tXsUXNkdYQ=="; }; }; "@aws-sdk/client-sso-oidc-3.296.0" = { @@ -345,13 +336,13 @@ let sha512 = "ew7hSVNpitnLCIRVhnI2L1HZB/yYpRQFReR62fOqCUnpKqm6WGga37bnvgYbY5y0Rv23C0VHARovwunVg1gabA=="; }; }; - "@aws-sdk/client-sts-3.750.0" = { + "@aws-sdk/client-sts-3.758.0" = { name = "_at_aws-sdk_slash_client-sts"; packageName = "@aws-sdk/client-sts"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.750.0.tgz"; - sha512 = "MdzI7nTP4Th+Xam+u0HPZAnS0172Xfi96RLx99Dg/UR7tgIvj2bbhIeGQIDihwB7TdFh1WxOaNHJjm9asgJepg=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.758.0.tgz"; + sha512 = "ue9hbzjWNQmmyoSeWDRPwnYddsD3BVao5mSFA1kXFNVqWPEenjpkZ1xAlBVzHMMNoEz7LvGI+onXIHntNyiOLQ=="; }; }; "@aws-sdk/config-resolver-3.296.0" = { @@ -363,13 +354,13 @@ let sha512 = "Ecdp7fmIitHo49NRCyIEHb9xlI43J7qkvhcwaKGGqN5jvoh0YhR2vNr195wWG8Ip/9PwsD4QV4g/XT5EY7XkMA=="; }; }; - "@aws-sdk/core-3.750.0" = { + "@aws-sdk/core-3.758.0" = { name = "_at_aws-sdk_slash_core"; packageName = "@aws-sdk/core"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/core/-/core-3.750.0.tgz"; - sha512 = "bZ5K7N5L4+Pa2epbVpUQqd1XLG2uU8BGs/Sd+2nbgTf+lNQJyIxAg/Qsrjz9MzmY8zzQIeRQEkNmR6yVAfCmmQ=="; + url = "https://registry.npmjs.org/@aws-sdk/core/-/core-3.758.0.tgz"; + sha512 = "0RswbdR9jt/XKemaLNuxi2gGr4xGlHyGxkTdhSQzCyUe9A9OPCoLl3rIESRguQEech+oJnbHk/wuiwHqTuP9sg=="; }; }; "@aws-sdk/credential-provider-env-3.296.0" = { @@ -381,22 +372,22 @@ let sha512 = "eDWSU3p04gytkkVXnYn05YzrP5SEaj/DQiafd4y+iBl8IFfF3zM6982rs6qFhvpwrHeSbLqHNfKR1HDWVwfG5g=="; }; }; - "@aws-sdk/credential-provider-env-3.750.0" = { + "@aws-sdk/credential-provider-env-3.758.0" = { name = "_at_aws-sdk_slash_credential-provider-env"; packageName = "@aws-sdk/credential-provider-env"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.750.0.tgz"; - sha512 = "In6bsG0p/P31HcH4DBRKBbcDS/3SHvEPjfXV8ODPWZO/l3/p7IRoYBdQ07C9R+VMZU2D0+/Sc/DWK/TUNDk1+Q=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.758.0.tgz"; + sha512 = "N27eFoRrO6MeUNumtNHDW9WOiwfd59LPXPqDrIa3kWL/s+fOKFHb9xIcF++bAwtcZnAxKkgpDCUP+INNZskE+w=="; }; }; - "@aws-sdk/credential-provider-http-3.750.0" = { + "@aws-sdk/credential-provider-http-3.758.0" = { name = "_at_aws-sdk_slash_credential-provider-http"; packageName = "@aws-sdk/credential-provider-http"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.750.0.tgz"; - sha512 = "wFB9qqfa20AB0dElsQz5ZlZT5o+a+XzpEpmg0erylmGYqEOvh8NQWfDUVpRmQuGq9VbvW/8cIbxPoNqEbPtuWQ=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.758.0.tgz"; + sha512 = "Xt9/U8qUCiw1hihztWkNeIR+arg6P+yda10OuCHX6kFVx3auTlU7+hCqs3UxqniGU4dguHuftf3mRpi5/GJ33Q=="; }; }; "@aws-sdk/credential-provider-imds-3.296.0" = { @@ -417,13 +408,13 @@ let sha512 = "U0ecY0GX2jeDAgmTzaVO9YgjlLUfb8wgZSu1OwbOxCJscL/5eFkhcF0/xJQXDbRgcj4H4dlquqeSWsBVl/PgvQ=="; }; }; - "@aws-sdk/credential-provider-ini-3.750.0" = { + "@aws-sdk/credential-provider-ini-3.758.0" = { name = "_at_aws-sdk_slash_credential-provider-ini"; packageName = "@aws-sdk/credential-provider-ini"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.750.0.tgz"; - sha512 = "2YIZmyEr5RUd3uxXpxOLD9G67Bibm4I/65M6vKFP17jVMUT+R1nL7mKqmhEVO2p+BoeV+bwMyJ/jpTYG368PCg=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.758.0.tgz"; + sha512 = "cymSKMcP5d+OsgetoIZ5QCe1wnp2Q/tq+uIxVdh9MbfdBBEnl9Ecq6dH6VlYS89sp4QKuxHxkWXVnbXU3Q19Aw=="; }; }; "@aws-sdk/credential-provider-node-3.296.0" = { @@ -435,13 +426,13 @@ let sha512 = "oCkmh2b1DQhHkhd/qA9jiSIOkrBBK7cMg1/PVIgLw8e15NkzUHBObLJ/ZQw6ZzCxZzjlMYaFv9oCB8hyO8txmA=="; }; }; - "@aws-sdk/credential-provider-node-3.750.0" = { + "@aws-sdk/credential-provider-node-3.758.0" = { name = "_at_aws-sdk_slash_credential-provider-node"; packageName = "@aws-sdk/credential-provider-node"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.750.0.tgz"; - sha512 = "THWHHAceLwsOiowPEmKyhWVDlEUxH07GHSw5AQFDvNQtGKOQl0HSIFO1mKObT2Q2Vqzji9Bq8H58SO5BFtNPRw=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.758.0.tgz"; + sha512 = "+DaMv63wiq7pJrhIQzZYMn4hSarKiizDoJRvyR7WGhnn0oQ/getX9Z0VNCV3i7lIFoLNTb7WMmQ9k7+z/uD5EQ=="; }; }; "@aws-sdk/credential-provider-process-3.296.0" = { @@ -453,13 +444,13 @@ let sha512 = "AY7sTX2dGi8ripuCpcJLYHOZB2wJ6NnseyK/kK5TfJn/pgboKwuGtz0hkJCVprNWomKa6IpHksm7vLQ4O2E+UA=="; }; }; - "@aws-sdk/credential-provider-process-3.750.0" = { + "@aws-sdk/credential-provider-process-3.758.0" = { name = "_at_aws-sdk_slash_credential-provider-process"; packageName = "@aws-sdk/credential-provider-process"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.750.0.tgz"; - sha512 = "Q78SCH1n0m7tpu36sJwfrUSxI8l611OyysjQeMiIOliVfZICEoHcLHLcLkiR+tnIpZ3rk7d2EQ6R1jwlXnalMQ=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.758.0.tgz"; + sha512 = "AzcY74QTPqcbXWVgjpPZ3HOmxQZYPROIBz2YINF0OQk0MhezDWV/O7Xec+K1+MPGQO3qS6EDrUUlnPLjsqieHA=="; }; }; "@aws-sdk/credential-provider-sso-3.296.0" = { @@ -471,13 +462,13 @@ let sha512 = "zPFHDX/niXfcQrKQhmBv1XPYEe4b7im4vRKrzjYXgDRpG2M3LP0KaWIwN6Ap+GRYBNBthen86vhTlmKGzyU5YA=="; }; }; - "@aws-sdk/credential-provider-sso-3.750.0" = { + "@aws-sdk/credential-provider-sso-3.758.0" = { name = "_at_aws-sdk_slash_credential-provider-sso"; packageName = "@aws-sdk/credential-provider-sso"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.750.0.tgz"; - sha512 = "FGYrDjXN/FOQVi/t8fHSv8zCk+NEvtFnuc4cZUj5OIbM4vrfFc5VaPyn41Uza3iv6Qq9rZg0QOwWnqK8lNrqUw=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.758.0.tgz"; + sha512 = "x0FYJqcOLUCv8GLLFDYMXRAQKGjoM+L0BG4BiHYZRDf24yQWFCAZsCQAYKo6XZYh2qznbsW6f//qpyJ5b0QVKQ=="; }; }; "@aws-sdk/credential-provider-web-identity-3.296.0" = { @@ -489,22 +480,22 @@ let sha512 = "Rl6Ohoekxe+pccA55XXQDW5wApbg3rGWr6FkmPRcg7Ld6Vfe+HL8OtfsFf83/0eoFerevbif+00BdknXWT05LA=="; }; }; - "@aws-sdk/credential-provider-web-identity-3.750.0" = { + "@aws-sdk/credential-provider-web-identity-3.758.0" = { name = "_at_aws-sdk_slash_credential-provider-web-identity"; packageName = "@aws-sdk/credential-provider-web-identity"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.750.0.tgz"; - sha512 = "Nz8zs3YJ+GOTSrq+LyzbbC1Ffpt7pK38gcOyNZv76pP5MswKTUKNYBJehqwa+i7FcFQHsCk3TdhR8MT1ZR23uA=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.758.0.tgz"; + sha512 = "XGguXhBqiCXMXRxcfCAVPlMbm3VyJTou79r/3mxWddHWF0XbhaQiBIbUz6vobVTD25YQRbWSmSch7VA8kI5Lrw=="; }; }; - "@aws-sdk/crt-loader-3.750.0" = { + "@aws-sdk/crt-loader-3.758.0" = { name = "_at_aws-sdk_slash_crt-loader"; packageName = "@aws-sdk/crt-loader"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/crt-loader/-/crt-loader-3.750.0.tgz"; - sha512 = "L92XdDaDKQi1ldocQnBjUpu5o47GMdGaZ2TTUDOnOZyIggb15lNsfknJaLz3Q74rx09qkY1OYe8zsTKBB7lMmQ=="; + url = "https://registry.npmjs.org/@aws-sdk/crt-loader/-/crt-loader-3.758.0.tgz"; + sha512 = "FnLhsDNK3il4rm6Egv7IEuOf8Oiyte5AVeoYkuqgmkCll58tRZCJXYNG/VE+Tket0s3joueVt7rwvHXnMxG0rg=="; }; }; "@aws-sdk/eventstream-codec-3.296.0" = { @@ -606,13 +597,13 @@ let sha512 = "SCIt10cr5dud7hvwveU4wkLjvkGssJ3GrcbHCds2NwI+JHmpcaaNYLAqi305JAuT29T36U5ssTFDSmrrEOcfag=="; }; }; - "@aws-sdk/lib-storage-3.750.0" = { + "@aws-sdk/lib-storage-3.758.0" = { name = "_at_aws-sdk_slash_lib-storage"; packageName = "@aws-sdk/lib-storage"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.750.0.tgz"; - sha512 = "2IHbhUzlKtiAZVW7S5jkJfVDj5pJC9TldHGJLYRAR9GReG9HhK6mI7kLnYE9jf3GchWfe/Bn3wqSwh3BIf0OZQ=="; + url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.758.0.tgz"; + sha512 = "g07y7rA505zaTJNPTmvW4zYJA3gThFDE1be7kBUKhTKAdwv8jVSbOiAy2AhClXs2evSUoQiFFtD1xWxLRXPPRQ=="; }; }; "@aws-sdk/md5-js-3.296.0" = { @@ -687,13 +678,13 @@ let sha512 = "F5wVMhLIgA86PKsK/Az7LGIiNVDdZjoSn0+boe6fYW/AIAmgJhPf//500Md0GsKsLOCcPcxiQC43a0hVT2zbew=="; }; }; - "@aws-sdk/middleware-flexible-checksums-3.750.0" = { + "@aws-sdk/middleware-flexible-checksums-3.758.0" = { name = "_at_aws-sdk_slash_middleware-flexible-checksums"; packageName = "@aws-sdk/middleware-flexible-checksums"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.750.0.tgz"; - sha512 = "ach0d2buDnX2TUausUbiXXFWFo3IegLnCrA+Rw8I9AYVpLN9lTaRwAYJwYC6zEuW9Golff8MwkYsp/OaC5tKMw=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.758.0.tgz"; + sha512 = "o8Rk71S08YTKLoSobucjnbj97OCGaXgpEDNKXpXaavUM5xLNoHCLSUPRCiEN86Ivqxg1n17Y2nSRhfbsveOXXA=="; }; }; "@aws-sdk/middleware-host-header-3.296.0" = { @@ -786,13 +777,13 @@ let sha512 = "zH4uZKEqumo01wn+dTwrYnvOui9GjDiuBHdECnSjnA0Mkxo/tfMPYzYD7mE8kUlBz7HfQcXeXlyaApj9fPkxvg=="; }; }; - "@aws-sdk/middleware-sdk-s3-3.750.0" = { + "@aws-sdk/middleware-sdk-s3-3.758.0" = { name = "_at_aws-sdk_slash_middleware-sdk-s3"; packageName = "@aws-sdk/middleware-sdk-s3"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.750.0.tgz"; - sha512 = "3H6Z46cmAQCHQ0z8mm7/cftY5ifiLfCjbObrbyyp2fhQs9zk6gCKzIX8Zjhw0RMd93FZi3ebRuKJWmMglf4Itw=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.758.0.tgz"; + sha512 = "6mJ2zyyHPYSV6bAcaFpsdoXZJeQlR1QgBnZZ6juY/+dcYiuyWCdyLUbGzSZSE7GTfx6i+9+QWFeoIMlWKgU63A=="; }; }; "@aws-sdk/middleware-sdk-sts-3.296.0" = { @@ -858,22 +849,22 @@ let sha512 = "L7jacxSt6gxX1gD3tQtfwHqBDk5rT2wWD3rxBa6rs7f81b9ObgY/sPT2IgRT7JNCVzvKLYFxJaTklDj65mY1SQ=="; }; }; - "@aws-sdk/middleware-user-agent-3.750.0" = { + "@aws-sdk/middleware-user-agent-3.758.0" = { name = "_at_aws-sdk_slash_middleware-user-agent"; packageName = "@aws-sdk/middleware-user-agent"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.750.0.tgz"; - sha512 = "YYcslDsP5+2NZoN3UwuhZGkhAHPSli7HlJHBafBrvjGV/I9f8FuOO1d1ebxGdEP4HyRXUGyh+7Ur4q+Psk0ryw=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.758.0.tgz"; + sha512 = "iNyehQXtQlj69JCgfaOssgZD4HeYGOwxcaKeG6F+40cwBjTAi0+Ph1yfDwqk2qiBPIRWJ/9l2LodZbxiBqgrwg=="; }; }; - "@aws-sdk/nested-clients-3.750.0" = { + "@aws-sdk/nested-clients-3.758.0" = { name = "_at_aws-sdk_slash_nested-clients"; packageName = "@aws-sdk/nested-clients"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.750.0.tgz"; - sha512 = "OH68BRF0rt9nDloq4zsfeHI0G21lj11a66qosaljtEP66PWm7tQ06feKbFkXHT5E1K3QhJW3nVyK8v2fEBY5fg=="; + url = "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.758.0.tgz"; + sha512 = "YZ5s7PSvyF3Mt2h1EQulCG93uybprNGbBkPmVuy/HMMfbFTt4iL3SbKjxqvOZelm86epFfj7pvK7FliI2WOEcg=="; }; }; "@aws-sdk/node-config-provider-3.296.0" = { @@ -939,13 +930,13 @@ let sha512 = "Lvj1kPRC5IuJBr9DyJ9T9/plkh+EfKLy+12s/mykOy1JaKHDpvj+XGy2YO6YgYVOb8JFtaqloid+5COtje4JTQ=="; }; }; - "@aws-sdk/s3-presigned-post-3.750.0" = { + "@aws-sdk/s3-presigned-post-3.758.0" = { name = "_at_aws-sdk_slash_s3-presigned-post"; packageName = "@aws-sdk/s3-presigned-post"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.750.0.tgz"; - sha512 = "pKCc/ZMj4rSnMwRyRiMfmTIPj5ODc0VM11+Lkywl+rEWru9kH05fww6TYximZuiBcixbaMVkQ4ePXj6DNsRB4w=="; + url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.758.0.tgz"; + sha512 = "x+TWQ6xYD+/i3IlIM0nn1HGAKCmkG12VslKyJSrZAjwWQeVerj6LPVIJvYFcZbNU5lEPWCnlVqKw3S3NgG+N4Q=="; }; }; "@aws-sdk/s3-request-presigner-3.296.0" = { @@ -957,13 +948,13 @@ let sha512 = "BQv+oNA5EzJymrfh7cnMun/ougmTX3eo6bGCWn/bQdL1LyxodeVdRZacD5tN+lAUYtjhQ7yS23ozYh0lvWNEXw=="; }; }; - "@aws-sdk/s3-request-presigner-3.750.0" = { + "@aws-sdk/s3-request-presigner-3.758.0" = { name = "_at_aws-sdk_slash_s3-request-presigner"; packageName = "@aws-sdk/s3-request-presigner"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.750.0.tgz"; - sha512 = "G4GNngNQlh9EyJZj2WKOOikX0Fev1WSxTV/XJugaHlpnVriebvi3GzolrgxUpRrcGpFGWjmAxLi/gYxTUla1ow=="; + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.758.0.tgz"; + sha512 = "dVyItwu/J1InfJBbCPpHRV9jrsBfI7L0RlDGyS3x/xqBwnm5qpvgNZQasQiyqIl+WJB4f5rZRZHgHuwftqINbA=="; }; }; "@aws-sdk/service-error-classification-3.296.0" = { @@ -993,13 +984,13 @@ let sha512 = "NQyJ/FClty4VmF1WoV4rOkbN0Unn0zevzy8iJrYhqxE3Sc7lySM4Btnsd4Iqelm2dR6l+jNRApGgD8NvoGjGig=="; }; }; - "@aws-sdk/signature-v4-crt-3.750.0" = { + "@aws-sdk/signature-v4-crt-3.758.0" = { name = "_at_aws-sdk_slash_signature-v4-crt"; packageName = "@aws-sdk/signature-v4-crt"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.750.0.tgz"; - sha512 = "8GET9edlujvrCHi4C6mnlViiQmYsena6HiSAHIeLh6vu7WgCDI1Gpgo2UI7Z93TRjyhp/c95ifKVjJDeauPPrw=="; + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.758.0.tgz"; + sha512 = "DioxfJ8+KenOwydElJvWwMxw0IN8rTD3lbV3AbURwIp+5FBDz8F5ykMO1o1YUQvrGuUNtala8lX3ScE2L7tw9w=="; }; }; "@aws-sdk/signature-v4-multi-region-3.296.0" = { @@ -1011,13 +1002,13 @@ let sha512 = "BNMXS0YJEgflPhO2KxXG4f0iTMOGdyxslDMNGmMWGGQm6bbwtqZ7Y9ZyMQYKfzk3GUPpfGQcaaSNiGfURPOCOg=="; }; }; - "@aws-sdk/signature-v4-multi-region-3.750.0" = { + "@aws-sdk/signature-v4-multi-region-3.758.0" = { name = "_at_aws-sdk_slash_signature-v4-multi-region"; packageName = "@aws-sdk/signature-v4-multi-region"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.750.0.tgz"; - sha512 = "RA9hv1Irro/CrdPcOEXKwJ0DJYJwYCsauGEdRXihrRfy8MNSR9E+mD5/Fr5Rxjaq5AHM05DYnN3mg/DU6VwzSw=="; + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.758.0.tgz"; + sha512 = "0RPCo8fYJcrenJ6bRtiUbFOSgQ1CX/GpvwtLU2Fam1tS9h2klKK8d74caeV6A1mIUvBU7bhyQ0wMGlwMtn3EYw=="; }; }; "@aws-sdk/smithy-client-3.296.0" = { @@ -1038,13 +1029,13 @@ let sha512 = "yC1ku7A5S+o/CLlgbgDB2bx8+Wq43qj8xfohmTuIhpiP2m/NyUiRVv6S6ARONLI6bVeo1T2/BFk5Q9DfE2xzAQ=="; }; }; - "@aws-sdk/token-providers-3.750.0" = { + "@aws-sdk/token-providers-3.758.0" = { name = "_at_aws-sdk_slash_token-providers"; packageName = "@aws-sdk/token-providers"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.750.0.tgz"; - sha512 = "X/KzqZw41iWolwNdc8e3RMcNSMR364viHv78u6AefXOO5eRM40c4/LuST1jDzq35/LpnqRhL7/MuixOetw+sFw=="; + url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.758.0.tgz"; + sha512 = "ckptN1tNrIfQUaGWm/ayW1ddG+imbKN7HHhjFdS4VfItsP0QQOB0+Ov+tpgb4MoNR4JaUghMIVStjIeHN2ks1w=="; }; }; "@aws-sdk/types-3.296.0" = { @@ -1290,13 +1281,13 @@ let sha512 = "AMWac8aIBnaa9nxAEpZ752j29a/UQTViRfR5gnCX38ECBKGfOQMpgYnee5HdlMr4GHJj0WkOzQxBtInW4pV58g=="; }; }; - "@aws-sdk/util-user-agent-node-3.750.0" = { + "@aws-sdk/util-user-agent-node-3.758.0" = { name = "_at_aws-sdk_slash_util-user-agent-node"; packageName = "@aws-sdk/util-user-agent-node"; - version = "3.750.0"; + version = "3.758.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.750.0.tgz"; - sha512 = "84HJj9G9zbrHX2opLk9eHfDceB+UIHVrmflMzWHpsmo9fDuro/flIBqaVDlE021Osj6qIM0SJJcnL6s23j7JEw=="; + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.758.0.tgz"; + sha512 = "A5EZw85V6WhoKMV2hbuFRvb9NPlxEErb4HPO6/SPXYY4QrjprIzScHxikqcWv1w4J3apB1wto9LPU3IMsYtfrw=="; }; }; "@aws-sdk/util-utf8-3.295.0" = { @@ -1362,13 +1353,13 @@ let sha512 = "FPwHpZywuyasDSLMqJ6fhbOK3TqUdviZNF8OqRGA4W5Ewib2lEEZ+pBsYcBa88B2NGO/SEnYPGhyBqNlE8ilSw=="; }; }; - "@azure/core-client-1.9.2" = { + "@azure/core-client-1.9.3" = { name = "_at_azure_slash_core-client"; packageName = "@azure/core-client"; - version = "1.9.2"; + version = "1.9.3"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-client/-/core-client-1.9.2.tgz"; - sha512 = "kRdry/rav3fUKHl/aDLd/pDLcB+4pOFwPPTVEExuMyaI5r+JBbMWqRbCY1pn5BniDaU3lRxO9eaQ1AmSMehl/w=="; + url = "https://registry.npmjs.org/@azure/core-client/-/core-client-1.9.3.tgz"; + sha512 = "/wGw8fJ4mdpJ1Cum7s1S+VQyXt1ihwKLzfabS1O/RDADnmzVc01dHn44qD0BvGH6KlZNzOMW95tEpKqhkCChPA=="; }; }; "@azure/core-http-compat-2.2.0" = { @@ -1398,13 +1389,13 @@ let sha512 = "YKWi9YuCU04B55h25cnOYZHxXYtEvQEbKST5vqRga7hWY9ydd3FZHdeQF8pyh+acWZvppw13M/LMGx0LABUVMA=="; }; }; - "@azure/core-rest-pipeline-1.19.0" = { + "@azure/core-rest-pipeline-1.19.1" = { name = "_at_azure_slash_core-rest-pipeline"; packageName = "@azure/core-rest-pipeline"; - version = "1.19.0"; + version = "1.19.1"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.19.0.tgz"; - sha512 = "bM3308LRyg5g7r3Twprtqww0R/r7+GyVxj4BafcmVPo4WQoGt5JXuaqxHEFjw2o3rvFZcUPiqJMg6WuvEEeVUA=="; + url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.19.1.tgz"; + sha512 = "zHeoI3NCs53lLBbWNzQycjnYKsA1CVKlnzSNuSFcUDwBp8HHVObePxrM7HaX+Ha5Ks639H7chNC9HOaIhNS03w=="; }; }; "@azure/core-tracing-1.2.0" = { @@ -1425,13 +1416,13 @@ let sha512 = "DxOSLua+NdpWoSqULhjDyAZTXFdP/LKkqtYuxxz1SCN289zk3OG8UOpnCQAz/tygyACBtWp/BoO72ptK7msY8g=="; }; }; - "@azure/core-xml-1.4.4" = { + "@azure/core-xml-1.4.5" = { name = "_at_azure_slash_core-xml"; packageName = "@azure/core-xml"; - version = "1.4.4"; + version = "1.4.5"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-xml/-/core-xml-1.4.4.tgz"; - sha512 = "J4FYAqakGXcbfeZjwjMzjNcpcH4E+JtEBv+xcV1yL0Ydn/6wbQfeFKTCHh9wttAi0lmajHw7yBbHPRG+YHckZQ=="; + url = "https://registry.npmjs.org/@azure/core-xml/-/core-xml-1.4.5.tgz"; + sha512 = "gT4H8mTaSXRz7eGTuQyq1aIJnJqeXzpOe9Ay7Z3FrCouer14CbV3VzjnJrNrQfbBpGBLO9oy8BmrY75A0p53cA=="; }; }; "@azure/identity-4.5.0" = { @@ -1524,13 +1515,13 @@ let sha512 = "oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ=="; }; }; - "@babel/core-7.26.9" = { + "@babel/core-7.26.10" = { name = "_at_babel_slash_core"; packageName = "@babel/core"; - version = "7.26.9"; + version = "7.26.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/core/-/core-7.26.9.tgz"; - sha512 = "lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw=="; + url = "https://registry.npmjs.org/@babel/core/-/core-7.26.10.tgz"; + sha512 = "vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ=="; }; }; "@babel/generator-7.18.2" = { @@ -1542,6 +1533,15 @@ let sha512 = "W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw=="; }; }; + "@babel/generator-7.26.10" = { + name = "_at_babel_slash_generator"; + packageName = "@babel/generator"; + version = "7.26.10"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.26.10.tgz"; + sha512 = "rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang=="; + }; + }; "@babel/generator-7.26.3" = { name = "_at_babel_slash_generator"; packageName = "@babel/generator"; @@ -1551,15 +1551,6 @@ let sha512 = "6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ=="; }; }; - "@babel/generator-7.26.9" = { - name = "_at_babel_slash_generator"; - packageName = "@babel/generator"; - version = "7.26.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz"; - sha512 = "kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="; - }; - }; "@babel/helper-annotate-as-pure-7.25.9" = { name = "_at_babel_slash_helper-annotate-as-pure"; packageName = "@babel/helper-annotate-as-pure"; @@ -1677,13 +1668,13 @@ let sha512 = "e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw=="; }; }; - "@babel/helpers-7.26.9" = { + "@babel/helpers-7.26.10" = { name = "_at_babel_slash_helpers"; packageName = "@babel/helpers"; - version = "7.26.9"; + version = "7.26.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz"; - sha512 = "Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA=="; + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.10.tgz"; + sha512 = "UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g=="; }; }; "@babel/highlight-7.25.9" = { @@ -1713,13 +1704,13 @@ let sha512 = "FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow=="; }; }; - "@babel/parser-7.26.9" = { + "@babel/parser-7.26.10" = { name = "_at_babel_slash_parser"; packageName = "@babel/parser"; - version = "7.26.9"; + version = "7.26.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz"; - sha512 = "81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="; + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.26.10.tgz"; + sha512 = "6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA=="; }; }; "@babel/plugin-syntax-jsx-7.25.9" = { @@ -1785,13 +1776,13 @@ let sha512 = "8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA=="; }; }; - "@babel/runtime-7.26.9" = { + "@babel/runtime-7.26.10" = { name = "_at_babel_slash_runtime"; packageName = "@babel/runtime"; - version = "7.26.9"; + version = "7.26.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.9.tgz"; - sha512 = "aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg=="; + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.10.tgz"; + sha512 = "2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw=="; }; }; "@babel/template-7.25.9" = { @@ -1812,13 +1803,13 @@ let sha512 = "qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="; }; }; - "@babel/traverse-7.26.9" = { + "@babel/traverse-7.26.10" = { name = "_at_babel_slash_traverse"; packageName = "@babel/traverse"; - version = "7.26.9"; + version = "7.26.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz"; - sha512 = "ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="; + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.10.tgz"; + sha512 = "k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A=="; }; }; "@babel/types-7.19.0" = { @@ -1830,6 +1821,15 @@ let sha512 = "YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA=="; }; }; + "@babel/types-7.26.10" = { + name = "_at_babel_slash_types"; + packageName = "@babel/types"; + version = "7.26.10"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/types/-/types-7.26.10.tgz"; + sha512 = "emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ=="; + }; + }; "@babel/types-7.26.3" = { name = "_at_babel_slash_types"; packageName = "@babel/types"; @@ -1839,15 +1839,6 @@ let sha512 = "vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA=="; }; }; - "@babel/types-7.26.9" = { - name = "_at_babel_slash_types"; - packageName = "@babel/types"; - version = "7.26.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz"; - sha512 = "Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="; - }; - }; "@balena/dockerignore-1.0.2" = { name = "_at_balena_slash_dockerignore"; packageName = "@balena/dockerignore"; @@ -1947,139 +1938,139 @@ let sha512 = "Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA=="; }; }; - "@commitlint/config-validator-19.5.0" = { + "@commitlint/config-validator-19.8.0" = { name = "_at_commitlint_slash_config-validator"; packageName = "@commitlint/config-validator"; - version = "19.5.0"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.5.0.tgz"; - sha512 = "CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw=="; + url = "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.8.0.tgz"; + sha512 = "+r5ZvD/0hQC3w5VOHJhGcCooiAVdynFlCe2d6I9dU+PvXdV3O+fU4vipVg+6hyLbQUuCH82mz3HnT/cBQTYYuA=="; }; }; - "@commitlint/ensure-19.5.0" = { + "@commitlint/ensure-19.8.0" = { name = "_at_commitlint_slash_ensure"; packageName = "@commitlint/ensure"; - version = "19.5.0"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.5.0.tgz"; - sha512 = "Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg=="; + url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.8.0.tgz"; + sha512 = "kNiNU4/bhEQ/wutI1tp1pVW1mQ0QbAjfPRo5v8SaxoVV+ARhkB8Wjg3BSseNYECPzWWfg/WDqQGIfV1RaBFQZg=="; }; }; - "@commitlint/execute-rule-19.5.0" = { + "@commitlint/execute-rule-19.8.0" = { name = "_at_commitlint_slash_execute-rule"; packageName = "@commitlint/execute-rule"; - version = "19.5.0"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.5.0.tgz"; - sha512 = "aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg=="; + url = "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.8.0.tgz"; + sha512 = "fuLeI+EZ9x2v/+TXKAjplBJWI9CNrHnyi5nvUQGQt4WRkww/d95oVRsc9ajpt4xFrFmqMZkd/xBQHZDvALIY7A=="; }; }; - "@commitlint/format-19.5.0" = { + "@commitlint/format-19.8.0" = { name = "_at_commitlint_slash_format"; packageName = "@commitlint/format"; - version = "19.5.0"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/format/-/format-19.5.0.tgz"; - sha512 = "yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A=="; + url = "https://registry.npmjs.org/@commitlint/format/-/format-19.8.0.tgz"; + sha512 = "EOpA8IERpQstxwp/WGnDArA7S+wlZDeTeKi98WMOvaDLKbjptuHWdOYYr790iO7kTCif/z971PKPI2PkWMfOxg=="; }; }; - "@commitlint/is-ignored-19.7.1" = { + "@commitlint/is-ignored-19.8.0" = { name = "_at_commitlint_slash_is-ignored"; packageName = "@commitlint/is-ignored"; - version = "19.7.1"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.7.1.tgz"; - sha512 = "3IaOc6HVg2hAoGleRK3r9vL9zZ3XY0rf1RsUf6jdQLuaD46ZHnXBiOPTyQ004C4IvYjSWqJwlh0/u2P73aIE3g=="; + url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.8.0.tgz"; + sha512 = "L2Jv9yUg/I+jF3zikOV0rdiHUul9X3a/oU5HIXhAJLE2+TXTnEBfqYP9G5yMw/Yb40SnR764g4fyDK6WR2xtpw=="; }; }; - "@commitlint/lint-19.7.1" = { + "@commitlint/lint-19.8.0" = { name = "_at_commitlint_slash_lint"; packageName = "@commitlint/lint"; - version = "19.7.1"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/lint/-/lint-19.7.1.tgz"; - sha512 = "LhcPfVjcOcOZA7LEuBBeO00o3MeZa+tWrX9Xyl1r9PMd5FWsEoZI9IgnGqTKZ0lZt5pO3ZlstgnRyY1CJJc9Xg=="; + url = "https://registry.npmjs.org/@commitlint/lint/-/lint-19.8.0.tgz"; + sha512 = "+/NZKyWKSf39FeNpqhfMebmaLa1P90i1Nrb1SrA7oSU5GNN/lksA4z6+ZTnsft01YfhRZSYMbgGsARXvkr/VLQ=="; }; }; - "@commitlint/load-19.6.1" = { + "@commitlint/load-19.8.0" = { name = "_at_commitlint_slash_load"; packageName = "@commitlint/load"; - version = "19.6.1"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/load/-/load-19.6.1.tgz"; - sha512 = "kE4mRKWWNju2QpsCWt428XBvUH55OET2N4QKQ0bF85qS/XbsRGG1MiTByDNlEVpEPceMkDr46LNH95DtRwcsfA=="; + url = "https://registry.npmjs.org/@commitlint/load/-/load-19.8.0.tgz"; + sha512 = "4rvmm3ff81Sfb+mcWT5WKlyOa+Hd33WSbirTVUer0wjS1Hv/Hzr07Uv1ULIV9DkimZKNyOwXn593c+h8lsDQPQ=="; }; }; - "@commitlint/message-19.5.0" = { + "@commitlint/message-19.8.0" = { name = "_at_commitlint_slash_message"; packageName = "@commitlint/message"; - version = "19.5.0"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/message/-/message-19.5.0.tgz"; - sha512 = "R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ=="; + url = "https://registry.npmjs.org/@commitlint/message/-/message-19.8.0.tgz"; + sha512 = "qs/5Vi9bYjf+ZV40bvdCyBn5DvbuelhR6qewLE8Bh476F7KnNyLfdM/ETJ4cp96WgeeHo6tesA2TMXS0sh5X4A=="; }; }; - "@commitlint/parse-19.5.0" = { + "@commitlint/parse-19.8.0" = { name = "_at_commitlint_slash_parse"; packageName = "@commitlint/parse"; - version = "19.5.0"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/parse/-/parse-19.5.0.tgz"; - sha512 = "cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw=="; + url = "https://registry.npmjs.org/@commitlint/parse/-/parse-19.8.0.tgz"; + sha512 = "YNIKAc4EXvNeAvyeEnzgvm1VyAe0/b3Wax7pjJSwXuhqIQ1/t2hD3OYRXb6D5/GffIvaX82RbjD+nWtMZCLL7Q=="; }; }; - "@commitlint/read-19.5.0" = { + "@commitlint/read-19.8.0" = { name = "_at_commitlint_slash_read"; packageName = "@commitlint/read"; - version = "19.5.0"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/read/-/read-19.5.0.tgz"; - sha512 = "TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ=="; + url = "https://registry.npmjs.org/@commitlint/read/-/read-19.8.0.tgz"; + sha512 = "6ywxOGYajcxK1y1MfzrOnwsXO6nnErna88gRWEl3qqOOP8MDu/DTeRkGLXBFIZuRZ7mm5yyxU5BmeUvMpNte5w=="; }; }; - "@commitlint/resolve-extends-19.5.0" = { + "@commitlint/resolve-extends-19.8.0" = { name = "_at_commitlint_slash_resolve-extends"; packageName = "@commitlint/resolve-extends"; - version = "19.5.0"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.5.0.tgz"; - sha512 = "CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA=="; + url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.8.0.tgz"; + sha512 = "CLanRQwuG2LPfFVvrkTrBR/L/DMy3+ETsgBqW1OvRxmzp/bbVJW0Xw23LnnExgYcsaFtos967lul1CsbsnJlzQ=="; }; }; - "@commitlint/rules-19.6.0" = { + "@commitlint/rules-19.8.0" = { name = "_at_commitlint_slash_rules"; packageName = "@commitlint/rules"; - version = "19.6.0"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/rules/-/rules-19.6.0.tgz"; - sha512 = "1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw=="; + url = "https://registry.npmjs.org/@commitlint/rules/-/rules-19.8.0.tgz"; + sha512 = "IZ5IE90h6DSWNuNK/cwjABLAKdy8tP8OgGVGbXe1noBEX5hSsu00uRlLu6JuruiXjWJz2dZc+YSw3H0UZyl/mA=="; }; }; - "@commitlint/to-lines-19.5.0" = { + "@commitlint/to-lines-19.8.0" = { name = "_at_commitlint_slash_to-lines"; packageName = "@commitlint/to-lines"; - version = "19.5.0"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.5.0.tgz"; - sha512 = "R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ=="; + url = "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.8.0.tgz"; + sha512 = "3CKLUw41Cur8VMjh16y8LcsOaKbmQjAKCWlXx6B0vOUREplp6em9uIVhI8Cv934qiwkbi2+uv+mVZPnXJi1o9A=="; }; }; - "@commitlint/top-level-19.5.0" = { + "@commitlint/top-level-19.8.0" = { name = "_at_commitlint_slash_top-level"; packageName = "@commitlint/top-level"; - version = "19.5.0"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.5.0.tgz"; - sha512 = "IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng=="; + url = "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.8.0.tgz"; + sha512 = "Rphgoc/omYZisoNkcfaBRPQr4myZEHhLPx2/vTXNLjiCw4RgfPR1wEgUpJ9OOmDCiv5ZyIExhprNLhteqH4FuQ=="; }; }; - "@commitlint/types-19.5.0" = { + "@commitlint/types-19.8.0" = { name = "_at_commitlint_slash_types"; packageName = "@commitlint/types"; - version = "19.5.0"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/types/-/types-19.5.0.tgz"; - sha512 = "DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg=="; + url = "https://registry.npmjs.org/@commitlint/types/-/types-19.8.0.tgz"; + sha512 = "LRjP623jPyf3Poyfb0ohMj8I3ORyBDOwXAgxxVPbSD0unJuW2mJWeiRfaQinjtccMqC5Wy1HOMfa4btKjbNxbg=="; }; }; "@conventional-changelog/git-client-1.0.1" = { @@ -2235,13 +2226,13 @@ let sha512 = "sscfB3woNDNj60/yGXAdwNtIRWZ89y35xnIaJVDMk5TPMMpaDvuk0a34iOPIq0g4V+Y8e3RyAg71SH6ADwSjGw=="; }; }; - "@cspell/dict-cpp-6.0.4" = { + "@cspell/dict-cpp-6.0.6" = { name = "_at_cspell_slash_dict-cpp"; packageName = "@cspell/dict-cpp"; - version = "6.0.4"; + version = "6.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.4.tgz"; - sha512 = "IvXx3TlM+OL0CFriapk7ZHmeY89dSSdo/BZ3DGf+WUS+BWd64H+z/xr3xkkqY0Eu6MV/vdzNfkLm5zl45FDMGg=="; + url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.6.tgz"; + sha512 = "HMV1chsExuZt5IL9rYBW7GmhNZDVdQJEd1WtFgOO6jqiNxbpTG3Is3Pkldl7FpusBQQZr4BdjMit5bnPpVRy3A=="; }; }; "@cspell/dict-cryptocurrencies-1.0.10" = { @@ -2379,13 +2370,13 @@ let sha512 = "MAUqlMw73mgtSdxvbAvyRlvc3bYnrDqXQrx5K9SwW8F7fRYf9V4vWYFULh+UWwwkqkhX9w03ZqFYRTdkFku6uA=="; }; }; - "@cspell/dict-en-common-misspellings-2.0.9" = { + "@cspell/dict-en-common-misspellings-2.0.10" = { name = "_at_cspell_slash_dict-en-common-misspellings"; packageName = "@cspell/dict-en-common-misspellings"; - version = "2.0.9"; + version = "2.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.9.tgz"; - sha512 = "O/jAr1VNtuyCFckbTmpeEf43ZFWVD9cJFvWaA6rO2IVmLirJViHWJUyBZOuQcesSplzEIw80MAYmnK06/MDWXQ=="; + url = "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.10.tgz"; + sha512 = "80mXJLtr0tVEtzowrI7ycVae/ULAYImZUlr0kUTpa8i57AUk7Zy3pYBs44EYIKW7ZC9AHu4Qjjfq4vriAtyTDQ=="; }; }; "@cspell/dict-en-gb-1.1.33" = { @@ -2406,13 +2397,13 @@ let sha512 = "UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ=="; }; }; - "@cspell/dict-en_us-4.3.33" = { + "@cspell/dict-en_us-4.3.34" = { name = "_at_cspell_slash_dict-en_us"; packageName = "@cspell/dict-en_us"; - version = "4.3.33"; + version = "4.3.34"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.33.tgz"; - sha512 = "HniqQjzPVn24NEkHooBIw1cH+iO3AKMA9oDTwazUYQP1/ldqXsz6ce4+fdHia2nqypmic/lHVkQgIVhP48q/sA=="; + url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.34.tgz"; + sha512 = "ewJXNV7Nk5vxbGvHvxYLDGoXN0Lq5sfSgX8SAlcYL+2bZ7r25nNOLHou5hdFlNgvviGTx/SFPlVKjdjVJlblgA=="; }; }; "@cspell/dict-filetypes-1.1.8" = { @@ -2478,13 +2469,13 @@ let sha512 = "Mbi+zWdiP9yzL+X4YD9Tgcm5YQ95Ql+Y3vF2LRnOY6g2QWaijTRN1rgksVuxzpFqHi//+bx2uoUb0XEKBYDi8g=="; }; }; - "@cspell/dict-fullstack-3.2.5" = { + "@cspell/dict-fullstack-3.2.6" = { name = "_at_cspell_slash_dict-fullstack"; packageName = "@cspell/dict-fullstack"; - version = "3.2.5"; + version = "3.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.5.tgz"; - sha512 = "XNmNdovPUS9Vc2JvfBscy8zZfwyxR11sB4fxU2lXh7LzUvOn2/OkKAzj41JTdiWfVnJ/yvsRkspe+b7kr+DIQw=="; + url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.6.tgz"; + sha512 = "cSaq9rz5RIU9j+0jcF2vnKPTQjxGXclntmoNp4XB7yFX2621PxJcekGjwf/lN5heJwVxGLL9toR0CBlGKwQBgA=="; }; }; "@cspell/dict-gaming-terms-1.1.0" = { @@ -2514,13 +2505,13 @@ let sha512 = "qq3Cjnx2U1jpeWAGJL1GL0ylEhUMqyaR36Xij6Y6Aq4bViCRp+HRRqk0x5/IHHbOrti45h3yy7ii1itRFo+Xkg=="; }; }; - "@cspell/dict-golang-6.0.18" = { + "@cspell/dict-golang-6.0.19" = { name = "_at_cspell_slash_dict-golang"; packageName = "@cspell/dict-golang"; - version = "6.0.18"; + version = "6.0.19"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-6.0.18.tgz"; - sha512 = "Mt+7NwfodDwUk7423DdaQa0YaA+4UoV3XSxQwZioqjpFBCuxfvvv4l80MxCTAAbK6duGj0uHbGTwpv8fyKYPKg=="; + url = "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-6.0.19.tgz"; + sha512 = "VS+oinB2/CbgmHE06kMJlj52OVMZM0S2EEXph3oaroNTgTuclSwdFylQmOEjquZi55kW+n3FM9MyWXiitB7Dtg=="; }; }; "@cspell/dict-google-1.0.8" = { @@ -2739,13 +2730,13 @@ let sha512 = "RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ=="; }; }; - "@cspell/dict-npm-5.1.27" = { + "@cspell/dict-npm-5.1.30" = { name = "_at_cspell_slash_dict-npm"; packageName = "@cspell/dict-npm"; - version = "5.1.27"; + version = "5.1.30"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.27.tgz"; - sha512 = "LGss1yrjhxSmxL4VfMC+UBDMVHfqHudgC7b39M74EVys+nNC4/lqDHacb6Aw7i6aUn9mzdNIkdTTD+LdDcHvPA=="; + url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.30.tgz"; + sha512 = "qRMJZFz4FBPECH5rGQN9p2Ld6nfpSaPFQvlG6V2RowWcrJQqF4RFmLUNuRQpvndpSeIUo32yX1hxb7AT45ARCQ=="; }; }; "@cspell/dict-php-1.0.25" = { @@ -2802,13 +2793,13 @@ let sha512 = "KuyOQaby9NID/pn7EkXilpUxjVIvvyLzhr7BPsDS6FcvUE8Yhss6bJowEDHSv6pa+W2387phoqbDf2rTicquAA=="; }; }; - "@cspell/dict-python-4.2.15" = { + "@cspell/dict-python-4.2.16" = { name = "_at_cspell_slash_dict-python"; packageName = "@cspell/dict-python"; - version = "4.2.15"; + version = "4.2.16"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.2.15.tgz"; - sha512 = "VNXhj0Eh+hdHN89MgyaoSAexBQKmYtJaMhucbMI7XmBs4pf8fuFFN3xugk51/A4TZJr8+RImdFFsGMOw+I4bDA=="; + url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.2.16.tgz"; + sha512 = "LkQssFt1hPOWXIQiD8ScTkz/41RL7Ti0V/2ytUzEW82dc0atIEksrBg8MuOjWXktp0Dk5tDwRLgmIvhV3CFFOA=="; }; }; "@cspell/dict-r-2.1.0" = { @@ -2829,13 +2820,13 @@ let sha512 = "I76hJA///lc1pgmDTGUFHN/O8KLIZIU/8TgIYIGI6Ix/YzSEvWNdQYbANn6JbCynS0X+7IbZ2Ft+QqvmGtIWuA=="; }; }; - "@cspell/dict-ruby-5.0.7" = { + "@cspell/dict-ruby-5.0.8" = { name = "_at_cspell_slash_dict-ruby"; packageName = "@cspell/dict-ruby"; - version = "5.0.7"; + version = "5.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-5.0.7.tgz"; - sha512 = "4/d0hcoPzi5Alk0FmcyqlzFW9lQnZh9j07MJzPcyVO62nYJJAGKaPZL2o4qHeCS/od/ctJC5AHRdoUm0ktsw6Q=="; + url = "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-5.0.8.tgz"; + sha512 = "ixuTneU0aH1cPQRbWJvtvOntMFfeQR2KxT8LuAv5jBKqQWIHSxzGlp+zX3SVyoeR0kOWiu64/O5Yn836A5yMcQ=="; }; }; "@cspell/dict-rust-1.0.23" = { @@ -2928,13 +2919,13 @@ let sha512 = "3lGzDCwUmnrfckv3Q4eVSW3sK3cHqqHlPprFJZD4nAqt23ot7fic5ALR7J4joHpvDz36nHX34TgcbZNNZOC/JA=="; }; }; - "@cspell/dict-terraform-1.1.0" = { + "@cspell/dict-terraform-1.1.1" = { name = "_at_cspell_slash_dict-terraform"; packageName = "@cspell/dict-terraform"; - version = "1.1.0"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-terraform/-/dict-terraform-1.1.0.tgz"; - sha512 = "G55pcUUxeXAhejstmD35B47SkFd4uqCQimc+CMgq8Nx0dr03guL2iMsz8faRWQGkCnGimX8S91rbOhDv9p/heg=="; + url = "https://registry.npmjs.org/@cspell/dict-terraform/-/dict-terraform-1.1.1.tgz"; + sha512 = "07KFDwCU7EnKl4hOZLsLKlj6Zceq/IsQ3LRWUyIjvGFfZHdoGtFdCp3ZPVgnFaAcd/DKv+WVkrOzUBSYqHopQQ=="; }; }; "@cspell/dict-typescript-1.0.20" = { @@ -3317,13 +3308,13 @@ let sha512 = "jNT8nwH1f9X5GEITXaQ8IF/KdskvIkOFfB2CvwumsveVidzpSc+mvhhTMdAGSYF3O+Nq49lJ7y+ssODRXu06+A=="; }; }; - "@electron/osx-sign-1.3.2" = { + "@electron/osx-sign-1.3.3" = { name = "_at_electron_slash_osx-sign"; packageName = "@electron/osx-sign"; - version = "1.3.2"; + version = "1.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.3.2.tgz"; - sha512 = "KqVlm9WMWq19lBpCXQoThC/Koaiji2zotUDYwZDaZlZZym+FXY9mQW8wN6sUQ93nkVc42f3TQ1S/XN9S1kjM5Q=="; + url = "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.3.3.tgz"; + sha512 = "KZ8mhXvWv2rIEgMbWZ4y33bDHyUKMXnx4M0sTyPNK/vcB81ImdeY9Ggdqy0SWbMDgmbqyQ+phgejh6V3R2QuSg=="; }; }; "@electron/packager-18.3.6" = { @@ -3344,13 +3335,13 @@ let sha512 = "sKGD+xav4Gh25+LcLY0rjIwcCFTw+f/HU1pB48UVbwxXXRGaXEqIH0AaYKN46dgd/7+6kuiDXzoyAEvx1zCsdw=="; }; }; - "@electron/universal-2.0.1" = { + "@electron/universal-2.0.2" = { name = "_at_electron_slash_universal"; packageName = "@electron/universal"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@electron/universal/-/universal-2.0.1.tgz"; - sha512 = "fKpv9kg4SPmt+hY7SVBnIYULE9QJl8L3sCfcBsnqbJwwBwAeTLokJ9TRt9y7bK0JAzIW2y78TVVjvnQEms/yyA=="; + url = "https://registry.npmjs.org/@electron/universal/-/universal-2.0.2.tgz"; + sha512 = "mqY1szx5/d5YLvfCDWWoJdkSIjIz+NdWN4pN0r78lYiE7De+slLpuF3lVxIT+hlJnwk5sH2wFRMl6/oUgUVO3A=="; }; }; "@electron/windows-sign-1.2.1" = { @@ -3371,13 +3362,13 @@ let sha512 = "Ce3xE2JvTSEbASFbRbA1gAIcMcZWdS2yUYRaQbeM0nbOzaZrUYfa3ePtcriYRZOZmr+CkKA+zbjhvTpIOAYVcw=="; }; }; - "@eslint-community/eslint-utils-4.4.1" = { + "@eslint-community/eslint-utils-4.5.1" = { name = "_at_eslint-community_slash_eslint-utils"; packageName = "@eslint-community/eslint-utils"; - version = "4.4.1"; + version = "4.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz"; - sha512 = "s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA=="; + url = "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.1.tgz"; + sha512 = "soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w=="; }; }; "@eslint-community/regexpp-4.12.1" = { @@ -3398,6 +3389,15 @@ let sha512 = "GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w=="; }; }; + "@eslint/config-helpers-0.1.0" = { + name = "_at_eslint_slash_config-helpers"; + packageName = "@eslint/config-helpers"; + version = "0.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.1.0.tgz"; + sha512 = "kLrdPDJE1ckPo94kmPPf9Hfd0DU0Jw6oKYrhe+pwSC0iTUInmTa+w6fw8sGgcfkFJGNdWOUeOaDM4quW4a7OkA=="; + }; + }; "@eslint/core-0.12.0" = { name = "_at_eslint_slash_core"; packageName = "@eslint/core"; @@ -3425,13 +3425,13 @@ let sha512 = "yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ=="; }; }; - "@eslint/js-9.21.0" = { + "@eslint/js-9.22.0" = { name = "_at_eslint_slash_js"; packageName = "@eslint/js"; - version = "9.21.0"; + version = "9.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/@eslint/js/-/js-9.21.0.tgz"; - sha512 = "BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw=="; + url = "https://registry.npmjs.org/@eslint/js/-/js-9.22.0.tgz"; + sha512 = "vLFajx9o8d1/oL2ZkpMYbkLv8nDB6yaIwFNt7nI4+I80U/z03SxmfOMsLbvWr3p7C+Wnoh//aOu2pQW8cS0HCQ=="; }; }; "@eslint/object-schema-2.1.6" = { @@ -3506,15 +3506,6 @@ let sha512 = "uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA=="; }; }; - "@fastify/busboy-1.0.0" = { - name = "_at_fastify_slash_busboy"; - packageName = "@fastify/busboy"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@fastify/busboy/-/busboy-1.0.0.tgz"; - sha512 = "tzTXX1TFEjWCseEsNdIlXXkD+48uJoN+zpqIojUX4pSoMscsbhO/UuVEB5SzJucexqDWOo2ma0ECwdD7hZdrzg=="; - }; - }; "@fastify/busboy-2.1.1" = { name = "_at_fastify_slash_busboy"; packageName = "@fastify/busboy"; @@ -3533,6 +3524,15 @@ let sha512 = "k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="; }; }; + "@gerrit0/mini-shiki-1.27.2" = { + name = "_at_gerrit0_slash_mini-shiki"; + packageName = "@gerrit0/mini-shiki"; + version = "1.27.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@gerrit0/mini-shiki/-/mini-shiki-1.27.2.tgz"; + sha512 = "GeWyHz8ao2gBiUW4OJnQDxXQnFgZQwwQk05t/CVVgNBN7/rK8XZ7xY6YhLVv9tH3VppWWmr9DCl3MwemB/i+Og=="; + }; + }; "@gitbeaker/core-42.1.0" = { name = "_at_gitbeaker_slash_core"; packageName = "@gitbeaker/core"; @@ -3560,13 +3560,13 @@ let sha512 = "7eSXktkUEF2O2A3F1cO/ZJ/3Mco4v59rptghzhrvjZryPcAxlYWxNJbuFtjc5bc0OnJW7i5AYfJSYvZQSh3gYg=="; }; }; - "@grpc/grpc-js-1.12.6" = { + "@grpc/grpc-js-1.13.0" = { name = "_at_grpc_slash_grpc-js"; packageName = "@grpc/grpc-js"; - version = "1.12.6"; + version = "1.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.12.6.tgz"; - sha512 = "JXUj6PI0oqqzTGvKtzOkxtpsyPRNsrmhh41TtIz/zEB6J+AUiZZ0dxWzcMwO9Ns5rmSPuMdghlTbUuqIM48d3Q=="; + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.13.0.tgz"; + sha512 = "pMuxInZjUnUkgMT2QLZclRqwk2ykJbIU05aZgPgJYXEpN9+2I7z7aNwcjWZSycRPl232FfhPszyBFJyOxTHNog=="; }; }; "@grpc/proto-loader-0.7.13" = { @@ -3722,13 +3722,13 @@ let sha512 = "CifrkgQjDkUkWexmgYYNyB5603HhTHI91vLFeQXh6qrTKiCMVASol01Rs1cv6LP/A2WccZSRlJKZhbaBIs/9ZA=="; }; }; - "@inquirer/checkbox-4.1.2" = { + "@inquirer/checkbox-4.1.3" = { name = "_at_inquirer_slash_checkbox"; packageName = "@inquirer/checkbox"; - version = "4.1.2"; + version = "4.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-4.1.2.tgz"; - sha512 = "PL9ixC5YsPXzXhAZFUPmkXGxfgjkdfZdPEPPmt4kFwQ4LBMDG9n/nHXYRGGZSKZJs+d1sGKWgS2GiPzVRKUdtQ=="; + url = "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-4.1.3.tgz"; + sha512 = "KU1MGwf24iABJjGESxhyj+/rlQYSRoCfcuHDEHXfZ1DENmbuSRfyrUb+LLjHoee5TNOFKwaFxDXc5/zRwJUPMQ=="; }; }; "@inquirer/confirm-2.0.17" = { @@ -3740,22 +3740,22 @@ let sha512 = "EqzhGryzmGpy2aJf6LxJVhndxYmFs+m8cxXzf8nejb1DE3sabf6mUgBcp4J0jAUEiAcYzqmkqRr7LPFh/WdnXA=="; }; }; - "@inquirer/confirm-5.1.6" = { + "@inquirer/confirm-5.1.7" = { name = "_at_inquirer_slash_confirm"; packageName = "@inquirer/confirm"; - version = "5.1.6"; + version = "5.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.6.tgz"; - sha512 = "6ZXYK3M1XmaVBZX6FCfChgtponnL0R6I7k8Nu+kaoNkT828FVZTcca1MqmWQipaW2oNREQl5AaPCUOOCVNdRMw=="; + url = "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.7.tgz"; + sha512 = "Xrfbrw9eSiHb+GsesO8TQIeHSMTP0xyvTCeeYevgZ4sKW+iz9w/47bgfG9b0niQm+xaLY2EWPBINUPldLwvYiw=="; }; }; - "@inquirer/core-10.1.7" = { + "@inquirer/core-10.1.8" = { name = "_at_inquirer_slash_core"; packageName = "@inquirer/core"; - version = "10.1.7"; + version = "10.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/core/-/core-10.1.7.tgz"; - sha512 = "AA9CQhlrt6ZgiSy6qoAigiA1izOa751ugX6ioSjqgJ+/Gd+tEN/TORk5sUYNjXuHWfW0r1n/a6ak4u/NqHHrtA=="; + url = "https://registry.npmjs.org/@inquirer/core/-/core-10.1.8.tgz"; + sha512 = "HpAqR8y715zPpM9e/9Q+N88bnGwqqL8ePgZ0SMv/s3673JLMv3bIkoivGmjPqXlEgisUksSXibweQccUwEx4qQ=="; }; }; "@inquirer/core-2.3.1" = { @@ -3785,13 +3785,13 @@ let sha512 = "gQ77Ls09x5vKLVNMH9q/7xvYPT6sIs5f7URksw+a2iJZ0j48tVS6crLqm2ugG33tgXHIwiEqkytY60Zyh5GkJQ=="; }; }; - "@inquirer/editor-4.2.7" = { + "@inquirer/editor-4.2.8" = { name = "_at_inquirer_slash_editor"; packageName = "@inquirer/editor"; - version = "4.2.7"; + version = "4.2.8"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/editor/-/editor-4.2.7.tgz"; - sha512 = "gktCSQtnSZHaBytkJKMKEuswSk2cDBuXX5rxGFv306mwHfBPjg5UAldw9zWGoEyvA9KpRDkeM4jfrx0rXn0GyA=="; + url = "https://registry.npmjs.org/@inquirer/editor/-/editor-4.2.8.tgz"; + sha512 = "UkGKbMFlQw5k4ZLjDwEi5z8NIVlP/3DAlLHta0o0pSsdpPThNmPtUL8mvGCHUaQtR+QrxR9yRYNWgKMsHkfIUA=="; }; }; "@inquirer/expand-1.1.16" = { @@ -3803,22 +3803,22 @@ let sha512 = "TGLU9egcuo+s7PxphKUCnJnpCIVY32/EwPCLLuu+gTvYiD8hZgx8Z2niNQD36sa6xcfpdLY6xXDBiL/+g1r2XQ=="; }; }; - "@inquirer/expand-4.0.9" = { + "@inquirer/expand-4.0.10" = { name = "_at_inquirer_slash_expand"; packageName = "@inquirer/expand"; - version = "4.0.9"; + version = "4.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/expand/-/expand-4.0.9.tgz"; - sha512 = "Xxt6nhomWTAmuSX61kVgglLjMEFGa+7+F6UUtdEUeg7fg4r9vaFttUUKrtkViYYrQBA5Ia1tkOJj2koP9BuLig=="; + url = "https://registry.npmjs.org/@inquirer/expand/-/expand-4.0.10.tgz"; + sha512 = "leyBouGJ77ggv51Jb/OJmLGGnU2HYc13MZ2iiPNLwe2VgFgZPVqsrRWSa1RAHKyazjOyvSNKLD1B2K7A/iWi1g=="; }; }; - "@inquirer/figures-1.0.10" = { + "@inquirer/figures-1.0.11" = { name = "_at_inquirer_slash_figures"; packageName = "@inquirer/figures"; - version = "1.0.10"; + version = "1.0.11"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.10.tgz"; - sha512 = "Ey6176gZmeqZuY/W/nZiUyvmb1/qInjcpiZjXWi6nON+nxJpD1bxtSoBxNliGISae32n6OwbY+TSXPZ1CfS4bw=="; + url = "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.11.tgz"; + sha512 = "eOg92lvrn/aRUqbxRyvpEWnrvRuTYRifixHkYVpJiygTgVSBIHDqLh0SrMQXkafvULg3ck11V7xvR+zcgvpHFw=="; }; }; "@inquirer/input-1.2.16" = { @@ -3830,22 +3830,22 @@ let sha512 = "Ou0LaSWvj1ni+egnyQ+NBtfM1885UwhRCMtsRt2bBO47DoC1dwtCa+ZUNgrxlnCHHF0IXsbQHYtIIjFGAavI4g=="; }; }; - "@inquirer/input-4.1.6" = { + "@inquirer/input-4.1.7" = { name = "_at_inquirer_slash_input"; packageName = "@inquirer/input"; - version = "4.1.6"; + version = "4.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/input/-/input-4.1.6.tgz"; - sha512 = "1f5AIsZuVjPT4ecA8AwaxDFNHny/tSershP/cTvTDxLdiIGTeILNcKozB0LaYt6mojJLUbOYhpIxicaYf7UKIQ=="; + url = "https://registry.npmjs.org/@inquirer/input/-/input-4.1.7.tgz"; + sha512 = "rCQAipJNA14UTH84df/z4jDJ9LZ54H6zzuCAi7WZ0qVqx3CSqLjfXAMd5cpISIxbiHVJCPRB81gZksq6CZsqDg=="; }; }; - "@inquirer/number-3.0.9" = { + "@inquirer/number-3.0.10" = { name = "_at_inquirer_slash_number"; packageName = "@inquirer/number"; - version = "3.0.9"; + version = "3.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/number/-/number-3.0.9.tgz"; - sha512 = "iN2xZvH3tyIYXLXBvlVh0npk1q/aVuKXZo5hj+K3W3D4ngAEq/DkLpofRzx6oebTUhBvOgryZ+rMV0yImKnG3w=="; + url = "https://registry.npmjs.org/@inquirer/number/-/number-3.0.10.tgz"; + sha512 = "GLsdnxzNefjCJUmWyjaAuNklHgDpCTL4RMllAVhVvAzBwRW9g38eZ5tWgzo1lirtSDTpsh593hqXVhxvdrjfwA=="; }; }; "@inquirer/password-1.1.16" = { @@ -3857,13 +3857,13 @@ let sha512 = "aZYZVHLUXZ2gbBot+i+zOJrks1WaiI95lvZCn1sKfcw6MtSSlYC8uDX8sTzQvAsQ8epHoP84UNvAIT0KVGOGqw=="; }; }; - "@inquirer/password-4.0.9" = { + "@inquirer/password-4.0.10" = { name = "_at_inquirer_slash_password"; packageName = "@inquirer/password"; - version = "4.0.9"; + version = "4.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/password/-/password-4.0.9.tgz"; - sha512 = "xBEoOw1XKb0rIN208YU7wM7oJEHhIYkfG7LpTJAEW913GZeaoQerzf5U/LSHI45EVvjAdgNXmXgH51cUXKZcJQ=="; + url = "https://registry.npmjs.org/@inquirer/password/-/password-4.0.10.tgz"; + sha512 = "JC538ujqeYKkFqLoWZ0ILBteIUO2yajBMVEUZSxjl9x6fiEQtM+I5Rca7M2D8edMDbyHLnXifGH1hJZdh8V5rA=="; }; }; "@inquirer/prompts-2.3.1" = { @@ -3875,15 +3875,6 @@ let sha512 = "YQeBFzIE+6fcec5N/U2mSz+IcKEG4wtGDwF7MBLIDgITWzB3o723JpKJ1rxWqdCvTXkYE+gDXK/seSN6omo3DQ=="; }; }; - "@inquirer/prompts-7.2.1" = { - name = "_at_inquirer_slash_prompts"; - packageName = "@inquirer/prompts"; - version = "7.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/prompts/-/prompts-7.2.1.tgz"; - sha512 = "v2JSGri6/HXSfoGIwuKEn8sNCQK6nsB2BNpy2lSX6QH9bsECrMv93QHnj5+f+1ZWpF/VNioIV2B/PDox8EvGuQ=="; - }; - }; "@inquirer/prompts-7.3.2" = { name = "_at_inquirer_slash_prompts"; packageName = "@inquirer/prompts"; @@ -3893,6 +3884,15 @@ let sha512 = "G1ytyOoHh5BphmEBxSwALin3n1KGNYB6yImbICcRQdzXfOGbuJ9Jske/Of5Sebk339NSGGNfUshnzK8YWkTPsQ=="; }; }; + "@inquirer/prompts-7.3.3" = { + name = "_at_inquirer_slash_prompts"; + packageName = "@inquirer/prompts"; + version = "7.3.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@inquirer/prompts/-/prompts-7.3.3.tgz"; + sha512 = "QS1AQgJ113iE/nmym03yKZKHvGjVWwkGZT3B1yKrrMG0bJKQg1jUkntFP8aPd2FUQzu/nga7QU2eDpzIP5it0Q=="; + }; + }; "@inquirer/rawlist-1.2.16" = { name = "_at_inquirer_slash_rawlist"; packageName = "@inquirer/rawlist"; @@ -3902,22 +3902,22 @@ let sha512 = "pZ6TRg2qMwZAOZAV6TvghCtkr53dGnK29GMNQ3vMZXSNguvGqtOVc4j/h1T8kqGJFagjyfBZhUPGwNS55O5qPQ=="; }; }; - "@inquirer/rawlist-4.0.9" = { + "@inquirer/rawlist-4.0.10" = { name = "_at_inquirer_slash_rawlist"; packageName = "@inquirer/rawlist"; - version = "4.0.9"; + version = "4.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-4.0.9.tgz"; - sha512 = "+5t6ebehKqgoxV8fXwE49HkSF2Rc9ijNiVGEQZwvbMI61/Q5RcD+jWD6Gs1tKdz5lkI8GRBL31iO0HjGK1bv+A=="; + url = "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-4.0.10.tgz"; + sha512 = "vOQbQkmhaCsF2bUmjoyRSZJBz77UnIF/F3ZS2LMgwbgyaG2WgwKHh0WKNj0APDB72WDbZijhW5nObQbk+TnbcA=="; }; }; - "@inquirer/search-3.0.9" = { + "@inquirer/search-3.0.10" = { name = "_at_inquirer_slash_search"; packageName = "@inquirer/search"; - version = "3.0.9"; + version = "3.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/search/-/search-3.0.9.tgz"; - sha512 = "DWmKztkYo9CvldGBaRMr0ETUHgR86zE6sPDVOHsqz4ISe9o1LuiWfgJk+2r75acFclA93J/lqzhT0dTjCzHuoA=="; + url = "https://registry.npmjs.org/@inquirer/search/-/search-3.0.10.tgz"; + sha512 = "EAVKAz6P1LajZOdoL+R+XC3HJYSU261fbJzO4fCkJJ7UPFcm+nP+gzC+DDZWsb2WK9PQvKsnaKiNKsY8B6dBWQ=="; }; }; "@inquirer/select-1.3.3" = { @@ -3929,13 +3929,13 @@ let sha512 = "RzlRISXWqIKEf83FDC9ZtJ3JvuK1l7aGpretf41BCWYrvla2wU8W8MTRNMiPrPJ+1SIqrRC1nZdZ60hD9hRXLg=="; }; }; - "@inquirer/select-4.0.9" = { + "@inquirer/select-4.0.10" = { name = "_at_inquirer_slash_select"; packageName = "@inquirer/select"; - version = "4.0.9"; + version = "4.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/select/-/select-4.0.9.tgz"; - sha512 = "BpJyJe7Dkhv2kz7yG7bPSbJLQuu/rqyNlF1CfiiFeFwouegfH+zh13KDyt6+d9DwucKo7hqM3wKLLyJxZMO+Xg=="; + url = "https://registry.npmjs.org/@inquirer/select/-/select-4.0.10.tgz"; + sha512 = "Tg8S9nESnCfISu5tCZSuXpXq0wHuDVimj7xyHstABgR34zcJnLdq/VbjB2mdZvNAMAehYBnNzSjxB06UE8LLAA=="; }; }; "@inquirer/type-1.5.5" = { @@ -3947,13 +3947,13 @@ let sha512 = "MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA=="; }; }; - "@inquirer/type-3.0.4" = { + "@inquirer/type-3.0.5" = { name = "_at_inquirer_slash_type"; packageName = "@inquirer/type"; - version = "3.0.4"; + version = "3.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/type/-/type-3.0.4.tgz"; - sha512 = "2MNFrDY8jkFYc9Il9DgLsHhMzuHnOYM1+CUYVWbzu9oT0hC7V7EcYvdCKeoll/Fcci04A+ERZ9wcc7cQ8lTkIA=="; + url = "https://registry.npmjs.org/@inquirer/type/-/type-3.0.5.tgz"; + sha512 = "ZJpeIYYueOz/i/ONzrfof8g89kNdO2hjGuvULROo3O8rlB2CRtSseE5KeirnyE4t/thAn/EwvS/vuQeJCn+NZg=="; }; }; "@ioredis/commands-1.2.0" = { @@ -4478,15 +4478,6 @@ let sha512 = "uyKjxCe1ou11RJz6koBr5vXtyaGjTA45hF+H88GNW96vms7jKqmYdMm067Az1OKwl38h02lQRQ2tmoEzV7u74w=="; }; }; - "@jsii/check-node-1.107.0" = { - name = "_at_jsii_slash_check-node"; - packageName = "@jsii/check-node"; - version = "1.107.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.107.0.tgz"; - sha512 = "ud21048xxEVbbzjFlE7GQSuypW7/8P6Dyu+jjTwp6wGFbnbpxZiupIMdp6eSVSqo9M3rC14SyjNq2liXoSYBZg=="; - }; - }; "@jsii/check-node-1.108.0" = { name = "_at_jsii_slash_check-node"; packageName = "@jsii/check-node"; @@ -4496,31 +4487,22 @@ let sha512 = "wa8AGH31Cl0x1jU/KtM6JB32IurBmK1YiX5ZnCndifRCehLnS8DmJCPYrzJbKD4xqmHigaq6696fAnM/L7qIsw=="; }; }; - "@jsii/spec-1.108.0" = { + "@jsii/check-node-1.109.0" = { + name = "_at_jsii_slash_check-node"; + packageName = "@jsii/check-node"; + version = "1.109.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.109.0.tgz"; + sha512 = "KUdmXNeCpOgjwK3QtEnxwMjIbGsPG4YkSwYsU1dmYftOz8x/oTC/D4Bz9uS7f4ARBBVkCWJWtS01l8nQgAZ2jQ=="; + }; + }; + "@jsii/spec-1.109.0" = { name = "_at_jsii_slash_spec"; packageName = "@jsii/spec"; - version = "1.108.0"; + version = "1.109.0"; src = fetchurl { - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.108.0.tgz"; - sha512 = "YtebmBRy19UT1pKmxqlTqfW1OcFFjuU2zxxi+QFfM8KG1ahBlpcuz+3DE9gG1qTASIJJJI0fd8PaAiZ5gE40sQ=="; - }; - }; - "@lezer/common-1.2.3" = { - name = "_at_lezer_slash_common"; - packageName = "@lezer/common"; - version = "1.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@lezer/common/-/common-1.2.3.tgz"; - sha512 = "w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA=="; - }; - }; - "@lezer/lr-1.4.2" = { - name = "_at_lezer_slash_lr"; - packageName = "@lezer/lr"; - version = "1.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.2.tgz"; - sha512 = "pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA=="; + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.109.0.tgz"; + sha512 = "+IQT4DN7/ZjaheFuwKgfpVdDIF+Reb8Hq4nO43Lu0hjeVugelOL0P22cXL229BjQ5yDRr44Fr64FuI/WUNGRKA=="; }; }; "@listr2/prompt-adapter-inquirer-2.0.18" = { @@ -4541,15 +4523,6 @@ let sha512 = "RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA=="; }; }; - "@lmdb/lmdb-darwin-arm64-2.8.5" = { - name = "_at_lmdb_slash_lmdb-darwin-arm64"; - packageName = "@lmdb/lmdb-darwin-arm64"; - version = "2.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.8.5.tgz"; - sha512 = "KPDeVScZgA1oq0CiPBcOa3kHIqU+pTOwRFDIhxvmf8CTNvqdZQYp5cCKW0bUk69VygB2PuTiINFWbY78aR2pQw=="; - }; - }; "@lmdb/lmdb-darwin-x64-2.5.3" = { name = "_at_lmdb_slash_lmdb-darwin-x64"; packageName = "@lmdb/lmdb-darwin-x64"; @@ -4559,15 +4532,6 @@ let sha512 = "337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA=="; }; }; - "@lmdb/lmdb-darwin-x64-2.8.5" = { - name = "_at_lmdb_slash_lmdb-darwin-x64"; - packageName = "@lmdb/lmdb-darwin-x64"; - version = "2.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.8.5.tgz"; - sha512 = "w/sLhN4T7MW1nB3R/U8WK5BgQLz904wh+/SmA2jD8NnF7BLLoUgflCNxOeSPOWp8geP6nP/+VjWzZVip7rZ1ug=="; - }; - }; "@lmdb/lmdb-linux-arm-2.5.3" = { name = "_at_lmdb_slash_lmdb-linux-arm"; packageName = "@lmdb/lmdb-linux-arm"; @@ -4577,15 +4541,6 @@ let sha512 = "mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg=="; }; }; - "@lmdb/lmdb-linux-arm-2.8.5" = { - name = "_at_lmdb_slash_lmdb-linux-arm"; - packageName = "@lmdb/lmdb-linux-arm"; - version = "2.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.8.5.tgz"; - sha512 = "c0TGMbm2M55pwTDIfkDLB6BpIsgxV4PjYck2HiOX+cy/JWiBXz32lYbarPqejKs9Flm7YVAKSILUducU9g2RVg=="; - }; - }; "@lmdb/lmdb-linux-arm64-2.5.3" = { name = "_at_lmdb_slash_lmdb-linux-arm64"; packageName = "@lmdb/lmdb-linux-arm64"; @@ -4595,15 +4550,6 @@ let sha512 = "VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q=="; }; }; - "@lmdb/lmdb-linux-arm64-2.8.5" = { - name = "_at_lmdb_slash_lmdb-linux-arm64"; - packageName = "@lmdb/lmdb-linux-arm64"; - version = "2.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.8.5.tgz"; - sha512 = "vtbZRHH5UDlL01TT5jB576Zox3+hdyogvpcbvVJlmU5PdL3c5V7cj1EODdh1CHPksRl+cws/58ugEHi8bcj4Ww=="; - }; - }; "@lmdb/lmdb-linux-x64-2.5.3" = { name = "_at_lmdb_slash_lmdb-linux-x64"; packageName = "@lmdb/lmdb-linux-x64"; @@ -4613,15 +4559,6 @@ let sha512 = "qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow=="; }; }; - "@lmdb/lmdb-linux-x64-2.8.5" = { - name = "_at_lmdb_slash_lmdb-linux-x64"; - packageName = "@lmdb/lmdb-linux-x64"; - version = "2.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.8.5.tgz"; - sha512 = "Xkc8IUx9aEhP0zvgeKy7IQ3ReX2N8N1L0WPcQwnZweWmOuKfwpS3GRIYqLtK5za/w3E60zhFfNdS+3pBZPytqQ=="; - }; - }; "@lmdb/lmdb-win32-x64-2.5.3" = { name = "_at_lmdb_slash_lmdb-win32-x64"; packageName = "@lmdb/lmdb-win32-x64"; @@ -4631,15 +4568,6 @@ let sha512 = "cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA=="; }; }; - "@lmdb/lmdb-win32-x64-2.8.5" = { - name = "_at_lmdb_slash_lmdb-win32-x64"; - packageName = "@lmdb/lmdb-win32-x64"; - version = "2.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.8.5.tgz"; - sha512 = "4wvrf5BgnR8RpogHhtpCPJMKBmvyZPhhUtEwMJbXh0ni2BucpfF07jlmyM11zRqQ2XIq6PbC2j7W7UCCcm1rRQ=="; - }; - }; "@malept/cross-spawn-promise-2.0.0" = { name = "_at_malept_slash_cross-spawn-promise"; packageName = "@malept/cross-spawn-promise"; @@ -4667,22 +4595,13 @@ let sha512 = "llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg=="; }; }; - "@microsoft/rush-lib-5.149.1" = { + "@microsoft/rush-lib-5.150.0" = { name = "_at_microsoft_slash_rush-lib"; packageName = "@microsoft/rush-lib"; - version = "5.149.1"; + version = "5.150.0"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.149.1.tgz"; - sha512 = "x7787VxNas7xSQEilLJsUEW25jAtiTej11nSGEVXRrY/L78f6MD0xenCN8uVnWFn5Zxdj5+zoto0Xyktglgx7Q=="; - }; - }; - "@mischnic/json-sourcemap-0.1.1" = { - name = "_at_mischnic_slash_json-sourcemap"; - packageName = "@mischnic/json-sourcemap"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@mischnic/json-sourcemap/-/json-sourcemap-0.1.1.tgz"; - sha512 = "iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w=="; + url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.150.0.tgz"; + sha512 = "2SBN7A/iCVufTmuXdS+W1wY0MZaEyhxlme/NQTlXbTaYWaMGZJMso3YRBNKJJLE1T7NkxsvCVCp7/2QSh8k+JA=="; }; }; "@mixmark-io/domino-2.2.0" = { @@ -4910,13 +4829,13 @@ let sha512 = "3Hc2KGIkrvJWJqTbvueXzBeZlmvoOxc2jyX00yzr3+sNFquJg0N8hH4SAPLPVrkWIRQICVpVgjrss971awXVnA=="; }; }; - "@npmcli/run-script-9.0.2" = { + "@npmcli/run-script-9.1.0" = { name = "_at_npmcli_slash_run-script"; packageName = "@npmcli/run-script"; - version = "9.0.2"; + version = "9.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-9.0.2.tgz"; - sha512 = "cJXiUlycdizQwvqE1iaAb4VRUM3RX09/8q46zjvy+ct9GhfZRWd7jXYVc1tn/CfRlGPVkX/u4sstRlepsm7hfw=="; + url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-9.1.0.tgz"; + sha512 = "aoNSbxtkePXUlbZB+anS1LqsJdctG5n3UVhfU47+CDdwMi6uNTBMF9gPcQRnqghQd2FGzcwwIFBruFMxjhBewg=="; }; }; "@oclif/core-1.26.2" = { @@ -5027,580 +4946,85 @@ let sha512 = "3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg=="; }; }; - "@orval/angular-7.5.0" = { + "@orval/angular-7.7.0" = { name = "_at_orval_slash_angular"; packageName = "@orval/angular"; - version = "7.5.0"; + version = "7.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/angular/-/angular-7.5.0.tgz"; - sha512 = "9Q3JhewXhF0EsrGD+ZA0r16sVW1TnFUiHLM2A9Lv8KFQ7E9CHlwf4Ab2d9OOjw+kU9DaesBjs0Yhi1IOlAQYeQ=="; + url = "https://registry.npmjs.org/@orval/angular/-/angular-7.7.0.tgz"; + sha512 = "4FM2XtbAwmrfAOzqNsMiDhVQ1HjOWkZ6FVvqrRXnMZTI4Ldxagb+rOmb6FCGbcpOgJbpe+hGsCn5dNaHbrwjMA=="; }; }; - "@orval/axios-7.5.0" = { + "@orval/axios-7.7.0" = { name = "_at_orval_slash_axios"; packageName = "@orval/axios"; - version = "7.5.0"; + version = "7.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/axios/-/axios-7.5.0.tgz"; - sha512 = "P3eKnqHBC8pWMNN0jVhniANaeIIvWeDXMIVh35uht+DN3YU6fFoDEgdAs9qSe7U6g9BjB9PEmUtArQws2YXDXg=="; + url = "https://registry.npmjs.org/@orval/axios/-/axios-7.7.0.tgz"; + sha512 = "dU6LkgRjp8Fi4hXtjHMTtU0mzBhGx731Sbvo5DNlU5il3Jb+SgOaf2HiWJBRZPZCQtJ+vJ+8JpZpg1keGu7QlQ=="; }; }; - "@orval/core-7.5.0" = { + "@orval/core-7.7.0" = { name = "_at_orval_slash_core"; packageName = "@orval/core"; - version = "7.5.0"; + version = "7.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/core/-/core-7.5.0.tgz"; - sha512 = "EmHaes7uFQUZGRnb5OfXcV0FDRH7M9lZVFXswx1R9dZMOtkt7nKtvUF3b+sjBfmktQMfEnIakFxfuwM/T2r3/A=="; + url = "https://registry.npmjs.org/@orval/core/-/core-7.7.0.tgz"; + sha512 = "Sx0YtwHcp/Te180fhVtrZbGRpiKcBMIyueW4MRIHD+nn7Fa1+zJG+8QLPar4H13yANjV6+yj9oKCE1TxAm3pVw=="; }; }; - "@orval/fetch-7.5.0" = { + "@orval/fetch-7.7.0" = { name = "_at_orval_slash_fetch"; packageName = "@orval/fetch"; - version = "7.5.0"; + version = "7.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/fetch/-/fetch-7.5.0.tgz"; - sha512 = "5ip4b9NKjRn0yGj0F0PRarkJcBr0gD6ugFQ00/3ED5GO0UleBOL5AsOgpHR5OOWALnA0nSPA14pJFtQClfg1Kg=="; + url = "https://registry.npmjs.org/@orval/fetch/-/fetch-7.7.0.tgz"; + sha512 = "s9bYSVpskpakWX3KPhPYQJrOwutmUbNPjie0rD+aa55zDd/CYkuTjNKkG0fVdLzoysN7qIUweFWMlYIdYOVD7A=="; }; }; - "@orval/hono-7.5.0" = { + "@orval/hono-7.7.0" = { name = "_at_orval_slash_hono"; packageName = "@orval/hono"; - version = "7.5.0"; + version = "7.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/hono/-/hono-7.5.0.tgz"; - sha512 = "UMV/HQRFuaR6IzHuUhH6dbLdxxMV8o/IWpd62EP9dcIT2wbDI+tF9524f0nF9BNIdM58NMQz7M+so1avSU7Csg=="; + url = "https://registry.npmjs.org/@orval/hono/-/hono-7.7.0.tgz"; + sha512 = "QpAGZD7MDO7DZKc4cJnaqTy6ZSop79gClupiUYv7Xv6N9c98CvQxM+qlzNPVcqJKdhv6GQCH0zLB+ACYaR0btw=="; }; }; - "@orval/mock-7.5.0" = { + "@orval/mock-7.7.0" = { name = "_at_orval_slash_mock"; packageName = "@orval/mock"; - version = "7.5.0"; + version = "7.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/mock/-/mock-7.5.0.tgz"; - sha512 = "+MDK+7LZUXpRlphOFaeWFsTowtmx7ILQF/vfwW0uR8hnlogc2LumTA9oC96WWAAwXTG8V9WuWH4rEek1Gf6IEA=="; + url = "https://registry.npmjs.org/@orval/mock/-/mock-7.7.0.tgz"; + sha512 = "Qcm1UMV83ZYwzGqVC4Eq2vlgBFzOWzxV+qBLc+Ihgvff54+TWWB1mGD8hxzc8RqUmOxXdbauVqxE3z0/XvOX8Q=="; }; }; - "@orval/query-7.5.0" = { + "@orval/query-7.7.0" = { name = "_at_orval_slash_query"; packageName = "@orval/query"; - version = "7.5.0"; + version = "7.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/query/-/query-7.5.0.tgz"; - sha512 = "888TDfl5z0ZRbTp34l51GvPKN11cDolF+jWRk6p6YifpuCB5qPPBDbGae0195lx2zmM+gf3XEX0QF8YXd0WRzg=="; + url = "https://registry.npmjs.org/@orval/query/-/query-7.7.0.tgz"; + sha512 = "n8D95MEZbd02cHlcgjVIsXvZ/qlonu3QfiYSr/KdgzHfW6Xws7bHAtOr8l4LsXIZUvsYlPMlsHbc9axLMPjWZQ=="; }; }; - "@orval/swr-7.5.0" = { + "@orval/swr-7.7.0" = { name = "_at_orval_slash_swr"; packageName = "@orval/swr"; - version = "7.5.0"; + version = "7.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/swr/-/swr-7.5.0.tgz"; - sha512 = "bVy5cEFEww03yIqPSBlIS5fdoZUVEHBDtfz5Or7zibRLf/hsIUlb0nNt4AOYKtc3PoEMSlGsHxZq+qRqWxHwBQ=="; + url = "https://registry.npmjs.org/@orval/swr/-/swr-7.7.0.tgz"; + sha512 = "cXvUygiqKi9R82KqNpTABC/EEQhNwAXo5+0e2ugyE4AET9SoTBGcJmaa7+BaSRBO+LXxIzjD6hFdd9kYGQDPHg=="; }; }; - "@orval/zod-7.5.0" = { + "@orval/zod-7.7.0" = { name = "_at_orval_slash_zod"; packageName = "@orval/zod"; - version = "7.5.0"; + version = "7.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@orval/zod/-/zod-7.5.0.tgz"; - sha512 = "FvX1jPZOSQLCYA76te5qqN72B1K1nLjVF8rogJJqAXgU8zGNaYghl0o1X3B8w1LslKpHiatBS5bPGSVnypJbMw=="; - }; - }; - "@parcel/bundler-default-2.13.3" = { - name = "_at_parcel_slash_bundler-default"; - packageName = "@parcel/bundler-default"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.13.3.tgz"; - sha512 = "mOuWeth0bZzRv1b9Lrvydis/hAzJyePy0gwa0tix3/zyYBvw0JY+xkXVR4qKyD/blc1Ra2qOlfI2uD3ucnsdXA=="; - }; - }; - "@parcel/cache-2.13.3" = { - name = "_at_parcel_slash_cache"; - packageName = "@parcel/cache"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/cache/-/cache-2.13.3.tgz"; - sha512 = "Vz5+K5uCt9mcuQAMDo0JdbPYDmVdB8Nvu/A2vTEK2rqZPxvoOTczKeMBA4JqzKqGURHPRLaJCvuR8nDG+jhK9A=="; - }; - }; - "@parcel/codeframe-2.13.3" = { - name = "_at_parcel_slash_codeframe"; - packageName = "@parcel/codeframe"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.13.3.tgz"; - sha512 = "L/PQf+PT0xM8k9nc0B+PxxOYO2phQYnbuifu9o4pFRiqVmCtHztP+XMIvRJ2gOEXy3pgAImSPFVJ3xGxMFky4g=="; - }; - }; - "@parcel/compressor-raw-2.13.3" = { - name = "_at_parcel_slash_compressor-raw"; - packageName = "@parcel/compressor-raw"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.13.3.tgz"; - sha512 = "C6vjDlgTLjYc358i7LA/dqcL0XDQZ1IHXFw6hBaHHOfxPKW2T4bzUI6RURyToEK9Q1X7+ggDKqgdLxwp4veCFg=="; - }; - }; - "@parcel/config-default-2.13.3" = { - name = "_at_parcel_slash_config-default"; - packageName = "@parcel/config-default"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.13.3.tgz"; - sha512 = "WUsx83ic8DgLwwnL1Bua4lRgQqYjxiTT+DBxESGk1paNm1juWzyfPXEQDLXwiCTcWMQGiXQFQ8OuSISauVQ8dQ=="; - }; - }; - "@parcel/core-2.13.3" = { - name = "_at_parcel_slash_core"; - packageName = "@parcel/core"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/core/-/core-2.13.3.tgz"; - sha512 = "SRZFtqGiaKHlZ2YAvf+NHvBFWS3GnkBvJMfOJM7kxJRK3M1bhbwJa/GgSdzqro5UVf9Bfj6E+pkdrRQIOZ7jMQ=="; - }; - }; - "@parcel/diagnostic-2.13.3" = { - name = "_at_parcel_slash_diagnostic"; - packageName = "@parcel/diagnostic"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.13.3.tgz"; - sha512 = "C70KXLBaXLJvr7XCEVu8m6TqNdw1gQLxqg5BQ8roR62R4vWWDnOq8PEksxDi4Y8Z/FF4i3Sapv6tRx9iBNxDEg=="; - }; - }; - "@parcel/events-2.13.3" = { - name = "_at_parcel_slash_events"; - packageName = "@parcel/events"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/events/-/events-2.13.3.tgz"; - sha512 = "ZkSHTTbD/E+53AjUzhAWTnMLnxLEU5yRw0H614CaruGh+GjgOIKyukGeToF5Gf/lvZ159VrJCGE0Z5EpgHVkuQ=="; - }; - }; - "@parcel/feature-flags-2.13.3" = { - name = "_at_parcel_slash_feature-flags"; - packageName = "@parcel/feature-flags"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/feature-flags/-/feature-flags-2.13.3.tgz"; - sha512 = "UZm14QpamDFoUut9YtCZSpG1HxPs07lUwUCpsAYL0PpxASD3oWJQxIJGfDZPa2272DarXDG9adTKrNXvkHZblw=="; - }; - }; - "@parcel/fs-2.13.3" = { - name = "_at_parcel_slash_fs"; - packageName = "@parcel/fs"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/fs/-/fs-2.13.3.tgz"; - sha512 = "+MPWAt0zr+TCDSlj1LvkORTjfB/BSffsE99A9AvScKytDSYYpY2s0t4vtV9unSh0FHMS2aBCZNJ4t7KL+DcPIg=="; - }; - }; - "@parcel/graph-3.3.3" = { - name = "_at_parcel_slash_graph"; - packageName = "@parcel/graph"; - version = "3.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/graph/-/graph-3.3.3.tgz"; - sha512 = "pxs4GauEdvCN8nRd6wG3st6LvpHske3GfqGwUSR0P0X0pBPI1/NicvXz6xzp3rgb9gPWfbKXeI/2IOTfIxxVfg=="; - }; - }; - "@parcel/logger-2.13.3" = { - name = "_at_parcel_slash_logger"; - packageName = "@parcel/logger"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/logger/-/logger-2.13.3.tgz"; - sha512 = "8YF/ZhsQgd7ohQ2vEqcMD1Ag9JlJULROWRPGgGYLGD+twuxAiSdiFBpN3f+j4gQN4PYaLaIS/SwUFx11J243fQ=="; - }; - }; - "@parcel/markdown-ansi-2.13.3" = { - name = "_at_parcel_slash_markdown-ansi"; - packageName = "@parcel/markdown-ansi"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.13.3.tgz"; - sha512 = "B4rUdlNUulJs2xOQuDbN7Hq5a9roq8IZUcJ1vQ8PAv+zMGb7KCfqIIr/BSCDYGhayfAGBVWW8x55Kvrl1zrDYw=="; - }; - }; - "@parcel/namer-default-2.13.3" = { - name = "_at_parcel_slash_namer-default"; - packageName = "@parcel/namer-default"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.13.3.tgz"; - sha512 = "A2a5A5fuyNcjSGOS0hPcdQmOE2kszZnLIXof7UMGNkNkeC62KAG8WcFZH5RNOY3LT5H773hq51zmc2Y2gE5Rnw=="; - }; - }; - "@parcel/node-resolver-core-3.4.3" = { - name = "_at_parcel_slash_node-resolver-core"; - packageName = "@parcel/node-resolver-core"; - version = "3.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-3.4.3.tgz"; - sha512 = "IEnMks49egEic1ITBp59VQyHzkSQUXqpU9hOHwqN3KoSTdZ6rEgrXcS3pa6tdXay4NYGlcZ88kFCE8i/xYoVCg=="; - }; - }; - "@parcel/optimizer-css-2.13.3" = { - name = "_at_parcel_slash_optimizer-css"; - packageName = "@parcel/optimizer-css"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-css/-/optimizer-css-2.13.3.tgz"; - sha512 = "A8o9IVCv919vhv69SkLmyW2WjJR5WZgcMqV6L1uiGF8i8z18myrMhrp2JuSHx29PRT9uNyzNC4Xrd4StYjIhJg=="; - }; - }; - "@parcel/optimizer-htmlnano-2.13.3" = { - name = "_at_parcel_slash_optimizer-htmlnano"; - packageName = "@parcel/optimizer-htmlnano"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.13.3.tgz"; - sha512 = "K4Uvg0Sy2pECP7pdvvbud++F0pfcbNkq+IxTrgqBX5HJnLEmRZwgdvZEKF43oMEolclMnURMQRGjRplRaPdbXg=="; - }; - }; - "@parcel/optimizer-image-2.13.3" = { - name = "_at_parcel_slash_optimizer-image"; - packageName = "@parcel/optimizer-image"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-image/-/optimizer-image-2.13.3.tgz"; - sha512 = "wlDUICA29J4UnqkKrWiyt68g1e85qfYhp4zJFcFJL0LX1qqh1QwsLUz3YJ+KlruoqPxJSFEC8ncBEKiVCsqhEQ=="; - }; - }; - "@parcel/optimizer-svgo-2.13.3" = { - name = "_at_parcel_slash_optimizer-svgo"; - packageName = "@parcel/optimizer-svgo"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-svgo/-/optimizer-svgo-2.13.3.tgz"; - sha512 = "piIKxQKzhZK54dJR6yqIcq+urZmpsfgUpLCZT3cnWlX4ux5+S2iN66qqZBs0zVn+a58LcWcoP4Z9ieiJmpiu2w=="; - }; - }; - "@parcel/optimizer-swc-2.13.3" = { - name = "_at_parcel_slash_optimizer-swc"; - packageName = "@parcel/optimizer-swc"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-swc/-/optimizer-swc-2.13.3.tgz"; - sha512 = "zNSq6oWqLlW8ksPIDjM0VgrK6ZAJbPQCDvs1V+p0oX3CzEe85lT5VkRpnfrN1+/vvEJNGL8e60efHKpI+rXGTA=="; - }; - }; - "@parcel/package-manager-2.13.3" = { - name = "_at_parcel_slash_package-manager"; - packageName = "@parcel/package-manager"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.13.3.tgz"; - sha512 = "FLNI5OrZxymGf/Yln0E/kjnGn5sdkQAxW7pQVdtuM+5VeN75yibJRjsSGv88PvJ+KvpD2ANgiIJo1RufmoPcww=="; - }; - }; - "@parcel/packager-css-2.13.3" = { - name = "_at_parcel_slash_packager-css"; - packageName = "@parcel/packager-css"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.13.3.tgz"; - sha512 = "ghDqRMtrUwaDERzFm9le0uz2PTeqqsjsW0ihQSZPSAptElRl9o5BR+XtMPv3r7Ui0evo+w35gD55oQCJ28vCig=="; - }; - }; - "@parcel/packager-html-2.13.3" = { - name = "_at_parcel_slash_packager-html"; - packageName = "@parcel/packager-html"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.13.3.tgz"; - sha512 = "jDLnKSA/EzVEZ3/aegXO3QJ/Ij732AgBBkIQfeC8tUoxwVz5b3HiPBAjVjcUSfZs7mdBSHO+ELWC3UD+HbsIrQ=="; - }; - }; - "@parcel/packager-js-2.13.3" = { - name = "_at_parcel_slash_packager-js"; - packageName = "@parcel/packager-js"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.13.3.tgz"; - sha512 = "0pMHHf2zOn7EOJe88QJw5h/wcV1bFfj6cXVcE55Wa8GX3V+SdCgolnlvNuBcRQ1Tlx0Xkpo+9hMFVIQbNQY6zw=="; - }; - }; - "@parcel/packager-raw-2.13.3" = { - name = "_at_parcel_slash_packager-raw"; - packageName = "@parcel/packager-raw"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.13.3.tgz"; - sha512 = "AWu4UB+akBdskzvT3KGVHIdacU9f7cI678DQQ1jKQuc9yZz5D0VFt3ocFBOmvDfEQDF0uH3jjtJR7fnuvX7Biw=="; - }; - }; - "@parcel/packager-svg-2.13.3" = { - name = "_at_parcel_slash_packager-svg"; - packageName = "@parcel/packager-svg"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-svg/-/packager-svg-2.13.3.tgz"; - sha512 = "tKGRiFq/4jh5u2xpTstNQ7gu+RuZWzlWqpw5NaFmcKe6VQe5CMcS499xTFoREAGnRvevSeIgC38X1a+VOo+/AA=="; - }; - }; - "@parcel/packager-wasm-2.13.3" = { - name = "_at_parcel_slash_packager-wasm"; - packageName = "@parcel/packager-wasm"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-wasm/-/packager-wasm-2.13.3.tgz"; - sha512 = "SZB56/b230vFrSehVXaUAWjJmWYc89gzb8OTLkBm7uvtFtov2J1R8Ig9TTJwinyXE3h84MCFP/YpQElSfoLkJw=="; - }; - }; - "@parcel/plugin-2.13.3" = { - name = "_at_parcel_slash_plugin"; - packageName = "@parcel/plugin"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.13.3.tgz"; - sha512 = "cterKHHcwg6q11Gpif/aqvHo056TR+yDVJ3fSdiG2xr5KD1VZ2B3hmofWERNNwjMcnR1h9Xq40B7jCKUhOyNFA=="; - }; - }; - "@parcel/profiler-2.13.3" = { - name = "_at_parcel_slash_profiler"; - packageName = "@parcel/profiler"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/profiler/-/profiler-2.13.3.tgz"; - sha512 = "ok6BwWSLvyHe5TuSXjSacYnDStFgP5Y30tA9mbtWSm0INDsYf+m5DqzpYPx8U54OaywWMK8w3MXUClosJX3aPA=="; - }; - }; - "@parcel/reporter-cli-2.13.3" = { - name = "_at_parcel_slash_reporter-cli"; - packageName = "@parcel/reporter-cli"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.13.3.tgz"; - sha512 = "EA5tKt/6bXYNMEavSs35qHlFdx6cZmRazlZxPBgxPePQYoouNAPMNLUOEQozaPhz9f5fvNDN7EHOFaAWcdO2LA=="; - }; - }; - "@parcel/reporter-dev-server-2.13.3" = { - name = "_at_parcel_slash_reporter-dev-server"; - packageName = "@parcel/reporter-dev-server"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.13.3.tgz"; - sha512 = "ZNeFp6AOIQFv7mZIv2P5O188dnZHNg0ymeDVcakfZomwhpSva2dFNS3AnvWo4eyWBlUxkmQO8BtaxeWTs7jAuA=="; - }; - }; - "@parcel/reporter-tracer-2.13.3" = { - name = "_at_parcel_slash_reporter-tracer"; - packageName = "@parcel/reporter-tracer"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/reporter-tracer/-/reporter-tracer-2.13.3.tgz"; - sha512 = "aBsVPI8jLZTDkFYrI69GxnsdvZKEYerkPsu935LcX9rfUYssOnmmUP+3oI+8fbg+qNjJuk9BgoQ4hCp9FOphMQ=="; - }; - }; - "@parcel/resolver-default-2.13.3" = { - name = "_at_parcel_slash_resolver-default"; - packageName = "@parcel/resolver-default"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.13.3.tgz"; - sha512 = "urBZuRALWT9pFMeWQ8JirchLmsQEyI9lrJptiwLbJWrwvmlwSUGkcstmPwoNRf/aAQjICB7ser/247Vny0pFxA=="; - }; - }; - "@parcel/runtime-browser-hmr-2.13.3" = { - name = "_at_parcel_slash_runtime-browser-hmr"; - packageName = "@parcel/runtime-browser-hmr"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.13.3.tgz"; - sha512 = "EAcPojQFUNUGUrDk66cu3ySPO0NXRVS5CKPd4QrxPCVVbGzde4koKu8krC/TaGsoyUqhie8HMnS70qBP0GFfcQ=="; - }; - }; - "@parcel/runtime-js-2.13.3" = { - name = "_at_parcel_slash_runtime-js"; - packageName = "@parcel/runtime-js"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.13.3.tgz"; - sha512 = "62OucNAnxb2Q0uyTFWW/0Hvv2DJ4b5H6neh/YFu2/wmxaZ37xTpEuEcG2do7KW54xE5DeLP+RliHLwi4NvR3ww=="; - }; - }; - "@parcel/runtime-react-refresh-2.13.3" = { - name = "_at_parcel_slash_runtime-react-refresh"; - packageName = "@parcel/runtime-react-refresh"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.13.3.tgz"; - sha512 = "PYZ1klpJVwqE3WuifILjtF1dugtesHEuJcXYZI85T6UoRSD5ctS1nAIpZzT14Ga1lRt/jd+eAmhWL1l3m/Vk1Q=="; - }; - }; - "@parcel/runtime-service-worker-2.13.3" = { - name = "_at_parcel_slash_runtime-service-worker"; - packageName = "@parcel/runtime-service-worker"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.13.3.tgz"; - sha512 = "BjMhPuT7Us1+YIo31exPRwomPiL+jrZZS5UUAwlEW2XGHDceEotzRM94LwxeFliCScT4IOokGoxixm19qRuzWg=="; - }; - }; - "@parcel/rust-2.13.3" = { - name = "_at_parcel_slash_rust"; - packageName = "@parcel/rust"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/rust/-/rust-2.13.3.tgz"; - sha512 = "dLq85xDAtzr3P5200cvxk+8WXSWauYbxuev9LCPdwfhlaWo/JEj6cu9seVdWlkagjGwkoV1kXC+GGntgUXOLAQ=="; - }; - }; - "@parcel/source-map-2.1.1" = { - name = "_at_parcel_slash_source-map"; - packageName = "@parcel/source-map"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.1.tgz"; - sha512 = "Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew=="; - }; - }; - "@parcel/transformer-babel-2.13.3" = { - name = "_at_parcel_slash_transformer-babel"; - packageName = "@parcel/transformer-babel"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-babel/-/transformer-babel-2.13.3.tgz"; - sha512 = "ikzK9f5WTFrdQsPitQgjCPH6HmVU8AQPRemIJ2BndYhtodn5PQut5cnSvTrqax8RjYvheEKCQk/Zb/uR7qgS3g=="; - }; - }; - "@parcel/transformer-css-2.13.3" = { - name = "_at_parcel_slash_transformer-css"; - packageName = "@parcel/transformer-css"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-css/-/transformer-css-2.13.3.tgz"; - sha512 = "zbrNURGph6JeVADbGydyZ7lcu/izj41kDxQ9xw4RPRW/3rofQiTU0OTREi+uBWiMENQySXVivEdzHA9cA+aLAA=="; - }; - }; - "@parcel/transformer-html-2.13.3" = { - name = "_at_parcel_slash_transformer-html"; - packageName = "@parcel/transformer-html"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-html/-/transformer-html-2.13.3.tgz"; - sha512 = "Yf74FkL9RCCB4+hxQRVMNQThH9+fZ5w0NLiQPpWUOcgDEEyxTi4FWPQgEBsKl/XK2ehdydbQB9fBgPQLuQxwPg=="; - }; - }; - "@parcel/transformer-image-2.13.3" = { - name = "_at_parcel_slash_transformer-image"; - packageName = "@parcel/transformer-image"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-image/-/transformer-image-2.13.3.tgz"; - sha512 = "wL1CXyeFAqbp2wcEq/JD3a/tbAyVIDMTC6laQxlIwnVV7dsENhK1qRuJZuoBdixESeUpFQSmmQvDIhcfT/cUUg=="; - }; - }; - "@parcel/transformer-js-2.13.3" = { - name = "_at_parcel_slash_transformer-js"; - packageName = "@parcel/transformer-js"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.13.3.tgz"; - sha512 = "KqfNGn1IHzDoN2aPqt4nDksgb50Xzcny777C7A7hjlQ3cmkjyJrixYjzzsPaPSGJ+kJpknh3KE8unkQ9mhFvRQ=="; - }; - }; - "@parcel/transformer-json-2.13.3" = { - name = "_at_parcel_slash_transformer-json"; - packageName = "@parcel/transformer-json"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.13.3.tgz"; - sha512 = "rrq0ab6J0w9ePtsxi0kAvpCmrUYXXAx1Z5PATZakv89rSYbHBKEdXxyCoKFui/UPVCUEGVs5r0iOFepdHpIyeA=="; - }; - }; - "@parcel/transformer-postcss-2.13.3" = { - name = "_at_parcel_slash_transformer-postcss"; - packageName = "@parcel/transformer-postcss"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-postcss/-/transformer-postcss-2.13.3.tgz"; - sha512 = "AIiWpU0QSFBrPcYIqAnhqB8RGE6yHFznnxztfg1t2zMSOnK3xoU6xqYKv8H/MduShGGrC3qVOeDfM8MUwzL3cw=="; - }; - }; - "@parcel/transformer-posthtml-2.13.3" = { - name = "_at_parcel_slash_transformer-posthtml"; - packageName = "@parcel/transformer-posthtml"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-posthtml/-/transformer-posthtml-2.13.3.tgz"; - sha512 = "5GSLyccpHASwFAu3uJ83gDIBSvfsGdVmhJvy0Vxe+K1Fklk2ibhvvtUHMhB7mg6SPHC+R9jsNc3ZqY04ZLeGjw=="; - }; - }; - "@parcel/transformer-raw-2.13.3" = { - name = "_at_parcel_slash_transformer-raw"; - packageName = "@parcel/transformer-raw"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.13.3.tgz"; - sha512 = "BFsAbdQF0l8/Pdb7dSLJeYcd8jgwvAUbHgMink2MNXJuRUvDl19Gns8jVokU+uraFHulJMBj40+K/RTd33in4g=="; - }; - }; - "@parcel/transformer-react-refresh-wrap-2.13.3" = { - name = "_at_parcel_slash_transformer-react-refresh-wrap"; - packageName = "@parcel/transformer-react-refresh-wrap"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.13.3.tgz"; - sha512 = "mOof4cRyxsZRdg8kkWaFtaX98mHpxUhcGPU+nF9RQVa9q737ItxrorsPNR9hpZAyE2TtFNflNW7RoYsgvlLw8w=="; - }; - }; - "@parcel/transformer-svg-2.13.3" = { - name = "_at_parcel_slash_transformer-svg"; - packageName = "@parcel/transformer-svg"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-svg/-/transformer-svg-2.13.3.tgz"; - sha512 = "9jm7ZF4KHIrGLWlw/SFUz5KKJ20nxHvjFAmzde34R9Wu+F1BOjLZxae7w4ZRwvIc+UVOUcBBQFmhSVwVDZg6Dw=="; - }; - }; - "@parcel/types-2.13.3" = { - name = "_at_parcel_slash_types"; - packageName = "@parcel/types"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/types/-/types-2.13.3.tgz"; - sha512 = "+RpFHxx8fy8/dpuehHUw/ja9PRExC3wJoIlIIF42E7SLu2SvlTHtKm6EfICZzxCXNEBzjoDbamCRcN0nmTPlhw=="; - }; - }; - "@parcel/types-internal-2.13.3" = { - name = "_at_parcel_slash_types-internal"; - packageName = "@parcel/types-internal"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/types-internal/-/types-internal-2.13.3.tgz"; - sha512 = "Lhx0n+9RCp+Ipktf/I+CLm3zE9Iq9NtDd8b2Vr5lVWyoT8AbzBKIHIpTbhLS4kjZ80L3I6o93OYjqAaIjsqoZw=="; - }; - }; - "@parcel/utils-2.13.3" = { - name = "_at_parcel_slash_utils"; - packageName = "@parcel/utils"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/utils/-/utils-2.13.3.tgz"; - sha512 = "yxY9xw2wOUlJaScOXYZmMGoZ4Ck4Kqj+p6Koe5kLkkWM1j98Q0Dj2tf/mNvZi4yrdnlm+dclCwNRnuE8Q9D+pw=="; - }; - }; - "@parcel/watcher-2.5.1" = { - name = "_at_parcel_slash_watcher"; - packageName = "@parcel/watcher"; - version = "2.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz"; - sha512 = "dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg=="; - }; - }; - "@parcel/workers-2.13.3" = { - name = "_at_parcel_slash_workers"; - packageName = "@parcel/workers"; - version = "2.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@parcel/workers/-/workers-2.13.3.tgz"; - sha512 = "oAHmdniWTRwwwsKbcF4t3VjOtKN+/W17Wj5laiYB+HLkfsjGTfIQPj3sdXmrlBAGpI4omIcvR70PHHXnfdTfwA=="; + url = "https://registry.npmjs.org/@orval/zod/-/zod-7.7.0.tgz"; + sha512 = "h5DiQG/bQL0lEGMRVvVb/FNfrN1Zx3LZSPA+XvF6EpgPiAqzZVcZ+YhYh9YzDAZg0BLsVyS9jBQzANOgoKc7yQ=="; }; }; "@peculiar/asn1-schema-2.3.15" = { @@ -5846,22 +5270,31 @@ let sha512 = "8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw=="; }; }; - "@prisma/prisma-schema-wasm-6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d" = { - name = "_at_prisma_slash_prisma-schema-wasm"; - packageName = "@prisma/prisma-schema-wasm"; - version = "6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d"; + "@prisma/config-6.5.0" = { + name = "_at_prisma_slash_config"; + packageName = "@prisma/config"; + version = "6.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/prisma-schema-wasm/-/prisma-schema-wasm-6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d.tgz"; - sha512 = "nq1XcNXsdYbCnMFwG7QyCRLb0M4ubQrhq+7HLu7ugLJonDUy17il5qnxk9tVjkgRoEAm1QNZmqG5dXGfAN2fmQ=="; + url = "https://registry.npmjs.org/@prisma/config/-/config-6.5.0.tgz"; + sha512 = "sOH/2Go9Zer67DNFLZk6pYOHj+rumSb0VILgltkoxOjYnlLqUpHPAN826vnx8HigqnOCxj9LRhT6U7uLiIIWgw=="; }; }; - "@prisma/schema-files-loader-6.4.1" = { + "@prisma/prisma-schema-wasm-6.5.0-73.173f8d54f8d52e692c7e27e72a88314ec7aeff60" = { + name = "_at_prisma_slash_prisma-schema-wasm"; + packageName = "@prisma/prisma-schema-wasm"; + version = "6.5.0-73.173f8d54f8d52e692c7e27e72a88314ec7aeff60"; + src = fetchurl { + url = "https://registry.npmjs.org/@prisma/prisma-schema-wasm/-/prisma-schema-wasm-6.5.0-73.173f8d54f8d52e692c7e27e72a88314ec7aeff60.tgz"; + sha512 = "8zmXO5Luw5sCOgTw9nyN4/x7MgmIUUt/9zQZPPStiMUhZsXH72oqFwYJlibdS77gDuH2+DXgSRv6aPleDdTMsQ=="; + }; + }; + "@prisma/schema-files-loader-6.5.0" = { name = "_at_prisma_slash_schema-files-loader"; packageName = "@prisma/schema-files-loader"; - version = "6.4.1"; + version = "6.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/schema-files-loader/-/schema-files-loader-6.4.1.tgz"; - sha512 = "6Rh9BA7nliCJ2ns8/ioEgtezsm9Sydv5vH2Ja2SgZ5c30GbY1QInmmz9jVCsm5qol0iHsnSOPSRHR2FSQW+Mmw=="; + url = "https://registry.npmjs.org/@prisma/schema-files-loader/-/schema-files-loader-6.5.0.tgz"; + sha512 = "BE+YPIcqXx+9MkPsA/mACz3rGhKUfh5rsoGe1Male/0c9my9CaHKzJFxNAV4f70d6GTMMITQgFpwfrudGFOwpw=="; }; }; "@protobufjs/aspromise-1.1.2" = { @@ -5990,13 +5423,13 @@ let sha512 = "V83ucRqVt9quigDNgUggikNSAGtnfKUzzTcr18jYa/BzLyLdg9ITjr2RxVHzl7eNlJFiENr9vZdgaS45YjmhqA=="; }; }; - "@rushstack/lookup-by-path-0.5.6" = { + "@rushstack/lookup-by-path-0.5.9" = { name = "_at_rushstack_slash_lookup-by-path"; packageName = "@rushstack/lookup-by-path"; - version = "0.5.6"; + version = "0.5.9"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/lookup-by-path/-/lookup-by-path-0.5.6.tgz"; - sha512 = "TJ7eobYV7hBBDzo9JGJC7bxvWUgizZtCZs3Wl0avx5ko09G5AYmz1jkPK3Y/UK/rpGQWYUKwuk5fTSbH+IPoqQ=="; + url = "https://registry.npmjs.org/@rushstack/lookup-by-path/-/lookup-by-path-0.5.9.tgz"; + sha512 = "xGdjy6Mj2FDccpzo+wGDWmQoTzZQDjlEFNWbiKeIdA/TkIcOoK+6t0Ppka4XE+od0vggZD6Hqk9kZoXuY8lu+A=="; }; }; "@rushstack/node-core-library-5.11.0" = { @@ -6008,22 +5441,22 @@ let sha512 = "I8+VzG9A0F3nH2rLpPd7hF8F7l5Xb7D+ldrWVZYegXM6CsKkvWc670RlgK3WX8/AseZfXA/vVrh0bpXe2Y2UDQ=="; }; }; - "@rushstack/package-deps-hash-4.3.7" = { + "@rushstack/package-deps-hash-4.3.10" = { name = "_at_rushstack_slash_package-deps-hash"; packageName = "@rushstack/package-deps-hash"; - version = "4.3.7"; + version = "4.3.10"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.3.7.tgz"; - sha512 = "fSwL7Zg54tQ2D4L2rfpkx0Wajk01DjM/afmGcw4VB2AlSWmJGqKkPhXvfacQRv0Y4n2faJICZgplfxlNcq7g9g=="; + url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.3.10.tgz"; + sha512 = "jqKuD39WnG7E82Y7D5c2yAJLQRC/kv/C6PkPeGcegDl7owmt1pxfiRsoMqK+8W3z2eg4wa4VtuT/DtiLYTDGew=="; }; }; - "@rushstack/package-extractor-0.10.11" = { + "@rushstack/package-extractor-0.10.14" = { name = "_at_rushstack_slash_package-extractor"; packageName = "@rushstack/package-extractor"; - version = "0.10.11"; + version = "0.10.14"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.10.11.tgz"; - sha512 = "7VGPYGYFD2LnS5eJREidPKfLbsG67yw1/iEzSvnCmkB/IDz5JNBLtP8nwqGTKb1dDXb6ZoSrQ+DWa451WQY9HQ=="; + url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.10.14.tgz"; + sha512 = "+PKerCm40PNcmqSfQ/OAdruj9/PVMxJroenkQp49FSYHFA1q9xTCKhmUPyFLWbzc5rdQE0jV9hcm/bcDGkS0vQ=="; }; }; "@rushstack/rig-package-0.5.3" = { @@ -6035,49 +5468,49 @@ let sha512 = "olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow=="; }; }; - "@rushstack/rush-amazon-s3-build-cache-plugin-5.149.1" = { + "@rushstack/rush-amazon-s3-build-cache-plugin-5.150.0" = { name = "_at_rushstack_slash_rush-amazon-s3-build-cache-plugin"; packageName = "@rushstack/rush-amazon-s3-build-cache-plugin"; - version = "5.149.1"; + version = "5.150.0"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.149.1.tgz"; - sha512 = "OQGF623+jEb8XWz5MjvUMW7v0q6zjf7NcnWRMyH/hkRkt83oJtbh+EKu5WW/9z0wLt6yvFo9iGqe+pJP0RiD0A=="; + url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.150.0.tgz"; + sha512 = "1geEKSppaJQoiqVjsblC631leh0TKY+9/XCcHRnQvfaZGI5/pXQZ83Ydu+RuGvQGxFqZpkkz2iIunT+D1JmrqA=="; }; }; - "@rushstack/rush-azure-storage-build-cache-plugin-5.149.1" = { + "@rushstack/rush-azure-storage-build-cache-plugin-5.150.0" = { name = "_at_rushstack_slash_rush-azure-storage-build-cache-plugin"; packageName = "@rushstack/rush-azure-storage-build-cache-plugin"; - version = "5.149.1"; + version = "5.150.0"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.149.1.tgz"; - sha512 = "tyVJI/TZsvb8ThQC7l8VAOUkxw3pako+8xyi5trEfNHa7O3PPqNJ9L6xGuOKrQltDhUmWDk+zijEENXR8Y3a8A=="; + url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.150.0.tgz"; + sha512 = "Yn5ZEs5Xzprqi8tS9x5ryBNPhg2ibfH7EC3OC2VbXCbeNLNIUl4JIUDSk4El4dIAyFuDcR7pXqHQY/g/5B2itQ=="; }; }; - "@rushstack/rush-http-build-cache-plugin-5.149.1" = { + "@rushstack/rush-http-build-cache-plugin-5.150.0" = { name = "_at_rushstack_slash_rush-http-build-cache-plugin"; packageName = "@rushstack/rush-http-build-cache-plugin"; - version = "5.149.1"; + version = "5.150.0"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.149.1.tgz"; - sha512 = "9E6iFKIgzZm58lANqa7eOqBMAtGxC5jSSgprbZ6X/BSD/F9Ao++txD1YQdkI3ZgQBCeZEW9w2q9v73fkkIgkMw=="; + url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.150.0.tgz"; + sha512 = "hTb/rA4jR0p7E5BwfgFe8e1kaRMqCm2B9e18OkKIXxYextoyJM2bwjncc4OakTMeq+Vtoz1D/Ujwr4tow73Y6g=="; }; }; - "@rushstack/rush-sdk-5.149.1" = { + "@rushstack/rush-sdk-5.150.0" = { name = "_at_rushstack_slash_rush-sdk"; packageName = "@rushstack/rush-sdk"; - version = "5.149.1"; + version = "5.150.0"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.149.1.tgz"; - sha512 = "jfgO6EfQ19RbHCtn2A8M3AUYE8OD08mHExZQOt0uoUg59mr6cN0faHTuCnzvnHf0CjxaiW+VzsiRt0xKePkVwQ=="; + url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.150.0.tgz"; + sha512 = "ReSRRDgtBIwD0uJFzNOp9ahAFOAi5gxhtVYgoQNcgdzOOLxqKdTFOo4saKKuSfxH74GEz8ZaDdkuj/0nQDBWZg=="; }; }; - "@rushstack/stream-collator-4.1.85" = { + "@rushstack/stream-collator-4.1.88" = { name = "_at_rushstack_slash_stream-collator"; packageName = "@rushstack/stream-collator"; - version = "4.1.85"; + version = "4.1.88"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.85.tgz"; - sha512 = "o1p16mx0vIb7ZprnZJt3LLTZBT5rBYG+sua6LQ49gIf25CBhZuFSVazjhQP6gGCl4eiLZwdIiV5ETQ6tDv1kmg=="; + url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.88.tgz"; + sha512 = "p/exF+w2rW0gYHsc6ZaZe6aomdoG3vtYHoUyqX/doToNDzvrGrtNorb0h/9p4ct6QaZKPu5FUhBhiCQjPyP3YQ=="; }; }; "@rushstack/terminal-0.15.0" = { @@ -6107,13 +5540,13 @@ let sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; }; }; - "@schematics/angular-19.1.8" = { + "@schematics/angular-19.2.3" = { name = "_at_schematics_slash_angular"; packageName = "@schematics/angular"; - version = "19.1.8"; + version = "19.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/angular/-/angular-19.1.8.tgz"; - sha512 = "ytgClbMPn+i+w1S3QukR/Vdge+sfU9aX49ao+XRwoWdOssHUjmVjQcCEdzu0ucSrNPZnhm34bdDPzADLhln60w=="; + url = "https://registry.npmjs.org/@schematics/angular/-/angular-19.2.3.tgz"; + sha512 = "bhtGJtetkiqyB/OR506ftC+o98xLQXnOlvFO/zbkTddkLgMdPpyOt2A9Fuu+z4OVigqBiLBkzmR8i0w8xUUAmw=="; }; }; "@scure/base-1.1.9" = { @@ -6368,15 +5801,6 @@ let sha512 = "kAAM06ca4CzhvjIZdONAL9+MLppW3K48wOFy1TbuaWFW/OMfl8JuTgW0Bm02JB1WJGT/ET2eqav0KTEKmxqkIA=="; }; }; - "@silentbot1/nat-api-0.4.7" = { - name = "_at_silentbot1_slash_nat-api"; - packageName = "@silentbot1/nat-api"; - version = "0.4.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@silentbot1/nat-api/-/nat-api-0.4.7.tgz"; - sha512 = "6aKXUf4AY6ETBdwjswQOekY6HGj3eZTAUhJx1oYicBqpMJcsphIydEQKp/Hooz6Y070MOI6tD/oT1MgS7bP3Vg=="; - }; - }; "@sinclair/typebox-0.25.24" = { name = "_at_sinclair_slash_typebox"; packageName = "@sinclair/typebox"; @@ -6422,15 +5846,6 @@ let sha512 = "9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="; }; }; - "@sindresorhus/is-3.1.2" = { - name = "_at_sindresorhus_slash_is"; - packageName = "@sindresorhus/is"; - version = "3.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@sindresorhus/is/-/is-3.1.2.tgz"; - sha512 = "JiX9vxoKMmu8Y3Zr2RVathBL1Cdu4Nt4MuNWemt1Nc06A0RAin9c5FArkhGsyMBWfCu4zj+9b+GxtjAnE4qqLQ=="; - }; - }; "@sindresorhus/is-4.6.0" = { name = "_at_sindresorhus_slash_is"; packageName = "@sindresorhus/is"; @@ -7007,13 +6422,13 @@ let sha512 = "lyIc6JUlUA8Ve5ELywPC8I2Sdnh1zc1zmbYgVarhXIp9YeAB0ReeqmGEOWNtlHkbP2DAA1AL65Wfn2ncjK/jtQ=="; }; }; - "@stoplight/spectral-core-1.19.4" = { + "@stoplight/spectral-core-1.19.5" = { name = "_at_stoplight_slash_spectral-core"; packageName = "@stoplight/spectral-core"; - version = "1.19.4"; + version = "1.19.5"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/spectral-core/-/spectral-core-1.19.4.tgz"; - sha512 = "8hnZXfssTlV99SKo8J8BwMt5LsiBFHkCh0V3P7j8IPcCNl//bpG92U4TpYy7AwmUms/zCLX7sxNQC6AZ+bkfzg=="; + url = "https://registry.npmjs.org/@stoplight/spectral-core/-/spectral-core-1.19.5.tgz"; + sha512 = "i+njdliW7bAHGsHEgDvH0To/9IxiYiBELltkZ7ASVy4i+WXtZ40lQXpeRQRwePrBcSgQl0gcZFuKX10nmSHtbw=="; }; }; "@stoplight/spectral-formats-1.8.2" = { @@ -7025,13 +6440,13 @@ let sha512 = "c06HB+rOKfe7tuxg0IdKDEA5XnjL2vrn/m/OVIIxtINtBzphZrOgtRn7epQ5bQF5SWp84Ue7UJWaGgDwVngMFw=="; }; }; - "@stoplight/spectral-functions-1.9.3" = { + "@stoplight/spectral-functions-1.9.4" = { name = "_at_stoplight_slash_spectral-functions"; packageName = "@stoplight/spectral-functions"; - version = "1.9.3"; + version = "1.9.4"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/spectral-functions/-/spectral-functions-1.9.3.tgz"; - sha512 = "jy4mguk0Ddz0Vr76PHervOZeyXTUW650zVfNT2Vt9Ji3SqtTVziHjq913CBVEGFS+IQw1McUXuHVLM6YKVZ6fQ=="; + url = "https://registry.npmjs.org/@stoplight/spectral-functions/-/spectral-functions-1.9.4.tgz"; + sha512 = "+dgu7QQ1JIZFsNLhNbQLPA9tniIT3KjOc9ORv0LYSCLvZjkWT2bN7vgmathbXsbmhnmhvl15H9sRqUIqzi+qoQ=="; }; }; "@stoplight/spectral-parsers-1.0.5" = { @@ -7052,22 +6467,22 @@ let sha512 = "gj3TieX5a9zMW29z3mBlAtDOCgN3GEc1VgZnCVlr5irmR4Qi5LuECuFItAq4pTn5Zu+sW5bqutsCH7D4PkpyAA=="; }; }; - "@stoplight/spectral-rulesets-1.21.3" = { + "@stoplight/spectral-rulesets-1.21.4" = { name = "_at_stoplight_slash_spectral-rulesets"; packageName = "@stoplight/spectral-rulesets"; - version = "1.21.3"; + version = "1.21.4"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/spectral-rulesets/-/spectral-rulesets-1.21.3.tgz"; - sha512 = "SQp/NNDykfCvgmo9DW1pBAbmyKRHhEHmsc28kuRHC6nJblGFsLyNVGkEDjSIJuviR7ooC2Y00vmf0R3OGcyhyw=="; + url = "https://registry.npmjs.org/@stoplight/spectral-rulesets/-/spectral-rulesets-1.21.4.tgz"; + sha512 = "F03Uf+Rb9FnxfjNeIeB0B/dGDJ+NozRkQZtZ/jryoOu+7Qp7rI1e/BkFWEM3y4Fr0zcNEkpS7bjkXnW4frHPcA=="; }; }; - "@stoplight/spectral-runtime-1.1.3" = { + "@stoplight/spectral-runtime-1.1.4" = { name = "_at_stoplight_slash_spectral-runtime"; packageName = "@stoplight/spectral-runtime"; - version = "1.1.3"; + version = "1.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/spectral-runtime/-/spectral-runtime-1.1.3.tgz"; - sha512 = "uoKSVX/OYXOEBRQN7EtAaVefl8MlyhBkDcU2aDYEGALwYXHAH+vmF3ljhZrueMA3fSWLHTL3RxWqsjeeCor6lw=="; + url = "https://registry.npmjs.org/@stoplight/spectral-runtime/-/spectral-runtime-1.1.4.tgz"; + sha512 = "YHbhX3dqW0do6DhiPSgSGQzr6yQLlWybhKwWx0cqxjMwxej3TqLv3BXMfIUYFKKUqIwH4Q2mV8rrMM8qD2N0rQ=="; }; }; "@stoplight/types-13.20.0" = { @@ -7142,13 +6557,22 @@ let sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ=="; }; }; - "@swc/core-1.10.18" = { + "@sveltejs/acorn-typescript-1.0.5" = { + name = "_at_sveltejs_slash_acorn-typescript"; + packageName = "@sveltejs/acorn-typescript"; + version = "1.0.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.5.tgz"; + sha512 = "IwQk4yfwLdibDlrXVE04jTZYlLnwsTT2PIOQQGNLWfjavGifnk1JD1LcZjZaBTRcxZu2FfPfNLOE04DSu9lqtQ=="; + }; + }; + "@swc/core-1.11.9" = { name = "_at_swc_slash_core"; packageName = "@swc/core"; - version = "1.10.18"; + version = "1.11.9"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core/-/core-1.10.18.tgz"; - sha512 = "IUWKD6uQYGRy8w2X9EZrtYg1O3SCijlHbCXzMaHQYc1X7yjijQh4H3IVL9ssZZyVp2ZDfQZu4bD5DWxxvpyjvg=="; + url = "https://registry.npmjs.org/@swc/core/-/core-1.11.9.tgz"; + sha512 = "4UQ66FwTkFDr+UzYzRNKQyHMScOrc4zJbTJHyK6dP1yVMrxi5sl0FTzNKiqoYvRZ7j8TAYgtYvvuPSW/XXvp5g=="; }; }; "@swc/counter-0.1.3" = { @@ -7169,22 +6593,22 @@ let sha512 = "JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g=="; }; }; - "@swc/types-0.1.18" = { + "@swc/types-0.1.19" = { name = "_at_swc_slash_types"; packageName = "@swc/types"; - version = "0.1.18"; + version = "0.1.19"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/types/-/types-0.1.18.tgz"; - sha512 = "NZghLaQvF3eFdj2DUjGkpwaunbZYaRcxciHINnwA4n3FrLAI8hKFOBqs2wkcOiLQfWkIdfuG6gBkNFrkPNji5g=="; + url = "https://registry.npmjs.org/@swc/types/-/types-0.1.19.tgz"; + sha512 = "WkAZaAfj44kh/UFdAQcrMP1I0nwRqpt27u+08LMBYMqmQfwwMofYoMh/48NGkMMRfC4ynpfwRbJuu8ErfNloeA=="; }; }; - "@swc/wasm-1.10.18" = { + "@swc/wasm-1.11.9" = { name = "_at_swc_slash_wasm"; packageName = "@swc/wasm"; - version = "1.10.18"; + version = "1.11.9"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.10.18.tgz"; - sha512 = "TgoMYjQ2/9UfUaw7WuKj7Svew6kaNOqkjV4nKoc2tf34e+7GxL2KPoXvM2b1RkPxNocv85glcQpS9KMk8FqpBA=="; + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.11.9.tgz"; + sha512 = "4yoj1q4LdPqFYAJPJ3gZkDv7bL6fcOSB42jrVtbDlvgYCDQhr0Wf48LWUwQcuhsfUMYaNj1phsqB9LV2cfEQTw=="; }; }; "@szmarczak/http-timer-1.1.2" = { @@ -7232,33 +6656,6 @@ let sha512 = "DV/Re3DPVY+BhBtLZ3dmP4mP6YMLSsgq9qGLXwOV38lvNF/fBlgvQswzlXmzCEefL/3q2eMoefZpOI/+GLuCNA=="; }; }; - "@thaunknown/simple-peer-10.0.11" = { - name = "_at_thaunknown_slash_simple-peer"; - packageName = "@thaunknown/simple-peer"; - version = "10.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/@thaunknown/simple-peer/-/simple-peer-10.0.11.tgz"; - sha512 = "A5MdmtZ6HUzRa4gwPOS4jG+09HvpTv2rFo4kk7Vwveo2ELm+WmbO124ZrJrQnZc2D7z2Q3AWKSitjl9OKXO88g=="; - }; - }; - "@thaunknown/simple-websocket-9.1.3" = { - name = "_at_thaunknown_slash_simple-websocket"; - packageName = "@thaunknown/simple-websocket"; - version = "9.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@thaunknown/simple-websocket/-/simple-websocket-9.1.3.tgz"; - sha512 = "pf/FCJsgWtLJiJmIpiSI7acOZVq3bIQCpnNo222UFc8Ph1lOUOTpe6LoYhhiOSKB9GUaWJEVUtZ+sK1/aBgU5Q=="; - }; - }; - "@thaunknown/thirty-two-1.0.5" = { - name = "_at_thaunknown_slash_thirty-two"; - packageName = "@thaunknown/thirty-two"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@thaunknown/thirty-two/-/thirty-two-1.0.5.tgz"; - sha512 = "Q53KyCXweV1CS62EfqtPDqfpksn5keQ59PGqzzkK+g8Vif1jB4inoBCcs/BUSdsqddhE3G+2Fn+4RX3S6RqT0A=="; - }; - }; "@tinyhttp/accepts-2.2.3" = { name = "_at_tinyhttp_slash_accepts"; packageName = "@tinyhttp/accepts"; @@ -7349,13 +6746,13 @@ let sha512 = "9H/eulJ68ElY/+zYpTpNhZ7vxGV+cnwaR6+oQSm7bVgZMyuQfgROW/qvZuhmgDTIxnGMXst+Ba4ij6w6Krcs3w=="; }; }; - "@tinyhttp/logger-2.0.0" = { + "@tinyhttp/logger-2.1.0" = { name = "_at_tinyhttp_slash_logger"; packageName = "@tinyhttp/logger"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@tinyhttp/logger/-/logger-2.0.0.tgz"; - sha512 = "8DfLQjGDIaIJeivYamVrrpmwmsGwS8wt2DGvzlcY5HEBagdiI4QJy/veAFcUHuaJqufn4wLwmn4q5VUkW8BCpQ=="; + url = "https://registry.npmjs.org/@tinyhttp/logger/-/logger-2.1.0.tgz"; + sha512 = "Ma1fJ9CwUbn9r61/4HW6+nflsVoslpOnCrfQ6UeZq7GGIgwLzofms3HoSVG7M+AyRMJpxlfcDdbH5oFVroDMKA=="; }; }; "@tinyhttp/proxy-addr-2.2.1" = { @@ -7430,15 +6827,6 @@ let sha512 = "SoL83sQXAGiHN1jm2VwLUWQSQeDAAl1ywOm6T0b0Cg1CZhVsjoiZadmjhxF6FHCCY7OHHVaLnTgSMxTPIDLxMg=="; }; }; - "@tokenizer/token-0.1.1" = { - name = "_at_tokenizer_slash_token"; - packageName = "@tokenizer/token"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@tokenizer/token/-/token-0.1.1.tgz"; - sha512 = "XO6INPbZCxdprl+9qa/AAbFFOMzzwqYxpjPgLICrMD6C2FCw6qfJOPcBk6JqqPLSaZ/Qx87qn4rpPmPMwaAK6w=="; - }; - }; "@tokenizer/token-0.3.0" = { name = "_at_tokenizer_slash_token"; packageName = "@tokenizer/token"; @@ -7646,15 +7034,6 @@ let sha512 = "7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ=="; }; }; - "@types/cookie-0.4.1" = { - name = "_at_types_slash_cookie"; - packageName = "@types/cookie"; - version = "0.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz"; - sha512 = "XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q=="; - }; - }; "@types/cookiejar-2.1.5" = { name = "_at_types_slash_cookiejar"; packageName = "@types/cookiejar"; @@ -7871,13 +7250,13 @@ let sha512 = "sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q=="; }; }; - "@types/lodash-4.17.15" = { + "@types/lodash-4.17.16" = { name = "_at_types_slash_lodash"; packageName = "@types/lodash"; - version = "4.17.15"; + version = "4.17.16"; src = fetchurl { - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.15.tgz"; - sha512 = "w/P33JFeySuhN6JLkysYUK2gEmy9kHHFN7E8ro0tkfmlDOgxBDzWEZ/J8cWA+fHqFevpswDTFZnDx+R9lbL6xw=="; + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.16.tgz"; + sha512 = "HX7Em5NYQAXKW+1T+FiuG27NGwzJfCX3s1GjOa7ujxZa52kjJLOr4FUxT+giF6Tgxv1e+/czV/iTtBw27WTU9g=="; }; }; "@types/markdown-it-14.1.2" = { @@ -8033,31 +7412,31 @@ let sha512 = "wI8uHusga+0ZugNp0Ol/3BqQfEcCCNfojtO6Oou9iVNGPTL6QNSdnUdqq85fRgIorLhLMuPIKpsN98QE9Nh+KQ=="; }; }; - "@types/node-18.19.76" = { + "@types/node-18.19.80" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "18.19.76"; + version = "18.19.80"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.19.76.tgz"; - sha512 = "yvR7Q9LdPz2vGpmpJX5LolrgRdWvB67MJKDPSgIIzpFbaf9a1j/f5DnLp5VDyHGMR0QZHlTr1afsD87QCXFHKw=="; + url = "https://registry.npmjs.org/@types/node/-/node-18.19.80.tgz"; + sha512 = "kEWeMwMeIvxYkeg1gTc01awpwLbfMRZXdIhwRcakd/KlK53jmRC26LqcbIt7fnAQTu5GzlnWmzA3H6+l1u6xxQ=="; }; }; - "@types/node-20.17.19" = { + "@types/node-20.17.24" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "20.17.19"; + version = "20.17.24"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-20.17.19.tgz"; - sha512 = "LEwC7o1ifqg/6r2gn9Dns0f1rhK+fPFDoMiceTJ6kWmVk6bgXBI/9IOWfVan4WiAavK9pIVWdX0/e3J+eEUh5A=="; + url = "https://registry.npmjs.org/@types/node/-/node-20.17.24.tgz"; + sha512 = "d7fGCyB96w9BnWQrOsJtpyiSaBcAYYr75bnK6ZRjDbql2cGLj/3GsL5OYmLPNq76l7Gf2q4Rv9J2o6h5CrD9sA=="; }; }; - "@types/node-22.13.5" = { + "@types/node-22.13.10" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "22.13.5"; + version = "22.13.10"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-22.13.5.tgz"; - sha512 = "+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg=="; + url = "https://registry.npmjs.org/@types/node/-/node-22.13.10.tgz"; + sha512 = "I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw=="; }; }; "@types/node-6.14.13" = { @@ -8222,13 +7601,13 @@ let sha512 = "ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g=="; }; }; - "@types/ws-8.5.14" = { + "@types/ws-8.18.0" = { name = "_at_types_slash_ws"; packageName = "@types/ws"; - version = "8.5.14"; + version = "8.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/@types/ws/-/ws-8.5.14.tgz"; - sha512 = "bd/YFLW+URhBzMXurx7lWByOu+xzU9+kb3RboOteXYDfW+tr+JZa99OyNmPINEGB/ahzKrEuc8rcv4gnpJmxTw=="; + url = "https://registry.npmjs.org/@types/ws/-/ws-8.18.0.tgz"; + sha512 = "8svvI3hMyvN0kKCJMvTJP/x6Y/EoQbepff882wL+Sn5QsXb3etnamgrJq4isrBxSJj5L2AuXcI0+bgkoAXGUJw=="; }; }; "@types/yauzl-2.10.3" = { @@ -8258,13 +7637,13 @@ let sha512 = "WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g=="; }; }; - "@vercel/build-utils-10.2.0" = { + "@vercel/build-utils-10.5.1" = { name = "_at_vercel_slash_build-utils"; packageName = "@vercel/build-utils"; - version = "10.2.0"; + version = "10.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-10.2.0.tgz"; - sha512 = "NBEPnxVA23RwHNqYk1Afpoz7sbZAmVJccY9L48LQlymDBX6lP+JTrYSXGTjUKXYIH3BJsLCe/9U3kUJ7Touk7Q=="; + url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-10.5.1.tgz"; + sha512 = "BtqwEmU1AoITpd0KxYrdQOwyKZL8RKba+bWxI8mr3gXPQZWRAE9ok1zF0AXfvMGCstYPHBPNolZGDSfWmY2jqg=="; }; }; "@vercel/error-utils-2.0.3" = { @@ -8294,13 +7673,13 @@ let sha512 = "iTEA0vY6RBPuEzkwUTVzSHDATo1aF6bdLLspI68mQ/BTbi5UQEGjpjyzdKOVcSYApDtFU6M6vypZ1t4vIEnHvw=="; }; }; - "@vercel/gatsby-plugin-vercel-builder-2.0.74" = { + "@vercel/gatsby-plugin-vercel-builder-2.0.80" = { name = "_at_vercel_slash_gatsby-plugin-vercel-builder"; packageName = "@vercel/gatsby-plugin-vercel-builder"; - version = "2.0.74"; + version = "2.0.80"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-2.0.74.tgz"; - sha512 = "2F8ze7krSuPfblZK2PSAX8KE3UO1Tq9zaEk3fU7JIkb46lbDftV0GjRIqcuiK1fR1eoApqHILqD81vvgKW8OAA=="; + url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-2.0.80.tgz"; + sha512 = "MC1Gx6eRfmqaARL1DczldYzA3NdMlnC5vY/AXBSZuiHCoENS4++duEjhDjMtRSiidwSCrjuaz5Y9yxKTocRmzA=="; }; }; "@vercel/go-3.2.1" = { @@ -8321,13 +7700,13 @@ let sha512 = "kdZp8cTVLoNmnu24wtoQPu9ZO+uB00zvDMTOXlQmNdq/V3k0mQa/Q5k2B8nliBQ3BMiBasoXxMKv59+F8rYvDw=="; }; }; - "@vercel/next-4.7.1" = { + "@vercel/next-4.7.4" = { name = "_at_vercel_slash_next"; packageName = "@vercel/next"; - version = "4.7.1"; + version = "4.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/next/-/next-4.7.1.tgz"; - sha512 = "Q8GxgDpn5m3uhHhzyOYWO26yypN5Ztr36U+5YzT3fIwhCiUPYfIWm1LMnAj23S9qV5WMAbIHYgdURTz4EBV+xA=="; + url = "https://registry.npmjs.org/@vercel/next/-/next-4.7.4.tgz"; + sha512 = "8CzSxN4rOjABoF+6KBEpxlWnTaXpBNDiuNGRfJ3LWBMj/mtlnsucHpd/8Y7ReS9QheICWf9McC7gqA2Alrpmwg=="; }; }; "@vercel/nft-0.27.10" = { @@ -8339,13 +7718,13 @@ let sha512 = "zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg=="; }; }; - "@vercel/node-5.1.8" = { + "@vercel/node-5.1.14" = { name = "_at_vercel_slash_node"; packageName = "@vercel/node"; - version = "5.1.8"; + version = "5.1.14"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node/-/node-5.1.8.tgz"; - sha512 = "fID4QklP0yDv8Gvv0EZWmsacNhSTyoS0f4mU4HA2pwY4847wpGSFrD5tGFsOhf+3hgGAWbwsJ+dA799jCEcyiQ=="; + url = "https://registry.npmjs.org/@vercel/node/-/node-5.1.14.tgz"; + sha512 = "kLXAR4ZtNSXJw5ffIzKPDAVHD4/Dwxw/287ZCnQlqtOQzY3IH1E5QM3nxn0LGfTkYxXpQFFOOcXL7fZW7MjC6A=="; }; }; "@vercel/python-4.7.1" = { @@ -8366,13 +7745,13 @@ let sha512 = "MybbGdMZY0/CrpgEGafJZ+8HlqubWnEpl/KX3WClCZPrT2qcyZyJEh9AVN7/KIpQUdB2MQLIRVMQFQ+kKcRdsA=="; }; }; - "@vercel/remix-builder-5.4.0" = { + "@vercel/remix-builder-5.4.3" = { name = "_at_vercel_slash_remix-builder"; packageName = "@vercel/remix-builder"; - version = "5.4.0"; + version = "5.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-5.4.0.tgz"; - sha512 = "qCZq2ZVtWKQhJSTo1fu79xxb0Ne94u9DxIqyJ11s75PqUzeqROau7Y6we9CNTEBvl/zbcXNTjidHkIlfXjBrlQ=="; + url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-5.4.3.tgz"; + sha512 = "i+uPSIOBygkXLc6unOkfrJ0jNdqzRRZ8Esu+8kt/OPm4VCOHro3hyiMxFDtdvPWDQfulVOeDNkXnqlgLRDVdlw=="; }; }; "@vercel/ruby-2.2.0" = { @@ -8384,13 +7763,13 @@ let sha512 = "FJF9gKVNHAljGOgV6zS5ou2N7ZgjOqMMtcPA5lsJEUI5/AZzVDWCmtcowTP80wEtHuupkd7d7M399FA082kXYQ=="; }; }; - "@vercel/static-build-2.7.0" = { + "@vercel/static-build-2.7.6" = { name = "_at_vercel_slash_static-build"; packageName = "@vercel/static-build"; - version = "2.7.0"; + version = "2.7.6"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-2.7.0.tgz"; - sha512 = "WX/0eZGShQAHgB+9OdcQbyHogfWHrYRG9uTLMH9c4a5lJzlw/41n3SN+RUzcxzwXK5/GhVu4ZQQS2aSMOPAHaA=="; + url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-2.7.6.tgz"; + sha512 = "ezyZScIZgZIfzhNBBZroHIkcI6kP7WvBWKeLP1a8Vh2vipI+uuH6F52fDcjSH+uDpUxhfeml7HTMx2LVNTIXWw=="; }; }; "@vercel/static-config-3.0.0" = { @@ -8870,15 +8249,6 @@ let sha512 = "YYRBpDCBLeYJBO+sVapLRkEE/+wrjv1O03IEybkqyls3sCZqhu3ZXjJwMSMCgFEyYP2MrdZvqL/dz2RBnULTbA=="; }; }; - "@webtorrent/http-node-1.3.0" = { - name = "_at_webtorrent_slash_http-node"; - packageName = "@webtorrent/http-node"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@webtorrent/http-node/-/http-node-1.3.0.tgz"; - sha512 = "GWZQKroPES4z91Ijx6zsOsb7+USOxjy66s8AoTWg0HiBBdfnbtf9aeh3Uav0MgYn4BL8Q7tVSUpd0gGpngKGEQ=="; - }; - }; "@xmldom/xmldom-0.8.10" = { name = "_at_xmldom_slash_xmldom"; packageName = "@xmldom/xmldom"; @@ -8888,13 +8258,13 @@ let sha512 = "2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw=="; }; }; - "@xmldom/xmldom-0.9.7" = { + "@xmldom/xmldom-0.9.8" = { name = "_at_xmldom_slash_xmldom"; packageName = "@xmldom/xmldom"; - version = "0.9.7"; + version = "0.9.8"; src = fetchurl { - url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.7.tgz"; - sha512 = "syvR8iIJjpTZ/stv7l89UAViwGFh6lbheeOaqSxkYx9YNmIVvPTRH+CT/fpykFtUx5N+8eSMDRvggF9J8GEPzQ=="; + url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.8.tgz"; + sha512 = "p96FSY54r+WJ50FIOsCOjyj/wavs8921hG5+kVMmZgKcvIKxMXHTrjNJvRgWa/zuX3B6t2lijLNFaOyuxUH+2A=="; }; }; "@xmpp/base64-0.13.2" = { @@ -9293,24 +8663,6 @@ let sha512 = "h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="; }; }; - "abstract-logging-1.0.0" = { - name = "abstract-logging"; - packageName = "abstract-logging"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/abstract-logging/-/abstract-logging-1.0.0.tgz"; - sha512 = "CWDjsyA74oOOK6ekFOE00fEUR/twE2SUmXWFQpF1J1fxaq9wSI2tnK3z0vAhpEcmCqw8xD/+A2M2a2M+3bCe8A=="; - }; - }; - "abstract-logging-2.0.1" = { - name = "abstract-logging"; - packageName = "abstract-logging"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/abstract-logging/-/abstract-logging-2.0.1.tgz"; - sha512 = "2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA=="; - }; - }; "accepts-1.3.8" = { name = "accepts"; packageName = "accepts"; @@ -9356,22 +8708,13 @@ let sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; }; }; - "acorn-8.14.0" = { + "acorn-8.14.1" = { name = "acorn"; packageName = "acorn"; - version = "8.14.0"; + version = "8.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz"; - sha512 = "cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA=="; - }; - }; - "acorn-globals-4.3.4" = { - name = "acorn-globals"; - packageName = "acorn-globals"; - version = "4.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz"; - sha512 = "clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A=="; + url = "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz"; + sha512 = "OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg=="; }; }; "acorn-globals-6.0.0" = { @@ -9428,15 +8771,6 @@ let sha512 = "8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A=="; }; }; - "acorn-typescript-1.4.13" = { - name = "acorn-typescript"; - packageName = "acorn-typescript"; - version = "1.4.13"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-typescript/-/acorn-typescript-1.4.13.tgz"; - sha512 = "xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q=="; - }; - }; "acorn-walk-6.2.0" = { name = "acorn-walk"; packageName = "acorn-walk"; @@ -9482,15 +8816,6 @@ let sha512 = "ByxmJgv8vjmDcl3IDToxL2yrWFrRtFpZAToY0f46XFXl8zS081t7El5MXIodwm7RC6DhHBRoOSMLFSPKCtHukg=="; }; }; - "addr-to-ip-port-2.0.0" = { - name = "addr-to-ip-port"; - packageName = "addr-to-ip-port"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/addr-to-ip-port/-/addr-to-ip-port-2.0.0.tgz"; - sha512 = "9bYbtjamtdLHZSqVIUXhilOryNPiL+x+Q5J/Unpg4VY3ZIkK3fT52UoErj1NdUeVm3J1t2iBEAur4Ywbl/bahw=="; - }; - }; "address-1.2.2" = { name = "address"; packageName = "address"; @@ -9932,6 +9257,15 @@ let sha512 = "QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg=="; }; }; + "ansis-3.17.0" = { + name = "ansis"; + packageName = "ansis"; + version = "3.17.0"; + src = fetchurl { + url = "https://registry.npmjs.org/ansis/-/ansis-3.17.0.tgz"; + sha512 = "0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg=="; + }; + }; "any-base-1.1.0" = { name = "any-base"; packageName = "any-base"; @@ -10265,15 +9599,6 @@ let sha512 = "zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA=="; }; }; - "array-equal-1.0.2" = { - name = "array-equal"; - packageName = "array-equal"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/array-equal/-/array-equal-1.0.2.tgz"; - sha512 = "gUHx76KtnhEgB3HOuFYiCm3FIdEs6ocM2asHvNTkfu/Y09qQVrrVVaOKENmS2KkSaGoxgXNqC+ZVtR/n0MOkSA=="; - }; - }; "array-find-index-1.0.2" = { name = "array-find-index"; packageName = "array-find-index"; @@ -10706,15 +10031,6 @@ let sha512 = "hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA=="; }; }; - "async-limiter-1.0.1" = { - name = "async-limiter"; - packageName = "async-limiter"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz"; - sha512 = "csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="; - }; - }; "async-listen-1.2.0" = { name = "async-listen"; packageName = "async-listen"; @@ -10850,22 +10166,22 @@ let sha512 = "wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ=="; }; }; - "awilix-12.0.4" = { + "awilix-12.0.5" = { name = "awilix"; packageName = "awilix"; - version = "12.0.4"; + version = "12.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/awilix/-/awilix-12.0.4.tgz"; - sha512 = "P6bd20vqMiUyjgBAVl+4WixM/MR9O9zsTzd9vS5lTd1eLpFEn6Re4+GeeYzDDE8U1DXL8cO/nTOHofKDEJUfAQ=="; + url = "https://registry.npmjs.org/awilix/-/awilix-12.0.5.tgz"; + sha512 = "Qf/V/hRo6DK0FoBKJ9QiObasRxHAhcNi0mV6kW2JMawxS3zq6Un+VsZmVAZDUfvB+MjTEiJ2tUJUl4cr0JiUAw=="; }; }; - "aws-crt-1.25.3" = { + "aws-crt-1.26.2" = { name = "aws-crt"; packageName = "aws-crt"; - version = "1.25.3"; + version = "1.26.2"; src = fetchurl { - url = "https://registry.npmjs.org/aws-crt/-/aws-crt-1.25.3.tgz"; - sha512 = "MWV2Yy08xxAZqMJiFE1ZwSrVNq2Hy54SK4ooUx2Ts6DlDzdAizSfgoEKkh7ifyo7j5RVXu3924zAPjC8FBLiSg=="; + url = "https://registry.npmjs.org/aws-crt/-/aws-crt-1.26.2.tgz"; + sha512 = "XyzCoWMQ693g6iLFqgeVl6DTMKZIIc0zlzwLvP47az7nRgob8JLiqJDbx1ljKqBxKesRqq9igjTMzOKh3JkvUA=="; }; }; "aws-sdk-2.1340.0" = { @@ -10904,15 +10220,6 @@ let sha512 = "lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw=="; }; }; - "axios-0.19.2" = { - name = "axios"; - packageName = "axios"; - version = "0.19.2"; - src = fetchurl { - url = "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz"; - sha512 = "fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA=="; - }; - }; "axios-0.21.4" = { name = "axios"; packageName = "axios"; @@ -10931,13 +10238,13 @@ let sha512 = "cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g=="; }; }; - "axios-1.7.9" = { + "axios-1.8.3" = { name = "axios"; packageName = "axios"; - version = "1.7.9"; + version = "1.8.3"; src = fetchurl { - url = "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz"; - sha512 = "LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw=="; + url = "https://registry.npmjs.org/axios/-/axios-1.8.3.tgz"; + sha512 = "iP4DebzoNlP/YN2dpwCgb8zoCmhtkajzS48JvwmkSkXvPI3DHc7m+XYL5tGnSlJtR6nImXZmdCuN5aP8dh1d8A=="; }; }; "axobject-query-4.1.0" = { @@ -11057,60 +10364,6 @@ let sha512 = "1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA=="; }; }; - "bare-buffer-3.0.2" = { - name = "bare-buffer"; - packageName = "bare-buffer"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/bare-buffer/-/bare-buffer-3.0.2.tgz"; - sha512 = "UPk8BXEq/gY1JCAjkFwrq8AzrtLU1vYRofKZH1qGVgLBYs5kg9Pa4ZGbpOWJMggymCHcBkeUUsZ5v0a8JQa5qQ=="; - }; - }; - "bare-events-2.5.4" = { - name = "bare-events"; - packageName = "bare-events"; - version = "2.5.4"; - src = fetchurl { - url = "https://registry.npmjs.org/bare-events/-/bare-events-2.5.4.tgz"; - sha512 = "+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA=="; - }; - }; - "bare-fs-4.0.1" = { - name = "bare-fs"; - packageName = "bare-fs"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/bare-fs/-/bare-fs-4.0.1.tgz"; - sha512 = "ilQs4fm/l9eMfWY2dY0WCIUplSUp7U0CT1vrqMg1MUdeZl4fypu5UP0XcDBK5WBQPJAKP1b7XEodISmekH/CEg=="; - }; - }; - "bare-os-3.4.0" = { - name = "bare-os"; - packageName = "bare-os"; - version = "3.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bare-os/-/bare-os-3.4.0.tgz"; - sha512 = "9Ous7UlnKbe3fMi7Y+qh0DwAup6A1JkYgPnjvMDNOlmnxNRQvQ/7Nst+OnUQKzk0iAT0m9BisbDVp9gCv8+ETA=="; - }; - }; - "bare-path-3.0.0" = { - name = "bare-path"; - packageName = "bare-path"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bare-path/-/bare-path-3.0.0.tgz"; - sha512 = "tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw=="; - }; - }; - "bare-stream-2.6.5" = { - name = "bare-stream"; - packageName = "bare-stream"; - version = "2.6.5"; - src = fetchurl { - url = "https://registry.npmjs.org/bare-stream/-/bare-stream-2.6.5.tgz"; - sha512 = "jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA=="; - }; - }; "base-0.11.2" = { name = "base"; packageName = "base"; @@ -11129,15 +10382,6 @@ let sha512 = "kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg=="; }; }; - "base-x-3.0.10" = { - name = "base-x"; - packageName = "base-x"; - version = "3.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/base-x/-/base-x-3.0.10.tgz"; - sha512 = "7d0s06rR9rYaIWHkpfLIFICM/tkSVdoPC9qYAQRpxn9DdKNWNsKC0uk++akckyLq16Tx2WIinnZ6WRriAt6njQ=="; - }; - }; "base64-arraybuffer-0.1.4" = { name = "base64-arraybuffer"; packageName = "base64-arraybuffer"; @@ -11147,24 +10391,6 @@ let sha512 = "a1eIFi4R9ySrbiMuyTGx5e92uRH5tQY6kArNcFaKBUleIoLjdjBg7Zxm3Mqm3Kmkf27HLR/1fnxX9q8GQ7Iavg=="; }; }; - "base64-arraybuffer-0.1.5" = { - name = "base64-arraybuffer"; - packageName = "base64-arraybuffer"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz"; - sha512 = "437oANT9tP582zZMwSvZGy2nmSeAb8DW2me3y+Uv1Wp2Rulr8Mqlyrv3E7MLxmsiaPSMMDmiDVzgE+e8zlMx9g=="; - }; - }; - "base64-arraybuffer-1.0.2" = { - name = "base64-arraybuffer"; - packageName = "base64-arraybuffer"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz"; - sha512 = "I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ=="; - }; - }; "base64-js-0.0.8" = { name = "base64-js"; packageName = "base64-js"; @@ -11300,15 +10526,6 @@ let sha512 = "D/vrAD4dLVX23NalHwb8dSvsUsxeRPO8Y7ToKA015JQYq69MLDOMkC0uGZYA/MPpltLO8rt8eqFC2j8DxjTZ/w=="; }; }; - "bencode-4.0.0" = { - name = "bencode"; - packageName = "bencode"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bencode/-/bencode-4.0.0.tgz"; - sha512 = "AERXw18df0pF3ziGOCyUjqKZBVNH8HV3lBxnx5w0qtgMIk4a1wb9BkcCQbkp9Zstfrn/dzRwl7MmUHHocX3sRQ=="; - }; - }; "bep53-range-1.1.1" = { name = "bep53-range"; packageName = "bep53-range"; @@ -11318,24 +10535,6 @@ let sha512 = "ct6s33iiwRCUPp9KXnJ4QMWDgHIgaw36caK/5XEQ9L8dCzSQlJt1Vk6VmHh1VD4AlGCAI4C2zmtfItifBBPrhQ=="; }; }; - "bep53-range-2.0.0" = { - name = "bep53-range"; - packageName = "bep53-range"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bep53-range/-/bep53-range-2.0.0.tgz"; - sha512 = "sMm2sV5PRs0YOVk0LTKtjuIprVzxgTQUsrGX/7Yph2Rm4FO2Fqqtq7hNjsOB5xezM4v4+5rljCgK++UeQJZguA=="; - }; - }; - "better-assert-1.0.2" = { - name = "better-assert"; - packageName = "better-assert"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz"; - sha512 = "bYeph2DFlpK1XmGs6fvlLRUN29QISM3GBuUwSFsMY2XRx4AvC0WNCS57j4c/xGrK2RS24C1w3YoBOsw9fT46tQ=="; - }; - }; "better-opn-2.1.1" = { name = "better-opn"; packageName = "better-opn"; @@ -11444,24 +10643,6 @@ let sha512 = "M15ypXCxXd81FSOWL2ejHpB1TDKmz7Y55/VuqfExJi72sHW0JzE5dfV+hrSZafZtWRg/tdMsdte5dgwrlOM7nA=="; }; }; - "bitfield-4.2.0" = { - name = "bitfield"; - packageName = "bitfield"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bitfield/-/bitfield-4.2.0.tgz"; - sha512 = "kUTatQb/mBd8uhvdLrUkouGDBUQiJaIOvPlptUwOWp6MFqih4d1MiVf0m3ATxfZSzu+LjW/awFeABltYa62uIA=="; - }; - }; - "bittorrent-dht-11.0.9" = { - name = "bittorrent-dht"; - packageName = "bittorrent-dht"; - version = "11.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-11.0.9.tgz"; - sha512 = "aM6m9zvIGi8lMANaxUWcF3yytUxloUCc4gzqa0SOvo22FyeNDHecOXccw6FIZyk4I0IN9KDCj7We+n+RpqnYgg=="; - }; - }; "bittorrent-dht-6.4.2" = { name = "bittorrent-dht"; packageName = "bittorrent-dht"; @@ -11471,42 +10652,6 @@ let sha512 = "DeBunF1nL/ckThYyU3AVtHFR195zNV06Ob6bKNXA1y6X56GSKMfkNCABB45YcbZevGMW1dytFlm59D/fws5lTg=="; }; }; - "bittorrent-lsd-2.0.0" = { - name = "bittorrent-lsd"; - packageName = "bittorrent-lsd"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bittorrent-lsd/-/bittorrent-lsd-2.0.0.tgz"; - sha512 = "jV+SMTGNY1iGWjf5cPA2HMeA6axuMQRWwWELtsuZ1FmQmZwC74we92nwtDTfv1WMnLx+oqEjWRri42IHjZitSQ=="; - }; - }; - "bittorrent-peerid-1.3.6" = { - name = "bittorrent-peerid"; - packageName = "bittorrent-peerid"; - version = "1.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/bittorrent-peerid/-/bittorrent-peerid-1.3.6.tgz"; - sha512 = "VyLcUjVMEOdSpHaCG/7odvCdLbAB1y3l9A2V6WIje24uV7FkJPrQrH/RrlFmKxP89pFVDEnE+YlHaFujlFIZsg=="; - }; - }; - "bittorrent-protocol-4.1.16" = { - name = "bittorrent-protocol"; - packageName = "bittorrent-protocol"; - version = "4.1.16"; - src = fetchurl { - url = "https://registry.npmjs.org/bittorrent-protocol/-/bittorrent-protocol-4.1.16.tgz"; - sha512 = "93t8h77uAyD8BGSpBo8SqxYyKBA/xgv9N8+WghnXpH2I+JmlmJmddUt8nugPRgj/LNuL1VrWJ26jhYhiVWpRaQ=="; - }; - }; - "bittorrent-tracker-11.2.1" = { - name = "bittorrent-tracker"; - packageName = "bittorrent-tracker"; - version = "11.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-11.2.1.tgz"; - sha512 = "SffBgHzNrhn+HBwdRD2st+TYJOs2LhF3ljJFPCYGv592LpGtPxw41UZHTUeY5muWnQl+wopcU8qXM9UEk2WKrA=="; - }; - }; "bittorrent-tracker-7.7.0" = { name = "bittorrent-tracker"; packageName = "bittorrent-tracker"; @@ -11561,24 +10706,6 @@ let sha512 = "BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA=="; }; }; - "block-iterator-1.1.1" = { - name = "block-iterator"; - packageName = "block-iterator"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/block-iterator/-/block-iterator-1.1.1.tgz"; - sha512 = "DrjdVWZemVO4iBf4tiOXjUrY5cNesjzy0t7sIiu2rdl8cOCHRxAgKjSJFc3vBZYYMMmshUAxajl8QQh/uxXTKQ=="; - }; - }; - "block-stream-0.0.9" = { - name = "block-stream"; - packageName = "block-stream"; - version = "0.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz"; - sha512 = "OorbnJVPII4DuUKbjARAe8u8EfqOmkEEaSFIyoQ7OjTHn6kafxWl0wLgoZ2rXaYd7MyLcDaU4TmhfxtwgcccMQ=="; - }; - }; "bluebird-3.7.2" = { name = "bluebird"; packageName = "bluebird"; @@ -11642,24 +10769,6 @@ let sha512 = "0P5VuWobU5Gwbeio8n9Jsdv0tE1IikrV9n4f7RsnXHNtxmdd/oeIO6QyoSEUAEyo5P6i3XMfBppi82WqNsT4JA=="; }; }; - "body-parser-1.19.0" = { - name = "body-parser"; - packageName = "body-parser"; - version = "1.19.0"; - src = fetchurl { - url = "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz"; - sha512 = "dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw=="; - }; - }; - "body-parser-1.19.2" = { - name = "body-parser"; - packageName = "body-parser"; - version = "1.19.2"; - src = fetchurl { - url = "https://registry.npmjs.org/body-parser/-/body-parser-1.19.2.tgz"; - sha512 = "SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw=="; - }; - }; "body-parser-1.20.3" = { name = "body-parser"; packageName = "body-parser"; @@ -12290,15 +11399,6 @@ let sha512 = "tY6iaw+iYbCjlsAgAyO4CeA7Usnj5VndygMfd2PcHK++626oMoHANcdsH5tq5VxRPsbk9M1fbuk0a5pX9axV2w=="; }; }; - "busboy-0.3.1" = { - name = "busboy"; - packageName = "busboy"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/busboy/-/busboy-0.3.1.tgz"; - sha512 = "y7tTxhGKXcyBxRKAni+awqx8uqaJKrSFSNFSeRG5CsWNdmy2BIK+6VGWEW7TZnIO/533mtMEA4rOevQV815YJw=="; - }; - }; "busboy-1.6.0" = { name = "busboy"; packageName = "busboy"; @@ -12398,15 +11498,6 @@ let sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; }; }; - "cache-chunk-store-3.2.2" = { - name = "cache-chunk-store"; - packageName = "cache-chunk-store"; - version = "3.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/cache-chunk-store/-/cache-chunk-store-3.2.2.tgz"; - sha512 = "2lJdWbgHFFxcSth9s2wpId3CR3v1YC63KjP4T9WhpW7LWlY7Hiiei3QwwqzkWqlJTfR8lSy9F5kRQECeyj+yQA=="; - }; - }; "cacheable-lookup-5.0.4" = { name = "cacheable-lookup"; packageName = "cacheable-lookup"; @@ -12479,13 +11570,13 @@ let sha512 = "Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="; }; }; - "call-bound-1.0.3" = { + "call-bound-1.0.4" = { name = "call-bound"; packageName = "call-bound"; - version = "1.0.3"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz"; - sha512 = "YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA=="; + url = "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz"; + sha512 = "+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg=="; }; }; "call-me-maybe-1.0.2" = { @@ -12668,22 +11759,13 @@ let sha512 = "qMKdlOfsjlezMqxkUGGMaWWs17i2HoL15tM+wtx8ld4nLrUwU58TFdvyGOz/piNP842KeO8yXvggVQSdQ828NA=="; }; }; - "caniuse-api-3.0.0" = { - name = "caniuse-api"; - packageName = "caniuse-api"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz"; - sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; - }; - }; - "caniuse-lite-1.0.30001700" = { + "caniuse-lite-1.0.30001704" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001700"; + version = "1.0.30001704"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001700.tgz"; - sha512 = "2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001704.tgz"; + sha512 = "+L2IgBbV6gXB4ETf0keSvLr7JUrRVbIaB/lrQ1+z8mRcQiisG5k+lG6O4n6Y5q6f5EuNfaYXKgymucphlEXQew=="; }; }; "canvas-2.11.2" = { @@ -12758,13 +11840,13 @@ let sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; }; }; - "cdk8s-2.69.43" = { + "cdk8s-2.69.52" = { name = "cdk8s"; packageName = "cdk8s"; - version = "2.69.43"; + version = "2.69.52"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.69.43.tgz"; - sha512 = "H7De5ozBSa00VlLN7MfA392fGVCV1nOkeEf3tHs/6aahOxd6mOcXkmxZvEl4/iG+TGx8IAnwyg2K3qRMRniqhg=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.69.52.tgz"; + sha512 = "rD+ggdyr6WyyD2JoICrQ2uQS9+n7q5JhxAedQzv/y97jFbma9PwaCE37jnD7CGqVv74fzodYqIFbr/AzKqB7lw=="; }; }; "cdk8s-plus-28-2.5.6" = { @@ -12821,15 +11903,6 @@ let sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; }; }; - "chalk-4.1.0" = { - name = "chalk"; - packageName = "chalk"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz"; - sha512 = "qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A=="; - }; - }; "chalk-4.1.2" = { name = "chalk"; packageName = "chalk"; @@ -12983,51 +12056,6 @@ let sha512 = "yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA=="; }; }; - "charset-1.0.1" = { - name = "charset"; - packageName = "charset"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/charset/-/charset-1.0.1.tgz"; - sha512 = "6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg=="; - }; - }; - "cheerio-0.22.0" = { - name = "cheerio"; - packageName = "cheerio"; - version = "0.22.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz"; - sha512 = "8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA=="; - }; - }; - "cheerio-1.0.0-rc.12" = { - name = "cheerio"; - packageName = "cheerio"; - version = "1.0.0-rc.12"; - src = fetchurl { - url = "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz"; - sha512 = "VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q=="; - }; - }; - "cheerio-1.0.0-rc.3" = { - name = "cheerio"; - packageName = "cheerio"; - version = "1.0.0-rc.3"; - src = fetchurl { - url = "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz"; - sha512 = "0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA=="; - }; - }; - "cheerio-select-2.1.0" = { - name = "cheerio-select"; - packageName = "cheerio-select"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz"; - sha512 = "9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g=="; - }; - }; "chokidar-1.7.0" = { name = "chokidar"; packageName = "chokidar"; @@ -13154,15 +12182,6 @@ let sha512 = "qXlsCmpCZJAnoTYI83Iu6EdYQpMYdVkCfq08KDh2pmlVqK5t5IA9mGs4/LwCwp4fqisSOMXZxP3HIh8w8aRn0A=="; }; }; - "chunk-store-iterator-1.0.3" = { - name = "chunk-store-iterator"; - packageName = "chunk-store-iterator"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/chunk-store-iterator/-/chunk-store-iterator-1.0.3.tgz"; - sha512 = "JcSaB5h3wQstQKnaJi8sET40f0m+6Kh4mhKIr05lrWKi+EiQzn6XUoi6LipgRGMqXWNZZJaMz2tH4aeg4ptBDA=="; - }; - }; "ci-info-2.0.0" = { name = "ci-info"; packageName = "ci-info"; @@ -13181,13 +12200,13 @@ let sha512 = "NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="; }; }; - "ci-info-4.1.0" = { + "ci-info-4.2.0" = { name = "ci-info"; packageName = "ci-info"; - version = "4.1.0"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/ci-info/-/ci-info-4.1.0.tgz"; - sha512 = "HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A=="; + url = "https://registry.npmjs.org/ci-info/-/ci-info-4.2.0.tgz"; + sha512 = "cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg=="; }; }; "cipher-base-1.0.6" = { @@ -13748,13 +12767,13 @@ let sha512 = "lxsbbcSMxCdT+9wUv1AvBH9791andoWDcQ6s7ZK6KsMZ+UkRLO3obzhi7Zm+RIA3lHecqzaGmOKyRnu0Dx/Zew=="; }; }; - "codemaker-1.108.0" = { + "codemaker-1.109.0" = { name = "codemaker"; packageName = "codemaker"; - version = "1.108.0"; + version = "1.109.0"; src = fetchurl { - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.108.0.tgz"; - sha512 = "EwMvLf3tkBXllS4hZbr3WYm4kZiAH5Spd01MaRd+yJ636RfwIvpGgCGVqYbjW0RJ7yyfnakZ0HvCc8PxqyYWbA=="; + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.109.0.tgz"; + sha512 = "hDz+p5ZROu20gS8+Fm0e0/Etlke2TyqajN9hzki9m5N3kkfcA0YVTDj3AJjT82k/kwMoTcXNrgdEr33kdOBNNQ=="; }; }; "collapse-white-space-2.1.0" = { @@ -13847,15 +12866,6 @@ let sha512 = "qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="; }; }; - "colord-2.9.3" = { - name = "colord"; - packageName = "colord"; - version = "2.9.3"; - src = fetchurl { - url = "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz"; - sha512 = "jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw=="; - }; - }; "colorette-2.0.20" = { name = "colorette"; packageName = "colorette"; @@ -13982,15 +12992,6 @@ let sha512 = "yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ=="; }; }; - "commander-12.1.0" = { - name = "commander"; - packageName = "commander"; - version = "12.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz"; - sha512 = "Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA=="; - }; - }; "commander-13.1.0" = { name = "commander"; packageName = "commander"; @@ -14018,15 +13019,6 @@ let sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; }; }; - "commander-3.0.2" = { - name = "commander"; - packageName = "commander"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz"; - sha512 = "Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow=="; - }; - }; "commander-4.1.1" = { name = "commander"; packageName = "commander"; @@ -14045,15 +13037,6 @@ let sha512 = "P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg=="; }; }; - "commander-6.0.0" = { - name = "commander"; - packageName = "commander"; - version = "6.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-6.0.0.tgz"; - sha512 = "s7EA+hDtTYNhuXkTlhqew4txMZVdszBmKWSPEMxGr8ru8JXR7bLUFIAtPhcSuFdJQ0ILMxnJi8GkQL0yvDy/YA=="; - }; - }; "commander-6.2.1" = { name = "commander"; packageName = "commander"; @@ -14081,15 +13064,6 @@ let sha512 = "OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="; }; }; - "commander-9.0.0" = { - name = "commander"; - packageName = "commander"; - version = "9.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-9.0.0.tgz"; - sha512 = "JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw=="; - }; - }; "commander-9.5.0" = { name = "commander"; packageName = "commander"; @@ -14522,15 +13496,6 @@ let sha512 = "kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA=="; }; }; - "content-disposition-0.5.3" = { - name = "content-disposition"; - packageName = "content-disposition"; - version = "0.5.3"; - src = fetchurl { - url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz"; - sha512 = "ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g=="; - }; - }; "content-disposition-0.5.4" = { name = "content-disposition"; packageName = "content-disposition"; @@ -14766,24 +13731,6 @@ let sha512 = "rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ=="; }; }; - "cookie-0.3.1" = { - name = "cookie"; - packageName = "cookie"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz"; - sha512 = "+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw=="; - }; - }; - "cookie-0.4.0" = { - name = "cookie"; - packageName = "cookie"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz"; - sha512 = "+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="; - }; - }; "cookie-0.4.1" = { name = "cookie"; packageName = "cookie"; @@ -14883,13 +13830,13 @@ let sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; }; }; - "core-js-3.40.0" = { + "core-js-3.41.0" = { name = "core-js"; packageName = "core-js"; - version = "3.40.0"; + version = "3.41.0"; src = fetchurl { - url = "https://registry.npmjs.org/core-js/-/core-js-3.40.0.tgz"; - sha512 = "7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ=="; + url = "https://registry.npmjs.org/core-js/-/core-js-3.41.0.tgz"; + sha512 = "SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA=="; }; }; "core-util-is-1.0.2" = { @@ -14964,15 +13911,6 @@ let sha512 = "vy2Vi1r2epK5WqxOLnskeKeZkdZvTKfFZQCplE3XWsP+SUJyd5XAUFC9lFgTjjXJF2GMne/UML14iEmkAaDfFg=="; }; }; - "cpus-1.0.3" = { - name = "cpus"; - packageName = "cpus"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/cpus/-/cpus-1.0.3.tgz"; - sha512 = "PXHBvGLuL69u55IkLa5e5838fLhIMHxmkV4ge42a8alGyn7BtawYgI0hQ849EedvtHIOLNNH3i6eQU1BiE9SUA=="; - }; - }; "cpy-10.1.0" = { name = "cpy"; packageName = "cpy"; @@ -15072,15 +14010,6 @@ let sha512 = "dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ=="; }; }; - "create-torrent-6.1.0" = { - name = "create-torrent"; - packageName = "create-torrent"; - version = "6.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/create-torrent/-/create-torrent-6.1.0.tgz"; - sha512 = "War593HCsg4TotHgMGWTJqnDHN0pmEU2RM13xUzzSZ78TpRNOC2bbcsC5yMO3pqIkedHEWFzYNqH1yhwuuBYTg=="; - }; - }; "cron-parser-4.9.0" = { name = "cron-parser"; packageName = "cron-parser"; @@ -15117,15 +14046,6 @@ let sha512 = "Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q=="; }; }; - "cross-fetch-ponyfill-1.0.3" = { - name = "cross-fetch-ponyfill"; - packageName = "cross-fetch-ponyfill"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/cross-fetch-ponyfill/-/cross-fetch-ponyfill-1.0.3.tgz"; - sha512 = "uOBkDhUAGAbx/FEzNKkOfx3w57H8xReBBXoZvUnOKTI0FW0Xvrj3GrYv2iZXUqlffC1LMGfQzhmBM/ke+6eTDA=="; - }; - }; "cross-spawn-5.1.0" = { name = "cross-spawn"; packageName = "cross-spawn"; @@ -15333,24 +14253,6 @@ let sha512 = "or3OGKydZs1NwweMIgnA48k8H3F5zK4e5lonjUhpEzLYQZ2nB23decdoqZ8ogFC8pFTA40tZKDsMJ0b+65gX4Q=="; }; }; - "css-declaration-sorter-7.2.0" = { - name = "css-declaration-sorter"; - packageName = "css-declaration-sorter"; - version = "7.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz"; - sha512 = "h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow=="; - }; - }; - "css-select-1.2.0" = { - name = "css-select"; - packageName = "css-select"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz"; - sha512 = "dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA=="; - }; - }; "css-select-4.3.0" = { name = "css-select"; packageName = "css-select"; @@ -15387,15 +14289,6 @@ let sha512 = "6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw=="; }; }; - "css-what-2.1.3" = { - name = "css-what"; - packageName = "css-what"; - version = "2.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz"; - sha512 = "a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg=="; - }; - }; "css-what-6.1.0" = { name = "css-what"; packageName = "css-what"; @@ -15423,33 +14316,6 @@ let sha512 = "/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="; }; }; - "cssnano-7.0.6" = { - name = "cssnano"; - packageName = "cssnano"; - version = "7.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/cssnano/-/cssnano-7.0.6.tgz"; - sha512 = "54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw=="; - }; - }; - "cssnano-preset-default-7.0.6" = { - name = "cssnano-preset-default"; - packageName = "cssnano-preset-default"; - version = "7.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-7.0.6.tgz"; - sha512 = "ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ=="; - }; - }; - "cssnano-utils-5.0.0" = { - name = "cssnano-utils"; - packageName = "cssnano-utils"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-5.0.0.tgz"; - sha512 = "Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ=="; - }; - }; "csso-5.0.5" = { name = "csso"; packageName = "csso"; @@ -15477,15 +14343,6 @@ let sha512 = "p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw=="; }; }; - "cssstyle-1.4.0" = { - name = "cssstyle"; - packageName = "cssstyle"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz"; - sha512 = "GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA=="; - }; - }; "cssstyle-2.3.0" = { name = "cssstyle"; packageName = "cssstyle"; @@ -15495,13 +14352,13 @@ let sha512 = "AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A=="; }; }; - "cssstyle-4.2.1" = { + "cssstyle-4.3.0" = { name = "cssstyle"; packageName = "cssstyle"; - version = "4.2.1"; + version = "4.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/cssstyle/-/cssstyle-4.2.1.tgz"; - sha512 = "9+vem03dMXG7gDmZ62uqmRiMRNtinIZ9ZyuF6BdxzfOD+FdN5hretzynkn0ReS2DO2GSw76RWHs0UmJPI2zUjw=="; + url = "https://registry.npmjs.org/cssstyle/-/cssstyle-4.3.0.tgz"; + sha512 = "6r0NiY0xizYqfBvWp1G7WXJ06/bZyrk7Dc6PHql82C/pKGUTKu4yAX4Y8JPamb1ob9nBKuxWzCGTRuGwU3yxJQ=="; }; }; "csstype-3.1.3" = { @@ -15864,15 +14721,6 @@ let sha512 = "7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw=="; }; }; - "data-urls-1.1.0" = { - name = "data-urls"; - packageName = "data-urls"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz"; - sha512 = "YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ=="; - }; - }; "data-urls-2.0.0" = { name = "data-urls"; packageName = "data-urls"; @@ -16143,13 +14991,13 @@ let sha512 = "8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw=="; }; }; - "decode-named-character-reference-1.0.2" = { + "decode-named-character-reference-1.1.0" = { name = "decode-named-character-reference"; packageName = "decode-named-character-reference"; - version = "1.0.2"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz"; - sha512 = "O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg=="; + url = "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.1.0.tgz"; + sha512 = "Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w=="; }; }; "decode-uri-component-0.2.2" = { @@ -16314,15 +15162,6 @@ let sha512 = "A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA=="; }; }; - "default-gateway-6.0.3" = { - name = "default-gateway"; - packageName = "default-gateway"; - version = "6.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz"; - sha512 = "fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg=="; - }; - }; "defaults-1.0.4" = { name = "defaults"; packageName = "defaults"; @@ -16521,6 +15360,15 @@ let sha512 = "JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg=="; }; }; + "dependency-graph-1.0.0" = { + name = "dependency-graph"; + packageName = "dependency-graph"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/dependency-graph/-/dependency-graph-1.0.0.tgz"; + sha512 = "cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg=="; + }; + }; "dependency-path-9.2.8" = { name = "dependency-path"; packageName = "dependency-path"; @@ -16566,15 +15414,6 @@ let sha512 = "r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg=="; }; }; - "destroy-1.0.4" = { - name = "destroy"; - packageName = "destroy"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz"; - sha512 = "3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg=="; - }; - }; "destroy-1.2.0" = { name = "destroy"; packageName = "destroy"; @@ -16611,15 +15450,6 @@ let sha512 = "reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA=="; }; }; - "detect-libc-1.0.3" = { - name = "detect-libc"; - packageName = "detect-libc"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz"; - sha512 = "pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg=="; - }; - }; "detect-libc-2.0.3" = { name = "detect-libc"; packageName = "detect-libc"; @@ -16692,15 +15522,6 @@ let sha512 = "rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig=="; }; }; - "dicer-0.3.0" = { - name = "dicer"; - packageName = "dicer"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/dicer/-/dicer-0.3.0.tgz"; - sha512 = "MdceRRWqltEG2dZqO769g27N/3PXfcKl04VhYnBlo2YhH7zPi88VebsjTKclaOyiuMaGU72hTfw3VkUitGcVCA=="; - }; - }; "diff-3.5.0" = { name = "diff"; packageName = "diff"; @@ -16800,15 +15621,6 @@ let sha512 = "Cuia7IBvmSanM+7ZmKYtP9hq+Du7n7mv2cpCt8GiEIkUDni0ecSlVCFJUL6HWwGzqLX03uA49xVOZOjwnabWmQ=="; }; }; - "dlnacasts-0.1.0" = { - name = "dlnacasts"; - packageName = "dlnacasts"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/dlnacasts/-/dlnacasts-0.1.0.tgz"; - sha512 = "JsNDoe2UbFzsXRdOHmGK8JO1SR/3Dj7J9LCmTgo35ppYQ0dR2O+oe8T2kABBF4+Qas4auaILQ4rul+LWMhtEdw=="; - }; - }; "dns-equal-1.0.0" = { name = "dns-equal"; packageName = "dns-equal"; @@ -16935,15 +15747,6 @@ let sha512 = "gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA=="; }; }; - "dom-serializer-0.1.1" = { - name = "dom-serializer"; - packageName = "dom-serializer"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz"; - sha512 = "l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA=="; - }; - }; "dom-serializer-0.2.2" = { name = "dom-serializer"; packageName = "dom-serializer"; @@ -17016,15 +15819,6 @@ let sha512 = "OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="; }; }; - "domexception-1.0.1" = { - name = "domexception"; - packageName = "domexception"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz"; - sha512 = "raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug=="; - }; - }; "domexception-2.0.1" = { name = "domexception"; packageName = "domexception"; @@ -17205,15 +15999,6 @@ let sha512 = "IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g=="; }; }; - "dotenv-expand-11.0.7" = { - name = "dotenv-expand"; - packageName = "dotenv-expand"; - version = "11.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.7.tgz"; - sha512 = "zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA=="; - }; - }; "downlevel-dts-0.11.0" = { name = "downlevel-dts"; packageName = "downlevel-dts"; @@ -17403,15 +16188,6 @@ let sha512 = "nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="; }; }; - "ecstatic-4.1.4" = { - name = "ecstatic"; - packageName = "ecstatic"; - version = "4.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/ecstatic/-/ecstatic-4.1.4.tgz"; - sha512 = "8E4ZLK4uRuB9pwywGpy/B9vcz4gCp6IY7u4cMbeCINr/fjb1v+0wf0Ae2XlfSnG8xZYnE4uaJBjFkYI0bqcIdw=="; - }; - }; "edge-runtime-2.5.9" = { name = "edge-runtime"; packageName = "edge-runtime"; @@ -17457,13 +16233,13 @@ let sha512 = "UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA=="; }; }; - "electron-to-chromium-1.5.104" = { + "electron-to-chromium-1.5.118" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.5.104"; + version = "1.5.118"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.104.tgz"; - sha512 = "Us9M2L4cO/zMBqVkJtnj353nQhMju9slHm62NprKTmdF3HH8wYOtNvDFq/JB2+ZRoGLzdvYDiATlMHs98XBM1g=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.118.tgz"; + sha512 = "yNDUus0iultYyVoEFLnQeei7LOQkL8wg8GQpkPCRrOlJXlcCwa6eGKZkxQ9ciHsqZyYbj8Jd94X1CTPzGm+uIA=="; }; }; "elegant-spinner-1.0.1" = { @@ -17475,15 +16251,6 @@ let sha512 = "B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ=="; }; }; - "elementtree-0.1.7" = { - name = "elementtree"; - packageName = "elementtree"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/elementtree/-/elementtree-0.1.7.tgz"; - sha512 = "wkgGT6kugeQk/P6VZ/f4T+4HB41BVgNBq5CDIZVbQ02nvTVqAiVTbskxxu3eA/X96lMlfYOwnLQpN2v5E1zDEg=="; - }; - }; "elliptic-6.6.1" = { name = "elliptic"; packageName = "elliptic"; @@ -17628,15 +16395,6 @@ let sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; }; }; - "engine.io-3.4.2" = { - name = "engine.io"; - packageName = "engine.io"; - version = "3.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/engine.io/-/engine.io-3.4.2.tgz"; - sha512 = "b4Q85dFkGw+TqgytGPrGgACRUhsdKc9S9ErRAXpPGy/CXKs4tYoHDkvIRdsseAF7NjfVwjRFIn6KTnbw7LwJZg=="; - }; - }; "engine.io-3.6.2" = { name = "engine.io"; packageName = "engine.io"; @@ -17646,15 +16404,6 @@ let sha512 = "C4JjGQZLY3kWlIDx0BQNKizbrfpb7NahxDztGdN5jrPK2ghmXiNDN+E/t0JzDeNRZxPVaszxEng42Pmj27X/0w=="; }; }; - "engine.io-6.4.2" = { - name = "engine.io"; - packageName = "engine.io"; - version = "6.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz"; - sha512 = "FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg=="; - }; - }; "engine.io-6.6.4" = { name = "engine.io"; packageName = "engine.io"; @@ -17664,15 +16413,6 @@ let sha512 = "ZCkIjSYNDyGn0R6ewHDtXgns/Zre/NT6Agvq1/WobF7JXgFff4SeDroKiCO3fNJreU9YG429Sc81o4w5ok/W5g=="; }; }; - "engine.io-client-3.4.4" = { - name = "engine.io-client"; - packageName = "engine.io-client"; - version = "3.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.4.4.tgz"; - sha512 = "iU4CRr38Fecj8HoZEnFtm2EiKGbYZcPn3cHxqNGl/tmdWRf60KhK+9vE0JeSjgnlS/0oynEfLgKbT9ALpim0sQ=="; - }; - }; "engine.io-client-3.5.4" = { name = "engine.io-client"; packageName = "engine.io-client"; @@ -17700,15 +16440,6 @@ let sha512 = "x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg=="; }; }; - "engine.io-parser-5.0.7" = { - name = "engine.io-parser"; - packageName = "engine.io-parser"; - version = "5.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.7.tgz"; - sha512 = "P+jDFbvK6lE3n1OL+q9KuzdOFWkkZ/cMV9gol/SbVfpyqfvrfrFTOFJ6fQm2VC3PZHlU3QPhVwmbsCnauHF2MQ=="; - }; - }; "engine.io-parser-5.2.3" = { name = "engine.io-parser"; packageName = "engine.io-parser"; @@ -17844,15 +16575,6 @@ let sha512 = "2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA=="; }; }; - "err-code-3.0.1" = { - name = "err-code"; - packageName = "err-code"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/err-code/-/err-code-3.0.1.tgz"; - sha512 = "GiaH0KJUewYok+eeY05IIgjtAe4Yltygk9Wqp1V5yVWLdhf0hYZchRjNIT9bb0mSwRcIusT3cx7PJUf3zEIfUA=="; - }; - }; "errno-0.1.8" = { name = "errno"; packageName = "errno"; @@ -17988,13 +16710,13 @@ let sha512 = "w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g=="; }; }; - "es-toolkit-1.32.0" = { + "es-toolkit-1.33.0" = { name = "es-toolkit"; packageName = "es-toolkit"; - version = "1.32.0"; + version = "1.33.0"; src = fetchurl { - url = "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.32.0.tgz"; - sha512 = "ZfSfHP1l6ubgW/B/FRtqb9bYdMvI6jizbOSfbwwJNcOQ1QE6TFsC3jpQkZ900uUPSR3t3SU5Ds7UWKnYz+uP8Q=="; + url = "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.33.0.tgz"; + sha512 = "X13Q/ZSc+vsO1q600bvNK4bxgXMkHcf//RxCmYDaRY5DAcT+eoXjY5hoAPGMdRnWQjvyLEcyauG3b6hz76LNqg=="; }; }; "es5-ext-0.10.64" = { @@ -18087,22 +16809,13 @@ let sha512 = "wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA=="; }; }; - "esbuild-0.24.2" = { + "esbuild-0.25.1" = { name = "esbuild"; packageName = "esbuild"; - version = "0.24.2"; + version = "0.25.1"; src = fetchurl { - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz"; - sha512 = "+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA=="; - }; - }; - "esbuild-0.25.0" = { - name = "esbuild"; - packageName = "esbuild"; - version = "0.25.0"; - src = fetchurl { - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz"; - sha512 = "BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw=="; + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.25.1.tgz"; + sha512 = "BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ=="; }; }; "esbuild-android-64-0.14.47" = { @@ -18249,6 +16962,15 @@ let sha512 = "QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw=="; }; }; + "esbuild-register-3.6.0" = { + name = "esbuild-register"; + packageName = "esbuild-register"; + version = "3.6.0"; + src = fetchurl { + url = "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.6.0.tgz"; + sha512 = "H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg=="; + }; + }; "esbuild-sunos-64-0.14.47" = { name = "esbuild-sunos-64"; packageName = "esbuild-sunos-64"; @@ -18384,15 +17106,6 @@ let sha512 = "/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="; }; }; - "escodegen-1.14.3" = { - name = "escodegen"; - packageName = "escodegen"; - version = "1.14.3"; - src = fetchurl { - url = "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz"; - sha512 = "qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw=="; - }; - }; "escodegen-2.1.0" = { name = "escodegen"; packageName = "escodegen"; @@ -18429,13 +17142,13 @@ let sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA=="; }; }; - "eslint-9.21.0" = { + "eslint-9.22.0" = { name = "eslint"; packageName = "eslint"; - version = "9.21.0"; + version = "9.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-9.21.0.tgz"; - sha512 = "KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg=="; + url = "https://registry.npmjs.org/eslint/-/eslint-9.22.0.tgz"; + sha512 = "9V/QURhsRN40xuHXWjV64yvrzMjcz7ZyNoF2jJFmy9j/SLk0u1OLSZgXi28MrXjymnjEGSR80WCdab3RGMDveQ=="; }; }; "eslint-formatter-pretty-5.0.0" = { @@ -18474,13 +17187,13 @@ let sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="; }; }; - "eslint-scope-8.2.0" = { + "eslint-scope-8.3.0" = { name = "eslint-scope"; packageName = "eslint-scope"; - version = "8.2.0"; + version = "8.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz"; - sha512 = "PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A=="; + url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz"; + sha512 = "pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ=="; }; }; "eslint-utils-2.1.0" = { @@ -18780,15 +17493,6 @@ let sha512 = "HLU3NDY6wARrLCEwyGKRBvuWYyvW6mHYv72SJJAH3iJN3a6eVUvkjFkcxah1bcTgGVBBrFdIopBJPhCQFMLyXw=="; }; }; - "eventemitter3-2.0.3" = { - name = "eventemitter3"; - packageName = "eventemitter3"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz"; - sha512 = "jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg=="; - }; - }; "eventemitter3-4.0.7" = { name = "eventemitter3"; packageName = "eventemitter3"; @@ -19014,24 +17718,6 @@ let sha512 = "gc3jJ0P3Bh1Zjkxe0ICSNmjhDvYWKiXfQIdDWuRPr8S4IZAZexzJHjrzNz56LsRKHTL0OiXQq602GfwZjZ8xPQ=="; }; }; - "express-4.17.1" = { - name = "express"; - packageName = "express"; - version = "4.17.1"; - src = fetchurl { - url = "https://registry.npmjs.org/express/-/express-4.17.1.tgz"; - sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g=="; - }; - }; - "express-4.17.3" = { - name = "express"; - packageName = "express"; - version = "4.17.3"; - src = fetchurl { - url = "https://registry.npmjs.org/express/-/express-4.17.3.tgz"; - sha512 = "yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg=="; - }; - }; "express-4.21.2" = { name = "express"; packageName = "express"; @@ -19329,15 +18015,6 @@ let sha512 = "Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw=="; }; }; - "fast-readable-async-iterator-2.0.0" = { - name = "fast-readable-async-iterator"; - packageName = "fast-readable-async-iterator"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fast-readable-async-iterator/-/fast-readable-async-iterator-2.0.0.tgz"; - sha512 = "8Sld+DuyWRIftl86ZguJxR2oXCBccOiJxrY/Rj9/7ZBynW8pYMWzIcqxFL1da+25jaWJZVa+HHX/8SsA21JdTA=="; - }; - }; "fast-safe-stringify-2.1.1" = { name = "fast-safe-stringify"; packageName = "fast-safe-stringify"; @@ -19347,15 +18024,6 @@ let sha512 = "W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA=="; }; }; - "fast-text-encoding-1.0.6" = { - name = "fast-text-encoding"; - packageName = "fast-text-encoding"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz"; - sha512 = "VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w=="; - }; - }; "fast-uri-3.0.6" = { name = "fast-uri"; packageName = "fast-uri"; @@ -19392,13 +18060,13 @@ let sha512 = "xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw=="; }; }; - "fast-xml-parser-4.5.3" = { + "fast-xml-parser-5.0.9" = { name = "fast-xml-parser"; packageName = "fast-xml-parser"; - version = "4.5.3"; + version = "5.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz"; - sha512 = "RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig=="; + url = "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.0.9.tgz"; + sha512 = "2mBwCiuW3ycKQQ6SOesSB8WeF+fIGb6I/GG5vU5/XEptwFFhp9PE8b9O7fbs2dpq9fXn4ULR3UsfydNUCntf5A=="; }; }; "fastest-levenshtein-1.0.16" = { @@ -19410,13 +18078,13 @@ let sha512 = "eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg=="; }; }; - "fastq-1.19.0" = { + "fastq-1.19.1" = { name = "fastq"; packageName = "fastq"; - version = "1.19.0"; + version = "1.19.1"; src = fetchurl { - url = "https://registry.npmjs.org/fastq/-/fastq-1.19.0.tgz"; - sha512 = "7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA=="; + url = "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz"; + sha512 = "GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ=="; }; }; "fault-1.0.4" = { @@ -19608,24 +18276,6 @@ let sha512 = "WhYlIPdaYeE6/Pow1Js4QwRQBVXRoRWCZxPLL/YrzUwsZHT8fZuBxP8zZHawLQ8HxwORumP+CoRVuUxkAJD0dw=="; }; }; - "file-type-12.3.1" = { - name = "file-type"; - packageName = "file-type"; - version = "12.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/file-type/-/file-type-12.3.1.tgz"; - sha512 = "FXxY5h6vSYMjrRal4YqbtfuoKD/oE0AMjJ7E5Hm+BdaQECcFVD03B41RAWYJ7wyuLr/wRnCtFo7y37l+nh+TAA=="; - }; - }; - "file-type-14.7.1" = { - name = "file-type"; - packageName = "file-type"; - version = "14.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/file-type/-/file-type-14.7.1.tgz"; - sha512 = "sXAMgFk67fQLcetXustxfKX+PZgHIUFn96Xld9uH8aXPdX3xOp0/jg9OdouVTvQrf7mrn+wAa4jN/y9fUOOiRA=="; - }; - }; "file-type-16.5.4" = { name = "file-type"; packageName = "file-type"; @@ -19698,15 +18348,6 @@ let sha512 = "lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ=="; }; }; - "filename-reserved-regex-3.0.0" = { - name = "filename-reserved-regex"; - packageName = "filename-reserved-regex"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-3.0.0.tgz"; - sha512 = "hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw=="; - }; - }; "filenamify-2.1.0" = { name = "filenamify"; packageName = "filenamify"; @@ -19716,15 +18357,6 @@ let sha512 = "ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA=="; }; }; - "filenamify-4.1.0" = { - name = "filenamify"; - packageName = "filenamify"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/filenamify/-/filenamify-4.1.0.tgz"; - sha512 = "KQV/uJDI9VQgN7sHH1Zbk6+42cD6mnQ2HONzkXUfPJ+K2FC8GZ1dpewbbHw0Sz8Tf5k3EVdHVayM4DoAwWlmtg=="; - }; - }; "filenamify-4.3.0" = { name = "filenamify"; packageName = "filenamify"; @@ -19887,13 +18519,13 @@ let sha512 = "YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g=="; }; }; - "find-up-simple-1.0.0" = { + "find-up-simple-1.0.1" = { name = "find-up-simple"; packageName = "find-up-simple"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz"; - sha512 = "q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw=="; + url = "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.1.tgz"; + sha512 = "afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ=="; }; }; "find-yarn-workspace-root2-1.2.16" = { @@ -20103,15 +18735,6 @@ let sha512 = "gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ=="; }; }; - "follow-redirects-1.5.10" = { - name = "follow-redirects"; - packageName = "follow-redirects"; - version = "1.5.10"; - src = fetchurl { - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz"; - sha512 = "0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ=="; - }; - }; "font-awesome-filetypes-2.1.0" = { name = "font-awesome-filetypes"; packageName = "font-awesome-filetypes"; @@ -20328,15 +18951,6 @@ let sha512 = "GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA=="; }; }; - "freelist-1.0.3" = { - name = "freelist"; - packageName = "freelist"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/freelist/-/freelist-1.0.3.tgz"; - sha512 = "Ji7fEnMdZDGbS5oXElpRJsn9jPvBR8h/037D3bzreNmS8809cISq/2D9//JbA/TaZmkkN8cmecXwmQHmM+NHhg=="; - }; - }; "fresh-0.5.2" = { name = "fresh"; packageName = "fresh"; @@ -20373,15 +18987,6 @@ let sha512 = "KhjJmZAs2eqfhCb6PdPx4RcZtheGTz86tpTC5JTvqBn/xda+Nb+0C7dCyjOSN7T76H6a56LvH0SVXQMchLXDRw=="; }; }; - "fs-chunk-store-4.1.0" = { - name = "fs-chunk-store"; - packageName = "fs-chunk-store"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-chunk-store/-/fs-chunk-store-4.1.0.tgz"; - sha512 = "8apaYPaENIVUjVGqjo+Yg5/Hv7qL2fijWV+XGMCs3MR07o9DZZVMpF7dclxdjYotSjLdUGVPhqaJn+eAx6NLYQ=="; - }; - }; "fs-constants-1.0.0" = { name = "fs-constants"; packageName = "fs-constants"; @@ -20436,15 +19041,6 @@ let sha512 = "0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw=="; }; }; - "fs-extra-11.1.1" = { - name = "fs-extra"; - packageName = "fs-extra"; - version = "11.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz"; - sha512 = "MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ=="; - }; - }; "fs-extra-11.2.0" = { name = "fs-extra"; packageName = "fs-extra"; @@ -20490,15 +19086,6 @@ let sha512 = "hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ=="; }; }; - "fs-minipass-1.2.7" = { - name = "fs-minipass"; - packageName = "fs-minipass"; - version = "1.2.7"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz"; - sha512 = "GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA=="; - }; - }; "fs-minipass-2.1.0" = { name = "fs-minipass"; packageName = "fs-minipass"; @@ -20553,15 +19140,6 @@ let sha512 = "OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="; }; }; - "fsa-chunk-store-1.3.0" = { - name = "fsa-chunk-store"; - packageName = "fsa-chunk-store"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fsa-chunk-store/-/fsa-chunk-store-1.3.0.tgz"; - sha512 = "0WCfuxqqSB6Tz/g7Ar/nwAxMoigXaIXuvfrnLIEFYIA9uc6w9eNaHuBGzU1X3lyM4cpLKCOTUmKAA/gCiTvzMQ=="; - }; - }; "fsevents-1.2.13" = { name = "fsevents"; packageName = "fsevents"; @@ -20571,15 +19149,6 @@ let sha512 = "oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw=="; }; }; - "fstream-1.0.12" = { - name = "fstream"; - packageName = "fstream"; - version = "1.0.12"; - src = fetchurl { - url = "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz"; - sha512 = "WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg=="; - }; - }; "function-bind-1.1.2" = { name = "function-bind"; packageName = "function-bind"; @@ -20625,6 +19194,15 @@ let sha512 = "vAcPiyomt1ioKAsAL2uxSABHJ4Ju/e4UeDM+g1OlR0vV4YhLGMNsdLNvZTpEDY4JCSt0E4hASCNM5t2ETtsbyg=="; }; }; + "fzf-0.5.2" = { + name = "fzf"; + packageName = "fzf"; + version = "0.5.2"; + src = fetchurl { + url = "https://registry.npmjs.org/fzf/-/fzf-0.5.2.tgz"; + sha512 = "Tt4kuxLXFKHy8KT40zwsUPUkg1CrsgY25FxA2U/j/0WgEDCk3ddc/zLTCCcbSHX9FcKtLuVaDGtGE/STWC+j3Q=="; + }; + }; "galactus-1.0.0" = { name = "galactus"; packageName = "galactus"; @@ -20841,15 +19419,6 @@ let sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="; }; }; - "get-port-4.2.0" = { - name = "get-port"; - packageName = "get-port"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/get-port/-/get-port-4.2.0.tgz"; - sha512 = "/b3jarXkH8KJoOMQc3uVGHASwGLPq3gSFJ7tgJm2diza+bydJPTGOibin2steecKeOylE8oY2JERlVWkAJO6yw=="; - }; - }; "get-proto-1.0.1" = { name = "get-proto"; packageName = "get-proto"; @@ -21516,24 +20085,6 @@ let sha512 = "ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="; }; }; - "got-11.5.2" = { - name = "got"; - packageName = "got"; - version = "11.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/got/-/got-11.5.2.tgz"; - sha512 = "yUhpEDLeuGiGJjRSzEq3kvt4zJtAcjKmhIiwNp/eUs75tRlXfWcHo5tcBaMQtnjHWC7nQYT5HkY/l0QOQTkVww=="; - }; - }; - "got-11.8.5" = { - name = "got"; - packageName = "got"; - version = "11.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/got/-/got-11.8.5.tgz"; - sha512 = "o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ=="; - }; - }; "got-11.8.6" = { name = "got"; packageName = "got"; @@ -21624,15 +20175,6 @@ let sha512 = "DEi+/JjXT84mmFYhSmv+SX14v+3Z7vuCIYAMwtdPCTXHMSLhWqSYqWAMXDUQZuV7yaJv2d84AYnkCFNooLKBsA=="; }; }; - "grapheme-splitter-1.0.4" = { - name = "grapheme-splitter"; - packageName = "grapheme-splitter"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz"; - sha512 = "bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="; - }; - }; "graphlib-2.1.8" = { name = "graphlib"; packageName = "graphlib"; @@ -22344,15 +20886,6 @@ let sha512 = "A91dYTeIB6NoXG+PxTQpCCDDnfHsW9kc06Lvpu1TEe9gnd6ZFeiBoRO9JvzEv6xK7EX97/dUE8g/vBMTqTS3CA=="; }; }; - "html-encoding-sniffer-1.0.2" = { - name = "html-encoding-sniffer"; - packageName = "html-encoding-sniffer"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz"; - sha512 = "71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw=="; - }; - }; "html-encoding-sniffer-2.0.1" = { name = "html-encoding-sniffer"; packageName = "html-encoding-sniffer"; @@ -22389,15 +20922,6 @@ let sha512 = "aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig=="; }; }; - "html-tags-1.2.0" = { - name = "html-tags"; - packageName = "html-tags"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/html-tags/-/html-tags-1.2.0.tgz"; - sha512 = "uVteDXUCs08M7QJx0eY6ue7qQztwIfknap81vAtNob2sdEPKa8PjPinx0vxbs2JONPamovZjMvKZWNW44/PBKg=="; - }; - }; "html-tags-3.3.1" = { name = "html-tags"; packageName = "html-tags"; @@ -22425,15 +20949,6 @@ let sha512 = "eVcrzgbR4tim7c7soKQKtxa/kQM4TzjnlU83rcZ9bHU6t31ehfV7SktN6McWgwPWg+JYMA/O3qpGxBvFq1z2Jg=="; }; }; - "htmlnano-2.1.1" = { - name = "htmlnano"; - packageName = "htmlnano"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/htmlnano/-/htmlnano-2.1.1.tgz"; - sha512 = "kAERyg/LuNZYmdqgCdYvugyLWNFAm8MWXpQMz1pLpetmCbFwoMxvkSoaAMlFrOC4OKTWI4KlZGT/RsNxg4ghOw=="; - }; - }; "htmlparser2-3.10.1" = { name = "htmlparser2"; packageName = "htmlparser2"; @@ -22461,33 +20976,6 @@ let sha512 = "gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A=="; }; }; - "htmlparser2-7.2.0" = { - name = "htmlparser2"; - packageName = "htmlparser2"; - version = "7.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz"; - sha512 = "H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog=="; - }; - }; - "htmlparser2-8.0.2" = { - name = "htmlparser2"; - packageName = "htmlparser2"; - version = "8.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz"; - sha512 = "GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA=="; - }; - }; - "htmlparser2-9.1.0" = { - name = "htmlparser2"; - packageName = "htmlparser2"; - version = "9.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.1.0.tgz"; - sha512 = "5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ=="; - }; - }; "http-auth-3.1.3" = { name = "http-auth"; packageName = "http-auth"; @@ -22533,15 +21021,6 @@ let sha512 = "lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A=="; }; }; - "http-errors-1.7.2" = { - name = "http-errors"; - packageName = "http-errors"; - version = "1.7.2"; - src = fetchurl { - url = "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz"; - sha512 = "uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg=="; - }; - }; "http-errors-1.7.3" = { name = "http-errors"; packageName = "http-errors"; @@ -22578,15 +21057,6 @@ let sha512 = "87E1I+2Wg4dxxz4rcxElo3dxO/w1ZtgL1yA0Sb6vH3qU16vRKq1NjWQv9SCY3ly2OQROcoxHZOUpmelS+k6wOw=="; }; }; - "http-parser-js-0.4.13" = { - name = "http-parser-js"; - packageName = "http-parser-js"; - version = "0.4.13"; - src = fetchurl { - url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.13.tgz"; - sha512 = "u8u5ZaG0Tr/VvHlucK2ufMuOp4/5bvwgneXle+y228K5rMbJOlVjThONcaAw3ikAy8b2OO9RfEucdMHFz3UWMA=="; - }; - }; "http-parser-js-0.5.9" = { name = "http-parser-js"; packageName = "http-parser-js"; @@ -22713,15 +21183,6 @@ let sha512 = "V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ=="; }; }; - "http_ece-1.1.0" = { - name = "http_ece"; - packageName = "http_ece"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/http_ece/-/http_ece-1.1.0.tgz"; - sha512 = "bptAfCDdPJxOs5zYSe7Y3lpr772s1G346R4Td5LgRUeCwIGpCGDUTJxRrhTNcAXbx37spge0kWEIH7QAYWNTlA=="; - }; - }; "https-browserify-1.0.0" = { name = "https-browserify"; packageName = "https-browserify"; @@ -22992,15 +21453,6 @@ let sha512 = "0tQyTytUaIUskpv5j5L5ZeQuEjYDl9QIekwDUisdqpAM81OZjBaEIriW7hoiRLaLNxj1fXE8e1yx5JaCGrrE7A=="; }; }; - "immediate-chunk-store-2.2.0" = { - name = "immediate-chunk-store"; - packageName = "immediate-chunk-store"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/immediate-chunk-store/-/immediate-chunk-store-2.2.0.tgz"; - sha512 = "1bHBna0hCa6arRXicu91IiL9RvvkbNYLVq+mzWdaLGZC3hXvX4doh8e1dLhMKez5siu63CYgO5NrGJbRX5lbPA=="; - }; - }; "immer-7.0.15" = { name = "immer"; packageName = "immer"; @@ -23163,15 +21615,6 @@ let sha512 = "oBIzs6EARNMzrLgVg20fK52H19WcRHBiukiiEkw9rnnI//8rinEBMLrYdwEfJ9d4K7bjV1L6nSGft6H/qzHNgQ=="; }; }; - "indexes-of-1.0.1" = { - name = "indexes-of"; - packageName = "indexes-of"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz"; - sha512 = "bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA=="; - }; - }; "indexof-0.0.1" = { name = "indexof"; packageName = "indexof"; @@ -23289,13 +21732,13 @@ let sha512 = "firNp1q3xxTzoItj/eOOSZQnYSlyrWks5llCTVX37nJ59K3eXbQ8PtzCguqo8YI19EELo5QxaKnJd4VxzhU8tg=="; }; }; - "ink-5.1.0" = { + "ink-5.2.0" = { name = "ink"; packageName = "ink"; - version = "5.1.0"; + version = "5.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/ink/-/ink-5.1.0.tgz"; - sha512 = "3vIO+CU4uSg167/dZrg4wHy75llUINYXxN4OsdaCkE40q4zyOTPwNc2VEpLnnWsIvIQeo6x6lilAhuaSt+rIsA=="; + url = "https://registry.npmjs.org/ink/-/ink-5.2.0.tgz"; + sha512 = "gHzSBBvsh/1ZYuGi+aKzU7RwnYIr6PSz56or9T90i4DDS99euhN7nYKOMR3OTev0dKIB6Zod3vSapYzqoilQcg=="; }; }; "ink-select-input-4.2.2" = { @@ -23388,13 +21831,13 @@ let sha512 = "bOetEz5+/WpgaW4D1NYOk1aD+JCqRjqu/FwRFgnIfiP7FC/zinsrfyO1vlS3nyH/R7S0IH3BIHBu4DBIDSqiGQ=="; }; }; - "inquirer-12.4.2" = { + "inquirer-12.4.3" = { name = "inquirer"; packageName = "inquirer"; - version = "12.4.2"; + version = "12.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-12.4.2.tgz"; - sha512 = "reyjHcwyK2LObXgTJH4T1Dpfhwu88LNPTZmg/KenmTsy3T8lN/kZT8Oo7UwwkB9q8+ss2qjjN7GV8oFAfyz9Xg=="; + url = "https://registry.npmjs.org/inquirer/-/inquirer-12.4.3.tgz"; + sha512 = "p9+jcDKhFHKTunvpffCk7I9eKt8+NPNWO8hMSSoLPv5vahP5Vhr78qWzDtA+6FBWQtFTuLFUWmxTyhC6G2Xz/Q=="; }; }; "inquirer-3.3.0" = { @@ -23622,13 +22065,13 @@ let sha512 = "xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ=="; }; }; - "ioredis-5.5.0" = { + "ioredis-5.6.0" = { name = "ioredis"; packageName = "ioredis"; - version = "5.5.0"; + version = "5.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/ioredis/-/ioredis-5.5.0.tgz"; - sha512 = "7CutT89g23FfSa8MDoIFs2GYYa0PaNiW/OrT+nRyjRXHDZd17HmIgy+reOQ/yhh72NznNjGuS8kbCAcA4Ro4mw=="; + url = "https://registry.npmjs.org/ioredis/-/ioredis-5.6.0.tgz"; + sha512 = "tBZlIIWbndeWBWCXWZiqtOF/yxf6yZX3tAlTJ7nfo5jhd6dctNxF7QnYlZLZ1a0o0pDoen7CgZqO+zjNaFbJAg=="; }; }; "iota-array-1.0.0" = { @@ -23649,15 +22092,6 @@ let sha512 = "cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ=="; }; }; - "ip-2.0.1" = { - name = "ip"; - packageName = "ip"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ip/-/ip-2.0.1.tgz"; - sha512 = "lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ=="; - }; - }; "ip-address-6.1.0" = { name = "ip-address"; packageName = "ip-address"; @@ -23694,24 +22128,6 @@ let sha512 = "Mb6kv78bTi4RNAIIWL8Bbre7hXOR2pNUi3j8FaQkLaitf/ZWxkq3/iIwXNYk2ACO3IMfdVdQrOkUtwZblO7uBA=="; }; }; - "ip-set-2.2.0" = { - name = "ip-set"; - packageName = "ip-set"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ip-set/-/ip-set-2.2.0.tgz"; - sha512 = "NmmY3BfY4pejh6GOqNcNWRsBNdR+I7pUVtXRgZlkZdcnLtlG4X6HNtu2FZoCGyvGRzyroP1fJ+SJZBZ65JJl/Q=="; - }; - }; - "ipaddr.js-0.1.3" = { - name = "ipaddr.js"; - packageName = "ipaddr.js"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-0.1.3.tgz"; - sha512 = "VNTGeNv62HOeCjovaJpfxDMWWy96inlYzMOgXF6HD0Fct1eOx0WgcGuTDCmW7qtwApcCuOlqAkAVVWkDe4l2lg=="; - }; - }; "ipaddr.js-1.9.1" = { name = "ipaddr.js"; packageName = "ipaddr.js"; @@ -23739,33 +22155,6 @@ let sha512 = "HtszKchBQTcqw1DC09uD7i7vvMayHGM1OCo6AHt5pkgZEyo99ClhHTMJdf+Ezc9ovuNNxcH89QfyclGthjZJOw=="; }; }; - "irc-framework-4.13.1" = { - name = "irc-framework"; - packageName = "irc-framework"; - version = "4.13.1"; - src = fetchurl { - url = "https://registry.npmjs.org/irc-framework/-/irc-framework-4.13.1.tgz"; - sha512 = "oUdNyc5CLwYjsp5AP479EgdMMTepwYK9kury7sWzMV6IeMyKc6fExk6tnhN/jTWpiDKsYtbPAb01wE7yVtLcsQ=="; - }; - }; - "irc-framework-4.4.0" = { - name = "irc-framework"; - packageName = "irc-framework"; - version = "4.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/irc-framework/-/irc-framework-4.4.0.tgz"; - sha512 = "81ZjeFg0J+OdwGO4S90f8/GpwNwIcP9KaCt0lvRqt1GueT7cKPX2v1yiRML3cJXofkz/MsVZqJCnAEThYYaTUQ=="; - }; - }; - "irc-framework-4.9.0" = { - name = "irc-framework"; - packageName = "irc-framework"; - version = "4.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/irc-framework/-/irc-framework-4.9.0.tgz"; - sha512 = "cUYMnnKwcNpXtEw/CXnEwUtglmaWZbfu0E/0iI7bENC3bASPNfcvcyTsFQcdknpnoFLyh5kXpQCjPBWKTbOQAQ=="; - }; - }; "irc-upd-0.11.0" = { name = "irc-upd"; packageName = "irc-upd"; @@ -23793,15 +22182,6 @@ let sha512 = "dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA=="; }; }; - "is-absolute-url-3.0.3" = { - name = "is-absolute-url"; - packageName = "is-absolute-url"; - version = "3.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz"; - sha512 = "opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q=="; - }; - }; "is-accessor-descriptor-1.0.1" = { name = "is-accessor-descriptor"; packageName = "is-accessor-descriptor"; @@ -24153,15 +22533,6 @@ let sha512 = "SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="; }; }; - "is-file-1.0.0" = { - name = "is-file"; - packageName = "is-file"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-file/-/is-file-1.0.0.tgz"; - sha512 = "ZGMuc+xA8mRnrXtmtf2l/EkIW2zaD2LSBWlaOVEF6yH4RTndHob65V4SwWWdtGKVthQfXPVKsXqw4TDUjbVxVQ=="; - }; - }; "is-finalizationregistry-1.1.1" = { name = "is-finalizationregistry"; packageName = "is-finalizationregistry"; @@ -24306,15 +22677,6 @@ let sha512 = "DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg=="; }; }; - "is-html-1.1.0" = { - name = "is-html"; - packageName = "is-html"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-html/-/is-html-1.1.0.tgz"; - sha512 = "eoGsQVAAyvLFRKnbt4jo7Il56agsH5I04pDymPoxRp/tnna5yiIpdNzvKPOy5G1Ff0zY/jfN2hClb7ju+sOrdA=="; - }; - }; "is-in-ci-1.0.0" = { name = "is-in-ci"; packageName = "is-in-ci"; @@ -24378,15 +22740,6 @@ let sha512 = "aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ=="; }; }; - "is-json-2.0.1" = { - name = "is-json"; - packageName = "is-json"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-json/-/is-json-2.0.1.tgz"; - sha512 = "6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA=="; - }; - }; "is-lambda-1.0.1" = { name = "is-lambda"; packageName = "is-lambda"; @@ -25125,15 +23478,6 @@ let sha512 = "WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg=="; }; }; - "isomorphic-textencoder-1.0.1" = { - name = "isomorphic-textencoder"; - packageName = "isomorphic-textencoder"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/isomorphic-textencoder/-/isomorphic-textencoder-1.0.1.tgz"; - sha512 = "676hESgHullDdHDsj469hr+7t3i/neBKU9J7q1T4RHaWwLAsaQnywC0D1dIUId0YZ+JtVrShzuBk1soo0+GVcQ=="; - }; - }; "isomorphic-ws-4.0.1" = { name = "isomorphic-ws"; packageName = "isomorphic-ws"; @@ -25287,13 +23631,13 @@ let sha512 = "otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA=="; }; }; - "join-async-iterator-1.1.1" = { - name = "join-async-iterator"; - packageName = "join-async-iterator"; - version = "1.1.1"; + "jose-5.9.6" = { + name = "jose"; + packageName = "jose"; + version = "5.9.6"; src = fetchurl { - url = "https://registry.npmjs.org/join-async-iterator/-/join-async-iterator-1.1.1.tgz"; - sha512 = "ATse+nuNeKZ9K1y27LKdvPe/GCe9R/u9dw9vI248e+vILeRK3IcJP4JUPAlSmKRCDK0cKhEwfmiw4Skqx7UnGQ=="; + url = "https://registry.npmjs.org/jose/-/jose-5.9.6.tgz"; + sha512 = "AMlnetc9+CV9asI19zHmrgS/WYsWUwCn2R7RzlbJWD7F9eWYUTGyBmU9o6PxngtLGOiDGPRu+Uc4fhKzbpteZQ=="; }; }; "jp-kernel-2.0.0" = { @@ -25422,15 +23766,6 @@ let sha512 = "4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A=="; }; }; - "jsdom-14.1.0" = { - name = "jsdom"; - packageName = "jsdom"; - version = "14.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsdom/-/jsdom-14.1.0.tgz"; - sha512 = "O901mfJSuTdwU2w3Sn+74T+RnDVP+FuV5fH8tcPWyqrseRAb0s5xOtPgCFiPOtLcyK7CLIJwPyD83ZqQWvA5ng=="; - }; - }; "jsdom-16.7.0" = { name = "jsdom"; packageName = "jsdom"; @@ -25485,22 +23820,22 @@ let sha512 = "qxiV/NMucgvHHupZJ36QACejcgZ3qY1FzjVHMOBmDHm+dISZ39p7dH7Hiq2ErMEwCDzdvQgR1OwCsUnrBH6oVQ=="; }; }; - "jsii-5.5.23" = { + "jsii-5.5.24" = { name = "jsii"; packageName = "jsii"; - version = "5.5.23"; + version = "5.5.24"; src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-5.5.23.tgz"; - sha512 = "HtAu1yGOVbl8dHHinkOOO3Ri01dDc/RrZ7IYlw/OSwhSgH0LB+x8tBWbhcacYE20mMIc/2GbADZOrcVj5byyBg=="; + url = "https://registry.npmjs.org/jsii/-/jsii-5.5.24.tgz"; + sha512 = "ZpMBjLRO0dZ7A3UX5wFrSqOwS7Yn8mZizbMUDBzhwJ6OficlZF4qZDUh/fxcO/LHaehvrim7nPvJfN6/1l8ivQ=="; }; }; - "jsii-5.7.6" = { + "jsii-5.8.0" = { name = "jsii"; packageName = "jsii"; - version = "5.7.6"; + version = "5.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-5.7.6.tgz"; - sha512 = "yh+LxT7tUTs30R5nbmI5hcjHaxqHdrYyd9jjR9uDWbkW4Aj8yvqX7U6eaOzQZPvolnBZ1pvgelIfO/KRqzSfog=="; + url = "https://registry.npmjs.org/jsii/-/jsii-5.8.0.tgz"; + sha512 = "aFcGir8GAQu5ZNzuvqLxLSvMeSSFsHeh1enoXt7Vp23lvQ7eBvUXMfxmsJ8exq7SuIAVhmx0dWjrJyekOCmAFA=="; }; }; "jsii-pacmak-1.102.0" = { @@ -25512,22 +23847,22 @@ let sha512 = "3/nqBYNH8n/5IWI0sBFBYl1yATokEDUDQtYFLjzk7oXNWpUJ23/encI78Cs55ZS6UXcfWN3xczGLqCWnsgEpnw=="; }; }; - "jsii-pacmak-1.108.0" = { + "jsii-pacmak-1.109.0" = { name = "jsii-pacmak"; packageName = "jsii-pacmak"; - version = "1.108.0"; + version = "1.109.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.108.0.tgz"; - sha512 = "qj/dGQkALH/YTMGUIyg+EgFD9+WXyrJPug8cwQureNyRK90gHLrTMo7oFQhhTlW2OVH6WAGlQO5FPLtkbujgmQ=="; + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.109.0.tgz"; + sha512 = "KiP7+ir1EXgMxFwnN+RH1tpt7EfkrWnMjsYVsYsi5HMXnBRcnsVi5F6BSgDuDxqEG54dQg4aQ2b4Hp795GcDig=="; }; }; - "jsii-reflect-1.108.0" = { + "jsii-reflect-1.109.0" = { name = "jsii-reflect"; packageName = "jsii-reflect"; - version = "1.108.0"; + version = "1.109.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.108.0.tgz"; - sha512 = "szlgEA2zFJhtSId2/GYHqosofkXgmkdo+baMMbv0HWt1UuwUK+pI+nYP9WX7mkNoNgIS1tVLre6AZZAZ7RmOfg=="; + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.109.0.tgz"; + sha512 = "Opjz+mGk2m8qu8dumTkFspUhZFgaANlMyq8pacyzVlB8OVmjOTcc5VhfQtywVkv0R3CvaTR3AzHRK57QYrzz6Q=="; }; }; "jsii-rosetta-5.4.30" = { @@ -25539,13 +23874,13 @@ let sha512 = "DyJlVO1L7p37poEtja3ktr3zGv15kvnkVrJ+uPuv5+QOvSs2XTTzi2qsgt/l7N/6yXelQ2LDvSDzXfEY08UZjg=="; }; }; - "jsii-rosetta-5.7.6" = { + "jsii-rosetta-5.8.0" = { name = "jsii-rosetta"; packageName = "jsii-rosetta"; - version = "5.7.6"; + version = "5.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.7.6.tgz"; - sha512 = "yimRfvgFM4+ZctGBWadQe3Yplxpp21iSWZzYGncMCV+oaZ1IlTrq4AxGjcoij+bQFdp97hAXoDg66pFmvWOkBg=="; + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.8.0.tgz"; + sha512 = "iRqQoGDONPfL6Ga8VnctreQsrYzfWvsFSocKcOctiiHJ+5mbFwWreg/XLMFTz8N3VlblzUbNRnCXfB4XE+3XOg=="; }; }; "jsii-srcmak-0.1.1236" = { @@ -25863,15 +24198,6 @@ let sha512 = "POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg=="; }; }; - "jsonpath-plus-10.2.0" = { - name = "jsonpath-plus"; - packageName = "jsonpath-plus"; - version = "10.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonpath-plus/-/jsonpath-plus-10.2.0.tgz"; - sha512 = "T9V+8iNYKFL2n2rF+w02LBOT2JjDnTjioaNFrxRy0Bv1y/hNsqR/EBK7Ojy2ythRHwmz2cRIls+9JitQGZC/sw=="; - }; - }; "jsonpath-plus-10.3.0" = { name = "jsonpath-plus"; packageName = "jsonpath-plus"; @@ -26025,15 +24351,6 @@ let sha512 = "Xuye90xBBDJJbvNSuy3z/Yl8ceVX02/sopqGUEwJkMgRw+//TQXx0/Hbgp60GsoVfZcCBllQXXp6AWe2INu8pw=="; }; }; - "k-bucket-5.1.0" = { - name = "k-bucket"; - packageName = "k-bucket"; - version = "5.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/k-bucket/-/k-bucket-5.1.0.tgz"; - sha512 = "Fac7iINEovXIWU20GPnOMLUbjctiS+cnmyjC4zAUgvs3XPf1vo9akfCHkigftSic/jiKqKl+KA3a/vFcJbHyCg=="; - }; - }; "k-rpc-3.7.0" = { name = "k-rpc"; packageName = "k-rpc"; @@ -26043,15 +24360,6 @@ let sha512 = "XFL8PatIToQ/qhSSAq9FSK73wk4fX4DcHqjnkvSCrWC59PV02Oj1KeYa3KnREAXgA1DlCSzcKjk7M8usnT/dUw=="; }; }; - "k-rpc-5.1.0" = { - name = "k-rpc"; - packageName = "k-rpc"; - version = "5.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/k-rpc/-/k-rpc-5.1.0.tgz"; - sha512 = "FGc+n70Hcjoa/X2JTwP+jMIOpBz+pkRffHnSl9yrYiwUxg3FIgD50+u1ePfJUOnRCnx6pbjmVk5aAeB1wIijuQ=="; - }; - }; "k-rpc-socket-1.11.1" = { name = "k-rpc-socket"; packageName = "k-rpc-socket"; @@ -26259,15 +24567,6 @@ let sha512 = "Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw=="; }; }; - "last-one-wins-1.0.4" = { - name = "last-one-wins"; - packageName = "last-one-wins"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/last-one-wins/-/last-one-wins-1.0.4.tgz"; - sha512 = "t+KLJFkHPQk8lfN6WBOiGkiUXoub+gnb2XTYI2P3aiISL+94xgZ1vgz1SXN/N4hthuOoLXarXfBZPUruyjQtfA=="; - }; - }; "last-run-2.0.0" = { name = "last-run"; packageName = "last-run"; @@ -26367,42 +24666,6 @@ let sha512 = "YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw=="; }; }; - "ldap-filter-0.3.3" = { - name = "ldap-filter"; - packageName = "ldap-filter"; - version = "0.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ldap-filter/-/ldap-filter-0.3.3.tgz"; - sha512 = "/tFkx5WIn4HuO+6w9lsfxq4FN3O+fDZeO9Mek8dCD8rTUpqzRa766BOBO7BcGkn3X86m5+cBm1/2S/Shzz7gMg=="; - }; - }; - "ldapjs-2.0.0-pre.2" = { - name = "ldapjs"; - packageName = "ldapjs"; - version = "2.0.0-pre.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ldapjs/-/ldapjs-2.0.0-pre.2.tgz"; - sha512 = "KZnKiFXu5eEU4jKWoz29yUWh6fS8pIBuxFq9njji8LfHu3T4i05j6lsnGyDLayhJDw+rtKpEgmS3/As7CXg7WQ=="; - }; - }; - "ldapjs-2.1.1" = { - name = "ldapjs"; - packageName = "ldapjs"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ldapjs/-/ldapjs-2.1.1.tgz"; - sha512 = "XzF2BEGeM/nenYDAJvkDMYovZ07fIGalrYD+suprSqUWPCWpoa+a4vWl5g8o/En85m6NHWBpirDFNClWLAd77w=="; - }; - }; - "ldapjs-2.3.1" = { - name = "ldapjs"; - packageName = "ldapjs"; - version = "2.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ldapjs/-/ldapjs-2.3.1.tgz"; - sha512 = "kf0tHHLrpwKaBAQOhYHXgdeh2PkFuCCxWgLb1MRn67ZQVo787D2pij3mmHVZx193GIdM8xcfi8HF6AIYYnj0fQ=="; - }; - }; "lead-4.0.0" = { name = "lead"; packageName = "lead"; @@ -26484,15 +24747,6 @@ let sha512 = "yRHaiQDizWSzoXk3APcA71eOI/UuhEkNN9DiW2Tt44mhYzX4joFoCZlxsSOF7RyeLlfqzFLQI1ngFq3ggMPhOw=="; }; }; - "lightningcss-1.29.1" = { - name = "lightningcss"; - packageName = "lightningcss"; - version = "1.29.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.29.1.tgz"; - sha512 = "FmGoeD4S05ewj+AkhTY+D+myDvXI6eL27FjHIjoyUkO/uw7WZD1fBVs0QxeYWa7E17CUHJaYX/RUGISCtcrG4Q=="; - }; - }; "lilconfig-3.1.3" = { name = "lilconfig"; packageName = "lilconfig"; @@ -26556,24 +24810,6 @@ let sha512 = "GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw=="; }; }; - "linkify-it-3.0.2" = { - name = "linkify-it"; - packageName = "linkify-it"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.2.tgz"; - sha512 = "gDBO4aHNZS6coiZCKVhSNh43F9ioIL4JwRjLZPkoLIY4yZFwg264Y5lu2x6rb1Js42Gh6Yqm2f6L2AJcnkzinQ=="; - }; - }; - "linkify-it-3.0.3" = { - name = "linkify-it"; - packageName = "linkify-it"; - version = "3.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz"; - sha512 = "ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ=="; - }; - }; "linkify-it-4.0.1" = { name = "linkify-it"; packageName = "linkify-it"; @@ -26664,15 +24900,6 @@ let sha512 = "iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw=="; }; }; - "lmdb-2.8.5" = { - name = "lmdb"; - packageName = "lmdb"; - version = "2.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/lmdb/-/lmdb-2.8.5.tgz"; - sha512 = "9bMdFfc80S+vSldBmG3HOuLVHnxRdNTlpzR6QDnzqCQtCzGUEAGTzBKYMeIM+I/sU4oZfgbcbS7X7F65/z/oxQ=="; - }; - }; "load-bmfont-1.4.2" = { name = "load-bmfont"; packageName = "load-bmfont"; @@ -26682,15 +24909,6 @@ let sha512 = "qElWkmjW9Oq1F9EI5Gt7aD9zcdHb9spJCW1L/dmPf7KzCCEJxq8nhHz5eCgI9aMf7vrG/wyaCqdsI+Iy9ZTlog=="; }; }; - "load-ip-set-3.0.1" = { - name = "load-ip-set"; - packageName = "load-ip-set"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/load-ip-set/-/load-ip-set-3.0.1.tgz"; - sha512 = "ZFZt1g4Exq01SFtKjffqau+L4Qibt+51utymHHiWo8Iu/W7LYSqE7fiZ/iAZ6dIqbmeU6ICSIK02IizSScBkLQ=="; - }; - }; "load-json-file-1.1.0" = { name = "load-json-file"; packageName = "load-json-file"; @@ -26844,24 +25062,6 @@ let sha512 = "9mDDwqVIma6OZX79ZlDACZl8sBm0TEnkf99zV3iMA4GzkIT/9hiqP5mY0HoT1iNLCrKc/R1HByV+yJfRWVJryQ=="; }; }; - "lodash-4.17.15" = { - name = "lodash"; - packageName = "lodash"; - version = "4.17.15"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz"; - sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; - }; - }; - "lodash-4.17.20" = { - name = "lodash"; - packageName = "lodash"; - version = "4.17.20"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz"; - sha512 = "PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="; - }; - }; "lodash-4.17.21" = { name = "lodash"; packageName = "lodash"; @@ -27006,24 +25206,6 @@ let sha512 = "hFuH8TY+Yji7Eja3mGiuAxBqLagejScbG8GbG0j6o9vzn0YL14My+ktnqtZgFTosKymC9/44wP6s7xyuLfnClw=="; }; }; - "lodash.assignin-4.2.0" = { - name = "lodash.assignin"; - packageName = "lodash.assignin"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz"; - sha512 = "yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg=="; - }; - }; - "lodash.bind-4.2.1" = { - name = "lodash.bind"; - packageName = "lodash.bind"; - version = "4.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz"; - sha512 = "lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA=="; - }; - }; "lodash.camelcase-4.3.0" = { name = "lodash.camelcase"; packageName = "lodash.camelcase"; @@ -27096,15 +25278,6 @@ let sha512 = "TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw=="; }; }; - "lodash.filter-4.6.0" = { - name = "lodash.filter"; - packageName = "lodash.filter"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz"; - sha512 = "pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ=="; - }; - }; "lodash.flatten-4.4.0" = { name = "lodash.flatten"; packageName = "lodash.flatten"; @@ -27114,15 +25287,6 @@ let sha512 = "C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g=="; }; }; - "lodash.foreach-4.5.0" = { - name = "lodash.foreach"; - packageName = "lodash.foreach"; - version = "4.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz"; - sha512 = "aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ=="; - }; - }; "lodash.get-4.4.2" = { name = "lodash.get"; packageName = "lodash.get"; @@ -27294,15 +25458,6 @@ let sha512 = "CuBsapFjcubOGMn3VD+24HOAPxM79tH+V6ivJL3CHYjtrawauDJHUk//Yew9Hvc6e9rbCrURGk8z6PC+8WJBfQ=="; }; }; - "lodash.map-4.6.0" = { - name = "lodash.map"; - packageName = "lodash.map"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz"; - sha512 = "worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q=="; - }; - }; "lodash.memoize-3.0.4" = { name = "lodash.memoize"; packageName = "lodash.memoize"; @@ -27312,15 +25467,6 @@ let sha512 = "eDn9kqrAmVUC1wmZvlQ6Uhde44n+tXpqPrN8olQJbttgh0oKclk+SF54P47VEGE9CEiMeRwAP8BaM7UHvBkz2A=="; }; }; - "lodash.memoize-4.1.2" = { - name = "lodash.memoize"; - packageName = "lodash.memoize"; - version = "4.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz"; - sha512 = "t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag=="; - }; - }; "lodash.merge-4.6.2" = { name = "lodash.merge"; packageName = "lodash.merge"; @@ -27339,15 +25485,6 @@ let sha512 = "GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ=="; }; }; - "lodash.omit-4.5.0" = { - name = "lodash.omit"; - packageName = "lodash.omit"; - version = "4.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz"; - sha512 = "XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg=="; - }; - }; "lodash.omitby-4.6.0" = { name = "lodash.omitby"; packageName = "lodash.omitby"; @@ -27375,33 +25512,6 @@ let sha512 = "sOQs2aqGpbl27tmCS1QNZA09Uqp01ZzWfDUoD+xzTii0E7dSQfRKcRetFwa+uXaxaqL+TKm7CgD2JdKP7aZBSw=="; }; }; - "lodash.pick-4.4.0" = { - name = "lodash.pick"; - packageName = "lodash.pick"; - version = "4.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz"; - sha512 = "hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q=="; - }; - }; - "lodash.reduce-4.6.0" = { - name = "lodash.reduce"; - packageName = "lodash.reduce"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz"; - sha512 = "6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw=="; - }; - }; - "lodash.reject-4.6.0" = { - name = "lodash.reject"; - packageName = "lodash.reject"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz"; - sha512 = "qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ=="; - }; - }; "lodash.repeat-4.1.0" = { name = "lodash.repeat"; packageName = "lodash.repeat"; @@ -27429,24 +25539,6 @@ let sha512 = "QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw=="; }; }; - "lodash.some-4.6.0" = { - name = "lodash.some"; - packageName = "lodash.some"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz"; - sha512 = "j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ=="; - }; - }; - "lodash.sortby-4.7.0" = { - name = "lodash.sortby"; - packageName = "lodash.sortby"; - version = "4.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz"; - sha512 = "HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA=="; - }; - }; "lodash.startcase-4.4.0" = { name = "lodash.startcase"; packageName = "lodash.startcase"; @@ -27852,15 +25944,6 @@ let sha512 = "JGRd3IHM64MPsGVw1Mqbz2Y2HDIePqi/MLfPtdrkHQwvvJnSrS9b6gM3KS9PFR5xJnufXJczHHZSmGqfuII1ew=="; }; }; - "lru-3.1.0" = { - name = "lru"; - packageName = "lru"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lru/-/lru-3.1.0.tgz"; - sha512 = "5OUtoiVIGU4VXBOshidmtOsvBIvcQR6FD/RzWSvaeHyxCGB+PCUCu+52lqMfdc0h/2CLvHhZS4TwUmMQrrMbBQ=="; - }; - }; "lru-cache-10.4.3" = { name = "lru-cache"; packageName = "lru-cache"; @@ -27933,15 +26016,6 @@ let sha512 = "jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA=="; }; }; - "lt_donthave-2.0.4" = { - name = "lt_donthave"; - packageName = "lt_donthave"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/lt_donthave/-/lt_donthave-2.0.4.tgz"; - sha512 = "VIKjdxflF8+6vFb3t8LQ4czRYvw6OyxPLDr5YV5qOieu4qwl0wX2DA18WyaHJjBKyKSHXvdo1JcrrUag5MmMiA=="; - }; - }; "ltx-3.0.0" = { name = "ltx"; packageName = "ltx"; @@ -28042,24 +26116,6 @@ let sha512 = "ZpqciThlbvE6KkyT5oxAup/6CwjePw1hdtR8NU5+vq2hn9Sp5b7w3bRiJRvo9fMHUj2dWSuVCdkqt9p4ed1V9Q=="; }; }; - "magnet-uri-6.2.0" = { - name = "magnet-uri"; - packageName = "magnet-uri"; - version = "6.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-6.2.0.tgz"; - sha512 = "O9AgdDwT771fnUj0giPYu/rACpz8173y8UXCSOdLITjOVfBenZ9H9q3FqQmveK+ORUMuD+BkKNSZP8C3+IMAKQ=="; - }; - }; - "magnet-uri-7.0.7" = { - name = "magnet-uri"; - packageName = "magnet-uri"; - version = "7.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-7.0.7.tgz"; - sha512 = "z/+dB2NQsXaDuxVBjoPLpZT8ePaacUmoontoFheRBl++nALHYs4qV9MmhTur9e4SaMbkCR/uPX43UMzEOoeyaw=="; - }; - }; "make-dir-1.3.0" = { name = "make-dir"; packageName = "make-dir"; @@ -28825,15 +26881,6 @@ let sha512 = "F2t4YIv9XQUBHt6AOJ0y7lSmP1+cY7Fm1DRh9GClTGzKST7UWLMx6ly9WZdLH/G/ppM5RL4MlQfRT71ri9t19A=="; }; }; - "memory-chunk-store-1.3.5" = { - name = "memory-chunk-store"; - packageName = "memory-chunk-store"; - version = "1.3.5"; - src = fetchurl { - url = "https://registry.npmjs.org/memory-chunk-store/-/memory-chunk-store-1.3.5.tgz"; - sha512 = "E1Xc1U4ifk/FkC2ZsWhCaW1xg9HbE/OBmQTLe2Tr9c27YPSLbW7kw1cnb3kQWD1rDtErFJHa7mB9EVrs7aTx9g=="; - }; - }; "memory-fs-0.3.0" = { name = "memory-fs"; packageName = "memory-fs"; @@ -28897,15 +26944,6 @@ let sha512 = "+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ=="; }; }; - "merge-descriptors-1.0.1" = { - name = "merge-descriptors"; - packageName = "merge-descriptors"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; - sha512 = "cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w=="; - }; - }; "merge-descriptors-1.0.3" = { name = "merge-descriptors"; packageName = "merge-descriptors"; @@ -29005,13 +27043,13 @@ let sha512 = "uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA=="; }; }; - "micromark-4.0.1" = { + "micromark-4.0.2" = { name = "micromark"; packageName = "micromark"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/micromark/-/micromark-4.0.1.tgz"; - sha512 = "eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw=="; + url = "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz"; + sha512 = "zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA=="; }; }; "micromark-core-commonmark-1.1.0" = { @@ -29023,13 +27061,13 @@ let sha512 = "BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw=="; }; }; - "micromark-core-commonmark-2.0.2" = { + "micromark-core-commonmark-2.0.3" = { name = "micromark-core-commonmark"; packageName = "micromark-core-commonmark"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.2.tgz"; - sha512 = "FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w=="; + url = "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz"; + sha512 = "RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg=="; }; }; "micromark-extension-frontmatter-1.1.1" = { @@ -29464,13 +27502,13 @@ let sha512 = "kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A=="; }; }; - "micromark-util-subtokenize-2.0.4" = { + "micromark-util-subtokenize-2.1.0" = { name = "micromark-util-subtokenize"; packageName = "micromark-util-subtokenize"; - version = "2.0.4"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.4.tgz"; - sha512 = "N6hXjrin2GTJDe3MVjf5FuXpm12PGm80BrUAeub9XFXca8JZbP+oIwY4LJSVwFUCL1IPm/WwSVUN7goFHmSGGQ=="; + url = "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz"; + sha512 = "XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA=="; }; }; "micromark-util-symbol-1.1.0" = { @@ -29500,13 +27538,13 @@ let sha512 = "ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg=="; }; }; - "micromark-util-types-2.0.1" = { + "micromark-util-types-2.0.2" = { name = "micromark-util-types"; packageName = "micromark-util-types"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.1.tgz"; - sha512 = "534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ=="; + url = "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz"; + sha512 = "Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA=="; }; }; "micromatch-2.3.11" = { @@ -29536,15 +27574,6 @@ let sha512 = "PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA=="; }; }; - "middleware-handler-0.2.0" = { - name = "middleware-handler"; - packageName = "middleware-handler"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/middleware-handler/-/middleware-handler-0.2.0.tgz"; - sha512 = "Qz4B0yWndSokapr3Kl7fpMRysS0DaBlOuATrExFuZbr+oXZ3rsAPufdLe8mUJXiG5A4aJGW6GfKS4PDfQwu7Mg=="; - }; - }; "miller-rabin-4.0.1" = { name = "miller-rabin"; packageName = "miller-rabin"; @@ -29590,15 +27619,6 @@ let sha512 = "USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg=="; }; }; - "mime-3.0.0" = { - name = "mime"; - packageName = "mime"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz"; - sha512 = "jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A=="; - }; - }; "mime-4.0.4" = { name = "mime"; packageName = "mime"; @@ -29617,33 +27637,6 @@ let sha512 = "BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="; }; }; - "mime-db-1.40.0" = { - name = "mime-db"; - packageName = "mime-db"; - version = "1.40.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz"; - sha512 = "jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA=="; - }; - }; - "mime-db-1.44.0" = { - name = "mime-db"; - packageName = "mime-db"; - version = "1.44.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz"; - sha512 = "/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="; - }; - }; - "mime-db-1.51.0" = { - name = "mime-db"; - packageName = "mime-db"; - version = "1.51.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz"; - sha512 = "5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g=="; - }; - }; "mime-db-1.52.0" = { name = "mime-db"; packageName = "mime-db"; @@ -29671,33 +27664,6 @@ let sha512 = "lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ=="; }; }; - "mime-types-2.1.24" = { - name = "mime-types"; - packageName = "mime-types"; - version = "2.1.24"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz"; - sha512 = "WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ=="; - }; - }; - "mime-types-2.1.27" = { - name = "mime-types"; - packageName = "mime-types"; - version = "2.1.27"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz"; - sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w=="; - }; - }; - "mime-types-2.1.34" = { - name = "mime-types"; - packageName = "mime-types"; - version = "2.1.34"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz"; - sha512 = "6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A=="; - }; - }; "mime-types-2.1.35" = { name = "mime-types"; packageName = "mime-types"; @@ -29950,15 +27916,6 @@ let sha512 = "Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A=="; }; }; - "minipass-2.9.0" = { - name = "minipass"; - packageName = "minipass"; - version = "2.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz"; - sha512 = "wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg=="; - }; - }; "minipass-3.3.6" = { name = "minipass"; packageName = "minipass"; @@ -30022,13 +27979,13 @@ let sha512 = "LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA=="; }; }; - "minipass-fetch-4.0.0" = { + "minipass-fetch-4.0.1" = { name = "minipass-fetch"; packageName = "minipass-fetch"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-4.0.0.tgz"; - sha512 = "2v6aXUXwLP1Epd/gc32HAMIWoczx+fZwEPRHm/VwtrJzRGwR1qGZXEYV3Zp8ZjjbwaZhMrM6uHV4KVkk+XCc2w=="; + url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-4.0.1.tgz"; + sha512 = "j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ=="; }; }; "minipass-flush-1.0.5" = { @@ -30058,15 +28015,6 @@ let sha512 = "MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g=="; }; }; - "minizlib-1.3.3" = { - name = "minizlib"; - packageName = "minizlib"; - version = "1.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz"; - sha512 = "6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q=="; - }; - }; "minizlib-2.1.2" = { name = "minizlib"; packageName = "minizlib"; @@ -30472,13 +28420,13 @@ let sha512 = "2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="; }; }; - "nan-2.22.1" = { + "nan-2.22.2" = { name = "nan"; packageName = "nan"; - version = "2.22.1"; + version = "2.22.2"; src = fetchurl { - url = "https://registry.npmjs.org/nan/-/nan-2.22.1.tgz"; - sha512 = "pfRR4ZcNTSm2ZFHaztuvbICf+hyiG6ecA06SfAxoPmuHjvMu0KUIae7Y8GyVkbBqeEIidsmXeYooWIX9+qjfRQ=="; + url = "https://registry.npmjs.org/nan/-/nan-2.22.2.tgz"; + sha512 = "DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ=="; }; }; "nanoid-3.3.7" = { @@ -30490,13 +28438,13 @@ let sha512 = "eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g=="; }; }; - "nanoid-3.3.8" = { + "nanoid-3.3.9" = { name = "nanoid"; packageName = "nanoid"; - version = "3.3.8"; + version = "3.3.9"; src = fetchurl { - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz"; - sha512 = "WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w=="; + url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.9.tgz"; + sha512 = "SppoicMGpZvbF1l3z4x7No3OlIjP7QJvC9XR7AhZr1kL133KHnKPztkKDc+Ir4aJ/1VhTySrtKhrsycmrMQfvg=="; }; }; "nanomatch-1.2.13" = { @@ -30607,15 +28555,6 @@ let sha512 = "ip7BJdyb5m+86ZbSb4y10FCCW9g35+U8bDRrZlAfCI6m4dKwEsQ5M52grcDcVK4Vm/vnPlDLywkyo3GliEkb5A=="; }; }; - "needle-2.9.1" = { - name = "needle"; - packageName = "needle"; - version = "2.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz"; - sha512 = "6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ=="; - }; - }; "negotiator-0.5.3" = { name = "negotiator"; packageName = "negotiator"; @@ -30869,15 +28808,6 @@ let sha512 = "ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg=="; }; }; - "node-addon-api-2.0.0" = { - name = "node-addon-api"; - packageName = "node-addon-api"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.0.tgz"; - sha512 = "ASCL5U13as7HhOExbT6OlWJJUV/lLzL2voOSP1UVehpRD8FbSrSDjfScK/KwAvVTI5AS6r4VwbOMlIqtvRidnA=="; - }; - }; "node-addon-api-4.3.0" = { name = "node-addon-api"; packageName = "node-addon-api"; @@ -30887,24 +28817,6 @@ let sha512 = "73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ=="; }; }; - "node-addon-api-6.1.0" = { - name = "node-addon-api"; - packageName = "node-addon-api"; - version = "6.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz"; - sha512 = "+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA=="; - }; - }; - "node-addon-api-7.1.1" = { - name = "node-addon-api"; - packageName = "node-addon-api"; - version = "7.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz"; - sha512 = "5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ=="; - }; - }; "node-api-version-0.2.0" = { name = "node-api-version"; packageName = "node-api-version"; @@ -30932,15 +28844,6 @@ let sha512 = "h66cRVEWnPQFxh5Y1hk9MNs6jvlB26CjT727ZztkIkPN+eyRI2c9powQrBJ9pty2Kj7IBySDnYHig7QElmU4Pg=="; }; }; - "node-datachannel-0.12.0" = { - name = "node-datachannel"; - packageName = "node-datachannel"; - version = "0.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-datachannel/-/node-datachannel-0.12.0.tgz"; - sha512 = "pZ9FsVZpHdUKqyWynuCc9IBLkZPJMpDzpNk4YNPCizbIXHYifpYeWqSF35REHGIWi9JMCf11QzapsyQGo/Y4Ig=="; - }; - }; "node-domexception-1.0.0" = { name = "node-domexception"; packageName = "node-domexception"; @@ -30950,15 +28853,6 @@ let sha512 = "/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ=="; }; }; - "node-domexception-2.0.1" = { - name = "node-domexception"; - packageName = "node-domexception"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/node-domexception/-/node-domexception-2.0.1.tgz"; - sha512 = "M85rnSC7WQ7wnfQTARPT4LrK7nwCHLdDFOCcItZMhTQjyCebJH8GciKqYJNgaOFZs9nFmTmd/VMyi3OW5jA47w=="; - }; - }; "node-emoji-1.11.0" = { name = "node-emoji"; packageName = "node-emoji"; @@ -31031,24 +28925,6 @@ let sha512 = "ofRW94Ab0T4AOh5Fk8t0h8OBWrmjb0SSB20xh1H8YnPV9EJ+f5AMoYSUQ2zgJ4Iq2HAK0I2l5/Nequ8YzFS3Hg=="; }; }; - "node-forge-0.9.1" = { - name = "node-forge"; - packageName = "node-forge"; - version = "0.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/node-forge/-/node-forge-0.9.1.tgz"; - sha512 = "G6RlQt5Sb4GMBzXvhfkeFmbqR6MzhtnT7VTHuLadjkii3rdYHNdw0m8zA4BTxVIh68FicCQ2NSUANpsqkr9jvQ=="; - }; - }; - "node-forge-1.3.0" = { - name = "node-forge"; - packageName = "node-forge"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-forge/-/node-forge-1.3.0.tgz"; - sha512 = "08ARB91bUi6zNKzVmaj3QO7cr397uiDT2nJ63cHjyNtCTWIgvS47j3eT0WfzUwS9+6Z5YshRaoasFkXCKrIYbA=="; - }; - }; "node-gyp-11.1.0" = { name = "node-gyp"; packageName = "node-gyp"; @@ -31058,15 +28934,6 @@ let sha512 = "/+7TuHKnBpnMvUQnsYEb0JOozDZqarQbfNuSGLXIjhStMT0fbw7IdSqWgopOP5xhRZE+lsbIvAHcekddruPZgQ=="; }; }; - "node-gyp-3.8.0" = { - name = "node-gyp"; - packageName = "node-gyp"; - version = "3.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz"; - sha512 = "3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA=="; - }; - }; "node-gyp-8.4.1" = { name = "node-gyp"; packageName = "node-gyp"; @@ -31094,15 +28961,6 @@ let sha512 = "k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA=="; }; }; - "node-gyp-build-optional-packages-5.1.1" = { - name = "node-gyp-build-optional-packages"; - packageName = "node-gyp-build-optional-packages"; - version = "5.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.1.1.tgz"; - sha512 = "+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw=="; - }; - }; "node-notifier-10.0.1" = { name = "node-notifier"; packageName = "node-notifier"; @@ -31130,15 +28988,6 @@ let sha512 = "CaFv+kSZtsc+VeDRldK1yR47k1vPLBpzYB9re2z7LIwITxwBtljMq3s8VQnnr+x3E8pQfHbc5r2IyJsBLJhtXg=="; }; }; - "node-pre-gyp-0.11.0" = { - name = "node-pre-gyp"; - packageName = "node-pre-gyp"; - version = "0.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz"; - sha512 = "TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q=="; - }; - }; "node-readfiles-0.2.0" = { name = "node-readfiles"; packageName = "node-readfiles"; @@ -31175,15 +29024,6 @@ let sha512 = "OXdegQq03OmXEjt2hZP33W2YPs/E5BcFQks46+G2gAxs4gHOIVD1u7EqlYLYSKsaIpyKCK9Gbk0ta1/gjRSMRQ=="; }; }; - "node-ssdp-2.9.1" = { - name = "node-ssdp"; - packageName = "node-ssdp"; - version = "2.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/node-ssdp/-/node-ssdp-2.9.1.tgz"; - sha512 = "yGUSsm7HKxcv1XU0X6BIMWaOl/SaXqrIhwZCdklmAzwjG6qt+hnJwzs+VigCuRMP+jhSyoVBvHnoc95VgxbcuQ=="; - }; - }; "node-static-0.7.11" = { name = "node-static"; packageName = "node-static"; @@ -31265,15 +29105,6 @@ let sha512 = "4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg=="; }; }; - "nopt-4.0.3" = { - name = "nopt"; - packageName = "nopt"; - version = "4.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz"; - sha512 = "CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg=="; - }; - }; "nopt-5.0.0" = { name = "nopt"; packageName = "nopt"; @@ -31526,13 +29357,13 @@ let sha512 = "sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw=="; }; }; - "npm-package-arg-12.0.1" = { + "npm-package-arg-12.0.2" = { name = "npm-package-arg"; packageName = "npm-package-arg"; - version = "12.0.1"; + version = "12.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-12.0.1.tgz"; - sha512 = "aDxjFfPV3Liw0WOBWlyZLMBqtbgbg03rmGvHDJa2Ttv7tIz+1oB5qWec4psCDFZcZi9b5XdGkPdQiJxOPzvQRQ=="; + url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-12.0.2.tgz"; + sha512 = "f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA=="; }; }; "npm-package-arg-6.1.1" = { @@ -31544,15 +29375,6 @@ let sha512 = "qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg=="; }; }; - "npm-packlist-1.4.8" = { - name = "npm-packlist"; - packageName = "npm-packlist"; - version = "1.4.8"; - src = fetchurl { - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.8.tgz"; - sha512 = "5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A=="; - }; - }; "npm-packlist-2.1.5" = { name = "npm-packlist"; packageName = "npm-packlist"; @@ -31697,15 +29519,6 @@ let sha512 = "a9GSOIql5IqgWJR3F/JXG4KpJTA3Z53Cj0MeMvGpglytB1nxE4PdFNC0jINe27CS7cGivoynwc054EzCcT3M3w=="; }; }; - "nth-check-1.0.2" = { - name = "nth-check"; - packageName = "nth-check"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz"; - sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg=="; - }; - }; "nth-check-2.1.1" = { name = "nth-check"; packageName = "nth-check"; @@ -31715,15 +29528,6 @@ let sha512 = "lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w=="; }; }; - "nullthrows-1.1.1" = { - name = "nullthrows"; - packageName = "nullthrows"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz"; - sha512 = "2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw=="; - }; - }; "num-sort-3.0.0" = { name = "num-sort"; packageName = "num-sort"; @@ -31778,13 +29582,13 @@ let sha512 = "qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA=="; }; }; - "nwsapi-2.2.16" = { + "nwsapi-2.2.18" = { name = "nwsapi"; packageName = "nwsapi"; - version = "2.2.16"; + version = "2.2.18"; src = fetchurl { - url = "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.16.tgz"; - sha512 = "F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ=="; + url = "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.18.tgz"; + sha512 = "p1TRH/edngVEHVbwqWnxUViEmq5znDvyB+Sik5cmuLpGOIfDf/39zLiq3swPF8Vakqn+gvNiOQAZu8djYlQILA=="; }; }; "oas-kit-common-1.0.8" = { @@ -31868,15 +29672,6 @@ let sha512 = "rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="; }; }; - "object-component-0.0.3" = { - name = "object-component"; - packageName = "object-component"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz"; - sha512 = "S0sN3agnVh2SZNEIGc0N1X4Z5K0JeFbGBrnuZpsxuUh5XLF0BnvWkMjRXo/zGKLd/eghvNIKcx1pQkmUjXIyrA=="; - }; - }; "object-copy-0.1.0" = { name = "object-copy"; packageName = "object-copy"; @@ -32156,13 +29951,13 @@ let sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA=="; }; }; - "oo-ascii-tree-1.108.0" = { + "oo-ascii-tree-1.109.0" = { name = "oo-ascii-tree"; packageName = "oo-ascii-tree"; - version = "1.108.0"; + version = "1.109.0"; src = fetchurl { - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.108.0.tgz"; - sha512 = "aR++8J29Te6L+1pVi9phOvsMVdEj7245vpcJqmrzDOGHpJdZ3zm1hdh44pYfzV1PiDgG3S3fwtlLZilulwVAgg=="; + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.109.0.tgz"; + sha512 = "0YZJaT5UFMnaj8ol0U3gG9pVbS27mG9rq/G+ED44GiFsi/Jb3mOtOXScFJXd7tdkOnXHS7oUCp1m7DUQ1BC6sA=="; }; }; "open-0.0.2" = { @@ -32777,15 +30572,6 @@ let sha512 = "k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ=="; }; }; - "package-json-7.0.0" = { - name = "package-json"; - packageName = "package-json"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/package-json/-/package-json-7.0.0.tgz"; - sha512 = "CHJqc94AA8YfSLHGQT3DbvSIuE12NLFekpM4n7LRrAd3dOJtA911+4xe9q6nC3/jcKraq7nNS9VxgtT0KC+diA=="; - }; - }; "package-json-8.1.1" = { name = "package-json"; packageName = "package-json"; @@ -32804,6 +30590,15 @@ let sha512 = "UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="; }; }; + "package-manager-detector-1.0.0" = { + name = "package-manager-detector"; + packageName = "package-manager-detector"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.0.0.tgz"; + sha512 = "7elnH+9zMsRo7aS72w6MeRugTpdRvInmEB4Kmm9BVvPw/SLG8gXUGQ+4wF0Mys0RSWPz0B9nuBbDe8vFeA2sfg=="; + }; + }; "pacote-20.0.0" = { name = "pacote"; packageName = "pacote"; @@ -33074,15 +30869,6 @@ let sha512 = "1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q=="; }; }; - "parse-torrent-11.0.18" = { - name = "parse-torrent"; - packageName = "parse-torrent"; - version = "11.0.18"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-11.0.18.tgz"; - sha512 = "C1igbmTrQQuKlspAfP1wcLaOPlvtu5qi4pMdPoCCfepHmxDOk8iArJ2J1yblLx11UefZJUaKEPSxIwMdG11SuA=="; - }; - }; "parse-torrent-4.1.0" = { name = "parse-torrent"; packageName = "parse-torrent"; @@ -33101,15 +30887,6 @@ let sha512 = "yy7UTSmliOT/7Yl+P4hwwW2W7PbCTAMcD0lasaVG+k4/2laj42YWzLm468bLFGDoFPIb29g3BuwBcA3gLopKww=="; }; }; - "parse-torrent-9.1.5" = { - name = "parse-torrent"; - packageName = "parse-torrent"; - version = "9.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-9.1.5.tgz"; - sha512 = "K8FXRwTOaZMI0/xuv0dpng1MVHZRtMJ0jRWBJ3qZWVNTrC1MzWUxm9QwaXDz/2qPhV2XC4UIHI92IGHwseAwaA=="; - }; - }; "parse-torrent-file-2.1.4" = { name = "parse-torrent-file"; packageName = "parse-torrent-file"; @@ -33119,24 +30896,6 @@ let sha512 = "u2MgLOjZPDDer1oRg1c+H/+54iIQYY5TKgQ5G8KrGLT1Dcwdo7Lj+QfQR123+u8J0AMSFGbQUvsBlSB7uIJcCA=="; }; }; - "parse5-3.0.3" = { - name = "parse5"; - packageName = "parse5"; - version = "3.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz"; - sha512 = "rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA=="; - }; - }; - "parse5-5.1.0" = { - name = "parse5"; - packageName = "parse5"; - version = "5.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz"; - sha512 = "fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ=="; - }; - }; "parse5-6.0.1" = { name = "parse5"; packageName = "parse5"; @@ -33155,24 +30914,6 @@ let sha512 = "BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ=="; }; }; - "parse5-htmlparser2-tree-adapter-7.1.0" = { - name = "parse5-htmlparser2-tree-adapter"; - packageName = "parse5-htmlparser2-tree-adapter"; - version = "7.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz"; - sha512 = "ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g=="; - }; - }; - "parseqs-0.0.5" = { - name = "parseqs"; - packageName = "parseqs"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz"; - sha512 = "B3Nrjw2aL7aI4TDujOzfA4NsEc4u1lVcIRE0xesutH8kjeWF70uk+W5cBlIQx04zUH9NTBvuN36Y9xLRPK6Jjw=="; - }; - }; "parseqs-0.0.6" = { name = "parseqs"; packageName = "parseqs"; @@ -33191,15 +30932,6 @@ let sha512 = "e1HbF3+7ASJ/uOZirg5/8ZfPljTh100auNterbHB8TUs5egciuWQ2eX/2al8ko0RdV9Xh/5jDei3jqJAmbTDcg=="; }; }; - "parseuri-0.0.5" = { - name = "parseuri"; - packageName = "parseuri"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz"; - sha512 = "ijhdxJu6l5Ru12jF0JvzXVPvsC+VibqeaExlNoMhWN6VQ79PGjkmc7oA4W1lp00sFkNyj0fx6ivPLdV51/UMog=="; - }; - }; "parseuri-0.0.6" = { name = "parseuri"; packageName = "parseuri"; @@ -33461,15 +31193,6 @@ let sha512 = "RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ=="; }; }; - "path-to-regexp-0.1.7" = { - name = "path-to-regexp"; - packageName = "path-to-regexp"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; - sha512 = "5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ=="; - }; - }; "path-to-regexp-1.9.0" = { name = "path-to-regexp"; packageName = "path-to-regexp"; @@ -33722,15 +31445,6 @@ let sha512 = "g0VU+y08pKw5M8EZ2rIGiEBaB8wrQMjYGFfW2QVIfyT8V+fq8YFLkvlz4bz5ljvFDJYNFCWT3PWqcRr2FKO81w=="; }; }; - "piece-length-2.0.1" = { - name = "piece-length"; - packageName = "piece-length"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/piece-length/-/piece-length-2.0.1.tgz"; - sha512 = "dBILiDmm43y0JPISWEmVGKBETQjwJe6mSU9GND+P9KW0SJGUwoU/odyH1nbalOP9i8WSYuqf1lQnaj92Bhw+Ug=="; - }; - }; "pify-2.3.0" = { name = "pify"; packageName = "pify"; @@ -34046,69 +31760,6 @@ let sha512 = "dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="; }; }; - "postcss-calc-10.1.1" = { - name = "postcss-calc"; - packageName = "postcss-calc"; - version = "10.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.1.1.tgz"; - sha512 = "NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw=="; - }; - }; - "postcss-colormin-7.0.2" = { - name = "postcss-colormin"; - packageName = "postcss-colormin"; - version = "7.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.2.tgz"; - sha512 = "YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA=="; - }; - }; - "postcss-convert-values-7.0.4" = { - name = "postcss-convert-values"; - packageName = "postcss-convert-values"; - version = "7.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.4.tgz"; - sha512 = "e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q=="; - }; - }; - "postcss-discard-comments-7.0.3" = { - name = "postcss-discard-comments"; - packageName = "postcss-discard-comments"; - version = "7.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.3.tgz"; - sha512 = "q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA=="; - }; - }; - "postcss-discard-duplicates-7.0.1" = { - name = "postcss-discard-duplicates"; - packageName = "postcss-discard-duplicates"; - version = "7.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.1.tgz"; - sha512 = "oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ=="; - }; - }; - "postcss-discard-empty-7.0.0" = { - name = "postcss-discard-empty"; - packageName = "postcss-discard-empty"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-7.0.0.tgz"; - sha512 = "e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA=="; - }; - }; - "postcss-discard-overridden-7.0.0" = { - name = "postcss-discard-overridden"; - packageName = "postcss-discard-overridden"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-7.0.0.tgz"; - sha512 = "GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w=="; - }; - }; "postcss-html-0.36.0" = { name = "postcss-html"; packageName = "postcss-html"; @@ -34145,168 +31796,6 @@ let sha512 = "3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig=="; }; }; - "postcss-merge-longhand-7.0.4" = { - name = "postcss-merge-longhand"; - packageName = "postcss-merge-longhand"; - version = "7.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-7.0.4.tgz"; - sha512 = "zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A=="; - }; - }; - "postcss-merge-rules-7.0.4" = { - name = "postcss-merge-rules"; - packageName = "postcss-merge-rules"; - version = "7.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-7.0.4.tgz"; - sha512 = "ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg=="; - }; - }; - "postcss-minify-font-values-7.0.0" = { - name = "postcss-minify-font-values"; - packageName = "postcss-minify-font-values"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-7.0.0.tgz"; - sha512 = "2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog=="; - }; - }; - "postcss-minify-gradients-7.0.0" = { - name = "postcss-minify-gradients"; - packageName = "postcss-minify-gradients"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-7.0.0.tgz"; - sha512 = "pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg=="; - }; - }; - "postcss-minify-params-7.0.2" = { - name = "postcss-minify-params"; - packageName = "postcss-minify-params"; - version = "7.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-7.0.2.tgz"; - sha512 = "nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ=="; - }; - }; - "postcss-minify-selectors-7.0.4" = { - name = "postcss-minify-selectors"; - packageName = "postcss-minify-selectors"; - version = "7.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-7.0.4.tgz"; - sha512 = "JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA=="; - }; - }; - "postcss-normalize-charset-7.0.0" = { - name = "postcss-normalize-charset"; - packageName = "postcss-normalize-charset"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-7.0.0.tgz"; - sha512 = "ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ=="; - }; - }; - "postcss-normalize-display-values-7.0.0" = { - name = "postcss-normalize-display-values"; - packageName = "postcss-normalize-display-values"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-7.0.0.tgz"; - sha512 = "lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q=="; - }; - }; - "postcss-normalize-positions-7.0.0" = { - name = "postcss-normalize-positions"; - packageName = "postcss-normalize-positions"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-7.0.0.tgz"; - sha512 = "I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ=="; - }; - }; - "postcss-normalize-repeat-style-7.0.0" = { - name = "postcss-normalize-repeat-style"; - packageName = "postcss-normalize-repeat-style"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-7.0.0.tgz"; - sha512 = "o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw=="; - }; - }; - "postcss-normalize-string-7.0.0" = { - name = "postcss-normalize-string"; - packageName = "postcss-normalize-string"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-7.0.0.tgz"; - sha512 = "w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg=="; - }; - }; - "postcss-normalize-timing-functions-7.0.0" = { - name = "postcss-normalize-timing-functions"; - packageName = "postcss-normalize-timing-functions"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-7.0.0.tgz"; - sha512 = "tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g=="; - }; - }; - "postcss-normalize-unicode-7.0.2" = { - name = "postcss-normalize-unicode"; - packageName = "postcss-normalize-unicode"; - version = "7.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.2.tgz"; - sha512 = "ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg=="; - }; - }; - "postcss-normalize-url-7.0.0" = { - name = "postcss-normalize-url"; - packageName = "postcss-normalize-url"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-7.0.0.tgz"; - sha512 = "+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ=="; - }; - }; - "postcss-normalize-whitespace-7.0.0" = { - name = "postcss-normalize-whitespace"; - packageName = "postcss-normalize-whitespace"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-7.0.0.tgz"; - sha512 = "37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ=="; - }; - }; - "postcss-ordered-values-7.0.1" = { - name = "postcss-ordered-values"; - packageName = "postcss-ordered-values"; - version = "7.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-7.0.1.tgz"; - sha512 = "irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw=="; - }; - }; - "postcss-reduce-initial-7.0.2" = { - name = "postcss-reduce-initial"; - packageName = "postcss-reduce-initial"; - version = "7.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-7.0.2.tgz"; - sha512 = "pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA=="; - }; - }; - "postcss-reduce-transforms-7.0.0" = { - name = "postcss-reduce-transforms"; - packageName = "postcss-reduce-transforms"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-7.0.0.tgz"; - sha512 = "pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew=="; - }; - }; "postcss-reporter-7.1.0" = { name = "postcss-reporter"; packageName = "postcss-reporter"; @@ -34361,15 +31850,6 @@ let sha512 = "IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w=="; }; }; - "postcss-selector-parser-6.0.2" = { - name = "postcss-selector-parser"; - packageName = "postcss-selector-parser"; - version = "6.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz"; - sha512 = "36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg=="; - }; - }; "postcss-selector-parser-6.1.2" = { name = "postcss-selector-parser"; packageName = "postcss-selector-parser"; @@ -34379,24 +31859,6 @@ let sha512 = "Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg=="; }; }; - "postcss-selector-parser-7.1.0" = { - name = "postcss-selector-parser"; - packageName = "postcss-selector-parser"; - version = "7.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz"; - sha512 = "8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="; - }; - }; - "postcss-svgo-7.0.1" = { - name = "postcss-svgo"; - packageName = "postcss-svgo"; - version = "7.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-7.0.1.tgz"; - sha512 = "0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA=="; - }; - }; "postcss-syntax-0.36.2" = { name = "postcss-syntax"; packageName = "postcss-syntax"; @@ -34406,15 +31868,6 @@ let sha512 = "nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w=="; }; }; - "postcss-unique-selectors-7.0.3" = { - name = "postcss-unique-selectors"; - packageName = "postcss-unique-selectors"; - version = "7.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-7.0.3.tgz"; - sha512 = "J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g=="; - }; - }; "postcss-value-parser-4.2.0" = { name = "postcss-value-parser"; packageName = "postcss-value-parser"; @@ -34424,42 +31877,6 @@ let sha512 = "1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="; }; }; - "posthtml-0.16.6" = { - name = "posthtml"; - packageName = "posthtml"; - version = "0.16.6"; - src = fetchurl { - url = "https://registry.npmjs.org/posthtml/-/posthtml-0.16.6.tgz"; - sha512 = "JcEmHlyLK/o0uGAlj65vgg+7LIms0xKXe60lcDOTU7oVX/3LuEuLwrQpW3VJ7de5TaFKiW4kWkaIpJL42FEgxQ=="; - }; - }; - "posthtml-parser-0.11.0" = { - name = "posthtml-parser"; - packageName = "posthtml-parser"; - version = "0.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.11.0.tgz"; - sha512 = "QecJtfLekJbWVo/dMAA+OSwY79wpRmbqS5TeXvXSX+f0c6pW4/SE6inzZ2qkU7oAMCPqIDkZDvd/bQsSFUnKyw=="; - }; - }; - "posthtml-parser-0.12.1" = { - name = "posthtml-parser"; - packageName = "posthtml-parser"; - version = "0.12.1"; - src = fetchurl { - url = "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.12.1.tgz"; - sha512 = "rYFmsDLfYm+4Ts2Oh4DCDSZPtdC1BLnRXAobypVzX9alj28KGl65dIFtgDY9zB57D0TC4Qxqrawuq/2et1P0GA=="; - }; - }; - "posthtml-render-3.0.0" = { - name = "posthtml-render"; - packageName = "posthtml-render"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/posthtml-render/-/posthtml-render-3.0.0.tgz"; - sha512 = "z+16RoxK3fUPgwaIgH9NGnK1HKY9XIDpydky5eQGgAFVXTCSezalv9U2jQuNV+Z9qV1fDWNzldcw4eK0SSbqKA=="; - }; - }; "postject-1.0.0-alpha.6" = { name = "postject"; packageName = "postject"; @@ -34568,22 +31985,13 @@ let sha512 = "tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q=="; }; }; - "prettier-3.5.2" = { + "prettier-3.5.3" = { name = "prettier"; packageName = "prettier"; - version = "3.5.2"; + version = "3.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/prettier/-/prettier-3.5.2.tgz"; - sha512 = "lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg=="; - }; - }; - "prettier-bytes-1.0.4" = { - name = "prettier-bytes"; - packageName = "prettier-bytes"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/prettier-bytes/-/prettier-bytes-1.0.4.tgz"; - sha512 = "dLbWOa4xBn+qeWeIF60qRoB6Pk2jX5P3DIVgOQyMyvBpu931Q+8dXz8X0snJiFkQdohDDLnZQECjzsAj75hgZQ=="; + url = "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz"; + sha512 = "QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw=="; }; }; "pretty-error-2.1.2" = { @@ -35072,15 +32480,6 @@ let sha512 = "cHArnywCiAAVXa3t4GGL2vttNxh7GqXtIYGym99egkNJ3oG//wL9LkvO4WE8W1TJe95t1F1ocu9X4xWaGsOKOA=="; }; }; - "purgecss-6.0.0" = { - name = "purgecss"; - packageName = "purgecss"; - version = "6.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/purgecss/-/purgecss-6.0.0.tgz"; - sha512 = "s3EBxg5RSWmpqd0KGzNqPiaBbWDz1/As+2MzoYVGMqgDqRTLBhJW6sywfTBek7OwNfoS/6pS0xdtvChNhFj2cw=="; - }; - }; "pvtsutils-1.3.6" = { name = "pvtsutils"; packageName = "pvtsutils"; @@ -35144,24 +32543,6 @@ let sha512 = "qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA=="; }; }; - "qs-6.7.0" = { - name = "qs"; - packageName = "qs"; - version = "6.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz"; - sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; - }; - }; - "qs-6.9.7" = { - name = "qs"; - packageName = "qs"; - version = "6.9.7"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.9.7.tgz"; - sha512 = "IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw=="; - }; - }; "query-string-6.14.1" = { name = "query-string"; packageName = "query-string"; @@ -35315,15 +32696,6 @@ let sha512 = "RGU0xmDqdOyEiynob1KYSeh8+9c9Td1MJ74GT1viMEYAn8SJ9oBtWCXLsYZukCF46yududHOdM449uRYbzBrZQ=="; }; }; - "random-access-file-4.1.2" = { - name = "random-access-file"; - packageName = "random-access-file"; - version = "4.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/random-access-file/-/random-access-file-4.1.2.tgz"; - sha512 = "GQM6R78DceZDcQod8KxlDFwXIiUvlvuy1EOzxTDsjuDjW5NlnlZi0MOk6iI4itAj/2vcvdqcEExYbVpC/dJcEw=="; - }; - }; "random-access-storage-1.4.3" = { name = "random-access-storage"; packageName = "random-access-storage"; @@ -35333,15 +32705,6 @@ let sha512 = "D5e2iIC5dNENWyBxsjhEnNOMCwZZ64TARK6dyMN+3g4OTC4MJxyjh9hKLjTGoNhDOPrgjI+YlFEHFnrp/cSnzQ=="; }; }; - "random-access-storage-3.0.2" = { - name = "random-access-storage"; - packageName = "random-access-storage"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/random-access-storage/-/random-access-storage-3.0.2.tgz"; - sha512 = "Es9maUyWdJXWKckKy9s1+vT+DEgAt+PBb9lxPaake/0EDUsHehloKGv9v1zimS2V3gpFAcQXubvc1Rgci2sDPQ=="; - }; - }; "random-bytes-1.0.0" = { name = "random-bytes"; packageName = "random-bytes"; @@ -35414,15 +32777,6 @@ let sha512 = "2/dGHpDFpeA0+755oUkW+EKyklqLS9lu0go9pDsbhqQjZcxfRyJ6LA4JI0+HAdZ2bemD/oOjUeZQB2lCZqXQfQ=="; }; }; - "raw-body-2.4.0" = { - name = "raw-body"; - packageName = "raw-body"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz"; - sha512 = "4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q=="; - }; - }; "raw-body-2.4.1" = { name = "raw-body"; packageName = "raw-body"; @@ -35432,15 +32786,6 @@ let sha512 = "9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA=="; }; }; - "raw-body-2.4.3" = { - name = "raw-body"; - packageName = "raw-body"; - version = "2.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.3.tgz"; - sha512 = "UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g=="; - }; - }; "raw-body-2.5.2" = { name = "raw-body"; packageName = "raw-body"; @@ -35468,15 +32813,6 @@ let sha512 = "kD7FqML7l800i6pS6pvLyIE2ncbk9Du8Q0gp/4hMPhJU6ZxApkoLcGD8ZeqgiAlfwZ6BlETq6qqe+12DUL207w=="; }; }; - "rc4-0.1.5" = { - name = "rc4"; - packageName = "rc4"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/rc4/-/rc4-0.1.5.tgz"; - sha512 = "xdDTNV90z5x5u25Oc871Xnvu7yAr4tV7Eluh0VSvrhUkry39q1k+zkz7xroqHbRq+8PiazySHJPArqifUvz9VA=="; - }; - }; "re-emitter-1.1.4" = { name = "re-emitter"; packageName = "re-emitter"; @@ -35531,15 +32867,6 @@ let sha512 = "cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA=="; }; }; - "react-error-overlay-6.0.9" = { - name = "react-error-overlay"; - packageName = "react-error-overlay"; - version = "6.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz"; - sha512 = "nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew=="; - }; - }; "react-reconciler-0.26.2" = { name = "react-reconciler"; packageName = "react-reconciler"; @@ -35558,15 +32885,6 @@ let sha512 = "zZQqIiYgDCTP/f1N/mAR10nJGrPD2ZR+jDSEsKWJHYC7Cm2wodlwbR3upZRdC3cjIjSlTLNVyO7Iu0Yy7t2AYg=="; }; }; - "react-refresh-0.14.2" = { - name = "react-refresh"; - packageName = "react-refresh"; - version = "0.14.2"; - src = fetchurl { - url = "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz"; - sha512 = "jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA=="; - }; - }; "read-1.0.7" = { name = "read"; packageName = "read"; @@ -35603,15 +32921,6 @@ let sha512 = "Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA=="; }; }; - "read-chunk-3.2.0" = { - name = "read-chunk"; - packageName = "read-chunk"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/read-chunk/-/read-chunk-3.2.0.tgz"; - sha512 = "CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ=="; - }; - }; "read-only-stream-2.0.0" = { name = "read-only-stream"; packageName = "read-only-stream"; @@ -35828,15 +33137,6 @@ let sha512 = "oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg=="; }; }; - "readable-web-to-node-stream-2.0.0" = { - name = "readable-web-to-node-stream"; - packageName = "readable-web-to-node-stream"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-2.0.0.tgz"; - sha512 = "+oZJurc4hXpaaqsN68GoZGQAQIA3qr09Or4fqEsargABnbe5Aau8hFn6ISVleT3cpY/0n/8drn7huyyEvTbghA=="; - }; - }; "readable-web-to-node-stream-3.0.4" = { name = "readable-web-to-node-stream"; packageName = "readable-web-to-node-stream"; @@ -35936,15 +33236,6 @@ let sha512 = "/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ=="; }; }; - "record-cache-1.2.0" = { - name = "record-cache"; - packageName = "record-cache"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/record-cache/-/record-cache-1.2.0.tgz"; - sha512 = "kyy3HWCez2WrotaL3O4fTn0rsIdfRKOdQQcEJ9KpvmKmbffKVvwsloX063EgRUlpJIXHiDQFhJcTbZequ2uTZw=="; - }; - }; "redent-1.0.0" = { name = "redent"; packageName = "redent"; @@ -36935,15 +34226,6 @@ let sha512 = "TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw=="; }; }; - "request-promise-native-1.0.9" = { - name = "request-promise-native"; - packageName = "request-promise-native"; - version = "1.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz"; - sha512 = "wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g=="; - }; - }; "requestretry-7.1.0" = { name = "requestretry"; packageName = "requestretry"; @@ -37313,13 +34595,13 @@ let sha512 = "9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow=="; }; }; - "reusify-1.0.4" = { + "reusify-1.1.0" = { name = "reusify"; packageName = "reusify"; - version = "1.0.4"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"; - sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; + url = "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz"; + sha512 = "g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw=="; }; }; "revalidator-0.1.8" = { @@ -37439,13 +34721,13 @@ let sha512 = "IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg=="; }; }; - "rollup-4.34.8" = { + "rollup-4.35.0" = { name = "rollup"; packageName = "rollup"; - version = "4.34.8"; + version = "4.35.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz"; - sha512 = "489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ=="; + url = "https://registry.npmjs.org/rollup/-/rollup-4.35.0.tgz"; + sha512 = "kg6oI4g+vc41vePJyO6dHt/yl0Rz3Thv0kJeVQ3D1kS3E5XSuKbPc29G4IpT/Kv1KQwgHVcN+HtyS+HYLNSvQg=="; }; }; "round-to-6.0.0" = { @@ -37529,15 +34811,6 @@ let sha512 = "5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="; }; }; - "run-parallel-limit-1.1.0" = { - name = "run-parallel-limit"; - packageName = "run-parallel-limit"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/run-parallel-limit/-/run-parallel-limit-1.1.0.tgz"; - sha512 = "jJA7irRNM91jaKc3Hcl1npHsFLOXOoTkPCUL1JEa1R82O2miplXXRaGdjW/KM/98YQWDhJLiSs793CnXfblJUw=="; - }; - }; "run-series-1.1.9" = { name = "run-series"; packageName = "run-series"; @@ -37826,15 +35099,6 @@ let sha512 = "pVlvK5ysevz8MzybRnDIa2YMxn0OJ7b9lDiWhMoaKPoJ7YkAg/7YtNjUgaYzElkwHxsw8dBMhaEn7UP6zxEwPg=="; }; }; - "sax-1.1.4" = { - name = "sax"; - packageName = "sax"; - version = "1.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/sax/-/sax-1.1.4.tgz"; - sha512 = "5f3k2PbGGp+YtKJjOItpg3P99IMD84E4HOvcfleTb5joCHNXYLsR9yWFPOYGgaeMPDubQILTCMdsFb2OMeOjtg=="; - }; - }; "sax-1.2.1" = { name = "sax"; packageName = "sax"; @@ -37853,15 +35117,6 @@ let sha512 = "+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg=="; }; }; - "saxes-3.1.11" = { - name = "saxes"; - packageName = "saxes"; - version = "3.1.11"; - src = fetchurl { - url = "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz"; - sha512 = "Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g=="; - }; - }; "saxes-5.0.1" = { name = "saxes"; packageName = "saxes"; @@ -37952,15 +35207,6 @@ let sha512 = "cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="; }; }; - "semver-6.3.0" = { - name = "semver"; - packageName = "semver"; - version = "6.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"; - sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; - }; - }; "semver-6.3.1" = { name = "semver"; packageName = "semver"; @@ -37970,15 +35216,6 @@ let sha512 = "BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="; }; }; - "semver-7.3.2" = { - name = "semver"; - packageName = "semver"; - version = "7.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz"; - sha512 = "OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ=="; - }; - }; "semver-7.3.8" = { name = "semver"; packageName = "semver"; @@ -37988,15 +35225,6 @@ let sha512 = "NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="; }; }; - "semver-7.5.2" = { - name = "semver"; - packageName = "semver"; - version = "7.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-7.5.2.tgz"; - sha512 = "SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ=="; - }; - }; "semver-7.5.4" = { name = "semver"; packageName = "semver"; @@ -38078,24 +35306,6 @@ let sha512 = "BDjWX7yCC0haX4W/zrnV2JaMpVirwaEkGOBmgRQtH++F1N3xl9v7k9H44xfTqwl+yLNNSbMKosoVSTIiJVQ2Pw=="; }; }; - "send-0.17.1" = { - name = "send"; - packageName = "send"; - version = "0.17.1"; - src = fetchurl { - url = "https://registry.npmjs.org/send/-/send-0.17.1.tgz"; - sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; - }; - }; - "send-0.17.2" = { - name = "send"; - packageName = "send"; - version = "0.17.2"; - src = fetchurl { - url = "https://registry.npmjs.org/send/-/send-0.17.2.tgz"; - sha512 = "UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww=="; - }; - }; "send-0.19.0" = { name = "send"; packageName = "send"; @@ -38168,24 +35378,6 @@ let sha512 = "pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw=="; }; }; - "serve-static-1.14.1" = { - name = "serve-static"; - packageName = "serve-static"; - version = "1.14.1"; - src = fetchurl { - url = "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz"; - sha512 = "JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg=="; - }; - }; - "serve-static-1.14.2" = { - name = "serve-static"; - packageName = "serve-static"; - version = "1.14.2"; - src = fetchurl { - url = "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz"; - sha512 = "+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ=="; - }; - }; "serve-static-1.16.2" = { name = "serve-static"; packageName = "serve-static"; @@ -38645,15 +35837,6 @@ let sha512 = "TQl9rm4rdKAVmhO++sXAb8TNN0D6JAD5iyI1mqEPNpxUzTRrtm4aOG1pDf/5W/qCFihiaoK6uuL9rvQz1x1VKw=="; }; }; - "simple-sha1-3.1.0" = { - name = "simple-sha1"; - packageName = "simple-sha1"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/simple-sha1/-/simple-sha1-3.1.0.tgz"; - sha512 = "ArTptMRC1v08H8ihPD6l0wesKvMfF9e8XL5rIHPanI7kGOsSsbY514MwVu6X1PITHCTB2F08zB7cyEbfc4wQjg=="; - }; - }; "simple-swizzle-0.2.2" = { name = "simple-swizzle"; packageName = "simple-swizzle"; @@ -38915,15 +36098,6 @@ let sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ=="; }; }; - "socket.io-2.3.0" = { - name = "socket.io"; - packageName = "socket.io"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-2.3.0.tgz"; - sha512 = "2A892lrj0GcgR/9Qk81EaY2gYhCBxurV0PfmmESO6p27QPrUK1J3zdns+5QPqvUYK2q657nSj0guoIil9+7eFg=="; - }; - }; "socket.io-2.5.1" = { name = "socket.io"; packageName = "socket.io"; @@ -38933,15 +36107,6 @@ let sha512 = "eaTE4tBKRD6RFoetquMbxgvcpvoDtRyIlkIMI/SMK2bsKvbENTsDeeu4GJ/z9c90yOWxB7b/eC+yKLPbHnH6bA=="; }; }; - "socket.io-4.6.1" = { - name = "socket.io"; - packageName = "socket.io"; - version = "4.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz"; - sha512 = "KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA=="; - }; - }; "socket.io-4.8.1" = { name = "socket.io"; packageName = "socket.io"; @@ -38969,15 +36134,6 @@ let sha512 = "eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg=="; }; }; - "socket.io-client-2.3.0" = { - name = "socket.io-client"; - packageName = "socket.io-client"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.3.0.tgz"; - sha512 = "cEQQf24gET3rfhxZ2jJ5xzAOo/xhZwK+mOqtGRg5IowZsMgwvHwnf/mCRapAAkadhM26y+iydgwsXGObBB5ZdA=="; - }; - }; "socket.io-client-2.5.0" = { name = "socket.io-client"; packageName = "socket.io-client"; @@ -39086,15 +36242,6 @@ let sha512 = "FbZ/X/2Xq3DAMhuRA4bnN0jy1QxaPTVPLFvyv6CEj0QDKSTdWp9yRxo1JhqXmWKhPQeJyUMajHJB2UjT43pFcw=="; }; }; - "socksjs-0.5.0" = { - name = "socksjs"; - packageName = "socksjs"; - version = "0.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/socksjs/-/socksjs-0.5.0.tgz"; - sha512 = "tr2eBD+9sTck9c7y0GkX9n8r4WcuzACYMFAGIjQum/F/LpJUZ0MvR4S6wiCrzvrCiznekBdxeG+8vSBE6d9H7A=="; - }; - }; "sorcery-0.10.0" = { name = "sorcery"; packageName = "sorcery"; @@ -39320,15 +36467,6 @@ let sha512 = "1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg=="; }; }; - "speed-limiter-1.0.2" = { - name = "speed-limiter"; - packageName = "speed-limiter"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/speed-limiter/-/speed-limiter-1.0.2.tgz"; - sha512 = "Ax+TbUOho84bWUc3AKqWtkIvAIVws7d6QI4oJkgH4yQ5Yil+lR3vjd/7qd51dHKGzS5bFxg0++QwyNRN7s6rZA=="; - }; - }; "speedometer-0.1.4" = { name = "speedometer"; packageName = "speedometer"; @@ -39365,15 +36503,6 @@ let sha512 = "wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA=="; }; }; - "split-1.0.1" = { - name = "split"; - packageName = "split"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz"; - sha512 = "mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg=="; - }; - }; "split-ca-1.0.1" = { name = "split-ca"; packageName = "split-ca"; @@ -39473,24 +36602,6 @@ let sha512 = "Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA=="; }; }; - "sqlite3-4.1.0" = { - name = "sqlite3"; - packageName = "sqlite3"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/sqlite3/-/sqlite3-4.1.0.tgz"; - sha512 = "RvqoKxq+8pDHsJo7aXxsFR18i+dU2Wp5o12qAJOV5LNcDt+fgJsc2QKKg3sIRfXrN9ZjzY1T7SNe/DFVqAXjaw=="; - }; - }; - "sqlite3-5.0.0" = { - name = "sqlite3"; - packageName = "sqlite3"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.0.tgz"; - sha512 = "rjvqHFUaSGnzxDy2AHCwhHy6Zp6MNJzCPGYju4kD8yi6bze4d1/zMTg6C7JI49b7/EM7jKMTvyfN/4ylBKdwfw=="; - }; - }; "sqlite3-5.1.6" = { name = "sqlite3"; packageName = "sqlite3"; @@ -39500,24 +36611,6 @@ let sha512 = "olYkWoKFVNSSSQNvxVUfjiVbz3YtBwTJj+mfV5zpHmqW3sELx2Cf4QCdirMelhM5Zh+KDVaKgQHqCxrqiWHybw=="; }; }; - "srcset-4.0.0" = { - name = "srcset"; - packageName = "srcset"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/srcset/-/srcset-4.0.0.tgz"; - sha512 = "wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw=="; - }; - }; - "srcset-5.0.1" = { - name = "srcset"; - packageName = "srcset"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/srcset/-/srcset-5.0.1.tgz"; - sha512 = "/P1UYbGfJVlxZag7aABNRrulEXAwCSDo7fklafOQrantuPTDmYgijJMks2zusPCVzgW9+4P69mq7w6pYuZpgxw=="; - }; - }; "sscaff-1.2.274" = { name = "sscaff"; packageName = "sscaff"; @@ -39914,15 +37007,6 @@ let sha512 = "KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw=="; }; }; - "streamsearch-0.1.2" = { - name = "streamsearch"; - packageName = "streamsearch"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz"; - sha512 = "jos8u++JKm0ARcSUTAZXOVC0mSox7Bhn6sBgty73P1f3JGf7yG2clTbBNHUdde/kdvP2FESam+vM6l8jBrNxHA=="; - }; - }; "streamsearch-1.1.0" = { name = "streamsearch"; packageName = "streamsearch"; @@ -40103,15 +37187,6 @@ let sha512 = "3XUxUgwhj7Eqh2djae35QHZZT4mN3fsO7kagZhSGmhhlrQagVvWSFuuFIWnpxFS0CdTB2PlQcaL16RDi14I8uw=="; }; }; - "string2compact-2.0.1" = { - name = "string2compact"; - packageName = "string2compact"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/string2compact/-/string2compact-2.0.1.tgz"; - sha512 = "Bm/T8lHMTRXw+u83LE+OW7fXmC/wM+Mbccfdo533ajSBNxddDHlRrvxE49NdciGHgXkUQM5WYskJ7uTkbBUI0A=="; - }; - }; "string_decoder-0.10.31" = { name = "string_decoder"; packageName = "string_decoder"; @@ -40364,13 +37439,22 @@ let sha512 = "k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg=="; }; }; - "strnum-1.1.1" = { + "strnum-1.1.2" = { name = "strnum"; packageName = "strnum"; - version = "1.1.1"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/strnum/-/strnum-1.1.1.tgz"; - sha512 = "O7aCHfYCamLCctjAiaucmE+fHf2DYHkus2OKCn4Wv03sykfFtgeECn505X6K4mPl8CRNd/qurC9guq+ynoN4pw=="; + url = "https://registry.npmjs.org/strnum/-/strnum-1.1.2.tgz"; + sha512 = "vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA=="; + }; + }; + "strnum-2.0.5" = { + name = "strnum"; + packageName = "strnum"; + version = "2.0.5"; + src = fetchurl { + url = "https://registry.npmjs.org/strnum/-/strnum-2.0.5.tgz"; + sha512 = "YAT3K/sgpCUxhxNMrrdhtod3jckkpYwH6JAuwmUdXZsmzH1wUyzTMrrK2wYCEEqlKwrWDd35NeuUkbBy/1iK+Q=="; }; }; "strtok3-6.3.0" = { @@ -40400,15 +37484,6 @@ let sha512 = "Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg=="; }; }; - "stylehacks-7.0.4" = { - name = "stylehacks"; - packageName = "stylehacks"; - version = "7.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/stylehacks/-/stylehacks-7.0.4.tgz"; - sha512 = "i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww=="; - }; - }; "stylelint-13.13.1" = { name = "stylelint"; packageName = "stylelint"; @@ -40535,13 +37610,13 @@ let sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; }; }; - "svelte-5.20.4" = { + "svelte-5.23.0" = { name = "svelte"; packageName = "svelte"; - version = "5.20.4"; + version = "5.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/svelte/-/svelte-5.20.4.tgz"; - sha512 = "2Mo/AfObaw9zuD0u1JJ7sOVzRCGcpETEyDkLbtkcctWpCMCIyT0iz83xD8JT29SR7O4SgswuPRIDYReYF/607A=="; + url = "https://registry.npmjs.org/svelte/-/svelte-5.23.0.tgz"; + sha512 = "v0lL3NuKontiCxholEiAXCB+BYbndlKbwlDMK0DS86WgGELMJSpyqCSbJeMEMBDwOglnS7Ar2Rq0wwa/z2L8Vg=="; }; }; "sver-1.8.4" = { @@ -40571,15 +37646,6 @@ let sha512 = "Tq05Q0HTXDJZM+9ub9HCPPDbui2VavugF+/H9b1Ur9ykXbPsSUPFeXFZdDlutvDsVWZO8JjHKRdT3grpNSwwSg=="; }; }; - "svgo-3.3.2" = { - name = "svgo"; - packageName = "svgo"; - version = "3.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz"; - sha512 = "OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw=="; - }; - }; "swagger2openapi-7.0.8" = { name = "swagger2openapi"; packageName = "swagger2openapi"; @@ -40688,13 +37754,13 @@ let sha512 = "zTvf0mcggrGeTe/2jJ6ECkJHAQPIYEwDoqsiqBjI24mvRmQbInK5jq33fyypaCBxX08hMkfmdOqj6haT33EqWw=="; }; }; - "tailwindcss-4.0.8" = { + "tailwindcss-4.0.14" = { name = "tailwindcss"; packageName = "tailwindcss"; - version = "4.0.8"; + version = "4.0.14"; src = fetchurl { - url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.8.tgz"; - sha512 = "Me7N5CKR+D2A1xdWA5t5+kjjT7bwnxZOE6/yDI/ixJdJokszsn2n++mdU5yJwrsTpqFX2B9ZNMBJDwcqk9C9lw=="; + url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.14.tgz"; + sha512 = "92YT2dpt671tFiHH/e1ok9D987N9fHD5VWoly1CdPD/Cd1HMglvZwP3nx2yTj2lbXDAHt8QssZkxTLCCTNL+xw=="; }; }; "tapable-0.2.9" = { @@ -40715,24 +37781,6 @@ let sha512 = "GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ=="; }; }; - "tar-2.2.2" = { - name = "tar"; - packageName = "tar"; - version = "2.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz"; - sha512 = "FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA=="; - }; - }; - "tar-4.4.19" = { - name = "tar"; - packageName = "tar"; - version = "4.4.19"; - src = fetchurl { - url = "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz"; - sha512 = "a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA=="; - }; - }; "tar-6.1.15" = { name = "tar"; packageName = "tar"; @@ -40895,15 +37943,6 @@ let sha512 = "7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g=="; }; }; - "term-size-2.2.1" = { - name = "term-size"; - packageName = "term-size"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz"; - sha512 = "wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg=="; - }; - }; "terminal-kit-1.49.4" = { name = "terminal-kit"; packageName = "terminal-kit"; @@ -40940,13 +37979,13 @@ let sha512 = "LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw=="; }; }; - "terser-webpack-plugin-5.3.11" = { + "terser-webpack-plugin-5.3.14" = { name = "terser-webpack-plugin"; packageName = "terser-webpack-plugin"; - version = "5.3.11"; + version = "5.3.14"; src = fetchurl { - url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.11.tgz"; - sha512 = "RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ=="; + url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz"; + sha512 = "vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw=="; }; }; "text-decoder-1.2.3" = { @@ -40958,15 +37997,6 @@ let sha512 = "3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA=="; }; }; - "text-decoding-1.0.0" = { - name = "text-decoding"; - packageName = "text-decoding"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/text-decoding/-/text-decoding-1.0.0.tgz"; - sha512 = "/0TJD42KDnVwKmDK6jj3xP7E2MG7SHAOG4tyTgyUCRPdHwvkquYNLEQltmdMa3owq3TkddCVcTsoctJI8VQNKA=="; - }; - }; "text-extensions-2.4.0" = { name = "text-extensions"; packageName = "text-extensions"; @@ -40994,33 +38024,6 @@ let sha512 = "N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="; }; }; - "thelounge-3.3.0" = { - name = "thelounge"; - packageName = "thelounge"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge/-/thelounge-3.3.0.tgz"; - sha512 = "F7qYCmAkb/HPFxZfyKi/gEm24ZzjgUzJb+zI5I5u8b5PNJrfi9RwFb3cmE4pvF2Ft0QejR5O4khuX6DEFFxYDw=="; - }; - }; - "thelounge-4.2.0" = { - name = "thelounge"; - packageName = "thelounge"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge/-/thelounge-4.2.0.tgz"; - sha512 = "5hijX1V/4CrgrkqCqtwP32LSbLPSF/10nneI+2doPHKx7AdCgR52HqWZo0AQEPv4fvOqEOMLJ0c9pL6t/jUDwg=="; - }; - }; - "thelounge-4.4.3" = { - name = "thelounge"; - packageName = "thelounge"; - version = "4.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge/-/thelounge-4.4.3.tgz"; - sha512 = "bNiQyqxiZcDWkUrj1G91mpIGGtMm+xUSvTJ5ciP9zux14kGbEp7PhDBZ6HtHZiJ8F7vfWSuwwORFW1y0yQfseA=="; - }; - }; "thenby-1.3.4" = { name = "thenby"; packageName = "thenby"; @@ -41120,24 +38123,6 @@ let sha512 = "/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ=="; }; }; - "throughput-1.0.1" = { - name = "throughput"; - packageName = "throughput"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/throughput/-/throughput-1.0.1.tgz"; - sha512 = "4Mvv5P4xyVz6RM07wS3tGyZ/kPAiKtLeqznq3hK4pxDiTUSyQ5xeFlBiWxflCWexvSnxo2aAfedzKajJqihz4Q=="; - }; - }; - "thunky-0.1.0" = { - name = "thunky"; - packageName = "thunky"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/thunky/-/thunky-0.1.0.tgz"; - sha512 = "vquTt/sKNzFqFK8DKLg33U7deg93WKYH4CE2Ul9hOyMCfm7VXgM7GJQRpPAgnmgnrf407Fcq8TQVEKlbavAu+A=="; - }; - }; "thunky-1.1.0" = { name = "thunky"; packageName = "thunky"; @@ -41201,15 +38186,6 @@ let sha512 = "IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw=="; }; }; - "timsort-0.3.0" = { - name = "timsort"; - packageName = "timsort"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz"; - sha512 = "qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A=="; - }; - }; "tinycolor2-1.6.0" = { name = "tinycolor2"; packageName = "tinycolor2"; @@ -41246,33 +38222,6 @@ let sha512 = "748OLoNS77xzyVNDst906EhIX/rRVb8IVM5Cb7hkO5nyrnngx70vHtmeWVUy+e3lz3I0CgRzYSUJIt7bDQ6PAQ=="; }; }; - "tlds-1.203.1" = { - name = "tlds"; - packageName = "tlds"; - version = "1.203.1"; - src = fetchurl { - url = "https://registry.npmjs.org/tlds/-/tlds-1.203.1.tgz"; - sha512 = "7MUlYyGJ6rSitEZ3r1Q1QNV8uSIzapS8SmmhSusBuIc7uIxPPwsKllEP0GRp1NS6Ik6F+fRZvnjDWm3ecv2hDw=="; - }; - }; - "tlds-1.208.0" = { - name = "tlds"; - packageName = "tlds"; - version = "1.208.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tlds/-/tlds-1.208.0.tgz"; - sha512 = "6kbY7GJpRQXwBddSOAbVUZXjObbCGFXliWWN+kOSEoRWIOyRWLB6zdeKC/Tguwwenl/KsUx016XR50EdHYsxZw=="; - }; - }; - "tlds-1.228.0" = { - name = "tlds"; - packageName = "tlds"; - version = "1.228.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tlds/-/tlds-1.228.0.tgz"; - sha512 = "Q0TU9zh5hDs2CpRFNM7SOW3K7OSgUgJC/cMrq9t44ei4tu+G3KV8BZyIJuYVvryJHH96mKgc9WXdhgKVvGD7jg=="; - }; - }; "tmp-0.0.33" = { name = "tmp"; packageName = "tmp"; @@ -41408,15 +38357,6 @@ let sha512 = "o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="; }; }; - "token-types-2.1.1" = { - name = "token-types"; - packageName = "token-types"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/token-types/-/token-types-2.1.1.tgz"; - sha512 = "wnQcqlreS6VjthyHO3Y/kpK/emflxDBNhlNUPfh7wE39KnuDdOituXomIbyI79vBtF0Ninpkh72mcuRHo+RG3Q=="; - }; - }; "token-types-4.2.1" = { name = "token-types"; packageName = "token-types"; @@ -41435,15 +38375,6 @@ let sha512 = "605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw=="; }; }; - "torrent-discovery-11.0.15" = { - name = "torrent-discovery"; - packageName = "torrent-discovery"; - version = "11.0.15"; - src = fetchurl { - url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-11.0.15.tgz"; - sha512 = "O5kCZ/PDcK0PMD5lH4VdwUrL4Wfe1Kt3pjcrMp3yieNQq/ZcnLuae6jnjSvpzoa7DxpYc5OqhkiIOYGyvj1tbA=="; - }; - }; "torrent-discovery-5.4.0" = { name = "torrent-discovery"; packageName = "torrent-discovery"; @@ -41462,15 +38393,6 @@ let sha512 = "ElXPyXKKG73o+uziHJ8qlYE9EuyDVxnK2zWL+pW/2bma7RsLpSwFFIJAb8Qui7/tel2hsHQW1z3zBnfQNREpWA=="; }; }; - "torrent-piece-3.0.1" = { - name = "torrent-piece"; - packageName = "torrent-piece"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/torrent-piece/-/torrent-piece-3.0.1.tgz"; - sha512 = "EvCqfOkNm3PXqgaGPVVmp0JlGC8fDpH+8Yt5uUiF4oCrAqy3htyUFxK1DJpneWfg1fFdeTKsstxLxQUrHpmocA=="; - }; - }; "torrent-stream-1.2.1" = { name = "torrent-stream"; packageName = "torrent-stream"; @@ -41525,15 +38447,6 @@ let sha512 = "N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="; }; }; - "tr46-1.0.1" = { - name = "tr46"; - packageName = "tr46"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz"; - sha512 = "dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA=="; - }; - }; "tr46-2.1.0" = { name = "tr46"; packageName = "tr46"; @@ -41579,13 +38492,13 @@ let sha512 = "CmyY7d0OYE5W6UCmvij+SaocG7z+q4roF+Oj7BtU8B+KlpdiRZRMUwNyqfmWYcpYgsOcY1/dfIx/VsLmbAOLGg=="; }; }; - "tree-kit-0.8.7" = { + "tree-kit-0.8.8" = { name = "tree-kit"; packageName = "tree-kit"; - version = "0.8.7"; + version = "0.8.8"; src = fetchurl { - url = "https://registry.npmjs.org/tree-kit/-/tree-kit-0.8.7.tgz"; - sha512 = "BA/cp8KBvbBDkunxIuoBqzz3pYHL7J8QdzbKohK09urOpHFYqEe/xWGKkECEQG+LvfREd1GNqH3643GYFX8wSQ=="; + url = "https://registry.npmjs.org/tree-kit/-/tree-kit-0.8.8.tgz"; + sha512 = "L7zwpXp0/Nha6mljVcVOnhhxuCkFRWmt26wza3TKnyMBewid4F2vyiVdcSsw41ZoG1Wj+3lM48Er9lhttbxfLA=="; }; }; "trim-lines-3.0.1" = { @@ -41957,13 +38870,13 @@ let sha512 = "tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g=="; }; }; - "type-fest-4.35.0" = { + "type-fest-4.37.0" = { name = "type-fest"; packageName = "type-fest"; - version = "4.35.0"; + version = "4.37.0"; src = fetchurl { - url = "https://registry.npmjs.org/type-fest/-/type-fest-4.35.0.tgz"; - sha512 = "2/AwEFQDFEy30iOLjrvHDIH7e4HEWH+f1Yl1bI5XMqzuoCUqwYCdxachgsgv0og/JdVZUhbfjcJAoHj5L1753A=="; + url = "https://registry.npmjs.org/type-fest/-/type-fest-4.37.0.tgz"; + sha512 = "S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg=="; }; }; "type-is-1.6.18" = { @@ -42029,22 +38942,22 @@ let sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; }; }; - "typedoc-0.26.11" = { + "typedoc-0.27.9" = { name = "typedoc"; packageName = "typedoc"; - version = "0.26.11"; + version = "0.27.9"; src = fetchurl { - url = "https://registry.npmjs.org/typedoc/-/typedoc-0.26.11.tgz"; - sha512 = "sFEgRRtrcDl2FxVP58Ze++ZK2UQAEvtvvH8rRlig1Ja3o7dDaMHmaBfvJmdGnNEFaLTpQsN8dpvZaTqJSu/Ugw=="; + url = "https://registry.npmjs.org/typedoc/-/typedoc-0.27.9.tgz"; + sha512 = "/z585740YHURLl9DN2jCWe6OW7zKYm6VoQ93H0sxZ1cwHQEQrUn5BJrEnkWhfzUdyO+BLGjnKUZ9iz9hKloFDw=="; }; }; - "typedoc-plugin-markdown-4.2.10" = { + "typedoc-plugin-markdown-4.4.2" = { name = "typedoc-plugin-markdown"; packageName = "typedoc-plugin-markdown"; - version = "4.2.10"; + version = "4.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-4.2.10.tgz"; - sha512 = "PLX3pc1/7z13UJm4TDE9vo9jWGcClFUErXXtd5LdnoLjV6mynPpqZLU992DwMGFSRqJFZeKbVyqlNNeNHnk2tQ=="; + url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-4.4.2.tgz"; + sha512 = "kJVkU2Wd+AXQpyL6DlYXXRrfNrHrEIUgiABWH8Z+2Lz5Sq6an4dQ/hfvP75bbokjNDUskOdFlEEm/0fSVyC7eg=="; }; }; "typescript-4.9.5" = { @@ -42074,31 +38987,22 @@ let sha512 = "Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q=="; }; }; - "typescript-5.6.3" = { + "typescript-5.8.2" = { name = "typescript"; packageName = "typescript"; - version = "5.6.3"; + version = "5.8.2"; src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz"; - sha512 = "hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw=="; + url = "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz"; + sha512 = "aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ=="; }; }; - "typescript-5.7.3" = { + "typescript-5.9.0-dev.20250314" = { name = "typescript"; packageName = "typescript"; - version = "5.7.3"; + version = "5.9.0-dev.20250314"; src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz"; - sha512 = "84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw=="; - }; - }; - "typescript-5.9.0-dev.20250224" = { - name = "typescript"; - packageName = "typescript"; - version = "5.9.0-dev.20250224"; - src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-5.9.0-dev.20250224.tgz"; - sha512 = "hE9YCxxyOJDBJhEo6w3veHldQw5ry0nhuTzaPU2UZe37YsBIC5kaOVdzeA+IUh4cgYWKe60B1vuC4GN8Q4a0SA=="; + url = "https://registry.npmjs.org/typescript/-/typescript-5.9.0-dev.20250314.tgz"; + sha512 = "b9eLo5FjlR0BRMsYIxZYCrtTTUu97N1bh+DpQFCEm5OfRGzUg/Oc09fgct4jA4NF7R5Yg9oxWqVT90uto1TsvA=="; }; }; "typical-2.6.1" = { @@ -42110,33 +39014,6 @@ let sha512 = "ofhi8kjIje6npGozTip9Fr8iecmYfEbS06i0JnIg+rh51KakryWF4+jX8lLKZVhy6N+ID45WYSFCxPOdTWCzNg=="; }; }; - "ua-parser-js-0.7.20" = { - name = "ua-parser-js"; - packageName = "ua-parser-js"; - version = "0.7.20"; - src = fetchurl { - url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.20.tgz"; - sha512 = "8OaIKfzL5cpx8eCMAhhvTlft8GYF8b2eQr6JkCyVdrgjcytyOmPCXrqXFcUnhonRpLlh5yxEZVohm6mzaowUOw=="; - }; - }; - "ua-parser-js-0.7.21" = { - name = "ua-parser-js"; - packageName = "ua-parser-js"; - version = "0.7.21"; - src = fetchurl { - url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.21.tgz"; - sha512 = "+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ=="; - }; - }; - "ua-parser-js-1.0.33" = { - name = "ua-parser-js"; - packageName = "ua-parser-js"; - version = "1.0.33"; - src = fetchurl { - url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.33.tgz"; - sha512 = "RqshF7TPTE0XLYAqmjlu5cLLuGdKrNu9O1KLA/qp39QtbZwuzwv1dT46DZSopoUMsYgXpB3Cv8a03FI8b74oFQ=="; - }; - }; "ua-parser-js-1.0.40" = { name = "ua-parser-js"; packageName = "ua-parser-js"; @@ -42209,15 +39086,6 @@ let sha512 = "KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA=="; }; }; - "uint8-util-2.2.5" = { - name = "uint8-util"; - packageName = "uint8-util"; - version = "2.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/uint8-util/-/uint8-util-2.2.5.tgz"; - sha512 = "/QxVQD7CttWpVUKVPz9znO+3Dd4BdTSnFQ7pv/4drVhC9m4BaL2LFHTkJn6EsYoxT79VDq/2Gg8L0H22PrzyMw=="; - }; - }; "uint8array-extras-0.3.0" = { name = "uint8array-extras"; packageName = "uint8array-extras"; @@ -42281,15 +39149,6 @@ let sha512 = "eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg=="; }; }; - "uncss-0.17.3" = { - name = "uncss"; - packageName = "uncss"; - version = "0.17.3"; - src = fetchurl { - url = "https://registry.npmjs.org/uncss/-/uncss-0.17.3.tgz"; - sha512 = "ksdDWl81YWvF/X14fOSw4iu8tESDHFIeyKIeDrK6GEVTQvqJc1WlOEXqostNwOCi3qAj++4EaLsdAgPmUbEyog=="; - }; - }; "undeclared-identifiers-1.1.3" = { name = "undeclared-identifiers"; packageName = "undeclared-identifiers"; @@ -43037,15 +39896,6 @@ let sha512 = "AURroAsb73BZ6CdAyMrTk/hYKNj3DuYYEuOaB8bYMOHGKupRNScw90Q5C71tWJc3uE7dIeXRyuwN0xLLq3vDTg=="; }; }; - "unordered-array-remove-1.0.2" = { - name = "unordered-array-remove"; - packageName = "unordered-array-remove"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/unordered-array-remove/-/unordered-array-remove-1.0.2.tgz"; - sha512 = "45YsfD6svkgaCBNyvD+dFHm4qFX9g3wRSIVgWVPtm2OCnphvPxzJoe20ATsiNpNJrmzHifnxm+BN5F7gFT/4gw=="; - }; - }; "unorm-1.6.0" = { name = "unorm"; packageName = "unorm"; @@ -43118,13 +39968,13 @@ let sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; }; }; - "update-browserslist-db-1.1.2" = { + "update-browserslist-db-1.1.3" = { name = "update-browserslist-db"; packageName = "update-browserslist-db"; - version = "1.1.2"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz"; - sha512 = "PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg=="; + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz"; + sha512 = "UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw=="; }; }; "update-check-1.5.4" = { @@ -43172,24 +40022,6 @@ let sha512 = "+dwUY4L35XFYEzE+OAL3sarJdUioVovq+8f7lcIJ7wnmnYQV5UD1Y/lcwaMSyaQ6Bj3JMj1XSTjZbNLHn/19yA=="; }; }; - "upnp-device-client-1.0.2" = { - name = "upnp-device-client"; - packageName = "upnp-device-client"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/upnp-device-client/-/upnp-device-client-1.0.2.tgz"; - sha512 = "5BcYJJU5wXR6xGko/UuLSavybAA0sZx17Hka4ikOXwA9Ze3fiExmgUDytAXE5qjdbKzARl0lOLC3hPSUwAa3eQ=="; - }; - }; - "upnp-mediarenderer-client-1.4.0" = { - name = "upnp-mediarenderer-client"; - packageName = "upnp-mediarenderer-client"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/upnp-mediarenderer-client/-/upnp-mediarenderer-client-1.4.0.tgz"; - sha512 = "F+C3Yceoz0j3ZWEchz5tpaOEqkbpObRUmeuPGc9+2u2YvC1CDbXGQ6mjbM10MDhnUJ0tTWYTufpj6xsWctnULw=="; - }; - }; "upper-case-1.1.3" = { name = "upper-case"; packageName = "upper-case"; @@ -43244,15 +40076,6 @@ let sha512 = "oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg=="; }; }; - "url-join-4.0.1" = { - name = "url-join"; - packageName = "url-join"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz"; - sha512 = "jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA=="; - }; - }; "url-join-5.0.0" = { name = "url-join"; packageName = "url-join"; @@ -43316,15 +40139,6 @@ let sha512 = "H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg=="; }; }; - "urlsafe-base64-1.0.0" = { - name = "urlsafe-base64"; - packageName = "urlsafe-base64"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/urlsafe-base64/-/urlsafe-base64-1.0.0.tgz"; - sha512 = "RtuPeMy7c1UrHwproMZN9gN6kiZ0SvJwRaEzwZY0j9MypEkFqyBaKv176jvlPtg58Zh36bOkS0NFABXMHvvGCA=="; - }; - }; "use-3.1.1" = { name = "use"; packageName = "use"; @@ -43352,24 +40166,6 @@ let sha512 = "PCKbdWw85JsYMvmCv5GH3kXmM66rCd9m1hBEDutPNv94b/pqCMT4NtcKyeWYvLFiE8b+ha1Jdl8XAaUdPn5QTg=="; }; }; - "ut_metadata-4.0.3" = { - name = "ut_metadata"; - packageName = "ut_metadata"; - version = "4.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ut_metadata/-/ut_metadata-4.0.3.tgz"; - sha512 = "2tovup0VDYpT8t8+EhhhKBmbgIyiYyJQZ+Hf+/61+SvjuRS2MEeA5CiSARP4q+9/83Wu09OsGrUre/Zv6OI5NA=="; - }; - }; - "ut_pex-4.0.4" = { - name = "ut_pex"; - packageName = "ut_pex"; - version = "4.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/ut_pex/-/ut_pex-4.0.4.tgz"; - sha512 = "isVTbp2TKGoMOu+4Zh/i6ijpYr0VG83xjRPgCXaUjKzgXXndjCMWg32/9kZjubD+kxEXcmXMkoS8IttS9FZE8g=="; - }; - }; "utf-8-validate-5.0.10" = { name = "utf-8-validate"; packageName = "utf-8-validate"; @@ -43514,15 +40310,6 @@ let sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA=="; }; }; - "uuid-3.3.3" = { - name = "uuid"; - packageName = "uuid"; - version = "3.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz"; - sha512 = "pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ=="; - }; - }; "uuid-3.4.0" = { name = "uuid"; packageName = "uuid"; @@ -43541,15 +40328,6 @@ let sha512 = "jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw=="; }; }; - "uuid-8.3.0" = { - name = "uuid"; - packageName = "uuid"; - version = "8.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/uuid/-/uuid-8.3.0.tgz"; - sha512 = "fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ=="; - }; - }; "uuid-8.3.2" = { name = "uuid"; packageName = "uuid"; @@ -43730,15 +40508,6 @@ let sha512 = "yeYyCFquU8aXjAZwKfgMpkwW1Wj9Ea/G/SG5dUTN07WNu8chJ4dAkYFXqOylIlpHNt/EobdQpiQNDNMzq1/EQw=="; }; }; - "vasync-2.2.1" = { - name = "vasync"; - packageName = "vasync"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/vasync/-/vasync-2.2.1.tgz"; - sha512 = "Hq72JaTpcTFdWiNA4Y22Amej2GH3BFmBaKPPlDZ4/oC8HNn2ISHLkFrJU4Ds8R3jcUi7oo5Y9jcMHKjES+N9wQ=="; - }; - }; "vega-5.32.0" = { name = "vega"; packageName = "vega"; @@ -44261,15 +41030,6 @@ let sha512 = "BAEvWxbBUXvlNoFQVFVHpybBbjW1r03WhohJzJDSfgrrK5xVYIDTan6xN14DlyImShgDRv2gl9qhM6irVMsV0Q=="; }; }; - "vlc-command-1.2.0" = { - name = "vlc-command"; - packageName = "vlc-command"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vlc-command/-/vlc-command-1.2.0.tgz"; - sha512 = "YTr1w5KmxRN5CBCvplKOD6g/OjwCl5iz+SIjDbq8gWTkByYZun5duHm+OLUkBlbJrCGvMyFyNhTMQxV4Ny0v8g=="; - }; - }; "vls-0.7.6" = { name = "vls"; packageName = "vls"; @@ -44621,15 +41381,6 @@ let sha512 = "z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ=="; }; }; - "w3c-xmlserializer-1.1.2" = { - name = "w3c-xmlserializer"; - packageName = "w3c-xmlserializer"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz"; - sha512 = "p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg=="; - }; - }; "w3c-xmlserializer-2.0.0" = { name = "w3c-xmlserializer"; packageName = "w3c-xmlserializer"; @@ -44711,33 +41462,6 @@ let sha512 = "bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ=="; }; }; - "web-push-3.4.1" = { - name = "web-push"; - packageName = "web-push"; - version = "3.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/web-push/-/web-push-3.4.1.tgz"; - sha512 = "wtx18llPtWWW+x8hv+Gxvz+2VjO+vZuyihInsjySNpNGNVswH1Bb2KkbbCtE96yi52VUmbFMdidxM8kJAPaSWQ=="; - }; - }; - "web-push-3.4.4" = { - name = "web-push"; - packageName = "web-push"; - version = "3.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/web-push/-/web-push-3.4.4.tgz"; - sha512 = "tB0F+ccobsfw5jTWBinWJKyd/YdCdRbKj+CFSnsJeEgFYysOULvWFYyeCxn9KuQvG/3UF1t3cTAcJzBec5LCWA=="; - }; - }; - "web-push-3.4.5" = { - name = "web-push"; - packageName = "web-push"; - version = "3.4.5"; - src = fetchurl { - url = "https://registry.npmjs.org/web-push/-/web-push-3.4.5.tgz"; - sha512 = "2njbTqZ6Q7ZqqK14YpK1GGmaZs3NmuGYF5b7abCXulUIWFSlSYcZ3NBJQRFcMiQDceD7vQknb8FUuvI1F7Qe/g=="; - }; - }; "web-streams-polyfill-3.3.3" = { name = "web-streams-polyfill"; packageName = "web-streams-polyfill"; @@ -44810,15 +41534,6 @@ let sha512 = "2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="; }; }; - "webidl-conversions-4.0.2" = { - name = "webidl-conversions"; - packageName = "webidl-conversions"; - version = "4.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz"; - sha512 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="; - }; - }; "webidl-conversions-5.0.0" = { name = "webidl-conversions"; packageName = "webidl-conversions"; @@ -44864,15 +41579,6 @@ let sha512 = "/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w=="; }; }; - "webrtc-polyfill-1.1.10" = { - name = "webrtc-polyfill"; - packageName = "webrtc-polyfill"; - version = "1.1.10"; - src = fetchurl { - url = "https://registry.npmjs.org/webrtc-polyfill/-/webrtc-polyfill-1.1.10.tgz"; - sha512 = "sOn0bj3/noUdzQX7rvk0jFbBurqWDGGo2ipl+WfgoOe/x3cxbGLk/ZUY+WHCISSlLaIeBumi1X3wxQZnUESExQ=="; - }; - }; "websocket-driver-0.7.4" = { name = "websocket-driver"; packageName = "websocket-driver"; @@ -44891,15 +41597,6 @@ let sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; }; }; - "webtorrent-2.5.19" = { - name = "webtorrent"; - packageName = "webtorrent"; - version = "2.5.19"; - src = fetchurl { - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-2.5.19.tgz"; - sha512 = "5SW5xGlBPIlP7m3f6gecJ83H2BSvoan5gzaAyMnDiQfXxxt5Ja5FAfZ16n1rdnD1WL/Iz+y4fE7or/a9egoF9A=="; - }; - }; "whatwg-encoding-1.0.5" = { name = "whatwg-encoding"; packageName = "whatwg-encoding"; @@ -44954,15 +41651,6 @@ let sha512 = "saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw=="; }; }; - "whatwg-url-7.1.0" = { - name = "whatwg-url"; - packageName = "whatwg-url"; - version = "7.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz"; - sha512 = "WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg=="; - }; - }; "whatwg-url-8.7.0" = { name = "whatwg-url"; packageName = "whatwg-url"; @@ -45071,13 +41759,13 @@ let sha512 = "MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw=="; }; }; - "which-typed-array-1.1.18" = { + "which-typed-array-1.1.19" = { name = "which-typed-array"; packageName = "which-typed-array"; - version = "1.1.18"; + version = "1.1.19"; src = fetchurl { - url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz"; - sha512 = "qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA=="; + url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz"; + sha512 = "rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="; }; }; "wide-align-1.1.5" = { @@ -45170,15 +41858,6 @@ let sha512 = "IHpzORub7kYlb8A43Iig3reOvlcBJGX9gZ0WycHhghHtA65X0LYnMRuJs+aH1abVnMJztQkvQNlltnbPi5aGIA=="; }; }; - "winreg-1.2.5" = { - name = "winreg"; - packageName = "winreg"; - version = "1.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/winreg/-/winreg-1.2.5.tgz"; - sha512 = "uf7tHf+tw0B1y+x+mKTLHkykBgK2KMs3g+KlzmyMbLvICSHQyB/xOFjTT8qZ3oeTFyU7Bbj4FzXitGG6jvKhYw=="; - }; - }; "winston-0.6.2" = { name = "winston"; packageName = "winston"; @@ -45233,15 +41912,6 @@ let sha512 = "8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A=="; }; }; - "with-open-file-0.1.7" = { - name = "with-open-file"; - packageName = "with-open-file"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/with-open-file/-/with-open-file-0.1.7.tgz"; - sha512 = "ecJS2/oHtESJ1t3ZfMI3B7KIDKyfN0O16miWxdn30zdh66Yd3LsRFebXZXq6GU4xfxLf6nVxp9kIqElb5fqczA=="; - }; - }; "word-wrap-1.2.5" = { name = "word-wrap"; packageName = "word-wrap"; @@ -45449,24 +42119,6 @@ let sha512 = "61a+9LgtYZxTq1hAonhX8Xwpo2riK4IOR/BIVxioFbCfc3QFKmpE4x9dLExfLHKtUfVZigYa36tThVhO57erEw=="; }; }; - "ws-6.1.4" = { - name = "ws"; - packageName = "ws"; - version = "6.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-6.1.4.tgz"; - sha512 = "eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA=="; - }; - }; - "ws-6.2.3" = { - name = "ws"; - packageName = "ws"; - version = "6.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz"; - sha512 = "jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA=="; - }; - }; "ws-7.5.10" = { name = "ws"; packageName = "ws"; @@ -45476,15 +42128,6 @@ let sha512 = "+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ=="; }; }; - "ws-8.11.0" = { - name = "ws"; - packageName = "ws"; - version = "8.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz"; - sha512 = "HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg=="; - }; - }; "ws-8.17.1" = { name = "ws"; packageName = "ws"; @@ -45656,15 +42299,6 @@ let sha512 = "drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA=="; }; }; - "xml2js-0.6.2" = { - name = "xml2js"; - packageName = "xml2js"; - version = "0.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz"; - sha512 = "T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA=="; - }; - }; "xmlbuilder-11.0.1" = { name = "xmlbuilder"; packageName = "xmlbuilder"; @@ -45728,15 +42362,6 @@ let sha512 = "yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ=="; }; }; - "xmlhttprequest-ssl-1.5.5" = { - name = "xmlhttprequest-ssl"; - packageName = "xmlhttprequest-ssl"; - version = "1.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz"; - sha512 = "/bFPLUgJrfGUL10AIv4Y7/CUt6so9CLtB/oFxQSHseSDNNCdC6vwwKEqwLN6wNPBg9YWXAiMu8jkf6RPRS/75Q=="; - }; - }; "xmlhttprequest-ssl-1.6.3" = { name = "xmlhttprequest-ssl"; packageName = "xmlhttprequest-ssl"; @@ -46016,33 +42641,6 @@ let sha512 = "7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA=="; }; }; - "yarn-1.19.1" = { - name = "yarn"; - packageName = "yarn"; - version = "1.19.1"; - src = fetchurl { - url = "https://registry.npmjs.org/yarn/-/yarn-1.19.1.tgz"; - sha512 = "gBnfbL9rYY05Gt0cjJhs/siqQXHYlZalTjK3nXn2QO20xbkIFPob+LlH44ML47GcR4VU9/2dYck1BWFM0Javxw=="; - }; - }; - "yarn-1.22.17" = { - name = "yarn"; - packageName = "yarn"; - version = "1.22.17"; - src = fetchurl { - url = "https://registry.npmjs.org/yarn/-/yarn-1.22.17.tgz"; - sha512 = "H0p241BXaH0UN9IeH//RT82tl5PfNraVpSpEoW+ET7lmopNC61eZ+A+IDvU8FM6Go5vx162SncDL8J1ZjRBriQ=="; - }; - }; - "yarn-1.22.4" = { - name = "yarn"; - packageName = "yarn"; - version = "1.22.4"; - src = fetchurl { - url = "https://registry.npmjs.org/yarn/-/yarn-1.22.4.tgz"; - sha512 = "oYM7hi/lIWm9bCoDMEWgffW8aiNZXCWeZ1/tGy0DWrN6vmzjCXIKu2Y21o8DYVBUtiktwKcNoxyGl/2iKLUNGA=="; - }; - }; "yauzl-2.10.0" = { name = "yauzl"; packageName = "yauzl"; @@ -46097,13 +42695,13 @@ let sha512 = "rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="; }; }; - "yocto-queue-1.1.1" = { + "yocto-queue-1.2.0" = { name = "yocto-queue"; packageName = "yocto-queue"; - version = "1.1.1"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz"; - sha512 = "b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g=="; + url = "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.0.tgz"; + sha512 = "KHBC7z61OJeaMGnF3wqNZj+GGNXOyypZviiKpQeiHirG5Ib1ImwcLBH70rbMSkKfSmUNBsdf2PwaEJtKvgmkNw=="; }; }; "yoctocolors-2.1.1" = { @@ -46124,6 +42722,15 @@ let sha512 = "cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA=="; }; }; + "yoga-layout-3.2.1" = { + name = "yoga-layout"; + packageName = "yoga-layout"; + version = "3.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/yoga-layout/-/yoga-layout-3.2.1.tgz"; + sha512 = "0LPOt3AxKqMdFBZA3HBAt/t/8vIKq7VaQYbuA8WxCgung+p9TVyKRYdpvCb80HcdTN2NkbIKbhNwKUfm3tQywQ=="; + }; + }; "yoga-layout-prebuilt-1.10.0" = { name = "yoga-layout-prebuilt"; packageName = "yoga-layout-prebuilt"; @@ -46133,15 +42740,6 @@ let sha512 = "YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g=="; }; }; - "yoga-wasm-web-0.3.3" = { - name = "yoga-wasm-web"; - packageName = "yoga-wasm-web"; - version = "0.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/yoga-wasm-web/-/yoga-wasm-web-0.3.3.tgz"; - sha512 = "N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA=="; - }; - }; "yurnalist-2.1.0" = { name = "yurnalist"; packageName = "yurnalist"; @@ -46229,26 +42827,26 @@ in "@angular/cli" = nodeEnv.buildNodePackage { name = "_at_angular_slash_cli"; packageName = "@angular/cli"; - version = "19.1.8"; + version = "19.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@angular/cli/-/cli-19.1.8.tgz"; - sha512 = "JmdLj8110DNWaxL03K7I06+nLyBfXgiIqYyrQx5QO9AodGkKHK5rE+7VD8MjZhUymua57HToD0oHaQgThJwTJQ=="; + url = "https://registry.npmjs.org/@angular/cli/-/cli-19.2.3.tgz"; + sha512 = "p6w/ZsVjF9htE0BnFraKVCtd/Fx5UolVuGyTl4VOKBsml0ebDgzkfaiMRqI06F1BMOnwOszEZvTcduXA/Fwf+Q=="; }; dependencies = [ - sources."@angular-devkit/architect-0.1901.8" - sources."@angular-devkit/core-19.1.8" - sources."@angular-devkit/schematics-19.1.8" + sources."@angular-devkit/architect-0.1902.3" + sources."@angular-devkit/core-19.2.3" + sources."@angular-devkit/schematics-19.2.3" ( - sources."@inquirer/checkbox-4.1.2" + sources."@inquirer/checkbox-4.1.3" // { dependencies = [ sources."ansi-escapes-4.3.2" ]; } ) - sources."@inquirer/confirm-5.1.6" + sources."@inquirer/confirm-5.1.7" ( - sources."@inquirer/core-10.1.7" + sources."@inquirer/core-10.1.8" // { dependencies = [ sources."ansi-escapes-4.3.2" @@ -46256,31 +42854,31 @@ in ]; } ) - sources."@inquirer/editor-4.2.7" - sources."@inquirer/expand-4.0.9" - sources."@inquirer/figures-1.0.10" - sources."@inquirer/input-4.1.6" - sources."@inquirer/number-3.0.9" + sources."@inquirer/editor-4.2.8" + sources."@inquirer/expand-4.0.10" + sources."@inquirer/figures-1.0.11" + sources."@inquirer/input-4.1.7" + sources."@inquirer/number-3.0.10" ( - sources."@inquirer/password-4.0.9" + sources."@inquirer/password-4.0.10" // { dependencies = [ sources."ansi-escapes-4.3.2" ]; } ) - sources."@inquirer/prompts-7.2.1" - sources."@inquirer/rawlist-4.0.9" - sources."@inquirer/search-3.0.9" + sources."@inquirer/prompts-7.3.2" + sources."@inquirer/rawlist-4.0.10" + sources."@inquirer/search-3.0.10" ( - sources."@inquirer/select-4.0.9" + sources."@inquirer/select-4.0.10" // { dependencies = [ sources."ansi-escapes-4.3.2" ]; } ) - sources."@inquirer/type-3.0.4" + sources."@inquirer/type-3.0.5" ( sources."@isaacs/cliui-8.0.2" // { @@ -46330,7 +42928,7 @@ in ) sources."@npmcli/redact-3.1.1" ( - sources."@npmcli/run-script-9.0.2" + sources."@npmcli/run-script-9.1.0" // { dependencies = [ sources."isexe-3.1.1" @@ -46338,7 +42936,7 @@ in ]; } ) - sources."@schematics/angular-19.1.8" + sources."@schematics/angular-19.2.3" sources."@sigstore/bundle-3.1.0" sources."@sigstore/core-2.0.0" sources."@sigstore/protobuf-specs-0.4.0" @@ -46347,7 +42945,7 @@ in sources."@sigstore/verify-2.1.0" sources."@tufjs/canonical-json-2.0.0" sources."@tufjs/models-3.0.1" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."@yarnpkg/lockfile-1.1.0" sources."abbrev-3.0.0" sources."agent-base-7.1.3" @@ -46480,7 +43078,7 @@ in sources."minipass-7.1.2" sources."minipass-collect-2.0.1" ( - sources."minipass-fetch-4.0.0" + sources."minipass-fetch-4.0.1" // { dependencies = [ sources."minizlib-3.0.1" @@ -46541,7 +43139,7 @@ in sources."npm-bundled-4.0.0" sources."npm-install-checks-7.1.1" sources."npm-normalize-package-bin-4.0.0" - sources."npm-package-arg-12.0.1" + sources."npm-package-arg-12.0.2" sources."npm-packlist-9.0.0" sources."npm-pick-manifest-10.0.0" ( @@ -46586,7 +43184,7 @@ in sources."rxjs-7.8.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.6.3" + sources."semver-7.7.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-4.1.0" @@ -46667,11 +43265,17 @@ in "@antfu/ni" = nodeEnv.buildNodePackage { name = "_at_antfu_slash_ni"; packageName = "@antfu/ni"; - version = "23.3.1"; + version = "24.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@antfu/ni/-/ni-23.3.1.tgz"; - sha512 = "C90iyzm/jLV7Lomv2UzwWUzRv9WZr1oRsFRKsX5HjQL4EXrbi9H/RtBkjCP+NF+ABZXUKpAa4F1dkoTaea4zHg=="; + url = "https://registry.npmjs.org/@antfu/ni/-/ni-24.2.0.tgz"; + sha512 = "+B9wzpv+KOhqbOgHjHcBAX7IwIKdDt4SFzYlxIPr4srANFJfjAABC7nU8KNFba+DYLymRe2EPSUfE7+reJb5UA=="; }; + dependencies = [ + sources."ansis-3.17.0" + sources."fzf-0.5.2" + sources."package-manager-detector-1.0.0" + sources."tinyexec-0.3.2" + ]; buildInputs = globalBuildInputs; meta = { description = "Use the right package manager"; @@ -46695,14 +43299,14 @@ in sources."@babel/code-frame-7.26.2" sources."@babel/compat-data-7.26.8" ( - sources."@babel/core-7.26.9" + sources."@babel/core-7.26.10" // { dependencies = [ sources."semver-6.3.1" ]; } ) - sources."@babel/generator-7.26.9" + sources."@babel/generator-7.26.10" ( sources."@babel/helper-compilation-targets-7.26.5" // { @@ -46716,11 +43320,11 @@ in sources."@babel/helper-string-parser-7.25.9" sources."@babel/helper-validator-identifier-7.25.9" sources."@babel/helper-validator-option-7.25.9" - sources."@babel/helpers-7.26.9" - sources."@babel/parser-7.26.9" + sources."@babel/helpers-7.26.10" + sources."@babel/parser-7.26.10" sources."@babel/template-7.26.9" - sources."@babel/traverse-7.26.9" - sources."@babel/types-7.26.9" + sources."@babel/traverse-7.26.10" + sources."@babel/types-7.26.10" sources."@jridgewell/gen-mapping-0.3.8" sources."@jridgewell/resolve-uri-3.1.2" sources."@jridgewell/set-array-1.2.1" @@ -46729,12 +43333,12 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."browserslist-4.24.4" - sources."caniuse-lite-1.0.30001700" + sources."caniuse-lite-1.0.30001704" sources."commander-6.2.1" sources."concat-map-0.0.1" sources."convert-source-map-2.0.0" sources."debug-4.4.0" - sources."electron-to-chromium-1.5.104" + sources."electron-to-chromium-1.5.118" sources."escalade-3.2.0" sources."fs-readdir-recursive-1.1.0" sources."fs.realpath-1.0.0" @@ -46757,7 +43361,7 @@ in sources."pify-4.0.1" sources."semver-5.7.2" sources."slash-2.0.0" - sources."update-browserslist-db-1.1.2" + sources."update-browserslist-db-1.1.3" sources."wrappy-1.0.2" sources."yallist-3.1.1" ]; @@ -46774,31 +43378,31 @@ in "@commitlint/cli" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_cli"; packageName = "@commitlint/cli"; - version = "19.7.1"; + version = "19.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/cli/-/cli-19.7.1.tgz"; - sha512 = "iObGjR1tE/PfDtDTEfd+tnRkB3/HJzpQqRTyofS2MPPkDn1mp3DBC8SoPDayokfAy+xKhF8+bwRCJO25Nea0YQ=="; + url = "https://registry.npmjs.org/@commitlint/cli/-/cli-19.8.0.tgz"; + sha512 = "t/fCrLVu+Ru01h0DtlgHZXbHV2Y8gKocTR5elDOqIRUzQd0/6hpt2VIWOj9b3NDo7y4/gfxeR2zRtXq/qO6iUg=="; }; dependencies = [ sources."@babel/code-frame-7.26.2" sources."@babel/helper-validator-identifier-7.25.9" - sources."@commitlint/config-validator-19.5.0" - sources."@commitlint/ensure-19.5.0" - sources."@commitlint/execute-rule-19.5.0" - sources."@commitlint/format-19.5.0" - sources."@commitlint/is-ignored-19.7.1" - sources."@commitlint/lint-19.7.1" - sources."@commitlint/load-19.6.1" - sources."@commitlint/message-19.5.0" - sources."@commitlint/parse-19.5.0" - sources."@commitlint/read-19.5.0" - sources."@commitlint/resolve-extends-19.5.0" - sources."@commitlint/rules-19.6.0" - sources."@commitlint/to-lines-19.5.0" - sources."@commitlint/top-level-19.5.0" - sources."@commitlint/types-19.5.0" + sources."@commitlint/config-validator-19.8.0" + sources."@commitlint/ensure-19.8.0" + sources."@commitlint/execute-rule-19.8.0" + sources."@commitlint/format-19.8.0" + sources."@commitlint/is-ignored-19.8.0" + sources."@commitlint/lint-19.8.0" + sources."@commitlint/load-19.8.0" + sources."@commitlint/message-19.8.0" + sources."@commitlint/parse-19.8.0" + sources."@commitlint/read-19.8.0" + sources."@commitlint/resolve-extends-19.8.0" + sources."@commitlint/rules-19.8.0" + sources."@commitlint/to-lines-19.8.0" + sources."@commitlint/top-level-19.8.0" + sources."@commitlint/types-19.8.0" sources."@types/conventional-commits-parser-5.0.1" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."JSONStream-1.3.5" sources."ajv-8.17.1" sources."ansi-regex-5.0.1" @@ -46876,14 +43480,14 @@ in sources."text-extensions-2.4.0" sources."through-2.3.8" sources."tinyexec-0.3.2" - sources."typescript-5.7.3" + sources."typescript-5.8.2" sources."undici-types-6.20.0" sources."unicorn-magic-0.1.0" sources."wrap-ansi-7.0.0" sources."y18n-5.0.8" sources."yargs-17.7.2" sources."yargs-parser-21.1.1" - sources."yocto-queue-1.1.1" + sources."yocto-queue-1.2.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46898,10 +43502,10 @@ in "@microsoft/rush" = nodeEnv.buildNodePackage { name = "_at_microsoft_slash_rush"; packageName = "@microsoft/rush"; - version = "5.149.1"; + version = "5.150.0"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.149.1.tgz"; - sha512 = "nn1Dy2KfRiS4elzp2kXjciaXUYiHqp/0BE6OnGB3Ahiqx25NzQOs6SOHPliYso0PxSPCuCGalEUDMFtvNJTtAw=="; + url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.150.0.tgz"; + sha512 = "3pJNzTPKWKnBQg+inQpq020AwXNOk0r4iD79ucWIKzKclrwShhOwGg2AnkC3+xDbMlsjIlgHRv8sD6Tjo7lq6w=="; }; dependencies = [ ( @@ -46921,7 +43525,7 @@ in } ) ( - sources."@azure/core-client-1.9.2" + sources."@azure/core-client-1.9.3" // { dependencies = [ sources."tslib-2.8.1" @@ -46946,7 +43550,7 @@ in } ) ( - sources."@azure/core-rest-pipeline-1.19.0" + sources."@azure/core-rest-pipeline-1.19.1" // { dependencies = [ sources."agent-base-7.1.3" @@ -46972,7 +43576,7 @@ in } ) ( - sources."@azure/core-xml-1.4.4" + sources."@azure/core-xml-1.4.5" // { dependencies = [ sources."tslib-2.8.1" @@ -47007,13 +43611,13 @@ in } ) sources."@babel/code-frame-7.26.2" - sources."@babel/generator-7.26.9" + sources."@babel/generator-7.26.10" sources."@babel/helper-string-parser-7.25.9" sources."@babel/helper-validator-identifier-7.25.9" - sources."@babel/parser-7.26.9" + sources."@babel/parser-7.26.10" sources."@babel/template-7.26.9" - sources."@babel/traverse-7.26.9" - sources."@babel/types-7.26.9" + sources."@babel/traverse-7.26.10" + sources."@babel/types-7.26.10" sources."@devexpress/error-stack-parser-2.0.6" sources."@jridgewell/gen-mapping-0.3.8" sources."@jridgewell/resolve-uri-3.1.2" @@ -47022,7 +43626,7 @@ in sources."@jridgewell/trace-mapping-0.3.25" sources."@jsep-plugin/assignment-1.3.0" sources."@jsep-plugin/regex-1.0.4" - sources."@microsoft/rush-lib-5.149.1" + sources."@microsoft/rush-lib-5.150.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -47093,7 +43697,7 @@ in } ) sources."@rushstack/heft-config-file-0.16.6" - sources."@rushstack/lookup-by-path-0.5.6" + sources."@rushstack/lookup-by-path-0.5.9" ( sources."@rushstack/node-core-library-5.11.0" // { @@ -47102,9 +43706,9 @@ in ]; } ) - sources."@rushstack/package-deps-hash-4.3.7" + sources."@rushstack/package-deps-hash-4.3.10" ( - sources."@rushstack/package-extractor-0.10.11" + sources."@rushstack/package-extractor-0.10.14" // { dependencies = [ sources."brace-expansion-1.1.11" @@ -47120,11 +43724,11 @@ in ]; } ) - sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.149.1" - sources."@rushstack/rush-azure-storage-build-cache-plugin-5.149.1" - sources."@rushstack/rush-http-build-cache-plugin-5.149.1" - sources."@rushstack/rush-sdk-5.149.1" - sources."@rushstack/stream-collator-4.1.85" + sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.150.0" + sources."@rushstack/rush-azure-storage-build-cache-plugin-5.150.0" + sources."@rushstack/rush-http-build-cache-plugin-5.150.0" + sources."@rushstack/rush-sdk-5.150.0" + sources."@rushstack/stream-collator-4.1.88" ( sources."@rushstack/terminal-0.15.0" // { @@ -47144,10 +43748,10 @@ in sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."@types/argparse-1.0.38" - sources."@types/lodash-4.17.15" + sources."@types/lodash-4.17.16" sources."@types/minimatch-3.0.5" sources."@types/minimist-1.2.5" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."@types/normalize-package-data-2.4.4" sources."@types/parse-json-4.0.2" sources."@vue/compiler-core-3.5.13" @@ -47319,8 +43923,8 @@ in sources."external-editor-3.1.0" sources."fast-deep-equal-3.1.3" sources."fast-glob-3.3.3" - sources."fast-xml-parser-4.5.3" - sources."fastq-1.19.0" + sources."fast-xml-parser-5.0.9" + sources."fastq-1.19.1" sources."figures-3.0.0" sources."fill-range-7.1.1" sources."find-up-4.1.0" @@ -47570,7 +44174,7 @@ in sources."multimatch-5.0.0" sources."mute-stream-0.0.8" sources."mz-2.7.0" - sources."nanoid-3.3.8" + sources."nanoid-3.3.9" sources."node-emoji-1.11.0" sources."normalize-package-data-3.0.3" sources."normalize-path-3.0.0" @@ -47741,7 +44345,7 @@ in sources."resolve-from-5.0.0" sources."responselike-1.0.2" sources."restore-cursor-3.1.0" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."rfc4648-1.5.4" sources."run-async-2.4.1" sources."run-parallel-1.2.0" @@ -47782,7 +44386,7 @@ in sources."strip-final-newline-2.0.0" sources."strip-indent-3.0.0" sources."strip-json-comments-2.0.1" - sources."strnum-1.1.1" + sources."strnum-2.0.5" sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."tapable-2.2.1" @@ -47860,7 +44464,7 @@ in sha512 = "8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ=="; }; dependencies = [ - sources."tailwindcss-4.0.8" + sources."tailwindcss-4.0.14" ]; buildInputs = globalBuildInputs; meta = { @@ -47882,7 +44486,7 @@ in }; dependencies = [ sources."mini-svg-data-uri-1.4.4" - sources."tailwindcss-4.0.8" + sources."tailwindcss-4.0.14" ]; buildInputs = globalBuildInputs; meta = { @@ -47903,7 +44507,7 @@ in sha512 = "5U6SY5z8N42VtrCrKlsTAA35gy2VSyYtHWCsg1H87NU1SXnEfekTVlrga9fzUDrrHcGi2Lb5KenUWb4lRQT5/g=="; }; dependencies = [ - sources."tailwindcss-4.0.8" + sources."tailwindcss-4.0.14" ]; buildInputs = globalBuildInputs; meta = { @@ -47929,7 +44533,7 @@ in sources."lodash.isplainobject-4.0.6" sources."lodash.merge-4.6.2" sources."postcss-selector-parser-6.0.10" - sources."tailwindcss-4.0.8" + sources."tailwindcss-4.0.14" sources."util-deprecate-1.0.2" ]; buildInputs = globalBuildInputs; @@ -47945,10 +44549,10 @@ in "@uppy/companion" = nodeEnv.buildNodePackage { name = "_at_uppy_slash_companion"; packageName = "@uppy/companion"; - version = "5.5.1"; + version = "5.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@uppy/companion/-/companion-5.5.1.tgz"; - sha512 = "uGyPjP6wyvEXYxLelgX4Mw/09fAXCqDpyow/krAKADIxvPu0FF3/TwN/PoBPw05ermfHgGufa0leX5qTnHGpEA=="; + url = "https://registry.npmjs.org/@uppy/companion/-/companion-5.5.2.tgz"; + sha512 = "5izGN8U64tdXMdZewoDn+12vtKddzp9X1F7q6yi3vFoWcSO4oTsCQYmpKrU8A1V/5iAsn3g+NALwA9SUpzb7Aw=="; }; dependencies = [ sources."@aws-crypto/crc32-5.2.0" @@ -47979,19 +44583,19 @@ in ]; } ) - sources."@aws-sdk/client-s3-3.750.0" - sources."@aws-sdk/client-sso-3.750.0" - sources."@aws-sdk/client-sts-3.750.0" - sources."@aws-sdk/core-3.750.0" - sources."@aws-sdk/credential-provider-env-3.750.0" - sources."@aws-sdk/credential-provider-http-3.750.0" - sources."@aws-sdk/credential-provider-ini-3.750.0" - sources."@aws-sdk/credential-provider-node-3.750.0" - sources."@aws-sdk/credential-provider-process-3.750.0" - sources."@aws-sdk/credential-provider-sso-3.750.0" - sources."@aws-sdk/credential-provider-web-identity-3.750.0" + sources."@aws-sdk/client-s3-3.758.0" + sources."@aws-sdk/client-sso-3.758.0" + sources."@aws-sdk/client-sts-3.758.0" + sources."@aws-sdk/core-3.758.0" + sources."@aws-sdk/credential-provider-env-3.758.0" + sources."@aws-sdk/credential-provider-http-3.758.0" + sources."@aws-sdk/credential-provider-ini-3.758.0" + sources."@aws-sdk/credential-provider-node-3.758.0" + sources."@aws-sdk/credential-provider-process-3.758.0" + sources."@aws-sdk/credential-provider-sso-3.758.0" + sources."@aws-sdk/credential-provider-web-identity-3.758.0" ( - sources."@aws-sdk/lib-storage-3.750.0" + sources."@aws-sdk/lib-storage-3.758.0" // { dependencies = [ sources."buffer-5.6.0" @@ -48001,7 +44605,7 @@ in sources."@aws-sdk/middleware-bucket-endpoint-3.734.0" sources."@aws-sdk/middleware-expect-continue-3.734.0" ( - sources."@aws-sdk/middleware-flexible-checksums-3.750.0" + sources."@aws-sdk/middleware-flexible-checksums-3.758.0" // { dependencies = [ sources."@smithy/is-array-buffer-4.0.0" @@ -48012,22 +44616,22 @@ in sources."@aws-sdk/middleware-location-constraint-3.734.0" sources."@aws-sdk/middleware-logger-3.734.0" sources."@aws-sdk/middleware-recursion-detection-3.734.0" - sources."@aws-sdk/middleware-sdk-s3-3.750.0" + sources."@aws-sdk/middleware-sdk-s3-3.758.0" sources."@aws-sdk/middleware-ssec-3.734.0" - sources."@aws-sdk/middleware-user-agent-3.750.0" - sources."@aws-sdk/nested-clients-3.750.0" + sources."@aws-sdk/middleware-user-agent-3.758.0" + sources."@aws-sdk/nested-clients-3.758.0" sources."@aws-sdk/region-config-resolver-3.734.0" - sources."@aws-sdk/s3-presigned-post-3.750.0" - sources."@aws-sdk/s3-request-presigner-3.750.0" - sources."@aws-sdk/signature-v4-multi-region-3.750.0" - sources."@aws-sdk/token-providers-3.750.0" + sources."@aws-sdk/s3-presigned-post-3.758.0" + sources."@aws-sdk/s3-request-presigner-3.758.0" + sources."@aws-sdk/signature-v4-multi-region-3.758.0" + sources."@aws-sdk/token-providers-3.758.0" sources."@aws-sdk/types-3.734.0" sources."@aws-sdk/util-arn-parser-3.723.0" sources."@aws-sdk/util-endpoints-3.743.0" sources."@aws-sdk/util-format-url-3.734.0" sources."@aws-sdk/util-locate-window-3.723.0" sources."@aws-sdk/util-user-agent-browser-3.734.0" - sources."@aws-sdk/util-user-agent-node-3.750.0" + sources."@aws-sdk/util-user-agent-node-3.758.0" sources."@aws-sdk/util-utf8-browser-3.259.0" sources."@aws-sdk/xml-builder-3.734.0" sources."@buttercup/fetch-0.2.1" @@ -48132,17 +44736,17 @@ in sources."@types/http-cache-semantics-4.0.4" sources."@types/http-errors-2.0.4" sources."@types/mime-1.3.5" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."@types/qs-6.9.18" sources."@types/range-parser-1.2.7" sources."@types/send-0.17.4" sources."@types/serve-static-1.15.7" - sources."@types/ws-8.5.14" + sources."@types/ws-8.18.0" sources."accepts-1.3.8" sources."array-flatten-1.1.1" sources."asynckit-0.4.0" - sources."aws-crt-1.25.3" - sources."axios-1.7.9" + sources."aws-crt-1.26.2" + sources."axios-1.8.3" sources."balanced-match-1.0.2" sources."base-64-1.0.0" sources."base64-js-1.5.1" @@ -48184,7 +44788,7 @@ in sources."cacheable-lookup-7.0.0" sources."cacheable-request-10.2.14" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."charenc-0.0.2" sources."cluster-key-slot-1.1.2" sources."combine-errors-3.0.3" @@ -48323,7 +44927,7 @@ in sources."ieee754-1.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ioredis-5.5.0" + sources."ioredis-5.6.0" sources."ipaddr.js-2.2.0" sources."is-buffer-1.1.6" sources."is-stream-2.0.1" @@ -48516,7 +45120,7 @@ in ]; } ) - sources."strnum-1.1.1" + sources."strnum-1.1.2" sources."supports-color-8.1.1" sources."tdigest-0.1.2" sources."toidentifier-1.0.1" @@ -48687,12 +45291,12 @@ in }; dependencies = [ sources."@babel/code-frame-7.26.2" - sources."@babel/generator-7.26.9" + sources."@babel/generator-7.26.10" sources."@babel/helper-string-parser-7.25.9" sources."@babel/helper-validator-identifier-7.25.9" - sources."@babel/parser-7.26.9" + sources."@babel/parser-7.26.10" sources."@babel/template-7.26.9" - sources."@babel/types-7.26.9" + sources."@babel/types-7.26.10" sources."@jridgewell/gen-mapping-0.3.8" sources."@jridgewell/resolve-uri-3.1.2" sources."@jridgewell/set-array-1.2.1" @@ -48801,12 +45405,12 @@ in sources."@types/minimist-1.2.5" sources."@types/ms-2.1.0" sources."@types/nlcst-1.0.4" - sources."@types/node-18.19.76" + sources."@types/node-18.19.80" sources."@types/normalize-package-data-2.4.4" sources."@types/supports-color-8.1.3" sources."@types/unist-2.0.11" sources."abbrev-2.0.0" - sources."acorn-8.14.0" + sources."acorn-8.14.1" sources."acorn-jsx-5.3.2" ( sources."ansi-align-3.0.1" @@ -48852,7 +45456,7 @@ in sources."character-entities-html4-2.1.0" sources."character-entities-legacy-3.0.0" sources."character-reference-invalid-2.0.1" - sources."ci-info-4.1.0" + sources."ci-info-4.2.0" sources."cli-boxes-3.0.0" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -48897,7 +45501,7 @@ in ]; } ) - sources."decode-named-character-reference-1.0.2" + sources."decode-named-character-reference-1.1.0" ( sources."decompress-response-6.0.0" // { @@ -49360,7 +45964,7 @@ in sources."yallist-4.0.0" sources."yaml-2.7.0" sources."yargs-parser-21.1.1" - sources."yocto-queue-1.1.1" + sources."yocto-queue-1.2.0" sources."zwitch-2.0.4" ]; buildInputs = globalBuildInputs; @@ -49432,10 +46036,10 @@ in aws-cdk = nodeEnv.buildNodePackage { name = "aws-cdk"; packageName = "aws-cdk"; - version = "2.1000.3"; + version = "2.1004.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.1000.3.tgz"; - sha512 = "y0sU603gGWpVTwqDw9MKVHg3e1t49Mvve6t3YDOvjeKY195Vu6dgHlHjW4h8n1vX04r49NKfpoApG60V8sMbdw=="; + url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.1004.0.tgz"; + sha512 = "3E5ICmSc7ZCZCwLX7NY+HFmmdUYgRaL+67h/BDoDQmkhx9StC8wG4xgzHFY9k8WQS0+ib/MP28f2d9yzHtQLlQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -49527,7 +46131,7 @@ in } ) sources."debug-4.4.0" - sources."decode-named-character-reference-1.0.2" + sources."decode-named-character-reference-1.1.0" ( sources."decompress-response-6.0.0" // { @@ -49558,7 +46162,7 @@ in sources."execa-9.5.2" sources."extend-3.0.2" sources."fast-glob-3.3.3" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."figures-6.1.0" sources."fill-range-7.1.1" sources."form-data-encoder-2.1.4" @@ -49645,8 +46249,8 @@ in sources."mdast-util-to-string-4.0.0" sources."meow-13.2.0" sources."merge2-1.4.1" - sources."micromark-4.0.1" - sources."micromark-core-commonmark-2.0.2" + sources."micromark-4.0.2" + sources."micromark-core-commonmark-2.0.3" sources."micromark-factory-destination-2.0.1" sources."micromark-factory-label-2.0.1" sources."micromark-factory-space-2.0.1" @@ -49663,9 +46267,9 @@ in sources."micromark-util-normalize-identifier-2.0.1" sources."micromark-util-resolve-all-2.0.1" sources."micromark-util-sanitize-uri-2.0.1" - sources."micromark-util-subtokenize-2.0.4" + sources."micromark-util-subtokenize-2.1.0" sources."micromark-util-symbol-2.0.1" - sources."micromark-util-types-2.0.1" + sources."micromark-util-types-2.0.2" sources."micromatch-4.0.8" sources."mimic-function-5.0.1" sources."mimic-response-4.0.0" @@ -49849,7 +46453,7 @@ in sources."resolve-alpn-1.2.1" sources."responselike-3.0.0" sources."restore-cursor-5.1.0" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."rimraf-2.7.1" sources."rmfr-2.0.0" sources."run-parallel-1.2.0" @@ -49884,7 +46488,7 @@ in sources."to-regex-range-5.0.1" sources."to-vfile-8.0.0" sources."trough-2.2.0" - sources."type-fest-4.35.0" + sources."type-fest-4.37.0" sources."unicorn-magic-0.3.0" sources."unified-11.0.5" sources."unified-lint-rule-3.0.1" @@ -50022,7 +46626,7 @@ in sources."cached-path-relative-1.1.0" sources."call-bind-1.0.8" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."cipher-base-1.0.6" sources."combine-source-map-0.8.0" sources."concat-map-0.0.1" @@ -50209,7 +46813,7 @@ in sources."util-0.12.5" sources."util-deprecate-1.0.2" sources."vm-browserify-1.1.2" - sources."which-typed-array-1.1.18" + sources."which-typed-array-1.1.19" sources."wrappy-1.0.2" sources."xtend-4.0.2" ]; @@ -50234,7 +46838,7 @@ in dependencies = [ sources."@socket.io/component-emitter-3.1.2" sources."@types/cors-2.8.17" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."accepts-1.3.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -50451,19 +47055,19 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "2.198.334"; + version = "2.200.17"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.198.334.tgz"; - sha512 = "ULWw7NOJ3n5+Eywel2OPqvXFqpNTfQtFAH3eBmlKeE+GBvVZ7omUjQgqknvJLbvvkCjfpfm+UA/rVhlxm/Nmjg=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.17.tgz"; + sha512 = "U2D0fL0cJerPAjnabvc8w1H1O2VficFw0RSWJ5phn+8u3pRhSxp00dILm4p/Dn/VNduXrdiV9s7dQENSXDuxdQ=="; }; dependencies = [ - sources."@jsii/check-node-1.108.0" - sources."@jsii/spec-1.108.0" + sources."@jsii/check-node-1.109.0" + sources."@jsii/spec-1.109.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@types/node-16.18.126" - sources."@xmldom/xmldom-0.9.7" + sources."@xmldom/xmldom-0.9.8" sources."ajv-8.17.1" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -50474,13 +47078,13 @@ in sources."braces-3.0.3" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdk8s-2.69.43" + sources."cdk8s-2.69.52" sources."cdk8s-plus-28-2.5.6" sources."chalk-4.1.2" sources."cliui-7.0.4" sources."clone-2.1.2" ( - sources."codemaker-1.108.0" + sources."codemaker-1.109.0" // { dependencies = [ sources."fs-extra-10.1.0" @@ -50503,7 +47107,7 @@ in sources."downlevel-dts-0.11.0" // { dependencies = [ - sources."typescript-5.9.0-dev.20250224" + sources."typescript-5.9.0-dev.20250314" ]; } ) @@ -50514,7 +47118,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-glob-3.3.3" sources."fast-uri-3.0.6" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."fill-range-7.1.1" sources."find-up-4.1.0" sources."flatted-3.3.3" @@ -50544,10 +47148,9 @@ in sources."is-glob-4.0.3" sources."is-number-7.0.0" ( - sources."jsii-5.7.6" + sources."jsii-5.8.0" // { dependencies = [ - sources."@jsii/check-node-1.107.0" sources."cliui-8.0.1" sources."yargs-17.7.2" sources."yargs-parser-21.1.1" @@ -50555,7 +47158,7 @@ in } ) ( - sources."jsii-pacmak-1.108.0" + sources."jsii-pacmak-1.109.0" // { dependencies = [ sources."fs-extra-10.1.0" @@ -50564,7 +47167,7 @@ in } ) ( - sources."jsii-reflect-1.108.0" + sources."jsii-reflect-1.109.0" // { dependencies = [ sources."fs-extra-10.1.0" @@ -50573,10 +47176,9 @@ in } ) ( - sources."jsii-rosetta-5.7.6" + sources."jsii-rosetta-5.8.0" // { dependencies = [ - sources."@jsii/check-node-1.107.0" sources."cliui-8.0.1" sources."yargs-17.7.2" sources."yargs-parser-21.1.1" @@ -50587,10 +47189,10 @@ in sources."jsii-srcmak-0.1.1236" // { dependencies = [ - sources."@jsii/check-node-1.107.0" + sources."@jsii/check-node-1.108.0" sources."cliui-8.0.1" sources."fs-extra-9.1.0" - sources."jsii-5.5.23" + sources."jsii-5.5.24" sources."typescript-5.5.4" sources."yargs-17.7.2" sources."yargs-parser-21.1.1" @@ -50614,7 +47216,7 @@ in sources."ncp-2.0.0" sources."no-case-3.0.4" sources."once-1.4.0" - sources."oo-ascii-tree-1.108.0" + sources."oo-ascii-tree-1.109.0" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" @@ -50628,7 +47230,7 @@ in sources."require-from-string-2.0.2" sources."require-main-filename-2.0.0" sources."resolve-1.22.10" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."rfdc-1.4.1" sources."run-parallel-1.2.0" sources."semver-7.7.1" @@ -50657,7 +47259,7 @@ in sources."table-6.9.0" sources."to-regex-range-5.0.1" sources."tslib-2.8.1" - sources."typescript-5.7.3" + sources."typescript-5.8.2" sources."universalify-2.0.1" sources."which-module-2.0.1" sources."workerpool-6.5.1" @@ -50714,10 +47316,10 @@ in sources."@babel/helper-string-parser-7.25.9" sources."@babel/helper-validator-identifier-7.25.9" ( - sources."@babel/parser-7.26.9" + sources."@babel/parser-7.26.10" // { dependencies = [ - sources."@babel/types-7.26.9" + sources."@babel/types-7.26.10" ]; } ) @@ -50817,7 +47419,7 @@ in dependencies = [ sources."@inquirer/core-6.0.0" sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.19" + sources."@types/node-20.17.24" sources."ansi-escapes-4.3.2" sources."signal-exit-4.1.0" sources."type-fest-0.21.3" @@ -50832,7 +47434,7 @@ in dependencies = [ sources."@inquirer/core-6.0.0" sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.19" + sources."@types/node-20.17.24" sources."ansi-escapes-4.3.2" sources."signal-exit-4.1.0" sources."type-fest-0.21.3" @@ -50845,7 +47447,7 @@ in sources."@inquirer/core-2.3.1" // { dependencies = [ - sources."@types/node-20.17.19" + sources."@types/node-20.17.24" sources."ansi-escapes-4.3.2" sources."type-fest-0.21.3" sources."undici-types-6.19.8" @@ -50859,7 +47461,7 @@ in dependencies = [ sources."@inquirer/core-6.0.0" sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.19" + sources."@types/node-20.17.24" sources."ansi-escapes-4.3.2" sources."signal-exit-4.1.0" sources."type-fest-0.21.3" @@ -50874,7 +47476,7 @@ in dependencies = [ sources."@inquirer/core-6.0.0" sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.19" + sources."@types/node-20.17.24" sources."ansi-escapes-4.3.2" sources."signal-exit-4.1.0" sources."type-fest-0.21.3" @@ -50889,7 +47491,7 @@ in dependencies = [ sources."@inquirer/core-6.0.0" sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.19" + sources."@types/node-20.17.24" sources."ansi-escapes-4.3.2" sources."signal-exit-4.1.0" sources."type-fest-0.21.3" @@ -50904,7 +47506,7 @@ in dependencies = [ sources."@inquirer/core-6.0.0" sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.19" + sources."@types/node-20.17.24" sources."ansi-escapes-4.3.2" sources."signal-exit-4.1.0" sources."type-fest-0.21.3" @@ -50920,7 +47522,7 @@ in dependencies = [ sources."@inquirer/core-6.0.0" sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.19" + sources."@types/node-20.17.24" sources."ansi-escapes-4.3.2" sources."signal-exit-4.1.0" sources."type-fest-0.21.3" @@ -50935,7 +47537,7 @@ in dependencies = [ sources."@inquirer/core-6.0.0" sources."@types/mute-stream-0.0.4" - sources."@types/node-20.17.19" + sources."@types/node-20.17.24" sources."ansi-escapes-4.3.2" sources."signal-exit-4.1.0" sources."type-fest-0.21.3" @@ -50964,7 +47566,7 @@ in sources."@jridgewell/sourcemap-codec-1.5.0" sources."@jridgewell/trace-mapping-0.3.25" sources."@jsii/check-node-1.102.0" - sources."@jsii/spec-1.108.0" + sources."@jsii/spec-1.109.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -51016,7 +47618,7 @@ in sources."bufferutil-4.0.9" sources."call-bind-1.0.8" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."camelcase-6.3.0" sources."case-1.6.3" sources."cdktf-0.20.11" @@ -51086,7 +47688,7 @@ in sources."downlevel-dts-0.11.0" // { dependencies = [ - sources."typescript-5.9.0-dev.20250224" + sources."typescript-5.9.0-dev.20250314" ]; } ) @@ -51101,7 +47703,7 @@ in sources."es-errors-1.3.0" sources."es-get-iterator-1.1.3" sources."es-object-atoms-1.1.1" - sources."es-toolkit-1.32.0" + sources."es-toolkit-1.33.0" sources."escalade-3.2.0" sources."escape-string-regexp-2.0.0" sources."events-3.3.0" @@ -51126,7 +47728,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-glob-3.3.3" sources."fast-uri-3.0.6" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."fd-slicer-1.1.0" ( sources."figures-3.2.0" @@ -51189,7 +47791,7 @@ in sources."inherits-2.0.4" sources."ini-1.3.8" ( - sources."ink-5.1.0" + sources."ink-5.2.0" // { dependencies = [ sources."ansi-regex-6.1.0" @@ -51296,10 +47898,10 @@ in } ) ( - sources."jsii-reflect-1.108.0" + sources."jsii-reflect-1.109.0" // { dependencies = [ - sources."@jsii/check-node-1.108.0" + sources."@jsii/check-node-1.109.0" sources."cliui-7.0.4" sources."fs-extra-10.1.0" sources."jsonfile-6.1.0" @@ -51355,7 +47957,7 @@ in sources."mkdirp-classic-0.5.3" sources."ms-2.1.3" sources."mute-stream-1.0.0" - sources."nan-2.22.1" + sources."nan-2.22.2" sources."napi-build-utils-2.0.0" sources."node-abi-3.74.0" sources."node-fetch-2.7.0" @@ -51371,7 +47973,7 @@ in sources."obliterator-2.0.5" sources."once-1.4.0" sources."onetime-5.1.2" - sources."oo-ascii-tree-1.108.0" + sources."oo-ascii-tree-1.109.0" sources."open-7.4.2" sources."os-tmpdir-1.0.2" sources."p-limit-2.3.0" @@ -51426,7 +48028,7 @@ in sources."reserved-words-0.1.2" sources."resolve-1.22.10" sources."restore-cursor-4.0.0" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."rfdc-1.4.1" sources."run-async-3.0.0" sources."run-parallel-1.2.0" @@ -51497,7 +48099,7 @@ in sources."to-regex-range-5.0.1" sources."tr46-0.0.3" sources."tunnel-agent-0.6.0" - sources."type-fest-4.35.0" + sources."type-fest-4.37.0" sources."typescript-5.4.5" sources."undici-types-5.26.5" sources."universalify-0.1.2" @@ -51510,7 +48112,7 @@ in sources."which-2.0.2" sources."which-boxed-primitive-1.1.1" sources."which-collection-1.0.2" - sources."which-typed-array-1.1.18" + sources."which-typed-array-1.1.19" ( sources."widest-line-5.0.0" // { @@ -51534,8 +48136,8 @@ in sources."yargs-17.7.2" sources."yargs-parser-21.1.1" sources."yauzl-2.10.0" + sources."yoga-layout-3.2.1" sources."yoga-layout-prebuilt-1.10.0" - sources."yoga-wasm-web-0.3.3" ( sources."zip-stream-4.1.1" // { @@ -51815,10 +48417,10 @@ in coc-git = nodeEnv.buildNodePackage { name = "coc-git"; packageName = "coc-git"; - version = "2.7.0"; + version = "2.7.5"; src = fetchurl { - url = "https://registry.npmjs.org/coc-git/-/coc-git-2.7.0.tgz"; - sha512 = "S3SAKK87j496gmmuu3COBGG8QYjV3MY/5pSp0KdFiDdnRstGyrkl6EqoJVWFBu8B6jAHr3f7SFyN4PSMy1Jy2Q=="; + url = "https://registry.npmjs.org/coc-git/-/coc-git-2.7.5.tgz"; + sha512 = "bmewJbSmVXB6JDal0AblJhPjmlo9J+QfepHCznK5LwB3pGeiyKPH/g5apiFQ2or4HX7L8FmyQqrzFPOe6O71OQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -51914,10 +48516,10 @@ in coc-java = nodeEnv.buildNodePackage { name = "coc-java"; packageName = "coc-java"; - version = "1.15.2"; + version = "1.26.1"; src = fetchurl { - url = "https://registry.npmjs.org/coc-java/-/coc-java-1.15.2.tgz"; - sha512 = "3m23YfDeqqXWCDppVoa9jgFTfm/gwdD65YoLbnE0jyyaloYbZKdVKSY8bCVEqY5Q/bvgUQShG8TNWs/1dL4agw=="; + url = "https://registry.npmjs.org/coc-java/-/coc-java-1.26.1.tgz"; + sha512 = "1hKYhoTtfhVV+tEo/hdWnDMEMMZxSI++wzku/uVPkdqKa69RPUKpSbytFoNoAJYh+Ad2gPOGJWMF7NDJApbkUA=="; }; dependencies = [ sources."anymatch-3.1.3" @@ -51983,10 +48585,10 @@ in coc-lists = nodeEnv.buildNodePackage { name = "coc-lists"; packageName = "coc-lists"; - version = "1.5.3"; + version = "1.5.4"; src = fetchurl { - url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.5.3.tgz"; - sha512 = "fVy45jPoie8ZrO28GLWA7M1ewYaybDmb3fujUYWhHelTl4r2F/mk3UVGnpb7+7gMmDJ0T3LkJqh0Qe538/wFTQ=="; + url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.5.4.tgz"; + sha512 = "RROel79iUEzY3ICwqLIfWkftdA95mlluSa933CxfxvZxQiPcnlSd9XWGc770RZOEv6R5TCihht2LRt0Lj1PrGQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -52037,10 +48639,10 @@ in coc-pairs = nodeEnv.buildNodePackage { name = "coc-pairs"; packageName = "coc-pairs"; - version = "1.4.2"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/coc-pairs/-/coc-pairs-1.4.2.tgz"; - sha512 = "4qcKB1i4SdQUKv8HT+/owk+fZn4zssX4NUOEZ5IFt+hP5pb6hdWMyuJvqnH5A0+5SYQuwg5zdtQeZnneUIApfg=="; + url = "https://registry.npmjs.org/coc-pairs/-/coc-pairs-1.5.1.tgz"; + sha512 = "/wQOKlptsj2KB4yoIBYN3xtTbCKSsGbRdkNAeYCKCQZX0J5uVMFNgo363+k1BVp9KrkWQDlvVluF3Xf1ei8PfA=="; }; buildInputs = globalBuildInputs; meta = { @@ -52055,17 +48657,17 @@ in coc-prettier = nodeEnv.buildNodePackage { name = "coc-prettier"; packageName = "coc-prettier"; - version = "9.3.2"; + version = "11.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-prettier/-/coc-prettier-9.3.2.tgz"; - sha512 = "1F7neWO2jp0r5aJVMhnYe3nzkEVP5SbwwORkdrD9bEGvt0+pvIC/GFwCYmw6pijY5OMhowCPVJ1qKoAwF9OSBQ=="; + url = "https://registry.npmjs.org/coc-prettier/-/coc-prettier-11.0.0.tgz"; + sha512 = "QksBbo3rpqNdVljuzhnjyJGb6J6O+Q7vKhIqyB7nt4Jz3s9eAPI1NAqMaVhptE+V95D2A6srMl+YiBObZu94Qg=="; }; dependencies = [ - sources."prettier-2.8.8" + sources."prettier-3.5.3" ]; buildInputs = globalBuildInputs; meta = { - description = "prettier extension for coc.nvim"; + description = "Prettier extension for coc.nvim"; homepage = "https://github.com/neoclide/coc-prettier#readme"; license = "MIT"; }; @@ -52154,7 +48756,7 @@ in sources."editorconfig-2.0.0" sources."encoding-0.1.13" sources."fast-glob-3.3.2" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."fill-range-7.1.1" sources."fuzzy-search-3.2.1" sources."glob-parent-5.1.2" @@ -52168,7 +48770,7 @@ in sources."node-fetch-2.7.0" sources."picomatch-2.3.1" sources."queue-microtask-1.2.3" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."run-parallel-1.2.0" sources."safer-buffer-2.1.2" sources."semver-7.7.1" @@ -52217,14 +48819,15 @@ in coc-snippets = nodeEnv.buildNodePackage { name = "coc-snippets"; packageName = "coc-snippets"; - version = "3.1.10"; + version = "3.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-3.1.10.tgz"; - sha512 = "8nIkxrALq9uvA6aM/boCoT++h1O2bH+JhwajdXwooQJetIeEt71h8MB3CusdwRLU89QdsBbkhrNpmkgaS2pgPw=="; + url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-3.4.0.tgz"; + sha512 = "p7nxP/ii+iRADnvFEuHz4iDhuspg3W08hj4J0IFz/OYrzJwEON3c+5i0DJEXyr8qrt0c2Vd+3rekRE8J2AhwGQ=="; }; buildInputs = globalBuildInputs; meta = { description = "Snippets extension for coc.nvim"; + homepage = "https://github.com/neoclide/coc-snippets#readme"; license = "MIT"; }; production = true; @@ -52411,14 +49014,14 @@ in sources."@babel/code-frame-7.26.2" sources."@babel/compat-data-7.26.8" ( - sources."@babel/core-7.26.9" + sources."@babel/core-7.26.10" // { dependencies = [ sources."semver-6.3.1" ]; } ) - sources."@babel/generator-7.26.9" + sources."@babel/generator-7.26.10" ( sources."@babel/helper-compilation-targets-7.26.5" // { @@ -52434,11 +49037,11 @@ in sources."@babel/helper-string-parser-7.25.9" sources."@babel/helper-validator-identifier-7.25.9" sources."@babel/helper-validator-option-7.25.9" - sources."@babel/helpers-7.26.9" - sources."@babel/parser-7.26.9" + sources."@babel/helpers-7.26.10" + sources."@babel/parser-7.26.10" sources."@babel/template-7.26.9" - sources."@babel/traverse-7.26.9" - sources."@babel/types-7.26.9" + sources."@babel/traverse-7.26.10" + sources."@babel/types-7.26.10" sources."@jridgewell/gen-mapping-0.3.8" sources."@jridgewell/resolve-uri-3.1.2" sources."@jridgewell/set-array-1.2.1" @@ -52483,7 +49086,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001700" + sources."caniuse-lite-1.0.30001704" sources."chalk-4.1.2" sources."character-entities-1.2.4" sources."character-entities-legacy-1.1.4" @@ -52518,7 +49121,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.5.104" + sources."electron-to-chromium-1.5.118" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -52530,7 +49133,7 @@ in sources."fast-glob-3.3.3" sources."fast-uri-3.0.6" sources."fastest-levenshtein-1.0.16" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."file-entry-cache-6.0.1" sources."fill-range-7.1.1" sources."find-up-4.1.0" @@ -52688,7 +49291,7 @@ in sources."require-from-string-2.0.2" sources."resolve-1.22.10" sources."resolve-from-5.0.0" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."rimraf-3.0.2" sources."run-parallel-1.2.0" sources."safe-buffer-5.2.1" @@ -52729,7 +49332,7 @@ in sources."unist-util-find-all-after-3.0.2" sources."unist-util-is-4.1.0" sources."unist-util-stringify-position-2.0.3" - sources."update-browserslist-db-1.1.2" + sources."update-browserslist-db-1.1.3" sources."util-deprecate-1.0.2" sources."v8-compile-cache-2.4.0" sources."validate-npm-package-license-3.0.4" @@ -52845,13 +49448,13 @@ in coc-tsserver = nodeEnv.buildNodePackage { name = "coc-tsserver"; packageName = "coc-tsserver"; - version = "2.2.0"; + version = "2.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-2.2.0.tgz"; - sha512 = "XUhAHtYOBHgLobVODFNONdJkCmFbsjS/8nMH95IQYRE0ECzwljupPOrGKBQa7OiGyWqQ5CAJfZJcbhzCHWdr+Q=="; + url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-2.2.3.tgz"; + sha512 = "XYMekSGU+2jJ4U53FXUPmcv8WayME0eXUYruVL6PDYyVUUij86UQetliWHt1ai42VLTh3riIIZlcMdQkLot1sQ=="; }; dependencies = [ - sources."typescript-5.7.3" + sources."typescript-5.8.2" ]; buildInputs = globalBuildInputs; meta = { @@ -52921,7 +49524,7 @@ in sources."brace-expansion-1.1.11" sources."builtin-modules-1.1.1" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."callsites-3.1.0" sources."chalk-4.1.2" sources."character-parser-2.2.0" @@ -53169,10 +49772,10 @@ in coc-yaml = nodeEnv.buildNodePackage { name = "coc-yaml"; packageName = "coc-yaml"; - version = "1.9.0"; + version = "1.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/coc-yaml/-/coc-yaml-1.9.0.tgz"; - sha512 = "3O5E/9qSIjxMfilrLTElmRk1drBr1ot2+1KTOKjFIBeQphi4QBvnDbtGtqMCy5odMowe6HbAeo7aIran6e4rGw=="; + url = "https://registry.npmjs.org/coc-yaml/-/coc-yaml-1.9.1.tgz"; + sha512 = "PKDIWjnTF1193m0a5srO8oOLrOv9nKwaqka+a+sdzDjlyPoFipEADFUQVdoHwe1GYlfYe7tmfWOUCbR6ddRLrw=="; }; dependencies = [ sources."prettier-2.0.5" @@ -53180,6 +49783,7 @@ in buildInputs = globalBuildInputs; meta = { description = "yaml extension for coc.nvim"; + homepage = "https://github.com/neoclide/coc-yaml#readme"; license = "MIT"; }; production = true; @@ -53189,10 +49793,10 @@ in coc-yank = nodeEnv.buildNodePackage { name = "coc-yank"; packageName = "coc-yank"; - version = "1.2.3"; + version = "1.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/coc-yank/-/coc-yank-1.2.3.tgz"; - sha512 = "X7mmEV3X1p/nzzoquweFAsCInGNTRdG9K9Bx6SJnAIPlLcTXz+/1b/Meb7E1wbnLQeOj26Zmuyd3NharwM+v1g=="; + url = "https://registry.npmjs.org/coc-yank/-/coc-yank-1.2.4.tgz"; + sha512 = "tNCysSDUKNHAE/cBbfB9kbaSkDbeTleRwfho0vXuaxA6TLAbHqKPA81ecF4pHG4JJm9V156d7uhotYsm4InuyA=="; }; buildInputs = globalBuildInputs; meta = { @@ -53436,7 +50040,7 @@ in sources."conventional-commits-filter-5.0.0" sources."conventional-commits-parser-6.1.0" sources."dot-prop-5.3.0" - sources."find-up-simple-1.0.0" + sources."find-up-simple-1.0.1" sources."git-raw-commits-5.0.0" sources."git-semver-tags-8.0.0" sources."handlebars-4.7.8" @@ -53461,7 +50065,7 @@ in sources."spdx-license-ids-3.0.21" sources."temp-dir-3.0.0" sources."tempfile-5.0.0" - sources."type-fest-4.35.0" + sources."type-fest-4.37.0" sources."uglify-js-3.19.3" sources."unicorn-magic-0.1.0" sources."validate-npm-package-license-3.0.4" @@ -53498,7 +50102,7 @@ in sources."dir-glob-3.0.1" sources."escape-string-regexp-5.0.0" sources."fast-glob-3.3.3" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."fill-range-7.1.1" sources."glob-parent-5.1.2" sources."globby-13.2.2" @@ -53527,7 +50131,7 @@ in sources."path-type-4.0.0" sources."picomatch-2.3.1" sources."queue-microtask-1.2.3" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."run-parallel-1.2.0" sources."slash-4.0.0" sources."to-regex-range-5.0.1" @@ -53564,14 +50168,14 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.5" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" sources."asynckit-0.4.0" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" ( sources."chalk-2.4.2" // { @@ -53767,7 +50371,7 @@ in sources."@cspell/dict-aws-4.0.9" sources."@cspell/dict-bash-4.2.0" sources."@cspell/dict-companies-3.1.14" - sources."@cspell/dict-cpp-6.0.4" + sources."@cspell/dict-cpp-6.0.6" sources."@cspell/dict-cryptocurrencies-5.0.4" sources."@cspell/dict-csharp-4.0.6" sources."@cspell/dict-css-4.0.17" @@ -53777,17 +50381,17 @@ in sources."@cspell/dict-docker-1.1.12" sources."@cspell/dict-dotnet-5.0.9" sources."@cspell/dict-elixir-4.0.7" - sources."@cspell/dict-en-common-misspellings-2.0.9" + sources."@cspell/dict-en-common-misspellings-2.0.10" sources."@cspell/dict-en-gb-1.1.33" - sources."@cspell/dict-en_us-4.3.33" + sources."@cspell/dict-en_us-4.3.34" sources."@cspell/dict-filetypes-3.0.11" sources."@cspell/dict-flutter-1.1.0" sources."@cspell/dict-fonts-4.0.4" sources."@cspell/dict-fsharp-1.1.0" - sources."@cspell/dict-fullstack-3.2.5" + sources."@cspell/dict-fullstack-3.2.6" sources."@cspell/dict-gaming-terms-1.1.0" sources."@cspell/dict-git-3.0.4" - sources."@cspell/dict-golang-6.0.18" + sources."@cspell/dict-golang-6.0.19" sources."@cspell/dict-google-1.0.8" sources."@cspell/dict-haskell-4.0.5" sources."@cspell/dict-html-4.0.11" @@ -53803,13 +50407,13 @@ in sources."@cspell/dict-markdown-2.0.9" sources."@cspell/dict-monkeyc-1.0.10" sources."@cspell/dict-node-5.0.6" - sources."@cspell/dict-npm-5.1.27" + sources."@cspell/dict-npm-5.1.30" sources."@cspell/dict-php-4.0.14" sources."@cspell/dict-powershell-5.0.14" sources."@cspell/dict-public-licenses-2.0.13" - sources."@cspell/dict-python-4.2.15" + sources."@cspell/dict-python-4.2.16" sources."@cspell/dict-r-2.1.0" - sources."@cspell/dict-ruby-5.0.7" + sources."@cspell/dict-ruby-5.0.8" sources."@cspell/dict-rust-4.0.11" sources."@cspell/dict-scala-5.0.7" sources."@cspell/dict-shell-1.1.0" @@ -53817,7 +50421,7 @@ in sources."@cspell/dict-sql-2.2.0" sources."@cspell/dict-svelte-1.0.6" sources."@cspell/dict-swift-2.0.5" - sources."@cspell/dict-terraform-1.1.0" + sources."@cspell/dict-terraform-1.1.1" sources."@cspell/dict-typescript-3.2.0" sources."@cspell/dict-vue-3.0.4" sources."@cspell/dynamic-import-8.17.5" @@ -53855,7 +50459,7 @@ in ) sources."file-entry-cache-9.1.0" sources."fill-range-7.1.1" - sources."find-up-simple-1.0.0" + sources."find-up-simple-1.0.1" sources."flat-cache-5.0.0" sources."flatted-3.3.3" sources."gensequence-7.0.0" @@ -54083,18 +50687,18 @@ in } ) sources."@oclif/screen-3.0.8" - sources."@swc/core-1.10.18" + sources."@swc/core-1.11.9" sources."@swc/counter-0.1.3" sources."@swc/helpers-0.5.15" - sources."@swc/types-0.1.18" - sources."@swc/wasm-1.10.18" + sources."@swc/types-0.1.19" + sources."@swc/wasm-1.11.9" sources."@tsconfig/node10-1.0.11" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" sources."@types/cli-progress-3.11.6" - sources."@types/node-22.13.5" - sources."acorn-8.14.0" + sources."@types/node-22.13.10" + sources."acorn-8.14.1" sources."acorn-walk-8.3.4" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" @@ -54107,7 +50711,7 @@ in sources."async-3.2.6" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" - sources."axios-1.7.9" + sources."axios-1.8.3" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bl-4.1.0" @@ -54161,7 +50765,7 @@ in sources."fast-glob-3.3.3" sources."fast-levenshtein-3.0.0" sources."fastest-levenshtein-1.0.16" - sources."fastq-1.19.0" + sources."fastq-1.19.1" ( sources."figures-3.2.0" // { @@ -54269,7 +50873,7 @@ in sources."readable-stream-3.6.2" sources."redeyed-2.1.1" sources."restore-cursor-3.1.0" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."run-async-2.4.1" sources."run-parallel-1.2.0" sources."rxjs-7.8.2" @@ -54303,7 +50907,7 @@ in sources."tslib-2.8.1" sources."tunnel-agent-0.6.0" sources."type-fest-0.21.3" - sources."typescript-5.7.3" + sources."typescript-5.8.2" sources."undici-types-6.20.0" sources."universalify-2.0.1" sources."util-deprecate-1.0.2" @@ -54358,7 +50962,7 @@ in sources."bytes-3.1.2" sources."call-bind-1.0.8" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."caseless-0.12.0" sources."clean-stack-2.2.0" sources."combined-stream-1.0.8" @@ -54516,7 +51120,7 @@ in sources."util-deprecate-1.0.2" sources."uuid-8.0.0" sources."verror-1.10.0" - sources."which-typed-array-1.1.18" + sources."which-typed-array-1.1.19" sources."xml2js-0.5.0" sources."xmlbuilder-11.0.1" sources."yallist-4.0.0" @@ -54589,7 +51193,7 @@ in ]; } ) - sources."@electron/osx-sign-1.3.2" + sources."@electron/osx-sign-1.3.3" ( sources."@electron/packager-18.3.6" // { @@ -54600,7 +51204,7 @@ in ) sources."@electron/rebuild-3.7.1" ( - sources."@electron/universal-2.0.1" + sources."@electron/universal-2.0.2" // { dependencies = [ sources."brace-expansion-2.0.1" @@ -54630,7 +51234,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.4" sources."@types/keyv-3.1.4" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."@types/responselike-1.0.3" sources."@types/yauzl-2.10.3" sources."@xmldom/xmldom-0.8.10" @@ -54739,7 +51343,7 @@ in sources."exponential-backoff-3.1.2" sources."extract-zip-2.0.1" sources."fast-glob-3.3.3" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."fd-slicer-1.1.0" sources."filename-reserved-regex-2.0.0" sources."filenamify-4.3.0" @@ -54950,7 +51554,7 @@ in sources."responselike-2.0.1" sources."restore-cursor-3.1.0" sources."retry-0.12.0" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."rfdc-1.4.1" sources."rimraf-3.0.2" sources."run-parallel-1.2.0" @@ -55093,7 +51697,7 @@ in sources."emojilib-3.0.12" sources."env-paths-3.0.0" sources."environment-1.1.0" - sources."es-toolkit-1.32.0" + sources."es-toolkit-1.33.0" sources."escape-string-regexp-2.0.0" sources."execa-8.0.1" sources."fast-deep-equal-3.1.3" @@ -55103,11 +51707,11 @@ in sources."human-signals-5.0.0" sources."indent-string-5.0.0" ( - sources."ink-5.1.0" + sources."ink-5.2.0" // { dependencies = [ sources."signal-exit-3.0.7" - sources."type-fest-4.35.0" + sources."type-fest-4.37.0" ]; } ) @@ -55115,7 +51719,7 @@ in sources."ink-text-input-6.0.0" // { dependencies = [ - sources."type-fest-4.35.0" + sources."type-fest-4.37.0" ]; } ) @@ -55201,7 +51805,7 @@ in sources."widest-line-5.0.0" sources."wrap-ansi-9.0.0" sources."ws-8.18.1" - sources."yoga-wasm-web-0.3.3" + sources."yoga-layout-3.2.1" ]; buildInputs = globalBuildInputs; meta = { @@ -55261,7 +51865,7 @@ in sources."@babel/helper-validator-identifier-7.25.9" sources."@puppeteer/browsers-2.3.0" sources."@tootallnate/quickjs-emscripten-0.23.0" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."@types/react-19.0.10" sources."@types/yauzl-2.10.3" sources."agent-base-7.1.3" @@ -55320,7 +51924,7 @@ in sources."env-paths-2.2.1" sources."environment-1.1.0" sources."error-ex-1.3.2" - sources."es-toolkit-1.32.0" + sources."es-toolkit-1.33.0" sources."escalade-3.2.0" sources."escape-string-regexp-2.0.0" sources."escodegen-2.1.0" @@ -55339,7 +51943,7 @@ in sources."ieee754-1.2.1" sources."import-fresh-3.3.1" sources."indent-string-5.0.0" - sources."ink-5.1.0" + sources."ink-5.2.0" sources."ink-spinner-5.0.0" sources."ip-address-9.0.5" sources."is-arrayish-0.2.1" @@ -55413,8 +52017,8 @@ in sources."text-decoder-1.2.3" sources."through-2.3.8" sources."tslib-2.8.1" - sources."type-fest-4.35.0" - sources."typescript-5.7.3" + sources."type-fest-4.37.0" + sources."typescript-5.8.2" sources."unbzip2-stream-1.4.3" sources."undici-types-6.20.0" sources."unicorn-magic-0.2.0" @@ -55439,7 +52043,7 @@ in ) sources."yargs-parser-21.1.1" sources."yauzl-2.10.0" - sources."yoga-wasm-web-0.3.3" + sources."yoga-layout-3.2.1" sources."zod-3.23.8" ]; buildInputs = globalBuildInputs; @@ -55463,7 +52067,7 @@ in dependencies = [ sources."@balena/dockerignore-1.0.2" ( - sources."@eslint-community/eslint-utils-4.4.1" + sources."@eslint-community/eslint-utils-4.5.1" // { dependencies = [ sources."eslint-visitor-keys-3.4.3" @@ -55472,12 +52076,13 @@ in ) sources."@eslint-community/regexpp-4.12.1" sources."@eslint/config-array-0.19.2" + sources."@eslint/config-helpers-0.1.0" sources."@eslint/core-0.12.0" sources."@eslint/eslintrc-3.3.0" - sources."@eslint/js-9.21.0" + sources."@eslint/js-9.22.0" sources."@eslint/object-schema-2.1.6" sources."@eslint/plugin-kit-0.2.7" - sources."@grpc/grpc-js-1.12.6" + sources."@grpc/grpc-js-1.13.0" sources."@grpc/proto-loader-0.7.13" sources."@humanfs/core-0.19.1" ( @@ -55490,20 +52095,20 @@ in ) sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/retry-0.4.2" - sources."@inquirer/checkbox-4.1.2" - sources."@inquirer/confirm-5.1.6" - sources."@inquirer/core-10.1.7" - sources."@inquirer/editor-4.2.7" - sources."@inquirer/expand-4.0.9" - sources."@inquirer/figures-1.0.10" - sources."@inquirer/input-4.1.6" - sources."@inquirer/number-3.0.9" - sources."@inquirer/password-4.0.9" - sources."@inquirer/prompts-7.3.2" - sources."@inquirer/rawlist-4.0.9" - sources."@inquirer/search-3.0.9" - sources."@inquirer/select-4.0.9" - sources."@inquirer/type-3.0.4" + sources."@inquirer/checkbox-4.1.3" + sources."@inquirer/confirm-5.1.7" + sources."@inquirer/core-10.1.8" + sources."@inquirer/editor-4.2.8" + sources."@inquirer/expand-4.0.10" + sources."@inquirer/figures-1.0.11" + sources."@inquirer/input-4.1.7" + sources."@inquirer/number-3.0.10" + sources."@inquirer/password-4.0.10" + sources."@inquirer/prompts-7.3.3" + sources."@inquirer/rawlist-4.0.10" + sources."@inquirer/search-3.0.10" + sources."@inquirer/select-4.0.10" + sources."@inquirer/type-3.0.5" sources."@js-sdsl/ordered-map-4.4.2" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" @@ -55540,10 +52145,10 @@ in sources."@types/hast-3.0.4" sources."@types/json-schema-7.0.15" sources."@types/mdast-4.0.4" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."@types/unist-3.0.3" sources."@ungap/structured-clone-1.3.0" - sources."acorn-8.14.0" + sources."acorn-8.14.1" sources."acorn-jsx-5.3.2" sources."ajv-6.12.6" sources."ansi-align-3.0.1" @@ -55553,7 +52158,7 @@ in sources."argparse-2.0.1" sources."asn1-0.2.6" sources."atomically-2.0.3" - sources."awilix-12.0.4" + sources."awilix-12.0.5" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" @@ -55614,7 +52219,7 @@ in sources."dot-prop-9.0.0" // { dependencies = [ - sources."type-fest-4.35.0" + sources."type-fest-4.37.0" ]; } ) @@ -55634,7 +52239,7 @@ in sources."escape-goat-4.0.0" sources."escape-string-regexp-4.0.0" ( - sources."eslint-9.21.0" + sources."eslint-9.22.0" // { dependencies = [ sources."chalk-4.1.2" @@ -55642,7 +52247,7 @@ in ]; } ) - sources."eslint-scope-8.2.0" + sources."eslint-scope-8.3.0" sources."eslint-visitor-keys-4.2.0" sources."espree-10.3.0" sources."esprima-4.0.1" @@ -55655,7 +52260,7 @@ in sources."fast-glob-3.3.3" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."fauna-2.5.0" ( sources."faunadb-4.8.2" @@ -55704,7 +52309,7 @@ in sources."imurmurhash-0.1.4" sources."inherits-2.0.4" sources."ini-1.3.8" - sources."inquirer-12.4.2" + sources."inquirer-12.4.3" sources."is-docker-3.0.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -55738,7 +52343,7 @@ in sources."micromark-util-encode-2.0.1" sources."micromark-util-sanitize-uri-2.0.1" sources."micromark-util-symbol-2.0.1" - sources."micromark-util-types-2.0.1" + sources."micromark-util-types-2.0.2" sources."micromatch-4.0.8" sources."minimatch-3.1.2" sources."minimist-1.2.8" @@ -55787,7 +52392,7 @@ in sources."registry-url-6.0.1" sources."require-directory-2.1.1" sources."resolve-from-4.0.0" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."run-applescript-7.0.0" sources."run-async-3.0.0" sources."run-parallel-1.2.0" @@ -55837,7 +52442,7 @@ in sources."emoji-regex-10.4.0" sources."string-width-7.2.0" sources."strip-ansi-7.1.0" - sources."type-fest-4.35.0" + sources."type-fest-4.37.0" sources."widest-line-5.0.0" sources."wrap-ansi-9.0.0" ]; @@ -55884,7 +52489,7 @@ in sha512 = "+eT/06NHwPXfzUSe4vDjjam9gZtalhwDYOq0xX6va88BLZd8APbo17Ajkz4hdnr2Gpls5+xFUqMeiklAQtBHYQ=="; }; dependencies = [ - sources."@inquirer/figures-1.0.10" + sources."@inquirer/figures-1.0.11" sources."aggregate-error-5.0.0" sources."ansi-escapes-4.3.2" sources."ansi-regex-6.1.0" @@ -56077,7 +52682,7 @@ in sources."@scure/bip39-1.3.0" sources."@types/atob-2.1.4" sources."@types/inquirer-6.5.0" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."@types/through-0.0.33" sources."ajv-6.12.6" sources."ansi-escapes-4.3.2" @@ -56317,7 +52922,7 @@ in sources."cache-base-1.0.1" sources."call-bind-1.0.8" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."caller-1.1.0" sources."chokidar-2.1.8" ( @@ -56522,7 +53127,7 @@ in sources."mkdirp-0.5.6" sources."ms-2.1.3" sources."mute-stream-0.0.8" - sources."nan-2.22.1" + sources."nan-2.22.2" ( sources."nanomatch-1.2.13" // { @@ -56750,7 +53355,7 @@ in ) sources."which-boxed-primitive-1.1.1" sources."which-collection-1.0.2" - sources."which-typed-array-1.1.18" + sources."which-typed-array-1.1.19" ( sources."winston-3.17.0" // { @@ -56806,14 +53411,14 @@ in sources."@babel/code-frame-7.26.2" sources."@babel/compat-data-7.26.8" ( - sources."@babel/core-7.26.9" + sources."@babel/core-7.26.10" // { dependencies = [ sources."semver-6.3.1" ]; } ) - sources."@babel/generator-7.26.9" + sources."@babel/generator-7.26.10" sources."@babel/helper-annotate-as-pure-7.25.9" ( sources."@babel/helper-compilation-targets-7.26.5" @@ -56841,17 +53446,17 @@ in sources."@babel/helper-string-parser-7.25.9" sources."@babel/helper-validator-identifier-7.25.9" sources."@babel/helper-validator-option-7.25.9" - sources."@babel/helpers-7.26.9" - sources."@babel/parser-7.26.9" + sources."@babel/helpers-7.26.10" + sources."@babel/parser-7.26.10" sources."@babel/plugin-syntax-jsx-7.25.9" sources."@babel/plugin-syntax-typescript-7.25.9" sources."@babel/plugin-transform-modules-commonjs-7.26.3" sources."@babel/plugin-transform-typescript-7.26.8" sources."@babel/preset-typescript-7.26.0" - sources."@babel/runtime-7.26.9" + sources."@babel/runtime-7.26.10" sources."@babel/template-7.26.9" - sources."@babel/traverse-7.26.9" - sources."@babel/types-7.26.9" + sources."@babel/traverse-7.26.10" + sources."@babel/types-7.26.10" sources."@hapi/hoek-9.3.0" sources."@hapi/topo-5.1.0" sources."@jridgewell/gen-mapping-0.3.8" @@ -56875,7 +53480,7 @@ in sources."@types/common-tags-1.8.4" sources."@types/http-cache-semantics-4.0.4" sources."@types/keyv-3.1.4" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."@types/responselike-1.0.3" sources."@types/yoga-layout-1.9.2" sources."abort-controller-3.0.0" @@ -56906,7 +53511,7 @@ in } ) sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001700" + sources."caniuse-lite-1.0.30001704" sources."chalk-4.1.2" sources."chardet-0.7.0" sources."ci-info-2.0.0" @@ -56968,7 +53573,7 @@ in sources."domhandler-4.3.1" sources."domutils-2.8.0" sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.5.104" + sources."electron-to-chromium-1.5.118" sources."emoji-regex-8.0.0" ( sources."encoding-0.1.13" @@ -56987,7 +53592,7 @@ in sources."events-3.3.0" sources."execa-5.1.1" sources."external-editor-3.1.0" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."figures-3.2.0" sources."file-type-16.5.4" sources."find-up-4.1.0" @@ -57127,7 +53732,7 @@ in sources."responselike-2.0.1" sources."restore-cursor-3.1.0" sources."retry-0.12.0" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."run-async-2.4.1" sources."rxjs-6.6.7" sources."safe-buffer-5.2.1" @@ -57163,7 +53768,7 @@ in sources."undici-types-6.20.0" sources."unique-string-2.0.0" sources."universalify-2.0.1" - sources."update-browserslist-db-1.1.2" + sources."update-browserslist-db-1.1.3" sources."utila-0.4.0" sources."weak-lru-cache-1.2.2" sources."webidl-conversions-3.0.1" @@ -57226,7 +53831,7 @@ in sources."@gitbeaker/rest-42.1.0" sources."ansi-styles-4.3.0" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."chalk-4.1.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -57408,7 +54013,7 @@ in sources."fast-fifo-1.3.2" sources."fast-levenshtein-3.0.0" sources."fastest-levenshtein-1.0.16" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."fill-range-7.1.1" sources."findup-sync-5.0.0" sources."fined-2.0.0" @@ -57477,7 +54082,7 @@ in sources."resolve-1.22.10" sources."resolve-dir-1.0.1" sources."resolve-options-2.0.0" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."semver-6.3.1" @@ -57731,7 +54336,7 @@ in ) sources."moment-2.30.1" sources."mv-2.1.1" - sources."nan-2.22.1" + sources."nan-2.22.2" sources."ncp-2.0.0" sources."once-1.4.0" sources."optimist-0.6.1" @@ -57771,7 +54376,7 @@ in dependencies = [ sources."@adobe/css-tools-4.4.0" ( - sources."@asamuzakjp/css-color-2.8.3" + sources."@asamuzakjp/css-color-3.1.1" // { dependencies = [ sources."lru-cache-10.4.3" @@ -57865,7 +54470,7 @@ in ) sources."@aws-sdk/config-resolver-3.296.0" ( - sources."@aws-sdk/core-3.750.0" + sources."@aws-sdk/core-3.758.0" // { dependencies = [ sources."@aws-sdk/types-3.734.0" @@ -57881,13 +54486,13 @@ in sources."@aws-sdk/credential-provider-sso-3.296.0" sources."@aws-sdk/credential-provider-web-identity-3.296.0" ( - sources."@aws-sdk/crt-loader-3.750.0" + sources."@aws-sdk/crt-loader-3.758.0" // { dependencies = [ - sources."@aws-sdk/middleware-user-agent-3.750.0" + sources."@aws-sdk/middleware-user-agent-3.758.0" sources."@aws-sdk/types-3.734.0" sources."@aws-sdk/util-endpoints-3.743.0" - sources."@aws-sdk/util-user-agent-node-3.750.0" + sources."@aws-sdk/util-user-agent-node-3.758.0" ]; } ) @@ -57938,11 +54543,11 @@ in sources."@aws-sdk/shared-ini-file-loader-3.296.0" sources."@aws-sdk/signature-v4-3.296.0" ( - sources."@aws-sdk/signature-v4-crt-3.750.0" + sources."@aws-sdk/signature-v4-crt-3.758.0" // { dependencies = [ - sources."@aws-sdk/middleware-sdk-s3-3.750.0" - sources."@aws-sdk/signature-v4-multi-region-3.750.0" + sources."@aws-sdk/middleware-sdk-s3-3.758.0" + sources."@aws-sdk/signature-v4-multi-region-3.758.0" sources."@aws-sdk/types-3.734.0" sources."@aws-sdk/util-arn-parser-3.723.0" ]; @@ -57977,7 +54582,7 @@ in sources."@aws-sdk/util-utf8-browser-3.259.0" sources."@aws-sdk/util-waiter-3.296.0" sources."@aws-sdk/xml-builder-3.295.0" - sources."@babel/runtime-7.26.9" + sources."@babel/runtime-7.26.10" sources."@cronvel/get-pixels-3.4.1" sources."@csstools/color-helpers-5.0.2" sources."@csstools/css-calc-2.1.2" @@ -58059,8 +54664,8 @@ in sources."@tokenizer/token-0.3.0" sources."@tootallnate/once-1.1.2" sources."@types/nanoid-3.0.0" - sources."@types/node-22.13.5" - sources."@types/ws-8.5.14" + sources."@types/node-22.13.10" + sources."@types/ws-8.18.0" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" sources."adm-zip-0.5.16" @@ -58096,7 +54701,7 @@ in sources."async-mutex-0.5.0" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.7" - sources."aws-crt-1.25.3" + sources."aws-crt-1.26.2" ( sources."aws-sdk-2.1340.0" // { @@ -58112,7 +54717,7 @@ in ) sources."aws-sign2-0.7.0" sources."aws4-1.13.2" - sources."axios-1.7.9" + sources."axios-1.8.3" sources."balanced-match-1.0.2" sources."base-64-1.0.0" sources."base64-js-1.5.1" @@ -58145,7 +54750,7 @@ in ) sources."call-bind-1.0.8" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."camel-case-3.0.0" sources."camelcase-4.1.0" sources."canvas-2.11.2" @@ -58207,7 +54812,7 @@ in sources."crypt-0.0.2" sources."crypto-js-4.2.0" ( - sources."cssstyle-4.2.1" + sources."cssstyle-4.3.0" // { dependencies = [ sources."rrweb-cssom-0.8.0" @@ -58624,7 +55229,7 @@ in sources."ms-2.1.3" sources."multiparty-4.2.3" sources."mustache-4.2.0" - sources."nan-2.22.1" + sources."nan-2.22.2" sources."nanoid-3.3.7" sources."napi-build-utils-2.0.0" sources."ndarray-1.0.19" @@ -58673,7 +55278,7 @@ in sources."npm-run-path-4.0.1" sources."npmlog-5.0.1" sources."number-allocator-1.0.14" - sources."nwsapi-2.2.16" + sources."nwsapi-2.2.18" sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" ( @@ -58906,7 +55511,7 @@ in ) sources."strip-final-newline-2.0.0" sources."strip-json-comments-2.0.1" - sources."strnum-1.1.1" + sources."strnum-1.1.2" sources."strtok3-6.3.0" sources."supports-color-7.2.0" sources."symbol-tree-3.2.4" @@ -58962,7 +55567,7 @@ in sources."token-types-4.2.1" sources."tough-cookie-4.1.4" sources."tr46-5.0.0" - sources."tree-kit-0.8.7" + sources."tree-kit-0.8.8" sources."tslib-2.8.1" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" @@ -59008,7 +55613,7 @@ in sources."whatwg-mimetype-4.0.0" sources."whatwg-url-14.1.1" sources."which-2.0.2" - sources."which-typed-array-1.1.18" + sources."which-typed-array-1.1.19" sources."wide-align-1.1.5" sources."word-wrap-1.2.5" sources."wordwrapjs-3.0.0" @@ -59055,15 +55660,15 @@ in js-beautify = nodeEnv.buildNodePackage { name = "js-beautify"; packageName = "js-beautify"; - version = "1.15.3"; + version = "1.15.4"; src = fetchurl { - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.15.3.tgz"; - sha512 = "rKKGuyTxGNlyN4EQKWzNndzXpi0bOl8Gl8YQAW1as/oMz0XhD6sHJO1hTvoBDOSzKuJb9WkwoAb34FfdkKMv2A=="; + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.15.4.tgz"; + sha512 = "9/KXeZUKKJwqCXUdBxFJ3vPh467OCckSBmYDwSK/EtV090K+iMJ7zx2S3HLVDIWFQdqMIsZWbnaGiba18aWhaA=="; }; dependencies = [ sources."@isaacs/cliui-8.0.2" sources."@one-ini/wasm-0.1.1" - sources."abbrev-3.0.0" + sources."abbrev-2.0.0" sources."ansi-regex-5.0.1" sources."ansi-styles-6.2.1" sources."balanced-match-1.0.2" @@ -59093,7 +55698,7 @@ in sources."lru-cache-10.4.3" sources."minimatch-9.0.1" sources."minipass-7.1.2" - sources."nopt-8.1.0" + sources."nopt-7.2.1" sources."package-json-from-dist-1.0.1" sources."path-key-3.1.1" sources."path-scurry-1.11.1" @@ -59177,8 +55782,8 @@ in dependencies = [ sources."@babel/helper-string-parser-7.25.9" sources."@babel/helper-validator-identifier-7.25.9" - sources."@babel/parser-7.26.9" - sources."@babel/types-7.26.9" + sources."@babel/parser-7.26.10" + sources."@babel/types-7.26.10" sources."@jsdoc/salty-0.2.9" sources."@types/linkify-it-5.0.0" sources."@types/markdown-it-14.1.2" @@ -59332,7 +55937,7 @@ in sources."asap-2.0.6" sources."asynckit-0.4.0" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."combined-stream-1.0.8" sources."commander-4.1.1" sources."component-emitter-1.3.1" @@ -59418,7 +56023,7 @@ in sources."@tinyhttp/encode-url-2.1.1" sources."@tinyhttp/etag-2.1.2" sources."@tinyhttp/forwarded-2.1.2" - sources."@tinyhttp/logger-2.0.0" + sources."@tinyhttp/logger-2.1.0" sources."@tinyhttp/proxy-addr-2.2.1" sources."@tinyhttp/req-2.2.5" sources."@tinyhttp/res-2.2.5" @@ -59450,7 +56055,7 @@ in sources."sort-on-6.1.0" sources."steno-4.0.2" sources."totalist-3.0.1" - sources."type-fest-4.35.0" + sources."type-fest-4.37.0" ]; buildInputs = globalBuildInputs; meta = { @@ -59556,7 +56161,7 @@ in } ) sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."camelcase-3.0.0" sources."capture-stack-trace-1.0.2" sources."caseless-0.12.0" @@ -59815,7 +56420,7 @@ in sources."mkdirp-0.5.6" sources."morgan-1.10.0" sources."ms-2.0.0" - sources."nan-2.22.1" + sources."nan-2.22.2" ( sources."nanomatch-1.2.13" // { @@ -60172,14 +56777,14 @@ in sources."@babel/code-frame-7.26.2" sources."@babel/compat-data-7.26.8" ( - sources."@babel/core-7.26.9" + sources."@babel/core-7.26.10" // { dependencies = [ sources."semver-6.3.1" ]; } ) - sources."@babel/generator-7.26.9" + sources."@babel/generator-7.26.10" sources."@babel/helper-annotate-as-pure-7.25.9" ( sources."@babel/helper-compilation-targets-7.26.5" @@ -60195,9 +56800,9 @@ in sources."@babel/helper-string-parser-7.25.9" sources."@babel/helper-validator-identifier-7.25.9" sources."@babel/helper-validator-option-7.25.9" - sources."@babel/helpers-7.26.9" + sources."@babel/helpers-7.26.10" sources."@babel/node-7.26.0" - sources."@babel/parser-7.26.9" + sources."@babel/parser-7.26.10" sources."@babel/plugin-syntax-jsx-7.25.9" sources."@babel/plugin-transform-react-jsx-7.25.9" ( @@ -60210,8 +56815,8 @@ in } ) sources."@babel/template-7.26.9" - sources."@babel/traverse-7.26.9" - sources."@babel/types-7.26.9" + sources."@babel/traverse-7.26.10" + sources."@babel/types-7.26.10" sources."@jridgewell/gen-mapping-0.3.8" sources."@jridgewell/resolve-uri-3.1.2" sources."@jridgewell/set-array-1.2.1" @@ -60278,7 +56883,7 @@ in sources."abab-2.0.6" sources."abbrev-1.1.1" sources."accepts-1.3.8" - sources."acorn-8.14.0" + sources."acorn-8.14.1" ( sources."acorn-globals-6.0.0" // { @@ -60333,8 +56938,8 @@ in sources."bytes-3.1.2" sources."call-bind-1.0.8" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" - sources."caniuse-lite-1.0.30001700" + sources."call-bound-1.0.4" + sources."caniuse-lite-1.0.30001704" sources."canvas-2.11.2" sources."chalk-4.1.2" sources."chardet-1.6.1" @@ -60355,7 +56960,7 @@ in sources."convert-source-map-2.0.0" sources."cookie-0.7.1" sources."cookie-signature-1.0.6" - sources."core-js-3.40.0" + sources."core-js-3.41.0" sources."core-util-is-1.0.3" sources."cors-2.8.5" sources."create-hash-1.2.0" @@ -60399,7 +57004,7 @@ in sources."dotenv-8.6.0" sources."dunder-proto-1.0.1" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.5.104" + sources."electron-to-chromium-1.5.118" sources."emoji-regex-8.0.0" sources."encodeurl-2.0.0" ( @@ -60439,7 +57044,7 @@ in ) sources."express-validator-6.15.0" sources."fast-glob-3.3.3" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."fetch-blob-3.2.0" sources."fill-range-7.1.1" sources."filter-obj-1.1.0" @@ -60650,7 +57255,7 @@ in sources."mkdirp-classic-0.5.3" sources."ms-2.1.3" sources."multistream-4.1.0" - sources."nan-2.22.1" + sources."nan-2.22.2" sources."napi-build-utils-1.0.2" sources."negotiator-0.6.3" sources."node-abi-3.74.0" @@ -60678,7 +57283,7 @@ in sources."node-releases-2.0.19" sources."nopt-5.0.0" sources."npmlog-5.0.1" - sources."nwsapi-2.2.16" + sources."nwsapi-2.2.18" sources."object-assign-4.1.1" sources."object-inspect-1.13.4" sources."object-keys-1.1.1" @@ -60758,7 +57363,7 @@ in ]; } ) - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."rimraf-3.0.2" sources."ripemd160-2.0.2" sources."run-parallel-1.2.0" @@ -60857,7 +57462,7 @@ in sources."unbox-primitive-1.1.0" sources."universalify-0.2.0" sources."unpipe-1.0.0" - sources."update-browserslist-db-1.1.2" + sources."update-browserslist-db-1.1.3" sources."url-parse-1.5.10" sources."utf-8-validate-5.0.10" sources."util-deprecate-1.0.2" @@ -60879,7 +57484,7 @@ in sources."which-boxed-primitive-1.1.1" sources."which-builtin-type-1.2.1" sources."which-collection-1.0.2" - sources."which-typed-array-1.1.18" + sources."which-typed-array-1.1.19" sources."wide-align-1.1.5" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" @@ -60922,7 +57527,7 @@ in sources."emoji-regex-8.0.0" sources."escalade-3.2.0" sources."fast-glob-3.3.3" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."fill-range-7.1.1" sources."get-caller-file-2.0.5" sources."glob-parent-5.1.2" @@ -60935,7 +57540,7 @@ in sources."picomatch-2.3.1" sources."queue-microtask-1.2.3" sources."require-directory-2.1.1" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."run-parallel-1.2.0" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" @@ -61146,7 +57751,7 @@ in } ) sources."ms-2.1.3" - sources."nan-2.22.1" + sources."nan-2.22.2" ( sources."nanomatch-1.2.13" // { @@ -61382,7 +57987,7 @@ in } ) sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."caseless-0.12.0" sources."chokidar-1.7.0" ( @@ -61606,7 +58211,7 @@ in } ) sources."ms-2.0.0" - sources."nan-2.22.1" + sources."nan-2.22.2" ( sources."nanomatch-1.2.13" // { @@ -61978,7 +58583,7 @@ in sources."@types/commander-2.12.5" sources."@types/diff-3.5.8" sources."@types/get-stdin-5.0.1" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."commander-2.20.3" sources."diff-3.5.0" sources."get-stdin-5.0.1" @@ -62072,7 +58677,7 @@ in sources."bufferstreams-1.1.3" sources."call-bind-1.0.8" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."caller-path-0.1.0" sources."callsites-0.2.0" sources."caseless-0.12.0" @@ -62623,7 +59228,7 @@ in sources."asap-2.0.6" sources."asynckit-0.4.0" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."combined-stream-1.0.8" sources."commander-2.20.3" sources."component-emitter-1.3.1" @@ -62984,20 +59589,20 @@ in dependencies = [ sources."@babel/code-frame-7.26.2" sources."@babel/helper-validator-identifier-7.25.9" - sources."@inquirer/checkbox-4.1.2" - sources."@inquirer/confirm-5.1.6" - sources."@inquirer/core-10.1.7" - sources."@inquirer/editor-4.2.7" - sources."@inquirer/expand-4.0.9" - sources."@inquirer/figures-1.0.10" - sources."@inquirer/input-4.1.6" - sources."@inquirer/number-3.0.9" - sources."@inquirer/password-4.0.9" - sources."@inquirer/prompts-7.3.2" - sources."@inquirer/rawlist-4.0.9" - sources."@inquirer/search-3.0.9" - sources."@inquirer/select-4.0.9" - sources."@inquirer/type-3.0.4" + sources."@inquirer/checkbox-4.1.3" + sources."@inquirer/confirm-5.1.7" + sources."@inquirer/core-10.1.8" + sources."@inquirer/editor-4.2.8" + sources."@inquirer/expand-4.0.10" + sources."@inquirer/figures-1.0.11" + sources."@inquirer/input-4.1.7" + sources."@inquirer/number-3.0.10" + sources."@inquirer/password-4.0.10" + sources."@inquirer/prompts-7.3.3" + sources."@inquirer/rawlist-4.0.10" + sources."@inquirer/search-3.0.10" + sources."@inquirer/select-4.0.10" + sources."@inquirer/type-3.0.5" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -63006,7 +59611,7 @@ in sources."@pnpm/npm-conf-2.3.1" sources."@samverschueren/stream-to-observable-0.3.1" sources."@sindresorhus/merge-streams-2.3.0" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."@types/normalize-package-data-2.4.4" sources."ansi-align-3.0.1" sources."ansi-escapes-4.3.2" @@ -63025,7 +59630,7 @@ in sources."emoji-regex-10.4.0" sources."string-width-7.2.0" sources."strip-ansi-7.1.0" - sources."type-fest-4.35.0" + sources."type-fest-4.37.0" sources."wrap-ansi-9.0.0" ]; } @@ -63083,7 +59688,7 @@ in sources."dot-prop-9.0.0" // { dependencies = [ - sources."type-fest-4.35.0" + sources."type-fest-4.37.0" ]; } ) @@ -63103,7 +59708,7 @@ in sources."exit-hook-4.0.0" sources."external-editor-3.1.0" sources."fast-glob-3.3.3" - sources."fastq-1.19.0" + sources."fastq-1.19.1" ( sources."figures-1.7.0" // { @@ -63121,7 +59726,7 @@ in ]; } ) - sources."find-up-simple-1.0.0" + sources."find-up-simple-1.0.1" sources."get-east-asian-width-1.3.0" sources."get-stream-8.0.1" sources."github-url-from-git-1.5.0" @@ -63162,7 +59767,7 @@ in sources."indent-string-3.2.0" sources."index-to-position-0.1.2" sources."ini-4.1.1" - sources."inquirer-12.4.2" + sources."inquirer-12.4.3" ( sources."inquirer-autosubmit-prompt-0.2.0" // { @@ -63385,7 +59990,7 @@ in sources."read-package-up-11.0.0" // { dependencies = [ - sources."type-fest-4.35.0" + sources."type-fest-4.37.0" ]; } ) @@ -63394,7 +59999,7 @@ in // { dependencies = [ sources."parse-json-8.1.0" - sources."type-fest-4.35.0" + sources."type-fest-4.37.0" sources."unicorn-magic-0.1.0" ]; } @@ -63420,7 +60025,7 @@ in ]; } ) - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."run-applescript-7.0.0" sources."run-async-3.0.0" sources."run-parallel-1.2.0" @@ -63474,7 +60079,7 @@ in sources."to-regex-range-5.0.1" sources."tslib-1.14.1" sources."type-fest-0.21.3" - sources."typescript-5.7.3" + sources."typescript-5.8.2" sources."undici-types-6.20.0" sources."unicorn-magic-0.3.0" sources."update-notifier-7.3.1" @@ -63536,12 +60141,12 @@ in }; dependencies = [ sources."@fastify/busboy-2.1.1" - sources."@inquirer/checkbox-4.1.2" - sources."@inquirer/core-10.1.7" - sources."@inquirer/figures-1.0.10" - sources."@inquirer/select-4.0.9" - sources."@inquirer/type-3.0.4" - sources."@types/node-22.13.5" + sources."@inquirer/checkbox-4.1.3" + sources."@inquirer/core-10.1.8" + sources."@inquirer/figures-1.0.11" + sources."@inquirer/select-4.0.10" + sources."@inquirer/type-3.0.5" + sources."@types/node-22.13.10" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -63582,10 +60187,10 @@ in orval = nodeEnv.buildNodePackage { name = "orval"; packageName = "orval"; - version = "7.5.0"; + version = "7.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/orval/-/orval-7.5.0.tgz"; - sha512 = "YyD9EKXS51z2MYz1bYahZadcWrGrlbLUvDaTueUAAs6zIsv4R7xfPK3nPE6kHG5UCvdjZOUvHiAsV1ajj6fqSA=="; + url = "https://registry.npmjs.org/orval/-/orval-7.7.0.tgz"; + sha512 = "P7hwxaMteeiscUBQvA8SjsDdZ14HFRk/e4kynCZEwh0j1A0U2mfSdJ4dUXcjhPWuC0ZgCEbByhay0YguViLfPg=="; }; dependencies = [ sources."@apidevtools/json-schema-ref-parser-11.7.2" @@ -63594,6 +60199,7 @@ in sources."@apidevtools/swagger-parser-10.1.1" sources."@asyncapi/specs-6.8.1" sources."@exodus/schemasafe-1.3.0" + sources."@gerrit0/mini-shiki-1.27.2" sources."@ibm-cloud/openapi-ruleset-1.29.2" sources."@ibm-cloud/openapi-ruleset-utilities-1.7.1" sources."@jsdevtools/ono-7.1.3" @@ -63603,27 +60209,23 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@orval/angular-7.5.0" - sources."@orval/axios-7.5.0" + sources."@orval/angular-7.7.0" + sources."@orval/axios-7.7.0" ( - sources."@orval/core-7.5.0" + sources."@orval/core-7.7.0" // { dependencies = [ sources."openapi3-ts-4.4.0" ]; } ) - sources."@orval/fetch-7.5.0" - sources."@orval/hono-7.5.0" - sources."@orval/mock-7.5.0" - sources."@orval/query-7.5.0" - sources."@orval/swr-7.5.0" - sources."@orval/zod-7.5.0" - sources."@shikijs/core-1.29.2" - sources."@shikijs/engine-javascript-1.29.2" + sources."@orval/fetch-7.7.0" + sources."@orval/hono-7.7.0" + sources."@orval/mock-7.7.0" + sources."@orval/query-7.7.0" + sources."@orval/swr-7.7.0" + sources."@orval/zod-7.7.0" sources."@shikijs/engine-oniguruma-1.29.2" - sources."@shikijs/langs-1.29.2" - sources."@shikijs/themes-1.29.2" sources."@shikijs/types-1.29.2" sources."@shikijs/vscode-textmate-10.0.2" sources."@stoplight/better-ajv-errors-1.0.3" @@ -63640,7 +60242,7 @@ in sources."@stoplight/ordered-object-literal-1.0.5" sources."@stoplight/path-1.3.2" ( - sources."@stoplight/spectral-core-1.19.4" + sources."@stoplight/spectral-core-1.19.5" // { dependencies = [ sources."@stoplight/types-13.6.0" @@ -63649,7 +60251,7 @@ in } ) sources."@stoplight/spectral-formats-1.8.2" - sources."@stoplight/spectral-functions-1.9.3" + sources."@stoplight/spectral-functions-1.9.4" ( sources."@stoplight/spectral-parsers-1.0.5" // { @@ -63659,8 +60261,8 @@ in } ) sources."@stoplight/spectral-ref-resolver-1.0.5" - sources."@stoplight/spectral-rulesets-1.21.3" - sources."@stoplight/spectral-runtime-1.1.3" + sources."@stoplight/spectral-rulesets-1.21.4" + sources."@stoplight/spectral-runtime-1.1.4" sources."@stoplight/types-13.20.0" ( sources."@stoplight/yaml-4.3.0" @@ -63674,13 +60276,11 @@ in sources."@types/es-aggregate-error-1.0.6" sources."@types/hast-3.0.4" sources."@types/json-schema-7.0.15" - sources."@types/mdast-4.0.4" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."@types/unist-3.0.3" sources."@types/urijs-1.19.25" - sources."@ungap/structured-clone-1.3.0" sources."abort-controller-3.0.0" - sources."acorn-8.14.0" + sources."acorn-8.14.1" sources."ajv-8.17.1" sources."ajv-draft-04-1.0.0" sources."ajv-errors-3.0.0" @@ -63701,17 +60301,13 @@ in sources."cac-6.7.14" sources."call-bind-1.0.8" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."call-me-maybe-1.0.2" - sources."ccount-2.0.1" sources."chalk-4.1.2" - sources."character-entities-html4-2.1.0" - sources."character-entities-legacy-3.0.0" sources."chokidar-4.0.3" sources."cliui-8.0.1" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."comma-separated-tokens-2.0.3" sources."compare-versions-6.1.1" sources."concat-map-0.0.1" sources."cross-spawn-7.0.6" @@ -63722,12 +60318,9 @@ in sources."define-data-property-1.1.4" sources."define-properties-1.2.1" sources."dependency-graph-0.11.0" - sources."dequal-2.0.3" - sources."devlop-1.1.0" sources."dir-glob-3.0.1" sources."dunder-proto-1.0.1" sources."emoji-regex-8.0.0" - sources."emoji-regex-xs-1.0.0" sources."encoding-0.1.13" sources."enquirer-2.4.1" sources."entities-4.5.0" @@ -63739,7 +60332,7 @@ in sources."es-set-tostringtag-2.1.0" sources."es-to-primitive-1.3.0" sources."es6-promise-3.3.1" - sources."esbuild-0.24.2" + sources."esbuild-0.25.1" sources."escalade-3.2.0" sources."esutils-2.0.3" sources."event-target-shim-5.0.1" @@ -63749,7 +60342,7 @@ in sources."fast-memoize-2.5.2" sources."fast-safe-stringify-2.1.1" sources."fast-uri-3.0.6" - sources."fastq-1.19.0" + sources."fastq-1.19.1" sources."fill-range-7.1.1" sources."find-up-5.0.0" sources."for-each-0.3.5" @@ -63774,9 +60367,6 @@ in sources."has-symbols-1.1.0" sources."has-tostringtag-1.0.2" sources."hasown-2.0.2" - sources."hast-util-to-html-9.0.5" - sources."hast-util-whitespace-3.0.0" - sources."html-void-elements-3.0.0" sources."http2-client-1.3.5" sources."human-signals-2.1.0" sources."iconv-lite-0.6.3" @@ -63815,16 +60405,14 @@ in sources."json-schema-traverse-1.0.0" sources."jsonc-parser-2.2.1" sources."jsonfile-6.1.0" - sources."jsonpath-plus-10.2.0" + sources."jsonpath-plus-10.3.0" sources."jsonpointer-5.0.1" sources."jsonschema-1.5.0" sources."leven-3.1.0" sources."linkify-it-5.0.0" sources."locate-path-6.0.0" sources."lodash-4.17.21" - sources."lodash.get-4.4.2" sources."lodash.isempty-4.4.0" - sources."lodash.omit-4.5.0" sources."lodash.omitby-4.6.0" sources."lodash.topath-4.5.2" sources."lodash.uniq-4.5.0" @@ -63835,15 +60423,9 @@ in sources."lunr-2.3.9" sources."markdown-it-14.1.0" sources."math-intrinsics-1.1.0" - sources."mdast-util-to-hast-13.2.0" sources."mdurl-2.0.0" sources."merge-stream-2.0.0" sources."merge2-1.4.1" - sources."micromark-util-character-2.1.1" - sources."micromark-util-encode-2.0.1" - sources."micromark-util-sanitize-uri-2.0.1" - sources."micromark-util-symbol-2.0.1" - sources."micromark-util-types-2.0.1" sources."micromatch-4.0.8" sources."mimic-fn-2.1.0" ( @@ -63890,7 +60472,6 @@ in sources."object-keys-1.1.1" sources."object.assign-4.1.7" sources."onetime-5.1.2" - sources."oniguruma-to-es-2.3.0" sources."openapi-types-12.1.3" sources."openapi3-ts-4.2.2" sources."own-keys-1.0.1" @@ -63902,19 +60483,15 @@ in sources."picomatch-2.3.1" sources."pony-cause-1.1.1" sources."possible-typed-array-names-1.1.0" - sources."property-information-7.0.0" sources."punycode.js-2.3.1" sources."queue-microtask-1.2.3" sources."readdirp-4.1.2" sources."reflect.getprototypeof-1.0.10" sources."reftools-1.1.9" - sources."regex-5.1.1" - sources."regex-recursion-5.1.1" - sources."regex-utilities-2.3.0" sources."regexp.prototype.flags-1.5.4" sources."require-directory-2.1.1" sources."require-from-string-2.0.2" - sources."reusify-1.0.4" + sources."reusify-1.1.0" sources."run-parallel-1.2.0" sources."safe-array-concat-1.1.3" sources."safe-push-apply-1.0.0" @@ -63926,7 +60503,6 @@ in sources."set-proto-1.0.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."shiki-1.29.2" sources."should-13.2.3" sources."should-equal-2.0.0" sources."should-format-3.0.3" @@ -63940,13 +60516,11 @@ in sources."signal-exit-3.0.7" sources."simple-eval-1.0.1" sources."slash-3.0.0" - sources."space-separated-tokens-2.0.2" sources."string-argv-0.3.2" sources."string-width-4.2.3" sources."string.prototype.trim-1.2.10" sources."string.prototype.trimend-1.0.9" sources."string.prototype.trimstart-1.0.8" - sources."stringify-entities-4.0.4" sources."strip-ansi-6.0.1" sources."strip-final-newline-2.0.0" sources."supports-color-7.2.0" @@ -63960,7 +60534,6 @@ in ) sources."to-regex-range-5.0.1" sources."tr46-0.0.3" - sources."trim-lines-3.0.1" sources."tsconfck-2.1.2" sources."tslib-2.8.1" sources."typed-array-buffer-1.0.3" @@ -63968,45 +60541,36 @@ in sources."typed-array-byte-offset-1.0.4" sources."typed-array-length-1.0.7" ( - sources."typedoc-0.26.11" + sources."typedoc-0.27.9" // { dependencies = [ sources."brace-expansion-2.0.1" sources."minimatch-9.0.5" - sources."typescript-5.6.3" ]; } ) - sources."typedoc-plugin-markdown-4.2.10" - sources."typescript-5.7.3" + sources."typedoc-plugin-markdown-4.4.2" + sources."typescript-5.8.2" sources."uc.micro-2.1.0" sources."unbox-primitive-1.1.0" sources."undici-types-6.20.0" - sources."unist-util-is-6.0.0" - sources."unist-util-position-5.0.0" - sources."unist-util-stringify-position-4.0.0" - sources."unist-util-visit-5.0.0" - sources."unist-util-visit-parents-6.0.1" sources."universalify-2.0.1" sources."urijs-1.19.11" sources."utility-types-3.11.0" sources."validator-13.12.0" - sources."vfile-6.0.3" - sources."vfile-message-4.0.2" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."which-2.0.2" sources."which-boxed-primitive-1.1.1" sources."which-builtin-type-1.2.1" sources."which-collection-1.0.2" - sources."which-typed-array-1.1.18" + sources."which-typed-array-1.1.19" sources."wrap-ansi-7.0.0" sources."y18n-5.0.8" sources."yaml-2.7.0" sources."yargs-17.7.2" sources."yargs-parser-21.1.1" sources."yocto-queue-0.1.0" - sources."zwitch-2.0.4" ]; buildInputs = globalBuildInputs; meta = { @@ -64069,7 +60633,7 @@ in sources."bytes-3.1.2" sources."call-bind-1.0.8" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."camelcase-5.3.1" sources."caseless-0.12.0" sources."clarinet-0.11.0" @@ -64209,7 +60773,7 @@ in sources."ms-2.0.0" sources."msgpack5-3.6.1" sources."mv-2.1.1" - sources."nan-2.22.1" + sources."nan-2.22.2" sources."ncp-2.0.0" sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" sources."neo-async-2.6.2" @@ -64436,7 +61000,7 @@ in sources."buffer-indexof-1.1.1" sources."call-bind-1.0.8" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."camelcase-2.1.1" sources."camelcase-keys-2.1.0" sources."chalk-1.1.3" @@ -64803,7 +61367,7 @@ in sources."bufferutil-4.0.9" sources."bytes-3.1.2" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."caseless-0.12.0" sources."chrome-dgram-3.0.6" sources."chrome-dns-1.0.1" @@ -65267,7 +61831,7 @@ in sha512 = "dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="; }; dependencies = [ - sources."nanoid-3.3.8" + sources."nanoid-3.3.9" sources."picocolors-1.1.1" sources."source-map-js-1.2.1" ]; @@ -65284,16 +61848,12 @@ in postcss-cli = nodeEnv.buildNodePackage { name = "postcss-cli"; packageName = "postcss-cli"; - version = "11.0.0"; + version = "11.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-cli/-/postcss-cli-11.0.0.tgz"; - sha512 = "xMITAI7M0u1yolVcXJ9XTZiO9aO49mcoKQy6pCDFdMh9kGqhzLVpWxeD/32M/QBmkhcGypZFFOLNLmIW4Pg4RA=="; + url = "https://registry.npmjs.org/postcss-cli/-/postcss-cli-11.0.1.tgz"; + sha512 = "0UnkNPSayHKRe/tc2YGW6XnSqqOA9eqpiRMgRlV1S6HdGi16vwJBx7lviARzbV1HpQHqLLRH3o8vTcB0cLc+5g=="; }; dependencies = [ - sources."@nodelib/fs.scandir-2.1.5" - sources."@nodelib/fs.stat-2.0.5" - sources."@nodelib/fs.walk-1.2.8" - sources."@sindresorhus/merge-streams-2.3.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."anymatch-3.1.3" @@ -65303,21 +61863,24 @@ in sources."cliui-8.0.1" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."dependency-graph-0.11.0" + sources."dependency-graph-1.0.0" sources."emoji-regex-8.0.0" - sources."esbuild-0.25.0" + sources."esbuild-0.25.1" sources."escalade-3.2.0" - sources."fast-glob-3.3.3" - sources."fastq-1.19.0" + ( + sources."fdir-6.4.3" + // { + dependencies = [ + sources."picomatch-4.0.2" + ]; + } + ) sources."fill-range-7.1.1" sources."fs-extra-11.3.0" sources."get-caller-file-2.0.5" - sources."get-stdin-9.0.0" sources."get-tsconfig-4.10.0" sources."glob-parent-5.1.2" - sources."globby-14.1.0" sources."graceful-fs-4.2.11" - sources."ignore-7.0.3" sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -65326,11 +61889,8 @@ in sources."jiti-2.4.2" sources."jsonfile-6.1.0" sources."lilconfig-3.1.3" - sources."merge2-1.4.1" - sources."micromatch-4.0.8" - sources."nanoid-3.3.8" + sources."nanoid-3.3.9" sources."normalize-path-3.0.0" - sources."path-type-6.0.0" sources."picocolors-1.1.1" sources."picomatch-2.3.1" sources."pify-2.3.0" @@ -65338,21 +61898,25 @@ in sources."postcss-load-config-5.1.0" sources."postcss-reporter-7.1.0" sources."pretty-hrtime-1.0.3" - sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" sources."readdirp-3.6.0" sources."require-directory-2.1.1" sources."resolve-pkg-maps-1.0.0" - sources."reusify-1.0.4" - sources."run-parallel-1.2.0" sources."slash-5.1.0" sources."source-map-js-1.2.1" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" sources."thenby-1.3.4" + ( + sources."tinyglobby-0.2.12" + // { + dependencies = [ + sources."picomatch-4.0.2" + ]; + } + ) sources."to-regex-range-5.0.1" sources."tsx-4.19.3" - sources."unicorn-magic-0.3.0" sources."universalify-2.0.1" sources."wrap-ansi-7.0.0" sources."y18n-5.0.8" @@ -65427,10 +61991,10 @@ in prettier = nodeEnv.buildNodePackage { name = "prettier"; packageName = "prettier"; - version = "3.5.2"; + version = "3.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/prettier/-/prettier-3.5.2.tgz"; - sha512 = "lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg=="; + url = "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz"; + sha512 = "QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw=="; }; buildInputs = globalBuildInputs; meta = { @@ -65453,7 +62017,7 @@ in dependencies = [ sources."@taplo/core-0.1.1" sources."@taplo/lib-0.4.0-alpha.2" - sources."prettier-3.5.2" + sources."prettier-3.5.3" ]; buildInputs = globalBuildInputs; meta = { @@ -65468,20 +62032,25 @@ in "@prisma/language-server" = nodeEnv.buildNodePackage { name = "_at_prisma_slash_language-server"; packageName = "@prisma/language-server"; - version = "6.4.1"; + version = "6.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-6.4.1.tgz"; - sha512 = "gCB2QOaw1oFN53I6QB0oNaAPTF3DB9xpSfd9G2wsqoInMwufu+fGJP+d97wqSOmHlavQZJ3//yTQkk7Ws/HzYA=="; + url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-6.5.0.tgz"; + sha512 = "Cot58P6uJ9IJ5MHJBakSLe87jSj2zC54jJuBjYQ9rJFsNy4Y/bQ605BC1TbxXqJjgpzrYOjTbkLCCU/XIG7PbA=="; }; dependencies = [ - sources."@prisma/prisma-schema-wasm-6.4.0-29.a9055b89e58b4b5bfb59600785423b1db3d0e75d" - sources."@prisma/schema-files-loader-6.4.1" + sources."@prisma/config-6.5.0" + sources."@prisma/prisma-schema-wasm-6.5.0-73.173f8d54f8d52e692c7e27e72a88314ec7aeff60" + sources."@prisma/schema-files-loader-6.5.0" sources."@types/js-levenshtein-1.1.3" - sources."fs-extra-11.1.1" + sources."debug-4.4.0" + sources."esbuild-0.25.1" + sources."esbuild-register-3.6.0" + sources."fs-extra-11.3.0" sources."graceful-fs-4.2.11" sources."js-levenshtein-1.1.6" sources."jsonfile-6.1.0" sources."klona-2.0.6" + sources."ms-2.1.3" sources."universalify-2.0.1" sources."vscode-jsonrpc-8.1.0" sources."vscode-languageserver-8.1.0" @@ -65678,7 +62247,7 @@ in sources."cached-path-relative-1.1.0" sources."call-bind-1.0.8" sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" + sources."call-bound-1.0.4" sources."cipher-base-1.0.6" sources."colors-1.4.0" sources."combine-source-map-0.8.0" @@ -66133,10 +62702,10 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "4.34.8"; + version = "4.35.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz"; - sha512 = "489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ=="; + url = "https://registry.npmjs.org/rollup/-/rollup-4.35.0.tgz"; + sha512 = "kg6oI4g+vc41vePJyO6dHt/yl0Rz3Thv0kJeVQ3D1kS3E5XSuKbPc29G4IpT/Kv1KQwgHVcN+HtyS+HYLNSvQg=="; }; dependencies = [ sources."@types/estree-1.0.6" @@ -66413,7 +62982,7 @@ in sources."minimist-1.2.8" sources."mkdirp-0.5.6" sources."mv-2.1.1" - sources."nan-2.22.1" + sources."nan-2.22.2" sources."ncp-2.0.0" sources."negotiator-0.5.3" sources."node-uuid-1.4.8" @@ -66539,7 +63108,7 @@ in dependencies = [ sources."@socket.io/component-emitter-3.1.2" sources."@types/cors-2.8.17" - sources."@types/node-22.13.5" + sources."@types/node-22.13.10" sources."accepts-1.3.8" sources."base64id-2.0.0" sources."bufferutil-4.0.9" @@ -66746,10 +63315,10 @@ in svelte-check = nodeEnv.buildNodePackage { name = "svelte-check"; packageName = "svelte-check"; - version = "4.1.4"; + version = "4.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-check/-/svelte-check-4.1.4.tgz"; - sha512 = "v0j7yLbT29MezzaQJPEDwksybTE2Ups9rUxEXy92T06TiA0cbqcO8wAOwNUVkFW6B0hsYHA+oAX3BS8b/2oHtw=="; + url = "https://registry.npmjs.org/svelte-check/-/svelte-check-4.1.5.tgz"; + sha512 = "Gb0T2IqBNe1tLB9EB1Qh+LOe+JB8wt2/rNBDGvkxQVvk8vNeAoG+vZgFB/3P5+zC7RWlyBlzm9dVjZFph/maIg=="; }; dependencies = [ sources."@ampproject/remapping-2.3.0" @@ -66758,9 +63327,9 @@ in sources."@jridgewell/set-array-1.2.1" sources."@jridgewell/sourcemap-codec-1.5.0" sources."@jridgewell/trace-mapping-0.3.25" + sources."@sveltejs/acorn-typescript-1.0.5" sources."@types/estree-1.0.6" - sources."acorn-8.14.0" - sources."acorn-typescript-1.4.13" + sources."acorn-8.14.1" sources."aria-query-5.3.2" sources."axobject-query-4.1.0" sources."chokidar-4.0.3" @@ -66776,8 +63345,8 @@ in sources."picomatch-4.0.2" sources."readdirp-4.1.2" sources."sade-1.8.1" - sources."svelte-5.20.4" - sources."typescript-5.7.3" + sources."svelte-5.23.0" + sources."typescript-5.8.2" sources."zimmerframe-1.1.2" ]; buildInputs = globalBuildInputs; @@ -66889,2600 +63458,6 @@ in bypassCache = true; reconstructLock = true; }; - thelounge-plugin-closepms = nodeEnv.buildNodePackage { - name = "thelounge-plugin-closepms"; - packageName = "thelounge-plugin-closepms"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-plugin-closepms/-/thelounge-plugin-closepms-1.0.2.tgz"; - sha512 = "o24rZwvzeMbbvuara2bGaX6eHw925aQw1BZhl7VHtY6xlWrJ9Sy7P29/Q2GQNIP4Otzcf09TX29zTBbRjKbrSA=="; - }; - dependencies = [ - sources."@fastify/busboy-1.0.0" - sources."@sindresorhus/is-4.6.0" - sources."@socket.io/component-emitter-3.1.2" - sources."@szmarczak/http-timer-4.0.6" - sources."@tokenizer/token-0.3.0" - sources."@types/cacheable-request-6.0.3" - sources."@types/cookie-0.4.1" - sources."@types/cors-2.8.17" - sources."@types/http-cache-semantics-4.0.4" - sources."@types/keyv-3.1.4" - sources."@types/node-22.13.5" - sources."@types/responselike-1.0.3" - sources."abort-controller-3.0.0" - sources."abstract-logging-2.0.1" - sources."accepts-1.3.8" - ( - sources."agent-base-6.0.2" - // { - dependencies = [ - sources."debug-4.4.0" - ]; - } - ) - sources."ansi-styles-4.3.0" - sources."array-flatten-1.1.1" - sources."asn1-0.2.6" - sources."asn1.js-5.4.1" - sources."assert-plus-1.0.0" - sources."available-typed-arrays-1.0.7" - sources."backoff-2.5.0" - sources."base64-js-1.5.1" - sources."base64id-2.0.0" - sources."bcryptjs-2.4.3" - sources."bn.js-4.12.1" - sources."body-parser-1.19.2" - sources."boolbase-1.0.0" - sources."buffer-6.0.3" - sources."buffer-equal-constant-time-1.0.1" - sources."bufferutil-4.0.9" - sources."bytes-3.1.2" - sources."cacheable-lookup-5.0.4" - sources."cacheable-request-7.0.4" - sources."call-bind-1.0.8" - sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" - sources."chalk-4.1.2" - sources."cheerio-1.0.0-rc.12" - sources."cheerio-select-2.1.0" - sources."clone-response-1.0.3" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."commander-9.0.0" - sources."content-disposition-0.5.4" - sources."content-type-1.0.5" - sources."cookie-0.4.2" - sources."cookie-signature-1.0.6" - sources."core-js-3.40.0" - sources."core-util-is-1.0.2" - sources."cors-2.8.5" - sources."css-select-5.1.0" - sources."css-what-6.1.0" - ( - sources."debug-2.6.9" - // { - dependencies = [ - sources."ms-2.0.0" - ]; - } - ) - ( - sources."decompress-response-6.0.0" - // { - dependencies = [ - sources."mimic-response-3.1.0" - ]; - } - ) - sources."deep-extend-0.6.0" - sources."defer-to-connect-2.0.1" - sources."define-data-property-1.1.4" - sources."depd-1.1.2" - sources."destroy-1.0.4" - sources."dom-serializer-2.0.0" - sources."domelementtype-2.3.0" - sources."domhandler-5.0.3" - sources."domutils-3.2.2" - sources."dunder-proto-1.0.1" - sources."ecdsa-sig-formatter-1.0.11" - sources."ee-first-1.1.1" - sources."encodeurl-1.0.2" - sources."end-of-stream-1.4.4" - ( - sources."engine.io-6.4.2" - // { - dependencies = [ - sources."debug-4.3.7" - ]; - } - ) - sources."engine.io-parser-5.0.7" - sources."entities-4.5.0" - sources."es-define-property-1.0.1" - sources."es-errors-1.3.0" - sources."es-object-atoms-1.1.1" - sources."escape-html-1.0.3" - sources."escape-string-regexp-1.0.5" - sources."etag-1.8.1" - sources."event-target-shim-5.0.1" - sources."eventemitter3-5.0.1" - sources."events-3.3.0" - sources."express-4.17.3" - sources."extsprintf-1.4.1" - sources."fast-text-encoding-1.0.6" - sources."file-type-16.5.4" - sources."filename-reserved-regex-2.0.0" - sources."filenamify-4.3.0" - sources."finalhandler-1.1.2" - sources."for-each-0.3.5" - sources."forwarded-0.2.0" - sources."fresh-0.5.2" - sources."function-bind-1.1.2" - sources."get-intrinsic-1.3.0" - sources."get-proto-1.0.1" - sources."get-stream-5.2.0" - sources."gopd-1.2.0" - sources."got-11.8.5" - sources."grapheme-splitter-1.0.4" - sources."has-flag-4.0.0" - sources."has-property-descriptors-1.0.2" - sources."has-symbols-1.1.0" - sources."has-tostringtag-1.0.2" - sources."hasown-2.0.2" - sources."htmlparser2-8.0.2" - sources."http-cache-semantics-4.1.1" - sources."http-errors-1.8.1" - sources."http2-wrapper-1.0.3" - sources."http_ece-1.1.0" - ( - sources."https-proxy-agent-5.0.1" - // { - dependencies = [ - sources."debug-4.4.0" - ]; - } - ) - sources."iconv-lite-0.4.24" - sources."ieee754-1.2.1" - sources."inherits-2.0.4" - sources."ini-1.3.8" - sources."ip-address-9.0.5" - sources."ipaddr.js-1.9.1" - ( - sources."irc-framework-4.13.1" - // { - dependencies = [ - sources."iconv-lite-0.6.3" - ]; - } - ) - sources."is-arguments-1.2.0" - sources."is-callable-1.2.7" - sources."is-generator-function-1.1.0" - sources."is-regex-1.2.1" - sources."is-typed-array-1.1.15" - sources."is-utf8-0.2.1" - sources."isomorphic-textencoder-1.0.1" - sources."jsbn-1.1.0" - sources."json-buffer-3.0.1" - sources."jwa-2.0.0" - sources."jws-4.0.0" - sources."keyv-4.5.4" - sources."ldap-filter-0.3.3" - sources."ldapjs-2.3.1" - sources."linkify-it-3.0.3" - sources."lodash-4.17.21" - sources."lowercase-keys-2.0.0" - sources."lru-cache-6.0.0" - sources."math-intrinsics-1.1.0" - sources."media-typer-0.3.0" - sources."merge-descriptors-1.0.1" - sources."methods-1.1.2" - sources."middleware-handler-0.2.0" - sources."mime-1.6.0" - sources."mime-db-1.51.0" - sources."mime-types-2.1.34" - sources."mimic-response-1.0.1" - sources."minimalistic-assert-1.0.1" - sources."minimist-1.2.8" - sources."ms-2.1.3" - sources."mute-stream-0.0.8" - sources."negotiator-0.6.3" - sources."node-forge-1.3.0" - sources."node-gyp-build-4.8.4" - sources."normalize-url-6.1.0" - sources."nth-check-2.1.1" - sources."object-assign-4.1.1" - sources."on-finished-2.3.0" - sources."once-1.4.0" - sources."p-cancelable-2.1.1" - sources."p-finally-1.0.0" - sources."p-try-2.2.0" - sources."package-json-7.0.0" - sources."parse5-7.2.1" - sources."parse5-htmlparser2-tree-adapter-7.1.0" - sources."parseurl-1.3.3" - sources."path-to-regexp-0.1.7" - sources."peek-readable-4.1.0" - sources."pify-4.0.1" - sources."possible-typed-array-names-1.1.0" - sources."precond-0.2.3" - sources."process-0.11.10" - sources."proxy-addr-2.0.7" - sources."pump-3.0.2" - sources."qs-6.9.7" - sources."quick-lru-5.1.1" - sources."range-parser-1.2.1" - sources."raw-body-2.4.3" - sources."rc-1.2.8" - sources."read-1.0.7" - sources."read-chunk-3.2.0" - sources."readable-stream-4.7.0" - sources."readable-web-to-node-stream-3.0.4" - sources."regenerator-runtime-0.13.11" - sources."registry-auth-token-4.2.2" - sources."registry-url-5.1.0" - sources."resolve-alpn-1.2.1" - sources."responselike-2.0.1" - sources."safe-buffer-5.2.1" - sources."safe-regex-test-1.1.0" - sources."safer-buffer-2.1.2" - sources."semver-7.5.2" - sources."send-0.17.2" - sources."serve-static-1.14.2" - sources."set-function-length-1.2.2" - sources."setprototypeof-1.2.0" - sources."smart-buffer-4.2.0" - ( - sources."socket.io-4.6.1" - // { - dependencies = [ - sources."debug-4.3.7" - ]; - } - ) - ( - sources."socket.io-adapter-2.5.5" - // { - dependencies = [ - sources."debug-4.3.7" - sources."ws-8.17.1" - ]; - } - ) - ( - sources."socket.io-parser-4.2.4" - // { - dependencies = [ - sources."debug-4.3.7" - ]; - } - ) - sources."socks-2.8.4" - sources."sprintf-js-1.1.3" - sources."statuses-1.5.0" - ( - sources."stream-browserify-3.0.0" - // { - dependencies = [ - sources."readable-stream-3.6.2" - ]; - } - ) - sources."string_decoder-1.3.0" - sources."strip-json-comments-2.0.1" - sources."strip-outer-1.0.1" - sources."strtok3-6.3.0" - sources."supports-color-7.2.0" - sources."text-decoding-1.0.0" - sources."thelounge-4.4.3" - sources."tlds-1.228.0" - sources."toidentifier-1.0.1" - sources."token-types-4.2.1" - sources."trim-repeated-1.0.0" - sources."type-is-1.6.18" - sources."ua-parser-js-1.0.33" - sources."uc.micro-1.0.6" - sources."undici-types-6.20.0" - sources."unpipe-1.0.0" - sources."urlsafe-base64-1.0.0" - sources."utf-8-validate-5.0.10" - sources."util-0.12.5" - sources."util-deprecate-1.0.2" - sources."utils-merge-1.0.1" - sources."uuid-8.3.2" - sources."vary-1.1.2" - ( - sources."vasync-2.2.1" - // { - dependencies = [ - sources."verror-1.10.0" - ]; - } - ) - sources."verror-1.10.1" - sources."web-push-3.4.5" - sources."which-typed-array-1.1.18" - sources."with-open-file-0.1.7" - sources."wrappy-1.0.2" - sources."ws-8.11.0" - sources."yallist-4.0.0" - sources."yarn-1.22.17" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "The Lounge plugin to close all PMs on a network"; - homepage = "https://github.com/alyx/thelounge-plugin-closepms#readme"; - license = "ISC"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-plugin-giphy = nodeEnv.buildNodePackage { - name = "thelounge-plugin-giphy"; - packageName = "thelounge-plugin-giphy"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-plugin-giphy/-/thelounge-plugin-giphy-1.0.2.tgz"; - sha512 = "X4z5CHFrQwltRfsPlUPZfLHW7PK8LS5eb7aq8Hx0IxP9AIIwgQeqKhSH0myJ5o3e6KYzrN7IY+/ZiUWxt+nqOQ=="; - }; - dependencies = [ - sources."@sindresorhus/is-0.14.0" - sources."@szmarczak/http-timer-1.1.2" - sources."abbrev-1.1.1" - sources."abstract-logging-1.0.0" - ( - sources."accepts-1.3.8" - // { - dependencies = [ - sources."mime-types-2.1.35" - ]; - } - ) - sources."after-0.8.2" - sources."agent-base-4.3.0" - sources."ajv-6.12.6" - sources."ansi-regex-2.1.1" - sources."ansi-styles-3.2.1" - sources."aproba-1.2.0" - ( - sources."are-we-there-yet-1.1.7" - // { - dependencies = [ - sources."isarray-1.0.0" - sources."readable-stream-2.3.8" - sources."safe-buffer-5.1.2" - sources."string_decoder-1.1.1" - ]; - } - ) - sources."array-flatten-1.1.1" - sources."arraybuffer.slice-0.0.7" - sources."asn1-0.2.6" - sources."asn1.js-5.4.1" - sources."assert-plus-1.0.0" - sources."async-limiter-1.0.1" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.13.2" - sources."axios-0.19.2" - sources."backo2-1.0.2" - sources."backoff-2.5.0" - sources."balanced-match-1.0.2" - sources."base64-arraybuffer-0.1.4" - sources."base64id-2.0.0" - sources."bcrypt-pbkdf-1.0.2" - sources."bcryptjs-2.4.3" - sources."better-assert-1.0.2" - sources."blob-0.0.5" - sources."bn.js-4.12.1" - ( - sources."body-parser-1.19.0" - // { - dependencies = [ - sources."debug-2.6.9" - sources."http-errors-1.7.2" - sources."inherits-2.0.3" - sources."qs-6.7.0" - ]; - } - ) - sources."boolbase-1.0.0" - sources."brace-expansion-1.1.11" - sources."buffer-equal-constant-time-1.0.1" - sources."bufferutil-4.0.9" - sources."busboy-0.3.1" - sources."bytes-3.1.0" - ( - sources."cacheable-request-6.1.0" - // { - dependencies = [ - sources."get-stream-5.2.0" - sources."lowercase-keys-2.0.0" - ]; - } - ) - sources."call-bind-apply-helpers-1.0.2" - sources."call-bound-1.0.3" - sources."callsite-1.0.0" - sources."caseless-0.12.0" - sources."chalk-2.4.2" - sources."cheerio-0.22.0" - sources."chownr-1.1.4" - sources."clone-response-1.0.3" - sources."code-point-at-1.1.0" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."combined-stream-1.0.8" - sources."commander-3.0.2" - sources."component-bind-1.0.0" - sources."component-emitter-1.2.1" - sources."component-inherit-0.0.3" - sources."concat-map-0.0.1" - sources."console-control-strings-1.1.0" - ( - sources."content-disposition-0.5.3" - // { - dependencies = [ - sources."safe-buffer-5.1.2" - ]; - } - ) - sources."content-type-1.0.5" - sources."cookie-0.4.0" - sources."cookie-signature-1.0.6" - sources."core-js-3.40.0" - sources."core-util-is-1.0.2" - sources."css-select-1.2.0" - sources."css-what-2.1.3" - sources."dashdash-1.14.1" - sources."debug-3.1.0" - sources."decompress-response-3.3.0" - sources."deep-extend-0.6.0" - sources."defer-to-connect-1.1.3" - sources."delayed-stream-1.0.0" - sources."delegates-1.0.0" - sources."depd-1.1.2" - sources."destroy-1.0.4" - sources."detect-libc-1.0.3" - sources."dicer-0.3.0" - sources."dom-serializer-0.1.1" - sources."domelementtype-1.3.1" - sources."domhandler-2.4.2" - sources."domutils-1.5.1" - sources."dunder-proto-1.0.1" - sources."duplexer3-0.1.5" - sources."ecc-jsbn-0.1.2" - sources."ecdsa-sig-formatter-1.0.11" - sources."ee-first-1.1.1" - sources."encodeurl-1.0.2" - sources."end-of-stream-1.4.4" - ( - sources."engine.io-3.4.2" - // { - dependencies = [ - sources."cookie-0.3.1" - sources."debug-4.1.1" - sources."ms-2.1.3" - ]; - } - ) - ( - sources."engine.io-client-3.4.4" - // { - dependencies = [ - sources."component-emitter-1.3.1" - sources."parseqs-0.0.6" - sources."parseuri-0.0.6" - sources."ws-6.1.4" - ]; - } - ) - sources."engine.io-parser-2.2.1" - sources."entities-1.1.2" - sources."es-define-property-1.0.1" - sources."es-errors-1.3.0" - sources."es-object-atoms-1.1.1" - sources."es6-promise-4.2.8" - sources."es6-promisify-5.0.0" - sources."escape-html-1.0.3" - sources."escape-string-regexp-1.0.5" - sources."etag-1.8.1" - sources."eventemitter3-2.0.3" - ( - sources."express-4.17.1" - // { - dependencies = [ - sources."debug-2.6.9" - sources."qs-6.7.0" - sources."safe-buffer-5.1.2" - ]; - } - ) - sources."extend-3.0.2" - sources."extsprintf-1.4.1" - sources."fast-deep-equal-3.1.3" - sources."fast-json-stable-stringify-2.1.0" - sources."fast-text-encoding-1.0.6" - sources."file-type-12.3.1" - sources."filename-reserved-regex-2.0.0" - sources."filenamify-4.1.0" - ( - sources."finalhandler-1.1.2" - // { - dependencies = [ - sources."debug-2.6.9" - ]; - } - ) - sources."follow-redirects-1.5.10" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."forwarded-0.2.0" - sources."fresh-0.5.2" - sources."fs-extra-8.1.0" - sources."fs-minipass-1.2.7" - sources."fs.realpath-1.0.0" - sources."function-bind-1.1.2" - sources."gauge-2.7.4" - sources."get-intrinsic-1.3.0" - sources."get-proto-1.0.1" - sources."get-stream-4.1.0" - sources."getpass-0.1.7" - sources."glob-7.2.3" - sources."gopd-1.2.0" - sources."got-9.6.0" - sources."graceful-fs-4.2.11" - sources."grapheme-splitter-1.0.4" - sources."har-schema-2.0.0" - sources."har-validator-5.1.5" - sources."has-binary2-1.0.3" - sources."has-cors-1.1.0" - sources."has-flag-3.0.0" - sources."has-symbols-1.1.0" - sources."has-unicode-2.0.1" - sources."hasown-2.0.2" - sources."htmlparser2-3.10.1" - sources."http-cache-semantics-4.1.1" - sources."http-errors-1.7.3" - sources."http-signature-1.2.0" - sources."http_ece-1.1.0" - sources."https-proxy-agent-3.0.1" - sources."iconv-lite-0.4.24" - sources."ignore-walk-3.0.4" - sources."indexof-0.0.1" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."ini-1.3.8" - sources."ipaddr.js-1.9.1" - sources."irc-framework-4.4.0" - sources."is-fullwidth-code-point-1.0.0" - sources."is-typedarray-1.0.0" - sources."is-utf8-0.2.1" - sources."isarray-2.0.1" - sources."isomorphic-textencoder-1.0.1" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."json-buffer-3.0.0" - sources."json-schema-0.4.0" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsonfile-4.0.0" - ( - sources."jsprim-1.4.2" - // { - dependencies = [ - sources."extsprintf-1.3.0" - sources."verror-1.10.0" - ]; - } - ) - sources."jwa-1.4.1" - sources."jws-3.2.2" - sources."keyv-3.1.0" - sources."ldap-filter-0.3.3" - sources."ldapjs-2.0.0-pre.2" - sources."linkify-it-2.2.0" - sources."lodash-4.17.15" - sources."lodash.assignin-4.2.0" - sources."lodash.bind-4.2.1" - sources."lodash.defaults-4.2.0" - sources."lodash.filter-4.6.0" - sources."lodash.flatten-4.4.0" - sources."lodash.foreach-4.5.0" - sources."lodash.map-4.6.0" - sources."lodash.merge-4.6.2" - sources."lodash.pick-4.4.0" - sources."lodash.reduce-4.6.0" - sources."lodash.reject-4.6.0" - sources."lodash.some-4.6.0" - sources."lowercase-keys-1.0.1" - sources."math-intrinsics-1.1.0" - sources."media-typer-0.3.0" - sources."merge-descriptors-1.0.1" - sources."methods-1.1.2" - sources."middleware-handler-0.2.0" - sources."mime-1.6.0" - sources."mime-db-1.52.0" - ( - sources."mime-types-2.1.24" - // { - dependencies = [ - sources."mime-db-1.40.0" - ]; - } - ) - sources."mimic-response-1.0.1" - sources."minimalistic-assert-1.0.1" - sources."minimatch-3.1.2" - sources."minimist-1.2.8" - sources."minipass-2.9.0" - sources."minizlib-1.3.3" - sources."mkdirp-0.5.6" - sources."ms-2.0.0" - sources."mute-stream-0.0.8" - sources."nan-2.22.1" - ( - sources."needle-2.9.1" - // { - dependencies = [ - sources."debug-3.2.7" - sources."ms-2.1.3" - ]; - } - ) - sources."negotiator-0.6.3" - sources."node-gyp-build-4.8.4" - ( - sources."node-pre-gyp-0.11.0" - // { - dependencies = [ - sources."semver-5.7.2" - ]; - } - ) - sources."nopt-4.0.3" - sources."normalize-url-4.5.1" - sources."npm-bundled-1.1.2" - sources."npm-normalize-package-bin-1.0.1" - sources."npm-packlist-1.4.8" - sources."npmlog-4.1.2" - sources."nth-check-1.0.2" - sources."number-is-nan-1.0.1" - sources."oauth-sign-0.9.0" - sources."object-assign-4.1.1" - sources."object-component-0.0.3" - sources."object-inspect-1.13.4" - sources."on-finished-2.3.0" - sources."once-1.4.0" - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - sources."osenv-0.1.5" - sources."p-cancelable-1.1.0" - sources."p-finally-1.0.0" - sources."p-try-2.2.0" - sources."package-json-6.5.0" - sources."parseqs-0.0.5" - sources."parseuri-0.0.5" - sources."parseurl-1.3.3" - sources."path-is-absolute-1.0.1" - sources."path-to-regexp-0.1.7" - sources."performance-now-2.1.0" - sources."pify-4.0.1" - sources."precond-0.2.3" - sources."prepend-http-2.0.0" - sources."process-nextick-args-2.0.1" - sources."proxy-addr-2.0.7" - sources."psl-1.15.0" - sources."pump-3.0.2" - sources."punycode-2.3.1" - sources."qs-6.14.0" - sources."range-parser-1.2.1" - ( - sources."raw-body-2.4.0" - // { - dependencies = [ - sources."http-errors-1.7.2" - sources."inherits-2.0.3" - ]; - } - ) - sources."rc-1.2.8" - sources."read-1.0.7" - sources."read-chunk-3.2.0" - sources."readable-stream-3.6.2" - sources."regenerator-runtime-0.13.11" - sources."registry-auth-token-4.2.2" - sources."registry-url-5.1.0" - ( - sources."request-2.88.2" - // { - dependencies = [ - sources."qs-6.5.3" - ]; - } - ) - sources."responselike-1.0.2" - sources."rimraf-2.7.1" - sources."safe-buffer-5.2.1" - sources."safer-buffer-2.1.2" - sources."sax-1.4.1" - sources."semver-6.3.0" - ( - sources."send-0.17.1" - // { - dependencies = [ - ( - sources."debug-2.6.9" - // { - dependencies = [ - sources."ms-2.0.0" - ]; - } - ) - sources."ms-2.1.1" - ]; - } - ) - sources."serve-static-1.14.1" - sources."set-blocking-2.0.0" - sources."setprototypeof-1.1.1" - sources."side-channel-1.1.0" - sources."side-channel-list-1.0.0" - sources."side-channel-map-1.0.1" - sources."side-channel-weakmap-1.0.2" - sources."signal-exit-3.0.7" - ( - sources."socket.io-2.3.0" - // { - dependencies = [ - sources."debug-4.1.1" - sources."ms-2.1.3" - ]; - } - ) - sources."socket.io-adapter-1.1.2" - ( - sources."socket.io-client-2.3.0" - // { - dependencies = [ - sources."base64-arraybuffer-0.1.5" - sources."debug-4.1.1" - sources."ms-2.1.3" - ( - sources."socket.io-parser-3.3.4" - // { - dependencies = [ - sources."component-emitter-1.3.1" - sources."debug-3.1.0" - sources."ms-2.0.0" - ]; - } - ) - ]; - } - ) - ( - sources."socket.io-parser-3.4.3" - // { - dependencies = [ - sources."debug-4.1.1" - sources."ms-2.1.3" - ]; - } - ) - ( - sources."socksjs-0.5.0" - // { - dependencies = [ - sources."ipaddr.js-0.1.3" - ]; - } - ) - sources."sqlite3-4.1.0" - sources."sshpk-1.18.0" - sources."statuses-1.5.0" - sources."streamsearch-0.1.2" - sources."string-width-1.0.2" - sources."string_decoder-1.3.0" - sources."strip-ansi-3.0.1" - sources."strip-json-comments-2.0.1" - sources."strip-outer-1.0.1" - sources."supports-color-5.5.0" - sources."tar-4.4.19" - sources."thelounge-3.3.0" - sources."tlds-1.203.1" - sources."to-array-0.1.4" - sources."to-readable-stream-1.0.0" - sources."toidentifier-1.0.0" - sources."tough-cookie-2.5.0" - sources."trim-repeated-1.0.0" - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."type-is-1.6.18" - sources."ua-parser-js-0.7.20" - sources."uc.micro-1.0.6" - sources."universalify-0.1.2" - sources."unpipe-1.0.0" - sources."uri-js-4.4.1" - sources."url-parse-lax-3.0.0" - sources."urlsafe-base64-1.0.0" - sources."utf-8-validate-5.0.10" - sources."util-deprecate-1.0.2" - sources."utils-merge-1.0.1" - sources."uuid-3.3.3" - sources."vary-1.1.2" - ( - sources."vasync-2.2.1" - // { - dependencies = [ - sources."verror-1.10.0" - ]; - } - ) - sources."verror-1.10.1" - sources."web-push-3.4.1" - sources."wide-align-1.1.5" - sources."with-open-file-0.1.7" - sources."wrappy-1.0.2" - sources."ws-7.5.10" - sources."xmlhttprequest-ssl-1.5.5" - sources."yallist-3.1.1" - sources."yarn-1.19.1" - sources."yeast-0.1.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Simple plugin for the irc client thelounge that allows you to quickly look up giphy-gifs"; - homepage = "https://minidigger.github.io/thelounge-plugin-giphy"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-plugin-shortcuts = nodeEnv.buildNodePackage { - name = "thelounge-plugin-shortcuts"; - packageName = "thelounge-plugin-shortcuts"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-plugin-shortcuts/-/thelounge-plugin-shortcuts-1.1.2.tgz"; - sha512 = "GcHfbcv97g2ESA301hRXqzBWPCLx8zpkALl4w+bpS6s01Z7G8/fEDzOTVt2TDkYxpMtvzmAhDAO7zFFF6TxFkQ=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Simple plugin for the irc client thelounge that allows you to register shortcuts/aliases for commands"; - homepage = "https://minidigger.github.io/thelounge-plugin-shortcuts"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-theme-abyss = nodeEnv.buildNodePackage { - name = "thelounge-theme-abyss"; - packageName = "thelounge-theme-abyss"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-abyss/-/thelounge-theme-abyss-2.1.0.tgz"; - sha512 = "fgEraJX5U/YkGWqtP3YJNV0p/ejQk/P3Dj11wff6H9i8+5CDfRXULl9Jp8KFyZPynk47mj5hwVqm3xj31XSjJg=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A very nice theme for The Lounge"; - homepage = "https://github.com/flisk/thelounge-theme-abyss"; - license = "GPL-3"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-theme-amoled = nodeEnv.buildNodePackage { - name = "thelounge-theme-amoled"; - packageName = "thelounge-theme-amoled"; - version = "1.0.17"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-amoled/-/thelounge-theme-amoled-1.0.17.tgz"; - sha512 = "s6+OyYbwIhYJG5VVAmUyDR3WvN4bqW2POPK33aeXpvoX9uW1gr2YDcD2ZGuCdo6H7Wteie6JHIRGRroFWok6SA=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Black theme suitable for AMOLED displays"; - homepage = "https://github.com/realies/thelounge-theme-amoled"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-theme-amoled-sourcecodepro = nodeEnv.buildNodePackage { - name = "thelounge-theme-amoled-sourcecodepro"; - packageName = "thelounge-theme-amoled-sourcecodepro"; - version = "1.0.16"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-amoled-sourcecodepro/-/thelounge-theme-amoled-sourcecodepro-1.0.16.tgz"; - sha512 = "zDP2OS8NXym/qSOm36+7dhwxab7mLiZp+7FLVFChhWzrVQY9BzNIg5QeuZfQ8zKwcPgEZp4U4aWcGHe+G2iQ3g=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Black theme suitable for AMOLED displays - with Source Code Pro"; - homepage = "https://github.com/gryffyn/thelounge-theme-amoled"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-theme-bdefault = nodeEnv.buildNodePackage { - name = "thelounge-theme-bdefault"; - packageName = "thelounge-theme-bdefault"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-bdefault/-/thelounge-theme-bdefault-1.0.6.tgz"; - sha512 = "Z71KJpp1Td9auRiRz9uCSk+d7bU/7MvPfxejslUQiiWlFjO5ufSR7O/PXis+MqDZAucgd1x3z0rWvcd+Nl/cDw=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A bdefault theme"; - homepage = "https://github.com/lemos1235/thelounge-theme-bdefault"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-theme-bmorning = nodeEnv.buildNodePackage { - name = "thelounge-theme-bmorning"; - packageName = "thelounge-theme-bmorning"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-bmorning/-/thelounge-theme-bmorning-1.0.2.tgz"; - sha512 = "OMBpJ/KntSWAd2gv1VQaVzdOOFTwplYA8xPisibv5tJf+DqyHbynD1sg3jcMoDuwGkzSrzHvquKypIDbMIAGrQ=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A bmorning theme"; - homepage = "https://github.com/lemos1235/thelounge-theme-bmorning"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-theme-chord = nodeEnv.buildNodePackage { - name = "thelounge-theme-chord"; - packageName = "thelounge-theme-chord"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-chord/-/thelounge-theme-chord-1.2.1.tgz"; - sha512 = "FP/OyTgvXKNidiSb1hgPKe3wvLti3vdD+tGr3qJj1MruCzniVFMqwXlJylLBSV2sXWA+2731ysI8wncHH1vGKQ=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Darkly elegant theme for The Lounge"; - homepage = "https://github.com/easymac/thelounge-theme-chord"; - license = "GPL-3.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-theme-classic = nodeEnv.buildNodePackage { - name = "thelounge-theme-classic"; - packageName = "thelounge-theme-classic"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-classic/-/thelounge-theme-classic-1.0.0.tgz"; - sha512 = "EA3zOFRxn65GEfSMHnjpViW9w3xRRBGJMyFGN83FtlHB1iWOl9J0MRI0t4ATlgb7m1rYdfFStbTEErMPXSj+NA=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Classic theme for The Lounge, to get a v2 look with The Lounge v3"; - homepage = "https://github.com/thelounge/thelounge-theme-classic"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-theme-common = nodeEnv.buildNodePackage { - name = "thelounge-theme-common"; - packageName = "thelounge-theme-common"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-common/-/thelounge-theme-common-1.0.0.tgz"; - sha512 = "bfZzLpKp0RqC6hzpmSVOIrQMJiMPZPq+1MP2WatE17j1cayMqljYGGH/9yBd+pt3NYb7+KZtzfS8tKUxd6g9LQ=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A common theme"; - homepage = "https://github.com/lemos1235/thelounge-theme-common"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-theme-crypto = nodeEnv.buildNodePackage { - name = "thelounge-theme-crypto"; - packageName = "thelounge-theme-crypto"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-crypto/-/thelounge-theme-crypto-1.0.0.tgz"; - sha512 = "cAiMnibVftOzvhqkSHR/5WceQ7OKKD75YGZq6u/1ebP2QPMO6tJJklzynPxAKlReoThUayJX/4FvPTp/bG1MPw=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Retro & high-contrast theme for The Lounge"; - homepage = "https://github.com/thelounge/thelounge-theme-crypto#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-theme-discordapp = nodeEnv.buildNodePackage { - name = "thelounge-theme-discordapp"; - packageName = "thelounge-theme-discordapp"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-discordapp/-/thelounge-theme-discordapp-1.1.2.tgz"; - sha512 = "1ldF19pKboDbeDdxRYrbHrr+lBTtHa4f2X9ygCzD0QoLAoIz46mghH7ZeGgmiqAj1vD/iqkY5KFKRdRX6cpS/A=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A discordapp like theme for thelounge"; - homepage = "https://github.com/Minion3665/thelounge-theme-discordapp"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-theme-dracula = nodeEnv.buildNodePackage { - name = "thelounge-theme-dracula"; - packageName = "thelounge-theme-dracula"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-dracula/-/thelounge-theme-dracula-1.1.1.tgz"; - sha512 = "CSh4ffPinIm4IluS7gLRjSa6VgLvBRBQ/RXbh6n8g0aGeQ7H6m4v1QeOfYiCHBBd/ipAAxseW5WvTN3qJiwwoA=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Dracula theme for thelounge"; - homepage = "https://github.com/SpaceLenore/thelounge-theme-dracula"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - thelounge-theme-dracula-official = nodeEnv.buildNodePackage { - name = "thelounge-theme-dracula-official"; - packageName = "thelounge-theme-dracula-official"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-dracula-official/-/thelounge-theme-dracula-official-1.0.6.tgz"; - sha512 = "qE766FfvCWm35vRWx686/C0RU2cbWiwKWkAZoW0BOrVarg1P+G3Dq6neQPbAE/pJTwSyAXz8N9oCdvr7knYZKw=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "\"npm python-package/xgboost/libpath.py - ''; + pythonRemoveDeps = [ + "nvidia-nccl-cu12" + ]; + + # Place libxgboost.so where the build will look for it + # to avoid triggering the compilation of the library + prePatch = '' + mkdir -p lib + ln -s ${libPath} lib/ + ''; dontUseCmakeConfigure = true; @@ -46,6 +54,17 @@ buildPythonPackage { # and are extremely cpu intensive anyway doCheck = false; + # During the build libxgboost.so is copied to its current location + # Replacing it with a symlink to the original + postInstall = + let + libOutPath = "$out/${python.sitePackages}/xgboost/lib/${libName}"; + in + '' + rm "${libOutPath}" + ln -s "${libPath}" "${libOutPath}" + ''; + pythonImportsCheck = [ "xgboost" ]; __darwinAllowLocalNetworking = true; diff --git a/pkgs/development/tools/rust/cargo-edit/default.nix b/pkgs/development/tools/rust/cargo-edit/default.nix index 3903bd96c12a..d2ee4011a5ee 100644 --- a/pkgs/development/tools/rust/cargo-edit/default.nix +++ b/pkgs/development/tools/rust/cargo-edit/default.nix @@ -11,17 +11,17 @@ rustPlatform.buildRustPackage rec { pname = "cargo-edit"; - version = "0.13.1"; + version = "0.13.2"; src = fetchFromGitHub { owner = "killercup"; repo = pname; rev = "v${version}"; - hash = "sha256-u5tpJEOyVGCmNYeXY4TdPTy6kZr/7nAMpCqhoeWVjfQ="; + hash = "sha256-kwchy30i2zYS7uwUonDusumLbpZxdzZ/8Rts25zwqdo="; }; useFetchCargoVendor = true; - cargoHash = "sha256-yfKKh2nqlcOGF6Mbt50VGKQ12ry5DNlwReQakWp174c="; + cargoHash = "sha256-ebrjEnLOvkAMICcreJu+jOze9R/crtAFfRDa6kqLNnA="; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/games/papermc/versions.json b/pkgs/games/papermc/versions.json index 0b0b58238fdc..e3fa92ea379f 100644 --- a/pkgs/games/papermc/versions.json +++ b/pkgs/games/papermc/versions.json @@ -68,7 +68,7 @@ "version": "1.21.3-82" }, "1.21.4": { - "hash": "sha256-s9n3qmcRa6zBgUY+m29O76i8q6gPBdI3tNVeQnKyKmw=", - "version": "1.21.4-207" + "hash": "sha256-h5W+LfgoDdUP8VwjPY7VrIgrruMLB9z69SNUKJIp7nk=", + "version": "1.21.4-212" } } diff --git a/pkgs/servers/web-apps/moodle/default.nix b/pkgs/servers/web-apps/moodle/default.nix index dd63d2eeced3..063627c34835 100644 --- a/pkgs/servers/web-apps/moodle/default.nix +++ b/pkgs/servers/web-apps/moodle/default.nix @@ -1,7 +1,7 @@ { lib, stdenv, fetchurl, writeText, plugins ? [ ], nixosTests }: let - version = "4.5.2"; + version = "4.5.3"; versionParts = lib.take 2 (lib.splitVersion version); # 4.2 -> 402, 3.11 -> 311 @@ -78,7 +78,7 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "https://download.moodle.org/download.php/direct/stable${stableVersion}/${pname}-${version}.tgz"; - hash = "sha256-N92sP4pNWcsQ3ILSKy8HYQ2F1b8zkOwB3pv2sq0BiVo="; + hash = "sha256-xFqRM/g4OCPH7EkfDU3LYDZRSTqbdc6jA+nYsSH2K+0="; }; phpConfig = writeText "config.php" '' diff --git a/pkgs/stdenv/generic/make-derivation.nix b/pkgs/stdenv/generic/make-derivation.nix index 6f0aa50e9083..2e0322970289 100644 --- a/pkgs/stdenv/generic/make-derivation.nix +++ b/pkgs/stdenv/generic/make-derivation.nix @@ -318,7 +318,7 @@ let checkDependencyList' = positions: name: deps: imap1 (index: dep: - if isDerivation dep || dep == null || builtins.isString dep || builtins.isPath dep then dep + if dep == null || isDerivation dep || builtins.isString dep || builtins.isPath dep then dep else if isList dep then checkDependencyList' ([index] ++ positions) name dep else throw "Dependency is not of a valid type: ${concatMapStrings (ix: "element ${toString ix} of ") ([index] ++ positions)}${name} for ${attrs.name or attrs.pname}") deps; diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index b8d9fc7ee542..5294bca52c80 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5279,12 +5279,12 @@ with self; { CryptRandom = buildPerlPackage { pname = "Crypt-Random"; - version = "1.54"; + version = "1.57"; src = fetchurl { - url = "mirror://cpan/authors/id/V/VI/VIPUL/Crypt-Random-1.54.tar.gz"; - hash = "sha256-1m+OF+3Dh3zHl/3VneU045kGNvjxpecmBiFZr35n2sw="; + url = "mirror://cpan/authors/id/T/TI/TIMLEGGE/Crypt-Random-1.57.tar.gz"; + hash = "sha256-lQRnbAzgQRA636cCP4yGHECAYckCljQUwe27LYhydRU="; }; - propagatedBuildInputs = [ ClassLoader MathPari StatisticsChiSquare ]; + propagatedBuildInputs = [ ClassLoader MathPari StatisticsChiSquare CryptURandom ]; meta = { description = "Interface to /dev/random and /dev/urandom"; license = with lib.licenses; [ artistic1 gpl1Plus ];