From dff2b84ddeef7b9c9195c582c54e5e1ad50d3485 Mon Sep 17 00:00:00 2001 From: Chaos Date: Tue, 20 Dec 2022 15:28:31 +0000 Subject: [PATCH] matrix, more updates --- flake.lock | 6 +- home/base/ssh.nix | 5 + hosts/hetzner-vm/containers/matrix/matrix.nix | 211 +++ .../containers/matrix/profiles/matrix.nix | 14 + .../containers/matrix/profiles/restic.nix | 17 + .../containers/storage/data/ports.nix | 5 +- .../storage/profiles/rclone-serve.nix | 11 + .../containers/storage/profiles/secrets.nix | 9 + .../hetzner-vm/containers/storage/storage.nix | 7 +- hosts/hetzner-vm/hetzner-vm.nix | 8 + hosts/hetzner-vm/secrets.nix | 15 +- overlay/conduit/default.nix | 45 + overlay/conduit/meta.json | 4 + overlay/conduit/update.sh | 26 + overlay/default.nix | 6 +- overlay/invidious/default.nix | 150 --- overlay/invidious/lsquic.nix | 130 -- overlay/invidious/shards.nix | 80 -- overlay/invidious/update.sh | 94 -- overlay/invidious/use-etc-ssl-certs.patch | 13 - overlay/invidious/versions.json | 18 - overlay/invidious/videojs.nix | 23 - overlay/invidious/videojs.sh | 9 - overlay/piped/backend/deps.nix | 2 +- overlay/piped/frontend/yarn.nix | 1148 +++++++++-------- treeConfig.nix | 1 + 26 files changed, 951 insertions(+), 1106 deletions(-) create mode 100644 hosts/hetzner-vm/containers/matrix/profiles/matrix.nix create mode 100644 hosts/hetzner-vm/containers/matrix/profiles/restic.nix create mode 100644 overlay/conduit/default.nix create mode 100644 overlay/conduit/meta.json create mode 100755 overlay/conduit/update.sh delete mode 100644 overlay/invidious/default.nix delete mode 100644 overlay/invidious/lsquic.nix delete mode 100644 overlay/invidious/shards.nix delete mode 100755 overlay/invidious/update.sh delete mode 100644 overlay/invidious/use-etc-ssl-certs.patch delete mode 100644 overlay/invidious/versions.json delete mode 100644 overlay/invidious/videojs.nix delete mode 100644 overlay/invidious/videojs.sh diff --git a/flake.lock b/flake.lock index afda8bf..e8e7a99 100644 --- a/flake.lock +++ b/flake.lock @@ -207,11 +207,11 @@ }, "nur": { "locked": { - "lastModified": 1671533103, - "narHash": "sha256-AtYVnkWVYMyTTXNOI+6x66EMpm+SvnYscd5QQBIZ3ak=", + "lastModified": 1671541304, + "narHash": "sha256-YDlK8nZpOk7YmOgs8LH6vnreXUx0p0GPxZXi6r6mJW4=", "owner": "nix-community", "repo": "NUR", - "rev": "d67c890fc1096b9c8706c1c46f8e3fec06add355", + "rev": "7c843785562856dfcc78dde7d7141d89a0309402", "type": "github" }, "original": { diff --git a/home/base/ssh.nix b/home/base/ssh.nix index 30f7b99..3c16bf4 100644 --- a/home/base/ssh.nix +++ b/home/base/ssh.nix @@ -15,6 +15,11 @@ hostname = "192.168.100.11"; proxyJump = "hetzner-vm"; }; + "matrix" = { + user = "root"; + hostname = "192.168.100.12"; + proxyJump = "hetzner-vm"; + }; "blahaj" = { user = "chaos"; hostname = "blahaj.sapphicco.de"; diff --git a/hosts/hetzner-vm/containers/matrix/matrix.nix b/hosts/hetzner-vm/containers/matrix/matrix.nix index e69de29..2bc4cd7 100644 --- a/hosts/hetzner-vm/containers/matrix/matrix.nix +++ b/hosts/hetzner-vm/containers/matrix/matrix.nix @@ -0,0 +1,211 @@ +{ + tree, + lib, + inputs, + pkgs, + config, + ... +}: let + hostIP = "192.168.100.10"; + containerIP = "192.168.100.12"; + + # Using secrets from Host + secrets = config.services.secrets.secrets; +in { + containers.matrix = { + autoStart = true; + privateNetwork = true; + hostAddress = hostIP; + localAddress = containerIP; + bindMounts = { + "${secrets.matrix_restic_password.path}" = { + hostPath = "${secrets.matrix_restic_password.path}"; + }; + "${secrets.matrix_restic_env.path}" = { + hostPath = "${secrets.matrix_restic_env.path}"; + }; + }; + + config = { + config, + pkgs, + ... + }: { + _module.args = { + inherit inputs; + inherit tree; + host_secrets = secrets; + }; + + imports = with tree; + [ + profiles.base + inputs.home-manager-unstable.nixosModules.home-manager + + profiles.sshd + + modules.nixos.secrets + + users.root + ] + ++ (with hosts.hetzner-vm.containers.matrix; [ + profiles.matrix + profiles.restic + ]); + + # For Shared Secrets + systemd.tmpfiles.rules = [ + "d ${config.services.secrets.secretsDir} - root root" + ]; + + networking.firewall = { + enable = true; + allowedTCPPorts = [22 6167]; + }; + + home-manager.users.root = { + imports = with tree; [home.base home.dev.small]; + home.packages = with pkgs; [vault]; + home.stateVersion = "22.05"; + }; + + # Manually configure nameserver. Using resolved inside the container seems to fail + # currently + environment.etc."resolv.conf".text = "nameserver 8.8.8.8"; + system.stateVersion = "22.05"; + }; + }; + + services.nginx = { + virtualHosts = { + "matrix.owo.monster" = { + forceSSL = true; + enableACME = true; + + listen = [ + { + addr = "0.0.0.0"; + port = 80; + ssl = false; + } + { + addr = "0.0.0.0"; + port = 443; + ssl = true; + } + { + addr = "0.0.0.0"; + port = 8448; + ssl = true; + } + ]; + + extraConfig = '' + merge_slashes off; + ''; + + locations."/" = { + root = pkgs.element-web; + }; + + locations."=/config.matrix.owo.monster.json" = { + alias = let + config = { + default_server_config = { + "m.homeserver" = { + "base_url" = "https://matrix.owo.monster"; + }; + "m.identity_server" = { + "base_url" = "https://vector.im"; + }; + }; + brand = "Element"; + bug_report_endpoint_url = ""; + default_country_code = "GB"; + default_federate = true; + default_theme = "dark"; + disable_3pid_login = false; + disable_custom_urls = false; + disable_guests = false; + disable_login_language_selector = false; + jitsi.preferred_domain = ""; + element_call = { + brand = "Element Call"; + participant_limit = 8; + url = ""; + }; + enable_presence_by_hs_url = { + "https://matrix-client.matrix.org" = false; + "https://matrix.org" = false; + }; + features = {}; + integrations_rest_url = "https://scalar.vector.im/api"; + integrations_ui_url = "https://scalar.vector.im/"; + integrations_widgets_urls = ["https://scalar.vector.im/_matrix/integrations/v1" "https://scalar.vector.im/api" "https://scalar-staging.vector.im/_matrix/integrations/v1" "https://scalar-staging.vector.im/api" "https://scalar-staging.riot.im/scalar/api"]; + map_style_url = "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx"; + room_directory = {servers = ["matrix.org"];}; + setting_defaults = {breadcrumbs = true;}; + show_labs_settings = false; + uisi_autorageshake_app = "element-auto-uisi"; + }; + in + pkgs.writeText "config.matrix.owo.monster.json" (builtins.toJSON config); + extraConfig = '' + default_type application/json; + ''; + }; + + locations."/_matrix/" = { + proxyPass = "http://backend_conduit$request_uri"; + proxyWebsockets = true; + extraConfig = '' + proxy_set_header Host $host; + proxy_buffering off; + ''; + }; + + locations."=/.well-known/matrix/server" = { + alias = let + config = { + "m.server" = "matrix.owo.monster"; + }; + in + pkgs.writeText "well-known-matrix-server" (builtins.toJSON config); + + extraConfig = '' + default_type application/json; + ''; + }; + + locations."=/.well-known/matrix/client" = { + alias = let + config = { + "m.homeserver" = { + "base_url" = "https://matrix.owo.monster"; + }; + "m.identity_server" = { + "base_url" = "https://vector.im"; + }; + }; + in + pkgs.writeText "well-known-matrix-client" (builtins.toJSON config); + + extraConfig = '' + default_type application/json; + add_header Access-Control-Allow-Origin "*"; + ''; + }; + }; + }; + + upstreams = { + "backend_conduit" = { + servers = { + "${containerIP}:${toString 6167}" = {}; + }; + }; + }; + }; + networking.firewall.allowedTCPPorts = [80 443 8448]; + networking.firewall.allowedUDPPorts = [80 443 8448]; +} diff --git a/hosts/hetzner-vm/containers/matrix/profiles/matrix.nix b/hosts/hetzner-vm/containers/matrix/profiles/matrix.nix new file mode 100644 index 0000000..9923b87 --- /dev/null +++ b/hosts/hetzner-vm/containers/matrix/profiles/matrix.nix @@ -0,0 +1,14 @@ +{ + inputs, + pkgs, + ... +}: { + services.matrix-conduit = { + enable = true; + settings.global = { + address = "0.0.0.0"; + allow_registration = true; + server_name = "matrix.owo.monster"; + }; + }; +} diff --git a/hosts/hetzner-vm/containers/matrix/profiles/restic.nix b/hosts/hetzner-vm/containers/matrix/profiles/restic.nix new file mode 100644 index 0000000..a8af7f7 --- /dev/null +++ b/hosts/hetzner-vm/containers/matrix/profiles/restic.nix @@ -0,0 +1,17 @@ +{ + pkgs, + config, + host_secrets, + ... +}: let + secrets = host_secrets; +in { + environment.systemPackages = [ + (pkgs.writeShellScriptBin "restic-matrix" '' + env \ + RESTIC_PASSWORD_FILE=${secrets.matrix_restic_password.path} \ + $(cat ${secrets.matrix_restic_env.path}) \ + ${pkgs.restic}/bin/restic $@ + '') + ]; +} diff --git a/hosts/hetzner-vm/containers/storage/data/ports.nix b/hosts/hetzner-vm/containers/storage/data/ports.nix index 0c5bea3..898148a 100644 --- a/hosts/hetzner-vm/containers/storage/data/ports.nix +++ b/hosts/hetzner-vm/containers/storage/data/ports.nix @@ -6,7 +6,8 @@ rclone_serve_restic_hvm = 4245; rclone_serve_restic_music = 4246; rclone_serve_restic_vault = 4247; + rclone_serve_restic_matrix = 4248; - rclone_serve_http_music = 4248; - rclone_serve_http_public = 4249; + rclone_serve_http_music = 4249; + rclone_serve_http_public = 4250; } diff --git a/hosts/hetzner-vm/containers/storage/profiles/rclone-serve.nix b/hosts/hetzner-vm/containers/storage/profiles/rclone-serve.nix index b2b69f9..2798640 100644 --- a/hosts/hetzner-vm/containers/storage/profiles/rclone-serve.nix +++ b/hosts/hetzner-vm/containers/storage/profiles/rclone-serve.nix @@ -110,6 +110,17 @@ in { ]; inherit serviceConfig; } + { + user = "storage"; + remote = "StorageBox:Backups/Restic/Matrix"; + type = "restic"; + extraArgs = [ + "--addr=0.0.0.0:${toString ports.rclone_serve_restic_matrix}" + "--htpasswd=${secrets.restic_matrix_htpasswd.path}" + "--baseurl=/Matrix/" + ]; + inherit serviceConfig; + } ]; }; } diff --git a/hosts/hetzner-vm/containers/storage/profiles/secrets.nix b/hosts/hetzner-vm/containers/storage/profiles/secrets.nix index 18b06f2..f2e04ac 100644 --- a/hosts/hetzner-vm/containers/storage/profiles/secrets.nix +++ b/hosts/hetzner-vm/containers/storage/profiles/secrets.nix @@ -71,6 +71,15 @@ htpasswd -bc "$secretFile" "$username" "$password" 2>/dev/null ''; }; + restic_matrix_htpasswd = { + user = "storage"; + group = "storage"; + fetchScript = '' + username=$(simple_get "/api-keys/storage/restic/Matrix" .username) + password=$(simple_get "/api-keys/storage/restic/Matrix" .password) + htpasswd -bc "$secretFile" "$username" "$password" 2>/dev/null + ''; + }; webdav_main_htpasswd = { user = "storage"; group = "storage"; diff --git a/hosts/hetzner-vm/containers/storage/storage.nix b/hosts/hetzner-vm/containers/storage/storage.nix index 632b264..fabcb70 100644 --- a/hosts/hetzner-vm/containers/storage/storage.nix +++ b/hosts/hetzner-vm/containers/storage/storage.nix @@ -8,12 +8,6 @@ containerIP = "192.168.100.11"; ports = import ./data/ports.nix {}; in { - networking.nat = { - enable = true; - internalInterfaces = ["ve-+"]; - externalInterface = "eth0"; - }; - containers.storage = { autoStart = true; privateNetwork = true; @@ -100,6 +94,7 @@ in { "/HetznerVM/".proxyPass = "http://${containerIP}:${toString ports.rclone_serve_restic_hvm}"; "/Music/".proxyPass = "http://${containerIP}:${toString ports.rclone_serve_restic_music}"; "/Vault/".proxyPass = "http://${containerIP}:${toString ports.rclone_serve_restic_vault}"; + "/Matrix/".proxyPass = "http://${containerIP}:${toString ports.rclone_serve_restic_matrix}"; }; }; } diff --git a/hosts/hetzner-vm/hetzner-vm.nix b/hosts/hetzner-vm/hetzner-vm.nix index ac1b86b..9fe9bcf 100644 --- a/hosts/hetzner-vm/hetzner-vm.nix +++ b/hosts/hetzner-vm/hetzner-vm.nix @@ -11,6 +11,7 @@ profiles.nix-gc ./containers/storage/storage.nix + ./containers/matrix/matrix.nix hosts.hetzner-vm.profiles.restic #hosts.hetzner-vm.profiles.invidious @@ -27,6 +28,13 @@ ./secrets.nix ]; + # For Containers + networking.nat = { + enable = true; + internalInterfaces = ["ve-+"]; + externalInterface = "eth0"; + }; + networking.firewall.allowedTCPPorts = [80 443]; networking.firewall.allowedUDPPorts = [443]; diff --git a/hosts/hetzner-vm/secrets.nix b/hosts/hetzner-vm/secrets.nix index c159579..8ad3887 100644 --- a/hosts/hetzner-vm/secrets.nix +++ b/hosts/hetzner-vm/secrets.nix @@ -9,8 +9,8 @@ secrets = { mpd_control_password = { - user = "mpd"; - group = "mpd"; + user = "root"; + group = "root"; fetchScript = '' simple_get "/api-keys/mpd" .password > $secretFile ''; @@ -63,6 +63,17 @@ echo "GITLAB_TOKEN=$token" > $secretFile ''; }; + matrix_restic_password = { + fetchScript = '' + simple_get "/private-public-keys/restic/Matrix" .password > $secretFile + ''; + }; + matrix_restic_env = { + fetchScript = '' + RESTIC_USERNAME=$(simple_get "/api-keys/storage/restic/Matrix" .username) + RESTIC_PASSWORD=$(simple_get "/api-keys/storage/restic/Matrix" .password) + echo "RESTIC_REPOSITORY=rest:https://$RESTIC_USERNAME:$RESTIC_PASSWORD@storage-restic.owo.monster/Matrix" > $secretFile ''; + }; restic_password = { fetchScript = '' simple_get "/private-public-keys/restic/HetznerVM" .password > $secretFile diff --git a/overlay/conduit/default.nix b/overlay/conduit/default.nix new file mode 100644 index 0000000..a076a96 --- /dev/null +++ b/overlay/conduit/default.nix @@ -0,0 +1,45 @@ +{ + stdenv, + lib, + fetchFromGitLab, + rustPlatform, + pkg-config, + rocksdb, +}: let + meta = builtins.fromJSON (builtins.readFile ./meta.json); + + rev = meta.rev; + sha256 = meta.sha256; +in + rustPlatform.buildRustPackage rec { + pname = "matrix-conduit"; + version = "latest-${rev}"; + + src = fetchFromGitLab { + owner = "famedly"; + repo = "conduit"; + rev = "${rev}"; + sha256 = "${sha256}"; + }; + + cargoSha256 = "sha256-E9f7yJR2GksUHjWE4EP+iBRlhn4JG/JUVw7/L+41Nfc="; + + nativeBuildInputs = [ + rustPlatform.bindgenHook + pkg-config + ]; + + buildInputs = [ + rocksdb + ]; + + cargoBuildFlags = ["--bin" "conduit"]; + + meta = with lib; { + broken = stdenv.isDarwin; + description = "A Matrix homeserver written in Rust"; + homepage = "https://conduit.rs/"; + license = licenses.asl20; + maintainers = with maintainers; [pstn piegames pimeys]; + }; + } diff --git a/overlay/conduit/meta.json b/overlay/conduit/meta.json new file mode 100644 index 0000000..6bfef12 --- /dev/null +++ b/overlay/conduit/meta.json @@ -0,0 +1,4 @@ +{ + "rev": "7b987411630056204b73e61165c8a99e20a78fec", + "sha256": "sha256-xcNa18r1V+SM0J0NGDrt2xr+nFgAhutiVvTljUSeStM=" +} diff --git a/overlay/conduit/update.sh b/overlay/conduit/update.sh new file mode 100755 index 0000000..f02fd9c --- /dev/null +++ b/overlay/conduit/update.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env nix-shell +#!nix-shell -i bash -p curl jq git moreutils nix nix-prefetch +set -euo pipefail + +cd "$(dirname "${BASH_SOURCE[0]}")" + + +json_get() { + jq -r "$1" < 'meta.json' +} + +json_set() { + jq --arg x "$2" "$1 = \$x" < 'meta.json' | sponge 'meta.json' +} + +old_rev=$(json_get '.rev') +new_rev=$(curl -L "https://gitlab.com/api/v4/projects/famedly%2Fconduit/repository/commits" 2>/dev/null | jq ".[0].id" -r) + +if [ "$new_rev" = "$old_rev" ]; then + echo "conduit is up-to-date." + exit +fi + +json_set '.rev' "$new_rev" +new_sha256=$(nix-prefetch fetchFromGitLab --owner famedly --repo conduit --rev "$new_rev") +json_set '.sha256' "$new_sha256" diff --git a/overlay/default.nix b/overlay/default.nix index e22af24..cebc56d 100644 --- a/overlay/default.nix +++ b/overlay/default.nix @@ -3,10 +3,6 @@ final: _prev: { comic-code = final.callPackage ./comic-code {}; roc-toolkit-patched = final.callPackage ./roc-toolkit-patched {}; roc-send-pcm = final.callPackage ./roc-send-pcm {}; - invidious = final.callPackage ./invidious { - lsquic = final.callPackage ./invidious/lsquic.nix {}; - videojs = final.callPackage ./invidious/videojs.nix {}; - }; misskey-static = final.callPackage ./misskey {}; piped-backend = final.callPackage ./piped/backend { jre = final.openjdk17_headless; @@ -14,4 +10,6 @@ final: _prev: { }; piped-frontend = final.callPackage ./piped/frontend {}; piped-proxy = final.callPackage ./piped/proxy {}; + # currently broken + #matrix-conduit = final.callPackage ./conduit {}; } diff --git a/overlay/invidious/default.nix b/overlay/invidious/default.nix deleted file mode 100644 index 7709df1..0000000 --- a/overlay/invidious/default.nix +++ /dev/null @@ -1,150 +0,0 @@ -{ - lib, - stdenv, - crystal, - fetchFromGitHub, - librsvg, - pkg-config, - libxml2, - openssl, - shards, - sqlite, - lsquic, - videojs, - nixosTests, -}: let - # All versions, revisions, and checksums are stored in ./versions.json. - # The update process is the following: - # * pick the latest commit - # * update .invidious.rev, .invidious.version, and .invidious.sha256 - # * prefetch the videojs dependencies with scripts/fetch-player-dependencies.cr - # and update .videojs.sha256 (they are normally fetched during build - # but nix's sandboxing does not allow that) - # * if shard.lock changed - # * recreate shards.nix by running crystal2nix - # * update lsquic and boringssl if necessarry, lsquic.cr depends on - # the same version of lsquic and lsquic requires the boringssl - # commit mentioned in its README - versions = builtins.fromJSON (builtins.readFile ./versions.json); -in - crystal.buildCrystalPackage rec { - pname = "invidious"; - inherit (versions.invidious) version; - - src = fetchFromGitHub { - owner = "iv-org"; - repo = pname; - fetchSubmodules = true; - inherit (versions.invidious) rev sha256; - }; - - postPatch = let - # Replacing by the value (templates) of the variables ensures that building - # fails if upstream changes the way the metadata is formatted. - branchTemplate = ''{{ "#{`git branch | sed -n '/* /s///p'`.strip}" }}''; - commitTemplate = ''{{ "#{`git rev-list HEAD --max-count=1 --abbrev-commit`.strip}" }}''; - versionTemplate = '' - {{ "#{`git log -1 --format=%ci | awk '{print $1}' | sed s/-/./g`.strip}" }}''; - # This always uses the latest commit which invalidates the cache even if - # the assets were not changed - assetCommitTemplate = '' - {{ "#{`git rev-list HEAD --max-count=1 --abbrev-commit -- assets`.strip}" }}''; - in '' - for d in ${videojs}/*; do ln -s "$d" assets/videojs; done - - # Use the version metadata from the derivation instead of using git at - # build-time - substituteInPlace src/invidious.cr \ - --replace ${lib.escapeShellArg branchTemplate} '"master"' \ - --replace ${lib.escapeShellArg commitTemplate} '"${ - lib.substring 0 7 versions.invidious.rev - }"' \ - --replace ${lib.escapeShellArg versionTemplate} '"${ - lib.replaceChars ["-"] ["."] (lib.substring 9 10 version) - }"' \ - --replace ${lib.escapeShellArg assetCommitTemplate} '"${ - lib.substring 0 7 versions.invidious.rev - }"' - - # Patch the assets and locales paths to be absolute - substituteInPlace src/invidious.cr \ - --replace 'public_folder "assets"' 'public_folder "${ - placeholder "out" - }/share/invidious/assets"' - substituteInPlace src/invidious/helpers/i18n.cr \ - --replace 'File.read("locales/' 'File.read("${ - placeholder "out" - }/share/invidious/locales/' - - # Reference sql initialisation/migration scripts by absolute path - substituteInPlace src/invidious/database/base.cr \ - --replace 'config/sql' '${ - placeholder "out" - }/share/invidious/config/sql' - - substituteInPlace src/invidious/user/captcha.cr \ - --replace 'Process.run(%(rsvg-convert' 'Process.run(%(${ - lib.getBin librsvg - }/bin/rsvg-convert' - ''; - - nativeBuildInputs = [pkg-config shards]; - buildInputs = [libxml2 openssl sqlite]; - - format = "crystal"; - shardsFile = ./shards.nix; - crystalBinaries.invidious = { - src = "src/invidious.cr"; - options = [ - #"--release" - "--debug" - "--progress" - "--verbose" - #"--no-debug" - "-Dskip_videojs_download" - "-Ddisable_quic" - ]; - }; - - dontStrip = true; - - postConfigure = '' - # lib includes nix store paths which can’t be patched, so the links have to - # be dereferenced first. - cp -rL lib lib2 - rm -r lib - mv lib2 lib - chmod +w -R lib - cp ${lsquic}/lib/liblsquic.a lib/lsquic/src/lsquic/ext - ''; - - postInstall = '' - mkdir -p $out/share/invidious/config - - # Copy static parts - cp -r assets locales $out/share/invidious - cp -r config/sql $out/share/invidious/config - ''; - - # Invidious tries to open config/config.yml and connect to the database, even - # when running --help. This specifies a minimal configuration in an - # environment variable. Even though the database is bogus, --help still - # works. - installCheckPhase = '' - INVIDIOUS_CONFIG="database_url: sqlite3:///dev/null" $out/bin/invidious --help - ''; - - passthru = { - inherit lsquic; - tests = {inherit (nixosTests) invidious;}; - updateScript = ./update.sh; - }; - - meta = with lib; { - description = "An open source alternative front-end to YouTube"; - homepage = "https://invidious.io/"; - license = licenses.agpl3; - maintainers = with maintainers; [infinisil sbruder]; - broken = stdenv.isDarwin && stdenv.isAarch64; - }; - } diff --git a/overlay/invidious/lsquic.nix b/overlay/invidious/lsquic.nix deleted file mode 100644 index ec11f2c..0000000 --- a/overlay/invidious/lsquic.nix +++ /dev/null @@ -1,130 +0,0 @@ -{ - lib, - boringssl, - stdenv, - fetchgit, - fetchFromGitHub, - fetchurl, - cmake, - zlib, - perl, - libevent, -}: let - versions = builtins.fromJSON (builtins.readFile ./versions.json); - - fetchGitilesPatch = { - name, - url, - sha256, - }: - fetchurl { - url = "${url}%5E%21?format=TEXT"; - inherit name sha256; - downloadToTemp = true; - postFetch = '' - base64 -d < $downloadedFile > $out - ''; - }; - - # lsquic requires a specific boringssl version (noted in its README) - boringssl' = boringssl.overrideAttrs ({preBuild, ...}: { - version = versions.boringssl.rev; - src = fetchgit { - url = "https://boringssl.googlesource.com/boringssl"; - inherit (versions.boringssl) rev sha256; - }; - - patches = [ - # Use /etc/ssl/certs/ca-certificates.crt instead of /etc/ssl/cert.pem - ./use-etc-ssl-certs.patch - - # because lsquic requires that specific boringssl version and that - # version does not yet include fixes for gcc11 build errors, they - # must be backported - (fetchGitilesPatch { - name = "fix-mismatch-between-header-and-implementation-of-bn_sqr_comba8.patch"; - url = "https://boringssl.googlesource.com/boringssl/+/139adff9b27eaf0bdaac664ec4c9a7db2fe3f920"; - sha256 = "05sp602dvh50v46jkzmh4sf4wqnq5bwy553596g2rhxg75bailjj"; - }) - (fetchGitilesPatch { - name = "use-an-unsized-helper-for-truncated-SHA-512-variants.patch"; - url = "https://boringssl.googlesource.com/boringssl/+/a24ab549e6ae246b391155d7bed3790ac0e07de2"; - sha256 = "0483jkpg4g64v23ln2blb74xnmzdjcn3r7w4zk7nfg8j3q5f9lxm"; - }) - /* - # the following patch is too complex, so we will modify the build flags - # of crypto/fipsmodule/CMakeFiles/fipsmodule.dir/bcm.c.o in preBuild - # and turn off -Werror=stringop-overflow - (fetchGitilesPatch { - name = "make-md32_common.h-single-included-and-use-an-unsized-helper-for-SHA-256.patch"; - url = "https://boringssl.googlesource.com/boringssl/+/597ffef971dd980b7de5e97a0c9b7ca26eec94bc"; - sha256 = "1y0bkkdf1ccd6crx326agp01q22clm4ai4p982y7r6dkmxmh52qr"; - }) - */ - (fetchGitilesPatch { - name = "fix-array-parameter-warnings.patch"; - url = "https://boringssl.googlesource.com/boringssl/+/92c6fbfc4c44dc8462d260d836020d2b793e7804"; - sha256 = "0h4sl95i8b0dj0na4ngf50wg54raxyjxl1zzwdc810abglp10vnv"; - }) - ]; - - preBuild = '' - ${preBuild} - sed -e '/^build crypto\/fipsmodule\/CMakeFiles\/fipsmodule\.dir\/bcm\.c\.o:/,/^ *FLAGS =/ s/^ *FLAGS = -Werror/& -Wno-error=stringop-overflow/' \ - -i build.ninja - ''; - }); -in - stdenv.mkDerivation rec { - pname = "lsquic"; - version = versions.lsquic.version; - - src = fetchFromGitHub { - owner = "litespeedtech"; - repo = pname; - rev = "v${version}"; - inherit (versions.lsquic) sha256; - fetchSubmodules = true; - }; - - nativeBuildInputs = [cmake perl]; - buildInputs = [boringssl' libevent zlib]; - - cmakeFlags = [ - "-DBORINGSSL_DIR=${lib.getDev boringssl'}" - "-DBORINGSSL_LIB_crypto=${lib.getLib boringssl'}/lib/libcrypto.a" - "-DBORINGSSL_LIB_ssl=${lib.getLib boringssl'}/lib/libssl.a" - "-DZLIB_LIB=${zlib}/lib/libz.so" - ]; - - # adapted from lsquic.cr’s Dockerfile - # (https://github.com/iv-org/lsquic.cr/blob/master/docker/Dockerfile) - installPhase = '' - runHook preInstall - - mkdir combinedlib - cd combinedlib - ar -x ${lib.getLib boringssl'}/lib/libssl.a - ar -x ${lib.getLib boringssl'}/lib/libcrypto.a - ar -x ../src/liblsquic/liblsquic.a - ar rc liblsquic.a *.o - ranlib liblsquic.a - install -D liblsquic.a $out/lib/liblsquic.a - - runHook postInstall - ''; - - passthru.boringssl = boringssl'; - - meta = with lib; { - description = "A library for QUIC and HTTP/3 (version for Invidious)"; - homepage = "https://github.com/litespeedtech/lsquic"; - maintainers = with maintainers; [infinisil sbruder]; - license = with licenses; [ - openssl - isc - mit - bsd3 - ]; # statically links against boringssl, so has to include its licenses - }; - } diff --git a/overlay/invidious/shards.nix b/overlay/invidious/shards.nix deleted file mode 100644 index e5f297d..0000000 --- a/overlay/invidious/shards.nix +++ /dev/null @@ -1,80 +0,0 @@ -{ - athena-negotiation = { - owner = "athena-framework"; - repo = "negotiation"; - rev = "v0.1.1"; - sha256 = "1vkk59lqrxb0l8kyzs114i3c18zb2bdiah2xhazkk8q7x6fz4yzk"; - }; - backtracer = { - owner = "sija"; - repo = "backtracer.cr"; - rev = "v1.2.1"; - sha256 = "02r1l7rn2wsljkx495s5s7j04zgn73m2kx0hkzs7620camvlwbqq"; - }; - db = { - owner = "crystal-lang"; - repo = "crystal-db"; - rev = "v0.10.1"; - sha256 = "03c5h14z6h2mxnx949lihnyqjd19hcj38iasdwq9fp95h8cld376"; - }; - exception_page = { - owner = "crystal-loot"; - repo = "exception_page"; - rev = "v0.2.2"; - sha256 = "1c8askb9b7621jjz5pjj6b8pdbhw3r1l3dym6swg1saspf5j3jwi"; - }; - kemal = { - owner = "kemalcr"; - repo = "kemal"; - rev = "v1.1.2"; - sha256 = "1149q4qw0zrws5asqqr4snrdi67xsmisdcq58zcrbgqgsxgly9d0"; - }; - kilt = { - owner = "jeromegn"; - repo = "kilt"; - rev = "v0.6.1"; - sha256 = "0dpc15y9m8c5l9zdfif6jlf7zmkrlm9w4m2igi5xa22fdjwamwfp"; - }; - lsquic = { - owner = "iv-org"; - repo = "lsquic.cr"; - rev = "v2.18.1-2"; - sha256 = "0bljk0pwbjb813dfwrhgi00w2ai09k868xvak4hfzdkbmpc7id6y"; - }; - pg = { - owner = "will"; - repo = "crystal-pg"; - rev = "v0.24.0"; - sha256 = "07i5bqkv5j6y6f8v5cpqdxc5wzzrvgv3ds24znv4mzv6nc84csn4"; - }; - protodec = { - owner = "iv-org"; - repo = "protodec"; - rev = "v0.1.4"; - sha256 = "15azh9izxqgwpgkpicmivfdz31wkibnwy09rwhxsg0lyc4wf8xj9"; - }; - radix = { - owner = "luislavena"; - repo = "radix"; - rev = "v0.4.1"; - sha256 = "1l08cydkdidq9yyil1wl240hvk41iycv04jrg6nx5mkvzw4z1bzg"; - }; - spectator = { - owner = "icy-arctic-fox"; - repo = "spectator"; - rev = "v0.10.4"; - sha256 = "0rcxq2nbslvwrd8m9ajw6dzaw3hagxmkdy9s8p34cgnr4c9dijdq"; - }; - sqlite3 = { - owner = "crystal-lang"; - repo = "crystal-sqlite3"; - rev = "v0.18.0"; - sha256 = "03nnvpchhq9f9ywsm3pk2rrj4a3figw7xs96zdziwgr5znkz6x93"; - }; - ameba = { - owner = "crystal-ameba"; - repo = "ameba"; - rev = "v0.14.3"; - sha256 = "1cfr95xi6hsyxw1wlrh571hc775xhwmssk3k14i8b7dgbwfmm5x1"; - }; -} diff --git a/overlay/invidious/update.sh b/overlay/invidious/update.sh deleted file mode 100755 index 69d6c77..0000000 --- a/overlay/invidious/update.sh +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/env nix-shell -#!nix-shell -i bash -p curl crystal crystal2nix jq git moreutils nix nix-prefetch pkg-config -git_url='https://github.com/iv-org/invidious.git' -git_branch='master' -git_dir='/var/tmp/invidious.git' -pkg='invidious' - -set -euo pipefail - -cd "$(dirname "${BASH_SOURCE[0]}")" - -info() { - if [ -t 2 ]; then - set -- '\033[32m%s\033[39m\n' "$@" - else - set -- '%s\n' "$@" - fi - printf "$@" >&2 -} - -json_get() { - jq -r "$1" < 'versions.json' -} - -json_set() { - jq --arg x "$2" "$1 = \$x" < 'versions.json' | sponge 'versions.json' -} - -old_rev=$(json_get '.invidious.rev') -old_version=$(json_get '.invidious.version') -today=$(LANG=C date -u +'%Y-%m-%d') - -info "fetching $git_url..." -if [ ! -d "$git_dir" ]; then - git init --initial-branch="$git_branch" "$git_dir" 2>/dev/null - git -C "$git_dir" remote add origin "$git_url" 2>/dev/null -fi -git -C "$git_dir" fetch origin "$git_branch" 2>/dev/null - -# use latest commit before today, we should not call the version *today* -# because there might still be commits coming -# use the day of the latest commit we picked as version -new_rev=$(git -C "$git_dir" log -n 1 --format='format:%H' --before="${today}T00:00:00Z" "origin/$git_branch") -new_version="unstable-$(TZ=UTC git -C "$git_dir" log -n 1 --date='format-local:%Y-%m-%d' --format='%cd' "$new_rev")" -info "latest commit before $today: $new_rev" - -if [ "$new_rev" = "$old_rev" ]; then - info "$pkg is up-to-date." - exit -fi - -json_set '.invidious.version' "$new_version" -json_set '.invidious.rev' "$new_rev" -new_sha256=$(nix-prefetch fetchFromGitHub --owner iv-org --repo invidious --rev "$new_rev") -json_set '.invidious.sha256' "$new_sha256" -commit_msg="$pkg: $old_version -> $new_version" - -# fetch video.js dependencies -info "Running scripts/fetch-player-dependencies.cr..." -git -C "$git_dir" reset --hard "$new_rev" -(cd "$git_dir" && crystal run scripts/fetch-player-dependencies.cr -- --minified) -rm -f "$git_dir/assets/videojs/.gitignore" -videojs_new_sha256=$(nix-hash --type sha256 --base32 "$git_dir/assets/videojs") -json_set '.videojs.sha256' "$videojs_new_sha256" - -if git -C "$git_dir" diff-tree --quiet "${old_rev}..${new_rev}" -- 'shard.lock'; then - info "shard.lock did not change since $old_rev." -else - info "Updating shards.nix..." - crystal2nix -- "$git_dir/shard.lock" # argv's index seems broken - - lsquic_old_version=$(json_get '.lsquic.version') - # lsquic.cr's version tracks lsquic's, so lsquic must be updated to the - # version in the shards file - lsquic_new_version=$(nix eval --raw -f 'shards.nix' lsquic.rev \ - | sed -e 's/^v//' -e 's/-[0-9]*$//') - if [ "$lsquic_old_version" != "$lsquic_new_version" ]; then - info "Updating lsquic to $lsquic_new_version..." - json_set '.lsquic.version' "$lsquic_new_version" - lsquic_new_sha256=$(nix-prefetch -I 'nixpkgs=' "${pkg}.lsquic") - json_set '.lsquic.sha256' "$lsquic_new_sha256" - - info "Updating boringssl..." - # lsquic specifies the boringssl commit it requires in its README - boringssl_new_rev=$(curl -LSsf "https://github.com/litespeedtech/lsquic/raw/v${lsquic_new_version}/README.md" \ - | grep -Pom1 '(?<=^git checkout ).*') - json_set '.boringssl.rev' "$boringssl_new_rev" - boringssl_new_sha256=$(nix-prefetch -I 'nixpkgs=' "${pkg}.lsquic.boringssl") - json_set '.boringssl.sha256' "$boringssl_new_sha256" - commit_msg="$commit_msg - -lsquic: $lsquic_old_version -> $lsquic_new_version" - fi -fi diff --git a/overlay/invidious/use-etc-ssl-certs.patch b/overlay/invidious/use-etc-ssl-certs.patch deleted file mode 100644 index b60b0b1..0000000 --- a/overlay/invidious/use-etc-ssl-certs.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/crypto/x509/x509_def.c b/crypto/x509/x509_def.c -index d2bc3e5c1..329580075 100644 ---- a/crypto/x509/x509_def.c -+++ b/crypto/x509/x509_def.c -@@ -67,7 +67,7 @@ - - #define X509_CERT_AREA OPENSSLDIR - #define X509_CERT_DIR OPENSSLDIR "/certs" --#define X509_CERT_FILE OPENSSLDIR "/cert.pem" -+#define X509_CERT_FILE "/etc/ssl/certs/ca-certificates.crt" - #define X509_PRIVATE_DIR OPENSSLDIR "/private" - #define X509_CERT_DIR_EVP "SSL_CERT_DIR" - #define X509_CERT_FILE_EVP "SSL_CERT_FILE" diff --git a/overlay/invidious/versions.json b/overlay/invidious/versions.json deleted file mode 100644 index e2c56ad..0000000 --- a/overlay/invidious/versions.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "boringssl": { - "rev": "251b5169fd44345f455438312ec4e18ae07fd58c", - "sha256": "sha256-EU6T9yQCdOLx98Io8o01rEsgxDFF/Xoy42LgPopD2/A=" - }, - "invidious": { - "rev": "5160d8bae39dc5cc5d51abee90571a03c08d0f2b", - "sha256": "sha256-0Cb1Qsn6vnrzd4pZm1GZxlVQNn5dYKUR/xWMCG37GSk=", - "version": "unstable-2022-11-22" - }, - "lsquic": { - "sha256": "sha256-hG8cUvhbCNeMOsKkaJlgGpzUrIx47E/WhmPIdI5F3qM=", - "version": "2.18.1" - }, - "videojs": { - "sha256": "0m09pc9acpzhfwwvc9dayl60nn28skmmglgvmlp48dlkqgfbgc27" - } -} diff --git a/overlay/invidious/videojs.nix b/overlay/invidious/videojs.nix deleted file mode 100644 index 8087dc9..0000000 --- a/overlay/invidious/videojs.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ - stdenvNoCC, - cacert, - crystal, - openssl, - pkg-config, - invidious, -}: let - versions = builtins.fromJSON (builtins.readFile ./versions.json); -in - stdenvNoCC.mkDerivation { - name = "videojs"; - - inherit (invidious) src; - - builder = ./videojs.sh; - - nativeBuildInputs = [cacert crystal openssl pkg-config]; - - outputHashAlgo = "sha256"; - outputHashMode = "recursive"; - outputHash = versions.videojs.sha256; - } diff --git a/overlay/invidious/videojs.sh b/overlay/invidious/videojs.sh deleted file mode 100644 index 31609db..0000000 --- a/overlay/invidious/videojs.sh +++ /dev/null @@ -1,9 +0,0 @@ -source $stdenv/setup - -unpackPhase -cd source -# this helper downloads the videojs files and checks their checksums -# against videojs-dependencies.yml so it should be pure -crystal run scripts/fetch-player-dependencies.cr -- --minified -rm -f assets/videojs/.gitignore -mv assets/videojs "$out" diff --git a/overlay/piped/backend/deps.nix b/overlay/piped/backend/deps.nix index 1fc6a6a..c3e602d 100644 --- a/overlay/piped/backend/deps.nix +++ b/overlay/piped/backend/deps.nix @@ -36,5 +36,5 @@ in outputHashAlgo = "sha256"; outputHashMode = "recursive"; - outputHash = "sha256-WHm6x8xiVpxg+WYjXPcTTr02CoQVi0q4Us3KO8saTSE="; + outputHash = "sha256-tWqnFIb+SvnG7ZH7BNRXCR6RaTGRG/1pXBM1UVr/TOA="; } diff --git a/overlay/piped/frontend/yarn.nix b/overlay/piped/frontend/yarn.nix index e026609..2144175 100644 --- a/overlay/piped/frontend/yarn.nix +++ b/overlay/piped/frontend/yarn.nix @@ -1,11 +1,17 @@ -{ fetchurl, fetchgit, linkFarm, runCommand, gnutar }: rec { +{ + fetchurl, + fetchgit, + linkFarm, + runCommand, + gnutar, +}: rec { offline_cache = linkFarm "offline" packages; packages = [ { name = "_ampproject_remapping___remapping_2.1.2.tgz"; path = fetchurl { name = "_ampproject_remapping___remapping_2.1.2.tgz"; - url = "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.1.2.tgz"; + url = "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.1.2.tgz"; sha512 = "hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg=="; }; } @@ -13,7 +19,7 @@ name = "_ampproject_remapping___remapping_2.2.0.tgz"; path = fetchurl { name = "_ampproject_remapping___remapping_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz"; + url = "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz"; sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="; }; } @@ -21,7 +27,7 @@ name = "_antfu_install_pkg___install_pkg_0.1.0.tgz"; path = fetchurl { name = "_antfu_install_pkg___install_pkg_0.1.0.tgz"; - url = "https://registry.yarnpkg.com/@antfu/install-pkg/-/install-pkg-0.1.0.tgz"; + url = "https://registry.yarnpkg.com/@antfu/install-pkg/-/install-pkg-0.1.0.tgz"; sha512 = "VaIJd3d1o7irZfK1U0nvBsHMyjkuyMP3HKYVV53z8DKyulkHKmjhhtccXO51WSPeeSHIeoJEoNOKavYpS7jkZw=="; }; } @@ -29,7 +35,7 @@ name = "_antfu_utils___utils_0.5.2.tgz"; path = fetchurl { name = "_antfu_utils___utils_0.5.2.tgz"; - url = "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.5.2.tgz"; + url = "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.5.2.tgz"; sha512 = "CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA=="; }; } @@ -37,7 +43,7 @@ name = "_apideck_better_ajv_errors___better_ajv_errors_0.3.3.tgz"; path = fetchurl { name = "_apideck_better_ajv_errors___better_ajv_errors_0.3.3.tgz"; - url = "https://registry.yarnpkg.com/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.3.tgz"; + url = "https://registry.yarnpkg.com/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.3.tgz"; sha512 = "9o+HO2MbJhJHjDYZaDxJmSDckvDpiuItEsrIShV0DXeCshXWRHhqYyU/PKHMkuClOmFnZhRd6wzv4vpDu/dRKg=="; }; } @@ -45,7 +51,7 @@ name = "_babel_code_frame___code_frame_7.16.7.tgz"; path = fetchurl { name = "_babel_code_frame___code_frame_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz"; sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="; }; } @@ -53,7 +59,7 @@ name = "_babel_compat_data___compat_data_7.17.7.tgz"; path = fetchurl { name = "_babel_compat_data___compat_data_7.17.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.7.tgz"; sha512 = "p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ=="; }; } @@ -61,7 +67,7 @@ name = "_babel_core___core_7.17.8.tgz"; path = fetchurl { name = "_babel_core___core_7.17.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/core/-/core-7.17.8.tgz"; + url = "https://registry.yarnpkg.com/@babel/core/-/core-7.17.8.tgz"; sha512 = "OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ=="; }; } @@ -69,7 +75,7 @@ name = "_babel_generator___generator_7.17.7.tgz"; path = fetchurl { name = "_babel_generator___generator_7.17.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.7.tgz"; sha512 = "oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w=="; }; } @@ -77,7 +83,7 @@ name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz"; sha512 = "s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw=="; }; } @@ -85,7 +91,7 @@ name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz"; sha512 = "C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA=="; }; } @@ -93,7 +99,7 @@ name = "_babel_helper_compilation_targets___helper_compilation_targets_7.17.7.tgz"; path = fetchurl { name = "_babel_helper_compilation_targets___helper_compilation_targets_7.17.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz"; sha512 = "UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w=="; }; } @@ -101,7 +107,7 @@ name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.17.6.tgz"; path = fetchurl { name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.17.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz"; sha512 = "SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg=="; }; } @@ -109,7 +115,7 @@ name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.17.0.tgz"; path = fetchurl { name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.17.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz"; sha512 = "awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA=="; }; } @@ -117,7 +123,7 @@ name = "_babel_helper_define_polyfill_provider___helper_define_polyfill_provider_0.3.1.tgz"; path = fetchurl { name = "_babel_helper_define_polyfill_provider___helper_define_polyfill_provider_0.3.1.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz"; sha512 = "J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA=="; }; } @@ -125,7 +131,7 @@ name = "_babel_helper_environment_visitor___helper_environment_visitor_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_environment_visitor___helper_environment_visitor_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz"; sha512 = "SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag=="; }; } @@ -133,7 +139,7 @@ name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz"; sha512 = "KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ=="; }; } @@ -141,7 +147,7 @@ name = "_babel_helper_function_name___helper_function_name_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_function_name___helper_function_name_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz"; sha512 = "QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA=="; }; } @@ -149,7 +155,7 @@ name = "_babel_helper_get_function_arity___helper_get_function_arity_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_get_function_arity___helper_get_function_arity_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"; sha512 = "flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw=="; }; } @@ -157,7 +163,7 @@ name = "_babel_helper_hoist_variables___helper_hoist_variables_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_hoist_variables___helper_hoist_variables_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz"; sha512 = "m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg=="; }; } @@ -165,7 +171,7 @@ name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.17.7.tgz"; path = fetchurl { name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.17.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz"; sha512 = "thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw=="; }; } @@ -173,7 +179,7 @@ name = "_babel_helper_module_imports___helper_module_imports_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_module_imports___helper_module_imports_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz"; sha512 = "LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="; }; } @@ -181,7 +187,7 @@ name = "_babel_helper_module_transforms___helper_module_transforms_7.17.7.tgz"; path = fetchurl { name = "_babel_helper_module_transforms___helper_module_transforms_7.17.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz"; sha512 = "VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw=="; }; } @@ -189,7 +195,7 @@ name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz"; sha512 = "EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w=="; }; } @@ -197,7 +203,7 @@ name = "_babel_helper_plugin_utils___helper_plugin_utils_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_plugin_utils___helper_plugin_utils_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz"; sha512 = "Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="; }; } @@ -205,7 +211,7 @@ name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.16.8.tgz"; path = fetchurl { name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.16.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz"; sha512 = "fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw=="; }; } @@ -213,7 +219,7 @@ name = "_babel_helper_replace_supers___helper_replace_supers_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_replace_supers___helper_replace_supers_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz"; sha512 = "y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw=="; }; } @@ -221,7 +227,7 @@ name = "_babel_helper_simple_access___helper_simple_access_7.17.7.tgz"; path = fetchurl { name = "_babel_helper_simple_access___helper_simple_access_7.17.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz"; sha512 = "txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA=="; }; } @@ -229,7 +235,7 @@ name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.16.0.tgz"; path = fetchurl { name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz"; sha512 = "+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw=="; }; } @@ -237,7 +243,7 @@ name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz"; sha512 = "xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw=="; }; } @@ -245,7 +251,7 @@ name = "_babel_helper_validator_identifier___helper_validator_identifier_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_validator_identifier___helper_validator_identifier_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"; sha512 = "hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="; }; } @@ -253,7 +259,7 @@ name = "_babel_helper_validator_option___helper_validator_option_7.16.7.tgz"; path = fetchurl { name = "_babel_helper_validator_option___helper_validator_option_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz"; sha512 = "TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="; }; } @@ -261,7 +267,7 @@ name = "_babel_helper_wrap_function___helper_wrap_function_7.16.8.tgz"; path = fetchurl { name = "_babel_helper_wrap_function___helper_wrap_function_7.16.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz"; sha512 = "8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw=="; }; } @@ -269,7 +275,7 @@ name = "_babel_helpers___helpers_7.17.8.tgz"; path = fetchurl { name = "_babel_helpers___helpers_7.17.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.17.8.tgz"; + url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.17.8.tgz"; sha512 = "QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw=="; }; } @@ -277,7 +283,7 @@ name = "_babel_highlight___highlight_7.16.10.tgz"; path = fetchurl { name = "_babel_highlight___highlight_7.16.10.tgz"; - url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.10.tgz"; + url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.10.tgz"; sha512 = "5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw=="; }; } @@ -285,7 +291,7 @@ name = "_babel_parser___parser_7.17.8.tgz"; path = fetchurl { name = "_babel_parser___parser_7.17.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.8.tgz"; + url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.8.tgz"; sha512 = "BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ=="; }; } @@ -293,7 +299,7 @@ name = "_babel_plugin_bugfix_safari_id_destructuring_collision_in_function_expression___plugin_bugfix_safari_id_destructuring_collision_in_function_expression_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_bugfix_safari_id_destructuring_collision_in_function_expression___plugin_bugfix_safari_id_destructuring_collision_in_function_expression_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz"; sha512 = "anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg=="; }; } @@ -301,7 +307,7 @@ name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz"; sha512 = "di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw=="; }; } @@ -309,7 +315,7 @@ name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.16.8.tgz"; path = fetchurl { name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.16.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz"; sha512 = "71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ=="; }; } @@ -317,7 +323,7 @@ name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz"; sha512 = "IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww=="; }; } @@ -325,7 +331,7 @@ name = "_babel_plugin_proposal_class_static_block___plugin_proposal_class_static_block_7.17.6.tgz"; path = fetchurl { name = "_babel_plugin_proposal_class_static_block___plugin_proposal_class_static_block_7.17.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz"; sha512 = "X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA=="; }; } @@ -333,7 +339,7 @@ name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz"; sha512 = "I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg=="; }; } @@ -341,7 +347,7 @@ name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz"; sha512 = "ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA=="; }; } @@ -349,7 +355,7 @@ name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz"; sha512 = "lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ=="; }; } @@ -357,7 +363,7 @@ name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz"; sha512 = "K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg=="; }; } @@ -365,7 +371,7 @@ name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz"; sha512 = "aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ=="; }; } @@ -373,7 +379,7 @@ name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz"; sha512 = "vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw=="; }; } @@ -381,7 +387,7 @@ name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.17.3.tgz"; path = fetchurl { name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.17.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz"; sha512 = "yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw=="; }; } @@ -389,7 +395,7 @@ name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz"; sha512 = "eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA=="; }; } @@ -397,7 +403,7 @@ name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz"; sha512 = "eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA=="; }; } @@ -405,7 +411,7 @@ name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.16.11.tgz"; path = fetchurl { name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.16.11.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz"; sha512 = "F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw=="; }; } @@ -413,7 +419,7 @@ name = "_babel_plugin_proposal_private_property_in_object___plugin_proposal_private_property_in_object_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_proposal_private_property_in_object___plugin_proposal_private_property_in_object_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz"; sha512 = "rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ=="; }; } @@ -421,7 +427,7 @@ name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz"; sha512 = "QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg=="; }; } @@ -429,7 +435,7 @@ name = "_babel_plugin_syntax_async_generators___plugin_syntax_async_generators_7.8.4.tgz"; path = fetchurl { name = "_babel_plugin_syntax_async_generators___plugin_syntax_async_generators_7.8.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"; sha512 = "tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="; }; } @@ -437,7 +443,7 @@ name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.13.tgz"; path = fetchurl { name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.13.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"; sha512 = "fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="; }; } @@ -445,7 +451,7 @@ name = "_babel_plugin_syntax_class_static_block___plugin_syntax_class_static_block_7.14.5.tgz"; path = fetchurl { name = "_babel_plugin_syntax_class_static_block___plugin_syntax_class_static_block_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz"; sha512 = "b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="; }; } @@ -453,7 +459,7 @@ name = "_babel_plugin_syntax_dynamic_import___plugin_syntax_dynamic_import_7.8.3.tgz"; path = fetchurl { name = "_babel_plugin_syntax_dynamic_import___plugin_syntax_dynamic_import_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz"; sha512 = "5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ=="; }; } @@ -461,7 +467,7 @@ name = "_babel_plugin_syntax_export_namespace_from___plugin_syntax_export_namespace_from_7.8.3.tgz"; path = fetchurl { name = "_babel_plugin_syntax_export_namespace_from___plugin_syntax_export_namespace_from_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz"; sha512 = "MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q=="; }; } @@ -469,7 +475,7 @@ name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.8.3.tgz"; path = fetchurl { name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"; sha512 = "lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="; }; } @@ -477,7 +483,7 @@ name = "_babel_plugin_syntax_logical_assignment_operators___plugin_syntax_logical_assignment_operators_7.10.4.tgz"; path = fetchurl { name = "_babel_plugin_syntax_logical_assignment_operators___plugin_syntax_logical_assignment_operators_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"; sha512 = "d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="; }; } @@ -485,7 +491,7 @@ name = "_babel_plugin_syntax_nullish_coalescing_operator___plugin_syntax_nullish_coalescing_operator_7.8.3.tgz"; path = fetchurl { name = "_babel_plugin_syntax_nullish_coalescing_operator___plugin_syntax_nullish_coalescing_operator_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"; sha512 = "aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="; }; } @@ -493,7 +499,7 @@ name = "_babel_plugin_syntax_numeric_separator___plugin_syntax_numeric_separator_7.10.4.tgz"; path = fetchurl { name = "_babel_plugin_syntax_numeric_separator___plugin_syntax_numeric_separator_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"; sha512 = "9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="; }; } @@ -501,7 +507,7 @@ name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.8.3.tgz"; path = fetchurl { name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"; sha512 = "XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="; }; } @@ -509,7 +515,7 @@ name = "_babel_plugin_syntax_optional_catch_binding___plugin_syntax_optional_catch_binding_7.8.3.tgz"; path = fetchurl { name = "_babel_plugin_syntax_optional_catch_binding___plugin_syntax_optional_catch_binding_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"; sha512 = "6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="; }; } @@ -517,7 +523,7 @@ name = "_babel_plugin_syntax_optional_chaining___plugin_syntax_optional_chaining_7.8.3.tgz"; path = fetchurl { name = "_babel_plugin_syntax_optional_chaining___plugin_syntax_optional_chaining_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"; sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="; }; } @@ -525,7 +531,7 @@ name = "_babel_plugin_syntax_private_property_in_object___plugin_syntax_private_property_in_object_7.14.5.tgz"; path = fetchurl { name = "_babel_plugin_syntax_private_property_in_object___plugin_syntax_private_property_in_object_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz"; sha512 = "0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg=="; }; } @@ -533,7 +539,7 @@ name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.14.5.tgz"; path = fetchurl { name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"; sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; }; } @@ -541,7 +547,7 @@ name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz"; sha512 = "9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ=="; }; } @@ -549,7 +555,7 @@ name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.16.8.tgz"; path = fetchurl { name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.16.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz"; sha512 = "MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg=="; }; } @@ -557,7 +563,7 @@ name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz"; sha512 = "JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg=="; }; } @@ -565,7 +571,7 @@ name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz"; sha512 = "ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ=="; }; } @@ -573,7 +579,7 @@ name = "_babel_plugin_transform_classes___plugin_transform_classes_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_classes___plugin_transform_classes_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz"; sha512 = "WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ=="; }; } @@ -581,7 +587,7 @@ name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz"; sha512 = "gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw=="; }; } @@ -589,7 +595,7 @@ name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.17.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.17.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz"; sha512 = "XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ=="; }; } @@ -597,7 +603,7 @@ name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz"; sha512 = "Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ=="; }; } @@ -605,7 +611,7 @@ name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz"; sha512 = "03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw=="; }; } @@ -613,7 +619,7 @@ name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz"; sha512 = "8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA=="; }; } @@ -621,7 +627,7 @@ name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz"; sha512 = "/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg=="; }; } @@ -629,7 +635,7 @@ name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz"; sha512 = "SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA=="; }; } @@ -637,7 +643,7 @@ name = "_babel_plugin_transform_literals___plugin_transform_literals_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_literals___plugin_transform_literals_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz"; sha512 = "6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ=="; }; } @@ -645,7 +651,7 @@ name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz"; sha512 = "mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw=="; }; } @@ -653,7 +659,7 @@ name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz"; sha512 = "KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g=="; }; } @@ -661,7 +667,7 @@ name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.17.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.17.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.7.tgz"; sha512 = "ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA=="; }; } @@ -669,7 +675,7 @@ name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.17.8.tgz"; path = fetchurl { name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.17.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.17.8.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.17.8.tgz"; sha512 = "39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw=="; }; } @@ -677,7 +683,7 @@ name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz"; sha512 = "EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ=="; }; } @@ -685,7 +691,7 @@ name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.16.8.tgz"; path = fetchurl { name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.16.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz"; sha512 = "j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw=="; }; } @@ -693,7 +699,7 @@ name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz"; sha512 = "xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg=="; }; } @@ -701,7 +707,7 @@ name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz"; sha512 = "14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw=="; }; } @@ -709,7 +715,7 @@ name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz"; sha512 = "AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw=="; }; } @@ -717,7 +723,7 @@ name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz"; sha512 = "z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw=="; }; } @@ -725,7 +731,7 @@ name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz"; sha512 = "mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q=="; }; } @@ -733,7 +739,7 @@ name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz"; sha512 = "KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg=="; }; } @@ -741,7 +747,7 @@ name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz"; sha512 = "hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg=="; }; } @@ -749,7 +755,7 @@ name = "_babel_plugin_transform_spread___plugin_transform_spread_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_spread___plugin_transform_spread_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz"; sha512 = "+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg=="; }; } @@ -757,7 +763,7 @@ name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz"; sha512 = "NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw=="; }; } @@ -765,7 +771,7 @@ name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz"; sha512 = "VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA=="; }; } @@ -773,7 +779,7 @@ name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz"; sha512 = "p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ=="; }; } @@ -781,7 +787,7 @@ name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz"; sha512 = "TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q=="; }; } @@ -789,7 +795,7 @@ name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.16.7.tgz"; path = fetchurl { name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz"; sha512 = "oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q=="; }; } @@ -797,7 +803,7 @@ name = "_babel_preset_env___preset_env_7.16.11.tgz"; path = fetchurl { name = "_babel_preset_env___preset_env_7.16.11.tgz"; - url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.16.11.tgz"; + url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.16.11.tgz"; sha512 = "qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g=="; }; } @@ -805,7 +811,7 @@ name = "_babel_preset_modules___preset_modules_0.1.5.tgz"; path = fetchurl { name = "_babel_preset_modules___preset_modules_0.1.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz"; sha512 = "A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA=="; }; } @@ -813,7 +819,7 @@ name = "_babel_runtime___runtime_7.17.8.tgz"; path = fetchurl { name = "_babel_runtime___runtime_7.17.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.8.tgz"; + url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.8.tgz"; sha512 = "dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA=="; }; } @@ -821,7 +827,7 @@ name = "_babel_standalone___standalone_7.20.6.tgz"; path = fetchurl { name = "_babel_standalone___standalone_7.20.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.20.6.tgz"; + url = "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.20.6.tgz"; sha512 = "u5at/CbBLETf7kx2LOY4XdhseD79Y099WZKAOMXeT8qvd9OSR515my2UNBBLY4qIht/Qi9KySeQHQwQwxJN4Sw=="; }; } @@ -829,7 +835,7 @@ name = "_babel_template___template_7.16.7.tgz"; path = fetchurl { name = "_babel_template___template_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz"; + url = "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz"; sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; }; } @@ -837,7 +843,7 @@ name = "_babel_traverse___traverse_7.17.3.tgz"; path = fetchurl { name = "_babel_traverse___traverse_7.17.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.17.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.17.3.tgz"; sha512 = "5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw=="; }; } @@ -845,7 +851,7 @@ name = "_babel_types___types_7.17.0.tgz"; path = fetchurl { name = "_babel_types___types_7.17.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz"; sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="; }; } @@ -853,7 +859,7 @@ name = "_esbuild_android_arm___android_arm_0.15.12.tgz"; path = fetchurl { name = "_esbuild_android_arm___android_arm_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.15.12.tgz"; sha512 = "IC7TqIqiyE0MmvAhWkl/8AEzpOtbhRNDo7aph47We1NbE5w2bt/Q+giAhe0YYeVpYnIhGMcuZY92qDK6dQauvA=="; }; } @@ -861,7 +867,7 @@ name = "_esbuild_linux_loong64___linux_loong64_0.15.12.tgz"; path = fetchurl { name = "_esbuild_linux_loong64___linux_loong64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.15.12.tgz"; sha512 = "tZEowDjvU7O7I04GYvWQOS4yyP9E/7YlsB0jjw1Ycukgr2ycEzKyIk5tms5WnLBymaewc6VmRKnn5IJWgK4eFw=="; }; } @@ -869,7 +875,7 @@ name = "_eslint_eslintrc___eslintrc_1.3.3.tgz"; path = fetchurl { name = "_eslint_eslintrc___eslintrc_1.3.3.tgz"; - url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz"; + url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz"; sha512 = "uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg=="; }; } @@ -877,7 +883,7 @@ name = "_fortawesome_fontawesome_common_types___fontawesome_common_types_6.2.1.tgz"; path = fetchurl { name = "_fortawesome_fontawesome_common_types___fontawesome_common_types_6.2.1.tgz"; - url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.2.1.tgz"; + url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.2.1.tgz"; sha512 = "Sz07mnQrTekFWLz5BMjOzHl/+NooTdW8F8kDQxjWwbpOJcnoSg4vUDng8d/WR1wOxM0O+CY9Zw0nR054riNYtQ=="; }; } @@ -885,7 +891,7 @@ name = "_fortawesome_fontawesome_svg_core___fontawesome_svg_core_6.2.1.tgz"; path = fetchurl { name = "_fortawesome_fontawesome_svg_core___fontawesome_svg_core_6.2.1.tgz"; - url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.2.1.tgz"; + url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.2.1.tgz"; sha512 = "HELwwbCz6C1XEcjzyT1Jugmz2NNklMrSPjZOWMlc+ZsHIVk+XOvOXLGGQtFBwSyqfJDNgRq4xBCwWOaZ/d9DEA=="; }; } @@ -893,7 +899,7 @@ name = "_fortawesome_free_brands_svg_icons___free_brands_svg_icons_6.2.1.tgz"; path = fetchurl { name = "_fortawesome_free_brands_svg_icons___free_brands_svg_icons_6.2.1.tgz"; - url = "https://registry.yarnpkg.com/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-6.2.1.tgz"; + url = "https://registry.yarnpkg.com/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-6.2.1.tgz"; sha512 = "L8l4MfdHPmZlJ72PvzdfwOwbwcCAL0vx48tJRnI6u1PJXh+j2f3yDoKyQgO3qjEsgD5Fr2tQV/cPP8F/k6aUig=="; }; } @@ -901,7 +907,7 @@ name = "_fortawesome_free_solid_svg_icons___free_solid_svg_icons_6.2.1.tgz"; path = fetchurl { name = "_fortawesome_free_solid_svg_icons___free_solid_svg_icons_6.2.1.tgz"; - url = "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.2.1.tgz"; + url = "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.2.1.tgz"; sha512 = "oKuqrP5jbfEPJWTij4sM+/RvgX+RMFwx3QZCZcK9PrBDgxC35zuc7AOFsyMjMd/PIFPeB2JxyqDr5zs/DZFPPw=="; }; } @@ -909,7 +915,7 @@ name = "_fortawesome_vue_fontawesome___vue_fontawesome_3.0.2.tgz"; path = fetchurl { name = "_fortawesome_vue_fontawesome___vue_fontawesome_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/@fortawesome/vue-fontawesome/-/vue-fontawesome-3.0.2.tgz"; + url = "https://registry.yarnpkg.com/@fortawesome/vue-fontawesome/-/vue-fontawesome-3.0.2.tgz"; sha512 = "xHVtVY8ASUeEvgcA/7vULUesENhD+pi/EirRHdMBqooHlXBqK+yrV6d8tUye1m5UKQKVgYAHMhUBfOnoiwvc8Q=="; }; } @@ -917,7 +923,7 @@ name = "_humanwhocodes_config_array___config_array_0.11.6.tgz"; path = fetchurl { name = "_humanwhocodes_config_array___config_array_0.11.6.tgz"; - url = "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.6.tgz"; + url = "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.6.tgz"; sha512 = "jJr+hPTJYKyDILJfhNSHsjiwXYf26Flsz8DvNndOsHs5pwSnpGUEy8yzF0JYhCEvTDdV2vuOK5tt8BVhwO5/hg=="; }; } @@ -925,7 +931,7 @@ name = "_humanwhocodes_module_importer___module_importer_1.0.1.tgz"; path = fetchurl { name = "_humanwhocodes_module_importer___module_importer_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"; sha512 = "bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="; }; } @@ -933,7 +939,7 @@ name = "_humanwhocodes_object_schema___object_schema_1.2.1.tgz"; path = fetchurl { name = "_humanwhocodes_object_schema___object_schema_1.2.1.tgz"; - url = "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"; + url = "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"; sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="; }; } @@ -941,7 +947,7 @@ name = "_iconify_json___json_2.1.154.tgz"; path = fetchurl { name = "_iconify_json___json_2.1.154.tgz"; - url = "https://registry.yarnpkg.com/@iconify/json/-/json-2.1.154.tgz"; + url = "https://registry.yarnpkg.com/@iconify/json/-/json-2.1.154.tgz"; sha512 = "RpUu4zDoeqIAzD54t8mfCKca+fzASgFf+lFE7Y9OzvScrf+IbUrvyZZEcOkjEB1cB4emDgmWGTAAkVTihhaqxQ=="; }; } @@ -949,7 +955,7 @@ name = "_iconify_types___types_2.0.0.tgz"; path = fetchurl { name = "_iconify_types___types_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/@iconify/types/-/types-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/@iconify/types/-/types-2.0.0.tgz"; sha512 = "+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg=="; }; } @@ -957,7 +963,7 @@ name = "_iconify_utils___utils_2.0.2.tgz"; path = fetchurl { name = "_iconify_utils___utils_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/@iconify/utils/-/utils-2.0.2.tgz"; + url = "https://registry.yarnpkg.com/@iconify/utils/-/utils-2.0.2.tgz"; sha512 = "13B3wJxDLmSNBEIEpKleKSkJVQgdAy9ra3Xsu233i/5qD5yXBGhpOFxTB/k8cqme0xVsMKBPV5vbvq9MgQlX+w=="; }; } @@ -965,7 +971,7 @@ name = "_intlify_bundle_utils___bundle_utils_3.2.1.tgz"; path = fetchurl { name = "_intlify_bundle_utils___bundle_utils_3.2.1.tgz"; - url = "https://registry.yarnpkg.com/@intlify/bundle-utils/-/bundle-utils-3.2.1.tgz"; + url = "https://registry.yarnpkg.com/@intlify/bundle-utils/-/bundle-utils-3.2.1.tgz"; sha512 = "rf4cLBOnbqmpXVcCdcYHilZpMt1m82syh3WLBJlZvGxN2KkH9HeHVH4+bnibF/SDXCHNh6lM6wTpS/qw+PkcMg=="; }; } @@ -973,7 +979,7 @@ name = "_intlify_core_base___core_base_9.2.2.tgz"; path = fetchurl { name = "_intlify_core_base___core_base_9.2.2.tgz"; - url = "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-9.2.2.tgz"; + url = "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-9.2.2.tgz"; sha512 = "JjUpQtNfn+joMbrXvpR4hTF8iJQ2sEFzzK3KIESOx+f+uwIjgw20igOyaIdhfsVVBCds8ZM64MoeNSx+PHQMkA=="; }; } @@ -981,7 +987,7 @@ name = "_intlify_devtools_if___devtools_if_9.2.2.tgz"; path = fetchurl { name = "_intlify_devtools_if___devtools_if_9.2.2.tgz"; - url = "https://registry.yarnpkg.com/@intlify/devtools-if/-/devtools-if-9.2.2.tgz"; + url = "https://registry.yarnpkg.com/@intlify/devtools-if/-/devtools-if-9.2.2.tgz"; sha512 = "4ttr/FNO29w+kBbU7HZ/U0Lzuh2cRDhP8UlWOtV9ERcjHzuyXVZmjyleESK6eVP60tGC9QtQW9yZE+JeRhDHkg=="; }; } @@ -989,7 +995,7 @@ name = "_intlify_message_compiler___message_compiler_9.2.2.tgz"; path = fetchurl { name = "_intlify_message_compiler___message_compiler_9.2.2.tgz"; - url = "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.2.2.tgz"; + url = "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.2.2.tgz"; sha512 = "IUrQW7byAKN2fMBe8z6sK6riG1pue95e5jfokn8hA5Q3Bqy4MBJ5lJAofUsawQJYHeoPJ7svMDyBaVJ4d0GTtA=="; }; } @@ -997,7 +1003,7 @@ name = "_intlify_message_compiler___message_compiler_9.2.0_beta.40.tgz"; path = fetchurl { name = "_intlify_message_compiler___message_compiler_9.2.0_beta.40.tgz"; - url = "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.2.0-beta.40.tgz"; + url = "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.2.0-beta.40.tgz"; sha512 = "6QWTSYewmkew4nsRqgkwTVuGFKzxVCOK8EXsPt15N+tN1g+OYjC3PfGA2dPB6cVkNxqA9mV/hNK02uHPWU9t0A=="; }; } @@ -1005,7 +1011,7 @@ name = "_intlify_shared___shared_9.2.0_beta.40.tgz"; path = fetchurl { name = "_intlify_shared___shared_9.2.0_beta.40.tgz"; - url = "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.2.0-beta.40.tgz"; + url = "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.2.0-beta.40.tgz"; sha512 = "xWz+SFjgt/LfaSbbHVn+V7gmvX4ZNP3cIFta790GWZ/tEgwJeC3tkV7i45iUbZ4ZimOerFgKH05b7qvJlKb6RQ=="; }; } @@ -1013,7 +1019,7 @@ name = "_intlify_shared___shared_9.2.2.tgz"; path = fetchurl { name = "_intlify_shared___shared_9.2.2.tgz"; - url = "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.2.2.tgz"; + url = "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.2.2.tgz"; sha512 = "wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q=="; }; } @@ -1021,7 +1027,7 @@ name = "_intlify_vite_plugin_vue_i18n___vite_plugin_vue_i18n_6.0.3.tgz"; path = fetchurl { name = "_intlify_vite_plugin_vue_i18n___vite_plugin_vue_i18n_6.0.3.tgz"; - url = "https://registry.yarnpkg.com/@intlify/vite-plugin-vue-i18n/-/vite-plugin-vue-i18n-6.0.3.tgz"; + url = "https://registry.yarnpkg.com/@intlify/vite-plugin-vue-i18n/-/vite-plugin-vue-i18n-6.0.3.tgz"; sha512 = "6SgNzPAOCR90wvt368lKzi7f/5ZEWJn22UCGvhFsP3XvKqlF3cVzojahgQ6o+LTdCkExeM6wPgd+haFf28E9VQ=="; }; } @@ -1029,7 +1035,7 @@ name = "_intlify_vue_devtools___vue_devtools_9.2.2.tgz"; path = fetchurl { name = "_intlify_vue_devtools___vue_devtools_9.2.2.tgz"; - url = "https://registry.yarnpkg.com/@intlify/vue-devtools/-/vue-devtools-9.2.2.tgz"; + url = "https://registry.yarnpkg.com/@intlify/vue-devtools/-/vue-devtools-9.2.2.tgz"; sha512 = "+dUyqyCHWHb/UcvY1MlIpO87munedm3Gn6E9WWYdWrMuYLcoIoOEVDWSS8xSwtlPU+kA+MEQTP6Q1iI/ocusJg=="; }; } @@ -1037,7 +1043,7 @@ name = "_jridgewell_gen_mapping___gen_mapping_0.1.1.tgz"; path = fetchurl { name = "_jridgewell_gen_mapping___gen_mapping_0.1.1.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"; + url = "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"; sha512 = "sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="; }; } @@ -1045,7 +1051,7 @@ name = "_jridgewell_gen_mapping___gen_mapping_0.3.2.tgz"; path = fetchurl { name = "_jridgewell_gen_mapping___gen_mapping_0.3.2.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz"; + url = "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz"; sha512 = "mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A=="; }; } @@ -1053,7 +1059,7 @@ name = "_jridgewell_resolve_uri___resolve_uri_3.1.0.tgz"; path = fetchurl { name = "_jridgewell_resolve_uri___resolve_uri_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"; + url = "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"; sha512 = "F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="; }; } @@ -1061,7 +1067,7 @@ name = "_jridgewell_set_array___set_array_1.1.2.tgz"; path = fetchurl { name = "_jridgewell_set_array___set_array_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz"; + url = "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz"; sha512 = "xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="; }; } @@ -1069,7 +1075,7 @@ name = "_jridgewell_source_map___source_map_0.3.2.tgz"; path = fetchurl { name = "_jridgewell_source_map___source_map_0.3.2.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz"; + url = "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz"; sha512 = "m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw=="; }; } @@ -1077,7 +1083,7 @@ name = "_jridgewell_sourcemap_codec___sourcemap_codec_1.4.14.tgz"; path = fetchurl { name = "_jridgewell_sourcemap_codec___sourcemap_codec_1.4.14.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"; + url = "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"; sha512 = "XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="; }; } @@ -1085,7 +1091,7 @@ name = "_jridgewell_trace_mapping___trace_mapping_0.3.4.tgz"; path = fetchurl { name = "_jridgewell_trace_mapping___trace_mapping_0.3.4.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz"; + url = "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz"; sha512 = "vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ=="; }; } @@ -1093,7 +1099,7 @@ name = "_jridgewell_trace_mapping___trace_mapping_0.3.14.tgz"; path = fetchurl { name = "_jridgewell_trace_mapping___trace_mapping_0.3.14.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz"; + url = "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz"; sha512 = "bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ=="; }; } @@ -1101,7 +1107,7 @@ name = "_nodelib_fs.scandir___fs.scandir_2.1.5.tgz"; path = fetchurl { name = "_nodelib_fs.scandir___fs.scandir_2.1.5.tgz"; - url = "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"; + url = "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"; sha512 = "vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="; }; } @@ -1109,7 +1115,7 @@ name = "_nodelib_fs.stat___fs.stat_2.0.5.tgz"; path = fetchurl { name = "_nodelib_fs.stat___fs.stat_2.0.5.tgz"; - url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"; + url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"; sha512 = "RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="; }; } @@ -1117,7 +1123,7 @@ name = "_nodelib_fs.walk___fs.walk_1.2.8.tgz"; path = fetchurl { name = "_nodelib_fs.walk___fs.walk_1.2.8.tgz"; - url = "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"; + url = "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"; sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; }; } @@ -1125,7 +1131,7 @@ name = "_polka_url___url_1.0.0_next.21.tgz"; path = fetchurl { name = "_polka_url___url_1.0.0_next.21.tgz"; - url = "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.21.tgz"; + url = "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.21.tgz"; sha512 = "a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g=="; }; } @@ -1133,7 +1139,7 @@ name = "_rollup_plugin_babel___plugin_babel_5.3.1.tgz"; path = fetchurl { name = "_rollup_plugin_babel___plugin_babel_5.3.1.tgz"; - url = "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz"; + url = "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz"; sha512 = "WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q=="; }; } @@ -1141,7 +1147,7 @@ name = "_rollup_plugin_node_resolve___plugin_node_resolve_11.2.1.tgz"; path = fetchurl { name = "_rollup_plugin_node_resolve___plugin_node_resolve_11.2.1.tgz"; - url = "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz"; + url = "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz"; sha512 = "yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg=="; }; } @@ -1149,7 +1155,7 @@ name = "_rollup_plugin_replace___plugin_replace_2.4.2.tgz"; path = fetchurl { name = "_rollup_plugin_replace___plugin_replace_2.4.2.tgz"; - url = "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz"; + url = "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz"; sha512 = "IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg=="; }; } @@ -1157,7 +1163,7 @@ name = "_rollup_plugin_replace___plugin_replace_5.0.1.tgz"; path = fetchurl { name = "_rollup_plugin_replace___plugin_replace_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-5.0.1.tgz"; + url = "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-5.0.1.tgz"; sha512 = "Z3MfsJ4CK17BfGrZgvrcp/l6WXoKb0kokULO+zt/7bmcyayokDaQ2K3eDJcRLCTAlp5FPI4/gz9MHAsosz4Rag=="; }; } @@ -1165,7 +1171,7 @@ name = "_rollup_pluginutils___pluginutils_3.1.0.tgz"; path = fetchurl { name = "_rollup_pluginutils___pluginutils_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz"; + url = "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz"; sha512 = "GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg=="; }; } @@ -1173,7 +1179,7 @@ name = "_rollup_pluginutils___pluginutils_4.2.1.tgz"; path = fetchurl { name = "_rollup_pluginutils___pluginutils_4.2.1.tgz"; - url = "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz"; + url = "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz"; sha512 = "iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ=="; }; } @@ -1181,7 +1187,7 @@ name = "_rollup_pluginutils___pluginutils_5.0.2.tgz"; path = fetchurl { name = "_rollup_pluginutils___pluginutils_5.0.2.tgz"; - url = "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.0.2.tgz"; + url = "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.0.2.tgz"; sha512 = "pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA=="; }; } @@ -1189,7 +1195,7 @@ name = "_surma_rollup_plugin_off_main_thread___rollup_plugin_off_main_thread_2.2.3.tgz"; path = fetchurl { name = "_surma_rollup_plugin_off_main_thread___rollup_plugin_off_main_thread_2.2.3.tgz"; - url = "https://registry.yarnpkg.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz"; + url = "https://registry.yarnpkg.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz"; sha512 = "lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ=="; }; } @@ -1197,7 +1203,7 @@ name = "_types_eslint___eslint_8.4.5.tgz"; path = fetchurl { name = "_types_eslint___eslint_8.4.5.tgz"; - url = "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.4.5.tgz"; + url = "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.4.5.tgz"; sha512 = "dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ=="; }; } @@ -1205,7 +1211,7 @@ name = "_types_estree___estree_0.0.51.tgz"; path = fetchurl { name = "_types_estree___estree_0.0.51.tgz"; - url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz"; + url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz"; sha512 = "CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ=="; }; } @@ -1213,7 +1219,7 @@ name = "_types_estree___estree_0.0.39.tgz"; path = fetchurl { name = "_types_estree___estree_0.0.39.tgz"; - url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz"; + url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz"; sha512 = "EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="; }; } @@ -1221,7 +1227,7 @@ name = "_types_estree___estree_1.0.0.tgz"; path = fetchurl { name = "_types_estree___estree_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.0.tgz"; sha512 = "WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ=="; }; } @@ -1229,7 +1235,7 @@ name = "_types_json_schema___json_schema_7.0.11.tgz"; path = fetchurl { name = "_types_json_schema___json_schema_7.0.11.tgz"; - url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz"; + url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz"; sha512 = "wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="; }; } @@ -1237,7 +1243,7 @@ name = "_types_node___node_17.0.23.tgz"; path = fetchurl { name = "_types_node___node_17.0.23.tgz"; - url = "https://registry.yarnpkg.com/@types/node/-/node-17.0.23.tgz"; + url = "https://registry.yarnpkg.com/@types/node/-/node-17.0.23.tgz"; sha512 = "UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw=="; }; } @@ -1245,7 +1251,7 @@ name = "_types_resolve___resolve_1.17.1.tgz"; path = fetchurl { name = "_types_resolve___resolve_1.17.1.tgz"; - url = "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz"; + url = "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz"; sha512 = "yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw=="; }; } @@ -1253,7 +1259,7 @@ name = "_types_trusted_types___trusted_types_2.0.2.tgz"; path = fetchurl { name = "_types_trusted_types___trusted_types_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.2.tgz"; + url = "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.2.tgz"; sha512 = "F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg=="; }; } @@ -1261,7 +1267,7 @@ name = "_unocss_astro___astro_0.47.6.tgz"; path = fetchurl { name = "_unocss_astro___astro_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/astro/-/astro-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/astro/-/astro-0.47.6.tgz"; sha512 = "8lR4KwuCeVxOTKk6g6hx6VUHhW1u+hki8oRsJaKEB0s5iUPmY6rCNtb/iaBJdceY11bZMMy5LZHJFTkod/T/zg=="; }; } @@ -1269,7 +1275,7 @@ name = "_unocss_cli___cli_0.47.6.tgz"; path = fetchurl { name = "_unocss_cli___cli_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/cli/-/cli-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/cli/-/cli-0.47.6.tgz"; sha512 = "Lwuzl6xK+67LUb4pCKlyrMv9cDuTvywhlSBiYzDj1Su+21IQVRxUagpo10b1WlLXWWQz4J3bOJZYE/e/QV2/HQ=="; }; } @@ -1277,7 +1283,7 @@ name = "_unocss_config___config_0.47.6.tgz"; path = fetchurl { name = "_unocss_config___config_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/config/-/config-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/config/-/config-0.47.6.tgz"; sha512 = "KycIrpKqPrTnrbNRLUgePuzfZUKk6afsKII6B53q9rVxxC1og4g7wCsvrn2D89lPipsJ6B9041VsdIhNqa8bFg=="; }; } @@ -1285,7 +1291,7 @@ name = "_unocss_core___core_0.47.6.tgz"; path = fetchurl { name = "_unocss_core___core_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/core/-/core-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/core/-/core-0.47.6.tgz"; sha512 = "Pjg/NdpuTwZk2Ns3bzI/3XVPuXU+AQ78Sw+9QJyMgA56dArd3TlpNDN6UTOD9XAK6mxdPUu7rNSKpNTLpBW2og=="; }; } @@ -1293,7 +1299,7 @@ name = "_unocss_inspector___inspector_0.47.6.tgz"; path = fetchurl { name = "_unocss_inspector___inspector_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/inspector/-/inspector-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/inspector/-/inspector-0.47.6.tgz"; sha512 = "enYQJo7+/UtSbgzpyKzL4vZU9Tz3QyoPGDmuKoHXSIt6sAtB+DQelW7vMWjcmwA19uaISxIGXx9BJPj5XV67UA=="; }; } @@ -1301,7 +1307,7 @@ name = "_unocss_preset_attributify___preset_attributify_0.47.6.tgz"; path = fetchurl { name = "_unocss_preset_attributify___preset_attributify_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/preset-attributify/-/preset-attributify-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/preset-attributify/-/preset-attributify-0.47.6.tgz"; sha512 = "s5XB8JpBPbGCHjvzc2j+Cx9o+QQm2CjRdQ7UjL05+uQcVYb8PBjlfD3BeIA21eBH5IxXF9SdOJfx8kUWNa5WFQ=="; }; } @@ -1309,7 +1315,7 @@ name = "_unocss_preset_icons___preset_icons_0.47.6.tgz"; path = fetchurl { name = "_unocss_preset_icons___preset_icons_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/preset-icons/-/preset-icons-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/preset-icons/-/preset-icons-0.47.6.tgz"; sha512 = "YvANR5ueN+r1E4YOfqF1llyUzS6yxROrJ+7MGNdIfyNHFcTwdHRy0f6y8uyiMYWyLc6nGGrUjjdo+DEc30obSA=="; }; } @@ -1317,7 +1323,7 @@ name = "_unocss_preset_mini___preset_mini_0.47.6.tgz"; path = fetchurl { name = "_unocss_preset_mini___preset_mini_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/preset-mini/-/preset-mini-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/preset-mini/-/preset-mini-0.47.6.tgz"; sha512 = "XP7ShDB42WU0xvZA1dG4E3LnzN4TYISm6AKQee3gmITUtE0ELTp9XutMgt0sqTe5FXeTRqw9XH7axv+4EqnE3Q=="; }; } @@ -1325,7 +1331,7 @@ name = "_unocss_preset_tagify___preset_tagify_0.47.6.tgz"; path = fetchurl { name = "_unocss_preset_tagify___preset_tagify_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/preset-tagify/-/preset-tagify-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/preset-tagify/-/preset-tagify-0.47.6.tgz"; sha512 = "9MxgZAUWWEg5OPLY+fpEf/Clw88pi57HON95E9zKvRy816S5gqhbt3PSxal7pCB9WO+3JM6BFLazAJ7DHpT1qA=="; }; } @@ -1333,7 +1339,7 @@ name = "_unocss_preset_typography___preset_typography_0.47.6.tgz"; path = fetchurl { name = "_unocss_preset_typography___preset_typography_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/preset-typography/-/preset-typography-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/preset-typography/-/preset-typography-0.47.6.tgz"; sha512 = "/Hfsw05ogolLXqrxTu5bLFIgGGmVdRHGw5vSmY3g+YPy37HfWpbP3cOs8YEOv8r3lV9J7vzAxAKKT0MQgukiHQ=="; }; } @@ -1341,7 +1347,7 @@ name = "_unocss_preset_uno___preset_uno_0.47.6.tgz"; path = fetchurl { name = "_unocss_preset_uno___preset_uno_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/preset-uno/-/preset-uno-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/preset-uno/-/preset-uno-0.47.6.tgz"; sha512 = "pDRuFmPzshX6ICaWhj7UBrnoL++rYD/QY52aljg9L4yAOZsZ1m0XRUlbnoXXXsEqDjw38SYNUzA1LtYcevBRvA=="; }; } @@ -1349,7 +1355,7 @@ name = "_unocss_preset_web_fonts___preset_web_fonts_0.47.6.tgz"; path = fetchurl { name = "_unocss_preset_web_fonts___preset_web_fonts_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/preset-web-fonts/-/preset-web-fonts-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/preset-web-fonts/-/preset-web-fonts-0.47.6.tgz"; sha512 = "TkN/etSSl61TtqxQJSVG/zfJUccdpgIuvqYrJOf4OZMj2rLwNHU2kOJEPFCfDyHTS+UjQ7LibfnE6snFDJ3pgQ=="; }; } @@ -1357,7 +1363,7 @@ name = "_unocss_preset_wind___preset_wind_0.47.6.tgz"; path = fetchurl { name = "_unocss_preset_wind___preset_wind_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/preset-wind/-/preset-wind-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/preset-wind/-/preset-wind-0.47.6.tgz"; sha512 = "yl9zayR/CRfgnlM1iGEBKI3CkIVADv72UQHY+ZHqq/0VzeW8lSRG1KezqDKz2x3fMfrtbfls/fGLXQPNpD0mIw=="; }; } @@ -1365,7 +1371,7 @@ name = "_unocss_reset___reset_0.47.6.tgz"; path = fetchurl { name = "_unocss_reset___reset_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/reset/-/reset-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/reset/-/reset-0.47.6.tgz"; sha512 = "bdc2dbuDg+CzgeLowEwO1URRIMdzmCE4RH4IKpCpT1Xoa+92RRubdtzK4N/9ZiSo8d4vvfWcc8fvhZko/6smPQ=="; }; } @@ -1373,7 +1379,7 @@ name = "_unocss_scope___scope_0.47.6.tgz"; path = fetchurl { name = "_unocss_scope___scope_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/scope/-/scope-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/scope/-/scope-0.47.6.tgz"; sha512 = "aI7B4Il5xYfMcr50AC90I+Igi3KB9U0JPX2yiU2/WhOaO33ZReBWJmBQ4LhBGrdgNh8vkHpeqs8ntwq/o25nbA=="; }; } @@ -1381,7 +1387,7 @@ name = "_unocss_transformer_attributify_jsx___transformer_attributify_jsx_0.47.6.tgz"; path = fetchurl { name = "_unocss_transformer_attributify_jsx___transformer_attributify_jsx_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-0.47.6.tgz"; sha512 = "1sjBPNpczbg1ZsM4OKr9SCisc3vXEpW+3aeCRlBq7UGlJId3vJlX19Yp6IV9IEnVubsUkgo/3nr0B12OD58VdQ=="; }; } @@ -1389,7 +1395,7 @@ name = "_unocss_transformer_compile_class___transformer_compile_class_0.47.6.tgz"; path = fetchurl { name = "_unocss_transformer_compile_class___transformer_compile_class_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/transformer-compile-class/-/transformer-compile-class-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/transformer-compile-class/-/transformer-compile-class-0.47.6.tgz"; sha512 = "/+O0qJlHFOF4iO+RVkK5sPLJJzWp8dkAJGH/ArBzpT4hnxe8W7c0tb0hlJxwUp5J7UcP4lDhd8VKKvlyadHkuA=="; }; } @@ -1397,7 +1403,7 @@ name = "_unocss_transformer_directives___transformer_directives_0.47.6.tgz"; path = fetchurl { name = "_unocss_transformer_directives___transformer_directives_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/transformer-directives/-/transformer-directives-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/transformer-directives/-/transformer-directives-0.47.6.tgz"; sha512 = "vRY9bNhE+iNlRpsnky86MtKpRb8ipk3IHvtuRkK5DSjcjn7RGmh5ZpH9pzg39NvbWtRYq5/EN19riIYQHRetnA=="; }; } @@ -1405,7 +1411,7 @@ name = "_unocss_transformer_variant_group___transformer_variant_group_0.47.6.tgz"; path = fetchurl { name = "_unocss_transformer_variant_group___transformer_variant_group_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/transformer-variant-group/-/transformer-variant-group-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/transformer-variant-group/-/transformer-variant-group-0.47.6.tgz"; sha512 = "+uXz0pOv6WbEzQuW5RbgDSiwO274blsOsE63PdiRBMID1eSYKffGBcmiDh875QWc9ncFpjSKml+4q8jU7I+a0w=="; }; } @@ -1413,7 +1419,7 @@ name = "_unocss_vite___vite_0.47.6.tgz"; path = fetchurl { name = "_unocss_vite___vite_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/@unocss/vite/-/vite-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/@unocss/vite/-/vite-0.47.6.tgz"; sha512 = "NL3A20sJHwMyCHOaxLlFXnr71QHEd118GN82e/mtFluEh7F3WyLndaZfWQLmLEeJ3z+P4nURFCLirZJIXr4XgQ=="; }; } @@ -1421,7 +1427,7 @@ name = "_vitejs_plugin_legacy___plugin_legacy_3.0.1.tgz"; path = fetchurl { name = "_vitejs_plugin_legacy___plugin_legacy_3.0.1.tgz"; - url = "https://registry.yarnpkg.com/@vitejs/plugin-legacy/-/plugin-legacy-3.0.1.tgz"; + url = "https://registry.yarnpkg.com/@vitejs/plugin-legacy/-/plugin-legacy-3.0.1.tgz"; sha512 = "XCtEjxoR3rmy000ujYRBp5kggWqzHz9+F20/yIMUWOzbvu0+KW1e14Fvb8h7SpNn+bfjGW1RiAs1Vrgb7Js+iQ=="; }; } @@ -1429,7 +1435,7 @@ name = "_vitejs_plugin_vue___plugin_vue_4.0.0.tgz"; path = fetchurl { name = "_vitejs_plugin_vue___plugin_vue_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.0.0.tgz"; + url = "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.0.0.tgz"; sha512 = "e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA=="; }; } @@ -1437,7 +1443,7 @@ name = "_vue_compiler_core___compiler_core_3.2.45.tgz"; path = fetchurl { name = "_vue_compiler_core___compiler_core_3.2.45.tgz"; - url = "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.2.45.tgz"; + url = "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.2.45.tgz"; sha512 = "rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A=="; }; } @@ -1445,7 +1451,7 @@ name = "_vue_compiler_dom___compiler_dom_3.2.45.tgz"; path = fetchurl { name = "_vue_compiler_dom___compiler_dom_3.2.45.tgz"; - url = "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.45.tgz"; + url = "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.45.tgz"; sha512 = "tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw=="; }; } @@ -1453,7 +1459,7 @@ name = "_vue_compiler_sfc___compiler_sfc_3.2.45.tgz"; path = fetchurl { name = "_vue_compiler_sfc___compiler_sfc_3.2.45.tgz"; - url = "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.45.tgz"; + url = "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.45.tgz"; sha512 = "1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q=="; }; } @@ -1461,7 +1467,7 @@ name = "_vue_compiler_ssr___compiler_ssr_3.2.45.tgz"; path = fetchurl { name = "_vue_compiler_ssr___compiler_ssr_3.2.45.tgz"; - url = "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.2.45.tgz"; + url = "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.2.45.tgz"; sha512 = "6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ=="; }; } @@ -1469,7 +1475,7 @@ name = "_vue_devtools_api___devtools_api_6.2.1.tgz"; path = fetchurl { name = "_vue_devtools_api___devtools_api_6.2.1.tgz"; - url = "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.2.1.tgz"; + url = "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.2.1.tgz"; sha512 = "OEgAMeQXvCoJ+1x8WyQuVZzFo0wcyCmUR3baRVLmKBo1LmYZWMlRiXlux5jd0fqVJu6PfDbOrZItVqUEzLobeQ=="; }; } @@ -1477,7 +1483,7 @@ name = "_vue_devtools_api___devtools_api_6.4.5.tgz"; path = fetchurl { name = "_vue_devtools_api___devtools_api_6.4.5.tgz"; - url = "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.4.5.tgz"; + url = "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.4.5.tgz"; sha512 = "JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ=="; }; } @@ -1485,7 +1491,7 @@ name = "_vue_reactivity_transform___reactivity_transform_3.2.45.tgz"; path = fetchurl { name = "_vue_reactivity_transform___reactivity_transform_3.2.45.tgz"; - url = "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.2.45.tgz"; + url = "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.2.45.tgz"; sha512 = "BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ=="; }; } @@ -1493,7 +1499,7 @@ name = "_vue_reactivity___reactivity_3.2.45.tgz"; path = fetchurl { name = "_vue_reactivity___reactivity_3.2.45.tgz"; - url = "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.2.45.tgz"; + url = "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.2.45.tgz"; sha512 = "PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A=="; }; } @@ -1501,7 +1507,7 @@ name = "_vue_runtime_core___runtime_core_3.2.45.tgz"; path = fetchurl { name = "_vue_runtime_core___runtime_core_3.2.45.tgz"; - url = "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.45.tgz"; + url = "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.45.tgz"; sha512 = "gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A=="; }; } @@ -1509,7 +1515,7 @@ name = "_vue_runtime_dom___runtime_dom_3.2.45.tgz"; path = fetchurl { name = "_vue_runtime_dom___runtime_dom_3.2.45.tgz"; - url = "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.45.tgz"; + url = "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.45.tgz"; sha512 = "cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA=="; }; } @@ -1517,7 +1523,7 @@ name = "_vue_server_renderer___server_renderer_3.2.45.tgz"; path = fetchurl { name = "_vue_server_renderer___server_renderer_3.2.45.tgz"; - url = "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.2.45.tgz"; + url = "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.2.45.tgz"; sha512 = "ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g=="; }; } @@ -1525,7 +1531,7 @@ name = "_vue_shared___shared_3.2.45.tgz"; path = fetchurl { name = "_vue_shared___shared_3.2.45.tgz"; - url = "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.45.tgz"; + url = "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.45.tgz"; sha512 = "Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg=="; }; } @@ -1533,7 +1539,7 @@ name = "acorn_jsx___acorn_jsx_5.3.2.tgz"; path = fetchurl { name = "acorn_jsx___acorn_jsx_5.3.2.tgz"; - url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz"; + url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz"; sha512 = "rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="; }; } @@ -1541,7 +1547,7 @@ name = "acorn___acorn_7.4.1.tgz"; path = fetchurl { name = "acorn___acorn_7.4.1.tgz"; - url = "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz"; + url = "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz"; sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; }; } @@ -1549,7 +1555,7 @@ name = "acorn___acorn_8.7.1.tgz"; path = fetchurl { name = "acorn___acorn_8.7.1.tgz"; - url = "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz"; + url = "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz"; sha512 = "Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A=="; }; } @@ -1557,7 +1563,7 @@ name = "acorn___acorn_8.8.0.tgz"; path = fetchurl { name = "acorn___acorn_8.8.0.tgz"; - url = "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz"; + url = "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz"; sha512 = "QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w=="; }; } @@ -1565,7 +1571,7 @@ name = "ajv___ajv_6.12.6.tgz"; path = fetchurl { name = "ajv___ajv_6.12.6.tgz"; - url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz"; + url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz"; sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; }; } @@ -1573,7 +1579,7 @@ name = "ajv___ajv_8.11.0.tgz"; path = fetchurl { name = "ajv___ajv_8.11.0.tgz"; - url = "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz"; + url = "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz"; sha512 = "wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg=="; }; } @@ -1581,7 +1587,7 @@ name = "ansi_regex___ansi_regex_5.0.1.tgz"; path = fetchurl { name = "ansi_regex___ansi_regex_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz"; sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; }; } @@ -1589,7 +1595,7 @@ name = "ansi_styles___ansi_styles_3.2.1.tgz"; path = fetchurl { name = "ansi_styles___ansi_styles_3.2.1.tgz"; - url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; }; } @@ -1597,7 +1603,7 @@ name = "ansi_styles___ansi_styles_4.3.0.tgz"; path = fetchurl { name = "ansi_styles___ansi_styles_4.3.0.tgz"; - url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz"; + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz"; sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; }; } @@ -1605,7 +1611,7 @@ name = "anymatch___anymatch_3.1.2.tgz"; path = fetchurl { name = "anymatch___anymatch_3.1.2.tgz"; - url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz"; + url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz"; sha512 = "P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="; }; } @@ -1613,7 +1619,7 @@ name = "argparse___argparse_2.0.1.tgz"; path = fetchurl { name = "argparse___argparse_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz"; + url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz"; sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="; }; } @@ -1621,7 +1627,7 @@ name = "async___async_3.2.3.tgz"; path = fetchurl { name = "async___async_3.2.3.tgz"; - url = "https://registry.yarnpkg.com/async/-/async-3.2.3.tgz"; + url = "https://registry.yarnpkg.com/async/-/async-3.2.3.tgz"; sha512 = "spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g=="; }; } @@ -1629,7 +1635,7 @@ name = "at_least_node___at_least_node_1.0.0.tgz"; path = fetchurl { name = "at_least_node___at_least_node_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz"; sha512 = "+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg=="; }; } @@ -1637,7 +1643,7 @@ name = "babel_plugin_dynamic_import_node___babel_plugin_dynamic_import_node_2.3.3.tgz"; path = fetchurl { name = "babel_plugin_dynamic_import_node___babel_plugin_dynamic_import_node_2.3.3.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz"; sha512 = "jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ=="; }; } @@ -1645,7 +1651,7 @@ name = "babel_plugin_polyfill_corejs2___babel_plugin_polyfill_corejs2_0.3.1.tgz"; path = fetchurl { name = "babel_plugin_polyfill_corejs2___babel_plugin_polyfill_corejs2_0.3.1.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz"; sha512 = "v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w=="; }; } @@ -1653,7 +1659,7 @@ name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.5.2.tgz"; path = fetchurl { name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.5.2.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz"; sha512 = "G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ=="; }; } @@ -1661,7 +1667,7 @@ name = "babel_plugin_polyfill_regenerator___babel_plugin_polyfill_regenerator_0.3.1.tgz"; path = fetchurl { name = "babel_plugin_polyfill_regenerator___babel_plugin_polyfill_regenerator_0.3.1.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz"; sha512 = "Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A=="; }; } @@ -1669,7 +1675,7 @@ name = "balanced_match___balanced_match_1.0.2.tgz"; path = fetchurl { name = "balanced_match___balanced_match_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz"; + url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz"; sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; }; } @@ -1677,7 +1683,7 @@ name = "base64_js___base64_js_1.5.1.tgz"; path = fetchurl { name = "base64_js___base64_js_1.5.1.tgz"; - url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz"; + url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz"; sha512 = "AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="; }; } @@ -1685,7 +1691,7 @@ name = "binary_extensions___binary_extensions_2.2.0.tgz"; path = fetchurl { name = "binary_extensions___binary_extensions_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz"; + url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz"; sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; }; } @@ -1693,7 +1699,7 @@ name = "boolbase___boolbase_1.0.0.tgz"; path = fetchurl { name = "boolbase___boolbase_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz"; sha512 = "JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="; }; } @@ -1701,7 +1707,7 @@ name = "brace_expansion___brace_expansion_1.1.11.tgz"; path = fetchurl { name = "brace_expansion___brace_expansion_1.1.11.tgz"; - url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; + url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; }; } @@ -1709,7 +1715,7 @@ name = "brace_expansion___brace_expansion_2.0.1.tgz"; path = fetchurl { name = "brace_expansion___brace_expansion_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz"; + url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz"; sha512 = "XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="; }; } @@ -1717,7 +1723,7 @@ name = "braces___braces_3.0.2.tgz"; path = fetchurl { name = "braces___braces_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz"; + url = "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz"; sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="; }; } @@ -1725,7 +1731,7 @@ name = "browserslist___browserslist_4.20.2.tgz"; path = fetchurl { name = "browserslist___browserslist_4.20.2.tgz"; - url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.2.tgz"; + url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.2.tgz"; sha512 = "CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA=="; }; } @@ -1733,7 +1739,7 @@ name = "buffer_from___buffer_from_1.1.2.tgz"; path = fetchurl { name = "buffer_from___buffer_from_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz"; + url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz"; sha512 = "E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="; }; } @@ -1741,7 +1747,7 @@ name = "buffer___buffer_6.0.3.tgz"; path = fetchurl { name = "buffer___buffer_6.0.3.tgz"; - url = "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz"; + url = "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz"; sha512 = "FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA=="; }; } @@ -1749,7 +1755,7 @@ name = "builtin_modules___builtin_modules_3.2.0.tgz"; path = fetchurl { name = "builtin_modules___builtin_modules_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.2.0.tgz"; + url = "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.2.0.tgz"; sha512 = "lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA=="; }; } @@ -1757,7 +1763,7 @@ name = "busboy___busboy_1.6.0.tgz"; path = fetchurl { name = "busboy___busboy_1.6.0.tgz"; - url = "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz"; + url = "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz"; sha512 = "8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA=="; }; } @@ -1765,7 +1771,7 @@ name = "cac___cac_6.7.14.tgz"; path = fetchurl { name = "cac___cac_6.7.14.tgz"; - url = "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz"; + url = "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz"; sha512 = "b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ=="; }; } @@ -1773,7 +1779,7 @@ name = "call_bind___call_bind_1.0.2.tgz"; path = fetchurl { name = "call_bind___call_bind_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz"; + url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz"; sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="; }; } @@ -1781,7 +1787,7 @@ name = "callsites___callsites_3.1.0.tgz"; path = fetchurl { name = "callsites___callsites_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz"; + url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz"; sha512 = "P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="; }; } @@ -1789,7 +1795,7 @@ name = "caniuse_lite___caniuse_lite_1.0.30001320.tgz"; path = fetchurl { name = "caniuse_lite___caniuse_lite_1.0.30001320.tgz"; - url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001320.tgz"; + url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001320.tgz"; sha512 = "MWPzG54AGdo3nWx7zHZTefseM5Y1ccM7hlQKHRqJkPozUaw3hNbBTMmLn16GG2FUzjR13Cr3NPfhIieX5PzXDA=="; }; } @@ -1797,7 +1803,7 @@ name = "chalk___chalk_2.4.2.tgz"; path = fetchurl { name = "chalk___chalk_2.4.2.tgz"; - url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; + url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; }; } @@ -1805,7 +1811,7 @@ name = "chalk___chalk_4.1.2.tgz"; path = fetchurl { name = "chalk___chalk_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz"; + url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz"; sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; }; } @@ -1813,7 +1819,7 @@ name = "chokidar___chokidar_3.5.3.tgz"; path = fetchurl { name = "chokidar___chokidar_3.5.3.tgz"; - url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz"; + url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz"; sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="; }; } @@ -1821,7 +1827,7 @@ name = "color_convert___color_convert_1.9.3.tgz"; path = fetchurl { name = "color_convert___color_convert_1.9.3.tgz"; - url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; + url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; }; } @@ -1829,7 +1835,7 @@ name = "color_convert___color_convert_2.0.1.tgz"; path = fetchurl { name = "color_convert___color_convert_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz"; + url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz"; sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="; }; } @@ -1837,7 +1843,7 @@ name = "color_name___color_name_1.1.3.tgz"; path = fetchurl { name = "color_name___color_name_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; + url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; sha1 = "p9BVi9icQveV3UIyj3QIMcpTvCU="; }; } @@ -1845,7 +1851,7 @@ name = "color_name___color_name_1.1.4.tgz"; path = fetchurl { name = "color_name___color_name_1.1.4.tgz"; - url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz"; + url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz"; sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; }; } @@ -1853,7 +1859,7 @@ name = "colorette___colorette_2.0.19.tgz"; path = fetchurl { name = "colorette___colorette_2.0.19.tgz"; - url = "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz"; + url = "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz"; sha512 = "3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ=="; }; } @@ -1861,7 +1867,7 @@ name = "commander___commander_2.20.3.tgz"; path = fetchurl { name = "commander___commander_2.20.3.tgz"; - url = "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz"; + url = "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz"; sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; }; } @@ -1869,7 +1875,7 @@ name = "common_tags___common_tags_1.8.2.tgz"; path = fetchurl { name = "common_tags___common_tags_1.8.2.tgz"; - url = "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz"; + url = "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz"; sha512 = "gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA=="; }; } @@ -1877,7 +1883,7 @@ name = "concat_map___concat_map_0.0.1.tgz"; path = fetchurl { name = "concat_map___concat_map_0.0.1.tgz"; - url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; + url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; sha1 = "2Klr13/Wjfd5OnMDajug1UBdR3s="; }; } @@ -1885,7 +1891,7 @@ name = "consola___consola_2.15.3.tgz"; path = fetchurl { name = "consola___consola_2.15.3.tgz"; - url = "https://registry.yarnpkg.com/consola/-/consola-2.15.3.tgz"; + url = "https://registry.yarnpkg.com/consola/-/consola-2.15.3.tgz"; sha512 = "9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw=="; }; } @@ -1893,7 +1899,7 @@ name = "convert_source_map___convert_source_map_1.8.0.tgz"; path = fetchurl { name = "convert_source_map___convert_source_map_1.8.0.tgz"; - url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz"; + url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz"; sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="; }; } @@ -1901,7 +1907,7 @@ name = "core_js_compat___core_js_compat_3.21.1.tgz"; path = fetchurl { name = "core_js_compat___core_js_compat_3.21.1.tgz"; - url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.21.1.tgz"; + url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.21.1.tgz"; sha512 = "gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g=="; }; } @@ -1909,7 +1915,7 @@ name = "core_js___core_js_3.26.1.tgz"; path = fetchurl { name = "core_js___core_js_3.26.1.tgz"; - url = "https://registry.yarnpkg.com/core-js/-/core-js-3.26.1.tgz"; + url = "https://registry.yarnpkg.com/core-js/-/core-js-3.26.1.tgz"; sha512 = "21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA=="; }; } @@ -1917,7 +1923,7 @@ name = "cross_spawn___cross_spawn_7.0.3.tgz"; path = fetchurl { name = "cross_spawn___cross_spawn_7.0.3.tgz"; - url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz"; + url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz"; sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; }; } @@ -1925,7 +1931,7 @@ name = "crypto_random_string___crypto_random_string_2.0.0.tgz"; path = fetchurl { name = "crypto_random_string___crypto_random_string_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz"; sha512 = "v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="; }; } @@ -1933,7 +1939,7 @@ name = "css_tree___css_tree_2.2.1.tgz"; path = fetchurl { name = "css_tree___css_tree_2.2.1.tgz"; - url = "https://registry.yarnpkg.com/css-tree/-/css-tree-2.2.1.tgz"; + url = "https://registry.yarnpkg.com/css-tree/-/css-tree-2.2.1.tgz"; sha512 = "OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA=="; }; } @@ -1941,7 +1947,7 @@ name = "cssesc___cssesc_3.0.0.tgz"; path = fetchurl { name = "cssesc___cssesc_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz"; + url = "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz"; sha512 = "/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="; }; } @@ -1949,7 +1955,7 @@ name = "csstype___csstype_2.6.20.tgz"; path = fetchurl { name = "csstype___csstype_2.6.20.tgz"; - url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.20.tgz"; + url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.20.tgz"; sha512 = "/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA=="; }; } @@ -1957,7 +1963,7 @@ name = "debug___debug_4.3.4.tgz"; path = fetchurl { name = "debug___debug_4.3.4.tgz"; - url = "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz"; + url = "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz"; sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; }; } @@ -1965,7 +1971,7 @@ name = "deep_is___deep_is_0.1.4.tgz"; path = fetchurl { name = "deep_is___deep_is_0.1.4.tgz"; - url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz"; + url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz"; sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; }; } @@ -1973,7 +1979,7 @@ name = "deepmerge___deepmerge_4.2.2.tgz"; path = fetchurl { name = "deepmerge___deepmerge_4.2.2.tgz"; - url = "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz"; + url = "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz"; sha512 = "FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="; }; } @@ -1981,7 +1987,7 @@ name = "define_properties___define_properties_1.1.3.tgz"; path = fetchurl { name = "define_properties___define_properties_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz"; + url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz"; sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="; }; } @@ -1989,7 +1995,7 @@ name = "defu___defu_6.1.0.tgz"; path = fetchurl { name = "defu___defu_6.1.0.tgz"; - url = "https://registry.yarnpkg.com/defu/-/defu-6.1.0.tgz"; + url = "https://registry.yarnpkg.com/defu/-/defu-6.1.0.tgz"; sha512 = "pOFYRTIhoKujrmbTRhcW5lYQLBXw/dlTwfI8IguF1QCDJOcJzNH1w+YFjxqy6BAuJrClTy6MUE8q+oKJ2FLsIw=="; }; } @@ -1997,7 +2003,7 @@ name = "destr___destr_1.2.1.tgz"; path = fetchurl { name = "destr___destr_1.2.1.tgz"; - url = "https://registry.yarnpkg.com/destr/-/destr-1.2.1.tgz"; + url = "https://registry.yarnpkg.com/destr/-/destr-1.2.1.tgz"; sha512 = "ud8w0qMLlci6iFG7CNgeRr8OcbUWMsbfjtWft1eJ5Luqrz/M8Ebqk/KCzne8rKUlIQWWfLv0wD6QHrqOf4GshA=="; }; } @@ -2005,7 +2011,7 @@ name = "doctrine___doctrine_3.0.0.tgz"; path = fetchurl { name = "doctrine___doctrine_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz"; + url = "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz"; sha512 = "yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="; }; } @@ -2013,7 +2019,7 @@ name = "dom_walk___dom_walk_0.1.2.tgz"; path = fetchurl { name = "dom_walk___dom_walk_0.1.2.tgz"; - url = "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz"; + url = "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz"; sha512 = "6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w=="; }; } @@ -2021,7 +2027,7 @@ name = "dompurify___dompurify_2.4.1.tgz"; path = fetchurl { name = "dompurify___dompurify_2.4.1.tgz"; - url = "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.1.tgz"; + url = "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.1.tgz"; sha512 = "ewwFzHzrrneRjxzmK6oVz/rZn9VWspGFRDb4/rRtIsM1n36t9AKma/ye8syCpcw+XJ25kOK/hOG7t1j2I2yBqA=="; }; } @@ -2029,7 +2035,7 @@ name = "duplexer___duplexer_0.1.2.tgz"; path = fetchurl { name = "duplexer___duplexer_0.1.2.tgz"; - url = "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz"; + url = "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz"; sha512 = "jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="; }; } @@ -2037,7 +2043,7 @@ name = "ejs___ejs_3.1.7.tgz"; path = fetchurl { name = "ejs___ejs_3.1.7.tgz"; - url = "https://registry.yarnpkg.com/ejs/-/ejs-3.1.7.tgz"; + url = "https://registry.yarnpkg.com/ejs/-/ejs-3.1.7.tgz"; sha512 = "BIar7R6abbUxDA3bfXrO4DSgwo8I+fB5/1zgujl3HLLjwd6+9iOnrT+t3grn2qbk9vOgBubXOFwX2m9axoFaGw=="; }; } @@ -2045,7 +2051,7 @@ name = "electron_to_chromium___electron_to_chromium_1.4.96.tgz"; path = fetchurl { name = "electron_to_chromium___electron_to_chromium_1.4.96.tgz"; - url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.96.tgz"; + url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.96.tgz"; sha512 = "DPNjvNGPabv6FcyjzLAN4C0psN/GgD9rSGvMTuv81SeXG/EX3mCz0wiw9N1tUEnfQXYCJi3H8M0oFPRziZh7rw=="; }; } @@ -2053,7 +2059,7 @@ name = "eme_encryption_scheme_polyfill___eme_encryption_scheme_polyfill_2.1.1.tgz"; path = fetchurl { name = "eme_encryption_scheme_polyfill___eme_encryption_scheme_polyfill_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/eme-encryption-scheme-polyfill/-/eme-encryption-scheme-polyfill-2.1.1.tgz"; + url = "https://registry.yarnpkg.com/eme-encryption-scheme-polyfill/-/eme-encryption-scheme-polyfill-2.1.1.tgz"; sha512 = "njD17wcUrbqCj0ArpLu5zWXtaiupHb/2fIUQGdInf83GlI+Q6mmqaPGLdrke4savKAu15J/z1Tg/ivDgl14g0g=="; }; } @@ -2061,7 +2067,7 @@ name = "es_abstract___es_abstract_1.19.1.tgz"; path = fetchurl { name = "es_abstract___es_abstract_1.19.1.tgz"; - url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz"; + url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz"; sha512 = "2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w=="; }; } @@ -2069,7 +2075,7 @@ name = "es_to_primitive___es_to_primitive_1.2.1.tgz"; path = fetchurl { name = "es_to_primitive___es_to_primitive_1.2.1.tgz"; - url = "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; + url = "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="; }; } @@ -2077,7 +2083,7 @@ name = "esbuild_android_64___esbuild_android_64_0.15.12.tgz"; path = fetchurl { name = "esbuild_android_64___esbuild_android_64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.15.12.tgz"; sha512 = "MJKXwvPY9g0rGps0+U65HlTsM1wUs9lbjt5CU19RESqycGFDRijMDQsh68MtbzkqWSRdEtiKS1mtPzKneaAI0Q=="; }; } @@ -2085,7 +2091,7 @@ name = "esbuild_android_arm64___esbuild_android_arm64_0.15.12.tgz"; path = fetchurl { name = "esbuild_android_arm64___esbuild_android_arm64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.15.12.tgz"; sha512 = "Hc9SEcZbIMhhLcvhr1DH+lrrec9SFTiRzfJ7EGSBZiiw994gfkVV6vG0sLWqQQ6DD7V4+OggB+Hn0IRUdDUqvA=="; }; } @@ -2093,7 +2099,7 @@ name = "esbuild_darwin_64___esbuild_darwin_64_0.15.12.tgz"; path = fetchurl { name = "esbuild_darwin_64___esbuild_darwin_64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.12.tgz"; sha512 = "qkmqrTVYPFiePt5qFjP8w/S+GIUMbt6k8qmiPraECUWfPptaPJUGkCKrWEfYFRWB7bY23FV95rhvPyh/KARP8Q=="; }; } @@ -2101,7 +2107,7 @@ name = "esbuild_darwin_arm64___esbuild_darwin_arm64_0.15.12.tgz"; path = fetchurl { name = "esbuild_darwin_arm64___esbuild_darwin_arm64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.12.tgz"; sha512 = "z4zPX02tQ41kcXMyN3c/GfZpIjKoI/BzHrdKUwhC/Ki5BAhWv59A9M8H+iqaRbwpzYrYidTybBwiZAIWCLJAkw=="; }; } @@ -2109,7 +2115,7 @@ name = "esbuild_freebsd_64___esbuild_freebsd_64_0.15.12.tgz"; path = fetchurl { name = "esbuild_freebsd_64___esbuild_freebsd_64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.12.tgz"; sha512 = "XFL7gKMCKXLDiAiBjhLG0XECliXaRLTZh6hsyzqUqPUf/PY4C6EJDTKIeqqPKXaVJ8+fzNek88285krSz1QECw=="; }; } @@ -2117,7 +2123,7 @@ name = "esbuild_freebsd_arm64___esbuild_freebsd_arm64_0.15.12.tgz"; path = fetchurl { name = "esbuild_freebsd_arm64___esbuild_freebsd_arm64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.12.tgz"; sha512 = "jwEIu5UCUk6TjiG1X+KQnCGISI+ILnXzIzt9yDVrhjug2fkYzlLbl0K43q96Q3KB66v6N1UFF0r5Ks4Xo7i72g=="; }; } @@ -2125,7 +2131,7 @@ name = "esbuild_linux_32___esbuild_linux_32_0.15.12.tgz"; path = fetchurl { name = "esbuild_linux_32___esbuild_linux_32_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.15.12.tgz"; sha512 = "uSQuSEyF1kVzGzuIr4XM+v7TPKxHjBnLcwv2yPyCz8riV8VUCnO/C4BF3w5dHiVpCd5Z1cebBtZJNlC4anWpwA=="; }; } @@ -2133,7 +2139,7 @@ name = "esbuild_linux_64___esbuild_linux_64_0.15.12.tgz"; path = fetchurl { name = "esbuild_linux_64___esbuild_linux_64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.15.12.tgz"; sha512 = "QcgCKb7zfJxqT9o5z9ZUeGH1k8N6iX1Y7VNsEi5F9+HzN1OIx7ESxtQXDN9jbeUSPiRH1n9cw6gFT3H4qbdvcA=="; }; } @@ -2141,7 +2147,7 @@ name = "esbuild_linux_arm64___esbuild_linux_arm64_0.15.12.tgz"; path = fetchurl { name = "esbuild_linux_arm64___esbuild_linux_arm64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.12.tgz"; sha512 = "HtNq5xm8fUpZKwWKS2/YGwSfTF+339L4aIA8yphNKYJckd5hVdhfdl6GM2P3HwLSCORS++++7++//ApEwXEuAQ=="; }; } @@ -2149,7 +2155,7 @@ name = "esbuild_linux_arm___esbuild_linux_arm_0.15.12.tgz"; path = fetchurl { name = "esbuild_linux_arm___esbuild_linux_arm_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.15.12.tgz"; sha512 = "Wf7T0aNylGcLu7hBnzMvsTfEXdEdJY/hY3u36Vla21aY66xR0MS5I1Hw8nVquXjTN0A6fk/vnr32tkC/C2lb0A=="; }; } @@ -2157,7 +2163,7 @@ name = "esbuild_linux_mips64le___esbuild_linux_mips64le_0.15.12.tgz"; path = fetchurl { name = "esbuild_linux_mips64le___esbuild_linux_mips64le_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.12.tgz"; sha512 = "Qol3+AvivngUZkTVFgLpb0H6DT+N5/zM3V1YgTkryPYFeUvuT5JFNDR3ZiS6LxhyF8EE+fiNtzwlPqMDqVcc6A=="; }; } @@ -2165,7 +2171,7 @@ name = "esbuild_linux_ppc64le___esbuild_linux_ppc64le_0.15.12.tgz"; path = fetchurl { name = "esbuild_linux_ppc64le___esbuild_linux_ppc64le_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.12.tgz"; sha512 = "4D8qUCo+CFKaR0cGXtGyVsOI7w7k93Qxb3KFXWr75An0DHamYzq8lt7TNZKoOq/Gh8c40/aKaxvcZnTgQ0TJNg=="; }; } @@ -2173,7 +2179,7 @@ name = "esbuild_linux_riscv64___esbuild_linux_riscv64_0.15.12.tgz"; path = fetchurl { name = "esbuild_linux_riscv64___esbuild_linux_riscv64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.12.tgz"; sha512 = "G9w6NcuuCI6TUUxe6ka0enjZHDnSVK8bO+1qDhMOCtl7Tr78CcZilJj8SGLN00zO5iIlwNRZKHjdMpfFgNn1VA=="; }; } @@ -2181,7 +2187,7 @@ name = "esbuild_linux_s390x___esbuild_linux_s390x_0.15.12.tgz"; path = fetchurl { name = "esbuild_linux_s390x___esbuild_linux_s390x_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.12.tgz"; sha512 = "Lt6BDnuXbXeqSlVuuUM5z18GkJAZf3ERskGZbAWjrQoi9xbEIsj/hEzVnSAFLtkfLuy2DE4RwTcX02tZFunXww=="; }; } @@ -2189,7 +2195,7 @@ name = "esbuild_netbsd_64___esbuild_netbsd_64_0.15.12.tgz"; path = fetchurl { name = "esbuild_netbsd_64___esbuild_netbsd_64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.12.tgz"; sha512 = "jlUxCiHO1dsqoURZDQts+HK100o0hXfi4t54MNRMCAqKGAV33JCVvMplLAa2FwviSojT/5ZG5HUfG3gstwAG8w=="; }; } @@ -2197,7 +2203,7 @@ name = "esbuild_openbsd_64___esbuild_openbsd_64_0.15.12.tgz"; path = fetchurl { name = "esbuild_openbsd_64___esbuild_openbsd_64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.12.tgz"; sha512 = "1o1uAfRTMIWNOmpf8v7iudND0L6zRBYSH45sofCZywrcf7NcZA+c7aFsS1YryU+yN7aRppTqdUK1PgbZVaB1Dw=="; }; } @@ -2205,7 +2211,7 @@ name = "esbuild_sunos_64___esbuild_sunos_64_0.15.12.tgz"; path = fetchurl { name = "esbuild_sunos_64___esbuild_sunos_64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.15.12.tgz"; sha512 = "nkl251DpoWoBO9Eq9aFdoIt2yYmp4I3kvQjba3jFKlMXuqQ9A4q+JaqdkCouG3DHgAGnzshzaGu6xofGcXyPXg=="; }; } @@ -2213,7 +2219,7 @@ name = "esbuild_windows_32___esbuild_windows_32_0.15.12.tgz"; path = fetchurl { name = "esbuild_windows_32___esbuild_windows_32_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.15.12.tgz"; sha512 = "WlGeBZHgPC00O08luIp5B2SP4cNCp/PcS+3Pcg31kdcJPopHxLkdCXtadLU9J82LCfw4TVls21A6lilQ9mzHrw=="; }; } @@ -2221,7 +2227,7 @@ name = "esbuild_windows_64___esbuild_windows_64_0.15.12.tgz"; path = fetchurl { name = "esbuild_windows_64___esbuild_windows_64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.15.12.tgz"; sha512 = "VActO3WnWZSN//xjSfbiGOSyC+wkZtI8I4KlgrTo5oHJM6z3MZZBCuFaZHd8hzf/W9KPhF0lY8OqlmWC9HO5AA=="; }; } @@ -2229,7 +2235,7 @@ name = "esbuild_windows_arm64___esbuild_windows_arm64_0.15.12.tgz"; path = fetchurl { name = "esbuild_windows_arm64___esbuild_windows_arm64_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.12.tgz"; sha512 = "Of3MIacva1OK/m4zCNIvBfz8VVROBmQT+gRX6pFTLPngFYcj6TFH/12VveAqq1k9VB2l28EoVMNMUCcmsfwyuA=="; }; } @@ -2237,7 +2243,7 @@ name = "esbuild___esbuild_0.15.12.tgz"; path = fetchurl { name = "esbuild___esbuild_0.15.12.tgz"; - url = "https://registry.yarnpkg.com/esbuild/-/esbuild-0.15.12.tgz"; + url = "https://registry.yarnpkg.com/esbuild/-/esbuild-0.15.12.tgz"; sha512 = "PcT+/wyDqJQsRVhaE9uX/Oq4XLrFh0ce/bs2TJh4CSaw9xuvI+xFrH2nAYOADbhQjUgAhNWC5LKoUsakm4dxng=="; }; } @@ -2245,7 +2251,7 @@ name = "escalade___escalade_3.1.1.tgz"; path = fetchurl { name = "escalade___escalade_3.1.1.tgz"; - url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz"; + url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz"; sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; }; } @@ -2253,7 +2259,7 @@ name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; path = fetchurl { name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; + url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; sha1 = "G2HAViGQqN/2rjuyzwIAyhMLhtQ="; }; } @@ -2261,7 +2267,7 @@ name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz"; path = fetchurl { name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; + url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; }; } @@ -2269,7 +2275,7 @@ name = "eslint_config_prettier___eslint_config_prettier_8.5.0.tgz"; path = fetchurl { name = "eslint_config_prettier___eslint_config_prettier_8.5.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz"; sha512 = "obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q=="; }; } @@ -2277,7 +2283,7 @@ name = "eslint_plugin_prettier___eslint_plugin_prettier_4.2.1.tgz"; path = fetchurl { name = "eslint_plugin_prettier___eslint_plugin_prettier_4.2.1.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz"; sha512 = "f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ=="; }; } @@ -2285,7 +2291,7 @@ name = "eslint_plugin_vue___eslint_plugin_vue_9.8.0.tgz"; path = fetchurl { name = "eslint_plugin_vue___eslint_plugin_vue_9.8.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.8.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.8.0.tgz"; sha512 = "E/AXwcTzunyzM83C2QqDHxepMzvI2y6x+mmeYHbVDQlKFqmKYvRrhaVixEeeG27uI44p9oKDFiyCRw4XxgtfHA=="; }; } @@ -2293,7 +2299,7 @@ name = "eslint_scope___eslint_scope_7.1.1.tgz"; path = fetchurl { name = "eslint_scope___eslint_scope_7.1.1.tgz"; - url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz"; + url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz"; sha512 = "QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw=="; }; } @@ -2301,7 +2307,7 @@ name = "eslint_utils___eslint_utils_2.1.0.tgz"; path = fetchurl { name = "eslint_utils___eslint_utils_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz"; sha512 = "w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg=="; }; } @@ -2309,7 +2315,7 @@ name = "eslint_utils___eslint_utils_3.0.0.tgz"; path = fetchurl { name = "eslint_utils___eslint_utils_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz"; sha512 = "uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA=="; }; } @@ -2317,7 +2323,7 @@ name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz"; path = fetchurl { name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"; sha512 = "6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="; }; } @@ -2325,7 +2331,7 @@ name = "eslint_visitor_keys___eslint_visitor_keys_2.1.0.tgz"; path = fetchurl { name = "eslint_visitor_keys___eslint_visitor_keys_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"; sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="; }; } @@ -2333,7 +2339,7 @@ name = "eslint_visitor_keys___eslint_visitor_keys_3.3.0.tgz"; path = fetchurl { name = "eslint_visitor_keys___eslint_visitor_keys_3.3.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz"; sha512 = "mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA=="; }; } @@ -2341,7 +2347,7 @@ name = "eslint___eslint_8.29.0.tgz"; path = fetchurl { name = "eslint___eslint_8.29.0.tgz"; - url = "https://registry.yarnpkg.com/eslint/-/eslint-8.29.0.tgz"; + url = "https://registry.yarnpkg.com/eslint/-/eslint-8.29.0.tgz"; sha512 = "isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg=="; }; } @@ -2349,7 +2355,7 @@ name = "espree___espree_6.2.1.tgz"; path = fetchurl { name = "espree___espree_6.2.1.tgz"; - url = "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz"; + url = "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz"; sha512 = "ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw=="; }; } @@ -2357,7 +2363,7 @@ name = "espree___espree_9.3.2.tgz"; path = fetchurl { name = "espree___espree_9.3.2.tgz"; - url = "https://registry.yarnpkg.com/espree/-/espree-9.3.2.tgz"; + url = "https://registry.yarnpkg.com/espree/-/espree-9.3.2.tgz"; sha512 = "D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA=="; }; } @@ -2365,7 +2371,7 @@ name = "espree___espree_9.4.0.tgz"; path = fetchurl { name = "espree___espree_9.4.0.tgz"; - url = "https://registry.yarnpkg.com/espree/-/espree-9.4.0.tgz"; + url = "https://registry.yarnpkg.com/espree/-/espree-9.4.0.tgz"; sha512 = "DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw=="; }; } @@ -2373,7 +2379,7 @@ name = "esquery___esquery_1.4.0.tgz"; path = fetchurl { name = "esquery___esquery_1.4.0.tgz"; - url = "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz"; + url = "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz"; sha512 = "cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w=="; }; } @@ -2381,7 +2387,7 @@ name = "esrecurse___esrecurse_4.3.0.tgz"; path = fetchurl { name = "esrecurse___esrecurse_4.3.0.tgz"; - url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz"; + url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz"; sha512 = "KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="; }; } @@ -2389,7 +2395,7 @@ name = "estraverse___estraverse_5.3.0.tgz"; path = fetchurl { name = "estraverse___estraverse_5.3.0.tgz"; - url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz"; + url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz"; sha512 = "MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="; }; } @@ -2397,7 +2403,7 @@ name = "estree_walker___estree_walker_1.0.1.tgz"; path = fetchurl { name = "estree_walker___estree_walker_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz"; sha512 = "1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg=="; }; } @@ -2405,7 +2411,7 @@ name = "estree_walker___estree_walker_2.0.2.tgz"; path = fetchurl { name = "estree_walker___estree_walker_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz"; + url = "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz"; sha512 = "Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="; }; } @@ -2413,7 +2419,7 @@ name = "esutils___esutils_2.0.3.tgz"; path = fetchurl { name = "esutils___esutils_2.0.3.tgz"; - url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz"; + url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz"; sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="; }; } @@ -2421,7 +2427,7 @@ name = "execa___execa_5.1.1.tgz"; path = fetchurl { name = "execa___execa_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz"; + url = "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz"; sha512 = "8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="; }; } @@ -2429,7 +2435,7 @@ name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz"; path = fetchurl { name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz"; - url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"; + url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"; sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; }; } @@ -2437,7 +2443,7 @@ name = "fast_diff___fast_diff_1.2.0.tgz"; path = fetchurl { name = "fast_diff___fast_diff_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz"; + url = "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz"; sha512 = "xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="; }; } @@ -2445,7 +2451,7 @@ name = "fast_glob___fast_glob_3.2.12.tgz"; path = fetchurl { name = "fast_glob___fast_glob_3.2.12.tgz"; - url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz"; + url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz"; sha512 = "DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w=="; }; } @@ -2453,7 +2459,7 @@ name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; path = fetchurl { name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; + url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; }; } @@ -2461,7 +2467,7 @@ name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; path = fetchurl { name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; - url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; + url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; sha1 = "PYpcZog6FqMMqGQ+hR8Zuqd5eRc="; }; } @@ -2469,7 +2475,7 @@ name = "fastq___fastq_1.13.0.tgz"; path = fetchurl { name = "fastq___fastq_1.13.0.tgz"; - url = "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz"; + url = "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz"; sha512 = "YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw=="; }; } @@ -2477,7 +2483,7 @@ name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; path = fetchurl { name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; + url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; sha512 = "7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg=="; }; } @@ -2485,7 +2491,7 @@ name = "filelist___filelist_1.0.3.tgz"; path = fetchurl { name = "filelist___filelist_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/filelist/-/filelist-1.0.3.tgz"; + url = "https://registry.yarnpkg.com/filelist/-/filelist-1.0.3.tgz"; sha512 = "LwjCsruLWQULGYKy7TX0OPtrL9kLpojOFKc5VCTxdFTV7w5zbsgqVKfnkKG7Qgjtq50gKfO56hJv88OfcGb70Q=="; }; } @@ -2493,7 +2499,7 @@ name = "fill_range___fill_range_7.0.1.tgz"; path = fetchurl { name = "fill_range___fill_range_7.0.1.tgz"; - url = "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz"; + url = "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz"; sha512 = "qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="; }; } @@ -2501,7 +2507,7 @@ name = "find_up___find_up_5.0.0.tgz"; path = fetchurl { name = "find_up___find_up_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz"; + url = "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz"; sha512 = "78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="; }; } @@ -2509,7 +2515,7 @@ name = "flat_cache___flat_cache_3.0.4.tgz"; path = fetchurl { name = "flat_cache___flat_cache_3.0.4.tgz"; - url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz"; + url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz"; sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; }; } @@ -2517,7 +2523,7 @@ name = "flatted___flatted_3.2.5.tgz"; path = fetchurl { name = "flatted___flatted_3.2.5.tgz"; - url = "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz"; + url = "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz"; sha512 = "WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg=="; }; } @@ -2525,7 +2531,7 @@ name = "fs_extra___fs_extra_9.1.0.tgz"; path = fetchurl { name = "fs_extra___fs_extra_9.1.0.tgz"; - url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz"; + url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz"; sha512 = "hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ=="; }; } @@ -2533,7 +2539,7 @@ name = "fs.realpath___fs.realpath_1.0.0.tgz"; path = fetchurl { name = "fs.realpath___fs.realpath_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; sha1 = "FQStJSMVjKpA20onh8sBQRmU6k8="; }; } @@ -2541,7 +2547,7 @@ name = "fsevents___fsevents_2.3.2.tgz"; path = fetchurl { name = "fsevents___fsevents_2.3.2.tgz"; - url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz"; + url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz"; sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; }; } @@ -2549,7 +2555,7 @@ name = "function_bind___function_bind_1.1.1.tgz"; path = fetchurl { name = "function_bind___function_bind_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz"; + url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz"; sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; }; } @@ -2557,7 +2563,7 @@ name = "gensync___gensync_1.0.0_beta.2.tgz"; path = fetchurl { name = "gensync___gensync_1.0.0_beta.2.tgz"; - url = "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz"; + url = "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz"; sha512 = "3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="; }; } @@ -2565,7 +2571,7 @@ name = "get_intrinsic___get_intrinsic_1.1.1.tgz"; path = fetchurl { name = "get_intrinsic___get_intrinsic_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz"; + url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz"; sha512 = "kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q=="; }; } @@ -2573,7 +2579,7 @@ name = "get_own_enumerable_property_symbols___get_own_enumerable_property_symbols_3.0.2.tgz"; path = fetchurl { name = "get_own_enumerable_property_symbols___get_own_enumerable_property_symbols_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz"; + url = "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz"; sha512 = "I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g=="; }; } @@ -2581,7 +2587,7 @@ name = "get_stream___get_stream_6.0.1.tgz"; path = fetchurl { name = "get_stream___get_stream_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz"; + url = "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz"; sha512 = "ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="; }; } @@ -2589,7 +2595,7 @@ name = "get_symbol_description___get_symbol_description_1.0.0.tgz"; path = fetchurl { name = "get_symbol_description___get_symbol_description_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz"; sha512 = "2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw=="; }; } @@ -2597,7 +2603,7 @@ name = "glob_parent___glob_parent_5.1.2.tgz"; path = fetchurl { name = "glob_parent___glob_parent_5.1.2.tgz"; - url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz"; + url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz"; sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; }; } @@ -2605,7 +2611,7 @@ name = "glob_parent___glob_parent_6.0.2.tgz"; path = fetchurl { name = "glob_parent___glob_parent_6.0.2.tgz"; - url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz"; + url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz"; sha512 = "XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="; }; } @@ -2613,7 +2619,7 @@ name = "glob___glob_7.2.0.tgz"; path = fetchurl { name = "glob___glob_7.2.0.tgz"; - url = "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz"; + url = "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz"; sha512 = "lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q=="; }; } @@ -2621,7 +2627,7 @@ name = "global___global_4.4.0.tgz"; path = fetchurl { name = "global___global_4.4.0.tgz"; - url = "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz"; + url = "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz"; sha512 = "wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w=="; }; } @@ -2629,7 +2635,7 @@ name = "globals___globals_11.12.0.tgz"; path = fetchurl { name = "globals___globals_11.12.0.tgz"; - url = "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz"; + url = "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz"; sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; }; } @@ -2637,7 +2643,7 @@ name = "globals___globals_13.17.0.tgz"; path = fetchurl { name = "globals___globals_13.17.0.tgz"; - url = "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz"; + url = "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz"; sha512 = "1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw=="; }; } @@ -2645,7 +2651,7 @@ name = "graceful_fs___graceful_fs_4.2.9.tgz"; path = fetchurl { name = "graceful_fs___graceful_fs_4.2.9.tgz"; - url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.9.tgz"; + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.9.tgz"; sha512 = "NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ=="; }; } @@ -2653,7 +2659,7 @@ name = "grapheme_splitter___grapheme_splitter_1.0.4.tgz"; path = fetchurl { name = "grapheme_splitter___grapheme_splitter_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz"; + url = "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz"; sha512 = "bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="; }; } @@ -2661,7 +2667,7 @@ name = "gzip_size___gzip_size_6.0.0.tgz"; path = fetchurl { name = "gzip_size___gzip_size_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz"; + url = "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz"; sha512 = "ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q=="; }; } @@ -2669,7 +2675,7 @@ name = "has_bigints___has_bigints_1.0.1.tgz"; path = fetchurl { name = "has_bigints___has_bigints_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz"; sha512 = "LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA=="; }; } @@ -2677,7 +2683,7 @@ name = "has_flag___has_flag_3.0.0.tgz"; path = fetchurl { name = "has_flag___has_flag_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; sha1 = "tdRU3CGZriJWmfNGfloH87lVuv0="; }; } @@ -2685,7 +2691,7 @@ name = "has_flag___has_flag_4.0.0.tgz"; path = fetchurl { name = "has_flag___has_flag_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz"; sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; }; } @@ -2693,7 +2699,7 @@ name = "has_symbols___has_symbols_1.0.3.tgz"; path = fetchurl { name = "has_symbols___has_symbols_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz"; + url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz"; sha512 = "l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="; }; } @@ -2701,7 +2707,7 @@ name = "has_tostringtag___has_tostringtag_1.0.0.tgz"; path = fetchurl { name = "has_tostringtag___has_tostringtag_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz"; sha512 = "kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="; }; } @@ -2709,7 +2715,7 @@ name = "has___has_1.0.3.tgz"; path = fetchurl { name = "has___has_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz"; + url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz"; sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; }; } @@ -2717,7 +2723,7 @@ name = "hotkeys_js___hotkeys_js_3.10.1.tgz"; path = fetchurl { name = "hotkeys_js___hotkeys_js_3.10.1.tgz"; - url = "https://registry.yarnpkg.com/hotkeys-js/-/hotkeys-js-3.10.1.tgz"; + url = "https://registry.yarnpkg.com/hotkeys-js/-/hotkeys-js-3.10.1.tgz"; sha512 = "mshqjgTqx8ee0qryHvRgZaZDxTwxam/2yTQmQlqAWS3+twnq1jsY9Yng9zB7lWq6WRrjTbTOc7knNwccXQiAjQ=="; }; } @@ -2725,7 +2731,7 @@ name = "human_signals___human_signals_2.1.0.tgz"; path = fetchurl { name = "human_signals___human_signals_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz"; + url = "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz"; sha512 = "B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="; }; } @@ -2733,7 +2739,7 @@ name = "idb___idb_7.1.0.tgz"; path = fetchurl { name = "idb___idb_7.1.0.tgz"; - url = "https://registry.yarnpkg.com/idb/-/idb-7.1.0.tgz"; + url = "https://registry.yarnpkg.com/idb/-/idb-7.1.0.tgz"; sha512 = "Wsk07aAxDsntgYJY4h0knZJuTxM73eQ4reRAO+Z1liOh8eMCJ/MoDS8fCui1vGT9mnjtl1sOu3I2i/W1swPYZg=="; }; } @@ -2741,7 +2747,7 @@ name = "ieee754___ieee754_1.2.1.tgz"; path = fetchurl { name = "ieee754___ieee754_1.2.1.tgz"; - url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz"; + url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz"; sha512 = "dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="; }; } @@ -2749,7 +2755,7 @@ name = "ignore___ignore_5.2.0.tgz"; path = fetchurl { name = "ignore___ignore_5.2.0.tgz"; - url = "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz"; + url = "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz"; sha512 = "CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="; }; } @@ -2757,7 +2763,7 @@ name = "import_fresh___import_fresh_3.3.0.tgz"; path = fetchurl { name = "import_fresh___import_fresh_3.3.0.tgz"; - url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz"; + url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz"; sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; }; } @@ -2765,7 +2771,7 @@ name = "imurmurhash___imurmurhash_0.1.4.tgz"; path = fetchurl { name = "imurmurhash___imurmurhash_0.1.4.tgz"; - url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz"; + url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz"; sha1 = "khi5srkoojixPcT7a21XbyMUU+o="; }; } @@ -2773,7 +2779,7 @@ name = "inflight___inflight_1.0.6.tgz"; path = fetchurl { name = "inflight___inflight_1.0.6.tgz"; - url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; + url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; sha1 = "Sb1jMdfQLQwJvJEKEHW6gWW1bfk="; }; } @@ -2781,7 +2787,7 @@ name = "inherits___inherits_2.0.4.tgz"; path = fetchurl { name = "inherits___inherits_2.0.4.tgz"; - url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; }; } @@ -2789,7 +2795,7 @@ name = "internal_slot___internal_slot_1.0.3.tgz"; path = fetchurl { name = "internal_slot___internal_slot_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz"; + url = "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz"; sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA=="; }; } @@ -2797,7 +2803,7 @@ name = "is_bigint___is_bigint_1.0.4.tgz"; path = fetchurl { name = "is_bigint___is_bigint_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz"; + url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz"; sha512 = "zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg=="; }; } @@ -2805,7 +2811,7 @@ name = "is_binary_path___is_binary_path_2.1.0.tgz"; path = fetchurl { name = "is_binary_path___is_binary_path_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz"; sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; }; } @@ -2813,7 +2819,7 @@ name = "is_boolean_object___is_boolean_object_1.1.2.tgz"; path = fetchurl { name = "is_boolean_object___is_boolean_object_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; + url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; sha512 = "gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA=="; }; } @@ -2821,7 +2827,7 @@ name = "is_callable___is_callable_1.2.4.tgz"; path = fetchurl { name = "is_callable___is_callable_1.2.4.tgz"; - url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz"; + url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz"; sha512 = "nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="; }; } @@ -2829,7 +2835,7 @@ name = "is_core_module___is_core_module_2.8.1.tgz"; path = fetchurl { name = "is_core_module___is_core_module_2.8.1.tgz"; - url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz"; + url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz"; sha512 = "SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA=="; }; } @@ -2837,7 +2843,7 @@ name = "is_core_module___is_core_module_2.11.0.tgz"; path = fetchurl { name = "is_core_module___is_core_module_2.11.0.tgz"; - url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz"; + url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz"; sha512 = "RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw=="; }; } @@ -2845,7 +2851,7 @@ name = "is_date_object___is_date_object_1.0.5.tgz"; path = fetchurl { name = "is_date_object___is_date_object_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz"; + url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz"; sha512 = "9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ=="; }; } @@ -2853,7 +2859,7 @@ name = "is_extglob___is_extglob_2.1.1.tgz"; path = fetchurl { name = "is_extglob___is_extglob_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz"; + url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz"; sha1 = "qIwCU1eR8C7TfHahueqXc8gz+MI="; }; } @@ -2861,7 +2867,7 @@ name = "is_glob___is_glob_4.0.3.tgz"; path = fetchurl { name = "is_glob___is_glob_4.0.3.tgz"; - url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz"; + url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz"; sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="; }; } @@ -2869,7 +2875,7 @@ name = "is_module___is_module_1.0.0.tgz"; path = fetchurl { name = "is_module___is_module_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz"; sha1 = "Mlj7afeMFNW4FdZkM2tM/7ZEFZE="; }; } @@ -2877,7 +2883,7 @@ name = "is_negative_zero___is_negative_zero_2.0.2.tgz"; path = fetchurl { name = "is_negative_zero___is_negative_zero_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz"; + url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz"; sha512 = "dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA=="; }; } @@ -2885,7 +2891,7 @@ name = "is_number_object___is_number_object_1.0.6.tgz"; path = fetchurl { name = "is_number_object___is_number_object_1.0.6.tgz"; - url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz"; + url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz"; sha512 = "bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g=="; }; } @@ -2893,7 +2899,7 @@ name = "is_number___is_number_7.0.0.tgz"; path = fetchurl { name = "is_number___is_number_7.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz"; sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; }; } @@ -2901,7 +2907,7 @@ name = "is_obj___is_obj_1.0.1.tgz"; path = fetchurl { name = "is_obj___is_obj_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz"; sha1 = "PkcprB9f3gJc19g6iW2rn09n2w8="; }; } @@ -2909,7 +2915,7 @@ name = "is_path_inside___is_path_inside_3.0.3.tgz"; path = fetchurl { name = "is_path_inside___is_path_inside_3.0.3.tgz"; - url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz"; + url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz"; sha512 = "Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="; }; } @@ -2917,7 +2923,7 @@ name = "is_regex___is_regex_1.1.4.tgz"; path = fetchurl { name = "is_regex___is_regex_1.1.4.tgz"; - url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz"; + url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz"; sha512 = "kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="; }; } @@ -2925,7 +2931,7 @@ name = "is_regexp___is_regexp_1.0.0.tgz"; path = fetchurl { name = "is_regexp___is_regexp_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz"; sha1 = "/S2INUXEa6xaYz57mgnof6LLUGk="; }; } @@ -2933,7 +2939,7 @@ name = "is_shared_array_buffer___is_shared_array_buffer_1.0.1.tgz"; path = fetchurl { name = "is_shared_array_buffer___is_shared_array_buffer_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz"; sha512 = "IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA=="; }; } @@ -2941,7 +2947,7 @@ name = "is_stream___is_stream_2.0.1.tgz"; path = fetchurl { name = "is_stream___is_stream_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz"; sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="; }; } @@ -2949,7 +2955,7 @@ name = "is_string___is_string_1.0.7.tgz"; path = fetchurl { name = "is_string___is_string_1.0.7.tgz"; - url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz"; + url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz"; sha512 = "tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="; }; } @@ -2957,7 +2963,7 @@ name = "is_symbol___is_symbol_1.0.4.tgz"; path = fetchurl { name = "is_symbol___is_symbol_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz"; + url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz"; sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; }; } @@ -2965,7 +2971,7 @@ name = "is_weakref___is_weakref_1.0.2.tgz"; path = fetchurl { name = "is_weakref___is_weakref_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz"; + url = "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz"; sha512 = "qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="; }; } @@ -2973,7 +2979,7 @@ name = "isexe___isexe_2.0.0.tgz"; path = fetchurl { name = "isexe___isexe_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz"; sha1 = "6PvzdNxVb/iUehDcsFctYz8s+hA="; }; } @@ -2981,7 +2987,7 @@ name = "jake___jake_10.8.5.tgz"; path = fetchurl { name = "jake___jake_10.8.5.tgz"; - url = "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz"; + url = "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz"; sha512 = "sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw=="; }; } @@ -2989,7 +2995,7 @@ name = "javascript_time_ago___javascript_time_ago_2.5.9.tgz"; path = fetchurl { name = "javascript_time_ago___javascript_time_ago_2.5.9.tgz"; - url = "https://registry.yarnpkg.com/javascript-time-ago/-/javascript-time-ago-2.5.9.tgz"; + url = "https://registry.yarnpkg.com/javascript-time-ago/-/javascript-time-ago-2.5.9.tgz"; sha512 = "pQ8mNco/9g9TqWXWWjP0EWl6i/lAQScOyEeXy5AB+f7MfLSdgyV9BJhiOD1zrIac/lrxPYOWNbyl/IW8CW5n0A=="; }; } @@ -2997,7 +3003,7 @@ name = "jest_worker___jest_worker_26.6.2.tgz"; path = fetchurl { name = "jest_worker___jest_worker_26.6.2.tgz"; - url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz"; + url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz"; sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; }; } @@ -3005,7 +3011,7 @@ name = "jiti___jiti_1.16.0.tgz"; path = fetchurl { name = "jiti___jiti_1.16.0.tgz"; - url = "https://registry.yarnpkg.com/jiti/-/jiti-1.16.0.tgz"; + url = "https://registry.yarnpkg.com/jiti/-/jiti-1.16.0.tgz"; sha512 = "L3BJStEf5NAqNuzrpfbN71dp43mYIcBUlCRea/vdyv5dW/AYa1d4bpelko4SHdY3I6eN9Wzyasxirj1/vv5kmg=="; }; } @@ -3013,7 +3019,7 @@ name = "js_sdsl___js_sdsl_4.1.5.tgz"; path = fetchurl { name = "js_sdsl___js_sdsl_4.1.5.tgz"; - url = "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz"; + url = "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz"; sha512 = "08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q=="; }; } @@ -3021,7 +3027,7 @@ name = "js_tokens___js_tokens_4.0.0.tgz"; path = fetchurl { name = "js_tokens___js_tokens_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; + url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; }; } @@ -3029,7 +3035,7 @@ name = "js_yaml___js_yaml_4.1.0.tgz"; path = fetchurl { name = "js_yaml___js_yaml_4.1.0.tgz"; - url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz"; + url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz"; sha512 = "wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="; }; } @@ -3037,7 +3043,7 @@ name = "jsesc___jsesc_2.5.2.tgz"; path = fetchurl { name = "jsesc___jsesc_2.5.2.tgz"; - url = "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz"; + url = "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz"; sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; }; } @@ -3045,7 +3051,7 @@ name = "jsesc___jsesc_0.5.0.tgz"; path = fetchurl { name = "jsesc___jsesc_0.5.0.tgz"; - url = "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz"; + url = "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz"; sha1 = "597mbjXW/Bb3EP6R1c9p9w8IkR0="; }; } @@ -3053,7 +3059,7 @@ name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; path = fetchurl { name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; - url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; + url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; }; } @@ -3061,7 +3067,7 @@ name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz"; path = fetchurl { name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; sha512 = "NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="; }; } @@ -3069,7 +3075,7 @@ name = "json_schema___json_schema_0.4.0.tgz"; path = fetchurl { name = "json_schema___json_schema_0.4.0.tgz"; - url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz"; + url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz"; sha512 = "es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA=="; }; } @@ -3077,7 +3083,7 @@ name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; path = fetchurl { name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; sha1 = "nbe1lJatPzz+8wp1FC0tkwrXJlE="; }; } @@ -3085,7 +3091,7 @@ name = "json5___json5_2.2.1.tgz"; path = fetchurl { name = "json5___json5_2.2.1.tgz"; - url = "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz"; + url = "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz"; sha512 = "1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="; }; } @@ -3093,7 +3099,7 @@ name = "jsonc_eslint_parser___jsonc_eslint_parser_1.4.1.tgz"; path = fetchurl { name = "jsonc_eslint_parser___jsonc_eslint_parser_1.4.1.tgz"; - url = "https://registry.yarnpkg.com/jsonc-eslint-parser/-/jsonc-eslint-parser-1.4.1.tgz"; + url = "https://registry.yarnpkg.com/jsonc-eslint-parser/-/jsonc-eslint-parser-1.4.1.tgz"; sha512 = "hXBrvsR1rdjmB2kQmUjf1rEIa+TqHBGMge8pwi++C+Si1ad7EjZrJcpgwym+QGK/pqTx+K7keFAtLlVNdLRJOg=="; }; } @@ -3101,7 +3107,7 @@ name = "jsonfile___jsonfile_6.1.0.tgz"; path = fetchurl { name = "jsonfile___jsonfile_6.1.0.tgz"; - url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz"; + url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz"; sha512 = "5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ=="; }; } @@ -3109,7 +3115,7 @@ name = "jsonpointer___jsonpointer_5.0.0.tgz"; path = fetchurl { name = "jsonpointer___jsonpointer_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.0.tgz"; + url = "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.0.tgz"; sha512 = "PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg=="; }; } @@ -3117,7 +3123,7 @@ name = "kolorist___kolorist_1.5.1.tgz"; path = fetchurl { name = "kolorist___kolorist_1.5.1.tgz"; - url = "https://registry.yarnpkg.com/kolorist/-/kolorist-1.5.1.tgz"; + url = "https://registry.yarnpkg.com/kolorist/-/kolorist-1.5.1.tgz"; sha512 = "lxpCM3HTvquGxKGzHeknB/sUjuVoUElLlfYnXZT73K8geR9jQbroGlSCFBax9/0mpGoD3kzcMLnOlGQPJJNyqQ=="; }; } @@ -3125,7 +3131,7 @@ name = "leven___leven_3.1.0.tgz"; path = fetchurl { name = "leven___leven_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz"; + url = "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz"; sha512 = "qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="; }; } @@ -3133,7 +3139,7 @@ name = "levn___levn_0.4.1.tgz"; path = fetchurl { name = "levn___levn_0.4.1.tgz"; - url = "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz"; + url = "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz"; sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="; }; } @@ -3141,7 +3147,7 @@ name = "local_pkg___local_pkg_0.4.2.tgz"; path = fetchurl { name = "local_pkg___local_pkg_0.4.2.tgz"; - url = "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.4.2.tgz"; + url = "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.4.2.tgz"; sha512 = "mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg=="; }; } @@ -3149,7 +3155,7 @@ name = "locate_path___locate_path_6.0.0.tgz"; path = fetchurl { name = "locate_path___locate_path_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz"; + url = "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz"; sha512 = "iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="; }; } @@ -3157,7 +3163,7 @@ name = "lodash.debounce___lodash.debounce_4.0.8.tgz"; path = fetchurl { name = "lodash.debounce___lodash.debounce_4.0.8.tgz"; - url = "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; + url = "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; sha1 = "gteb/zCmfEAF/9XiUVMArZyk168="; }; } @@ -3165,7 +3171,7 @@ name = "lodash.merge___lodash.merge_4.6.2.tgz"; path = fetchurl { name = "lodash.merge___lodash.merge_4.6.2.tgz"; - url = "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz"; + url = "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz"; sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; }; } @@ -3173,7 +3179,7 @@ name = "lodash.sortby___lodash.sortby_4.7.0.tgz"; path = fetchurl { name = "lodash.sortby___lodash.sortby_4.7.0.tgz"; - url = "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz"; sha1 = "7dFMgk4sycHgsKG0K7UhBRakJDg="; }; } @@ -3181,7 +3187,7 @@ name = "lodash___lodash_4.17.21.tgz"; path = fetchurl { name = "lodash___lodash_4.17.21.tgz"; - url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz"; + url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz"; sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; }; } @@ -3189,7 +3195,7 @@ name = "lru_cache___lru_cache_6.0.0.tgz"; path = fetchurl { name = "lru_cache___lru_cache_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz"; + url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz"; sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; }; } @@ -3197,7 +3203,7 @@ name = "magic_string___magic_string_0.25.9.tgz"; path = fetchurl { name = "magic_string___magic_string_0.25.9.tgz"; - url = "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz"; + url = "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz"; sha512 = "RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ=="; }; } @@ -3205,7 +3211,7 @@ name = "magic_string___magic_string_0.26.7.tgz"; path = fetchurl { name = "magic_string___magic_string_0.26.7.tgz"; - url = "https://registry.yarnpkg.com/magic-string/-/magic-string-0.26.7.tgz"; + url = "https://registry.yarnpkg.com/magic-string/-/magic-string-0.26.7.tgz"; sha512 = "hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow=="; }; } @@ -3213,7 +3219,7 @@ name = "magic_string___magic_string_0.27.0.tgz"; path = fetchurl { name = "magic_string___magic_string_0.27.0.tgz"; - url = "https://registry.yarnpkg.com/magic-string/-/magic-string-0.27.0.tgz"; + url = "https://registry.yarnpkg.com/magic-string/-/magic-string-0.27.0.tgz"; sha512 = "8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA=="; }; } @@ -3221,7 +3227,7 @@ name = "mdn_data___mdn_data_2.0.28.tgz"; path = fetchurl { name = "mdn_data___mdn_data_2.0.28.tgz"; - url = "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz"; + url = "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz"; sha512 = "aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g=="; }; } @@ -3229,7 +3235,7 @@ name = "merge_stream___merge_stream_2.0.0.tgz"; path = fetchurl { name = "merge_stream___merge_stream_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz"; sha512 = "abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="; }; } @@ -3237,7 +3243,7 @@ name = "merge2___merge2_1.4.1.tgz"; path = fetchurl { name = "merge2___merge2_1.4.1.tgz"; - url = "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz"; + url = "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz"; sha512 = "8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="; }; } @@ -3245,7 +3251,7 @@ name = "micromatch___micromatch_4.0.5.tgz"; path = fetchurl { name = "micromatch___micromatch_4.0.5.tgz"; - url = "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz"; + url = "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz"; sha512 = "DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA=="; }; } @@ -3253,7 +3259,7 @@ name = "mimic_fn___mimic_fn_2.1.0.tgz"; path = fetchurl { name = "mimic_fn___mimic_fn_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz"; + url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz"; sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="; }; } @@ -3261,7 +3267,7 @@ name = "min_document___min_document_2.19.0.tgz"; path = fetchurl { name = "min_document___min_document_2.19.0.tgz"; - url = "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz"; + url = "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz"; sha1 = "e9KC4/WELtKVu3SM3Z8f+iyCRoU="; }; } @@ -3269,7 +3275,7 @@ name = "minimatch___minimatch_3.1.2.tgz"; path = fetchurl { name = "minimatch___minimatch_3.1.2.tgz"; - url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz"; + url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz"; sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; }; } @@ -3277,7 +3283,7 @@ name = "minimatch___minimatch_5.0.1.tgz"; path = fetchurl { name = "minimatch___minimatch_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/minimatch/-/minimatch-5.0.1.tgz"; + url = "https://registry.yarnpkg.com/minimatch/-/minimatch-5.0.1.tgz"; sha512 = "nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g=="; }; } @@ -3285,7 +3291,7 @@ name = "mrmime___mrmime_1.0.1.tgz"; path = fetchurl { name = "mrmime___mrmime_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/mrmime/-/mrmime-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/mrmime/-/mrmime-1.0.1.tgz"; sha512 = "hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw=="; }; } @@ -3293,7 +3299,7 @@ name = "ms___ms_2.1.2.tgz"; path = fetchurl { name = "ms___ms_2.1.2.tgz"; - url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz"; + url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz"; sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; }; } @@ -3301,7 +3307,7 @@ name = "mux.js___mux.js_6.2.0.tgz"; path = fetchurl { name = "mux.js___mux.js_6.2.0.tgz"; - url = "https://registry.yarnpkg.com/mux.js/-/mux.js-6.2.0.tgz"; + url = "https://registry.yarnpkg.com/mux.js/-/mux.js-6.2.0.tgz"; sha512 = "SKuxIcbmK/aJoz78aQNuoXY8R/uEPm1gQMqWTXL6DNl7oF8UPjdt/AunXGkPQpBouGWKDgL/TzSl2VV5NuboRg=="; }; } @@ -3309,7 +3315,7 @@ name = "nanoid___nanoid_3.3.3.tgz"; path = fetchurl { name = "nanoid___nanoid_3.3.3.tgz"; - url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz"; + url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz"; sha512 = "p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w=="; }; } @@ -3317,7 +3323,7 @@ name = "nanoid___nanoid_3.3.4.tgz"; path = fetchurl { name = "nanoid___nanoid_3.3.4.tgz"; - url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz"; + url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz"; sha512 = "MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="; }; } @@ -3325,7 +3331,7 @@ name = "natural_compare___natural_compare_1.4.0.tgz"; path = fetchurl { name = "natural_compare___natural_compare_1.4.0.tgz"; - url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz"; + url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz"; sha1 = "Sr6/7tdUHywnrPspvbvRXI1bpPc="; }; } @@ -3333,7 +3339,7 @@ name = "node_fetch_native___node_fetch_native_0.1.8.tgz"; path = fetchurl { name = "node_fetch_native___node_fetch_native_0.1.8.tgz"; - url = "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-0.1.8.tgz"; + url = "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-0.1.8.tgz"; sha512 = "ZNaury9r0NxaT2oL65GvdGDy+5PlSaHTovT6JV5tOW07k1TQmgC0olZETa4C9KZg0+6zBr99ctTYa3Utqj9P/Q=="; }; } @@ -3341,7 +3347,7 @@ name = "node_releases___node_releases_2.0.2.tgz"; path = fetchurl { name = "node_releases___node_releases_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.2.tgz"; + url = "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.2.tgz"; sha512 = "XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg=="; }; } @@ -3349,7 +3355,7 @@ name = "normalize_path___normalize_path_3.0.0.tgz"; path = fetchurl { name = "normalize_path___normalize_path_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz"; + url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz"; sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; }; } @@ -3357,7 +3363,7 @@ name = "npm_run_path___npm_run_path_4.0.1.tgz"; path = fetchurl { name = "npm_run_path___npm_run_path_4.0.1.tgz"; - url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz"; + url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz"; sha512 = "S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="; }; } @@ -3365,7 +3371,7 @@ name = "nth_check___nth_check_2.0.1.tgz"; path = fetchurl { name = "nth_check___nth_check_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.1.tgz"; + url = "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.1.tgz"; sha512 = "it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w=="; }; } @@ -3373,7 +3379,7 @@ name = "object_inspect___object_inspect_1.12.0.tgz"; path = fetchurl { name = "object_inspect___object_inspect_1.12.0.tgz"; - url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz"; + url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz"; sha512 = "Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g=="; }; } @@ -3381,7 +3387,7 @@ name = "object_keys___object_keys_1.1.1.tgz"; path = fetchurl { name = "object_keys___object_keys_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz"; + url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz"; sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="; }; } @@ -3389,7 +3395,7 @@ name = "object.assign___object.assign_4.1.2.tgz"; path = fetchurl { name = "object.assign___object.assign_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz"; + url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz"; sha512 = "ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ=="; }; } @@ -3397,7 +3403,7 @@ name = "ohmyfetch___ohmyfetch_0.4.21.tgz"; path = fetchurl { name = "ohmyfetch___ohmyfetch_0.4.21.tgz"; - url = "https://registry.yarnpkg.com/ohmyfetch/-/ohmyfetch-0.4.21.tgz"; + url = "https://registry.yarnpkg.com/ohmyfetch/-/ohmyfetch-0.4.21.tgz"; sha512 = "VG7f/JRvqvBOYvL0tHyEIEG7XHWm7OqIfAs6/HqwWwDfjiJ1g0huIpe5sFEmyb+7hpFa1EGNH2aERWR72tlClw=="; }; } @@ -3405,7 +3411,7 @@ name = "once___once_1.4.0.tgz"; path = fetchurl { name = "once___once_1.4.0.tgz"; - url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; + url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; sha1 = "WDsap3WWHUsROsF9nFC6753Xa9E="; }; } @@ -3413,7 +3419,7 @@ name = "onetime___onetime_5.1.2.tgz"; path = fetchurl { name = "onetime___onetime_5.1.2.tgz"; - url = "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz"; + url = "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz"; sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; }; } @@ -3421,7 +3427,7 @@ name = "optionator___optionator_0.9.1.tgz"; path = fetchurl { name = "optionator___optionator_0.9.1.tgz"; - url = "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz"; + url = "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz"; sha512 = "74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw=="; }; } @@ -3429,7 +3435,7 @@ name = "p_limit___p_limit_3.1.0.tgz"; path = fetchurl { name = "p_limit___p_limit_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz"; + url = "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz"; sha512 = "TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="; }; } @@ -3437,7 +3443,7 @@ name = "p_locate___p_locate_5.0.0.tgz"; path = fetchurl { name = "p_locate___p_locate_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz"; sha512 = "LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="; }; } @@ -3445,7 +3451,7 @@ name = "parent_module___parent_module_1.0.1.tgz"; path = fetchurl { name = "parent_module___parent_module_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz"; sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="; }; } @@ -3453,7 +3459,7 @@ name = "path_exists___path_exists_4.0.0.tgz"; path = fetchurl { name = "path_exists___path_exists_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz"; + url = "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz"; sha512 = "ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="; }; } @@ -3461,7 +3467,7 @@ name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; path = fetchurl { name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; sha1 = "F0uSaHNVNP+8es5r9TpanhtcX18="; }; } @@ -3469,7 +3475,7 @@ name = "path_key___path_key_3.1.1.tgz"; path = fetchurl { name = "path_key___path_key_3.1.1.tgz"; - url = "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz"; + url = "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz"; sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; }; } @@ -3477,7 +3483,7 @@ name = "path_parse___path_parse_1.0.7.tgz"; path = fetchurl { name = "path_parse___path_parse_1.0.7.tgz"; - url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz"; + url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz"; sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; }; } @@ -3485,7 +3491,7 @@ name = "pathe___pathe_0.3.9.tgz"; path = fetchurl { name = "pathe___pathe_0.3.9.tgz"; - url = "https://registry.yarnpkg.com/pathe/-/pathe-0.3.9.tgz"; + url = "https://registry.yarnpkg.com/pathe/-/pathe-0.3.9.tgz"; sha512 = "6Y6s0vT112P3jD8dGfuS6r+lpa0qqNrLyHPOwvXMnyNTQaYiwgau2DP3aNDsR13xqtGj7rrPo+jFUATpU6/s+g=="; }; } @@ -3493,7 +3499,7 @@ name = "pathe___pathe_1.0.0.tgz"; path = fetchurl { name = "pathe___pathe_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/pathe/-/pathe-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/pathe/-/pathe-1.0.0.tgz"; sha512 = "nPdMG0Pd09HuSsr7QOKUXO2Jr9eqaDiZvDwdyIhNG5SHYujkQHYKDfGQkulBxvbDHz8oHLsTgKN86LSwYzSHAg=="; }; } @@ -3501,7 +3507,7 @@ name = "perfect_debounce___perfect_debounce_0.1.3.tgz"; path = fetchurl { name = "perfect_debounce___perfect_debounce_0.1.3.tgz"; - url = "https://registry.yarnpkg.com/perfect-debounce/-/perfect-debounce-0.1.3.tgz"; + url = "https://registry.yarnpkg.com/perfect-debounce/-/perfect-debounce-0.1.3.tgz"; sha512 = "NOT9AcKiDGpnV/HBhI22Str++XWcErO/bALvHCuhv33owZW/CjH8KAFLZDCmu3727sihe0wTxpDhyGc6M8qacQ=="; }; } @@ -3509,7 +3515,7 @@ name = "picocolors___picocolors_1.0.0.tgz"; path = fetchurl { name = "picocolors___picocolors_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz"; sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="; }; } @@ -3517,7 +3523,7 @@ name = "picomatch___picomatch_2.3.1.tgz"; path = fetchurl { name = "picomatch___picomatch_2.3.1.tgz"; - url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz"; + url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz"; sha512 = "JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="; }; } @@ -3525,7 +3531,7 @@ name = "postcss_selector_parser___postcss_selector_parser_6.0.10.tgz"; path = fetchurl { name = "postcss_selector_parser___postcss_selector_parser_6.0.10.tgz"; - url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz"; + url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz"; sha512 = "IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w=="; }; } @@ -3533,7 +3539,7 @@ name = "postcss___postcss_8.4.13.tgz"; path = fetchurl { name = "postcss___postcss_8.4.13.tgz"; - url = "https://registry.yarnpkg.com/postcss/-/postcss-8.4.13.tgz"; + url = "https://registry.yarnpkg.com/postcss/-/postcss-8.4.13.tgz"; sha512 = "jtL6eTBrza5MPzy8oJLFuUscHDXTV5KcLlqAWHl5q5WYRfnNRGSmOZmOZ1T6Gy7A99mOZfqungmZMpMmCVJ8ZA=="; }; } @@ -3541,7 +3547,7 @@ name = "postcss___postcss_8.4.18.tgz"; path = fetchurl { name = "postcss___postcss_8.4.18.tgz"; - url = "https://registry.yarnpkg.com/postcss/-/postcss-8.4.18.tgz"; + url = "https://registry.yarnpkg.com/postcss/-/postcss-8.4.18.tgz"; sha512 = "Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA=="; }; } @@ -3549,7 +3555,7 @@ name = "prelude_ls___prelude_ls_1.2.1.tgz"; path = fetchurl { name = "prelude_ls___prelude_ls_1.2.1.tgz"; - url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz"; + url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz"; sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; }; } @@ -3557,7 +3563,7 @@ name = "prettier_linter_helpers___prettier_linter_helpers_1.0.0.tgz"; path = fetchurl { name = "prettier_linter_helpers___prettier_linter_helpers_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz"; sha512 = "GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w=="; }; } @@ -3565,7 +3571,7 @@ name = "prettier___prettier_2.8.1.tgz"; path = fetchurl { name = "prettier___prettier_2.8.1.tgz"; - url = "https://registry.yarnpkg.com/prettier/-/prettier-2.8.1.tgz"; + url = "https://registry.yarnpkg.com/prettier/-/prettier-2.8.1.tgz"; sha512 = "lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg=="; }; } @@ -3573,7 +3579,7 @@ name = "pretty_bytes___pretty_bytes_5.6.0.tgz"; path = fetchurl { name = "pretty_bytes___pretty_bytes_5.6.0.tgz"; - url = "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz"; + url = "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz"; sha512 = "FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg=="; }; } @@ -3581,7 +3587,7 @@ name = "pretty_bytes___pretty_bytes_6.0.0.tgz"; path = fetchurl { name = "pretty_bytes___pretty_bytes_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-6.0.0.tgz"; + url = "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-6.0.0.tgz"; sha512 = "6UqkYefdogmzqAZWzJ7laYeJnaXDy2/J+ZqiiMtS7t7OfpXWTlaeGMwX8U6EFvPV/YWWEKRkS8hKS4k60WHTOg=="; }; } @@ -3589,7 +3595,7 @@ name = "process___process_0.11.10.tgz"; path = fetchurl { name = "process___process_0.11.10.tgz"; - url = "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz"; + url = "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz"; sha1 = "czIwDoQBYb2j5podHZGn1LwW8YI="; }; } @@ -3597,7 +3603,7 @@ name = "punycode___punycode_2.1.1.tgz"; path = fetchurl { name = "punycode___punycode_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; + url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; }; } @@ -3605,7 +3611,7 @@ name = "queue_microtask___queue_microtask_1.2.3.tgz"; path = fetchurl { name = "queue_microtask___queue_microtask_1.2.3.tgz"; - url = "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz"; + url = "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz"; sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; }; } @@ -3613,7 +3619,7 @@ name = "randombytes___randombytes_2.1.0.tgz"; path = fetchurl { name = "randombytes___randombytes_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz"; + url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz"; sha512 = "vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="; }; } @@ -3621,7 +3627,7 @@ name = "readable_stream___readable_stream_3.6.0.tgz"; path = fetchurl { name = "readable_stream___readable_stream_3.6.0.tgz"; - url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz"; + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz"; sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; }; } @@ -3629,7 +3635,7 @@ name = "readdirp___readdirp_3.6.0.tgz"; path = fetchurl { name = "readdirp___readdirp_3.6.0.tgz"; - url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz"; + url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz"; sha512 = "hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="; }; } @@ -3637,7 +3643,7 @@ name = "regenerate_unicode_properties___regenerate_unicode_properties_10.0.1.tgz"; path = fetchurl { name = "regenerate_unicode_properties___regenerate_unicode_properties_10.0.1.tgz"; - url = "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz"; + url = "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz"; sha512 = "vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw=="; }; } @@ -3645,7 +3651,7 @@ name = "regenerate___regenerate_1.4.2.tgz"; path = fetchurl { name = "regenerate___regenerate_1.4.2.tgz"; - url = "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz"; + url = "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz"; sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="; }; } @@ -3653,7 +3659,7 @@ name = "regenerator_runtime___regenerator_runtime_0.13.11.tgz"; path = fetchurl { name = "regenerator_runtime___regenerator_runtime_0.13.11.tgz"; - url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz"; + url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz"; sha512 = "kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="; }; } @@ -3661,7 +3667,7 @@ name = "regenerator_runtime___regenerator_runtime_0.13.9.tgz"; path = fetchurl { name = "regenerator_runtime___regenerator_runtime_0.13.9.tgz"; - url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"; + url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"; sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; }; } @@ -3669,7 +3675,7 @@ name = "regenerator_transform___regenerator_transform_0.14.5.tgz"; path = fetchurl { name = "regenerator_transform___regenerator_transform_0.14.5.tgz"; - url = "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz"; + url = "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz"; sha512 = "eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw=="; }; } @@ -3677,7 +3683,7 @@ name = "regexp.prototype.flags___regexp.prototype.flags_1.4.1.tgz"; path = fetchurl { name = "regexp.prototype.flags___regexp.prototype.flags_1.4.1.tgz"; - url = "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz"; + url = "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz"; sha512 = "pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ=="; }; } @@ -3685,7 +3691,7 @@ name = "regexpp___regexpp_3.2.0.tgz"; path = fetchurl { name = "regexpp___regexpp_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz"; + url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz"; sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; }; } @@ -3693,7 +3699,7 @@ name = "regexpu_core___regexpu_core_5.0.1.tgz"; path = fetchurl { name = "regexpu_core___regexpu_core_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.0.1.tgz"; + url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.0.1.tgz"; sha512 = "CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw=="; }; } @@ -3701,7 +3707,7 @@ name = "regjsgen___regjsgen_0.6.0.tgz"; path = fetchurl { name = "regjsgen___regjsgen_0.6.0.tgz"; - url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.6.0.tgz"; + url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.6.0.tgz"; sha512 = "ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA=="; }; } @@ -3709,7 +3715,7 @@ name = "regjsparser___regjsparser_0.8.4.tgz"; path = fetchurl { name = "regjsparser___regjsparser_0.8.4.tgz"; - url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.8.4.tgz"; + url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.8.4.tgz"; sha512 = "J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA=="; }; } @@ -3717,7 +3723,7 @@ name = "relative_time_format___relative_time_format_1.1.6.tgz"; path = fetchurl { name = "relative_time_format___relative_time_format_1.1.6.tgz"; - url = "https://registry.yarnpkg.com/relative-time-format/-/relative-time-format-1.1.6.tgz"; + url = "https://registry.yarnpkg.com/relative-time-format/-/relative-time-format-1.1.6.tgz"; sha512 = "aCv3juQw4hT1/P/OrVltKWLlp15eW1GRcwP1XdxHrPdZE9MtgqFpegjnTjLhi2m2WI9MT/hQQtE+tjEWG1hgkQ=="; }; } @@ -3725,7 +3731,7 @@ name = "require_from_string___require_from_string_2.0.2.tgz"; path = fetchurl { name = "require_from_string___require_from_string_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz"; + url = "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz"; sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; }; } @@ -3733,7 +3739,7 @@ name = "resolve_from___resolve_from_4.0.0.tgz"; path = fetchurl { name = "resolve_from___resolve_from_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz"; + url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz"; sha512 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="; }; } @@ -3741,7 +3747,7 @@ name = "resolve___resolve_1.22.0.tgz"; path = fetchurl { name = "resolve___resolve_1.22.0.tgz"; - url = "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz"; + url = "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz"; sha512 = "Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw=="; }; } @@ -3749,7 +3755,7 @@ name = "resolve___resolve_1.22.1.tgz"; path = fetchurl { name = "resolve___resolve_1.22.1.tgz"; - url = "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz"; + url = "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz"; sha512 = "nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw=="; }; } @@ -3757,7 +3763,7 @@ name = "reusify___reusify_1.0.4.tgz"; path = fetchurl { name = "reusify___reusify_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz"; + url = "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz"; sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; }; } @@ -3765,7 +3771,7 @@ name = "rimraf___rimraf_3.0.2.tgz"; path = fetchurl { name = "rimraf___rimraf_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz"; + url = "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz"; sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; }; } @@ -3773,7 +3779,7 @@ name = "rollup_plugin_terser___rollup_plugin_terser_7.0.2.tgz"; path = fetchurl { name = "rollup_plugin_terser___rollup_plugin_terser_7.0.2.tgz"; - url = "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz"; + url = "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz"; sha512 = "w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ=="; }; } @@ -3781,7 +3787,7 @@ name = "rollup___rollup_2.78.1.tgz"; path = fetchurl { name = "rollup___rollup_2.78.1.tgz"; - url = "https://registry.yarnpkg.com/rollup/-/rollup-2.78.1.tgz"; + url = "https://registry.yarnpkg.com/rollup/-/rollup-2.78.1.tgz"; sha512 = "VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg=="; }; } @@ -3789,7 +3795,7 @@ name = "rollup___rollup_2.79.1.tgz"; path = fetchurl { name = "rollup___rollup_2.79.1.tgz"; - url = "https://registry.yarnpkg.com/rollup/-/rollup-2.79.1.tgz"; + url = "https://registry.yarnpkg.com/rollup/-/rollup-2.79.1.tgz"; sha512 = "uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw=="; }; } @@ -3797,7 +3803,7 @@ name = "rollup___rollup_3.7.3.tgz"; path = fetchurl { name = "rollup___rollup_3.7.3.tgz"; - url = "https://registry.yarnpkg.com/rollup/-/rollup-3.7.3.tgz"; + url = "https://registry.yarnpkg.com/rollup/-/rollup-3.7.3.tgz"; sha512 = "7e68MQbAWCX6mI4/0lG1WHd+NdNAlVamg0Zkd+8LZ/oXojligdGnCNyHlzXqXCZObyjs5FRc3AH0b17iJESGIQ=="; }; } @@ -3805,7 +3811,7 @@ name = "run_parallel___run_parallel_1.2.0.tgz"; path = fetchurl { name = "run_parallel___run_parallel_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz"; + url = "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz"; sha512 = "5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="; }; } @@ -3813,7 +3819,7 @@ name = "safe_buffer___safe_buffer_5.2.1.tgz"; path = fetchurl { name = "safe_buffer___safe_buffer_5.2.1.tgz"; - url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz"; + url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz"; sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; }; } @@ -3821,7 +3827,7 @@ name = "safe_buffer___safe_buffer_5.1.2.tgz"; path = fetchurl { name = "safe_buffer___safe_buffer_5.1.2.tgz"; - url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz"; + url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz"; sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; }; } @@ -3829,7 +3835,7 @@ name = "sax___sax_1.2.4.tgz"; path = fetchurl { name = "sax___sax_1.2.4.tgz"; - url = "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz"; + url = "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz"; sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; }; } @@ -3837,7 +3843,7 @@ name = "semver___semver_7.0.0.tgz"; path = fetchurl { name = "semver___semver_7.0.0.tgz"; - url = "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz"; + url = "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz"; sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; }; } @@ -3845,7 +3851,7 @@ name = "semver___semver_6.3.0.tgz"; path = fetchurl { name = "semver___semver_6.3.0.tgz"; - url = "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz"; + url = "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz"; sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; }; } @@ -3853,7 +3859,7 @@ name = "semver___semver_7.3.7.tgz"; path = fetchurl { name = "semver___semver_7.3.7.tgz"; - url = "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz"; + url = "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz"; sha512 = "QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g=="; }; } @@ -3861,7 +3867,7 @@ name = "serialize_javascript___serialize_javascript_4.0.0.tgz"; path = fetchurl { name = "serialize_javascript___serialize_javascript_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz"; + url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz"; sha512 = "GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw=="; }; } @@ -3869,7 +3875,7 @@ name = "shaka_player___shaka_player_4.3.2.tgz"; path = fetchurl { name = "shaka_player___shaka_player_4.3.2.tgz"; - url = "https://registry.yarnpkg.com/shaka-player/-/shaka-player-4.3.2.tgz"; + url = "https://registry.yarnpkg.com/shaka-player/-/shaka-player-4.3.2.tgz"; sha512 = "sHGDKhKJTPeTks5BiASqr+E+daPHrLYSznEasHR2b7VR34D1OcAcVJk3WQXQiV03tWFFydFGHrgxQDmj1hIA+Q=="; }; } @@ -3877,7 +3883,7 @@ name = "shebang_command___shebang_command_2.0.0.tgz"; path = fetchurl { name = "shebang_command___shebang_command_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz"; sha512 = "kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="; }; } @@ -3885,7 +3891,7 @@ name = "shebang_regex___shebang_regex_3.0.0.tgz"; path = fetchurl { name = "shebang_regex___shebang_regex_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz"; + url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz"; sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; }; } @@ -3893,7 +3899,7 @@ name = "side_channel___side_channel_1.0.4.tgz"; path = fetchurl { name = "side_channel___side_channel_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz"; + url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz"; sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; }; } @@ -3901,7 +3907,7 @@ name = "signal_exit___signal_exit_3.0.7.tgz"; path = fetchurl { name = "signal_exit___signal_exit_3.0.7.tgz"; - url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz"; + url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz"; sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; }; } @@ -3909,7 +3915,7 @@ name = "sirv___sirv_2.0.2.tgz"; path = fetchurl { name = "sirv___sirv_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/sirv/-/sirv-2.0.2.tgz"; + url = "https://registry.yarnpkg.com/sirv/-/sirv-2.0.2.tgz"; sha512 = "4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w=="; }; } @@ -3917,7 +3923,7 @@ name = "source_map_js___source_map_js_1.0.2.tgz"; path = fetchurl { name = "source_map_js___source_map_js_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz"; + url = "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz"; sha512 = "R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="; }; } @@ -3925,7 +3931,7 @@ name = "source_map_support___source_map_support_0.5.21.tgz"; path = fetchurl { name = "source_map_support___source_map_support_0.5.21.tgz"; - url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz"; + url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz"; sha512 = "uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w=="; }; } @@ -3933,7 +3939,7 @@ name = "source_map___source_map_0.6.1.tgz"; path = fetchurl { name = "source_map___source_map_0.6.1.tgz"; - url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz"; + url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz"; sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; }; } @@ -3941,7 +3947,7 @@ name = "source_map___source_map_0.5.7.tgz"; path = fetchurl { name = "source_map___source_map_0.5.7.tgz"; - url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz"; + url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz"; sha1 = "igOdLRAh0i0eoUyA2OpGi6LvP8w="; }; } @@ -3949,7 +3955,7 @@ name = "source_map___source_map_0.8.0_beta.0.tgz"; path = fetchurl { name = "source_map___source_map_0.8.0_beta.0.tgz"; - url = "https://registry.yarnpkg.com/source-map/-/source-map-0.8.0-beta.0.tgz"; + url = "https://registry.yarnpkg.com/source-map/-/source-map-0.8.0-beta.0.tgz"; sha512 = "2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA=="; }; } @@ -3957,7 +3963,7 @@ name = "sourcemap_codec___sourcemap_codec_1.4.8.tgz"; path = fetchurl { name = "sourcemap_codec___sourcemap_codec_1.4.8.tgz"; - url = "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz"; + url = "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz"; sha512 = "9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA=="; }; } @@ -3965,7 +3971,7 @@ name = "stream_browserify___stream_browserify_3.0.0.tgz"; path = fetchurl { name = "stream_browserify___stream_browserify_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz"; + url = "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz"; sha512 = "H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA=="; }; } @@ -3973,7 +3979,7 @@ name = "streamsearch___streamsearch_1.1.0.tgz"; path = fetchurl { name = "streamsearch___streamsearch_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz"; + url = "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz"; sha512 = "Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg=="; }; } @@ -3981,7 +3987,7 @@ name = "string.prototype.matchall___string.prototype.matchall_4.0.7.tgz"; path = fetchurl { name = "string.prototype.matchall___string.prototype.matchall_4.0.7.tgz"; - url = "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz"; + url = "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz"; sha512 = "f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg=="; }; } @@ -3989,7 +3995,7 @@ name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz"; path = fetchurl { name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz"; + url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz"; sha512 = "y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A=="; }; } @@ -3997,7 +4003,7 @@ name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz"; path = fetchurl { name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz"; + url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz"; sha512 = "jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw=="; }; } @@ -4005,7 +4011,7 @@ name = "string_decoder___string_decoder_1.3.0.tgz"; path = fetchurl { name = "string_decoder___string_decoder_1.3.0.tgz"; - url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz"; + url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz"; sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; }; } @@ -4013,7 +4019,7 @@ name = "stringify_object___stringify_object_3.3.0.tgz"; path = fetchurl { name = "stringify_object___stringify_object_3.3.0.tgz"; - url = "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz"; + url = "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz"; sha512 = "rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw=="; }; } @@ -4021,7 +4027,7 @@ name = "strip_ansi___strip_ansi_6.0.1.tgz"; path = fetchurl { name = "strip_ansi___strip_ansi_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz"; + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz"; sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; }; } @@ -4029,7 +4035,7 @@ name = "strip_comments___strip_comments_2.0.1.tgz"; path = fetchurl { name = "strip_comments___strip_comments_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/strip-comments/-/strip-comments-2.0.1.tgz"; + url = "https://registry.yarnpkg.com/strip-comments/-/strip-comments-2.0.1.tgz"; sha512 = "ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw=="; }; } @@ -4037,7 +4043,7 @@ name = "strip_final_newline___strip_final_newline_2.0.0.tgz"; path = fetchurl { name = "strip_final_newline___strip_final_newline_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz"; sha512 = "BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="; }; } @@ -4045,7 +4051,7 @@ name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; path = fetchurl { name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; - url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; + url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; sha512 = "6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="; }; } @@ -4053,7 +4059,7 @@ name = "supports_color___supports_color_5.5.0.tgz"; path = fetchurl { name = "supports_color___supports_color_5.5.0.tgz"; - url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; }; } @@ -4061,7 +4067,7 @@ name = "supports_color___supports_color_7.2.0.tgz"; path = fetchurl { name = "supports_color___supports_color_7.2.0.tgz"; - url = "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz"; + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz"; sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; }; } @@ -4069,7 +4075,7 @@ name = "supports_preserve_symlinks_flag___supports_preserve_symlinks_flag_1.0.0.tgz"; path = fetchurl { name = "supports_preserve_symlinks_flag___supports_preserve_symlinks_flag_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"; sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; }; } @@ -4077,7 +4083,7 @@ name = "systemjs___systemjs_6.13.0.tgz"; path = fetchurl { name = "systemjs___systemjs_6.13.0.tgz"; - url = "https://registry.yarnpkg.com/systemjs/-/systemjs-6.13.0.tgz"; + url = "https://registry.yarnpkg.com/systemjs/-/systemjs-6.13.0.tgz"; sha512 = "P3cgh2bpaPvAO2NE3uRp/n6hmk4xPX4DQf+UzTlCAycssKdqhp6hjw+ENWe+aUS7TogKRFtptMosTSFeC6R55g=="; }; } @@ -4085,7 +4091,7 @@ name = "temp_dir___temp_dir_2.0.0.tgz"; path = fetchurl { name = "temp_dir___temp_dir_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz"; sha512 = "aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg=="; }; } @@ -4093,7 +4099,7 @@ name = "tempy___tempy_0.6.0.tgz"; path = fetchurl { name = "tempy___tempy_0.6.0.tgz"; - url = "https://registry.yarnpkg.com/tempy/-/tempy-0.6.0.tgz"; + url = "https://registry.yarnpkg.com/tempy/-/tempy-0.6.0.tgz"; sha512 = "G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw=="; }; } @@ -4101,7 +4107,7 @@ name = "terser___terser_5.14.2.tgz"; path = fetchurl { name = "terser___terser_5.14.2.tgz"; - url = "https://registry.yarnpkg.com/terser/-/terser-5.14.2.tgz"; + url = "https://registry.yarnpkg.com/terser/-/terser-5.14.2.tgz"; sha512 = "oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA=="; }; } @@ -4109,7 +4115,7 @@ name = "text_table___text_table_0.2.0.tgz"; path = fetchurl { name = "text_table___text_table_0.2.0.tgz"; - url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz"; + url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz"; sha1 = "f17oI66AUgfACvLfSoTsP8+lcLQ="; }; } @@ -4117,7 +4123,7 @@ name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; path = fetchurl { name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; sha1 = "3F5pjL0HkmW8c+A3doGk5Og/YW4="; }; } @@ -4125,7 +4131,7 @@ name = "to_regex_range___to_regex_range_5.0.1.tgz"; path = fetchurl { name = "to_regex_range___to_regex_range_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz"; + url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz"; sha512 = "65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="; }; } @@ -4133,7 +4139,7 @@ name = "totalist___totalist_3.0.0.tgz"; path = fetchurl { name = "totalist___totalist_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/totalist/-/totalist-3.0.0.tgz"; + url = "https://registry.yarnpkg.com/totalist/-/totalist-3.0.0.tgz"; sha512 = "eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw=="; }; } @@ -4141,7 +4147,7 @@ name = "tr46___tr46_1.0.1.tgz"; path = fetchurl { name = "tr46___tr46_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz"; sha1 = "qLE/1r/SSJUZZ0zN5VujaTtwbQk="; }; } @@ -4149,7 +4155,7 @@ name = "type_check___type_check_0.4.0.tgz"; path = fetchurl { name = "type_check___type_check_0.4.0.tgz"; - url = "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz"; + url = "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz"; sha512 = "XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="; }; } @@ -4157,7 +4163,7 @@ name = "type_fest___type_fest_0.16.0.tgz"; path = fetchurl { name = "type_fest___type_fest_0.16.0.tgz"; - url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz"; + url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz"; sha512 = "eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg=="; }; } @@ -4165,7 +4171,7 @@ name = "type_fest___type_fest_0.20.2.tgz"; path = fetchurl { name = "type_fest___type_fest_0.20.2.tgz"; - url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz"; + url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz"; sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; }; } @@ -4173,7 +4179,7 @@ name = "ufo___ufo_0.8.6.tgz"; path = fetchurl { name = "ufo___ufo_0.8.6.tgz"; - url = "https://registry.yarnpkg.com/ufo/-/ufo-0.8.6.tgz"; + url = "https://registry.yarnpkg.com/ufo/-/ufo-0.8.6.tgz"; sha512 = "fk6CmUgwKCfX79EzcDQQpSCMxrHstvbLswFChHS0Vump+kFkw7nJBfTZoC1j0bOGoY9I7R3n2DGek5ajbcYnOw=="; }; } @@ -4181,7 +4187,7 @@ name = "unbox_primitive___unbox_primitive_1.0.1.tgz"; path = fetchurl { name = "unbox_primitive___unbox_primitive_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz"; sha512 = "tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw=="; }; } @@ -4189,7 +4195,7 @@ name = "unconfig___unconfig_0.3.7.tgz"; path = fetchurl { name = "unconfig___unconfig_0.3.7.tgz"; - url = "https://registry.yarnpkg.com/unconfig/-/unconfig-0.3.7.tgz"; + url = "https://registry.yarnpkg.com/unconfig/-/unconfig-0.3.7.tgz"; sha512 = "1589b7oGa8ILBYpta7TndM5mLHLzHUqBfhszeZxuUBrjO/RoQ52VGVWsS3w0C0GLNxO9RPmqkf6BmIvBApaRdA=="; }; } @@ -4197,7 +4203,7 @@ name = "undici___undici_5.13.0.tgz"; path = fetchurl { name = "undici___undici_5.13.0.tgz"; - url = "https://registry.yarnpkg.com/undici/-/undici-5.13.0.tgz"; + url = "https://registry.yarnpkg.com/undici/-/undici-5.13.0.tgz"; sha512 = "UDZKtwb2k7KRsK4SdXWG7ErXiL7yTGgLWvk2AXO1JMjgjh404nFo6tWSCM2xMpJwMPx3J8i/vfqEh1zOqvj82Q=="; }; } @@ -4205,7 +4211,7 @@ name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_2.0.0.tgz"; path = fetchurl { name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz"; sha512 = "yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ=="; }; } @@ -4213,7 +4219,7 @@ name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_2.0.0.tgz"; path = fetchurl { name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz"; sha512 = "5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q=="; }; } @@ -4221,7 +4227,7 @@ name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_2.0.0.tgz"; path = fetchurl { name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz"; sha512 = "7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw=="; }; } @@ -4229,7 +4235,7 @@ name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_2.0.0.tgz"; path = fetchurl { name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz"; sha512 = "5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ=="; }; } @@ -4237,7 +4243,7 @@ name = "unique_string___unique_string_2.0.0.tgz"; path = fetchurl { name = "unique_string___unique_string_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz"; sha512 = "uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg=="; }; } @@ -4245,7 +4251,7 @@ name = "universalify___universalify_2.0.0.tgz"; path = fetchurl { name = "universalify___universalify_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz"; sha512 = "hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="; }; } @@ -4253,7 +4259,7 @@ name = "unocss___unocss_0.47.6.tgz"; path = fetchurl { name = "unocss___unocss_0.47.6.tgz"; - url = "https://registry.yarnpkg.com/unocss/-/unocss-0.47.6.tgz"; + url = "https://registry.yarnpkg.com/unocss/-/unocss-0.47.6.tgz"; sha512 = "cc+m2h/Iky24zwAKir9ElmIhkPYNjZEUTemInctWlVN8QX9qpzsRZahAl7ZmKsBorXPFtux/JYoUCCtXftyxOw=="; }; } @@ -4261,7 +4267,7 @@ name = "upath___upath_1.2.0.tgz"; path = fetchurl { name = "upath___upath_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz"; + url = "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz"; sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; }; } @@ -4269,7 +4275,7 @@ name = "uri_js___uri_js_4.4.1.tgz"; path = fetchurl { name = "uri_js___uri_js_4.4.1.tgz"; - url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz"; + url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz"; sha512 = "7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="; }; } @@ -4277,7 +4283,7 @@ name = "util_deprecate___util_deprecate_1.0.2.tgz"; path = fetchurl { name = "util_deprecate___util_deprecate_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; + url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; sha1 = "RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="; }; } @@ -4285,7 +4291,7 @@ name = "vite_plugin_eslint___vite_plugin_eslint_1.8.1.tgz"; path = fetchurl { name = "vite_plugin_eslint___vite_plugin_eslint_1.8.1.tgz"; - url = "https://registry.yarnpkg.com/vite-plugin-eslint/-/vite-plugin-eslint-1.8.1.tgz"; + url = "https://registry.yarnpkg.com/vite-plugin-eslint/-/vite-plugin-eslint-1.8.1.tgz"; sha512 = "PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang=="; }; } @@ -4293,7 +4299,7 @@ name = "vite_plugin_pwa___vite_plugin_pwa_0.14.0.tgz"; path = fetchurl { name = "vite_plugin_pwa___vite_plugin_pwa_0.14.0.tgz"; - url = "https://registry.yarnpkg.com/vite-plugin-pwa/-/vite-plugin-pwa-0.14.0.tgz"; + url = "https://registry.yarnpkg.com/vite-plugin-pwa/-/vite-plugin-pwa-0.14.0.tgz"; sha512 = "3wZx47PLWTckOQhc8Y6YZjAbNZ89Ovh4TdCT97MGhgl7aFd2LUekVnAmIgFwgMqyxzJ93nmkPF/ALpEW/i2qCg=="; }; } @@ -4301,7 +4307,7 @@ name = "vite___vite_3.2.5.tgz"; path = fetchurl { name = "vite___vite_3.2.5.tgz"; - url = "https://registry.yarnpkg.com/vite/-/vite-3.2.5.tgz"; + url = "https://registry.yarnpkg.com/vite/-/vite-3.2.5.tgz"; sha512 = "4mVEpXpSOgrssFZAOmGIr85wPHKvaDAcXqxVxVRZhljkJOMZi1ibLibzjLHzJvcok8BMguLc7g1W6W/GqZbLdQ=="; }; } @@ -4309,7 +4315,7 @@ name = "vue_eslint_parser___vue_eslint_parser_9.0.2.tgz"; path = fetchurl { name = "vue_eslint_parser___vue_eslint_parser_9.0.2.tgz"; - url = "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.0.2.tgz"; + url = "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.0.2.tgz"; sha512 = "uCPQwTGjOtAYrwnU+76pYxalhjsh7iFBsHwBqDHiOPTxtICDaraO4Szw54WFTNZTAEsgHHzqFOu1mmnBOBRzDA=="; }; } @@ -4317,7 +4323,7 @@ name = "vue_i18n___vue_i18n_9.2.2.tgz"; path = fetchurl { name = "vue_i18n___vue_i18n_9.2.2.tgz"; - url = "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.2.2.tgz"; + url = "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.2.2.tgz"; sha512 = "yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ=="; }; } @@ -4325,7 +4331,7 @@ name = "vue_router___vue_router_4.1.6.tgz"; path = fetchurl { name = "vue_router___vue_router_4.1.6.tgz"; - url = "https://registry.yarnpkg.com/vue-router/-/vue-router-4.1.6.tgz"; + url = "https://registry.yarnpkg.com/vue-router/-/vue-router-4.1.6.tgz"; sha512 = "DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ=="; }; } @@ -4333,7 +4339,7 @@ name = "vue___vue_3.2.45.tgz"; path = fetchurl { name = "vue___vue_3.2.45.tgz"; - url = "https://registry.yarnpkg.com/vue/-/vue-3.2.45.tgz"; + url = "https://registry.yarnpkg.com/vue/-/vue-3.2.45.tgz"; sha512 = "9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA=="; }; } @@ -4341,7 +4347,7 @@ name = "webidl_conversions___webidl_conversions_4.0.2.tgz"; path = fetchurl { name = "webidl_conversions___webidl_conversions_4.0.2.tgz"; - url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz"; + url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz"; sha512 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="; }; } @@ -4349,7 +4355,7 @@ name = "whatwg_url___whatwg_url_7.1.0.tgz"; path = fetchurl { name = "whatwg_url___whatwg_url_7.1.0.tgz"; - url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz"; + url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz"; sha512 = "WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg=="; }; } @@ -4357,7 +4363,7 @@ name = "which_boxed_primitive___which_boxed_primitive_1.0.2.tgz"; path = fetchurl { name = "which_boxed_primitive___which_boxed_primitive_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"; + url = "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"; sha512 = "bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="; }; } @@ -4365,7 +4371,7 @@ name = "which___which_2.0.2.tgz"; path = fetchurl { name = "which___which_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz"; + url = "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz"; sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; }; } @@ -4373,7 +4379,7 @@ name = "word_wrap___word_wrap_1.2.3.tgz"; path = fetchurl { name = "word_wrap___word_wrap_1.2.3.tgz"; - url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz"; + url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz"; sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; }; } @@ -4381,7 +4387,7 @@ name = "workbox_background_sync___workbox_background_sync_6.5.4.tgz"; path = fetchurl { name = "workbox_background_sync___workbox_background_sync_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-6.5.4.tgz"; sha512 = "0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g=="; }; } @@ -4389,7 +4395,7 @@ name = "workbox_broadcast_update___workbox_broadcast_update_6.5.4.tgz"; path = fetchurl { name = "workbox_broadcast_update___workbox_broadcast_update_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-broadcast-update/-/workbox-broadcast-update-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-broadcast-update/-/workbox-broadcast-update-6.5.4.tgz"; sha512 = "I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw=="; }; } @@ -4397,7 +4403,7 @@ name = "workbox_build___workbox_build_6.5.4.tgz"; path = fetchurl { name = "workbox_build___workbox_build_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-build/-/workbox-build-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-build/-/workbox-build-6.5.4.tgz"; sha512 = "kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA=="; }; } @@ -4405,7 +4411,7 @@ name = "workbox_cacheable_response___workbox_cacheable_response_6.5.4.tgz"; path = fetchurl { name = "workbox_cacheable_response___workbox_cacheable_response_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-cacheable-response/-/workbox-cacheable-response-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-cacheable-response/-/workbox-cacheable-response-6.5.4.tgz"; sha512 = "DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug=="; }; } @@ -4413,7 +4419,7 @@ name = "workbox_core___workbox_core_6.5.4.tgz"; path = fetchurl { name = "workbox_core___workbox_core_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-core/-/workbox-core-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-core/-/workbox-core-6.5.4.tgz"; sha512 = "OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q=="; }; } @@ -4421,7 +4427,7 @@ name = "workbox_expiration___workbox_expiration_6.5.4.tgz"; path = fetchurl { name = "workbox_expiration___workbox_expiration_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-expiration/-/workbox-expiration-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-expiration/-/workbox-expiration-6.5.4.tgz"; sha512 = "jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ=="; }; } @@ -4429,7 +4435,7 @@ name = "workbox_google_analytics___workbox_google_analytics_6.5.4.tgz"; path = fetchurl { name = "workbox_google_analytics___workbox_google_analytics_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-google-analytics/-/workbox-google-analytics-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-google-analytics/-/workbox-google-analytics-6.5.4.tgz"; sha512 = "8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg=="; }; } @@ -4437,7 +4443,7 @@ name = "workbox_navigation_preload___workbox_navigation_preload_6.5.4.tgz"; path = fetchurl { name = "workbox_navigation_preload___workbox_navigation_preload_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-navigation-preload/-/workbox-navigation-preload-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-navigation-preload/-/workbox-navigation-preload-6.5.4.tgz"; sha512 = "IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng=="; }; } @@ -4445,7 +4451,7 @@ name = "workbox_precaching___workbox_precaching_6.5.4.tgz"; path = fetchurl { name = "workbox_precaching___workbox_precaching_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-6.5.4.tgz"; sha512 = "hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg=="; }; } @@ -4453,7 +4459,7 @@ name = "workbox_range_requests___workbox_range_requests_6.5.4.tgz"; path = fetchurl { name = "workbox_range_requests___workbox_range_requests_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-range-requests/-/workbox-range-requests-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-range-requests/-/workbox-range-requests-6.5.4.tgz"; sha512 = "Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg=="; }; } @@ -4461,7 +4467,7 @@ name = "workbox_recipes___workbox_recipes_6.5.4.tgz"; path = fetchurl { name = "workbox_recipes___workbox_recipes_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-recipes/-/workbox-recipes-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-recipes/-/workbox-recipes-6.5.4.tgz"; sha512 = "QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA=="; }; } @@ -4469,7 +4475,7 @@ name = "workbox_routing___workbox_routing_6.5.4.tgz"; path = fetchurl { name = "workbox_routing___workbox_routing_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-routing/-/workbox-routing-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-routing/-/workbox-routing-6.5.4.tgz"; sha512 = "apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg=="; }; } @@ -4477,7 +4483,7 @@ name = "workbox_strategies___workbox_strategies_6.5.4.tgz"; path = fetchurl { name = "workbox_strategies___workbox_strategies_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-strategies/-/workbox-strategies-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-strategies/-/workbox-strategies-6.5.4.tgz"; sha512 = "DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw=="; }; } @@ -4485,7 +4491,7 @@ name = "workbox_streams___workbox_streams_6.5.4.tgz"; path = fetchurl { name = "workbox_streams___workbox_streams_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-streams/-/workbox-streams-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-streams/-/workbox-streams-6.5.4.tgz"; sha512 = "FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg=="; }; } @@ -4493,7 +4499,7 @@ name = "workbox_sw___workbox_sw_6.5.4.tgz"; path = fetchurl { name = "workbox_sw___workbox_sw_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-6.5.4.tgz"; sha512 = "vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA=="; }; } @@ -4501,7 +4507,7 @@ name = "workbox_window___workbox_window_6.5.4.tgz"; path = fetchurl { name = "workbox_window___workbox_window_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-window/-/workbox-window-6.5.4.tgz"; + url = "https://registry.yarnpkg.com/workbox-window/-/workbox-window-6.5.4.tgz"; sha512 = "HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug=="; }; } @@ -4509,7 +4515,7 @@ name = "wrappy___wrappy_1.0.2.tgz"; path = fetchurl { name = "wrappy___wrappy_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; + url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; sha1 = "tSQ9jz7BqjXxNkYFvA0QNuMKtp8="; }; } @@ -4517,7 +4523,7 @@ name = "xml_js___xml_js_1.6.11.tgz"; path = fetchurl { name = "xml_js___xml_js_1.6.11.tgz"; - url = "https://registry.yarnpkg.com/xml-js/-/xml-js-1.6.11.tgz"; + url = "https://registry.yarnpkg.com/xml-js/-/xml-js-1.6.11.tgz"; sha512 = "7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g=="; }; } @@ -4525,7 +4531,7 @@ name = "xml_name_validator___xml_name_validator_4.0.0.tgz"; path = fetchurl { name = "xml_name_validator___xml_name_validator_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz"; + url = "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz"; sha512 = "ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw=="; }; } @@ -4533,7 +4539,7 @@ name = "yallist___yallist_4.0.0.tgz"; path = fetchurl { name = "yallist___yallist_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz"; + url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz"; sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; }; } @@ -4541,7 +4547,7 @@ name = "yaml_eslint_parser___yaml_eslint_parser_0.3.2.tgz"; path = fetchurl { name = "yaml_eslint_parser___yaml_eslint_parser_0.3.2.tgz"; - url = "https://registry.yarnpkg.com/yaml-eslint-parser/-/yaml-eslint-parser-0.3.2.tgz"; + url = "https://registry.yarnpkg.com/yaml-eslint-parser/-/yaml-eslint-parser-0.3.2.tgz"; sha512 = "32kYO6kJUuZzqte82t4M/gB6/+11WAuHiEnK7FreMo20xsCKPeFH5tDBU7iWxR7zeJpNnMXfJyXwne48D0hGrg=="; }; } @@ -4549,7 +4555,7 @@ name = "yaml___yaml_1.10.2.tgz"; path = fetchurl { name = "yaml___yaml_1.10.2.tgz"; - url = "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz"; + url = "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz"; sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="; }; } @@ -4557,7 +4563,7 @@ name = "yocto_queue___yocto_queue_0.1.0.tgz"; path = fetchurl { name = "yocto_queue___yocto_queue_0.1.0.tgz"; - url = "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz"; + url = "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz"; sha512 = "rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="; }; } diff --git a/treeConfig.nix b/treeConfig.nix index 9e1d244..0449ab4 100644 --- a/treeConfig.nix +++ b/treeConfig.nix @@ -15,6 +15,7 @@ "hosts/hetzner-vm/modules/mailserver".functor.enable = true; "hosts/hetzner-vm/modules/piped".functor.enable = true; "hosts/hetzner-vm/containers/storage/profiles".functor.enable = true; + "hosts/hetzner-vm/containers/matrix/profiles".functor.enable = true; # Profiles "profiles/*".functor.enable = true;