Merge master into staging-next

authored by

nixpkgs-ci[bot] and committed by
GitHub
746c76aa 1717e8a9

+3788 -3136
+1 -1
.editorconfig
··· 90 90 insert_final_newline = unset 91 91 trim_trailing_whitespace = unset 92 92 93 - [pkgs/development/compilers/elm/registry.dat] 93 + [registry.dat] 94 94 end_of_line = unset 95 95 insert_final_newline = unset 96 96
+13
maintainers/maintainer-list.nix
··· 2375 2375 githubId = 97070581; 2376 2376 name = "averagebit"; 2377 2377 }; 2378 + averdow = { 2379 + email = "aaron@verdow.com"; 2380 + github = "AaronVerDow"; 2381 + githubId = 2530548; 2382 + name = "Aaron VerDow"; 2383 + }; 2378 2384 averelld = { 2379 2385 email = "averell+nixos@rxd4.com"; 2380 2386 github = "averelld"; ··· 10822 10828 github = "jerrysm64"; 10823 10829 githubId = 42114389; 10824 10830 name = "Jerry Starke"; 10831 + }; 10832 + jervw = { 10833 + email = "jervw@pm.me"; 10834 + github = "jervw"; 10835 + githubId = 53620688; 10836 + name = "Jere Vuola"; 10837 + keys = [ { fingerprint = "56C2 5B5B 2075 6352 B4B0 E17E F188 3717 47DA 5895"; } ]; 10825 10838 }; 10826 10839 jeschli = { 10827 10840 email = "jeschli@gmail.com";
+1
nixos/modules/module-list.nix
··· 1608 1608 ./services/web-servers/darkhttpd.nix 1609 1609 ./services/web-servers/fcgiwrap.nix 1610 1610 ./services/web-servers/garage.nix 1611 + ./services/web-servers/h2o/default.nix 1611 1612 ./services/web-servers/hitch/default.nix 1612 1613 ./services/web-servers/jboss/default.nix 1613 1614 ./services/web-servers/keter
+10 -6
nixos/modules/services/security/kanidm.nix
··· 855 855 User = "kanidm"; 856 856 Group = "kanidm"; 857 857 858 - BindPaths = [ 859 - # To create the socket 860 - "/run/kanidmd:/run/kanidmd" 861 - # To store backups 862 - cfg.serverSettings.online_backup.path 863 - ]; 858 + BindPaths = 859 + [ 860 + # To create the socket 861 + "/run/kanidmd:/run/kanidmd" 862 + # To store backups 863 + cfg.serverSettings.online_backup.path 864 + ] 865 + ++ optional ( 866 + cfg.enablePam && cfg.unixSettings ? home_mount_prefix 867 + ) cfg.unixSettings.home_mount_prefix; 864 868 865 869 AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ]; 866 870 CapabilityBoundingSet = [ "CAP_NET_BIND_SERVICE" ];
+45 -42
nixos/modules/services/web-apps/mobilizon.nix
··· 5 5 ... 6 6 }: 7 7 8 - with lib; 9 - 10 8 let 9 + inherit (lib) 10 + mkEnableOption 11 + mkPackageOption 12 + mkOption 13 + mkDefault 14 + mkIf 15 + types 16 + literalExpression 17 + ; 18 + 11 19 cfg = config.services.mobilizon; 12 20 13 21 user = "mobilizon"; ··· 20 28 # Make a package containing launchers with the correct envirenment, instead of 21 29 # setting it with systemd services, so that the user can also use them without 22 30 # troubles 23 - launchers = pkgs.stdenv.mkDerivation rec { 24 - pname = "${cfg.package.pname}-launchers"; 25 - inherit (cfg.package) version; 31 + launchers = 32 + pkgs.runCommand "${cfg.package.pname}-launchers-${cfg.package.version}" 33 + { 34 + src = cfg.package; 35 + nativeBuildInputs = with pkgs; [ makeWrapper ]; 36 + } 37 + '' 38 + mkdir -p $out/bin 26 39 27 - src = cfg.package; 40 + makeWrapper \ 41 + $src/bin/mobilizon \ 42 + $out/bin/mobilizon \ 43 + --run '. ${secretEnvFile}' \ 44 + --set MOBILIZON_CONFIG_PATH "${configFile}" \ 45 + --set-default RELEASE_TMP "/tmp" 28 46 29 - nativeBuildInputs = with pkgs; [ makeWrapper ]; 30 - 31 - dontBuild = true; 32 - 33 - installPhase = '' 34 - mkdir -p $out/bin 35 - 36 - makeWrapper \ 37 - $src/bin/mobilizon \ 38 - $out/bin/mobilizon \ 39 - --run '. ${secretEnvFile}' \ 40 - --set MOBILIZON_CONFIG_PATH "${configFile}" \ 41 - --set-default RELEASE_TMP "/tmp" 42 - 43 - makeWrapper \ 44 - $src/bin/mobilizon_ctl \ 45 - $out/bin/mobilizon_ctl \ 46 - --run '. ${secretEnvFile}' \ 47 - --set MOBILIZON_CONFIG_PATH "${configFile}" \ 48 - --set-default RELEASE_TMP "/tmp" 49 - ''; 50 - }; 47 + makeWrapper \ 48 + $src/bin/mobilizon_ctl \ 49 + $out/bin/mobilizon_ctl \ 50 + --run '. ${secretEnvFile}' \ 51 + --set MOBILIZON_CONFIG_PATH "${configFile}" \ 52 + --set-default RELEASE_TMP "/tmp" 53 + ''; 51 54 52 55 repoSettings = cfg.settings.":mobilizon"."Mobilizon.Storage.Repo"; 53 56 instanceSettings = cfg.settings.":mobilizon".":instance"; ··· 424 427 virtualHosts."${hostname}" = { 425 428 enableACME = lib.mkDefault true; 426 429 forceSSL = lib.mkDefault true; 427 - extraConfig = '' 428 - proxy_http_version 1.1; 429 - proxy_set_header Upgrade $http_upgrade; 430 - proxy_set_header Connection "upgrade"; 431 - proxy_set_header Host $host; 432 - proxy_set_header X-Real-IP $remote_addr; 433 - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 434 - proxy_set_header X-Forwarded-Proto $scheme; 435 - ''; 436 430 locations."/" = { 437 431 inherit proxyPass; 432 + proxyWebsockets = true; 433 + recommendedProxySettings = lib.mkDefault true; 434 + extraConfig = '' 435 + expires off; 436 + add_header Cache-Control "public, max-age=0, s-maxage=0, must-revalidate" always; 437 + ''; 438 438 }; 439 - locations."~ ^/(js|css|img)" = { 439 + locations."~ ^/(assets|img)" = { 440 440 root = "${cfg.package}/lib/mobilizon-${cfg.package.version}/priv/static"; 441 441 extraConfig = '' 442 - etag off; 443 442 access_log off; 444 - add_header Cache-Control "public, max-age=31536000, immutable"; 443 + add_header Cache-Control "public, max-age=31536000, s-maxage=31536000, immutable"; 445 444 ''; 446 445 }; 447 446 locations."~ ^/(media|proxy)" = { 448 447 inherit proxyPass; 448 + recommendedProxySettings = lib.mkDefault true; 449 + # Combination of HTTP/1.1 and disabled request buffering is 450 + # needed to directly forward chunked responses 449 451 extraConfig = '' 450 - etag off; 452 + proxy_http_version 1.1; 453 + proxy_request_buffering off; 451 454 access_log off; 452 - add_header Cache-Control "public, max-age=31536000, immutable"; 455 + add_header Cache-Control "public, max-age=31536000, s-maxage=31536000, immutable"; 453 456 ''; 454 457 }; 455 458 };
+263
nixos/modules/services/web-servers/h2o/default.nix
··· 1 + { 2 + config, 3 + lib, 4 + pkgs, 5 + ... 6 + }: 7 + 8 + # TODO: ACME 9 + # TODO: Gems includes for Mruby 10 + # TODO: Recommended options 11 + let 12 + cfg = config.services.h2o; 13 + 14 + inherit (lib) 15 + literalExpression 16 + mkDefault 17 + mkEnableOption 18 + mkIf 19 + mkOption 20 + types 21 + ; 22 + 23 + settingsFormat = pkgs.formats.yaml { }; 24 + 25 + hostsConfig = lib.concatMapAttrs ( 26 + name: value: 27 + let 28 + port = { 29 + HTTP = lib.attrByPath [ "http" "port" ] cfg.defaultHTTPListenPort value; 30 + TLS = lib.attrByPath [ "tls" "port" ] cfg.defaultTLSListenPort value; 31 + }; 32 + serverName = if value.serverName != null then value.serverName else name; 33 + in 34 + # HTTP settings 35 + lib.optionalAttrs (value.tls == null || value.tls.policy == "add") { 36 + "${serverName}:${builtins.toString port.HTTP}" = value.settings // { 37 + listen.port = port.HTTP; 38 + }; 39 + } 40 + # Redirect settings 41 + // lib.optionalAttrs (value.tls != null && value.tls.policy == "force") { 42 + "${serverName}:${builtins.toString port.HTTP}" = { 43 + listen.port = port.HTTP; 44 + paths."/" = { 45 + redirect = { 46 + status = value.tls.redirectCode; 47 + url = "https://${serverName}:${builtins.toString port.TLS}"; 48 + }; 49 + }; 50 + }; 51 + } 52 + # TLS settings 53 + // 54 + lib.optionalAttrs 55 + ( 56 + value.tls != null 57 + && builtins.elem value.tls.policy [ 58 + "add" 59 + "only" 60 + "force" 61 + ] 62 + ) 63 + { 64 + "${serverName}:${builtins.toString port.TLS}" = value.settings // { 65 + listen = 66 + let 67 + identity = value.tls.identity; 68 + in 69 + { 70 + port = port.TLS; 71 + ssl = value.tls.extraSettings or { } // { 72 + inherit identity; 73 + }; 74 + }; 75 + }; 76 + } 77 + ) cfg.hosts; 78 + 79 + h2oConfig = settingsFormat.generate "h2o.yaml" ( 80 + lib.recursiveUpdate { hosts = hostsConfig; } cfg.settings 81 + ); 82 + in 83 + { 84 + options = { 85 + services.h2o = { 86 + enable = mkEnableOption "H2O web server"; 87 + 88 + user = mkOption { 89 + type = types.nonEmptyStr; 90 + default = "h2o"; 91 + description = "User running H2O service"; 92 + }; 93 + 94 + group = mkOption { 95 + type = types.nonEmptyStr; 96 + default = "h2o"; 97 + description = "Group running H2O services"; 98 + }; 99 + 100 + package = lib.mkPackageOption pkgs "h2o" { 101 + example = '' 102 + pkgs.h2o.override { 103 + withMruby = true; 104 + }; 105 + ''; 106 + }; 107 + 108 + defaultHTTPListenPort = mkOption { 109 + type = types.port; 110 + default = 80; 111 + description = '' 112 + If hosts do not specify listen.port, use these ports for HTTP by default. 113 + ''; 114 + example = 8080; 115 + }; 116 + 117 + defaultTLSListenPort = mkOption { 118 + type = types.port; 119 + default = 443; 120 + description = '' 121 + If hosts do not specify listen.port, use these ports for SSL by default. 122 + ''; 123 + example = 8443; 124 + }; 125 + 126 + mode = mkOption { 127 + type = 128 + with types; 129 + nullOr (enum [ 130 + "daemon" 131 + "master" 132 + "worker" 133 + "test" 134 + ]); 135 + default = "master"; 136 + description = "Operating mode of H2O"; 137 + }; 138 + 139 + settings = mkOption { 140 + type = settingsFormat.type; 141 + description = "Configuration for H2O (see <https://h2o.examp1e.net/configure.html>)"; 142 + }; 143 + 144 + hosts = mkOption { 145 + type = types.attrsOf ( 146 + types.submodule ( 147 + import ./vhost-options.nix { 148 + inherit config lib; 149 + } 150 + ) 151 + ); 152 + default = { }; 153 + description = '' 154 + The `hosts` config to be merged with the settings. 155 + 156 + Note that unlike YAML used for H2O, Nix will not support duplicate 157 + keys to, for instance, have multiple listens in a host block; use the 158 + virtual host options in like `http` & `tls` or use `$HOST:$PORT` 159 + keys if manually specifying config. 160 + ''; 161 + example = 162 + literalExpression 163 + # nix 164 + '' 165 + { 166 + "hydra.example.com" = { 167 + tls = { 168 + policy = "force"; 169 + indentity = [ 170 + { 171 + key-file = "/path/to/key"; 172 + certificate-file = "/path/to/cert"; 173 + }; 174 + ]; 175 + extraSettings = { 176 + minimum-version = "TLSv1.3"; 177 + }; 178 + }; 179 + settings = { 180 + paths."/" = { 181 + "file:dir" = "/var/www/default"; 182 + }; 183 + }; 184 + }; 185 + } 186 + ''; 187 + }; 188 + }; 189 + }; 190 + 191 + config = mkIf cfg.enable { 192 + users = { 193 + users.${cfg.user} = 194 + { 195 + group = cfg.group; 196 + } 197 + // lib.optionalAttrs (cfg.user == "h2o") { 198 + isSystemUser = true; 199 + }; 200 + groups.${cfg.group} = { }; 201 + }; 202 + 203 + systemd.services.h2o = { 204 + description = "H2O web server service"; 205 + wantedBy = [ "multi-user.target" ]; 206 + after = [ "network.target" ]; 207 + 208 + serviceConfig = { 209 + ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 210 + ExecStop = "${pkgs.coreutils}/bin/kill -s QUIT $MAINPID"; 211 + User = cfg.user; 212 + Restart = "always"; 213 + RestartSec = "10s"; 214 + RuntimeDirectory = "h2o"; 215 + RuntimeDirectoryMode = "0750"; 216 + CacheDirectory = "h2o"; 217 + CacheDirectoryMode = "0750"; 218 + LogsDirectory = "h2o"; 219 + LogsDirectoryMode = "0750"; 220 + ProtectSystem = "strict"; 221 + ProtectHome = mkDefault true; 222 + PrivateTmp = true; 223 + PrivateDevices = true; 224 + ProtectHostname = true; 225 + ProtectClock = true; 226 + ProtectKernelTunables = true; 227 + ProtectKernelModules = true; 228 + ProtectKernelLogs = true; 229 + ProtectControlGroups = true; 230 + RestrictAddressFamilies = [ 231 + "AF_UNIX" 232 + "AF_INET" 233 + "AF_INET6" 234 + ]; 235 + RestrictNamespaces = true; 236 + LockPersonality = true; 237 + RestrictRealtime = true; 238 + RestrictSUIDSGID = true; 239 + RemoveIPC = true; 240 + PrivateMounts = true; 241 + AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ]; 242 + CapabilitiesBoundingSet = [ "CAP_NET_BIND_SERVICE" ]; 243 + }; 244 + 245 + script = 246 + let 247 + args = 248 + [ 249 + "--conf" 250 + "${h2oConfig}" 251 + ] 252 + ++ lib.optionals (cfg.mode != null) [ 253 + "--mode" 254 + cfg.mode 255 + ]; 256 + in 257 + '' 258 + ${lib.getExe cfg.package} ${lib.strings.escapeShellArgs args} 259 + ''; 260 + }; 261 + }; 262 + 263 + }
+151
nixos/modules/services/web-servers/h2o/vhost-options.nix
··· 1 + { config, lib, ... }: 2 + 3 + let 4 + inherit (lib) 5 + literalExpression 6 + mkOption 7 + types 8 + ; 9 + in 10 + { 11 + options = { 12 + serverName = mkOption { 13 + type = types.nullOr types.nonEmptyStr; 14 + default = null; 15 + description = '' 16 + Server name to be used for this virtual host. Defaults to attribute 17 + name in hosts. 18 + ''; 19 + example = "example.org"; 20 + }; 21 + 22 + http = mkOption { 23 + type = types.nullOr ( 24 + types.submodule { 25 + options = { 26 + port = mkOption { 27 + type = types.port; 28 + default = config.services.h2o.defaultHTTPListenPort; 29 + defaultText = literalExpression '' 30 + config.services.h2o.defaultHTTPListenPort 31 + ''; 32 + description = '' 33 + Override the default HTTP port for this virtual host. 34 + ''; 35 + example = literalExpression "8080"; 36 + }; 37 + }; 38 + } 39 + ); 40 + default = null; 41 + description = "HTTP options for virtual host"; 42 + }; 43 + 44 + tls = mkOption { 45 + type = types.nullOr ( 46 + types.submodule { 47 + options = { 48 + port = mkOption { 49 + type = types.port; 50 + default = config.services.h2o.defaultTLSListenPort; 51 + defaultText = literalExpression '' 52 + config.services.h2o.defaultTLSListenPort 53 + ''; 54 + description = '' 55 + Override the default TLS port for this virtual host."; 56 + ''; 57 + example = 8443; 58 + }; 59 + policy = mkOption { 60 + type = types.enum [ 61 + "add" 62 + "only" 63 + "force" 64 + ]; 65 + description = '' 66 + `add` will additionally listen for TLS connections. `only` will 67 + disable TLS connections. `force` will redirect non-TLS traffic 68 + to the TLS connection. 69 + ''; 70 + example = "force"; 71 + }; 72 + redirectCode = mkOption { 73 + type = types.ints.between 300 399; 74 + default = 301; 75 + example = 308; 76 + description = '' 77 + HTTP status used by `globalRedirect` & `forceSSL`. Possible 78 + usecases include temporary (302, 307) redirects, keeping the 79 + request method & body (307, 308), or explicitly resetting the 80 + method to GET (303). See 81 + <https://developer.mozilla.org/en-US/docs/Web/HTTP/Redirections>. 82 + ''; 83 + }; 84 + identity = mkOption { 85 + type = types.nonEmptyListOf ( 86 + types.submodule { 87 + options = { 88 + key-file = mkOption { 89 + type = types.path; 90 + description = "Path to key file"; 91 + }; 92 + certificate-file = mkOption { 93 + type = types.path; 94 + description = "Path to certificate file"; 95 + }; 96 + }; 97 + } 98 + ); 99 + default = null; 100 + description = '' 101 + Key / certificate pairs for the virtual host. 102 + ''; 103 + example = 104 + literalExpression 105 + # nix 106 + '' 107 + { 108 + indentities = [ 109 + { 110 + key-file = "/path/to/rsa.key"; 111 + certificate-file = "/path/to/rsa.crt"; 112 + } 113 + { 114 + key-file = "/path/to/ecdsa.key"; 115 + certificate-file = "/path/to/ecdsa.crt"; 116 + } 117 + ]; 118 + } 119 + ''; 120 + }; 121 + extraSettings = mkOption { 122 + type = types.nullOr types.attrs; 123 + default = null; 124 + description = '' 125 + Additional TLS/SSL-related configuration options. 126 + ''; 127 + example = 128 + literalExpression 129 + # nix 130 + '' 131 + { 132 + minimum-version = "TLSv1.3"; 133 + } 134 + ''; 135 + }; 136 + }; 137 + } 138 + ); 139 + default = null; 140 + description = "TLS options for virtual host"; 141 + }; 142 + 143 + settings = mkOption { 144 + type = types.attrs; 145 + description = '' 146 + Attrset to be transformed into YAML for host config. Note that the HTTP 147 + / TLS configurations will override these config values. 148 + ''; 149 + }; 150 + }; 151 + }
+2 -1
nixos/tests/all-tests.nix
··· 420 420 guacamole-server = handleTest ./guacamole-server.nix {}; 421 421 guix = handleTest ./guix {}; 422 422 gvisor = handleTest ./gvisor.nix {}; 423 + h2o = discoverTests (import ./web-servers/h2o { inherit handleTestOn; }); 423 424 hadoop = import ./hadoop { inherit handleTestOn; package=pkgs.hadoop; }; 424 425 hadoop_3_3 = import ./hadoop { inherit handleTestOn; package=pkgs.hadoop_3_3; }; 425 426 hadoop2 = import ./hadoop { inherit handleTestOn; package=pkgs.hadoop2; }; ··· 621 622 misc = handleTest ./misc.nix {}; 622 623 misskey = handleTest ./misskey.nix {}; 623 624 mjolnir = handleTest ./matrix/mjolnir.nix {}; 624 - mobilizon = handleTest ./mobilizon.nix {}; 625 + mobilizon = runTest ./mobilizon.nix; 625 626 mod_perl = handleTest ./mod_perl.nix {}; 626 627 molly-brown = handleTest ./molly-brown.nix {}; 627 628 mollysocket = handleTest ./mollysocket.nix { };
+38 -40
nixos/tests/mobilizon.nix
··· 1 - import ./make-test-python.nix ( 2 - { lib, ... }: 3 - let 4 - certs = import ./common/acme/server/snakeoil-certs.nix; 5 - mobilizonDomain = certs.domain; 6 - port = 41395; 7 - in 1 + { lib, ... }: 2 + let 3 + certs = import ./common/acme/server/snakeoil-certs.nix; 4 + mobilizonDomain = certs.domain; 5 + port = 41395; 6 + in 8 7 9 - { 10 - name = "mobilizon"; 11 - meta.maintainers = with lib.maintainers; [ 12 - minijackson 13 - erictapen 14 - ]; 8 + { 9 + name = "mobilizon"; 10 + meta.maintainers = with lib.maintainers; [ 11 + minijackson 12 + erictapen 13 + ]; 15 14 16 - nodes.server = 17 - { ... }: 18 - { 19 - services.mobilizon = { 20 - enable = true; 21 - settings = { 22 - ":mobilizon" = { 23 - ":instance" = { 24 - name = "Test Mobilizon"; 25 - hostname = mobilizonDomain; 26 - }; 27 - "Mobilizon.Web.Endpoint".http.port = port; 15 + nodes.server = 16 + { ... }: 17 + { 18 + services.mobilizon = { 19 + enable = true; 20 + settings = { 21 + ":mobilizon" = { 22 + ":instance" = { 23 + name = "Test Mobilizon"; 24 + hostname = mobilizonDomain; 28 25 }; 26 + "Mobilizon.Web.Endpoint".http.port = port; 29 27 }; 30 28 }; 29 + }; 31 30 32 - security.pki.certificateFiles = [ certs.ca.cert ]; 31 + security.pki.certificateFiles = [ certs.ca.cert ]; 33 32 34 - services.nginx.virtualHosts."${mobilizonDomain}" = { 35 - enableACME = lib.mkForce false; 36 - sslCertificate = certs.${mobilizonDomain}.cert; 37 - sslCertificateKey = certs.${mobilizonDomain}.key; 38 - }; 33 + services.nginx.virtualHosts."${mobilizonDomain}" = { 34 + enableACME = lib.mkForce false; 35 + sslCertificate = certs.${mobilizonDomain}.cert; 36 + sslCertificateKey = certs.${mobilizonDomain}.key; 37 + }; 39 38 40 - networking.hosts."::1" = [ mobilizonDomain ]; 41 - }; 39 + networking.hosts."::1" = [ mobilizonDomain ]; 40 + }; 42 41 43 - testScript = '' 44 - server.wait_for_unit("mobilizon.service") 45 - server.wait_for_open_port(${toString port}) 46 - server.succeed("curl --fail https://${mobilizonDomain}/") 47 - ''; 48 - } 49 - ) 42 + testScript = '' 43 + server.wait_for_unit("mobilizon.service") 44 + server.wait_for_open_port(${toString port}) 45 + server.succeed("curl --fail https://${mobilizonDomain}/") 46 + ''; 47 + }
+138
nixos/tests/web-servers/h2o/basic.nix
··· 1 + import ../../make-test-python.nix ( 2 + { lib, pkgs, ... }: 3 + 4 + # Tests basics such as TLS, creating a mime-type & serving Unicode characters. 5 + 6 + let 7 + domain = { 8 + HTTP = "h2o.local"; 9 + TLS = "acme.test"; 10 + }; 11 + 12 + port = { 13 + HTTP = 8080; 14 + TLS = 8443; 15 + }; 16 + 17 + sawatdi_chao_lok = "สวัสดีชาวโลก"; 18 + 19 + hello_world_txt = pkgs.writeTextFile { 20 + name = "/hello_world.txt"; 21 + text = sawatdi_chao_lok; 22 + }; 23 + 24 + hello_world_rst = pkgs.writeTextFile { 25 + name = "/hello_world.rst"; 26 + text = # rst 27 + '' 28 + ==================== 29 + Thaiger Sprint 2025‼ 30 + ==================== 31 + 32 + ${sawatdi_chao_lok} 33 + ''; 34 + }; 35 + in 36 + { 37 + name = "h2o-basic"; 38 + 39 + meta = { 40 + maintainers = with lib.maintainers; [ toastal ]; 41 + }; 42 + 43 + nodes = { 44 + server = 45 + { pkgs, ... }: 46 + { 47 + services.h2o = { 48 + enable = true; 49 + defaultHTTPListenPort = port.HTTP; 50 + defaultTLSListenPort = port.TLS; 51 + hosts = { 52 + "${domain.HTTP}" = { 53 + settings = { 54 + paths = { 55 + "/hello_world.txt" = { 56 + "file.file" = "${hello_world_txt}"; 57 + }; 58 + }; 59 + }; 60 + }; 61 + "${domain.TLS}" = { 62 + tls = { 63 + policy = "force"; 64 + identity = [ 65 + { 66 + key-file = ../../common/acme/server/acme.test.key.pem; 67 + certificate-file = ../../common/acme/server/acme.test.cert.pem; 68 + } 69 + ]; 70 + extraSettings = { 71 + minimum-version = "TLSv1.3"; 72 + }; 73 + }; 74 + settings = { 75 + paths = { 76 + "/hello_world.rst" = { 77 + "file.file" = "${hello_world_rst}"; 78 + }; 79 + }; 80 + }; 81 + }; 82 + }; 83 + settings = { 84 + compress = "ON"; 85 + compress-minimum-size = 32; 86 + "file.mime.addtypes" = { 87 + "text/x-rst" = { 88 + extensions = [ ".rst" ]; 89 + is_compressible = "YES"; 90 + }; 91 + }; 92 + ssl-offload = "kernel"; 93 + }; 94 + }; 95 + 96 + security.pki.certificates = [ 97 + (builtins.readFile ../../common/acme/server/ca.cert.pem) 98 + ]; 99 + 100 + networking = { 101 + firewall.allowedTCPPorts = with port; [ 102 + HTTP 103 + TLS 104 + ]; 105 + extraHosts = '' 106 + 127.0.0.1 ${domain.HTTP} 107 + 127.0.0.1 ${domain.TLS} 108 + ''; 109 + }; 110 + }; 111 + }; 112 + 113 + testScript = # python 114 + '' 115 + server.wait_for_unit("h2o.service") 116 + 117 + http_hello_world_body = server.succeed("curl --fail-with-body 'http://${domain.HTTP}:${builtins.toString port.HTTP}/hello_world.txt'") 118 + assert "${sawatdi_chao_lok}" in http_hello_world_body 119 + 120 + tls_hello_world_head = server.succeed("curl -v --head --compressed --http2 --tlsv1.3 --fail-with-body 'https://${domain.TLS}:${builtins.toString port.TLS}/hello_world.rst'").lower() 121 + print(tls_hello_world_head) 122 + assert "http/2 200" in tls_hello_world_head 123 + assert "server: h2o" in tls_hello_world_head 124 + assert "content-type: text/x-rst" in tls_hello_world_head 125 + 126 + tls_hello_world_body = server.succeed("curl -v --http2 --tlsv1.3 --compressed --fail-with-body 'https://${domain.TLS}:${builtins.toString port.TLS}/hello_world.rst'") 127 + assert "${sawatdi_chao_lok}" in tls_hello_world_body 128 + 129 + tls_hello_world_head_redirected = server.succeed("curl -v --head --fail-with-body 'http://${domain.TLS}:${builtins.toString port.HTTP}/hello_world.rst'").lower() 130 + assert "redirected" in tls_hello_world_head_redirected 131 + 132 + server.fail("curl --location --max-redirs 0 'http://${domain.TLS}:${builtins.toString port.HTTP}/hello_world.rst'") 133 + 134 + tls_hello_world_body_redirected = server.succeed("curl -v --location --fail-with-body 'http://${domain.TLS}:${builtins.toString port.HTTP}/hello_world.rst'") 135 + assert "${sawatdi_chao_lok}" in tls_hello_world_body_redirected 136 + ''; 137 + } 138 + )
+16
nixos/tests/web-servers/h2o/default.nix
··· 1 + { 2 + system ? builtins.currentSystem, 3 + handleTestOn, 4 + }: 5 + 6 + let 7 + supportedSystems = [ 8 + "x86_64-linux" 9 + "i686-linux" 10 + "aarch64-linux" 11 + ]; 12 + in 13 + { 14 + basic = handleTestOn supportedSystems ./basic.nix { inherit system; }; 15 + mruby = handleTestOn supportedSystems ./mruby.nix { inherit system; }; 16 + }
+3
nixos/tests/web-servers/h2o/file_handler.rb
··· 1 + Proc.new do |env| 2 + [200, {'content-type' => 'text/plain'}, ["FILE_HANDLER"]] 3 + end
+64
nixos/tests/web-servers/h2o/mruby.nix
··· 1 + import ../../make-test-python.nix ( 2 + { lib, pkgs, ... }: 3 + 4 + let 5 + domain = "h2o.local"; 6 + 7 + port = 8080; 8 + 9 + sawatdi_chao_lok = "สวัสดีชาวโลก"; 10 + in 11 + { 12 + name = "h2o-mruby"; 13 + 14 + meta = { 15 + maintainers = with lib.maintainers; [ toastal ]; 16 + }; 17 + 18 + nodes = { 19 + server = 20 + { pkgs, ... }: 21 + { 22 + services.h2o = { 23 + enable = true; 24 + package = pkgs.h2o.override { withMruby = true; }; 25 + settings = { 26 + listen = port; 27 + hosts = { 28 + "${domain}" = { 29 + paths = { 30 + "/hello_world" = { 31 + "mruby.handler" = # ruby 32 + '' 33 + Proc.new do |env| 34 + [200, {'content-type' => 'text/plain'}, ["${sawatdi_chao_lok}"]] 35 + end 36 + ''; 37 + }; 38 + "/file_handler" = { 39 + "mruby.handler-file" = ./file_handler.rb; 40 + }; 41 + }; 42 + }; 43 + }; 44 + }; 45 + }; 46 + 47 + networking.extraHosts = '' 48 + 127.0.0.1 ${domain} 49 + ''; 50 + }; 51 + }; 52 + 53 + testScript = # python 54 + '' 55 + server.wait_for_unit("h2o.service") 56 + 57 + hello_world = server.succeed("curl --fail-with-body http://${domain}:${builtins.toString port}/hello_world") 58 + assert "${sawatdi_chao_lok}" in hello_world 59 + 60 + file_handler = server.succeed("curl --fail-with-body http://${domain}:${builtins.toString port}/file_handler") 61 + assert "FILE_HANDLER" in file_handler 62 + ''; 63 + } 64 + )
+26
pkgs/applications/editors/vim/plugins/generated.nix
··· 4496 4496 meta.hydraPlatforms = [ ]; 4497 4497 }; 4498 4498 4499 + faust-nvim = buildVimPlugin { 4500 + pname = "faust-nvim"; 4501 + version = "2022-06-01"; 4502 + src = fetchFromGitHub { 4503 + owner = "madskjeldgaard"; 4504 + repo = "faust-nvim"; 4505 + rev = "d6e8b1658233df74ac8dc1dc84a3f7568dc00586"; 4506 + sha256 = "0zf8zfc6baxd93w5iyhldcda5izb5ldrxb0wkcxqkp95azsc871w"; 4507 + }; 4508 + meta.homepage = "https://github.com/madskjeldgaard/faust-nvim/"; 4509 + meta.hydraPlatforms = [ ]; 4510 + }; 4511 + 4499 4512 fcitx-vim = buildVimPlugin { 4500 4513 pname = "fcitx.vim"; 4501 4514 version = "2024-04-21"; ··· 5054 5067 sha256 = "0mspffvg2z5lx4ck96d2pnf1azy3s1zq720n6abnxzajadmnh47r"; 5055 5068 }; 5056 5069 meta.homepage = "https://github.com/ThePrimeagen/git-worktree.nvim/"; 5070 + meta.hydraPlatforms = [ ]; 5071 + }; 5072 + 5073 + github-nvim-theme = buildVimPlugin { 5074 + pname = "github-nvim-theme"; 5075 + version = "2024-12-31"; 5076 + src = fetchFromGitHub { 5077 + owner = "projekt0n"; 5078 + repo = "github-nvim-theme"; 5079 + rev = "c106c9472154d6b2c74b74565616b877ae8ed31d"; 5080 + sha256 = "1w7lz4bgfm8hq1mir4hcr8ik585d4l4w7bjl8yl3g3zklj8223pw"; 5081 + }; 5082 + meta.homepage = "https://github.com/projekt0n/github-nvim-theme/"; 5057 5083 meta.hydraPlatforms = [ ]; 5058 5084 }; 5059 5085
+11
pkgs/applications/editors/vim/plugins/overrides.nix
··· 1099 1099 dependencies = [ self.nui-nvim ]; 1100 1100 }; 1101 1101 1102 + faust-nvim = super.faust-nvim.overrideAttrs { 1103 + dependencies = with self; [ 1104 + luasnip 1105 + nvim-fzf 1106 + ]; 1107 + nvimSkipModule = [ 1108 + # E5108: Error executing lua vim/_init_packages.lua:0: ...in-faust-nvim-2022-06-01/lua/faust-nvim/autosnippets.lua:3: '=' expected near 'wd' 1109 + "faust-nvim.autosnippets" 1110 + ]; 1111 + }; 1112 + 1102 1113 fcitx-vim = super.fcitx-vim.overrideAttrs { 1103 1114 passthru.python3Dependencies = ps: with ps; [ dbus-python ]; 1104 1115 meta = {
+2
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 344 344 https://github.com/Chaitanyabsprip/fastaction.nvim/,HEAD, 345 345 https://github.com/pteroctopus/faster.nvim/,HEAD, 346 346 https://github.com/konfekt/fastfold/,, 347 + https://github.com/madskjeldgaard/faust-nvim/,HEAD, 347 348 https://github.com/lilydjwg/fcitx.vim/,fcitx5, 348 349 https://github.com/bakpakin/fennel.vim/,, 349 350 https://github.com/wincent/ferret/,, ··· 387 388 https://github.com/rhysd/git-messenger.vim/,, 388 389 https://github.com/mikesmithgh/git-prompt-string-lualine.nvim/,HEAD, 389 390 https://github.com/ThePrimeagen/git-worktree.nvim/,, 391 + https://github.com/projekt0n/github-nvim-theme/,HEAD, 390 392 https://github.com/wintermute-cell/gitignore.nvim/,HEAD, 391 393 https://github.com/vim-scripts/gitignore.vim/,, 392 394 https://github.com/ruifm/gitlinker.nvim/,,
+413 -413
pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
··· 1 1 { 2 - version = "135.0"; 2 + version = "135.0.1"; 3 3 sources = [ 4 4 { 5 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ach/firefox-135.0.tar.xz"; 5 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ach/firefox-135.0.1.tar.xz"; 6 6 locale = "ach"; 7 7 arch = "linux-x86_64"; 8 - sha256 = "1c72ae4ca4b2787a5a0303ae26b55b0567d98c4e9069f2c33f28e88f1ad9f07e"; 8 + sha256 = "85f54d601a54340e8f2ea32d10fd90b74540eb235e5947c83b786e49e4a3dbe9"; 9 9 } 10 10 { 11 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/af/firefox-135.0.tar.xz"; 11 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/af/firefox-135.0.1.tar.xz"; 12 12 locale = "af"; 13 13 arch = "linux-x86_64"; 14 - sha256 = "f40b4bac1e3685ed9b79086cb6500e30f94747c7706e0e65fe4bd3c83812cf8e"; 14 + sha256 = "e10153197ee408118aa303bda76d0e97b0c4a62b85b39076739adef247848de9"; 15 15 } 16 16 { 17 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/an/firefox-135.0.tar.xz"; 17 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/an/firefox-135.0.1.tar.xz"; 18 18 locale = "an"; 19 19 arch = "linux-x86_64"; 20 - sha256 = "48c186bfdbc870c281b1970167b39d3b0d3af665198b546d1dd0cf774daabff2"; 20 + sha256 = "d7f063a5dd361c0000b387482919604767d615cbd3532cdff31fdc15b698f0f4"; 21 21 } 22 22 { 23 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ar/firefox-135.0.tar.xz"; 23 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ar/firefox-135.0.1.tar.xz"; 24 24 locale = "ar"; 25 25 arch = "linux-x86_64"; 26 - sha256 = "06991c44e4d590e1809d75a3921f00d0c31798e78454ef4f939714893740aefd"; 26 + sha256 = "7b93dcb47d37d19d46203627aee494ace37b1e1629a79314a1c1aa0a008c2521"; 27 27 } 28 28 { 29 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ast/firefox-135.0.tar.xz"; 29 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ast/firefox-135.0.1.tar.xz"; 30 30 locale = "ast"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "077fdc0c748b7ada6bf6d9cb2026cea94757542aa8a795020e937ee2b566605c"; 32 + sha256 = "8d114c39a8d24ac91da7354476ba1e8c99c9573567fe300aa556b26d9dd020d5"; 33 33 } 34 34 { 35 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/az/firefox-135.0.tar.xz"; 35 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/az/firefox-135.0.1.tar.xz"; 36 36 locale = "az"; 37 37 arch = "linux-x86_64"; 38 - sha256 = "a188bf9f89d8579666ce1e58c7c7dd0ab1f971d87f3ec43387d34898c498b2f4"; 38 + sha256 = "9f9791f7f85d1a87a2c3dab83bbd9d95640cc077737127b948a5aea77293edf6"; 39 39 } 40 40 { 41 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/be/firefox-135.0.tar.xz"; 41 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/be/firefox-135.0.1.tar.xz"; 42 42 locale = "be"; 43 43 arch = "linux-x86_64"; 44 - sha256 = "974676acec444f68020a3b871ceb270ced980722b373249b141c96c024d7fdbb"; 44 + sha256 = "4f9298489d5fcd9ff3426d1ea7be509747262e49a1967c7ae12891266065a5b0"; 45 45 } 46 46 { 47 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/bg/firefox-135.0.tar.xz"; 47 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/bg/firefox-135.0.1.tar.xz"; 48 48 locale = "bg"; 49 49 arch = "linux-x86_64"; 50 - sha256 = "6d30628b228a7494fec868d80a552f8724de3c3594c90967b10e89fb3e5bebd3"; 50 + sha256 = "b8499ea04a2db8bdd75b5936e371c2015884fd5dbf6989bffcf9db2cb0100370"; 51 51 } 52 52 { 53 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/bn/firefox-135.0.tar.xz"; 53 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/bn/firefox-135.0.1.tar.xz"; 54 54 locale = "bn"; 55 55 arch = "linux-x86_64"; 56 - sha256 = "178d83edc34474ad82602c396b7d322aa70741cd41d84026ffd2bbac0df53181"; 56 + sha256 = "2b3e1c660fa829676b0e9969589e0dbf1d5cf633f1df18dd60bb8eb0f550b1bd"; 57 57 } 58 58 { 59 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/br/firefox-135.0.tar.xz"; 59 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/br/firefox-135.0.1.tar.xz"; 60 60 locale = "br"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "d683933efc74359ffffb027255f4b24297a2b02ac1811982fb40e810f5de6058"; 62 + sha256 = "14cb1e8a9941c94768bb87152719e89bfd9beab394317c8790139bd440d84234"; 63 63 } 64 64 { 65 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/bs/firefox-135.0.tar.xz"; 65 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/bs/firefox-135.0.1.tar.xz"; 66 66 locale = "bs"; 67 67 arch = "linux-x86_64"; 68 - sha256 = "855cbe9d5559764966a5275f0f2fafbf9a86ef0c4341a6d86e82374597f7eeb4"; 68 + sha256 = "31bcbf6c483156208faa629fcbc8f9bc158795aca261531f670c7a6da8510d4d"; 69 69 } 70 70 { 71 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ca-valencia/firefox-135.0.tar.xz"; 71 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ca-valencia/firefox-135.0.1.tar.xz"; 72 72 locale = "ca-valencia"; 73 73 arch = "linux-x86_64"; 74 - sha256 = "d62151af817255873ba3ce45c4aeae598e6c739eb4434833d56e7041d2b83abd"; 74 + sha256 = "45bb5481a4d145c89d863a55130ec12ec066ba4449478822f4d8af60b2db678b"; 75 75 } 76 76 { 77 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ca/firefox-135.0.tar.xz"; 77 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ca/firefox-135.0.1.tar.xz"; 78 78 locale = "ca"; 79 79 arch = "linux-x86_64"; 80 - sha256 = "1d0fca6f1bcf443ea9a2d076d1550e023565cf2078a197a46d40ee19fb1bfa22"; 80 + sha256 = "d760dc6e37eb091b4e03a18843e6ed2c49e055d2be4eae15b8b0f56508e03294"; 81 81 } 82 82 { 83 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/cak/firefox-135.0.tar.xz"; 83 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/cak/firefox-135.0.1.tar.xz"; 84 84 locale = "cak"; 85 85 arch = "linux-x86_64"; 86 - sha256 = "cb2af8ae23d3b10b26e60459e8975e90b676e45cc185a0fd790b1f9de957d5fd"; 86 + sha256 = "6026da8bac996273b82c8e06d8797f3537c0a5c84fcaa92c9e13ff0f40563180"; 87 87 } 88 88 { 89 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/cs/firefox-135.0.tar.xz"; 89 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/cs/firefox-135.0.1.tar.xz"; 90 90 locale = "cs"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "4af79ccf21d59c10f3d30fd9b01a45cd619d03656ebda3428d7a7d866ea048c9"; 92 + sha256 = "f686b0f9902b61fea029d3839c0285639e1ba71eb5ef6d6133b6b468d7273381"; 93 93 } 94 94 { 95 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/cy/firefox-135.0.tar.xz"; 95 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/cy/firefox-135.0.1.tar.xz"; 96 96 locale = "cy"; 97 97 arch = "linux-x86_64"; 98 - sha256 = "8ea7b7b910480826efe50fc340cf1f9a7acead428c225ad8059769e2d3070e70"; 98 + sha256 = "e799431f1a5df2ed9b1c570c2cf605ddab3593c9c0443b0229b006aaac548217"; 99 99 } 100 100 { 101 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/da/firefox-135.0.tar.xz"; 101 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/da/firefox-135.0.1.tar.xz"; 102 102 locale = "da"; 103 103 arch = "linux-x86_64"; 104 - sha256 = "44bc65af79c371cba4fb24e0b9e6a7447b1b732ca6442f88b36e450094fb9cad"; 104 + sha256 = "2d98f25400b2bb6336ab3d142dda68e1487e34f5c213e25b5fcf27857d7354ba"; 105 105 } 106 106 { 107 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/de/firefox-135.0.tar.xz"; 107 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/de/firefox-135.0.1.tar.xz"; 108 108 locale = "de"; 109 109 arch = "linux-x86_64"; 110 - sha256 = "944404dcce66113db2ce3d265fe02e45316c1fb403112d1e8866a4f470b7d215"; 110 + sha256 = "66d8c8e64ff9d207798e778306dec390d99ccf701357d079f98a231266bd8224"; 111 111 } 112 112 { 113 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/dsb/firefox-135.0.tar.xz"; 113 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/dsb/firefox-135.0.1.tar.xz"; 114 114 locale = "dsb"; 115 115 arch = "linux-x86_64"; 116 - sha256 = "08662a46ab22520e6e565435c19c8dd1b5e81244c81ebe2705c9736e44a7fb2a"; 116 + sha256 = "821e3ff15d1f164f26b59ff48153fd980dde556ab37746e9357259020cd74d91"; 117 117 } 118 118 { 119 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/el/firefox-135.0.tar.xz"; 119 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/el/firefox-135.0.1.tar.xz"; 120 120 locale = "el"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "10906363000b5fbdc9e6d086d66ab681a473f213bb560f491d91580ff8250f5a"; 122 + sha256 = "f3c29ea42946d8183cd835ac3810c785acadb8c88a64988837d91a7dfd8b55d1"; 123 123 } 124 124 { 125 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/en-CA/firefox-135.0.tar.xz"; 125 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/en-CA/firefox-135.0.1.tar.xz"; 126 126 locale = "en-CA"; 127 127 arch = "linux-x86_64"; 128 - sha256 = "ead65cb99388a19eeb8c80fbdbfc09150f945a77caa930139b1108dcc2a86bca"; 128 + sha256 = "8ded99749c418c8cac6ff852c6fdd7e1d674c3ebf4152bbf187528b6e648608a"; 129 129 } 130 130 { 131 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/en-GB/firefox-135.0.tar.xz"; 131 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/en-GB/firefox-135.0.1.tar.xz"; 132 132 locale = "en-GB"; 133 133 arch = "linux-x86_64"; 134 - sha256 = "1ccc70900ec49724515c23f3a77d18f82fb524ea40d6633d053f106579262564"; 134 + sha256 = "4a66152c914635f4fecbec370a3775ecc87f2f50c7eb17d52b9ea95e472652ce"; 135 135 } 136 136 { 137 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/en-US/firefox-135.0.tar.xz"; 137 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/en-US/firefox-135.0.1.tar.xz"; 138 138 locale = "en-US"; 139 139 arch = "linux-x86_64"; 140 - sha256 = "6fcc1a2f95a6b232af82b4b7644566638c5df349e3095c65b7c18d1a63412d3d"; 140 + sha256 = "4f76c45196cd4d7cacbdc9038d80757cc9bbe387dd43e2b81bd8a7748d630ee8"; 141 141 } 142 142 { 143 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/eo/firefox-135.0.tar.xz"; 143 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/eo/firefox-135.0.1.tar.xz"; 144 144 locale = "eo"; 145 145 arch = "linux-x86_64"; 146 - sha256 = "983ebe6649a8becd22063844bcb58864a54cea0941744cd6d03a019d1bb59583"; 146 + sha256 = "d0dfb267fe91da8ae11e31c3df62e5789f2652d88cb5b5d7b0320814ad00b9c3"; 147 147 } 148 148 { 149 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/es-AR/firefox-135.0.tar.xz"; 149 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/es-AR/firefox-135.0.1.tar.xz"; 150 150 locale = "es-AR"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "c65760be0132e46a30c81555c911afe723c2c98e8286b99a61444e5c0ec867cf"; 152 + sha256 = "587c6a1837db53eaf365e675c5b1790ccb00c0ffbe5a48dd0e6ea71a2a501dd6"; 153 153 } 154 154 { 155 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/es-CL/firefox-135.0.tar.xz"; 155 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/es-CL/firefox-135.0.1.tar.xz"; 156 156 locale = "es-CL"; 157 157 arch = "linux-x86_64"; 158 - sha256 = "ac005f7f470f6c8ef276b4f5e36b53af3cfa1f1e2655b8a6ab4d764d8e0cebe9"; 158 + sha256 = "99abb3aecd6d1064e5073635a691b7eacc72d5304a1793f0c23120eea2593fba"; 159 159 } 160 160 { 161 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/es-ES/firefox-135.0.tar.xz"; 161 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/es-ES/firefox-135.0.1.tar.xz"; 162 162 locale = "es-ES"; 163 163 arch = "linux-x86_64"; 164 - sha256 = "4afb8480604fa02c3c0dfd7f34e857f27073b567256d526cbd851d8f45acfab3"; 164 + sha256 = "0ba144c3d86c93dbe3131ce8cc400ecbef1fe2ddbf652bea91fa9234039a65bf"; 165 165 } 166 166 { 167 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/es-MX/firefox-135.0.tar.xz"; 167 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/es-MX/firefox-135.0.1.tar.xz"; 168 168 locale = "es-MX"; 169 169 arch = "linux-x86_64"; 170 - sha256 = "a36e447a8856e66b1ab0003f99f306e88d4b9238c9d82f12f3911fb93efc9b98"; 170 + sha256 = "e1fa322eea3e8c8680424544e23938b5a2f53188687ce42da57b8f51d7f48de3"; 171 171 } 172 172 { 173 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/et/firefox-135.0.tar.xz"; 173 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/et/firefox-135.0.1.tar.xz"; 174 174 locale = "et"; 175 175 arch = "linux-x86_64"; 176 - sha256 = "8a8ed6af26b4b5660f3d3f7b2e6683de0f3c8ace5b37ece8042d5169b1b65b54"; 176 + sha256 = "1c40069708c67ad9f6b69e30c4c90eacc2c55c4803f9bdd6e2ab87c88d4c0490"; 177 177 } 178 178 { 179 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/eu/firefox-135.0.tar.xz"; 179 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/eu/firefox-135.0.1.tar.xz"; 180 180 locale = "eu"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "fec762fb119d0b69c9280f09a679d4f069c42d60f2f281139b86221b18f6446e"; 182 + sha256 = "641ceee7d60d3afeb49781bb82c2b0f599dee7342d837eaa47d39a1830dbfa22"; 183 183 } 184 184 { 185 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/fa/firefox-135.0.tar.xz"; 185 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/fa/firefox-135.0.1.tar.xz"; 186 186 locale = "fa"; 187 187 arch = "linux-x86_64"; 188 - sha256 = "67d7b3e6f0394f9447ff68caabd75194b2691423d0c1ec0fd6574531f75beca2"; 188 + sha256 = "3fde1e08a577f2fe2c5d4f9accab679cb2c00a68410c904628a88ffb3eb6deae"; 189 189 } 190 190 { 191 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ff/firefox-135.0.tar.xz"; 191 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ff/firefox-135.0.1.tar.xz"; 192 192 locale = "ff"; 193 193 arch = "linux-x86_64"; 194 - sha256 = "7950552b59c008b04d676fea68681862f20ff6e3d477ff45d15093e2518e1827"; 194 + sha256 = "e304b6019ca397f76adf8798b648142e46452cc99ce133571b35455b80d8ddda"; 195 195 } 196 196 { 197 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/fi/firefox-135.0.tar.xz"; 197 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/fi/firefox-135.0.1.tar.xz"; 198 198 locale = "fi"; 199 199 arch = "linux-x86_64"; 200 - sha256 = "252918efd1388ee3dd64973116da0a48e9aaa5779ac1e3e178339eedb00bc70e"; 200 + sha256 = "3f67277f06a45ac65459f43b0cb9a4366a6963b62985cdbd68dba3ef9ba1756b"; 201 201 } 202 202 { 203 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/fr/firefox-135.0.tar.xz"; 203 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/fr/firefox-135.0.1.tar.xz"; 204 204 locale = "fr"; 205 205 arch = "linux-x86_64"; 206 - sha256 = "95018737ff0279af7fbed959e089aa454789d450a2aae9186f9cb32496463c73"; 206 + sha256 = "132cff32e22ace6b88411ff5af29281c07908363bf2fc951aeee1fb7224af9d0"; 207 207 } 208 208 { 209 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/fur/firefox-135.0.tar.xz"; 209 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/fur/firefox-135.0.1.tar.xz"; 210 210 locale = "fur"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "67bcb18bf5bb24164d13ba4c2a57b961da734d73447823c8ebf3d0eb5f352c86"; 212 + sha256 = "d00fed3e2125981c1aee361192128f6fbb513f38fd8df43725b9f9d0167e5633"; 213 213 } 214 214 { 215 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/fy-NL/firefox-135.0.tar.xz"; 215 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/fy-NL/firefox-135.0.1.tar.xz"; 216 216 locale = "fy-NL"; 217 217 arch = "linux-x86_64"; 218 - sha256 = "3bb8946e8b6da67195b88f8f8e09ef91a8606211a3389c917a2f674b5e42fb7e"; 218 + sha256 = "91e032552cecca42eabe114f61eef772ed4ff1b5a6f3aab8a2878b4e19349939"; 219 219 } 220 220 { 221 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ga-IE/firefox-135.0.tar.xz"; 221 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ga-IE/firefox-135.0.1.tar.xz"; 222 222 locale = "ga-IE"; 223 223 arch = "linux-x86_64"; 224 - sha256 = "5c50d53c0f4c29e9dce68e854d1fb08efedf52e898fdd1020d30d3ce7a320cff"; 224 + sha256 = "f2f74d2cc1058f872863523d5f92af386373b1f0cecbe7f63cca223f26ddc241"; 225 225 } 226 226 { 227 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/gd/firefox-135.0.tar.xz"; 227 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/gd/firefox-135.0.1.tar.xz"; 228 228 locale = "gd"; 229 229 arch = "linux-x86_64"; 230 - sha256 = "c1dc86916f59feb1ed772b7e9970c74e348e4d2bf732483afc694b269d53f6d0"; 230 + sha256 = "6f5e31d2f351feb3e1e7a5959ed7a4152627b15d0e7ac5145618290c02a01a7b"; 231 231 } 232 232 { 233 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/gl/firefox-135.0.tar.xz"; 233 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/gl/firefox-135.0.1.tar.xz"; 234 234 locale = "gl"; 235 235 arch = "linux-x86_64"; 236 - sha256 = "3ca9452038dc4d51828f0537b5f47722b0192ec02275bfded474a7c9301ae09a"; 236 + sha256 = "3cfa4db7dd654d02caeb4f94d9a384c28b3966326d5874fdc5e7cba82d5ec95c"; 237 237 } 238 238 { 239 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/gn/firefox-135.0.tar.xz"; 239 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/gn/firefox-135.0.1.tar.xz"; 240 240 locale = "gn"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "cdc827463e68e2d495ce3fdc763c0f58584d1ccc37230e9dcb882fa329435cc4"; 242 + sha256 = "dff5fd3ec38a386a12f0c22ad48b9839eb374576caa458449e6238f609517dc5"; 243 243 } 244 244 { 245 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/gu-IN/firefox-135.0.tar.xz"; 245 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/gu-IN/firefox-135.0.1.tar.xz"; 246 246 locale = "gu-IN"; 247 247 arch = "linux-x86_64"; 248 - sha256 = "b417ba7fac4f48e66a4e09469efdf89e7c6256e16b7816231904e46156a0b6d8"; 248 + sha256 = "a40f2abd3af7f02e538397a263f87eb5e4fcd9e111a715b60ae2bc49c97f406c"; 249 249 } 250 250 { 251 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/he/firefox-135.0.tar.xz"; 251 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/he/firefox-135.0.1.tar.xz"; 252 252 locale = "he"; 253 253 arch = "linux-x86_64"; 254 - sha256 = "ca14f7d1f2e6babfb22a8bf29ad669c922bdfd946bdd84ac1a856cd90f5a193b"; 254 + sha256 = "32bd9eb3e13731084245257224c5224a7faa01cfccecbf34f293e3ea8e487435"; 255 255 } 256 256 { 257 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/hi-IN/firefox-135.0.tar.xz"; 257 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/hi-IN/firefox-135.0.1.tar.xz"; 258 258 locale = "hi-IN"; 259 259 arch = "linux-x86_64"; 260 - sha256 = "bb65b8a58a75ed7f204bf4ce303a3524212c77523e2a6c0aa7128267330a22a0"; 260 + sha256 = "98851d1ec53e8181afc99809a346530ba85982109d81f05379fccac40d792abe"; 261 261 } 262 262 { 263 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/hr/firefox-135.0.tar.xz"; 263 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/hr/firefox-135.0.1.tar.xz"; 264 264 locale = "hr"; 265 265 arch = "linux-x86_64"; 266 - sha256 = "2d4eb481e719e863f993668fa24c2ac7d4d59b4a3d3e1b858bae1a9f589c0938"; 266 + sha256 = "be37998e147f5a49bbd9fea5c8d978a9720bca3f48941e0b9611c24aa97d859d"; 267 267 } 268 268 { 269 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/hsb/firefox-135.0.tar.xz"; 269 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/hsb/firefox-135.0.1.tar.xz"; 270 270 locale = "hsb"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "4b9bd7bf2567696217fbb3d1a1591392ebe121889e37f19fb6c101c825e50017"; 272 + sha256 = "acc2fc5c8b535732df36b29b66ac9e6e57aaef836fa81584ddca50282166de14"; 273 273 } 274 274 { 275 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/hu/firefox-135.0.tar.xz"; 275 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/hu/firefox-135.0.1.tar.xz"; 276 276 locale = "hu"; 277 277 arch = "linux-x86_64"; 278 - sha256 = "b4ad2d51fe2b163bbd614ffd7d134379fc0d3c6c9e8a2dc981568b4a7e889d89"; 278 + sha256 = "b8db7bd380a88798f3940f9aba34be6415d8a55964ec93d25edc66aa857985a6"; 279 279 } 280 280 { 281 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/hy-AM/firefox-135.0.tar.xz"; 281 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/hy-AM/firefox-135.0.1.tar.xz"; 282 282 locale = "hy-AM"; 283 283 arch = "linux-x86_64"; 284 - sha256 = "556d15ef76f99c314c0ceee26d83a8205e0084990dd006f259cbc4635d872ed6"; 284 + sha256 = "1f05f5a57f4456685ecd91407a934af22b2d4c747b6c6e3bb7ea5fd12bdd185f"; 285 285 } 286 286 { 287 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ia/firefox-135.0.tar.xz"; 287 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ia/firefox-135.0.1.tar.xz"; 288 288 locale = "ia"; 289 289 arch = "linux-x86_64"; 290 - sha256 = "d30f9d9d14a472401a68e6f520e379970d32a6c93f524fda7bf29789ac0d5cc6"; 290 + sha256 = "7e6ee73ffe85a5c0a271918ecc9adfb50022b5e09a653443fd617ab47e860637"; 291 291 } 292 292 { 293 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/id/firefox-135.0.tar.xz"; 293 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/id/firefox-135.0.1.tar.xz"; 294 294 locale = "id"; 295 295 arch = "linux-x86_64"; 296 - sha256 = "7ffe754c6b1be3c7a3a499f0b688c13a3fc3a770b542b6cd38b4f793a7ce75b1"; 296 + sha256 = "065f5bf64bba19939f8b841e5f49eac1cdf9b9f7cfbf26bc005b77ad30bc746d"; 297 297 } 298 298 { 299 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/is/firefox-135.0.tar.xz"; 299 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/is/firefox-135.0.1.tar.xz"; 300 300 locale = "is"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "5437377b0e3a93390167bd82bb9d15efa3024ba2970af3fbbdf500099b304fdf"; 302 + sha256 = "412e812053077448faaf7592361692e8bcaaeb4328d51289892fbf7bd517aae3"; 303 303 } 304 304 { 305 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/it/firefox-135.0.tar.xz"; 305 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/it/firefox-135.0.1.tar.xz"; 306 306 locale = "it"; 307 307 arch = "linux-x86_64"; 308 - sha256 = "75ff55730b650391dfe6d25c21fda1f725184cb7311b3950612e53f8e6d1c763"; 308 + sha256 = "acfbc59a9da22ffc60c39adc6c0410cdc514a810fbfa9d7d246a6d689fcd25d6"; 309 309 } 310 310 { 311 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ja/firefox-135.0.tar.xz"; 311 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ja/firefox-135.0.1.tar.xz"; 312 312 locale = "ja"; 313 313 arch = "linux-x86_64"; 314 - sha256 = "d963a2ff202be5849a26def218f24d645d00c62ab61811276d59dea0af5bdc54"; 314 + sha256 = "3e321738351d2642898a5b99c6e54eb4ebf0e3f2a12d8d440ffe34d3dc1b030d"; 315 315 } 316 316 { 317 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ka/firefox-135.0.tar.xz"; 317 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ka/firefox-135.0.1.tar.xz"; 318 318 locale = "ka"; 319 319 arch = "linux-x86_64"; 320 - sha256 = "f5d8493435f8edc3aad31465a493888e0710a6ac2d3d9a4284df93f6b49d6cfb"; 320 + sha256 = "987fec6c9d62316473a1e86a33c1550e8c3ef43d1984f8bb678aba0b03b6b72b"; 321 321 } 322 322 { 323 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/kab/firefox-135.0.tar.xz"; 323 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/kab/firefox-135.0.1.tar.xz"; 324 324 locale = "kab"; 325 325 arch = "linux-x86_64"; 326 - sha256 = "4b1fb5d1e349dfcd119a3f1e69d35f756d88e12b6930fd4f87b7f9c60b93dede"; 326 + sha256 = "f8b39495eaf6b5d9236e633cbd70df081a4f2cd330d6a41d92c18902f27aee5a"; 327 327 } 328 328 { 329 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/kk/firefox-135.0.tar.xz"; 329 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/kk/firefox-135.0.1.tar.xz"; 330 330 locale = "kk"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "0564b49bd1ce01355412f222b094392fb587075f27c123f3dc7dd8d633d1c599"; 332 + sha256 = "04758df2c976f3545b9528c91c8f83ea8998354c3dc663250014970f1c6b69a7"; 333 333 } 334 334 { 335 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/km/firefox-135.0.tar.xz"; 335 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/km/firefox-135.0.1.tar.xz"; 336 336 locale = "km"; 337 337 arch = "linux-x86_64"; 338 - sha256 = "0fac242e26d84dba180369f3823d0c5e042e7ff6d0a55d2996f7c9edb8c7e52b"; 338 + sha256 = "d7fe56786823bdbb27f9777891a82564d4279155c17ff10ea74dab2ce5c427e0"; 339 339 } 340 340 { 341 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/kn/firefox-135.0.tar.xz"; 341 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/kn/firefox-135.0.1.tar.xz"; 342 342 locale = "kn"; 343 343 arch = "linux-x86_64"; 344 - sha256 = "d0147ff4d8631f97466b24580399af1c0a28abfbbef46ac11fac992f0ba0209e"; 344 + sha256 = "bade2e71b45a2f1e2fa1c8870ec2f5e52bd28f7a3a13998938200ab4b0900a3b"; 345 345 } 346 346 { 347 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ko/firefox-135.0.tar.xz"; 347 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ko/firefox-135.0.1.tar.xz"; 348 348 locale = "ko"; 349 349 arch = "linux-x86_64"; 350 - sha256 = "74f5e705c872363433f49e89f5cafae717714e6bb207216a0374e49a6b4c2944"; 350 + sha256 = "40743fd1c0c064a44ed81d5acd57f78994a6cb01ebcddf8e5e2876d4654a46ad"; 351 351 } 352 352 { 353 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/lij/firefox-135.0.tar.xz"; 353 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/lij/firefox-135.0.1.tar.xz"; 354 354 locale = "lij"; 355 355 arch = "linux-x86_64"; 356 - sha256 = "00ba8877816c06f514e7828c1f876b3df98596f60d450d1c5c7f56b1bd5690ad"; 356 + sha256 = "be26468c3ae7d798abbdea470e1b3295ae93efd563c34358c0984366125091ab"; 357 357 } 358 358 { 359 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/lt/firefox-135.0.tar.xz"; 359 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/lt/firefox-135.0.1.tar.xz"; 360 360 locale = "lt"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "0a57c98cf283fe21e544742a1c9b87ffad91de07c1b3722b96bb8fe2984cea26"; 362 + sha256 = "67ec58587fdede39ae054baffecfa9e7dcce5c5ea9811f97d1ba1de74c8f2a53"; 363 363 } 364 364 { 365 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/lv/firefox-135.0.tar.xz"; 365 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/lv/firefox-135.0.1.tar.xz"; 366 366 locale = "lv"; 367 367 arch = "linux-x86_64"; 368 - sha256 = "85535cdf0325145a3cefd827dc0112dcf5ea1718038b8701f078f476ed48fa28"; 368 + sha256 = "ce14f1ae6041fa1d790fc60196756169316d714d38b17563e50ff390887cdfec"; 369 369 } 370 370 { 371 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/mk/firefox-135.0.tar.xz"; 371 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/mk/firefox-135.0.1.tar.xz"; 372 372 locale = "mk"; 373 373 arch = "linux-x86_64"; 374 - sha256 = "9f0c4cf48906b312b520f0411601c820e82e1b6c3311f8417548bb3c8775f02a"; 374 + sha256 = "a06f5d0a075b8cb79e69c5e21dd4fa43bcd0b82680b56a39ebf215af15efe398"; 375 375 } 376 376 { 377 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/mr/firefox-135.0.tar.xz"; 377 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/mr/firefox-135.0.1.tar.xz"; 378 378 locale = "mr"; 379 379 arch = "linux-x86_64"; 380 - sha256 = "6e5c12b7077d87e8b0186af7519c1cd1ed6aebf63221fd93e65d4e88c1813fe7"; 380 + sha256 = "5c5ee80edd4d7854d9474474971a48d724a1c93c0cac60d62fd93687aa159eb1"; 381 381 } 382 382 { 383 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ms/firefox-135.0.tar.xz"; 383 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ms/firefox-135.0.1.tar.xz"; 384 384 locale = "ms"; 385 385 arch = "linux-x86_64"; 386 - sha256 = "ebb2255bacad7590a420be6bd367c4d1d35ae7006c0646bfa7d08e38741aba2d"; 386 + sha256 = "bd3fb4ebd6ed6833cefeb147736a1eadee824a457053854a2ba5a16eac8273bc"; 387 387 } 388 388 { 389 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/my/firefox-135.0.tar.xz"; 389 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/my/firefox-135.0.1.tar.xz"; 390 390 locale = "my"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "cf58d7def2b0442db80e45fd59ccdbe14eae993d42ea764aff6445ce034f45b4"; 392 + sha256 = "25cb3e2e364899be8c708411f591f8ae51e95af9f9ef726e7d1b58835ab33880"; 393 393 } 394 394 { 395 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/nb-NO/firefox-135.0.tar.xz"; 395 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/nb-NO/firefox-135.0.1.tar.xz"; 396 396 locale = "nb-NO"; 397 397 arch = "linux-x86_64"; 398 - sha256 = "471b87f899a4c28e4a11dd748c8f76078f58e7a701e520ff6f748e8f21ac33f6"; 398 + sha256 = "0265a2be242623af393a43effa41ce35d4f7a7970a963c0d7fab406d1634d944"; 399 399 } 400 400 { 401 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ne-NP/firefox-135.0.tar.xz"; 401 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ne-NP/firefox-135.0.1.tar.xz"; 402 402 locale = "ne-NP"; 403 403 arch = "linux-x86_64"; 404 - sha256 = "440b832a00b3e3e7a7d41948fc152c9a4af625751af23f876703b4bc77b946a8"; 404 + sha256 = "d0cb102fe9d54bee0a4b1db719afbdecb63dc4ef4447bfba6100ee5a96232fbd"; 405 405 } 406 406 { 407 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/nl/firefox-135.0.tar.xz"; 407 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/nl/firefox-135.0.1.tar.xz"; 408 408 locale = "nl"; 409 409 arch = "linux-x86_64"; 410 - sha256 = "e8a59134c4455310976871172079f3debcc5222c6e8c6357304dd3e7b9eb04ca"; 410 + sha256 = "aafedbe22664d2bc7c0638670c505bc4f8953d187fd3f879218c1131d3278b86"; 411 411 } 412 412 { 413 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/nn-NO/firefox-135.0.tar.xz"; 413 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/nn-NO/firefox-135.0.1.tar.xz"; 414 414 locale = "nn-NO"; 415 415 arch = "linux-x86_64"; 416 - sha256 = "66a1bfc01030a377ed78ac2134bce1562b619d0b7ca8d5cfc4ff7e84b06498d2"; 416 + sha256 = "129627b922147601fe04d6f2419fcc0174f81943b0da660bd95fa6fb236fdc1c"; 417 417 } 418 418 { 419 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/oc/firefox-135.0.tar.xz"; 419 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/oc/firefox-135.0.1.tar.xz"; 420 420 locale = "oc"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "723444216c411b054ef1efa2cce1556b14aba4d4a4351b4dc26237e525783def"; 422 + sha256 = "8d392514cd05614334b931d04e6b6b8bbd58f0f43fab5dae9efdbba8ce30a001"; 423 423 } 424 424 { 425 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/pa-IN/firefox-135.0.tar.xz"; 425 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/pa-IN/firefox-135.0.1.tar.xz"; 426 426 locale = "pa-IN"; 427 427 arch = "linux-x86_64"; 428 - sha256 = "113dab1bb1f697ac26d1d4622962a53b7d46d7c558fc3675ba6278b337ca5ee9"; 428 + sha256 = "ec27efc20302616ffb4ecdf936a9eb7a1d4ce886b67f3a8fb66f4820a8246b76"; 429 429 } 430 430 { 431 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/pl/firefox-135.0.tar.xz"; 431 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/pl/firefox-135.0.1.tar.xz"; 432 432 locale = "pl"; 433 433 arch = "linux-x86_64"; 434 - sha256 = "48992e4be7074cb9ea1882193e6eb06ffe706667694c12ec64799a6b3f6671e0"; 434 + sha256 = "7ac5b2a539050a06ec9a1940a923976222bd635dc07acc8a9a4e379c50d918ec"; 435 435 } 436 436 { 437 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/pt-BR/firefox-135.0.tar.xz"; 437 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/pt-BR/firefox-135.0.1.tar.xz"; 438 438 locale = "pt-BR"; 439 439 arch = "linux-x86_64"; 440 - sha256 = "d52b91648052cdc829f50512b37cfac8a1ced6bbe3db33bcb333a795b66a1f22"; 440 + sha256 = "6c81b880332d86f273a142986310de26a18a77597ace7c35e4d63923d39db070"; 441 441 } 442 442 { 443 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/pt-PT/firefox-135.0.tar.xz"; 443 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/pt-PT/firefox-135.0.1.tar.xz"; 444 444 locale = "pt-PT"; 445 445 arch = "linux-x86_64"; 446 - sha256 = "a72013522ad747f22b92391786aad176e50585e1e0dc0afec559a8e87084edee"; 446 + sha256 = "25cae3090f199ad7c4233463a4fe33aea7dcd2dedbaf699264eb7529eedbc4cb"; 447 447 } 448 448 { 449 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/rm/firefox-135.0.tar.xz"; 449 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/rm/firefox-135.0.1.tar.xz"; 450 450 locale = "rm"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "651e39063b367d7e22912f14bcc794454048059814aa80ba04486ab6e505f036"; 452 + sha256 = "7c6c2602081870a8a6a37bf994da60d875decb48a5a8bc1d2dfe153224d9fd5e"; 453 453 } 454 454 { 455 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ro/firefox-135.0.tar.xz"; 455 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ro/firefox-135.0.1.tar.xz"; 456 456 locale = "ro"; 457 457 arch = "linux-x86_64"; 458 - sha256 = "73733799737ddb45e3485e9e26916e1a4ae4c7c688f09f9480032aa9cf168754"; 458 + sha256 = "20bdf9c4c37ddf25f515064b0746a4a31f71b59e0b4a510f2dadbe71699a4234"; 459 459 } 460 460 { 461 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ru/firefox-135.0.tar.xz"; 461 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ru/firefox-135.0.1.tar.xz"; 462 462 locale = "ru"; 463 463 arch = "linux-x86_64"; 464 - sha256 = "b1a095895901dd65cfaf9740047eaebd3db9df604238ff42ef466d16c0c92205"; 464 + sha256 = "34a498efc44115d13aed6a494725e8c201da5b3e2c920a34bee7fc9da627a02c"; 465 465 } 466 466 { 467 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/sat/firefox-135.0.tar.xz"; 467 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/sat/firefox-135.0.1.tar.xz"; 468 468 locale = "sat"; 469 469 arch = "linux-x86_64"; 470 - sha256 = "fe6fc98ab8d9221ef02eef166d788c70c3844e90810b53fa57495f0329c1f533"; 470 + sha256 = "512c0ff90882875da0d8025942788dad94008a55a0e7e54fe6aa0a0ef4ce34cd"; 471 471 } 472 472 { 473 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/sc/firefox-135.0.tar.xz"; 473 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/sc/firefox-135.0.1.tar.xz"; 474 474 locale = "sc"; 475 475 arch = "linux-x86_64"; 476 - sha256 = "6115bad40882792a160586da0787aa6afb1426d98499c8f59f6358601ebb40ef"; 476 + sha256 = "d31bf478b2fd3cc24b0bdefac89d1a78b1216f9ca7878bc7edc71a858d643e45"; 477 477 } 478 478 { 479 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/sco/firefox-135.0.tar.xz"; 479 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/sco/firefox-135.0.1.tar.xz"; 480 480 locale = "sco"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "6d448c48d3f532a498eaf396ad6be2c0ebe19c323bc1620e4a5ce312c75d97c2"; 482 + sha256 = "a7fb73f110385a112b74077b08b0ecf28a294fcaedec516339d5bdf3784f6200"; 483 483 } 484 484 { 485 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/si/firefox-135.0.tar.xz"; 485 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/si/firefox-135.0.1.tar.xz"; 486 486 locale = "si"; 487 487 arch = "linux-x86_64"; 488 - sha256 = "d93451b71ea2ae0231a008819d095f45637fa3af5cdfc0066b40a90f405b190a"; 488 + sha256 = "cd4f6385ce73b65f4492310a9be81ef356c915047ecb6030c048de49c32f017c"; 489 489 } 490 490 { 491 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/sk/firefox-135.0.tar.xz"; 491 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/sk/firefox-135.0.1.tar.xz"; 492 492 locale = "sk"; 493 493 arch = "linux-x86_64"; 494 - sha256 = "fedb44754d0b838d62c908208799a771ca75322191993d10d2a608203ae48a38"; 494 + sha256 = "4ef13cc54f9065949238fa8bbc556c04d33fb2a72407d853e303a8b7652ea1f6"; 495 495 } 496 496 { 497 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/skr/firefox-135.0.tar.xz"; 497 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/skr/firefox-135.0.1.tar.xz"; 498 498 locale = "skr"; 499 499 arch = "linux-x86_64"; 500 - sha256 = "f3ae834cca2720bfa043aae64de686e70cf596913a9b1853df05ad917e8919ec"; 500 + sha256 = "d51cd2574035a26ee977e050ebded2407fd82a4b8b1d8ef523aff6db06c3a4eb"; 501 501 } 502 502 { 503 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/sl/firefox-135.0.tar.xz"; 503 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/sl/firefox-135.0.1.tar.xz"; 504 504 locale = "sl"; 505 505 arch = "linux-x86_64"; 506 - sha256 = "7d29a2193ac247a91832315acee4d9fbfb53737ae24474eefd62396cf23743aa"; 506 + sha256 = "4da326890042c183d7a929d5b85661e8c7e4913ff69d16615c01ca603324a55e"; 507 507 } 508 508 { 509 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/son/firefox-135.0.tar.xz"; 509 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/son/firefox-135.0.1.tar.xz"; 510 510 locale = "son"; 511 511 arch = "linux-x86_64"; 512 - sha256 = "f1f56ee2b49a7999e689b819e8a87cbf3242fc156737f96f81ad37207a3450d4"; 512 + sha256 = "4864312286399cb2b4d03785fb686133078d60c191eb2d13a8378b7ecc6e78de"; 513 513 } 514 514 { 515 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/sq/firefox-135.0.tar.xz"; 515 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/sq/firefox-135.0.1.tar.xz"; 516 516 locale = "sq"; 517 517 arch = "linux-x86_64"; 518 - sha256 = "59480fe7650d0d113bd7e8dc6cced23ce58a3a3c3c41e06eee05cee1ced8c539"; 518 + sha256 = "218f269f88a1d6289ecdab29a11395647fe693e4144d767eb46305f5736359af"; 519 519 } 520 520 { 521 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/sr/firefox-135.0.tar.xz"; 521 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/sr/firefox-135.0.1.tar.xz"; 522 522 locale = "sr"; 523 523 arch = "linux-x86_64"; 524 - sha256 = "bcabf19c9cd05ca3134684a54ad0b40d93fa51fa42a743716cc8f61c42af871b"; 524 + sha256 = "a84d53bebe11310254c65455358daa0d0c40280575c9fbf6e0a4c0b578a6cda3"; 525 525 } 526 526 { 527 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/sv-SE/firefox-135.0.tar.xz"; 527 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/sv-SE/firefox-135.0.1.tar.xz"; 528 528 locale = "sv-SE"; 529 529 arch = "linux-x86_64"; 530 - sha256 = "f970c9b0c6631e71b558741673d4059968987ae3298491ba0eda73e846812961"; 530 + sha256 = "46ff0638dff2df105f760852d3cb258f67ce7b70b3ec6092a7112f15ffc9553c"; 531 531 } 532 532 { 533 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/szl/firefox-135.0.tar.xz"; 533 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/szl/firefox-135.0.1.tar.xz"; 534 534 locale = "szl"; 535 535 arch = "linux-x86_64"; 536 - sha256 = "b11b31a0400d8919555cf31546c7019be647aefbc6627b02b56cd0af746284d7"; 536 + sha256 = "da2bc83da355292b4914cf1766426ca6aa623f4a329fd6f16b0252708a8f1986"; 537 537 } 538 538 { 539 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ta/firefox-135.0.tar.xz"; 539 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ta/firefox-135.0.1.tar.xz"; 540 540 locale = "ta"; 541 541 arch = "linux-x86_64"; 542 - sha256 = "f8c76cc97872e841187563b6dfbcb37683e56a9c1138b28c385dc4537c04f4fd"; 542 + sha256 = "731dd9e89351143c923e99b71d8b18cd09cdcba01ef8781037826bcaff52c35d"; 543 543 } 544 544 { 545 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/te/firefox-135.0.tar.xz"; 545 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/te/firefox-135.0.1.tar.xz"; 546 546 locale = "te"; 547 547 arch = "linux-x86_64"; 548 - sha256 = "a2888833539370cc5403975e5f2e2117bab9d7cb85d2bf04b9baaca08002bb3a"; 548 + sha256 = "71d10251232991cfe2f2a7f37016ed93bb6ed1cb009732c05e72371e8d716495"; 549 549 } 550 550 { 551 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/tg/firefox-135.0.tar.xz"; 551 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/tg/firefox-135.0.1.tar.xz"; 552 552 locale = "tg"; 553 553 arch = "linux-x86_64"; 554 - sha256 = "93724f54fe48cb5d8b8f7cdf1e6c7f2b29feb4e3d99c82087ef61096dd2e4a22"; 554 + sha256 = "bcf402aaa8bdeeb48ab7d21a6ea5eef55ed97fa04c96e3931c0df063ce36719f"; 555 555 } 556 556 { 557 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/th/firefox-135.0.tar.xz"; 557 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/th/firefox-135.0.1.tar.xz"; 558 558 locale = "th"; 559 559 arch = "linux-x86_64"; 560 - sha256 = "73a8b94072ba89c6c65b6a1b5bced4ffb8b0272971f3b3f193f344bbafdfd6ed"; 560 + sha256 = "c726adabe33ce9c9ef83ad2c3511cb5b3b14cfac740704b477f79d20db47faba"; 561 561 } 562 562 { 563 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/tl/firefox-135.0.tar.xz"; 563 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/tl/firefox-135.0.1.tar.xz"; 564 564 locale = "tl"; 565 565 arch = "linux-x86_64"; 566 - sha256 = "d1476f5ecf3e92305ecaae292a52ff2c055680045bb87461d2dc265fea649fb8"; 566 + sha256 = "2603148fd61af0bc103564de6df46ac5813fc98f6408e2916ccdc1234fb3bade"; 567 567 } 568 568 { 569 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/tr/firefox-135.0.tar.xz"; 569 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/tr/firefox-135.0.1.tar.xz"; 570 570 locale = "tr"; 571 571 arch = "linux-x86_64"; 572 - sha256 = "2fdad5abd956c3a48b458bf5651c7752b8197c1d1cf9ebd658d863374106fc5c"; 572 + sha256 = "25678b5287864fc27a9eeb53b0fcc7cbd1ca5ac319e7a666659a549cf73d8d07"; 573 573 } 574 574 { 575 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/trs/firefox-135.0.tar.xz"; 575 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/trs/firefox-135.0.1.tar.xz"; 576 576 locale = "trs"; 577 577 arch = "linux-x86_64"; 578 - sha256 = "6778234dd35065cb9b18481703d8ffdcffefdd625b3f2b388c974f2bd430cec5"; 578 + sha256 = "7a7e0a7d6288add3a287bca63c4c8eeabbe909105774f26b5df19bf593f8abcc"; 579 579 } 580 580 { 581 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/uk/firefox-135.0.tar.xz"; 581 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/uk/firefox-135.0.1.tar.xz"; 582 582 locale = "uk"; 583 583 arch = "linux-x86_64"; 584 - sha256 = "b8bd129dd0a9d0dae1d236ba7e22a5a9e37fa6c5558855ebbd324db0015f41af"; 584 + sha256 = "9ce9461aa559bb9572f71aab42d96a0dc42181b80cc5baa09c4ead7907e77c74"; 585 585 } 586 586 { 587 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/ur/firefox-135.0.tar.xz"; 587 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/ur/firefox-135.0.1.tar.xz"; 588 588 locale = "ur"; 589 589 arch = "linux-x86_64"; 590 - sha256 = "359806d22bf487eb60630a1cf4af9b586f3c2e0ba8a6e5226cfa17274d3ad56c"; 590 + sha256 = "225cb95d842660b83f45ad2c6bf78500bc72ee47d774e22db51e43d5bbc09e8f"; 591 591 } 592 592 { 593 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/uz/firefox-135.0.tar.xz"; 593 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/uz/firefox-135.0.1.tar.xz"; 594 594 locale = "uz"; 595 595 arch = "linux-x86_64"; 596 - sha256 = "793659a2f2720d72d94758945267c0ddd056076160966d349bc21b4ad1813ab4"; 596 + sha256 = "ffffa772a552421e82c79472ea641a4255725947e1be14221fff4e8bbebf9c54"; 597 597 } 598 598 { 599 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/vi/firefox-135.0.tar.xz"; 599 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/vi/firefox-135.0.1.tar.xz"; 600 600 locale = "vi"; 601 601 arch = "linux-x86_64"; 602 - sha256 = "fe8d38493ffffdc4edce2796b9166577e66388c769d4309247ca9202c17688f9"; 602 + sha256 = "1fb27749f090584cf06f731d871c8317b0bcc5a85391a85b1bd2c9caddde5848"; 603 603 } 604 604 { 605 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/xh/firefox-135.0.tar.xz"; 605 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/xh/firefox-135.0.1.tar.xz"; 606 606 locale = "xh"; 607 607 arch = "linux-x86_64"; 608 - sha256 = "2b14be62835ffecfc9be149df654c4e969071a74f247e81f8896d1d03f10580f"; 608 + sha256 = "47c7365321aa796f5a1bfb960a59e329fdcbcc8cd98c05736cbb3fcc3aa9cdf0"; 609 609 } 610 610 { 611 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/zh-CN/firefox-135.0.tar.xz"; 611 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/zh-CN/firefox-135.0.1.tar.xz"; 612 612 locale = "zh-CN"; 613 613 arch = "linux-x86_64"; 614 - sha256 = "89e60faadee55c112b47e4bd3b6f9fbb759a0cfa2fb4486c862bb8e4b0da141c"; 614 + sha256 = "3f192e56a3636945878d1c61b208cf37b3ba2761a9a0def06c2bf57f8e5e6868"; 615 615 } 616 616 { 617 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-x86_64/zh-TW/firefox-135.0.tar.xz"; 617 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-x86_64/zh-TW/firefox-135.0.1.tar.xz"; 618 618 locale = "zh-TW"; 619 619 arch = "linux-x86_64"; 620 - sha256 = "c90b2484a8cb8d5aa495c448ae79c2bb43d62f3a3201adb698dbea94a05e4f90"; 620 + sha256 = "1a1bce8af641af3dfa42e3cd97fc092d4f122bc4cf8cf48bf600235b388a6c46"; 621 621 } 622 622 { 623 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ach/firefox-135.0.tar.xz"; 623 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ach/firefox-135.0.1.tar.xz"; 624 624 locale = "ach"; 625 625 arch = "linux-i686"; 626 - sha256 = "a07a2a731018ae7537ad89d02cb4ca4826960ac2c5c7f54334d9c429259ce7a0"; 626 + sha256 = "c82cd11cbeab8500505a974944bbe72f5c1a7812a385ed83f50d6c06c37b72c2"; 627 627 } 628 628 { 629 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/af/firefox-135.0.tar.xz"; 629 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/af/firefox-135.0.1.tar.xz"; 630 630 locale = "af"; 631 631 arch = "linux-i686"; 632 - sha256 = "630eda9698abd2b781fa7777507f5557e7a9a278ba3287056b25384d28ef3b07"; 632 + sha256 = "63a0ad22cf777230cb88b33998afa52851e510454e03bda5f9af3f08179eb303"; 633 633 } 634 634 { 635 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/an/firefox-135.0.tar.xz"; 635 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/an/firefox-135.0.1.tar.xz"; 636 636 locale = "an"; 637 637 arch = "linux-i686"; 638 - sha256 = "58e1a5de6de631e36b4e654194a87f1de339c83ba3c749bbe00021b54bdb732a"; 638 + sha256 = "6e4561401df01b7a4b8a997270603171a781151cd31a4003677e076933de99c9"; 639 639 } 640 640 { 641 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ar/firefox-135.0.tar.xz"; 641 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ar/firefox-135.0.1.tar.xz"; 642 642 locale = "ar"; 643 643 arch = "linux-i686"; 644 - sha256 = "19344923c0e4b1291e21a1f6671633ce3b7ddf7695de192fc863fb21474df14e"; 644 + sha256 = "c7b7e1cff64f22436e13ee69344bc7c4d762c02f26afd69935b9c66c536b0b89"; 645 645 } 646 646 { 647 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ast/firefox-135.0.tar.xz"; 647 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ast/firefox-135.0.1.tar.xz"; 648 648 locale = "ast"; 649 649 arch = "linux-i686"; 650 - sha256 = "eb8f82fb906d0e95d936431ea6bf716514fc04187e383640a1ad44663c0d343e"; 650 + sha256 = "8fb6ee84c5bfa8c1a3843780f71672a47b5ba4f0f5de31e09946baf32f04e94e"; 651 651 } 652 652 { 653 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/az/firefox-135.0.tar.xz"; 653 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/az/firefox-135.0.1.tar.xz"; 654 654 locale = "az"; 655 655 arch = "linux-i686"; 656 - sha256 = "5f01c5b62ac22e98a5d246abb1c3c95dad6a942daa09b48182ea2a7a16543160"; 656 + sha256 = "5b04b6afb8e278df645dfeafcdccf35b0d822b2af3f8b85d0834b4bbcd1d22dc"; 657 657 } 658 658 { 659 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/be/firefox-135.0.tar.xz"; 659 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/be/firefox-135.0.1.tar.xz"; 660 660 locale = "be"; 661 661 arch = "linux-i686"; 662 - sha256 = "ba31da6bcb5decd92c5b0a4633de52ead1add60b8001aba9f9283cc7eb419603"; 662 + sha256 = "bfbf9a3ba109af1659c4569515bda7ae8becae2d52c89b20515c13552f02d679"; 663 663 } 664 664 { 665 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/bg/firefox-135.0.tar.xz"; 665 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/bg/firefox-135.0.1.tar.xz"; 666 666 locale = "bg"; 667 667 arch = "linux-i686"; 668 - sha256 = "a875391947cebbd6c4b9b4bd92563211fede6c0508a3525dc36de4784f0141a6"; 668 + sha256 = "3268b534952c38b6d62badaca6a5feafc3be9fd895381233887e984dc70242a2"; 669 669 } 670 670 { 671 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/bn/firefox-135.0.tar.xz"; 671 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/bn/firefox-135.0.1.tar.xz"; 672 672 locale = "bn"; 673 673 arch = "linux-i686"; 674 - sha256 = "649a71bc265d4a0e1db63f4591b28faaa8c99642b0ac8212f21ea701f2c971bc"; 674 + sha256 = "d70488e1e19a4b4a5d78ed76d810471597279596f87fa2a791f99b5d4980ba58"; 675 675 } 676 676 { 677 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/br/firefox-135.0.tar.xz"; 677 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/br/firefox-135.0.1.tar.xz"; 678 678 locale = "br"; 679 679 arch = "linux-i686"; 680 - sha256 = "1f80b825902b13cc6cd5f6ec99b0e6b85413ba4e4aca7159643aec4fe67f2957"; 680 + sha256 = "ce36b6e4eeb9fe08f1ac8fa9ae3e39de455a84351a07f94190c1107138d2b42f"; 681 681 } 682 682 { 683 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/bs/firefox-135.0.tar.xz"; 683 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/bs/firefox-135.0.1.tar.xz"; 684 684 locale = "bs"; 685 685 arch = "linux-i686"; 686 - sha256 = "07a42950a980aa8377cfd8928eebc0f65c7f8fbc62d0896b27e67abd20019b89"; 686 + sha256 = "3a4b8f3a5cb0b12223e1b9effcccfa9080db3df224cc9fe4bacfdca7929286ef"; 687 687 } 688 688 { 689 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ca-valencia/firefox-135.0.tar.xz"; 689 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ca-valencia/firefox-135.0.1.tar.xz"; 690 690 locale = "ca-valencia"; 691 691 arch = "linux-i686"; 692 - sha256 = "2cc5a7999e020c825d051bdc741f9b246f997c88e7a6b8c2b7a11f8edd1511c7"; 692 + sha256 = "cfcaa98614b10f801eefbb577b649485e35609c5e5873ba7252431c322cf8ca2"; 693 693 } 694 694 { 695 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ca/firefox-135.0.tar.xz"; 695 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ca/firefox-135.0.1.tar.xz"; 696 696 locale = "ca"; 697 697 arch = "linux-i686"; 698 - sha256 = "47ec24db0b43cb366458c490468e39462fbc40817dcb487cc6a47e2a4b6742bb"; 698 + sha256 = "0fc1404dc7fc6fe900065c3139efa8a5b564b2e31c43b14f3f12abbd9782b934"; 699 699 } 700 700 { 701 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/cak/firefox-135.0.tar.xz"; 701 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/cak/firefox-135.0.1.tar.xz"; 702 702 locale = "cak"; 703 703 arch = "linux-i686"; 704 - sha256 = "9119d696b019c4c751442e0aad94d611c2f18d079c6695f893b57c048deff019"; 704 + sha256 = "20516b513a9ed010c149b224f6571b1f58bc10659174a2b35f0895ac25066cbd"; 705 705 } 706 706 { 707 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/cs/firefox-135.0.tar.xz"; 707 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/cs/firefox-135.0.1.tar.xz"; 708 708 locale = "cs"; 709 709 arch = "linux-i686"; 710 - sha256 = "12553328d1dec07058d0924ec0b7bee4b10948226eb557a4403c70c3ce54f793"; 710 + sha256 = "50f2c076ad1fed32095b2df46fff544055876129f97dd0148b68105a400efcf8"; 711 711 } 712 712 { 713 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/cy/firefox-135.0.tar.xz"; 713 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/cy/firefox-135.0.1.tar.xz"; 714 714 locale = "cy"; 715 715 arch = "linux-i686"; 716 - sha256 = "ab846aaf4ba274f1bcf08f47a66fdb7fc924e63160bd0ed7fccb8181d6cb9f21"; 716 + sha256 = "e5ec5267bc359ea1b6d0558ca11e4759475694291e85b5e2284b26c0cb95b207"; 717 717 } 718 718 { 719 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/da/firefox-135.0.tar.xz"; 719 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/da/firefox-135.0.1.tar.xz"; 720 720 locale = "da"; 721 721 arch = "linux-i686"; 722 - sha256 = "36df3630869da89b0113d1e153472ef27610f557bccf6728488789f99be44efa"; 722 + sha256 = "b94cd629ed241c78631af1999de1c428a628baa88d4efed600472f55c4f91d68"; 723 723 } 724 724 { 725 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/de/firefox-135.0.tar.xz"; 725 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/de/firefox-135.0.1.tar.xz"; 726 726 locale = "de"; 727 727 arch = "linux-i686"; 728 - sha256 = "605907fe9e0243084065bc23a2ae26cb54d185ab3e3e376d1bce61cae7ee485f"; 728 + sha256 = "2e534968130b9ae7ea8c47f66b29ba9f97c0f4017404760fe7e2a8a0ff8af4e7"; 729 729 } 730 730 { 731 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/dsb/firefox-135.0.tar.xz"; 731 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/dsb/firefox-135.0.1.tar.xz"; 732 732 locale = "dsb"; 733 733 arch = "linux-i686"; 734 - sha256 = "31719fbad799cfbec1fdfa144ad7cb4a4353715da13bcfb2cbed9ca4a7e97d22"; 734 + sha256 = "2afe07c907d965a26d6a165dd5ffd6b799d40208618233c4394a503c0e5693d2"; 735 735 } 736 736 { 737 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/el/firefox-135.0.tar.xz"; 737 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/el/firefox-135.0.1.tar.xz"; 738 738 locale = "el"; 739 739 arch = "linux-i686"; 740 - sha256 = "04bece5ae8b0e5f343d296133d3c8cf08cd13b176b1194058d8077e3c0346e31"; 740 + sha256 = "a08417db97449e9f51c21b23f81a6627e860d5c2610f3f43064f40021864a91b"; 741 741 } 742 742 { 743 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/en-CA/firefox-135.0.tar.xz"; 743 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/en-CA/firefox-135.0.1.tar.xz"; 744 744 locale = "en-CA"; 745 745 arch = "linux-i686"; 746 - sha256 = "8caeaeffcb9de03b0ee52d2348cffa1cc7ad2f1a4a5a168495eec4581abd5910"; 746 + sha256 = "bc263b9f5a082f49e59c8f8432a89f29e2b241ce32236b95dc3efca653789acc"; 747 747 } 748 748 { 749 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/en-GB/firefox-135.0.tar.xz"; 749 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/en-GB/firefox-135.0.1.tar.xz"; 750 750 locale = "en-GB"; 751 751 arch = "linux-i686"; 752 - sha256 = "17b068b5b75916a144fbeaada4700413eccf7ad8158cc30d91d0b565ee635d3b"; 752 + sha256 = "eb8b857d57327915f5e7ba3b10170dcfbc90c76e317893fc435d4001c71615c2"; 753 753 } 754 754 { 755 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/en-US/firefox-135.0.tar.xz"; 755 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/en-US/firefox-135.0.1.tar.xz"; 756 756 locale = "en-US"; 757 757 arch = "linux-i686"; 758 - sha256 = "32d5797fb6b73956057126f364641806580a5abf41aef66aea981ba3b52505c1"; 758 + sha256 = "067f19bd0eee8892418a1f56160322187c3f4ac081a7ae796dc32774921a56ba"; 759 759 } 760 760 { 761 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/eo/firefox-135.0.tar.xz"; 761 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/eo/firefox-135.0.1.tar.xz"; 762 762 locale = "eo"; 763 763 arch = "linux-i686"; 764 - sha256 = "ebe7d8caa5a32e18dc7065d8690c62af2f0f30b1bdc5830fbaef818fd7e877b2"; 764 + sha256 = "211c205fd397da7979438e432240c53f2bbc0e9832a2dcbd7301c594b7924e46"; 765 765 } 766 766 { 767 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/es-AR/firefox-135.0.tar.xz"; 767 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/es-AR/firefox-135.0.1.tar.xz"; 768 768 locale = "es-AR"; 769 769 arch = "linux-i686"; 770 - sha256 = "143afb8ae089c2b624ed11de82f23de9459e2be74b3df419d95419bfd7047b6c"; 770 + sha256 = "dc5aa614418fd37b61c4a469156d85f9f37c27eccb8e570caa0448d1a2bf18b1"; 771 771 } 772 772 { 773 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/es-CL/firefox-135.0.tar.xz"; 773 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/es-CL/firefox-135.0.1.tar.xz"; 774 774 locale = "es-CL"; 775 775 arch = "linux-i686"; 776 - sha256 = "d8ab54eb2a0d1fc311b52d310ab5ac5717c77ebe3b8cc260ddb9405cd4c8dbbe"; 776 + sha256 = "912a7cc7d8d94cc4494542d48870456f7920a4f3bc3153a6e9f96d7ae33b998b"; 777 777 } 778 778 { 779 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/es-ES/firefox-135.0.tar.xz"; 779 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/es-ES/firefox-135.0.1.tar.xz"; 780 780 locale = "es-ES"; 781 781 arch = "linux-i686"; 782 - sha256 = "c068fcd27a64ce394d1039b8ff60da2945b64f4db56ee74a57058b71dbe7b3da"; 782 + sha256 = "129be627e784c79f5cab7864fc9bce8f36fdbdad6eabb5d319438334149045a3"; 783 783 } 784 784 { 785 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/es-MX/firefox-135.0.tar.xz"; 785 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/es-MX/firefox-135.0.1.tar.xz"; 786 786 locale = "es-MX"; 787 787 arch = "linux-i686"; 788 - sha256 = "5c01075d6533b39bcce503ceef855aa78d92b13a9b0784385493539ceb58f2ac"; 788 + sha256 = "95fcf3ddb9e19e402760a2065a50907e6d6bc7114ff0f40b62c6f240fd7ffc1b"; 789 789 } 790 790 { 791 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/et/firefox-135.0.tar.xz"; 791 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/et/firefox-135.0.1.tar.xz"; 792 792 locale = "et"; 793 793 arch = "linux-i686"; 794 - sha256 = "b58bbea73e0189d3125ab4665978c752a5ef25c4c3aa5c2d1f0dbf89fc6a3612"; 794 + sha256 = "13685d04f661d5de4b47fff13c278b0d753941beff73f738bed6742e3bab740f"; 795 795 } 796 796 { 797 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/eu/firefox-135.0.tar.xz"; 797 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/eu/firefox-135.0.1.tar.xz"; 798 798 locale = "eu"; 799 799 arch = "linux-i686"; 800 - sha256 = "da1461208643165545bd501df3d24fefb84cdd9f74158dc72dc3707b1a3c1860"; 800 + sha256 = "3b576d42d83bb25daf60b6ebaeb51ed90c0c6ba02bb303704eed99c5d9311277"; 801 801 } 802 802 { 803 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/fa/firefox-135.0.tar.xz"; 803 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/fa/firefox-135.0.1.tar.xz"; 804 804 locale = "fa"; 805 805 arch = "linux-i686"; 806 - sha256 = "b2dedcf59b982a0a226481da071e18ccbf913383d0aa5ba967f15f4629f4c56a"; 806 + sha256 = "af54fc246326c125b22f26f825a5354afc31a027a326cfddef2614f3016d6958"; 807 807 } 808 808 { 809 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ff/firefox-135.0.tar.xz"; 809 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ff/firefox-135.0.1.tar.xz"; 810 810 locale = "ff"; 811 811 arch = "linux-i686"; 812 - sha256 = "a85ec356ff144a9bb93d0831b2c012257cf5ee58b6aa83ddb18a4ba215a9ecb2"; 812 + sha256 = "b2baef68a972000a2efcd11cda6af5b3279ab1b80116f9bb44beb61532e132f8"; 813 813 } 814 814 { 815 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/fi/firefox-135.0.tar.xz"; 815 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/fi/firefox-135.0.1.tar.xz"; 816 816 locale = "fi"; 817 817 arch = "linux-i686"; 818 - sha256 = "4535482d184ab9d39730560e7ff9e2874f6f6364db24caaf63389c19d316b64e"; 818 + sha256 = "c1004e13cfcd6894503a6e13fad8dd97c8ebedfa69f52f9d003abde50f88c073"; 819 819 } 820 820 { 821 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/fr/firefox-135.0.tar.xz"; 821 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/fr/firefox-135.0.1.tar.xz"; 822 822 locale = "fr"; 823 823 arch = "linux-i686"; 824 - sha256 = "4c9f90a96ec29d4d54f28f7249959ebf95f6549e3d0357fba938e530316a341e"; 824 + sha256 = "ffa6a20adf5f77f5fd7ab38da6b886d7de4d940357c44e4fee161538b385d594"; 825 825 } 826 826 { 827 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/fur/firefox-135.0.tar.xz"; 827 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/fur/firefox-135.0.1.tar.xz"; 828 828 locale = "fur"; 829 829 arch = "linux-i686"; 830 - sha256 = "80d4a91909511dfdf59ae74d5a410dc9dc0b0768514aa42869143e488a92053a"; 830 + sha256 = "e5409602ca444c8b8ec3de997ee56f981bf398f27fb383429d5fb5d51a12d5c1"; 831 831 } 832 832 { 833 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/fy-NL/firefox-135.0.tar.xz"; 833 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/fy-NL/firefox-135.0.1.tar.xz"; 834 834 locale = "fy-NL"; 835 835 arch = "linux-i686"; 836 - sha256 = "c7cd74f4bc0d8285f3c1ae9d3dfa0185aab96e1166968ff78be7d72f57a2c745"; 836 + sha256 = "6965b6d0a81784a1b434edc47433216bc723fbf998f694543a16f80967c777e1"; 837 837 } 838 838 { 839 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ga-IE/firefox-135.0.tar.xz"; 839 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ga-IE/firefox-135.0.1.tar.xz"; 840 840 locale = "ga-IE"; 841 841 arch = "linux-i686"; 842 - sha256 = "1a3dbdf047686dbe14763be7b08c5dfa9a9d0b4aebe81cdd8d5ce15a44811251"; 842 + sha256 = "b76b639a3f4b84cbd27b10946f744f9ebe77b51259043c322709a4221d81554a"; 843 843 } 844 844 { 845 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/gd/firefox-135.0.tar.xz"; 845 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/gd/firefox-135.0.1.tar.xz"; 846 846 locale = "gd"; 847 847 arch = "linux-i686"; 848 - sha256 = "7c43ebb96030c764e6e3ed546956091121cf72bc8e0afd7ea6dbe15413b913e4"; 848 + sha256 = "e28e684bf152f76c7878f05fa796299349640239479e7edaaa1e136f4023dc18"; 849 849 } 850 850 { 851 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/gl/firefox-135.0.tar.xz"; 851 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/gl/firefox-135.0.1.tar.xz"; 852 852 locale = "gl"; 853 853 arch = "linux-i686"; 854 - sha256 = "1f8dee786eec9cbe3ba024180e25068d640e1d7b548e21982eeee38aea111f3e"; 854 + sha256 = "8d28ed21f02efd61288323226275d91445b7fa524f3079b73e9cc67573993386"; 855 855 } 856 856 { 857 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/gn/firefox-135.0.tar.xz"; 857 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/gn/firefox-135.0.1.tar.xz"; 858 858 locale = "gn"; 859 859 arch = "linux-i686"; 860 - sha256 = "9a1c5c0e001e93751749e8cecaf70d141f987024e6d94169b787a90c006f0a52"; 860 + sha256 = "84ac348eee05dd7688c80c24c14facf01227cc315f0a704076dfc75a8b860eed"; 861 861 } 862 862 { 863 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/gu-IN/firefox-135.0.tar.xz"; 863 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/gu-IN/firefox-135.0.1.tar.xz"; 864 864 locale = "gu-IN"; 865 865 arch = "linux-i686"; 866 - sha256 = "e3e730c52b102361ebcecb300cde0d08c3ac9cf11851a341b89e7c8cf25d3200"; 866 + sha256 = "c8a8ca67e03f1576a45cbd683fda752382acd72471db2ef9cc37c435cb918feb"; 867 867 } 868 868 { 869 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/he/firefox-135.0.tar.xz"; 869 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/he/firefox-135.0.1.tar.xz"; 870 870 locale = "he"; 871 871 arch = "linux-i686"; 872 - sha256 = "3946a8667cafd2e28bce8a05504718c36349150820a971b731e33ec2fcebec63"; 872 + sha256 = "fb6e174f3a0262546ad9e4b5f083504fb2b0dc8e97f6bbdf8fd028e77519d961"; 873 873 } 874 874 { 875 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/hi-IN/firefox-135.0.tar.xz"; 875 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/hi-IN/firefox-135.0.1.tar.xz"; 876 876 locale = "hi-IN"; 877 877 arch = "linux-i686"; 878 - sha256 = "5d8be7e6cec5cc331f4c08bdc594b4c2123b6436d33a33ff00f53cbfe5c15f58"; 878 + sha256 = "d615c947f4d005ff5f5c735dc51851a6cc581c673db92b6298188f0c2982e05a"; 879 879 } 880 880 { 881 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/hr/firefox-135.0.tar.xz"; 881 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/hr/firefox-135.0.1.tar.xz"; 882 882 locale = "hr"; 883 883 arch = "linux-i686"; 884 - sha256 = "819d02265ef917799607265bd7c574bcf5cce50a57bbe7840f9f926c33dbeb6b"; 884 + sha256 = "63ddf1729af345a5f695b8e253e347e8a232a77b6e2a949f87770bf769b7162b"; 885 885 } 886 886 { 887 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/hsb/firefox-135.0.tar.xz"; 887 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/hsb/firefox-135.0.1.tar.xz"; 888 888 locale = "hsb"; 889 889 arch = "linux-i686"; 890 - sha256 = "4fa4706f8a8d8a059ac96153fc8030a633bf68ed0300b62a4e1fa97abcf73ada"; 890 + sha256 = "60be97a59f23fe68f22e62e1fe9c95b723ae144f6c92dcf505f29985eb770af8"; 891 891 } 892 892 { 893 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/hu/firefox-135.0.tar.xz"; 893 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/hu/firefox-135.0.1.tar.xz"; 894 894 locale = "hu"; 895 895 arch = "linux-i686"; 896 - sha256 = "d5ed9ecf6a837c9e49be86845055502541dddc6b1683bb295f73aa9bbfb30bd3"; 896 + sha256 = "cf878262e5ac4668b03e53ba9ea8d06caddf5ae6062ed482c3ff53a4b42d5ab0"; 897 897 } 898 898 { 899 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/hy-AM/firefox-135.0.tar.xz"; 899 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/hy-AM/firefox-135.0.1.tar.xz"; 900 900 locale = "hy-AM"; 901 901 arch = "linux-i686"; 902 - sha256 = "6f30295f24ff5da7b698d4230477b8d781aa5f853bcc737ce7c5e168c204503c"; 902 + sha256 = "81916fa78ef8924cfbeeafd1544bd7f004394b0be9319a38cc9bf9daf2be0537"; 903 903 } 904 904 { 905 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ia/firefox-135.0.tar.xz"; 905 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ia/firefox-135.0.1.tar.xz"; 906 906 locale = "ia"; 907 907 arch = "linux-i686"; 908 - sha256 = "0f4ebd48ecfd5569278b810d376f2ff7fb9c40579fd16aecdb4c5290bd52bb54"; 908 + sha256 = "3c1fe474d0a6cea2bf7cf21800ab47e0079326e3eda3a1951d4d266b0c38a5cd"; 909 909 } 910 910 { 911 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/id/firefox-135.0.tar.xz"; 911 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/id/firefox-135.0.1.tar.xz"; 912 912 locale = "id"; 913 913 arch = "linux-i686"; 914 - sha256 = "0b58b33c5793a7c49b24b2eaf92412618bbd8b40aa56bf6b56e88c7e755f57c1"; 914 + sha256 = "f06ee4c1d2f087278152810a47c0d22d2d95f56782a12e149281c281e490444d"; 915 915 } 916 916 { 917 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/is/firefox-135.0.tar.xz"; 917 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/is/firefox-135.0.1.tar.xz"; 918 918 locale = "is"; 919 919 arch = "linux-i686"; 920 - sha256 = "0253cc841852ec7f18afc8ff4073c36c4fe0779dc69575748c118ff5f3ddf0dc"; 920 + sha256 = "2c191208103635c58040f0a5fb29a8a4f71c28fc86ddf39ca0510885abda08af"; 921 921 } 922 922 { 923 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/it/firefox-135.0.tar.xz"; 923 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/it/firefox-135.0.1.tar.xz"; 924 924 locale = "it"; 925 925 arch = "linux-i686"; 926 - sha256 = "f4dde397485ba89c87f8204767cf89b62bbc15298a8a644cd6acbd72dd89ae75"; 926 + sha256 = "0af746d1574f0ed4bd0ff0f6fe8297d8f30bf60ccaddc9bbd76989428f83cba0"; 927 927 } 928 928 { 929 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ja/firefox-135.0.tar.xz"; 929 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ja/firefox-135.0.1.tar.xz"; 930 930 locale = "ja"; 931 931 arch = "linux-i686"; 932 - sha256 = "f69146017ba38d2d1f4639364ab53ac7c5d7c60c5b91ef96859af3485dae6c16"; 932 + sha256 = "97650d3343a76441c61c89de9a4b1166472a1e8d9daf4cf80b09e7892448aec3"; 933 933 } 934 934 { 935 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ka/firefox-135.0.tar.xz"; 935 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ka/firefox-135.0.1.tar.xz"; 936 936 locale = "ka"; 937 937 arch = "linux-i686"; 938 - sha256 = "20a3a901d7ee16f65849392c2718ccb22f6ecc46ac5d5e66437cb170692cff28"; 938 + sha256 = "8340484f793a2a957c742139663206621322739288d62ee32ebd8f531afcda89"; 939 939 } 940 940 { 941 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/kab/firefox-135.0.tar.xz"; 941 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/kab/firefox-135.0.1.tar.xz"; 942 942 locale = "kab"; 943 943 arch = "linux-i686"; 944 - sha256 = "2408dec859396be2d506e81ee1d4e2560afda638256b65d6e11fef9aaaa30546"; 944 + sha256 = "3bdca715f792492e1f154f6282e875680507858da33dec14ef6fd81556eeb71b"; 945 945 } 946 946 { 947 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/kk/firefox-135.0.tar.xz"; 947 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/kk/firefox-135.0.1.tar.xz"; 948 948 locale = "kk"; 949 949 arch = "linux-i686"; 950 - sha256 = "e700c63a5000a61313817b8f4a7941f25e61bce5b6a5bfdcdff79bd5991b94df"; 950 + sha256 = "e12f286e5da6cce0d6a12aa17d08f34371164acc6ca8a3aae9ed28df3ae4e2b8"; 951 951 } 952 952 { 953 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/km/firefox-135.0.tar.xz"; 953 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/km/firefox-135.0.1.tar.xz"; 954 954 locale = "km"; 955 955 arch = "linux-i686"; 956 - sha256 = "b35589060c905e8377bd1f01a370d496cb0b9ace900906d9c06b0544ebdbf573"; 956 + sha256 = "13911d8099e669e5ceb77c089f8606e2556dd86beb32ae86a8d48d8d7f196b6a"; 957 957 } 958 958 { 959 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/kn/firefox-135.0.tar.xz"; 959 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/kn/firefox-135.0.1.tar.xz"; 960 960 locale = "kn"; 961 961 arch = "linux-i686"; 962 - sha256 = "af2de8fa55fa1ae3e8135f3cede963e55420b0b284b442d9600bc8ca95164f03"; 962 + sha256 = "dbc0696f90bace3fef21cfc7c816554ef500bbe123637467751b2572e28efce3"; 963 963 } 964 964 { 965 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ko/firefox-135.0.tar.xz"; 965 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ko/firefox-135.0.1.tar.xz"; 966 966 locale = "ko"; 967 967 arch = "linux-i686"; 968 - sha256 = "3b0db0b6da4f3b535c4f0db404e96da0316efcf69d357df19319438a7e7a5f77"; 968 + sha256 = "41a044fd8c2108137d07955e0fb8558d48d4c1e8eb28056b1f113d3c8866e124"; 969 969 } 970 970 { 971 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/lij/firefox-135.0.tar.xz"; 971 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/lij/firefox-135.0.1.tar.xz"; 972 972 locale = "lij"; 973 973 arch = "linux-i686"; 974 - sha256 = "3311e2c8274b4bdfd6e4605cbf7a8982b6e2fa8b722a1cb5dc22bf86220fbce0"; 974 + sha256 = "041982f1e4523807dce5c7f6b92b01c362255725b204974f7a42561a169e722d"; 975 975 } 976 976 { 977 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/lt/firefox-135.0.tar.xz"; 977 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/lt/firefox-135.0.1.tar.xz"; 978 978 locale = "lt"; 979 979 arch = "linux-i686"; 980 - sha256 = "0b41db6f021a8ed23854deea44cf0c05747ab5683847d7e23ced10092af52018"; 980 + sha256 = "5b9298fd6a0278d88876e2577233f37f0c109fa1523c296ebf495cbf65e14f61"; 981 981 } 982 982 { 983 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/lv/firefox-135.0.tar.xz"; 983 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/lv/firefox-135.0.1.tar.xz"; 984 984 locale = "lv"; 985 985 arch = "linux-i686"; 986 - sha256 = "42359e372283afa8a3a1be679eec96bace420a824b4934267647364190da191a"; 986 + sha256 = "8b22d827132e87a32541d40c0fbaa9eb44b0033f558644ef9406216731b4426f"; 987 987 } 988 988 { 989 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/mk/firefox-135.0.tar.xz"; 989 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/mk/firefox-135.0.1.tar.xz"; 990 990 locale = "mk"; 991 991 arch = "linux-i686"; 992 - sha256 = "f8007f41254785ccd82a487583e8ad78c4bc82344c08a7b5a1e2e63dea83dca0"; 992 + sha256 = "aed9daec2f23cf8d8a166e190e0c80e0701040fb57fa304de3c3c29ca3bf6933"; 993 993 } 994 994 { 995 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/mr/firefox-135.0.tar.xz"; 995 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/mr/firefox-135.0.1.tar.xz"; 996 996 locale = "mr"; 997 997 arch = "linux-i686"; 998 - sha256 = "10afc8d897c9bcaa6dcef951489f0249b23ae797d7e8dd8b7db951549512d1d7"; 998 + sha256 = "f06cc784521054bb1ae02b3d99b6820055f6f3a7af9f7ef72fce63dd9d55e488"; 999 999 } 1000 1000 { 1001 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ms/firefox-135.0.tar.xz"; 1001 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ms/firefox-135.0.1.tar.xz"; 1002 1002 locale = "ms"; 1003 1003 arch = "linux-i686"; 1004 - sha256 = "85be1b00eed99ce715c4087446cf8698bd3e2b291bc668f21a7af95822677695"; 1004 + sha256 = "16ed16efc1f850be47360ccfede38a43becc051e4417fea5c9ba4e42c69a9994"; 1005 1005 } 1006 1006 { 1007 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/my/firefox-135.0.tar.xz"; 1007 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/my/firefox-135.0.1.tar.xz"; 1008 1008 locale = "my"; 1009 1009 arch = "linux-i686"; 1010 - sha256 = "b283773b57401221a6c11631a01d76f9ba1654d4bb4c967b252ceb9b0de92f07"; 1010 + sha256 = "1d27debaec3228fae7e56dc021df9f3985b45c1ddbd53a9f24ffcd84c833bf85"; 1011 1011 } 1012 1012 { 1013 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/nb-NO/firefox-135.0.tar.xz"; 1013 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/nb-NO/firefox-135.0.1.tar.xz"; 1014 1014 locale = "nb-NO"; 1015 1015 arch = "linux-i686"; 1016 - sha256 = "ae11655f5e4274c43e9631bef110b02955e216e1fcbaff4025152c95af1e330d"; 1016 + sha256 = "62f259043d06b3468c94eb8088bdb1ad85c491bb37e7b6d4df9b2a3a5e941e8a"; 1017 1017 } 1018 1018 { 1019 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ne-NP/firefox-135.0.tar.xz"; 1019 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ne-NP/firefox-135.0.1.tar.xz"; 1020 1020 locale = "ne-NP"; 1021 1021 arch = "linux-i686"; 1022 - sha256 = "829e206e2cc1dd5a2253a78506cf34f1fc3f6232272993766ac1672e7b9791a0"; 1022 + sha256 = "6a2b77fdfc2560d089a3181353782b68c99441819e964ddbd4a0724e36bf35fd"; 1023 1023 } 1024 1024 { 1025 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/nl/firefox-135.0.tar.xz"; 1025 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/nl/firefox-135.0.1.tar.xz"; 1026 1026 locale = "nl"; 1027 1027 arch = "linux-i686"; 1028 - sha256 = "5509e5499a2685c0aed78b6b94ed855277a1a6e264275f710ada8ef0ee559317"; 1028 + sha256 = "a41cee355f500aca74fc45d01d82f671a7be30bc535dd66dd4aa656944d5c2f7"; 1029 1029 } 1030 1030 { 1031 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/nn-NO/firefox-135.0.tar.xz"; 1031 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/nn-NO/firefox-135.0.1.tar.xz"; 1032 1032 locale = "nn-NO"; 1033 1033 arch = "linux-i686"; 1034 - sha256 = "6720456fc8a1329eb4ae5c132466724e47d90962b11669a78e54a86b8275b845"; 1034 + sha256 = "e23dcd1a632ae9523a0c404beedfad11027d921d033a8eb877d7a23562c8b0b2"; 1035 1035 } 1036 1036 { 1037 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/oc/firefox-135.0.tar.xz"; 1037 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/oc/firefox-135.0.1.tar.xz"; 1038 1038 locale = "oc"; 1039 1039 arch = "linux-i686"; 1040 - sha256 = "d4a09d842cce68721631620e2bd5bb660af7a60f087f2895cc0f8557019673a8"; 1040 + sha256 = "d3f4e32079423d0ff4a17b3f65dd071a9343ead3ba70ecf2220779d58894212a"; 1041 1041 } 1042 1042 { 1043 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/pa-IN/firefox-135.0.tar.xz"; 1043 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/pa-IN/firefox-135.0.1.tar.xz"; 1044 1044 locale = "pa-IN"; 1045 1045 arch = "linux-i686"; 1046 - sha256 = "57ccaf9a4297e665f8a5e6d96cf6b1cddee7dfb20e19a1222f28ef2d7745fe04"; 1046 + sha256 = "ee0195d6c81d2444927a712b54e17ca610b327e93dc351721dbe92211e52830c"; 1047 1047 } 1048 1048 { 1049 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/pl/firefox-135.0.tar.xz"; 1049 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/pl/firefox-135.0.1.tar.xz"; 1050 1050 locale = "pl"; 1051 1051 arch = "linux-i686"; 1052 - sha256 = "f5466f86466996e629ff696d741ce088a52cad277e3ae9e4b993d115f78f8166"; 1052 + sha256 = "f760ae4af63044878bd30ca81e990368fb940240bddfb3970e3e365d6eeb7a0e"; 1053 1053 } 1054 1054 { 1055 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/pt-BR/firefox-135.0.tar.xz"; 1055 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/pt-BR/firefox-135.0.1.tar.xz"; 1056 1056 locale = "pt-BR"; 1057 1057 arch = "linux-i686"; 1058 - sha256 = "78f23b4fe39e5c63cc5b7920f5d23d5b56c1d4dbf0ced2555f2ace83ad273a02"; 1058 + sha256 = "7d5640b25e19264d7eb65b0a1d0d42f94cd3f23d2522dfbaa1dd6ef1cd11272f"; 1059 1059 } 1060 1060 { 1061 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/pt-PT/firefox-135.0.tar.xz"; 1061 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/pt-PT/firefox-135.0.1.tar.xz"; 1062 1062 locale = "pt-PT"; 1063 1063 arch = "linux-i686"; 1064 - sha256 = "627acc82631d1ec768f5b6db839c4fe35da62d122d5f44c99026cafad5fcb79e"; 1064 + sha256 = "5438be4a31c069bb24165a291997353eec760e1f6d293a738bddb04269309101"; 1065 1065 } 1066 1066 { 1067 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/rm/firefox-135.0.tar.xz"; 1067 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/rm/firefox-135.0.1.tar.xz"; 1068 1068 locale = "rm"; 1069 1069 arch = "linux-i686"; 1070 - sha256 = "f760882647686c29f4a06eaff4dc5b36a526fa7c79f3376cdca882c674540770"; 1070 + sha256 = "1f6bcaa34fc64e2df6e02327bb6908e6fc175709645a20354df3f5e10dd94689"; 1071 1071 } 1072 1072 { 1073 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ro/firefox-135.0.tar.xz"; 1073 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ro/firefox-135.0.1.tar.xz"; 1074 1074 locale = "ro"; 1075 1075 arch = "linux-i686"; 1076 - sha256 = "992e47bfefa6119ff2242f76c31b384442b1839e186eb1ffe77bd9823df6bd44"; 1076 + sha256 = "0d5f3918bdb99590fbfc9ba120161af625e2111f1c646dcc6e45562d45edf76d"; 1077 1077 } 1078 1078 { 1079 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ru/firefox-135.0.tar.xz"; 1079 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ru/firefox-135.0.1.tar.xz"; 1080 1080 locale = "ru"; 1081 1081 arch = "linux-i686"; 1082 - sha256 = "9013b0dd4ede8346aaa03eebd86c962862d3a934b0e434867de75179df5bf7e3"; 1082 + sha256 = "bc5712bdab6eae0ec4ad0f2ff2a2534baf0014f51b3c07279350a630d2b1aecc"; 1083 1083 } 1084 1084 { 1085 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/sat/firefox-135.0.tar.xz"; 1085 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/sat/firefox-135.0.1.tar.xz"; 1086 1086 locale = "sat"; 1087 1087 arch = "linux-i686"; 1088 - sha256 = "dc28e7b81777a21a16fb370c300db8b13a6ce04b5fceb6d6519868c5756438e6"; 1088 + sha256 = "618408e39eb1f7b0ea6ab20f74666d35e4a7dcab839b61588671191421e1a2ee"; 1089 1089 } 1090 1090 { 1091 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/sc/firefox-135.0.tar.xz"; 1091 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/sc/firefox-135.0.1.tar.xz"; 1092 1092 locale = "sc"; 1093 1093 arch = "linux-i686"; 1094 - sha256 = "cd0ad4cc058276d812e9320d4bbaa3fb85776eca94efa7b50e26bf493e2b27f6"; 1094 + sha256 = "dbc95d8d5529e59642efd27637eb18ce89a56b40bdb7d6c9df4433e5718460c7"; 1095 1095 } 1096 1096 { 1097 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/sco/firefox-135.0.tar.xz"; 1097 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/sco/firefox-135.0.1.tar.xz"; 1098 1098 locale = "sco"; 1099 1099 arch = "linux-i686"; 1100 - sha256 = "6e7344d4fe680074c9693bed8bd53a23056bb380133ee69ac48183f459f2bfeb"; 1100 + sha256 = "026d409e7e86646e558204a9d6cd410d854925116a06e289a2a42dd908fb10a6"; 1101 1101 } 1102 1102 { 1103 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/si/firefox-135.0.tar.xz"; 1103 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/si/firefox-135.0.1.tar.xz"; 1104 1104 locale = "si"; 1105 1105 arch = "linux-i686"; 1106 - sha256 = "1a97c7d611850c4d51e4877a8095692ea4a43c419714ac2c15fcb996bf537903"; 1106 + sha256 = "202838316171552b6da2ef6b333c1d73941ccddb617cb103a40baa74552b067c"; 1107 1107 } 1108 1108 { 1109 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/sk/firefox-135.0.tar.xz"; 1109 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/sk/firefox-135.0.1.tar.xz"; 1110 1110 locale = "sk"; 1111 1111 arch = "linux-i686"; 1112 - sha256 = "b156f3881bca16eba9da6e57180e1738aef51e1509df124b366c2b3b47c0d5cf"; 1112 + sha256 = "f8966944f387e89bde5dc93b2d86b41922f778beb6fd17879831cfa738c812f6"; 1113 1113 } 1114 1114 { 1115 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/skr/firefox-135.0.tar.xz"; 1115 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/skr/firefox-135.0.1.tar.xz"; 1116 1116 locale = "skr"; 1117 1117 arch = "linux-i686"; 1118 - sha256 = "7f805ea3ae7088d7a27bc6268c88509c36296c24d6eddc8090088b86b01147f7"; 1118 + sha256 = "827176c3fcb0355d77364117e2b19c2d495e9aebdd86a4647fdff5a303d4a9ae"; 1119 1119 } 1120 1120 { 1121 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/sl/firefox-135.0.tar.xz"; 1121 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/sl/firefox-135.0.1.tar.xz"; 1122 1122 locale = "sl"; 1123 1123 arch = "linux-i686"; 1124 - sha256 = "20f8a5096542e674a71c940abc305b75b85d62d4dc4df082e013f351126b02ee"; 1124 + sha256 = "f727a0d7a7b78aa48ff95fe5139c39769b6595fd4d5d371e185dfb40130099b5"; 1125 1125 } 1126 1126 { 1127 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/son/firefox-135.0.tar.xz"; 1127 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/son/firefox-135.0.1.tar.xz"; 1128 1128 locale = "son"; 1129 1129 arch = "linux-i686"; 1130 - sha256 = "a0b073d9d27f788283f45bab15599e2af985ac005b4c5ef668ee1fd3bee3658e"; 1130 + sha256 = "c783330aadb74922bf02d9c0b45ea42066d9b4668979e91ef6006d32ce139fc6"; 1131 1131 } 1132 1132 { 1133 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/sq/firefox-135.0.tar.xz"; 1133 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/sq/firefox-135.0.1.tar.xz"; 1134 1134 locale = "sq"; 1135 1135 arch = "linux-i686"; 1136 - sha256 = "92f0a7677fe01cdee34f1cf190dc7251e57d227f55c31d48c5ce83f8d7321c11"; 1136 + sha256 = "1ebb5a0f44aa0a850930a7936aad40b43af0d702a68e9c91b63c40bfd6be24b7"; 1137 1137 } 1138 1138 { 1139 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/sr/firefox-135.0.tar.xz"; 1139 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/sr/firefox-135.0.1.tar.xz"; 1140 1140 locale = "sr"; 1141 1141 arch = "linux-i686"; 1142 - sha256 = "39a50e200d5ce945e7a2acd13be34bd7d52e02c91079b4803d48325dfa81ff3f"; 1142 + sha256 = "b0a53e48e940177ff013cb1d737e8ab9a3b36b7971aaad3d2977a49e2b3391f8"; 1143 1143 } 1144 1144 { 1145 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/sv-SE/firefox-135.0.tar.xz"; 1145 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/sv-SE/firefox-135.0.1.tar.xz"; 1146 1146 locale = "sv-SE"; 1147 1147 arch = "linux-i686"; 1148 - sha256 = "41fa5e130806e53be730129abe4b3fb997627974a37a83cd470242f5ec089932"; 1148 + sha256 = "a878c834a3434ece1071e35ac7b641fec839caeb7944be935701d0f1a8827fab"; 1149 1149 } 1150 1150 { 1151 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/szl/firefox-135.0.tar.xz"; 1151 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/szl/firefox-135.0.1.tar.xz"; 1152 1152 locale = "szl"; 1153 1153 arch = "linux-i686"; 1154 - sha256 = "23d714703092342d4d08deef15c8bc4a67f169772a064bca9d251956235254b6"; 1154 + sha256 = "225bb44e577cebfb5c00cca92d0bb727f1927e001800ed58436f05056b3f306e"; 1155 1155 } 1156 1156 { 1157 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ta/firefox-135.0.tar.xz"; 1157 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ta/firefox-135.0.1.tar.xz"; 1158 1158 locale = "ta"; 1159 1159 arch = "linux-i686"; 1160 - sha256 = "e4f447f676071d00f8da91bf0da4d167e12899e2697c54e6292550a34d7300e6"; 1160 + sha256 = "d42227878cf9a9145ca25a2c8843f681c6fa8a04624ce9833d1e0f5bea9957d2"; 1161 1161 } 1162 1162 { 1163 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/te/firefox-135.0.tar.xz"; 1163 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/te/firefox-135.0.1.tar.xz"; 1164 1164 locale = "te"; 1165 1165 arch = "linux-i686"; 1166 - sha256 = "f9382d58456cb70498dfa81ad5867e9f270eb1f363121b7ada6bcecff14fa046"; 1166 + sha256 = "6c0e77f5bb0f63f87c7cb614119948823e3e18f4185691e9868e5fe9f0d23af6"; 1167 1167 } 1168 1168 { 1169 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/tg/firefox-135.0.tar.xz"; 1169 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/tg/firefox-135.0.1.tar.xz"; 1170 1170 locale = "tg"; 1171 1171 arch = "linux-i686"; 1172 - sha256 = "a4bd85c33939c3d4cf092beb77f02a18f9a705001c8809445cf5a596db880b57"; 1172 + sha256 = "f52a5f70015e490fa1ed675f00cbfd07144baea736b72fab945f5419d02ce2b6"; 1173 1173 } 1174 1174 { 1175 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/th/firefox-135.0.tar.xz"; 1175 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/th/firefox-135.0.1.tar.xz"; 1176 1176 locale = "th"; 1177 1177 arch = "linux-i686"; 1178 - sha256 = "909af32f3357e7cc0a8b487e34e7bafff3a31713f42a140ae1e79f488f881825"; 1178 + sha256 = "8ff6b30726c51c7226256f4373266c54865d597617511c17ac544a302bff2768"; 1179 1179 } 1180 1180 { 1181 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/tl/firefox-135.0.tar.xz"; 1181 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/tl/firefox-135.0.1.tar.xz"; 1182 1182 locale = "tl"; 1183 1183 arch = "linux-i686"; 1184 - sha256 = "cbf1fe33dea4e5ff46399e03ebc0c9449a1669cfa0dd56aa22bbd246a0663b35"; 1184 + sha256 = "7f2cb41dee4c348e319f1532249bef98b115219e86abdfb144f0e102d7eadb65"; 1185 1185 } 1186 1186 { 1187 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/tr/firefox-135.0.tar.xz"; 1187 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/tr/firefox-135.0.1.tar.xz"; 1188 1188 locale = "tr"; 1189 1189 arch = "linux-i686"; 1190 - sha256 = "2c9b55bca186fff6ff66ccd3e18f550126b4249d1fde3c992fd29ebe43846484"; 1190 + sha256 = "bc15cf950bfddaf704d70eeedbddf710c7a53a4d0791e79d260a6a518fcbcad9"; 1191 1191 } 1192 1192 { 1193 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/trs/firefox-135.0.tar.xz"; 1193 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/trs/firefox-135.0.1.tar.xz"; 1194 1194 locale = "trs"; 1195 1195 arch = "linux-i686"; 1196 - sha256 = "4ab7871247486004fa019cc56166328222b5109066aee74f9436e0412c7483a9"; 1196 + sha256 = "ca2511c660fb97be8da00e8ad5b06d7e188b64b71f8d1ed1881d1150e1ff2a30"; 1197 1197 } 1198 1198 { 1199 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/uk/firefox-135.0.tar.xz"; 1199 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/uk/firefox-135.0.1.tar.xz"; 1200 1200 locale = "uk"; 1201 1201 arch = "linux-i686"; 1202 - sha256 = "8754b818af913d3abacf617b896c41526d0ca1b196ea3186e2b69e206190903e"; 1202 + sha256 = "e7dae85ef3bdf6b8b82bb79a38764106ac7077283e7fd39aa663ca424b9ed9ba"; 1203 1203 } 1204 1204 { 1205 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/ur/firefox-135.0.tar.xz"; 1205 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/ur/firefox-135.0.1.tar.xz"; 1206 1206 locale = "ur"; 1207 1207 arch = "linux-i686"; 1208 - sha256 = "1a24847487d6bd763b8d037cfe9194d4602bd575b7c9fc01deaf119301d2234b"; 1208 + sha256 = "83c97adb1e15085a39e470f07b53f06a2db7d98a4daf7439d41484f063ce6445"; 1209 1209 } 1210 1210 { 1211 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/uz/firefox-135.0.tar.xz"; 1211 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/uz/firefox-135.0.1.tar.xz"; 1212 1212 locale = "uz"; 1213 1213 arch = "linux-i686"; 1214 - sha256 = "90747f2eb59822d559136292766c94c204d3f057ae46afd454c9ac25a08460d9"; 1214 + sha256 = "ad03d75ac68688f7aba2a801017639e3510e46fd42b12f602b8aa66482d21bc4"; 1215 1215 } 1216 1216 { 1217 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/vi/firefox-135.0.tar.xz"; 1217 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/vi/firefox-135.0.1.tar.xz"; 1218 1218 locale = "vi"; 1219 1219 arch = "linux-i686"; 1220 - sha256 = "3f5ce919bc24311f405a245960e60e16defd64a90c48ee021fcf8b6173492122"; 1220 + sha256 = "04d36020a4601df78adf1c18634765aed3e574fc709751eafa811e6a473738b3"; 1221 1221 } 1222 1222 { 1223 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/xh/firefox-135.0.tar.xz"; 1223 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/xh/firefox-135.0.1.tar.xz"; 1224 1224 locale = "xh"; 1225 1225 arch = "linux-i686"; 1226 - sha256 = "632f6447fa0bc0d837c8a73c9d2c560b8fdeb2db1cecd14427242294a3444bf2"; 1226 + sha256 = "eca2beedc5ed43f9928c7fc83186f4beafa6b48e870f467dd06d1f9412383fa0"; 1227 1227 } 1228 1228 { 1229 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/zh-CN/firefox-135.0.tar.xz"; 1229 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/zh-CN/firefox-135.0.1.tar.xz"; 1230 1230 locale = "zh-CN"; 1231 1231 arch = "linux-i686"; 1232 - sha256 = "0048673d6bb16efc9bcc0e6ce96de2bce6de9892c39876bb75095569fce246e9"; 1232 + sha256 = "80d155ac20cbbf3960fa4a9f108fa0ca6bc97ec5eeb64f684757019c9bb05ac2"; 1233 1233 } 1234 1234 { 1235 - url = "https://archive.mozilla.org/pub/firefox/releases/135.0/linux-i686/zh-TW/firefox-135.0.tar.xz"; 1235 + url = "https://archive.mozilla.org/pub/firefox/releases/135.0.1/linux-i686/zh-TW/firefox-135.0.1.tar.xz"; 1236 1236 locale = "zh-TW"; 1237 1237 arch = "linux-i686"; 1238 - sha256 = "ec8d89d995d7c06f36ca4360f50f99a474a2d6c2670357eebcc6f82eef80d343"; 1238 + sha256 = "ad7a84f4151bac75ff3d4e720fb2af7f329c115c510d6aa4cdc2f7fbf2ec3bcf"; 1239 1239 } 1240 1240 ]; 1241 1241 }
+2 -2
pkgs/applications/networking/browsers/firefox/packages/firefox.nix
··· 9 9 10 10 buildMozillaMach rec { 11 11 pname = "firefox"; 12 - version = "135.0"; 12 + version = "135.0.1"; 13 13 src = fetchurl { 14 14 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 15 - sha512 = "7d283bcefe1e328901f15a88f5ff3da566bb0495ce5b9e3895e7a156020126a5743b6bffd69d94d9eb812e1868195ae92db162d29a5d98ee118fdb238469c089"; 15 + sha512 = "9ff7c2ab6bc1660e339cdcd7745f8bdac5be25d3a79b9f0393385935270d7ef488599856bc38c22ae0b067389fa71a6999703b74804a6e0ea8265eb99788cea9"; 16 16 }; 17 17 18 18 meta = {
+3 -3
pkgs/by-name/ca/cargo-chef/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "cargo-chef"; 9 - version = "0.1.69"; 9 + version = "0.1.71"; 10 10 11 11 src = fetchCrate { 12 12 inherit pname version; 13 - hash = "sha256-zDVolVllWl0DM0AByglKhU8JQpkdcmyVGe1vYo+eamk="; 13 + hash = "sha256-ZbbRo+AAlh7sW1HROxHfmnDxchJRWUId3oh5wgPauuQ="; 14 14 }; 15 15 16 16 useFetchCargoVendor = true; 17 - cargoHash = "sha256-3bjnAQLIO0hHjkRDym2oUzmiMd2gp5gN+iK8NxBC22Q="; 17 + cargoHash = "sha256-/VqFs5wzKbnfZRfKERUGjuCj/H+o1iI/ioMPq/FugDo="; 18 18 19 19 meta = with lib; { 20 20 description = "Cargo-subcommand to speed up Rust Docker builds using Docker layer caching";
+3 -3
pkgs/by-name/ca/cargo-modules/package.nix
··· 6 6 }: 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "cargo-modules"; 9 - version = "0.21.2"; 9 + version = "0.22.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "regexident"; 13 13 repo = "cargo-modules"; 14 14 tag = "v${version}"; 15 - hash = "sha256-mrl1I1dmf2WqtUbBsUq3kgqPwc4S/EaYRc/B9hpEo90="; 15 + hash = "sha256-dtL4vcNPtZc1FQ6LnlovXX0bQkyzkfhPDaJvf/SVmaU="; 16 16 }; 17 17 18 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-fg9w7jDoXJjdho8dHBItDp6O/6eU89eQMASYqTrUB2I="; 19 + cargoHash = "sha256-Mc+fAb46JiS2wH1Ybksj75qHf6JU26NFrHUv/drca5k="; 20 20 21 21 checkFlags = [ 22 22 "--skip=cfg_test::with_tests::smoke"
+3 -3
pkgs/by-name/ca/cargo-nextest/package.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-nextest"; 5 - version = "0.9.87"; 5 + version = "0.9.91"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "nextest-rs"; 9 9 repo = "nextest"; 10 10 rev = "cargo-nextest-${version}"; 11 - hash = "sha256-J+84FZfrbv6jp2T9cYgodLZ+TgIAht+uJSVi5ULDGBU="; 11 + hash = "sha256-jLC90TewhtXiYmbOtgdyzPtS7VlCBMCXWRJlM1DUCI8="; 12 12 }; 13 13 14 14 useFetchCargoVendor = true; 15 - cargoHash = "sha256-qyqhhAitl0u69JYX+qjN8OnTyF17VdjjkbioFyA/W8s="; 15 + cargoHash = "sha256-Gjf54oc3Z/Ehc4Vg8wi/TfwMOZnPSR4ck4HCS57SNIc="; 16 16 17 17 cargoBuildFlags = [ "-p" "cargo-nextest" ]; 18 18 cargoTestFlags = [ "-p" "cargo-nextest" ];
+3 -3
pkgs/by-name/ca/cargo-tally/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "cargo-tally"; 11 - version = "1.0.57"; 11 + version = "1.0.58"; 12 12 13 13 src = fetchCrate { 14 14 inherit pname version; 15 - hash = "sha256-0f+23kQZzmUeAjettZ3iRTATiv73sGpI13TzZFTU150="; 15 + hash = "sha256-a9Mgsxe3vNtvuqMJIm7nRL2aiYYzpArz7R5XQcZAUxc="; 16 16 }; 17 17 18 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-6wMkRLF3Hn6zu8UM629RoUY83wmSEYaYX5EMb9xBveQ="; 19 + cargoHash = "sha256-3ZlF3FyWzcVL/ZMqId3wY//UzV7LeoJJdftb0IIC7Vk="; 20 20 21 21 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin ( 22 22 with darwin.apple_sdk_11_0.frameworks;
+2 -2
pkgs/by-name/co/cowsql/package.nix
··· 13 13 14 14 stdenv.mkDerivation (finalAttrs: { 15 15 pname = "cowsql"; 16 - version = "1.15.6"; 16 + version = "1.15.8"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "cowsql"; 20 20 repo = "cowsql"; 21 21 tag = "v${finalAttrs.version}"; 22 - hash = "sha256-cr6AT/n2/6DuGK53JvGLwCkMi4+fS128qxj3X9SJYuw="; 22 + hash = "sha256-rwTa9owtnkyI9OpUKLk6V7WbAkqlYucpGzPnHHvKW/A="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+67
pkgs/by-name/el/elm-land/elm-srcs.nix
··· 1 + { 2 + 3 + "elm/browser" = { 4 + sha256 = "0nagb9ajacxbbg985r4k9h0jadqpp0gp84nm94kcgbr5sf8i9x13"; 5 + version = "1.0.2"; 6 + }; 7 + 8 + "elm/core" = { 9 + sha256 = "19w0iisdd66ywjayyga4kv2p1v9rxzqjaxhckp8ni6n8i0fb2dvf"; 10 + version = "1.0.5"; 11 + }; 12 + 13 + "elm/html" = { 14 + sha256 = "1n3gpzmpqqdsldys4ipgyl1zacn0kbpc3g4v3hdpiyfjlgh8bf3k"; 15 + version = "1.0.0"; 16 + }; 17 + 18 + "elm/json" = { 19 + sha256 = "0kjwrz195z84kwywaxhhlnpl3p251qlbm5iz6byd6jky2crmyqyh"; 20 + version = "1.1.3"; 21 + }; 22 + 23 + "stil4m/elm-syntax" = { 24 + sha256 = "1dlk7gslh9la6y7y3d56a37lsymmz32rlspbywcfmq40mq9hiify"; 25 + version = "7.2.9"; 26 + }; 27 + 28 + "elm-community/list-extra" = { 29 + sha256 = "043iwpdwyrfb1jndxh7kf7xlkgq1v6pjczv1r1b19p2wky6nmy8z"; 30 + version = "8.5.2"; 31 + }; 32 + 33 + "elm/parser" = { 34 + sha256 = "0a3cxrvbm7mwg9ykynhp7vjid58zsw03r63qxipxp3z09qks7512"; 35 + version = "1.1.0"; 36 + }; 37 + 38 + "elm/time" = { 39 + sha256 = "0vch7i86vn0x8b850w1p69vplll1bnbkp8s383z7pinyg94cm2z1"; 40 + version = "1.0.0"; 41 + }; 42 + 43 + "elm/url" = { 44 + sha256 = "0av8x5syid40sgpl5vd7pry2rq0q4pga28b4yykn9gd9v12rs3l4"; 45 + version = "1.0.0"; 46 + }; 47 + 48 + "elm/virtual-dom" = { 49 + sha256 = "1yvb8px2z62xd578ag2q0r5hd1vkz9y7dfkx05355iiy1d7jwq4v"; 50 + version = "1.0.3"; 51 + }; 52 + 53 + "miniBill/elm-unicode" = { 54 + sha256 = "18w246bvra93amvqq3r2kqdv5ad8iavnhvcsbfdxw6747pi6pg2f"; 55 + version = "1.0.2"; 56 + }; 57 + 58 + "rtfeldman/elm-hex" = { 59 + sha256 = "1y0aa16asvwdqmgbskh5iba6psp43lkcjjw9mgzj3gsrg33lp00d"; 60 + version = "1.0.0"; 61 + }; 62 + 63 + "stil4m/structured-writer" = { 64 + sha256 = "02k32yaw275bivab90wy8qkbys3gg4fw53f798dzf1j9wharhg12"; 65 + version = "1.0.3"; 66 + }; 67 + }
+71
pkgs/by-name/el/elm-land/package.nix
··· 1 + { 2 + lib, 3 + buildNpmPackage, 4 + fetchFromGitHub, 5 + elmPackages, 6 + versionCheckHook, 7 + writeShellScript, 8 + nix-update, 9 + elm2nix, 10 + nixfmt-rfc-style, 11 + }: 12 + 13 + buildNpmPackage rec { 14 + pname = "elm-land"; 15 + version = "0.20.1"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "elm-land"; 19 + repo = "elm-land"; 20 + rev = "v${version}"; 21 + hash = "sha256-PFyiVTH2Cek377YZwaCmvDToQCaxWQvJrQkRhyNI2Wg="; 22 + }; 23 + 24 + sourceRoot = "${src.name}/projects/cli"; 25 + 26 + npmDepsHash = "sha256-Bg16s0tqEaUT+BbFMKuEtx32rmbZLIILp8Ra/dQGmUg="; 27 + 28 + npmRebuildFlags = [ "--ignore-scripts" ]; 29 + 30 + postConfigure = 31 + (elmPackages.fetchElmDeps { 32 + elmPackages = import ./elm-srcs.nix; 33 + elmVersion = elmPackages.elm.version; 34 + registryDat = ./registry.dat; 35 + }) 36 + + '' 37 + ln -sf ${lib.getExe elmPackages.elm} node_modules/.bin/elm 38 + ''; 39 + 40 + nativeInstallCheckInputs = [ 41 + versionCheckHook 42 + ]; 43 + versionCheckProgramArg = [ "--version" ]; 44 + doInstallCheck = true; 45 + 46 + passthru.updateScript = writeShellScript "update-elm-land" '' 47 + set -eu -o pipefail 48 + 49 + # Update version, src and npm deps 50 + ${lib.getExe nix-update} "$UPDATE_NIX_ATTR_PATH" 51 + 52 + # Update elm deps 53 + cp "$(nix-build -A "$UPDATE_NIX_ATTR_PATH".src)/projects/cli/src/codegen/elm.json" elm.json 54 + trap 'rm -rf elm.json registry.dat &> /dev/null' EXIT 55 + ${lib.getExe elm2nix} convert > pkgs/by-name/el/elm-land/elm-srcs.nix 56 + ${lib.getExe nixfmt-rfc-style} pkgs/by-name/el/elm-land/elm-srcs.nix 57 + ${lib.getExe elm2nix} snapshot 58 + cp registry.dat pkgs/by-name/el/elm-land/registry.dat 59 + ''; 60 + 61 + meta = { 62 + description = "A production-ready framework for building Elm applications"; 63 + homepage = "https://github.com/elm-land/elm-land"; 64 + license = lib.licenses.bsd3; 65 + maintainers = with lib.maintainers; [ 66 + domenkozar 67 + zupo 68 + ]; 69 + mainProgram = "elm-land"; 70 + }; 71 + }
pkgs/by-name/el/elm-land/registry.dat

This is a binary file and will not be displayed.

+28
pkgs/by-name/fl/flamelens/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + rustPlatform, 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "flamelens"; 9 + version = "0.3.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "YS-L"; 13 + repo = "flamelens"; 14 + tag = "v${version}"; 15 + hash = "sha256-cvsBeV9pdgr8V+82Fw/XZS1Ljq/7ff4JYMHnNxqNvOM="; 16 + }; 17 + 18 + useFetchCargoVendor = true; 19 + cargoHash = "sha256-FIIt8RwPaPrVG3D9FoMjR4L81NzUrKZsAeW2AJkBG1o="; 20 + 21 + meta = { 22 + description = "Interactive flamegraph viewer in the terminal"; 23 + homepage = "https://github.com/YS-L/flamelens"; 24 + changelog = "https://github.com/YS-L/flamelens/releases/tag/v${version}/CHANGELOG.md"; 25 + license = lib.licenses.mit; 26 + maintainers = [ lib.maintainers.averdow ]; 27 + }; 28 + }
+2 -1
pkgs/by-name/h2/h2o/package.nix
··· 66 66 EXES="$(find "$out/share/h2o" -type f -executable)" 67 67 for exe in $EXES; do 68 68 wrapProgram "$exe" \ 69 - --set "H2O_PERL" "${lib.getExe perl}" 69 + --set "H2O_PERL" "${lib.getExe perl}" \ 70 + --prefix "PATH" : "${lib.getBin openssl}/bin" 70 71 done 71 72 ''; 72 73
+13
pkgs/by-name/me/mealie/0000_openai_1.63.0.patch
··· 1 + diff --git a/mealie/services/openai/openai.py b/mealie/services/openai/openai.py 2 + index 09c391d5..5d74d930 100644 3 + --- a/mealie/services/openai/openai.py 4 + +++ b/mealie/services/openai/openai.py 5 + @@ -7,7 +7,7 @@ from pathlib import Path 6 + from textwrap import dedent 7 + 8 + from openai import NOT_GIVEN, AsyncOpenAI 9 + -from openai.resources.chat.completions import ChatCompletion 10 + +from openai.types.chat import ChatCompletion 11 + from pydantic import BaseModel, field_validator 12 + 13 + from mealie.core.config import get_app_settings
+43 -44
pkgs/by-name/me/mealie/package.nix
··· 1 - { lib 2 - , stdenv 3 - , callPackage 4 - , fetchFromGitHub 5 - , makeWrapper 6 - , nixosTests 7 - , python3Packages 8 - , writeShellScript 1 + { 2 + lib, 3 + stdenv, 4 + callPackage, 5 + fetchFromGitHub, 6 + makeWrapper, 7 + nixosTests, 8 + python3Packages, 9 + writeShellScript, 9 10 }: 10 11 11 12 let 12 - version = "2.3.0"; 13 + version = "2.6.0"; 13 14 src = fetchFromGitHub { 14 15 owner = "mealie-recipes"; 15 16 repo = "mealie"; 16 - rev = "v${version}"; 17 - hash = "sha256-GN+uXyZCvDuFmQnXhn0mFans3bvvEw7Uq6V0OeCPEbE="; 17 + tag = "v${version}"; 18 + hash = "sha256-txkHCQ/xTakPXXFki161jNOKwAH9p9z1hCNEEkbqQtM="; 18 19 }; 19 20 20 21 frontend = callPackage (import ./mealie-frontend.nix src version) { }; ··· 53 54 dontWrapPythonPrograms = true; 54 55 55 56 pythonRelaxDeps = true; 57 + 58 + patches = [ 59 + # compatiblity with openai 1.63.0 60 + ./0000_openai_1.63.0.patch 61 + ]; 56 62 57 63 dependencies = with pythonpkgs; [ 58 64 aiofiles ··· 96 102 97 103 substituteInPlace mealie/__init__.py \ 98 104 --replace-fail '__version__ = ' '__version__ = "v${version}" #' 105 + ''; 99 106 100 - substituteInPlace mealie/services/backups_v2/alchemy_exporter.py \ 101 - --replace-fail 'PROJECT_DIR = ' "PROJECT_DIR = Path('$out') #" 107 + postInstall = 108 + let 109 + start_script = writeShellScript "start-mealie" '' 110 + ${lib.getExe pythonpkgs.gunicorn} "$@" -k uvicorn.workers.UvicornWorker mealie.app:app; 111 + ''; 112 + init_db = writeShellScript "init-mealie-db" '' 113 + ${python.interpreter} $OUT/${python.sitePackages}/mealie/scripts/install_model.py 114 + ${python.interpreter} $OUT/${python.sitePackages}/mealie/db/init_db.py 115 + ''; 116 + in 117 + '' 118 + mkdir -p $out/bin $out/libexec 119 + rm -f $out/bin/* 102 120 103 - substituteInPlace mealie/db/init_db.py \ 104 - --replace-fail 'PROJECT_DIR = ' "PROJECT_DIR = Path('$out') #" 105 - 106 - substituteInPlace mealie/services/backups_v2/alchemy_exporter.py \ 107 - --replace-fail '"script_location", path.join(PROJECT_DIR, "alembic")' '"script_location", "${src}/alembic"' 108 - ''; 121 + makeWrapper ${start_script} $out/bin/mealie \ 122 + --set PYTHONPATH "$out/${python.sitePackages}:${pythonpkgs.makePythonPath dependencies}" \ 123 + --set LD_LIBRARY_PATH "${crfpp}/lib" \ 124 + --set STATIC_FILES "${frontend}" \ 125 + --set PATH "${lib.makeBinPath [ crfpp ]}" 109 126 110 - postInstall = let 111 - start_script = writeShellScript "start-mealie" '' 112 - ${lib.getExe pythonpkgs.gunicorn} "$@" -k uvicorn.workers.UvicornWorker mealie.app:app; 127 + makeWrapper ${init_db} $out/libexec/init_db \ 128 + --set PYTHONPATH "$out/${python.sitePackages}:${pythonpkgs.makePythonPath dependencies}" \ 129 + --set OUT "$out" 113 130 ''; 114 - init_db = writeShellScript "init-mealie-db" '' 115 - ${python.interpreter} $OUT/${python.sitePackages}/mealie/scripts/install_model.py 116 - ${python.interpreter} $OUT/${python.sitePackages}/mealie/db/init_db.py 117 - ''; 118 - in '' 119 - mkdir -p $out/bin $out/libexec 120 - rm -f $out/bin/* 121 - 122 - substitute ${src}/alembic.ini $out/alembic.ini \ 123 - --replace-fail 'script_location = alembic' 'script_location = ${src}/alembic' 124 - 125 - makeWrapper ${start_script} $out/bin/mealie \ 126 - --set PYTHONPATH "$out/${python.sitePackages}:${pythonpkgs.makePythonPath dependencies}" \ 127 - --set LD_LIBRARY_PATH "${crfpp}/lib" \ 128 - --set STATIC_FILES "${frontend}" \ 129 - --set PATH "${lib.makeBinPath [ crfpp ]}" 130 - 131 - makeWrapper ${init_db} $out/libexec/init_db \ 132 - --set PYTHONPATH "$out/${python.sitePackages}:${pythonpkgs.makePythonPath dependencies}" \ 133 - --set OUT "$out" 134 - ''; 135 131 136 132 nativeCheckInputs = with pythonpkgs; [ pytestCheckHook ]; 137 133 ··· 160 156 homepage = "https://mealie.io"; 161 157 changelog = "https://github.com/mealie-recipes/mealie/releases/tag/${src.rev}"; 162 158 license = licenses.agpl3Only; 163 - maintainers = with maintainers; [ litchipi anoa ]; 159 + maintainers = with maintainers; [ 160 + litchipi 161 + anoa 162 + ]; 164 163 mainProgram = "mealie"; 165 164 }; 166 165 }
+42
pkgs/by-name/mp/mpls/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + versionCheckHook, 7 + }: 8 + buildGoModule rec { 9 + pname = "mpls"; 10 + version = "0.12.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "mhersson"; 14 + repo = "mpls"; 15 + tag = "v${version}"; 16 + hash = "sha256-2NOP5k3N2T2T8zg/6SlKDRJsWt+LcjAOmYe/tMrjCnc="; 17 + }; 18 + 19 + vendorHash = "sha256-6iXZWLCF0LfchcGSFrCtILLeR1Yx7oxD/7JIYyrrkHM="; 20 + 21 + ldflags = [ 22 + "-s" 23 + "-w" 24 + "-X github.com/mhersson/mpls/cmd.Version=${version}" 25 + "-X github.com/mhersson/mpls/internal/mpls.Version=${version}" 26 + ]; 27 + 28 + nativeInstallCheckInputs = [ versionCheckHook ]; 29 + versionCheckProgramArg = "--version"; 30 + doInstallCheck = true; 31 + 32 + passthru.updateScript = nix-update-script { }; 33 + 34 + meta = { 35 + description = "Live preview of markdown using Language Server Protocol"; 36 + homepage = "https://github.com/mhersson/mpls"; 37 + changelog = "https://github.com/mhersson/mpls/releases/tag/${src.tag}"; 38 + license = lib.licenses.asl20; 39 + maintainers = with lib.maintainers; [ jervw ]; 40 + mainProgram = "mpls"; 41 + }; 42 + }
+8 -1
pkgs/by-name/my/mydumper/package.nix
··· 102 102 cp -r $src/docs/images ./docs 103 103 ''; 104 104 105 - passthru.updateScript = nix-update-script { }; 105 + passthru.updateScript = nix-update-script { 106 + # even patch numbers are pre-releases 107 + # see https://github.com/mydumper/mydumper/tree/afe0eb9317f1e9cdde45f7b0e463029912c6c981?tab=readme-ov-file#versioning 108 + extraArgs = [ 109 + "--version-regex" 110 + "v(\\d+\\.\\d+\\.\\d*[13579]-\\d+)" 111 + ]; 112 + }; 106 113 107 114 # mydumper --version is checked in `versionCheckHook` 108 115 passthru.tests = testers.testVersion {
+48 -30
pkgs/by-name/op/openfortivpn/package.nix
··· 1 - { stdenv 2 - , lib 3 - , fetchFromGitHub 4 - , autoreconfHook 5 - , pkg-config 6 - , openssl 7 - , ppp 8 - , systemd 9 - , withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd 10 - , withPpp ? stdenv.hostPlatform.isLinux 1 + { 2 + stdenv, 3 + lib, 4 + fetchFromGitHub, 5 + autoreconfHook, 6 + pkg-config, 7 + openssl, 8 + ppp, 9 + systemd, 10 + withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd, 11 + withPpp ? stdenv.hostPlatform.isLinux, 12 + versionCheckHook, 13 + nix-update-script, 11 14 }: 12 15 13 16 stdenv.mkDerivation rec { 14 17 pname = "openfortivpn"; 15 - version = "1.22.1"; 18 + version = "1.23.1"; 16 19 17 20 src = fetchFromGitHub { 18 21 owner = "adrienverge"; 19 22 repo = pname; 20 - rev = "v${version}"; 21 - hash = "sha256-FhS4q8p1Q2Lu7xj2ZkUbJcMWvRSn+lqFdYqBNYB3V1E="; 23 + tag = "v${version}"; 24 + hash = "sha256-Pv9v7e5xPTIrgqldBDtTFxW+aIjbxSeu0sQ9n6HjO9w="; 22 25 }; 23 26 24 27 # we cannot write the config file to /etc and as we don't need the file, so drop it ··· 27 30 --replace '$(DESTDIR)$(confdir)' /tmp 28 31 ''; 29 32 30 - nativeBuildInputs = [ autoreconfHook pkg-config ]; 33 + nativeBuildInputs = [ 34 + autoreconfHook 35 + pkg-config 36 + ]; 31 37 32 - buildInputs = [ 33 - openssl 34 - ] 35 - ++ lib.optional withSystemd systemd 36 - ++ lib.optional withPpp ppp; 38 + buildInputs = 39 + [ 40 + openssl 41 + ] 42 + ++ lib.optional withSystemd systemd 43 + ++ lib.optional withPpp ppp; 37 44 38 - configureFlags = [ 39 - "--sysconfdir=/etc" 40 - ] 41 - ++ lib.optional withSystemd "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system" 42 - ++ lib.optional withPpp "--with-pppd=${ppp}/bin/pppd" 43 - # configure: error: cannot check for file existence when cross compiling 44 - ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "--disable-proc"; 45 + configureFlags = 46 + [ 47 + "--sysconfdir=/etc" 48 + ] 49 + ++ lib.optional withSystemd "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system" 50 + ++ lib.optional withPpp "--with-pppd=${ppp}/bin/pppd" 51 + # configure: error: cannot check for file existence when cross compiling 52 + ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "--disable-proc"; 45 53 46 54 enableParallelBuilding = true; 47 55 48 - meta = with lib; { 56 + nativeInstallCheckInputs = [ 57 + versionCheckHook 58 + ]; 59 + versionCheckProgramArg = [ "--version" ]; 60 + doInstallCheck = true; 61 + 62 + passthru = { 63 + updateScript = nix-update-script { }; 64 + }; 65 + 66 + meta = { 49 67 description = "Client for PPP+SSL VPN tunnel services"; 50 68 homepage = "https://github.com/adrienverge/openfortivpn"; 51 - license = licenses.gpl3; 52 - maintainers = with maintainers; [ madjar ]; 53 - platforms = with platforms; linux ++ darwin; 69 + license = lib.licenses.gpl3; 70 + maintainers = with lib.maintainers; [ madjar ]; 71 + platforms = with lib.platforms; linux ++ darwin; 54 72 mainProgram = "openfortivpn"; 55 73 }; 56 74 }
+8 -6
pkgs/by-name/po/positron-bin/package.nix
··· 3 3 _7zz, 4 4 alsa-lib, 5 5 systemd, 6 + wrapGAppsHook4, 6 7 autoPatchelfHook, 7 8 blas, 8 9 dpkg, ··· 21 22 }: 22 23 let 23 24 pname = "positron-bin"; 24 - version = "2024.11.0-116"; 25 + version = "2025.02.0-171"; 25 26 in 26 27 stdenv.mkDerivation { 27 28 inherit version pname; ··· 30 31 if stdenv.hostPlatform.isDarwin then 31 32 fetchurl { 32 33 url = "https://github.com/posit-dev/positron/releases/download/${version}/Positron-${version}.dmg"; 33 - hash = "sha256-5Ym42InDgFLGdZk0LYV1H0eC5WzmsYToG1KLdiGgTto="; 34 + hash = "sha256-b5o1+UXt5JAuHkm1K1jrMLV+7PHfKJTOff4aTk8xm2I="; 34 35 } 35 36 else 36 37 fetchurl { 37 - url = "https://github.com/posit-dev/positron/releases/download/${version}/Positron-${version}.deb"; 38 - hash = "sha256-pE25XVYFW8WwyQ7zmox2mmXy6ZCSaXk2gSnPimg7xtU="; 38 + url = "https://github.com/posit-dev/positron/releases/download/${version}/Positron-${version}-x64.deb"; 39 + hash = "sha256-TjQc/Y4Sa2MlLslbygYVFbIk3raArMvYstSiSEYzfo0="; 39 40 }; 40 41 41 42 buildInputs = ··· 64 65 lib.optionals stdenv.hostPlatform.isLinux [ 65 66 autoPatchelfHook 66 67 dpkg 68 + wrapGAppsHook4 67 69 ] 68 70 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 69 71 _7zz ··· 99 101 install -m 444 -D usr/share/applications/positron.desktop "$out/share/applications/positron.desktop" 100 102 substituteInPlace "$out/share/applications/positron.desktop" \ 101 103 --replace-fail \ 102 - "Icon=com.visualstudio.code.oss" \ 103 - "Icon=$out/share/pixmaps/com.visualstudio.code.oss.png" \ 104 + "Icon=co.posit.positron" \ 105 + "Icon=$out/share/pixmaps/co.posit.positron.png" \ 104 106 --replace-fail \ 105 107 "Exec=/usr/share/positron/positron %F" \ 106 108 "Exec=$out/share/positron/.positron-wrapped %F" \
+2 -2
pkgs/by-name/po/positron-bin/update.sh
··· 29 29 30 30 # Update Linux hash. 31 31 current_hash=$(nix store prefetch-file --json --hash-type sha256 \ 32 - "https://github.com/posit-dev/positron/releases/download/${current_version}/Positron-${current_version}.deb" \ 32 + "https://github.com/posit-dev/positron/releases/download/${current_version}/Positron-${current_version}-x64.deb" \ 33 33 | jq -r .hash) 34 34 35 35 new_hash=$(nix store prefetch-file --json --hash-type sha256 \ 36 - "https://github.com/posit-dev/positron/releases/download/${new_version}/Positron-${new_version}.deb" \ 36 + "https://github.com/posit-dev/positron/releases/download/${new_version}/Positron-${new_version}-x64.deb" \ 37 37 | jq -r .hash) 38 38 39 39 sed -i "s|$current_hash|$new_hash|g" $positron_nix
+10 -5
pkgs/by-name/si/simple-scan/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchurl, 5 + fetchpatch, 5 6 meson, 6 7 ninja, 7 8 pkg-config, ··· 34 35 hash = "sha256-wW5lkBQv5WO+UUMSKzu7U/awCn2p2VL2HEf6Jve08Kk="; 35 36 }; 36 37 38 + patches = [ 39 + # simple-scan: Use RDNN app ID 40 + # https://gitlab.gnome.org/GNOME/simple-scan/-/issues/390 41 + (fetchpatch { 42 + url = "https://gitlab.gnome.org/GNOME/simple-scan/-/commit/c09a6def153e52494072a36233c7e7b3307b67bf.patch"; 43 + hash = "sha256-deyssrsVwPAfT5ru6c0LFwR2pEFnZ0v8wMqoi96tw8s="; 44 + }) 45 + ]; 46 + 37 47 nativeBuildInputs = [ 38 48 meson 39 49 ninja ··· 62 72 63 73 postPatch = '' 64 74 patchShebangs data/meson_compile_gschema.py 65 - ''; 66 - 67 - postInstall = '' 68 - mkdir -p $out/share/icons/hicolor/scalable/actions/ 69 - install -m 444 ../data/icons/scalable/actions/* $out/share/icons/hicolor/scalable/actions/ 70 75 ''; 71 76 72 77 doCheck = true;
+3 -3
pkgs/by-name/sv/svu/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "svu"; 11 - version = "2.2.0"; 11 + version = "3.0.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "caarlos0"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-C5ATwRsi9hJBO9xFlyMDoxu97rJHwcKNToWhcmx6M6g="; 17 + sha256 = "sha256-z+2H49fhi0X7rH1NvgOlkJFCrEftAMk5PA/qUUJIfmY="; 18 18 }; 19 19 20 - vendorHash = "sha256-/FSvNoVDWAkQs09gMrqyoA0su52nlk/nSCYRAhQhbwQ="; 20 + vendorHash = "sha256-lqE5S13VQ7WLow6tXcFOWcK/dw7LvvEDpgRTQ8aJGeg="; 21 21 22 22 ldflags = [ 23 23 "-s"
+2 -2
pkgs/by-name/v2/v2ray-domain-list-community/package.nix
··· 9 9 let 10 10 generator = pkgsBuildBuild.buildGoModule rec { 11 11 pname = "v2ray-domain-list-community"; 12 - version = "20250124154827"; 12 + version = "20250216152937"; 13 13 src = fetchFromGitHub { 14 14 owner = "v2fly"; 15 15 repo = "domain-list-community"; 16 16 rev = version; 17 - hash = "sha256-E69X6ktgZvW3xrZl+jmQMoPwRQlqU+0RW2epJHyFgeQ="; 17 + hash = "sha256-VmICKm6G5evY1X9jnFD4Ip9BFuFMGqOB5aoIDYcGqJQ="; 18 18 }; 19 19 vendorHash = "sha256-NLh14rXRci4hgDkBJVJDIDvobndB7KYRKAX7UjyqSsg="; 20 20 meta = with lib; {
+5 -5
pkgs/by-name/we/wezterm/package.nix
··· 29 29 30 30 rustPlatform.buildRustPackage rec { 31 31 pname = "wezterm"; 32 - version = "0-unstable-2025-02-10"; 32 + version = "0-unstable-2025-02-13"; 33 33 34 34 src = fetchFromGitHub { 35 35 owner = "wez"; 36 36 repo = "wezterm"; 37 - rev = "52c1ca749552af4d8a2f18ec10fe8f14b6622519"; 37 + rev = "ee0c04e735fb94cb5119681f704fb7fa6731e713"; 38 38 fetchSubmodules = true; 39 - hash = "sha256-4dIu0WczmjfCfYe2/fZybMWfgYd4XezIHUUPVb3ou28="; 39 + hash = "sha256-0jqnSzzfg8ecBaayJI8oP9X0FyijFFT3LA6GKfpAFwI="; 40 40 }; 41 41 42 42 postPatch = '' ··· 53 53 --replace-fail 'hash hostnamectl 2>/dev/null' 'command type -P hostnamectl &>/dev/null' 54 54 ''; 55 55 56 - cargoHash = "sha256-2PJBd3nouxK0iIDOKIS9rrXbbts6zTYdrzxxokSiNwo="; 56 + cargoHash = "sha256-WyQYmRNlabJaCTJm7Cn9nkXfOGAcOHwhoD9vmEggrDw="; 57 57 useFetchCargoVendor = true; 58 58 59 59 nativeBuildInputs = [ ··· 66 66 buildInputs = 67 67 [ 68 68 fontconfig 69 + openssl 69 70 zlib 70 71 ] 71 72 ++ lib.optionals stdenv.hostPlatform.isLinux [ 72 73 libX11 73 74 libxcb 74 75 libxkbcommon 75 - openssl 76 76 wayland 77 77 xcbutil 78 78 xcbutilimage
+5 -9
pkgs/by-name/yo/yoda/package.nix
··· 30 30 ]; 31 31 32 32 buildInputs = 33 - [ 34 - python3 35 - ] 33 + [ python3 ] 36 34 ++ (with python3.pkgs; [ 37 35 numpy 38 36 matplotlib 39 37 ]) 40 - ++ lib.optionals withRootSupport [ 41 - root 42 - ]; 38 + ++ lib.optionals withRootSupport [ root ]; 43 39 44 - propagatedBuildInputs = [ 45 - zlib 46 - ]; 40 + propagatedBuildInputs = [ zlib ]; 41 + 42 + env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-DWITH_OSX"; 47 43 48 44 strictDeps = true; 49 45
+2 -2
pkgs/desktops/xfce/applications/xfce4-notifyd/default.nix
··· 18 18 mkXfceDerivation { 19 19 category = "apps"; 20 20 pname = "xfce4-notifyd"; 21 - version = "0.9.6"; 21 + version = "0.9.7"; 22 22 odd-unstable = false; 23 23 24 - sha256 = "sha256-TxVz9fUvuS5bl9eq9isalez3/Pro366TGFMBQ2DfIVI="; 24 + sha256 = "sha256-pgdoy3mZOGMOBwK/cYEl8fre4fZo2lfyWzZnrSYlQ64="; 25 25 26 26 buildInputs = [ 27 27 dbus
+2 -12
pkgs/desktops/xfce/core/xfdesktop/default.nix
··· 1 1 { 2 2 lib, 3 3 mkXfceDerivation, 4 - fetchpatch, 5 4 exo, 6 5 gtk3, 7 6 libxfce4ui, ··· 18 17 mkXfceDerivation { 19 18 category = "xfce"; 20 19 pname = "xfdesktop"; 21 - version = "4.20.0"; 20 + version = "4.20.1"; 22 21 23 - sha256 = "sha256-80g3lk1TkQI0fbYf2nXs36TrPlaGTHgH6k/TGOzRd3w="; 24 - 25 - patches = [ 26 - # Fix monitor chooser UI resource path 27 - # https://gitlab.xfce.org/xfce/xfdesktop/-/merge_requests/181 28 - (fetchpatch { 29 - url = "https://gitlab.xfce.org/xfce/xfdesktop/-/commit/699e21b062f56bdc0db192bfe036420b2618612e.patch"; 30 - hash = "sha256-YTtXF+OJMHn6KY2xui1qGZ04np9a60asne+8ZS/dujs="; 31 - }) 32 - ]; 22 + sha256 = "sha256-QBzsHXEdTGj8PlgB+L/TJjxAVksKqf+9KrRN3YaBf44="; 33 23 34 24 buildInputs = [ 35 25 exo
+2
pkgs/desktops/xfce/default.nix
··· 43 43 44 44 thunar-media-tags-plugin = callPackage ./thunar-plugins/media-tags { }; 45 45 46 + thunar-vcs-plugin = callPackage ./thunar-plugins/vcs { }; 47 + 46 48 tumbler = callPackage ./core/tumbler { }; 47 49 48 50 xfce4-panel = callPackage ./core/xfce4-panel { };
+40
pkgs/desktops/xfce/thunar-plugins/vcs/default.nix
··· 1 + { 2 + lib, 3 + mkXfceDerivation, 4 + thunar, 5 + exo, 6 + libxfce4util, 7 + gtk3, 8 + glib, 9 + subversion, 10 + apr, 11 + aprutil, 12 + withSubversion ? false, 13 + }: 14 + mkXfceDerivation { 15 + category = "thunar-plugins"; 16 + pname = "thunar-vcs-plugin"; 17 + version = "0.3.0"; 18 + odd-unstable = false; 19 + 20 + sha256 = "sha256-e9t6lIsvaV/2AAL/7I4Pbcokvy7Lp2+D9sJefTZqB1g="; 21 + 22 + buildInputs = 23 + [ 24 + thunar 25 + exo 26 + libxfce4util 27 + gtk3 28 + glib 29 + ] 30 + ++ lib.optionals withSubversion [ 31 + apr 32 + aprutil 33 + subversion 34 + ]; 35 + 36 + meta = { 37 + description = "Thunar plugin providing support for Subversion and Git"; 38 + maintainers = with lib.maintainers; [ lordmzte ] ++ lib.teams.xfce.members; 39 + }; 40 + }
+14 -27
pkgs/development/compilers/elm/packages/node/default.nix
··· 7 7 inherit (pkgs.stdenv.hostPlatform) system; 8 8 }; 9 9 ESBUILD_BINARY_PATH = lib.getExe ( 10 - pkgs.esbuild.override { 11 - buildGoModule = args: pkgs.buildGoModule (args // rec { 12 - version = "0.20.2"; 13 - src = pkgs.fetchFromGitHub { 14 - owner = "evanw"; 15 - repo = "esbuild"; 16 - rev = "v${version}"; 17 - hash = "sha256-h/Vqwax4B4nehRP9TaYbdixAZdb1hx373dNxNHvDrtY="; 18 - }; 19 - vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ="; 20 - }); 21 - } 22 - ); 10 + pkgs.esbuild.override { 11 + buildGoModule = args: pkgs.buildGoModule (args // rec { 12 + version = "0.20.2"; 13 + src = pkgs.fetchFromGitHub { 14 + owner = "evanw"; 15 + repo = "esbuild"; 16 + rev = "v${version}"; 17 + hash = "sha256-h/Vqwax4B4nehRP9TaYbdixAZdb1hx373dNxNHvDrtY="; 18 + }; 19 + vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ="; 20 + }); 21 + } 22 + ); 23 23 in 24 24 with self; with elmLib; { 25 25 inherit (nodePkgs) elm-live elm-upgrade elm-xref elm-analyse elm-git-install; ··· 124 124 125 125 elm-pages = import ./elm-pages { inherit nodePkgs pkgs lib makeWrapper; }; 126 126 127 - elm-land = 128 - let 129 - patched = patchNpmElm nodePkgs.elm-land; 130 - in 131 - patched.override (old: { 132 - inherit ESBUILD_BINARY_PATH; 133 - meta = with lib; nodePkgs."elm-land".meta // { 134 - description = "Production-ready framework for building Elm applications"; 135 - homepage = "https://elm.land/"; 136 - license = licenses.bsd3; 137 - maintainers = [ maintainers.zupo ]; 138 - }; 139 - } 140 - ); 127 + elm-land = pkgs.elm-land; # Alias 141 128 142 129 elm-doc-preview = nodePkgs."elm-doc-preview".overrideAttrs (old: { 143 130 nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ old.nodejs.pkgs.node-gyp-build ];
+1 -1
pkgs/development/compilers/elm/packages/node/node-composition.nix
··· 19 19 writeShellScript 20 20 ; 21 21 inherit pkgs nodejs; 22 - libtool = if pkgs.stdenv.hostPlatform.isDarwin then pkgs.cctools or pkgs.darwin.cctools else null; 22 + libtool = if pkgs.stdenv.isDarwin then pkgs.cctools or pkgs.darwin.cctools else null; 23 23 }; 24 24 in 25 25 import ./node-packages.nix {
-1
pkgs/development/compilers/elm/packages/node/node-packages.json
··· 3 3 "elm-coverage", 4 4 "elm-doc-preview", 5 5 "@elm-tooling/elm-language-server", 6 - "elm-land", 7 6 "elm-live", 8 7 "elm-spa", 9 8 "elm-test",
+2001 -2423
pkgs/development/compilers/elm/packages/node/node-packages.nix
··· 39 39 sha512 = "OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA=="; 40 40 }; 41 41 }; 42 - "@babel/code-frame-7.24.7" = { 42 + "@babel/code-frame-7.26.2" = { 43 43 name = "_at_babel_slash_code-frame"; 44 44 packageName = "@babel/code-frame"; 45 - version = "7.24.7"; 45 + version = "7.26.2"; 46 46 src = fetchurl { 47 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz"; 48 - sha512 = "BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA=="; 47 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz"; 48 + sha512 = "RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="; 49 49 }; 50 50 }; 51 - "@babel/compat-data-7.25.4" = { 51 + "@babel/compat-data-7.26.8" = { 52 52 name = "_at_babel_slash_compat-data"; 53 53 packageName = "@babel/compat-data"; 54 - version = "7.25.4"; 54 + version = "7.26.8"; 55 55 src = fetchurl { 56 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.4.tgz"; 57 - sha512 = "+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ=="; 56 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz"; 57 + sha512 = "oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ=="; 58 58 }; 59 59 }; 60 60 "@babel/core-7.12.10" = { ··· 66 66 sha512 = "eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w=="; 67 67 }; 68 68 }; 69 - "@babel/generator-7.25.6" = { 69 + "@babel/generator-7.26.9" = { 70 70 name = "_at_babel_slash_generator"; 71 71 packageName = "@babel/generator"; 72 - version = "7.25.6"; 72 + version = "7.26.9"; 73 73 src = fetchurl { 74 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.25.6.tgz"; 75 - sha512 = "VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw=="; 74 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz"; 75 + sha512 = "kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="; 76 76 }; 77 77 }; 78 - "@babel/helper-annotate-as-pure-7.24.7" = { 78 + "@babel/helper-annotate-as-pure-7.25.9" = { 79 79 name = "_at_babel_slash_helper-annotate-as-pure"; 80 80 packageName = "@babel/helper-annotate-as-pure"; 81 - version = "7.24.7"; 82 - src = fetchurl { 83 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz"; 84 - sha512 = "BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg=="; 85 - }; 86 - }; 87 - "@babel/helper-builder-binary-assignment-operator-visitor-7.24.7" = { 88 - name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 89 - packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 90 - version = "7.24.7"; 81 + version = "7.25.9"; 91 82 src = fetchurl { 92 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz"; 93 - sha512 = "xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA=="; 83 + url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz"; 84 + sha512 = "gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g=="; 94 85 }; 95 86 }; 96 - "@babel/helper-compilation-targets-7.25.2" = { 87 + "@babel/helper-compilation-targets-7.26.5" = { 97 88 name = "_at_babel_slash_helper-compilation-targets"; 98 89 packageName = "@babel/helper-compilation-targets"; 99 - version = "7.25.2"; 90 + version = "7.26.5"; 100 91 src = fetchurl { 101 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz"; 102 - sha512 = "U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw=="; 92 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz"; 93 + sha512 = "IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA=="; 103 94 }; 104 95 }; 105 - "@babel/helper-create-class-features-plugin-7.25.4" = { 96 + "@babel/helper-create-class-features-plugin-7.26.9" = { 106 97 name = "_at_babel_slash_helper-create-class-features-plugin"; 107 98 packageName = "@babel/helper-create-class-features-plugin"; 108 - version = "7.25.4"; 99 + version = "7.26.9"; 109 100 src = fetchurl { 110 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz"; 111 - sha512 = "ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ=="; 101 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.26.9.tgz"; 102 + sha512 = "ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg=="; 112 103 }; 113 104 }; 114 - "@babel/helper-create-regexp-features-plugin-7.25.2" = { 105 + "@babel/helper-create-regexp-features-plugin-7.26.3" = { 115 106 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 116 107 packageName = "@babel/helper-create-regexp-features-plugin"; 117 - version = "7.25.2"; 108 + version = "7.26.3"; 118 109 src = fetchurl { 119 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz"; 120 - sha512 = "+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g=="; 110 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz"; 111 + sha512 = "G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong=="; 121 112 }; 122 113 }; 123 114 "@babel/helper-environment-visitor-7.24.7" = { ··· 129 120 sha512 = "DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ=="; 130 121 }; 131 122 }; 132 - "@babel/helper-member-expression-to-functions-7.24.8" = { 123 + "@babel/helper-member-expression-to-functions-7.25.9" = { 133 124 name = "_at_babel_slash_helper-member-expression-to-functions"; 134 125 packageName = "@babel/helper-member-expression-to-functions"; 135 - version = "7.24.8"; 126 + version = "7.25.9"; 136 127 src = fetchurl { 137 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz"; 138 - sha512 = "LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA=="; 128 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz"; 129 + sha512 = "wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ=="; 139 130 }; 140 131 }; 141 - "@babel/helper-module-imports-7.24.7" = { 132 + "@babel/helper-module-imports-7.25.9" = { 142 133 name = "_at_babel_slash_helper-module-imports"; 143 134 packageName = "@babel/helper-module-imports"; 144 - version = "7.24.7"; 135 + version = "7.25.9"; 145 136 src = fetchurl { 146 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz"; 147 - sha512 = "8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA=="; 137 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz"; 138 + sha512 = "tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw=="; 148 139 }; 149 140 }; 150 - "@babel/helper-module-transforms-7.25.2" = { 141 + "@babel/helper-module-transforms-7.26.0" = { 151 142 name = "_at_babel_slash_helper-module-transforms"; 152 143 packageName = "@babel/helper-module-transforms"; 153 - version = "7.25.2"; 144 + version = "7.26.0"; 154 145 src = fetchurl { 155 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz"; 156 - sha512 = "BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ=="; 146 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz"; 147 + sha512 = "xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw=="; 157 148 }; 158 149 }; 159 - "@babel/helper-optimise-call-expression-7.24.7" = { 150 + "@babel/helper-optimise-call-expression-7.25.9" = { 160 151 name = "_at_babel_slash_helper-optimise-call-expression"; 161 152 packageName = "@babel/helper-optimise-call-expression"; 162 - version = "7.24.7"; 153 + version = "7.25.9"; 163 154 src = fetchurl { 164 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz"; 165 - sha512 = "jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A=="; 155 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz"; 156 + sha512 = "FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ=="; 166 157 }; 167 158 }; 168 - "@babel/helper-plugin-utils-7.24.8" = { 159 + "@babel/helper-plugin-utils-7.26.5" = { 169 160 name = "_at_babel_slash_helper-plugin-utils"; 170 161 packageName = "@babel/helper-plugin-utils"; 171 - version = "7.24.8"; 162 + version = "7.26.5"; 172 163 src = fetchurl { 173 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz"; 174 - sha512 = "FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg=="; 164 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz"; 165 + sha512 = "RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="; 175 166 }; 176 167 }; 177 - "@babel/helper-remap-async-to-generator-7.25.0" = { 168 + "@babel/helper-remap-async-to-generator-7.25.9" = { 178 169 name = "_at_babel_slash_helper-remap-async-to-generator"; 179 170 packageName = "@babel/helper-remap-async-to-generator"; 180 - version = "7.25.0"; 171 + version = "7.25.9"; 181 172 src = fetchurl { 182 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz"; 183 - sha512 = "NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw=="; 173 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz"; 174 + sha512 = "IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw=="; 184 175 }; 185 176 }; 186 - "@babel/helper-replace-supers-7.25.0" = { 177 + "@babel/helper-replace-supers-7.26.5" = { 187 178 name = "_at_babel_slash_helper-replace-supers"; 188 179 packageName = "@babel/helper-replace-supers"; 189 - version = "7.25.0"; 190 - src = fetchurl { 191 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz"; 192 - sha512 = "q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg=="; 193 - }; 194 - }; 195 - "@babel/helper-simple-access-7.24.7" = { 196 - name = "_at_babel_slash_helper-simple-access"; 197 - packageName = "@babel/helper-simple-access"; 198 - version = "7.24.7"; 180 + version = "7.26.5"; 199 181 src = fetchurl { 200 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz"; 201 - sha512 = "zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg=="; 182 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.26.5.tgz"; 183 + sha512 = "bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg=="; 202 184 }; 203 185 }; 204 - "@babel/helper-skip-transparent-expression-wrappers-7.24.7" = { 186 + "@babel/helper-skip-transparent-expression-wrappers-7.25.9" = { 205 187 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 206 188 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 207 - version = "7.24.7"; 189 + version = "7.25.9"; 208 190 src = fetchurl { 209 - url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz"; 210 - sha512 = "IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ=="; 191 + url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz"; 192 + sha512 = "K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA=="; 211 193 }; 212 194 }; 213 - "@babel/helper-string-parser-7.24.8" = { 195 + "@babel/helper-string-parser-7.25.9" = { 214 196 name = "_at_babel_slash_helper-string-parser"; 215 197 packageName = "@babel/helper-string-parser"; 216 - version = "7.24.8"; 198 + version = "7.25.9"; 217 199 src = fetchurl { 218 - url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz"; 219 - sha512 = "pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ=="; 200 + url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz"; 201 + sha512 = "4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="; 220 202 }; 221 203 }; 222 - "@babel/helper-validator-identifier-7.24.7" = { 204 + "@babel/helper-validator-identifier-7.25.9" = { 223 205 name = "_at_babel_slash_helper-validator-identifier"; 224 206 packageName = "@babel/helper-validator-identifier"; 225 - version = "7.24.7"; 207 + version = "7.25.9"; 226 208 src = fetchurl { 227 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz"; 228 - sha512 = "rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w=="; 209 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz"; 210 + sha512 = "Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="; 229 211 }; 230 212 }; 231 - "@babel/helper-validator-option-7.24.8" = { 213 + "@babel/helper-validator-option-7.25.9" = { 232 214 name = "_at_babel_slash_helper-validator-option"; 233 215 packageName = "@babel/helper-validator-option"; 234 - version = "7.24.8"; 216 + version = "7.25.9"; 235 217 src = fetchurl { 236 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz"; 237 - sha512 = "xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q=="; 218 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz"; 219 + sha512 = "e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw=="; 238 220 }; 239 221 }; 240 - "@babel/helper-wrap-function-7.25.0" = { 222 + "@babel/helper-wrap-function-7.25.9" = { 241 223 name = "_at_babel_slash_helper-wrap-function"; 242 224 packageName = "@babel/helper-wrap-function"; 243 - version = "7.25.0"; 225 + version = "7.25.9"; 244 226 src = fetchurl { 245 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz"; 246 - sha512 = "s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ=="; 227 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz"; 228 + sha512 = "ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g=="; 247 229 }; 248 230 }; 249 - "@babel/helpers-7.25.6" = { 231 + "@babel/helpers-7.26.9" = { 250 232 name = "_at_babel_slash_helpers"; 251 233 packageName = "@babel/helpers"; 252 - version = "7.25.6"; 234 + version = "7.26.9"; 253 235 src = fetchurl { 254 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.6.tgz"; 255 - sha512 = "Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q=="; 236 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz"; 237 + sha512 = "Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA=="; 256 238 }; 257 239 }; 258 - "@babel/highlight-7.24.7" = { 240 + "@babel/highlight-7.25.9" = { 259 241 name = "_at_babel_slash_highlight"; 260 242 packageName = "@babel/highlight"; 261 - version = "7.24.7"; 243 + version = "7.25.9"; 262 244 src = fetchurl { 263 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz"; 264 - sha512 = "EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw=="; 245 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.9.tgz"; 246 + sha512 = "llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw=="; 265 247 }; 266 248 }; 267 - "@babel/parser-7.25.6" = { 249 + "@babel/parser-7.26.9" = { 268 250 name = "_at_babel_slash_parser"; 269 251 packageName = "@babel/parser"; 270 - version = "7.25.6"; 252 + version = "7.26.9"; 271 253 src = fetchurl { 272 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz"; 273 - sha512 = "trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q=="; 254 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz"; 255 + sha512 = "81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="; 274 256 }; 275 257 }; 276 258 "@babel/plugin-proposal-async-generator-functions-7.20.7" = { ··· 498 480 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 499 481 }; 500 482 }; 501 - "@babel/plugin-transform-arrow-functions-7.24.7" = { 483 + "@babel/plugin-transform-arrow-functions-7.25.9" = { 502 484 name = "_at_babel_slash_plugin-transform-arrow-functions"; 503 485 packageName = "@babel/plugin-transform-arrow-functions"; 504 - version = "7.24.7"; 486 + version = "7.25.9"; 505 487 src = fetchurl { 506 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz"; 507 - sha512 = "Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ=="; 488 + url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz"; 489 + sha512 = "6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg=="; 508 490 }; 509 491 }; 510 - "@babel/plugin-transform-async-to-generator-7.24.7" = { 492 + "@babel/plugin-transform-async-to-generator-7.25.9" = { 511 493 name = "_at_babel_slash_plugin-transform-async-to-generator"; 512 494 packageName = "@babel/plugin-transform-async-to-generator"; 513 - version = "7.24.7"; 495 + version = "7.25.9"; 514 496 src = fetchurl { 515 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz"; 516 - sha512 = "SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA=="; 497 + url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz"; 498 + sha512 = "NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ=="; 517 499 }; 518 500 }; 519 - "@babel/plugin-transform-block-scoped-functions-7.24.7" = { 501 + "@babel/plugin-transform-block-scoped-functions-7.26.5" = { 520 502 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 521 503 packageName = "@babel/plugin-transform-block-scoped-functions"; 522 - version = "7.24.7"; 504 + version = "7.26.5"; 523 505 src = fetchurl { 524 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz"; 525 - sha512 = "yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ=="; 506 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.26.5.tgz"; 507 + sha512 = "chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ=="; 526 508 }; 527 509 }; 528 - "@babel/plugin-transform-block-scoping-7.25.0" = { 510 + "@babel/plugin-transform-block-scoping-7.25.9" = { 529 511 name = "_at_babel_slash_plugin-transform-block-scoping"; 530 512 packageName = "@babel/plugin-transform-block-scoping"; 531 - version = "7.25.0"; 513 + version = "7.25.9"; 532 514 src = fetchurl { 533 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz"; 534 - sha512 = "yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ=="; 515 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz"; 516 + sha512 = "1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg=="; 535 517 }; 536 518 }; 537 - "@babel/plugin-transform-classes-7.25.4" = { 519 + "@babel/plugin-transform-classes-7.25.9" = { 538 520 name = "_at_babel_slash_plugin-transform-classes"; 539 521 packageName = "@babel/plugin-transform-classes"; 540 - version = "7.25.4"; 522 + version = "7.25.9"; 541 523 src = fetchurl { 542 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.4.tgz"; 543 - sha512 = "oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg=="; 524 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz"; 525 + sha512 = "mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg=="; 544 526 }; 545 527 }; 546 - "@babel/plugin-transform-computed-properties-7.24.7" = { 528 + "@babel/plugin-transform-computed-properties-7.25.9" = { 547 529 name = "_at_babel_slash_plugin-transform-computed-properties"; 548 530 packageName = "@babel/plugin-transform-computed-properties"; 549 - version = "7.24.7"; 531 + version = "7.25.9"; 550 532 src = fetchurl { 551 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz"; 552 - sha512 = "25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ=="; 533 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz"; 534 + sha512 = "HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA=="; 553 535 }; 554 536 }; 555 - "@babel/plugin-transform-destructuring-7.24.8" = { 537 + "@babel/plugin-transform-destructuring-7.25.9" = { 556 538 name = "_at_babel_slash_plugin-transform-destructuring"; 557 539 packageName = "@babel/plugin-transform-destructuring"; 558 - version = "7.24.8"; 540 + version = "7.25.9"; 559 541 src = fetchurl { 560 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz"; 561 - sha512 = "36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ=="; 542 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz"; 543 + sha512 = "WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ=="; 562 544 }; 563 545 }; 564 - "@babel/plugin-transform-dotall-regex-7.24.7" = { 546 + "@babel/plugin-transform-dotall-regex-7.25.9" = { 565 547 name = "_at_babel_slash_plugin-transform-dotall-regex"; 566 548 packageName = "@babel/plugin-transform-dotall-regex"; 567 - version = "7.24.7"; 549 + version = "7.25.9"; 568 550 src = fetchurl { 569 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz"; 570 - sha512 = "ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw=="; 551 + url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz"; 552 + sha512 = "t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA=="; 571 553 }; 572 554 }; 573 - "@babel/plugin-transform-duplicate-keys-7.24.7" = { 555 + "@babel/plugin-transform-duplicate-keys-7.25.9" = { 574 556 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 575 557 packageName = "@babel/plugin-transform-duplicate-keys"; 576 - version = "7.24.7"; 558 + version = "7.25.9"; 577 559 src = fetchurl { 578 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz"; 579 - sha512 = "JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw=="; 560 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz"; 561 + sha512 = "LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw=="; 580 562 }; 581 563 }; 582 - "@babel/plugin-transform-exponentiation-operator-7.24.7" = { 564 + "@babel/plugin-transform-exponentiation-operator-7.26.3" = { 583 565 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 584 566 packageName = "@babel/plugin-transform-exponentiation-operator"; 585 - version = "7.24.7"; 567 + version = "7.26.3"; 586 568 src = fetchurl { 587 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz"; 588 - sha512 = "Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ=="; 569 + url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz"; 570 + sha512 = "7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ=="; 589 571 }; 590 572 }; 591 - "@babel/plugin-transform-for-of-7.24.7" = { 573 + "@babel/plugin-transform-for-of-7.26.9" = { 592 574 name = "_at_babel_slash_plugin-transform-for-of"; 593 575 packageName = "@babel/plugin-transform-for-of"; 594 - version = "7.24.7"; 576 + version = "7.26.9"; 595 577 src = fetchurl { 596 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz"; 597 - sha512 = "wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g=="; 578 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.26.9.tgz"; 579 + sha512 = "Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg=="; 598 580 }; 599 581 }; 600 - "@babel/plugin-transform-function-name-7.25.1" = { 582 + "@babel/plugin-transform-function-name-7.25.9" = { 601 583 name = "_at_babel_slash_plugin-transform-function-name"; 602 584 packageName = "@babel/plugin-transform-function-name"; 603 - version = "7.25.1"; 585 + version = "7.25.9"; 604 586 src = fetchurl { 605 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz"; 606 - sha512 = "TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA=="; 587 + url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz"; 588 + sha512 = "8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA=="; 607 589 }; 608 590 }; 609 - "@babel/plugin-transform-literals-7.25.2" = { 591 + "@babel/plugin-transform-literals-7.25.9" = { 610 592 name = "_at_babel_slash_plugin-transform-literals"; 611 593 packageName = "@babel/plugin-transform-literals"; 612 - version = "7.25.2"; 594 + version = "7.25.9"; 613 595 src = fetchurl { 614 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz"; 615 - sha512 = "HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw=="; 596 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz"; 597 + sha512 = "9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ=="; 616 598 }; 617 599 }; 618 - "@babel/plugin-transform-member-expression-literals-7.24.7" = { 600 + "@babel/plugin-transform-member-expression-literals-7.25.9" = { 619 601 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 620 602 packageName = "@babel/plugin-transform-member-expression-literals"; 621 - version = "7.24.7"; 603 + version = "7.25.9"; 622 604 src = fetchurl { 623 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz"; 624 - sha512 = "T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw=="; 605 + url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz"; 606 + sha512 = "PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA=="; 625 607 }; 626 608 }; 627 - "@babel/plugin-transform-modules-amd-7.24.7" = { 609 + "@babel/plugin-transform-modules-amd-7.25.9" = { 628 610 name = "_at_babel_slash_plugin-transform-modules-amd"; 629 611 packageName = "@babel/plugin-transform-modules-amd"; 630 - version = "7.24.7"; 612 + version = "7.25.9"; 631 613 src = fetchurl { 632 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz"; 633 - sha512 = "9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg=="; 614 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz"; 615 + sha512 = "g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw=="; 634 616 }; 635 617 }; 636 - "@babel/plugin-transform-modules-commonjs-7.24.8" = { 618 + "@babel/plugin-transform-modules-commonjs-7.26.3" = { 637 619 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 638 620 packageName = "@babel/plugin-transform-modules-commonjs"; 639 - version = "7.24.8"; 621 + version = "7.26.3"; 640 622 src = fetchurl { 641 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz"; 642 - sha512 = "WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA=="; 623 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz"; 624 + sha512 = "MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ=="; 643 625 }; 644 626 }; 645 - "@babel/plugin-transform-modules-systemjs-7.25.0" = { 627 + "@babel/plugin-transform-modules-systemjs-7.25.9" = { 646 628 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 647 629 packageName = "@babel/plugin-transform-modules-systemjs"; 648 - version = "7.25.0"; 630 + version = "7.25.9"; 649 631 src = fetchurl { 650 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz"; 651 - sha512 = "YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw=="; 632 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz"; 633 + sha512 = "hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA=="; 652 634 }; 653 635 }; 654 - "@babel/plugin-transform-modules-umd-7.24.7" = { 636 + "@babel/plugin-transform-modules-umd-7.25.9" = { 655 637 name = "_at_babel_slash_plugin-transform-modules-umd"; 656 638 packageName = "@babel/plugin-transform-modules-umd"; 657 - version = "7.24.7"; 639 + version = "7.25.9"; 658 640 src = fetchurl { 659 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz"; 660 - sha512 = "3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A=="; 641 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz"; 642 + sha512 = "bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw=="; 661 643 }; 662 644 }; 663 - "@babel/plugin-transform-named-capturing-groups-regex-7.24.7" = { 645 + "@babel/plugin-transform-named-capturing-groups-regex-7.25.9" = { 664 646 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 665 647 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 666 - version = "7.24.7"; 648 + version = "7.25.9"; 667 649 src = fetchurl { 668 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz"; 669 - sha512 = "/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g=="; 650 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz"; 651 + sha512 = "oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA=="; 670 652 }; 671 653 }; 672 - "@babel/plugin-transform-new-target-7.24.7" = { 654 + "@babel/plugin-transform-new-target-7.25.9" = { 673 655 name = "_at_babel_slash_plugin-transform-new-target"; 674 656 packageName = "@babel/plugin-transform-new-target"; 675 - version = "7.24.7"; 657 + version = "7.25.9"; 676 658 src = fetchurl { 677 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz"; 678 - sha512 = "RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA=="; 659 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz"; 660 + sha512 = "U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ=="; 679 661 }; 680 662 }; 681 - "@babel/plugin-transform-object-super-7.24.7" = { 663 + "@babel/plugin-transform-object-super-7.25.9" = { 682 664 name = "_at_babel_slash_plugin-transform-object-super"; 683 665 packageName = "@babel/plugin-transform-object-super"; 684 - version = "7.24.7"; 666 + version = "7.25.9"; 685 667 src = fetchurl { 686 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz"; 687 - sha512 = "A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg=="; 668 + url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz"; 669 + sha512 = "Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A=="; 688 670 }; 689 671 }; 690 - "@babel/plugin-transform-parameters-7.24.7" = { 672 + "@babel/plugin-transform-parameters-7.25.9" = { 691 673 name = "_at_babel_slash_plugin-transform-parameters"; 692 674 packageName = "@babel/plugin-transform-parameters"; 693 - version = "7.24.7"; 675 + version = "7.25.9"; 694 676 src = fetchurl { 695 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz"; 696 - sha512 = "yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA=="; 677 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz"; 678 + sha512 = "wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g=="; 697 679 }; 698 680 }; 699 - "@babel/plugin-transform-property-literals-7.24.7" = { 681 + "@babel/plugin-transform-property-literals-7.25.9" = { 700 682 name = "_at_babel_slash_plugin-transform-property-literals"; 701 683 packageName = "@babel/plugin-transform-property-literals"; 702 - version = "7.24.7"; 684 + version = "7.25.9"; 703 685 src = fetchurl { 704 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz"; 705 - sha512 = "EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA=="; 686 + url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz"; 687 + sha512 = "IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA=="; 706 688 }; 707 689 }; 708 - "@babel/plugin-transform-regenerator-7.24.7" = { 690 + "@babel/plugin-transform-regenerator-7.25.9" = { 709 691 name = "_at_babel_slash_plugin-transform-regenerator"; 710 692 packageName = "@babel/plugin-transform-regenerator"; 711 - version = "7.24.7"; 693 + version = "7.25.9"; 712 694 src = fetchurl { 713 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz"; 714 - sha512 = "lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA=="; 695 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz"; 696 + sha512 = "vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg=="; 715 697 }; 716 698 }; 717 - "@babel/plugin-transform-reserved-words-7.24.7" = { 699 + "@babel/plugin-transform-reserved-words-7.25.9" = { 718 700 name = "_at_babel_slash_plugin-transform-reserved-words"; 719 701 packageName = "@babel/plugin-transform-reserved-words"; 720 - version = "7.24.7"; 702 + version = "7.25.9"; 721 703 src = fetchurl { 722 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz"; 723 - sha512 = "0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ=="; 704 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz"; 705 + sha512 = "7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg=="; 724 706 }; 725 707 }; 726 708 "@babel/plugin-transform-runtime-7.12.10" = { ··· 732 714 sha512 = "xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA=="; 733 715 }; 734 716 }; 735 - "@babel/plugin-transform-shorthand-properties-7.24.7" = { 717 + "@babel/plugin-transform-shorthand-properties-7.25.9" = { 736 718 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 737 719 packageName = "@babel/plugin-transform-shorthand-properties"; 738 - version = "7.24.7"; 720 + version = "7.25.9"; 739 721 src = fetchurl { 740 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz"; 741 - sha512 = "KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA=="; 722 + url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz"; 723 + sha512 = "MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng=="; 742 724 }; 743 725 }; 744 - "@babel/plugin-transform-spread-7.24.7" = { 726 + "@babel/plugin-transform-spread-7.25.9" = { 745 727 name = "_at_babel_slash_plugin-transform-spread"; 746 728 packageName = "@babel/plugin-transform-spread"; 747 - version = "7.24.7"; 729 + version = "7.25.9"; 748 730 src = fetchurl { 749 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz"; 750 - sha512 = "x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng=="; 731 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz"; 732 + sha512 = "oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A=="; 751 733 }; 752 734 }; 753 - "@babel/plugin-transform-sticky-regex-7.24.7" = { 735 + "@babel/plugin-transform-sticky-regex-7.25.9" = { 754 736 name = "_at_babel_slash_plugin-transform-sticky-regex"; 755 737 packageName = "@babel/plugin-transform-sticky-regex"; 756 - version = "7.24.7"; 738 + version = "7.25.9"; 757 739 src = fetchurl { 758 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz"; 759 - sha512 = "kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g=="; 740 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz"; 741 + sha512 = "WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA=="; 760 742 }; 761 743 }; 762 - "@babel/plugin-transform-template-literals-7.24.7" = { 744 + "@babel/plugin-transform-template-literals-7.26.8" = { 763 745 name = "_at_babel_slash_plugin-transform-template-literals"; 764 746 packageName = "@babel/plugin-transform-template-literals"; 765 - version = "7.24.7"; 747 + version = "7.26.8"; 766 748 src = fetchurl { 767 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz"; 768 - sha512 = "AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw=="; 749 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.26.8.tgz"; 750 + sha512 = "OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q=="; 769 751 }; 770 752 }; 771 - "@babel/plugin-transform-typeof-symbol-7.24.8" = { 753 + "@babel/plugin-transform-typeof-symbol-7.26.7" = { 772 754 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 773 755 packageName = "@babel/plugin-transform-typeof-symbol"; 774 - version = "7.24.8"; 756 + version = "7.26.7"; 775 757 src = fetchurl { 776 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz"; 777 - sha512 = "adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw=="; 758 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.26.7.tgz"; 759 + sha512 = "jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw=="; 778 760 }; 779 761 }; 780 - "@babel/plugin-transform-unicode-escapes-7.24.7" = { 762 + "@babel/plugin-transform-unicode-escapes-7.25.9" = { 781 763 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 782 764 packageName = "@babel/plugin-transform-unicode-escapes"; 783 - version = "7.24.7"; 765 + version = "7.25.9"; 784 766 src = fetchurl { 785 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz"; 786 - sha512 = "U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw=="; 767 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz"; 768 + sha512 = "s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q=="; 787 769 }; 788 770 }; 789 - "@babel/plugin-transform-unicode-regex-7.24.7" = { 771 + "@babel/plugin-transform-unicode-regex-7.25.9" = { 790 772 name = "_at_babel_slash_plugin-transform-unicode-regex"; 791 773 packageName = "@babel/plugin-transform-unicode-regex"; 792 - version = "7.24.7"; 774 + version = "7.25.9"; 793 775 src = fetchurl { 794 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz"; 795 - sha512 = "hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg=="; 776 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz"; 777 + sha512 = "yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA=="; 796 778 }; 797 779 }; 798 780 "@babel/preset-env-7.12.10" = { ··· 813 795 sha512 = "ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg=="; 814 796 }; 815 797 }; 816 - "@babel/regjsgen-0.8.0" = { 817 - name = "_at_babel_slash_regjsgen"; 818 - packageName = "@babel/regjsgen"; 819 - version = "0.8.0"; 820 - src = fetchurl { 821 - url = "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz"; 822 - sha512 = "x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA=="; 823 - }; 824 - }; 825 798 "@babel/runtime-7.12.5" = { 826 799 name = "_at_babel_slash_runtime"; 827 800 packageName = "@babel/runtime"; ··· 831 804 sha512 = "plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="; 832 805 }; 833 806 }; 834 - "@babel/template-7.25.0" = { 807 + "@babel/template-7.26.9" = { 835 808 name = "_at_babel_slash_template"; 836 809 packageName = "@babel/template"; 837 - version = "7.25.0"; 810 + version = "7.26.9"; 838 811 src = fetchurl { 839 - url = "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz"; 840 - sha512 = "aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q=="; 812 + url = "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz"; 813 + sha512 = "qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="; 841 814 }; 842 815 }; 843 - "@babel/traverse-7.25.6" = { 816 + "@babel/traverse-7.26.9" = { 844 817 name = "_at_babel_slash_traverse"; 845 818 packageName = "@babel/traverse"; 846 - version = "7.25.6"; 819 + version = "7.26.9"; 847 820 src = fetchurl { 848 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.6.tgz"; 849 - sha512 = "9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ=="; 821 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz"; 822 + sha512 = "ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="; 850 823 }; 851 824 }; 852 - "@babel/types-7.25.6" = { 825 + "@babel/types-7.26.9" = { 853 826 name = "_at_babel_slash_types"; 854 827 packageName = "@babel/types"; 855 - version = "7.25.6"; 828 + version = "7.26.9"; 856 829 src = fetchurl { 857 - url = "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz"; 858 - sha512 = "/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw=="; 830 + url = "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz"; 831 + sha512 = "Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="; 859 832 }; 860 833 }; 861 - "@bufbuild/protobuf-2.1.0" = { 834 + "@bufbuild/protobuf-2.2.3" = { 862 835 name = "_at_bufbuild_slash_protobuf"; 863 836 packageName = "@bufbuild/protobuf"; 864 - version = "2.1.0"; 837 + version = "2.2.3"; 865 838 src = fetchurl { 866 - url = "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.1.0.tgz"; 867 - sha512 = "+2Mx67Y3skJ4NCD/qNSdBJNWtu6x6Qr53jeNg+QcwiL6mt0wK+3jwHH2x1p7xaYH6Ve2JKOVn0OxU35WsmqI9A=="; 839 + url = "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.2.3.tgz"; 840 + sha512 = "tFQoXHJdkEOSwj5tRIZSPNUuXK3RaR7T1nUrPgbYX1pUbvqqaaZAsfo+NXBPsz5rZMSKVFrgK1WL8Q/MSLvprg=="; 868 841 }; 869 842 }; 870 843 "@hapi/address-2.1.4" = { ··· 921 894 sha512 = "O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="; 922 895 }; 923 896 }; 924 - "@jridgewell/gen-mapping-0.3.5" = { 897 + "@isaacs/fs-minipass-4.0.1" = { 898 + name = "_at_isaacs_slash_fs-minipass"; 899 + packageName = "@isaacs/fs-minipass"; 900 + version = "4.0.1"; 901 + src = fetchurl { 902 + url = "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz"; 903 + sha512 = "wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w=="; 904 + }; 905 + }; 906 + "@jridgewell/gen-mapping-0.3.8" = { 925 907 name = "_at_jridgewell_slash_gen-mapping"; 926 908 packageName = "@jridgewell/gen-mapping"; 927 - version = "0.3.5"; 909 + version = "0.3.8"; 928 910 src = fetchurl { 929 - url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz"; 930 - sha512 = "IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg=="; 911 + url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz"; 912 + sha512 = "imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA=="; 931 913 }; 932 914 }; 933 915 "@jridgewell/resolve-uri-3.1.2" = { ··· 984 966 sha512 = "q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA=="; 985 967 }; 986 968 }; 987 - "@jsonjoy.com/json-pack-1.1.0" = { 969 + "@jsonjoy.com/json-pack-1.1.1" = { 988 970 name = "_at_jsonjoy.com_slash_json-pack"; 989 971 packageName = "@jsonjoy.com/json-pack"; 990 - version = "1.1.0"; 972 + version = "1.1.1"; 991 973 src = fetchurl { 992 - url = "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.1.0.tgz"; 993 - sha512 = "zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg=="; 974 + url = "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.1.1.tgz"; 975 + sha512 = "osjeBqMJ2lb/j/M8NCPjs1ylqWIcTRTycIhVB5pt6LgzgeRSb0YRZ7j9RfA8wIUrsr/medIuhVyonXRZWLyfdw=="; 994 976 }; 995 977 }; 996 - "@jsonjoy.com/util-1.3.0" = { 978 + "@jsonjoy.com/util-1.5.0" = { 997 979 name = "_at_jsonjoy.com_slash_util"; 998 980 packageName = "@jsonjoy.com/util"; 999 - version = "1.3.0"; 981 + version = "1.5.0"; 1000 982 src = fetchurl { 1001 - url = "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.3.0.tgz"; 1002 - sha512 = "Cebt4Vk7k1xHy87kHY7KSPLT77A7Ev7IfOblyLZhtYEhrdQ6fX4EoLq3xOQ3O/DRMEh2ok5nyC180E+ABS8Wmw=="; 983 + url = "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.5.0.tgz"; 984 + sha512 = "ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA=="; 1003 985 }; 1004 986 }; 1005 987 "@kwsites/file-exists-1.1.1" = { ··· 1020 1002 sha512 = "GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw=="; 1021 1003 }; 1022 1004 }; 1023 - "@lydell/elm-0.19.1-14" = { 1024 - name = "_at_lydell_slash_elm"; 1025 - packageName = "@lydell/elm"; 1026 - version = "0.19.1-14"; 1027 - src = fetchurl { 1028 - url = "https://registry.npmjs.org/@lydell/elm/-/elm-0.19.1-14.tgz"; 1029 - sha512 = "otpGlYiNRvL7F9k6MJOTcuyIgHr+XWy/1NtHpGUgQi8lHrnuyCjwKFPPiimKpr3bcZTwpD4nebHuYR0bmPIKuA=="; 1030 - }; 1031 - }; 1032 - "@lydell/elm_darwin_arm64-0.19.1-3" = { 1033 - name = "_at_lydell_slash_elm_darwin_arm64"; 1034 - packageName = "@lydell/elm_darwin_arm64"; 1035 - version = "0.19.1-3"; 1036 - src = fetchurl { 1037 - url = "https://registry.npmjs.org/@lydell/elm_darwin_arm64/-/elm_darwin_arm64-0.19.1-3.tgz"; 1038 - sha512 = "RuKTz5ck+RBx4urj1EL/r0xWZZqBMPEXzNBQTEBCAMWLSi4Ck3TVz5pkhBaK+cRZXI+cCgytm/1bIttbp2fFIg=="; 1039 - }; 1040 - }; 1041 - "@lydell/elm_darwin_x64-0.19.1-2" = { 1042 - name = "_at_lydell_slash_elm_darwin_x64"; 1043 - packageName = "@lydell/elm_darwin_x64"; 1044 - version = "0.19.1-2"; 1045 - src = fetchurl { 1046 - url = "https://registry.npmjs.org/@lydell/elm_darwin_x64/-/elm_darwin_x64-0.19.1-2.tgz"; 1047 - sha512 = "MXfQwxdQfmuQ22iDCFlcXu5YTA0w6/ASzbxmWc+8DkgUkHTynjViGBVkQljAbYe4ZWgrYGWinZQQyhVnp/5oZw=="; 1048 - }; 1049 - }; 1050 - "@lydell/elm_linux_arm-0.19.1-0" = { 1051 - name = "_at_lydell_slash_elm_linux_arm"; 1052 - packageName = "@lydell/elm_linux_arm"; 1053 - version = "0.19.1-0"; 1054 - src = fetchurl { 1055 - url = "https://registry.npmjs.org/@lydell/elm_linux_arm/-/elm_linux_arm-0.19.1-0.tgz"; 1056 - sha512 = "crKrLzuT6jn4OOS7PWKZGYFw6vHwPu3iNP7lg8rFkOog/HxlkRwX4S695aILBG8SGTLhEdfP9tg28SQ7vR4Lpg=="; 1057 - }; 1058 - }; 1059 - "@lydell/elm_linux_arm64-0.19.1-4" = { 1060 - name = "_at_lydell_slash_elm_linux_arm64"; 1061 - packageName = "@lydell/elm_linux_arm64"; 1062 - version = "0.19.1-4"; 1063 - src = fetchurl { 1064 - url = "https://registry.npmjs.org/@lydell/elm_linux_arm64/-/elm_linux_arm64-0.19.1-4.tgz"; 1065 - sha512 = "JuUkkVBtJjUajtTriQFFANHDmwA14NhqNqgIcq5LCJ6vUQv5/LVd6NUOkl/Rdq7Ju/VN/XwBD1/vm7MGIMOTqA=="; 1066 - }; 1067 - }; 1068 - "@lydell/elm_linux_x64-0.19.1-1" = { 1069 - name = "_at_lydell_slash_elm_linux_x64"; 1070 - packageName = "@lydell/elm_linux_x64"; 1071 - version = "0.19.1-1"; 1072 - src = fetchurl { 1073 - url = "https://registry.npmjs.org/@lydell/elm_linux_x64/-/elm_linux_x64-0.19.1-1.tgz"; 1074 - sha512 = "1Y8UAb+GfUqlSjUTX9CaaZhJqvhVcfNbYC0N9AEutlXf1CzFMvF4VsDeZdxzhNI4allPRWBD1IqtdlLhBTFacA=="; 1075 - }; 1076 - }; 1077 - "@lydell/elm_win32_x64-0.19.1-1" = { 1078 - name = "_at_lydell_slash_elm_win32_x64"; 1079 - packageName = "@lydell/elm_win32_x64"; 1080 - version = "0.19.1-1"; 1081 - src = fetchurl { 1082 - url = "https://registry.npmjs.org/@lydell/elm_win32_x64/-/elm_win32_x64-0.19.1-1.tgz"; 1083 - sha512 = "3LMiJ+uUxDFLNnCd6HBmvVWSjSWjs/Z9dMXZWCMOcw3vrW9iOkRrsNGNxohRXun2YRd8wXOX8/DwVn8i2SJ3KA=="; 1084 - }; 1085 - }; 1086 1005 "@mrmlnc/readdir-enhanced-2.2.1" = { 1087 1006 name = "_at_mrmlnc_slash_readdir-enhanced"; 1088 1007 packageName = "@mrmlnc/readdir-enhanced"; ··· 1128 1047 sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 1129 1048 }; 1130 1049 }; 1131 - "@npmcli/agent-2.2.2" = { 1050 + "@npmcli/agent-3.0.0" = { 1132 1051 name = "_at_npmcli_slash_agent"; 1133 1052 packageName = "@npmcli/agent"; 1134 - version = "2.2.2"; 1053 + version = "3.0.0"; 1135 1054 src = fetchurl { 1136 - url = "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.2.tgz"; 1137 - sha512 = "OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og=="; 1055 + url = "https://registry.npmjs.org/@npmcli/agent/-/agent-3.0.0.tgz"; 1056 + sha512 = "S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q=="; 1138 1057 }; 1139 1058 }; 1140 - "@npmcli/fs-3.1.1" = { 1059 + "@npmcli/fs-4.0.0" = { 1141 1060 name = "_at_npmcli_slash_fs"; 1142 1061 packageName = "@npmcli/fs"; 1143 - version = "3.1.1"; 1062 + version = "4.0.0"; 1063 + src = fetchurl { 1064 + url = "https://registry.npmjs.org/@npmcli/fs/-/fs-4.0.0.tgz"; 1065 + sha512 = "/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q=="; 1066 + }; 1067 + }; 1068 + "@pnpm/config.env-replace-1.1.0" = { 1069 + name = "_at_pnpm_slash_config.env-replace"; 1070 + packageName = "@pnpm/config.env-replace"; 1071 + version = "1.1.0"; 1072 + src = fetchurl { 1073 + url = "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz"; 1074 + sha512 = "htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w=="; 1075 + }; 1076 + }; 1077 + "@pnpm/network.ca-file-1.0.2" = { 1078 + name = "_at_pnpm_slash_network.ca-file"; 1079 + packageName = "@pnpm/network.ca-file"; 1080 + version = "1.0.2"; 1144 1081 src = fetchurl { 1145 - url = "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz"; 1146 - sha512 = "q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg=="; 1082 + url = "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz"; 1083 + sha512 = "YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA=="; 1147 1084 }; 1148 1085 }; 1149 - "@sindresorhus/is-0.14.0" = { 1150 - name = "_at_sindresorhus_slash_is"; 1151 - packageName = "@sindresorhus/is"; 1152 - version = "0.14.0"; 1086 + "@pnpm/npm-conf-2.3.1" = { 1087 + name = "_at_pnpm_slash_npm-conf"; 1088 + packageName = "@pnpm/npm-conf"; 1089 + version = "2.3.1"; 1153 1090 src = fetchurl { 1154 - url = "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz"; 1155 - sha512 = "9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="; 1091 + url = "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz"; 1092 + sha512 = "c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw=="; 1156 1093 }; 1157 1094 }; 1158 1095 "@sindresorhus/is-2.1.1" = { ··· 1164 1101 sha512 = "/aPsuoj/1Dw/kzhkgz+ES6TxG0zfTMGLwuK2ZG00k/iJzYHTLCE8mVU8EPqEOp/lmxPoq1C1C9RYToRKb2KEfg=="; 1165 1102 }; 1166 1103 }; 1167 - "@sindresorhus/is-4.6.0" = { 1168 - name = "_at_sindresorhus_slash_is"; 1169 - packageName = "@sindresorhus/is"; 1170 - version = "4.6.0"; 1171 - src = fetchurl { 1172 - url = "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz"; 1173 - sha512 = "t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw=="; 1174 - }; 1175 - }; 1176 - "@sindresorhus/merge-streams-1.0.0" = { 1104 + "@sindresorhus/merge-streams-2.3.0" = { 1177 1105 name = "_at_sindresorhus_slash_merge-streams"; 1178 1106 packageName = "@sindresorhus/merge-streams"; 1179 - version = "1.0.0"; 1107 + version = "2.3.0"; 1180 1108 src = fetchurl { 1181 - url = "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz"; 1182 - sha512 = "rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw=="; 1109 + url = "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz"; 1110 + sha512 = "LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg=="; 1183 1111 }; 1184 1112 }; 1185 - "@sindresorhus/merge-streams-3.0.0" = { 1113 + "@sindresorhus/merge-streams-4.0.0" = { 1186 1114 name = "_at_sindresorhus_slash_merge-streams"; 1187 1115 packageName = "@sindresorhus/merge-streams"; 1188 - version = "3.0.0"; 1116 + version = "4.0.0"; 1189 1117 src = fetchurl { 1190 - url = "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-3.0.0.tgz"; 1191 - sha512 = "5Muw0TDzXvK/i0BmrL1tiTsb6Sh/DXe/e5d63GpmHWr59t7rUyQhhiIuw605q/yvJxyBf6gMWmsxCC2fqtcFvQ=="; 1192 - }; 1193 - }; 1194 - "@szmarczak/http-timer-1.1.2" = { 1195 - name = "_at_szmarczak_slash_http-timer"; 1196 - packageName = "@szmarczak/http-timer"; 1197 - version = "1.1.2"; 1198 - src = fetchurl { 1199 - url = "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz"; 1200 - sha512 = "XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="; 1118 + url = "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz"; 1119 + sha512 = "tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ=="; 1201 1120 }; 1202 1121 }; 1203 1122 "@szmarczak/http-timer-4.0.6" = { ··· 1290 1209 sha512 = "1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA=="; 1291 1210 }; 1292 1211 }; 1293 - "@types/http-proxy-1.17.15" = { 1212 + "@types/http-proxy-1.17.16" = { 1294 1213 name = "_at_types_slash_http-proxy"; 1295 1214 packageName = "@types/http-proxy"; 1296 - version = "1.17.15"; 1215 + version = "1.17.16"; 1297 1216 src = fetchurl { 1298 - url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz"; 1299 - sha512 = "25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ=="; 1217 + url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.16.tgz"; 1218 + sha512 = "sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w=="; 1300 1219 }; 1301 1220 }; 1302 1221 "@types/jest-27.5.2" = { ··· 1326 1245 sha512 = "BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg=="; 1327 1246 }; 1328 1247 }; 1329 - "@types/lodash-4.17.9" = { 1248 + "@types/lodash-4.17.15" = { 1330 1249 name = "_at_types_slash_lodash"; 1331 1250 packageName = "@types/lodash"; 1332 - version = "4.17.9"; 1251 + version = "4.17.15"; 1333 1252 src = fetchurl { 1334 - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.9.tgz"; 1335 - sha512 = "w9iWudx1XWOHW5lQRS9iKpK/XuRhnN+0T7HvdCCd802FYkT1AMTnxndJHGrNJwRoRHkslGr4S29tjm1cT7x/7w=="; 1253 + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.15.tgz"; 1254 + sha512 = "w/P33JFeySuhN6JLkysYUK2gEmy9kHHFN7E8ro0tkfmlDOgxBDzWEZ/J8cWA+fHqFevpswDTFZnDx+R9lbL6xw=="; 1336 1255 }; 1337 1256 }; 1338 1257 "@types/minimatch-5.1.2" = { ··· 1353 1272 sha512 = "U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg=="; 1354 1273 }; 1355 1274 }; 1356 - "@types/node-22.7.3" = { 1275 + "@types/node-22.13.4" = { 1357 1276 name = "_at_types_slash_node"; 1358 1277 packageName = "@types/node"; 1359 - version = "22.7.3"; 1278 + version = "22.13.4"; 1360 1279 src = fetchurl { 1361 - url = "https://registry.npmjs.org/@types/node/-/node-22.7.3.tgz"; 1362 - sha512 = "qXKfhXXqGTyBskvWEzJZPUxSslAiLaB6JGP1ic/XTH9ctGgzdgYguuLP1C601aRTSDNlLb0jbKqXjZ48GNraSA=="; 1280 + url = "https://registry.npmjs.org/@types/node/-/node-22.13.4.tgz"; 1281 + sha512 = "ywP2X0DYtX3y08eFVx5fNIw7/uIv8hYUKgXoK8oayJlLnKcRfEYCxWMVE1XagUdVtCJlZT1AU4LXEABW+L1Peg=="; 1363 1282 }; 1364 1283 }; 1365 1284 "@types/node-8.10.66" = { ··· 1443 1362 sha512 = "TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ=="; 1444 1363 }; 1445 1364 }; 1446 - "@types/webpack-4.41.39" = { 1365 + "@types/webpack-4.41.40" = { 1447 1366 name = "_at_types_slash_webpack"; 1448 1367 packageName = "@types/webpack"; 1449 - version = "4.41.39"; 1368 + version = "4.41.40"; 1450 1369 src = fetchurl { 1451 - url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.39.tgz"; 1452 - sha512 = "otxUJvoi6FbBq/64gGH34eblpKLgdi+gf08GaAh8Bx6So0ZZic028Ev/SUxD22gbthMKCkeeiXEat1kHLDJfYg=="; 1370 + url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.40.tgz"; 1371 + sha512 = "u6kMFSBM9HcoTpUXnL6mt2HSzftqb3JgYV6oxIgL2dl6sX6aCa5k6SOkzv5DuZjBTPUE/dJltKtwwuqrkZHpfw=="; 1453 1372 }; 1454 1373 }; 1455 1374 "@types/webpack-sources-3.2.3" = { ··· 1659 1578 sha512 = "XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="; 1660 1579 }; 1661 1580 }; 1662 - "acorn-8.12.1" = { 1581 + "acorn-8.14.0" = { 1663 1582 name = "acorn"; 1664 1583 packageName = "acorn"; 1665 - version = "8.12.1"; 1584 + version = "8.14.0"; 1666 1585 src = fetchurl { 1667 - url = "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz"; 1668 - sha512 = "tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg=="; 1586 + url = "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz"; 1587 + sha512 = "cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA=="; 1669 1588 }; 1670 1589 }; 1671 1590 "address-1.0.3" = { ··· 1677 1596 sha512 = "z55ocwKBRLryBs394Sm3ushTtBeg6VAeuku7utSoSnsJKvKcnXFIyC6vh27n3rXyxSgkJBBCAvyOn7gSUcTYjg=="; 1678 1597 }; 1679 1598 }; 1680 - "agent-base-7.1.1" = { 1599 + "agent-base-7.1.3" = { 1681 1600 name = "agent-base"; 1682 1601 packageName = "agent-base"; 1683 - version = "7.1.1"; 1602 + version = "7.1.3"; 1684 1603 src = fetchurl { 1685 - url = "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz"; 1686 - sha512 = "H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA=="; 1687 - }; 1688 - }; 1689 - "aggregate-error-3.1.0" = { 1690 - name = "aggregate-error"; 1691 - packageName = "aggregate-error"; 1692 - version = "3.1.0"; 1693 - src = fetchurl { 1694 - url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz"; 1695 - sha512 = "4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="; 1604 + url = "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz"; 1605 + sha512 = "jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw=="; 1696 1606 }; 1697 1607 }; 1698 1608 "ajv-6.12.6" = { ··· 1938 1848 sha512 = "sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q=="; 1939 1849 }; 1940 1850 }; 1941 - "array-buffer-byte-length-1.0.1" = { 1851 + "array-buffer-byte-length-1.0.2" = { 1942 1852 name = "array-buffer-byte-length"; 1943 1853 packageName = "array-buffer-byte-length"; 1944 - version = "1.0.1"; 1854 + version = "1.0.2"; 1945 1855 src = fetchurl { 1946 - url = "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz"; 1947 - sha512 = "ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg=="; 1856 + url = "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz"; 1857 + sha512 = "LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw=="; 1948 1858 }; 1949 1859 }; 1950 1860 "array-filter-0.0.1" = { ··· 2037 1947 sha512 = "mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q=="; 2038 1948 }; 2039 1949 }; 2040 - "arraybuffer.prototype.slice-1.0.3" = { 1950 + "arraybuffer.prototype.slice-1.0.4" = { 2041 1951 name = "arraybuffer.prototype.slice"; 2042 1952 packageName = "arraybuffer.prototype.slice"; 2043 - version = "1.0.3"; 1953 + version = "1.0.4"; 2044 1954 src = fetchurl { 2045 - url = "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz"; 2046 - sha512 = "bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A=="; 1955 + url = "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz"; 1956 + sha512 = "BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ=="; 2047 1957 }; 2048 1958 }; 2049 1959 "asap-2.0.6" = { ··· 2154 2064 sha512 = "c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg=="; 2155 2065 }; 2156 2066 }; 2067 + "async-function-1.0.0" = { 2068 + name = "async-function"; 2069 + packageName = "async-function"; 2070 + version = "1.0.0"; 2071 + src = fetchurl { 2072 + url = "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz"; 2073 + sha512 = "hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA=="; 2074 + }; 2075 + }; 2157 2076 "async-limiter-1.0.1" = { 2158 2077 name = "async-limiter"; 2159 2078 packageName = "async-limiter"; ··· 2170 2089 src = fetchurl { 2171 2090 url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; 2172 2091 sha512 = "Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="; 2173 - }; 2174 - }; 2175 - "at-least-node-1.0.0" = { 2176 - name = "at-least-node"; 2177 - packageName = "at-least-node"; 2178 - version = "1.0.0"; 2179 - src = fetchurl { 2180 - url = "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz"; 2181 - sha512 = "+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg=="; 2182 2092 }; 2183 2093 }; 2184 2094 "atob-2.1.2" = { ··· 2406 2316 sha512 = "N4Pm7iyDEv0BrAMs+dny8WQa+e0nNTdzn2ODkf/MM6XBtKSCxCSUA1ZOQGoc1n7mUqdgOS5pwjsW91rmXVxy2Q=="; 2407 2317 }; 2408 2318 }; 2409 - "bl-4.1.0" = { 2410 - name = "bl"; 2411 - packageName = "bl"; 2412 - version = "4.1.0"; 2413 - src = fetchurl { 2414 - url = "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"; 2415 - sha512 = "1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="; 2416 - }; 2417 - }; 2418 2319 "bluebird-3.7.2" = { 2419 2320 name = "bluebird"; 2420 2321 packageName = "bluebird"; ··· 2424 2325 sha512 = "XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="; 2425 2326 }; 2426 2327 }; 2427 - "bn.js-4.12.0" = { 2328 + "bn.js-4.12.1" = { 2428 2329 name = "bn.js"; 2429 2330 packageName = "bn.js"; 2430 - version = "4.12.0"; 2331 + version = "4.12.1"; 2431 2332 src = fetchurl { 2432 - url = "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz"; 2433 - sha512 = "c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="; 2333 + url = "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz"; 2334 + sha512 = "k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="; 2434 2335 }; 2435 2336 }; 2436 2337 "bn.js-5.2.1" = { ··· 2595 2496 sha512 = "VBorw+tgpOtZ1BYhrVSVTzTt/3+vSE3eFUh0N2GCFK1HffceOaf32YS/bs6WiFhjDAblAFrx85jMy3BG9fBK2Q=="; 2596 2497 }; 2597 2498 }; 2598 - "browserslist-4.24.0" = { 2499 + "browserslist-4.24.4" = { 2599 2500 name = "browserslist"; 2600 2501 packageName = "browserslist"; 2601 - version = "4.24.0"; 2502 + version = "4.24.4"; 2602 2503 src = fetchurl { 2603 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz"; 2604 - sha512 = "Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A=="; 2504 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz"; 2505 + sha512 = "KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A=="; 2605 2506 }; 2606 2507 }; 2607 2508 "buffer-4.9.2" = { ··· 2611 2512 src = fetchurl { 2612 2513 url = "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz"; 2613 2514 sha512 = "xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg=="; 2614 - }; 2615 - }; 2616 - "buffer-5.7.1" = { 2617 - name = "buffer"; 2618 - packageName = "buffer"; 2619 - version = "5.7.1"; 2620 - src = fetchurl { 2621 - url = "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"; 2622 - sha512 = "EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="; 2623 2515 }; 2624 2516 }; 2625 2517 "buffer-builder-0.2.0" = { ··· 2667 2559 sha512 = "9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ=="; 2668 2560 }; 2669 2561 }; 2670 - "bufferutil-4.0.8" = { 2562 + "bufferutil-4.0.9" = { 2671 2563 name = "bufferutil"; 2672 2564 packageName = "bufferutil"; 2673 - version = "4.0.8"; 2565 + version = "4.0.9"; 2674 2566 src = fetchurl { 2675 - url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.8.tgz"; 2676 - sha512 = "4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw=="; 2567 + url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.9.tgz"; 2568 + sha512 = "WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw=="; 2677 2569 }; 2678 2570 }; 2679 2571 "builtin-status-codes-3.0.0" = { ··· 2683 2575 src = fetchurl { 2684 2576 url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"; 2685 2577 sha512 = "HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ=="; 2578 + }; 2579 + }; 2580 + "bundle-name-4.1.0" = { 2581 + name = "bundle-name"; 2582 + packageName = "bundle-name"; 2583 + version = "4.1.0"; 2584 + src = fetchurl { 2585 + url = "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz"; 2586 + sha512 = "tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q=="; 2686 2587 }; 2687 2588 }; 2688 2589 "busboy-1.6.0" = { ··· 2739 2640 sha512 = "a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ=="; 2740 2641 }; 2741 2642 }; 2742 - "cacache-18.0.4" = { 2643 + "cacache-19.0.1" = { 2743 2644 name = "cacache"; 2744 2645 packageName = "cacache"; 2745 - version = "18.0.4"; 2646 + version = "19.0.1"; 2746 2647 src = fetchurl { 2747 - url = "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz"; 2748 - sha512 = "B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ=="; 2648 + url = "https://registry.npmjs.org/cacache/-/cacache-19.0.1.tgz"; 2649 + sha512 = "hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ=="; 2749 2650 }; 2750 2651 }; 2751 2652 "cache-base-1.0.1" = { ··· 2766 2667 sha512 = "EMMbsiOTcdngM/K6gV/OxF2x0t07+vMOWxZNSCRQMjO2MY2nhZQ6OYhOOpyQrbhqsgtvKGI7hcq6xjnA92USjg=="; 2767 2668 }; 2768 2669 }; 2769 - "cacheable-lookup-5.0.4" = { 2770 - name = "cacheable-lookup"; 2771 - packageName = "cacheable-lookup"; 2772 - version = "5.0.4"; 2773 - src = fetchurl { 2774 - url = "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz"; 2775 - sha512 = "2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA=="; 2776 - }; 2777 - }; 2778 - "cacheable-request-6.1.0" = { 2779 - name = "cacheable-request"; 2780 - packageName = "cacheable-request"; 2781 - version = "6.1.0"; 2782 - src = fetchurl { 2783 - url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz"; 2784 - sha512 = "Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg=="; 2785 - }; 2786 - }; 2787 2670 "cacheable-request-7.0.4" = { 2788 2671 name = "cacheable-request"; 2789 2672 packageName = "cacheable-request"; ··· 2793 2676 sha512 = "v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg=="; 2794 2677 }; 2795 2678 }; 2796 - "call-bind-1.0.7" = { 2679 + "call-bind-1.0.8" = { 2797 2680 name = "call-bind"; 2798 2681 packageName = "call-bind"; 2799 - version = "1.0.7"; 2682 + version = "1.0.8"; 2683 + src = fetchurl { 2684 + url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz"; 2685 + sha512 = "oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="; 2686 + }; 2687 + }; 2688 + "call-bind-apply-helpers-1.0.2" = { 2689 + name = "call-bind-apply-helpers"; 2690 + packageName = "call-bind-apply-helpers"; 2691 + version = "1.0.2"; 2692 + src = fetchurl { 2693 + url = "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz"; 2694 + sha512 = "Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="; 2695 + }; 2696 + }; 2697 + "call-bound-1.0.3" = { 2698 + name = "call-bound"; 2699 + packageName = "call-bound"; 2700 + version = "1.0.3"; 2800 2701 src = fetchurl { 2801 - url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz"; 2802 - sha512 = "GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w=="; 2702 + url = "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz"; 2703 + sha512 = "YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA=="; 2803 2704 }; 2804 2705 }; 2805 2706 "call-me-maybe-1.0.2" = { ··· 2892 2793 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 2893 2794 }; 2894 2795 }; 2895 - "caniuse-lite-1.0.30001664" = { 2796 + "caniuse-lite-1.0.30001699" = { 2896 2797 name = "caniuse-lite"; 2897 2798 packageName = "caniuse-lite"; 2898 - version = "1.0.30001664"; 2799 + version = "1.0.30001699"; 2899 2800 src = fetchurl { 2900 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001664.tgz"; 2901 - sha512 = "AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g=="; 2801 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001699.tgz"; 2802 + sha512 = "b+uH5BakXZ9Do9iK+CkDmctUSEqZl+SP056vc5usa0PL+ev5OHw003rZXcnjNDv3L8P5j6rwT6C0BPKSikW08w=="; 2902 2803 }; 2903 2804 }; 2904 2805 "case-sensitive-paths-webpack-plugin-2.3.0" = { ··· 2964 2865 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 2965 2866 }; 2966 2867 }; 2967 - "chalk-3.0.0" = { 2868 + "chalk-4.1.2" = { 2968 2869 name = "chalk"; 2969 2870 packageName = "chalk"; 2970 - version = "3.0.0"; 2871 + version = "4.1.2"; 2971 2872 src = fetchurl { 2972 - url = "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz"; 2973 - sha512 = "4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg=="; 2873 + url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"; 2874 + sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; 2974 2875 }; 2975 2876 }; 2976 - "chalk-4.1.2" = { 2877 + "chalk-5.4.1" = { 2977 2878 name = "chalk"; 2978 2879 packageName = "chalk"; 2979 - version = "4.1.2"; 2880 + version = "5.4.1"; 2980 2881 src = fetchurl { 2981 - url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"; 2982 - sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; 2882 + url = "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz"; 2883 + sha512 = "zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w=="; 2983 2884 }; 2984 2885 }; 2985 2886 "chardet-0.7.0" = { ··· 3036 2937 sha512 = "IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A=="; 3037 2938 }; 3038 2939 }; 3039 - "chokidar-3.5.3" = { 3040 - name = "chokidar"; 3041 - packageName = "chokidar"; 3042 - version = "3.5.3"; 3043 - src = fetchurl { 3044 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"; 3045 - sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="; 3046 - }; 3047 - }; 3048 2940 "chokidar-3.6.0" = { 3049 2941 name = "chokidar"; 3050 2942 packageName = "chokidar"; ··· 3054 2946 sha512 = "7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="; 3055 2947 }; 3056 2948 }; 3057 - "chokidar-4.0.1" = { 2949 + "chokidar-4.0.3" = { 3058 2950 name = "chokidar"; 3059 2951 packageName = "chokidar"; 3060 - version = "4.0.1"; 2952 + version = "4.0.3"; 3061 2953 src = fetchurl { 3062 - url = "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz"; 3063 - sha512 = "n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA=="; 2954 + url = "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz"; 2955 + sha512 = "Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA=="; 3064 2956 }; 3065 2957 }; 3066 2958 "chownr-1.1.4" = { ··· 3081 2973 sha512 = "bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="; 3082 2974 }; 3083 2975 }; 2976 + "chownr-3.0.0" = { 2977 + name = "chownr"; 2978 + packageName = "chownr"; 2979 + version = "3.0.0"; 2980 + src = fetchurl { 2981 + url = "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz"; 2982 + sha512 = "+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g=="; 2983 + }; 2984 + }; 3084 2985 "chrome-trace-event-1.0.4" = { 3085 2986 name = "chrome-trace-event"; 3086 2987 packageName = "chrome-trace-event"; ··· 3090 2991 sha512 = "rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ=="; 3091 2992 }; 3092 2993 }; 3093 - "cipher-base-1.0.4" = { 2994 + "cipher-base-1.0.6" = { 3094 2995 name = "cipher-base"; 3095 2996 packageName = "cipher-base"; 3096 - version = "1.0.4"; 2997 + version = "1.0.6"; 3097 2998 src = fetchurl { 3098 - url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz"; 3099 - sha512 = "Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q=="; 2999 + url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.6.tgz"; 3000 + sha512 = "3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw=="; 3100 3001 }; 3101 3002 }; 3102 3003 "class-utils-0.3.6" = { ··· 3117 3018 sha512 = "EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A=="; 3118 3019 }; 3119 3020 }; 3120 - "clean-stack-2.2.0" = { 3121 - name = "clean-stack"; 3122 - packageName = "clean-stack"; 3123 - version = "2.2.0"; 3124 - src = fetchurl { 3125 - url = "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz"; 3126 - sha512 = "4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="; 3127 - }; 3128 - }; 3129 3021 "cli-cursor-2.1.0" = { 3130 3022 name = "cli-cursor"; 3131 3023 packageName = "cli-cursor"; ··· 3135 3027 sha512 = "8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw=="; 3136 3028 }; 3137 3029 }; 3138 - "cli-cursor-3.1.0" = { 3030 + "cli-cursor-5.0.0" = { 3139 3031 name = "cli-cursor"; 3140 3032 packageName = "cli-cursor"; 3141 - version = "3.1.0"; 3033 + version = "5.0.0"; 3142 3034 src = fetchurl { 3143 - url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz"; 3144 - sha512 = "I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw=="; 3145 - }; 3146 - }; 3147 - "cli-cursor-4.0.0" = { 3148 - name = "cli-cursor"; 3149 - packageName = "cli-cursor"; 3150 - version = "4.0.0"; 3151 - src = fetchurl { 3152 - url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz"; 3153 - sha512 = "VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg=="; 3154 - }; 3155 - }; 3156 - "cli-spinners-2.9.2" = { 3157 - name = "cli-spinners"; 3158 - packageName = "cli-spinners"; 3159 - version = "2.9.2"; 3160 - src = fetchurl { 3161 - url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz"; 3162 - sha512 = "ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg=="; 3035 + url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz"; 3036 + sha512 = "aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw=="; 3163 3037 }; 3164 3038 }; 3165 3039 "cli-table-0.3.4" = { ··· 3214 3088 src = fetchurl { 3215 3089 url = "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz"; 3216 3090 sha512 = "BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ=="; 3217 - }; 3218 - }; 3219 - "clone-1.0.4" = { 3220 - name = "clone"; 3221 - packageName = "clone"; 3222 - version = "1.0.4"; 3223 - src = fetchurl { 3224 - url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz"; 3225 - sha512 = "JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg=="; 3226 3091 }; 3227 3092 }; 3228 3093 "clone-response-1.0.3" = { ··· 3369 3234 sha512 = "LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="; 3370 3235 }; 3371 3236 }; 3372 - "commander-11.1.0" = { 3237 + "commander-12.1.0" = { 3373 3238 name = "commander"; 3374 3239 packageName = "commander"; 3375 - version = "11.1.0"; 3240 + version = "12.1.0"; 3376 3241 src = fetchurl { 3377 - url = "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz"; 3378 - sha512 = "yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ=="; 3242 + url = "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz"; 3243 + sha512 = "Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA=="; 3379 3244 }; 3380 3245 }; 3381 3246 "commander-2.14.1" = { ··· 3412 3277 src = fetchurl { 3413 3278 url = "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz"; 3414 3279 sha512 = "NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="; 3415 - }; 3416 - }; 3417 - "commander-5.1.0" = { 3418 - name = "commander"; 3419 - packageName = "commander"; 3420 - version = "5.1.0"; 3421 - src = fetchurl { 3422 - url = "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz"; 3423 - sha512 = "P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg=="; 3424 3280 }; 3425 3281 }; 3426 3282 "commander-6.2.1" = { ··· 3486 3342 sha512 = "AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg=="; 3487 3343 }; 3488 3344 }; 3489 - "compression-1.7.4" = { 3345 + "compression-1.8.0" = { 3490 3346 name = "compression"; 3491 3347 packageName = "compression"; 3492 - version = "1.7.4"; 3348 + version = "1.8.0"; 3493 3349 src = fetchurl { 3494 - url = "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz"; 3495 - sha512 = "jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ=="; 3350 + url = "https://registry.npmjs.org/compression/-/compression-1.8.0.tgz"; 3351 + sha512 = "k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA=="; 3496 3352 }; 3497 3353 }; 3498 3354 "concat-map-0.0.1" = { ··· 3612 3468 sha512 = "+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw=="; 3613 3469 }; 3614 3470 }; 3615 - "cookie-0.6.0" = { 3471 + "cookie-0.7.1" = { 3616 3472 name = "cookie"; 3617 3473 packageName = "cookie"; 3618 - version = "0.6.0"; 3474 + version = "0.7.1"; 3619 3475 src = fetchurl { 3620 - url = "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz"; 3621 - sha512 = "U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw=="; 3476 + url = "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz"; 3477 + sha512 = "6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w=="; 3622 3478 }; 3623 3479 }; 3624 3480 "cookie-signature-1.0.6" = { ··· 3630 3486 sha512 = "QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="; 3631 3487 }; 3632 3488 }; 3633 - "cookie-signature-1.2.1" = { 3489 + "cookie-signature-1.2.2" = { 3634 3490 name = "cookie-signature"; 3635 3491 packageName = "cookie-signature"; 3636 - version = "1.2.1"; 3492 + version = "1.2.2"; 3637 3493 src = fetchurl { 3638 - url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.1.tgz"; 3639 - sha512 = "78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw=="; 3494 + url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz"; 3495 + sha512 = "D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg=="; 3640 3496 }; 3641 3497 }; 3642 3498 "copy-anything-2.0.6" = { ··· 3684 3540 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 3685 3541 }; 3686 3542 }; 3687 - "core-js-compat-3.38.1" = { 3543 + "core-js-compat-3.40.0" = { 3688 3544 name = "core-js-compat"; 3689 3545 packageName = "core-js-compat"; 3690 - version = "3.38.1"; 3546 + version = "3.40.0"; 3691 3547 src = fetchurl { 3692 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz"; 3693 - sha512 = "JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw=="; 3548 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.40.0.tgz"; 3549 + sha512 = "0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ=="; 3694 3550 }; 3695 3551 }; 3696 3552 "core-util-is-1.0.2" = { ··· 3765 3621 sha512 = "2qCRJwBmPlRQXzd50k9gt9PaItultOP8lj/cKSH2Eai9aeBuNqAnDuyolAm9TGn6Pw/4BgbxtPJLU1S+tQ4WMQ=="; 3766 3622 }; 3767 3623 }; 3768 - "cross-fetch-3.1.8" = { 3624 + "cross-fetch-3.2.0" = { 3769 3625 name = "cross-fetch"; 3770 3626 packageName = "cross-fetch"; 3771 - version = "3.1.8"; 3627 + version = "3.2.0"; 3772 3628 src = fetchurl { 3773 - url = "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz"; 3774 - sha512 = "cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg=="; 3629 + url = "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz"; 3630 + sha512 = "Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q=="; 3775 3631 }; 3776 3632 }; 3777 3633 "cross-spawn-5.0.1" = { ··· 3801 3657 sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ=="; 3802 3658 }; 3803 3659 }; 3660 + "cross-spawn-6.0.6" = { 3661 + name = "cross-spawn"; 3662 + packageName = "cross-spawn"; 3663 + version = "6.0.6"; 3664 + src = fetchurl { 3665 + url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz"; 3666 + sha512 = "VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw=="; 3667 + }; 3668 + }; 3804 3669 "cross-spawn-7.0.0" = { 3805 3670 name = "cross-spawn"; 3806 3671 packageName = "cross-spawn"; ··· 3819 3684 sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; 3820 3685 }; 3821 3686 }; 3687 + "cross-spawn-7.0.6" = { 3688 + name = "cross-spawn"; 3689 + packageName = "cross-spawn"; 3690 + version = "7.0.6"; 3691 + src = fetchurl { 3692 + url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz"; 3693 + sha512 = "uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="; 3694 + }; 3695 + }; 3822 3696 "crypt-0.0.2" = { 3823 3697 name = "crypt"; 3824 3698 packageName = "crypt"; ··· 3828 3702 sha512 = "mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow=="; 3829 3703 }; 3830 3704 }; 3831 - "crypto-browserify-3.12.0" = { 3705 + "crypto-browserify-3.12.1" = { 3832 3706 name = "crypto-browserify"; 3833 3707 packageName = "crypto-browserify"; 3834 - version = "3.12.0"; 3708 + version = "3.12.1"; 3835 3709 src = fetchurl { 3836 - url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz"; 3837 - sha512 = "fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg=="; 3710 + url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.1.tgz"; 3711 + sha512 = "r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ=="; 3838 3712 }; 3839 3713 }; 3840 3714 "css-color-names-0.0.4" = { ··· 4035 3909 sha512 = "jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g=="; 4036 3910 }; 4037 3911 }; 4038 - "data-view-buffer-1.0.1" = { 3912 + "data-view-buffer-1.0.2" = { 4039 3913 name = "data-view-buffer"; 4040 3914 packageName = "data-view-buffer"; 4041 - version = "1.0.1"; 3915 + version = "1.0.2"; 4042 3916 src = fetchurl { 4043 - url = "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz"; 4044 - sha512 = "0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA=="; 3917 + url = "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz"; 3918 + sha512 = "EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ=="; 4045 3919 }; 4046 3920 }; 4047 - "data-view-byte-length-1.0.1" = { 3921 + "data-view-byte-length-1.0.2" = { 4048 3922 name = "data-view-byte-length"; 4049 3923 packageName = "data-view-byte-length"; 4050 - version = "1.0.1"; 3924 + version = "1.0.2"; 4051 3925 src = fetchurl { 4052 - url = "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz"; 4053 - sha512 = "4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ=="; 3926 + url = "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz"; 3927 + sha512 = "tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ=="; 4054 3928 }; 4055 3929 }; 4056 - "data-view-byte-offset-1.0.0" = { 3930 + "data-view-byte-offset-1.0.1" = { 4057 3931 name = "data-view-byte-offset"; 4058 3932 packageName = "data-view-byte-offset"; 4059 - version = "1.0.0"; 3933 + version = "1.0.1"; 4060 3934 src = fetchurl { 4061 - url = "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz"; 4062 - sha512 = "t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA=="; 3935 + url = "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz"; 3936 + sha512 = "BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ=="; 4063 3937 }; 4064 3938 }; 4065 3939 "debug-2.6.9" = { ··· 4080 3954 sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="; 4081 3955 }; 4082 3956 }; 4083 - "debug-4.3.7" = { 3957 + "debug-4.4.0" = { 4084 3958 name = "debug"; 4085 3959 packageName = "debug"; 4086 - version = "4.3.7"; 3960 + version = "4.4.0"; 4087 3961 src = fetchurl { 4088 - url = "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz"; 4089 - sha512 = "Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ=="; 3962 + url = "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz"; 3963 + sha512 = "6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="; 4090 3964 }; 4091 3965 }; 4092 3966 "decamelize-1.2.0" = { ··· 4107 3981 sha512 = "FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ=="; 4108 3982 }; 4109 3983 }; 4110 - "decompress-response-3.3.0" = { 4111 - name = "decompress-response"; 4112 - packageName = "decompress-response"; 4113 - version = "3.3.0"; 4114 - src = fetchurl { 4115 - url = "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz"; 4116 - sha512 = "BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA=="; 4117 - }; 4118 - }; 4119 3984 "decompress-response-5.0.0" = { 4120 3985 name = "decompress-response"; 4121 3986 packageName = "decompress-response"; ··· 4125 3990 sha512 = "TLZWWybuxWgoW7Lykv+gq9xvzOsUjQ9tF09Tj6NSTYGMTCHNXzrPnD6Hi+TgZq19PyTAGH4Ll/NIM/eTGglnMw=="; 4126 3991 }; 4127 3992 }; 4128 - "decompress-response-6.0.0" = { 4129 - name = "decompress-response"; 4130 - packageName = "decompress-response"; 4131 - version = "6.0.0"; 4132 - src = fetchurl { 4133 - url = "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz"; 4134 - sha512 = "aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ=="; 4135 - }; 4136 - }; 4137 3993 "deep-equal-0.2.2" = { 4138 3994 name = "deep-equal"; 4139 3995 packageName = "deep-equal"; ··· 4161 4017 sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="; 4162 4018 }; 4163 4019 }; 4164 - "default-gateway-4.2.0" = { 4165 - name = "default-gateway"; 4166 - packageName = "default-gateway"; 4167 - version = "4.2.0"; 4020 + "default-browser-5.2.1" = { 4021 + name = "default-browser"; 4022 + packageName = "default-browser"; 4023 + version = "5.2.1"; 4168 4024 src = fetchurl { 4169 - url = "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz"; 4170 - sha512 = "h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA=="; 4025 + url = "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz"; 4026 + sha512 = "WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg=="; 4171 4027 }; 4172 4028 }; 4173 - "defaults-1.0.4" = { 4174 - name = "defaults"; 4175 - packageName = "defaults"; 4176 - version = "1.0.4"; 4029 + "default-browser-id-5.0.0" = { 4030 + name = "default-browser-id"; 4031 + packageName = "default-browser-id"; 4032 + version = "5.0.0"; 4177 4033 src = fetchurl { 4178 - url = "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz"; 4179 - sha512 = "eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A=="; 4034 + url = "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz"; 4035 + sha512 = "A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA=="; 4180 4036 }; 4181 4037 }; 4182 - "defer-to-connect-1.1.3" = { 4183 - name = "defer-to-connect"; 4184 - packageName = "defer-to-connect"; 4185 - version = "1.1.3"; 4038 + "default-gateway-4.2.0" = { 4039 + name = "default-gateway"; 4040 + packageName = "default-gateway"; 4041 + version = "4.2.0"; 4186 4042 src = fetchurl { 4187 - url = "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz"; 4188 - sha512 = "0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ=="; 4043 + url = "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz"; 4044 + sha512 = "h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA=="; 4189 4045 }; 4190 4046 }; 4191 4047 "defer-to-connect-2.0.1" = { ··· 4204 4060 src = fetchurl { 4205 4061 url = "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz"; 4206 4062 sha512 = "rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A=="; 4063 + }; 4064 + }; 4065 + "define-lazy-prop-3.0.0" = { 4066 + name = "define-lazy-prop"; 4067 + packageName = "define-lazy-prop"; 4068 + version = "3.0.0"; 4069 + src = fetchurl { 4070 + url = "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz"; 4071 + sha512 = "N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg=="; 4207 4072 }; 4208 4073 }; 4209 4074 "define-properties-1.2.1" = { ··· 4521 4386 sha512 = "8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw=="; 4522 4387 }; 4523 4388 }; 4389 + "dunder-proto-1.0.1" = { 4390 + name = "dunder-proto"; 4391 + packageName = "dunder-proto"; 4392 + version = "1.0.1"; 4393 + src = fetchurl { 4394 + url = "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz"; 4395 + sha512 = "KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="; 4396 + }; 4397 + }; 4524 4398 "duplexer-0.1.2" = { 4525 4399 name = "duplexer"; 4526 4400 packageName = "duplexer"; ··· 4575 4449 sha512 = "WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="; 4576 4450 }; 4577 4451 }; 4578 - "electron-to-chromium-1.5.29" = { 4452 + "electron-to-chromium-1.5.101" = { 4579 4453 name = "electron-to-chromium"; 4580 4454 packageName = "electron-to-chromium"; 4581 - version = "1.5.29"; 4455 + version = "1.5.101"; 4582 4456 src = fetchurl { 4583 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.29.tgz"; 4584 - sha512 = "PF8n2AlIhCKXQ+gTpiJi0VhcHDb69kYX4MtCiivctc2QD3XuNZ/XIOlbGzt7WAjjEev0TtaH6Cu3arZExm5DOw=="; 4457 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.101.tgz"; 4458 + sha512 = "L0ISiQrP/56Acgu4/i/kfPwWSgrzYZUnQrC0+QPFuhqlLP1Ir7qzPPDVS9BcKIyWTRU8+o6CC8dKw38tSWhYIA=="; 4585 4459 }; 4586 4460 }; 4587 - "elliptic-6.5.7" = { 4461 + "elliptic-6.6.1" = { 4588 4462 name = "elliptic"; 4589 4463 packageName = "elliptic"; 4590 - version = "6.5.7"; 4464 + version = "6.6.1"; 4591 4465 src = fetchurl { 4592 - url = "https://registry.npmjs.org/elliptic/-/elliptic-6.5.7.tgz"; 4593 - sha512 = "ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q=="; 4466 + url = "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz"; 4467 + sha512 = "RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g=="; 4594 4468 }; 4595 4469 }; 4596 4470 "elm-0.19.1" = { ··· 4611 4485 sha512 = "dyBoPvFiNLvxOStQJdyq28gZEjS/enZXdZ5yyCtNtDEMbFJJVQq4pYNRKvhrKKdlxNot6d96iQe1uczoqO5yvA=="; 4612 4486 }; 4613 4487 }; 4614 - "elm-0.19.1-6" = { 4615 - name = "elm"; 4616 - packageName = "elm"; 4617 - version = "0.19.1-6"; 4618 - src = fetchurl { 4619 - url = "https://registry.npmjs.org/elm/-/elm-0.19.1-6.tgz"; 4620 - sha512 = "mKYyierHICPdMx/vhiIacdPmTPnh889gjHOZ75ZAoCxo3lZmSWbGP8HMw78wyctJH0HwvTmeKhlYSWboQNYPeQ=="; 4621 - }; 4622 - }; 4623 4488 "elm-asset-webpack-loader-1.1.2" = { 4624 4489 name = "elm-asset-webpack-loader"; 4625 4490 packageName = "elm-asset-webpack-loader"; ··· 4629 4494 sha512 = "jrXYtxk13LXtbxCiT23+RuNhUgbJgGBRW2sCqkMGojTZTFKttL1E8mSUvsIuomUiKLJOSXUZb3HjvwXNkJjTNA=="; 4630 4495 }; 4631 4496 }; 4632 - "elm-doc-preview-5.0.5" = { 4497 + "elm-doc-preview-6.0.1" = { 4633 4498 name = "elm-doc-preview"; 4634 4499 packageName = "elm-doc-preview"; 4635 - version = "5.0.5"; 4500 + version = "6.0.1"; 4636 4501 src = fetchurl { 4637 - url = "https://registry.npmjs.org/elm-doc-preview/-/elm-doc-preview-5.0.5.tgz"; 4638 - sha512 = "GlWnbw2Bl+pA7QzRlqSYNGEQ3r3oNxMr2Nu0uiCM6AWzQ6Sk3BwtqSiUZvXLLlzWBV9pAQnY9U8xpDpPuh5rOQ=="; 4502 + url = "https://registry.npmjs.org/elm-doc-preview/-/elm-doc-preview-6.0.1.tgz"; 4503 + sha512 = "G/xgVRKpbLuqliQmBINQFE6I0YAwqET2+SabiyXE47kaVChkhIz91HlZudUvCzTG/CV2ci7AERtAwYzQ4bjOKA=="; 4639 4504 }; 4640 4505 }; 4641 4506 "elm-hot-1.1.4" = { ··· 4665 4530 sha512 = "FcRN8UlTl52EigvGjTaG9rnfdUJYh88eWRrruUmZLNVb/71maM92l3HNDAcyztOj4pEYGhoo9DEHEquZm6B08A=="; 4666 4531 }; 4667 4532 }; 4668 - "elm-solve-deps-wasm-1.0.2" = { 4533 + "elm-solve-deps-wasm-2.0.0" = { 4669 4534 name = "elm-solve-deps-wasm"; 4670 4535 packageName = "elm-solve-deps-wasm"; 4671 - version = "1.0.2"; 4536 + version = "2.0.0"; 4672 4537 src = fetchurl { 4673 - url = "https://registry.npmjs.org/elm-solve-deps-wasm/-/elm-solve-deps-wasm-1.0.2.tgz"; 4674 - sha512 = "qnwo7RO9IO7jd9SLHvIy0rSOEIlc/tNMTE9Cras0kl+b161PVidW4FvXo0MtXU8GAKi/2s/HYvhcnpR/NNQ1zw=="; 4538 + url = "https://registry.npmjs.org/elm-solve-deps-wasm/-/elm-solve-deps-wasm-2.0.0.tgz"; 4539 + sha512 = "11OV8FgB9qsth/F94q2SJjb1MoEgbworSyNM1L+YlxVoaxp7wtWPyA8cNcPEkSoIKG1B8Tqg68ED1P6dVamHSg=="; 4675 4540 }; 4676 4541 }; 4677 4542 "elm-test-0.19.1" = { ··· 4683 4548 sha512 = "SyZgZ/hxq62budS3k0M1Qj1E8fIRvldSxFSm4XfzE6qRRuHAT2a82fxprZRZl1yG2GwnImGmhuKH5hSyjPpzjA=="; 4684 4549 }; 4685 4550 }; 4686 - "elm-test-0.19.1-revision12" = { 4551 + "elm-test-0.19.1-revision14" = { 4687 4552 name = "elm-test"; 4688 4553 packageName = "elm-test"; 4689 - version = "0.19.1-revision12"; 4554 + version = "0.19.1-revision14"; 4690 4555 src = fetchurl { 4691 - url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision12.tgz"; 4692 - sha512 = "5GV3WkJ8R/faOP1hwElQdNuCt8tKx2+1lsMrdeIYWSFz01Kp9gJl/R6zGtp4QUyrUtO8KnHsxjHrQNUf2CHkrg=="; 4556 + url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision14.tgz"; 4557 + sha512 = "gfQQYtHTeMstGbGbiRHbGKLsQCGI53ozLP22Wqx6YjxXLlNsdT8NS2EGmjkdQSU3ALRhYECtnF//ZUb4wbCpUQ=="; 4693 4558 }; 4694 4559 }; 4695 4560 "elm-webpack-loader-6.0.1" = { ··· 4845 4710 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 4846 4711 }; 4847 4712 }; 4848 - "es-abstract-1.23.3" = { 4713 + "es-abstract-1.23.9" = { 4849 4714 name = "es-abstract"; 4850 4715 packageName = "es-abstract"; 4851 - version = "1.23.3"; 4716 + version = "1.23.9"; 4852 4717 src = fetchurl { 4853 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz"; 4854 - sha512 = "e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A=="; 4718 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.9.tgz"; 4719 + sha512 = "py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA=="; 4855 4720 }; 4856 4721 }; 4857 4722 "es-array-method-boxes-properly-1.0.0" = { ··· 4863 4728 sha512 = "wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA=="; 4864 4729 }; 4865 4730 }; 4866 - "es-define-property-1.0.0" = { 4731 + "es-define-property-1.0.1" = { 4867 4732 name = "es-define-property"; 4868 4733 packageName = "es-define-property"; 4869 - version = "1.0.0"; 4734 + version = "1.0.1"; 4870 4735 src = fetchurl { 4871 - url = "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz"; 4872 - sha512 = "jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ=="; 4736 + url = "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz"; 4737 + sha512 = "e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="; 4873 4738 }; 4874 4739 }; 4875 4740 "es-errors-1.3.0" = { ··· 4881 4746 sha512 = "Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="; 4882 4747 }; 4883 4748 }; 4884 - "es-object-atoms-1.0.0" = { 4749 + "es-object-atoms-1.1.1" = { 4885 4750 name = "es-object-atoms"; 4886 4751 packageName = "es-object-atoms"; 4887 - version = "1.0.0"; 4752 + version = "1.1.1"; 4888 4753 src = fetchurl { 4889 - url = "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz"; 4890 - sha512 = "MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw=="; 4754 + url = "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz"; 4755 + sha512 = "FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="; 4891 4756 }; 4892 4757 }; 4893 - "es-set-tostringtag-2.0.3" = { 4758 + "es-set-tostringtag-2.1.0" = { 4894 4759 name = "es-set-tostringtag"; 4895 4760 packageName = "es-set-tostringtag"; 4896 - version = "2.0.3"; 4761 + version = "2.1.0"; 4897 4762 src = fetchurl { 4898 - url = "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz"; 4899 - sha512 = "3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ=="; 4763 + url = "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz"; 4764 + sha512 = "j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA=="; 4900 4765 }; 4901 4766 }; 4902 - "es-to-primitive-1.2.1" = { 4767 + "es-to-primitive-1.3.0" = { 4903 4768 name = "es-to-primitive"; 4904 4769 packageName = "es-to-primitive"; 4905 - version = "1.2.1"; 4770 + version = "1.3.0"; 4906 4771 src = fetchurl { 4907 - url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; 4908 - sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="; 4772 + url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz"; 4773 + sha512 = "w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g=="; 4909 4774 }; 4910 4775 }; 4911 4776 "es5-ext-0.10.64" = { ··· 4944 4809 sha512 = "U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg=="; 4945 4810 }; 4946 4811 }; 4947 - "esbuild-0.19.12" = { 4812 + "esbuild-0.23.1" = { 4948 4813 name = "esbuild"; 4949 4814 packageName = "esbuild"; 4950 - version = "0.19.12"; 4815 + version = "0.23.1"; 4951 4816 src = fetchurl { 4952 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz"; 4953 - sha512 = "aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg=="; 4817 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz"; 4818 + sha512 = "VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg=="; 4954 4819 }; 4955 4820 }; 4956 - "esbuild-0.20.2" = { 4821 + "esbuild-0.24.2" = { 4957 4822 name = "esbuild"; 4958 4823 packageName = "esbuild"; 4959 - version = "0.20.2"; 4824 + version = "0.24.2"; 4960 4825 src = fetchurl { 4961 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz"; 4962 - sha512 = "WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g=="; 4963 - }; 4964 - }; 4965 - "esbuild-0.21.5" = { 4966 - name = "esbuild"; 4967 - packageName = "esbuild"; 4968 - version = "0.21.5"; 4969 - src = fetchurl { 4970 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz"; 4971 - sha512 = "mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw=="; 4826 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz"; 4827 + sha512 = "+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA=="; 4972 4828 }; 4973 4829 }; 4974 4830 "escalade-3.2.0" = { ··· 5196 5052 sha512 = "CDaOBMB9knI6vx9SpIxEMOJ6VBbC2U/tYNILs0qv1YOZc15K9U2EcF06v10F0JX6IYcWnKYZJwIDJspEHLvUaQ=="; 5197 5053 }; 5198 5054 }; 5199 - "express-4.21.0" = { 5055 + "express-4.21.2" = { 5200 5056 name = "express"; 5201 5057 packageName = "express"; 5202 - version = "4.21.0"; 5058 + version = "4.21.2"; 5203 5059 src = fetchurl { 5204 - url = "https://registry.npmjs.org/express/-/express-4.21.0.tgz"; 5205 - sha512 = "VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng=="; 5060 + url = "https://registry.npmjs.org/express/-/express-4.21.2.tgz"; 5061 + sha512 = "28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA=="; 5206 5062 }; 5207 5063 }; 5208 5064 "express-ws-2.0.0" = { ··· 5214 5070 sha512 = "Voh/dZzLoNVxd+foiLS24ch2ZBKEuSJyXjHIjE2mq5bKtII8JKUVRqhr5onD7nVXU8SCxJtn4LYKnHlypRYGOA=="; 5215 5071 }; 5216 5072 }; 5217 - "express-ws-4.0.0" = { 5073 + "express-ws-5.0.2" = { 5218 5074 name = "express-ws"; 5219 5075 packageName = "express-ws"; 5220 - version = "4.0.0"; 5076 + version = "5.0.2"; 5221 5077 src = fetchurl { 5222 - url = "https://registry.npmjs.org/express-ws/-/express-ws-4.0.0.tgz"; 5223 - sha512 = "KEyUw8AwRET2iFjFsI1EJQrJ/fHeGiJtgpYgEWG3yDv4l/To/m3a2GaYfeGyB3lsWdvbesjF5XCMx+SVBgAAYw=="; 5078 + url = "https://registry.npmjs.org/express-ws/-/express-ws-5.0.2.tgz"; 5079 + sha512 = "0uvmuk61O9HXgLhGl3QhNSEtRsQevtmbL94/eILaliEADZBHZOQUAiHFrGPrgsjikohyrmSG5g+sCfASTt0lkQ=="; 5224 5080 }; 5225 5081 }; 5226 5082 "ext-1.7.0" = { ··· 5331 5187 sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw=="; 5332 5188 }; 5333 5189 }; 5334 - "fast-glob-3.3.2" = { 5190 + "fast-glob-3.3.3" = { 5335 5191 name = "fast-glob"; 5336 5192 packageName = "fast-glob"; 5337 - version = "3.3.2"; 5193 + version = "3.3.3"; 5338 5194 src = fetchurl { 5339 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz"; 5340 - sha512 = "oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow=="; 5195 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz"; 5196 + sha512 = "7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg=="; 5341 5197 }; 5342 5198 }; 5343 5199 "fast-json-stable-stringify-2.1.0" = { ··· 5349 5205 sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; 5350 5206 }; 5351 5207 }; 5352 - "fast-uri-3.0.2" = { 5208 + "fast-uri-3.0.6" = { 5353 5209 name = "fast-uri"; 5354 5210 packageName = "fast-uri"; 5355 - version = "3.0.2"; 5211 + version = "3.0.6"; 5356 5212 src = fetchurl { 5357 - url = "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.2.tgz"; 5358 - sha512 = "GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row=="; 5213 + url = "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz"; 5214 + sha512 = "Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw=="; 5359 5215 }; 5360 5216 }; 5361 - "fastest-levenshtein-1.0.16" = { 5362 - name = "fastest-levenshtein"; 5363 - packageName = "fastest-levenshtein"; 5364 - version = "1.0.16"; 5365 - src = fetchurl { 5366 - url = "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz"; 5367 - sha512 = "eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg=="; 5368 - }; 5369 - }; 5370 - "fastq-1.17.1" = { 5217 + "fastq-1.19.0" = { 5371 5218 name = "fastq"; 5372 5219 packageName = "fastq"; 5373 - version = "1.17.1"; 5220 + version = "1.19.0"; 5374 5221 src = fetchurl { 5375 - url = "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz"; 5376 - sha512 = "sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w=="; 5222 + url = "https://registry.npmjs.org/fastq/-/fastq-1.19.0.tgz"; 5223 + sha512 = "7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA=="; 5377 5224 }; 5378 5225 }; 5379 5226 "faye-websocket-0.10.0" = { ··· 5628 5475 sha512 = "3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w=="; 5629 5476 }; 5630 5477 }; 5631 - "folder-hash-3.3.3" = { 5632 - name = "folder-hash"; 5633 - packageName = "folder-hash"; 5634 - version = "3.3.3"; 5635 - src = fetchurl { 5636 - url = "https://registry.npmjs.org/folder-hash/-/folder-hash-3.3.3.tgz"; 5637 - sha512 = "SDgHBgV+RCjrYs8aUwCb9rTgbTVuSdzvFmLaChsLre1yf+D64khCW++VYciaByZ8Rm0uKF8R/XEpXuTRSGUM1A=="; 5638 - }; 5639 - }; 5640 5478 "follow-redirects-1.15.9" = { 5641 5479 name = "follow-redirects"; 5642 5480 packageName = "follow-redirects"; ··· 5646 5484 sha512 = "gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ=="; 5647 5485 }; 5648 5486 }; 5649 - "for-each-0.3.3" = { 5487 + "for-each-0.3.5" = { 5650 5488 name = "for-each"; 5651 5489 packageName = "for-each"; 5652 - version = "0.3.3"; 5490 + version = "0.3.5"; 5653 5491 src = fetchurl { 5654 - url = "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz"; 5655 - sha512 = "jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw=="; 5492 + url = "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz"; 5493 + sha512 = "dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="; 5656 5494 }; 5657 5495 }; 5658 5496 "for-in-1.0.2" = { ··· 5691 5529 sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; 5692 5530 }; 5693 5531 }; 5694 - "form-data-3.0.1" = { 5532 + "form-data-3.0.3" = { 5695 5533 name = "form-data"; 5696 5534 packageName = "form-data"; 5697 - version = "3.0.1"; 5535 + version = "3.0.3"; 5698 5536 src = fetchurl { 5699 - url = "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz"; 5700 - sha512 = "RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg=="; 5537 + url = "https://registry.npmjs.org/form-data/-/form-data-3.0.3.tgz"; 5538 + sha512 = "q5YBMeWy6E2Un0nMGWMgI65MAKtaylxfNJGJxpGh45YDciZB4epbWpaAfImil6CPAPTYB4sh0URQNDRIZG5F2w=="; 5701 5539 }; 5702 5540 }; 5703 5541 "forwarded-0.2.0" = { ··· 5745 5583 sha512 = "OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g=="; 5746 5584 }; 5747 5585 }; 5748 - "fs-extra-11.2.0" = { 5586 + "fs-extra-11.3.0" = { 5749 5587 name = "fs-extra"; 5750 5588 packageName = "fs-extra"; 5751 - version = "11.2.0"; 5589 + version = "11.3.0"; 5752 5590 src = fetchurl { 5753 - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz"; 5754 - sha512 = "PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw=="; 5591 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz"; 5592 + sha512 = "Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew=="; 5755 5593 }; 5756 5594 }; 5757 5595 "fs-extra-2.0.0" = { ··· 5799 5637 sha512 = "yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g=="; 5800 5638 }; 5801 5639 }; 5802 - "fs-extra-9.1.0" = { 5803 - name = "fs-extra"; 5804 - packageName = "fs-extra"; 5805 - version = "9.1.0"; 5806 - src = fetchurl { 5807 - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz"; 5808 - sha512 = "hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ=="; 5809 - }; 5810 - }; 5811 5640 "fs-minipass-1.2.7" = { 5812 5641 name = "fs-minipass"; 5813 5642 packageName = "fs-minipass"; ··· 5898 5727 sha512 = "7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="; 5899 5728 }; 5900 5729 }; 5901 - "function.prototype.name-1.1.6" = { 5730 + "function.prototype.name-1.1.8" = { 5902 5731 name = "function.prototype.name"; 5903 5732 packageName = "function.prototype.name"; 5904 - version = "1.1.6"; 5733 + version = "1.1.8"; 5905 5734 src = fetchurl { 5906 - url = "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz"; 5907 - sha512 = "Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg=="; 5735 + url = "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz"; 5736 + sha512 = "e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q=="; 5908 5737 }; 5909 5738 }; 5910 5739 "functions-have-names-1.2.3" = { ··· 5943 5772 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 5944 5773 }; 5945 5774 }; 5946 - "get-intrinsic-1.2.4" = { 5775 + "get-intrinsic-1.2.7" = { 5947 5776 name = "get-intrinsic"; 5948 5777 packageName = "get-intrinsic"; 5949 - version = "1.2.4"; 5778 + version = "1.2.7"; 5950 5779 src = fetchurl { 5951 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz"; 5952 - sha512 = "5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ=="; 5780 + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz"; 5781 + sha512 = "VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA=="; 5953 5782 }; 5954 5783 }; 5955 5784 "get-own-enumerable-property-symbols-3.0.2" = { ··· 5968 5797 src = fetchurl { 5969 5798 url = "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz"; 5970 5799 sha512 = "x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg=="; 5800 + }; 5801 + }; 5802 + "get-proto-1.0.1" = { 5803 + name = "get-proto"; 5804 + packageName = "get-proto"; 5805 + version = "1.0.1"; 5806 + src = fetchurl { 5807 + url = "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz"; 5808 + sha512 = "sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="; 5971 5809 }; 5972 5810 }; 5973 5811 "get-proxy-2.1.0" = { ··· 6006 5844 sha512 = "ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="; 6007 5845 }; 6008 5846 }; 6009 - "get-symbol-description-1.0.2" = { 5847 + "get-symbol-description-1.1.0" = { 6010 5848 name = "get-symbol-description"; 6011 5849 packageName = "get-symbol-description"; 6012 - version = "1.0.2"; 5850 + version = "1.1.0"; 6013 5851 src = fetchurl { 6014 - url = "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz"; 6015 - sha512 = "g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg=="; 5852 + url = "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz"; 5853 + sha512 = "w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg=="; 5854 + }; 5855 + }; 5856 + "get-tsconfig-4.10.0" = { 5857 + name = "get-tsconfig"; 5858 + packageName = "get-tsconfig"; 5859 + version = "4.10.0"; 5860 + src = fetchurl { 5861 + url = "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.0.tgz"; 5862 + sha512 = "kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A=="; 6016 5863 }; 6017 5864 }; 6018 5865 "get-value-2.0.6" = { ··· 6051 5898 sha512 = "7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg=="; 6052 5899 }; 6053 5900 }; 5901 + "glob-11.0.1" = { 5902 + name = "glob"; 5903 + packageName = "glob"; 5904 + version = "11.0.1"; 5905 + src = fetchurl { 5906 + url = "https://registry.npmjs.org/glob/-/glob-11.0.1.tgz"; 5907 + sha512 = "zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw=="; 5908 + }; 5909 + }; 6054 5910 "glob-7.1.4" = { 6055 5911 name = "glob"; 6056 5912 packageName = "glob"; ··· 6067 5923 src = fetchurl { 6068 5924 url = "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"; 6069 5925 sha512 = "nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="; 6070 - }; 6071 - }; 6072 - "glob-8.1.0" = { 6073 - name = "glob"; 6074 - packageName = "glob"; 6075 - version = "8.1.0"; 6076 - src = fetchurl { 6077 - url = "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz"; 6078 - sha512 = "r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ=="; 6079 5926 }; 6080 5927 }; 6081 5928 "glob-parent-3.1.0" = { ··· 6150 5997 sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; 6151 5998 }; 6152 5999 }; 6153 - "globby-13.2.2" = { 6000 + "globby-14.0.2" = { 6154 6001 name = "globby"; 6155 6002 packageName = "globby"; 6156 - version = "13.2.2"; 6003 + version = "14.0.2"; 6157 6004 src = fetchurl { 6158 - url = "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz"; 6159 - sha512 = "Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w=="; 6160 - }; 6161 - }; 6162 - "globby-14.0.0" = { 6163 - name = "globby"; 6164 - packageName = "globby"; 6165 - version = "14.0.0"; 6166 - src = fetchurl { 6167 - url = "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz"; 6168 - sha512 = "/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ=="; 6005 + url = "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz"; 6006 + sha512 = "s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw=="; 6169 6007 }; 6170 6008 }; 6171 6009 "globby-6.1.0" = { ··· 6195 6033 sha512 = "oMrYrJERnKBLXNLVTqhm3vPEdJ/b2ZE28xN4YARiix1NOIOBPEpOUnm844K1iu/BkphCaf2WNFwMszv8Soi1pw=="; 6196 6034 }; 6197 6035 }; 6198 - "gopd-1.0.1" = { 6036 + "gopd-1.2.0" = { 6199 6037 name = "gopd"; 6200 6038 packageName = "gopd"; 6201 - version = "1.0.1"; 6039 + version = "1.2.0"; 6202 6040 src = fetchurl { 6203 - url = "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz"; 6204 - sha512 = "d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA=="; 6041 + url = "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz"; 6042 + sha512 = "ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="; 6205 6043 }; 6206 6044 }; 6207 6045 "got-10.7.0" = { ··· 6213 6051 sha512 = "aWTDeNw9g+XqEZNcTjMMZSy7B7yE9toWOFYip7ofFTLleJhvZwUxxTxkTpKvF+p1SAA4VHmuEy7PiHTHyq8tJg=="; 6214 6052 }; 6215 6053 }; 6216 - "got-11.8.6" = { 6217 - name = "got"; 6218 - packageName = "got"; 6219 - version = "11.8.6"; 6220 - src = fetchurl { 6221 - url = "https://registry.npmjs.org/got/-/got-11.8.6.tgz"; 6222 - sha512 = "6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g=="; 6223 - }; 6224 - }; 6225 - "got-9.6.0" = { 6226 - name = "got"; 6227 - packageName = "got"; 6228 - version = "9.6.0"; 6054 + "graceful-fs-4.2.10" = { 6055 + name = "graceful-fs"; 6056 + packageName = "graceful-fs"; 6057 + version = "4.2.10"; 6229 6058 src = fetchurl { 6230 - url = "https://registry.npmjs.org/got/-/got-9.6.0.tgz"; 6231 - sha512 = "R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q=="; 6059 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"; 6060 + sha512 = "9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="; 6232 6061 }; 6233 6062 }; 6234 6063 "graceful-fs-4.2.11" = { ··· 6240 6069 sha512 = "RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="; 6241 6070 }; 6242 6071 }; 6243 - "graphql-16.9.0" = { 6072 + "graphql-16.10.0" = { 6244 6073 name = "graphql"; 6245 6074 packageName = "graphql"; 6246 - version = "16.9.0"; 6075 + version = "16.10.0"; 6247 6076 src = fetchurl { 6248 - url = "https://registry.npmjs.org/graphql/-/graphql-16.9.0.tgz"; 6249 - sha512 = "GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw=="; 6077 + url = "https://registry.npmjs.org/graphql/-/graphql-16.10.0.tgz"; 6078 + sha512 = "AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ=="; 6250 6079 }; 6251 6080 }; 6252 6081 "graphql-request-3.7.0" = { ··· 6321 6150 sha512 = "C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg=="; 6322 6151 }; 6323 6152 }; 6324 - "has-bigints-1.0.2" = { 6153 + "has-bigints-1.1.0" = { 6325 6154 name = "has-bigints"; 6326 6155 packageName = "has-bigints"; 6327 - version = "1.0.2"; 6156 + version = "1.1.0"; 6328 6157 src = fetchurl { 6329 - url = "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz"; 6330 - sha512 = "tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ=="; 6158 + url = "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz"; 6159 + sha512 = "R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg=="; 6331 6160 }; 6332 6161 }; 6333 6162 "has-flag-3.0.0" = { ··· 6357 6186 sha512 = "55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg=="; 6358 6187 }; 6359 6188 }; 6360 - "has-proto-1.0.3" = { 6189 + "has-proto-1.2.0" = { 6361 6190 name = "has-proto"; 6362 6191 packageName = "has-proto"; 6363 - version = "1.0.3"; 6192 + version = "1.2.0"; 6364 6193 src = fetchurl { 6365 - url = "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz"; 6366 - sha512 = "SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q=="; 6194 + url = "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz"; 6195 + sha512 = "KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ=="; 6367 6196 }; 6368 6197 }; 6369 6198 "has-symbol-support-x-1.4.2" = { ··· 6375 6204 sha512 = "3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw=="; 6376 6205 }; 6377 6206 }; 6378 - "has-symbols-1.0.3" = { 6207 + "has-symbols-1.1.0" = { 6379 6208 name = "has-symbols"; 6380 6209 packageName = "has-symbols"; 6381 - version = "1.0.3"; 6210 + version = "1.1.0"; 6382 6211 src = fetchurl { 6383 - url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz"; 6384 - sha512 = "l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="; 6212 + url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz"; 6213 + sha512 = "1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="; 6385 6214 }; 6386 6215 }; 6387 6216 "has-to-string-tag-x-1.4.1" = { ··· 6438 6267 sha512 = "ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ=="; 6439 6268 }; 6440 6269 }; 6441 - "hash-base-3.0.4" = { 6270 + "hash-base-3.0.5" = { 6442 6271 name = "hash-base"; 6443 6272 packageName = "hash-base"; 6444 - version = "3.0.4"; 6273 + version = "3.0.5"; 6445 6274 src = fetchurl { 6446 - url = "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz"; 6447 - sha512 = "EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow=="; 6448 - }; 6449 - }; 6450 - "hash-base-3.1.0" = { 6451 - name = "hash-base"; 6452 - packageName = "hash-base"; 6453 - version = "3.1.0"; 6454 - src = fetchurl { 6455 - url = "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz"; 6456 - sha512 = "1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA=="; 6275 + url = "https://registry.npmjs.org/hash-base/-/hash-base-3.0.5.tgz"; 6276 + sha512 = "vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg=="; 6457 6277 }; 6458 6278 }; 6459 6279 "hash.js-1.1.7" = { ··· 6645 6465 sha512 = "FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="; 6646 6466 }; 6647 6467 }; 6648 - "http-parser-js-0.5.8" = { 6468 + "http-parser-js-0.5.9" = { 6649 6469 name = "http-parser-js"; 6650 6470 packageName = "http-parser-js"; 6651 - version = "0.5.8"; 6471 + version = "0.5.9"; 6652 6472 src = fetchurl { 6653 - url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz"; 6654 - sha512 = "SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q=="; 6473 + url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.9.tgz"; 6474 + sha512 = "n1XsPy3rXVxlqxVioEWdC+0+M+SQw0DpJynwtOPo1X+ZlvdzTLtDBIJJlDQTnwZIFJrZSzSGmIOUdP8tu+SgLw=="; 6655 6475 }; 6656 6476 }; 6657 6477 "http-proxy-1.17.0" = { ··· 6708 6528 sha512 = "CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ=="; 6709 6529 }; 6710 6530 }; 6711 - "http2-wrapper-1.0.3" = { 6712 - name = "http2-wrapper"; 6713 - packageName = "http2-wrapper"; 6714 - version = "1.0.3"; 6715 - src = fetchurl { 6716 - url = "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz"; 6717 - sha512 = "V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg=="; 6718 - }; 6719 - }; 6720 6531 "https-browserify-1.0.0" = { 6721 6532 name = "https-browserify"; 6722 6533 packageName = "https-browserify"; ··· 6726 6537 sha512 = "J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg=="; 6727 6538 }; 6728 6539 }; 6729 - "https-proxy-agent-7.0.5" = { 6540 + "https-proxy-agent-7.0.6" = { 6730 6541 name = "https-proxy-agent"; 6731 6542 packageName = "https-proxy-agent"; 6732 - version = "7.0.5"; 6543 + version = "7.0.6"; 6733 6544 src = fetchurl { 6734 - url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz"; 6735 - sha512 = "1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw=="; 6545 + url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz"; 6546 + sha512 = "vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw=="; 6736 6547 }; 6737 6548 }; 6738 6549 "human-signals-2.1.0" = { ··· 6852 6663 sha512 = "4Urocwu9+XLDJw4Tc6ZCg7APVjjLInCFvO4TwGsAYV5zT6YYSor14dsZR0+0tHlDIN92cFUOq+i7fC00G5vTxA=="; 6853 6664 }; 6854 6665 }; 6855 - "immutable-4.3.7" = { 6666 + "immutable-5.0.3" = { 6856 6667 name = "immutable"; 6857 6668 packageName = "immutable"; 6858 - version = "4.3.7"; 6669 + version = "5.0.3"; 6859 6670 src = fetchurl { 6860 - url = "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz"; 6861 - sha512 = "1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw=="; 6671 + url = "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz"; 6672 + sha512 = "P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw=="; 6862 6673 }; 6863 6674 }; 6864 6675 "import-fresh-2.0.0" = { ··· 6870 6681 sha512 = "eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg=="; 6871 6682 }; 6872 6683 }; 6873 - "import-fresh-3.3.0" = { 6684 + "import-fresh-3.3.1" = { 6874 6685 name = "import-fresh"; 6875 6686 packageName = "import-fresh"; 6876 - version = "3.3.0"; 6687 + version = "3.3.1"; 6877 6688 src = fetchurl { 6878 - url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"; 6879 - sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 6689 + url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz"; 6690 + sha512 = "TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="; 6880 6691 }; 6881 6692 }; 6882 6693 "import-local-2.0.0" = { ··· 6897 6708 sha512 = "JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="; 6898 6709 }; 6899 6710 }; 6900 - "indent-string-4.0.0" = { 6901 - name = "indent-string"; 6902 - packageName = "indent-string"; 6903 - version = "4.0.0"; 6904 - src = fetchurl { 6905 - url = "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz"; 6906 - sha512 = "EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="; 6907 - }; 6908 - }; 6909 6711 "indexes-of-1.0.1" = { 6910 6712 name = "indexes-of"; 6911 6713 packageName = "indexes-of"; ··· 6978 6780 sha512 = "S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg=="; 6979 6781 }; 6980 6782 }; 6981 - "internal-slot-1.0.7" = { 6783 + "internal-slot-1.1.0" = { 6982 6784 name = "internal-slot"; 6983 6785 packageName = "internal-slot"; 6984 - version = "1.0.7"; 6786 + version = "1.1.0"; 6985 6787 src = fetchurl { 6986 - url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz"; 6987 - sha512 = "NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g=="; 6788 + url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz"; 6789 + sha512 = "4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw=="; 6988 6790 }; 6989 6791 }; 6990 6792 "invert-kv-1.0.0" = { ··· 7059 6861 sha512 = "YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA=="; 7060 6862 }; 7061 6863 }; 7062 - "is-arguments-1.1.1" = { 6864 + "is-arguments-1.2.0" = { 7063 6865 name = "is-arguments"; 7064 6866 packageName = "is-arguments"; 7065 - version = "1.1.1"; 6867 + version = "1.2.0"; 7066 6868 src = fetchurl { 7067 - url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz"; 7068 - sha512 = "8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA=="; 6869 + url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz"; 6870 + sha512 = "7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA=="; 7069 6871 }; 7070 6872 }; 7071 - "is-array-buffer-3.0.4" = { 6873 + "is-array-buffer-3.0.5" = { 7072 6874 name = "is-array-buffer"; 7073 6875 packageName = "is-array-buffer"; 7074 - version = "3.0.4"; 6876 + version = "3.0.5"; 7075 6877 src = fetchurl { 7076 - url = "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz"; 7077 - sha512 = "wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw=="; 6878 + url = "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz"; 6879 + sha512 = "DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A=="; 7078 6880 }; 7079 6881 }; 7080 6882 "is-arrayish-0.2.1" = { ··· 7095 6897 sha512 = "eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="; 7096 6898 }; 7097 6899 }; 7098 - "is-bigint-1.0.4" = { 6900 + "is-async-function-2.1.1" = { 6901 + name = "is-async-function"; 6902 + packageName = "is-async-function"; 6903 + version = "2.1.1"; 6904 + src = fetchurl { 6905 + url = "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz"; 6906 + sha512 = "9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ=="; 6907 + }; 6908 + }; 6909 + "is-bigint-1.1.0" = { 7099 6910 name = "is-bigint"; 7100 6911 packageName = "is-bigint"; 7101 - version = "1.0.4"; 6912 + version = "1.1.0"; 7102 6913 src = fetchurl { 7103 - url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz"; 7104 - sha512 = "zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg=="; 6914 + url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz"; 6915 + sha512 = "n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ=="; 7105 6916 }; 7106 6917 }; 7107 6918 "is-binary-path-1.0.1" = { ··· 7122 6933 sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 7123 6934 }; 7124 6935 }; 7125 - "is-boolean-object-1.1.2" = { 6936 + "is-boolean-object-1.2.2" = { 7126 6937 name = "is-boolean-object"; 7127 6938 packageName = "is-boolean-object"; 7128 - version = "1.1.2"; 6939 + version = "1.2.2"; 7129 6940 src = fetchurl { 7130 - url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; 7131 - sha512 = "gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA=="; 6941 + url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz"; 6942 + sha512 = "wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A=="; 7132 6943 }; 7133 6944 }; 7134 6945 "is-buffer-1.1.6" = { ··· 7158 6969 sha512 = "H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA=="; 7159 6970 }; 7160 6971 }; 7161 - "is-core-module-2.15.1" = { 6972 + "is-core-module-2.16.1" = { 7162 6973 name = "is-core-module"; 7163 6974 packageName = "is-core-module"; 7164 - version = "2.15.1"; 6975 + version = "2.16.1"; 7165 6976 src = fetchurl { 7166 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz"; 7167 - sha512 = "z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ=="; 6977 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz"; 6978 + sha512 = "UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w=="; 7168 6979 }; 7169 6980 }; 7170 6981 "is-data-descriptor-1.0.1" = { ··· 7176 6987 sha512 = "bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw=="; 7177 6988 }; 7178 6989 }; 7179 - "is-data-view-1.0.1" = { 6990 + "is-data-view-1.0.2" = { 7180 6991 name = "is-data-view"; 7181 6992 packageName = "is-data-view"; 7182 - version = "1.0.1"; 6993 + version = "1.0.2"; 7183 6994 src = fetchurl { 7184 - url = "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz"; 7185 - sha512 = "AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w=="; 6995 + url = "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz"; 6996 + sha512 = "RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw=="; 7186 6997 }; 7187 6998 }; 7188 - "is-date-object-1.0.5" = { 6999 + "is-date-object-1.1.0" = { 7189 7000 name = "is-date-object"; 7190 7001 packageName = "is-date-object"; 7191 - version = "1.0.5"; 7002 + version = "1.1.0"; 7192 7003 src = fetchurl { 7193 - url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz"; 7194 - sha512 = "9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ=="; 7004 + url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz"; 7005 + sha512 = "PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg=="; 7195 7006 }; 7196 7007 }; 7197 7008 "is-descriptor-0.1.7" = { ··· 7221 7032 sha512 = "yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw=="; 7222 7033 }; 7223 7034 }; 7224 - "is-docker-2.2.1" = { 7035 + "is-docker-3.0.0" = { 7225 7036 name = "is-docker"; 7226 7037 packageName = "is-docker"; 7227 - version = "2.2.1"; 7038 + version = "3.0.0"; 7228 7039 src = fetchurl { 7229 - url = "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz"; 7230 - sha512 = "F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ=="; 7040 + url = "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz"; 7041 + sha512 = "eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ=="; 7231 7042 }; 7232 7043 }; 7233 7044 "is-extendable-0.1.1" = { ··· 7257 7068 sha512 = "SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="; 7258 7069 }; 7259 7070 }; 7071 + "is-finalizationregistry-1.1.1" = { 7072 + name = "is-finalizationregistry"; 7073 + packageName = "is-finalizationregistry"; 7074 + version = "1.1.1"; 7075 + src = fetchurl { 7076 + url = "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz"; 7077 + sha512 = "1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg=="; 7078 + }; 7079 + }; 7260 7080 "is-fullwidth-code-point-1.0.0" = { 7261 7081 name = "is-fullwidth-code-point"; 7262 7082 packageName = "is-fullwidth-code-point"; ··· 7282 7102 src = fetchurl { 7283 7103 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"; 7284 7104 sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; 7105 + }; 7106 + }; 7107 + "is-generator-function-1.1.0" = { 7108 + name = "is-generator-function"; 7109 + packageName = "is-generator-function"; 7110 + version = "1.1.0"; 7111 + src = fetchurl { 7112 + url = "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz"; 7113 + sha512 = "nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ=="; 7285 7114 }; 7286 7115 }; 7287 7116 "is-glob-3.1.0" = { ··· 7302 7131 sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="; 7303 7132 }; 7304 7133 }; 7305 - "is-interactive-1.0.0" = { 7306 - name = "is-interactive"; 7307 - packageName = "is-interactive"; 7134 + "is-inside-container-1.0.0" = { 7135 + name = "is-inside-container"; 7136 + packageName = "is-inside-container"; 7308 7137 version = "1.0.0"; 7309 7138 src = fetchurl { 7310 - url = "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz"; 7311 - sha512 = "2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w=="; 7139 + url = "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz"; 7140 + sha512 = "KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA=="; 7312 7141 }; 7313 7142 }; 7314 - "is-lambda-1.0.1" = { 7315 - name = "is-lambda"; 7316 - packageName = "is-lambda"; 7317 - version = "1.0.1"; 7318 - src = fetchurl { 7319 - url = "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz"; 7320 - sha512 = "z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ=="; 7321 - }; 7322 - }; 7323 - "is-negative-zero-2.0.3" = { 7324 - name = "is-negative-zero"; 7325 - packageName = "is-negative-zero"; 7143 + "is-map-2.0.3" = { 7144 + name = "is-map"; 7145 + packageName = "is-map"; 7326 7146 version = "2.0.3"; 7327 7147 src = fetchurl { 7328 - url = "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz"; 7329 - sha512 = "5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw=="; 7148 + url = "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz"; 7149 + sha512 = "1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw=="; 7330 7150 }; 7331 7151 }; 7332 7152 "is-number-3.0.0" = { ··· 7347 7167 sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 7348 7168 }; 7349 7169 }; 7350 - "is-number-object-1.0.7" = { 7170 + "is-number-object-1.1.1" = { 7351 7171 name = "is-number-object"; 7352 7172 packageName = "is-number-object"; 7353 - version = "1.0.7"; 7173 + version = "1.1.1"; 7354 7174 src = fetchurl { 7355 - url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz"; 7356 - sha512 = "k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ=="; 7175 + url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz"; 7176 + sha512 = "lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw=="; 7357 7177 }; 7358 7178 }; 7359 7179 "is-obj-1.0.1" = { ··· 7428 7248 sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="; 7429 7249 }; 7430 7250 }; 7431 - "is-regex-1.1.4" = { 7251 + "is-regex-1.2.1" = { 7432 7252 name = "is-regex"; 7433 7253 packageName = "is-regex"; 7434 - version = "1.1.4"; 7254 + version = "1.2.1"; 7435 7255 src = fetchurl { 7436 - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"; 7437 - sha512 = "kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="; 7256 + url = "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz"; 7257 + sha512 = "MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="; 7438 7258 }; 7439 7259 }; 7440 7260 "is-regexp-1.0.0" = { ··· 7464 7284 sha512 = "F/pJIk8QD6OX5DNhRB7hWamLsUilmkDGho48KbgZ6xg/lmAZXHxzXQ91jzB3yRSw5kdQGGGc4yz8HYhTYIMWPg=="; 7465 7285 }; 7466 7286 }; 7467 - "is-shared-array-buffer-1.0.3" = { 7287 + "is-set-2.0.3" = { 7288 + name = "is-set"; 7289 + packageName = "is-set"; 7290 + version = "2.0.3"; 7291 + src = fetchurl { 7292 + url = "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz"; 7293 + sha512 = "iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg=="; 7294 + }; 7295 + }; 7296 + "is-shared-array-buffer-1.0.4" = { 7468 7297 name = "is-shared-array-buffer"; 7469 7298 packageName = "is-shared-array-buffer"; 7470 - version = "1.0.3"; 7299 + version = "1.0.4"; 7471 7300 src = fetchurl { 7472 - url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz"; 7473 - sha512 = "nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg=="; 7301 + url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz"; 7302 + sha512 = "ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A=="; 7474 7303 }; 7475 7304 }; 7476 7305 "is-stream-1.1.0" = { ··· 7491 7320 sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="; 7492 7321 }; 7493 7322 }; 7494 - "is-string-1.0.7" = { 7323 + "is-string-1.1.1" = { 7495 7324 name = "is-string"; 7496 7325 packageName = "is-string"; 7497 - version = "1.0.7"; 7326 + version = "1.1.1"; 7498 7327 src = fetchurl { 7499 - url = "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"; 7500 - sha512 = "tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="; 7328 + url = "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz"; 7329 + sha512 = "BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA=="; 7501 7330 }; 7502 7331 }; 7503 - "is-symbol-1.0.4" = { 7332 + "is-symbol-1.1.1" = { 7504 7333 name = "is-symbol"; 7505 7334 packageName = "is-symbol"; 7506 - version = "1.0.4"; 7335 + version = "1.1.1"; 7507 7336 src = fetchurl { 7508 - url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"; 7509 - sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; 7337 + url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz"; 7338 + sha512 = "9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w=="; 7510 7339 }; 7511 7340 }; 7512 - "is-typed-array-1.1.13" = { 7341 + "is-typed-array-1.1.15" = { 7513 7342 name = "is-typed-array"; 7514 7343 packageName = "is-typed-array"; 7515 - version = "1.1.13"; 7344 + version = "1.1.15"; 7516 7345 src = fetchurl { 7517 - url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz"; 7518 - sha512 = "uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw=="; 7346 + url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz"; 7347 + sha512 = "p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ=="; 7519 7348 }; 7520 7349 }; 7521 7350 "is-typedarray-1.0.0" = { ··· 7527 7356 sha512 = "cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="; 7528 7357 }; 7529 7358 }; 7530 - "is-unicode-supported-0.1.0" = { 7531 - name = "is-unicode-supported"; 7532 - packageName = "is-unicode-supported"; 7533 - version = "0.1.0"; 7534 - src = fetchurl { 7535 - url = "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz"; 7536 - sha512 = "knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw=="; 7537 - }; 7538 - }; 7539 7359 "is-utf8-0.2.1" = { 7540 7360 name = "is-utf8"; 7541 7361 packageName = "is-utf8"; ··· 7554 7374 sha512 = "ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg=="; 7555 7375 }; 7556 7376 }; 7557 - "is-weakref-1.0.2" = { 7377 + "is-weakmap-2.0.2" = { 7378 + name = "is-weakmap"; 7379 + packageName = "is-weakmap"; 7380 + version = "2.0.2"; 7381 + src = fetchurl { 7382 + url = "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz"; 7383 + sha512 = "K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w=="; 7384 + }; 7385 + }; 7386 + "is-weakref-1.1.1" = { 7558 7387 name = "is-weakref"; 7559 7388 packageName = "is-weakref"; 7560 - version = "1.0.2"; 7389 + version = "1.1.1"; 7561 7390 src = fetchurl { 7562 - url = "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"; 7563 - sha512 = "qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="; 7391 + url = "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz"; 7392 + sha512 = "6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew=="; 7393 + }; 7394 + }; 7395 + "is-weakset-2.0.4" = { 7396 + name = "is-weakset"; 7397 + packageName = "is-weakset"; 7398 + version = "2.0.4"; 7399 + src = fetchurl { 7400 + url = "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz"; 7401 + sha512 = "mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ=="; 7564 7402 }; 7565 7403 }; 7566 7404 "is-what-3.14.1" = { ··· 7590 7428 sha512 = "gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw=="; 7591 7429 }; 7592 7430 }; 7593 - "is-wsl-2.2.0" = { 7431 + "is-wsl-3.1.0" = { 7594 7432 name = "is-wsl"; 7595 7433 packageName = "is-wsl"; 7596 - version = "2.2.0"; 7434 + version = "3.1.0"; 7597 7435 src = fetchurl { 7598 - url = "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz"; 7599 - sha512 = "fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="; 7436 + url = "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz"; 7437 + sha512 = "UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw=="; 7600 7438 }; 7601 7439 }; 7602 7440 "isarray-1.0.0" = { ··· 7680 7518 sha512 = "OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw=="; 7681 7519 }; 7682 7520 }; 7521 + "jackspeak-4.0.3" = { 7522 + name = "jackspeak"; 7523 + packageName = "jackspeak"; 7524 + version = "4.0.3"; 7525 + src = fetchurl { 7526 + url = "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.3.tgz"; 7527 + sha512 = "oSwM7q8PTHQWuZAlp995iPpPJ4Vkl7qT0ZRD+9duL9j2oBy6KcTfyxc8mEuHJYC+z/kbps80aJLkaNzTOrf/kw=="; 7528 + }; 7529 + }; 7683 7530 "jest-diff-27.5.1" = { 7684 7531 name = "jest-diff"; 7685 7532 packageName = "jest-diff"; ··· 7707 7554 sha512 = "z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw=="; 7708 7555 }; 7709 7556 }; 7557 + "jiti-2.4.2" = { 7558 + name = "jiti"; 7559 + packageName = "jiti"; 7560 + version = "2.4.2"; 7561 + src = fetchurl { 7562 + url = "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz"; 7563 + sha512 = "rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A=="; 7564 + }; 7565 + }; 7710 7566 "js-tokens-4.0.0" = { 7711 7567 name = "js-tokens"; 7712 7568 packageName = "js-tokens"; ··· 7743 7599 sha512 = "4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A=="; 7744 7600 }; 7745 7601 }; 7746 - "jsesc-0.5.0" = { 7747 - name = "jsesc"; 7748 - packageName = "jsesc"; 7749 - version = "0.5.0"; 7750 - src = fetchurl { 7751 - url = "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"; 7752 - sha512 = "uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA=="; 7753 - }; 7754 - }; 7755 - "jsesc-2.5.2" = { 7756 - name = "jsesc"; 7757 - packageName = "jsesc"; 7758 - version = "2.5.2"; 7759 - src = fetchurl { 7760 - url = "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"; 7761 - sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; 7762 - }; 7763 - }; 7764 7602 "jsesc-3.0.2" = { 7765 7603 name = "jsesc"; 7766 7604 packageName = "jsesc"; ··· 7770 7608 sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; 7771 7609 }; 7772 7610 }; 7773 - "json-buffer-3.0.0" = { 7774 - name = "json-buffer"; 7775 - packageName = "json-buffer"; 7776 - version = "3.0.0"; 7611 + "jsesc-3.1.0" = { 7612 + name = "jsesc"; 7613 + packageName = "jsesc"; 7614 + version = "3.1.0"; 7777 7615 src = fetchurl { 7778 - url = "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz"; 7779 - sha512 = "CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ=="; 7616 + url = "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz"; 7617 + sha512 = "/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="; 7780 7618 }; 7781 7619 }; 7782 7620 "json-buffer-3.0.1" = { ··· 7833 7671 sha512 = "NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="; 7834 7672 }; 7835 7673 }; 7836 - "json-stable-stringify-1.1.1" = { 7674 + "json-stable-stringify-1.2.1" = { 7837 7675 name = "json-stable-stringify"; 7838 7676 packageName = "json-stable-stringify"; 7839 - version = "1.1.1"; 7677 + version = "1.2.1"; 7840 7678 src = fetchurl { 7841 - url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz"; 7842 - sha512 = "SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg=="; 7679 + url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.2.1.tgz"; 7680 + sha512 = "Lp6HbbBgosLmJbjx0pBLbgvx68FaFU1sdkmBuckmhhJ88kL13OA51CDtR2yJB50eCNMH9wRqtQNNiAqQH4YXnA=="; 7843 7681 }; 7844 7682 }; 7845 7683 "json-stringify-safe-5.0.1" = { ··· 7932 7770 sha512 = "P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw=="; 7933 7771 }; 7934 7772 }; 7935 - "keyv-3.1.0" = { 7936 - name = "keyv"; 7937 - packageName = "keyv"; 7938 - version = "3.1.0"; 7939 - src = fetchurl { 7940 - url = "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz"; 7941 - sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 7942 - }; 7943 - }; 7944 7773 "keyv-4.5.4" = { 7945 7774 name = "keyv"; 7946 7775 packageName = "keyv"; ··· 7995 7824 sha512 = "kuInGWCNc98b1ghOqBJfqPOvAKn9HHgm+SdluR5VNfdA7rs7uNsuXGy7CCqsP6pFKPpUoCH4s9o00GEj9xONHg=="; 7996 7825 }; 7997 7826 }; 7998 - "kleur-3.0.3" = { 7999 - name = "kleur"; 8000 - packageName = "kleur"; 8001 - version = "3.0.3"; 8002 - src = fetchurl { 8003 - url = "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz"; 8004 - sha512 = "eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="; 8005 - }; 8006 - }; 8007 7827 "kleur-4.1.5" = { 8008 7828 name = "kleur"; 8009 7829 packageName = "kleur"; ··· 8022 7842 sha512 = "dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA=="; 8023 7843 }; 8024 7844 }; 7845 + "ky-1.7.5" = { 7846 + name = "ky"; 7847 + packageName = "ky"; 7848 + version = "1.7.5"; 7849 + src = fetchurl { 7850 + url = "https://registry.npmjs.org/ky/-/ky-1.7.5.tgz"; 7851 + sha512 = "HzhziW6sc5m0pwi5M196+7cEBtbt0lCYi67wNsiwMUmz833wloE0gbzJPWKs1gliFKQb34huItDQX97LyOdPdA=="; 7852 + }; 7853 + }; 8025 7854 "last-call-webpack-plugin-3.0.0" = { 8026 7855 name = "last-call-webpack-plugin"; 8027 7856 packageName = "last-call-webpack-plugin"; ··· 8031 7860 sha512 = "7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w=="; 8032 7861 }; 8033 7862 }; 8034 - "latest-version-5.1.0" = { 7863 + "latest-version-9.0.0" = { 8035 7864 name = "latest-version"; 8036 7865 packageName = "latest-version"; 8037 - version = "5.1.0"; 7866 + version = "9.0.0"; 8038 7867 src = fetchurl { 8039 - url = "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz"; 8040 - sha512 = "weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA=="; 8041 - }; 8042 - }; 8043 - "launch-editor-2.6.1" = { 8044 - name = "launch-editor"; 8045 - packageName = "launch-editor"; 8046 - version = "2.6.1"; 8047 - src = fetchurl { 8048 - url = "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz"; 8049 - sha512 = "eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw=="; 7868 + url = "https://registry.npmjs.org/latest-version/-/latest-version-9.0.0.tgz"; 7869 + sha512 = "7W0vV3rqv5tokqkBAFV1LbR7HPOWzXQDpDgEuib/aJ1jsZZx6x3c2mBI+TJhJzOhkGeaLbCKEHXEXLfirtG2JA=="; 8050 7870 }; 8051 7871 }; 8052 7872 "lcid-1.0.0" = { ··· 8058 7878 sha512 = "YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw=="; 8059 7879 }; 8060 7880 }; 8061 - "less-4.2.0" = { 7881 + "less-4.2.2" = { 8062 7882 name = "less"; 8063 7883 packageName = "less"; 8064 - version = "4.2.0"; 7884 + version = "4.2.2"; 8065 7885 src = fetchurl { 8066 - url = "https://registry.npmjs.org/less/-/less-4.2.0.tgz"; 8067 - sha512 = "P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA=="; 7886 + url = "https://registry.npmjs.org/less/-/less-4.2.2.tgz"; 7887 + sha512 = "tkuLHQlvWUTeQ3doAqnHbNn8T6WX1KA8yvbKG9x4VtKtIjHsVKQZCH11zRgAfbDAXC2UNIg/K9BYAAcEzUIrNg=="; 8068 7888 }; 8069 7889 }; 8070 - "lightningcss-1.27.0" = { 7890 + "lightningcss-1.29.1" = { 8071 7891 name = "lightningcss"; 8072 7892 packageName = "lightningcss"; 8073 - version = "1.27.0"; 7893 + version = "1.29.1"; 8074 7894 src = fetchurl { 8075 - url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.27.0.tgz"; 8076 - sha512 = "8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ=="; 7895 + url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.29.1.tgz"; 7896 + sha512 = "FmGoeD4S05ewj+AkhTY+D+myDvXI6eL27FjHIjoyUkO/uw7WZD1fBVs0QxeYWa7E17CUHJaYX/RUGISCtcrG4Q=="; 8077 7897 }; 8078 7898 }; 8079 7899 "lines-and-columns-1.2.4" = { ··· 8229 8049 sha512 = "xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ=="; 8230 8050 }; 8231 8051 }; 8232 - "log-symbols-4.1.0" = { 8233 - name = "log-symbols"; 8234 - packageName = "log-symbols"; 8235 - version = "4.1.0"; 8236 - src = fetchurl { 8237 - url = "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz"; 8238 - sha512 = "8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg=="; 8239 - }; 8240 - }; 8241 8052 "loglevel-1.9.2" = { 8242 8053 name = "loglevel"; 8243 8054 packageName = "loglevel"; ··· 8256 8067 sha512 = "7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg=="; 8257 8068 }; 8258 8069 }; 8259 - "lowercase-keys-1.0.1" = { 8260 - name = "lowercase-keys"; 8261 - packageName = "lowercase-keys"; 8262 - version = "1.0.1"; 8263 - src = fetchurl { 8264 - url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz"; 8265 - sha512 = "G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA=="; 8266 - }; 8267 - }; 8268 8070 "lowercase-keys-2.0.0" = { 8269 8071 name = "lowercase-keys"; 8270 8072 packageName = "lowercase-keys"; ··· 8281 8083 src = fetchurl { 8282 8084 url = "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz"; 8283 8085 sha512 = "JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="; 8086 + }; 8087 + }; 8088 + "lru-cache-11.0.2" = { 8089 + name = "lru-cache"; 8090 + packageName = "lru-cache"; 8091 + version = "11.0.2"; 8092 + src = fetchurl { 8093 + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.2.tgz"; 8094 + sha512 = "123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA=="; 8284 8095 }; 8285 8096 }; 8286 8097 "lru-cache-4.1.5" = { ··· 8328 8139 sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 8329 8140 }; 8330 8141 }; 8331 - "make-fetch-happen-13.0.1" = { 8142 + "make-fetch-happen-14.0.3" = { 8332 8143 name = "make-fetch-happen"; 8333 8144 packageName = "make-fetch-happen"; 8334 - version = "13.0.1"; 8145 + version = "14.0.3"; 8335 8146 src = fetchurl { 8336 - url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz"; 8337 - sha512 = "cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA=="; 8147 + url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz"; 8148 + sha512 = "QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ=="; 8338 8149 }; 8339 8150 }; 8340 8151 "map-cache-0.2.2" = { ··· 8353 8164 src = fetchurl { 8354 8165 url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"; 8355 8166 sha512 = "4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w=="; 8167 + }; 8168 + }; 8169 + "math-intrinsics-1.1.0" = { 8170 + name = "math-intrinsics"; 8171 + packageName = "math-intrinsics"; 8172 + version = "1.1.0"; 8173 + src = fetchurl { 8174 + url = "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz"; 8175 + sha512 = "/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="; 8356 8176 }; 8357 8177 }; 8358 8178 "md5-2.3.0" = { ··· 8400 8220 sha512 = "dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="; 8401 8221 }; 8402 8222 }; 8403 - "memfs-4.12.0" = { 8223 + "memfs-4.17.0" = { 8404 8224 name = "memfs"; 8405 8225 packageName = "memfs"; 8406 - version = "4.12.0"; 8226 + version = "4.17.0"; 8407 8227 src = fetchurl { 8408 - url = "https://registry.npmjs.org/memfs/-/memfs-4.12.0.tgz"; 8409 - sha512 = "74wDsex5tQDSClVkeK1vtxqYCAgCoXxx+K4NSHzgU/muYVYByFqa+0RnrPO9NM6naWm1+G9JmZ0p6QHhXmeYfA=="; 8228 + url = "https://registry.npmjs.org/memfs/-/memfs-4.17.0.tgz"; 8229 + sha512 = "4eirfZ7thblFmqFjywlTmuWVSvccHAJbn1r8qQLzmTO11qcqpohOjmY2mFce6x7x7WtskzRqApPD0hv+Oa74jg=="; 8410 8230 }; 8411 8231 }; 8412 8232 "memory-fs-0.4.1" = { ··· 8580 8400 sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="; 8581 8401 }; 8582 8402 }; 8403 + "mimic-function-5.0.1" = { 8404 + name = "mimic-function"; 8405 + packageName = "mimic-function"; 8406 + version = "5.0.1"; 8407 + src = fetchurl { 8408 + url = "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz"; 8409 + sha512 = "VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA=="; 8410 + }; 8411 + }; 8583 8412 "mimic-response-1.0.1" = { 8584 8413 name = "mimic-response"; 8585 8414 packageName = "mimic-response"; ··· 8598 8427 sha512 = "wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA=="; 8599 8428 }; 8600 8429 }; 8601 - "mimic-response-3.1.0" = { 8602 - name = "mimic-response"; 8603 - packageName = "mimic-response"; 8604 - version = "3.1.0"; 8605 - src = fetchurl { 8606 - url = "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz"; 8607 - sha512 = "z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="; 8608 - }; 8609 - }; 8610 8430 "mini-css-extract-plugin-0.12.0" = { 8611 8431 name = "mini-css-extract-plugin"; 8612 8432 packageName = "mini-css-extract-plugin"; ··· 8634 8454 sha512 = "JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg=="; 8635 8455 }; 8636 8456 }; 8637 - "minimatch-3.0.4" = { 8457 + "minimatch-10.0.1" = { 8638 8458 name = "minimatch"; 8639 8459 packageName = "minimatch"; 8640 - version = "3.0.4"; 8460 + version = "10.0.1"; 8641 8461 src = fetchurl { 8642 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; 8643 - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 8462 + url = "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz"; 8463 + sha512 = "ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ=="; 8644 8464 }; 8645 8465 }; 8646 - "minimatch-3.0.8" = { 8466 + "minimatch-3.0.4" = { 8647 8467 name = "minimatch"; 8648 8468 packageName = "minimatch"; 8649 - version = "3.0.8"; 8469 + version = "3.0.4"; 8650 8470 src = fetchurl { 8651 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz"; 8652 - sha512 = "6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q=="; 8471 + url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; 8472 + sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 8653 8473 }; 8654 8474 }; 8655 8475 "minimatch-3.1.2" = { ··· 8659 8479 src = fetchurl { 8660 8480 url = "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"; 8661 8481 sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 8662 - }; 8663 - }; 8664 - "minimatch-5.1.6" = { 8665 - name = "minimatch"; 8666 - packageName = "minimatch"; 8667 - version = "5.1.6"; 8668 - src = fetchurl { 8669 - url = "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz"; 8670 - sha512 = "lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g=="; 8671 8482 }; 8672 8483 }; 8673 8484 "minimatch-9.0.5" = { ··· 8751 8562 sha512 = "D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw=="; 8752 8563 }; 8753 8564 }; 8754 - "minipass-fetch-3.0.5" = { 8565 + "minipass-fetch-4.0.0" = { 8755 8566 name = "minipass-fetch"; 8756 8567 packageName = "minipass-fetch"; 8757 - version = "3.0.5"; 8568 + version = "4.0.0"; 8758 8569 src = fetchurl { 8759 - url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.5.tgz"; 8760 - sha512 = "2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg=="; 8570 + url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-4.0.0.tgz"; 8571 + sha512 = "2v6aXUXwLP1Epd/gc32HAMIWoczx+fZwEPRHm/VwtrJzRGwR1qGZXEYV3Zp8ZjjbwaZhMrM6uHV4KVkk+XCc2w=="; 8761 8572 }; 8762 8573 }; 8763 8574 "minipass-flush-1.0.5" = { ··· 8803 8614 src = fetchurl { 8804 8615 url = "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz"; 8805 8616 sha512 = "bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg=="; 8617 + }; 8618 + }; 8619 + "minizlib-3.0.1" = { 8620 + name = "minizlib"; 8621 + packageName = "minizlib"; 8622 + version = "3.0.1"; 8623 + src = fetchurl { 8624 + url = "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz"; 8625 + sha512 = "umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg=="; 8806 8626 }; 8807 8627 }; 8808 8628 "mississippi-2.0.0" = { ··· 8967 8787 sha512 = "nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="; 8968 8788 }; 8969 8789 }; 8970 - "nan-2.20.0" = { 8790 + "nan-2.22.0" = { 8971 8791 name = "nan"; 8972 8792 packageName = "nan"; 8973 - version = "2.20.0"; 8793 + version = "2.22.0"; 8974 8794 src = fetchurl { 8975 - url = "https://registry.npmjs.org/nan/-/nan-2.20.0.tgz"; 8976 - sha512 = "bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw=="; 8795 + url = "https://registry.npmjs.org/nan/-/nan-2.22.0.tgz"; 8796 + sha512 = "nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw=="; 8977 8797 }; 8978 8798 }; 8979 - "nanoid-3.3.7" = { 8799 + "nanoid-3.3.8" = { 8980 8800 name = "nanoid"; 8981 8801 packageName = "nanoid"; 8982 - version = "3.3.7"; 8802 + version = "3.3.8"; 8983 8803 src = fetchurl { 8984 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz"; 8985 - sha512 = "eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g=="; 8804 + url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz"; 8805 + sha512 = "WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w=="; 8986 8806 }; 8987 8807 }; 8988 8808 "nanomatch-1.2.13" = { ··· 9021 8841 sha512 = "+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="; 9022 8842 }; 9023 8843 }; 8844 + "negotiator-0.6.4" = { 8845 + name = "negotiator"; 8846 + packageName = "negotiator"; 8847 + version = "0.6.4"; 8848 + src = fetchurl { 8849 + url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz"; 8850 + sha512 = "myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w=="; 8851 + }; 8852 + }; 8853 + "negotiator-1.0.0" = { 8854 + name = "negotiator"; 8855 + packageName = "negotiator"; 8856 + version = "1.0.0"; 8857 + src = fetchurl { 8858 + url = "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz"; 8859 + sha512 = "8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg=="; 8860 + }; 8861 + }; 9024 8862 "neo-async-2.6.2" = { 9025 8863 name = "neo-async"; 9026 8864 packageName = "neo-async"; ··· 9102 8940 sha512 = "PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA=="; 9103 8941 }; 9104 8942 }; 9105 - "node-gyp-build-4.8.2" = { 8943 + "node-gyp-build-4.8.4" = { 9106 8944 name = "node-gyp-build"; 9107 8945 packageName = "node-gyp-build"; 9108 - version = "4.8.2"; 8946 + version = "4.8.4"; 9109 8947 src = fetchurl { 9110 - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz"; 9111 - sha512 = "IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw=="; 8948 + url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz"; 8949 + sha512 = "LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ=="; 9112 8950 }; 9113 8951 }; 9114 8952 "node-libs-browser-2.2.1" = { ··· 9129 8967 sha512 = "rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ=="; 9130 8968 }; 9131 8969 }; 9132 - "node-releases-2.0.18" = { 8970 + "node-releases-2.0.19" = { 9133 8971 name = "node-releases"; 9134 8972 packageName = "node-releases"; 9135 - version = "2.0.18"; 8973 + version = "2.0.19"; 9136 8974 src = fetchurl { 9137 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz"; 9138 - sha512 = "d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g=="; 8975 + url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz"; 8976 + sha512 = "xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw=="; 9139 8977 }; 9140 8978 }; 9141 8979 "node-watch-0.5.5" = { ··· 9201 9039 sha512 = "U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg=="; 9202 9040 }; 9203 9041 }; 9204 - "normalize-url-4.5.1" = { 9205 - name = "normalize-url"; 9206 - packageName = "normalize-url"; 9207 - version = "4.5.1"; 9208 - src = fetchurl { 9209 - url = "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz"; 9210 - sha512 = "9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA=="; 9211 - }; 9212 - }; 9213 9042 "normalize-url-6.1.0" = { 9214 9043 name = "normalize-url"; 9215 9044 packageName = "normalize-url"; ··· 9300 9129 sha512 = "79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ=="; 9301 9130 }; 9302 9131 }; 9303 - "object-inspect-1.13.2" = { 9132 + "object-inspect-1.13.4" = { 9304 9133 name = "object-inspect"; 9305 9134 packageName = "object-inspect"; 9306 - version = "1.13.2"; 9135 + version = "1.13.4"; 9307 9136 src = fetchurl { 9308 - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz"; 9309 - sha512 = "IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g=="; 9137 + url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz"; 9138 + sha512 = "W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="; 9310 9139 }; 9311 9140 }; 9312 9141 "object-is-1.1.6" = { ··· 9336 9165 sha512 = "GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA=="; 9337 9166 }; 9338 9167 }; 9339 - "object.assign-4.1.5" = { 9168 + "object.assign-4.1.7" = { 9340 9169 name = "object.assign"; 9341 9170 packageName = "object.assign"; 9342 - version = "4.1.5"; 9171 + version = "4.1.7"; 9343 9172 src = fetchurl { 9344 - url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz"; 9345 - sha512 = "byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ=="; 9173 + url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz"; 9174 + sha512 = "nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw=="; 9346 9175 }; 9347 9176 }; 9348 9177 "object.entries-1.1.8" = { ··· 9372 9201 sha512 = "tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ=="; 9373 9202 }; 9374 9203 }; 9375 - "object.values-1.2.0" = { 9204 + "object.values-1.2.1" = { 9376 9205 name = "object.values"; 9377 9206 packageName = "object.values"; 9378 - version = "1.2.0"; 9207 + version = "1.2.1"; 9379 9208 src = fetchurl { 9380 - url = "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz"; 9381 - sha512 = "yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ=="; 9209 + url = "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz"; 9210 + sha512 = "gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA=="; 9382 9211 }; 9383 9212 }; 9384 9213 "obuf-1.1.2" = { ··· 9444 9273 sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; 9445 9274 }; 9446 9275 }; 9447 - "open-6.4.0" = { 9276 + "onetime-7.0.0" = { 9277 + name = "onetime"; 9278 + packageName = "onetime"; 9279 + version = "7.0.0"; 9280 + src = fetchurl { 9281 + url = "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz"; 9282 + sha512 = "VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ=="; 9283 + }; 9284 + }; 9285 + "open-10.1.0" = { 9448 9286 name = "open"; 9449 9287 packageName = "open"; 9450 - version = "6.4.0"; 9288 + version = "10.1.0"; 9451 9289 src = fetchurl { 9452 - url = "https://registry.npmjs.org/open/-/open-6.4.0.tgz"; 9453 - sha512 = "IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg=="; 9290 + url = "https://registry.npmjs.org/open/-/open-10.1.0.tgz"; 9291 + sha512 = "mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw=="; 9454 9292 }; 9455 9293 }; 9456 - "open-7.4.2" = { 9294 + "open-6.4.0" = { 9457 9295 name = "open"; 9458 9296 packageName = "open"; 9459 - version = "7.4.2"; 9297 + version = "6.4.0"; 9460 9298 src = fetchurl { 9461 - url = "https://registry.npmjs.org/open/-/open-7.4.2.tgz"; 9462 - sha512 = "MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q=="; 9299 + url = "https://registry.npmjs.org/open/-/open-6.4.0.tgz"; 9300 + sha512 = "IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg=="; 9463 9301 }; 9464 9302 }; 9465 9303 "opn-5.4.0" = { ··· 9498 9336 sha512 = "bOj3L1ypm++N+n7CEbbe473A414AB7z+amKYshRb//iuL3MpdDCLhPnw6aVTdKB9g5ZRVHIEp8eUln6L2NUStg=="; 9499 9337 }; 9500 9338 }; 9501 - "ora-5.4.1" = { 9502 - name = "ora"; 9503 - packageName = "ora"; 9504 - version = "5.4.1"; 9505 - src = fetchurl { 9506 - url = "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz"; 9507 - sha512 = "5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ=="; 9508 - }; 9509 - }; 9510 9339 "original-1.0.2" = { 9511 9340 name = "original"; 9512 9341 packageName = "original"; ··· 9552 9381 sha512 = "D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g=="; 9553 9382 }; 9554 9383 }; 9555 - "p-cancelable-1.1.0" = { 9556 - name = "p-cancelable"; 9557 - packageName = "p-cancelable"; 9558 - version = "1.1.0"; 9384 + "own-keys-1.0.1" = { 9385 + name = "own-keys"; 9386 + packageName = "own-keys"; 9387 + version = "1.0.1"; 9559 9388 src = fetchurl { 9560 - url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz"; 9561 - sha512 = "s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw=="; 9389 + url = "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz"; 9390 + sha512 = "qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg=="; 9562 9391 }; 9563 9392 }; 9564 9393 "p-cancelable-2.1.1" = { ··· 9642 9471 sha512 = "y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw=="; 9643 9472 }; 9644 9473 }; 9645 - "p-map-4.0.0" = { 9474 + "p-map-7.0.3" = { 9646 9475 name = "p-map"; 9647 9476 packageName = "p-map"; 9648 - version = "4.0.0"; 9477 + version = "7.0.3"; 9649 9478 src = fetchurl { 9650 - url = "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz"; 9651 - sha512 = "/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ=="; 9479 + url = "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz"; 9480 + sha512 = "VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA=="; 9652 9481 }; 9653 9482 }; 9654 9483 "p-retry-3.0.1" = { ··· 9687 9516 sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 9688 9517 }; 9689 9518 }; 9690 - "package-json-6.5.0" = { 9519 + "package-json-10.0.1" = { 9691 9520 name = "package-json"; 9692 9521 packageName = "package-json"; 9693 - version = "6.5.0"; 9522 + version = "10.0.1"; 9694 9523 src = fetchurl { 9695 - url = "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz"; 9696 - sha512 = "k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ=="; 9524 + url = "https://registry.npmjs.org/package-json/-/package-json-10.0.1.tgz"; 9525 + sha512 = "ua1L4OgXSBdsu1FPb7F3tYH0F48a6kxvod4pLUlGY9COeJAJQNX/sNH2IiEmsxw7lqYiAwrdHMjz1FctOsyDQg=="; 9697 9526 }; 9698 9527 }; 9699 9528 "package-json-from-dist-1.0.1" = { ··· 9930 9759 sha512 = "Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA=="; 9931 9760 }; 9932 9761 }; 9933 - "path-to-regexp-0.1.10" = { 9762 + "path-scurry-2.0.0" = { 9763 + name = "path-scurry"; 9764 + packageName = "path-scurry"; 9765 + version = "2.0.0"; 9766 + src = fetchurl { 9767 + url = "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz"; 9768 + sha512 = "ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg=="; 9769 + }; 9770 + }; 9771 + "path-to-regexp-0.1.12" = { 9934 9772 name = "path-to-regexp"; 9935 9773 packageName = "path-to-regexp"; 9936 - version = "0.1.10"; 9774 + version = "0.1.12"; 9937 9775 src = fetchurl { 9938 - url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz"; 9939 - sha512 = "7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w=="; 9776 + url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz"; 9777 + sha512 = "RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ=="; 9940 9778 }; 9941 9779 }; 9942 9780 "path-to-regexp-0.1.7" = { ··· 10020 9858 sha512 = "cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA=="; 10021 9859 }; 10022 9860 }; 10023 - "picocolors-1.1.0" = { 9861 + "picocolors-1.1.1" = { 10024 9862 name = "picocolors"; 10025 9863 packageName = "picocolors"; 10026 - version = "1.1.0"; 9864 + version = "1.1.1"; 10027 9865 src = fetchurl { 10028 - url = "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz"; 10029 - sha512 = "TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw=="; 9866 + url = "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz"; 9867 + sha512 = "xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="; 10030 9868 }; 10031 9869 }; 10032 9870 "picomatch-2.3.1" = { ··· 10164 10002 sha512 = "xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg=="; 10165 10003 }; 10166 10004 }; 10167 - "possible-typed-array-names-1.0.0" = { 10005 + "possible-typed-array-names-1.1.0" = { 10168 10006 name = "possible-typed-array-names"; 10169 10007 packageName = "possible-typed-array-names"; 10170 - version = "1.0.0"; 10008 + version = "1.1.0"; 10171 10009 src = fetchurl { 10172 - url = "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz"; 10173 - sha512 = "d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q=="; 10010 + url = "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz"; 10011 + sha512 = "/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg=="; 10174 10012 }; 10175 10013 }; 10176 10014 "postcss-7.0.39" = { ··· 10182 10020 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 10183 10021 }; 10184 10022 }; 10185 - "postcss-8.4.47" = { 10023 + "postcss-8.5.2" = { 10186 10024 name = "postcss"; 10187 10025 packageName = "postcss"; 10188 - version = "8.4.47"; 10026 + version = "8.5.2"; 10189 10027 src = fetchurl { 10190 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz"; 10191 - sha512 = "56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ=="; 10028 + url = "https://registry.npmjs.org/postcss/-/postcss-8.5.2.tgz"; 10029 + sha512 = "MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA=="; 10192 10030 }; 10193 10031 }; 10194 10032 "postcss-calc-7.0.5" = { ··· 10542 10380 sha512 = "PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg=="; 10543 10381 }; 10544 10382 }; 10545 - "prepend-http-2.0.0" = { 10546 - name = "prepend-http"; 10547 - packageName = "prepend-http"; 10548 - version = "2.0.0"; 10549 - src = fetchurl { 10550 - url = "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz"; 10551 - sha512 = "ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA=="; 10552 - }; 10553 - }; 10554 10383 "pretty-bytes-5.6.0" = { 10555 10384 name = "pretty-bytes"; 10556 10385 packageName = "pretty-bytes"; ··· 10578 10407 sha512 = "Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ=="; 10579 10408 }; 10580 10409 }; 10581 - "proc-log-4.2.0" = { 10410 + "proc-log-5.0.0" = { 10582 10411 name = "proc-log"; 10583 10412 packageName = "proc-log"; 10584 - version = "4.2.0"; 10413 + version = "5.0.0"; 10585 10414 src = fetchurl { 10586 - url = "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz"; 10587 - sha512 = "g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA=="; 10415 + url = "https://registry.npmjs.org/proc-log/-/proc-log-5.0.0.tgz"; 10416 + sha512 = "Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ=="; 10588 10417 }; 10589 10418 }; 10590 10419 "process-0.11.10" = { ··· 10650 10479 sha512 = "SIliATETjBHvX5c2h8xhjFP0GmGie58sdq7utvoMIv1qkcow3O/NLy21ME35D3uCMYYf/ZASPzG6kFTKXZ8Yxg=="; 10651 10480 }; 10652 10481 }; 10653 - "prompts-2.4.2" = { 10654 - name = "prompts"; 10655 - packageName = "prompts"; 10656 - version = "2.4.2"; 10657 - src = fetchurl { 10658 - url = "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz"; 10659 - sha512 = "NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q=="; 10660 - }; 10661 - }; 10662 10482 "proto-list-1.2.4" = { 10663 10483 name = "proto-list"; 10664 10484 packageName = "proto-list"; ··· 10695 10515 sha512 = "b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ=="; 10696 10516 }; 10697 10517 }; 10698 - "psl-1.9.0" = { 10518 + "psl-1.15.0" = { 10699 10519 name = "psl"; 10700 10520 packageName = "psl"; 10701 - version = "1.9.0"; 10521 + version = "1.15.0"; 10702 10522 src = fetchurl { 10703 - url = "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz"; 10704 - sha512 = "E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="; 10523 + url = "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz"; 10524 + sha512 = "JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w=="; 10705 10525 }; 10706 10526 }; 10707 10527 "public-encrypt-4.0.3" = { ··· 10776 10596 sha512 = "+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg=="; 10777 10597 }; 10778 10598 }; 10599 + "qs-6.14.0" = { 10600 + name = "qs"; 10601 + packageName = "qs"; 10602 + version = "6.14.0"; 10603 + src = fetchurl { 10604 + url = "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz"; 10605 + sha512 = "YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w=="; 10606 + }; 10607 + }; 10779 10608 "qs-6.5.1" = { 10780 10609 name = "qs"; 10781 10610 packageName = "qs"; ··· 10839 10668 sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; 10840 10669 }; 10841 10670 }; 10842 - "quick-lru-5.1.1" = { 10843 - name = "quick-lru"; 10844 - packageName = "quick-lru"; 10845 - version = "5.1.1"; 10846 - src = fetchurl { 10847 - url = "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz"; 10848 - sha512 = "WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="; 10849 - }; 10850 - }; 10851 10671 "randombytes-2.1.0" = { 10852 10672 name = "randombytes"; 10853 10673 packageName = "randombytes"; ··· 11037 10857 sha512 = "hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="; 11038 10858 }; 11039 10859 }; 11040 - "readdirp-4.0.1" = { 10860 + "readdirp-4.1.2" = { 11041 10861 name = "readdirp"; 11042 10862 packageName = "readdirp"; 11043 - version = "4.0.1"; 10863 + version = "4.1.2"; 11044 10864 src = fetchurl { 11045 - url = "https://registry.npmjs.org/readdirp/-/readdirp-4.0.1.tgz"; 11046 - sha512 = "GkMg9uOTpIWWKbSsgwb5fA4EavTR+SG/PMPoAY8hkhHfEEY0/vqljY+XHqtDf2cr2IJtoNRDbrrEpZUiZCkYRw=="; 10865 + url = "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz"; 10866 + sha512 = "GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg=="; 11047 10867 }; 11048 10868 }; 11049 10869 "recursive-readdir-2.2.2" = { ··· 11062 10882 src = fetchurl { 11063 10883 url = "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz"; 11064 10884 sha512 = "urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q=="; 10885 + }; 10886 + }; 10887 + "reflect.getprototypeof-1.0.10" = { 10888 + name = "reflect.getprototypeof"; 10889 + packageName = "reflect.getprototypeof"; 10890 + version = "1.0.10"; 10891 + src = fetchurl { 10892 + url = "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz"; 10893 + sha512 = "00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw=="; 11065 10894 }; 11066 10895 }; 11067 10896 "regenerate-1.4.2" = { ··· 11127 10956 sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; 11128 10957 }; 11129 10958 }; 11130 - "regexp.prototype.flags-1.5.2" = { 10959 + "regexp.prototype.flags-1.5.4" = { 11131 10960 name = "regexp.prototype.flags"; 11132 10961 packageName = "regexp.prototype.flags"; 11133 - version = "1.5.2"; 10962 + version = "1.5.4"; 11134 10963 src = fetchurl { 11135 - url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz"; 11136 - sha512 = "NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw=="; 10964 + url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz"; 10965 + sha512 = "dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA=="; 11137 10966 }; 11138 10967 }; 11139 - "regexpu-core-5.3.2" = { 10968 + "regexpu-core-6.2.0" = { 11140 10969 name = "regexpu-core"; 11141 10970 packageName = "regexpu-core"; 11142 - version = "5.3.2"; 10971 + version = "6.2.0"; 11143 10972 src = fetchurl { 11144 - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz"; 11145 - sha512 = "RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ=="; 10973 + url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz"; 10974 + sha512 = "H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA=="; 11146 10975 }; 11147 10976 }; 11148 - "registry-auth-token-4.2.2" = { 10977 + "registry-auth-token-5.1.0" = { 11149 10978 name = "registry-auth-token"; 11150 10979 packageName = "registry-auth-token"; 11151 - version = "4.2.2"; 10980 + version = "5.1.0"; 11152 10981 src = fetchurl { 11153 - url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz"; 11154 - sha512 = "PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg=="; 10982 + url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.1.0.tgz"; 10983 + sha512 = "GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw=="; 11155 10984 }; 11156 10985 }; 11157 - "registry-url-5.1.0" = { 10986 + "registry-url-6.0.1" = { 11158 10987 name = "registry-url"; 11159 10988 packageName = "registry-url"; 11160 - version = "5.1.0"; 10989 + version = "6.0.1"; 11161 10990 src = fetchurl { 11162 - url = "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz"; 11163 - sha512 = "8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw=="; 10991 + url = "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz"; 10992 + sha512 = "+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q=="; 11164 10993 }; 11165 10994 }; 11166 - "regjsparser-0.9.1" = { 10995 + "regjsgen-0.8.0" = { 10996 + name = "regjsgen"; 10997 + packageName = "regjsgen"; 10998 + version = "0.8.0"; 10999 + src = fetchurl { 11000 + url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz"; 11001 + sha512 = "RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q=="; 11002 + }; 11003 + }; 11004 + "regjsparser-0.12.0" = { 11167 11005 name = "regjsparser"; 11168 11006 packageName = "regjsparser"; 11169 - version = "0.9.1"; 11007 + version = "0.12.0"; 11170 11008 src = fetchurl { 11171 - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz"; 11172 - sha512 = "dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ=="; 11009 + url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz"; 11010 + sha512 = "cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ=="; 11173 11011 }; 11174 11012 }; 11175 11013 "relateurl-0.2.7" = { ··· 11307 11145 sha512 = "KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="; 11308 11146 }; 11309 11147 }; 11310 - "resolve-1.22.8" = { 11148 + "resolve-1.22.10" = { 11311 11149 name = "resolve"; 11312 11150 packageName = "resolve"; 11313 - version = "1.22.8"; 11151 + version = "1.22.10"; 11314 11152 src = fetchurl { 11315 - url = "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz"; 11316 - sha512 = "oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw=="; 11317 - }; 11318 - }; 11319 - "resolve-alpn-1.2.1" = { 11320 - name = "resolve-alpn"; 11321 - packageName = "resolve-alpn"; 11322 - version = "1.2.1"; 11323 - src = fetchurl { 11324 - url = "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz"; 11325 - sha512 = "0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g=="; 11153 + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz"; 11154 + sha512 = "NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w=="; 11326 11155 }; 11327 11156 }; 11328 11157 "resolve-cwd-2.0.0" = { ··· 11361 11190 sha512 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="; 11362 11191 }; 11363 11192 }; 11193 + "resolve-pkg-maps-1.0.0" = { 11194 + name = "resolve-pkg-maps"; 11195 + packageName = "resolve-pkg-maps"; 11196 + version = "1.0.0"; 11197 + src = fetchurl { 11198 + url = "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz"; 11199 + sha512 = "seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw=="; 11200 + }; 11201 + }; 11364 11202 "resolve-url-0.2.1" = { 11365 11203 name = "resolve-url"; 11366 11204 packageName = "resolve-url"; ··· 11370 11208 sha512 = "ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg=="; 11371 11209 }; 11372 11210 }; 11373 - "responselike-1.0.2" = { 11374 - name = "responselike"; 11375 - packageName = "responselike"; 11376 - version = "1.0.2"; 11377 - src = fetchurl { 11378 - url = "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz"; 11379 - sha512 = "/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ=="; 11380 - }; 11381 - }; 11382 11211 "responselike-2.0.1" = { 11383 11212 name = "responselike"; 11384 11213 packageName = "responselike"; ··· 11397 11226 sha512 = "6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q=="; 11398 11227 }; 11399 11228 }; 11400 - "restore-cursor-3.1.0" = { 11229 + "restore-cursor-5.1.0" = { 11401 11230 name = "restore-cursor"; 11402 11231 packageName = "restore-cursor"; 11403 - version = "3.1.0"; 11232 + version = "5.1.0"; 11404 11233 src = fetchurl { 11405 - url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz"; 11406 - sha512 = "l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA=="; 11407 - }; 11408 - }; 11409 - "restore-cursor-4.0.0" = { 11410 - name = "restore-cursor"; 11411 - packageName = "restore-cursor"; 11412 - version = "4.0.0"; 11413 - src = fetchurl { 11414 - url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz"; 11415 - sha512 = "I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg=="; 11234 + url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz"; 11235 + sha512 = "oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA=="; 11416 11236 }; 11417 11237 }; 11418 11238 "ret-0.1.15" = { ··· 11505 11325 sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA=="; 11506 11326 }; 11507 11327 }; 11508 - "rollup-4.22.5" = { 11328 + "rollup-4.34.7" = { 11509 11329 name = "rollup"; 11510 11330 packageName = "rollup"; 11511 - version = "4.22.5"; 11331 + version = "4.34.7"; 11512 11332 src = fetchurl { 11513 - url = "https://registry.npmjs.org/rollup/-/rollup-4.22.5.tgz"; 11514 - sha512 = "WoinX7GeQOFMGznEcWA1WrTQCd/tpEbMkc3nuMs9BT0CPjMdSjPMTVClwWd4pgSQwJdP65SK9mTCNvItlr5o7w=="; 11333 + url = "https://registry.npmjs.org/rollup/-/rollup-4.34.7.tgz"; 11334 + sha512 = "8qhyN0oZ4x0H6wmBgfKxJtxM7qS98YJ0k0kNh5ECVtuchIJ7z9IVVvzpmtQyT10PXKMtBxYr1wQ5Apg8RS8kXQ=="; 11335 + }; 11336 + }; 11337 + "run-applescript-7.0.0" = { 11338 + name = "run-applescript"; 11339 + packageName = "run-applescript"; 11340 + version = "7.0.0"; 11341 + src = fetchurl { 11342 + url = "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz"; 11343 + sha512 = "9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A=="; 11515 11344 }; 11516 11345 }; 11517 11346 "run-async-2.4.1" = { ··· 11559 11388 sha512 = "AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg=="; 11560 11389 }; 11561 11390 }; 11562 - "safe-array-concat-1.1.2" = { 11391 + "safe-array-concat-1.1.3" = { 11563 11392 name = "safe-array-concat"; 11564 11393 packageName = "safe-array-concat"; 11565 - version = "1.1.2"; 11394 + version = "1.1.3"; 11566 11395 src = fetchurl { 11567 - url = "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz"; 11568 - sha512 = "vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q=="; 11396 + url = "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz"; 11397 + sha512 = "AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q=="; 11569 11398 }; 11570 11399 }; 11571 11400 "safe-buffer-5.1.1" = { ··· 11595 11424 sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 11596 11425 }; 11597 11426 }; 11427 + "safe-push-apply-1.0.0" = { 11428 + name = "safe-push-apply"; 11429 + packageName = "safe-push-apply"; 11430 + version = "1.0.0"; 11431 + src = fetchurl { 11432 + url = "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz"; 11433 + sha512 = "iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA=="; 11434 + }; 11435 + }; 11598 11436 "safe-regex-1.1.0" = { 11599 11437 name = "safe-regex"; 11600 11438 packageName = "safe-regex"; ··· 11604 11442 sha512 = "aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg=="; 11605 11443 }; 11606 11444 }; 11607 - "safe-regex-test-1.0.3" = { 11445 + "safe-regex-test-1.1.0" = { 11608 11446 name = "safe-regex-test"; 11609 11447 packageName = "safe-regex-test"; 11610 - version = "1.0.3"; 11448 + version = "1.1.0"; 11611 11449 src = fetchurl { 11612 - url = "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz"; 11613 - sha512 = "CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw=="; 11450 + url = "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz"; 11451 + sha512 = "x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="; 11614 11452 }; 11615 11453 }; 11616 11454 "safename-1.0.2" = { ··· 11631 11469 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 11632 11470 }; 11633 11471 }; 11634 - "sass-1.79.3" = { 11472 + "sass-1.85.0" = { 11635 11473 name = "sass"; 11636 11474 packageName = "sass"; 11637 - version = "1.79.3"; 11475 + version = "1.85.0"; 11638 11476 src = fetchurl { 11639 - url = "https://registry.npmjs.org/sass/-/sass-1.79.3.tgz"; 11640 - sha512 = "m7dZxh0W9EZ3cw50Me5GOuYm/tVAJAn91SUnohLRo9cXBixGUOdvmryN+dXpwR831bhoY3Zv7rEFt85PUwTmzA=="; 11477 + url = "https://registry.npmjs.org/sass/-/sass-1.85.0.tgz"; 11478 + sha512 = "3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww=="; 11641 11479 }; 11642 11480 }; 11643 - "sass-embedded-1.79.3" = { 11481 + "sass-embedded-1.85.0" = { 11644 11482 name = "sass-embedded"; 11645 11483 packageName = "sass-embedded"; 11646 - version = "1.79.3"; 11484 + version = "1.85.0"; 11647 11485 src = fetchurl { 11648 - url = "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.79.3.tgz"; 11649 - sha512 = "zUve2qCn6uSOMZnZazLzrDWq//OQWFle5G45vJjv3B/ADIA3TXVgqHqN3u7D2vGajOGREz0HN5nhliSoKmQqZA=="; 11486 + url = "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.85.0.tgz"; 11487 + sha512 = "x3Vv54g0jv1aPSW8OTA/0GzQCs/HMQOjIkLtZJ3Xsn/I4vnyjKbVTQmFTax9bQjldqLEEkdbvy6ES/cOOnYNwA=="; 11650 11488 }; 11651 11489 }; 11652 11490 "sax-1.2.4" = { ··· 11656 11494 src = fetchurl { 11657 11495 url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"; 11658 11496 sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; 11659 - }; 11660 - }; 11661 - "sax-1.3.0" = { 11662 - name = "sax"; 11663 - packageName = "sax"; 11664 - version = "1.3.0"; 11665 - src = fetchurl { 11666 - url = "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz"; 11667 - sha512 = "0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA=="; 11668 11497 }; 11669 11498 }; 11670 11499 "sax-1.4.1" = { ··· 11757 11586 sha512 = "BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="; 11758 11587 }; 11759 11588 }; 11760 - "semver-7.6.3" = { 11589 + "semver-7.7.1" = { 11761 11590 name = "semver"; 11762 11591 packageName = "semver"; 11763 - version = "7.6.3"; 11592 + version = "7.7.1"; 11764 11593 src = fetchurl { 11765 - url = "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz"; 11766 - sha512 = "oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A=="; 11594 + url = "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz"; 11595 + sha512 = "hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA=="; 11767 11596 }; 11768 11597 }; 11769 11598 "semver-regex-3.1.4" = { ··· 11892 11721 sha512 = "7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ=="; 11893 11722 }; 11894 11723 }; 11724 + "set-proto-1.0.0" = { 11725 + name = "set-proto"; 11726 + packageName = "set-proto"; 11727 + version = "1.0.0"; 11728 + src = fetchurl { 11729 + url = "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz"; 11730 + sha512 = "RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw=="; 11731 + }; 11732 + }; 11895 11733 "set-value-2.0.1" = { 11896 11734 name = "set-value"; 11897 11735 packageName = "set-value"; ··· 12000 11838 sha512 = "V0iQEZ/uoem3NmD91rD8XiuozJnq9/ZJnbHVXHnWqP1ucAhS3yJ7sLIIzEi57wFFcK3oi3kFUC46uSyWr35mxg=="; 12001 11839 }; 12002 11840 }; 12003 - "shell-quote-1.8.1" = { 12004 - name = "shell-quote"; 12005 - packageName = "shell-quote"; 12006 - version = "1.8.1"; 11841 + "side-channel-1.1.0" = { 11842 + name = "side-channel"; 11843 + packageName = "side-channel"; 11844 + version = "1.1.0"; 11845 + src = fetchurl { 11846 + url = "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz"; 11847 + sha512 = "ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw=="; 11848 + }; 11849 + }; 11850 + "side-channel-list-1.0.0" = { 11851 + name = "side-channel-list"; 11852 + packageName = "side-channel-list"; 11853 + version = "1.0.0"; 11854 + src = fetchurl { 11855 + url = "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz"; 11856 + sha512 = "FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA=="; 11857 + }; 11858 + }; 11859 + "side-channel-map-1.0.1" = { 11860 + name = "side-channel-map"; 11861 + packageName = "side-channel-map"; 11862 + version = "1.0.1"; 12007 11863 src = fetchurl { 12008 - url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz"; 12009 - sha512 = "6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA=="; 11864 + url = "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz"; 11865 + sha512 = "VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA=="; 12010 11866 }; 12011 11867 }; 12012 - "side-channel-1.0.6" = { 12013 - name = "side-channel"; 12014 - packageName = "side-channel"; 12015 - version = "1.0.6"; 11868 + "side-channel-weakmap-1.0.2" = { 11869 + name = "side-channel-weakmap"; 11870 + packageName = "side-channel-weakmap"; 11871 + version = "1.0.2"; 12016 11872 src = fetchurl { 12017 - url = "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz"; 12018 - sha512 = "fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA=="; 11873 + url = "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz"; 11874 + sha512 = "WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A=="; 12019 11875 }; 12020 11876 }; 12021 11877 "signal-exit-3.0.7" = { ··· 12052 11908 src = fetchurl { 12053 11909 url = "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz"; 12054 11910 sha512 = "JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg=="; 12055 - }; 12056 - }; 12057 - "sisteransi-1.0.5" = { 12058 - name = "sisteransi"; 12059 - packageName = "sisteransi"; 12060 - version = "1.0.5"; 12061 - src = fetchurl { 12062 - url = "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz"; 12063 - sha512 = "bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="; 12064 11911 }; 12065 11912 }; 12066 11913 "slash-1.0.0" = { ··· 12090 11937 sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; 12091 11938 }; 12092 11939 }; 12093 - "slash-4.0.0" = { 12094 - name = "slash"; 12095 - packageName = "slash"; 12096 - version = "4.0.0"; 12097 - src = fetchurl { 12098 - url = "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz"; 12099 - sha512 = "3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew=="; 12100 - }; 12101 - }; 12102 11940 "slash-5.1.0" = { 12103 11941 name = "slash"; 12104 11942 packageName = "slash"; ··· 12180 12018 sha512 = "5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g=="; 12181 12019 }; 12182 12020 }; 12183 - "socks-2.8.3" = { 12021 + "socks-2.8.4" = { 12184 12022 name = "socks"; 12185 12023 packageName = "socks"; 12186 - version = "2.8.3"; 12024 + version = "2.8.4"; 12187 12025 src = fetchurl { 12188 - url = "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz"; 12189 - sha512 = "l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw=="; 12026 + url = "https://registry.npmjs.org/socks/-/socks-2.8.4.tgz"; 12027 + sha512 = "D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ=="; 12190 12028 }; 12191 12029 }; 12192 - "socks-proxy-agent-8.0.4" = { 12030 + "socks-proxy-agent-8.0.5" = { 12193 12031 name = "socks-proxy-agent"; 12194 12032 packageName = "socks-proxy-agent"; 12195 - version = "8.0.4"; 12033 + version = "8.0.5"; 12196 12034 src = fetchurl { 12197 - url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz"; 12198 - sha512 = "GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw=="; 12035 + url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz"; 12036 + sha512 = "HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw=="; 12199 12037 }; 12200 12038 }; 12201 12039 "sort-keys-1.1.2" = { ··· 12306 12144 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 12307 12145 }; 12308 12146 }; 12309 - "spdx-license-ids-3.0.20" = { 12147 + "spdx-license-ids-3.0.21" = { 12310 12148 name = "spdx-license-ids"; 12311 12149 packageName = "spdx-license-ids"; 12312 - version = "3.0.20"; 12150 + version = "3.0.21"; 12313 12151 src = fetchurl { 12314 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz"; 12315 - sha512 = "jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw=="; 12152 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz"; 12153 + sha512 = "Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg=="; 12316 12154 }; 12317 12155 }; 12318 12156 "spdy-4.0.2" = { ··· 12378 12216 sha512 = "2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ=="; 12379 12217 }; 12380 12218 }; 12381 - "ssri-10.0.6" = { 12219 + "ssri-12.0.0" = { 12382 12220 name = "ssri"; 12383 12221 packageName = "ssri"; 12384 - version = "10.0.6"; 12222 + version = "12.0.0"; 12385 12223 src = fetchurl { 12386 - url = "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz"; 12387 - sha512 = "MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ=="; 12224 + url = "https://registry.npmjs.org/ssri/-/ssri-12.0.0.tgz"; 12225 + sha512 = "S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ=="; 12388 12226 }; 12389 12227 }; 12390 12228 "ssri-5.3.0" = { ··· 12585 12423 sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 12586 12424 }; 12587 12425 }; 12588 - "string.prototype.trim-1.2.9" = { 12426 + "string.prototype.trim-1.2.10" = { 12589 12427 name = "string.prototype.trim"; 12590 12428 packageName = "string.prototype.trim"; 12591 - version = "1.2.9"; 12429 + version = "1.2.10"; 12592 12430 src = fetchurl { 12593 - url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz"; 12594 - sha512 = "klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw=="; 12431 + url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz"; 12432 + sha512 = "Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA=="; 12595 12433 }; 12596 12434 }; 12597 - "string.prototype.trimend-1.0.8" = { 12435 + "string.prototype.trimend-1.0.9" = { 12598 12436 name = "string.prototype.trimend"; 12599 12437 packageName = "string.prototype.trimend"; 12600 - version = "1.0.8"; 12438 + version = "1.0.9"; 12601 12439 src = fetchurl { 12602 - url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz"; 12603 - sha512 = "p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ=="; 12440 + url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz"; 12441 + sha512 = "G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ=="; 12604 12442 }; 12605 12443 }; 12606 12444 "string.prototype.trimstart-1.0.8" = { ··· 12628 12466 src = fetchurl { 12629 12467 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; 12630 12468 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 12631 - }; 12632 - }; 12633 - "string_decoder-1.3.0" = { 12634 - name = "string_decoder"; 12635 - packageName = "string_decoder"; 12636 - version = "1.3.0"; 12637 - src = fetchurl { 12638 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"; 12639 - sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; 12640 12469 }; 12641 12470 }; 12642 12471 "stringify-object-3.3.0" = { ··· 12783 12612 sha512 = "7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g=="; 12784 12613 }; 12785 12614 }; 12786 - "stylus-0.63.0" = { 12615 + "stylus-0.64.0" = { 12787 12616 name = "stylus"; 12788 12617 packageName = "stylus"; 12789 - version = "0.63.0"; 12618 + version = "0.64.0"; 12790 12619 src = fetchurl { 12791 - url = "https://registry.npmjs.org/stylus/-/stylus-0.63.0.tgz"; 12792 - sha512 = "OMlgrTCPzE/ibtRMoeLVhOY0RcNuNWh0rhAVqeKnk/QwcuUKQbnqhZ1kg2vzD8VU/6h3FoPTq4RJPHgLBvX6Bw=="; 12620 + url = "https://registry.npmjs.org/stylus/-/stylus-0.64.0.tgz"; 12621 + sha512 = "ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA=="; 12793 12622 }; 12794 12623 }; 12795 12624 "sudo-prompt-8.2.5" = { ··· 12801 12630 sha512 = "rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw=="; 12802 12631 }; 12803 12632 }; 12804 - "sugarss-4.0.1" = { 12633 + "sugarss-5.0.0" = { 12805 12634 name = "sugarss"; 12806 12635 packageName = "sugarss"; 12807 - version = "4.0.1"; 12636 + version = "5.0.0"; 12808 12637 src = fetchurl { 12809 - url = "https://registry.npmjs.org/sugarss/-/sugarss-4.0.1.tgz"; 12810 - sha512 = "WCjS5NfuVJjkQzK10s8WOBY+hhDxxNt/N6ZaGwxFZ+wN3/lKKFSaaKUNecULcTTvE4urLcKaZFQD8vO0mOZujw=="; 12638 + url = "https://registry.npmjs.org/sugarss/-/sugarss-5.0.0.tgz"; 12639 + sha512 = "3//knMoF9btXcxHTbMRckIYjkEzSZ6pZjiaZ3wM6OIpUtQ06Uwqc0XgAr6jf+U74cLLTV/BEgmHWoeXPC+NhdQ=="; 12811 12640 }; 12812 12641 }; 12813 12642 "sums-0.2.4" = { ··· 12873 12702 sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; 12874 12703 }; 12875 12704 }; 12876 - "supports-hyperlinks-2.3.0" = { 12877 - name = "supports-hyperlinks"; 12878 - packageName = "supports-hyperlinks"; 12879 - version = "2.3.0"; 12880 - src = fetchurl { 12881 - url = "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz"; 12882 - sha512 = "RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA=="; 12883 - }; 12884 - }; 12885 12705 "supports-preserve-symlinks-flag-1.0.0" = { 12886 12706 name = "supports-preserve-symlinks-flag"; 12887 12707 packageName = "supports-preserve-symlinks-flag"; ··· 12900 12720 sha512 = "yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw=="; 12901 12721 }; 12902 12722 }; 12903 - "table-6.8.2" = { 12723 + "sync-child-process-1.0.2" = { 12724 + name = "sync-child-process"; 12725 + packageName = "sync-child-process"; 12726 + version = "1.0.2"; 12727 + src = fetchurl { 12728 + url = "https://registry.npmjs.org/sync-child-process/-/sync-child-process-1.0.2.tgz"; 12729 + sha512 = "8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA=="; 12730 + }; 12731 + }; 12732 + "sync-message-port-1.1.3" = { 12733 + name = "sync-message-port"; 12734 + packageName = "sync-message-port"; 12735 + version = "1.1.3"; 12736 + src = fetchurl { 12737 + url = "https://registry.npmjs.org/sync-message-port/-/sync-message-port-1.1.3.tgz"; 12738 + sha512 = "GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg=="; 12739 + }; 12740 + }; 12741 + "table-6.9.0" = { 12904 12742 name = "table"; 12905 12743 packageName = "table"; 12906 - version = "6.8.2"; 12744 + version = "6.9.0"; 12907 12745 src = fetchurl { 12908 - url = "https://registry.npmjs.org/table/-/table-6.8.2.tgz"; 12909 - sha512 = "w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA=="; 12746 + url = "https://registry.npmjs.org/table/-/table-6.9.0.tgz"; 12747 + sha512 = "9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A=="; 12910 12748 }; 12911 12749 }; 12912 12750 "tapable-1.1.3" = { ··· 12936 12774 sha512 = "DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A=="; 12937 12775 }; 12938 12776 }; 12777 + "tar-7.4.3" = { 12778 + name = "tar"; 12779 + packageName = "tar"; 12780 + version = "7.4.3"; 12781 + src = fetchurl { 12782 + url = "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz"; 12783 + sha512 = "5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw=="; 12784 + }; 12785 + }; 12939 12786 "temp-0.9.0" = { 12940 12787 name = "temp"; 12941 12788 packageName = "temp"; ··· 12954 12801 sha512 = "yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA=="; 12955 12802 }; 12956 12803 }; 12957 - "terminal-link-2.1.1" = { 12958 - name = "terminal-link"; 12959 - packageName = "terminal-link"; 12960 - version = "2.1.1"; 12961 - src = fetchurl { 12962 - url = "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz"; 12963 - sha512 = "un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ=="; 12964 - }; 12965 - }; 12966 12804 "terser-4.8.1" = { 12967 12805 name = "terser"; 12968 12806 packageName = "terser"; ··· 12972 12810 sha512 = "4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw=="; 12973 12811 }; 12974 12812 }; 12975 - "terser-5.15.1" = { 12976 - name = "terser"; 12977 - packageName = "terser"; 12978 - version = "5.15.1"; 12979 - src = fetchurl { 12980 - url = "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz"; 12981 - sha512 = "K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw=="; 12982 - }; 12983 - }; 12984 - "terser-5.26.0" = { 12985 - name = "terser"; 12986 - packageName = "terser"; 12987 - version = "5.26.0"; 12988 - src = fetchurl { 12989 - url = "https://registry.npmjs.org/terser/-/terser-5.26.0.tgz"; 12990 - sha512 = "dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ=="; 12991 - }; 12992 - }; 12993 12813 "terser-5.3.8" = { 12994 12814 name = "terser"; 12995 12815 packageName = "terser"; ··· 12999 12819 sha512 = "zVotuHoIfnYjtlurOouTazciEfL7V38QMAOhGqpXDEg6yT13cF4+fEP9b0rrCEQTn+tT46uxgFsTZzhygk+CzQ=="; 13000 12820 }; 13001 12821 }; 13002 - "terser-5.34.0" = { 12822 + "terser-5.39.0" = { 13003 12823 name = "terser"; 13004 12824 packageName = "terser"; 13005 - version = "5.34.0"; 12825 + version = "5.39.0"; 13006 12826 src = fetchurl { 13007 - url = "https://registry.npmjs.org/terser/-/terser-5.34.0.tgz"; 13008 - sha512 = "y5NUX+U9HhVsK/zihZwoq4r9dICLyV2jXGOriDAVOeKhq3LKVjgJbGO90FisozXLlJfvjHqgckGmJFBb9KYoWQ=="; 12827 + url = "https://registry.npmjs.org/terser/-/terser-5.39.0.tgz"; 12828 + sha512 = "LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw=="; 13009 12829 }; 13010 12830 }; 13011 12831 "terser-webpack-plugin-1.4.6" = { ··· 13089 12909 sha512 = "qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A=="; 13090 12910 }; 13091 12911 }; 13092 - "tiny-decoders-7.0.1" = { 13093 - name = "tiny-decoders"; 13094 - packageName = "tiny-decoders"; 13095 - version = "7.0.1"; 13096 - src = fetchurl { 13097 - url = "https://registry.npmjs.org/tiny-decoders/-/tiny-decoders-7.0.1.tgz"; 13098 - sha512 = "P1LaHTLASl/lCrdtwgAAVwxt4bEAPmxpf9HMQrlCkAseaT8oH8oxm8ndy4nx5rLTcL5U/Qxp1a+FDoQfS/ZgQQ=="; 13099 - }; 13100 - }; 13101 12912 "tmp-0.0.31" = { 13102 12913 name = "tmp"; 13103 12914 packageName = "tmp"; ··· 13116 12927 sha512 = "jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw=="; 13117 12928 }; 13118 12929 }; 13119 - "tmp-0.1.0" = { 12930 + "tmp-0.2.3" = { 13120 12931 name = "tmp"; 13121 12932 packageName = "tmp"; 13122 - version = "0.1.0"; 12933 + version = "0.2.3"; 13123 12934 src = fetchurl { 13124 - url = "https://registry.npmjs.org/tmp/-/tmp-0.1.0.tgz"; 13125 - sha512 = "J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw=="; 12935 + url = "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz"; 12936 + sha512 = "nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w=="; 13126 12937 }; 13127 12938 }; 13128 12939 "to-arraybuffer-1.0.1" = { ··· 13134 12945 sha512 = "okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA=="; 13135 12946 }; 13136 12947 }; 13137 - "to-fast-properties-2.0.0" = { 13138 - name = "to-fast-properties"; 13139 - packageName = "to-fast-properties"; 13140 - version = "2.0.0"; 13141 - src = fetchurl { 13142 - url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; 13143 - sha512 = "/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog=="; 13144 - }; 13145 - }; 13146 12948 "to-object-path-0.3.0" = { 13147 12949 name = "to-object-path"; 13148 12950 packageName = "to-object-path"; ··· 13152 12954 sha512 = "9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg=="; 13153 12955 }; 13154 12956 }; 13155 - "to-readable-stream-1.0.0" = { 13156 - name = "to-readable-stream"; 13157 - packageName = "to-readable-stream"; 13158 - version = "1.0.0"; 13159 - src = fetchurl { 13160 - url = "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz"; 13161 - sha512 = "Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q=="; 13162 - }; 13163 - }; 13164 12957 "to-readable-stream-2.1.0" = { 13165 12958 name = "to-readable-stream"; 13166 12959 packageName = "to-readable-stream"; ··· 13305 13098 sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 13306 13099 }; 13307 13100 }; 13308 - "tslib-2.7.0" = { 13101 + "tslib-2.8.1" = { 13309 13102 name = "tslib"; 13310 13103 packageName = "tslib"; 13311 - version = "2.7.0"; 13104 + version = "2.8.1"; 13105 + src = fetchurl { 13106 + url = "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz"; 13107 + sha512 = "oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="; 13108 + }; 13109 + }; 13110 + "tsx-4.19.2" = { 13111 + name = "tsx"; 13112 + packageName = "tsx"; 13113 + version = "4.19.2"; 13312 13114 src = fetchurl { 13313 - url = "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz"; 13314 - sha512 = "gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA=="; 13115 + url = "https://registry.npmjs.org/tsx/-/tsx-4.19.2.tgz"; 13116 + sha512 = "pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g=="; 13315 13117 }; 13316 13118 }; 13317 13119 "tsyringe-4.8.0" = { ··· 13386 13188 sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; 13387 13189 }; 13388 13190 }; 13389 - "typed-array-buffer-1.0.2" = { 13191 + "typed-array-buffer-1.0.3" = { 13390 13192 name = "typed-array-buffer"; 13391 13193 packageName = "typed-array-buffer"; 13392 - version = "1.0.2"; 13194 + version = "1.0.3"; 13393 13195 src = fetchurl { 13394 - url = "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz"; 13395 - sha512 = "gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ=="; 13196 + url = "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz"; 13197 + sha512 = "nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw=="; 13396 13198 }; 13397 13199 }; 13398 - "typed-array-byte-length-1.0.1" = { 13200 + "typed-array-byte-length-1.0.3" = { 13399 13201 name = "typed-array-byte-length"; 13400 13202 packageName = "typed-array-byte-length"; 13401 - version = "1.0.1"; 13203 + version = "1.0.3"; 13402 13204 src = fetchurl { 13403 - url = "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz"; 13404 - sha512 = "3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw=="; 13205 + url = "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz"; 13206 + sha512 = "BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg=="; 13405 13207 }; 13406 13208 }; 13407 - "typed-array-byte-offset-1.0.2" = { 13209 + "typed-array-byte-offset-1.0.4" = { 13408 13210 name = "typed-array-byte-offset"; 13409 13211 packageName = "typed-array-byte-offset"; 13410 - version = "1.0.2"; 13212 + version = "1.0.4"; 13411 13213 src = fetchurl { 13412 - url = "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz"; 13413 - sha512 = "Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA=="; 13214 + url = "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz"; 13215 + sha512 = "bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ=="; 13414 13216 }; 13415 13217 }; 13416 - "typed-array-length-1.0.6" = { 13218 + "typed-array-length-1.0.7" = { 13417 13219 name = "typed-array-length"; 13418 13220 packageName = "typed-array-length"; 13419 - version = "1.0.6"; 13221 + version = "1.0.7"; 13420 13222 src = fetchurl { 13421 - url = "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz"; 13422 - sha512 = "/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g=="; 13223 + url = "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz"; 13224 + sha512 = "3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg=="; 13423 13225 }; 13424 13226 }; 13425 13227 "typedarray-0.0.6" = { ··· 13447 13249 src = fetchurl { 13448 13250 url = "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"; 13449 13251 sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 13450 - }; 13451 - }; 13452 - "typescript-4.9.3" = { 13453 - name = "typescript"; 13454 - packageName = "typescript"; 13455 - version = "4.9.3"; 13456 - src = fetchurl { 13457 - url = "https://registry.npmjs.org/typescript/-/typescript-4.9.3.tgz"; 13458 - sha512 = "CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA=="; 13459 13252 }; 13460 13253 }; 13461 13254 "typescript-4.9.5" = { ··· 13503 13296 sha512 = "UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og=="; 13504 13297 }; 13505 13298 }; 13506 - "unbox-primitive-1.0.2" = { 13299 + "unbox-primitive-1.1.0" = { 13507 13300 name = "unbox-primitive"; 13508 13301 packageName = "unbox-primitive"; 13509 - version = "1.0.2"; 13302 + version = "1.1.0"; 13510 13303 src = fetchurl { 13511 - url = "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz"; 13512 - sha512 = "61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="; 13304 + url = "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz"; 13305 + sha512 = "nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw=="; 13513 13306 }; 13514 13307 }; 13515 - "undici-types-6.19.8" = { 13308 + "undici-types-6.20.0" = { 13516 13309 name = "undici-types"; 13517 13310 packageName = "undici-types"; 13518 - version = "6.19.8"; 13311 + version = "6.20.0"; 13519 13312 src = fetchurl { 13520 - url = "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz"; 13521 - sha512 = "ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw=="; 13313 + url = "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz"; 13314 + sha512 = "Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg=="; 13522 13315 }; 13523 13316 }; 13524 13317 "unicode-canonical-property-names-ecmascript-2.0.1" = { ··· 13602 13395 sha512 = "Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ=="; 13603 13396 }; 13604 13397 }; 13605 - "unique-filename-3.0.0" = { 13398 + "unique-filename-4.0.0" = { 13606 13399 name = "unique-filename"; 13607 13400 packageName = "unique-filename"; 13608 - version = "3.0.0"; 13401 + version = "4.0.0"; 13609 13402 src = fetchurl { 13610 - url = "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz"; 13611 - sha512 = "afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g=="; 13403 + url = "https://registry.npmjs.org/unique-filename/-/unique-filename-4.0.0.tgz"; 13404 + sha512 = "XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ=="; 13612 13405 }; 13613 13406 }; 13614 13407 "unique-slug-2.0.2" = { ··· 13620 13413 sha512 = "zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w=="; 13621 13414 }; 13622 13415 }; 13623 - "unique-slug-4.0.0" = { 13416 + "unique-slug-5.0.0" = { 13624 13417 name = "unique-slug"; 13625 13418 packageName = "unique-slug"; 13626 - version = "4.0.0"; 13419 + version = "5.0.0"; 13627 13420 src = fetchurl { 13628 - url = "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz"; 13629 - sha512 = "WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ=="; 13421 + url = "https://registry.npmjs.org/unique-slug/-/unique-slug-5.0.0.tgz"; 13422 + sha512 = "9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg=="; 13630 13423 }; 13631 13424 }; 13632 13425 "universalify-0.1.2" = { ··· 13701 13494 sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w=="; 13702 13495 }; 13703 13496 }; 13704 - "update-browserslist-db-1.1.1" = { 13497 + "update-browserslist-db-1.1.2" = { 13705 13498 name = "update-browserslist-db"; 13706 13499 packageName = "update-browserslist-db"; 13707 - version = "1.1.1"; 13500 + version = "1.1.2"; 13708 13501 src = fetchurl { 13709 - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz"; 13710 - sha512 = "R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A=="; 13502 + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz"; 13503 + sha512 = "PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg=="; 13711 13504 }; 13712 13505 }; 13713 13506 "upgrade-1.1.0" = { ··· 13762 13555 src = fetchurl { 13763 13556 url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz"; 13764 13557 sha512 = "WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ=="; 13765 - }; 13766 - }; 13767 - "url-parse-lax-3.0.0" = { 13768 - name = "url-parse-lax"; 13769 - packageName = "url-parse-lax"; 13770 - version = "3.0.0"; 13771 - src = fetchurl { 13772 - url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz"; 13773 - sha512 = "NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ=="; 13774 13558 }; 13775 13559 }; 13776 13560 "url-to-options-1.0.1" = { ··· 13917 13701 sha512 = "ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw=="; 13918 13702 }; 13919 13703 }; 13920 - "vite-5.2.8" = { 13704 + "vite-6.1.0" = { 13921 13705 name = "vite"; 13922 13706 packageName = "vite"; 13923 - version = "5.2.8"; 13707 + version = "6.1.0"; 13924 13708 src = fetchurl { 13925 - url = "https://registry.npmjs.org/vite/-/vite-5.2.8.tgz"; 13926 - sha512 = "OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA=="; 13927 - }; 13928 - }; 13929 - "vite-5.4.8" = { 13930 - name = "vite"; 13931 - packageName = "vite"; 13932 - version = "5.4.8"; 13933 - src = fetchurl { 13934 - url = "https://registry.npmjs.org/vite/-/vite-5.4.8.tgz"; 13935 - sha512 = "FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ=="; 13936 - }; 13937 - }; 13938 - "vite-plugin-elm-watch-1.3.3" = { 13939 - name = "vite-plugin-elm-watch"; 13940 - packageName = "vite-plugin-elm-watch"; 13941 - version = "1.3.3"; 13942 - src = fetchurl { 13943 - url = "https://registry.npmjs.org/vite-plugin-elm-watch/-/vite-plugin-elm-watch-1.3.3.tgz"; 13944 - sha512 = "rR78gmeYp08E4CvtpnZuumsmNXaG/XOJ/xtOVfEG3TOJqDChXy1DzE1pnPsERohbELkov7ZZPHRLGV1z2iyxKg=="; 13709 + url = "https://registry.npmjs.org/vite/-/vite-6.1.0.tgz"; 13710 + sha512 = "RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ=="; 13945 13711 }; 13946 13712 }; 13947 13713 "vm-browserify-1.1.2" = { ··· 13998 13764 sha512 = "Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg=="; 13999 13765 }; 14000 13766 }; 14001 - "vscode-uri-3.0.8" = { 13767 + "vscode-uri-3.1.0" = { 14002 13768 name = "vscode-uri"; 14003 13769 packageName = "vscode-uri"; 14004 - version = "3.0.8"; 13770 + version = "3.1.0"; 14005 13771 src = fetchurl { 14006 - url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz"; 14007 - sha512 = "AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw=="; 13772 + url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz"; 13773 + sha512 = "/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ=="; 14008 13774 }; 14009 13775 }; 14010 13776 "watchpack-1.7.5" = { ··· 14032 13798 src = fetchurl { 14033 13799 url = "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz"; 14034 13800 sha512 = "O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA=="; 14035 - }; 14036 - }; 14037 - "wcwidth-1.0.1" = { 14038 - name = "wcwidth"; 14039 - packageName = "wcwidth"; 14040 - version = "1.0.1"; 14041 - src = fetchurl { 14042 - url = "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz"; 14043 - sha512 = "XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg=="; 14044 13801 }; 14045 13802 }; 14046 13803 "web-tree-sitter-0.20.8" = { ··· 14196 13953 sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; 14197 13954 }; 14198 13955 }; 14199 - "which-4.0.0" = { 13956 + "which-5.0.0" = { 14200 13957 name = "which"; 14201 13958 packageName = "which"; 14202 - version = "4.0.0"; 13959 + version = "5.0.0"; 14203 13960 src = fetchurl { 14204 - url = "https://registry.npmjs.org/which/-/which-4.0.0.tgz"; 14205 - sha512 = "GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg=="; 13961 + url = "https://registry.npmjs.org/which/-/which-5.0.0.tgz"; 13962 + sha512 = "JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ=="; 14206 13963 }; 14207 13964 }; 14208 - "which-boxed-primitive-1.0.2" = { 13965 + "which-boxed-primitive-1.1.1" = { 14209 13966 name = "which-boxed-primitive"; 14210 13967 packageName = "which-boxed-primitive"; 13968 + version = "1.1.1"; 13969 + src = fetchurl { 13970 + url = "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz"; 13971 + sha512 = "TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA=="; 13972 + }; 13973 + }; 13974 + "which-builtin-type-1.2.1" = { 13975 + name = "which-builtin-type"; 13976 + packageName = "which-builtin-type"; 13977 + version = "1.2.1"; 13978 + src = fetchurl { 13979 + url = "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz"; 13980 + sha512 = "6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q=="; 13981 + }; 13982 + }; 13983 + "which-collection-1.0.2" = { 13984 + name = "which-collection"; 13985 + packageName = "which-collection"; 14211 13986 version = "1.0.2"; 14212 13987 src = fetchurl { 14213 - url = "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"; 14214 - sha512 = "bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="; 13988 + url = "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz"; 13989 + sha512 = "K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw=="; 14215 13990 }; 14216 13991 }; 14217 13992 "which-module-1.0.0" = { ··· 14232 14007 sha512 = "iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ=="; 14233 14008 }; 14234 14009 }; 14235 - "which-typed-array-1.1.15" = { 14010 + "which-typed-array-1.1.18" = { 14236 14011 name = "which-typed-array"; 14237 14012 packageName = "which-typed-array"; 14238 - version = "1.1.15"; 14013 + version = "1.1.18"; 14239 14014 src = fetchurl { 14240 - url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz"; 14241 - sha512 = "oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA=="; 14015 + url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz"; 14016 + sha512 = "qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA=="; 14242 14017 }; 14243 14018 }; 14244 14019 "winston-2.1.1" = { ··· 14484 14259 sha512 = "8A/uRMnQy8KCQsmep1m7Bk+z/+LIkeF7w+TDMLtX1iZm5Hq9HsUDmgFGaW1ACW5Cj0b2Qo7wCvRhYN2ErUVp/A=="; 14485 14260 }; 14486 14261 }; 14487 - "ws-5.2.4" = { 14488 - name = "ws"; 14489 - packageName = "ws"; 14490 - version = "5.2.4"; 14491 - src = fetchurl { 14492 - url = "https://registry.npmjs.org/ws/-/ws-5.2.4.tgz"; 14493 - sha512 = "fFCejsuC8f9kOSu9FYaOw8CdO68O3h5v0lg4p74o8JqWpwTf9tniOD+nOB78aWoVSS6WptVUmDrp/KPsMVBWFQ=="; 14494 - }; 14495 - }; 14496 14262 "ws-6.2.3" = { 14497 14263 name = "ws"; 14498 14264 packageName = "ws"; ··· 14520 14286 sha512 = "+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ=="; 14521 14287 }; 14522 14288 }; 14289 + "ws-8.18.0" = { 14290 + name = "ws"; 14291 + packageName = "ws"; 14292 + version = "8.18.0"; 14293 + src = fetchurl { 14294 + url = "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz"; 14295 + sha512 = "8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw=="; 14296 + }; 14297 + }; 14523 14298 "xmlbuilder-13.0.2" = { 14524 14299 name = "xmlbuilder"; 14525 14300 packageName = "xmlbuilder"; ··· 14610 14385 sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 14611 14386 }; 14612 14387 }; 14388 + "yallist-5.0.0" = { 14389 + name = "yallist"; 14390 + packageName = "yallist"; 14391 + version = "5.0.0"; 14392 + src = fetchurl { 14393 + url = "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz"; 14394 + sha512 = "YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw=="; 14395 + }; 14396 + }; 14613 14397 "yaml-1.10.2" = { 14614 14398 name = "yaml"; 14615 14399 packageName = "yaml"; ··· 14619 14403 sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="; 14620 14404 }; 14621 14405 }; 14406 + "yaml-2.7.0" = { 14407 + name = "yaml"; 14408 + packageName = "yaml"; 14409 + version = "2.7.0"; 14410 + src = fetchurl { 14411 + url = "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz"; 14412 + sha512 = "+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA=="; 14413 + }; 14414 + }; 14622 14415 "yargs-13.3.2" = { 14623 14416 name = "yargs"; 14624 14417 packageName = "yargs"; ··· 14836 14629 sources."performance-now-2.1.0" 14837 14630 sources."process-nextick-args-1.0.7" 14838 14631 sources."proxy-addr-2.0.7" 14839 - sources."psl-1.9.0" 14632 + ( 14633 + sources."psl-1.15.0" 14634 + // { 14635 + dependencies = [ 14636 + sources."punycode-2.3.1" 14637 + ]; 14638 + } 14639 + ) 14840 14640 sources."punycode-1.4.1" 14841 14641 sources."qs-6.7.0" 14842 14642 sources."range-parser-1.2.1" ··· 15005 14805 sources."extsprintf-1.3.0" 15006 14806 sources."fast-deep-equal-3.1.3" 15007 14807 sources."fast-json-stable-stringify-2.1.0" 15008 - sources."fast-uri-3.0.2" 14808 + sources."fast-uri-3.0.6" 15009 14809 sources."fill-range-7.1.1" 15010 14810 sources."find-0.2.9" 15011 14811 ( ··· 15112 14912 sources."performance-now-2.1.0" 15113 14913 sources."picomatch-2.3.1" 15114 14914 sources."pseudomap-1.0.2" 15115 - sources."psl-1.9.0" 14915 + sources."psl-1.15.0" 15116 14916 sources."punycode-2.3.1" 15117 14917 sources."qs-6.5.3" 15118 14918 sources."readdirp-3.1.3" ··· 15153 14953 } 15154 14954 ) 15155 14955 ( 15156 - sources."table-6.8.2" 14956 + sources."table-6.9.0" 15157 14957 // { 15158 14958 dependencies = [ 15159 14959 sources."ajv-8.17.1" ··· 15217 15017 elm-doc-preview = nodeEnv.buildNodePackage { 15218 15018 name = "elm-doc-preview"; 15219 15019 packageName = "elm-doc-preview"; 15220 - version = "5.0.5"; 15020 + version = "6.0.1"; 15221 15021 src = fetchurl { 15222 - url = "https://registry.npmjs.org/elm-doc-preview/-/elm-doc-preview-5.0.5.tgz"; 15223 - sha512 = "GlWnbw2Bl+pA7QzRlqSYNGEQ3r3oNxMr2Nu0uiCM6AWzQ6Sk3BwtqSiUZvXLLlzWBV9pAQnY9U8xpDpPuh5rOQ=="; 15022 + url = "https://registry.npmjs.org/elm-doc-preview/-/elm-doc-preview-6.0.1.tgz"; 15023 + sha512 = "G/xgVRKpbLuqliQmBINQFE6I0YAwqET2+SabiyXE47kaVChkhIz91HlZudUvCzTG/CV2ci7AERtAwYzQ4bjOKA=="; 15224 15024 }; 15225 15025 dependencies = [ 15226 - sources."@sindresorhus/is-0.14.0" 15227 - sources."@szmarczak/http-timer-1.1.2" 15026 + sources."@isaacs/cliui-8.0.2" 15027 + sources."@pnpm/config.env-replace-1.1.0" 15028 + sources."@pnpm/network.ca-file-1.0.2" 15029 + sources."@pnpm/npm-conf-2.3.1" 15228 15030 sources."accepts-1.3.8" 15229 - sources."ansi-styles-4.3.0" 15031 + sources."ansi-regex-5.0.1" 15032 + sources."ansi-styles-6.2.1" 15230 15033 sources."anymatch-3.1.3" 15231 15034 sources."array-flatten-1.1.1" 15232 - sources."async-limiter-1.0.1" 15233 15035 sources."balanced-match-1.0.2" 15234 15036 sources."batch-0.6.1" 15235 15037 sources."binary-extensions-2.3.0" 15236 15038 sources."body-parser-1.20.3" 15237 - sources."brace-expansion-1.1.11" 15039 + sources."brace-expansion-2.0.1" 15238 15040 sources."braces-3.0.3" 15239 - sources."bufferutil-4.0.8" 15041 + sources."bufferutil-4.0.9" 15042 + sources."bundle-name-4.1.0" 15240 15043 sources."bytes-3.1.2" 15241 - ( 15242 - sources."cacheable-request-6.1.0" 15243 - // { 15244 - dependencies = [ 15245 - sources."get-stream-5.2.0" 15246 - sources."lowercase-keys-2.0.0" 15247 - ]; 15248 - } 15249 - ) 15250 - sources."call-bind-1.0.7" 15251 - sources."chalk-3.0.0" 15044 + sources."call-bind-apply-helpers-1.0.2" 15045 + sources."call-bound-1.0.3" 15046 + sources."chalk-5.4.1" 15252 15047 sources."chokidar-3.6.0" 15253 - sources."clone-response-1.0.3" 15254 15048 sources."color-convert-2.0.1" 15255 15049 sources."color-name-1.1.4" 15256 - sources."commander-5.1.0" 15257 - sources."concat-map-0.0.1" 15050 + sources."commander-12.1.0" 15051 + sources."config-chain-1.1.13" 15258 15052 sources."content-disposition-0.5.4" 15259 15053 sources."content-type-1.0.5" 15260 - sources."cookie-0.6.0" 15054 + sources."cookie-0.7.1" 15261 15055 sources."cookie-signature-1.0.6" 15262 - sources."cross-spawn-7.0.3" 15056 + sources."cross-spawn-7.0.6" 15263 15057 ( 15264 15058 sources."debug-2.6.9" 15265 15059 // { ··· 15268 15062 ]; 15269 15063 } 15270 15064 ) 15271 - sources."decompress-response-3.3.0" 15272 15065 sources."deep-extend-0.6.0" 15273 - sources."defer-to-connect-1.1.3" 15274 - sources."define-data-property-1.1.4" 15066 + sources."default-browser-5.2.1" 15067 + sources."default-browser-id-5.0.0" 15068 + sources."define-lazy-prop-3.0.0" 15275 15069 sources."depd-2.0.0" 15276 15070 sources."destroy-1.2.0" 15277 - sources."duplexer3-0.1.5" 15071 + sources."dunder-proto-1.0.1" 15072 + sources."eastasianwidth-0.2.0" 15278 15073 sources."ee-first-1.1.1" 15074 + sources."emoji-regex-9.2.2" 15279 15075 sources."encodeurl-2.0.0" 15280 - sources."end-of-stream-1.4.4" 15281 - sources."es-define-property-1.0.0" 15076 + sources."es-define-property-1.0.1" 15282 15077 sources."es-errors-1.3.0" 15078 + sources."es-object-atoms-1.1.1" 15283 15079 sources."escape-html-1.0.3" 15284 15080 sources."etag-1.8.1" 15285 - sources."express-4.21.0" 15081 + sources."express-4.21.2" 15286 15082 ( 15287 - sources."express-ws-4.0.0" 15083 + sources."express-ws-5.0.2" 15288 15084 // { 15289 15085 dependencies = [ 15290 - sources."ws-5.2.4" 15086 + sources."ws-7.5.10" 15291 15087 ]; 15292 15088 } 15293 15089 ) 15294 15090 sources."fill-range-7.1.1" 15295 15091 sources."finalhandler-1.3.1" 15092 + sources."foreground-child-3.3.0" 15296 15093 sources."forwarded-0.2.0" 15297 15094 sources."fresh-0.5.2" 15298 - sources."fs.realpath-1.0.0" 15299 15095 sources."function-bind-1.1.2" 15300 - sources."get-intrinsic-1.2.4" 15301 - sources."get-stream-4.1.0" 15302 - sources."glob-7.2.3" 15096 + sources."get-intrinsic-1.2.7" 15097 + sources."get-proto-1.0.1" 15098 + sources."glob-11.0.1" 15303 15099 sources."glob-parent-5.1.2" 15304 - sources."gopd-1.0.1" 15305 - sources."got-9.6.0" 15306 - sources."has-flag-4.0.0" 15307 - sources."has-property-descriptors-1.0.2" 15308 - sources."has-proto-1.0.3" 15309 - sources."has-symbols-1.0.3" 15100 + sources."gopd-1.2.0" 15101 + sources."graceful-fs-4.2.10" 15102 + sources."has-symbols-1.1.0" 15310 15103 sources."hasown-2.0.2" 15311 - sources."http-cache-semantics-4.1.1" 15312 15104 sources."http-errors-2.0.0" 15313 15105 sources."iconv-lite-0.4.24" 15314 - sources."inflight-1.0.6" 15315 15106 sources."inherits-2.0.4" 15316 15107 sources."ini-1.3.8" 15317 15108 sources."ipaddr.js-1.9.1" 15318 15109 sources."is-binary-path-2.1.0" 15319 - sources."is-docker-2.2.1" 15110 + sources."is-docker-3.0.0" 15320 15111 sources."is-extglob-2.1.1" 15112 + sources."is-fullwidth-code-point-3.0.0" 15321 15113 sources."is-glob-4.0.3" 15114 + sources."is-inside-container-1.0.0" 15322 15115 sources."is-number-7.0.0" 15323 - sources."is-wsl-2.2.0" 15116 + sources."is-wsl-3.1.0" 15324 15117 sources."isexe-2.0.0" 15325 - sources."json-buffer-3.0.0" 15326 - sources."keyv-3.1.0" 15327 - sources."latest-version-5.1.0" 15328 - sources."lowercase-keys-1.0.1" 15118 + sources."jackspeak-4.0.3" 15119 + sources."ky-1.7.5" 15120 + sources."latest-version-9.0.0" 15121 + sources."lru-cache-11.0.2" 15122 + sources."math-intrinsics-1.1.0" 15329 15123 sources."media-typer-0.3.0" 15330 15124 sources."merge-descriptors-1.0.3" 15331 15125 sources."methods-1.1.2" 15332 15126 sources."mime-1.6.0" 15333 15127 sources."mime-db-1.52.0" 15334 15128 sources."mime-types-2.1.35" 15335 - sources."mimic-response-1.0.1" 15336 - sources."minimatch-3.1.2" 15129 + sources."minimatch-10.0.1" 15337 15130 sources."minimist-1.2.8" 15131 + sources."minipass-7.1.2" 15338 15132 sources."ms-2.1.3" 15339 15133 sources."negotiator-0.6.3" 15340 - sources."node-gyp-build-4.8.2" 15134 + sources."node-gyp-build-4.8.4" 15341 15135 sources."normalize-path-3.0.0" 15342 - sources."normalize-url-4.5.1" 15343 - sources."object-inspect-1.13.2" 15136 + sources."object-inspect-1.13.4" 15344 15137 sources."on-finished-2.4.1" 15345 - sources."once-1.4.0" 15346 - sources."open-7.4.2" 15347 - sources."p-cancelable-1.1.0" 15348 - sources."package-json-6.5.0" 15138 + sources."open-10.1.0" 15139 + sources."package-json-10.0.1" 15140 + sources."package-json-from-dist-1.0.1" 15349 15141 sources."parseurl-1.3.3" 15350 - sources."path-is-absolute-1.0.1" 15351 15142 sources."path-key-3.1.1" 15352 - sources."path-to-regexp-0.1.10" 15143 + sources."path-scurry-2.0.0" 15144 + sources."path-to-regexp-0.1.12" 15353 15145 sources."picomatch-2.3.1" 15354 - sources."prepend-http-2.0.0" 15146 + sources."proto-list-1.2.4" 15355 15147 sources."proxy-addr-2.0.7" 15356 - sources."pump-3.0.2" 15357 15148 sources."qs-6.13.0" 15358 15149 sources."range-parser-1.2.1" 15359 15150 sources."raw-body-2.5.2" 15360 15151 sources."rc-1.2.8" 15361 15152 sources."readdirp-3.6.0" 15362 - sources."registry-auth-token-4.2.2" 15363 - sources."registry-url-5.1.0" 15364 - sources."responselike-1.0.2" 15365 - sources."rimraf-2.7.1" 15153 + sources."registry-auth-token-5.1.0" 15154 + sources."registry-url-6.0.1" 15155 + sources."run-applescript-7.0.0" 15366 15156 sources."safe-buffer-5.2.1" 15367 15157 sources."safer-buffer-2.1.2" 15368 - sources."semver-6.3.1" 15158 + sources."semver-7.7.1" 15369 15159 ( 15370 15160 sources."send-0.19.0" 15371 15161 // { ··· 15387 15177 } 15388 15178 ) 15389 15179 sources."serve-static-1.16.2" 15390 - sources."set-function-length-1.2.2" 15391 15180 sources."setprototypeof-1.2.0" 15392 15181 sources."shebang-command-2.0.0" 15393 15182 sources."shebang-regex-3.0.0" 15394 - sources."side-channel-1.0.6" 15183 + sources."side-channel-1.1.0" 15184 + sources."side-channel-list-1.0.0" 15185 + sources."side-channel-map-1.0.1" 15186 + sources."side-channel-weakmap-1.0.2" 15187 + sources."signal-exit-4.1.0" 15395 15188 sources."statuses-2.0.1" 15189 + sources."string-width-5.1.2" 15190 + ( 15191 + sources."string-width-cjs-4.2.3" 15192 + // { 15193 + dependencies = [ 15194 + sources."emoji-regex-8.0.0" 15195 + sources."strip-ansi-6.0.1" 15196 + ]; 15197 + } 15198 + ) 15199 + ( 15200 + sources."strip-ansi-7.1.0" 15201 + // { 15202 + dependencies = [ 15203 + sources."ansi-regex-6.1.0" 15204 + ]; 15205 + } 15206 + ) 15207 + sources."strip-ansi-cjs-6.0.1" 15396 15208 sources."strip-json-comments-2.0.1" 15397 - sources."supports-color-7.2.0" 15398 - sources."tmp-0.1.0" 15399 - sources."to-readable-stream-1.0.0" 15209 + sources."tmp-0.2.3" 15400 15210 sources."to-regex-range-5.0.1" 15401 15211 sources."toidentifier-1.0.1" 15402 15212 sources."type-is-1.6.18" 15403 15213 sources."unpipe-1.0.0" 15404 - sources."url-parse-lax-3.0.0" 15405 15214 sources."utf-8-validate-5.0.10" 15406 15215 sources."utils-merge-1.0.1" 15407 15216 sources."vary-1.1.2" 15408 15217 sources."which-2.0.2" 15409 - sources."wrappy-1.0.2" 15410 - sources."ws-7.5.10" 15218 + sources."wrap-ansi-8.1.0" 15219 + ( 15220 + sources."wrap-ansi-cjs-7.0.0" 15221 + // { 15222 + dependencies = [ 15223 + sources."ansi-styles-4.3.0" 15224 + sources."emoji-regex-8.0.0" 15225 + sources."string-width-4.2.3" 15226 + sources."strip-ansi-6.0.1" 15227 + ]; 15228 + } 15229 + ) 15230 + sources."ws-8.18.0" 15411 15231 ]; 15412 15232 buildInputs = globalBuildInputs; 15413 15233 meta = { ··· 15436 15256 sources."binary-extensions-2.3.0" 15437 15257 sources."braces-3.0.3" 15438 15258 sources."chokidar-3.6.0" 15439 - sources."cross-spawn-7.0.3" 15259 + sources."cross-spawn-7.0.6" 15440 15260 sources."dir-glob-3.0.1" 15441 15261 sources."escape-string-regexp-4.0.0" 15442 15262 sources."execa-5.1.1" 15443 15263 sources."fast-diff-1.3.0" 15444 - sources."fast-glob-3.3.2" 15445 - sources."fastq-1.17.1" 15264 + sources."fast-glob-3.3.3" 15265 + sources."fastq-1.19.0" 15446 15266 sources."fill-range-7.1.1" 15447 15267 sources."get-stream-6.0.1" 15448 15268 sources."glob-parent-5.1.2" ··· 15486 15306 sources."vscode-languageserver-protocol-3.17.5" 15487 15307 sources."vscode-languageserver-textdocument-1.0.11" 15488 15308 sources."vscode-languageserver-types-3.17.5" 15489 - sources."vscode-uri-3.0.8" 15309 + sources."vscode-uri-3.1.0" 15490 15310 sources."web-tree-sitter-0.20.8" 15491 15311 sources."which-2.0.2" 15492 15312 ]; ··· 15500 15320 bypassCache = true; 15501 15321 reconstructLock = true; 15502 15322 }; 15503 - elm-land = nodeEnv.buildNodePackage { 15504 - name = "elm-land"; 15505 - packageName = "elm-land"; 15506 - version = "0.20.1"; 15507 - src = fetchurl { 15508 - url = "https://registry.npmjs.org/elm-land/-/elm-land-0.20.1.tgz"; 15509 - sha512 = "AY8BxYNT7mblaIO9SS2YQPdskZdMsLL6fqjAA5bORdkGIRDkMeaw+rXgiVSHUM2+TK0k/ld0TdQEAd24Moi5nw=="; 15510 - }; 15511 - dependencies = [ 15512 - sources."@adobe/css-tools-4.3.3" 15513 - sources."@jridgewell/gen-mapping-0.3.5" 15514 - sources."@jridgewell/resolve-uri-3.1.2" 15515 - sources."@jridgewell/set-array-1.2.1" 15516 - sources."@jridgewell/source-map-0.3.6" 15517 - sources."@jridgewell/sourcemap-codec-1.5.0" 15518 - sources."@jridgewell/trace-mapping-0.3.25" 15519 - sources."@lydell/elm-0.19.1-14" 15520 - sources."@lydell/elm_darwin_arm64-0.19.1-3" 15521 - sources."@lydell/elm_darwin_x64-0.19.1-2" 15522 - sources."@lydell/elm_linux_arm-0.19.1-0" 15523 - sources."@lydell/elm_linux_arm64-0.19.1-4" 15524 - sources."@lydell/elm_linux_x64-0.19.1-1" 15525 - sources."@lydell/elm_win32_x64-0.19.1-1" 15526 - sources."@types/estree-1.0.6" 15527 - sources."@types/node-22.7.3" 15528 - sources."acorn-8.12.1" 15529 - sources."anymatch-3.1.3" 15530 - sources."balanced-match-1.0.2" 15531 - sources."binary-extensions-2.3.0" 15532 - sources."brace-expansion-1.1.11" 15533 - sources."braces-3.0.3" 15534 - sources."buffer-from-1.1.2" 15535 - sources."chokidar-3.5.3" 15536 - sources."commander-2.20.3" 15537 - sources."concat-map-0.0.1" 15538 - sources."copy-anything-2.0.6" 15539 - sources."cross-spawn-7.0.3" 15540 - sources."debug-4.3.7" 15541 - sources."detect-libc-1.0.3" 15542 - sources."elm-0.19.1-6" 15543 - sources."errno-0.1.8" 15544 - sources."esbuild-0.20.2" 15545 - sources."fill-range-7.1.1" 15546 - sources."fs.realpath-1.0.0" 15547 - sources."fsevents-2.3.3" 15548 - sources."glob-7.2.3" 15549 - sources."glob-parent-5.1.2" 15550 - sources."graceful-fs-4.2.11" 15551 - sources."iconv-lite-0.6.3" 15552 - sources."image-size-0.5.5" 15553 - sources."immutable-4.3.7" 15554 - sources."inflight-1.0.6" 15555 - sources."inherits-2.0.4" 15556 - sources."is-binary-path-2.1.0" 15557 - sources."is-extglob-2.1.1" 15558 - sources."is-glob-4.0.3" 15559 - sources."is-number-7.0.0" 15560 - sources."is-what-3.14.1" 15561 - sources."isexe-2.0.0" 15562 - sources."launch-editor-2.6.1" 15563 - sources."less-4.2.0" 15564 - sources."lightningcss-1.27.0" 15565 - sources."make-dir-2.1.0" 15566 - sources."mime-1.6.0" 15567 - sources."minimatch-3.1.2" 15568 - sources."ms-2.1.3" 15569 - sources."nanoid-3.3.7" 15570 - sources."needle-3.3.1" 15571 - sources."normalize-path-3.0.0" 15572 - sources."once-1.4.0" 15573 - sources."parse-node-version-1.0.1" 15574 - sources."path-is-absolute-1.0.1" 15575 - sources."path-key-3.1.1" 15576 - sources."picocolors-1.1.0" 15577 - sources."picomatch-2.3.1" 15578 - sources."pify-4.0.1" 15579 - sources."postcss-8.4.47" 15580 - sources."prr-1.0.1" 15581 - sources."readdirp-3.6.0" 15582 - sources."rollup-4.22.5" 15583 - sources."safer-buffer-2.1.2" 15584 - ( 15585 - sources."sass-1.79.3" 15586 - // { 15587 - dependencies = [ 15588 - sources."chokidar-4.0.1" 15589 - sources."readdirp-4.0.1" 15590 - ]; 15591 - } 15592 - ) 15593 - sources."sax-1.4.1" 15594 - sources."semver-5.7.2" 15595 - sources."shebang-command-2.0.0" 15596 - sources."shebang-regex-3.0.0" 15597 - sources."shell-quote-1.8.1" 15598 - sources."source-map-0.6.1" 15599 - sources."source-map-js-1.2.1" 15600 - sources."source-map-support-0.5.21" 15601 - ( 15602 - sources."stylus-0.63.0" 15603 - // { 15604 - dependencies = [ 15605 - sources."sax-1.3.0" 15606 - sources."source-map-0.7.4" 15607 - ]; 15608 - } 15609 - ) 15610 - sources."sugarss-4.0.1" 15611 - sources."terser-5.15.1" 15612 - sources."tiny-decoders-7.0.1" 15613 - sources."to-regex-range-5.0.1" 15614 - sources."tslib-2.7.0" 15615 - sources."typescript-4.9.3" 15616 - sources."undici-types-6.19.8" 15617 - sources."vite-5.2.8" 15618 - ( 15619 - sources."vite-plugin-elm-watch-1.3.3" 15620 - // { 15621 - dependencies = [ 15622 - sources."terser-5.26.0" 15623 - ]; 15624 - } 15625 - ) 15626 - sources."which-2.0.2" 15627 - sources."wrappy-1.0.2" 15628 - ]; 15629 - buildInputs = globalBuildInputs; 15630 - meta = { 15631 - description = "Reliable web apps for everyone"; 15632 - homepage = "https://elm.land"; 15633 - license = "ISC"; 15634 - }; 15635 - production = true; 15636 - bypassCache = true; 15637 - reconstructLock = true; 15638 - }; 15639 15323 elm-live = nodeEnv.buildNodePackage { 15640 15324 name = "elm-live"; 15641 15325 packageName = "elm-live"; ··· 15675 15359 sources."execa-1.0.0" 15676 15360 // { 15677 15361 dependencies = [ 15678 - sources."cross-spawn-6.0.5" 15362 + sources."cross-spawn-6.0.6" 15679 15363 ]; 15680 15364 } 15681 15365 ) ··· 15774 15458 sources."brace-expansion-1.1.11" 15775 15459 sources."braces-3.0.3" 15776 15460 sources."buffer-from-1.1.2" 15777 - sources."bufferutil-4.0.8" 15461 + sources."bufferutil-4.0.9" 15778 15462 sources."chokidar-3.4.2" 15779 15463 sources."commander-2.20.3" 15780 15464 sources."concat-map-0.0.1" ··· 15811 15495 sources."next-tick-1.1.0" 15812 15496 sources."nice-try-1.0.5" 15813 15497 sources."node-elm-compiler-5.0.5" 15814 - sources."node-gyp-build-4.8.2" 15498 + sources."node-gyp-build-4.8.4" 15815 15499 sources."normalize-path-3.0.0" 15816 15500 sources."once-1.4.0" 15817 15501 sources."path-is-absolute-1.0.1" ··· 15855 15539 elm-test = nodeEnv.buildNodePackage { 15856 15540 name = "elm-test"; 15857 15541 packageName = "elm-test"; 15858 - version = "0.19.1-revision12"; 15542 + version = "0.19.1-revision14"; 15859 15543 src = fetchurl { 15860 - url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision12.tgz"; 15861 - sha512 = "5GV3WkJ8R/faOP1hwElQdNuCt8tKx2+1lsMrdeIYWSFz01Kp9gJl/R6zGtp4QUyrUtO8KnHsxjHrQNUf2CHkrg=="; 15544 + url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision14.tgz"; 15545 + sha512 = "gfQQYtHTeMstGbGbiRHbGKLsQCGI53ozLP22Wqx6YjxXLlNsdT8NS2EGmjkdQSU3ALRhYECtnF//ZUb4wbCpUQ=="; 15862 15546 }; 15863 15547 dependencies = [ 15864 - sources."ansi-styles-4.3.0" 15548 + sources."@isaacs/cliui-8.0.2" 15549 + sources."ansi-regex-5.0.1" 15550 + sources."ansi-styles-6.2.1" 15865 15551 sources."anymatch-3.1.3" 15866 15552 sources."balanced-match-1.0.2" 15867 15553 sources."binary-extensions-2.3.0" 15868 15554 sources."brace-expansion-2.0.1" 15869 15555 sources."braces-3.0.3" 15870 - sources."chalk-4.1.2" 15556 + ( 15557 + sources."chalk-4.1.2" 15558 + // { 15559 + dependencies = [ 15560 + sources."ansi-styles-4.3.0" 15561 + ]; 15562 + } 15563 + ) 15871 15564 sources."chokidar-3.6.0" 15872 15565 sources."color-convert-2.0.1" 15873 15566 sources."color-name-1.1.4" 15874 15567 sources."commander-9.5.0" 15875 - sources."cross-spawn-7.0.3" 15876 - sources."elm-solve-deps-wasm-1.0.2" 15568 + sources."cross-spawn-7.0.6" 15569 + sources."eastasianwidth-0.2.0" 15570 + sources."elm-solve-deps-wasm-2.0.0" 15571 + sources."emoji-regex-9.2.2" 15877 15572 sources."fill-range-7.1.1" 15878 - sources."fs.realpath-1.0.0" 15879 - sources."glob-8.1.0" 15573 + sources."foreground-child-3.3.0" 15574 + sources."glob-10.4.5" 15880 15575 sources."glob-parent-5.1.2" 15881 15576 sources."graceful-fs-4.2.11" 15882 15577 sources."has-flag-4.0.0" 15883 - sources."inflight-1.0.6" 15884 - sources."inherits-2.0.4" 15885 15578 sources."is-binary-path-2.1.0" 15886 15579 sources."is-extglob-2.1.1" 15580 + sources."is-fullwidth-code-point-3.0.0" 15887 15581 sources."is-glob-4.0.3" 15888 15582 sources."is-number-7.0.0" 15889 15583 sources."isexe-2.0.0" 15890 - sources."minimatch-5.1.6" 15584 + sources."jackspeak-3.4.3" 15585 + sources."lru-cache-10.4.3" 15586 + sources."minimatch-9.0.5" 15587 + sources."minipass-7.1.2" 15891 15588 sources."normalize-path-3.0.0" 15892 - sources."once-1.4.0" 15589 + sources."package-json-from-dist-1.0.1" 15893 15590 sources."path-key-3.1.1" 15591 + sources."path-scurry-1.11.1" 15894 15592 sources."picomatch-2.3.1" 15895 15593 sources."readdirp-3.6.0" 15896 15594 sources."shebang-command-2.0.0" 15897 15595 sources."shebang-regex-3.0.0" 15596 + sources."signal-exit-4.1.0" 15898 15597 sources."split-1.0.1" 15598 + sources."string-width-5.1.2" 15599 + ( 15600 + sources."string-width-cjs-4.2.3" 15601 + // { 15602 + dependencies = [ 15603 + sources."emoji-regex-8.0.0" 15604 + sources."strip-ansi-6.0.1" 15605 + ]; 15606 + } 15607 + ) 15608 + ( 15609 + sources."strip-ansi-7.1.0" 15610 + // { 15611 + dependencies = [ 15612 + sources."ansi-regex-6.1.0" 15613 + ]; 15614 + } 15615 + ) 15616 + sources."strip-ansi-cjs-6.0.1" 15899 15617 sources."supports-color-7.2.0" 15900 15618 sources."through-2.3.8" 15901 15619 sources."to-regex-range-5.0.1" 15902 15620 sources."which-2.0.2" 15903 - sources."wrappy-1.0.2" 15621 + sources."wrap-ansi-8.1.0" 15622 + ( 15623 + sources."wrap-ansi-cjs-7.0.0" 15624 + // { 15625 + dependencies = [ 15626 + sources."ansi-styles-4.3.0" 15627 + sources."emoji-regex-8.0.0" 15628 + sources."string-width-4.2.3" 15629 + sources."strip-ansi-6.0.1" 15630 + ]; 15631 + } 15632 + ) 15904 15633 sources."xmlbuilder-15.1.1" 15905 15634 ]; 15906 15635 buildInputs = globalBuildInputs; ··· 15927 15656 sources."@types/cacheable-request-6.0.3" 15928 15657 sources."@types/http-cache-semantics-4.0.4" 15929 15658 sources."@types/keyv-3.1.4" 15930 - sources."@types/node-22.7.3" 15659 + sources."@types/node-22.13.4" 15931 15660 sources."@types/responselike-1.0.3" 15932 15661 sources."cacheable-lookup-2.0.1" 15933 15662 sources."cacheable-request-7.0.4" ··· 15975 15704 sources."responselike-2.0.1" 15976 15705 sources."safe-buffer-5.2.1" 15977 15706 sources."safename-1.0.2" 15978 - sources."semver-7.6.3" 15707 + sources."semver-7.7.1" 15979 15708 sources."to-readable-stream-2.1.0" 15980 15709 sources."tunnel-agent-0.6.0" 15981 15710 sources."type-fest-0.10.0" 15982 - sources."undici-types-6.19.8" 15711 + sources."undici-types-6.20.0" 15983 15712 sources."universalify-0.1.2" 15984 15713 sources."url-to-options-1.0.1" 15985 15714 sources."which-2.0.2" ··· 16024 15753 ) 16025 15754 sources."color-convert-2.0.1" 16026 15755 sources."color-name-1.1.4" 16027 - sources."cross-spawn-7.0.3" 15756 + sources."cross-spawn-7.0.6" 16028 15757 sources."eastasianwidth-0.2.0" 16029 15758 sources."emoji-regex-9.2.2" 16030 15759 sources."escalade-3.2.0" 16031 15760 sources."foreground-child-3.3.0" 16032 - sources."fs-extra-11.2.0" 15761 + sources."fs-extra-11.3.0" 16033 15762 sources."get-caller-file-2.0.5" 16034 15763 sources."glob-10.4.5" 16035 15764 sources."graceful-fs-4.2.11" ··· 16170 15899 }; 16171 15900 dependencies = [ 16172 15901 sources."@babel/cli-7.12.10" 16173 - sources."@babel/code-frame-7.24.7" 16174 - sources."@babel/compat-data-7.25.4" 15902 + sources."@babel/code-frame-7.26.2" 15903 + sources."@babel/compat-data-7.26.8" 16175 15904 sources."@babel/core-7.12.10" 16176 - sources."@babel/generator-7.25.6" 16177 - sources."@babel/helper-annotate-as-pure-7.24.7" 16178 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.24.7" 15905 + sources."@babel/generator-7.26.9" 15906 + sources."@babel/helper-annotate-as-pure-7.25.9" 16179 15907 ( 16180 - sources."@babel/helper-compilation-targets-7.25.2" 15908 + sources."@babel/helper-compilation-targets-7.26.5" 16181 15909 // { 16182 15910 dependencies = [ 16183 15911 sources."semver-6.3.1" ··· 16185 15913 } 16186 15914 ) 16187 15915 ( 16188 - sources."@babel/helper-create-class-features-plugin-7.25.4" 15916 + sources."@babel/helper-create-class-features-plugin-7.26.9" 16189 15917 // { 16190 15918 dependencies = [ 16191 15919 sources."semver-6.3.1" ··· 16193 15921 } 16194 15922 ) 16195 15923 ( 16196 - sources."@babel/helper-create-regexp-features-plugin-7.25.2" 15924 + sources."@babel/helper-create-regexp-features-plugin-7.26.3" 16197 15925 // { 16198 15926 dependencies = [ 16199 15927 sources."semver-6.3.1" ··· 16201 15929 } 16202 15930 ) 16203 15931 sources."@babel/helper-environment-visitor-7.24.7" 16204 - sources."@babel/helper-member-expression-to-functions-7.24.8" 16205 - sources."@babel/helper-module-imports-7.24.7" 16206 - sources."@babel/helper-module-transforms-7.25.2" 16207 - sources."@babel/helper-optimise-call-expression-7.24.7" 16208 - sources."@babel/helper-plugin-utils-7.24.8" 16209 - sources."@babel/helper-remap-async-to-generator-7.25.0" 16210 - sources."@babel/helper-replace-supers-7.25.0" 16211 - sources."@babel/helper-simple-access-7.24.7" 16212 - sources."@babel/helper-skip-transparent-expression-wrappers-7.24.7" 16213 - sources."@babel/helper-string-parser-7.24.8" 16214 - sources."@babel/helper-validator-identifier-7.24.7" 16215 - sources."@babel/helper-validator-option-7.24.8" 16216 - sources."@babel/helper-wrap-function-7.25.0" 16217 - sources."@babel/helpers-7.25.6" 16218 - sources."@babel/highlight-7.24.7" 16219 - sources."@babel/parser-7.25.6" 15932 + sources."@babel/helper-member-expression-to-functions-7.25.9" 15933 + sources."@babel/helper-module-imports-7.25.9" 15934 + sources."@babel/helper-module-transforms-7.26.0" 15935 + sources."@babel/helper-optimise-call-expression-7.25.9" 15936 + sources."@babel/helper-plugin-utils-7.26.5" 15937 + sources."@babel/helper-remap-async-to-generator-7.25.9" 15938 + sources."@babel/helper-replace-supers-7.26.5" 15939 + sources."@babel/helper-skip-transparent-expression-wrappers-7.25.9" 15940 + sources."@babel/helper-string-parser-7.25.9" 15941 + sources."@babel/helper-validator-identifier-7.25.9" 15942 + sources."@babel/helper-validator-option-7.25.9" 15943 + sources."@babel/helper-wrap-function-7.25.9" 15944 + sources."@babel/helpers-7.26.9" 15945 + sources."@babel/highlight-7.25.9" 15946 + sources."@babel/parser-7.26.9" 16220 15947 sources."@babel/plugin-proposal-async-generator-functions-7.20.7" 16221 15948 sources."@babel/plugin-proposal-class-properties-7.18.6" 16222 15949 sources."@babel/plugin-proposal-dynamic-import-7.18.6" ··· 16242 15969 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 16243 15970 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 16244 15971 sources."@babel/plugin-syntax-top-level-await-7.14.5" 16245 - sources."@babel/plugin-transform-arrow-functions-7.24.7" 16246 - sources."@babel/plugin-transform-async-to-generator-7.24.7" 16247 - sources."@babel/plugin-transform-block-scoped-functions-7.24.7" 16248 - sources."@babel/plugin-transform-block-scoping-7.25.0" 16249 - sources."@babel/plugin-transform-classes-7.25.4" 16250 - sources."@babel/plugin-transform-computed-properties-7.24.7" 16251 - sources."@babel/plugin-transform-destructuring-7.24.8" 16252 - sources."@babel/plugin-transform-dotall-regex-7.24.7" 16253 - sources."@babel/plugin-transform-duplicate-keys-7.24.7" 16254 - sources."@babel/plugin-transform-exponentiation-operator-7.24.7" 16255 - sources."@babel/plugin-transform-for-of-7.24.7" 16256 - sources."@babel/plugin-transform-function-name-7.25.1" 16257 - sources."@babel/plugin-transform-literals-7.25.2" 16258 - sources."@babel/plugin-transform-member-expression-literals-7.24.7" 16259 - sources."@babel/plugin-transform-modules-amd-7.24.7" 16260 - sources."@babel/plugin-transform-modules-commonjs-7.24.8" 16261 - sources."@babel/plugin-transform-modules-systemjs-7.25.0" 16262 - sources."@babel/plugin-transform-modules-umd-7.24.7" 16263 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.24.7" 16264 - sources."@babel/plugin-transform-new-target-7.24.7" 16265 - sources."@babel/plugin-transform-object-super-7.24.7" 16266 - sources."@babel/plugin-transform-parameters-7.24.7" 16267 - sources."@babel/plugin-transform-property-literals-7.24.7" 16268 - sources."@babel/plugin-transform-regenerator-7.24.7" 16269 - sources."@babel/plugin-transform-reserved-words-7.24.7" 15972 + sources."@babel/plugin-transform-arrow-functions-7.25.9" 15973 + sources."@babel/plugin-transform-async-to-generator-7.25.9" 15974 + sources."@babel/plugin-transform-block-scoped-functions-7.26.5" 15975 + sources."@babel/plugin-transform-block-scoping-7.25.9" 15976 + sources."@babel/plugin-transform-classes-7.25.9" 15977 + sources."@babel/plugin-transform-computed-properties-7.25.9" 15978 + sources."@babel/plugin-transform-destructuring-7.25.9" 15979 + sources."@babel/plugin-transform-dotall-regex-7.25.9" 15980 + sources."@babel/plugin-transform-duplicate-keys-7.25.9" 15981 + sources."@babel/plugin-transform-exponentiation-operator-7.26.3" 15982 + sources."@babel/plugin-transform-for-of-7.26.9" 15983 + sources."@babel/plugin-transform-function-name-7.25.9" 15984 + sources."@babel/plugin-transform-literals-7.25.9" 15985 + sources."@babel/plugin-transform-member-expression-literals-7.25.9" 15986 + sources."@babel/plugin-transform-modules-amd-7.25.9" 15987 + sources."@babel/plugin-transform-modules-commonjs-7.26.3" 15988 + sources."@babel/plugin-transform-modules-systemjs-7.25.9" 15989 + sources."@babel/plugin-transform-modules-umd-7.25.9" 15990 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.25.9" 15991 + sources."@babel/plugin-transform-new-target-7.25.9" 15992 + sources."@babel/plugin-transform-object-super-7.25.9" 15993 + sources."@babel/plugin-transform-parameters-7.25.9" 15994 + sources."@babel/plugin-transform-property-literals-7.25.9" 15995 + sources."@babel/plugin-transform-regenerator-7.25.9" 15996 + sources."@babel/plugin-transform-reserved-words-7.25.9" 16270 15997 sources."@babel/plugin-transform-runtime-7.12.10" 16271 - sources."@babel/plugin-transform-shorthand-properties-7.24.7" 16272 - sources."@babel/plugin-transform-spread-7.24.7" 16273 - sources."@babel/plugin-transform-sticky-regex-7.24.7" 16274 - sources."@babel/plugin-transform-template-literals-7.24.7" 16275 - sources."@babel/plugin-transform-typeof-symbol-7.24.8" 16276 - sources."@babel/plugin-transform-unicode-escapes-7.24.7" 16277 - sources."@babel/plugin-transform-unicode-regex-7.24.7" 15998 + sources."@babel/plugin-transform-shorthand-properties-7.25.9" 15999 + sources."@babel/plugin-transform-spread-7.25.9" 16000 + sources."@babel/plugin-transform-sticky-regex-7.25.9" 16001 + sources."@babel/plugin-transform-template-literals-7.26.8" 16002 + sources."@babel/plugin-transform-typeof-symbol-7.26.7" 16003 + sources."@babel/plugin-transform-unicode-escapes-7.25.9" 16004 + sources."@babel/plugin-transform-unicode-regex-7.25.9" 16278 16005 sources."@babel/preset-env-7.12.10" 16279 16006 sources."@babel/preset-modules-0.1.6" 16280 - sources."@babel/regjsgen-0.8.0" 16281 16007 sources."@babel/runtime-7.12.5" 16282 - sources."@babel/template-7.25.0" 16283 - sources."@babel/traverse-7.25.6" 16284 - sources."@babel/types-7.25.6" 16008 + sources."@babel/template-7.26.9" 16009 + sources."@babel/traverse-7.26.9" 16010 + sources."@babel/types-7.26.9" 16285 16011 sources."@hapi/address-2.1.4" 16286 16012 sources."@hapi/bourne-1.3.2" 16287 16013 sources."@hapi/hoek-8.5.1" 16288 16014 sources."@hapi/joi-15.1.1" 16289 16015 sources."@hapi/topo-3.1.6" 16290 - sources."@jridgewell/gen-mapping-0.3.5" 16016 + ( 16017 + sources."@isaacs/cliui-8.0.2" 16018 + // { 16019 + dependencies = [ 16020 + sources."ansi-regex-6.1.0" 16021 + sources."emoji-regex-9.2.2" 16022 + sources."string-width-5.1.2" 16023 + sources."strip-ansi-7.1.0" 16024 + ]; 16025 + } 16026 + ) 16027 + sources."@jridgewell/gen-mapping-0.3.8" 16291 16028 sources."@jridgewell/resolve-uri-3.1.2" 16292 16029 sources."@jridgewell/set-array-1.2.1" 16293 16030 sources."@jridgewell/sourcemap-codec-1.5.0" ··· 16296 16033 sources."@nodelib/fs.stat-1.1.3" 16297 16034 sources."@types/glob-7.2.0" 16298 16035 sources."@types/html-minifier-terser-5.1.2" 16299 - sources."@types/http-proxy-1.17.15" 16036 + sources."@types/http-proxy-1.17.16" 16300 16037 sources."@types/json-schema-7.0.15" 16301 16038 sources."@types/minimatch-5.1.2" 16302 - sources."@types/node-22.7.3" 16039 + sources."@types/node-22.13.4" 16303 16040 sources."@types/parse-json-4.0.2" 16304 16041 sources."@types/q-1.5.8" 16305 16042 sources."@types/source-list-map-0.1.6" ··· 16313 16050 } 16314 16051 ) 16315 16052 ( 16316 - sources."@types/webpack-4.41.39" 16053 + sources."@types/webpack-4.41.40" 16317 16054 // { 16318 16055 dependencies = [ 16319 16056 sources."source-map-0.6.1" ··· 16366 16103 sources."arr-diff-4.0.0" 16367 16104 sources."arr-flatten-1.1.0" 16368 16105 sources."arr-union-3.1.0" 16369 - sources."array-buffer-byte-length-1.0.1" 16106 + sources."array-buffer-byte-length-1.0.2" 16370 16107 sources."array-filter-0.0.1" 16371 16108 sources."array-flatten-2.1.2" 16372 16109 sources."array-map-0.0.1" ··· 16375 16112 sources."array-uniq-1.0.3" 16376 16113 sources."array-unique-0.3.2" 16377 16114 sources."array.prototype.reduce-1.0.7" 16378 - sources."arraybuffer.prototype.slice-1.0.3" 16115 + sources."arraybuffer.prototype.slice-1.0.4" 16379 16116 sources."asap-2.0.6" 16380 16117 sources."asn1-0.2.6" 16381 16118 ( 16382 16119 sources."asn1.js-4.10.1" 16383 16120 // { 16384 16121 dependencies = [ 16385 - sources."bn.js-4.12.0" 16122 + sources."bn.js-4.12.1" 16386 16123 ]; 16387 16124 } 16388 16125 ) ··· 16407 16144 sources."assign-symbols-1.0.0" 16408 16145 sources."async-0.9.2" 16409 16146 sources."async-each-1.0.6" 16147 + sources."async-function-1.0.0" 16410 16148 sources."async-limiter-1.0.1" 16411 16149 sources."asynckit-0.4.0" 16412 16150 sources."atob-2.1.2" ··· 16489 16227 sources."browserify-sign-4.2.3" 16490 16228 // { 16491 16229 dependencies = [ 16492 - sources."hash-base-3.0.4" 16493 16230 sources."safe-buffer-5.2.1" 16494 16231 ]; 16495 16232 } 16496 16233 ) 16497 16234 sources."browserify-zlib-0.2.0" 16498 - sources."browserslist-4.24.0" 16235 + sources."browserslist-4.24.4" 16499 16236 sources."buffer-4.9.2" 16500 16237 sources."buffer-from-1.1.2" 16501 16238 sources."buffer-indexof-1.1.1" ··· 16504 16241 sources."bytes-3.1.2" 16505 16242 sources."cacache-12.0.4" 16506 16243 sources."cache-base-1.0.1" 16507 - sources."call-bind-1.0.7" 16244 + sources."call-bind-1.0.8" 16245 + sources."call-bind-apply-helpers-1.0.2" 16246 + sources."call-bound-1.0.3" 16508 16247 sources."call-me-maybe-1.0.2" 16509 16248 sources."caller-callsite-2.0.0" 16510 16249 sources."caller-path-2.0.0" ··· 16512 16251 sources."camel-case-4.1.2" 16513 16252 sources."camelcase-5.3.1" 16514 16253 sources."caniuse-api-3.0.0" 16515 - sources."caniuse-lite-1.0.30001664" 16254 + sources."caniuse-lite-1.0.30001699" 16516 16255 sources."case-sensitive-paths-webpack-plugin-2.3.0" 16517 16256 sources."caseless-0.12.0" 16518 16257 ( ··· 16534 16273 ) 16535 16274 sources."chownr-1.1.4" 16536 16275 sources."chrome-trace-event-1.0.4" 16537 - sources."cipher-base-1.0.4" 16276 + ( 16277 + sources."cipher-base-1.0.6" 16278 + // { 16279 + dependencies = [ 16280 + sources."safe-buffer-5.2.1" 16281 + ]; 16282 + } 16283 + ) 16538 16284 ( 16539 16285 sources."class-utils-0.3.6" 16540 16286 // { ··· 16563 16309 sources."is-fullwidth-code-point-1.0.0" 16564 16310 sources."string-width-1.0.2" 16565 16311 sources."strip-ansi-3.0.1" 16312 + sources."wrap-ansi-2.1.0" 16566 16313 ]; 16567 16314 } 16568 16315 ) ··· 16582 16329 sources."component-emitter-1.3.1" 16583 16330 sources."compressible-2.0.18" 16584 16331 ( 16585 - sources."compression-1.7.4" 16332 + sources."compression-1.8.0" 16586 16333 // { 16587 16334 dependencies = [ 16588 - sources."bytes-3.0.0" 16589 16335 sources."debug-2.6.9" 16590 16336 sources."ms-2.0.0" 16337 + sources."negotiator-0.6.4" 16338 + sources."safe-buffer-5.2.1" 16591 16339 ]; 16592 16340 } 16593 16341 ) ··· 16606 16354 ) 16607 16355 sources."content-type-1.0.5" 16608 16356 sources."convert-source-map-1.9.0" 16609 - sources."cookie-0.6.0" 16357 + sources."cookie-0.7.1" 16610 16358 sources."cookie-signature-1.0.6" 16611 16359 sources."copy-concurrently-1.0.5" 16612 16360 sources."copy-descriptor-0.1.1" ··· 16625 16373 } 16626 16374 ) 16627 16375 sources."core-js-2.6.12" 16628 - sources."core-js-compat-3.38.1" 16376 + sources."core-js-compat-3.40.0" 16629 16377 sources."core-util-is-1.0.3" 16630 16378 sources."cosmiconfig-5.2.1" 16631 16379 ( 16632 16380 sources."create-ecdh-4.0.4" 16633 16381 // { 16634 16382 dependencies = [ 16635 - sources."bn.js-4.12.0" 16383 + sources."bn.js-4.12.1" 16636 16384 ]; 16637 16385 } 16638 16386 ) 16639 16387 sources."create-hash-1.2.0" 16640 16388 sources."create-hmac-1.1.7" 16641 16389 sources."cross-spawn-7.0.3" 16642 - sources."crypto-browserify-3.12.0" 16390 + sources."crypto-browserify-3.12.1" 16643 16391 sources."css-color-names-0.0.4" 16644 16392 ( 16645 16393 sources."css-declaration-sorter-4.0.1" ··· 16659 16407 sources."loader-utils-2.0.4" 16660 16408 sources."picocolors-0.2.1" 16661 16409 sources."postcss-7.0.39" 16662 - sources."semver-7.6.3" 16410 + sources."semver-7.7.1" 16663 16411 sources."source-map-0.6.1" 16664 16412 ]; 16665 16413 } ··· 16722 16470 sources."cycle-1.0.3" 16723 16471 sources."cyclist-1.0.2" 16724 16472 sources."dashdash-1.14.1" 16725 - sources."data-view-buffer-1.0.1" 16726 - sources."data-view-byte-length-1.0.1" 16727 - sources."data-view-byte-offset-1.0.0" 16728 - sources."debug-4.3.7" 16473 + sources."data-view-buffer-1.0.2" 16474 + sources."data-view-byte-length-1.0.2" 16475 + sources."data-view-byte-offset-1.0.1" 16476 + sources."debug-4.4.0" 16729 16477 sources."decamelize-1.2.0" 16730 16478 sources."decode-uri-component-0.2.2" 16731 16479 sources."deep-equal-0.2.2" ··· 16766 16514 sources."diffie-hellman-5.0.3" 16767 16515 // { 16768 16516 dependencies = [ 16769 - sources."bn.js-4.12.0" 16517 + sources."bn.js-4.12.1" 16770 16518 ]; 16771 16519 } 16772 16520 ) ··· 16783 16531 sources."dot-case-3.0.4" 16784 16532 sources."dot-prop-5.3.0" 16785 16533 sources."dotenv-8.2.0" 16534 + sources."dunder-proto-1.0.1" 16786 16535 sources."duplexer-0.1.2" 16787 16536 sources."duplexify-3.7.1" 16537 + sources."eastasianwidth-0.2.0" 16788 16538 sources."ecc-jsbn-0.1.2" 16789 16539 sources."ee-first-1.1.1" 16790 - sources."electron-to-chromium-1.5.29" 16540 + sources."electron-to-chromium-1.5.101" 16791 16541 ( 16792 - sources."elliptic-6.5.7" 16542 + sources."elliptic-6.6.1" 16793 16543 // { 16794 16544 dependencies = [ 16795 - sources."bn.js-4.12.0" 16545 + sources."bn.js-4.12.1" 16796 16546 ]; 16797 16547 } 16798 16548 ) ··· 16800 16550 sources."elm-asset-webpack-loader-1.1.2" 16801 16551 sources."elm-hot-1.1.6" 16802 16552 sources."elm-hot-webpack-loader-1.1.7" 16803 - sources."elm-solve-deps-wasm-1.0.2" 16553 + sources."elm-solve-deps-wasm-2.0.0" 16804 16554 ( 16805 - sources."elm-test-0.19.1-revision12" 16555 + sources."elm-test-0.19.1-revision14" 16806 16556 // { 16807 16557 dependencies = [ 16808 16558 sources."ansi-styles-4.3.0" ··· 16811 16561 sources."color-convert-2.0.1" 16812 16562 sources."color-name-1.1.4" 16813 16563 sources."commander-9.5.0" 16814 - sources."glob-8.1.0" 16564 + sources."cross-spawn-7.0.6" 16565 + sources."glob-10.4.5" 16815 16566 sources."has-flag-4.0.0" 16816 - sources."minimatch-5.1.6" 16567 + sources."minimatch-9.0.5" 16817 16568 sources."supports-color-7.2.0" 16818 16569 ]; 16819 16570 } ··· 16834 16585 sources."entities-2.2.0" 16835 16586 sources."errno-0.1.8" 16836 16587 sources."error-ex-1.3.2" 16837 - sources."es-abstract-1.23.3" 16588 + sources."es-abstract-1.23.9" 16838 16589 sources."es-array-method-boxes-properly-1.0.0" 16839 - sources."es-define-property-1.0.0" 16590 + sources."es-define-property-1.0.1" 16840 16591 sources."es-errors-1.3.0" 16841 - sources."es-object-atoms-1.0.0" 16842 - sources."es-set-tostringtag-2.0.3" 16843 - sources."es-to-primitive-1.2.1" 16592 + sources."es-object-atoms-1.1.1" 16593 + sources."es-set-tostringtag-2.1.0" 16594 + sources."es-to-primitive-1.3.0" 16844 16595 sources."escalade-3.2.0" 16845 16596 sources."escape-html-1.0.3" 16846 16597 sources."escape-string-regexp-2.0.0" ··· 16865 16616 sources."execa-1.0.0" 16866 16617 // { 16867 16618 dependencies = [ 16868 - sources."cross-spawn-6.0.5" 16619 + sources."cross-spawn-6.0.6" 16869 16620 sources."path-key-2.0.1" 16870 16621 sources."shebang-command-1.2.0" 16871 16622 sources."shebang-regex-1.0.0" 16623 + sources."signal-exit-3.0.7" 16872 16624 sources."which-1.3.1" 16873 16625 ]; 16874 16626 } ··· 16887 16639 ) 16888 16640 sources."expand-tilde-2.0.2" 16889 16641 ( 16890 - sources."express-4.21.0" 16642 + sources."express-4.21.2" 16891 16643 // { 16892 16644 dependencies = [ 16893 16645 sources."array-flatten-1.1.1" ··· 16999 16751 sources."firstline-1.3.1" 17000 16752 sources."flush-write-stream-1.1.1" 17001 16753 sources."follow-redirects-1.15.9" 17002 - sources."for-each-0.3.3" 16754 + sources."for-each-0.3.5" 17003 16755 sources."for-in-1.0.2" 16756 + sources."foreground-child-3.3.0" 17004 16757 sources."forever-agent-0.6.1" 17005 16758 sources."form-data-2.3.3" 17006 16759 sources."forwarded-0.2.0" ··· 17014 16767 sources."fs.realpath-1.0.0" 17015 16768 sources."fsevents-1.2.13" 17016 16769 sources."function-bind-1.1.2" 17017 - sources."function.prototype.name-1.1.6" 16770 + sources."function.prototype.name-1.1.8" 17018 16771 sources."functions-have-names-1.2.3" 17019 16772 sources."gensync-1.0.0-beta.2" 17020 16773 sources."get-caller-file-1.0.3" 17021 - sources."get-intrinsic-1.2.4" 16774 + sources."get-intrinsic-1.2.7" 17022 16775 sources."get-own-enumerable-property-symbols-3.0.2" 16776 + sources."get-proto-1.0.1" 17023 16777 sources."get-stream-4.1.0" 17024 - sources."get-symbol-description-1.0.2" 16778 + sources."get-symbol-description-1.1.0" 17025 16779 sources."get-value-2.0.6" 17026 16780 sources."getpass-0.1.7" 17027 16781 sources."glob-7.2.3" ··· 17054 16808 ]; 17055 16809 } 17056 16810 ) 17057 - sources."gopd-1.0.1" 16811 + sources."gopd-1.2.0" 17058 16812 sources."graceful-fs-4.2.11" 17059 16813 ( 17060 16814 sources."gzip-size-5.0.0" ··· 17068 16822 sources."har-schema-2.0.0" 17069 16823 sources."har-validator-5.1.5" 17070 16824 sources."has-1.0.4" 17071 - sources."has-bigints-1.0.2" 16825 + sources."has-bigints-1.1.0" 17072 16826 sources."has-flag-3.0.0" 17073 16827 sources."has-property-descriptors-1.0.2" 17074 - sources."has-proto-1.0.3" 17075 - sources."has-symbols-1.0.3" 16828 + sources."has-proto-1.2.0" 16829 + sources."has-symbols-1.1.0" 17076 16830 sources."has-tostringtag-1.0.2" 17077 16831 sources."has-value-1.0.0" 17078 16832 ( ··· 17092 16846 } 17093 16847 ) 17094 16848 ( 17095 - sources."hash-base-3.1.0" 16849 + sources."hash-base-3.0.5" 17096 16850 // { 17097 16851 dependencies = [ 17098 - sources."readable-stream-3.6.2" 17099 16852 sources."safe-buffer-5.2.1" 17100 16853 ]; 17101 16854 } ··· 17116 16869 sources."htmlparser2-6.1.0" 17117 16870 sources."http-deceiver-1.2.7" 17118 16871 sources."http-errors-2.0.0" 17119 - sources."http-parser-js-0.5.8" 16872 + sources."http-parser-js-0.5.9" 17120 16873 sources."http-proxy-1.18.1" 17121 16874 sources."http-proxy-middleware-0.21.0" 17122 16875 sources."http-signature-1.2.0" ··· 17169 16922 } 17170 16923 ) 17171 16924 sources."internal-ip-4.3.0" 17172 - sources."internal-slot-1.0.7" 16925 + sources."internal-slot-1.1.0" 17173 16926 sources."invert-kv-1.0.0" 17174 16927 sources."ip-1.1.9" 17175 16928 sources."ip-regex-2.1.0" 17176 16929 sources."ipaddr.js-1.9.1" 17177 16930 sources."is-absolute-url-2.1.0" 17178 16931 sources."is-accessor-descriptor-1.0.1" 17179 - sources."is-arguments-1.1.1" 17180 - sources."is-array-buffer-3.0.4" 16932 + sources."is-arguments-1.2.0" 16933 + sources."is-array-buffer-3.0.5" 17181 16934 sources."is-arrayish-0.2.1" 17182 - sources."is-bigint-1.0.4" 16935 + sources."is-async-function-2.1.1" 16936 + sources."is-bigint-1.1.0" 17183 16937 sources."is-binary-path-2.1.0" 17184 - sources."is-boolean-object-1.1.2" 16938 + sources."is-boolean-object-1.2.2" 17185 16939 sources."is-buffer-1.1.6" 17186 16940 sources."is-callable-1.2.7" 17187 16941 sources."is-color-stop-1.1.0" 17188 - sources."is-core-module-2.15.1" 16942 + sources."is-core-module-2.16.1" 17189 16943 sources."is-data-descriptor-1.0.1" 17190 - sources."is-data-view-1.0.1" 17191 - sources."is-date-object-1.0.5" 16944 + sources."is-data-view-1.0.2" 16945 + sources."is-date-object-1.1.0" 17192 16946 sources."is-descriptor-1.0.3" 17193 16947 sources."is-directory-0.3.1" 17194 16948 sources."is-extendable-0.1.1" 17195 16949 sources."is-extglob-2.1.1" 16950 + sources."is-finalizationregistry-1.1.1" 17196 16951 sources."is-fullwidth-code-point-3.0.0" 16952 + sources."is-generator-function-1.1.0" 17197 16953 sources."is-glob-4.0.3" 17198 - sources."is-negative-zero-2.0.3" 16954 + sources."is-map-2.0.3" 17199 16955 sources."is-number-7.0.0" 17200 - sources."is-number-object-1.0.7" 16956 + sources."is-number-object-1.1.1" 17201 16957 sources."is-obj-2.0.0" 17202 16958 sources."is-path-cwd-2.2.0" 17203 16959 sources."is-path-in-cwd-2.1.0" 17204 16960 sources."is-path-inside-2.1.0" 17205 16961 sources."is-plain-obj-1.1.0" 17206 16962 sources."is-plain-object-2.0.4" 17207 - sources."is-regex-1.1.4" 16963 + sources."is-regex-1.2.1" 17208 16964 sources."is-regexp-1.0.0" 17209 16965 sources."is-resolvable-1.1.0" 17210 16966 sources."is-root-2.0.0" 17211 - sources."is-shared-array-buffer-1.0.3" 16967 + sources."is-set-2.0.3" 16968 + sources."is-shared-array-buffer-1.0.4" 17212 16969 sources."is-stream-1.1.0" 17213 - sources."is-string-1.0.7" 17214 - sources."is-symbol-1.0.4" 17215 - sources."is-typed-array-1.1.13" 16970 + sources."is-string-1.1.1" 16971 + sources."is-symbol-1.1.1" 16972 + sources."is-typed-array-1.1.15" 17216 16973 sources."is-typedarray-1.0.0" 17217 16974 sources."is-utf8-0.2.1" 17218 - sources."is-weakref-1.0.2" 16975 + sources."is-weakmap-2.0.2" 16976 + sources."is-weakref-1.1.1" 16977 + sources."is-weakset-2.0.4" 17219 16978 sources."is-windows-1.0.2" 17220 16979 sources."is-wsl-1.1.0" 17221 16980 sources."isarray-1.0.0" 17222 16981 sources."isexe-2.0.0" 17223 16982 sources."isobject-3.0.1" 17224 16983 sources."isstream-0.1.2" 16984 + sources."jackspeak-3.4.3" 17225 16985 sources."js-tokens-4.0.0" 17226 16986 sources."js-yaml-3.14.1" 17227 16987 sources."jsbn-0.1.1" 17228 - sources."jsesc-2.5.2" 16988 + sources."jsesc-3.1.0" 17229 16989 sources."json-parse-better-errors-1.0.2" 17230 16990 sources."json-parse-even-better-errors-2.3.1" 17231 16991 sources."json-schema-0.4.0" 17232 16992 sources."json-schema-traverse-0.4.1" 17233 16993 ( 17234 - sources."json-stable-stringify-1.1.1" 16994 + sources."json-stable-stringify-1.2.1" 17235 16995 // { 17236 16996 dependencies = [ 17237 16997 sources."isarray-2.0.5" ··· 17281 17041 sources."make-dir-2.1.0" 17282 17042 sources."map-cache-0.2.2" 17283 17043 sources."map-visit-1.0.0" 17044 + sources."math-intrinsics-1.1.0" 17284 17045 sources."md5.js-1.3.5" 17285 17046 sources."mdn-data-2.0.14" 17286 17047 sources."media-typer-0.3.0" ··· 17293 17054 sources."miller-rabin-4.0.1" 17294 17055 // { 17295 17056 dependencies = [ 17296 - sources."bn.js-4.12.0" 17057 + sources."bn.js-4.12.1" 17297 17058 ]; 17298 17059 } 17299 17060 ) ··· 17313 17074 sources."minimalistic-crypto-utils-1.0.1" 17314 17075 sources."minimatch-3.1.2" 17315 17076 sources."minimist-1.2.5" 17077 + sources."minipass-7.1.2" 17316 17078 sources."mississippi-3.0.0" 17317 17079 ( 17318 17080 sources."mixin-deep-1.3.2" ··· 17328 17090 sources."multicast-dns-6.2.3" 17329 17091 sources."multicast-dns-service-types-1.1.0" 17330 17092 sources."mute-stream-0.0.8" 17331 - sources."nan-2.20.0" 17332 - sources."nanoid-3.3.7" 17093 + sources."nan-2.22.0" 17094 + sources."nanoid-3.3.8" 17333 17095 sources."nanomatch-1.2.13" 17334 17096 sources."ncp-1.0.1" 17335 17097 sources."negotiator-0.6.3" ··· 17357 17119 ]; 17358 17120 } 17359 17121 ) 17360 - sources."node-releases-2.0.18" 17122 + sources."node-releases-2.0.19" 17361 17123 sources."normalize-package-data-2.5.0" 17362 17124 sources."normalize-path-3.0.0" 17363 17125 sources."normalize-range-0.1.2" ··· 17384 17146 ]; 17385 17147 } 17386 17148 ) 17387 - sources."object-inspect-1.13.2" 17149 + sources."object-inspect-1.13.4" 17388 17150 sources."object-is-1.1.6" 17389 17151 sources."object-keys-1.1.1" 17390 17152 sources."object-visit-1.0.1" 17391 - sources."object.assign-4.1.5" 17153 + sources."object.assign-4.1.7" 17392 17154 sources."object.entries-1.1.8" 17393 17155 sources."object.getownpropertydescriptors-2.1.8" 17394 17156 sources."object.pick-1.3.0" 17395 - sources."object.values-1.2.0" 17157 + sources."object.values-1.2.1" 17396 17158 sources."obuf-1.1.2" 17397 17159 sources."on-finished-2.4.1" 17398 17160 sources."on-headers-1.0.2" ··· 17404 17166 sources."os-browserify-0.3.0" 17405 17167 sources."os-locale-1.4.0" 17406 17168 sources."os-tmpdir-1.0.2" 17169 + sources."own-keys-1.0.1" 17407 17170 sources."p-finally-1.0.0" 17408 17171 sources."p-limit-2.3.0" 17409 17172 sources."p-locate-4.1.0" 17410 17173 sources."p-map-2.1.0" 17411 17174 sources."p-retry-3.0.1" 17412 17175 sources."p-try-2.2.0" 17176 + sources."package-json-from-dist-1.0.1" 17413 17177 sources."pako-1.0.11" 17414 17178 sources."parallel-transform-1.2.0" 17415 17179 sources."param-case-3.0.4" ··· 17425 17189 sources."parse-asn1-5.1.7" 17426 17190 // { 17427 17191 dependencies = [ 17428 - sources."hash-base-3.0.4" 17429 17192 sources."safe-buffer-5.2.1" 17430 17193 ]; 17431 17194 } ··· 17442 17205 sources."path-is-inside-1.0.2" 17443 17206 sources."path-key-3.1.1" 17444 17207 sources."path-parse-1.0.7" 17445 - sources."path-to-regexp-0.1.10" 17208 + ( 17209 + sources."path-scurry-1.11.1" 17210 + // { 17211 + dependencies = [ 17212 + sources."lru-cache-10.4.3" 17213 + ]; 17214 + } 17215 + ) 17216 + sources."path-to-regexp-0.1.12" 17446 17217 ( 17447 17218 sources."path-type-3.0.0" 17448 17219 // { ··· 17453 17224 ) 17454 17225 sources."pbkdf2-3.1.2" 17455 17226 sources."performance-now-2.1.0" 17456 - sources."picocolors-1.1.0" 17227 + sources."picocolors-1.1.1" 17457 17228 sources."picomatch-2.3.1" 17458 17229 sources."pify-4.0.1" 17459 17230 sources."pinkie-2.0.4" ··· 17485 17256 } 17486 17257 ) 17487 17258 sources."posix-character-classes-0.1.1" 17488 - sources."possible-typed-array-names-1.0.0" 17489 - sources."postcss-8.4.47" 17259 + sources."possible-typed-array-names-1.1.0" 17260 + sources."postcss-8.5.2" 17490 17261 ( 17491 17262 sources."postcss-calc-7.0.5" 17492 17263 // { ··· 17574 17345 // { 17575 17346 dependencies = [ 17576 17347 sources."cosmiconfig-7.1.0" 17577 - sources."import-fresh-3.3.0" 17348 + sources."import-fresh-3.3.1" 17578 17349 sources."loader-utils-2.0.4" 17579 17350 sources."parse-json-5.2.0" 17580 17351 sources."path-type-4.0.0" 17581 17352 sources."resolve-from-4.0.0" 17582 17353 sources."schema-utils-3.3.0" 17583 - sources."semver-7.6.3" 17354 + sources."semver-7.7.1" 17584 17355 ]; 17585 17356 } 17586 17357 ) ··· 17856 17627 sources."proxy-addr-2.0.7" 17857 17628 sources."prr-1.0.1" 17858 17629 sources."pseudomap-1.0.2" 17859 - sources."psl-1.9.0" 17630 + sources."psl-1.15.0" 17860 17631 ( 17861 17632 sources."public-encrypt-4.0.3" 17862 17633 // { 17863 17634 dependencies = [ 17864 - sources."bn.js-4.12.0" 17635 + sources."bn.js-4.12.1" 17865 17636 ]; 17866 17637 } 17867 17638 ) ··· 17948 17719 ]; 17949 17720 } 17950 17721 ) 17722 + sources."reflect.getprototypeof-1.0.10" 17951 17723 sources."regenerate-1.4.2" 17952 17724 sources."regenerate-unicode-properties-10.2.0" 17953 17725 sources."regenerator-runtime-0.13.11" 17954 17726 sources."regenerator-transform-0.15.2" 17955 17727 sources."regex-not-1.0.2" 17956 - sources."regexp.prototype.flags-1.5.2" 17957 - sources."regexpu-core-5.3.2" 17728 + sources."regexp.prototype.flags-1.5.4" 17729 + sources."regexpu-core-6.2.0" 17730 + sources."regjsgen-0.8.0" 17958 17731 ( 17959 - sources."regjsparser-0.9.1" 17732 + sources."regjsparser-0.12.0" 17960 17733 // { 17961 17734 dependencies = [ 17962 - sources."jsesc-0.5.0" 17735 + sources."jsesc-3.0.2" 17963 17736 ]; 17964 17737 } 17965 17738 ) ··· 17980 17753 sources."require-directory-2.1.1" 17981 17754 sources."require-main-filename-1.0.1" 17982 17755 sources."requires-port-1.0.0" 17983 - sources."resolve-1.22.8" 17756 + sources."resolve-1.22.10" 17984 17757 sources."resolve-cwd-2.0.0" 17985 17758 sources."resolve-dir-1.0.1" 17986 17759 sources."resolve-from-3.0.0" 17987 17760 sources."resolve-url-0.2.1" 17988 - sources."restore-cursor-2.0.0" 17761 + ( 17762 + sources."restore-cursor-2.0.0" 17763 + // { 17764 + dependencies = [ 17765 + sources."signal-exit-3.0.7" 17766 + ]; 17767 + } 17768 + ) 17989 17769 sources."ret-0.1.15" 17990 17770 sources."retry-0.12.0" 17991 17771 sources."revalidator-0.1.8" ··· 18004 17784 } 18005 17785 ) 18006 17786 ( 18007 - sources."safe-array-concat-1.1.2" 17787 + sources."safe-array-concat-1.1.3" 18008 17788 // { 18009 17789 dependencies = [ 18010 17790 sources."isarray-2.0.5" ··· 18012 17792 } 18013 17793 ) 18014 17794 sources."safe-buffer-5.1.2" 17795 + ( 17796 + sources."safe-push-apply-1.0.0" 17797 + // { 17798 + dependencies = [ 17799 + sources."isarray-2.0.5" 17800 + ]; 17801 + } 17802 + ) 18015 17803 sources."safe-regex-1.1.0" 18016 - sources."safe-regex-test-1.0.3" 17804 + sources."safe-regex-test-1.1.0" 18017 17805 sources."safer-buffer-2.1.2" 18018 17806 sources."sax-1.2.4" 18019 17807 sources."schema-utils-2.7.1" ··· 18055 17843 sources."set-blocking-2.0.0" 18056 17844 sources."set-function-length-1.2.2" 18057 17845 sources."set-function-name-2.0.2" 17846 + sources."set-proto-1.0.0" 18058 17847 ( 18059 17848 sources."set-value-2.0.1" 18060 17849 // { ··· 18069 17858 sources."shebang-command-2.0.0" 18070 17859 sources."shebang-regex-3.0.0" 18071 17860 sources."shell-quote-1.6.1" 18072 - sources."side-channel-1.0.6" 18073 - sources."signal-exit-3.0.7" 17861 + sources."side-channel-1.1.0" 17862 + sources."side-channel-list-1.0.0" 17863 + sources."side-channel-map-1.0.1" 17864 + sources."side-channel-weakmap-1.0.2" 17865 + sources."signal-exit-4.1.0" 18074 17866 ( 18075 17867 sources."simple-swizzle-0.2.2" 18076 17868 // { ··· 18143 17935 sources."spdx-correct-3.2.0" 18144 17936 sources."spdx-exceptions-2.5.0" 18145 17937 sources."spdx-expression-parse-3.0.1" 18146 - sources."spdx-license-ids-3.0.20" 17938 + sources."spdx-license-ids-3.0.21" 18147 17939 sources."spdy-4.0.2" 18148 17940 ( 18149 17941 sources."spdy-transport-3.0.0" ··· 18184 17976 ]; 18185 17977 } 18186 17978 ) 18187 - sources."string.prototype.trim-1.2.9" 18188 - sources."string.prototype.trimend-1.0.8" 17979 + ( 17980 + sources."string-width-cjs-4.2.3" 17981 + // { 17982 + dependencies = [ 17983 + sources."strip-ansi-6.0.1" 17984 + ]; 17985 + } 17986 + ) 17987 + sources."string.prototype.trim-1.2.10" 17988 + sources."string.prototype.trimend-1.0.9" 18189 17989 sources."string.prototype.trimstart-1.0.8" 18190 17990 sources."string_decoder-1.1.1" 18191 17991 ( ··· 18197 17997 } 18198 17998 ) 18199 17999 sources."strip-ansi-6.0.0" 18000 + sources."strip-ansi-cjs-6.0.1" 18200 18001 sources."strip-bom-2.0.0" 18201 18002 sources."strip-comments-1.0.2" 18202 18003 sources."strip-eof-1.0.0" ··· 18282 18083 sources."timsort-0.3.0" 18283 18084 sources."tmp-0.0.33" 18284 18085 sources."to-arraybuffer-1.0.1" 18285 - sources."to-fast-properties-2.0.0" 18286 18086 ( 18287 18087 sources."to-object-path-0.3.0" 18288 18088 // { ··· 18295 18095 sources."to-regex-range-5.0.1" 18296 18096 sources."toidentifier-1.0.1" 18297 18097 sources."tough-cookie-2.5.0" 18298 - sources."tslib-2.7.0" 18098 + sources."tslib-2.8.1" 18299 18099 sources."tty-browserify-0.0.0" 18300 18100 sources."tunnel-agent-0.6.0" 18301 18101 sources."tweetnacl-0.14.5" 18302 18102 sources."type-is-1.6.18" 18303 - sources."typed-array-buffer-1.0.2" 18304 - sources."typed-array-byte-length-1.0.1" 18305 - sources."typed-array-byte-offset-1.0.2" 18306 - sources."typed-array-length-1.0.6" 18103 + sources."typed-array-buffer-1.0.3" 18104 + sources."typed-array-byte-length-1.0.3" 18105 + sources."typed-array-byte-offset-1.0.4" 18106 + sources."typed-array-length-1.0.7" 18307 18107 sources."typedarray-0.0.6" 18308 18108 ( 18309 18109 sources."uglify-es-3.3.10" ··· 18340 18140 ]; 18341 18141 } 18342 18142 ) 18343 - sources."unbox-primitive-1.0.2" 18344 - sources."undici-types-6.19.8" 18143 + sources."unbox-primitive-1.1.0" 18144 + sources."undici-types-6.20.0" 18345 18145 sources."unicode-canonical-property-names-ecmascript-2.0.1" 18346 18146 sources."unicode-match-property-ecmascript-2.0.0" 18347 18147 sources."unicode-match-property-value-ecmascript-2.2.0" ··· 18371 18171 } 18372 18172 ) 18373 18173 sources."upath-1.2.0" 18374 - sources."update-browserslist-db-1.1.1" 18174 + sources."update-browserslist-db-1.1.2" 18375 18175 sources."uri-js-4.4.1" 18376 18176 sources."urix-0.1.0" 18377 18177 ( ··· 18379 18179 // { 18380 18180 dependencies = [ 18381 18181 sources."punycode-1.4.1" 18382 - sources."qs-6.13.0" 18182 + sources."qs-6.14.0" 18383 18183 ]; 18384 18184 } 18385 18185 ) ··· 18574 18374 sources."websocket-extensions-0.1.4" 18575 18375 sources."whatwg-fetch-3.5.0" 18576 18376 sources."which-2.0.2" 18577 - sources."which-boxed-primitive-1.0.2" 18377 + sources."which-boxed-primitive-1.1.1" 18378 + ( 18379 + sources."which-builtin-type-1.2.1" 18380 + // { 18381 + dependencies = [ 18382 + sources."isarray-2.0.5" 18383 + ]; 18384 + } 18385 + ) 18386 + sources."which-collection-1.0.2" 18578 18387 sources."which-module-1.0.0" 18579 - sources."which-typed-array-1.1.15" 18388 + sources."which-typed-array-1.1.18" 18580 18389 ( 18581 18390 sources."winston-2.1.1" 18582 18391 // { ··· 18612 18421 sources."workbox-window-4.3.1" 18613 18422 sources."worker-farm-1.7.0" 18614 18423 ( 18615 - sources."wrap-ansi-2.1.0" 18424 + sources."wrap-ansi-8.1.0" 18425 + // { 18426 + dependencies = [ 18427 + sources."ansi-regex-6.1.0" 18428 + sources."ansi-styles-6.2.1" 18429 + sources."emoji-regex-9.2.2" 18430 + sources."string-width-5.1.2" 18431 + sources."strip-ansi-7.1.0" 18432 + ]; 18433 + } 18434 + ) 18435 + ( 18436 + sources."wrap-ansi-cjs-7.0.0" 18616 18437 // { 18617 18438 dependencies = [ 18618 - sources."ansi-regex-2.1.1" 18619 - sources."is-fullwidth-code-point-1.0.0" 18620 - sources."string-width-1.0.2" 18621 - sources."strip-ansi-3.0.1" 18439 + sources."ansi-styles-4.3.0" 18440 + sources."color-convert-2.0.1" 18441 + sources."color-name-1.1.4" 18622 18442 ]; 18623 18443 } 18624 18444 ) ··· 18735 18555 elm-pages = nodeEnv.buildNodePackage { 18736 18556 name = "elm-pages"; 18737 18557 packageName = "elm-pages"; 18738 - version = "3.0.16"; 18558 + version = "3.0.20"; 18739 18559 src = fetchurl { 18740 - url = "https://registry.npmjs.org/elm-pages/-/elm-pages-3.0.16.tgz"; 18741 - sha512 = "UG/tC57uFQ5bkhW+L+7ZFjSg0uPHEtUPsjotHl8CzXHqfOUR4pRIqQ6kyi7DOGxStmoTyTvjh7TFZGA54/mXgw=="; 18560 + url = "https://registry.npmjs.org/elm-pages/-/elm-pages-3.0.20.tgz"; 18561 + sha512 = "fuK5egJEGYBGZQpVUE4HaaSZXIepEraRj9x3jO0HOH4pPzbCzlSIGOvzxmdeXBKpwMBUtOlAzHQegHuMrcSrgA=="; 18742 18562 }; 18743 18563 dependencies = [ 18744 18564 sources."@adobe/css-tools-4.3.3" 18745 - sources."@bufbuild/protobuf-2.1.0" 18565 + sources."@bufbuild/protobuf-2.2.3" 18746 18566 sources."@isaacs/cliui-8.0.2" 18747 - sources."@jridgewell/gen-mapping-0.3.5" 18567 + sources."@isaacs/fs-minipass-4.0.1" 18568 + sources."@jridgewell/gen-mapping-0.3.8" 18748 18569 sources."@jridgewell/resolve-uri-3.1.2" 18749 18570 sources."@jridgewell/set-array-1.2.1" 18750 18571 sources."@jridgewell/source-map-0.3.6" ··· 18754 18575 sources."@jsonjoy.com/base64-1.1.2" 18755 18576 // { 18756 18577 dependencies = [ 18757 - sources."tslib-2.7.0" 18578 + sources."tslib-2.8.1" 18758 18579 ]; 18759 18580 } 18760 18581 ) 18761 18582 ( 18762 - sources."@jsonjoy.com/json-pack-1.1.0" 18583 + sources."@jsonjoy.com/json-pack-1.1.1" 18763 18584 // { 18764 18585 dependencies = [ 18765 - sources."tslib-2.7.0" 18586 + sources."tslib-2.8.1" 18766 18587 ]; 18767 18588 } 18768 18589 ) 18769 18590 ( 18770 - sources."@jsonjoy.com/util-1.3.0" 18591 + sources."@jsonjoy.com/util-1.5.0" 18771 18592 // { 18772 18593 dependencies = [ 18773 - sources."tslib-2.7.0" 18594 + sources."tslib-2.8.1" 18774 18595 ]; 18775 18596 } 18776 18597 ) 18777 18598 sources."@nodelib/fs.scandir-2.1.5" 18778 18599 sources."@nodelib/fs.stat-2.0.5" 18779 18600 sources."@nodelib/fs.walk-1.2.8" 18780 - sources."@npmcli/agent-2.2.2" 18781 18601 ( 18782 - sources."@npmcli/fs-3.1.1" 18602 + sources."@npmcli/agent-3.0.0" 18783 18603 // { 18784 18604 dependencies = [ 18785 - sources."semver-7.6.3" 18605 + sources."lru-cache-10.4.3" 18786 18606 ]; 18787 18607 } 18788 18608 ) 18789 - sources."@sindresorhus/is-0.14.0" 18790 - sources."@sindresorhus/merge-streams-3.0.0" 18791 - sources."@szmarczak/http-timer-1.1.2" 18609 + sources."@npmcli/fs-4.0.0" 18610 + sources."@pnpm/config.env-replace-1.1.0" 18611 + sources."@pnpm/network.ca-file-1.0.2" 18612 + sources."@pnpm/npm-conf-2.3.1" 18613 + sources."@sindresorhus/merge-streams-4.0.0" 18792 18614 sources."@types/configstore-2.1.1" 18793 18615 sources."@types/debug-0.0.30" 18794 18616 sources."@types/estree-1.0.6" 18795 18617 sources."@types/get-port-3.2.0" 18796 18618 sources."@types/glob-5.0.38" 18797 - sources."@types/lodash-4.17.9" 18619 + sources."@types/lodash-4.17.15" 18798 18620 sources."@types/minimatch-5.1.2" 18799 18621 sources."@types/mkdirp-0.5.2" 18800 18622 sources."@types/node-8.10.66" 18801 18623 sources."@types/rimraf-2.0.5" 18802 18624 sources."@types/tmp-0.0.33" 18803 18625 sources."accepts-1.3.8" 18804 - sources."acorn-8.12.1" 18805 - ( 18806 - sources."agent-base-7.1.1" 18807 - // { 18808 - dependencies = [ 18809 - sources."debug-4.3.7" 18810 - sources."ms-2.1.3" 18811 - ]; 18812 - } 18813 - ) 18814 - sources."aggregate-error-3.1.0" 18626 + sources."acorn-8.14.0" 18627 + sources."agent-base-7.1.3" 18815 18628 sources."ansi-escapes-4.3.2" 18816 18629 sources."ansi-regex-5.0.1" 18817 - sources."ansi-styles-4.3.0" 18630 + sources."ansi-styles-6.2.1" 18818 18631 sources."anymatch-3.1.3" 18819 18632 sources."application-config-path-0.1.1" 18820 18633 sources."argparse-1.0.10" 18821 18634 sources."array-flatten-1.1.1" 18822 - sources."async-limiter-1.0.1" 18823 18635 sources."balanced-match-1.0.2" 18824 18636 sources."batch-0.6.1" 18825 18637 sources."binary-extensions-2.3.0" ··· 18835 18647 sources."braces-3.0.3" 18836 18648 sources."buffer-builder-0.2.0" 18837 18649 sources."buffer-from-1.1.2" 18838 - sources."bufferutil-4.0.8" 18650 + sources."bufferutil-4.0.9" 18651 + sources."bundle-name-4.1.0" 18839 18652 sources."busboy-1.6.0" 18840 18653 sources."bytes-3.1.2" 18841 18654 ( 18842 - sources."cacache-18.0.4" 18655 + sources."cacache-19.0.1" 18843 18656 // { 18844 18657 dependencies = [ 18845 18658 sources."brace-expansion-2.0.1" 18846 18659 sources."glob-10.4.5" 18660 + sources."jackspeak-3.4.3" 18661 + sources."lru-cache-10.4.3" 18847 18662 sources."minimatch-9.0.5" 18848 - ]; 18849 - } 18850 - ) 18851 - ( 18852 - sources."cacheable-request-6.1.0" 18853 - // { 18854 - dependencies = [ 18855 - sources."get-stream-5.2.0" 18856 - sources."lowercase-keys-2.0.0" 18663 + sources."path-scurry-1.11.1" 18857 18664 ]; 18858 18665 } 18859 18666 ) 18860 - sources."call-bind-1.0.7" 18861 - sources."chalk-3.0.0" 18862 - sources."chokidar-3.6.0" 18863 - sources."chownr-2.0.0" 18864 - sources."clean-stack-2.2.0" 18865 - sources."cli-cursor-4.0.0" 18866 - sources."clone-response-1.0.3" 18667 + sources."call-bind-apply-helpers-1.0.2" 18668 + sources."call-bound-1.0.3" 18669 + sources."chalk-5.4.1" 18670 + sources."chokidar-4.0.3" 18671 + sources."chownr-3.0.0" 18672 + sources."cli-cursor-5.0.0" 18867 18673 sources."color-convert-2.0.1" 18868 18674 sources."color-name-1.1.4" 18869 18675 sources."colorjs.io-0.5.2" 18870 18676 sources."command-exists-1.2.9" 18871 - sources."commander-11.1.0" 18677 + sources."commander-12.1.0" 18872 18678 sources."concat-map-0.0.1" 18679 + sources."config-chain-1.1.13" 18873 18680 sources."connect-3.7.0" 18874 18681 sources."content-disposition-0.5.4" 18875 18682 sources."content-type-1.0.5" 18876 - sources."cookie-0.6.0" 18877 - sources."cookie-signature-1.2.1" 18683 + sources."cookie-0.7.1" 18684 + sources."cookie-signature-1.2.2" 18878 18685 sources."copy-anything-2.0.6" 18879 18686 ( 18880 - sources."cross-spawn-7.0.3" 18687 + sources."cross-spawn-7.0.6" 18881 18688 // { 18882 18689 dependencies = [ 18883 18690 sources."which-2.0.2" ··· 18885 18692 } 18886 18693 ) 18887 18694 sources."debug-2.6.9" 18888 - sources."decompress-response-3.3.0" 18889 18695 sources."deep-extend-0.6.0" 18890 - sources."defer-to-connect-1.1.3" 18891 - sources."define-data-property-1.1.4" 18696 + sources."default-browser-5.2.1" 18697 + sources."default-browser-id-5.0.0" 18698 + sources."define-lazy-prop-3.0.0" 18892 18699 sources."depd-2.0.0" 18893 18700 sources."destroy-1.2.0" 18894 18701 sources."detect-libc-1.0.3" ··· 18901 18708 ]; 18902 18709 } 18903 18710 ) 18904 - sources."duplexer3-0.1.5" 18711 + sources."dunder-proto-1.0.1" 18905 18712 sources."eastasianwidth-0.2.0" 18906 18713 sources."ee-first-1.1.1" 18907 18714 ( 18908 - sources."elm-doc-preview-5.0.5" 18715 + sources."elm-doc-preview-6.0.1" 18909 18716 // { 18910 18717 dependencies = [ 18911 - sources."commander-5.1.0" 18912 - sources."tmp-0.1.0" 18718 + sources."brace-expansion-2.0.1" 18719 + sources."chokidar-3.6.0" 18720 + sources."glob-11.0.1" 18721 + sources."minimatch-10.0.1" 18722 + sources."readdirp-3.6.0" 18723 + sources."tmp-0.2.3" 18913 18724 ]; 18914 18725 } 18915 18726 ) 18916 18727 sources."elm-hot-1.1.6" 18917 18728 sources."emoji-regex-9.2.2" 18918 18729 sources."encodeurl-1.0.2" 18919 - sources."end-of-stream-1.4.4" 18920 18730 sources."eol-0.9.1" 18921 18731 sources."err-code-2.0.3" 18922 18732 sources."errno-0.1.8" 18923 - sources."es-define-property-1.0.0" 18733 + sources."es-define-property-1.0.1" 18924 18734 sources."es-errors-1.3.0" 18925 - sources."esbuild-0.21.5" 18735 + sources."es-object-atoms-1.1.1" 18736 + sources."esbuild-0.24.2" 18926 18737 sources."escape-html-1.0.3" 18927 18738 sources."esprima-4.0.1" 18928 18739 sources."etag-1.8.1" 18929 18740 ( 18930 - sources."express-4.21.0" 18741 + sources."express-4.21.2" 18931 18742 // { 18932 18743 dependencies = [ 18933 18744 sources."cookie-signature-1.0.6" ··· 18939 18750 } 18940 18751 ) 18941 18752 ( 18942 - sources."express-ws-4.0.0" 18753 + sources."express-ws-5.0.2" 18943 18754 // { 18944 18755 dependencies = [ 18945 - sources."ws-5.2.4" 18756 + sources."ws-7.5.10" 18946 18757 ]; 18947 18758 } 18948 18759 ) 18949 18760 sources."extend-shallow-2.0.1" 18950 - sources."fast-glob-3.3.2" 18951 - sources."fastq-1.17.1" 18761 + sources."fast-glob-3.3.3" 18762 + sources."fastq-1.19.0" 18952 18763 sources."fill-range-7.1.1" 18953 18764 sources."finalhandler-1.1.2" 18954 - ( 18955 - sources."foreground-child-3.3.0" 18956 - // { 18957 - dependencies = [ 18958 - sources."signal-exit-4.1.0" 18959 - ]; 18960 - } 18961 - ) 18765 + sources."foreground-child-3.3.0" 18962 18766 sources."forwarded-0.2.0" 18963 18767 sources."fresh-0.5.2" 18964 - sources."fs-extra-11.2.0" 18768 + sources."fs-extra-11.3.0" 18965 18769 sources."fs-minipass-3.0.3" 18966 18770 sources."fs.realpath-1.0.0" 18967 18771 sources."function-bind-1.1.2" 18968 - sources."get-intrinsic-1.2.4" 18772 + sources."get-intrinsic-1.2.7" 18969 18773 sources."get-port-3.2.0" 18970 - sources."get-stream-4.1.0" 18774 + sources."get-proto-1.0.1" 18775 + sources."get-tsconfig-4.10.0" 18971 18776 sources."glob-7.2.3" 18972 18777 sources."glob-parent-5.1.2" 18973 18778 ( 18974 - sources."globby-14.0.0" 18779 + sources."globby-14.0.2" 18975 18780 // { 18976 18781 dependencies = [ 18977 - sources."@sindresorhus/merge-streams-1.0.0" 18782 + sources."@sindresorhus/merge-streams-2.3.0" 18978 18783 ]; 18979 18784 } 18980 18785 ) 18981 - sources."gopd-1.0.1" 18982 - sources."got-9.6.0" 18983 - sources."graceful-fs-4.2.11" 18786 + sources."gopd-1.2.0" 18787 + sources."graceful-fs-4.2.10" 18984 18788 sources."gray-matter-4.0.3" 18985 18789 sources."has-flag-4.0.0" 18986 - sources."has-property-descriptors-1.0.2" 18987 - sources."has-proto-1.0.3" 18988 - sources."has-symbols-1.0.3" 18790 + sources."has-symbols-1.1.0" 18989 18791 sources."hasown-2.0.2" 18990 18792 sources."http-cache-semantics-4.1.1" 18991 18793 ( ··· 19000 18802 sources."http-proxy-agent-7.0.2" 19001 18803 // { 19002 18804 dependencies = [ 19003 - sources."debug-4.3.7" 18805 + sources."debug-4.4.0" 19004 18806 sources."ms-2.1.3" 19005 18807 ]; 19006 18808 } 19007 18809 ) 19008 18810 ( 19009 - sources."https-proxy-agent-7.0.5" 18811 + sources."https-proxy-agent-7.0.6" 19010 18812 // { 19011 18813 dependencies = [ 19012 - sources."debug-4.3.7" 18814 + sources."debug-4.4.0" 19013 18815 sources."ms-2.1.3" 19014 18816 ]; 19015 18817 } ··· 19018 18820 sources."iconv-lite-0.4.24" 19019 18821 sources."ignore-5.3.2" 19020 18822 sources."image-size-0.5.5" 19021 - sources."immutable-4.3.7" 18823 + sources."immutable-5.0.3" 19022 18824 sources."imurmurhash-0.1.4" 19023 - sources."indent-string-4.0.0" 19024 18825 sources."inflight-1.0.6" 19025 18826 sources."inherits-2.0.4" 19026 18827 sources."ini-1.3.8" ··· 19034 18835 ) 19035 18836 sources."ipaddr.js-1.9.1" 19036 18837 sources."is-binary-path-2.1.0" 19037 - sources."is-docker-2.2.1" 18838 + sources."is-docker-3.0.0" 19038 18839 sources."is-extendable-0.1.1" 19039 18840 sources."is-extglob-2.1.1" 19040 18841 sources."is-fullwidth-code-point-3.0.0" 19041 18842 sources."is-glob-4.0.3" 19042 - sources."is-lambda-1.0.1" 18843 + sources."is-inside-container-1.0.0" 19043 18844 sources."is-number-7.0.0" 19044 18845 sources."is-valid-domain-0.1.6" 19045 18846 sources."is-what-3.14.1" 19046 - sources."is-wsl-2.2.0" 18847 + sources."is-wsl-3.1.0" 19047 18848 sources."isexe-2.0.0" 19048 - sources."jackspeak-3.4.3" 18849 + sources."jackspeak-4.0.3" 18850 + sources."jiti-2.4.2" 19049 18851 sources."js-yaml-3.14.1" 19050 18852 sources."jsbn-1.1.0" 19051 - sources."jsesc-3.0.2" 19052 - sources."json-buffer-3.0.0" 18853 + sources."jsesc-3.1.0" 19053 18854 sources."jsonfile-6.1.0" 19054 - sources."keyv-3.1.0" 19055 18855 sources."kind-of-6.0.3" 19056 18856 sources."kleur-4.1.5" 19057 - sources."latest-version-5.1.0" 18857 + sources."ky-1.7.5" 18858 + sources."latest-version-9.0.0" 19058 18859 ( 19059 - sources."less-4.2.0" 18860 + sources."less-4.2.2" 19060 18861 // { 19061 18862 dependencies = [ 19062 - sources."tslib-2.7.0" 18863 + sources."tslib-2.8.1" 19063 18864 ]; 19064 18865 } 19065 18866 ) 19066 - sources."lightningcss-1.27.0" 18867 + sources."lightningcss-1.29.1" 19067 18868 sources."lodash-4.17.21" 19068 - sources."lowercase-keys-1.0.1" 19069 - sources."lru-cache-10.4.3" 18869 + sources."lru-cache-11.0.2" 19070 18870 ( 19071 18871 sources."make-dir-2.1.0" 19072 18872 // { ··· 19075 18875 ]; 19076 18876 } 19077 18877 ) 19078 - sources."make-fetch-happen-13.0.1" 18878 + ( 18879 + sources."make-fetch-happen-14.0.3" 18880 + // { 18881 + dependencies = [ 18882 + sources."negotiator-1.0.0" 18883 + ]; 18884 + } 18885 + ) 18886 + sources."math-intrinsics-1.1.0" 19079 18887 sources."media-typer-0.3.0" 19080 18888 ( 19081 - sources."memfs-4.12.0" 18889 + sources."memfs-4.17.0" 19082 18890 // { 19083 18891 dependencies = [ 19084 - sources."tslib-2.7.0" 18892 + sources."tslib-2.8.1" 19085 18893 ]; 19086 18894 } 19087 18895 ) ··· 19092 18900 sources."mime-1.6.0" 19093 18901 sources."mime-db-1.52.0" 19094 18902 sources."mime-types-2.1.35" 19095 - sources."mimic-fn-2.1.0" 19096 - sources."mimic-response-1.0.1" 18903 + sources."mimic-function-5.0.1" 19097 18904 sources."minimatch-3.1.2" 19098 18905 sources."minimist-1.2.8" 19099 18906 sources."minipass-7.1.2" 19100 18907 sources."minipass-collect-2.0.1" 19101 - sources."minipass-fetch-3.0.5" 18908 + sources."minipass-fetch-4.0.0" 19102 18909 ( 19103 18910 sources."minipass-flush-1.0.5" 19104 18911 // { 19105 18912 dependencies = [ 19106 18913 sources."minipass-3.3.6" 18914 + sources."yallist-4.0.0" 19107 18915 ]; 19108 18916 } 19109 18917 ) ··· 19112 18920 // { 19113 18921 dependencies = [ 19114 18922 sources."minipass-3.3.6" 18923 + sources."yallist-4.0.0" 19115 18924 ]; 19116 18925 } 19117 18926 ) ··· 19120 18929 // { 19121 18930 dependencies = [ 19122 18931 sources."minipass-3.3.6" 18932 + sources."yallist-4.0.0" 19123 18933 ]; 19124 18934 } 19125 18935 ) 19126 18936 ( 19127 - sources."minizlib-2.1.2" 18937 + sources."minizlib-3.0.1" 19128 18938 // { 19129 18939 dependencies = [ 19130 - sources."minipass-3.3.6" 18940 + sources."brace-expansion-2.0.1" 18941 + sources."glob-10.4.5" 18942 + sources."jackspeak-3.4.3" 18943 + sources."lru-cache-10.4.3" 18944 + sources."minimatch-9.0.5" 18945 + sources."path-scurry-1.11.1" 18946 + sources."rimraf-5.0.10" 19131 18947 ]; 19132 18948 } 19133 18949 ) 19134 18950 sources."mkdirp-0.5.6" 19135 18951 sources."ms-2.0.0" 19136 - sources."nanoid-3.3.7" 18952 + sources."nanoid-3.3.8" 19137 18953 ( 19138 18954 sources."needle-3.3.1" 19139 18955 // { ··· 19143 18959 } 19144 18960 ) 19145 18961 sources."negotiator-0.6.3" 19146 - sources."node-gyp-build-4.8.2" 18962 + sources."node-gyp-build-4.8.4" 19147 18963 sources."normalize-path-3.0.0" 19148 - sources."normalize-url-4.5.1" 19149 - sources."object-inspect-1.13.2" 18964 + sources."object-inspect-1.13.4" 19150 18965 sources."on-finished-2.3.0" 19151 18966 sources."once-1.4.0" 19152 - sources."onetime-5.1.2" 19153 - sources."open-7.4.2" 18967 + sources."onetime-7.0.0" 18968 + sources."open-10.1.0" 19154 18969 sources."os-tmpdir-1.0.2" 19155 - sources."p-cancelable-1.1.0" 19156 - sources."p-map-4.0.0" 19157 - sources."package-json-6.5.0" 18970 + sources."p-map-7.0.3" 18971 + sources."package-json-10.0.1" 19158 18972 sources."package-json-from-dist-1.0.1" 19159 18973 sources."parse-node-version-1.0.1" 19160 18974 sources."parseurl-1.3.3" 19161 18975 sources."password-prompt-1.1.3" 19162 18976 sources."path-is-absolute-1.0.1" 19163 18977 sources."path-key-3.1.1" 19164 - sources."path-scurry-1.11.1" 19165 - sources."path-to-regexp-0.1.10" 18978 + sources."path-scurry-2.0.0" 18979 + sources."path-to-regexp-0.1.12" 19166 18980 sources."path-type-5.0.0" 19167 - sources."picocolors-1.1.0" 18981 + sources."picocolors-1.1.1" 19168 18982 sources."picomatch-2.3.1" 19169 18983 sources."pify-4.0.1" 19170 - sources."postcss-8.4.47" 19171 - sources."prepend-http-2.0.0" 19172 - sources."proc-log-4.2.0" 18984 + sources."postcss-8.5.2" 18985 + sources."proc-log-5.0.0" 19173 18986 sources."promise-retry-2.0.1" 18987 + sources."proto-list-1.2.4" 19174 18988 sources."proxy-addr-2.0.7" 19175 18989 sources."prr-1.0.1" 19176 - sources."pump-3.0.2" 19177 18990 sources."punycode-2.3.1" 19178 18991 sources."qs-6.13.0" 19179 18992 sources."queue-microtask-1.2.3" 19180 18993 sources."range-parser-1.2.1" 19181 18994 sources."raw-body-2.5.2" 19182 18995 sources."rc-1.2.8" 19183 - sources."readdirp-3.6.0" 19184 - sources."registry-auth-token-4.2.2" 19185 - sources."registry-url-5.1.0" 19186 - sources."responselike-1.0.2" 19187 - sources."restore-cursor-4.0.0" 18996 + sources."readdirp-4.1.2" 18997 + sources."registry-auth-token-5.1.0" 18998 + sources."registry-url-6.0.1" 18999 + sources."resolve-pkg-maps-1.0.0" 19000 + sources."restore-cursor-5.1.0" 19188 19001 sources."retry-0.12.0" 19189 19002 sources."reusify-1.0.4" 19190 19003 sources."rimraf-2.7.1" 19191 - sources."rollup-4.22.5" 19004 + sources."rollup-4.34.7" 19005 + sources."run-applescript-7.0.0" 19192 19006 sources."run-parallel-1.2.0" 19193 19007 ( 19194 19008 sources."rxjs-7.8.1" 19195 19009 // { 19196 19010 dependencies = [ 19197 - sources."tslib-2.7.0" 19011 + sources."tslib-2.8.1" 19198 19012 ]; 19199 19013 } 19200 19014 ) 19201 19015 sources."safe-buffer-5.2.1" 19202 19016 sources."safer-buffer-2.1.2" 19203 - ( 19204 - sources."sass-1.79.3" 19205 - // { 19206 - dependencies = [ 19207 - sources."chokidar-4.0.1" 19208 - sources."readdirp-4.0.1" 19209 - ]; 19210 - } 19211 - ) 19212 - ( 19213 - sources."sass-embedded-1.79.3" 19214 - // { 19215 - dependencies = [ 19216 - sources."supports-color-8.1.1" 19217 - ]; 19218 - } 19219 - ) 19017 + sources."sass-1.85.0" 19018 + sources."sass-embedded-1.85.0" 19220 19019 sources."sax-1.4.1" 19221 19020 sources."section-matter-1.0.0" 19222 - sources."semver-6.3.1" 19021 + sources."semver-7.7.1" 19223 19022 ( 19224 19023 sources."send-0.19.0" 19225 19024 // { ··· 19249 19048 ]; 19250 19049 } 19251 19050 ) 19252 - sources."set-function-length-1.2.2" 19253 19051 sources."setprototypeof-1.2.0" 19254 19052 sources."shebang-command-2.0.0" 19255 19053 sources."shebang-regex-3.0.0" 19256 - sources."side-channel-1.0.6" 19257 - sources."signal-exit-3.0.7" 19054 + sources."side-channel-1.1.0" 19055 + sources."side-channel-list-1.0.0" 19056 + sources."side-channel-map-1.0.1" 19057 + sources."side-channel-weakmap-1.0.2" 19058 + sources."signal-exit-4.1.0" 19258 19059 sources."slash-5.1.0" 19259 19060 sources."smart-buffer-4.2.0" 19260 - sources."socks-2.8.3" 19061 + sources."socks-2.8.4" 19261 19062 ( 19262 - sources."socks-proxy-agent-8.0.4" 19063 + sources."socks-proxy-agent-8.0.5" 19263 19064 // { 19264 19065 dependencies = [ 19265 - sources."debug-4.3.7" 19066 + sources."debug-4.4.0" 19266 19067 sources."ms-2.1.3" 19267 19068 ]; 19268 19069 } ··· 19271 19072 sources."source-map-js-1.2.1" 19272 19073 sources."source-map-support-0.5.21" 19273 19074 sources."sprintf-js-1.0.3" 19274 - sources."ssri-10.0.6" 19075 + sources."ssri-12.0.0" 19275 19076 sources."statuses-1.5.0" 19276 19077 sources."streamsearch-1.1.0" 19277 19078 sources."string-width-5.1.2" ··· 19296 19097 sources."strip-bom-string-1.0.0" 19297 19098 sources."strip-json-comments-2.0.1" 19298 19099 ( 19299 - sources."stylus-0.63.0" 19100 + sources."stylus-0.64.0" 19300 19101 // { 19301 19102 dependencies = [ 19302 - sources."debug-4.3.7" 19103 + sources."brace-expansion-2.0.1" 19104 + sources."debug-4.4.0" 19105 + sources."glob-10.4.5" 19106 + sources."jackspeak-3.4.3" 19107 + sources."lru-cache-10.4.3" 19108 + sources."minimatch-9.0.5" 19303 19109 sources."ms-2.1.3" 19304 - sources."sax-1.3.0" 19110 + sources."path-scurry-1.11.1" 19305 19111 sources."source-map-0.7.4" 19306 19112 ]; 19307 19113 } 19308 19114 ) 19309 19115 sources."sudo-prompt-8.2.5" 19310 - sources."sugarss-4.0.1" 19311 - sources."supports-color-7.2.0" 19116 + sources."sugarss-5.0.0" 19117 + sources."supports-color-8.1.1" 19118 + sources."sync-child-process-1.0.2" 19119 + sources."sync-message-port-1.1.3" 19312 19120 ( 19313 - sources."tar-6.2.1" 19121 + sources."tar-7.4.3" 19314 19122 // { 19315 19123 dependencies = [ 19316 - ( 19317 - sources."fs-minipass-2.1.0" 19318 - // { 19319 - dependencies = [ 19320 - sources."minipass-3.3.6" 19321 - ]; 19322 - } 19323 - ) 19324 - sources."minipass-5.0.0" 19325 - sources."mkdirp-1.0.4" 19124 + sources."mkdirp-3.0.1" 19326 19125 ]; 19327 19126 } 19328 19127 ) 19329 19128 ( 19330 - sources."terser-5.34.0" 19129 + sources."terser-5.39.0" 19331 19130 // { 19332 19131 dependencies = [ 19333 19132 sources."commander-2.20.3" ··· 19338 19137 sources."thingies-1.21.0" 19339 19138 // { 19340 19139 dependencies = [ 19341 - sources."tslib-2.7.0" 19140 + sources."tslib-2.8.1" 19342 19141 ]; 19343 19142 } 19344 19143 ) 19345 19144 sources."tmp-0.0.33" 19346 - sources."to-readable-stream-1.0.0" 19347 19145 sources."to-regex-range-5.0.1" 19348 19146 sources."toidentifier-1.0.1" 19349 19147 ( 19350 19148 sources."tree-dump-1.0.2" 19351 19149 // { 19352 19150 dependencies = [ 19353 - sources."tslib-2.7.0" 19151 + sources."tslib-2.8.1" 19354 19152 ]; 19355 19153 } 19356 19154 ) 19357 19155 sources."tslib-1.14.1" 19156 + ( 19157 + sources."tsx-4.19.2" 19158 + // { 19159 + dependencies = [ 19160 + sources."esbuild-0.23.1" 19161 + ]; 19162 + } 19163 + ) 19358 19164 sources."type-fest-0.21.3" 19359 19165 sources."type-is-1.6.18" 19360 - sources."undici-types-6.19.8" 19166 + sources."undici-types-6.20.0" 19361 19167 sources."unicorn-magic-0.1.0" 19362 - sources."unique-filename-3.0.0" 19363 - sources."unique-slug-4.0.0" 19168 + sources."unique-filename-4.0.0" 19169 + sources."unique-slug-5.0.0" 19364 19170 sources."universalify-2.0.1" 19365 19171 sources."unpipe-1.0.0" 19366 - sources."url-parse-lax-3.0.0" 19367 19172 sources."utf-8-validate-5.0.10" 19368 19173 sources."utils-merge-1.0.1" 19369 19174 sources."varint-6.0.0" 19370 19175 sources."vary-1.1.2" 19371 19176 ( 19372 - sources."vite-5.4.8" 19177 + sources."vite-6.1.0" 19373 19178 // { 19374 19179 dependencies = [ 19375 - sources."@types/node-22.7.3" 19376 - sources."esbuild-0.21.5" 19180 + sources."@types/node-22.13.4" 19377 19181 ]; 19378 19182 } 19379 19183 ) 19380 19184 ( 19381 - sources."which-4.0.0" 19185 + sources."which-5.0.0" 19382 19186 // { 19383 19187 dependencies = [ 19384 19188 sources."isexe-3.1.1" 19385 19189 ]; 19386 19190 } 19387 19191 ) 19388 - ( 19389 - sources."wrap-ansi-8.1.0" 19390 - // { 19391 - dependencies = [ 19392 - sources."ansi-styles-6.2.1" 19393 - ]; 19394 - } 19395 - ) 19192 + sources."wrap-ansi-8.1.0" 19396 19193 ( 19397 19194 sources."wrap-ansi-cjs-7.0.0" 19398 19195 // { 19399 19196 dependencies = [ 19197 + sources."ansi-styles-4.3.0" 19400 19198 sources."emoji-regex-8.0.0" 19401 19199 sources."string-width-4.2.3" 19402 19200 sources."strip-ansi-6.0.1" ··· 19404 19202 } 19405 19203 ) 19406 19204 sources."wrappy-1.0.2" 19407 - sources."ws-7.5.10" 19408 - sources."yallist-4.0.0" 19205 + sources."ws-8.18.0" 19206 + sources."yallist-5.0.0" 19207 + sources."yaml-2.7.0" 19409 19208 ]; 19410 19209 buildInputs = globalBuildInputs; 19411 19210 meta = { ··· 19417 19216 bypassCache = true; 19418 19217 reconstructLock = true; 19419 19218 }; 19420 - elm-review = nodeEnv.buildNodePackage { 19421 - name = "elm-review"; 19422 - packageName = "elm-review"; 19423 - version = "2.12.0"; 19424 - src = fetchurl { 19425 - url = "https://registry.npmjs.org/elm-review/-/elm-review-2.12.0.tgz"; 19426 - sha512 = "so+G1hvCV85A63sQQzEhCNFNYyQVWDexXrz0TNEYg3/IIGHzN1bcRN+W4KJSvvFcmfEImzMSJ9AN20bvemU+4Q=="; 19427 - }; 19428 - dependencies = [ 19429 - ( 19430 - sources."@isaacs/cliui-8.0.2" 19431 - // { 19432 - dependencies = [ 19433 - sources."ansi-styles-6.2.1" 19434 - sources."strip-ansi-7.1.0" 19435 - sources."wrap-ansi-8.1.0" 19436 - ]; 19437 - } 19438 - ) 19439 - sources."@nodelib/fs.scandir-2.1.5" 19440 - sources."@nodelib/fs.stat-2.0.5" 19441 - sources."@nodelib/fs.walk-1.2.8" 19442 - sources."@sindresorhus/is-4.6.0" 19443 - sources."@szmarczak/http-timer-4.0.6" 19444 - sources."@types/cacheable-request-6.0.3" 19445 - sources."@types/http-cache-semantics-4.0.4" 19446 - sources."@types/keyv-3.1.4" 19447 - sources."@types/node-22.7.3" 19448 - sources."@types/responselike-1.0.3" 19449 - sources."ansi-escapes-4.3.2" 19450 - sources."ansi-regex-6.1.0" 19451 - sources."ansi-styles-4.3.0" 19452 - sources."anymatch-3.1.3" 19453 - sources."at-least-node-1.0.0" 19454 - sources."balanced-match-1.0.2" 19455 - sources."base64-js-1.5.1" 19456 - sources."binary-extensions-2.3.0" 19457 - sources."bl-4.1.0" 19458 - sources."brace-expansion-1.1.11" 19459 - sources."braces-3.0.3" 19460 - sources."buffer-5.7.1" 19461 - sources."cacheable-lookup-5.0.4" 19462 - sources."cacheable-request-7.0.4" 19463 - sources."chalk-4.1.2" 19464 - sources."chokidar-3.6.0" 19465 - sources."cli-cursor-3.1.0" 19466 - sources."cli-spinners-2.9.2" 19467 - sources."clone-1.0.4" 19468 - sources."clone-response-1.0.3" 19469 - sources."color-convert-2.0.1" 19470 - sources."color-name-1.1.4" 19471 - sources."concat-map-0.0.1" 19472 - sources."cross-spawn-7.0.3" 19473 - sources."debug-4.3.7" 19474 - ( 19475 - sources."decompress-response-6.0.0" 19476 - // { 19477 - dependencies = [ 19478 - sources."mimic-response-3.1.0" 19479 - ]; 19480 - } 19481 - ) 19482 - sources."defaults-1.0.4" 19483 - sources."defer-to-connect-2.0.1" 19484 - sources."dir-glob-3.0.1" 19485 - sources."eastasianwidth-0.2.0" 19486 - sources."elm-solve-deps-wasm-1.0.2" 19487 - sources."emoji-regex-9.2.2" 19488 - sources."end-of-stream-1.4.4" 19489 - sources."fast-glob-3.3.2" 19490 - sources."fastest-levenshtein-1.0.16" 19491 - sources."fastq-1.17.1" 19492 - sources."fill-range-7.1.1" 19493 - sources."find-up-4.1.0" 19494 - sources."folder-hash-3.3.3" 19495 - sources."foreground-child-3.3.0" 19496 - sources."fs-extra-9.1.0" 19497 - sources."get-stream-5.2.0" 19498 - ( 19499 - sources."glob-10.4.5" 19500 - // { 19501 - dependencies = [ 19502 - sources."brace-expansion-2.0.1" 19503 - sources."minimatch-9.0.5" 19504 - ]; 19505 - } 19506 - ) 19507 - sources."glob-parent-5.1.2" 19508 - sources."globby-13.2.2" 19509 - sources."got-11.8.6" 19510 - sources."graceful-fs-4.2.11" 19511 - sources."has-flag-4.0.0" 19512 - sources."http-cache-semantics-4.1.1" 19513 - sources."http2-wrapper-1.0.3" 19514 - sources."ieee754-1.2.1" 19515 - sources."ignore-5.3.2" 19516 - sources."inherits-2.0.4" 19517 - sources."is-binary-path-2.1.0" 19518 - sources."is-extglob-2.1.1" 19519 - sources."is-fullwidth-code-point-3.0.0" 19520 - sources."is-glob-4.0.3" 19521 - sources."is-interactive-1.0.0" 19522 - sources."is-number-7.0.0" 19523 - sources."is-unicode-supported-0.1.0" 19524 - sources."isexe-2.0.0" 19525 - sources."jackspeak-3.4.3" 19526 - sources."json-buffer-3.0.1" 19527 - sources."jsonfile-6.1.0" 19528 - sources."keyv-4.5.4" 19529 - sources."kleur-3.0.3" 19530 - sources."locate-path-5.0.0" 19531 - sources."log-symbols-4.1.0" 19532 - sources."lowercase-keys-2.0.0" 19533 - sources."lru-cache-10.4.3" 19534 - sources."merge2-1.4.1" 19535 - sources."micromatch-4.0.8" 19536 - sources."mimic-fn-2.1.0" 19537 - sources."mimic-response-1.0.1" 19538 - sources."minimatch-3.0.8" 19539 - sources."minimist-1.2.8" 19540 - sources."minipass-7.1.2" 19541 - sources."ms-2.1.3" 19542 - sources."normalize-path-3.0.0" 19543 - sources."normalize-url-6.1.0" 19544 - sources."once-1.4.0" 19545 - sources."onetime-5.1.2" 19546 - sources."ora-5.4.1" 19547 - sources."p-cancelable-2.1.1" 19548 - sources."p-limit-2.3.0" 19549 - sources."p-locate-4.1.0" 19550 - sources."p-try-2.2.0" 19551 - sources."package-json-from-dist-1.0.1" 19552 - sources."path-exists-4.0.0" 19553 - sources."path-key-3.1.1" 19554 - sources."path-scurry-1.11.1" 19555 - sources."path-type-4.0.0" 19556 - sources."picomatch-2.3.1" 19557 - sources."prompts-2.4.2" 19558 - sources."pump-3.0.2" 19559 - sources."queue-microtask-1.2.3" 19560 - sources."quick-lru-5.1.1" 19561 - sources."readable-stream-3.6.2" 19562 - sources."readdirp-3.6.0" 19563 - sources."resolve-alpn-1.2.1" 19564 - sources."responselike-2.0.1" 19565 - ( 19566 - sources."restore-cursor-3.1.0" 19567 - // { 19568 - dependencies = [ 19569 - sources."signal-exit-3.0.7" 19570 - ]; 19571 - } 19572 - ) 19573 - sources."reusify-1.0.4" 19574 - sources."rimraf-5.0.10" 19575 - sources."run-parallel-1.2.0" 19576 - sources."safe-buffer-5.2.1" 19577 - sources."shebang-command-2.0.0" 19578 - sources."shebang-regex-3.0.0" 19579 - sources."signal-exit-4.1.0" 19580 - sources."sisteransi-1.0.5" 19581 - sources."slash-4.0.0" 19582 - ( 19583 - sources."string-width-5.1.2" 19584 - // { 19585 - dependencies = [ 19586 - sources."strip-ansi-7.1.0" 19587 - ]; 19588 - } 19589 - ) 19590 - ( 19591 - sources."string-width-cjs-4.2.3" 19592 - // { 19593 - dependencies = [ 19594 - sources."emoji-regex-8.0.0" 19595 - ]; 19596 - } 19597 - ) 19598 - sources."string_decoder-1.3.0" 19599 - ( 19600 - sources."strip-ansi-6.0.1" 19601 - // { 19602 - dependencies = [ 19603 - sources."ansi-regex-5.0.1" 19604 - ]; 19605 - } 19606 - ) 19607 - ( 19608 - sources."strip-ansi-cjs-6.0.1" 19609 - // { 19610 - dependencies = [ 19611 - sources."ansi-regex-5.0.1" 19612 - ]; 19613 - } 19614 - ) 19615 - sources."supports-color-7.2.0" 19616 - sources."supports-hyperlinks-2.3.0" 19617 - sources."terminal-link-2.1.1" 19618 - sources."to-regex-range-5.0.1" 19619 - sources."type-fest-0.21.3" 19620 - sources."undici-types-6.19.8" 19621 - sources."universalify-2.0.1" 19622 - sources."util-deprecate-1.0.2" 19623 - sources."wcwidth-1.0.1" 19624 - sources."which-2.0.2" 19625 - ( 19626 - sources."wrap-ansi-7.0.0" 19627 - // { 19628 - dependencies = [ 19629 - sources."emoji-regex-8.0.0" 19630 - sources."string-width-4.2.3" 19631 - ]; 19632 - } 19633 - ) 19634 - ( 19635 - sources."wrap-ansi-cjs-7.0.0" 19636 - // { 19637 - dependencies = [ 19638 - sources."emoji-regex-8.0.0" 19639 - sources."string-width-4.2.3" 19640 - ]; 19641 - } 19642 - ) 19643 - sources."wrappy-1.0.2" 19644 - ]; 19645 - buildInputs = globalBuildInputs; 19646 - meta = { 19647 - description = "Run elm-review from Node.js"; 19648 - homepage = "https://github.com/jfmengels/node-elm-review#readme"; 19649 - license = "BSD-3-Clause"; 19650 - }; 19651 - production = true; 19652 - bypassCache = true; 19653 - reconstructLock = true; 19654 - }; 19655 19219 elm-git-install = nodeEnv.buildNodePackage { 19656 19220 name = "elm-git-install"; 19657 19221 packageName = "elm-git-install"; ··· 19663 19227 dependencies = [ 19664 19228 sources."@kwsites/file-exists-1.1.1" 19665 19229 sources."@kwsites/promise-deferred-1.1.1" 19666 - sources."debug-4.3.7" 19230 + sources."debug-4.4.0" 19667 19231 sources."git-clone-able-0.1.2" 19668 19232 sources."ms-2.1.3" 19669 - sources."semver-7.6.3" 19233 + sources."semver-7.7.1" 19670 19234 sources."simple-git-3.27.0" 19671 19235 sources."upath-2.0.1" 19672 19236 ]; ··· 19692 19256 sources."asynckit-0.4.0" 19693 19257 sources."balanced-match-1.0.2" 19694 19258 sources."brace-expansion-1.1.11" 19259 + sources."call-bind-apply-helpers-1.0.2" 19695 19260 sources."combined-stream-1.0.8" 19696 19261 sources."concat-map-0.0.1" 19697 - sources."cross-fetch-3.1.8" 19262 + sources."cross-fetch-3.2.0" 19698 19263 sources."cross-spawn-5.1.0" 19699 19264 sources."delayed-stream-1.0.0" 19265 + sources."dunder-proto-1.0.1" 19700 19266 sources."encoding-0.1.13" 19267 + sources."es-define-property-1.0.1" 19268 + sources."es-errors-1.3.0" 19269 + sources."es-object-atoms-1.1.1" 19270 + sources."es-set-tostringtag-2.1.0" 19701 19271 sources."extract-files-9.0.0" 19702 - sources."form-data-3.0.1" 19272 + sources."form-data-3.0.3" 19703 19273 sources."fs.realpath-1.0.0" 19274 + sources."function-bind-1.1.2" 19275 + sources."get-intrinsic-1.2.7" 19276 + sources."get-proto-1.0.1" 19704 19277 sources."glob-7.2.3" 19705 - sources."graphql-16.9.0" 19278 + sources."gopd-1.2.0" 19279 + sources."graphql-16.10.0" 19706 19280 sources."graphql-request-3.7.0" 19281 + sources."has-symbols-1.1.0" 19282 + sources."has-tostringtag-1.0.2" 19283 + sources."hasown-2.0.2" 19707 19284 sources."iconv-lite-0.6.3" 19708 19285 sources."inflight-1.0.6" 19709 19286 sources."inherits-2.0.4" 19710 19287 sources."isexe-2.0.0" 19711 19288 sources."lru-cache-4.1.5" 19289 + sources."math-intrinsics-1.1.0" 19712 19290 sources."mime-db-1.52.0" 19713 19291 sources."mime-types-2.1.35" 19714 19292 sources."minimatch-3.1.2"
+23 -2
pkgs/development/coq-modules/coq-elpi/default.nix
··· 3 3 mkCoqDerivation, 4 4 which, 5 5 coq, 6 + rocqPackages, 6 7 stdlib, 7 8 version ? null, 8 9 elpi-version ? null, ··· 34 35 owner = "LPCIC"; 35 36 inherit version; 36 37 defaultVersion = lib.switch coq.coq-version [ 37 - { case = "9.0"; out = "2.4.0"; } 38 + { case = "9.0"; out = "2.5.0"; } 38 39 { case = "8.20"; out = "2.2.0"; } 39 40 { case = "8.19"; out = "2.0.1"; } 40 41 { case = "8.18"; out = "2.0.0"; } ··· 46 47 { case = "8.12"; out = "1.8.3_8.12"; } 47 48 { case = "8.11"; out = "1.6.3_8.11"; } 48 49 ] null; 50 + release."2.5.0".sha256 = "sha256-Z5xjO83X/ZoTQlWnVupGXPH3HuJefr57Kv128I0dltg="; 49 51 release."2.4.0".sha256 = "sha256-W2+vVGExLLux8e0nSZESSoMVvrLxhL6dmXkb+JuKiqc="; 50 52 release."2.2.0".sha256 = "sha256-rADEoqTXM7/TyYkUKsmCFfj6fjpWdnZEOK++5oLfC/I="; 51 53 release."2.0.1".sha256 = "sha256-cuoPsEJ+JRLVc9Golt2rJj4P7lKltTrrmQijjoViooc="; ··· 127 129 propagatedBuildInputs = o.propagatedBuildInputs ++ [ stdlib ]; 128 130 } 129 131 ); 130 - in patched-derivation3 132 + patched-derivation4 = patched-derivation3.overrideAttrs 133 + ( 134 + o: 135 + # this is just a wrapper for rocPackages.bignums for Rocq >= 9.0 136 + lib.optionalAttrs (coq.version != null && (coq.version == "dev" 137 + || lib.versions.isGe "9.0" coq.version)) { 138 + configurePhase = '' 139 + echo no configuration 140 + ''; 141 + buildPhase = '' 142 + echo building nothing 143 + ''; 144 + installPhase = '' 145 + echo installing nothing 146 + ''; 147 + propagatedBuildInputs = o.propagatedBuildInputs 148 + ++ [ rocqPackages.rocq-elpi ]; 149 + } 150 + ); 151 + in patched-derivation4
+4 -1
pkgs/development/coq-modules/hierarchy-builder/default.nix
··· 1 - { lib, mkCoqDerivation, coq, coq-elpi, version ? null }: 1 + { lib, mkCoqDerivation, coq, stdlib, coq-elpi, version ? null }: 2 2 3 3 let hb = mkCoqDerivation { 4 4 pname = "hierarchy-builder"; ··· 48 48 { installFlags = [ "DESTDIR=$(out)" ] ++ o.installFlags; } 49 49 else 50 50 { installFlags = [ "VFILES=structures.v" ] ++ o.installFlags; }) 51 + // 52 + lib.optionalAttrs (lib.versions.isLe "1.8.1" o.version) 53 + { propagatedBuildInputs = o.propagatedBuildInputs ++ [ stdlib ]; } 51 54 )
+9 -9
pkgs/development/libraries/physics/rivet/default.nix pkgs/by-name/ri/rivet/package.nix
··· 5 5 fastjet, 6 6 fastjet-contrib, 7 7 ghostscript, 8 + graphicsmagick-imagemagick-compat, 8 9 hdf5, 9 10 hepmc3, 10 11 highfive, 11 - imagemagick, 12 12 less, 13 13 pkg-config, 14 14 python3, ··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "rivet"; 24 - version = "4.0.2"; 24 + version = "4.0.3"; 25 25 26 26 src = fetchurl { 27 27 url = "https://www.hepforge.org/archive/rivet/Rivet-${version}.tar.bz2"; 28 - hash = "sha256-ZaOzb0K/94LtJ2eTDmaeCbFAiZYF15cvyPd3hbSogsA="; 28 + hash = "sha256-27l7dp0Yd/NMPFAZASe/2nhHvOx5uh3llWH99DzdSGk="; 29 29 }; 30 30 31 31 latex = texliveBasic.withPackages ( ··· 52 52 pkg-config 53 53 ]; 54 54 buildInputs = [ 55 + graphicsmagick-imagemagick-compat 55 56 hepmc3 56 57 highfive 57 - imagemagick 58 58 python3 59 59 latex 60 60 python3.pkgs.yoda ··· 85 85 --replace-fail '"ps2pdf"' '"${ghostscript}/bin/ps2pdf"' \ 86 86 --replace-fail '"ps2eps"' '"${ghostscript}/bin/ps2eps"' \ 87 87 --replace-fail '"kpsewhich"' '"'$latex'/bin/kpsewhich"' \ 88 - --replace-fail '"convert"' '"${imagemagick.out}/bin/convert"' 88 + --replace-fail '"convert"' '"${graphicsmagick-imagemagick-compat.out}/bin/convert"' 89 89 substituteInPlace bin/rivet \ 90 90 --replace-fail '"less"' '"${less}/bin/less"' 91 91 substituteInPlace bin/rivet-mkhtml-tex \ ··· 109 109 done 110 110 ''; 111 111 112 - meta = with lib; { 112 + meta = { 113 113 description = "Framework for comparison of experimental measurements from high-energy particle colliders to theory predictions"; 114 - license = licenses.gpl3; 114 + license = lib.licenses.gpl3; 115 115 homepage = "https://rivet.hepforge.org"; 116 - platforms = platforms.unix; 117 - maintainers = with maintainers; [ veprbl ]; 116 + platforms = lib.platforms.unix; 117 + maintainers = with lib.maintainers; [ veprbl ]; 118 118 }; 119 119 }
+3 -3
pkgs/development/python-modules/simsimd/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "simsimd"; 14 - version = "6.3.0"; 14 + version = "6.3.3"; 15 15 pyproject = true; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "ashvardanian"; 19 19 repo = "simsimd"; 20 20 tag = "v${version}"; 21 - hash = "sha256-RQgPjU2uOxOnDacIARMAkKvnUIHLzRsaxLERmTrLj1Q="; 21 + hash = "sha256-8D3mMhGrHATqxc79OvfcG92UnDGjU6YDfFjReXdR6cs="; 22 22 }; 23 23 24 24 build-system = [ ··· 41 41 ]; 42 42 43 43 meta = { 44 - changelog = "https://github.com/ashvardanian/SimSIMD/releases/tag/v${version}"; 44 + changelog = "https://github.com/ashvardanian/SimSIMD/releases/tag/${src.tag}"; 45 45 description = "Portable mixed-precision BLAS-like vector math library for x86 and ARM"; 46 46 homepage = "https://github.com/ashvardanian/simsimd"; 47 47 license = lib.licenses.asl20;
+2 -2
pkgs/development/python-modules/tensordict/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "tensordict"; 25 - version = "0.7.0"; 25 + version = "0.7.1"; 26 26 pyproject = true; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "pytorch"; 30 30 repo = "tensordict"; 31 31 tag = "v${version}"; 32 - hash = "sha256-KbCNBFewMx4kaWMoV+zREj6XTZiwmR4/I3zpf55wuOQ="; 32 + hash = "sha256-tUm1uV9k/IDlR3y/e1aIlU1bjDeh2+zdJdxu8Z9x3es="; 33 33 }; 34 34 35 35 build-system = [
+2 -2
pkgs/development/python-modules/torchrl/default.nix
··· 48 48 49 49 buildPythonPackage rec { 50 50 pname = "torchrl"; 51 - version = "0.7.0"; 51 + version = "0.7.1"; 52 52 pyproject = true; 53 53 54 54 src = fetchFromGitHub { 55 55 owner = "pytorch"; 56 56 repo = "rl"; 57 57 tag = "v${version}"; 58 - hash = "sha256-SMVm1XfHHqSkWTDVSqqO3kIxMBgV9A+XrEpJ56AyaBE="; 58 + hash = "sha256-+GE84GusipNZ18euV8ag0AbOtUrYfOxUAeXeCgF2OiI="; 59 59 }; 60 60 61 61 build-system = [
+68
pkgs/development/rocq-modules/rocq-elpi/default.nix
··· 1 + { 2 + lib, 3 + mkRocqDerivation, 4 + which, 5 + rocq-core, 6 + version ? null, 7 + elpi-version ? null, 8 + }: 9 + 10 + let 11 + default-elpi-version = if elpi-version != null then elpi-version else ( 12 + lib.switch rocq-core.rocq-version [ 13 + { case = "9.0"; out = "2.0.7"; } 14 + ] { } 15 + ); 16 + elpi = rocq-core.ocamlPackages.elpi.override { version = default-elpi-version; }; 17 + propagatedBuildInputs_wo_elpi = [ 18 + rocq-core.ocamlPackages.findlib 19 + rocq-core.ocamlPackages.ppx_optcomp 20 + ]; 21 + derivation = mkRocqDerivation { 22 + pname = "elpi"; 23 + repo = "coq-elpi"; 24 + owner = "LPCIC"; 25 + inherit version; 26 + defaultVersion = lib.switch rocq-core.rocq-version [ 27 + { case = "9.0"; out = "2.5.0"; } 28 + ] null; 29 + release."2.5.0".sha256 = "sha256-Z5xjO83X/ZoTQlWnVupGXPH3HuJefr57Kv128I0dltg="; 30 + releaseRev = v: "v${v}"; 31 + 32 + mlPlugin = true; 33 + useDune = true; 34 + 35 + propagatedBuildInputs = propagatedBuildInputs_wo_elpi ++ [ elpi ]; 36 + 37 + configurePhase = '' 38 + patchShebangs etc/with-rocq-wrap.sh 39 + make dune-files || true 40 + ''; 41 + 42 + buildPhase = '' 43 + etc/with-rocq-wrap.sh dune build -p rocq-elpi @install ''${enableParallelBuilding:+-j $NIX_BUILD_CORES} 44 + ''; 45 + 46 + installPhase = '' 47 + etc/with-rocq-wrap.sh dune install --root . rocq-elpi --prefix=$out --libdir $OCAMLFIND_DESTDIR 48 + mkdir $out/lib/coq/ 49 + mv $OCAMLFIND_DESTDIR/coq $out/lib/coq/${rocq-core.rocq-version} 50 + ''; 51 + 52 + meta = { 53 + description = "Rocq plugin embedding ELPI"; 54 + maintainers = [ lib.maintainers.cohencyril ]; 55 + license = lib.licenses.lgpl21Plus; 56 + }; 57 + }; 58 + patched-derivation1 = derivation.overrideAttrs 59 + ( 60 + o: 61 + lib.optionalAttrs (o ? elpi-version) 62 + { 63 + propagatedBuildInputs = propagatedBuildInputs_wo_elpi ++ [ 64 + (rocq-core.ocamlPackages.elpi.override { version = o.elpi-version; }) 65 + ]; 66 + } 67 + ); 68 + in patched-derivation1
+2 -2
pkgs/servers/home-assistant/custom-components/tuya_local/package.nix
··· 11 11 buildHomeAssistantComponent rec { 12 12 owner = "make-all"; 13 13 domain = "tuya_local"; 14 - version = "2025.1.2"; 14 + version = "2025.2.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 inherit owner; 18 18 repo = "tuya-local"; 19 19 tag = version; 20 - hash = "sha256-qgNXY31YPzD1R+mdkw1nb35JU1rZ6kNj5Npjn+qfon4="; 20 + hash = "sha256-G/+mAq++bJ2Z41B6gi/izBLvuZwew3Tx/0mGZm4g6TE="; 21 21 }; 22 22 23 23 dependencies = [
+2 -2
pkgs/servers/mail/postfix/default.nix
··· 67 67 in 68 68 stdenv.mkDerivation rec { 69 69 pname = "postfix"; 70 - version = "3.9.1"; 70 + version = "3.9.2"; 71 71 72 72 src = fetchurl { 73 73 url = "https://de.postfix.org/ftpmirror/official/postfix-${version}.tar.gz"; 74 - hash = "sha256-xIiUTrA2JXbRj1+MxLmzKjW8s11xuUfarJdkr0dw9kM="; 74 + hash = "sha256-ApB+N9OpZz81eaMmMaimkCWCfqQnnm7gIk2E0fRNhl4="; 75 75 }; 76 76 77 77 nativeBuildInputs = [
+19
pkgs/servers/mobilizon/0002-fix-media-proxy.patch
··· 1 + diff --git a/lib/web/proxy/reverse_proxy.ex b/lib/web/proxy/reverse_proxy.ex 2 + index 8a78ef27..788ccc30 100644 3 + --- a/lib/web/proxy/reverse_proxy.ex 4 + +++ b/lib/web/proxy/reverse_proxy.ex 5 + @@ -187,9 +187,13 @@ defmodule Mobilizon.Web.ReverseProxy do 6 + @spec response(Plug.Conn.t(), any(), String.t(), pos_integer(), list(tuple()), Keyword.t()) :: 7 + Plug.Conn.t() 8 + defp response(conn, client, url, status, headers, opts) do 9 + + headers = build_resp_headers(headers, opts) 10 + + # Fix HTTP/1.1 protocol violation: content-length can't be combined with chunked encoding 11 + + headers = Enum.reject(headers, fn {k, _} -> k == "content-length" end) 12 + + 13 + result = 14 + conn 15 + - |> put_resp_headers(build_resp_headers(headers, opts)) 16 + + |> put_resp_headers(headers) 17 + |> send_chunked(status) 18 + |> chunk_reply(client, opts) 19 +
+13 -4
pkgs/servers/mobilizon/default.nix
··· 19 19 mixRelease rec { 20 20 inherit (common) pname version src; 21 21 22 - # Version 5.1.1 failed to bump their internal package version, 23 - # which causes issues with static file serving in the NixOS module. 24 - # See https://github.com/NixOS/nixpkgs/pull/370277 25 - patches = [ ./0001-fix-version.patch ]; 22 + patches = [ 23 + # Version 5.1.1 failed to bump their internal package version, 24 + # which causes issues with static file serving in the NixOS module. 25 + # See https://github.com/NixOS/nixpkgs/pull/370277 26 + ./0001-fix-version.patch 27 + # Mobilizon uses chunked Transfer-Encoding for the media proxy but also 28 + # sets the Content-Length header. This is a HTTP/1.1 protocol violation 29 + # and results in nginx >=1.24 rejecting the response with this error: 30 + # 'upstream sent "Content-Length" and "Transfer-Encoding" headers at the same 31 + # time while reading response header from upstream' 32 + # Upstream PR: https://framagit.org/framasoft/mobilizon/-/merge_requests/1604 33 + ./0002-fix-media-proxy.patch 34 + ]; 26 35 27 36 nativeBuildInputs = [ 28 37 git
-4
pkgs/tools/networking/openssh/common.nix
··· 50 50 patches = [ 51 51 ./locale_archive.patch 52 52 53 - (fetchurl { 54 - url = "https://git.alpinelinux.org/aports/plain/main/openssh/gss-serv.c.patch?id=a7509603971ce2f3282486a43bb773b1b522af83"; 55 - sha256 = "sha256-eFFOd4B2nccRZAQWwdBPBoKWjfEdKEVGJvKZAzLu3HU="; 56 - }) 57 53 # See discussion in https://github.com/NixOS/nixpkgs/pull/16966 58 54 ./dont_create_privsep_path.patch 59 55 ] ++ extraPatches;
+8 -8
pkgs/tools/networking/openssh/default.nix
··· 11 11 { 12 12 openssh = common rec { 13 13 pname = "openssh"; 14 - version = "9.9p1"; 14 + version = "9.9p2"; 15 15 16 16 src = fetchurl { 17 17 url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz"; 18 - hash = "sha256-s0P7zb/4fxWxmG5uFdbU/Jp9NgZr5rf7UHCHuo+WbAI="; 18 + hash = "sha256-karbYD4IzChe3fll4RmdAlhfqU2ZTWyuW0Hhch4hVnM="; 19 19 }; 20 20 21 21 extraPatches = [ ./ssh-keysign-8.5.patch ]; ··· 24 24 25 25 openssh_hpn = common rec { 26 26 pname = "openssh-with-hpn"; 27 - version = "9.9p1"; 27 + version = "9.9p2"; 28 28 extraDesc = " with high performance networking patches"; 29 29 30 30 src = fetchurl { 31 31 url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz"; 32 - hash = "sha256-s0P7zb/4fxWxmG5uFdbU/Jp9NgZr5rf7UHCHuo+WbAI="; 32 + hash = "sha256-karbYD4IzChe3fll4RmdAlhfqU2ZTWyuW0Hhch4hVnM="; 33 33 }; 34 34 35 35 extraPatches = ··· 67 67 68 68 openssh_gssapi = common rec { 69 69 pname = "openssh-with-gssapi"; 70 - version = "9.9p1"; 70 + version = "9.9p2"; 71 71 extraDesc = " with GSSAPI support"; 72 72 73 73 src = fetchurl { 74 74 url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz"; 75 - hash = "sha256-s0P7zb/4fxWxmG5uFdbU/Jp9NgZr5rf7UHCHuo+WbAI="; 75 + hash = "sha256-karbYD4IzChe3fll4RmdAlhfqU2ZTWyuW0Hhch4hVnM="; 76 76 }; 77 77 78 78 extraPatches = [ ··· 80 80 81 81 (fetchpatch { 82 82 name = "openssh-gssapi.patch"; 83 - url = "https://salsa.debian.org/ssh-team/openssh/raw/debian/1%25${version}-2/debian/patches/gssapi.patch"; 84 - hash = "sha256-cQF5psMZpLWwVqK9CNi+Q8wHn6w6ffQUJRNI5jKGgD0="; 83 + url = "https://salsa.debian.org/ssh-team/openssh/raw/debian/1%25${version}-1/debian/patches/gssapi.patch"; 84 + hash = "sha256-JyOXA8Al8IFLdndJQ1LO+r4hJqtXjz1NHwOPiSAQkE8="; 85 85 }) 86 86 ]; 87 87
-4
pkgs/top-level/all-packages.nix
··· 17360 17360 hepmc = hepmc2; 17361 17361 }; 17362 17362 17363 - rivet = callPackage ../development/libraries/physics/rivet { 17364 - imagemagick = graphicsmagick-imagemagick-compat; 17365 - }; 17366 - 17367 17363 yoda-with-root = lowPrio (yoda.override { 17368 17364 withRootSupport = true; 17369 17365 });
+1
pkgs/top-level/rocq-packages.nix
··· 14 14 mkRocqDerivation = lib.makeOverridable (callPackage ../build-support/rocq {}); 15 15 16 16 bignums = callPackage ../development/rocq-modules/bignums {}; 17 + rocq-elpi = callPackage ../development/rocq-modules/rocq-elpi {}; 17 18 stdlib = callPackage ../development/rocq-modules/stdlib {}; 18 19 19 20 filterPackages = doesFilter: if doesFilter then filterRocqPackages self else self;