Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
610ef47b 0b7e5da7

+1840 -1435
+12 -6
maintainers/maintainer-list.nix
··· 2289 2289 fingerprint = "1C4E F4FE 7F8E D8B7 1E88 CCDF BAB1 D15F B7B4 D4CE"; 2290 2290 }]; 2291 2291 }; 2292 + d-xo = { 2293 + email = "hi@d-xo.org"; 2294 + github = "d-xo"; 2295 + githubId = 6689924; 2296 + name = "David Terry"; 2297 + }; 2292 2298 dadada = { 2293 2299 name = "dadada"; 2294 2300 email = "dadada@dadada.li"; ··· 3242 3248 longkeyid = "rsa4096/0x6C79278F3FCDCC02"; 3243 3249 fingerprint = "2D37 1AD2 7E2B BC77 97E1 B759 6C79 278F 3FCD CC02"; 3244 3250 }]; 3251 + }; 3252 + ereslibre = { 3253 + email = "ereslibre@ereslibre.es"; 3254 + github = "ereslibre"; 3255 + githubId = 8706; 3256 + name = "Rafael Fernández López"; 3245 3257 }; 3246 3258 ericbmerritt = { 3247 3259 email = "eric@afiniate.com"; ··· 11709 11721 github = "xworld21"; 11710 11722 githubId = 1962985; 11711 11723 name = "Vincenzo Mantova"; 11712 - }; 11713 - xwvvvvwx = { 11714 - email = "davidterry@posteo.de"; 11715 - github = "xwvvvvwx"; 11716 - githubId = 6689924; 11717 - name = "David Terry"; 11718 11724 }; 11719 11725 xzfc = { 11720 11726 email = "xzfcpw@gmail.com";
+9
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 841 841 version of zfs. 842 842 </para> 843 843 </listitem> 844 + <listitem> 845 + <para> 846 + Nginx will use the value of 847 + <literal>sslTrustedCertificate</literal> if provided for a 848 + virtual host, even if <literal>enableACME</literal> is set. 849 + This is useful for providers not using the same certificate to 850 + sign OCSP responses and server certificates. 851 + </para> 852 + </listitem> 844 853 </itemizedlist> 845 854 </section> 846 855 </section>
+2
nixos/doc/manual/release-notes/rl-2111.section.md
··· 213 213 - The [services.syncoid.enable](options.html#opt-services.syncoid.enable) module now properly drops ZFS permissions after usage. Before it delegated permissions to whole pools instead of datasets and didn't clean up after execution. You can manually look this up for your pools by running `zfs allow your-pool-name` and use `zfs unallow syncoid your-pool-name` to clean this up. 214 214 215 215 - Zfs: `latestCompatibleLinuxPackages` is now exported on the zfs package. One can use `boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;` to always track the latest compatible kernel with a given version of zfs. 216 + 217 + - Nginx will use the value of `sslTrustedCertificate` if provided for a virtual host, even if `enableACME` is set. This is useful for providers not using the same certificate to sign OCSP responses and server certificates.
+44 -8
nixos/modules/security/acme.nix
··· 21 21 # The Group can vary depending on what the user has specified in 22 22 # security.acme.certs.<cert>.group on some of the services. 23 23 commonServiceConfig = { 24 - Type = "oneshot"; 25 - User = "acme"; 26 - Group = mkDefault "acme"; 27 - UMask = 0022; 28 - StateDirectoryMode = 750; 29 - ProtectSystem = "full"; 30 - PrivateTmp = true; 24 + Type = "oneshot"; 25 + User = "acme"; 26 + Group = mkDefault "acme"; 27 + UMask = 0022; 28 + StateDirectoryMode = 750; 29 + ProtectSystem = "strict"; 30 + ReadWritePaths = [ 31 + "/var/lib/acme" 32 + ]; 33 + PrivateTmp = true; 31 34 32 - WorkingDirectory = "/tmp"; 35 + WorkingDirectory = "/tmp"; 36 + 37 + CapabilityBoundingSet = [ "" ]; 38 + DevicePolicy = "closed"; 39 + LockPersonality = true; 40 + MemoryDenyWriteExecute = true; 41 + NoNewPrivileges = true; 42 + PrivateDevices = true; 43 + ProtectClock = true; 44 + ProtectHome = true; 45 + ProtectHostname = true; 46 + ProtectControlGroups = true; 47 + ProtectKernelLogs = true; 48 + ProtectKernelModules = true; 49 + ProtectKernelTunables = true; 50 + ProtectProc = "invisible"; 51 + ProcSubset = "pid"; 52 + RemoveIPC = true; 53 + RestrictAddressFamilies = [ 54 + "AF_INET" 55 + "AF_INET6" 56 + ]; 57 + RestrictNamespaces = true; 58 + RestrictRealtime = true; 59 + RestrictSUIDSGID = true; 60 + SystemCallArchitectures = "native"; 61 + SystemCallFilter = [ 62 + # 1. allow a reasonable set of syscalls 63 + "@system-service" 64 + # 2. and deny unreasonable ones 65 + "~@privileged @resources" 66 + # 3. then allow the required subset within denied groups 67 + "@chown" 68 + ]; 33 69 }; 34 70 35 71 # In order to avoid race conditions creating the CA for selfsigned certs,
+2
nixos/modules/security/polkit.nix
··· 96 96 users.users.polkituser = { 97 97 description = "PolKit daemon"; 98 98 uid = config.ids.uids.polkituser; 99 + group = "polkituser"; 99 100 }; 100 101 102 + users.groups.polkituser = {}; 101 103 }; 102 104 103 105 }
+1 -1
nixos/modules/services/mail/nullmailer.nix
··· 220 220 after = [ "network.target" ]; 221 221 222 222 preStart = '' 223 - mkdir -p /var/spool/nullmailer/{queue,tmp} 223 + mkdir -p /var/spool/nullmailer/{queue,tmp,failed} 224 224 rm -f /var/spool/nullmailer/trigger && mkfifo -m 660 /var/spool/nullmailer/trigger 225 225 ''; 226 226
+25
nixos/modules/services/misc/nitter.nix
··· 312 312 AmbientCapabilities = lib.mkIf (cfg.server.port < 1024) [ "CAP_NET_BIND_SERVICE" ]; 313 313 Restart = "on-failure"; 314 314 RestartSec = "5s"; 315 + # Hardening 316 + CapabilityBoundingSet = if (cfg.server.port < 1024) then [ "CAP_NET_BIND_SERVICE" ] else [ "" ]; 317 + DeviceAllow = [ "" ]; 318 + LockPersonality = true; 319 + MemoryDenyWriteExecute = true; 320 + PrivateDevices = true; 321 + # A private user cannot have process capabilities on the host's user 322 + # namespace and thus CAP_NET_BIND_SERVICE has no effect. 323 + PrivateUsers = (cfg.server.port >= 1024); 324 + ProcSubset = "pid"; 325 + ProtectClock = true; 326 + ProtectControlGroups = true; 327 + ProtectHome = true; 328 + ProtectHostname = true; 329 + ProtectKernelLogs = true; 330 + ProtectKernelModules = true; 331 + ProtectKernelTunables = true; 332 + ProtectProc = "invisible"; 333 + RestrictAddressFamilies = [ "AF_INET" "AF_INET6" ]; 334 + RestrictNamespaces = true; 335 + RestrictRealtime = true; 336 + RestrictSUIDSGID = true; 337 + SystemCallArchitectures = "native"; 338 + SystemCallFilter = [ "@system-service" "~@privileged" "~@resources" ]; 339 + UMask = "0077"; 315 340 }; 316 341 }; 317 342
+5 -1
nixos/modules/services/networking/mullvad-vpn.nix
··· 9 9 default = false; 10 10 description = '' 11 11 This option enables Mullvad VPN daemon. 12 + This sets <option>networking.firewall.checkReversePath</option> to "loose", which might be undesirable for security. 12 13 ''; 13 14 }; 14 15 ··· 17 18 18 19 # mullvad-daemon writes to /etc/iproute2/rt_tables 19 20 networking.iproute2.enable = true; 21 + 22 + # See https://github.com/NixOS/nixpkgs/issues/113589 23 + networking.firewall.checkReversePath = "loose"; 20 24 21 25 systemd.services.mullvad-daemon = { 22 26 description = "Mullvad VPN daemon"; ··· 42 46 }; 43 47 }; 44 48 45 - meta.maintainers = [ maintainers.xfix ]; 49 + meta.maintainers = with maintainers; [ ymarkus ]; 46 50 }
+19 -10
nixos/modules/services/networking/ntp/chrony.nix
··· 81 81 ''; 82 82 }; 83 83 84 - initstepslew = mkOption { 85 - type = types.attrsOf (types.either types.bool types.int); 86 - default = { 87 - enabled = true; 88 - threshold = 1000; # by default, same threshold as 'ntpd -g' (1000s) 84 + initstepslew = { 85 + enabled = mkOption { 86 + type = types.bool; 87 + default = true; 88 + description = '' 89 + Allow chronyd to make a rapid measurement of the system clock error 90 + at boot time, and to correct the system clock by stepping before 91 + normal operation begins. 92 + ''; 93 + }; 94 + 95 + threshold = mkOption { 96 + type = types.either types.float types.int; 97 + default = 1000; # by default, same threshold as 'ntpd -g' (1000s) 98 + description = '' 99 + The threshold of system clock error (in seconds) above which the 100 + clock will be stepped. If the correction required is less than the 101 + threshold, a slew is used instead. 102 + ''; 89 103 }; 90 - description = '' 91 - Allow chronyd to make a rapid measurement of the system clock error at 92 - boot time, and to correct the system clock by stepping before normal 93 - operation begins. 94 - ''; 95 104 }; 96 105 97 106 directory = mkOption {
+4 -1
nixos/modules/services/networking/tinc.nix
··· 427 427 nameValuePair ("tinc.${network}") ({ 428 428 description = "Tinc daemon user for ${network}"; 429 429 isSystemUser = true; 430 + group = "tinc.${network}"; 430 431 }) 431 432 ); 432 - 433 + users.groups = flip mapAttrs' cfg.networks (network: _: 434 + nameValuePair "tinc.${network}" {} 435 + ); 433 436 }; 434 437 435 438 meta.maintainers = with maintainers; [ minijackson ];
+3 -1
nixos/modules/services/web-servers/nginx/default.nix
··· 22 22 } // (optionalAttrs (vhostConfig.enableACME || vhostConfig.useACMEHost != null) { 23 23 sslCertificate = "${certs.${certName}.directory}/fullchain.pem"; 24 24 sslCertificateKey = "${certs.${certName}.directory}/key.pem"; 25 - sslTrustedCertificate = "${certs.${certName}.directory}/chain.pem"; 25 + sslTrustedCertificate = if vhostConfig.sslTrustedCertificate != null 26 + then vhostConfig.sslTrustedCertificate 27 + else "${certs.${certName}.directory}/chain.pem"; 26 28 }) 27 29 ) cfg.virtualHosts; 28 30 enableIPv6 = config.networking.enableIPv6;
+1 -1
nixos/modules/services/web-servers/nginx/vhost-options.nix
··· 145 145 sslTrustedCertificate = mkOption { 146 146 type = types.nullOr types.path; 147 147 default = null; 148 - example = "/var/root.cert"; 148 + example = "\${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"; 149 149 description = "Path to root SSL certificate for stapling and client certificates."; 150 150 }; 151 151
+1
nixos/modules/system/boot/systemd.nix
··· 1128 1128 1129 1129 users.groups.systemd-journal.gid = config.ids.gids.systemd-journal; 1130 1130 users.users.systemd-journal-gateway.uid = config.ids.uids.systemd-journal-gateway; 1131 + users.users.systemd-journal-gateway.group = "systemd-journal-gateway"; 1131 1132 users.groups.systemd-journal-gateway.gid = config.ids.gids.systemd-journal-gateway; 1132 1133 1133 1134 # Generate timer units for all services that have a ‘startAt’ value.
+1
nixos/modules/virtualisation/containerd.nix
··· 86 86 87 87 StateDirectory = "containerd"; 88 88 RuntimeDirectory = "containerd"; 89 + RuntimeDirectoryPreserve = "yes"; 89 90 }; 90 91 unitConfig = { 91 92 StartLimitBurst = "16";
+4 -4
nixos/tests/acme.nix
··· 105 105 security.acme.certs."a.example.test".keyType = "ec384"; 106 106 security.acme.certs."a.example.test".postRun = '' 107 107 set -euo pipefail 108 - touch test 109 - chown root:root test 110 - echo testing > test 108 + touch /home/test 109 + chown root:root /home/test 110 + echo testing > /home/test 111 111 ''; 112 112 }; 113 113 ··· 383 383 switch_to(webserver, "cert-change") 384 384 webserver.wait_for_unit("acme-finished-a.example.test.target") 385 385 check_connection_key_bits(client, "a.example.test", "384") 386 - webserver.succeed("grep testing /var/lib/acme/a.example.test/test") 386 + webserver.succeed("grep testing /home/test") 387 387 # Clean to remove the testing file (and anything else messy we did) 388 388 webserver.succeed("systemctl clean acme-a.example.test.service --what=state") 389 389
+1 -1
nixos/tests/bazarr.nix
··· 7 7 in 8 8 { 9 9 name = "bazarr"; 10 - meta.maintainers = with maintainers; [ xwvvvvwx ]; 10 + meta.maintainers = with maintainers; [ d-xo ]; 11 11 12 12 nodes.machine = 13 13 { pkgs, ... }:
+4 -2
nixos/tests/nitter.nix
··· 6 6 7 7 nodes.machine = { 8 8 services.nitter.enable = true; 9 + # Test CAP_NET_BIND_SERVICE 10 + services.nitter.server.port = 80; 9 11 }; 10 12 11 13 testScript = '' 12 14 machine.wait_for_unit("nitter.service") 13 - machine.wait_for_open_port("8080") 14 - machine.succeed("curl --fail http://localhost:8080/") 15 + machine.wait_for_open_port("80") 16 + machine.succeed("curl --fail http://localhost:80/") 15 17 ''; 16 18 })
+1 -1
nixos/tests/wireguard/wg-quick.nix
··· 8 8 { 9 9 name = "wg-quick"; 10 10 meta = with pkgs.lib.maintainers; { 11 - maintainers = [ xwvvvvwx ]; 11 + maintainers = [ d-xo ]; 12 12 }; 13 13 14 14 nodes = {
+2 -2
pkgs/applications/audio/boops/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "boops"; 5 - version = "1.6.0"; 5 + version = "1.6.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sjaehn"; 9 9 repo = "BOops"; 10 10 rev = version; 11 - sha256 = "sha256-7eNvt8PxIZCp83Y5XX5fBolBon4j+HPtu8wrgG8Miok="; 11 + sha256 = "sha256-rljUb0fj231MQh+7jTpjAsZm1QkNzfdSpcI1cS5fs/c="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config ];
+3 -3
pkgs/applications/audio/helvum/default.nix
··· 13 13 14 14 rustPlatform.buildRustPackage rec { 15 15 pname = "helvum"; 16 - version = "0.2.1"; 16 + version = "0.3.0"; 17 17 18 18 src = fetchFromGitLab { 19 19 domain = "gitlab.freedesktop.org"; 20 20 owner = "ryuukyu"; 21 21 repo = pname; 22 22 rev = version; 23 - sha256 = "sha256-ZnpdGXK8N8c/s4qC2NXcn0Pdqrqr47iOWvVwXD9pn1A="; 23 + sha256 = "sha256-AlHCK4pWaoNjR0eflxHBsuVaaily/RvCbgJv/ByQZK4="; 24 24 }; 25 25 26 - cargoSha256 = "sha256-2v2L20rUWftXdhhuE3wiRrDIuSg6VFxfpWYMRaMUyTU="; 26 + cargoSha256 = "sha256-mAhh12rGvQjs2xtm+OrtVv0fgG6qni/QM/oRYoFR7U8="; 27 27 28 28 nativeBuildInputs = [ clang copyDesktopItems pkg-config ]; 29 29 buildInputs = [ glib gtk4 pipewire ];
+1 -1
pkgs/applications/blockchains/lndconnect/default.nix
··· 18 18 description = "Generate QRCode to connect apps to lnd Resources"; 19 19 license = licenses.mit; 20 20 homepage = "https://github.com/LN-Zap/lndconnect"; 21 - maintainers = [ maintainers.xwvvvvwx ]; 21 + maintainers = [ maintainers.d-xo ]; 22 22 platforms = platforms.linux; 23 23 }; 24 24 }
+1 -1
pkgs/applications/blockchains/turbo-geth/default.nix
··· 25 25 homepage = "https://github.com/ledgerwatch/turbo-geth/"; 26 26 description = "Ethereum node and geth fork focused on scalability and modularity"; 27 27 license = with licenses; [ lgpl3Plus gpl3Plus ]; 28 - maintainers = with maintainers; [ xwvvvvwx ]; 28 + maintainers = with maintainers; [ d-xo ]; 29 29 }; 30 30 }
+2 -2
pkgs/applications/misc/ausweisapp2/default.nix
··· 3 3 4 4 mkDerivation rec { 5 5 pname = "AusweisApp2"; 6 - version = "1.22.1"; 6 + version = "1.22.2"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "Governikus"; 10 10 repo = "AusweisApp2"; 11 11 rev = version; 12 - sha256 = "sha256-fl/3mdVNqnoGfOEMOBWHGhtw9rEBUcrboS7hUNPGO8I="; 12 + sha256 = "sha256-Oci1y6//45Gep4IS6Ym+v9MPCP5mOswAiWPkXqd+zR0="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake pkg-config ];
+2 -2
pkgs/applications/misc/cherrytree/default.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "cherrytree"; 22 - version = "0.99.39"; 22 + version = "0.99.40"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "giuspen"; 26 26 repo = "cherrytree"; 27 27 rev = version; 28 - sha256 = "sha256-QSRYtnZxLAaq42PvPd5+LxSzq/Hd/Cz5bquBTiGWnAE="; 28 + sha256 = "sha256-K1rf8/7kEpfLOPYJGh5U2eTnr5XCDhuc+seoUAKW7aE="; 29 29 }; 30 30 31 31 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/elogind/default.nix
··· 29 29 30 30 stdenv.mkDerivation rec { 31 31 pname = "elogind"; 32 - version = "246.9.2"; 32 + version = "246.10"; 33 33 34 34 src = fetchFromGitHub { 35 35 owner = "elogind"; 36 36 repo = pname; 37 37 rev = "v${version}"; 38 - sha256 = "sha256-EsW19D6eoEO4RJO+jwMA/SMFus+cxq9Fcy2zrcn9pd8="; 38 + sha256 = "sha256-+Nv6FL9Yjmfxs24+2mUTP//wbjzGUq4ftgJLfuEqBJg="; 39 39 }; 40 40 41 41 nativeBuildInputs = [
+5 -5
pkgs/applications/misc/zola/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "zola"; 5 - version = "unstable-2021-07-14"; 5 + version = "0.14.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "getzola"; 9 9 repo = pname; 10 - # unstable because the latest release fails to build 11 - rev = "312ffcb04c06c5f157b9fd2b944b858703238592"; 12 - sha256 = "0i5zqs1gwxhvsynb540c3azfi4357igr4i5p0bi3h7ras2asas8w"; 10 + rev = "v${version}"; 11 + sha256 = "1mvin6pfqhsfhaifivbdi6qcn0dsa98w83m1n51q807gh4l1k2yj"; 13 12 }; 14 13 15 - cargoSha256 = "0g5z0s837cfwzral2zz0avp0xywyaa3l1adxg520qrnga7z0kbh8"; 14 + cargoSha256 = "02bk399c7x15a5rkaz7ik65yihkfbjn1q46gx7l8hycqq7xb0xmg"; 16 15 17 16 nativeBuildInputs = [ cmake pkg-config installShellFiles]; 18 17 buildInputs = [ openssl oniguruma ] ··· 30 29 meta = with lib; { 31 30 description = "A fast static site generator with everything built-in"; 32 31 homepage = "https://www.getzola.org/"; 32 + changelog = "https://github.com/getzola/zola/raw/v${version}/CHANGELOG.md"; 33 33 license = licenses.mit; 34 34 maintainers = with maintainers; [ dandellion dywedir _0x4A6F ]; 35 35 # set because of unstable-* version
+16 -5
pkgs/applications/networking/browsers/lagrange/default.nix
··· 4 4 , nix-update-script 5 5 , cmake 6 6 , pkg-config 7 + , fribidi 8 + , harfbuzz 7 9 , libunistring 8 10 , mpg123 9 11 , openssl ··· 15 17 16 18 stdenv.mkDerivation rec { 17 19 pname = "lagrange"; 18 - version = "1.5.2"; 20 + version = "1.6.2"; 19 21 20 22 src = fetchFromGitHub { 21 23 owner = "skyjake"; 22 24 repo = "lagrange"; 23 25 rev = "v${version}"; 24 - sha256 = "sha256-NjiTjY2YuxUs/Wny7aDqHGw/2ML1fenjHrl089rLXFI="; 26 + sha256 = "sha256-YTWVBQt0X12UDFJv/rPBqlIBC4iXSvpdYi/HIl+BPxc="; 25 27 fetchSubmodules = true; 26 28 }; 27 29 30 + postPatch = '' 31 + rm -r lib/fribidi lib/harfbuzz 32 + ''; 33 + 28 34 nativeBuildInputs = [ cmake pkg-config ]; 29 35 30 - buildInputs = [ libunistring mpg123 openssl pcre SDL2 zlib ] 36 + buildInputs = [ fribidi harfbuzz libunistring mpg123 openssl pcre SDL2 zlib ] 31 37 ++ lib.optional stdenv.isDarwin AppKit; 32 38 33 39 hardeningDisable = lib.optional (!stdenv.cc.isClang) "format"; 34 40 35 - installPhase = if stdenv.isDarwin then '' 41 + cmakeFlags = [ 42 + "-DENABLE_HARFBUZZ_MINIMAL:BOOL=OFF" 43 + "-DENABLE_FRIBIDI_BUILD:BOOL=OFF" 44 + ]; 45 + 46 + installPhase = lib.optionalString stdenv.isDarwin '' 36 47 mkdir -p $out/Applications 37 48 mv Lagrange.app $out/Applications 38 - '' else null; 49 + ''; 39 50 40 51 passthru = { 41 52 updateScript = nix-update-script {
+41
pkgs/applications/science/misc/cwltool/default.nix
··· 1 + { lib 2 + , python3Packages 3 + }: 4 + 5 + python3Packages.buildPythonApplication rec { 6 + pname = "cwltool"; 7 + version = "3.1.20210628163208"; 8 + 9 + src = python3Packages.fetchPypi { 10 + inherit pname version; 11 + sha256 = "21b885f725420413d2f87eadc5e81c08a9c91beceda89b35d1a702ec4df47e52"; 12 + }; 13 + 14 + postPatch = '' 15 + substituteInPlace setup.py \ 16 + --replace 'prov == 1.5.1' 'prov' 17 + ''; 18 + 19 + propagatedBuildInputs = with python3Packages; [ 20 + argcomplete 21 + bagit 22 + coloredlogs 23 + mypy-extensions 24 + prov 25 + psutil 26 + pydot 27 + schema-salad 28 + shellescape 29 + typing-extensions 30 + ]; 31 + 32 + doCheck = false; # hard to setup 33 + pythonImportsCheck = [ "cwltool" ]; 34 + 35 + meta = with lib; { 36 + homepage = "https://www.commonwl.org"; 37 + license = with licenses; [ asl20 ]; 38 + description = "Common Workflow Language reference implementation"; 39 + maintainers = with maintainers; [ veprbl ]; 40 + }; 41 + }
+8 -4
pkgs/applications/terminal-emulators/foot/default.nix
··· 1 1 { stdenv 2 2 , lib 3 - , fetchzip 3 + , fetchFromGitea 4 4 , fetchurl 5 5 , fetchpatch 6 6 , runCommandNoCC ··· 94 94 pname = "foot"; 95 95 inherit version; 96 96 97 - src = fetchzip { 98 - url = "https://codeberg.org/dnkl/${pname}/archive/${version}.tar.gz"; 97 + src = fetchFromGitea { 98 + domain = "codeberg.org"; 99 + owner = "dnkl"; 100 + repo = pname; 101 + rev = version; 99 102 sha256 = "1k0alz991cslls4926c5gq02pdq0vfw9jfpprh2a1vb59xgikv7h"; 100 103 }; 101 104 ··· 147 150 export AR="${ar}" 148 151 ''; 149 152 153 + mesonBuildType = "release"; 154 + 150 155 mesonFlags = [ 151 - "--buildtype=release" 152 156 "-Db_lto=true" 153 157 "-Dterminfo-install-location=${placeholder "terminfo"}/share/terminfo" 154 158 ];
+2 -2
pkgs/applications/version-management/git-and-tools/ghq/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "ghq"; 5 - version = "1.1.7"; 5 + version = "1.2.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "x-motemen"; 9 9 repo = "ghq"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-kEs844gj1/PW7Kkpn1tvxfruznRIh2pjHCoSWGF1upQ="; 11 + sha256 = "sha256-86ZFKkzDAhx3UYWxreQI2OJJmqGnqaH2TgwQunuYhv4="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-5Eth9v98z1gxf1Fz5Lbn2roX7dSBmA7GRzg8uvT0hTI=";
+1 -1
pkgs/applications/version-management/git-and-tools/radicle-upstream/default.nix
··· 58 58 description = "A decentralized app for code collaboration"; 59 59 homepage = "https://radicle.xyz/"; 60 60 license = licenses.gpl3Plus; 61 - maintainers = with maintainers; [ xwvvvvwx ]; 61 + maintainers = with maintainers; [ d-xo ]; 62 62 platforms = [ "x86_64-linux" ]; 63 63 }; 64 64 }
+29
pkgs/applications/video/kodi-packages/requests-cache/default.nix
··· 1 + { lib, buildKodiAddon, fetchzip, addonUpdateScript, requests }: 2 + buildKodiAddon rec { 3 + pname = "requests-cache"; 4 + namespace = "script.module.requests-cache"; 5 + version = "0.5.2+matrix.2"; 6 + 7 + src = fetchzip { 8 + url = "https://mirrors.kodi.tv/addons/matrix/${namespace}/${namespace}-${version}.zip"; 9 + sha256 = "0fgl4jayq6hbhqxg16nfy9qizwf54c8nvg0icv93knaj13zfzkz8"; 10 + }; 11 + 12 + propagatedBuildInputs = [ 13 + requests 14 + ]; 15 + 16 + passthru = { 17 + pythonPath = "lib"; 18 + updateScript = addonUpdateScript { 19 + attrPath = "kodi.packages.requests-cache"; 20 + }; 21 + }; 22 + 23 + meta = with lib; { 24 + homepage = "https://github.com/reclosedev/requests-cache"; 25 + description = "Persistent cache for requests library"; 26 + license = licenses.bsd2; 27 + maintainers = teams.kodi.members; 28 + }; 29 + }
+25
pkgs/applications/video/kodi-packages/routing/default.nix
··· 1 + { lib, buildKodiAddon, fetchzip, addonUpdateScript }: 2 + buildKodiAddon rec { 3 + pname = "routing"; 4 + namespace = "script.module.routing"; 5 + version = "0.2.3+matrix.1"; 6 + 7 + src = fetchzip { 8 + url = "https://mirrors.kodi.tv/addons/matrix/${namespace}/${namespace}-${version}.zip"; 9 + sha256 = "1qhp40xd8mbcvzwlamqw1j5l224ry086593948g24drpqiiyc8x6"; 10 + }; 11 + 12 + passthru = { 13 + pythonPath = "lib"; 14 + updateScript = addonUpdateScript { 15 + attrPath = "kodi.packages.routing"; 16 + }; 17 + }; 18 + 19 + meta = with lib; { 20 + homepage = "https://github.com/tamland/kodi-plugin-routing"; 21 + description = "A routing module for kodi plugins"; 22 + license = licenses.gpl3Plus; 23 + maintainers = teams.kodi.members; 24 + }; 25 + }
+27
pkgs/applications/video/kodi-packages/steam-library/default.nix
··· 1 + { lib, buildKodiAddon, fetchFromGitHub, requests, requests-cache, routing }: 2 + 3 + buildKodiAddon rec { 4 + pname = "steam-library"; 5 + namespace = "plugin.program.steam.library"; 6 + version = "0.8.0"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "aanderse"; 10 + repo = namespace; 11 + rev = "v${version}"; 12 + sha256 = "1d8n8zkprjql0nw5ff752yr994hw2ikd0ny3m9hjr90s4kdykjzr"; 13 + }; 14 + 15 + propagatedBuildInputs = [ 16 + requests 17 + requests-cache 18 + routing 19 + ]; 20 + 21 + meta = with lib; { 22 + homepage = "https://github.com/aanderse/plugin.program.steam.library"; 23 + description = "View your entire Steam library right from Kodi"; 24 + license = licenses.gpl3Plus; 25 + maintainers = teams.kodi.members; 26 + }; 27 + }
+2 -2
pkgs/data/themes/orchis-theme/default.nix
··· 10 10 11 11 stdenvNoCC.mkDerivation rec { 12 12 pname = "orchis-theme"; 13 - version = "2021-06-09"; 13 + version = "2021-06-25"; 14 14 15 15 src = fetchFromGitHub { 16 16 repo = "Orchis-theme"; 17 17 owner = "vinceliuice"; 18 18 rev = version; 19 - sha256 = "sha256-YlrocFDk3da2eqxbJ5lPUUxHHvJZx19LOa0MSljWY8Q="; 19 + sha256 = "sha256-j0nsw1yR1yOckXiIMtzhC3w6kvfzxQQHgwdY6l0OuXw="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ gtk3 sassc ];
+2 -2
pkgs/desktops/gnome/extensions/gsconnect/default.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "gnome-shell-extension-gsconnect"; 22 - version = "46"; 22 + version = "47"; 23 23 24 24 outputs = [ "out" "installedTests" ]; 25 25 ··· 27 27 owner = "andyholmes"; 28 28 repo = "gnome-shell-extension-gsconnect"; 29 29 rev = "v${version}"; 30 - sha256 = "161379kipr6z6gbhchb5b17djrkg5fbvblyyabzkc2gv05r3h6fw"; 30 + sha256 = "sha256-cpyB7ufjKTj7YVbPlQFJ4qaL6Rb/aBReKxCYzErT4+Q="; 31 31 }; 32 32 33 33 patches = [
+5 -6
pkgs/development/compilers/llvm/git/clang/default.nix
··· 1 - { lib, stdenv, llvm_meta, src, cmake, libxml2, libllvm, version, python3 1 + { lib, stdenv, llvm_meta, src, substituteAll, cmake, libxml2, libllvm, version, python3 2 2 , buildLlvmTools 3 3 , fixDarwinDylibNames 4 4 , enableManpages ? false ··· 37 37 ./purity.patch 38 38 # https://reviews.llvm.org/D51899 39 39 ./gnu-install-dirs.patch 40 + (substituteAll { 41 + src = ../../clang-11-12-LLVMgold-path.patch; 42 + libllvmLibdir = "${libllvm.lib}/lib"; 43 + }) 40 44 ]; 41 45 42 46 postPatch = '' ··· 52 56 53 57 outputs = [ "out" "lib" "dev" "python" ]; 54 58 55 - # Clang expects to find LLVMgold in its own prefix 56 59 postInstall = '' 57 - if [ -e ${libllvm.lib}/lib/LLVMgold.so ]; then 58 - ln -sv ${libllvm.lib}/lib/LLVMgold.so $lib/lib 59 - fi 60 - 61 60 ln -sv $out/bin/clang $out/bin/cpp 62 61 63 62 # Move libclang to 'lib' output
+1 -3
pkgs/development/compilers/llvm/git/compiler-rt/X86-support-extension.patch
··· 2 2 index 3a66dd9c3fb..7efc85d9f9f 100644 3 3 --- a/lib/builtins/CMakeLists.txt 4 4 +++ b/lib/builtins/CMakeLists.txt 5 - @@ -301,6 +301,10 @@ if (NOT MSVC) 6 - i386/umoddi3.S 7 - ) 5 + @@ -345,4 +345,8 @@ if (NOT MSVC) 8 6 9 7 + set(i486_SOURCES ${i386_SOURCES}) 10 8 + set(i586_SOURCES ${i386_SOURCES})
+71
pkgs/development/compilers/llvm/git/compiler-rt/darwin-targetconditionals.patch
··· 1 + diff --git a/lib/sanitizer_common/sanitizer_mac.cpp b/lib/sanitizer_common/sanitizer_mac.cpp 2 + --- a/lib/sanitizer_common/sanitizer_mac.cpp 3 + +++ b/lib/sanitizer_common/sanitizer_mac.cpp 4 + @@ -613,9 +613,15 @@ HandleSignalMode GetHandleSignalMode(int signum) { 5 + // Offset example: 6 + // XNU 17 -- macOS 10.13 -- iOS 11 -- tvOS 11 -- watchOS 4 7 + constexpr u16 GetOSMajorKernelOffset() { 8 + - if (TARGET_OS_OSX) return 4; 9 + - if (TARGET_OS_IOS || TARGET_OS_TV) return 6; 10 + - if (TARGET_OS_WATCH) return 13; 11 + +#if TARGET_OS_OSX 12 + + return 4; 13 + +#endif 14 + +#if TARGET_OS_IOS || TARGET_OS_TV 15 + + return 6; 16 + +#endif 17 + +#if TARGET_OS_WATCH 18 + + return 13; 19 + +#endif 20 + } 21 + 22 + using VersStr = char[64]; 23 + @@ -627,13 +633,13 @@ static uptr ApproximateOSVersionViaKernelVersion(VersStr vers) { 24 + u16 os_major = kernel_major - offset; 25 + 26 + const char *format = "%d.0"; 27 + - if (TARGET_OS_OSX) { 28 + - if (os_major >= 16) { // macOS 11+ 29 + - os_major -= 5; 30 + - } else { // macOS 10.15 and below 31 + - format = "10.%d"; 32 + - } 33 + +#if TARGET_OS_OSX 34 + + if (os_major >= 16) { // macOS 11+ 35 + + os_major -= 5; 36 + + } else { // macOS 10.15 and below 37 + + format = "10.%d"; 38 + } 39 + +#endif 40 + return internal_snprintf(vers, sizeof(VersStr), format, os_major); 41 + } 42 + 43 + @@ -681,15 +687,14 @@ void ParseVersion(const char *vers, u16 *major, u16 *minor) { 44 + // Aligned versions example: 45 + // macOS 10.15 -- iOS 13 -- tvOS 13 -- watchOS 6 46 + static void MapToMacos(u16 *major, u16 *minor) { 47 + - if (TARGET_OS_OSX) 48 + - return; 49 + - 50 + - if (TARGET_OS_IOS || TARGET_OS_TV) 51 + +#if !TARGET_OS_OSX 52 + +#if TARGET_OS_IOS || TARGET_OS_TV 53 + *major += 2; 54 + - else if (TARGET_OS_WATCH) 55 + +#elif TARGET_OS_WATCH 56 + *major += 9; 57 + - else 58 + +#else 59 + UNREACHABLE("unsupported platform"); 60 + +#endif 61 + 62 + if (*major >= 16) { // macOS 11+ 63 + *major -= 5; 64 + @@ -697,6 +702,7 @@ static void MapToMacos(u16 *major, u16 *minor) { 65 + *minor = *major; 66 + *major = 10; 67 + } 68 + +#endif 69 + } 70 + 71 + static MacosVersion GetMacosAlignedVersionInternal() {
+2
pkgs/development/compilers/llvm/git/compiler-rt/default.nix
··· 60 60 # extra `/`. 61 61 ./normalize-var.patch 62 62 ]# ++ lib.optional stdenv.hostPlatform.isMusl ./sanitizers-nongnu.patch 63 + # Prevent a compilation error on darwin 64 + ++ lib.optional stdenv.hostPlatform.isDarwin ./darwin-targetconditionals.patch 63 65 ++ lib.optional stdenv.hostPlatform.isAarch32 ./armv7l.patch; 64 66 65 67 # TSAN requires XPC on Darwin, which we have no public/free source files for. We can depend on the Apple frameworks
+10 -1
pkgs/development/compilers/llvm/git/lldb/default.nix
··· 19 19 , Carbon 20 20 , Cocoa 21 21 , lit 22 + , makeWrapper 22 23 , enableManpages ? false 23 24 }: 24 25 ··· 42 43 outputs = [ "out" "lib" "dev" ]; 43 44 44 45 nativeBuildInputs = [ 45 - cmake python3 which swig lit 46 + cmake python3 which swig lit makeWrapper 46 47 ] ++ lib.optionals enableManpages [ 47 48 python3.pkgs.sphinx python3.pkgs.recommonmark 48 49 ]; ··· 84 85 85 86 doCheck = false; 86 87 88 + installCheckPhase = '' 89 + if [ ! -e "$lib/${python3.sitePackages}/lldb/_lldb.so" ] ; then 90 + return 1; 91 + fi 92 + ''; 93 + 87 94 postInstall = '' 95 + wrapProgram $out/bin/lldb --prefix PYTHONPATH : $lib/${python3.sitePackages}/ 96 + 88 97 # Editor support 89 98 # vscode: 90 99 install -D ../tools/lldb-vscode/package.json $out/share/vscode/extensions/llvm-org.lldb-vscode-0.1.0/package.json
+26
pkgs/development/compilers/llvm/git/lldb/gnu-install-dirs.patch
··· 63 63 install(TARGETS lldbIntelFeatures 64 64 - LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}) 65 65 + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}) 66 + diff --git a/cmake/modules/LLDBStandalone.cmake b/cmake/modules/LLDBStandalone.cmake 67 + index 752113b..010f187 100644 68 + --- a/cmake/modules/LLDBStandalone.cmake 69 + +++ b/cmake/modules/LLDBStandalone.cmake 70 + @@ -62,7 +62,7 @@ endif() 71 + 72 + # They are used as destination of target generators. 73 + set(LLVM_RUNTIME_OUTPUT_INTDIR ${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/bin) 74 + -set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX}) 75 + +set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}) 76 + if(WIN32 OR CYGWIN) 77 + # DLL platform -- put DLLs into bin. 78 + set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_RUNTIME_OUTPUT_INTDIR}) 79 + diff --git a/CMakeLists.txt b/CMakeLists.txt 80 + index b5633e2..86e4738 100644 81 + --- a/CMakeLists.txt 82 + +++ b/CMakeLists.txt 83 + @@ -79,7 +79,7 @@ if (LLDB_ENABLE_PYTHON) 84 + if(LLDB_BUILD_FRAMEWORK) 85 + set(lldb_python_target_dir "${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}/LLDB.framework/Resources/Python/lldb") 86 + else() 87 + - set(lldb_python_target_dir "${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${LLDB_PYTHON_RELATIVE_PATH}/lldb") 88 + + set(lldb_python_target_dir "${CMAKE_INSTALL_LIBDIR}/../${LLDB_PYTHON_RELATIVE_PATH}/lldb") 89 + endif() 90 + get_target_property(lldb_python_bindings_dir swig_wrapper_python BINARY_DIR) 91 + finish_swig_python("lldb-python" "${lldb_python_bindings_dir}" "${lldb_python_target_dir}")
+2 -2
pkgs/development/libraries/dqlite/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "dqlite"; 6 - version = "1.8.0"; 6 + version = "1.9.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "canonical"; 10 10 repo = pname; 11 11 rev = "v${version}"; 12 - sha256 = "0ghvwlgj5574kpgc53bfhqp4437xxvr05061wwxplpjxn37hy26d"; 12 + sha256 = "0zalsvr0vy7632nhm96a29lrfy18iqsmbxpyz2lvq80mrjlbrzsn"; 13 13 }; 14 14 15 15 nativeBuildInputs = [ autoreconfHook file pkg-config ];
+2 -2
pkgs/development/libraries/entt/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "entt"; 4 - version = "3.8.0"; 4 + version = "3.8.1"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "skypjack"; 8 8 repo = "entt"; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-gieft0sErTr3aB6mZLdALSx+RkmCQuE9lopAwJbOXnA="; 10 + sha256 = "sha256-vg2tpGyZZM8c97Qko88JMP5YNPZx5kI5qRkkRclvZtA="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ cmake ];
+14 -5
pkgs/development/libraries/fcft/default.nix
··· 1 - { stdenv, lib, fetchzip, pkg-config, meson, ninja, scdoc 1 + { stdenv, lib, fetchFromGitea, pkg-config, meson, ninja, scdoc 2 2 , freetype, fontconfig, pixman, tllist, check 3 3 , withHarfBuzz ? true 4 4 , harfbuzz 5 5 }: 6 6 7 + let 8 + # Courtesy of sternenseemann and FRidh, commit c9a7fdfcfb420be8e0179214d0d91a34f5974c54 9 + mesonFeatureFlag = opt: b: "-D${opt}=${if b then "enabled" else "disabled"}"; 10 + in 11 + 7 12 stdenv.mkDerivation rec { 8 13 pname = "fcft"; 9 14 version = "2.4.4"; 10 15 11 - src = fetchzip { 12 - url = "https://codeberg.org/dnkl/fcft/archive/${version}.tar.gz"; 16 + src = fetchFromGitea { 17 + domain = "codeberg.org"; 18 + owner = "dnkl"; 19 + repo = "fcft"; 20 + rev = version; 13 21 sha256 = "0ycc2xy9jhxcxwbfk9d4jdxgf2zsc664phbf859kshb822m3jf57"; 14 22 }; 15 23 ··· 19 27 ++ lib.optional withHarfBuzz harfbuzz; 20 28 checkInputs = [ check ]; 21 29 30 + mesonBuildType = "release"; 22 31 mesonFlags = [ 23 - "--buildtype=release" 24 - "-Dtext-shaping=${if withHarfBuzz then "enabled" else "disabled"}" 32 + (mesonFeatureFlag "text-shaping" withHarfBuzz) 25 33 ]; 26 34 27 35 doCheck = true; 28 36 29 37 meta = with lib; { 30 38 homepage = "https://codeberg.org/dnkl/fcft"; 39 + changelog = "https://codeberg.org/dnkl/fcft/releases/tag/${version}"; 31 40 description = "Simple library for font loading and glyph rasterization"; 32 41 maintainers = with maintainers; [ 33 42 fionera
+2 -2
pkgs/development/libraries/java/commons/compress/default.nix
··· 1 1 { lib, stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.20"; 4 + version = "1.21"; 5 5 pname = "commons-compress"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://apache/commons/compress/binaries/${pname}-${version}-bin.tar.gz"; 9 - sha256 = "0zx1sc0rw3vzjan69vxr2qw82y9b0hqdzp4plcahc3c1y0vkz3fg"; 9 + sha256 = "sha256-sWF0K5MSOSXUxBLC9+1/RF5ST4tIzVKGnKQvStuVLvM="; 10 10 }; 11 11 12 12 installPhase = ''
+1 -1
pkgs/development/libraries/microsoft_gsl/default.nix
··· 41 41 homepage = "https://github.com/Microsoft/GSL"; 42 42 license = licenses.mit; 43 43 platforms = platforms.all; 44 - maintainers = with maintainers; [ thoughtpolice xwvvvvwx yuriaisaka ]; 44 + maintainers = with maintainers; [ thoughtpolice yuriaisaka ]; 45 45 }; 46 46 }
+5 -4
pkgs/development/libraries/raft-canonical/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv }: 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv, lz4 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "raft-canonical"; 5 - version = "0.10.1"; 5 + version = "0.11.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "canonical"; 9 9 repo = "raft"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Q4m0CCIArgsobhmhqLvkr7fK40SX/qBk6K5Qu0eRLaI="; 11 + sha256 = "050dwy34jh8dihfwfm0r1by2i3sy9crapipp9idw32idm79y4izb"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook file pkg-config ]; 15 - buildInputs = [ libuv ]; 15 + buildInputs = [ libuv lz4 ]; 16 16 17 17 enableParallelBuilding = true; 18 18 ··· 37 37 ''; 38 38 homepage = "https://github.com/canonical/raft"; 39 39 license = licenses.asl20; 40 + platforms = platforms.linux; 40 41 maintainers = with maintainers; [ wucke13 ]; 41 42 }; 42 43 }
+1 -1
pkgs/development/libraries/range-v3/default.nix
··· 30 30 changelog = "https://github.com/ericniebler/range-v3/releases/tag/${version}"; 31 31 license = licenses.boost; 32 32 platforms = platforms.all; 33 - maintainers = with maintainers; [ primeos xwvvvvwx ]; 33 + maintainers = with maintainers; [ primeos ]; 34 34 }; 35 35 }
+4 -2
pkgs/development/libraries/rocksdb/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "rocksdb"; 18 - version = "6.17.3"; 18 + version = "6.23.2"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "facebook"; 22 22 repo = pname; 23 23 rev = "v${version}"; 24 - sha256 = "sha256-mfONfYMxZ3CT7Bk3OYSwg0UChmk4mQ1+cHN94gEDZcM="; 24 + sha256 = "0ivdcc012c35f2wcc5qzic2jlrwp4whyz5sbz1nyfyrnv0xf5djw"; 25 25 }; 26 26 27 27 nativeBuildInputs = [ cmake ninja ]; ··· 60 60 meta = with lib; { 61 61 homepage = "https://rocksdb.org"; 62 62 description = "A library that provides an embeddable, persistent key-value store for fast storage"; 63 + changelog = "https://github.com/facebook/rocksdb/raw/v${version}/HISTORY.md"; 63 64 license = licenses.asl20; 65 + platforms = platforms.all; 64 66 maintainers = with maintainers; [ adev magenbluten ]; 65 67 }; 66 68 }
+8 -3
pkgs/development/libraries/tllist/default.nix
··· 1 1 { stdenv 2 2 , lib 3 - , fetchgit 3 + , fetchFromGitea 4 4 , meson 5 5 , ninja 6 6 }: ··· 9 9 pname = "tllist"; 10 10 version = "1.0.5"; 11 11 12 - src = fetchgit { 13 - url = "https://codeberg.org/dnkl/tllist.git"; 12 + src = fetchFromGitea { 13 + domain = "codeberg.org"; 14 + owner = "dnkl"; 15 + repo = "tllist"; 14 16 rev = version; 15 17 sha256 = "wJEW7haQBtCR2rffKOFyqH3aq0eBr6H8T6gnBs2bNRg="; 16 18 }; 17 19 18 20 nativeBuildInputs = [ meson ninja ]; 19 21 22 + mesonBuildType = "release"; 23 + 20 24 doCheck = true; 21 25 22 26 meta = with lib; { 23 27 homepage = "https://codeberg.org/dnkl/tllist"; 28 + changelog = "https://codeberg.org/dnkl/tllist/releases/tag/${version}"; 24 29 description = "C header file only implementation of a typed linked list"; 25 30 longDescription = '' 26 31 Most C implementations of linked list are untyped. That is, their data
+1 -1
pkgs/development/lisp-modules/clwrapper/default.nix
··· 42 42 43 43 setupHook = ./setup-hook.sh; 44 44 45 - phases="installPhase fixupPhase"; 45 + dontUnpack = true; 46 46 47 47 ASDF_OUTPUT_TRANSLATIONS="${builtins.storeDir}/:${builtins.storeDir}"; 48 48
+1
pkgs/development/node-packages/node-packages.json
··· 77 77 , "create-react-native-app" 78 78 , "csslint" 79 79 , "dat" 80 + , "degit" 80 81 , "dhcp" 81 82 , "diagnostic-languageserver" 82 83 , "dockerfile-language-server-nodejs"
+1059 -1179
pkgs/development/node-packages/node-packages.nix
··· 2074 2074 sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA=="; 2075 2075 }; 2076 2076 }; 2077 - "@expo/config-5.0.6" = { 2077 + "@expo/config-5.0.7" = { 2078 2078 name = "_at_expo_slash_config"; 2079 2079 packageName = "@expo/config"; 2080 - version = "5.0.6"; 2080 + version = "5.0.7"; 2081 2081 src = fetchurl { 2082 - url = "https://registry.npmjs.org/@expo/config/-/config-5.0.6.tgz"; 2083 - sha512 = "KnSEmlRYT4AsxOGa2OPEefeCEJSo4oMZI/2q3/vriiSYlI2J12/YZz2QaZtGUfKD6jm+5hCerYRQcAMhzj5/BA=="; 2082 + url = "https://registry.npmjs.org/@expo/config/-/config-5.0.7.tgz"; 2083 + sha512 = "7Wzao9uALHmRSf59FMsHk1vxW4m4alDCJmfo+enXnl5o6UYiCDYfjNXctMwnW+fBM3opta4FbmmPGIftfXOesw=="; 2084 2084 }; 2085 2085 }; 2086 - "@expo/config-plugins-3.0.6" = { 2086 + "@expo/config-plugins-3.0.7" = { 2087 2087 name = "_at_expo_slash_config-plugins"; 2088 2088 packageName = "@expo/config-plugins"; 2089 - version = "3.0.6"; 2089 + version = "3.0.7"; 2090 2090 src = fetchurl { 2091 - url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-3.0.6.tgz"; 2092 - sha512 = "hJfxEWfsWuqt4WG3X2F74+tL1JrXZomRBgShKLTMw1vvLe4md70rjTLbmaHkcGb+TfY3RtFZSK8p9oqFXCi8KA=="; 2091 + url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-3.0.7.tgz"; 2092 + sha512 = "7YOoFtxB6XqDil+OlGXi7iredKHxXVFCAOIVfFyEDzO3oo0gBmWGmUnHgrPDvpMj0q+adCCh5BL8OcvGfc9ITQ=="; 2093 2093 }; 2094 2094 }; 2095 2095 "@expo/config-types-42.0.0" = { ··· 2101 2101 sha512 = "Rj02OMZke2MrGa/1Y/EScmR7VuWbDEHPJyvfFyyLbadUt+Yv6isCdeFzDt71I7gJlPR9T4fzixeYLrtXXOTq0w=="; 2102 2102 }; 2103 2103 }; 2104 - "@expo/dev-server-0.1.81" = { 2104 + "@expo/dev-server-0.1.82" = { 2105 2105 name = "_at_expo_slash_dev-server"; 2106 2106 packageName = "@expo/dev-server"; 2107 - version = "0.1.81"; 2107 + version = "0.1.82"; 2108 2108 src = fetchurl { 2109 - url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.81.tgz"; 2110 - sha512 = "N/NeD/40aUCVM1m8BFlkQggLiy1HeL0SHx/6SXzyXZNCqcA2TdsZ3RGcvLG2RZlPBknSSixufaABQF482yL3fQ=="; 2109 + url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.82.tgz"; 2110 + sha512 = "g7H4FDxcdt9y41MpivtpYqgNwEqoaSKA+lrR+qPCVPcZbIcq+xRq/coYfeXhp/L203vAab67cNVnqTQetj1T3A=="; 2111 2111 }; 2112 2112 }; 2113 - "@expo/dev-tools-0.13.112" = { 2113 + "@expo/dev-tools-0.13.113" = { 2114 2114 name = "_at_expo_slash_dev-tools"; 2115 2115 packageName = "@expo/dev-tools"; 2116 - version = "0.13.112"; 2116 + version = "0.13.113"; 2117 2117 src = fetchurl { 2118 - url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.112.tgz"; 2119 - sha512 = "lUjC0Q6HeNGuwLkV3fIeexhx7ccx1+OCd7W6m2g+eGF0hMPKHPfrUED4Q1Sin/Y9d7yZxQqwzCIOMfxzaZ2GxA=="; 2118 + url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.113.tgz"; 2119 + sha512 = "3z1gIBSnDATukcyvN1Q6ywT5FExJrf/wfg+1T0nQ8OZcyzFbi6u/tdns0mjT5Z+AyXDKtyHbQzGnRzegy82i3Q=="; 2120 2120 }; 2121 2121 }; 2122 2122 "@expo/devcert-1.0.0" = { ··· 2137 2137 sha512 = "ZggQK5w7awqYdA/TE0DT02nYxWirQm2r7NNy043zVtzBCtjhLpFpluk1v9W0pH4+nT1ChGk1c67j0mYRKcBkjg=="; 2138 2138 }; 2139 2139 }; 2140 - "@expo/json-file-8.2.32" = { 2140 + "@expo/json-file-8.2.33" = { 2141 2141 name = "_at_expo_slash_json-file"; 2142 2142 packageName = "@expo/json-file"; 2143 - version = "8.2.32"; 2143 + version = "8.2.33"; 2144 2144 src = fetchurl { 2145 - url = "https://registry.npmjs.org/@expo/json-file/-/json-file-8.2.32.tgz"; 2146 - sha512 = "VnpoEnjMptBQr/zgkfGHd7L8iJBme9g2AVpUIecI+aoW6qmeIRbBViPmyNABgH4UUQn3ObQCxe+q1dAdJo8KGg=="; 2145 + url = "https://registry.npmjs.org/@expo/json-file/-/json-file-8.2.33.tgz"; 2146 + sha512 = "CDnhjdirUs6OdN5hOSTJ2y3i9EiJMk7Z5iDljC5xyCHCrUex7oyI8vbRsZEojAahxZccgL/PrO+CjakiFFWurg=="; 2147 2147 }; 2148 2148 }; 2149 - "@expo/metro-config-0.1.81" = { 2149 + "@expo/metro-config-0.1.82" = { 2150 2150 name = "_at_expo_slash_metro-config"; 2151 2151 packageName = "@expo/metro-config"; 2152 - version = "0.1.81"; 2152 + version = "0.1.82"; 2153 2153 src = fetchurl { 2154 - url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.81.tgz"; 2155 - sha512 = "Ta95ohtPChXnuZsCEqMMl4yWqt5hThEY1VULLMe19kT4dPa/rEQ72rtRzpDFH7adNQBRrahTz7kx9rWj6YO+MA=="; 2154 + url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.82.tgz"; 2155 + sha512 = "rgx0ykWFvu+7jXDSe/cJB0fpIKqJX4X2k+azBIS9KmVLl5/ceKuCr6Abjy70HZTAXX/SQ7fS0C+FhzIX2Upgrg=="; 2156 2156 }; 2157 2157 }; 2158 2158 "@expo/osascript-2.0.30" = { ··· 2164 2164 sha512 = "IlBCyso1wJl8AbgS8n5lcUcXa/8TTU/rHgurWvJRWjErtFOELsqV4O+NCcB7jr4bvv8uZHeRKHQpsoyZWmmk/g=="; 2165 2165 }; 2166 2166 }; 2167 - "@expo/package-manager-0.0.45" = { 2167 + "@expo/package-manager-0.0.46" = { 2168 2168 name = "_at_expo_slash_package-manager"; 2169 2169 packageName = "@expo/package-manager"; 2170 - version = "0.0.45"; 2170 + version = "0.0.46"; 2171 2171 src = fetchurl { 2172 - url = "https://registry.npmjs.org/@expo/package-manager/-/package-manager-0.0.45.tgz"; 2173 - sha512 = "UxQxRVBKkHCd4c5otoigRFQ7tkP/EyP58ZVQ0QN5SpsUULmyKmpPFzvELoOuPsYCgSioyvmwpYe2bMEt07oJJA=="; 2172 + url = "https://registry.npmjs.org/@expo/package-manager/-/package-manager-0.0.46.tgz"; 2173 + sha512 = "+Mo7UzRNUy52uzefRkeKv8+YEE+2NhBpXfvZ1Btha2/zSJ+8fxDT0mTQUiupiaeMRPyCMqdkoE39qjF26xifYA=="; 2174 2174 }; 2175 2175 }; 2176 2176 "@expo/plist-0.0.13" = { ··· 2182 2182 sha512 = "zGPSq9OrCn7lWvwLLHLpHUUq2E40KptUFXn53xyZXPViI0k9lbApcR9KlonQZ95C+ELsf0BQ3gRficwK92Ivcw=="; 2183 2183 }; 2184 2184 }; 2185 - "@expo/prebuild-config-2.0.6" = { 2185 + "@expo/prebuild-config-2.0.7" = { 2186 2186 name = "_at_expo_slash_prebuild-config"; 2187 2187 packageName = "@expo/prebuild-config"; 2188 - version = "2.0.6"; 2188 + version = "2.0.7"; 2189 2189 src = fetchurl { 2190 - url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-2.0.6.tgz"; 2191 - sha512 = "eJHkTFmLwD0llfZMo1eGQNhd50cSmqWrPLcOoY7w1nSwfwYKa6/H18XwQ3ZbTsLf44Ai/Uj8JeI3HClEFYMsxw=="; 2190 + url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-2.0.7.tgz"; 2191 + sha512 = "EMgo4ywR9hk+I90XEwtl/UHWOlw8GE01BQtrLWQbIR0pr+bvDOYINfe8PzA21oODPGUkbMvp5Z8E79VZBqqjfg=="; 2192 2192 }; 2193 2193 }; 2194 2194 "@expo/results-1.0.0" = { ··· 2227 2227 sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew=="; 2228 2228 }; 2229 2229 }; 2230 - "@expo/webpack-config-0.13.3" = { 2230 + "@expo/webpack-config-0.14.0" = { 2231 2231 name = "_at_expo_slash_webpack-config"; 2232 2232 packageName = "@expo/webpack-config"; 2233 - version = "0.13.3"; 2233 + version = "0.14.0"; 2234 2234 src = fetchurl { 2235 - url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.13.3.tgz"; 2236 - sha512 = "ja4oGqIpS5K9dqPysAudQYp8Nd/sm0ojXRCIequO4fcePM8JNLQ4D8vbM2ahl6osODAJqpOumH2UlB1pTnSZrA=="; 2235 + url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.14.0.tgz"; 2236 + sha512 = "YsWLjOQIUN/+pJ5CEmhWfERwjpp6KGjxbd2Nm2KWx4v69wphyPudyrKJaD/b/41Iw5TKHGjV3hlHrYWvZ6OFaA=="; 2237 2237 }; 2238 2238 }; 2239 2239 "@expo/xcpretty-3.1.4" = { ··· 2785 2785 sha512 = "1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA=="; 2786 2786 }; 2787 2787 }; 2788 - "@hapi/formula-1.2.0" = { 2789 - name = "_at_hapi_slash_formula"; 2790 - packageName = "@hapi/formula"; 2791 - version = "1.2.0"; 2792 - src = fetchurl { 2793 - url = "https://registry.npmjs.org/@hapi/formula/-/formula-1.2.0.tgz"; 2794 - sha512 = "UFbtbGPjstz0eWHb+ga/GM3Z9EzqKXFWIbSOFURU0A/Gku0Bky4bCk9/h//K2Xr3IrCfjFNhMm4jyZ5dbCewGA=="; 2795 - }; 2796 - }; 2797 2788 "@hapi/hoek-8.5.1" = { 2798 2789 name = "_at_hapi_slash_hoek"; 2799 2790 packageName = "@hapi/hoek"; ··· 2819 2810 src = fetchurl { 2820 2811 url = "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz"; 2821 2812 sha512 = "entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ=="; 2822 - }; 2823 - }; 2824 - "@hapi/joi-16.1.8" = { 2825 - name = "_at_hapi_slash_joi"; 2826 - packageName = "@hapi/joi"; 2827 - version = "16.1.8"; 2828 - src = fetchurl { 2829 - url = "https://registry.npmjs.org/@hapi/joi/-/joi-16.1.8.tgz"; 2830 - sha512 = "wAsVvTPe+FwSrsAurNt5vkg3zo+TblvC5Bb1zMVK6SJzZqw9UrJnexxR+76cpePmtUZKHAPxcQ2Bf7oVHyahhg=="; 2831 - }; 2832 - }; 2833 - "@hapi/pinpoint-1.0.2" = { 2834 - name = "_at_hapi_slash_pinpoint"; 2835 - packageName = "@hapi/pinpoint"; 2836 - version = "1.0.2"; 2837 - src = fetchurl { 2838 - url = "https://registry.npmjs.org/@hapi/pinpoint/-/pinpoint-1.0.2.tgz"; 2839 - sha512 = "dtXC/WkZBfC5vxscazuiJ6iq4j9oNx1SHknmIr8hofarpKUZKmlUVYVIhNVzIEgK5Wrc4GMHL5lZtt1uS2flmQ=="; 2840 2813 }; 2841 2814 }; 2842 2815 "@hapi/topo-3.1.6" = { ··· 3955 3928 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 3956 3929 }; 3957 3930 }; 3958 - "@netlify/build-17.9.0" = { 3931 + "@netlify/build-17.9.2" = { 3959 3932 name = "_at_netlify_slash_build"; 3960 3933 packageName = "@netlify/build"; 3961 - version = "17.9.0"; 3934 + version = "17.9.2"; 3962 3935 src = fetchurl { 3963 - url = "https://registry.npmjs.org/@netlify/build/-/build-17.9.0.tgz"; 3964 - sha512 = "RaDv21H391dkVciAMATG2PkSpcG0qcnAVlwsBSx7Yb1rHrUhynxkY9jTWmn1P4ufWfPoykIDPRG7n/BRVA/Iqg=="; 3936 + url = "https://registry.npmjs.org/@netlify/build/-/build-17.9.2.tgz"; 3937 + sha512 = "RbaHBWkbrwiXdLf73gjcjJAn7z3zsRqhXqaF2K9ycru7K7XIVG/BGEKztSD8IoAYR2DuY9KqmrlbPuiQg0IFFg=="; 3965 3938 }; 3966 3939 }; 3967 3940 "@netlify/cache-utils-2.0.0" = { ··· 3973 3946 sha512 = "CnWCssqm0pNCt/92zxpn2tfKaCts0envf4NwL7XgUDpPaKOCSwwi9+1ew8POdPmPaPYY0wFvOgejwNopKGzCOQ=="; 3974 3947 }; 3975 3948 }; 3976 - "@netlify/config-14.4.1" = { 3949 + "@netlify/config-14.4.3" = { 3977 3950 name = "_at_netlify_slash_config"; 3978 3951 packageName = "@netlify/config"; 3979 - version = "14.4.1"; 3952 + version = "14.4.3"; 3980 3953 src = fetchurl { 3981 - url = "https://registry.npmjs.org/@netlify/config/-/config-14.4.1.tgz"; 3982 - sha512 = "30H92pQajmBo6dU+LOXDpa0dC7EKVDmncED6itzMME46bn6hySKswrY524fP6ArAF/g+LJD6Uhf4AlWNDnz3Fw=="; 3954 + url = "https://registry.npmjs.org/@netlify/config/-/config-14.4.3.tgz"; 3955 + sha512 = "lCuhs58xDIkDF34A1Xz4CTXvr9xgVHJn5Y5Xwmj1Tgp78eOSQFozgYLVXEwLqTTg3EFiniPoHy0oSPMmrhCZMw=="; 3983 3956 }; 3984 3957 }; 3985 3958 "@netlify/esbuild-0.13.6" = { ··· 4414 4387 sha512 = "Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA=="; 4415 4388 }; 4416 4389 }; 4390 + "@oclif/core-0.5.28" = { 4391 + name = "_at_oclif_slash_core"; 4392 + packageName = "@oclif/core"; 4393 + version = "0.5.28"; 4394 + src = fetchurl { 4395 + url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.28.tgz"; 4396 + sha512 = "t9jaGLRP5yJKwiMIzKmzYyP1eRxltWAY02lduUDp3d6cE+Dt2pcIGd7KtsOImKUWv+ClLI7O/CVHnMkOfNJvYA=="; 4397 + }; 4398 + }; 4417 4399 "@oclif/errors-1.3.5" = { 4418 4400 name = "_at_oclif_slash_errors"; 4419 4401 packageName = "@oclif/errors"; ··· 4459 4441 sha512 = "tuzhvxxRtfLnWa96klngXBi5IwHt9S/twedCbQhl9dYIKTFMHI1BcOQcPra6ylct+M+b9jhEF5sjWLv78tB6tw=="; 4460 4442 }; 4461 4443 }; 4462 - "@oclif/plugin-help-3.2.2" = { 4444 + "@oclif/plugin-help-3.3.0" = { 4463 4445 name = "_at_oclif_slash_plugin-help"; 4464 4446 packageName = "@oclif/plugin-help"; 4465 - version = "3.2.2"; 4447 + version = "3.3.0"; 4466 4448 src = fetchurl { 4467 - url = "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-3.2.2.tgz"; 4468 - sha512 = "SPZ8U8PBYK0n4srFjCLedk0jWU4QlxgEYLCXIBShJgOwPhTTQknkUlsEwaMIevvCU4iCQZhfMX+D8Pz5GZjFgA=="; 4449 + url = "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-3.3.0.tgz"; 4450 + sha512 = "+eYQZXsWnc54IM5Hv2+IoKBTKUSDt+vRbwf5I8w+DaXvzOmx0VzAbLgL1ciJzYh66CknjWMUJf/hxoc8ykJHaQ=="; 4469 4451 }; 4470 4452 }; 4471 4453 "@oclif/plugin-not-found-1.2.4" = { ··· 5323 5305 sha512 = "eYq4TFy40O8hjeDs+sIxEH/jc9lyuI2k9DM557WN6rO5OpnC2qXMBNj4IKH1oHrnAazL49C5p0tgP0/VpqJ+/w=="; 5324 5306 }; 5325 5307 }; 5326 - "@rollup/plugin-replace-2.4.2" = { 5327 - name = "_at_rollup_slash_plugin-replace"; 5328 - packageName = "@rollup/plugin-replace"; 5329 - version = "2.4.2"; 5330 - src = fetchurl { 5331 - url = "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz"; 5332 - sha512 = "IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg=="; 5333 - }; 5334 - }; 5335 5308 "@rollup/pluginutils-3.1.0" = { 5336 5309 name = "_at_rollup_slash_pluginutils"; 5337 5310 packageName = "@rollup/pluginutils"; ··· 5951 5924 src = fetchurl { 5952 5925 url = "https://registry.npmjs.org/@stylelint/postcss-markdown/-/postcss-markdown-0.36.2.tgz"; 5953 5926 sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ=="; 5954 - }; 5955 - }; 5956 - "@surma/rollup-plugin-off-main-thread-1.4.2" = { 5957 - name = "_at_surma_slash_rollup-plugin-off-main-thread"; 5958 - packageName = "@surma/rollup-plugin-off-main-thread"; 5959 - version = "1.4.2"; 5960 - src = fetchurl { 5961 - url = "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz"; 5962 - sha512 = "yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A=="; 5963 5927 }; 5964 5928 }; 5965 5929 "@szmarczak/http-timer-1.1.2" = { ··· 6709 6673 sha512 = "h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w=="; 6710 6674 }; 6711 6675 }; 6712 - "@types/http-assert-1.5.1" = { 6676 + "@types/http-assert-1.5.2" = { 6713 6677 name = "_at_types_slash_http-assert"; 6714 6678 packageName = "@types/http-assert"; 6715 - version = "1.5.1"; 6679 + version = "1.5.2"; 6716 6680 src = fetchurl { 6717 - url = "https://registry.npmjs.org/@types/http-assert/-/http-assert-1.5.1.tgz"; 6718 - sha512 = "PGAK759pxyfXE78NbKxyfRcWYA/KwW17X290cNev/qAsn9eQIxkH4shoNBafH37wewhDG/0p1cHPbK6+SzZjWQ=="; 6681 + url = "https://registry.npmjs.org/@types/http-assert/-/http-assert-1.5.2.tgz"; 6682 + sha512 = "Ddzuzv/bB2prZnJKlS1sEYhaeT50wfJjhcTTTQLjEsEZJlk3XB4Xohieyq+P4VXIzg7lrQ1Spd/PfRnBpQsdqA=="; 6719 6683 }; 6720 6684 }; 6721 6685 "@types/http-cache-semantics-4.0.1" = { ··· 7150 7114 sha512 = "8h7k1YgQKxKXWckzFCMfsIwn0Y61UK6tlD6y2lOb3hTOIMlK3t9/QwHOhc81TwU+RMf0As5fj7NPjroERCnejQ=="; 7151 7115 }; 7152 7116 }; 7153 - "@types/node-16.4.12" = { 7117 + "@types/node-16.4.13" = { 7118 + name = "_at_types_slash_node"; 7119 + packageName = "@types/node"; 7120 + version = "16.4.13"; 7121 + src = fetchurl { 7122 + url = "https://registry.npmjs.org/@types/node/-/node-16.4.13.tgz"; 7123 + sha512 = "bLL69sKtd25w7p1nvg9pigE4gtKVpGTPojBFLMkGHXuUgap2sLqQt2qUnqmVCDfzGUL0DRNZP+1prIZJbMeAXg=="; 7124 + }; 7125 + }; 7126 + "@types/node-16.4.3" = { 7154 7127 name = "_at_types_slash_node"; 7155 7128 packageName = "@types/node"; 7156 - version = "16.4.12"; 7129 + version = "16.4.3"; 7157 7130 src = fetchurl { 7158 - url = "https://registry.npmjs.org/@types/node/-/node-16.4.12.tgz"; 7159 - sha512 = "zxrTNFl9Z8boMJXs6ieqZP0wAhvkdzmHSxTlJabM16cf5G9xBc1uPRH5Bbv2omEDDiM8MzTfqTJXBf0Ba4xFWA=="; 7131 + url = "https://registry.npmjs.org/@types/node/-/node-16.4.3.tgz"; 7132 + sha512 = "GKM4FLMkWDc0sfx7tXqPWkM6NBow1kge0fgQh0bOnlqo4iT1kvTvMEKE0c1RtUGnbLlGRXiAA8SumE//90uKAg=="; 7160 7133 }; 7161 7134 }; 7162 7135 "@types/node-6.14.13" = { ··· 7555 7528 sha512 = "1m6uReH8R/RuLVQGvTT/4LlWq67jZEUxp+FBHt0hYv2BT7TUwFbKI0wa7JZVEU/XtlcnX1QcTuZ36es4rGj7jg=="; 7556 7529 }; 7557 7530 }; 7558 - "@types/vscode-1.58.1" = { 7531 + "@types/vscode-1.59.0" = { 7559 7532 name = "_at_types_slash_vscode"; 7560 7533 packageName = "@types/vscode"; 7561 - version = "1.58.1"; 7534 + version = "1.59.0"; 7562 7535 src = fetchurl { 7563 - url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.58.1.tgz"; 7564 - sha512 = "sa76rDXiSif09he8KoaWWUQxsuBr2+uND0xn1GUbEODkuEjp2p7Rqd3t5qlvklfmAedLFdL7MdnsPa57uzwcOw=="; 7536 + url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.59.0.tgz"; 7537 + sha512 = "Zg38rusx2nU6gy6QdF7v4iqgxNfxzlBlDhrRCjOiPQp+sfaNrp3f9J6OHIhpGNN1oOAca4+9Hq0+8u3jwzPMlQ=="; 7565 7538 }; 7566 7539 }; 7567 7540 "@types/webpack-4.41.30" = { ··· 7573 7546 sha512 = "GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA=="; 7574 7547 }; 7575 7548 }; 7576 - "@types/webpack-sources-2.1.1" = { 7549 + "@types/webpack-sources-3.2.0" = { 7577 7550 name = "_at_types_slash_webpack-sources"; 7578 7551 packageName = "@types/webpack-sources"; 7579 - version = "2.1.1"; 7552 + version = "3.2.0"; 7580 7553 src = fetchurl { 7581 - url = "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.1.tgz"; 7582 - sha512 = "MjM1R6iuw8XaVbtkCBz0N349cyqBjJHCbQiOeppe3VBeFvxqs74RKHAVt9LkxTnUWc7YLZOEsUfPUnmK6SBPKQ=="; 7554 + url = "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz"; 7555 + sha512 = "Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg=="; 7583 7556 }; 7584 7557 }; 7585 7558 "@types/websocket-1.0.2" = { ··· 7897 7870 sha1 = "c585c0bdb94210198945c6597e4fe23d6e63e084"; 7898 7871 }; 7899 7872 }; 7900 - "@vercel/build-utils-2.11.1" = { 7873 + "@vercel/build-utils-2.12.1" = { 7901 7874 name = "_at_vercel_slash_build-utils"; 7902 7875 packageName = "@vercel/build-utils"; 7903 - version = "2.11.1"; 7876 + version = "2.12.1"; 7904 7877 src = fetchurl { 7905 - url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-2.11.1.tgz"; 7906 - sha512 = "4eVUV7az4c/Avb9tdkoeJf8EYXW4mSY42ZQh15WRUkEXZq80FAgmywrklKOt3B/J+DW6fn8R4exuI1yXnu2iJg=="; 7878 + url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-2.12.1.tgz"; 7879 + sha512 = "85FUGmNQWL+gWORGIfW2amNeDt3vBgliZ51j3D9s+2qcAv+Li+ghLfzjoP5w5E+DhO8OxHfy53WbqR5aprAWEA=="; 7907 7880 }; 7908 7881 }; 7909 - "@vercel/go-1.2.2" = { 7882 + "@vercel/go-1.2.3" = { 7910 7883 name = "_at_vercel_slash_go"; 7911 7884 packageName = "@vercel/go"; 7912 - version = "1.2.2"; 7885 + version = "1.2.3"; 7913 7886 src = fetchurl { 7914 - url = "https://registry.npmjs.org/@vercel/go/-/go-1.2.2.tgz"; 7915 - sha512 = "Oo1lXjXmDrSqdF3LKCWXJGU9DInq5aMe6weQSoWnKRvSZ6v4at2x19ltHYvgUO95y4tbdzqPLRKFNUSQEJVdjQ=="; 7887 + url = "https://registry.npmjs.org/@vercel/go/-/go-1.2.3.tgz"; 7888 + sha512 = "BZCHRz43Qfr0DwZlZQCcofR+3cr+H+HK72/ZPkZy1Uq0NYjJMlmZ3ahuMgvJxT9lfC1RA6eOEUlUsZ+gqKcMCg=="; 7916 7889 }; 7917 7890 }; 7918 - "@vercel/node-1.11.1" = { 7891 + "@vercel/node-1.12.0" = { 7919 7892 name = "_at_vercel_slash_node"; 7920 7893 packageName = "@vercel/node"; 7921 - version = "1.11.1"; 7894 + version = "1.12.0"; 7922 7895 src = fetchurl { 7923 - url = "https://registry.npmjs.org/@vercel/node/-/node-1.11.1.tgz"; 7924 - sha512 = "2OheDtjxr1OkYyvMh7laDkOA4K6KfLL60IBg1D+PksNri2YEFaPK1lzdq7xuByuDRUs+tm9U57sPVAlyzGjlvw=="; 7896 + url = "https://registry.npmjs.org/@vercel/node/-/node-1.12.0.tgz"; 7897 + sha512 = "McwhEg6KI0y7R875IG87Ry3HrFvws+60/yKk1KqJxbOud/n/Mj9eEZTI5mxxMFj8tT7KhmFaRdl8pJz8ISR1Cg=="; 7925 7898 }; 7926 7899 }; 7927 - "@vercel/python-2.0.4" = { 7900 + "@vercel/python-2.0.5" = { 7928 7901 name = "_at_vercel_slash_python"; 7929 7902 packageName = "@vercel/python"; 7930 - version = "2.0.4"; 7903 + version = "2.0.5"; 7931 7904 src = fetchurl { 7932 - url = "https://registry.npmjs.org/@vercel/python/-/python-2.0.4.tgz"; 7933 - sha512 = "pGHtsbF2gVHnZGw62HIUZhfGzO+jXGprFsmgJwHdDWkUjiVGGKpbMKiDZlZPJQF7FC4xTF4rb0JKzrcckrpYXg=="; 7905 + url = "https://registry.npmjs.org/@vercel/python/-/python-2.0.5.tgz"; 7906 + sha512 = "WCSTTw6He2COaSBiGDk2q5Q1ue+z5usRZcvUHCpsK6KvNkkV/PrY8JT73XQysMWKiXh6yQy19IUFAOqK/xwhig=="; 7934 7907 }; 7935 7908 }; 7936 - "@vercel/ruby-1.2.6" = { 7909 + "@vercel/ruby-1.2.7" = { 7937 7910 name = "_at_vercel_slash_ruby"; 7938 7911 packageName = "@vercel/ruby"; 7939 - version = "1.2.6"; 7912 + version = "1.2.7"; 7940 7913 src = fetchurl { 7941 - url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.2.6.tgz"; 7942 - sha512 = "ZLDMxMvOL0xd7FBHXQJ9EJxPohw+qzpgwulaNhXGgPuFUfnS9mboUEyj0sU9A9F7lMJFPJ6gs8UfVxBY2eNnGA=="; 7914 + url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.2.7.tgz"; 7915 + sha512 = "ZG2VxMHHSKocL57UWsfNc9UsblwYGm55/ujqGIBnkNUURnRgtUrwtWlEts1eJ4VHD754Lc/0/R1pfJXoN5SbRw=="; 7943 7916 }; 7944 7917 }; 7945 7918 "@vue/cli-shared-utils-4.5.13" = { ··· 8527 8500 sha512 = "4vSVUiOPJLmr45S8rMGy7WDvpWxfFxfP/Qx/cxZFCfvoypTYpPPL1X8VIZMe0WTA+Jr7blUxwUSEZNkjoMTgSw=="; 8528 8501 }; 8529 8502 }; 8530 - "@wry/context-0.6.0" = { 8503 + "@wry/context-0.6.1" = { 8531 8504 name = "_at_wry_slash_context"; 8532 8505 packageName = "@wry/context"; 8533 - version = "0.6.0"; 8506 + version = "0.6.1"; 8534 8507 src = fetchurl { 8535 - url = "https://registry.npmjs.org/@wry/context/-/context-0.6.0.tgz"; 8536 - sha512 = "sAgendOXR8dM7stJw3FusRxFHF/ZinU0lffsA2YTyyIOfic86JX02qlPqPVqJNZJPAxFt+2EE8bvq6ZlS0Kf+Q=="; 8508 + url = "https://registry.npmjs.org/@wry/context/-/context-0.6.1.tgz"; 8509 + sha512 = "LOmVnY1iTU2D8tv4Xf6MVMZZ+juIJ87Kt/plMijjN20NMAXGmH4u8bS1t0uT74cZ5gwpocYueV58YwyI8y+GKw=="; 8537 8510 }; 8538 8511 }; 8539 8512 "@wry/equality-0.1.11" = { ··· 8545 8518 sha512 = "mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA=="; 8546 8519 }; 8547 8520 }; 8548 - "@wry/equality-0.5.1" = { 8521 + "@wry/equality-0.5.2" = { 8549 8522 name = "_at_wry_slash_equality"; 8550 8523 packageName = "@wry/equality"; 8551 - version = "0.5.1"; 8524 + version = "0.5.2"; 8552 8525 src = fetchurl { 8553 - url = "https://registry.npmjs.org/@wry/equality/-/equality-0.5.1.tgz"; 8554 - sha512 = "FZKbdpbcVcbDxQrKcaBClNsQaMg9nof1RKM7mReJe5DKUzM5u8S7T+PqwNqvib5O2j2xxF1R4p5O3+b6baTrbw=="; 8526 + url = "https://registry.npmjs.org/@wry/equality/-/equality-0.5.2.tgz"; 8527 + sha512 = "oVMxbUXL48EV/C0/M7gLVsoK6qRHPS85x8zECofEZOVvxGmIPLA9o5Z27cc2PoAyZz1S2VoM2A7FLAnpfGlneA=="; 8555 8528 }; 8556 8529 }; 8557 - "@wry/trie-0.3.0" = { 8530 + "@wry/trie-0.3.1" = { 8558 8531 name = "_at_wry_slash_trie"; 8559 8532 packageName = "@wry/trie"; 8560 - version = "0.3.0"; 8533 + version = "0.3.1"; 8561 8534 src = fetchurl { 8562 - url = "https://registry.npmjs.org/@wry/trie/-/trie-0.3.0.tgz"; 8563 - sha512 = "Yw1akIogPhAT6XPYsRHlZZIS0tIGmAl9EYXHi2scf7LPKKqdqmow/Hu4kEqP2cJR3EjaU/9L0ZlAjFf3hFxmug=="; 8535 + url = "https://registry.npmjs.org/@wry/trie/-/trie-0.3.1.tgz"; 8536 + sha512 = "WwB53ikYudh9pIorgxrkHKrQZcCqNM/Q/bDzZBffEaGUKGuHrRb3zZUT9Sh2qw9yogC7SsdRmQ1ER0pqvd3bfw=="; 8564 8537 }; 8565 8538 }; 8566 8539 "@xtuc/ieee754-1.2.0" = { ··· 11065 11038 sha512 = "TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw=="; 11066 11039 }; 11067 11040 }; 11041 + "async-3.2.1" = { 11042 + name = "async"; 11043 + packageName = "async"; 11044 + version = "3.2.1"; 11045 + src = fetchurl { 11046 + url = "https://registry.npmjs.org/async/-/async-3.2.1.tgz"; 11047 + sha512 = "XdD5lRO/87udXCMC9meWdYiR+Nq6ZjUfXidViUZGu2F1MO4T3XwZ1et0hb2++BgLfhyJwy44BGB/yx80ABx8hg=="; 11048 + }; 11049 + }; 11068 11050 "async-append-only-log-3.0.9" = { 11069 11051 name = "async-append-only-log"; 11070 11052 packageName = "async-append-only-log"; ··· 11389 11371 sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg=="; 11390 11372 }; 11391 11373 }; 11392 - "aws-sdk-2.961.0" = { 11374 + "aws-sdk-2.963.0" = { 11393 11375 name = "aws-sdk"; 11394 11376 packageName = "aws-sdk"; 11395 - version = "2.961.0"; 11377 + version = "2.963.0"; 11396 11378 src = fetchurl { 11397 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.961.0.tgz"; 11398 - sha512 = "71ELXHWd0roRT0FW8CnqGLYGKLksHARa7Yn8LPN3mF70FJt2LuvVAyK49IChoUczTjlzS78p+Y5197Tkky4N8g=="; 11379 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.963.0.tgz"; 11380 + sha512 = "EY7EPap1c/1RxPx+Py56t9btJug3Z3PJkCfplqzNuU1QlFGs+rN8yYm9xIn8J6gbJ5D8F4Qab0GCtTmGstlHfQ=="; 11399 11381 }; 11400 11382 }; 11401 11383 "aws-sign2-0.6.0" = { ··· 14953 14935 sha512 = "rgt2RFogHGDLFU5r0kSfyeBc+de55DwYHP73KxKsQxsR5b0CYuQPH6AnJaXByiohpLdjQqj/K0SFcOV+dXdhSA=="; 14954 14936 }; 14955 14937 }; 14938 + "cbor-8.0.0" = { 14939 + name = "cbor"; 14940 + packageName = "cbor"; 14941 + version = "8.0.0"; 14942 + src = fetchurl { 14943 + url = "https://registry.npmjs.org/cbor/-/cbor-8.0.0.tgz"; 14944 + sha512 = "nMmaLWbj7+bC6MsApKRIig8h+yjgNLhPLXaCelq5+C7mpWsHgIcseZSdvgexSY5uE1Q3m2uPvIDZwSdxdo7qig=="; 14945 + }; 14946 + }; 14956 14947 "ccount-1.1.0" = { 14957 14948 name = "ccount"; 14958 14949 packageName = "ccount"; ··· 17266 17257 sha512 = "bzlVWS2THbMetHqXKB8ypsXN4DQ/1qopGwNJi1eYbpwesJcd86FBjFciCQX/YwAhp9bM7NVnPFqZ5LpV7gP0Dg=="; 17267 17258 }; 17268 17259 }; 17269 - "conf-10.0.1" = { 17260 + "conf-10.0.2" = { 17270 17261 name = "conf"; 17271 17262 packageName = "conf"; 17272 - version = "10.0.1"; 17263 + version = "10.0.2"; 17273 17264 src = fetchurl { 17274 - url = "https://registry.npmjs.org/conf/-/conf-10.0.1.tgz"; 17275 - sha512 = "QClEoNcruwBL84QgMEPHibL3ERxWIrRKhbjJKG1VsFBadm5QpS0jsu4QjY/maxUvhyAKXeyrs+ws+lC6PajnEg=="; 17265 + url = "https://registry.npmjs.org/conf/-/conf-10.0.2.tgz"; 17266 + sha512 = "iyy4ArqyQ/yrzNASNBN+jaylu53JRuq0ztvL6KAWYHj4iN56BVuhy2SrzEEHBodNbacZr2Pd/4nWhoAwc66T1g=="; 17276 17267 }; 17277 17268 }; 17278 17269 "conf-6.2.4" = { ··· 17509 17500 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 17510 17501 }; 17511 17502 }; 17512 - "constructs-3.3.114" = { 17503 + "constructs-3.3.117" = { 17513 17504 name = "constructs"; 17514 17505 packageName = "constructs"; 17515 - version = "3.3.114"; 17506 + version = "3.3.117"; 17516 17507 src = fetchurl { 17517 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.114.tgz"; 17518 - sha512 = "J1R3RypQsCBvZ4zUpogIunj8ShpU4GC73mmHFPmOp7HgxHKYEOpukYAe5VL84pnsoQxv1tnM3EJcScPh/EEQQw=="; 17508 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.117.tgz"; 17509 + sha512 = "y5PVROPr7XFlz2/ZAXNHhkb8Y7HzJs4kBrUcjI5B5tbQz/YXsOmZV73AGRYDiUvMstqvpq+UOVBhL3zoA9vg7Q=="; 17519 17510 }; 17520 17511 }; 17521 17512 "consume-http-header-1.0.0" = { ··· 18329 18320 sha512 = "dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw=="; 18330 18321 }; 18331 18322 }; 18332 - "create-torrent-4.7.2" = { 18323 + "create-torrent-5.0.1" = { 18333 18324 name = "create-torrent"; 18334 18325 packageName = "create-torrent"; 18335 - version = "4.7.2"; 18326 + version = "5.0.1"; 18336 18327 src = fetchurl { 18337 - url = "https://registry.npmjs.org/create-torrent/-/create-torrent-4.7.2.tgz"; 18338 - sha512 = "8T5zMK0WhOfm2QubE/ZFVxaoCmhZk6I01ze53MIIe1HI0dxsvYohkNtFXEHL5oXi1vkbJOD/yLVJuUc4cCziog=="; 18328 + url = "https://registry.npmjs.org/create-torrent/-/create-torrent-5.0.1.tgz"; 18329 + sha512 = "fVvg1YYSogo3TlU1WFeTt937nhGQlf5KtB6M2HyDa/U02dbeMBE2AY9PcPlMufXNQoM/UCO28y26EmuApM7ZmA=="; 18339 18330 }; 18340 18331 }; 18341 18332 "cron-1.8.2" = { ··· 19859 19850 sha512 = "E1GI7jMI57hL30OX6Ht/hfQU8DO4AuB9m72WFm4c38GNbUD4Q03//XZaOIHZiY+H1xUaomcot5yk2q/qIZQkGQ=="; 19860 19851 }; 19861 19852 }; 19862 - "deasync-0.1.21" = { 19853 + "deasync-0.1.22" = { 19863 19854 name = "deasync"; 19864 19855 packageName = "deasync"; 19865 - version = "0.1.21"; 19856 + version = "0.1.22"; 19866 19857 src = fetchurl { 19867 - url = "https://registry.npmjs.org/deasync/-/deasync-0.1.21.tgz"; 19868 - sha512 = "kUmM8Y+PZpMpQ+B4AuOW9k2Pfx/mSupJtxOsLzmnHY2WqZUYRFccFn2RhzPAqt3Xb+sorK/badW2D4zNzqZz5w=="; 19858 + url = "https://registry.npmjs.org/deasync/-/deasync-0.1.22.tgz"; 19859 + sha512 = "o21R8Vhv3wX0E19jpATUJIAinQ1I2rHIlAnzRRsMynWlIrvU0HbCwjpquPIYR544Tvg9z/L+NZQev5cjVD1/nQ=="; 19869 19860 }; 19870 19861 }; 19871 19862 "death-1.1.0" = { ··· 22100 22091 sha512 = "nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="; 22101 22092 }; 22102 22093 }; 22103 - "ecstatic-3.3.2" = { 22104 - name = "ecstatic"; 22105 - packageName = "ecstatic"; 22106 - version = "3.3.2"; 22107 - src = fetchurl { 22108 - url = "https://registry.npmjs.org/ecstatic/-/ecstatic-3.3.2.tgz"; 22109 - sha512 = "fLf9l1hnwrHI2xn9mEDT7KIi22UDqA2jaCwyCbSUJh9a1V+LEUSL/JO/6TIz/QyuBURWUHrFL5Kg2TtO1bkkog=="; 22110 - }; 22111 - }; 22112 22094 "ecstatic-4.1.4" = { 22113 22095 name = "ecstatic"; 22114 22096 packageName = "ecstatic"; ··· 22190 22172 sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw=="; 22191 22173 }; 22192 22174 }; 22193 - "electron-notarize-1.0.1" = { 22175 + "electron-notarize-1.1.0" = { 22194 22176 name = "electron-notarize"; 22195 22177 packageName = "electron-notarize"; 22196 - version = "1.0.1"; 22178 + version = "1.1.0"; 22197 22179 src = fetchurl { 22198 - url = "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.0.1.tgz"; 22199 - sha512 = "5B0ToIuuqb+Uzq3Kvs7BReUh52WRELmy8dHWusQwXgksYm2RgzsFFGNhv9eAmzuzXNW4xPgUbdCmYrcVGSlXIg=="; 22180 + url = "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.1.0.tgz"; 22181 + sha512 = "Dmp/jm2y3PTcjmjVe+jCT0sjsbBfbNuk7GOPtduZce2iae1hgAPnlNErk6x70TalsGIL5Ip3liSryqde/6eB5w=="; 22200 22182 }; 22201 22183 }; 22202 22184 "electron-osx-sign-0.5.0" = { ··· 22226 22208 sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ=="; 22227 22209 }; 22228 22210 }; 22229 - "electron-to-chromium-1.3.796" = { 22211 + "electron-to-chromium-1.3.799" = { 22230 22212 name = "electron-to-chromium"; 22231 22213 packageName = "electron-to-chromium"; 22232 - version = "1.3.796"; 22214 + version = "1.3.799"; 22233 22215 src = fetchurl { 22234 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.796.tgz"; 22235 - sha512 = "agwJFgM0FUC1UPPbQ4aII3HamaaJ09fqWGAWYHmzxDWqdmTleCHyyA0kt3fJlTd5M440IaeuBfzXzXzCotnZcQ=="; 22216 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.799.tgz"; 22217 + sha512 = "V2rbYWdGvSqrg+95KjkVuSi41bGfrhrOzjl1tSi2VLnm0mRe3FsSvhiqidSiSll9WiMhrQAhpDcW/wcqK3c+Yw=="; 22236 22218 }; 22237 22219 }; 22238 22220 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 24163 24145 sha1 = "a793d3ac0cad4c6ab571e9968fbbab6cb2532929"; 24164 24146 }; 24165 24147 }; 24166 - "expo-pwa-0.0.91" = { 24148 + "expo-pwa-0.0.92" = { 24167 24149 name = "expo-pwa"; 24168 24150 packageName = "expo-pwa"; 24169 - version = "0.0.91"; 24151 + version = "0.0.92"; 24170 24152 src = fetchurl { 24171 - url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.91.tgz"; 24172 - sha512 = "hwi3eJhL85yHZBvv5ekdS0A1721wmgNAM53LMv5meawTBy5W0NNg8E6Ey+N3UCrL6BP1Kk7WByxX4V4kkzGV8A=="; 24153 + url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.92.tgz"; 24154 + sha512 = "lY+m28IQkqpCPZQdAlMBUGgm5HbTEHVaMNt0QnMAeX/siN11rfhxBr2nFQRYfK0R5Kklh6yUTyAjz+vOd2bSKw=="; 24173 24155 }; 24174 24156 }; 24175 24157 "express-2.5.11" = { ··· 25765 25747 sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; 25766 25748 }; 25767 25749 }; 25768 - "flow-parser-0.156.0" = { 25750 + "flow-parser-0.157.0" = { 25769 25751 name = "flow-parser"; 25770 25752 packageName = "flow-parser"; 25771 - version = "0.156.0"; 25753 + version = "0.157.0"; 25772 25754 src = fetchurl { 25773 - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.156.0.tgz"; 25774 - sha512 = "OCE3oIixhOttaV4ahIGtxf9XfaDdxujiTnXuHu+0dvDVVDiSDJlQpgCWdDKqP0OHfFnxQKrjMamArDAXtrBtZw=="; 25755 + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.157.0.tgz"; 25756 + sha512 = "p0vdtrM8oAMlscIXpX0e/eGWll5NPteVChNtlQncbIbivH+BdiwXHN5QO6myAfmebd027r9RiQKdUPsFAiEVgQ=="; 25775 25757 }; 25776 25758 }; 25777 25759 "fluent-ffmpeg-2.1.2" = { ··· 26971 26953 sha512 = "kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q=="; 26972 26954 }; 26973 26955 }; 26974 - "get-own-enumerable-property-symbols-3.0.2" = { 26975 - name = "get-own-enumerable-property-symbols"; 26976 - packageName = "get-own-enumerable-property-symbols"; 26977 - version = "3.0.2"; 26978 - src = fetchurl { 26979 - url = "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz"; 26980 - sha512 = "I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g=="; 26981 - }; 26982 - }; 26983 26956 "get-package-info-1.0.0" = { 26984 26957 name = "get-package-info"; 26985 26958 packageName = "get-package-info"; ··· 27917 27890 sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew=="; 27918 27891 }; 27919 27892 }; 27920 - "google-gax-2.21.1" = { 27893 + "google-gax-2.22.1" = { 27921 27894 name = "google-gax"; 27922 27895 packageName = "google-gax"; 27923 - version = "2.21.1"; 27896 + version = "2.22.1"; 27924 27897 src = fetchurl { 27925 - url = "https://registry.npmjs.org/google-gax/-/google-gax-2.21.1.tgz"; 27926 - sha512 = "hyfau8+yXt75UuYVP3E3n0pKUwsEyiVQXfozfqQn/ZOL36UoZtS/cIzqIm6SYaSLlK5MWWz3JT/o/1ol09gEbA=="; 27898 + url = "https://registry.npmjs.org/google-gax/-/google-gax-2.22.1.tgz"; 27899 + sha512 = "/X5Ym6f6Q4sH/3blMr1w/QzFhH0ZKnx9kOusUPwwZH6JmSwLpbuyUDbOc7MAvadl4r7yI2AASILLWK3fT+1Thg=="; 27927 27900 }; 27928 27901 }; 27929 27902 "google-p12-pem-3.1.1" = { ··· 28070 28043 sha512 = "J55gaCS4iTTJfTXIxSVw3EMQckcqkpdRv3IR7gu6sq0+tbC363Zx6KH/SEwXASK9JRbhyZmVjJEVJIOxYsB3Qg=="; 28071 28044 }; 28072 28045 }; 28073 - "graceful-fs-4.2.6" = { 28046 + "graceful-fs-4.2.8" = { 28074 28047 name = "graceful-fs"; 28075 28048 packageName = "graceful-fs"; 28076 - version = "4.2.6"; 28049 + version = "4.2.8"; 28077 28050 src = fetchurl { 28078 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz"; 28079 - sha512 = "nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="; 28051 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz"; 28052 + sha512 = "qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="; 28080 28053 }; 28081 28054 }; 28082 28055 "graceful-readlink-1.0.1" = { ··· 28754 28727 sha512 = "vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw=="; 28755 28728 }; 28756 28729 }; 28730 + "has-tostringtag-1.0.0" = { 28731 + name = "has-tostringtag"; 28732 + packageName = "has-tostringtag"; 28733 + version = "1.0.0"; 28734 + src = fetchurl { 28735 + url = "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"; 28736 + sha512 = "kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="; 28737 + }; 28738 + }; 28757 28739 "has-unicode-2.0.1" = { 28758 28740 name = "has-unicode"; 28759 28741 packageName = "has-unicode"; ··· 31473 31455 sha512 = "UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A=="; 31474 31456 }; 31475 31457 }; 31476 - "is-arguments-1.1.0" = { 31458 + "is-arguments-1.1.1" = { 31477 31459 name = "is-arguments"; 31478 31460 packageName = "is-arguments"; 31479 - version = "1.1.0"; 31461 + version = "1.1.1"; 31480 31462 src = fetchurl { 31481 - url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz"; 31482 - sha512 = "1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg=="; 31463 + url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz"; 31464 + sha512 = "8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA=="; 31483 31465 }; 31484 31466 }; 31485 31467 "is-arrayish-0.2.1" = { ··· 31509 31491 sha1 = "f02ad0259a0921cd199ff21ce1b09e0f6b4e3929"; 31510 31492 }; 31511 31493 }; 31512 - "is-bigint-1.0.2" = { 31494 + "is-bigint-1.0.3" = { 31513 31495 name = "is-bigint"; 31514 31496 packageName = "is-bigint"; 31515 - version = "1.0.2"; 31497 + version = "1.0.3"; 31516 31498 src = fetchurl { 31517 - url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz"; 31518 - sha512 = "0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA=="; 31499 + url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.3.tgz"; 31500 + sha512 = "ZU538ajmYJmzysE5yU4Y7uIrPQ2j704u+hXFiIPQExpqzzUbpe5jCPdTfmz7jXRxZdvjY3KZ3ZNenoXQovX+Dg=="; 31519 31501 }; 31520 31502 }; 31521 31503 "is-binary-path-1.0.1" = { ··· 31536 31518 sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 31537 31519 }; 31538 31520 }; 31539 - "is-boolean-object-1.1.1" = { 31521 + "is-boolean-object-1.1.2" = { 31540 31522 name = "is-boolean-object"; 31541 31523 packageName = "is-boolean-object"; 31542 - version = "1.1.1"; 31524 + version = "1.1.2"; 31543 31525 src = fetchurl { 31544 - url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz"; 31545 - sha512 = "bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng=="; 31526 + url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; 31527 + sha512 = "gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA=="; 31546 31528 }; 31547 31529 }; 31548 31530 "is-buffer-1.1.6" = { ··· 31563 31545 sha512 = "i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="; 31564 31546 }; 31565 31547 }; 31566 - "is-callable-1.2.3" = { 31548 + "is-callable-1.2.4" = { 31567 31549 name = "is-callable"; 31568 31550 packageName = "is-callable"; 31569 - version = "1.2.3"; 31551 + version = "1.2.4"; 31570 31552 src = fetchurl { 31571 - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz"; 31572 - sha512 = "J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ=="; 31553 + url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz"; 31554 + sha512 = "nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="; 31573 31555 }; 31574 31556 }; 31575 31557 "is-canonical-base64-1.1.1" = { ··· 31644 31626 sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="; 31645 31627 }; 31646 31628 }; 31647 - "is-date-object-1.0.4" = { 31629 + "is-date-object-1.0.5" = { 31648 31630 name = "is-date-object"; 31649 31631 packageName = "is-date-object"; 31650 - version = "1.0.4"; 31632 + version = "1.0.5"; 31651 31633 src = fetchurl { 31652 - url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz"; 31653 - sha512 = "/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A=="; 31634 + url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz"; 31635 + sha512 = "9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ=="; 31654 31636 }; 31655 31637 }; 31656 31638 "is-decimal-1.0.4" = { ··· 31860 31842 sha512 = "lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ=="; 31861 31843 }; 31862 31844 }; 31863 - "is-generator-function-1.0.9" = { 31845 + "is-generator-function-1.0.10" = { 31864 31846 name = "is-generator-function"; 31865 31847 packageName = "is-generator-function"; 31866 - version = "1.0.9"; 31848 + version = "1.0.10"; 31867 31849 src = fetchurl { 31868 - url = "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.9.tgz"; 31869 - sha512 = "ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A=="; 31850 + url = "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz"; 31851 + sha512 = "jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A=="; 31870 31852 }; 31871 31853 }; 31872 31854 "is-glob-2.0.1" = { ··· 32139 32121 sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 32140 32122 }; 32141 32123 }; 32142 - "is-number-object-1.0.5" = { 32124 + "is-number-object-1.0.6" = { 32143 32125 name = "is-number-object"; 32144 32126 packageName = "is-number-object"; 32145 - version = "1.0.5"; 32127 + version = "1.0.6"; 32146 32128 src = fetchurl { 32147 - url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz"; 32148 - sha512 = "RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw=="; 32129 + url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz"; 32130 + sha512 = "bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g=="; 32149 32131 }; 32150 32132 }; 32151 32133 "is-obj-1.0.1" = { ··· 32373 32355 sha512 = "U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ=="; 32374 32356 }; 32375 32357 }; 32376 - "is-regex-1.1.3" = { 32358 + "is-regex-1.1.4" = { 32377 32359 name = "is-regex"; 32378 32360 packageName = "is-regex"; 32379 - version = "1.1.3"; 32361 + version = "1.1.4"; 32380 32362 src = fetchurl { 32381 - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz"; 32382 - sha512 = "qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ=="; 32363 + url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"; 32364 + sha512 = "kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="; 32383 32365 }; 32384 32366 }; 32385 32367 "is-regexp-1.0.0" = { ··· 32526 32508 sha512 = "xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw=="; 32527 32509 }; 32528 32510 }; 32529 - "is-string-1.0.6" = { 32511 + "is-string-1.0.7" = { 32530 32512 name = "is-string"; 32531 32513 packageName = "is-string"; 32532 - version = "1.0.6"; 32514 + version = "1.0.7"; 32533 32515 src = fetchurl { 32534 - url = "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz"; 32535 - sha512 = "2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w=="; 32516 + url = "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"; 32517 + sha512 = "tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="; 32536 32518 }; 32537 32519 }; 32538 32520 "is-supported-regexp-flag-1.0.1" = { ··· 32562 32544 sha1 = "4e1aa0fb51bfbcb3e92688001397202c1775b66e"; 32563 32545 }; 32564 32546 }; 32565 - "is-typed-array-1.1.5" = { 32547 + "is-typed-array-1.1.7" = { 32566 32548 name = "is-typed-array"; 32567 32549 packageName = "is-typed-array"; 32568 - version = "1.1.5"; 32550 + version = "1.1.7"; 32569 32551 src = fetchurl { 32570 - url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.5.tgz"; 32571 - sha512 = "S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug=="; 32552 + url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.7.tgz"; 32553 + sha512 = "VxlpTBGknhQ3o7YiVjIhdLU6+oD8dPz/79vvvH4F+S/c8608UCVa9fgDpa1kZgFoUST2DCgacc70UszKgzKuvA=="; 32572 32554 }; 32573 32555 }; 32574 32556 "is-typedarray-1.0.0" = { ··· 33660 33642 sha512 = "NrhHIJ0BNKxpjyvqtqhunIcHhJiA5dhlRSPPuO+EGsCQB+yc94aRj+hZZXYvWj+X1o61kdLVudJLn54sn7ESoQ=="; 33661 33643 }; 33662 33644 }; 33663 - "jsii-srcmak-0.1.316" = { 33645 + "jsii-srcmak-0.1.319" = { 33664 33646 name = "jsii-srcmak"; 33665 33647 packageName = "jsii-srcmak"; 33666 - version = "0.1.316"; 33648 + version = "0.1.319"; 33667 33649 src = fetchurl { 33668 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.316.tgz"; 33669 - sha512 = "hJhok9bx0izVqXbfQ/A5Y8n6buUovbl5I3mozAFS8SM2z/RJCVf1ZaBui8yRUhWVADaZ0DsXB5ps40acdWNU3A=="; 33650 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.319.tgz"; 33651 + sha512 = "6FxGDXgt2utZnz0NC/wrBiILM3ZxQXsJF6eflNcadkhKhcjOwe9qCxSZWs6eDwJq6REckVn24iy+8H6pdpHbog=="; 33670 33652 }; 33671 33653 }; 33672 33654 "json-bigint-0.2.3" = { ··· 33975 33957 sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A=="; 33976 33958 }; 33977 33959 }; 33978 - "json2jsii-0.1.286" = { 33960 + "json2jsii-0.1.289" = { 33979 33961 name = "json2jsii"; 33980 33962 packageName = "json2jsii"; 33981 - version = "0.1.286"; 33963 + version = "0.1.289"; 33982 33964 src = fetchurl { 33983 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.286.tgz"; 33984 - sha512 = "AD0Ip07hdVs6VrrNUxi6vy7zLuAXmS231/DqfQFCF2zwSkaqMO1cK/OhfDiKafkspZoadwTR/cyQXBXlCsOPpQ=="; 33965 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.289.tgz"; 33966 + sha512 = "HzFig1AW9qqN0Po2qLB3CD6C+UJcAA2dU+0kmpuOtY79WMVaKahj7yHQDvf0yZoEbFO5T4RyMwYyOCMOpCgY5w=="; 33985 33967 }; 33986 33968 }; 33987 33969 "json3-3.2.6" = { ··· 34290 34272 sha512 = "Y2OlFIzrDOPWUnpU0LORIcDn2xN7rC9yKffFM/7pGhQuhO+SUhfm2trkJ/S5amjFvem0Y+1EALz/MEPkvHXVNw=="; 34291 34273 }; 34292 34274 }; 34275 + "jszip-3.7.1" = { 34276 + name = "jszip"; 34277 + packageName = "jszip"; 34278 + version = "3.7.1"; 34279 + src = fetchurl { 34280 + url = "https://registry.npmjs.org/jszip/-/jszip-3.7.1.tgz"; 34281 + sha512 = "ghL0tz1XG9ZEmRMcEN2vt7xabrDdqHHeykgARpmZ0BiIctWxM47Vt63ZO2dnp4QYt/xJVLLy5Zv1l/xRdh2byg=="; 34282 + }; 34283 + }; 34293 34284 "junk-3.1.0" = { 34294 34285 name = "junk"; 34295 34286 packageName = "junk"; ··· 35362 35353 sha512 = "lD6PgHipqedfFcTEf/9mDF3s4KGO/lecr02W6zHBJHohNphuBUZS1z68kKRJAl3N4iHmDEfLxt+G86PBP0jhHw=="; 35363 35354 }; 35364 35355 }; 35356 + "lightning-3.5.0" = { 35357 + name = "lightning"; 35358 + packageName = "lightning"; 35359 + version = "3.5.0"; 35360 + src = fetchurl { 35361 + url = "https://registry.npmjs.org/lightning/-/lightning-3.5.0.tgz"; 35362 + sha512 = "6Kj1JX8tG3JiV5LXYGuZkKckiRJ/OU8ukb/R5qsp7RWq/xw32LDccCKvOK8oRnOGw9K+G8jcZAOY21exr9OSFA=="; 35363 + }; 35364 + }; 35365 35365 "lilconfig-2.0.3" = { 35366 35366 name = "lilconfig"; 35367 35367 packageName = "lilconfig"; ··· 35515 35515 sha512 = "EBEeBymqktoaViGAG5aVmgIOZpWc6IwDqxq93ZYYIw+Uc9Vy/86nUDPx8A/jJC0f8lwEGcqT+hnSIiBF4SyqeA=="; 35516 35516 }; 35517 35517 }; 35518 - "ln-service-51.10.0" = { 35518 + "ln-service-51.10.1" = { 35519 35519 name = "ln-service"; 35520 35520 packageName = "ln-service"; 35521 - version = "51.10.0"; 35521 + version = "51.10.1"; 35522 35522 src = fetchurl { 35523 - url = "https://registry.npmjs.org/ln-service/-/ln-service-51.10.0.tgz"; 35524 - sha512 = "k6wGBB6RfyHhMY296MsHhZrVuJSqNsqx3nF3WM5lkKAg+58OdU6bLzqVttpit9uHamc6tssD2GDxNS6gdUzOYQ=="; 35523 + url = "https://registry.npmjs.org/ln-service/-/ln-service-51.10.1.tgz"; 35524 + sha512 = "fXsA/gDh65+YYVYJ6GNDB2ALPa0rjXV59I9kgciOCkgiJo3F7AYkhNULYIGu0r2FK83J1M85AsH6tycImRVWRQ=="; 35525 35525 }; 35526 35526 }; 35527 35527 "ln-service-51.8.2" = { ··· 39043 39043 sha512 = "TIurLf/ustQNMXi5foClGTcEsRvH6DCvxeAKu68OrwHMOSM/M1pgPXb7qe52Svk1ClvmZuAVpLtP5FWKzPr/sw=="; 39044 39044 }; 39045 39045 }; 39046 - "mermaid-8.11.3" = { 39046 + "mermaid-8.11.4" = { 39047 39047 name = "mermaid"; 39048 39048 packageName = "mermaid"; 39049 - version = "8.11.3"; 39049 + version = "8.11.4"; 39050 39050 src = fetchurl { 39051 - url = "https://registry.npmjs.org/mermaid/-/mermaid-8.11.3.tgz"; 39052 - sha512 = "XhfSF+crAX+BhxyKUL28Pf0Of12bby+jK2VQ05xSLZ/pYE6kVfiTuO1mTA5chnqDdz9xpD9A77pTWHv27IbWsg=="; 39051 + url = "https://registry.npmjs.org/mermaid/-/mermaid-8.11.4.tgz"; 39052 + sha512 = "iUJylv5VmsOm/6dkAVpSYRSD8iZ8NOjuiHG0Q6nMgPdmmQ9xy8z61v8MuRZn81K51JlvOeWMN06blejmsMQHqg=="; 39053 39053 }; 39054 39054 }; 39055 39055 "meros-1.1.4" = { ··· 41321 41321 sha512 = "BiQblBf85/GmerTZYxVH/1A4/O8qBvg0Qr8QX0MvxjAvO3j+jDUk1PSudMxNgJjU1zFw5pKM2/DBk70hP5gt+Q=="; 41322 41322 }; 41323 41323 }; 41324 - "netlify-redirect-parser-8.1.0" = { 41324 + "netlify-redirect-parser-8.2.0" = { 41325 41325 name = "netlify-redirect-parser"; 41326 41326 packageName = "netlify-redirect-parser"; 41327 - version = "8.1.0"; 41327 + version = "8.2.0"; 41328 41328 src = fetchurl { 41329 - url = "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-8.1.0.tgz"; 41330 - sha512 = "y5uzRHSyHVDDIgcFwvRRIELliBc7SKFuvuyVgsIMZWaNDCKNO4Etk2CIeGlJG+++g7NFD/XlYJaqgw2jJkqe4A=="; 41329 + url = "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-8.2.0.tgz"; 41330 + sha512 = "XaCojsgAKs19vlT2C4CEs4bp166bBsgA/brt10x2HLsgp4tF3dSacClPfZgGknyHB1MnMK8j3SFp9yq6rYm8CQ=="; 41331 41331 }; 41332 41332 }; 41333 41333 "netlify-redirector-0.2.1" = { ··· 42094 42094 src = fetchurl { 42095 42095 url = "https://registry.npmjs.org/nofilter/-/nofilter-2.0.3.tgz"; 42096 42096 sha512 = "FbuXC+lK+GU2+63D1kC1ETiZo+Z7SIi7B+mxKTCH1byrh6WFvfBCN/wpherFz0a0bjGd7EKTst/cz0yLeNngug=="; 42097 + }; 42098 + }; 42099 + "nofilter-3.0.3" = { 42100 + name = "nofilter"; 42101 + packageName = "nofilter"; 42102 + version = "3.0.3"; 42103 + src = fetchurl { 42104 + url = "https://registry.npmjs.org/nofilter/-/nofilter-3.0.3.tgz"; 42105 + sha512 = "TN/MCrQmXQk5DyUJ8TGUq1Il8rv4fTsjddLmMopV006QP8DMkglmGgYfQKD5620vXLRXfr8iGI6ZZ4/ZWld2cQ=="; 42097 42106 }; 42098 42107 }; 42099 42108 "noise-peer-2.1.1" = { ··· 47921 47930 sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849"; 47922 47931 }; 47923 47932 }; 47933 + "proto3-json-serializer-0.1.1" = { 47934 + name = "proto3-json-serializer"; 47935 + packageName = "proto3-json-serializer"; 47936 + version = "0.1.1"; 47937 + src = fetchurl { 47938 + url = "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-0.1.1.tgz"; 47939 + sha512 = "Wucuvf7SqAw1wcai0zV+3jW3QZJiO/W9wZoJaTheebYdwfj2k9VfF3Gw9r2vGAaTeslhMbkVbojJG0+LjpgLxQ=="; 47940 + }; 47941 + }; 47924 47942 "protobufjs-3.8.2" = { 47925 47943 name = "protobufjs"; 47926 47944 packageName = "protobufjs"; ··· 49037 49055 sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7"; 49038 49056 }; 49039 49057 }; 49040 - "pyright-1.1.159" = { 49058 + "pyright-1.1.160" = { 49041 49059 name = "pyright"; 49042 49060 packageName = "pyright"; 49043 - version = "1.1.159"; 49061 + version = "1.1.160"; 49044 49062 src = fetchurl { 49045 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.159.tgz"; 49046 - sha512 = "KCKxW9MWLTTmM6CMHixpgX0H+eZO40aAQwXs1qji4Ru+Yq/KJCGb2b7eTqXMoRxEqz1cIinvpaoH11R54gUBGQ=="; 49063 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.160.tgz"; 49064 + sha512 = "SBgUVitoBS+VvGEG1IoPJNgJ9PSjsjCqeJPZ7DWMz9s4SvYHeZz57VtWlGGGpgjT19nmH/zPe8Cxk4CLXmDhiA=="; 49047 49065 }; 49048 49066 }; 49049 49067 "q-0.9.7" = { ··· 52430 52448 sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A=="; 52431 52449 }; 52432 52450 }; 52451 + "rollup-2.51.1" = { 52452 + name = "rollup"; 52453 + packageName = "rollup"; 52454 + version = "2.51.1"; 52455 + src = fetchurl { 52456 + url = "https://registry.npmjs.org/rollup/-/rollup-2.51.1.tgz"; 52457 + sha512 = "8xfDbAtBleXotb6qKEHWuo/jkn94a9dVqGc7Rwl3sqspCVlnCfbRek7ldhCARSi7h32H0xR4QThm1t9zHN+3uw=="; 52458 + }; 52459 + }; 52433 52460 "rollup-2.56.0" = { 52434 52461 name = "rollup"; 52435 52462 packageName = "rollup"; ··· 54419 54446 sha512 = "FkMq+MQc5hzYgM86nLuHI98Acwi3p4wX+a5BO9Hhw4JdK4L7WueIiZ4tXEobImPqBz2sVcV0+Mu3GRB30IGang=="; 54420 54447 }; 54421 54448 }; 54422 - "smart-buffer-4.1.0" = { 54449 + "smart-buffer-4.2.0" = { 54423 54450 name = "smart-buffer"; 54424 54451 packageName = "smart-buffer"; 54425 - version = "4.1.0"; 54452 + version = "4.2.0"; 54426 54453 src = fetchurl { 54427 - url = "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.1.0.tgz"; 54428 - sha512 = "iVICrxOzCynf/SNaBQCw34eM9jROU/s5rzIhpOvzhzuYHfJR/DhZfDkXiZSgKXfgv26HT3Yni3AV/DGw0cGnnw=="; 54454 + url = "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz"; 54455 + sha512 = "94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg=="; 54429 54456 }; 54430 54457 }; 54431 54458 "smartdc-auth-2.3.1" = { ··· 55227 55254 src = fetchurl { 55228 55255 url = "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz"; 55229 55256 sha512 = "CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="; 55230 - }; 55231 - }; 55232 - "source-map-0.8.0-beta.0" = { 55233 - name = "source-map"; 55234 - packageName = "source-map"; 55235 - version = "0.8.0-beta.0"; 55236 - src = fetchurl { 55237 - url = "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz"; 55238 - sha512 = "2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA=="; 55239 55257 }; 55240 55258 }; 55241 55259 "source-map-js-0.6.2" = { ··· 56048 56066 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 56049 56067 }; 56050 56068 }; 56051 - "sscaff-1.2.37" = { 56069 + "sscaff-1.2.40" = { 56052 56070 name = "sscaff"; 56053 56071 packageName = "sscaff"; 56054 - version = "1.2.37"; 56072 + version = "1.2.40"; 56055 56073 src = fetchurl { 56056 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.37.tgz"; 56057 - sha512 = "TPvwDnZgM8cPkNtkESjJQ9dCajib2T1YBC763//zVlKsLrJJN3xAwoAQXfey7BdYCCB7DyXKHgtyhKLq0TZl+A=="; 56074 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.40.tgz"; 56075 + sha512 = "XAt/qwEqrzt7uXEkhLW1oVXi1f/Q1qtTaw8TjIuRjryNpbzF0mvFvag4rF/2jWdWC/TJ7HIQXx3mAce3rPb45A=="; 56058 56076 }; 56059 56077 }; 56060 56078 "ssh-config-1.1.6" = { ··· 56991 57009 src = fetchurl { 56992 57010 url = "https://registry.npmjs.org/stringify-entities/-/stringify-entities-3.1.0.tgz"; 56993 57011 sha512 = "3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg=="; 56994 - }; 56995 - }; 56996 - "stringify-object-3.3.0" = { 56997 - name = "stringify-object"; 56998 - packageName = "stringify-object"; 56999 - version = "3.3.0"; 57000 - src = fetchurl { 57001 - url = "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz"; 57002 - sha512 = "rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw=="; 57003 57012 }; 57004 57013 }; 57005 57014 "stringify-package-1.0.1" = { ··· 57173 57182 sha1 = "e5211e9224369fbb81d633a2f00044dc8cedad92"; 57174 57183 }; 57175 57184 }; 57176 - "strip-comments-2.0.1" = { 57177 - name = "strip-comments"; 57178 - packageName = "strip-comments"; 57179 - version = "2.0.1"; 57180 - src = fetchurl { 57181 - url = "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz"; 57182 - sha512 = "ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw=="; 57183 - }; 57184 - }; 57185 57185 "strip-dirs-2.1.0" = { 57186 57186 name = "strip-dirs"; 57187 57187 packageName = "strip-dirs"; ··· 58495 58495 src = fetchurl { 58496 58496 url = "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz"; 58497 58497 sha512 = "WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ=="; 58498 - }; 58499 - }; 58500 - "tempy-0.6.0" = { 58501 - name = "tempy"; 58502 - packageName = "tempy"; 58503 - version = "0.6.0"; 58504 - src = fetchurl { 58505 - url = "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz"; 58506 - sha512 = "G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw=="; 58507 58498 }; 58508 58499 }; 58509 58500 "tempy-0.7.1" = { ··· 60576 60567 sha512 = "w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q=="; 60577 60568 }; 60578 60569 }; 60579 - "typescript-3.9.3" = { 60580 - name = "typescript"; 60581 - packageName = "typescript"; 60582 - version = "3.9.3"; 60583 - src = fetchurl { 60584 - url = "https://registry.npmjs.org/typescript/-/typescript-3.9.3.tgz"; 60585 - sha512 = "D/wqnB2xzNFIcoBG9FG8cXRDjiqSTbG2wd8DMZeQyJlP1vfTkIxH4GKveWaEBYySKIg+USu+E+EDIR47SqnaMQ=="; 60586 - }; 60587 - }; 60588 60570 "typescript-4.0.3" = { 60589 60571 name = "typescript"; 60590 60572 packageName = "typescript"; ··· 60603 60585 sha512 = "pxnwLxeb/Z5SP80JDRzVjh58KsM6jZHRAOtTpS7sXLS4ogXNKC9ANxHHZqLLeVHZN35jCtI4JdmLLbLiC1kBow=="; 60604 60586 }; 60605 60587 }; 60588 + "typescript-4.3.4" = { 60589 + name = "typescript"; 60590 + packageName = "typescript"; 60591 + version = "4.3.4"; 60592 + src = fetchurl { 60593 + url = "https://registry.npmjs.org/typescript/-/typescript-4.3.4.tgz"; 60594 + sha512 = "uauPG7XZn9F/mo+7MrsRjyvbxFpzemRjKEZXS4AK83oP2KKOJPvb+9cO/gmnv8arWZvhnjVOXz7B49m1l0e9Ew=="; 60595 + }; 60596 + }; 60606 60597 "typescript-4.3.5" = { 60607 60598 name = "typescript"; 60608 60599 packageName = "typescript"; ··· 64177 64168 sha512 = "QgaeV+wmlB1Qaw9rS5a0ZDBt8GRcKkF+hGNSVxQ/HLm1lPCow3BKOhoILaXkYm7YozCcL7TjppRADBwFJugbuA=="; 64178 64169 }; 64179 64170 }; 64180 - "web3-utils-1.5.0" = { 64171 + "web3-utils-1.5.1" = { 64181 64172 name = "web3-utils"; 64182 64173 packageName = "web3-utils"; 64183 - version = "1.5.0"; 64174 + version = "1.5.1"; 64184 64175 src = fetchurl { 64185 - url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.5.0.tgz"; 64186 - sha512 = "hNyw7Oxi6TM3ivXmv4hK5Cvyi9ML3UoKtcCYvLF9woPWh5v2dwCCVO1U3Iq5HHK7Dqq28t1d4CxWHqUfOfAkgg=="; 64176 + url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.5.1.tgz"; 64177 + sha512 = "U8ULaMBwjkp9Rn+kRLjUmgAUHwPqDrM5/Q9tPKgvuDKtMWUggTLC33/KF8RY+PyAhSAlnD+lmNGfZnbjmVKBxQ=="; 64187 64178 }; 64188 64179 }; 64189 64180 "webassemblyjs-1.11.1" = { ··· 64276 64267 sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ=="; 64277 64268 }; 64278 64269 }; 64279 - "webpack-5.48.0" = { 64270 + "webpack-5.49.0" = { 64280 64271 name = "webpack"; 64281 64272 packageName = "webpack"; 64282 - version = "5.48.0"; 64273 + version = "5.49.0"; 64283 64274 src = fetchurl { 64284 - url = "https://registry.npmjs.org/webpack/-/webpack-5.48.0.tgz"; 64285 - sha512 = "CGe+nfbHrYzbk7SKoYITCgN3LRAG0yVddjNUecz9uugo1QtYdiyrVD8nP1PhkNqPfdxC2hknmmKpP355Epyn6A=="; 64275 + url = "https://registry.npmjs.org/webpack/-/webpack-5.49.0.tgz"; 64276 + sha512 = "XarsANVf28A7Q3KPxSnX80EkCcuOer5hTOEJWJNvbskOZ+EK3pobHarGHceyUZMxpsTHBHhlV7hiQyLZzGosYw=="; 64286 64277 }; 64287 64278 }; 64288 64279 "webpack-bundle-analyzer-3.9.0" = { ··· 64474 64465 sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; 64475 64466 }; 64476 64467 }; 64477 - "webtorrent-1.3.7" = { 64468 + "webtorrent-1.3.9" = { 64478 64469 name = "webtorrent"; 64479 64470 packageName = "webtorrent"; 64480 - version = "1.3.7"; 64471 + version = "1.3.9"; 64481 64472 src = fetchurl { 64482 - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.3.7.tgz"; 64483 - sha512 = "0dabc5WmYyuAchbsyugcVPvFeuyrig32cacPK+rvK71WUN80Q5nJOHj4YP+ZnIJMjjJ0LOOvdTdNo5ZPDGqjtQ=="; 64473 + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.3.9.tgz"; 64474 + sha512 = "K52E15SutGIgrBj0YzYNYgkuQMucKePdGk2zxMwLHtFh9sJ0KVPlQgkmORhSbJqC51cRVq/4Xt2jToZde8ioRQ=="; 64484 64475 }; 64485 64476 }; 64486 64477 "well-known-symbols-2.0.0" = { ··· 64672 64663 sha1 = "20b721df05b35b706176ffa10b0909aba4603035"; 64673 64664 }; 64674 64665 }; 64675 - "which-typed-array-1.1.4" = { 64666 + "which-typed-array-1.1.6" = { 64676 64667 name = "which-typed-array"; 64677 64668 packageName = "which-typed-array"; 64678 - version = "1.1.4"; 64669 + version = "1.1.6"; 64679 64670 src = fetchurl { 64680 - url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz"; 64681 - sha512 = "49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA=="; 64671 + url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.6.tgz"; 64672 + sha512 = "DdY984dGD5sQ7Tf+x1CkXzdg85b9uEel6nr4UkFg1LoE9OXv3uRuZhe5CoWdawhGACeFpEZXH8fFLQnDhbpm/Q=="; 64682 64673 }; 64683 64674 }; 64684 64675 "wide-align-1.1.3" = { ··· 64735 64726 sha512 = "nSiLDIIMAmnulDIRcophSU4oOLW1AGnQKNim+SI5MtzE5gwlD+VJNTkBbSYq8Nov8WjD9jWobaKxo+5yeiC1vA=="; 64736 64727 }; 64737 64728 }; 64738 - "wikipeg-2.0.5" = { 64729 + "wikipeg-2.0.6" = { 64739 64730 name = "wikipeg"; 64740 64731 packageName = "wikipeg"; 64741 - version = "2.0.5"; 64732 + version = "2.0.6"; 64742 64733 src = fetchurl { 64743 - url = "https://registry.npmjs.org/wikipeg/-/wikipeg-2.0.5.tgz"; 64744 - sha512 = "FMNznSW4Qjexmgqz23YLtXoS6+GKPnbkEsI14xdRxsWv8jQWJ94ffQZ4PpUSsZm7/XAjqrjFiUnbvOOxBhJY4g=="; 64734 + url = "https://registry.npmjs.org/wikipeg/-/wikipeg-2.0.6.tgz"; 64735 + sha512 = "b3Ni/3kKzoHfqL8OdbwHELvEdFt3jyZfjgNXzz0pDvAu7++DdaKE9iCceyzHS2lOdAidyREcUVRY4F9kWwd/Lg=="; 64745 64736 }; 64746 64737 }; 64747 64738 "wildcard-2.0.0" = { ··· 65005 64996 sha512 = "mO8XtqyPvykVCsrwj5MlOVWvSnCdT+C+QVbm6blradR7JExAhbkZ7hZ9A+9NUtwzSqrlUo9a67ws0EiILrvRpw=="; 65006 64997 }; 65007 64998 }; 65008 - "workbox-background-sync-6.1.5" = { 65009 - name = "workbox-background-sync"; 65010 - packageName = "workbox-background-sync"; 65011 - version = "6.1.5"; 65012 - src = fetchurl { 65013 - url = "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.1.5.tgz"; 65014 - sha512 = "VbUmPLsdz+sLzuNxHvMylzyRTiM4q+q7rwLBk3p2mtRL5NZozI8j/KgoGbno96vs84jx4b9zCZMEOIKEUTPf6w=="; 65015 - }; 65016 - }; 65017 - "workbox-broadcast-update-6.1.5" = { 65018 - name = "workbox-broadcast-update"; 65019 - packageName = "workbox-broadcast-update"; 65020 - version = "6.1.5"; 65021 - src = fetchurl { 65022 - url = "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.1.5.tgz"; 65023 - sha512 = "zGrTTs+n4wHpYtqYMqBg6kl/x5j1UrczGCQnODSHTxIDV8GXLb/GtA1BCZdysNxpMmdVSeLmTcgIYAAqWFamrA=="; 65024 - }; 65025 - }; 65026 - "workbox-build-6.1.5" = { 65027 - name = "workbox-build"; 65028 - packageName = "workbox-build"; 65029 - version = "6.1.5"; 65030 - src = fetchurl { 65031 - url = "https://registry.npmjs.org/workbox-build/-/workbox-build-6.1.5.tgz"; 65032 - sha512 = "P+fakR5QFVqJN9l9xHVXtmafga72gh9I+jM3A9HiB/6UNRmOAejXnDgD+RMegOHgQHPwnB44TalMToFaXKWIyA=="; 65033 - }; 65034 - }; 65035 - "workbox-cacheable-response-6.1.5" = { 65036 - name = "workbox-cacheable-response"; 65037 - packageName = "workbox-cacheable-response"; 65038 - version = "6.1.5"; 65039 - src = fetchurl { 65040 - url = "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.1.5.tgz"; 65041 - sha512 = "x8DC71lO/JCgiaJ194l9le8wc8lFPLgUpDkLhp2si7mXV6S/wZO+8Osvw1LLgYa8YYTWGbhbFhFTXIkEMknIIA=="; 65042 - }; 65043 - }; 65044 - "workbox-core-6.1.5" = { 65045 - name = "workbox-core"; 65046 - packageName = "workbox-core"; 65047 - version = "6.1.5"; 65048 - src = fetchurl { 65049 - url = "https://registry.npmjs.org/workbox-core/-/workbox-core-6.1.5.tgz"; 65050 - sha512 = "9SOEle7YcJzg3njC0xMSmrPIiFjfsFm9WjwGd5enXmI8Lwk8wLdy63B0nzu5LXoibEmS9k+aWF8EzaKtOWjNSA=="; 65051 - }; 65052 - }; 65053 - "workbox-expiration-6.1.5" = { 65054 - name = "workbox-expiration"; 65055 - packageName = "workbox-expiration"; 65056 - version = "6.1.5"; 65057 - src = fetchurl { 65058 - url = "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.1.5.tgz"; 65059 - sha512 = "6cN+FVbh8fNq56LFKPMchGNKCJeyboHsDuGBqmhDUPvD4uDjsegQpDQzn52VaE0cpywbSIsDF/BSq9E9Yjh5oQ=="; 65060 - }; 65061 - }; 65062 - "workbox-google-analytics-6.1.5" = { 65063 - name = "workbox-google-analytics"; 65064 - packageName = "workbox-google-analytics"; 65065 - version = "6.1.5"; 65066 - src = fetchurl { 65067 - url = "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.1.5.tgz"; 65068 - sha512 = "LYsJ/VxTkYVLxM1uJKXZLz4cJdemidY7kPyAYtKVZ6EiDG89noASqis75/5lhqM1m3HwQfp2DtoPrelKSpSDBA=="; 65069 - }; 65070 - }; 65071 - "workbox-navigation-preload-6.1.5" = { 65072 - name = "workbox-navigation-preload"; 65073 - packageName = "workbox-navigation-preload"; 65074 - version = "6.1.5"; 65075 - src = fetchurl { 65076 - url = "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.1.5.tgz"; 65077 - sha512 = "hDbNcWlffv0uvS21jCAC/mYk7NzaGRSWOQXv1p7bj2aONAX5l699D2ZK4D27G8TO0BaLHUmW/1A5CZcsvweQdg=="; 65078 - }; 65079 - }; 65080 - "workbox-precaching-6.1.5" = { 65081 - name = "workbox-precaching"; 65082 - packageName = "workbox-precaching"; 65083 - version = "6.1.5"; 65084 - src = fetchurl { 65085 - url = "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.1.5.tgz"; 65086 - sha512 = "yhm1kb6wgi141JeM5X7z42XJxCry53tbMLB3NgrxktrZbwbrJF8JILzYy+RFKC9tHC6u2bPmL789GPLT2NCDzw=="; 65087 - }; 65088 - }; 65089 - "workbox-range-requests-6.1.5" = { 65090 - name = "workbox-range-requests"; 65091 - packageName = "workbox-range-requests"; 65092 - version = "6.1.5"; 65093 - src = fetchurl { 65094 - url = "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.1.5.tgz"; 65095 - sha512 = "iACChSapzB0yuIum3ascP/+cfBNuZi5DRrE+u4u5mCHigPlwfSWtlaY+y8p+a8EwcDTVTZVtnrGrRnF31SiLqQ=="; 65096 - }; 65097 - }; 65098 - "workbox-recipes-6.1.5" = { 65099 - name = "workbox-recipes"; 65100 - packageName = "workbox-recipes"; 65101 - version = "6.1.5"; 65102 - src = fetchurl { 65103 - url = "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.1.5.tgz"; 65104 - sha512 = "MD1yabHca6O/oj1hrRdfj9cRwhKA5zqIE53rWOAg/dKMMzWQsf9nyRbXRgzK3a13iQvYKuQzURU4Cx58tdnR+Q=="; 65105 - }; 65106 - }; 65107 - "workbox-routing-6.1.5" = { 65108 - name = "workbox-routing"; 65109 - packageName = "workbox-routing"; 65110 - version = "6.1.5"; 65111 - src = fetchurl { 65112 - url = "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.1.5.tgz"; 65113 - sha512 = "uC/Ctz+4GXGL42h1WxUNKxqKRik/38uS0NZ6VY/EHqL2F1ObLFqMHUZ4ZYvyQsKdyI82cxusvhJZHOrY0a2fIQ=="; 65114 - }; 65115 - }; 65116 - "workbox-strategies-6.1.5" = { 65117 - name = "workbox-strategies"; 65118 - packageName = "workbox-strategies"; 65119 - version = "6.1.5"; 65120 - src = fetchurl { 65121 - url = "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.1.5.tgz"; 65122 - sha512 = "QhiOn9KT9YGBdbfWOmJT6pXZOIAxaVrs6J6AMYzRpkUegBTEcv36+ZhE/cfHoT0u2fxVtthHnskOQ/snEzaXQw=="; 65123 - }; 65124 - }; 65125 - "workbox-streams-6.1.5" = { 65126 - name = "workbox-streams"; 65127 - packageName = "workbox-streams"; 65128 - version = "6.1.5"; 65129 - src = fetchurl { 65130 - url = "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.1.5.tgz"; 65131 - sha512 = "OI1kLvRHGFXV+soDvs6aEwfBwdAkvPB0mRryqdh3/K17qUj/1gRXc8QtpgU+83xqx/I/ar2bTCIj0KPzI/ChCQ=="; 65132 - }; 65133 - }; 65134 - "workbox-sw-6.1.5" = { 65135 - name = "workbox-sw"; 65136 - packageName = "workbox-sw"; 65137 - version = "6.1.5"; 65138 - src = fetchurl { 65139 - url = "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.1.5.tgz"; 65140 - sha512 = "IMDiqxYbKzPorZLGMUMacLB6r76iVQbdTzYthIZoPfy+uFURJFUtqiWQJKg1L+RMyuYXwKXTahCIGkgFs4jBeg=="; 65141 - }; 65142 - }; 65143 - "workbox-webpack-plugin-6.1.5" = { 65144 - name = "workbox-webpack-plugin"; 65145 - packageName = "workbox-webpack-plugin"; 65146 - version = "6.1.5"; 65147 - src = fetchurl { 65148 - url = "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.1.5.tgz"; 65149 - sha512 = "tsgeNAYiFP4STNPDxBVT58eiU8nGUmcv7Lq9FFJkQf5MMu6tPw1OLp+KpszhbCWP+R/nEdu85Gjexs6fY647Kg=="; 65150 - }; 65151 - }; 65152 - "workbox-window-6.1.5" = { 65153 - name = "workbox-window"; 65154 - packageName = "workbox-window"; 65155 - version = "6.1.5"; 65156 - src = fetchurl { 65157 - url = "https://registry.npmjs.org/workbox-window/-/workbox-window-6.1.5.tgz"; 65158 - sha512 = "akL0X6mAegai2yypnq78RgfazeqvKbsllRtEI4dnbhPcRINEY1NmecFmsQk8SD+zWLK1gw5OdwAOX+zHSRVmeA=="; 65159 - }; 65160 - }; 65161 64999 "worker-farm-1.7.0" = { 65162 65000 name = "worker-farm"; 65163 65001 packageName = "worker-farm"; ··· 65210 65048 src = fetchurl { 65211 65049 url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz"; 65212 65050 sha1 = "288a04d87eda5c286e060dfe8f135ce8d007f8ba"; 65213 - }; 65214 - }; 65215 - "wrap-ansi-4.0.0" = { 65216 - name = "wrap-ansi"; 65217 - packageName = "wrap-ansi"; 65218 - version = "4.0.0"; 65219 - src = fetchurl { 65220 - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-4.0.0.tgz"; 65221 - sha512 = "uMTsj9rDb0/7kk1PbcbCcwvHUxp60fGDB/NNXpVa0Q+ic/e7y5+BwTxKfQ33VYgDppSwi/FBzpetYzo8s6tfbg=="; 65222 65051 }; 65223 65052 }; 65224 65053 "wrap-ansi-5.1.0" = { ··· 65464 65293 sha512 = "kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg=="; 65465 65294 }; 65466 65295 }; 65296 + "ws-8.0.0" = { 65297 + name = "ws"; 65298 + packageName = "ws"; 65299 + version = "8.0.0"; 65300 + src = fetchurl { 65301 + url = "https://registry.npmjs.org/ws/-/ws-8.0.0.tgz"; 65302 + sha512 = "6AcSIXpBlS0QvCVKk+3cWnWElLsA6SzC0lkQ43ciEglgXJXiCWK3/CGFEJ+Ybgp006CMibamAsqOlxE9s4AvYA=="; 65303 + }; 65304 + }; 65467 65305 "x-default-browser-0.3.1" = { 65468 65306 name = "x-default-browser"; 65469 65307 packageName = "x-default-browser"; ··· 65545 65383 sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ=="; 65546 65384 }; 65547 65385 }; 65548 - "xdl-59.0.52" = { 65386 + "xdl-59.0.53" = { 65549 65387 name = "xdl"; 65550 65388 packageName = "xdl"; 65551 - version = "59.0.52"; 65389 + version = "59.0.53"; 65552 65390 src = fetchurl { 65553 - url = "https://registry.npmjs.org/xdl/-/xdl-59.0.52.tgz"; 65554 - sha512 = "gKyfWDxd0lXut92LmOU4xte+AWt+sIJJTYILIwkbLtw0jqq556mg6+r5EDHI8kIHz1KFM3glTYTr1+W7uJ4wHw=="; 65391 + url = "https://registry.npmjs.org/xdl/-/xdl-59.0.53.tgz"; 65392 + sha512 = "U98lIdfMfwwUTmXwsF5t9Pu/VJSe+Bxb/1v0HWq6UK1VoA13EE2cE5JRBGFmu0+mkrust/Mp6AN289VKpguilw=="; 65555 65393 }; 65556 65394 }; 65557 65395 "xenvar-0.5.1" = { ··· 66762 66600 }) 66763 66601 sources."getpass-0.1.7" 66764 66602 sources."glob-7.1.7" 66765 - sources."graceful-fs-4.2.6" 66603 + sources."graceful-fs-4.2.8" 66766 66604 sources."har-schema-2.0.0" 66767 66605 (sources."har-validator-5.1.5" // { 66768 66606 dependencies = [ ··· 66883 66721 sources."semver-7.3.5" 66884 66722 sources."set-blocking-2.0.0" 66885 66723 sources."signal-exit-3.0.3" 66886 - sources."smart-buffer-4.1.0" 66724 + sources."smart-buffer-4.2.0" 66887 66725 sources."socks-2.6.1" 66888 66726 sources."socks-proxy-agent-5.0.1" 66889 66727 sources."source-map-0.7.3" ··· 67110 66948 sources."mimic-response-1.0.1" 67111 66949 ]; 67112 66950 }) 67113 - sources."graceful-fs-4.2.6" 66951 + sources."graceful-fs-4.2.8" 67114 66952 (sources."gulp-vinyl-zip-2.2.1" // { 67115 66953 dependencies = [ 67116 66954 sources."readable-stream-2.3.7" ··· 67347 67185 sources."fast-levenshtein-2.0.6" 67348 67186 sources."figures-3.2.0" 67349 67187 sources."form-data-4.0.0" 67350 - sources."graceful-fs-4.2.6" 67188 + sources."graceful-fs-4.2.8" 67351 67189 sources."has-flag-4.0.0" 67352 67190 sources."html-encoding-sniffer-2.0.1" 67353 67191 sources."http-proxy-agent-4.0.1" ··· 67451 67289 sources."@hyperswarm/hypersign-2.1.1" 67452 67290 sources."@hyperswarm/network-2.1.0" 67453 67291 sources."@leichtgewicht/ip-codec-2.0.3" 67454 - sources."@types/node-16.4.12" 67292 + sources."@types/node-16.4.13" 67455 67293 sources."abstract-extension-3.1.1" 67456 67294 sources."abstract-leveldown-6.2.3" 67457 67295 sources."ansi-colors-3.2.3" ··· 67593 67431 sources."has-bigints-1.0.1" 67594 67432 sources."has-flag-3.0.0" 67595 67433 sources."has-symbols-1.0.2" 67434 + sources."has-tostringtag-1.0.0" 67596 67435 sources."hashlru-2.3.0" 67597 67436 sources."he-1.2.0" 67598 67437 sources."hmac-blake2b-2.0.0" ··· 67640 67479 sources."inspect-custom-symbol-1.1.1" 67641 67480 sources."internal-slot-1.0.3" 67642 67481 sources."ipv4-peers-2.0.0" 67643 - sources."is-bigint-1.0.2" 67482 + sources."is-bigint-1.0.3" 67644 67483 sources."is-binary-path-2.1.0" 67645 - sources."is-boolean-object-1.1.1" 67484 + sources."is-boolean-object-1.1.2" 67646 67485 sources."is-buffer-2.0.5" 67647 - sources."is-callable-1.2.3" 67486 + sources."is-callable-1.2.4" 67648 67487 sources."is-core-module-2.5.0" 67649 - sources."is-date-object-1.0.4" 67488 + sources."is-date-object-1.0.5" 67650 67489 sources."is-extglob-2.1.1" 67651 67490 sources."is-fullwidth-code-point-2.0.0" 67652 67491 sources."is-glob-4.0.1" 67653 67492 sources."is-negative-zero-2.0.1" 67654 67493 sources."is-number-7.0.0" 67655 - sources."is-number-object-1.0.5" 67494 + sources."is-number-object-1.0.6" 67656 67495 sources."is-options-1.0.1" 67657 67496 sources."is-property-1.0.2" 67658 - sources."is-regex-1.1.3" 67497 + sources."is-regex-1.1.4" 67659 67498 sources."is-stream-1.1.0" 67660 - sources."is-string-1.0.6" 67499 + sources."is-string-1.0.7" 67661 67500 sources."is-symbol-1.0.4" 67662 67501 sources."isarray-1.0.0" 67663 67502 sources."isexe-2.0.0" ··· 67983 67822 sources."@types/eslint-scope-3.7.1" 67984 67823 sources."@types/estree-0.0.50" 67985 67824 sources."@types/json-schema-7.0.9" 67986 - sources."@types/node-16.4.12" 67825 + sources."@types/node-16.4.13" 67987 67826 sources."@types/parse-json-4.0.0" 67988 67827 sources."@webassemblyjs/ast-1.11.1" 67989 67828 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 68049 67888 sources."cross-spawn-7.0.3" 68050 67889 sources."deepmerge-4.2.2" 68051 67890 sources."defaults-1.0.3" 68052 - sources."electron-to-chromium-1.3.796" 67891 + sources."electron-to-chromium-1.3.799" 68053 67892 sources."emoji-regex-8.0.0" 68054 67893 sources."end-of-stream-1.4.4" 68055 67894 (sources."enhanced-resolve-5.8.2" // { ··· 68090 67929 sources."glob-7.1.7" 68091 67930 sources."glob-parent-5.1.2" 68092 67931 sources."glob-to-regexp-0.4.1" 68093 - sources."graceful-fs-4.2.6" 67932 + sources."graceful-fs-4.2.8" 68094 67933 sources."has-1.0.3" 68095 67934 sources."has-flag-4.0.0" 68096 67935 sources."human-signals-1.1.1" ··· 68442 68281 sources."@types/express-serve-static-core-4.17.24" 68443 68282 sources."@types/fs-capacitor-2.0.0" 68444 68283 sources."@types/glob-7.1.4" 68445 - sources."@types/http-assert-1.5.1" 68284 + sources."@types/http-assert-1.5.2" 68446 68285 sources."@types/http-errors-1.8.1" 68447 68286 sources."@types/inquirer-6.5.0" 68448 68287 (sources."@types/jscodeshift-0.7.2" // { ··· 68458 68297 sources."@types/long-4.0.1" 68459 68298 sources."@types/mime-1.3.2" 68460 68299 sources."@types/minimatch-3.0.5" 68461 - sources."@types/node-16.4.12" 68300 + sources."@types/node-16.4.13" 68462 68301 sources."@types/normalize-package-data-2.4.1" 68463 68302 sources."@types/qs-6.9.7" 68464 68303 sources."@types/range-parser-1.2.4" ··· 68729 68568 sources."ecc-jsbn-0.1.2" 68730 68569 sources."ee-first-1.1.1" 68731 68570 sources."ejs-2.7.4" 68732 - sources."electron-to-chromium-1.3.796" 68571 + sources."electron-to-chromium-1.3.799" 68733 68572 sources."emoji-regex-7.0.3" 68734 68573 sources."encodeurl-1.0.2" 68735 68574 sources."end-of-stream-1.4.4" ··· 68812 68651 }) 68813 68652 sources."find-up-3.0.0" 68814 68653 sources."fkill-6.2.0" 68815 - sources."flow-parser-0.156.0" 68654 + sources."flow-parser-0.157.0" 68816 68655 sources."for-each-0.3.3" 68817 68656 sources."for-in-1.0.2" 68818 68657 sources."forever-agent-0.6.1" ··· 68860 68699 sources."into-stream-3.1.0" 68861 68700 ]; 68862 68701 }) 68863 - sources."graceful-fs-4.2.6" 68702 + sources."graceful-fs-4.2.8" 68864 68703 sources."graphql-14.7.0" 68865 68704 sources."graphql-extensions-0.15.0" 68866 68705 sources."graphql-subscriptions-1.2.1" ··· 68880 68719 sources."has-symbol-support-x-1.4.2" 68881 68720 sources."has-symbols-1.0.2" 68882 68721 sources."has-to-string-tag-x-1.4.1" 68722 + sources."has-tostringtag-1.0.0" 68883 68723 sources."has-value-1.0.0" 68884 68724 (sources."has-values-1.0.0" // { 68885 68725 dependencies = [ ··· 68920 68760 sources."ipaddr.js-1.9.1" 68921 68761 sources."is-accessor-descriptor-1.0.0" 68922 68762 sources."is-arrayish-0.2.1" 68923 - sources."is-bigint-1.0.2" 68924 - sources."is-boolean-object-1.1.1" 68763 + sources."is-bigint-1.0.3" 68764 + sources."is-boolean-object-1.1.2" 68925 68765 sources."is-buffer-1.1.6" 68926 - sources."is-callable-1.2.3" 68766 + sources."is-callable-1.2.4" 68927 68767 sources."is-core-module-2.5.0" 68928 68768 sources."is-data-descriptor-1.0.0" 68929 - sources."is-date-object-1.0.4" 68769 + sources."is-date-object-1.0.5" 68930 68770 sources."is-descriptor-1.0.2" 68931 68771 sources."is-docker-2.2.1" 68932 68772 sources."is-extendable-0.1.1" ··· 68940 68780 sources."kind-of-3.2.2" 68941 68781 ]; 68942 68782 }) 68943 - sources."is-number-object-1.0.5" 68783 + sources."is-number-object-1.0.6" 68944 68784 sources."is-object-1.0.2" 68945 68785 sources."is-plain-obj-1.1.0" 68946 68786 sources."is-plain-object-2.0.4" 68947 68787 sources."is-promise-2.2.2" 68948 68788 sources."is-property-1.0.2" 68949 - sources."is-regex-1.1.3" 68789 + sources."is-regex-1.1.4" 68950 68790 sources."is-retry-allowed-1.2.0" 68951 68791 sources."is-stream-1.1.0" 68952 - sources."is-string-1.0.6" 68792 + sources."is-string-1.0.7" 68953 68793 sources."is-symbol-1.0.4" 68954 68794 sources."is-typedarray-1.0.0" 68955 68795 sources."is-windows-1.0.2" ··· 69737 69577 sources."JSV-4.0.2" 69738 69578 sources."ansi-styles-3.2.1" 69739 69579 sources."array-unique-0.3.2" 69740 - sources."async-3.2.0" 69580 + sources."async-3.2.1" 69741 69581 sources."balanced-match-1.0.2" 69742 69582 sources."brace-expansion-1.1.11" 69743 69583 sources."browserslist-4.16.7" ··· 69752 69592 sources."convert-source-map-1.8.0" 69753 69593 sources."debug-4.3.2" 69754 69594 sources."ejs-3.1.6" 69755 - sources."electron-to-chromium-1.3.796" 69595 + sources."electron-to-chromium-1.3.799" 69756 69596 sources."ensure-posix-path-1.1.1" 69757 69597 sources."escalade-3.1.1" 69758 69598 sources."escape-string-regexp-1.0.5" ··· 69772 69612 ]; 69773 69613 }) 69774 69614 sources."globals-11.12.0" 69775 - sources."graceful-fs-4.2.6" 69615 + sources."graceful-fs-4.2.8" 69776 69616 sources."has-1.0.3" 69777 69617 sources."has-color-0.1.7" 69778 69618 sources."has-flag-3.0.0" ··· 69846 69686 dependencies = [ 69847 69687 sources."@types/glob-7.1.4" 69848 69688 sources."@types/minimatch-3.0.5" 69849 - sources."@types/node-16.4.12" 69689 + sources."@types/node-16.4.13" 69850 69690 sources."balanced-match-1.0.2" 69851 69691 sources."brace-expansion-1.1.11" 69852 69692 sources."chromium-pickle-js-0.2.0" ··· 69883 69723 sources."browserslist-4.16.7" 69884 69724 sources."caniuse-lite-1.0.30001249" 69885 69725 sources."colorette-1.2.2" 69886 - sources."electron-to-chromium-1.3.796" 69726 + sources."electron-to-chromium-1.3.799" 69887 69727 sources."escalade-3.1.1" 69888 69728 sources."fraction.js-4.1.1" 69889 69729 sources."node-releases-1.1.73" ··· 69910 69750 }; 69911 69751 dependencies = [ 69912 69752 sources."@tootallnate/once-1.1.2" 69913 - sources."@types/node-16.4.12" 69753 + sources."@types/node-16.4.13" 69914 69754 sources."@types/yauzl-2.9.2" 69915 69755 sources."agent-base-6.0.2" 69916 69756 sources."ansi-escapes-4.3.2" 69917 69757 sources."ansi-regex-5.0.0" 69918 69758 sources."ansi-styles-4.3.0" 69919 69759 sources."ast-types-0.13.4" 69920 - (sources."aws-sdk-2.961.0" // { 69760 + (sources."aws-sdk-2.963.0" // { 69921 69761 dependencies = [ 69922 69762 sources."uuid-3.3.2" 69923 69763 ]; ··· 69991 69831 sources."get-stream-5.2.0" 69992 69832 sources."get-uri-3.0.2" 69993 69833 sources."glob-7.1.7" 69994 - sources."graceful-fs-4.2.6" 69834 + sources."graceful-fs-4.2.8" 69995 69835 sources."has-flag-4.0.0" 69996 69836 sources."htmlparser2-6.1.0" 69997 69837 sources."http-errors-1.7.3" ··· 70067 69907 sources."sax-1.2.1" 70068 69908 sources."setprototypeof-1.1.1" 70069 69909 sources."signal-exit-3.0.3" 70070 - sources."smart-buffer-4.1.0" 69910 + sources."smart-buffer-4.2.0" 70071 69911 sources."socks-2.6.1" 70072 69912 sources."socks-proxy-agent-5.0.1" 70073 69913 sources."source-map-0.6.1" ··· 70121 69961 balanceofsatoshis = nodeEnv.buildNodePackage { 70122 69962 name = "balanceofsatoshis"; 70123 69963 packageName = "balanceofsatoshis"; 70124 - version = "10.7.3"; 69964 + version = "10.7.6"; 70125 69965 src = fetchurl { 70126 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.7.3.tgz"; 70127 - sha512 = "z28OLydw1ShAWmnSJFdcES0krIoR1+SXxKarPo2fOPg5VzcNxttaSnWEO5BSsB1E64fJ4EImyMhhwKCZ9uB2xA=="; 69966 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.7.6.tgz"; 69967 + sha512 = "dzYzWcLVcwbHwKfTp60ml7IYvWOmX6rD2rC/J9A2HT6VzefbcQ4/59YdzoPRhdlvmhblvj17jwExN0xQxOQJhQ=="; 70128 69968 }; 70129 69969 dependencies = [ 70130 69970 sources."@alexbosworth/html2unicode-1.1.5" ··· 70137 69977 sources."@cto.af/textdecoder-0.0.0" 70138 69978 (sources."@grpc/grpc-js-1.3.2" // { 70139 69979 dependencies = [ 70140 - sources."@types/node-16.4.12" 69980 + sources."@types/node-16.4.13" 70141 69981 ]; 70142 69982 }) 70143 69983 sources."@grpc/proto-loader-0.6.2" ··· 70274 70114 sources."camelcase-6.2.0" 70275 70115 sources."caporal-1.4.0" 70276 70116 sources."caseless-0.12.0" 70277 - sources."cbor-7.0.6" 70117 + sources."cbor-8.0.0" 70278 70118 sources."cert-info-1.5.1" 70279 70119 (sources."chalk-1.1.3" // { 70280 70120 dependencies = [ ··· 70389 70229 sources."cbor-7.0.5" 70390 70230 sources."invoices-1.2.1" 70391 70231 sources."ln-service-51.8.2" 70232 + sources."nofilter-2.0.3" 70392 70233 ]; 70393 70234 }) 70394 70235 sources."got-9.6.0" 70395 - sources."graceful-fs-4.2.6" 70236 + sources."graceful-fs-4.2.8" 70396 70237 sources."har-schema-2.0.0" 70397 70238 sources."har-validator-5.1.3" 70398 70239 (sources."has-ansi-2.0.0" // { ··· 70489 70330 sources."bn.js-5.2.0" 70490 70331 sources."cbor-7.0.5" 70491 70332 sources."invoices-1.2.1" 70333 + sources."nofilter-2.0.3" 70492 70334 ]; 70493 70335 }) 70494 70336 (sources."ln-accounting-4.3.1" // { ··· 70501 70343 sources."cbor-7.0.5" 70502 70344 sources."lightning-3.3.12" 70503 70345 sources."ln-service-51.8.5" 70346 + sources."nofilter-2.0.3" 70504 70347 sources."ws-7.5.0" 70505 70348 ]; 70506 70349 }) 70507 - (sources."ln-service-51.10.0" // { 70350 + (sources."ln-service-51.10.1" // { 70508 70351 dependencies = [ 70509 70352 sources."@grpc/grpc-js-1.3.6" 70510 70353 sources."@grpc/proto-loader-0.6.4" 70511 70354 sources."@types/express-4.17.13" 70512 - sources."@types/node-16.3.3" 70355 + sources."@types/node-16.4.3" 70513 70356 sources."@types/request-2.48.6" 70514 70357 sources."@types/ws-7.4.7" 70515 70358 sources."bn.js-5.2.0" 70359 + sources."cbor-7.0.6" 70516 70360 sources."form-data-2.5.1" 70517 - sources."lightning-3.4.0" 70518 - sources."ws-7.5.3" 70361 + sources."lightning-3.5.0" 70362 + sources."nofilter-2.0.3" 70363 + sources."ws-8.0.0" 70519 70364 ]; 70520 70365 }) 70521 70366 (sources."ln-sync-0.4.7" // { ··· 70527 70372 sources."@types/request-2.48.6" 70528 70373 sources."@types/ws-7.4.7" 70529 70374 sources."bn.js-5.2.0" 70375 + sources."cbor-7.0.6" 70530 70376 sources."form-data-2.5.1" 70531 70377 sources."lightning-3.4.0" 70378 + sources."nofilter-2.0.3" 70532 70379 ]; 70533 70380 }) 70534 70381 (sources."ln-telegram-3.2.9" // { ··· 70540 70387 sources."@types/request-2.48.6" 70541 70388 sources."@types/ws-7.4.6" 70542 70389 sources."bn.js-5.2.0" 70543 - sources."cbor-7.0.5" 70390 + sources."cbor-7.0.6" 70544 70391 sources."form-data-2.5.1" 70545 70392 sources."lightning-3.3.16" 70546 70393 sources."ln-service-51.9.0" ··· 70552 70399 sources."@types/node-15.12.5" 70553 70400 sources."@types/request-2.48.5" 70554 70401 sources."@types/ws-7.4.5" 70402 + sources."cbor-7.0.5" 70555 70403 sources."lightning-3.3.12" 70556 70404 ]; 70557 70405 }) 70406 + sources."nofilter-2.0.3" 70558 70407 sources."ws-7.5.3" 70559 70408 ]; 70560 70409 }) ··· 70618 70467 sources."node-addon-api-2.0.2" 70619 70468 sources."node-fetch-2.6.1" 70620 70469 sources."node-gyp-build-4.2.3" 70621 - sources."nofilter-2.0.3" 70470 + sources."nofilter-3.0.3" 70622 70471 sources."normalize-url-4.5.1" 70623 70472 sources."npmlog-2.0.4" 70624 70473 sources."number-is-nan-1.0.1" ··· 70659 70508 sources."cbor-7.0.5" 70660 70509 sources."lightning-3.3.12" 70661 70510 sources."ln-service-51.8.5" 70511 + sources."nofilter-2.0.3" 70662 70512 sources."ws-7.5.0" 70663 70513 ]; 70664 70514 }) ··· 70680 70530 sources."process-nextick-args-2.0.1" 70681 70531 (sources."protobufjs-6.11.2" // { 70682 70532 dependencies = [ 70683 - sources."@types/node-16.4.12" 70533 + sources."@types/node-16.4.13" 70684 70534 ]; 70685 70535 }) 70686 70536 sources."proxy-addr-2.0.7" ··· 71219 71069 sources."find-up-1.1.2" 71220 71070 (sources."fs-extra-0.26.7" // { 71221 71071 dependencies = [ 71222 - sources."graceful-fs-4.2.6" 71072 + sources."graceful-fs-4.2.8" 71223 71073 ]; 71224 71074 }) 71225 71075 sources."fs.realpath-1.0.0" ··· 71240 71090 sources."is-utf8-0.2.1" 71241 71091 (sources."jsonfile-2.4.0" // { 71242 71092 dependencies = [ 71243 - sources."graceful-fs-4.2.6" 71093 + sources."graceful-fs-4.2.8" 71244 71094 ]; 71245 71095 }) 71246 71096 (sources."klaw-1.3.1" // { 71247 71097 dependencies = [ 71248 - sources."graceful-fs-4.2.6" 71098 + sources."graceful-fs-4.2.8" 71249 71099 ]; 71250 71100 }) 71251 71101 (sources."load-json-file-1.1.0" // { 71252 71102 dependencies = [ 71253 - sources."graceful-fs-4.2.6" 71103 + sources."graceful-fs-4.2.8" 71254 71104 ]; 71255 71105 }) 71256 71106 sources."lodash-4.2.1" ··· 71273 71123 sources."path-parse-1.0.7" 71274 71124 (sources."path-type-1.1.0" // { 71275 71125 dependencies = [ 71276 - sources."graceful-fs-4.2.6" 71126 + sources."graceful-fs-4.2.8" 71277 71127 ]; 71278 71128 }) 71279 71129 sources."pify-2.3.0" ··· 71417 71267 sources."has-1.0.3" 71418 71268 sources."has-bigints-1.0.1" 71419 71269 sources."has-symbols-1.0.2" 71270 + sources."has-tostringtag-1.0.0" 71420 71271 (sources."hash-base-3.1.0" // { 71421 71272 dependencies = [ 71422 71273 sources."readable-stream-3.6.0" ··· 71432 71283 sources."inline-source-map-0.6.2" 71433 71284 sources."insert-module-globals-7.2.1" 71434 71285 sources."internal-slot-1.0.3" 71435 - sources."is-arguments-1.1.0" 71436 - sources."is-bigint-1.0.2" 71437 - sources."is-boolean-object-1.1.1" 71286 + sources."is-arguments-1.1.1" 71287 + sources."is-bigint-1.0.3" 71288 + sources."is-boolean-object-1.1.2" 71438 71289 sources."is-buffer-1.1.6" 71439 - sources."is-callable-1.2.3" 71290 + sources."is-callable-1.2.4" 71440 71291 sources."is-core-module-2.5.0" 71441 - sources."is-date-object-1.0.4" 71442 - sources."is-generator-function-1.0.9" 71292 + sources."is-date-object-1.0.5" 71293 + sources."is-generator-function-1.0.10" 71443 71294 sources."is-negative-zero-2.0.1" 71444 - sources."is-number-object-1.0.5" 71445 - sources."is-regex-1.1.3" 71446 - sources."is-string-1.0.6" 71295 + sources."is-number-object-1.0.6" 71296 + sources."is-regex-1.1.4" 71297 + sources."is-string-1.0.7" 71447 71298 sources."is-symbol-1.0.4" 71448 - sources."is-typed-array-1.1.5" 71299 + sources."is-typed-array-1.1.7" 71449 71300 sources."isarray-1.0.0" 71450 71301 sources."jsonparse-1.3.1" 71451 71302 sources."labeled-stream-splicer-2.0.2" ··· 71539 71390 sources."util-deprecate-1.0.2" 71540 71391 sources."vm-browserify-1.1.2" 71541 71392 sources."which-boxed-primitive-1.0.2" 71542 - sources."which-typed-array-1.1.4" 71393 + sources."which-typed-array-1.1.6" 71543 71394 sources."wrappy-1.0.2" 71544 71395 sources."xtend-4.0.2" 71545 71396 ]; ··· 71585 71436 sources."asn1-0.2.4" 71586 71437 sources."assert-never-1.2.1" 71587 71438 sources."assert-plus-1.0.0" 71588 - sources."async-3.2.0" 71439 + sources."async-3.2.1" 71589 71440 sources."asynckit-0.4.0" 71590 71441 sources."aws-sign2-0.7.0" 71591 71442 sources."aws4-1.11.0" ··· 71744 71595 sources."has-1.0.3" 71745 71596 sources."has-flag-3.0.0" 71746 71597 sources."has-symbols-1.0.2" 71598 + sources."has-tostringtag-1.0.0" 71747 71599 (sources."hash-base-3.1.0" // { 71748 71600 dependencies = [ 71749 71601 sources."safe-buffer-5.2.1" ··· 71771 71623 sources."is-fullwidth-code-point-2.0.0" 71772 71624 sources."is-plain-obj-1.1.0" 71773 71625 sources."is-promise-2.2.2" 71774 - sources."is-regex-1.1.3" 71626 + sources."is-regex-1.1.4" 71775 71627 sources."is-typedarray-1.0.0" 71776 71628 sources."isarray-2.0.5" 71777 71629 sources."isstream-0.1.2" ··· 72025 71877 sources."@protobufjs/pool-1.1.0" 72026 71878 sources."@protobufjs/utf8-1.1.0" 72027 71879 sources."@types/long-4.0.1" 72028 - sources."@types/node-16.4.12" 71880 + sources."@types/node-16.4.13" 72029 71881 sources."addr-to-ip-port-1.5.4" 72030 71882 sources."airplay-js-0.2.16" 72031 71883 sources."ajv-6.12.6" ··· 72148 72000 sources."getpass-0.1.7" 72149 72001 sources."glob-7.1.7" 72150 72002 sources."got-1.2.2" 72151 - sources."graceful-fs-4.2.6" 72003 + sources."graceful-fs-4.2.8" 72152 72004 sources."har-schema-2.0.0" 72153 72005 sources."har-validator-5.1.5" 72154 72006 sources."has-1.0.3" ··· 72455 72307 sources."color-name-1.1.4" 72456 72308 sources."colors-1.4.0" 72457 72309 sources."commonmark-0.29.3" 72458 - sources."constructs-3.3.114" 72310 + sources."constructs-3.3.117" 72459 72311 sources."date-format-3.0.0" 72460 72312 sources."debug-4.3.2" 72461 72313 sources."decamelize-5.0.0" ··· 72483 72335 sources."function-bind-1.1.1" 72484 72336 sources."get-caller-file-2.0.5" 72485 72337 sources."get-intrinsic-1.1.1" 72486 - sources."graceful-fs-4.2.6" 72338 + sources."graceful-fs-4.2.8" 72487 72339 sources."has-1.0.3" 72488 72340 sources."has-bigints-1.0.1" 72489 72341 sources."has-symbols-1.0.2" 72342 + sources."has-tostringtag-1.0.0" 72490 72343 sources."internal-slot-1.0.3" 72491 - sources."is-arguments-1.1.0" 72492 - sources."is-bigint-1.0.2" 72493 - sources."is-boolean-object-1.1.1" 72494 - sources."is-callable-1.2.3" 72495 - sources."is-date-object-1.0.4" 72344 + sources."is-arguments-1.1.1" 72345 + sources."is-bigint-1.0.3" 72346 + sources."is-boolean-object-1.1.2" 72347 + sources."is-callable-1.2.4" 72348 + sources."is-date-object-1.0.5" 72496 72349 sources."is-fullwidth-code-point-3.0.0" 72497 72350 sources."is-map-2.0.2" 72498 72351 sources."is-negative-zero-2.0.1" 72499 - sources."is-number-object-1.0.5" 72500 - sources."is-regex-1.1.3" 72352 + sources."is-number-object-1.0.6" 72353 + sources."is-regex-1.1.4" 72501 72354 sources."is-set-2.0.2" 72502 - sources."is-string-1.0.6" 72355 + sources."is-string-1.0.7" 72503 72356 sources."is-symbol-1.0.4" 72504 - sources."is-typed-array-1.1.5" 72357 + sources."is-typed-array-1.1.7" 72505 72358 sources."is-weakmap-2.0.1" 72506 72359 sources."is-weakset-2.0.1" 72507 72360 sources."isarray-2.0.5" ··· 72529 72382 sources."yargs-16.2.0" 72530 72383 ]; 72531 72384 }) 72532 - (sources."jsii-srcmak-0.1.316" // { 72385 + (sources."jsii-srcmak-0.1.319" // { 72533 72386 dependencies = [ 72534 72387 sources."fs-extra-9.1.0" 72535 72388 ]; 72536 72389 }) 72537 72390 sources."json-schema-0.3.0" 72538 - sources."json2jsii-0.1.286" 72391 + sources."json2jsii-0.1.289" 72539 72392 sources."jsonfile-6.1.0" 72540 72393 sources."jsonschema-1.4.0" 72541 72394 sources."locate-path-5.0.0" ··· 72571 72424 sources."snake-case-3.0.4" 72572 72425 sources."sort-json-2.0.0" 72573 72426 sources."spdx-license-list-6.4.0" 72574 - sources."sscaff-1.2.37" 72427 + sources."sscaff-1.2.40" 72575 72428 (sources."streamroller-2.2.4" // { 72576 72429 dependencies = [ 72577 72430 sources."date-format-2.1.0" ··· 72589 72442 sources."which-boxed-primitive-1.0.2" 72590 72443 sources."which-collection-1.0.1" 72591 72444 sources."which-module-2.0.0" 72592 - sources."which-typed-array-1.1.4" 72445 + sources."which-typed-array-1.1.6" 72593 72446 sources."wrap-ansi-7.0.0" 72594 72447 sources."xmlbuilder-15.1.1" 72595 72448 sources."xmldom-0.6.0" ··· 72723 72576 sources."@types/yauzl-2.9.2" 72724 72577 sources."@types/yoga-layout-1.9.2" 72725 72578 sources."@types/zen-observable-0.8.3" 72726 - sources."@wry/context-0.6.0" 72727 - sources."@wry/equality-0.5.1" 72728 - sources."@wry/trie-0.3.0" 72579 + sources."@wry/context-0.6.1" 72580 + sources."@wry/equality-0.5.2" 72581 + sources."@wry/trie-0.3.1" 72729 72582 sources."accepts-1.3.7" 72730 72583 sources."address-1.1.2" 72731 72584 (sources."ansi-escapes-4.3.2" // { ··· 72765 72618 sources."array-flatten-1.1.1" 72766 72619 sources."array-union-2.1.0" 72767 72620 sources."astral-regex-2.0.0" 72768 - sources."async-3.2.0" 72621 + sources."async-3.2.1" 72769 72622 sources."async-retry-1.3.1" 72770 72623 sources."asynckit-0.4.0" 72771 72624 sources."at-least-node-1.0.0" ··· 72834 72687 ]; 72835 72688 }) 72836 72689 sources."concat-map-0.0.1" 72837 - sources."constructs-3.3.114" 72690 + sources."constructs-3.3.117" 72838 72691 (sources."content-disposition-0.5.3" // { 72839 72692 dependencies = [ 72840 72693 sources."safe-buffer-5.1.2" ··· 72934 72787 sources."glob-7.1.7" 72935 72788 sources."glob-parent-5.1.2" 72936 72789 sources."globby-11.0.3" 72937 - sources."graceful-fs-4.2.6" 72790 + sources."graceful-fs-4.2.8" 72938 72791 sources."graphology-0.20.0" 72939 72792 sources."graphology-types-0.19.3" 72940 72793 sources."graphql-15.5.1" ··· 72944 72797 sources."has-bigints-1.0.1" 72945 72798 sources."has-flag-3.0.0" 72946 72799 sources."has-symbols-1.0.2" 72800 + sources."has-tostringtag-1.0.0" 72947 72801 sources."hoist-non-react-statics-3.3.2" 72948 72802 (sources."http-errors-1.7.2" // { 72949 72803 dependencies = [ ··· 72973 72827 sources."inquirer-8.1.2" 72974 72828 sources."internal-slot-1.0.3" 72975 72829 sources."ipaddr.js-1.9.1" 72976 - sources."is-arguments-1.1.0" 72977 - sources."is-bigint-1.0.2" 72830 + sources."is-arguments-1.1.1" 72831 + sources."is-bigint-1.0.3" 72978 72832 sources."is-binary-path-2.1.0" 72979 - sources."is-boolean-object-1.1.1" 72980 - sources."is-callable-1.2.3" 72833 + sources."is-boolean-object-1.1.2" 72834 + sources."is-callable-1.2.4" 72981 72835 sources."is-ci-2.0.0" 72982 - sources."is-date-object-1.0.4" 72836 + sources."is-date-object-1.0.5" 72983 72837 sources."is-docker-2.2.1" 72984 72838 sources."is-extglob-2.1.1" 72985 72839 sources."is-fullwidth-code-point-3.0.0" ··· 72988 72842 sources."is-map-2.0.2" 72989 72843 sources."is-negative-zero-2.0.1" 72990 72844 sources."is-number-7.0.0" 72991 - sources."is-number-object-1.0.5" 72992 - sources."is-regex-1.1.3" 72845 + sources."is-number-object-1.0.6" 72846 + sources."is-regex-1.1.4" 72993 72847 sources."is-set-2.0.2" 72994 72848 sources."is-stream-2.0.1" 72995 - sources."is-string-1.0.6" 72849 + sources."is-string-1.0.7" 72996 72850 sources."is-symbol-1.0.4" 72997 - sources."is-typed-array-1.1.5" 72851 + sources."is-typed-array-1.1.7" 72998 72852 sources."is-unicode-supported-0.1.0" 72999 72853 sources."is-valid-domain-0.1.2" 73000 72854 sources."is-weakmap-2.0.1" ··· 73033 72887 sources."yargs-16.2.0" 73034 72888 ]; 73035 72889 }) 73036 - (sources."jsii-srcmak-0.1.316" // { 72890 + (sources."jsii-srcmak-0.1.319" // { 73037 72891 dependencies = [ 73038 72892 sources."fs-extra-9.1.0" 73039 72893 ]; ··· 73191 73045 sources."sort-json-2.0.0" 73192 73046 sources."source-map-0.5.7" 73193 73047 sources."spdx-license-list-6.4.0" 73194 - sources."sscaff-1.2.37" 73048 + sources."sscaff-1.2.40" 73195 73049 (sources."stack-utils-2.0.3" // { 73196 73050 dependencies = [ 73197 73051 sources."escape-string-regexp-2.0.0" ··· 73251 73105 sources."which-boxed-primitive-1.0.2" 73252 73106 sources."which-collection-1.0.1" 73253 73107 sources."which-module-2.0.0" 73254 - sources."which-typed-array-1.1.4" 73108 + sources."which-typed-array-1.1.6" 73255 73109 sources."widest-line-3.1.0" 73256 73110 (sources."wrap-ansi-7.0.0" // { 73257 73111 dependencies = [ ··· 73894 73748 sources."get-intrinsic-1.1.1" 73895 73749 sources."get-stream-4.1.0" 73896 73750 sources."glob-7.1.7" 73897 - sources."graceful-fs-4.2.6" 73751 + sources."graceful-fs-4.2.8" 73898 73752 sources."has-1.0.3" 73899 73753 sources."has-bigints-1.0.1" 73900 73754 sources."has-symbols-1.0.2" 73755 + sources."has-tostringtag-1.0.0" 73901 73756 sources."http-proxy-agent-4.0.1" 73902 73757 sources."https-proxy-agent-5.0.0" 73903 73758 sources."ieee754-1.2.1" ··· 73906 73761 sources."ini-1.3.8" 73907 73762 sources."int64-buffer-0.1.10" 73908 73763 sources."internal-slot-1.0.3" 73909 - sources."is-bigint-1.0.2" 73910 - sources."is-boolean-object-1.1.1" 73911 - sources."is-callable-1.2.3" 73912 - sources."is-date-object-1.0.4" 73764 + sources."is-bigint-1.0.3" 73765 + sources."is-boolean-object-1.1.2" 73766 + sources."is-callable-1.2.4" 73767 + sources."is-date-object-1.0.5" 73913 73768 sources."is-docker-2.2.1" 73914 73769 sources."is-negative-zero-2.0.1" 73915 - sources."is-number-object-1.0.5" 73916 - sources."is-regex-1.1.3" 73770 + sources."is-number-object-1.0.6" 73771 + sources."is-regex-1.1.4" 73917 73772 sources."is-stream-1.1.0" 73918 - sources."is-string-1.0.6" 73773 + sources."is-string-1.0.7" 73919 73774 sources."is-symbol-1.0.4" 73920 73775 sources."is-wsl-2.2.0" 73921 73776 sources."isarray-1.0.0" ··· 74222 74077 sources."domutils-1.7.0" 74223 74078 sources."dot-prop-5.3.0" 74224 74079 sources."duplexer3-0.1.4" 74225 - sources."electron-to-chromium-1.3.796" 74080 + sources."electron-to-chromium-1.3.799" 74226 74081 sources."emoji-regex-8.0.0" 74227 74082 sources."end-of-stream-1.4.4" 74228 74083 sources."enquirer-2.3.6" ··· 74372 74227 sources."globjoin-0.1.4" 74373 74228 sources."gonzales-pe-4.3.0" 74374 74229 sources."got-6.7.1" 74375 - sources."graceful-fs-4.2.6" 74230 + sources."graceful-fs-4.2.8" 74376 74231 sources."has-1.0.3" 74377 74232 (sources."has-ansi-2.0.0" // { 74378 74233 dependencies = [ ··· 75027 74882 sha512 = "0CoePhEzGBHBin0mGtGhUV+hkg6Uh8+Qz0tN4a1A+vqiip/juRRmokB/yxMyFbhUftDXmkiF/JmrSC04uYCTAw=="; 75028 74883 }; 75029 74884 dependencies = [ 75030 - sources."pyright-1.1.159" 74885 + sources."pyright-1.1.160" 75031 74886 ]; 75032 74887 buildInputs = globalBuildInputs; 75033 74888 meta = { ··· 75271 75126 sources."domelementtype-1.3.1" 75272 75127 sources."domhandler-2.4.2" 75273 75128 sources."domutils-1.7.0" 75274 - sources."electron-to-chromium-1.3.796" 75129 + sources."electron-to-chromium-1.3.799" 75275 75130 sources."emoji-regex-8.0.0" 75276 75131 sources."entities-1.1.2" 75277 75132 sources."error-ex-1.3.2" ··· 76058 75913 }; 76059 75914 dependencies = [ 76060 75915 sources."@dabh/diagnostics-2.0.2" 76061 - sources."async-3.2.0" 75916 + sources."async-3.2.1" 76062 75917 sources."bintrees-1.0.1" 76063 75918 sources."color-3.0.0" 76064 75919 sources."color-convert-1.9.3" ··· 76343 76198 sources."get-stream-4.1.0" 76344 76199 ]; 76345 76200 }) 76346 - sources."graceful-fs-4.2.6" 76201 + sources."graceful-fs-4.2.8" 76347 76202 sources."har-schema-2.0.0" 76348 76203 sources."har-validator-5.1.5" 76349 76204 sources."has-1.0.3" ··· 76627 76482 sources."shebang-regex-3.0.0" 76628 76483 sources."signal-exit-3.0.3" 76629 76484 sources."slash-3.0.0" 76630 - sources."smart-buffer-4.1.0" 76485 + sources."smart-buffer-4.2.0" 76631 76486 sources."socks-2.6.1" 76632 76487 sources."socks-proxy-agent-5.0.1" 76633 76488 sources."spdx-correct-3.1.1" ··· 76738 76593 sources."@types/glob-7.1.4" 76739 76594 sources."@types/minimatch-3.0.5" 76740 76595 sources."@types/minimist-1.2.2" 76741 - sources."@types/node-16.4.12" 76596 + sources."@types/node-16.4.13" 76742 76597 sources."@types/normalize-package-data-2.4.1" 76743 76598 sources."aggregate-error-3.1.0" 76744 76599 sources."ansi-styles-3.2.1" ··· 76855 76710 }) 76856 76711 sources."glob-to-regexp-0.3.0" 76857 76712 sources."globby-9.2.0" 76858 - sources."graceful-fs-4.2.6" 76713 + sources."graceful-fs-4.2.8" 76859 76714 sources."hard-rejection-2.1.0" 76860 76715 sources."has-1.0.3" 76861 76716 sources."has-flag-3.0.0" ··· 77109 76964 sources."@cycle/run-3.4.0" 77110 76965 sources."@cycle/time-0.10.1" 77111 76966 sources."@types/cookiejar-2.1.2" 77112 - sources."@types/node-16.4.12" 76967 + sources."@types/node-16.4.13" 77113 76968 sources."@types/superagent-3.8.2" 77114 76969 sources."ansi-escapes-3.2.0" 77115 76970 sources."ansi-regex-2.1.1" ··· 77288 77143 sources."fstream-1.0.12" 77289 77144 sources."fstream-ignore-1.0.5" 77290 77145 sources."glob-7.1.7" 77291 - sources."graceful-fs-4.2.6" 77146 + sources."graceful-fs-4.2.8" 77292 77147 sources."has-flag-4.0.0" 77293 77148 sources."hyperquest-2.1.3" 77294 77149 sources."inflight-1.0.6" ··· 77643 77498 sources."global-4.4.0" 77644 77499 sources."global-dirs-0.1.1" 77645 77500 sources."got-6.7.1" 77646 - sources."graceful-fs-4.2.6" 77501 + sources."graceful-fs-4.2.8" 77647 77502 sources."har-schema-2.0.0" 77648 77503 sources."har-validator-5.1.5" 77649 77504 sources."has-flag-3.0.0" 77505 + sources."has-symbols-1.0.2" 77506 + sources."has-tostringtag-1.0.0" 77650 77507 sources."has-value-1.0.0" 77651 77508 (sources."has-values-1.0.0" // { 77652 77509 dependencies = [ ··· 77704 77561 sources."is-redirect-1.0.0" 77705 77562 sources."is-retry-allowed-1.2.0" 77706 77563 sources."is-stream-1.1.0" 77707 - sources."is-string-1.0.6" 77564 + sources."is-string-1.0.7" 77708 77565 sources."is-typedarray-1.0.0" 77709 77566 sources."is-windows-1.0.2" 77710 77567 sources."isarray-1.0.0" ··· 78061 77918 bypassCache = true; 78062 77919 reconstructLock = true; 78063 77920 }; 77921 + degit = nodeEnv.buildNodePackage { 77922 + name = "degit"; 77923 + packageName = "degit"; 77924 + version = "2.8.4"; 77925 + src = fetchurl { 77926 + url = "https://registry.npmjs.org/degit/-/degit-2.8.4.tgz"; 77927 + sha512 = "vqYuzmSA5I50J882jd+AbAhQtgK6bdKUJIex1JNfEUPENCgYsxugzKVZlFyMwV4i06MmnV47/Iqi5Io86zf3Ng=="; 77928 + }; 77929 + buildInputs = globalBuildInputs; 77930 + meta = { 77931 + description = "Straightforward project scaffolding"; 77932 + homepage = "https://github.com/Rich-Harris/degit#readme"; 77933 + license = "MIT"; 77934 + }; 77935 + production = true; 77936 + bypassCache = true; 77937 + reconstructLock = true; 77938 + }; 78064 77939 dhcp = nodeEnv.buildNodePackage { 78065 77940 name = "dhcp"; 78066 77941 packageName = "dhcp"; ··· 78113 77988 sources."glob-7.1.7" 78114 77989 sources."glob-parent-5.1.2" 78115 77990 sources."globby-11.0.4" 78116 - sources."graceful-fs-4.2.6" 77991 + sources."graceful-fs-4.2.8" 78117 77992 sources."ignore-5.1.8" 78118 77993 sources."indent-string-4.0.0" 78119 77994 sources."inflight-1.0.6" ··· 78220 78095 elasticdump = nodeEnv.buildNodePackage { 78221 78096 name = "elasticdump"; 78222 78097 packageName = "elasticdump"; 78223 - version = "6.72.0"; 78098 + version = "6.73.0"; 78224 78099 src = fetchurl { 78225 - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.72.0.tgz"; 78226 - sha512 = "sOsFzBwwUkJkP6EZ8cOwz1eFva5sTf6ojhOgl2gplRs7+PkuqGyng/4TnKL3KIFqwE5lFsA66sIh8UQU4Dkecw=="; 78100 + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.73.0.tgz"; 78101 + sha512 = "9QWk+d0xuT6W+AEvr06Zoh1rllXGkDMUH9LxFtey3Abv5E0M2qSvdspGvqb4d6Fw7BZiThX4tDabT6VNpxqftQ=="; 78227 78102 }; 78228 78103 dependencies = [ 78229 78104 sources."@fast-csv/format-4.3.5" ··· 78427 78302 sources."@types/http-cache-semantics-4.0.1" 78428 78303 sources."@types/keyv-3.1.2" 78429 78304 sources."@types/minimatch-3.0.5" 78430 - sources."@types/node-16.4.12" 78305 + sources."@types/node-16.4.13" 78431 78306 sources."@types/responselike-1.0.0" 78432 78307 sources."@types/yauzl-2.9.2" 78433 78308 sources."abbrev-1.1.1" ··· 78540 78415 sources."detect-node-2.1.0" 78541 78416 sources."duplexer3-0.1.4" 78542 78417 sources."ecc-jsbn-0.1.2" 78543 - (sources."electron-notarize-1.0.1" // { 78418 + (sources."electron-notarize-1.1.0" // { 78544 78419 dependencies = [ 78545 78420 sources."fs-extra-9.1.0" 78546 78421 ]; ··· 78652 78527 sources."global-tunnel-ng-2.7.1" 78653 78528 sources."globalthis-1.0.2" 78654 78529 sources."got-11.8.2" 78655 - sources."graceful-fs-4.2.6" 78530 + sources."graceful-fs-4.2.8" 78656 78531 sources."har-schema-2.0.0" 78657 78532 sources."har-validator-5.1.5" 78658 78533 sources."has-1.0.3" ··· 79080 78955 sources."@types/http-cache-semantics-4.0.1" 79081 78956 sources."@types/keyv-3.1.2" 79082 78957 sources."@types/minimist-1.2.2" 79083 - sources."@types/node-16.4.12" 78958 + sources."@types/node-16.4.13" 79084 78959 sources."@types/normalize-package-data-2.4.1" 79085 78960 sources."@types/responselike-1.0.0" 79086 78961 sources."@types/yoga-layout-1.9.2" ··· 79152 79027 }) 79153 79028 sources."defer-to-connect-2.0.1" 79154 79029 sources."dot-prop-5.3.0" 79155 - sources."electron-to-chromium-1.3.796" 79030 + sources."electron-to-chromium-1.3.799" 79156 79031 sources."emoji-regex-8.0.0" 79157 79032 sources."emojilib-2.4.0" 79158 79033 sources."end-of-stream-1.4.4" ··· 80046 79921 sources."globby-10.0.2" 80047 79922 sources."glogg-1.0.2" 80048 79923 sources."got-9.6.0" 80049 - sources."graceful-fs-4.2.6" 79924 + sources."graceful-fs-4.2.8" 80050 79925 sources."gulp-4.0.2" 80051 79926 (sources."gulp-clean-css-4.3.0" // { 80052 79927 dependencies = [ ··· 81433 81308 expo-cli = nodeEnv.buildNodePackage { 81434 81309 name = "expo-cli"; 81435 81310 packageName = "expo-cli"; 81436 - version = "4.9.1"; 81311 + version = "4.10.0"; 81437 81312 src = fetchurl { 81438 - url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.9.1.tgz"; 81439 - sha512 = "73+efSO3vFiqQ/6jwfqPti/k2twvvS1u1v0iEoN0ylXpgFxTWO8DylTJZBqr0YdkpzljG7+yWZDrzdTspXLKww=="; 81313 + url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.10.0.tgz"; 81314 + sha512 = "NHQQBPygck2bQUo5nvCB52BHa+JsjxSlXvdQ39lvonJwvbOdn7IACxlqrkmaxvjfopCLBiBADj3yk1uSYh2cnQ=="; 81440 81315 }; 81441 81316 dependencies = [ 81442 81317 sources."@babel/code-frame-7.10.4" ··· 81473 81348 sources."@babel/helper-module-transforms-7.15.0" 81474 81349 sources."@babel/helper-optimise-call-expression-7.14.5" 81475 81350 sources."@babel/helper-plugin-utils-7.14.5" 81476 - sources."@babel/helper-remap-async-to-generator-7.14.5" 81477 81351 sources."@babel/helper-replace-supers-7.15.0" 81478 81352 sources."@babel/helper-simple-access-7.14.8" 81479 81353 sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 81480 81354 sources."@babel/helper-split-export-declaration-7.14.5" 81481 81355 sources."@babel/helper-validator-identifier-7.14.9" 81482 81356 sources."@babel/helper-validator-option-7.14.5" 81483 - sources."@babel/helper-wrap-function-7.14.5" 81484 81357 sources."@babel/helpers-7.14.8" 81485 81358 (sources."@babel/highlight-7.14.5" // { 81486 81359 dependencies = [ ··· 81488 81361 ]; 81489 81362 }) 81490 81363 sources."@babel/parser-7.15.0" 81491 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" 81492 - sources."@babel/plugin-proposal-async-generator-functions-7.14.9" 81493 81364 sources."@babel/plugin-proposal-class-properties-7.14.5" 81494 - sources."@babel/plugin-proposal-class-static-block-7.14.5" 81495 - sources."@babel/plugin-proposal-dynamic-import-7.14.5" 81496 81365 sources."@babel/plugin-proposal-export-default-from-7.14.5" 81497 - sources."@babel/plugin-proposal-export-namespace-from-7.14.5" 81498 - sources."@babel/plugin-proposal-json-strings-7.14.5" 81499 - sources."@babel/plugin-proposal-logical-assignment-operators-7.14.5" 81500 81366 sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 81501 - sources."@babel/plugin-proposal-numeric-separator-7.14.5" 81502 81367 sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 81503 81368 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 81504 81369 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 81505 - sources."@babel/plugin-proposal-private-methods-7.14.5" 81506 - sources."@babel/plugin-proposal-private-property-in-object-7.14.5" 81507 - sources."@babel/plugin-proposal-unicode-property-regex-7.14.5" 81508 - sources."@babel/plugin-syntax-async-generators-7.8.4" 81509 81370 sources."@babel/plugin-syntax-class-properties-7.12.13" 81510 - sources."@babel/plugin-syntax-class-static-block-7.14.5" 81511 81371 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 81512 81372 sources."@babel/plugin-syntax-export-default-from-7.14.5" 81513 - sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 81514 81373 sources."@babel/plugin-syntax-flow-7.14.5" 81515 - sources."@babel/plugin-syntax-json-strings-7.8.3" 81516 81374 sources."@babel/plugin-syntax-jsx-7.14.5" 81517 - sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" 81518 81375 sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 81519 - sources."@babel/plugin-syntax-numeric-separator-7.10.4" 81520 81376 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 81521 81377 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 81522 81378 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 81523 - sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 81524 - sources."@babel/plugin-syntax-top-level-await-7.14.5" 81525 81379 sources."@babel/plugin-syntax-typescript-7.14.5" 81526 81380 sources."@babel/plugin-transform-arrow-functions-7.14.5" 81527 - sources."@babel/plugin-transform-async-to-generator-7.14.5" 81528 81381 sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 81529 81382 sources."@babel/plugin-transform-block-scoping-7.14.5" 81530 81383 sources."@babel/plugin-transform-classes-7.14.9" 81531 81384 sources."@babel/plugin-transform-computed-properties-7.14.5" 81532 81385 sources."@babel/plugin-transform-destructuring-7.14.7" 81533 - sources."@babel/plugin-transform-dotall-regex-7.14.5" 81534 - sources."@babel/plugin-transform-duplicate-keys-7.14.5" 81535 81386 sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 81536 81387 sources."@babel/plugin-transform-flow-strip-types-7.14.5" 81537 81388 sources."@babel/plugin-transform-for-of-7.14.5" 81538 81389 sources."@babel/plugin-transform-function-name-7.14.5" 81539 81390 sources."@babel/plugin-transform-literals-7.14.5" 81540 81391 sources."@babel/plugin-transform-member-expression-literals-7.14.5" 81541 - sources."@babel/plugin-transform-modules-amd-7.14.5" 81542 81392 sources."@babel/plugin-transform-modules-commonjs-7.15.0" 81543 - sources."@babel/plugin-transform-modules-systemjs-7.14.5" 81544 - sources."@babel/plugin-transform-modules-umd-7.14.5" 81545 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9" 81546 - sources."@babel/plugin-transform-new-target-7.14.5" 81547 81393 sources."@babel/plugin-transform-object-assign-7.14.5" 81548 81394 sources."@babel/plugin-transform-object-super-7.14.5" 81549 81395 sources."@babel/plugin-transform-parameters-7.14.5" ··· 81553 81399 sources."@babel/plugin-transform-react-jsx-self-7.14.9" 81554 81400 sources."@babel/plugin-transform-react-jsx-source-7.14.5" 81555 81401 sources."@babel/plugin-transform-regenerator-7.14.5" 81556 - sources."@babel/plugin-transform-reserved-words-7.14.5" 81557 81402 (sources."@babel/plugin-transform-runtime-7.15.0" // { 81558 81403 dependencies = [ 81559 81404 sources."semver-6.3.0" ··· 81563 81408 sources."@babel/plugin-transform-spread-7.14.6" 81564 81409 sources."@babel/plugin-transform-sticky-regex-7.14.5" 81565 81410 sources."@babel/plugin-transform-template-literals-7.14.5" 81566 - sources."@babel/plugin-transform-typeof-symbol-7.14.5" 81567 81411 sources."@babel/plugin-transform-typescript-7.15.0" 81568 - sources."@babel/plugin-transform-unicode-escapes-7.14.5" 81569 81412 sources."@babel/plugin-transform-unicode-regex-7.14.5" 81570 - (sources."@babel/preset-env-7.15.0" // { 81571 - dependencies = [ 81572 - sources."semver-6.3.0" 81573 - ]; 81574 - }) 81575 - sources."@babel/preset-modules-0.1.4" 81576 - (sources."@babel/runtime-7.14.8" // { 81577 - dependencies = [ 81578 - sources."regenerator-runtime-0.13.9" 81579 - ]; 81580 - }) 81413 + sources."@babel/runtime-7.9.0" 81581 81414 (sources."@babel/template-7.14.5" // { 81582 81415 dependencies = [ 81583 81416 sources."@babel/code-frame-7.14.5" ··· 81591 81424 sources."@babel/types-7.15.0" 81592 81425 sources."@expo/apple-utils-0.0.0-alpha.20" 81593 81426 sources."@expo/bunyan-4.0.0" 81594 - sources."@expo/config-5.0.6" 81595 - (sources."@expo/config-plugins-3.0.6" // { 81427 + sources."@expo/config-5.0.7" 81428 + (sources."@expo/config-plugins-3.0.7" // { 81596 81429 dependencies = [ 81597 81430 sources."semver-7.3.5" 81598 81431 ]; 81599 81432 }) 81600 81433 sources."@expo/config-types-42.0.0" 81601 - (sources."@expo/dev-server-0.1.81" // { 81434 + (sources."@expo/dev-server-0.1.82" // { 81602 81435 dependencies = [ 81603 81436 sources."body-parser-1.19.0" 81604 81437 sources."bytes-3.1.0" ··· 81615 81448 sources."temp-dir-2.0.0" 81616 81449 ]; 81617 81450 }) 81618 - sources."@expo/dev-tools-0.13.112" 81451 + sources."@expo/dev-tools-0.13.113" 81619 81452 (sources."@expo/devcert-1.0.0" // { 81620 81453 dependencies = [ 81621 81454 sources."debug-3.2.7" ··· 81629 81462 sources."tempy-0.3.0" 81630 81463 ]; 81631 81464 }) 81632 - sources."@expo/json-file-8.2.32" 81633 - sources."@expo/metro-config-0.1.81" 81465 + sources."@expo/json-file-8.2.33" 81466 + sources."@expo/metro-config-0.1.82" 81634 81467 sources."@expo/osascript-2.0.30" 81635 - (sources."@expo/package-manager-0.0.45" // { 81468 + (sources."@expo/package-manager-0.0.46" // { 81636 81469 dependencies = [ 81637 81470 sources."npm-package-arg-7.0.0" 81638 81471 sources."rimraf-3.0.2" ··· 81645 81478 sources."xmldom-0.5.0" 81646 81479 ]; 81647 81480 }) 81648 - sources."@expo/prebuild-config-2.0.6" 81481 + sources."@expo/prebuild-config-2.0.7" 81649 81482 sources."@expo/results-1.0.0" 81650 81483 (sources."@expo/schemer-1.3.31" // { 81651 81484 dependencies = [ ··· 81656 81489 }) 81657 81490 sources."@expo/sdk-runtime-versions-1.0.0" 81658 81491 sources."@expo/spawn-async-1.5.0" 81659 - (sources."@expo/webpack-config-0.13.3" // { 81492 + (sources."@expo/webpack-config-0.14.0" // { 81660 81493 dependencies = [ 81661 81494 (sources."@babel/core-7.9.0" // { 81662 81495 dependencies = [ 81663 81496 sources."semver-5.7.1" 81664 81497 ]; 81665 81498 }) 81666 - sources."@babel/runtime-7.9.0" 81667 81499 sources."json5-2.2.0" 81668 - sources."regenerator-runtime-0.13.9" 81669 81500 ]; 81670 81501 }) 81671 81502 (sources."@expo/xcpretty-3.1.4" // { ··· 81673 81504 sources."js-yaml-4.1.0" 81674 81505 ]; 81675 81506 }) 81676 - sources."@hapi/address-2.1.4" 81677 - sources."@hapi/formula-1.2.0" 81678 81507 sources."@hapi/hoek-9.2.0" 81679 - (sources."@hapi/joi-16.1.8" // { 81680 - dependencies = [ 81681 - sources."@hapi/hoek-8.5.1" 81682 - sources."@hapi/topo-3.1.6" 81683 - ]; 81684 - }) 81685 - sources."@hapi/pinpoint-1.0.2" 81686 81508 sources."@hapi/topo-5.1.0" 81687 81509 sources."@jest/types-26.6.2" 81688 81510 sources."@nodelib/fs.scandir-2.1.5" ··· 81726 81548 sources."supports-color-7.2.0" 81727 81549 ]; 81728 81550 }) 81729 - sources."@rollup/plugin-babel-5.3.0" 81730 - sources."@rollup/plugin-node-resolve-11.2.1" 81731 - sources."@rollup/plugin-replace-2.4.2" 81732 - sources."@rollup/pluginutils-3.1.0" 81733 81551 sources."@segment/loosely-validate-event-2.0.0" 81734 81552 sources."@sideway/address-4.1.2" 81735 81553 sources."@sideway/formula-3.0.0" 81736 81554 sources."@sideway/pinpoint-2.0.0" 81737 81555 sources."@sindresorhus/is-4.0.1" 81738 - sources."@surma/rollup-plugin-off-main-thread-1.4.2" 81739 81556 sources."@szmarczak/http-timer-4.0.6" 81740 81557 sources."@tootallnate/once-1.1.2" 81741 81558 sources."@types/cacheable-request-6.0.2" 81742 - sources."@types/estree-0.0.39" 81743 81559 sources."@types/glob-7.1.4" 81744 81560 sources."@types/html-minifier-terser-5.1.2" 81745 81561 sources."@types/http-cache-semantics-4.0.1" ··· 81751 81567 sources."@types/minimatch-3.0.5" 81752 81568 sources."@types/node-9.6.61" 81753 81569 sources."@types/q-1.5.5" 81754 - sources."@types/resolve-1.17.1" 81755 81570 sources."@types/responselike-1.0.0" 81756 81571 sources."@types/retry-0.12.1" 81757 81572 sources."@types/source-list-map-0.1.2" ··· 81766 81581 sources."source-map-0.6.1" 81767 81582 ]; 81768 81583 }) 81769 - (sources."@types/webpack-sources-2.1.1" // { 81584 + (sources."@types/webpack-sources-3.2.0" // { 81770 81585 dependencies = [ 81771 81586 sources."source-map-0.7.3" 81772 81587 ]; ··· 81884 81699 sources."babel-plugin-polyfill-regenerator-0.2.2" 81885 81700 sources."babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0" 81886 81701 sources."babel-preset-fbjs-3.4.0" 81887 - sources."babel-runtime-6.26.0" 81888 81702 sources."backo2-1.0.2" 81889 81703 sources."balanced-match-1.0.2" 81890 81704 (sources."base-0.11.2" // { ··· 81941 81755 sources."buffer-from-1.1.2" 81942 81756 sources."buffer-indexof-1.1.1" 81943 81757 sources."buffer-xor-1.0.3" 81944 - sources."builtin-modules-3.2.0" 81945 81758 sources."builtin-status-codes-3.0.0" 81946 81759 sources."builtins-1.0.3" 81947 81760 sources."bytes-3.0.0" ··· 82048 81861 sources."combined-stream-1.0.8" 82049 81862 sources."command-exists-1.2.9" 82050 81863 sources."commander-2.17.1" 82051 - sources."common-tags-1.8.0" 82052 81864 sources."commondir-1.0.1" 82053 81865 sources."component-emitter-1.3.0" 82054 81866 sources."component-type-1.2.1" ··· 82100 81912 sources."semver-6.3.0" 82101 81913 ]; 82102 81914 }) 82103 - sources."core-js-2.6.12" 82104 81915 (sources."core-js-compat-3.16.0" // { 82105 81916 dependencies = [ 82106 81917 sources."browserslist-4.16.7" ··· 82234 82045 sources."duplexify-3.7.1" 82235 82046 sources."ecc-jsbn-0.1.2" 82236 82047 sources."ee-first-1.1.1" 82237 - sources."ejs-2.7.4" 82238 - sources."electron-to-chromium-1.3.796" 82048 + sources."electron-to-chromium-1.3.799" 82239 82049 (sources."elliptic-6.5.4" // { 82240 82050 dependencies = [ 82241 82051 sources."bn.js-4.12.0" ··· 82277 82087 ]; 82278 82088 }) 82279 82089 sources."estraverse-4.3.0" 82280 - sources."estree-walker-1.0.1" 82281 - sources."esutils-2.0.3" 82282 82090 sources."etag-1.8.1" 82283 82091 sources."eventemitter3-2.0.3" 82284 82092 sources."events-3.3.0" ··· 82311 82119 sources."ms-2.0.0" 82312 82120 ]; 82313 82121 }) 82314 - (sources."expo-pwa-0.0.91" // { 82122 + (sources."expo-pwa-0.0.92" // { 82315 82123 dependencies = [ 82316 82124 sources."commander-2.20.0" 82317 82125 ]; ··· 82409 82217 sources."gensync-1.0.0-beta.2" 82410 82218 sources."get-caller-file-2.0.5" 82411 82219 sources."get-intrinsic-1.1.1" 82412 - sources."get-own-enumerable-property-symbols-3.0.2" 82413 82220 sources."get-port-3.2.0" 82414 82221 sources."get-stream-5.2.0" 82415 82222 sources."get-value-2.0.6" ··· 82422 82229 sources."globals-11.12.0" 82423 82230 sources."globby-11.0.1" 82424 82231 sources."got-11.8.2" 82425 - sources."graceful-fs-4.2.6" 82232 + sources."graceful-fs-4.2.8" 82426 82233 sources."graphql-0.13.2" 82427 82234 (sources."graphql-tools-3.0.0" // { 82428 82235 dependencies = [ ··· 82437 82244 sources."has-bigints-1.0.1" 82438 82245 sources."has-flag-3.0.0" 82439 82246 sources."has-symbols-1.0.2" 82247 + sources."has-tostringtag-1.0.0" 82440 82248 sources."has-unicode-2.0.1" 82441 82249 sources."has-value-1.0.0" 82442 82250 (sources."has-values-1.0.0" // { ··· 82535 82343 sources."ipaddr.js-1.9.1" 82536 82344 sources."is-absolute-url-2.1.0" 82537 82345 sources."is-accessor-descriptor-1.0.0" 82538 - sources."is-arguments-1.1.0" 82346 + sources."is-arguments-1.1.1" 82539 82347 sources."is-arrayish-0.2.1" 82540 - sources."is-bigint-1.0.2" 82348 + sources."is-bigint-1.0.3" 82541 82349 sources."is-binary-path-2.1.0" 82542 - sources."is-boolean-object-1.1.1" 82350 + sources."is-boolean-object-1.1.2" 82543 82351 sources."is-buffer-1.1.6" 82544 - sources."is-callable-1.2.3" 82352 + sources."is-callable-1.2.4" 82545 82353 sources."is-color-stop-1.1.0" 82546 82354 sources."is-core-module-2.5.0" 82547 82355 sources."is-data-descriptor-1.0.0" 82548 - sources."is-date-object-1.0.4" 82356 + sources."is-date-object-1.0.5" 82549 82357 sources."is-descriptor-1.0.2" 82550 82358 sources."is-directory-0.3.1" 82551 82359 sources."is-docker-2.2.1" ··· 82560 82368 ]; 82561 82369 }) 82562 82370 sources."is-lambda-1.0.1" 82563 - sources."is-module-1.0.0" 82564 82371 sources."is-negative-zero-2.0.1" 82565 82372 sources."is-number-7.0.0" 82566 - sources."is-number-object-1.0.5" 82373 + sources."is-number-object-1.0.6" 82567 82374 sources."is-obj-2.0.0" 82568 82375 sources."is-path-cwd-2.2.0" 82569 82376 (sources."is-path-in-cwd-2.1.0" // { ··· 82597 82404 sources."responselike-1.0.2" 82598 82405 ]; 82599 82406 }) 82600 - sources."is-regex-1.1.3" 82601 - sources."is-regexp-1.0.0" 82407 + sources."is-regex-1.1.4" 82602 82408 sources."is-resolvable-1.1.0" 82603 82409 sources."is-retry-allowed-1.2.0" 82604 82410 sources."is-root-2.1.0" 82605 82411 sources."is-stream-2.0.1" 82606 - sources."is-string-1.0.6" 82412 + sources."is-string-1.0.7" 82607 82413 sources."is-symbol-1.0.4" 82608 82414 sources."is-typedarray-1.0.0" 82609 82415 sources."is-valid-path-0.1.1" ··· 82675 82481 sources."lodash.isobject-3.0.2" 82676 82482 sources."lodash.isstring-4.0.1" 82677 82483 sources."lodash.memoize-4.1.2" 82678 - sources."lodash.sortby-4.7.0" 82679 82484 sources."lodash.uniq-4.5.0" 82680 82485 (sources."log-symbols-2.2.0" // { 82681 82486 dependencies = [ ··· 82691 82496 }) 82692 82497 sources."lowercase-keys-2.0.0" 82693 82498 sources."lru-cache-6.0.0" 82694 - sources."magic-string-0.25.7" 82695 82499 (sources."make-dir-2.1.0" // { 82696 82500 dependencies = [ 82697 82501 sources."semver-5.7.1" ··· 83232 83036 sources."recursive-readdir-2.2.2" 83233 83037 sources."regenerate-1.4.2" 83234 83038 sources."regenerate-unicode-properties-8.2.0" 83235 - sources."regenerator-runtime-0.11.1" 83039 + sources."regenerator-runtime-0.13.9" 83236 83040 sources."regenerator-transform-0.14.5" 83237 83041 sources."regex-not-1.0.2" 83238 83042 sources."regexp.prototype.flags-1.3.1" ··· 83295 83099 ]; 83296 83100 }) 83297 83101 sources."ripemd160-2.0.2" 83298 - sources."rollup-2.56.0" 83299 - (sources."rollup-plugin-terser-7.0.2" // { 83300 - dependencies = [ 83301 - sources."commander-2.20.3" 83302 - sources."source-map-0.7.3" 83303 - (sources."source-map-support-0.5.19" // { 83304 - dependencies = [ 83305 - sources."source-map-0.6.1" 83306 - ]; 83307 - }) 83308 - sources."terser-5.7.1" 83309 - ]; 83310 - }) 83311 83102 sources."router-ips-1.0.0" 83312 83103 sources."run-parallel-1.2.0" 83313 83104 sources."run-queue-1.0.3" ··· 83362 83153 sources."sisteransi-1.0.5" 83363 83154 sources."slash-3.0.0" 83364 83155 sources."slugify-1.6.0" 83365 - sources."smart-buffer-4.1.0" 83156 + sources."smart-buffer-4.2.0" 83366 83157 (sources."snapdragon-0.8.2" // { 83367 83158 dependencies = [ 83368 83159 sources."debug-2.6.9" ··· 83411 83202 sources."source-map-resolve-0.5.3" 83412 83203 sources."source-map-support-0.4.18" 83413 83204 sources."source-map-url-0.4.1" 83414 - sources."sourcemap-codec-1.4.8" 83415 83205 sources."spdy-4.0.2" 83416 83206 (sources."spdy-transport-3.0.0" // { 83417 83207 dependencies = [ ··· 83468 83258 sources."string.prototype.trimend-1.0.4" 83469 83259 sources."string.prototype.trimstart-1.0.4" 83470 83260 sources."string_decoder-1.1.1" 83471 - (sources."stringify-object-3.3.0" // { 83472 - dependencies = [ 83473 - sources."is-obj-1.0.1" 83474 - ]; 83475 - }) 83476 83261 sources."strip-ansi-6.0.0" 83477 - sources."strip-comments-2.0.1" 83478 83262 sources."strip-eof-1.0.0" 83479 83263 sources."strip-json-comments-2.0.1" 83480 83264 sources."style-loader-1.2.1" ··· 83575 83359 sources."to-regex-range-5.0.1" 83576 83360 sources."toidentifier-1.0.0" 83577 83361 sources."tough-cookie-2.5.0" 83578 - sources."tr46-1.0.1" 83579 83362 sources."traverse-0.6.6" 83580 83363 sources."tree-kill-1.2.2" 83581 83364 sources."ts-interface-checker-0.1.13" ··· 83677 83460 }) 83678 83461 sources."wbuf-1.7.3" 83679 83462 sources."wcwidth-1.0.1" 83680 - sources."webidl-conversions-4.0.2" 83681 83463 (sources."webpack-4.43.0" // { 83682 83464 dependencies = [ 83683 83465 sources."braces-2.3.2" ··· 83805 83587 }) 83806 83588 sources."websocket-driver-0.6.5" 83807 83589 sources."websocket-extensions-0.1.4" 83808 - sources."whatwg-url-7.1.0" 83809 83590 sources."which-1.3.1" 83810 83591 sources."which-boxed-primitive-1.0.2" 83811 83592 sources."which-module-2.0.0" ··· 83818 83599 }) 83819 83600 sources."widest-line-3.1.0" 83820 83601 sources."with-open-file-0.1.7" 83821 - sources."workbox-background-sync-6.1.5" 83822 - sources."workbox-broadcast-update-6.1.5" 83823 - (sources."workbox-build-6.1.5" // { 83824 - dependencies = [ 83825 - sources."crypto-random-string-2.0.0" 83826 - sources."fs-extra-9.1.0" 83827 - sources."source-map-0.8.0-beta.0" 83828 - sources."temp-dir-2.0.0" 83829 - sources."tempy-0.6.0" 83830 - sources."type-fest-0.16.0" 83831 - sources."unique-string-2.0.0" 83832 - sources."universalify-2.0.0" 83833 - ]; 83834 - }) 83835 - sources."workbox-cacheable-response-6.1.5" 83836 - sources."workbox-core-6.1.5" 83837 - sources."workbox-expiration-6.1.5" 83838 - sources."workbox-google-analytics-6.1.5" 83839 - sources."workbox-navigation-preload-6.1.5" 83840 - sources."workbox-precaching-6.1.5" 83841 - sources."workbox-range-requests-6.1.5" 83842 - sources."workbox-recipes-6.1.5" 83843 - sources."workbox-routing-6.1.5" 83844 - sources."workbox-strategies-6.1.5" 83845 - sources."workbox-streams-6.1.5" 83846 - sources."workbox-sw-6.1.5" 83847 - sources."workbox-webpack-plugin-6.1.5" 83848 - sources."workbox-window-6.1.5" 83849 83602 sources."worker-farm-1.7.0" 83850 83603 sources."worker-rpc-0.1.1" 83851 83604 (sources."wrap-ansi-7.0.0" // { ··· 83863 83616 sources."uuid-7.0.3" 83864 83617 ]; 83865 83618 }) 83866 - (sources."xdl-59.0.52" // { 83619 + (sources."xdl-59.0.53" // { 83867 83620 dependencies = [ 83868 83621 sources."chownr-1.1.4" 83869 83622 sources."fs-minipass-1.2.7" ··· 83871 83624 sources."minizlib-1.3.3" 83872 83625 sources."p-map-3.0.0" 83873 83626 sources."tar-4.4.6" 83874 - sources."uuid-3.3.2" 83875 83627 sources."yallist-3.1.1" 83876 83628 ]; 83877 83629 }) ··· 83957 83709 sources."@babel/traverse-7.15.0" 83958 83710 sources."@babel/types-7.15.0" 83959 83711 sources."@types/minimist-1.2.2" 83960 - sources."@types/node-16.4.12" 83712 + sources."@types/node-16.4.13" 83961 83713 sources."@types/normalize-package-data-2.4.1" 83962 83714 sources."@types/yauzl-2.9.2" 83963 83715 sources."@types/yoga-layout-1.9.2" ··· 84009 83761 }) 84010 83762 sources."delay-5.0.0" 84011 83763 sources."devtools-protocol-0.0.869402" 84012 - sources."electron-to-chromium-1.3.796" 83764 + sources."electron-to-chromium-1.3.799" 84013 83765 sources."emoji-regex-8.0.0" 84014 83766 sources."end-of-stream-1.4.4" 84015 83767 sources."error-ex-1.3.2" ··· 84227 83979 sources."@nodelib/fs.walk-1.2.8" 84228 83980 (sources."@oclif/command-1.8.0" // { 84229 83981 dependencies = [ 84230 - sources."@oclif/plugin-help-3.2.2" 84231 - sources."ansi-regex-3.0.0" 84232 - sources."ansi-styles-3.2.1" 84233 - sources."chalk-4.1.2" 84234 - sources."color-convert-1.9.3" 84235 - sources."color-name-1.1.3" 84236 - sources."has-flag-4.0.0" 84237 - sources."is-fullwidth-code-point-2.0.0" 84238 - sources."string-width-2.1.1" 84239 - sources."strip-ansi-4.0.0" 84240 - sources."supports-color-7.2.0" 84241 - sources."wrap-ansi-4.0.0" 83982 + sources."@oclif/plugin-help-3.3.0" 84242 83983 ]; 84243 83984 }) 84244 83985 (sources."@oclif/config-1.17.0" // { ··· 84247 83988 sources."tslib-2.3.0" 84248 83989 ]; 84249 83990 }) 83991 + (sources."@oclif/core-0.5.28" // { 83992 + dependencies = [ 83993 + sources."chalk-4.1.2" 83994 + (sources."cli-ux-5.6.3" // { 83995 + dependencies = [ 83996 + sources."fs-extra-8.1.0" 83997 + sources."supports-color-8.1.1" 83998 + ]; 83999 + }) 84000 + sources."fs-extra-9.1.0" 84001 + sources."globby-11.0.4" 84002 + sources."has-flag-4.0.0" 84003 + sources."jsonfile-6.1.0" 84004 + sources."supports-color-7.2.0" 84005 + sources."tslib-2.3.0" 84006 + sources."universalify-2.0.0" 84007 + ]; 84008 + }) 84250 84009 sources."@oclif/errors-1.3.5" 84251 84010 sources."@oclif/linewrap-1.0.0" 84252 84011 sources."@oclif/parser-3.8.5" ··· 84280 84039 sources."strip-ansi-5.2.0" 84281 84040 ]; 84282 84041 }) 84283 - sources."ansi-escapes-3.2.0" 84042 + sources."ansi-escapes-4.3.2" 84284 84043 sources."ansi-regex-5.0.0" 84285 84044 sources."ansi-styles-4.3.0" 84286 84045 sources."ansicolors-0.3.2" 84046 + sources."argparse-1.0.10" 84287 84047 sources."arr-diff-4.0.0" 84288 84048 sources."arr-flatten-1.1.0" 84289 84049 sources."arr-union-3.1.0" ··· 84295 84055 sources."assert-plus-1.0.0" 84296 84056 sources."assign-symbols-1.0.0" 84297 84057 sources."asynckit-0.4.0" 84058 + sources."at-least-node-1.0.0" 84298 84059 sources."atob-2.1.2" 84299 84060 sources."aws-sign2-0.7.0" 84300 84061 sources."aws4-1.11.0" ··· 84313 84074 sources."chalk-4.1.2" 84314 84075 sources."has-flag-4.0.0" 84315 84076 sources."supports-color-7.2.0" 84077 + sources."type-fest-0.20.2" 84316 84078 ]; 84317 84079 }) 84318 84080 sources."brace-expansion-1.1.11" ··· 84355 84117 }) 84356 84118 sources."clean-stack-3.0.1" 84357 84119 sources."cli-boxes-2.2.1" 84358 - sources."cli-table-0.3.6" 84120 + sources."cli-progress-3.9.0" 84121 + (sources."cli-table-0.3.6" // { 84122 + dependencies = [ 84123 + sources."colors-1.0.3" 84124 + ]; 84125 + }) 84359 84126 (sources."cli-ux-4.9.3" // { 84360 84127 dependencies = [ 84128 + sources."ansi-escapes-3.2.0" 84361 84129 sources."ansi-regex-4.1.0" 84362 84130 sources."ansi-styles-3.2.1" 84363 84131 sources."clean-stack-2.2.0" 84364 84132 sources."color-convert-1.9.3" 84365 84133 sources."color-name-1.1.3" 84134 + sources."extract-stack-1.0.0" 84366 84135 sources."fs-extra-7.0.1" 84136 + sources."has-flag-2.0.0" 84367 84137 sources."indent-string-3.2.0" 84368 84138 sources."is-wsl-1.1.0" 84369 84139 sources."semver-5.7.1" 84370 84140 sources."strip-ansi-5.2.0" 84141 + sources."supports-hyperlinks-1.0.1" 84371 84142 ]; 84372 84143 }) 84373 84144 sources."clone-response-1.0.2" ··· 84375 84146 sources."collection-visit-1.0.0" 84376 84147 sources."color-convert-2.0.1" 84377 84148 sources."color-name-1.1.4" 84378 - sources."colors-1.0.3" 84149 + sources."colors-1.4.0" 84379 84150 sources."combined-stream-1.0.8" 84380 84151 sources."component-emitter-1.3.0" 84381 84152 sources."concat-map-0.0.1" ··· 84445 84216 sources."extend-shallow-2.0.1" 84446 84217 ]; 84447 84218 }) 84448 - sources."extract-stack-1.0.0" 84219 + sources."extract-stack-2.0.0" 84449 84220 sources."extsprintf-1.3.0" 84450 84221 sources."fast-deep-equal-3.1.3" 84451 84222 sources."fast-diff-1.2.0" ··· 84470 84241 sources."fs-extra-8.1.0" 84471 84242 sources."fs.realpath-1.0.0" 84472 84243 sources."function-bind-1.1.1" 84244 + sources."get-package-type-0.1.0" 84473 84245 sources."get-stream-3.0.0" 84474 84246 sources."get-value-2.0.6" 84475 84247 sources."getpass-0.1.7" ··· 84508 84280 ]; 84509 84281 }) 84510 84282 sources."got-8.3.2" 84511 - sources."graceful-fs-4.2.6" 84283 + sources."graceful-fs-4.2.8" 84512 84284 sources."har-schema-2.0.0" 84513 84285 sources."har-validator-5.1.5" 84514 84286 sources."has-1.0.3" ··· 84528 84300 }) 84529 84301 (sources."heroku-cli-util-8.0.12" // { 84530 84302 dependencies = [ 84303 + sources."ansi-escapes-3.2.0" 84531 84304 sources."ansi-regex-3.0.0" 84532 84305 sources."ansi-styles-3.2.1" 84533 84306 sources."color-convert-1.9.3" ··· 84570 84343 sources."isstream-0.1.2" 84571 84344 sources."isurl-1.0.0" 84572 84345 sources."js-tokens-4.0.0" 84346 + sources."js-yaml-3.14.1" 84573 84347 sources."jsbn-0.1.1" 84574 84348 sources."jsesc-2.5.2" 84575 84349 sources."json-buffer-3.0.0" ··· 84603 84377 sources."moment-2.29.1" 84604 84378 sources."ms-2.1.2" 84605 84379 sources."nanomatch-1.2.13" 84380 + sources."natural-orderby-2.0.3" 84606 84381 (sources."netrc-parser-3.1.6" // { 84607 84382 dependencies = [ 84608 84383 sources."debug-3.2.7" ··· 84627 84402 sources."kind-of-3.2.2" 84628 84403 ]; 84629 84404 }) 84405 + sources."object-treeify-1.1.33" 84630 84406 sources."object-visit-1.0.1" 84631 84407 sources."object.pick-1.3.0" 84632 84408 sources."once-1.4.0" ··· 84637 84413 sources."p-is-promise-1.1.0" 84638 84414 sources."p-timeout-2.0.1" 84639 84415 sources."pascalcase-0.1.1" 84640 - sources."password-prompt-1.1.2" 84416 + (sources."password-prompt-1.1.2" // { 84417 + dependencies = [ 84418 + sources."ansi-escapes-3.2.0" 84419 + ]; 84420 + }) 84641 84421 sources."path-dirname-1.0.2" 84642 84422 sources."path-is-absolute-1.0.1" 84643 84423 sources."path-key-2.0.1" ··· 84723 84503 sources."source-map-resolve-0.5.3" 84724 84504 sources."source-map-url-0.4.1" 84725 84505 sources."split-string-3.1.0" 84506 + sources."sprintf-js-1.0.3" 84726 84507 sources."sshpk-1.16.1" 84727 84508 (sources."static-extend-0.1.2" // { 84728 84509 dependencies = [ ··· 84752 84533 sources."strip-ansi-6.0.0" 84753 84534 sources."strip-eof-1.0.0" 84754 84535 sources."supports-color-5.5.0" 84755 - (sources."supports-hyperlinks-1.0.1" // { 84536 + (sources."supports-hyperlinks-2.2.0" // { 84756 84537 dependencies = [ 84757 - sources."has-flag-2.0.0" 84538 + sources."has-flag-4.0.0" 84539 + sources."supports-color-7.2.0" 84758 84540 ]; 84759 84541 }) 84760 84542 sources."timed-out-4.0.1" ··· 84772 84554 sources."tunnel-agent-0.6.0" 84773 84555 sources."tweetnacl-0.14.5" 84774 84556 sources."type-check-0.3.2" 84775 - sources."type-fest-0.20.2" 84557 + sources."type-fest-0.21.3" 84776 84558 sources."union-value-1.0.1" 84777 84559 sources."universalify-0.1.2" 84778 84560 (sources."unset-value-1.0.0" // { ··· 84863 84645 sources."@types/json-schema-7.0.9" 84864 84646 sources."@types/long-4.0.1" 84865 84647 sources."@types/minimatch-3.0.5" 84866 - sources."@types/node-16.4.12" 84648 + sources."@types/node-16.4.13" 84867 84649 sources."JSONStream-1.3.5" 84868 84650 sources."abbrev-1.1.1" 84869 84651 sources."abort-controller-3.0.0" ··· 84909 84691 sources."asn1-0.2.4" 84910 84692 sources."assert-plus-1.0.0" 84911 84693 sources."ast-types-0.13.4" 84912 - sources."async-3.2.0" 84694 + sources."async-3.2.1" 84913 84695 sources."asynckit-0.4.0" 84914 84696 sources."aws-sign2-0.7.0" 84915 84697 sources."aws4-1.11.0" ··· 85212 84994 sources."glob-slasher-1.0.1" 85213 84995 sources."global-dirs-2.1.0" 85214 84996 sources."google-auth-library-6.1.6" 85215 - (sources."google-gax-2.21.1" // { 84997 + (sources."google-gax-2.22.1" // { 85216 84998 dependencies = [ 85217 84999 sources."google-auth-library-7.5.0" 85218 85000 ]; 85219 85001 }) 85220 85002 sources."google-p12-pem-3.1.1" 85221 85003 sources."got-9.6.0" 85222 - sources."graceful-fs-4.2.6" 85004 + sources."graceful-fs-4.2.8" 85223 85005 sources."gtoken-5.3.0" 85224 85006 sources."har-schema-2.0.0" 85225 85007 sources."har-validator-5.1.5" ··· 85479 85261 sources."promise-breaker-5.0.0" 85480 85262 sources."promise-inflight-1.0.1" 85481 85263 sources."promise-retry-2.0.1" 85264 + sources."proto3-json-serializer-0.1.1" 85482 85265 sources."protobufjs-6.11.2" 85483 85266 sources."proxy-addr-2.0.7" 85484 85267 (sources."proxy-agent-4.0.1" // { ··· 85556 85339 sources."shebang-regex-1.0.0" 85557 85340 sources."signal-exit-3.0.3" 85558 85341 sources."simple-swizzle-0.2.2" 85559 - sources."smart-buffer-4.1.0" 85342 + sources."smart-buffer-4.2.0" 85560 85343 sources."socks-2.6.1" 85561 85344 sources."socks-proxy-agent-5.0.1" 85562 85345 sources."source-map-0.6.1" ··· 85969 85752 dependencies = [ 85970 85753 sources."@types/atob-2.1.2" 85971 85754 sources."@types/inquirer-6.5.0" 85972 - sources."@types/node-16.4.12" 85755 + sources."@types/node-16.4.13" 85973 85756 sources."@types/through-0.0.30" 85974 85757 sources."ajv-6.12.6" 85975 85758 sources."ansi-escapes-4.3.2" ··· 86035 85818 sources."get-caller-file-2.0.5" 86036 85819 sources."getpass-0.1.7" 86037 85820 sources."global-4.4.0" 86038 - sources."graceful-fs-4.2.6" 85821 + sources."graceful-fs-4.2.8" 86039 85822 sources."har-schema-2.0.0" 86040 85823 sources."har-validator-5.1.5" 86041 85824 sources."has-flag-4.0.0" ··· 86142 85925 sources."utf8-3.0.0" 86143 85926 sources."uuid-3.4.0" 86144 85927 sources."verror-1.10.0" 86145 - sources."web3-utils-1.5.0" 85928 + sources."web3-utils-1.5.1" 86146 85929 sources."which-module-2.0.0" 86147 85930 sources."wrap-ansi-6.2.0" 86148 85931 sources."wrappy-1.0.2" ··· 86330 86113 sources."is-glob-3.1.0" 86331 86114 ]; 86332 86115 }) 86333 - sources."graceful-fs-4.2.6" 86116 + sources."graceful-fs-4.2.8" 86334 86117 sources."has-1.0.3" 86335 86118 sources."has-bigints-1.0.1" 86336 86119 sources."has-symbols-1.0.2" 86120 + sources."has-tostringtag-1.0.0" 86337 86121 sources."has-value-1.0.0" 86338 86122 (sources."has-values-1.0.0" // { 86339 86123 dependencies = [ ··· 86347 86131 sources."ini-1.3.8" 86348 86132 sources."internal-slot-1.0.3" 86349 86133 sources."is-accessor-descriptor-1.0.0" 86350 - sources."is-arguments-1.1.0" 86351 - sources."is-bigint-1.0.2" 86134 + sources."is-arguments-1.1.1" 86135 + sources."is-bigint-1.0.3" 86352 86136 sources."is-binary-path-1.0.1" 86353 - sources."is-boolean-object-1.1.1" 86137 + sources."is-boolean-object-1.1.2" 86354 86138 sources."is-buffer-1.1.6" 86355 - sources."is-callable-1.2.3" 86139 + sources."is-callable-1.2.4" 86356 86140 sources."is-data-descriptor-1.0.0" 86357 - sources."is-date-object-1.0.4" 86141 + sources."is-date-object-1.0.5" 86358 86142 sources."is-descriptor-1.0.2" 86359 86143 sources."is-extendable-1.0.1" 86360 86144 sources."is-extglob-2.1.1" ··· 86366 86150 sources."kind-of-3.2.2" 86367 86151 ]; 86368 86152 }) 86369 - sources."is-number-object-1.0.5" 86153 + sources."is-number-object-1.0.6" 86370 86154 sources."is-obj-1.0.1" 86371 86155 sources."is-plain-object-2.0.4" 86372 - sources."is-regex-1.1.3" 86156 + sources."is-regex-1.1.4" 86373 86157 sources."is-set-2.0.2" 86374 - sources."is-string-1.0.6" 86158 + sources."is-string-1.0.7" 86375 86159 sources."is-symbol-1.0.4" 86376 - sources."is-typed-array-1.1.5" 86160 + sources."is-typed-array-1.1.7" 86377 86161 sources."is-weakmap-2.0.1" 86378 86162 sources."is-weakset-2.0.1" 86379 86163 sources."is-windows-1.0.2" ··· 86577 86361 }) 86578 86362 sources."which-boxed-primitive-1.0.2" 86579 86363 sources."which-collection-1.0.1" 86580 - sources."which-typed-array-1.1.4" 86364 + sources."which-typed-array-1.1.6" 86581 86365 (sources."winston-0.8.3" // { 86582 86366 dependencies = [ 86583 86367 sources."async-0.2.10" ··· 86751 86535 sources."@types/istanbul-lib-report-3.0.0" 86752 86536 sources."@types/istanbul-reports-1.1.2" 86753 86537 sources."@types/json-patch-0.0.30" 86754 - sources."@types/node-16.4.12" 86538 + sources."@types/node-16.4.13" 86755 86539 sources."@types/node-fetch-2.5.12" 86756 86540 sources."@types/unist-2.0.6" 86757 86541 sources."@types/yargs-15.0.14" ··· 86914 86698 sources."dotenv-8.6.0" 86915 86699 sources."duplexer3-0.1.4" 86916 86700 sources."ee-first-1.1.1" 86917 - sources."electron-to-chromium-1.3.796" 86701 + sources."electron-to-chromium-1.3.799" 86918 86702 sources."emoji-regex-7.0.3" 86919 86703 sources."encodeurl-1.0.2" 86920 86704 sources."end-of-stream-1.4.4" ··· 87003 86787 sources."global-dirs-3.0.0" 87004 86788 sources."globals-11.12.0" 87005 86789 sources."got-9.6.0" 87006 - sources."graceful-fs-4.2.6" 86790 + sources."graceful-fs-4.2.8" 87007 86791 sources."graphql-15.5.1" 87008 86792 sources."graphql-compose-7.25.1" 87009 86793 sources."graphql-subscriptions-1.2.1" ··· 87591 87375 sources."semver-5.7.1" 87592 87376 sources."separator-escape-0.0.1" 87593 87377 sources."sha.js-2.4.5" 87594 - sources."smart-buffer-4.1.0" 87378 + sources."smart-buffer-4.2.0" 87595 87379 sources."socks-2.6.1" 87596 87380 sources."sodium-browserify-1.3.0" 87597 87381 (sources."sodium-browserify-tweetnacl-0.2.6" // { ··· 87743 87527 sources."clone-response-1.0.2" 87744 87528 sources."color-convert-2.0.1" 87745 87529 sources."color-name-1.1.4" 87746 - sources."conf-10.0.1" 87530 + sources."conf-10.0.2" 87747 87531 (sources."configstore-5.0.1" // { 87748 87532 dependencies = [ 87749 87533 sources."dot-prop-5.3.0" ··· 87804 87588 sources."get-stream-4.1.0" 87805 87589 ]; 87806 87590 }) 87807 - sources."graceful-fs-4.2.6" 87591 + sources."graceful-fs-4.2.8" 87808 87592 sources."hard-rejection-2.1.0" 87809 87593 sources."has-1.0.3" 87810 87594 sources."has-flag-4.0.0" ··· 87972 87756 sources."shebang-command-2.0.0" 87973 87757 sources."shebang-regex-3.0.0" 87974 87758 sources."signal-exit-3.0.3" 87975 - sources."smart-buffer-4.1.0" 87759 + sources."smart-buffer-4.2.0" 87976 87760 sources."socks-2.6.1" 87977 87761 sources."socks-proxy-agent-5.0.1" 87978 87762 sources."source-map-0.6.1" ··· 88141 87925 sources."@nodelib/fs.walk-1.2.8" 88142 87926 sources."@sindresorhus/is-0.14.0" 88143 87927 sources."@szmarczak/http-timer-1.1.2" 88144 - sources."@types/node-16.4.12" 87928 + sources."@types/node-16.4.13" 88145 87929 sources."@types/parse-json-4.0.0" 88146 87930 sources."@types/websocket-1.0.2" 88147 87931 sources."abort-controller-3.0.0" ··· 88283 88067 sources."p-cancelable-1.1.0" 88284 88068 ]; 88285 88069 }) 88286 - sources."graceful-fs-4.2.6" 88070 + sources."graceful-fs-4.2.8" 88287 88071 sources."graphql-15.3.0" 88288 88072 (sources."graphql-config-3.0.3" // { 88289 88073 dependencies = [ ··· 88299 88083 sources."has-bigints-1.0.1" 88300 88084 sources."has-flag-4.0.0" 88301 88085 sources."has-symbols-1.0.2" 88086 + sources."has-tostringtag-1.0.0" 88302 88087 sources."http-cache-semantics-4.1.0" 88303 88088 sources."http-signature-1.2.0" 88304 88089 sources."http2-client-1.3.5" ··· 88326 88111 ]; 88327 88112 }) 88328 88113 sources."internal-slot-1.0.3" 88329 - sources."is-arguments-1.1.0" 88114 + sources."is-arguments-1.1.1" 88330 88115 sources."is-arrayish-0.2.1" 88331 - sources."is-bigint-1.0.2" 88332 - sources."is-boolean-object-1.1.1" 88333 - sources."is-callable-1.2.3" 88334 - sources."is-date-object-1.0.4" 88116 + sources."is-bigint-1.0.3" 88117 + sources."is-boolean-object-1.1.2" 88118 + sources."is-callable-1.2.4" 88119 + sources."is-date-object-1.0.5" 88335 88120 sources."is-docker-2.2.1" 88336 88121 sources."is-extglob-2.1.1" 88337 88122 sources."is-fullwidth-code-point-3.0.0" ··· 88340 88125 sources."is-map-2.0.2" 88341 88126 sources."is-negative-zero-2.0.1" 88342 88127 sources."is-number-7.0.0" 88343 - sources."is-number-object-1.0.5" 88128 + sources."is-number-object-1.0.6" 88344 88129 sources."is-promise-4.0.0" 88345 - sources."is-regex-1.1.3" 88130 + sources."is-regex-1.1.4" 88346 88131 sources."is-set-2.0.2" 88347 88132 sources."is-stream-1.1.0" 88348 - sources."is-string-1.0.6" 88133 + sources."is-string-1.0.7" 88349 88134 sources."is-symbol-1.0.4" 88350 - sources."is-typed-array-1.1.5" 88135 + sources."is-typed-array-1.1.7" 88351 88136 sources."is-typedarray-1.0.0" 88352 88137 sources."is-unicode-supported-0.1.0" 88353 88138 sources."is-weakmap-2.0.1" ··· 88573 88358 sources."which-1.3.1" 88574 88359 sources."which-boxed-primitive-1.0.2" 88575 88360 sources."which-collection-1.0.1" 88576 - sources."which-typed-array-1.1.4" 88361 + sources."which-typed-array-1.1.6" 88577 88362 (sources."wrap-ansi-7.0.0" // { 88578 88363 dependencies = [ 88579 88364 sources."ansi-regex-5.0.0" ··· 89102 88887 sources."global-modules-1.0.0" 89103 88888 sources."global-prefix-1.0.2" 89104 88889 sources."glogg-1.0.2" 89105 - sources."graceful-fs-4.2.6" 88890 + sources."graceful-fs-4.2.8" 89106 88891 sources."gulp-cli-2.3.0" 89107 88892 sources."gulplog-1.0.0" 89108 88893 sources."has-1.0.3" ··· 89503 89288 sources."global-modules-1.0.0" 89504 89289 sources."global-prefix-1.0.2" 89505 89290 sources."glogg-1.0.2" 89506 - sources."graceful-fs-4.2.6" 89291 + sources."graceful-fs-4.2.8" 89507 89292 sources."gulplog-1.0.0" 89508 89293 sources."has-1.0.3" 89509 89294 sources."has-symbols-1.0.2" ··· 89893 89678 http-server = nodeEnv.buildNodePackage { 89894 89679 name = "http-server"; 89895 89680 packageName = "http-server"; 89896 - version = "0.12.3"; 89681 + version = "13.0.0"; 89897 89682 src = fetchurl { 89898 - url = "https://registry.npmjs.org/http-server/-/http-server-0.12.3.tgz"; 89899 - sha512 = "be0dKG6pni92bRjq0kvExtj/NrrAd28/8fCXkaI/4piTwQMSDSLMhWyW0NI1V+DBI3aa1HMlQu46/HjVLfmugA=="; 89683 + url = "https://registry.npmjs.org/http-server/-/http-server-13.0.0.tgz"; 89684 + sha512 = "tqOx2M1CiZ3aVaE7Ue/0lup9kOG+Zqg6wdT1HygvxFnvPpU9doBMPcQ1ffT0/QS3J9ua35gipg0o3Dr8N0K0Tg=="; 89900 89685 }; 89901 89686 dependencies = [ 89902 89687 sources."async-2.6.3" ··· 89905 89690 sources."colors-1.4.0" 89906 89691 sources."corser-2.0.1" 89907 89692 sources."debug-3.2.7" 89908 - sources."ecstatic-3.3.2" 89909 89693 sources."eventemitter3-4.0.7" 89910 89694 sources."follow-redirects-1.14.1" 89911 89695 sources."function-bind-1.1.1" ··· 90206 89990 sources."object-assign-3.0.0" 90207 89991 ]; 90208 89992 }) 90209 - sources."graceful-fs-4.2.6" 89993 + sources."graceful-fs-4.2.8" 90210 89994 sources."har-schema-2.0.0" 90211 89995 sources."har-validator-5.1.5" 90212 89996 sources."has-ansi-2.0.0" ··· 90462 90246 sources."fs.realpath-1.0.0" 90463 90247 sources."get-stream-4.1.0" 90464 90248 sources."glob-7.1.7" 90465 - sources."graceful-fs-4.2.6" 90249 + sources."graceful-fs-4.2.8" 90466 90250 sources."historic-readline-1.0.8" 90467 90251 sources."iconv-lite-0.6.3" 90468 90252 sources."inflight-1.0.6" ··· 90616 90400 sources."get-stream-4.1.0" 90617 90401 sources."get-uri-3.0.2" 90618 90402 sources."glob-7.1.7" 90619 - sources."graceful-fs-4.2.6" 90403 + sources."graceful-fs-4.2.8" 90620 90404 sources."has-1.0.3" 90621 90405 sources."has-flag-4.0.0" 90622 90406 sources."has-symbols-1.0.2" ··· 90742 90526 sources."is-fullwidth-code-point-3.0.0" 90743 90527 ]; 90744 90528 }) 90745 - sources."smart-buffer-4.1.0" 90529 + sources."smart-buffer-4.2.0" 90746 90530 sources."socks-2.6.1" 90747 90531 sources."socks-proxy-agent-5.0.1" 90748 90532 sources."source-map-0.6.1" ··· 90933 90717 sources."fs.realpath-1.0.0" 90934 90718 sources."get-caller-file-2.0.5" 90935 90719 sources."glob-7.1.7" 90936 - sources."graceful-fs-4.2.6" 90720 + sources."graceful-fs-4.2.8" 90937 90721 sources."has-flag-3.0.0" 90938 90722 sources."hashish-0.0.4" 90939 90723 sources."iconv-lite-0.6.3" ··· 91255 91039 sources."tslib-2.3.0" 91256 91040 ]; 91257 91041 }) 91042 + (sources."@oclif/core-0.5.28" // { 91043 + dependencies = [ 91044 + sources."fs-extra-9.1.0" 91045 + sources."jsonfile-6.1.0" 91046 + sources."strip-ansi-6.0.0" 91047 + sources."tslib-2.3.0" 91048 + sources."universalify-2.0.0" 91049 + ]; 91050 + }) 91258 91051 (sources."@oclif/errors-1.3.5" // { 91259 91052 dependencies = [ 91260 91053 sources."fs-extra-8.1.0" ··· 91271 91064 sources."escape-string-regexp-1.0.5" 91272 91065 ]; 91273 91066 }) 91274 - (sources."@oclif/plugin-help-3.2.2" // { 91275 - dependencies = [ 91276 - sources."ansi-regex-3.0.0" 91277 - sources."ansi-styles-3.2.1" 91278 - sources."color-convert-1.9.3" 91279 - sources."color-name-1.1.3" 91280 - sources."is-fullwidth-code-point-2.0.0" 91281 - sources."strip-ansi-6.0.0" 91282 - (sources."wrap-ansi-4.0.0" // { 91283 - dependencies = [ 91284 - sources."string-width-2.1.1" 91285 - sources."strip-ansi-4.0.0" 91286 - ]; 91287 - }) 91288 - ]; 91289 - }) 91067 + sources."@oclif/plugin-help-3.3.0" 91068 + sources."@oclif/screen-1.0.4" 91290 91069 sources."@percy/config-1.0.0-beta.63" 91291 91070 sources."@percy/logger-1.0.0-beta.63" 91292 91071 sources."@percy/migrate-0.10.0" ··· 91309 91088 sources."ansi-escapes-4.3.2" 91310 91089 sources."ansi-regex-5.0.0" 91311 91090 sources."ansi-styles-4.3.0" 91091 + sources."ansicolors-0.3.2" 91312 91092 sources."anymatch-3.1.2" 91313 91093 sources."aproba-1.2.0" 91314 91094 (sources."are-we-there-yet-1.1.5" // { ··· 91342 91122 }) 91343 91123 sources."async-mutex-0.1.4" 91344 91124 sources."asynckit-0.4.0" 91125 + sources."at-least-node-1.0.0" 91345 91126 sources."atob-2.1.2" 91346 - (sources."aws-sdk-2.961.0" // { 91127 + (sources."aws-sdk-2.963.0" // { 91347 91128 dependencies = [ 91348 91129 sources."buffer-4.9.2" 91349 91130 sources."ieee754-1.1.13" ··· 91383 91164 sources."camel-case-3.0.0" 91384 91165 sources."camelcase-4.1.0" 91385 91166 sources."caniuse-lite-1.0.30001249" 91167 + sources."cardinal-2.1.1" 91386 91168 sources."caseless-0.12.0" 91387 91169 (sources."chalk-4.1.2" // { 91388 91170 dependencies = [ ··· 91419 91201 }) 91420 91202 sources."clean-stack-3.0.1" 91421 91203 sources."cli-cursor-3.1.0" 91204 + sources."cli-progress-3.9.0" 91422 91205 sources."cli-spinners-2.6.0" 91206 + (sources."cli-ux-5.6.3" // { 91207 + dependencies = [ 91208 + sources."fs-extra-8.1.0" 91209 + sources."has-flag-4.0.0" 91210 + sources."strip-ansi-6.0.0" 91211 + sources."supports-color-8.1.1" 91212 + sources."tslib-2.3.0" 91213 + ]; 91214 + }) 91423 91215 sources."cli-width-3.0.0" 91424 91216 sources."cliss-0.0.2" 91425 91217 sources."clone-1.0.4" ··· 91455 91247 sources."core-util-is-1.0.2" 91456 91248 sources."cosmiconfig-7.0.0" 91457 91249 sources."cross-env-6.0.3" 91458 - sources."cross-spawn-7.0.3" 91250 + (sources."cross-spawn-7.0.3" // { 91251 + dependencies = [ 91252 + sources."path-key-3.1.1" 91253 + sources."shebang-command-2.0.0" 91254 + sources."shebang-regex-3.0.0" 91255 + sources."which-2.0.2" 91256 + ]; 91257 + }) 91459 91258 sources."crypt-0.0.2" 91460 91259 (sources."css-3.0.0" // { 91461 91260 dependencies = [ ··· 91540 91339 ]; 91541 91340 }) 91542 91341 sources."ecc-jsbn-0.1.2" 91543 - sources."electron-to-chromium-1.3.796" 91342 + sources."electron-to-chromium-1.3.799" 91544 91343 sources."emoji-regex-8.0.0" 91545 91344 (sources."emphasize-1.5.0" // { 91546 91345 dependencies = [ ··· 91607 91406 sources."extend-shallow-2.0.1" 91608 91407 ]; 91609 91408 }) 91409 + sources."extract-stack-2.0.0" 91610 91410 sources."extsprintf-1.3.0" 91611 91411 sources."fast-deep-equal-3.1.3" 91612 91412 sources."fast-glob-3.2.7" ··· 91624 91424 sources."fill-range-7.0.1" 91625 91425 sources."find-cache-dir-2.1.0" 91626 91426 sources."find-up-3.0.0" 91627 - sources."flow-parser-0.156.0" 91427 + sources."flow-parser-0.157.0" 91628 91428 sources."follow-redirects-1.14.1" 91629 91429 sources."font-awesome-filetypes-2.1.0" 91630 91430 sources."for-each-property-0.0.4" ··· 91651 91451 }) 91652 91452 sources."gensync-1.0.0-beta.2" 91653 91453 sources."get-intrinsic-1.1.1" 91454 + sources."get-package-type-0.1.0" 91654 91455 sources."get-prototype-chain-1.0.1" 91655 91456 sources."get-stdin-5.0.1" 91656 91457 sources."get-value-2.0.6" ··· 91660 91461 sources."glob-parent-5.1.2" 91661 91462 sources."globals-11.12.0" 91662 91463 sources."globby-11.0.4" 91663 - sources."graceful-fs-4.2.6" 91464 + sources."graceful-fs-4.2.8" 91664 91465 sources."graphlib-2.1.8" 91665 91466 sources."growly-1.3.0" 91666 91467 sources."har-schema-2.0.0" ··· 91701 91502 }) 91702 91503 sources."http-errors-1.8.0" 91703 91504 sources."http-signature-1.2.0" 91505 + sources."hyperlinker-1.0.0" 91704 91506 sources."iconv-lite-0.4.24" 91705 91507 sources."ieee754-1.2.1" 91706 91508 sources."ignore-5.1.8" ··· 91797 91599 sources."jmespath-0.15.0" 91798 91600 sources."jpeg-js-0.4.3" 91799 91601 sources."js-tokens-4.0.0" 91602 + sources."js-yaml-3.14.1" 91800 91603 sources."jsbn-0.1.1" 91801 91604 (sources."jscodeshift-0.11.0" // { 91802 91605 dependencies = [ ··· 91897 91700 sources."md5-file-4.0.0" 91898 91701 sources."mdurl-1.0.1" 91899 91702 sources."merge2-1.4.1" 91900 - sources."mermaid-8.11.3" 91703 + sources."mermaid-8.11.4" 91901 91704 sources."micromatch-4.0.4" 91902 91705 sources."mime-db-1.49.0" 91903 91706 sources."mime-types-2.1.32" ··· 91927 91730 sources."nanoid-3.1.23" 91928 91731 sources."nanomatch-1.2.13" 91929 91732 sources."napi-build-utils-1.0.2" 91733 + sources."natural-orderby-2.0.3" 91930 91734 sources."ndarray-1.0.19" 91931 91735 sources."ndarray-pack-1.2.1" 91932 91736 (sources."needle-2.8.0" // { ··· 91936 91740 }) 91937 91741 sources."neo-async-2.6.2" 91938 91742 sources."nextgen-events-1.5.2" 91743 + sources."nice-try-1.0.5" 91939 91744 sources."no-case-2.3.2" 91940 91745 (sources."node-abi-2.30.0" // { 91941 91746 dependencies = [ ··· 91952 91757 sources."nopt-3.0.6" 91953 91758 sources."semver-5.3.0" 91954 91759 sources."tar-2.2.2" 91955 - sources."which-1.3.1" 91956 91760 ]; 91957 91761 }) 91958 91762 sources."node-modules-regexp-1.0.0" 91959 91763 (sources."node-notifier-8.0.2" // { 91960 91764 dependencies = [ 91961 91765 sources."uuid-8.3.2" 91766 + sources."which-2.0.2" 91962 91767 ]; 91963 91768 }) 91964 91769 sources."node-persist-2.1.0" ··· 91999 91804 sources."magicli-0.0.5" 92000 91805 ]; 92001 91806 }) 91807 + sources."object-treeify-1.1.33" 92002 91808 sources."object-visit-1.0.1" 92003 91809 sources."object.assign-4.1.2" 92004 91810 sources."object.pick-1.3.0" ··· 92023 91829 sources."parse-json-5.2.0" 92024 91830 sources."parse5-5.1.0" 92025 91831 sources."pascalcase-0.1.1" 91832 + (sources."password-prompt-1.1.2" // { 91833 + dependencies = [ 91834 + sources."ansi-escapes-3.2.0" 91835 + sources."cross-spawn-6.0.5" 91836 + sources."semver-5.7.1" 91837 + ]; 91838 + }) 92026 91839 sources."path-exists-3.0.0" 92027 91840 sources."path-is-absolute-1.0.1" 92028 - sources."path-key-3.1.1" 91841 + sources."path-key-2.0.1" 92029 91842 sources."path-type-4.0.0" 92030 91843 sources."performance-now-2.1.0" 92031 91844 sources."picomatch-2.3.0" ··· 92066 91879 sources."tslib-2.3.0" 92067 91880 ]; 92068 91881 }) 91882 + sources."redeyed-2.1.1" 92069 91883 sources."reduce-flatten-1.0.1" 92070 91884 sources."redux-3.7.2" 92071 91885 sources."regex-not-1.0.2" ··· 92134 91948 sources."simple-get-4.0.0" 92135 91949 ]; 92136 91950 }) 92137 - sources."shebang-command-2.0.0" 92138 - sources."shebang-regex-3.0.0" 91951 + sources."shebang-command-1.2.0" 91952 + sources."shebang-regex-1.0.0" 92139 91953 sources."shellwords-0.1.1" 92140 91954 sources."signal-exit-3.0.3" 92141 91955 sources."simple-concat-1.0.1" ··· 92243 92057 sources."strip-json-comments-2.0.1" 92244 92058 sources."stylis-4.0.10" 92245 92059 sources."supports-color-5.5.0" 92060 + (sources."supports-hyperlinks-2.2.0" // { 92061 + dependencies = [ 92062 + sources."has-flag-4.0.0" 92063 + sources."supports-color-7.2.0" 92064 + ]; 92065 + }) 92246 92066 sources."symbol-observable-1.2.0" 92247 92067 sources."symbol-tree-3.2.4" 92248 92068 sources."table-layout-0.4.5" ··· 92341 92161 sources."whatwg-encoding-1.0.5" 92342 92162 sources."whatwg-mimetype-2.3.0" 92343 92163 sources."whatwg-url-7.1.0" 92344 - sources."which-2.0.2" 92164 + sources."which-1.3.1" 92345 92165 (sources."wide-align-1.1.3" // { 92346 92166 dependencies = [ 92347 92167 sources."is-fullwidth-code-point-2.0.0" ··· 92456 92276 sources."catharsis-0.9.0" 92457 92277 sources."entities-2.0.3" 92458 92278 sources."escape-string-regexp-2.0.0" 92459 - sources."graceful-fs-4.2.6" 92279 + sources."graceful-fs-4.2.8" 92460 92280 sources."js2xmlparser-4.0.1" 92461 92281 sources."klaw-3.0.0" 92462 92282 sources."linkify-it-2.2.0" ··· 92729 92549 sources."get-stream-4.1.0" 92730 92550 sources."global-dirs-3.0.0" 92731 92551 sources."got-9.6.0" 92732 - sources."graceful-fs-4.2.6" 92552 + sources."graceful-fs-4.2.8" 92733 92553 sources."has-flag-4.0.0" 92734 92554 sources."has-yarn-2.1.0" 92735 92555 sources."http-cache-semantics-4.1.0" ··· 93065 92885 sources."glob-base-0.3.0" 93066 92886 sources."glob-parent-2.0.0" 93067 92887 sources."got-5.7.1" 93068 - sources."graceful-fs-4.2.6" 92888 + sources."graceful-fs-4.2.8" 93069 92889 sources."har-schema-2.0.0" 93070 92890 sources."har-validator-5.1.5" 93071 92891 sources."has-1.0.3" ··· 93491 93311 sources."tslib-2.3.0" 93492 93312 ]; 93493 93313 }) 93314 + (sources."@oclif/core-0.5.28" // { 93315 + dependencies = [ 93316 + sources."fs-extra-9.1.0" 93317 + sources."jsonfile-6.1.0" 93318 + sources."tslib-2.3.0" 93319 + sources."universalify-2.0.0" 93320 + ]; 93321 + }) 93494 93322 sources."@oclif/errors-1.3.5" 93495 93323 sources."@oclif/linewrap-1.0.0" 93496 93324 (sources."@oclif/parser-3.8.5" // { ··· 93502 93330 sources."escape-string-regexp-1.0.5" 93503 93331 ]; 93504 93332 }) 93505 - (sources."@oclif/plugin-help-3.2.2" // { 93506 - dependencies = [ 93507 - sources."ansi-regex-3.0.0" 93508 - sources."ansi-styles-3.2.1" 93509 - sources."color-convert-1.9.3" 93510 - sources."color-name-1.1.3" 93511 - sources."is-fullwidth-code-point-2.0.0" 93512 - (sources."wrap-ansi-4.0.0" // { 93513 - dependencies = [ 93514 - sources."string-width-2.1.1" 93515 - sources."strip-ansi-4.0.0" 93516 - ]; 93517 - }) 93518 - ]; 93519 - }) 93333 + sources."@oclif/plugin-help-3.3.0" 93520 93334 sources."@oclif/screen-1.0.4" 93521 93335 (sources."@putdotio/api-client-8.17.0" // { 93522 93336 dependencies = [ ··· 93531 93345 sources."argparse-1.0.10" 93532 93346 sources."array-union-2.1.0" 93533 93347 sources."asynckit-0.4.0" 93348 + sources."at-least-node-1.0.0" 93534 93349 (sources."axios-0.19.2" // { 93535 93350 dependencies = [ 93536 93351 sources."debug-3.1.0" ··· 93611 93426 sources."fs-extra-8.1.0" 93612 93427 sources."function-bind-1.1.1" 93613 93428 sources."get-intrinsic-1.1.1" 93429 + sources."get-package-type-0.1.0" 93614 93430 sources."glob-parent-5.1.2" 93615 93431 sources."globby-11.0.4" 93616 - sources."graceful-fs-4.2.6" 93432 + sources."graceful-fs-4.2.8" 93617 93433 sources."has-1.0.3" 93618 93434 sources."has-flag-3.0.0" 93619 93435 sources."has-symbols-1.0.2" ··· 93763 93579 sources."@types/component-emitter-1.2.10" 93764 93580 sources."@types/cookie-0.4.1" 93765 93581 sources."@types/cors-2.8.12" 93766 - sources."@types/node-16.4.12" 93582 + sources."@types/node-16.4.13" 93767 93583 sources."accepts-1.3.7" 93768 93584 sources."ansi-regex-5.0.0" 93769 93585 sources."ansi-styles-4.3.0" ··· 93818 93634 sources."get-caller-file-2.0.5" 93819 93635 sources."glob-7.1.7" 93820 93636 sources."glob-parent-5.1.2" 93821 - sources."graceful-fs-4.2.6" 93637 + sources."graceful-fs-4.2.8" 93822 93638 sources."http-errors-1.7.2" 93823 93639 sources."http-proxy-1.18.1" 93824 93640 sources."iconv-lite-0.4.24" ··· 94024 93840 sources."get-caller-file-2.0.5" 94025 93841 sources."get-intrinsic-1.1.1" 94026 93842 sources."glob-7.1.7" 94027 - sources."graceful-fs-4.2.6" 93843 + sources."graceful-fs-4.2.8" 94028 93844 sources."has-1.0.3" 94029 93845 sources."has-bigints-1.0.1" 94030 93846 sources."has-symbols-1.0.2" 93847 + sources."has-tostringtag-1.0.0" 94031 93848 (sources."hash-base-3.1.0" // { 94032 93849 dependencies = [ 94033 93850 sources."readable-stream-3.6.0" ··· 94044 93861 sources."inline-source-map-0.6.2" 94045 93862 sources."insert-module-globals-7.2.1" 94046 93863 sources."internal-slot-1.0.3" 94047 - sources."is-arguments-1.1.0" 94048 - sources."is-bigint-1.0.2" 94049 - sources."is-boolean-object-1.1.1" 93864 + sources."is-arguments-1.1.1" 93865 + sources."is-bigint-1.0.3" 93866 + sources."is-boolean-object-1.1.2" 94050 93867 sources."is-buffer-1.1.6" 94051 - sources."is-callable-1.2.3" 93868 + sources."is-callable-1.2.4" 94052 93869 sources."is-core-module-2.5.0" 94053 - sources."is-date-object-1.0.4" 93870 + sources."is-date-object-1.0.5" 94054 93871 sources."is-fullwidth-code-point-3.0.0" 94055 - sources."is-generator-function-1.0.9" 93872 + sources."is-generator-function-1.0.10" 94056 93873 sources."is-negative-zero-2.0.1" 94057 - sources."is-number-object-1.0.5" 93874 + sources."is-number-object-1.0.6" 94058 93875 sources."is-plain-obj-2.1.0" 94059 - sources."is-regex-1.1.3" 93876 + sources."is-regex-1.1.4" 94060 93877 sources."is-stream-2.0.1" 94061 - sources."is-string-1.0.6" 93878 + sources."is-string-1.0.7" 94062 93879 sources."is-symbol-1.0.4" 94063 - sources."is-typed-array-1.1.5" 93880 + sources."is-typed-array-1.1.7" 94064 93881 sources."isarray-1.0.0" 94065 93882 sources."jsonparse-1.3.1" 94066 93883 sources."labeled-stream-splicer-2.0.2" ··· 94167 93984 sources."valid-url-1.0.9" 94168 93985 sources."vm-browserify-1.1.2" 94169 93986 sources."which-boxed-primitive-1.0.2" 94170 - sources."which-typed-array-1.1.4" 93987 + sources."which-typed-array-1.1.6" 94171 93988 sources."wrap-ansi-7.0.0" 94172 93989 sources."wrappy-1.0.2" 94173 93990 sources."write-file-atomic-1.3.4" ··· 94219 94036 sources."glob-7.1.7" 94220 94037 sources."glob-parent-3.1.0" 94221 94038 sources."glob-stream-6.1.0" 94222 - sources."graceful-fs-4.2.6" 94039 + sources."graceful-fs-4.2.8" 94223 94040 sources."has-1.0.3" 94224 94041 sources."has-symbols-1.0.2" 94225 94042 sources."inflight-1.0.6" ··· 95131 94948 sources."glob-7.1.7" 95132 94949 sources."glob-parent-5.1.2" 95133 94950 sources."globby-11.0.4" 95134 - sources."graceful-fs-4.2.6" 94951 + sources."graceful-fs-4.2.8" 95135 94952 sources."handlebars-4.7.7" 95136 94953 sources."har-schema-2.0.0" 95137 94954 sources."har-validator-5.1.5" ··· 95140 94957 sources."has-bigints-1.0.1" 95141 94958 sources."has-flag-4.0.0" 95142 94959 sources."has-symbols-1.0.2" 94960 + sources."has-tostringtag-1.0.0" 95143 94961 sources."has-unicode-2.0.1" 95144 94962 sources."hosted-git-info-4.0.2" 95145 94963 sources."http-cache-semantics-4.1.0" ··· 95178 94996 sources."internal-slot-1.0.3" 95179 94997 sources."ip-1.1.5" 95180 94998 sources."is-arrayish-0.2.1" 95181 - sources."is-bigint-1.0.2" 95182 - sources."is-boolean-object-1.1.1" 95183 - sources."is-callable-1.2.3" 94999 + sources."is-bigint-1.0.3" 95000 + sources."is-boolean-object-1.1.2" 95001 + sources."is-callable-1.2.4" 95184 95002 sources."is-ci-2.0.0" 95185 95003 sources."is-core-module-2.5.0" 95186 - sources."is-date-object-1.0.4" 95004 + sources."is-date-object-1.0.5" 95187 95005 sources."is-extglob-2.1.1" 95188 95006 sources."is-fullwidth-code-point-3.0.0" 95189 95007 sources."is-glob-4.0.1" 95190 95008 sources."is-lambda-1.0.1" 95191 95009 sources."is-negative-zero-2.0.1" 95192 95010 sources."is-number-7.0.0" 95193 - sources."is-number-object-1.0.5" 95011 + sources."is-number-object-1.0.6" 95194 95012 sources."is-obj-2.0.0" 95195 95013 sources."is-plain-obj-1.1.0" 95196 95014 sources."is-plain-object-2.0.4" 95197 - sources."is-regex-1.1.3" 95015 + sources."is-regex-1.1.4" 95198 95016 sources."is-ssh-1.3.3" 95199 95017 sources."is-stream-2.0.1" 95200 - sources."is-string-1.0.6" 95018 + sources."is-string-1.0.7" 95201 95019 sources."is-symbol-1.0.4" 95202 95020 sources."is-text-path-1.0.1" 95203 95021 sources."is-typedarray-1.0.0" ··· 95431 95249 sources."signal-exit-3.0.3" 95432 95250 sources."slash-3.0.0" 95433 95251 sources."slide-1.1.6" 95434 - sources."smart-buffer-4.1.0" 95252 + sources."smart-buffer-4.2.0" 95435 95253 sources."socks-2.6.1" 95436 95254 sources."socks-proxy-agent-5.0.1" 95437 95255 sources."sort-keys-2.0.0" ··· 95566 95384 sources."copy-anything-2.0.3" 95567 95385 sources."debug-3.2.7" 95568 95386 sources."errno-0.1.8" 95569 - sources."graceful-fs-4.2.6" 95387 + sources."graceful-fs-4.2.8" 95570 95388 sources."iconv-lite-0.4.24" 95571 95389 sources."image-size-0.5.5" 95572 95390 sources."is-what-3.14.1" ··· 95741 95559 sources."is-glob-3.1.0" 95742 95560 ]; 95743 95561 }) 95744 - sources."graceful-fs-4.2.6" 95562 + sources."graceful-fs-4.2.8" 95745 95563 sources."has-value-1.0.0" 95746 95564 (sources."has-values-1.0.0" // { 95747 95565 dependencies = [ ··· 96089 95907 sources."github-slugger-1.3.0" 96090 95908 sources."glob-base-0.3.0" 96091 95909 sources."glob-parent-2.0.0" 96092 - sources."graceful-fs-4.2.6" 95910 + sources."graceful-fs-4.2.8" 96093 95911 sources."har-schema-2.0.0" 96094 95912 sources."har-validator-5.1.5" 96095 95913 (sources."has-binary2-1.0.3" // { ··· 96578 96396 sources."@types/istanbul-lib-report-3.0.0" 96579 96397 sources."@types/istanbul-reports-1.1.2" 96580 96398 sources."@types/json-schema-7.0.9" 96581 - sources."@types/node-16.4.12" 96399 + sources."@types/node-16.4.13" 96582 96400 sources."@types/normalize-package-data-2.4.1" 96583 96401 sources."@types/resolve-0.0.8" 96584 96402 sources."@types/yargs-15.0.14" ··· 96635 96453 }) 96636 96454 sources."assert-plus-1.0.0" 96637 96455 sources."assign-symbols-1.0.0" 96638 - sources."async-3.2.0" 96456 + sources."async-3.2.1" 96639 96457 sources."async-each-1.0.3" 96640 96458 sources."async-retry-1.3.1" 96641 96459 sources."asynckit-0.4.0" ··· 96875 96693 sources."duplexer2-0.1.4" 96876 96694 sources."duplexify-3.7.1" 96877 96695 sources."ecc-jsbn-0.1.2" 96878 - sources."electron-to-chromium-1.3.796" 96696 + sources."electron-to-chromium-1.3.799" 96879 96697 (sources."elliptic-6.5.4" // { 96880 96698 dependencies = [ 96881 96699 sources."bn.js-4.12.0" ··· 96995 96813 }) 96996 96814 sources."globals-11.12.0" 96997 96815 sources."google-closure-compiler-js-20170910.0.1" 96998 - sources."graceful-fs-4.2.6" 96816 + sources."graceful-fs-4.2.8" 96999 96817 (sources."gunzip-maybe-1.4.2" // { 97000 96818 dependencies = [ 97001 96819 sources."browserify-zlib-0.1.4" ··· 97691 97509 sources."ansi-styles-4.3.0" 97692 97510 sources."asn1-0.2.4" 97693 97511 sources."assert-plus-1.0.0" 97694 - sources."async-3.2.0" 97512 + sources."async-3.2.1" 97695 97513 sources."asynckit-0.4.0" 97696 97514 sources."aws-sign2-0.7.0" 97697 97515 sources."aws4-1.11.0" ··· 97888 97706 sources."glob-7.1.7" 97889 97707 sources."globals-9.18.0" 97890 97708 sources."glogg-1.0.2" 97891 - sources."graceful-fs-4.2.6" 97709 + sources."graceful-fs-4.2.8" 97892 97710 sources."gulp-eslint-3.0.1" 97893 97711 (sources."gulp-util-3.0.8" // { 97894 97712 dependencies = [ ··· 98190 98008 sources."tslib-2.3.0" 98191 98009 ]; 98192 98010 }) 98011 + (sources."@oclif/core-0.5.28" // { 98012 + dependencies = [ 98013 + sources."fs-extra-9.1.0" 98014 + sources."jsonfile-6.1.0" 98015 + sources."tslib-2.3.0" 98016 + sources."universalify-2.0.0" 98017 + ]; 98018 + }) 98193 98019 sources."@oclif/errors-1.3.5" 98194 98020 sources."@oclif/linewrap-1.0.0" 98195 98021 (sources."@oclif/parser-3.8.5" // { ··· 98203 98029 sources."supports-color-5.5.0" 98204 98030 ]; 98205 98031 }) 98206 - (sources."@oclif/plugin-help-3.2.2" // { 98207 - dependencies = [ 98208 - sources."ansi-regex-3.0.0" 98209 - sources."ansi-styles-3.2.1" 98210 - sources."color-convert-1.9.3" 98211 - sources."color-name-1.1.3" 98212 - sources."is-fullwidth-code-point-2.0.0" 98213 - (sources."wrap-ansi-4.0.0" // { 98214 - dependencies = [ 98215 - sources."string-width-2.1.1" 98216 - sources."strip-ansi-4.0.0" 98217 - ]; 98218 - }) 98219 - ]; 98220 - }) 98032 + sources."@oclif/plugin-help-3.3.0" 98033 + sources."@oclif/screen-1.0.4" 98221 98034 sources."@percy/config-1.0.0-beta.63" 98222 98035 sources."@percy/logger-1.0.0-beta.63" 98223 98036 sources."@percy/migrate-0.10.0" 98224 - sources."@types/node-16.4.12" 98037 + sources."@types/node-16.4.13" 98225 98038 sources."@types/parse-json-4.0.0" 98226 98039 sources."@types/yauzl-2.9.2" 98227 98040 sources."agent-base-6.0.2" ··· 98229 98042 sources."ansi-escapes-4.3.2" 98230 98043 sources."ansi-regex-5.0.0" 98231 98044 sources."ansi-styles-4.3.0" 98045 + sources."ansicolors-0.3.2" 98046 + sources."argparse-1.0.10" 98232 98047 sources."arr-diff-4.0.0" 98233 98048 sources."arr-flatten-1.1.0" 98234 98049 sources."arr-union-3.1.0" ··· 98240 98055 sources."tslib-2.3.0" 98241 98056 ]; 98242 98057 }) 98058 + sources."at-least-node-1.0.0" 98243 98059 sources."atob-2.1.2" 98244 98060 sources."babel-core-7.0.0-bridge.0" 98245 98061 sources."babel-plugin-dynamic-import-node-2.3.3" ··· 98261 98077 sources."call-bind-1.0.2" 98262 98078 sources."callsites-3.1.0" 98263 98079 sources."caniuse-lite-1.0.30001249" 98080 + sources."cardinal-2.1.1" 98264 98081 sources."chalk-4.1.2" 98265 98082 sources."chardet-0.7.0" 98266 98083 sources."chownr-1.1.4" ··· 98283 98100 }) 98284 98101 sources."clean-stack-3.0.1" 98285 98102 sources."cli-cursor-3.1.0" 98103 + sources."cli-progress-3.9.0" 98286 98104 sources."cli-spinners-2.6.0" 98105 + (sources."cli-ux-5.6.3" // { 98106 + dependencies = [ 98107 + sources."supports-color-8.1.1" 98108 + sources."tslib-2.3.0" 98109 + ]; 98110 + }) 98287 98111 sources."cli-width-3.0.0" 98288 98112 sources."clone-1.0.4" 98289 98113 sources."clone-deep-4.0.1" ··· 98303 98127 }) 98304 98128 sources."copy-descriptor-0.1.1" 98305 98129 sources."cosmiconfig-7.0.0" 98306 - sources."cross-spawn-7.0.3" 98130 + (sources."cross-spawn-7.0.3" // { 98131 + dependencies = [ 98132 + sources."path-key-3.1.1" 98133 + sources."shebang-command-2.0.0" 98134 + sources."shebang-regex-3.0.0" 98135 + sources."which-2.0.2" 98136 + ]; 98137 + }) 98307 98138 sources."d3-5.16.0" 98308 98139 sources."d3-array-1.2.4" 98309 98140 sources."d3-axis-1.0.12" ··· 98350 98181 sources."devtools-protocol-0.0.901419" 98351 98182 sources."dir-glob-3.0.1" 98352 98183 sources."dompurify-2.3.0" 98353 - sources."electron-to-chromium-1.3.796" 98184 + sources."electron-to-chromium-1.3.799" 98354 98185 sources."emoji-regex-8.0.0" 98355 98186 sources."end-of-stream-1.4.4" 98356 98187 sources."error-ex-1.3.2" ··· 98389 98220 sources."extend-shallow-2.0.1" 98390 98221 ]; 98391 98222 }) 98223 + sources."extract-stack-2.0.0" 98392 98224 sources."extract-zip-2.0.1" 98393 98225 sources."fast-deep-equal-3.1.3" 98394 98226 sources."fast-glob-3.2.7" ··· 98410 98242 ]; 98411 98243 }) 98412 98244 sources."find-up-4.1.0" 98413 - sources."flow-parser-0.156.0" 98245 + sources."flow-parser-0.157.0" 98414 98246 sources."for-in-1.0.2" 98415 98247 sources."fragment-cache-0.2.1" 98416 98248 sources."fs-constants-1.0.0" ··· 98419 98251 sources."function-bind-1.1.1" 98420 98252 sources."gensync-1.0.0-beta.2" 98421 98253 sources."get-intrinsic-1.1.1" 98254 + sources."get-package-type-0.1.0" 98422 98255 sources."get-stream-5.2.0" 98423 98256 sources."get-value-2.0.6" 98424 98257 sources."glob-7.1.7" 98425 98258 sources."glob-parent-5.1.2" 98426 98259 sources."globals-11.12.0" 98427 98260 sources."globby-11.0.4" 98428 - sources."graceful-fs-4.2.6" 98261 + sources."graceful-fs-4.2.8" 98429 98262 sources."graphlib-2.1.8" 98430 98263 sources."has-1.0.3" 98431 98264 sources."has-flag-4.0.0" ··· 98442 98275 ]; 98443 98276 }) 98444 98277 sources."https-proxy-agent-5.0.0" 98278 + sources."hyperlinker-1.0.0" 98445 98279 sources."iconv-lite-0.4.24" 98446 98280 sources."ieee754-1.2.1" 98447 98281 sources."ignore-5.1.8" ··· 98476 98310 sources."isexe-2.0.0" 98477 98311 sources."isobject-3.0.1" 98478 98312 sources."js-tokens-4.0.0" 98313 + sources."js-yaml-3.14.1" 98479 98314 (sources."jscodeshift-0.11.0" // { 98480 98315 dependencies = [ 98481 98316 (sources."braces-2.3.2" // { ··· 98517 98352 sources."map-cache-0.2.2" 98518 98353 sources."map-visit-1.0.0" 98519 98354 sources."merge2-1.4.1" 98520 - sources."mermaid-8.11.3" 98355 + sources."mermaid-8.11.4" 98521 98356 sources."micromatch-4.0.4" 98522 98357 sources."mimic-fn-2.1.0" 98523 98358 sources."minimatch-3.0.4" ··· 98532 98367 sources."ms-2.1.2" 98533 98368 sources."mute-stream-0.0.8" 98534 98369 sources."nanomatch-1.2.13" 98370 + sources."natural-orderby-2.0.3" 98535 98371 sources."neo-async-2.6.2" 98372 + sources."nice-try-1.0.5" 98536 98373 sources."node-dir-0.1.17" 98537 98374 sources."node-fetch-2.6.1" 98538 98375 sources."node-modules-regexp-1.0.0" ··· 98551 98388 ]; 98552 98389 }) 98553 98390 sources."object-keys-1.1.1" 98391 + sources."object-treeify-1.1.33" 98554 98392 sources."object-visit-1.0.1" 98555 98393 sources."object.assign-4.1.2" 98556 98394 sources."object.pick-1.3.0" ··· 98564 98402 sources."parent-module-1.0.1" 98565 98403 sources."parse-json-5.2.0" 98566 98404 sources."pascalcase-0.1.1" 98405 + (sources."password-prompt-1.1.2" // { 98406 + dependencies = [ 98407 + sources."ansi-escapes-3.2.0" 98408 + sources."cross-spawn-6.0.5" 98409 + sources."semver-5.7.1" 98410 + ]; 98411 + }) 98567 98412 sources."path-exists-4.0.0" 98568 98413 sources."path-is-absolute-1.0.1" 98569 - sources."path-key-3.1.1" 98414 + sources."path-key-2.0.1" 98570 98415 sources."path-type-4.0.0" 98571 98416 sources."pend-1.2.0" 98572 98417 sources."picomatch-2.3.0" ··· 98587 98432 sources."tslib-2.3.0" 98588 98433 ]; 98589 98434 }) 98435 + sources."redeyed-2.1.1" 98590 98436 sources."regex-not-1.0.2" 98591 98437 sources."repeat-element-1.1.4" 98592 98438 sources."repeat-string-1.6.1" ··· 98615 98461 ]; 98616 98462 }) 98617 98463 sources."shallow-clone-3.0.1" 98618 - sources."shebang-command-2.0.0" 98619 - sources."shebang-regex-3.0.0" 98464 + sources."shebang-command-1.2.0" 98465 + sources."shebang-regex-1.0.0" 98620 98466 sources."signal-exit-3.0.3" 98621 98467 sources."slash-3.0.0" 98622 98468 (sources."snapdragon-0.8.2" // { ··· 98658 98504 }) 98659 98505 sources."source-map-url-0.4.1" 98660 98506 sources."split-string-3.1.0" 98507 + sources."sprintf-js-1.0.3" 98661 98508 (sources."static-extend-0.1.2" // { 98662 98509 dependencies = [ 98663 98510 sources."define-property-0.2.5" ··· 98680 98527 sources."strip-ansi-6.0.0" 98681 98528 sources."stylis-4.0.10" 98682 98529 sources."supports-color-7.2.0" 98530 + sources."supports-hyperlinks-2.2.0" 98683 98531 sources."tar-fs-2.0.0" 98684 98532 sources."tar-stream-2.2.0" 98685 98533 (sources."temp-0.8.4" // { ··· 98717 98565 sources."use-3.1.1" 98718 98566 sources."util-deprecate-1.0.2" 98719 98567 sources."wcwidth-1.0.1" 98720 - sources."which-2.0.2" 98568 + sources."which-1.3.1" 98721 98569 sources."widest-line-3.1.0" 98722 98570 sources."wrap-ansi-7.0.0" 98723 98571 sources."wrappy-1.0.2" ··· 99380 99228 netlify-cli = nodeEnv.buildNodePackage { 99381 99229 name = "netlify-cli"; 99382 99230 packageName = "netlify-cli"; 99383 - version = "6.0.5"; 99231 + version = "6.0.8"; 99384 99232 src = fetchurl { 99385 - url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.0.5.tgz"; 99386 - sha512 = "u6nQQSwJwKM3llCxjseF71yl3ecEN2apAZVvOkx+rha0wuqBz5SNi70TVbgbLaBMxjhJnfRsbgXEizRBub9fHQ=="; 99233 + url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.0.8.tgz"; 99234 + sha512 = "pYqdFgEw/2pWjSZQ4r+UEmXy1UkR4WDSf8INBJOEJvIzw4HaBD/pjsUadwkGvMX/iUjSy2/dD9SLZbESFA8lTA=="; 99387 99235 }; 99388 99236 dependencies = [ 99389 99237 sources."@babel/code-frame-7.14.5" ··· 99517 99365 sources."@dabh/diagnostics-2.0.2" 99518 99366 sources."@jest/types-24.9.0" 99519 99367 sources."@mrmlnc/readdir-enhanced-2.2.1" 99520 - (sources."@netlify/build-17.9.0" // { 99368 + (sources."@netlify/build-17.9.2" // { 99521 99369 dependencies = [ 99522 99370 sources."ansi-styles-4.3.0" 99523 99371 (sources."boxen-4.2.0" // { ··· 99546 99394 sources."slash-3.0.0" 99547 99395 ]; 99548 99396 }) 99549 - (sources."@netlify/config-14.4.1" // { 99397 + (sources."@netlify/config-14.4.3" // { 99550 99398 dependencies = [ 99551 99399 sources."dot-prop-5.3.0" 99552 99400 sources."execa-3.4.0" ··· 99660 99508 sources."tslib-2.3.0" 99661 99509 ]; 99662 99510 }) 99511 + (sources."@oclif/core-0.5.28" // { 99512 + dependencies = [ 99513 + sources."@nodelib/fs.stat-2.0.5" 99514 + sources."ansi-styles-4.3.0" 99515 + sources."array-union-2.1.0" 99516 + sources."braces-3.0.2" 99517 + sources."clean-stack-3.0.1" 99518 + sources."dir-glob-3.0.1" 99519 + sources."escape-string-regexp-4.0.0" 99520 + sources."fast-glob-3.2.7" 99521 + sources."fill-range-7.0.1" 99522 + sources."fs-extra-9.1.0" 99523 + sources."glob-parent-5.1.2" 99524 + sources."globby-11.0.4" 99525 + sources."ignore-5.1.8" 99526 + sources."is-number-7.0.0" 99527 + sources."jsonfile-6.1.0" 99528 + sources."micromatch-4.0.4" 99529 + sources."slash-3.0.0" 99530 + sources."to-regex-range-5.0.1" 99531 + sources."tslib-2.3.0" 99532 + sources."universalify-2.0.0" 99533 + sources."wrap-ansi-7.0.0" 99534 + ]; 99535 + }) 99663 99536 (sources."@oclif/errors-1.3.5" // { 99664 99537 dependencies = [ 99665 99538 sources."ansi-styles-4.3.0" ··· 99678 99551 sources."supports-color-5.5.0" 99679 99552 ]; 99680 99553 }) 99681 - (sources."@oclif/plugin-help-3.2.2" // { 99682 - dependencies = [ 99683 - sources."ansi-regex-3.0.0" 99684 - sources."ansi-styles-3.2.1" 99685 - sources."color-convert-1.9.3" 99686 - sources."color-name-1.1.3" 99687 - sources."is-fullwidth-code-point-2.0.0" 99688 - (sources."wrap-ansi-4.0.0" // { 99689 - dependencies = [ 99690 - sources."string-width-2.1.1" 99691 - sources."strip-ansi-4.0.0" 99692 - ]; 99693 - }) 99694 - ]; 99695 - }) 99554 + sources."@oclif/plugin-help-3.3.0" 99696 99555 (sources."@oclif/plugin-not-found-1.2.4" // { 99697 99556 dependencies = [ 99698 99557 sources."ansi-escapes-3.2.0" ··· 99774 99633 sources."@types/istanbul-reports-1.1.2" 99775 99634 sources."@types/keyv-3.1.2" 99776 99635 sources."@types/minimatch-3.0.5" 99777 - sources."@types/node-16.4.12" 99636 + sources."@types/node-16.4.13" 99778 99637 sources."@types/node-fetch-2.5.12" 99779 99638 sources."@types/normalize-package-data-2.4.1" 99780 99639 sources."@types/resolve-1.17.1" ··· 99858 99717 sources."ascii-table-0.0.9" 99859 99718 sources."assign-symbols-1.0.0" 99860 99719 sources."ast-module-types-2.7.1" 99861 - sources."async-3.2.0" 99720 + sources."async-3.2.1" 99862 99721 sources."asynckit-0.4.0" 99863 99722 sources."at-least-node-1.0.0" 99864 99723 sources."atob-2.1.2" ··· 100198 100057 }) 100199 100058 sources."duplexer3-0.1.4" 100200 100059 sources."ee-first-1.1.1" 100201 - sources."electron-to-chromium-1.3.796" 100060 + sources."electron-to-chromium-1.3.799" 100202 100061 sources."elegant-spinner-1.0.1" 100203 100062 sources."elf-cam-0.1.1" 100204 100063 sources."emoji-regex-8.0.0" ··· 100365 100224 sources."get-amd-module-type-3.0.0" 100366 100225 sources."get-caller-file-2.0.5" 100367 100226 sources."get-intrinsic-1.1.1" 100227 + sources."get-package-type-0.1.0" 100368 100228 sources."get-port-5.1.1" 100369 100229 sources."get-stream-5.2.0" 100370 100230 sources."get-value-2.0.6" ··· 100404 100264 sources."to-readable-stream-1.0.0" 100405 100265 ]; 100406 100266 }) 100407 - sources."graceful-fs-4.2.6" 100267 + sources."graceful-fs-4.2.8" 100408 100268 sources."has-1.0.3" 100409 100269 (sources."has-ansi-2.0.0" // { 100410 100270 dependencies = [ ··· 100750 100610 sources."qs-6.10.1" 100751 100611 ]; 100752 100612 }) 100753 - (sources."netlify-redirect-parser-8.1.0" // { 100613 + (sources."netlify-redirect-parser-8.2.0" // { 100754 100614 dependencies = [ 100755 100615 sources."is-plain-obj-2.1.0" 100756 100616 ]; ··· 101419 101279 sources."fs.realpath-1.0.0" 101420 101280 sources."gauge-2.7.4" 101421 101281 sources."glob-7.1.7" 101422 - sources."graceful-fs-4.2.6" 101282 + sources."graceful-fs-4.2.8" 101423 101283 sources."has-unicode-2.0.1" 101424 101284 sources."http-cache-semantics-4.1.0" 101425 101285 sources."http-proxy-agent-4.0.1" ··· 101466 101326 sources."semver-7.3.5" 101467 101327 sources."set-blocking-2.0.0" 101468 101328 sources."signal-exit-3.0.3" 101469 - sources."smart-buffer-4.1.0" 101329 + sources."smart-buffer-4.2.0" 101470 101330 sources."socks-2.6.1" 101471 101331 sources."socks-proxy-agent-5.0.1" 101472 101332 sources."ssri-8.0.1" ··· 101603 101463 ]; 101604 101464 }) 101605 101465 sources."glob-5.0.15" 101606 - sources."graceful-fs-4.2.6" 101466 + sources."graceful-fs-4.2.8" 101607 101467 sources."har-schema-1.0.5" 101608 101468 sources."har-validator-4.2.1" 101609 101469 sources."has-1.0.3" ··· 101927 101787 sources."@types/cacheable-request-6.0.2" 101928 101788 sources."@types/http-cache-semantics-4.0.1" 101929 101789 sources."@types/keyv-3.1.2" 101930 - sources."@types/node-16.4.12" 101790 + sources."@types/node-16.4.13" 101931 101791 sources."@types/responselike-1.0.0" 101932 101792 sources."abbrev-1.1.1" 101933 101793 sources."accepts-1.3.7" ··· 102082 101942 sources."get-stream-5.2.0" 102083 101943 sources."glob-7.1.7" 102084 101944 sources."got-11.8.2" 102085 - sources."graceful-fs-4.2.6" 101945 + sources."graceful-fs-4.2.8" 102086 101946 sources."has-unicode-2.0.1" 102087 101947 sources."hash-sum-2.0.0" 102088 101948 (sources."help-me-3.0.0" // { ··· 102357 102217 sources."gauge-2.7.4" 102358 102218 sources."getpass-0.1.7" 102359 102219 sources."glob-7.1.7" 102360 - sources."graceful-fs-4.2.6" 102220 + sources."graceful-fs-4.2.8" 102361 102221 sources."har-schema-2.0.0" 102362 102222 sources."har-validator-5.1.5" 102363 102223 sources."has-1.0.3" ··· 102550 102410 sources."glob-parent-5.1.2" 102551 102411 sources."global-dirs-2.1.0" 102552 102412 sources."got-9.6.0" 102553 - sources."graceful-fs-4.2.6" 102413 + sources."graceful-fs-4.2.8" 102554 102414 sources."has-flag-3.0.0" 102555 102415 sources."has-yarn-2.1.0" 102556 102416 sources."http-cache-semantics-4.1.0" ··· 102687 102547 sources."@types/http-cache-semantics-4.0.1" 102688 102548 sources."@types/keyv-3.1.2" 102689 102549 sources."@types/minimist-1.2.2" 102690 - sources."@types/node-16.4.12" 102550 + sources."@types/node-16.4.13" 102691 102551 sources."@types/normalize-package-data-2.4.1" 102692 102552 sources."@types/parse-json-4.0.0" 102693 102553 sources."@types/responselike-1.0.0" ··· 102805 102665 sources."type-fest-0.10.0" 102806 102666 ]; 102807 102667 }) 102808 - sources."graceful-fs-4.2.6" 102668 + sources."graceful-fs-4.2.8" 102809 102669 sources."hard-rejection-2.1.0" 102810 102670 sources."has-1.0.3" 102811 102671 (sources."has-ansi-2.0.0" // { ··· 103191 103051 npm = nodeEnv.buildNodePackage { 103192 103052 name = "npm"; 103193 103053 packageName = "npm"; 103194 - version = "7.20.3"; 103054 + version = "7.20.5"; 103195 103055 src = fetchurl { 103196 - url = "https://registry.npmjs.org/npm/-/npm-7.20.3.tgz"; 103197 - sha512 = "Kxk+NSnv+bcUKlWEKRaJ745AjEApYzM6GHxXs9AzR8VJiRMPcKvrIGMp+pdkIaF++2kEbcyg/Kx0FCrv+ySJiQ=="; 103056 + url = "https://registry.npmjs.org/npm/-/npm-7.20.5.tgz"; 103057 + sha512 = "vRyu1V79n5BzKn4vkanag1xEjEMLIZ48Ry1V7IyAvHQHi8syOEiYWvUMxNpeDk+e8JKAKCNG3lIYJDm3pM8VMQ=="; 103198 103058 }; 103199 103059 buildInputs = globalBuildInputs; 103200 103060 meta = { ··· 103339 103199 }) 103340 103200 sources."globby-11.0.4" 103341 103201 sources."got-9.6.0" 103342 - sources."graceful-fs-4.2.6" 103202 + sources."graceful-fs-4.2.8" 103343 103203 sources."har-schema-2.0.0" 103344 103204 sources."har-validator-5.1.5" 103345 103205 sources."has-flag-4.0.0" ··· 103501 103361 sources."signal-exit-3.0.3" 103502 103362 sources."sisteransi-1.0.5" 103503 103363 sources."slash-3.0.0" 103504 - sources."smart-buffer-4.1.0" 103364 + sources."smart-buffer-4.2.0" 103505 103365 sources."socks-2.6.1" 103506 103366 sources."socks-proxy-agent-5.0.1" 103507 103367 sources."spawn-please-1.0.0" ··· 104135 103995 sources."cssstyle-1.4.0" 104136 103996 sources."dashdash-1.14.1" 104137 103997 sources."data-urls-1.1.0" 104138 - sources."deasync-0.1.21" 103998 + sources."deasync-0.1.22" 104139 103999 sources."debug-4.3.2" 104140 104000 sources."decode-uri-component-0.2.0" 104141 104001 sources."deep-is-0.1.3" ··· 104190 104050 sources."duplexer2-0.1.4" 104191 104051 sources."ecc-jsbn-0.1.2" 104192 104052 sources."ee-first-1.1.1" 104193 - sources."electron-to-chromium-1.3.796" 104053 + sources."electron-to-chromium-1.3.799" 104194 104054 (sources."elliptic-6.5.4" // { 104195 104055 dependencies = [ 104196 104056 sources."bn.js-4.12.0" ··· 104261 104121 }) 104262 104122 sources."glob-to-regexp-0.3.0" 104263 104123 sources."globals-11.12.0" 104264 - sources."graceful-fs-4.2.6" 104124 + sources."graceful-fs-4.2.8" 104265 104125 sources."grapheme-breaker-0.3.2" 104266 104126 sources."har-schema-2.0.0" 104267 104127 sources."har-validator-5.1.5" ··· 104274 104134 sources."has-bigints-1.0.1" 104275 104135 sources."has-flag-3.0.0" 104276 104136 sources."has-symbols-1.0.2" 104137 + sources."has-tostringtag-1.0.0" 104277 104138 sources."has-value-1.0.0" 104278 104139 (sources."has-values-1.0.0" // { 104279 104140 dependencies = [ ··· 104326 104187 ]; 104327 104188 }) 104328 104189 sources."is-arrayish-0.2.1" 104329 - sources."is-bigint-1.0.2" 104190 + sources."is-bigint-1.0.3" 104330 104191 sources."is-binary-path-1.0.1" 104331 - sources."is-boolean-object-1.1.1" 104192 + sources."is-boolean-object-1.1.2" 104332 104193 sources."is-buffer-1.1.6" 104333 - sources."is-callable-1.2.3" 104194 + sources."is-callable-1.2.4" 104334 104195 sources."is-color-stop-1.1.0" 104335 104196 sources."is-core-module-2.5.0" 104336 104197 (sources."is-data-descriptor-1.0.0" // { ··· 104338 104199 sources."kind-of-6.0.3" 104339 104200 ]; 104340 104201 }) 104341 - sources."is-date-object-1.0.4" 104202 + sources."is-date-object-1.0.5" 104342 104203 (sources."is-descriptor-1.0.2" // { 104343 104204 dependencies = [ 104344 104205 sources."kind-of-6.0.3" ··· 104351 104212 sources."is-html-1.1.0" 104352 104213 sources."is-negative-zero-2.0.1" 104353 104214 sources."is-number-3.0.0" 104354 - sources."is-number-object-1.0.5" 104215 + sources."is-number-object-1.0.6" 104355 104216 sources."is-obj-2.0.0" 104356 104217 sources."is-plain-object-2.0.4" 104357 - sources."is-regex-1.1.3" 104218 + sources."is-regex-1.1.4" 104358 104219 sources."is-resolvable-1.1.0" 104359 - sources."is-string-1.0.6" 104220 + sources."is-string-1.0.7" 104360 104221 sources."is-symbol-1.0.4" 104361 104222 sources."is-typedarray-1.0.0" 104362 104223 sources."is-url-1.2.4" ··· 104927 104788 sources."get-intrinsic-1.1.1" 104928 104789 sources."getpass-0.1.7" 104929 104790 sources."glob-7.1.7" 104930 - sources."graceful-fs-4.2.6" 104791 + sources."graceful-fs-4.2.8" 104931 104792 sources."handlebars-4.7.7" 104932 104793 sources."har-schema-2.0.0" 104933 104794 sources."har-validator-5.1.5" 104934 104795 sources."has-1.0.3" 104935 104796 sources."has-symbols-1.0.2" 104797 + sources."has-tostringtag-1.0.0" 104936 104798 sources."hat-0.0.3" 104937 104799 sources."heapdump-0.3.15" 104938 104800 sources."hot-shots-6.8.7" ··· 104942 104804 sources."inflight-1.0.6" 104943 104805 sources."inherits-2.0.3" 104944 104806 sources."ipaddr.js-1.9.1" 104945 - sources."is-arguments-1.1.0" 104807 + sources."is-arguments-1.1.1" 104946 104808 sources."is-fullwidth-code-point-2.0.0" 104947 104809 sources."is-typedarray-1.0.0" 104948 104810 sources."isarray-1.0.0" ··· 105078 104940 sources."verror-1.10.0" 105079 104941 sources."which-module-2.0.0" 105080 104942 sources."wikimedia-langconv-0.1.0" 105081 - sources."wikipeg-2.0.5" 104943 + sources."wikipeg-2.0.6" 105082 104944 sources."wordwrap-1.0.0" 105083 104945 sources."worker-farm-1.7.0" 105084 104946 sources."wrap-ansi-5.1.0" ··· 105128 104990 sources."fs-extra-7.0.1" 105129 104991 sources."fs.realpath-1.0.0" 105130 104992 sources."glob-7.1.7" 105131 - sources."graceful-fs-4.2.6" 104993 + sources."graceful-fs-4.2.8" 105132 104994 sources."has-flag-3.0.0" 105133 104995 sources."inflight-1.0.6" 105134 104996 sources."inherits-2.0.4" ··· 105272 105134 sources."get-intrinsic-1.1.1" 105273 105135 sources."get-stdin-4.0.1" 105274 105136 sources."glob-7.1.7" 105275 - sources."graceful-fs-4.2.6" 105137 + sources."graceful-fs-4.2.8" 105276 105138 sources."has-1.0.3" 105277 105139 sources."has-ansi-2.0.0" 105278 105140 sources."has-flag-3.0.0" 105279 105141 sources."has-symbols-1.0.2" 105142 + sources."has-tostringtag-1.0.0" 105280 105143 sources."hat-0.0.3" 105281 105144 sources."hosted-git-info-2.8.9" 105282 105145 sources."http-headers-3.0.2" ··· 105302 105165 sources."ip-1.1.5" 105303 105166 sources."ip-set-1.0.2" 105304 105167 sources."ipaddr.js-2.0.1" 105305 - sources."is-arguments-1.1.0" 105168 + sources."is-arguments-1.1.1" 105306 105169 sources."is-arrayish-0.2.1" 105307 105170 sources."is-core-module-2.5.0" 105308 - sources."is-date-object-1.0.4" 105171 + sources."is-date-object-1.0.5" 105309 105172 sources."is-finite-1.1.0" 105310 105173 sources."is-fullwidth-code-point-1.0.0" 105311 - sources."is-regex-1.1.3" 105174 + sources."is-regex-1.1.4" 105312 105175 sources."is-utf8-0.2.1" 105313 105176 sources."isarray-1.0.0" 105314 105177 sources."k-bucket-0.6.0" ··· 105614 105477 sources."get-browser-rtc-1.1.0" 105615 105478 sources."getpass-0.1.7" 105616 105479 sources."glob-7.1.7" 105617 - sources."graceful-fs-4.2.6" 105480 + sources."graceful-fs-4.2.8" 105618 105481 sources."har-schema-2.0.0" 105619 105482 sources."har-validator-5.1.5" 105620 105483 (sources."has-binary2-1.0.3" // { ··· 105925 105788 sources."github-from-package-0.0.0" 105926 105789 sources."glob-parent-5.1.2" 105927 105790 sources."globby-11.0.4" 105928 - sources."graceful-fs-4.2.6" 105791 + sources."graceful-fs-4.2.8" 105929 105792 sources."has-1.0.3" 105930 105793 sources."has-flag-4.0.0" 105931 105794 sources."has-unicode-2.0.1" ··· 106089 105952 sources."anymatch-3.1.2" 106090 105953 sources."argparse-1.0.10" 106091 105954 sources."ast-types-0.13.4" 106092 - sources."async-3.2.0" 105955 + sources."async-3.2.1" 106093 105956 (sources."async-listener-0.6.10" // { 106094 105957 dependencies = [ 106095 105958 sources."semver-5.7.1" ··· 106148 106011 sources."git-sha1-0.1.2" 106149 106012 sources."glob-7.1.7" 106150 106013 sources."glob-parent-5.1.2" 106151 - sources."graceful-fs-4.2.6" 106014 + sources."graceful-fs-4.2.8" 106152 106015 sources."has-1.0.3" 106153 106016 sources."has-flag-4.0.0" 106154 106017 sources."http-errors-1.7.3" ··· 106229 106092 sources."setprototypeof-1.1.1" 106230 106093 sources."shimmer-1.2.1" 106231 106094 sources."signal-exit-3.0.3" 106232 - sources."smart-buffer-4.1.0" 106095 + sources."smart-buffer-4.2.0" 106233 106096 sources."socks-2.6.1" 106234 106097 sources."socks-proxy-agent-5.0.1" 106235 106098 sources."source-map-0.6.1" ··· 106273 106136 pnpm = nodeEnv.buildNodePackage { 106274 106137 name = "pnpm"; 106275 106138 packageName = "pnpm"; 106276 - version = "6.11.5"; 106139 + version = "6.12.0"; 106277 106140 src = fetchurl { 106278 - url = "https://registry.npmjs.org/pnpm/-/pnpm-6.11.5.tgz"; 106279 - sha512 = "TXMSRyncP88F4GTdKFIIi3kdXSYf+v3uvIKLfNjPTt2YjsrbKmYNCR3VsGjYwlMVSnH2UEo2/sM2VNSefH9Isw=="; 106141 + url = "https://registry.npmjs.org/pnpm/-/pnpm-6.12.0.tgz"; 106142 + sha512 = "3kBjfvJo6eFu6tKpXFhit/Mihd364cjaG4bblu4px8kVbSX+oGKmPBGver4zLG2dP0txtglNU+AS0e1OGEJQMw=="; 106280 106143 }; 106281 106144 buildInputs = globalBuildInputs; 106282 106145 meta = { ··· 106300 106163 sources."commander-2.11.0" 106301 106164 sources."file-or-stdin-1.0.2" 106302 106165 sources."get-stdin-5.0.1" 106303 - sources."graceful-fs-4.2.6" 106166 + sources."graceful-fs-4.2.8" 106304 106167 sources."inspect-with-kind-1.0.5" 106305 106168 sources."kind-of-6.0.3" 106306 106169 sources."poor-mans-t-sql-formatter-1.6.10" ··· 106377 106240 sources."get-stdin-8.0.0" 106378 106241 sources."glob-parent-5.1.2" 106379 106242 sources."globby-11.0.4" 106380 - sources."graceful-fs-4.2.6" 106243 + sources."graceful-fs-4.2.8" 106381 106244 sources."has-flag-4.0.0" 106382 106245 sources."ignore-5.1.8" 106383 106246 sources."import-cwd-3.0.0" ··· 106619 106482 sources."get-assigned-identifiers-1.2.0" 106620 106483 sources."glob-7.1.7" 106621 106484 sources."globule-1.3.2" 106622 - sources."graceful-fs-4.2.6" 106485 + sources."graceful-fs-4.2.8" 106623 106486 sources."has-1.0.3" 106624 106487 (sources."hash-base-3.1.0" // { 106625 106488 dependencies = [ ··· 106779 106642 purescript-language-server = nodeEnv.buildNodePackage { 106780 106643 name = "purescript-language-server"; 106781 106644 packageName = "purescript-language-server"; 106782 - version = "0.15.2"; 106645 + version = "0.15.3"; 106783 106646 src = fetchurl { 106784 - url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.15.2.tgz"; 106785 - sha512 = "dlxcc6Fv7rcXO3uFVcOgZturcKknB4J00ITJjZCrORTjw5eVbGcSTKrSeSAlNZWaUYu0HQX9NHVKtHDG/6rBNw=="; 106647 + url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.15.3.tgz"; 106648 + sha512 = "qAlUEFQRTRKnKet3SxRbLmrC5mOyBIiR5CDqzOmorDN10jgcFIR6mL1sJujQc5cRRcE+HNbBuBeoVdiDvznOGg=="; 106786 106649 }; 106787 106650 dependencies = [ 106788 106651 sources."isexe-2.0.0" ··· 106881 106744 sources."get-intrinsic-1.1.1" 106882 106745 sources."get-stream-4.1.0" 106883 106746 sources."got-9.6.0" 106884 - sources."graceful-fs-4.2.6" 106747 + sources."graceful-fs-4.2.8" 106885 106748 sources."has-1.0.3" 106886 106749 sources."has-symbols-1.0.2" 106887 106750 sources."http-cache-semantics-4.1.0" ··· 106922 106785 sources."semver-6.3.0" 106923 106786 sources."side-channel-1.0.4" 106924 106787 sources."sisteransi-1.0.5" 106925 - sources."smart-buffer-4.1.0" 106788 + sources."smart-buffer-4.2.0" 106926 106789 sources."socks-2.6.1" 106927 106790 sources."socks-proxy-agent-5.0.1" 106928 106791 sources."strip-json-comments-2.0.1" ··· 106945 106808 pyright = nodeEnv.buildNodePackage { 106946 106809 name = "pyright"; 106947 106810 packageName = "pyright"; 106948 - version = "1.1.159"; 106811 + version = "1.1.160"; 106949 106812 src = fetchurl { 106950 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.159.tgz"; 106951 - sha512 = "KCKxW9MWLTTmM6CMHixpgX0H+eZO40aAQwXs1qji4Ru+Yq/KJCGb2b7eTqXMoRxEqz1cIinvpaoH11R54gUBGQ=="; 106813 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.160.tgz"; 106814 + sha512 = "SBgUVitoBS+VvGEG1IoPJNgJ9PSjsjCqeJPZ7DWMz9s4SvYHeZz57VtWlGGGpgjT19nmH/zPe8Cxk4CLXmDhiA=="; 106952 106815 }; 106953 106816 buildInputs = globalBuildInputs; 106954 106817 meta = { ··· 107221 107084 sources."has-ansi-2.0.0" 107222 107085 sources."has-bigints-1.0.1" 107223 107086 sources."has-symbols-1.0.2" 107087 + sources."has-tostringtag-1.0.0" 107224 107088 sources."i-0.3.6" 107225 107089 sources."inflight-1.0.6" 107226 107090 sources."inherits-2.0.4" 107227 107091 sources."internal-slot-1.0.3" 107228 - sources."is-arguments-1.1.0" 107229 - sources."is-bigint-1.0.2" 107230 - sources."is-boolean-object-1.1.1" 107231 - sources."is-callable-1.2.3" 107232 - sources."is-date-object-1.0.4" 107092 + sources."is-arguments-1.1.1" 107093 + sources."is-bigint-1.0.3" 107094 + sources."is-boolean-object-1.1.2" 107095 + sources."is-callable-1.2.4" 107096 + sources."is-date-object-1.0.5" 107233 107097 sources."is-map-2.0.2" 107234 107098 sources."is-negative-zero-2.0.1" 107235 - sources."is-number-object-1.0.5" 107236 - sources."is-regex-1.1.3" 107099 + sources."is-number-object-1.0.6" 107100 + sources."is-regex-1.1.4" 107237 107101 sources."is-set-2.0.2" 107238 - sources."is-string-1.0.6" 107102 + sources."is-string-1.0.7" 107239 107103 sources."is-symbol-1.0.4" 107240 - sources."is-typed-array-1.1.5" 107104 + sources."is-typed-array-1.1.7" 107241 107105 sources."is-weakmap-2.0.1" 107242 107106 sources."is-weakset-2.0.1" 107243 107107 sources."isarray-2.0.5" ··· 107270 107134 sources."utile-0.2.1" 107271 107135 sources."which-boxed-primitive-1.0.2" 107272 107136 sources."which-collection-1.0.1" 107273 - sources."which-typed-array-1.1.4" 107137 + sources."which-typed-array-1.1.6" 107274 107138 (sources."winston-0.8.3" // { 107275 107139 dependencies = [ 107276 107140 sources."pkginfo-0.3.1" ··· 107432 107296 sources."@types/glob-7.1.4" 107433 107297 sources."@types/json-schema-7.0.9" 107434 107298 sources."@types/minimatch-3.0.5" 107435 - sources."@types/node-16.4.12" 107299 + sources."@types/node-16.4.13" 107436 107300 sources."@types/parse-json-4.0.0" 107437 107301 sources."@types/q-1.5.5" 107438 107302 sources."@webassemblyjs/ast-1.9.0" ··· 107849 107713 sources."duplexify-3.7.1" 107850 107714 sources."ee-first-1.1.1" 107851 107715 sources."ejs-2.7.4" 107852 - sources."electron-to-chromium-1.3.796" 107716 + sources."electron-to-chromium-1.3.799" 107853 107717 (sources."elliptic-6.5.4" // { 107854 107718 dependencies = [ 107855 107719 sources."bn.js-4.12.0" ··· 108017 107881 sources."pify-3.0.0" 108018 107882 ]; 108019 107883 }) 108020 - sources."graceful-fs-4.2.6" 107884 + sources."graceful-fs-4.2.8" 108021 107885 sources."gud-1.0.0" 108022 107886 sources."gunzip-maybe-1.4.2" 108023 107887 sources."gzip-size-5.1.1" ··· 108034 107898 sources."has-symbol-support-x-1.4.2" 108035 107899 sources."has-symbols-1.0.2" 108036 107900 sources."has-to-string-tag-x-1.4.1" 107901 + sources."has-tostringtag-1.0.0" 108037 107902 sources."has-value-1.0.0" 108038 107903 (sources."has-values-1.0.0" // { 108039 107904 dependencies = [ ··· 108139 108004 sources."ipaddr.js-1.9.1" 108140 108005 sources."is-absolute-url-2.1.0" 108141 108006 sources."is-accessor-descriptor-1.0.0" 108142 - sources."is-arguments-1.1.0" 108007 + sources."is-arguments-1.1.1" 108143 108008 sources."is-arrayish-0.2.1" 108144 - sources."is-bigint-1.0.2" 108009 + sources."is-bigint-1.0.3" 108145 108010 sources."is-binary-path-2.1.0" 108146 - sources."is-boolean-object-1.1.1" 108011 + sources."is-boolean-object-1.1.2" 108147 108012 sources."is-buffer-1.1.6" 108148 - sources."is-callable-1.2.3" 108013 + sources."is-callable-1.2.4" 108149 108014 sources."is-color-stop-1.1.0" 108150 108015 sources."is-core-module-2.5.0" 108151 108016 sources."is-data-descriptor-1.0.0" 108152 - sources."is-date-object-1.0.4" 108017 + sources."is-date-object-1.0.5" 108153 108018 sources."is-deflate-1.0.0" 108154 108019 sources."is-descriptor-1.0.2" 108155 108020 sources."is-directory-0.3.1" ··· 108161 108026 sources."is-natural-number-4.0.1" 108162 108027 sources."is-negative-zero-2.0.1" 108163 108028 sources."is-number-7.0.0" 108164 - sources."is-number-object-1.0.5" 108029 + sources."is-number-object-1.0.6" 108165 108030 sources."is-obj-2.0.0" 108166 108031 sources."is-object-1.0.2" 108167 108032 sources."is-path-cwd-2.2.0" ··· 108169 108034 sources."is-path-inside-2.1.0" 108170 108035 sources."is-plain-obj-1.1.0" 108171 108036 sources."is-plain-object-2.0.4" 108172 - sources."is-regex-1.1.3" 108037 + sources."is-regex-1.1.4" 108173 108038 sources."is-resolvable-1.1.0" 108174 108039 sources."is-retry-allowed-1.2.0" 108175 108040 sources."is-stream-1.1.0" 108176 - sources."is-string-1.0.6" 108041 + sources."is-string-1.0.7" 108177 108042 sources."is-symbol-1.0.4" 108178 108043 sources."is-windows-1.0.2" 108179 108044 sources."is-wsl-1.1.0" ··· 109065 108930 sources."esprima-3.1.3" 109066 108931 sources."esprima-fb-13001.1001.0-dev-harmony-fb" 109067 108932 sources."glob-5.0.15" 109068 - sources."graceful-fs-4.2.6" 108933 + sources."graceful-fs-4.2.8" 109069 108934 sources."iconv-lite-0.4.24" 109070 108935 sources."inflight-1.0.6" 109071 108936 sources."inherits-2.0.4" ··· 109567 109432 sources."figures-3.2.0" 109568 109433 sources."find-up-2.1.0" 109569 109434 sources."function-bind-1.1.1" 109570 - sources."graceful-fs-4.2.6" 109435 + sources."graceful-fs-4.2.8" 109571 109436 sources."has-1.0.3" 109572 109437 sources."has-flag-4.0.0" 109573 109438 sources."hosted-git-info-2.8.9" ··· 109779 109644 sources."@types/node-14.17.9" 109780 109645 sources."@types/node-fetch-2.5.12" 109781 109646 sources."@types/resolve-1.17.1" 109782 - sources."@types/vscode-1.58.1" 109647 + sources."@types/vscode-1.59.0" 109783 109648 sources."@typescript-eslint/eslint-plugin-4.29.0" 109784 109649 sources."@typescript-eslint/experimental-utils-4.29.0" 109785 109650 sources."@typescript-eslint/parser-4.29.0" ··· 109928 109793 sources."glob-parent-5.1.2" 109929 109794 sources."globals-13.10.0" 109930 109795 sources."globby-11.0.4" 109931 - sources."graceful-fs-4.2.6" 109796 + sources."graceful-fs-4.2.8" 109932 109797 sources."growl-1.10.5" 109933 109798 sources."has-1.0.3" 109934 109799 sources."has-flag-3.0.0" ··· 110050 109915 sources."resolve-from-4.0.0" 110051 109916 sources."reusify-1.0.4" 110052 109917 sources."rimraf-3.0.2" 110053 - sources."rollup-2.56.0" 109918 + sources."rollup-2.51.1" 110054 109919 sources."run-parallel-1.2.0" 110055 109920 sources."safe-buffer-5.2.1" 110056 109921 sources."semver-7.3.5" ··· 110428 110293 serverless = nodeEnv.buildNodePackage { 110429 110294 name = "serverless"; 110430 110295 packageName = "serverless"; 110431 - version = "2.53.0"; 110296 + version = "2.53.1"; 110432 110297 src = fetchurl { 110433 - url = "https://registry.npmjs.org/serverless/-/serverless-2.53.0.tgz"; 110434 - sha512 = "2srJa55dQY4kx+aNGkevvZbJ/8j/C1TLD3AvZdpqgrRPNG41yfl1B3V/pXMmq5sfdpx09Fr8JOeNRgUgJUq7Aw=="; 110298 + url = "https://registry.npmjs.org/serverless/-/serverless-2.53.1.tgz"; 110299 + sha512 = "LK7BWPCpMq0p1TcnJb4uCkxYYrbsM2J7FOCd29BYKmvvUrB+NzFeAVGE1sR/cPF6ECT0PWsR9NEADb24o5D2WA=="; 110435 110300 }; 110436 110301 dependencies = [ 110437 110302 sources."2-thenable-1.0.0" ··· 110523 110388 sources."@types/keyv-3.1.2" 110524 110389 sources."@types/lodash-4.14.172" 110525 110390 sources."@types/long-4.0.1" 110526 - sources."@types/node-16.4.12" 110391 + sources."@types/node-16.4.13" 110527 110392 sources."@types/request-2.48.7" 110528 110393 sources."@types/request-promise-native-1.0.18" 110529 110394 sources."@types/responselike-1.0.0" ··· 110557 110422 }) 110558 110423 (sources."archiver-5.3.0" // { 110559 110424 dependencies = [ 110560 - sources."async-3.2.0" 110425 + sources."async-3.2.1" 110561 110426 sources."bl-4.1.0" 110562 110427 sources."tar-stream-2.2.0" 110563 110428 ]; ··· 110584 110449 sources."async-2.6.3" 110585 110450 sources."asynckit-0.4.0" 110586 110451 sources."at-least-node-1.0.0" 110587 - (sources."aws-sdk-2.961.0" // { 110452 + (sources."aws-sdk-2.963.0" // { 110588 110453 dependencies = [ 110589 110454 sources."buffer-4.9.2" 110590 110455 sources."ieee754-1.1.13" ··· 110866 110731 sources."responselike-2.0.0" 110867 110732 ]; 110868 110733 }) 110869 - sources."graceful-fs-4.2.6" 110734 + sources."graceful-fs-4.2.8" 110870 110735 sources."graphlib-2.1.8" 110871 110736 sources."har-schema-2.0.0" 110872 110737 sources."har-validator-5.1.5" ··· 110942 110807 sources."json-stringify-safe-5.0.1" 110943 110808 sources."jsonfile-4.0.0" 110944 110809 sources."jsprim-1.4.1" 110945 - (sources."jszip-3.7.0" // { 110810 + (sources."jszip-3.7.1" // { 110946 110811 dependencies = [ 110947 110812 sources."readable-stream-2.3.7" 110948 110813 sources."safe-buffer-5.1.2" ··· 111635 111500 sources."for-in-1.0.2" 111636 111501 sources."fragment-cache-0.2.1" 111637 111502 sources."get-value-2.0.6" 111638 - sources."graceful-fs-4.2.6" 111503 + sources."graceful-fs-4.2.8" 111639 111504 sources."graceful-readlink-1.0.1" 111640 111505 sources."has-value-1.0.0" 111641 111506 (sources."has-values-1.0.0" // { ··· 112101 111966 sources."arrify-2.0.1" 112102 111967 sources."asap-2.0.6" 112103 111968 sources."asn1-0.2.4" 112104 - sources."async-3.2.0" 111969 + sources."async-3.2.1" 112105 111970 sources."balanced-match-1.0.2" 112106 111971 sources."base64-js-1.5.1" 112107 111972 sources."bcrypt-pbkdf-1.0.2" ··· 112240 112105 sources."globalthis-1.0.2" 112241 112106 sources."globby-11.0.4" 112242 112107 sources."got-11.8.2" 112243 - sources."graceful-fs-4.2.6" 112108 + sources."graceful-fs-4.2.8" 112244 112109 sources."grapheme-splitter-1.0.4" 112245 112110 sources."gunzip-maybe-1.4.2" 112246 112111 sources."has-1.0.3" ··· 112261 112126 sources."inherits-2.0.4" 112262 112127 sources."ini-2.0.0" 112263 112128 sources."is-3.3.0" 112264 - sources."is-callable-1.2.3" 112129 + sources."is-callable-1.2.4" 112265 112130 sources."is-ci-2.0.0" 112266 112131 sources."is-deflate-1.0.0" 112267 112132 sources."is-docker-2.2.1" ··· 112287 112152 sources."json-buffer-3.0.1" 112288 112153 sources."json-file-plus-3.3.1" 112289 112154 sources."json-stringify-safe-5.0.1" 112290 - (sources."jszip-3.7.0" // { 112155 + (sources."jszip-3.7.1" // { 112291 112156 dependencies = [ 112292 112157 sources."pako-1.0.11" 112293 112158 sources."readable-stream-2.3.7" ··· 112530 112395 sources."p-map-2.1.0" 112531 112396 ]; 112532 112397 }) 112533 - sources."snyk-nuget-plugin-1.22.0" 112398 + (sources."snyk-nuget-plugin-1.22.0" // { 112399 + dependencies = [ 112400 + sources."jszip-3.7.0" 112401 + sources."pako-1.0.11" 112402 + sources."readable-stream-2.3.7" 112403 + sources."safe-buffer-5.1.2" 112404 + sources."string_decoder-1.1.1" 112405 + ]; 112406 + }) 112534 112407 sources."snyk-paket-parser-1.6.0" 112535 112408 (sources."snyk-php-plugin-1.9.2" // { 112536 112409 dependencies = [ ··· 112695 112568 sources."@types/component-emitter-1.2.10" 112696 112569 sources."@types/cookie-0.4.1" 112697 112570 sources."@types/cors-2.8.12" 112698 - sources."@types/node-16.4.12" 112571 + sources."@types/node-16.4.13" 112699 112572 sources."accepts-1.3.7" 112700 112573 sources."base64-arraybuffer-0.1.4" 112701 112574 sources."base64id-2.0.0" ··· 112780 112653 sources."get-stream-3.0.0" 112781 112654 sources."global-dirs-0.1.1" 112782 112655 sources."got-6.7.1" 112783 - sources."graceful-fs-4.2.6" 112656 + sources."graceful-fs-4.2.8" 112784 112657 sources."has-1.0.3" 112785 112658 sources."has-flag-3.0.0" 112786 112659 sources."hosted-git-info-2.8.9" ··· 113139 113012 sources."glob-parent-2.0.0" 113140 113013 sources."globby-4.1.0" 113141 113014 sources."gossip-query-2.0.2" 113142 - sources."graceful-fs-4.2.6" 113015 + sources."graceful-fs-4.2.8" 113143 113016 sources."has-1.0.3" 113144 113017 sources."has-ansi-2.0.0" 113145 113018 sources."has-bigints-1.0.1" 113146 113019 sources."has-network-0.0.1" 113147 113020 sources."has-symbols-1.0.2" 113021 + sources."has-tostringtag-1.0.0" 113148 113022 (sources."has-value-1.0.0" // { 113149 113023 dependencies = [ 113150 113024 sources."isobject-3.0.1" ··· 113182 113056 }) 113183 113057 sources."is-alphabetical-1.0.4" 113184 113058 sources."is-alphanumerical-1.0.4" 113185 - sources."is-arguments-1.1.0" 113186 - sources."is-bigint-1.0.2" 113059 + sources."is-arguments-1.1.1" 113060 + sources."is-bigint-1.0.3" 113187 113061 sources."is-binary-path-1.0.1" 113188 - sources."is-boolean-object-1.1.1" 113062 + sources."is-boolean-object-1.1.2" 113189 113063 sources."is-buffer-1.1.6" 113190 - sources."is-callable-1.2.3" 113064 + sources."is-callable-1.2.4" 113191 113065 sources."is-canonical-base64-1.1.1" 113192 113066 sources."is-core-module-2.5.0" 113193 113067 (sources."is-data-descriptor-1.0.0" // { ··· 113195 113069 sources."kind-of-6.0.3" 113196 113070 ]; 113197 113071 }) 113198 - sources."is-date-object-1.0.4" 113072 + sources."is-date-object-1.0.5" 113199 113073 sources."is-decimal-1.0.4" 113200 113074 (sources."is-descriptor-1.0.2" // { 113201 113075 dependencies = [ ··· 113212 113086 sources."is-map-2.0.2" 113213 113087 sources."is-negative-zero-2.0.1" 113214 113088 sources."is-number-2.1.0" 113215 - sources."is-number-object-1.0.5" 113089 + sources."is-number-object-1.0.6" 113216 113090 sources."is-options-1.0.1" 113217 113091 (sources."is-plain-object-2.0.4" // { 113218 113092 dependencies = [ ··· 113221 113095 }) 113222 113096 sources."is-posix-bracket-0.1.1" 113223 113097 sources."is-primitive-2.0.0" 113224 - sources."is-regex-1.1.3" 113098 + sources."is-regex-1.1.4" 113225 113099 sources."is-set-2.0.2" 113226 - sources."is-string-1.0.6" 113100 + sources."is-string-1.0.7" 113227 113101 sources."is-symbol-1.0.4" 113228 - sources."is-typed-array-1.1.5" 113102 + sources."is-typed-array-1.1.7" 113229 113103 sources."is-typedarray-1.0.0" 113230 113104 sources."is-valid-domain-0.0.20" 113231 113105 sources."is-weakmap-2.0.1" ··· 113585 113459 sources."shebang-regex-1.0.0" 113586 113460 sources."shellsubstitute-1.2.0" 113587 113461 sources."side-channel-1.0.4" 113588 - sources."smart-buffer-4.1.0" 113462 + sources."smart-buffer-4.2.0" 113589 113463 (sources."snapdragon-0.8.2" // { 113590 113464 dependencies = [ 113591 113465 sources."debug-2.6.9" ··· 113792 113666 sources."which-1.3.1" 113793 113667 sources."which-boxed-primitive-1.0.2" 113794 113668 sources."which-collection-1.0.1" 113795 - sources."which-typed-array-1.1.4" 113669 + sources."which-typed-array-1.1.6" 113796 113670 sources."word-wrap-1.2.3" 113797 113671 sources."wrap-fn-0.1.5" 113798 113672 sources."wrappy-1.0.2" ··· 113896 113770 sources."async-1.5.2" 113897 113771 sources."async-limiter-1.0.1" 113898 113772 sources."asynckit-0.4.0" 113899 - (sources."aws-sdk-2.961.0" // { 113773 + (sources."aws-sdk-2.963.0" // { 113900 113774 dependencies = [ 113901 113775 sources."uuid-3.3.2" 113902 113776 ]; ··· 114105 113979 sources."debug-3.2.7" 114106 113980 ]; 114107 113981 }) 114108 - sources."graceful-fs-4.2.6" 113982 + sources."graceful-fs-4.2.8" 114109 113983 sources."graphlib-2.1.8" 114110 113984 sources."har-schema-2.0.0" 114111 113985 sources."har-validator-2.0.6" ··· 114118 113992 }) 114119 113993 sources."has-cors-1.1.0" 114120 113994 sources."has-symbols-1.0.2" 113995 + sources."has-tostringtag-1.0.0" 114121 113996 sources."hawk-3.1.3" 114122 113997 sources."highlight.js-8.2.0" 114123 113998 (sources."hipchatter-0.3.2" // { ··· 114160 114035 sources."is-my-json-valid-2.20.5" 114161 114036 sources."is-promise-2.2.2" 114162 114037 sources."is-property-1.0.2" 114163 - sources."is-regex-1.1.3" 114038 + sources."is-regex-1.1.4" 114164 114039 sources."is-stream-1.1.0" 114165 114040 sources."is-typedarray-1.0.0" 114166 114041 sources."is-utf8-0.2.1" ··· 114772 114647 sources."domelementtype-1.3.1" 114773 114648 sources."domhandler-2.4.2" 114774 114649 sources."domutils-1.7.0" 114775 - sources."electron-to-chromium-1.3.796" 114650 + sources."electron-to-chromium-1.3.799" 114776 114651 sources."emoji-regex-8.0.0" 114777 114652 sources."entities-1.1.2" 114778 114653 sources."error-ex-1.3.2" ··· 115014 114889 sources."@emmetio/abbreviation-2.2.2" 115015 114890 sources."@emmetio/css-abbreviation-2.1.4" 115016 114891 sources."@emmetio/scanner-1.0.0" 115017 - sources."@types/node-16.4.12" 114892 + sources."@types/node-16.4.13" 115018 114893 sources."@types/pug-2.0.5" 115019 114894 sources."@types/sass-1.16.1" 115020 114895 sources."anymatch-3.1.2" ··· 115096 114971 sha512 = "eGEuZ3UEanOhlpQhICLjKejDxcZ9uYJlGnBGKAPW7uugolaBE6HpEBIiKFZN/TMRFFHQUURgGvsVn8/HJUBfeQ=="; 115097 114972 }; 115098 114973 dependencies = [ 115099 - sources."@types/node-16.4.12" 114974 + sources."@types/node-16.4.13" 115100 114975 sources."@types/pug-2.0.5" 115101 114976 sources."@types/sass-1.16.1" 115102 114977 sources."ansi-styles-4.3.0" ··· 115405 115280 }) 115406 115281 sources."global-dirs-0.1.1" 115407 115282 sources."got-6.7.1" 115408 - sources."graceful-fs-4.2.6" 115283 + sources."graceful-fs-4.2.8" 115409 115284 (sources."graphlib-2.1.8" // { 115410 115285 dependencies = [ 115411 115286 sources."lodash-4.17.21" ··· 116066 115941 sources."errno-0.1.8" 116067 115942 sources."fs.realpath-1.0.0" 116068 115943 sources."glob-7.1.7" 116069 - sources."graceful-fs-4.2.6" 115944 + sources."graceful-fs-4.2.8" 116070 115945 sources."inflight-1.0.6" 116071 115946 sources."inherits-2.0.4" 116072 115947 sources."isarray-1.0.0" ··· 116199 116074 sources."get-intrinsic-1.1.1" 116200 116075 sources."get-stdin-5.0.1" 116201 116076 sources."glob-7.1.7" 116202 - sources."graceful-fs-4.2.6" 116077 + sources."graceful-fs-4.2.8" 116203 116078 sources."has-1.0.3" 116204 116079 sources."has-ansi-2.0.0" 116205 116080 sources."has-symbols-1.0.2" 116081 + sources."has-tostringtag-1.0.0" 116206 116082 sources."hosted-git-info-2.8.9" 116207 116083 sources."inflight-1.0.6" 116208 116084 sources."inherits-2.0.4" 116209 116085 sources."is-alphabetical-1.0.4" 116210 116086 sources."is-alphanumerical-1.0.4" 116211 - sources."is-arguments-1.1.0" 116087 + sources."is-arguments-1.1.1" 116212 116088 sources."is-arrayish-0.2.1" 116213 116089 sources."is-buffer-2.0.5" 116214 116090 sources."is-core-module-2.5.0" 116215 - sources."is-date-object-1.0.4" 116091 + sources."is-date-object-1.0.5" 116216 116092 sources."is-decimal-1.0.4" 116217 116093 sources."is-file-1.0.0" 116218 116094 sources."is-fullwidth-code-point-1.0.0" 116219 116095 sources."is-hexadecimal-1.0.4" 116220 116096 sources."is-plain-obj-2.1.0" 116221 - sources."is-regex-1.1.3" 116097 + sources."is-regex-1.1.4" 116222 116098 sources."is-utf8-0.2.1" 116223 116099 sources."js-yaml-3.14.1" 116224 116100 sources."json-parse-better-errors-1.0.2" ··· 116548 116424 ]; 116549 116425 }) 116550 116426 sources."got-9.6.0" 116551 - sources."graceful-fs-4.2.6" 116427 + sources."graceful-fs-4.2.8" 116552 116428 sources."hard-rejection-2.1.0" 116553 116429 sources."has-1.0.3" 116554 116430 sources."has-flag-3.0.0" ··· 117055 116931 sources."has-1.0.3" 117056 116932 sources."has-bigints-1.0.1" 117057 116933 sources."has-symbols-1.0.2" 116934 + sources."has-tostringtag-1.0.0" 117058 116935 sources."internal-slot-1.0.3" 117059 - sources."is-bigint-1.0.2" 117060 - sources."is-boolean-object-1.1.1" 117061 - sources."is-callable-1.2.3" 117062 - sources."is-date-object-1.0.4" 116936 + sources."is-bigint-1.0.3" 116937 + sources."is-boolean-object-1.1.2" 116938 + sources."is-callable-1.2.4" 116939 + sources."is-date-object-1.0.5" 117063 116940 sources."is-negative-zero-2.0.1" 117064 - sources."is-number-object-1.0.5" 117065 - sources."is-regex-1.1.3" 117066 - sources."is-string-1.0.6" 116941 + sources."is-number-object-1.0.6" 116942 + sources."is-regex-1.1.4" 116943 + sources."is-string-1.0.7" 117067 116944 sources."is-symbol-1.0.4" 117068 116945 sources."object-inspect-1.11.0" 117069 116946 sources."object-keys-1.1.1" ··· 117163 117040 sources."has-1.0.3" 117164 117041 sources."has-bigints-1.0.1" 117165 117042 sources."has-symbols-1.0.2" 117043 + sources."has-tostringtag-1.0.0" 117166 117044 sources."internal-slot-1.0.3" 117167 - sources."is-bigint-1.0.2" 117168 - sources."is-boolean-object-1.1.1" 117169 - sources."is-callable-1.2.3" 117045 + sources."is-bigint-1.0.3" 117046 + sources."is-boolean-object-1.1.2" 117047 + sources."is-callable-1.2.4" 117170 117048 sources."is-capitalized-1.0.0" 117171 - sources."is-date-object-1.0.4" 117049 + sources."is-date-object-1.0.5" 117172 117050 sources."is-negative-zero-2.0.1" 117173 - sources."is-number-object-1.0.5" 117174 - sources."is-regex-1.1.3" 117175 - sources."is-string-1.0.6" 117051 + sources."is-number-object-1.0.6" 117052 + sources."is-regex-1.1.4" 117053 + sources."is-string-1.0.7" 117176 117054 sources."is-symbol-1.0.4" 117177 117055 sources."object-inspect-1.11.0" 117178 117056 sources."object-keys-1.1.1" ··· 117244 117122 sources."@types/cacheable-request-6.0.2" 117245 117123 sources."@types/http-cache-semantics-4.0.1" 117246 117124 sources."@types/keyv-3.1.2" 117247 - sources."@types/node-16.4.12" 117125 + sources."@types/node-16.4.13" 117248 117126 sources."@types/responselike-1.0.0" 117249 117127 sources."abbrev-1.1.1" 117250 117128 sources."abstract-logging-2.0.1" ··· 117397 117275 sources."getpass-0.1.7" 117398 117276 sources."glob-7.1.7" 117399 117277 sources."got-11.5.2" 117400 - sources."graceful-fs-4.2.6" 117278 + sources."graceful-fs-4.2.8" 117401 117279 sources."grapheme-splitter-1.0.4" 117402 117280 sources."har-schema-2.0.0" 117403 117281 sources."har-validator-5.1.5" ··· 117728 117606 sources."ajv-6.12.6" 117729 117607 sources."asn1-0.2.4" 117730 117608 sources."assert-plus-1.0.0" 117731 - sources."async-3.2.0" 117609 + sources."async-3.2.1" 117732 117610 sources."asynckit-0.4.0" 117733 117611 sources."at-least-node-1.0.0" 117734 117612 sources."aws-sign2-0.7.0" ··· 117763 117641 sources."fs.realpath-1.0.0" 117764 117642 sources."getpass-0.1.7" 117765 117643 sources."glob-7.1.7" 117766 - sources."graceful-fs-4.2.6" 117644 + sources."graceful-fs-4.2.8" 117767 117645 sources."har-schema-2.0.0" 117768 117646 sources."har-validator-5.1.5" 117769 117647 sources."http-signature-1.2.0" ··· 118157 118035 sources."glob-7.1.7" 118158 118036 sources."glob-parent-5.1.2" 118159 118037 sources."globby-11.0.4" 118160 - sources."graceful-fs-4.2.6" 118038 + sources."graceful-fs-4.2.8" 118161 118039 sources."ignore-5.1.8" 118162 118040 sources."indent-string-4.0.0" 118163 118041 sources."inflight-1.0.6" ··· 118270 118148 ]; 118271 118149 }) 118272 118150 sources."array-flatten-1.1.1" 118273 - sources."async-3.2.0" 118151 + sources."async-3.2.1" 118274 118152 sources."balanced-match-1.0.2" 118275 118153 sources."base64-arraybuffer-0.1.4" 118276 118154 sources."base64id-2.0.0" ··· 118540 118418 sha512 = "N+ENrder8z9zJQF9UM7K3/1LcfVW60omqeyaQsu6GN1BGdCgPm8gdHssn7WRD7vx+ABKc82IE1+pJyHOPkwe+w=="; 118541 118419 }; 118542 118420 dependencies = [ 118543 - sources."@types/node-16.4.12" 118421 + sources."@types/node-16.4.13" 118544 118422 sources."@types/unist-2.0.6" 118545 118423 sources."@types/vfile-3.0.2" 118546 118424 sources."@types/vfile-message-2.0.0" ··· 118910 118788 vercel = nodeEnv.buildNodePackage { 118911 118789 name = "vercel"; 118912 118790 packageName = "vercel"; 118913 - version = "23.0.1"; 118791 + version = "23.1.1"; 118914 118792 src = fetchurl { 118915 - url = "https://registry.npmjs.org/vercel/-/vercel-23.0.1.tgz"; 118916 - sha512 = "gY9D74WG9OL7TB/z1g4fypxq3eSiWtFMFx1gIbNf0DXIHGxWG+eczhGxa3IiZ14HhrebTfiPnM8O26AL81MVrQ=="; 118793 + url = "https://registry.npmjs.org/vercel/-/vercel-23.1.1.tgz"; 118794 + sha512 = "9HScSWBFGHmFvvInD0IgbkIrP1+rPjajDlI0n/7HTPOgZ68l2DShEpN6Igt2BPFQhbMK8Fwt5MNuC5RM6JTI2Q=="; 118917 118795 }; 118918 118796 dependencies = [ 118919 118797 sources."@sindresorhus/is-0.14.0" 118920 118798 sources."@szmarczak/http-timer-1.1.2" 118921 - sources."@types/node-16.4.12" 118922 - sources."@vercel/build-utils-2.11.1" 118923 - sources."@vercel/go-1.2.2" 118924 - sources."@vercel/node-1.11.1" 118925 - sources."@vercel/python-2.0.4" 118926 - sources."@vercel/ruby-1.2.6" 118799 + sources."@types/node-16.4.13" 118800 + sources."@vercel/build-utils-2.12.1" 118801 + sources."@vercel/go-1.2.3" 118802 + sources."@vercel/node-1.12.0" 118803 + sources."@vercel/python-2.0.5" 118804 + sources."@vercel/ruby-1.2.7" 118927 118805 (sources."ansi-align-3.0.0" // { 118928 118806 dependencies = [ 118929 118807 sources."string-width-3.1.0" ··· 118961 118839 sources."get-stream-4.1.0" 118962 118840 sources."global-dirs-2.1.0" 118963 118841 sources."got-9.6.0" 118964 - sources."graceful-fs-4.2.6" 118842 + sources."graceful-fs-4.2.8" 118965 118843 sources."has-flag-4.0.0" 118966 118844 sources."has-yarn-2.1.0" 118967 118845 sources."http-cache-semantics-4.1.0" ··· 119016 118894 sources."ts-node-8.9.1" 119017 118895 sources."type-fest-0.8.1" 119018 118896 sources."typedarray-to-buffer-3.1.5" 119019 - sources."typescript-3.9.3" 118897 + sources."typescript-4.3.4" 119020 118898 sources."unique-string-2.0.0" 119021 118899 sources."update-notifier-4.1.0" 119022 118900 sources."url-parse-lax-3.0.0" ··· 119420 119298 sources."@types/json-schema-7.0.9" 119421 119299 sources."@types/mocha-7.0.2" 119422 119300 sources."@types/node-8.10.66" 119423 - sources."@types/vscode-1.58.1" 119301 + sources."@types/vscode-1.59.0" 119424 119302 sources."@types/yauzl-2.9.2" 119425 119303 sources."@ungap/promise-all-settled-1.1.2" 119426 119304 sources."@webassemblyjs/ast-1.11.1" ··· 119505 119383 sources."domelementtype-2.2.0" 119506 119384 sources."domhandler-4.2.0" 119507 119385 sources."domutils-2.7.0" 119508 - sources."electron-to-chromium-1.3.796" 119386 + sources."electron-to-chromium-1.3.799" 119509 119387 sources."emoji-regex-8.0.0" 119510 119388 sources."emojis-list-3.0.0" 119511 119389 sources."enhanced-resolve-5.8.2" ··· 119540 119418 sources."glob-7.1.6" 119541 119419 sources."glob-parent-5.1.2" 119542 119420 sources."glob-to-regexp-0.4.1" 119543 - sources."graceful-fs-4.2.6" 119421 + sources."graceful-fs-4.2.8" 119544 119422 sources."growl-1.10.5" 119545 119423 sources."has-1.0.3" 119546 119424 sources."has-flag-4.0.0" ··· 119714 119592 sources."vscode-debugadapter-testsupport-1.48.0" 119715 119593 sources."vscode-debugprotocol-1.48.0" 119716 119594 sources."watchpack-2.2.0" 119717 - sources."webpack-5.48.0" 119595 + sources."webpack-5.49.0" 119718 119596 (sources."webpack-cli-4.7.2" // { 119719 119597 dependencies = [ 119720 119598 sources."commander-7.2.0" ··· 119867 119745 sources."git-clone-0.1.0" 119868 119746 sources."glob-7.1.7" 119869 119747 sources."got-6.7.1" 119870 - sources."graceful-fs-4.2.6" 119748 + sources."graceful-fs-4.2.8" 119871 119749 sources."gray-matter-2.1.1" 119872 119750 sources."handlebars-4.7.7" 119873 119751 sources."har-schema-2.0.0" ··· 120071 119949 sources."@starptech/rehype-webparser-0.10.0" 120072 119950 sources."@starptech/webparser-0.10.0" 120073 119951 sources."@szmarczak/http-timer-1.1.2" 120074 - sources."@types/node-16.4.12" 119952 + sources."@types/node-16.4.13" 120075 119953 sources."@types/unist-2.0.6" 120076 119954 sources."@types/vfile-3.0.2" 120077 119955 sources."@types/vfile-message-2.0.0" ··· 120371 120249 sources."get-stream-4.1.0" 120372 120250 ]; 120373 120251 }) 120374 - sources."graceful-fs-4.2.6" 120252 + sources."graceful-fs-4.2.8" 120375 120253 sources."gridsome-helper-json-1.0.3" 120376 120254 sources."has-1.0.3" 120377 120255 (sources."has-ansi-2.0.0" // { ··· 121081 120959 sources."gauge-2.7.4" 121082 120960 sources."get-caller-file-2.0.5" 121083 120961 sources."glob-7.1.7" 121084 - sources."graceful-fs-4.2.6" 120962 + sources."graceful-fs-4.2.8" 121085 120963 sources."has-unicode-2.0.1" 121086 120964 sources."html-encoding-sniffer-2.0.1" 121087 120965 sources."http-proxy-agent-4.0.1" ··· 121243 121121 sources."@sindresorhus/is-0.14.0" 121244 121122 sources."@szmarczak/http-timer-1.1.2" 121245 121123 sources."@types/minimatch-3.0.5" 121246 - sources."@types/node-16.4.12" 121124 + sources."@types/node-16.4.13" 121247 121125 sources."@types/yauzl-2.9.1" 121248 121126 sources."acorn-7.4.1" 121249 121127 sources."acorn-jsx-5.3.2" ··· 121350 121228 sources."delayed-stream-1.0.0" 121351 121229 (sources."dispensary-0.62.0" // { 121352 121230 dependencies = [ 121353 - sources."async-3.2.0" 121231 + sources."async-3.2.1" 121354 121232 ]; 121355 121233 }) 121356 121234 sources."doctrine-3.0.0" ··· 121464 121342 sources."get-stream-4.1.0" 121465 121343 ]; 121466 121344 }) 121467 - sources."graceful-fs-4.2.6" 121345 + sources."graceful-fs-4.2.8" 121468 121346 sources."graceful-readlink-1.0.1" 121469 121347 sources."growly-1.3.0" 121470 121348 sources."har-schema-2.0.0" ··· 121472 121350 sources."has-1.0.3" 121473 121351 sources."has-flag-4.0.0" 121474 121352 sources."has-symbols-1.0.2" 121353 + sources."has-tostringtag-1.0.0" 121475 121354 sources."has-yarn-2.1.0" 121476 121355 sources."htmlparser2-6.1.0" 121477 121356 sources."http-cache-semantics-4.1.0" ··· 121488 121367 sources."ini-2.0.0" 121489 121368 sources."invert-kv-3.0.1" 121490 121369 sources."is-absolute-0.1.7" 121491 - sources."is-arguments-1.1.0" 121370 + sources."is-arguments-1.1.1" 121492 121371 sources."is-arrayish-0.2.1" 121493 121372 sources."is-ci-2.0.0" 121494 - sources."is-date-object-1.0.4" 121373 + sources."is-date-object-1.0.5" 121495 121374 sources."is-docker-2.2.1" 121496 121375 sources."is-extglob-2.1.1" 121497 121376 sources."is-fullwidth-code-point-3.0.0" ··· 121501 121380 sources."is-npm-5.0.0" 121502 121381 sources."is-obj-2.0.0" 121503 121382 sources."is-path-inside-3.0.3" 121504 - sources."is-regex-1.1.3" 121383 + sources."is-regex-1.1.4" 121505 121384 sources."is-relative-0.1.3" 121506 121385 sources."is-stream-2.0.1" 121507 121386 sources."is-typedarray-1.0.0" ··· 121535 121414 ]; 121536 121415 }) 121537 121416 sources."jsprim-1.4.1" 121538 - sources."jszip-3.7.0" 121417 + sources."jszip-3.7.1" 121539 121418 sources."jwa-1.4.1" 121540 121419 sources."jws-3.2.2" 121541 121420 sources."keyv-3.1.0" ··· 121779 121658 sources."yauzl-2.10.0" 121780 121659 (sources."zip-dir-2.0.0" // { 121781 121660 dependencies = [ 121782 - sources."async-3.2.0" 121661 + sources."async-3.2.1" 121783 121662 ]; 121784 121663 }) 121785 121664 ]; ··· 121796 121675 webpack = nodeEnv.buildNodePackage { 121797 121676 name = "webpack"; 121798 121677 packageName = "webpack"; 121799 - version = "5.48.0"; 121678 + version = "5.49.0"; 121800 121679 src = fetchurl { 121801 - url = "https://registry.npmjs.org/webpack/-/webpack-5.48.0.tgz"; 121802 - sha512 = "CGe+nfbHrYzbk7SKoYITCgN3LRAG0yVddjNUecz9uugo1QtYdiyrVD8nP1PhkNqPfdxC2hknmmKpP355Epyn6A=="; 121680 + url = "https://registry.npmjs.org/webpack/-/webpack-5.49.0.tgz"; 121681 + sha512 = "XarsANVf28A7Q3KPxSnX80EkCcuOer5hTOEJWJNvbskOZ+EK3pobHarGHceyUZMxpsTHBHhlV7hiQyLZzGosYw=="; 121803 121682 }; 121804 121683 dependencies = [ 121805 121684 sources."@types/eslint-7.28.0" 121806 121685 sources."@types/eslint-scope-3.7.1" 121807 121686 sources."@types/estree-0.0.50" 121808 121687 sources."@types/json-schema-7.0.9" 121809 - sources."@types/node-16.4.12" 121688 + sources."@types/node-16.4.13" 121810 121689 sources."@webassemblyjs/ast-1.11.1" 121811 121690 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 121812 121691 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 121834 121713 sources."chrome-trace-event-1.0.3" 121835 121714 sources."colorette-1.2.2" 121836 121715 sources."commander-2.20.3" 121837 - sources."electron-to-chromium-1.3.796" 121716 + sources."electron-to-chromium-1.3.799" 121838 121717 sources."enhanced-resolve-5.8.2" 121839 121718 sources."es-module-lexer-0.7.1" 121840 121719 sources."escalade-3.1.1" ··· 121849 121728 sources."fast-deep-equal-3.1.3" 121850 121729 sources."fast-json-stable-stringify-2.1.0" 121851 121730 sources."glob-to-regexp-0.4.1" 121852 - sources."graceful-fs-4.2.6" 121731 + sources."graceful-fs-4.2.8" 121853 121732 sources."has-flag-4.0.0" 121854 121733 sources."jest-worker-27.0.6" 121855 121734 sources."json-parse-better-errors-1.0.2" ··· 121971 121850 dependencies = [ 121972 121851 sources."@types/glob-7.1.4" 121973 121852 sources."@types/minimatch-3.0.5" 121974 - sources."@types/node-16.4.12" 121853 + sources."@types/node-16.4.13" 121975 121854 sources."accepts-1.3.7" 121976 121855 sources."ajv-6.12.6" 121977 121856 sources."ajv-errors-1.0.1" ··· 122179 122058 sources."pify-2.3.0" 122180 122059 ]; 122181 122060 }) 122182 - sources."graceful-fs-4.2.6" 122061 + sources."graceful-fs-4.2.8" 122183 122062 sources."handle-thing-2.0.1" 122184 122063 sources."has-1.0.3" 122185 122064 sources."has-flag-3.0.0" 122186 122065 sources."has-symbols-1.0.2" 122066 + sources."has-tostringtag-1.0.0" 122187 122067 sources."has-value-1.0.0" 122188 122068 (sources."has-values-1.0.0" // { 122189 122069 dependencies = [ ··· 122211 122091 sources."ipaddr.js-1.9.1" 122212 122092 sources."is-absolute-url-3.0.3" 122213 122093 sources."is-accessor-descriptor-1.0.0" 122214 - sources."is-arguments-1.1.0" 122094 + sources."is-arguments-1.1.1" 122215 122095 sources."is-binary-path-1.0.1" 122216 122096 sources."is-buffer-1.1.6" 122217 122097 sources."is-data-descriptor-1.0.0" 122218 - sources."is-date-object-1.0.4" 122098 + sources."is-date-object-1.0.5" 122219 122099 sources."is-descriptor-1.0.2" 122220 122100 sources."is-extendable-1.0.1" 122221 122101 sources."is-extglob-2.1.1" ··· 122230 122110 sources."is-path-in-cwd-2.1.0" 122231 122111 sources."is-path-inside-2.1.0" 122232 122112 sources."is-plain-object-2.0.4" 122233 - sources."is-regex-1.1.3" 122113 + sources."is-regex-1.1.4" 122234 122114 sources."is-stream-1.1.0" 122235 122115 sources."is-windows-1.0.2" 122236 122116 sources."is-wsl-1.1.0" ··· 122607 122487 webtorrent-cli = nodeEnv.buildNodePackage { 122608 122488 name = "webtorrent-cli"; 122609 122489 packageName = "webtorrent-cli"; 122610 - version = "3.5.3"; 122490 + version = "3.5.4"; 122611 122491 src = fetchurl { 122612 - url = "https://registry.npmjs.org/webtorrent-cli/-/webtorrent-cli-3.5.3.tgz"; 122613 - sha512 = "Av+6PnflFJueTj19z6Pv/ai9KzOV8r7nClBiQCBbO55eqNL6pNBV47N/KwxDIPx8OeATTFEA/joCohi5AD/8TQ=="; 122492 + url = "https://registry.npmjs.org/webtorrent-cli/-/webtorrent-cli-3.5.4.tgz"; 122493 + sha512 = "7YZv5fSs6tf0JPSQT5eT02t+IgZR7sHPGGSbT2ZmE4VO3X1a4WhSIP4tIpQCNxbzcKCCe6NFimpTxlxXNF/KEQ=="; 122614 122494 }; 122615 122495 dependencies = [ 122616 122496 sources."@leichtgewicht/ip-codec-2.0.3" ··· 122625 122505 sources."@protobufjs/pool-1.1.0" 122626 122506 sources."@protobufjs/utf8-1.1.0" 122627 122507 sources."@types/long-4.0.1" 122628 - sources."@types/node-16.4.12" 122508 + sources."@types/node-16.4.13" 122629 122509 sources."addr-to-ip-port-1.5.4" 122630 122510 sources."airplay-js-0.3.0" 122631 122511 sources."ansi-regex-5.0.0" ··· 122710 122590 }) 122711 122591 sources."core-util-is-1.0.2" 122712 122592 sources."cpus-1.0.3" 122713 - sources."create-torrent-4.7.2" 122593 + sources."create-torrent-5.0.1" 122714 122594 sources."debug-2.6.9" 122715 122595 sources."decompress-response-3.3.0" 122716 122596 sources."define-lazy-prop-2.0.0" ··· 122915 122795 sources."utp-native-2.5.3" 122916 122796 sources."videostream-3.2.2" 122917 122797 sources."vlc-command-1.2.0" 122918 - (sources."webtorrent-1.3.7" // { 122798 + (sources."webtorrent-1.3.9" // { 122919 122799 dependencies = [ 122920 122800 sources."debug-4.3.2" 122921 122801 sources."decompress-response-6.0.0" ··· 123307 123187 sources."p-cancelable-0.4.1" 123308 123188 ]; 123309 123189 }) 123310 - sources."graceful-fs-4.2.6" 123190 + sources."graceful-fs-4.2.8" 123311 123191 sources."grouped-queue-2.0.0" 123312 123192 sources."har-schema-2.0.0" 123313 123193 sources."har-validator-5.1.5" ··· 123724 123604 sources."shebang-regex-1.0.0" 123725 123605 sources."signal-exit-3.0.3" 123726 123606 sources."slash-3.0.0" 123727 - sources."smart-buffer-4.1.0" 123607 + sources."smart-buffer-4.2.0" 123728 123608 sources."socks-2.6.1" 123729 123609 (sources."socks-proxy-agent-5.0.1" // { 123730 123610 dependencies = [ ··· 123988 123868 dependencies = [ 123989 123869 sources."@types/fs-extra-9.0.12" 123990 123870 sources."@types/minimist-1.2.2" 123991 - sources."@types/node-16.4.12" 123871 + sources."@types/node-16.4.13" 123992 123872 sources."@types/node-fetch-2.5.12" 123993 123873 sources."ansi-styles-4.3.0" 123994 123874 sources."asynckit-0.4.0" ··· 123999 123879 sources."delayed-stream-1.0.0" 124000 123880 sources."form-data-3.0.1" 124001 123881 sources."fs-extra-10.0.0" 124002 - sources."graceful-fs-4.2.6" 123882 + sources."graceful-fs-4.2.8" 124003 123883 sources."has-flag-4.0.0" 124004 123884 sources."isexe-2.0.0" 124005 123885 sources."jsonfile-6.1.0"
+5 -15
pkgs/development/ocaml-modules/eliom/default.nix
··· 1 - { stdenv, lib, fetchzip, fetchpatch, which, ocsigen_server, ocaml, 1 + { stdenv, lib, fetchzip, which, ocsigen_server, ocaml, 2 2 lwt_react, 3 3 opaline, ppx_deriving, findlib 4 4 , ocaml-migrate-parsetree ··· 7 7 , js_of_ocaml-lwt 8 8 , js_of_ocaml-tyxml 9 9 , lwt_ppx 10 + , ocamlnet 10 11 }: 11 12 12 - if !lib.versionAtLeast ocaml.version "4.07" 13 - then throw "eliom is not available for OCaml ${ocaml.version}" 14 - else 15 - 16 13 stdenv.mkDerivation rec 17 14 { 18 15 pname = "eliom"; 19 - version = "6.12.4"; 16 + version = "8.6.0"; 20 17 21 18 src = fetchzip { 22 19 url = "https://github.com/ocsigen/eliom/archive/${version}.tar.gz"; 23 - sha256 = "00m6v2k4mg8705dy41934lznl6gj91i6dk7p1nkaccm51nna25kz"; 20 + sha256 = "0s1hpawwhqp4qcy8w1067n8c6zg8jcjpzplc39bjbb1ycqw667j9"; 24 21 }; 25 22 26 - patches = [ 27 - # Compatibility with js_of_ocaml >= 3.9.0, remove at next release 28 - (fetchpatch { 29 - url = "https://github.com/ocsigen/eliom/commit/4106a4217956f7b74a8ef3f73a1e1f55e02ade45.patch"; 30 - sha256 = "1cgbvpljn9x6zxirxf3rdjrsdwy319ykz3qq03c36cc40hy2w13p"; 31 - }) 32 - ]; 33 - 34 23 buildInputs = [ ocaml which findlib js_of_ocaml-ocamlbuild 35 24 ocaml-migrate-parsetree 36 25 js_of_ocaml-ppx_deriving_json opaline 37 26 ppx_tools_versioned 27 + ocamlnet 38 28 ]; 39 29 40 30 propagatedBuildInputs = [
+27 -18
pkgs/development/ocaml-modules/ocsigen-server/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, which, ocaml, findlib, lwt_react, ssl, lwt_ssl 2 - , lwt_log, ocamlnet, ocaml_pcre, cryptokit, tyxml, xml-light, ipaddr 1 + { lib, buildDunePackage, fetchFromGitHub, which, ocaml, lwt_react, ssl, lwt_ssl 2 + , bigstringaf, lwt, cstruct, mirage-crypto, zarith, mirage-crypto-ec, ptime, mirage-crypto-rng, mtime, ca-certs 3 + , cohttp, cohttp-lwt-unix, hmap 4 + , lwt_log, ocaml_pcre, cryptokit, xml-light, ipaddr 3 5 , pgocaml, camlzip, ocaml_sqlite3 4 6 , makeWrapper 5 7 }: 6 8 7 - if !lib.versionAtLeast ocaml.version "4.06.1" 8 - then throw "ocsigenserver is not available for OCaml ${ocaml.version}" 9 - else 9 + let mkpath = p: 10 + "${p}/lib/ocaml/${ocaml.version}/site-lib/stublibs"; 11 + in 10 12 11 - let mkpath = p: n: 12 - "${p}/lib/ocaml/${ocaml.version}/site-lib/${n}"; 13 - in 13 + let caml_ld_library_path = 14 + lib.concatMapStringsSep ":" mkpath [ 15 + bigstringaf lwt ssl cstruct mirage-crypto zarith mirage-crypto-ec ptime mirage-crypto-rng mtime ca-certs cryptokit ocaml_pcre 16 + ] 17 + ; in 14 18 15 - stdenv.mkDerivation rec { 16 - version = "2.18.0"; 19 + buildDunePackage rec { 20 + version = "4.0.1"; 17 21 pname = "ocsigenserver"; 22 + 23 + useDune2 = true; 24 + minimalOCamlVersion = "4.08"; 18 25 19 26 src = fetchFromGitHub { 20 27 owner = "ocsigen"; 21 28 repo = "ocsigenserver"; 22 29 rev = version; 23 - sha256 = "0c61wkq8ddy3qxb2x1jz04rz0722hk92r6jl1zvgikh74m5p5ipp"; 30 + sha256 = "0pid4irkmdmx1d6n2rvcvx5mnljl3hazzdqc3bql72by35izfac6"; 24 31 }; 25 32 26 - nativeBuildInputs = [ makeWrapper ]; 27 - buildInputs = [ which ocaml findlib lwt_react pgocaml camlzip ocaml_sqlite3 ]; 33 + nativeBuildInputs = [ makeWrapper which ]; 34 + buildInputs = [ lwt_react pgocaml camlzip ocaml_sqlite3 ]; 28 35 29 - propagatedBuildInputs = [ cryptokit ipaddr lwt_log lwt_ssl ocamlnet 30 - ocaml_pcre tyxml xml-light 36 + propagatedBuildInputs = [ cohttp cohttp-lwt-unix cryptokit hmap ipaddr lwt_log lwt_ssl 37 + ocaml_pcre xml-light 31 38 ]; 32 39 33 40 configureFlags = [ "--root $(out)" "--prefix /" ]; 34 41 35 42 dontAddPrefix = true; 36 43 37 - createFindlibDestdir = true; 44 + postConfigure = '' 45 + make -C src confs 46 + ''; 38 47 39 48 postFixup = 40 49 '' 41 50 rm -rf $out/var/run 42 51 wrapProgram $out/bin/ocsigenserver \ 43 - --suffix CAML_LD_LIBRARY_PATH : "${mkpath ssl "ssl"}:${mkpath ocamlnet "netsys"}:${mkpath ocamlnet "netstring"}:${mkpath ocaml_pcre "pcre"}:${mkpath ocaml_sqlite3 "sqlite3"}" 52 + --suffix CAML_LD_LIBRARY_PATH : "${caml_ld_library_path}" 44 53 ''; 45 54 46 55 dontPatchShebangs = true; ··· 51 60 longDescription ='' 52 61 A full featured Web server. It implements most features of the HTTP protocol, and has a very powerful extension mechanism that make very easy to plug your own OCaml modules for generating pages. 53 62 ''; 54 - license = lib.licenses.lgpl21; 63 + license = lib.licenses.lgpl21Only; 55 64 platforms = ocaml.meta.platforms or []; 56 65 maintainers = [ lib.maintainers.gal_bolle ]; 57 66 };
+9 -10
pkgs/development/ocaml-modules/ocsigen-start/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, ocaml, findlib, ocsigen-toolkit, pgocaml_ppx, safepass, yojson 2 2 , cohttp-lwt-unix 3 3 , resource-pooling 4 + , ocamlnet 4 5 }: 5 6 6 7 stdenv.mkDerivation rec { 7 8 name = "ocaml${ocaml.version}-ocsigen-start-${version}"; 8 - version = "2.18.0"; 9 + version = "4.3.0"; 9 10 10 11 buildInputs = [ ocaml findlib ]; 11 - propagatedBuildInputs = [ pgocaml_ppx safepass ocsigen-toolkit yojson resource-pooling cohttp-lwt-unix ]; 12 + propagatedBuildInputs = [ pgocaml_ppx safepass ocsigen-toolkit yojson resource-pooling cohttp-lwt-unix ocamlnet ]; 12 13 13 14 patches = [ ./templates-dir.patch ]; 14 15 15 - postPatch = '' 16 - substituteInPlace "src/os_db.ml" --replace "citext" "text" 17 - ''; 18 - 19 - createFindlibDestdir = true; 20 - 21 16 src = fetchFromGitHub { 22 17 owner = "ocsigen"; 23 18 repo = "ocsigen-start"; 24 19 rev = version; 25 - sha256 = "0wvh4c26g6qd6i1fryilcqz9giz7v6pnhc90sknhxh6jmwrbjl50"; 20 + sha256 = "0lkl59dwzyqq2lyr46fyjr27ms0fp9h59xfsn37faaavdd7v0h98"; 26 21 }; 27 22 23 + preInstall = '' 24 + mkdir -p $OCAMLFIND_DESTDIR 25 + ''; 26 + 28 27 meta = { 29 28 homepage = "http://ocsigen.org/ocsigen-start"; 30 29 description = "Eliom application skeleton"; 31 30 longDescription ='' 32 31 An Eliom application skeleton, ready to use to build your own application with users, (pre)registration, notifications, etc. 33 32 ''; 34 - license = lib.licenses.lgpl21; 33 + license = lib.licenses.lgpl21Only; 35 34 inherit (ocaml.meta) platforms; 36 35 maintainers = [ lib.maintainers.gal_bolle ]; 37 36 };
-3
pkgs/development/python-modules/ansible/core.nix
··· 42 42 postPatch = '' 43 43 substituteInPlace lib/ansible/executor/task_executor.py \ 44 44 --replace "[python," "[" 45 - 46 - substituteInPlace requirements.txt \ 47 - --replace "resolvelib >= 0.5.3, < 0.6.0" "resolvelib" 48 45 ''; 49 46 50 47 nativeBuildInputs = [
+39
pkgs/development/python-modules/bagit/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , coverage 5 + , gettext 6 + , mock 7 + , pytestCheckHook 8 + , setuptools-scm 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "bagit"; 13 + version = "1.8.1"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "LibraryOfCongress"; 17 + repo = "bagit-python"; 18 + rev = "v${version}"; 19 + hash = "sha256-t01P7MPWgOrktuW2zF0TIzt6u/jkLmrpD2OnqawhJaI="; 20 + }; 21 + 22 + nativeBuildInputs = [ gettext setuptools-scm ]; 23 + 24 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 25 + 26 + checkInputs = [ 27 + mock 28 + pytestCheckHook 29 + ]; 30 + pytestFlagsArray = [ "test.py" ]; 31 + pythonImportsCheck = [ "bagit" ]; 32 + 33 + meta = with lib; { 34 + description = "Python library and command line utility for working with BagIt style packages"; 35 + homepage = "https://libraryofcongress.github.io/bagit-python/"; 36 + license = with licenses; [ publicDomain ]; 37 + maintainers = with maintainers; [ veprbl ]; 38 + }; 39 + }
+1 -1
pkgs/development/python-modules/ledgerwallet/default.nix
··· 36 36 homepage = "https://github.com/LedgerHQ/ledgerctl"; 37 37 description = "A library to control Ledger devices"; 38 38 license = licenses.mit; 39 - maintainers = with maintainers; [ xwvvvvwx ]; 39 + maintainers = with maintainers; [ d-xo ]; 40 40 }; 41 41 }
+5
pkgs/development/python-modules/pytorch/default.nix
··· 301 301 # Builds in 2+h with 2 cores, and ~15m with a big-parallel builder. 302 302 requiredSystemFeatures = [ "big-parallel" ]; 303 303 304 + passthru = { 305 + inherit cudaSupport; 306 + cudaArchList = final_cudaArchList; 307 + }; 308 + 304 309 meta = with lib; { 305 310 description = "Open source, prototype-to-production deep learning platform"; 306 311 homepage = "https://pytorch.org/";
+7 -2
pkgs/development/python-modules/resolvelib/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "resolvelib"; 10 - version = "0.7.1"; 10 + # Currently this package is only used by Ansible and breaking changes 11 + # are frequently introduced, so when upgrading ensure the new version 12 + # is compatible with Ansible 13 + # https://github.com/NixOS/nixpkgs/pull/128636 14 + # https://github.com/ansible/ansible/blob/devel/requirements.txt 15 + version = "0.5.5"; 11 16 12 17 src = fetchFromGitHub { 13 18 owner = "sarugaku"; 14 19 repo = "resolvelib"; 15 20 rev = version; 16 - sha256 = "1fqz75riagizihvf4j7wc3zjw6kmg1dd8sf49aszyml105kb33n8"; 21 + sha256 = "198vfv78hilpg0d0mjzchzp9zk6239wnra61vlsgwpcgz66d2bgv"; 17 22 }; 18 23 19 24 checkInputs = [
+45
pkgs/development/python-modules/schema-salad/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , cachecontrol 5 + , lockfile 6 + , mistune 7 + , rdflib 8 + , rdflib-jsonld 9 + , ruamel_yaml 10 + , pytestCheckHook 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "schema-salad"; 15 + version = "8.1.20210716111910"; 16 + 17 + src = fetchPypi { 18 + inherit pname version; 19 + sha256 = "3f851b385d044c58d359285ba471298b6199478a4978f892a83b15cbfb282f25"; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + cachecontrol 24 + lockfile 25 + mistune 26 + rdflib 27 + rdflib-jsonld 28 + ruamel_yaml 29 + ]; 30 + 31 + checkInputs = [ pytestCheckHook ]; 32 + disabledTests = [ 33 + # setup for these tests requires network access 34 + "test_secondaryFiles" 35 + "test_outputBinding" 36 + ]; 37 + pythonImportsCheck = [ "schema_salad" ]; 38 + 39 + meta = with lib; { 40 + description = "Semantic Annotations for Linked Avro Data"; 41 + homepage = "https://github.com/common-workflow-language/schema_salad"; 42 + license = with licenses; [ asl20 ]; 43 + maintainers = with maintainers; [ veprbl ]; 44 + }; 45 + }
+27
pkgs/development/python-modules/shellescape/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "shellescape"; 9 + version = "3.8.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "chrissimpkins"; 13 + repo = "shellescape"; 14 + rev = "v${version}"; 15 + hash = "sha256-HAe3Qf3lLeVWw/tVkW0J+CfoxSoOnCcWDR2nEWZn7HM="; 16 + }; 17 + 18 + checkInputs = [ pytestCheckHook ]; 19 + pythonImportsCheck = [ "shellescape" ]; 20 + 21 + meta = with lib; { 22 + description = "Shell escape a string to safely use it as a token in a shell command (backport of Python shlex.quote)"; 23 + homepage = "https://github.com/chrissimpkins/shellescape"; 24 + license = with licenses; [ mit psfl ]; 25 + maintainers = with maintainers; [ veprbl ]; 26 + }; 27 + }
+21 -3
pkgs/development/python-modules/torchvision/default.nix
··· 1 1 { lib 2 + , symlinkJoin 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , ninja ··· 10 11 , pillow 11 12 , pytorch 12 13 , pytest 14 + , cudatoolkit 15 + , cudnn 16 + , cudaSupport ? pytorch.cudaSupport or false # by default uses the value from pytorch 13 17 }: 14 18 15 - buildPythonPackage rec { 19 + let 20 + cudatoolkit_joined = symlinkJoin { 21 + name = "${cudatoolkit.name}-unsplit"; 22 + paths = [ cudatoolkit.out cudatoolkit.lib ]; 23 + }; 24 + cudaArchStr = lib.optionalString cudaSupport lib.strings.concatStringsSep ";" pytorch.cudaArchList; 25 + in buildPythonPackage rec { 16 26 pname = "torchvision"; 17 27 version = "0.10.0"; 18 28 ··· 23 33 sha256 = "13j04ij0jmi58nhav1p69xrm8dg7jisg23268i3n6lnms37n02kc"; 24 34 }; 25 35 26 - nativeBuildInputs = [ libpng ninja which ]; 36 + nativeBuildInputs = [ libpng ninja which ] 37 + ++ lib.optionals cudaSupport [ cudatoolkit_joined ]; 27 38 28 39 TORCHVISION_INCLUDE = "${libjpeg_turbo.dev}/include/"; 29 40 TORCHVISION_LIBRARY = "${libjpeg_turbo}/lib/"; 30 41 31 - buildInputs = [ libjpeg_turbo libpng ]; 42 + buildInputs = [ libjpeg_turbo libpng ] 43 + ++ lib.optionals cudaSupport [ cudnn ]; 32 44 33 45 propagatedBuildInputs = [ numpy pillow pytorch scipy ]; 34 46 47 + preBuild = lib.optionalString cudaSupport '' 48 + export TORCH_CUDA_ARCH_LIST="${cudaArchStr}" 49 + export FORCE_CUDA=1 50 + ''; 51 + 35 52 # tries to download many datasets for tests 36 53 doCheck = false; 37 54 ··· 45 62 description = "PyTorch vision library"; 46 63 homepage = "https://pytorch.org/"; 47 64 license = licenses.bsd3; 65 + platforms = with platforms; linux ++ lib.optionals (!cudaSupport) darwin; 48 66 maintainers = with maintainers; [ ericsagnes ]; 49 67 }; 50 68 }
+7 -13
pkgs/development/python-modules/trackpy/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , numpy ··· 7 8 , pandas 8 9 , pyyaml 9 10 , matplotlib 10 - , pytest 11 + , numba 12 + , pytestCheckHook 11 13 }: 12 14 13 15 buildPythonPackage rec { ··· 28 30 pandas 29 31 pyyaml 30 32 matplotlib 33 + numba 31 34 ]; 32 35 33 36 checkInputs = [ 34 - pytest 37 + pytestCheckHook 35 38 ]; 36 39 37 - checkPhase = '' 38 - ${lib.optionalString (stdenv.isDarwin) '' 40 + preCheck = lib.optionalString stdenv.isDarwin '' 39 41 # specifically needed for darwin 40 42 export HOME=$(mktemp -d) 41 43 mkdir -p $HOME/.matplotlib 42 44 echo "backend: ps" > $HOME/.matplotlib/matplotlibrc 43 - ''} 44 - 45 - pytest trackpy --ignore trackpy/tests/test_motion.py \ 46 - --ignore trackpy/tests/test_feature_saving.py \ 47 - --ignore trackpy/tests/test_feature.py \ 48 - --ignore trackpy/tests/test_plots.py \ 49 - --ignore trackpy/tests/test_legacy_linking.py 50 45 ''; 51 46 52 47 meta = with lib; { ··· 54 49 homepage = "https://github.com/soft-matter/trackpy"; 55 50 license = licenses.bsd3; 56 51 maintainers = [ maintainers.costrouc ]; 57 - broken = true; # not compatible with latest pandas 58 52 }; 59 53 }
+3 -3
pkgs/development/tools/analysis/tflint/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tflint"; 5 - version = "0.30.0"; 5 + version = "0.31.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "terraform-linters"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "0xdn8xakywms8gcacmjvx0ivv37i3vj1d41c8sjlnf1s13q3zv7k"; 11 + sha256 = "1aas07r5x2f7byzslfdqxi5dr0gwg5dy2qznnrs7w83ziqw6lxkm"; 12 12 }; 13 13 14 - vendorSha256 = "18w0wz3raysba99cxcc8pk4md9j438g4y2d2v2pk2l6qri9apscw"; 14 + vendorSha256 = "10b6ny1fq6iwvhgq5293cdvd55mq3xgr2sc9kqshvjznwimfnb5z"; 15 15 16 16 doCheck = false; 17 17
+2 -2
pkgs/development/tools/esbuild/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "esbuild"; 5 - version = "0.12.18"; 5 + version = "0.12.19"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "evanw"; 9 9 repo = "esbuild"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-sq5gdsrcakghd71+nXrtI980mlA6+GZW36tJkJkaJ2U="; 11 + sha256 = "sha256-keYKYSWQOiO3d38qrMicYWRZ0jpkzhdZhqOr5JcbA4M="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-2ABWPqhK2Cf4ipQH7XvRrd+ZscJhYPc3SV2cGT0apdg=";
+3 -3
pkgs/development/tools/fission/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "fission"; 5 - version = "1.13.1"; 5 + version = "1.14.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "fission"; 9 9 repo = "fission"; 10 10 rev = version; 11 - sha256 = "sha256-ayVEU2Dlqun8KLP+KeI0uU4p9N4aaYLZ/IHqfA2PGrI="; 11 + sha256 = "sha256-U/UV5NZXmycDp8+g5XV6P2b+4SutR51rVHdPp9HdPjM="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-V3/IFCbW3wXfNiFzucLeyFDc6SA2nE+NwO0sNEBmIYg="; 14 + vendorSha256 = "sha256-1ujJuhK7pm/A1Dd+Wm9dtc65mx9pwLBWMWwEJnbja8s="; 15 15 16 16 buildFlagsArray = "-ldflags=-s -w -X info.Version=${version}"; 17 17
+4 -5
pkgs/development/tools/go-containerregistry/default.nix
··· 10 10 rev = "v${version}"; 11 11 hash = "sha256-3mvGHAPKDUmrQkBKwlxnF6PG0ZpZDqlM9SMkCyC5ytE="; 12 12 }; 13 - 14 13 vendorSha256 = null; 15 14 16 15 subPackages = [ "cmd/crane" "cmd/gcrane" ]; 17 16 18 - buildFlagsArray = [ 19 - "-ldflags=-s -w -X github.com/google/go-containerregistry/cmd/crane/cmd.Version=${version} -X github.com/google/go-containerregistry/pkg/v1/remote/transport.Version=${version}" 20 - ]; 17 + ldflags = 18 + let t = "github.com/google/go-containerregistry"; in 19 + [ "-s" "-w" "-X ${t}/cmd/crane/cmd.Version=v${version}" "-X ${t}/pkg/v1/remote/transport.Version=${version}" ]; 21 20 22 21 # NOTE: no tests 23 22 doCheck = false; 24 23 25 24 meta = with lib; { 26 - description = "A tool for interacting with remote images and registries"; 25 + description = "Tools for interacting with remote images and registries including crane and gcrane"; 27 26 homepage = "https://github.com/google/go-containerregistry"; 28 27 license = licenses.apsl20; 29 28 maintainers = with maintainers; [ yurrriq ];
+3 -3
pkgs/development/tools/hcloud/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "hcloud"; 5 - version = "1.21.0"; 5 + version = "1.26.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hetznercloud"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-zXlsvuc778z1sxnv02mFJXQzkEEft0BdubWecvcytYg="; 11 + sha256 = "sha256-fKekn930nOGYUhkQus9p4sKcsuUks+KfO4+X5C/3nWg="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ installShellFiles ]; 15 15 16 - vendorSha256 = "sha256-QdTD6xeVNswaaMms82rFYb5jLDhxL+wQgaLVXqROSFs="; 16 + vendorSha256 = "sha256-yPRtqJTmYDqzwHyBmVV4HxOmMe7FuSZ/lsQj8PInhFg="; 17 17 18 18 doCheck = false; 19 19
+3 -3
pkgs/development/tools/misc/circleci-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "circleci-cli"; 5 - version = "0.1.15149"; 5 + version = "0.1.15663"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "CircleCI-Public"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-pmLDCNgCQv4fetl/q6ZokH1qF6pSqsR0DUWbzGeEtaw="; 11 + sha256 = "sha256-r5528iMy3RRSSRbTOTilnF1FkWBr5VOUWvAZQU/OBjc="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-j7VP/QKKMdmWQ60BYpChG4syDlll7CY4rb4wfb4+Z1s="; 14 + vendorSha256 = "sha256-VOPXM062CZ6a6CJGzYTHav1OkyiH7XUHXWrRdGekaGQ="; 15 15 16 16 doCheck = false; 17 17
+3
pkgs/development/tools/rust/rust-analyzer/update.sh
··· 51 51 jq '{ name, version, dependencies: (.dependencies + .devDependencies) }' "$node_src/package.json" \ 52 52 >"$build_deps/package.json.new" 53 53 54 + # FIXME: rollup@2.55.0 breaks the build: https://github.com/rollup/rollup/issues/4195 55 + sed 's/"rollup": ".*"/"rollup": "=2.51.1"/' --in-place "$build_deps/package.json.new" 56 + 54 57 if cmp --quiet "$build_deps"/package.json{.new,}; then 55 58 echo "package.json not changed, skip updating nodePackages" 56 59 rm "$build_deps"/package.json.new
+3 -3
pkgs/development/tools/stylua/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "stylua"; 11 - version = "0.10.0"; 11 + version = "0.10.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "johnnymorganz"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "03w976fghqs2kswab5bridpr2p6hgldjyfd3l4kz0p5h98f3wzvf"; 17 + sha256 = "12vflwk1h5ahamxiiaznx3k1ldi8il0adwb2rl58swmvfzbcm7y9"; 18 18 }; 19 19 20 - cargoSha256 = "1311ly02r6c2rqx0ssd6hpbw3sp0ffrf37bzdm66chxnh8cr83sj"; 20 + cargoSha256 = "1glkfxz9apmsqbyl8fy5gwywbr6k7cv0l47w2nfimg92qn9xzgks"; 21 21 22 22 cargoBuildFlags = lib.optionals lua52Support [ "--features" "lua52" ] 23 23 ++ lib.optionals luauSupport [ "--features" "luau" ];
+1 -1
pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
··· 17 17 "eslint": "^7.30.0", 18 18 "glob": "^7.1.6", 19 19 "mocha": "^9.0.2", 20 - "rollup": "^2.51.1", 20 + "rollup": "=2.51.1", 21 21 "tslib": "^2.3.0", 22 22 "typescript": "^4.3.5", 23 23 "typescript-formatter": "^7.2.2",
+7 -6
pkgs/os-specific/linux/fwts/default.nix
··· 1 - { lib, stdenv, fetchzip, autoreconfHook, pkg-config, glib, libtool, pcre 1 + { lib, stdenv, fetchzip, autoreconfHook, pkg-config, glib, pcre 2 2 , json_c, flex, bison, dtc, pciutils, dmidecode, iasl, libbsd }: 3 3 4 4 stdenv.mkDerivation rec { ··· 6 6 version = "20.11.00"; 7 7 8 8 src = fetchzip { 9 - url = "http://fwts.ubuntu.com/release/${pname}-V${version}.tar.gz"; 9 + url = "https://fwts.ubuntu.com/release/${pname}-V${version}.tar.gz"; 10 10 sha256 = "0s8iz6c9qhyndcsjscs3qail2mzfywpbiys1x232igm5kl089vvr"; 11 11 stripRoot = false; 12 12 }; 13 13 14 - nativeBuildInputs = [ autoreconfHook pkg-config libtool ]; 14 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 15 buildInputs = [ glib pcre json_c flex bison dtc pciutils dmidecode iasl libbsd ]; 16 16 17 17 postPatch = '' 18 - substituteInPlace src/lib/include/fwts_binpaths.h --replace "/usr/bin/lspci" "${pciutils}/bin/lspci" 19 - substituteInPlace src/lib/include/fwts_binpaths.h --replace "/usr/sbin/dmidecode" "${dmidecode}/bin/dmidecode" 20 - substituteInPlace src/lib/include/fwts_binpaths.h --replace "/usr/bin/iasl" "${iasl}/bin/iasl" 18 + substituteInPlace src/lib/include/fwts_binpaths.h \ 19 + --replace "/usr/bin/lspci" "${pciutils}/bin/lspci" \ 20 + --replace "/usr/sbin/dmidecode" "${dmidecode}/bin/dmidecode" \ 21 + --replace "/usr/bin/iasl" "${iasl}/bin/iasl" 21 22 ''; 22 23 23 24 enableParallelBuilding = true;
+1 -1
pkgs/servers/bazarr/default.nix
··· 33 33 description = "Subtitle manager for Sonarr and Radarr"; 34 34 homepage = "https://www.bazarr.media/"; 35 35 license = licenses.gpl3Only; 36 - maintainers = with maintainers; [ xwvvvvwx ]; 36 + maintainers = with maintainers; [ d-xo ]; 37 37 platforms = platforms.all; 38 38 }; 39 39 }
+3 -3
pkgs/servers/dendrite/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "matrix-dendrite"; 5 - version = "0.4.0"; 5 + version = "0.4.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "matrix-org"; 9 9 repo = "dendrite"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-BzQp466Zlp7n56n4SUH4cDRTt8EUWGw3q1dxIBB3TBM="; 11 + sha256 = "sha256-F2e+peM7DBihmos/oPar36UDHkibmlzIknCjMauOph8="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-ak7fWcAXbyVAiyaJZBGMoe2i2nDh4vc/gCC9nbjadJ0="; 14 + vendorSha256 = "sha256-M6mnFO+SInZNvtwMa02TvHIg14Ve7swlGcYfsQFioxQ="; 15 15 16 16 passthru.tests = { 17 17 inherit (nixosTests) dendrite;
+2 -2
pkgs/servers/headscale/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "headscale"; 5 - version = "0.5.1"; 5 + version = "0.5.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "juanfont"; 9 9 repo = "headscale"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-CYqtGTKOuQDpPOWwixRaczBOkIrYE1tdIieaxuvyqQo="; 11 + sha256 = "sha256-AclIH2Gd8U/Hfy24KOFic/np4qAWELlIMfsPCSkdjog="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-UIBH6Pf2mmXBsdFW0RRvedLQhonNsrl4j2fxxRtum4M=";
+2 -2
pkgs/servers/jackett/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "jackett"; 5 - version = "0.18.459"; 5 + version = "0.18.531"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.Mono.tar.gz"; 9 - sha256 = "sha256-KOdUMJ29bqJ7WyE4BxMDRsPdIKwZNRfrbIItdoeexUk="; 9 + sha256 = "sha256-ZykgYzE86bt5SNeHng995TQuE15ajWhThgqt2fJFizc="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/servers/keycloak/default.nix
··· 18 18 in 19 19 stdenv.mkDerivation rec { 20 20 pname = "keycloak"; 21 - version = "15.0.0"; 21 + version = "15.0.1"; 22 22 23 23 src = fetchzip { 24 24 url = "https://github.com/keycloak/keycloak/releases/download/${version}/keycloak-${version}.zip"; 25 - sha256 = "sha256-DOqqf4RWA2eo4m60tzs4HgKktci0fIV7CiJekDcjCXE="; 25 + sha256 = "sha256-levWTIO64or3jPejiJzyU0YQqMap5bK6w1EIMmfthD8="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/servers/mail/spamassassin/default.nix
··· 2 2 3 3 perlPackages.buildPerlPackage rec { 4 4 pname = "SpamAssassin"; 5 - version = "3.4.5"; 5 + version = "3.4.6"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://apache/spamassassin/source/Mail-${pname}-${version}.tar.bz2"; 9 - sha256 = "0qsl18p2swdbq4zizvs9ahl2bkilpcyzq817lk16jj5g4rqzivb7"; 9 + sha256 = "044ng2aazqy8g0m17q0a4939ck1ca4x230q2q7q7jndvwkrpaj5w"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+5
pkgs/servers/nitter/default.nix
··· 1 1 { lib 2 2 , stdenv 3 + , nixosTests 3 4 , fetchFromGitHub 4 5 , nim 5 6 , libsass ··· 119 120 cp -r public $out/share/nitter/public 120 121 runHook postInstall 121 122 ''; 123 + 124 + passthru.tests = { 125 + inherit (nixosTests) nitter; 126 + }; 122 127 123 128 meta = with lib; { 124 129 description = "Alternative Twitter front-end";
+3 -3
pkgs/servers/nosql/influxdb/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "influxdb"; 5 - version = "1.8.6"; 5 + version = "1.8.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "influxdata"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-v58druwTVeUOItbBUNr8lNsFlam9v0sxXlTeHlM0g6A="; 11 + sha256 = "sha256-LavOnVREu7uLWcdM9zIonqoYPJBdY2j5eKMeVNXa1dk="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-t7uwrsrF4LYdRjOhwdsCouDJXvD9364Ma5gvKezvi5o="; 14 + vendorSha256 = "sha256-jgAbEWXL1LYRN7ud9ij0Z1KBGHPZ0sRq78tsK92ob8k="; 15 15 16 16 doCheck = false; 17 17
+3 -3
pkgs/servers/sql/dolt/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dolt"; 5 - version = "0.24.1"; 5 + version = "0.27.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "liquidata-inc"; 9 9 repo = "dolt"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-z2F6ru2LNATiI4rSImbvwgxqKxuj8kwzjhwSbsPDBEs="; 11 + sha256 = "sha256-Px2b0s10N5uDYsz95/1cT2tfS/NfhRfKmCdXIaMb5Po="; 12 12 }; 13 13 14 14 modRoot = "./go"; 15 15 subPackages = [ "cmd/dolt" "cmd/git-dolt" "cmd/git-dolt-smudge" ]; 16 - vendorSha256 = "sha256-JO2hGrKbt+5Eh7v7LCZrPBK84Q9gjquchlZ5MfMY3uY="; 16 + vendorSha256 = "sha256-6KjSmxNLY0msMqpPZR7LUZV63Pj6JGhGVRWTKbbnDtk="; 17 17 18 18 doCheck = false; 19 19
+2 -2
pkgs/tools/admin/acme.sh/default.nix
··· 2 2 unixtools, dnsutils, coreutils, gnugrep, gnused }: 3 3 stdenv.mkDerivation rec { 4 4 pname = "acme.sh"; 5 - version = "2.9.0"; 5 + version = "3.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Neilpang"; 9 9 repo = "acme.sh"; 10 10 rev = version; 11 - sha256 = "sha256-BSKqfj8idpE4OV8/EJkCFo5i1vq/aEde/moqJcwuDvk="; 11 + sha256 = "sha256-KWSDAHzvNl8Iao13OV/ExRoKqkc9nouWim+bAN1V+Jo="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/tools/admin/lxd/default.nix
··· 19 19 in 20 20 buildGoPackage rec { 21 21 pname = "lxd"; 22 - version = "4.16"; 22 + version = "4.17"; 23 23 24 24 goPackagePath = "github.com/lxc/lxd"; 25 25 26 26 src = fetchurl { 27 27 url = "https://linuxcontainers.org/downloads/lxd/lxd-${version}.tar.gz"; 28 - sha256 = "1da9avmxs8sy92d9nrdgry2x685ral58zgf89yr88qxc0llbzq7r"; 28 + sha256 = "1kzmgyg5kw3zw9qa6jabld6rmb53b6yy69h7y9znsdlf74jllljl"; 29 29 }; 30 30 31 31 postPatch = '' ··· 72 72 description = "Daemon based on liblxc offering a REST API to manage containers"; 73 73 homepage = "https://linuxcontainers.org/lxd/"; 74 74 license = licenses.asl20; 75 - maintainers = with maintainers; [ fpletz wucke13 ]; 75 + maintainers = with maintainers; [ fpletz wucke13 marsam ]; 76 76 platforms = platforms.linux; 77 77 }; 78 78 }
+3 -3
pkgs/tools/misc/czkawka/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "czkawka"; 15 - version = "3.1.0"; 15 + version = "3.2.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "qarmin"; 19 19 repo = pname; 20 20 rev = version; 21 - sha256 = "sha256-LtGgpfToQUNKM1hmMPW7UrS/n7iyI+dz2vbSo+GOcRg="; 21 + sha256 = "sha256-OBe6nk5C3kO5Lkas9+G+VY3xAzY7SWx8W5CkSbaYJ9Y="; 22 22 }; 23 23 24 - cargoSha256 = "sha256-ZbyoCo1n4GRBkb5SClby5V51rLN1PnvCHD30TiJU2gY="; 24 + cargoSha256 = "sha256-Jghkf1mX5ic7zB2KmtOZbSxgF8C6KjRdGG1Yt+dzylI="; 25 25 26 26 nativeBuildInputs = [ 27 27 pkg-config
+2 -2
pkgs/tools/misc/grc/default.nix
··· 2 2 3 3 buildPythonApplication rec { 4 4 pname = "grc"; 5 - version = "1.12"; 5 + version = "1.13"; 6 6 format = "other"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "garabik"; 10 10 repo = pname; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-XJj1j6sDt0iL3U6uMbB1j0OfpXRdP+x66gc6sKxrQIA="; 12 + sha256 = "1h0h88h484a9796hai0wasi1xmjxxhpyxgixn6fgdyc5h69gv8nl"; 13 13 }; 14 14 15 15 postPatch = ''
+2 -2
pkgs/tools/networking/eggdrop/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "eggdrop"; 5 - version = "1.8.4"; 5 + version = "1.9.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "eggheads"; 9 9 repo = "eggdrop"; 10 10 rev = "v${version}"; 11 - sha256 = "0xqdrv4ydxw72a740lkmpg3fs7ldicaf08b0sfqdyaj7cq8l5x5l"; 11 + sha256 = "sha256-vh8nym7aYeTRUQ7FBZRy4ToG2ajwRDhzi4jNiJQOEyQ="; 12 12 }; 13 13 14 14 buildInputs = [ tcl ];
+3 -3
pkgs/tools/networking/frp/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "frp"; 5 - version = "0.36.1"; 5 + version = "0.37.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "fatedier"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-oOq5Y/6n7VHU9WPjnt+moVWZgo8mQl6Jd8daLJ2/pSQ="; 11 + sha256 = "sha256-TEVSxTzMgoIPcIUmhtRnFSp3xClJmOsIUjpKEr5sId8="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-Q4ZwCH/RTa8cLtSg06s1S790MdZLgfWOvaD+WAt/RBM="; 14 + vendorSha256 = "sha256-4vvIobj1I7FbPVJJG4NZogwv4BMo7GRa5Fo5gO2Daws="; 15 15 16 16 doCheck = false; 17 17
+4 -3
pkgs/tools/networking/wifite2/default.nix
··· 1 1 { lib, fetchFromGitHub, fetchpatch, python3, wirelesstools 2 2 , aircrack-ng, wireshark-cli, reaverwps-t6x, cowpatty, hashcat, hcxtools 3 - , hcxdumptool, pyrit, which }: 3 + , hcxdumptool, pyrit, which, bully }: 4 4 5 5 python3.pkgs.buildPythonApplication rec { 6 - version = "2.5.5"; 6 + version = "2.5.7"; 7 7 pname = "wifite2"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "kimocoder"; 11 11 repo = "wifite2"; 12 12 rev = version; 13 - sha256 = "0rh54gj471dn8442imxwasjrrwzsx4m40nylkw3y6p8rbjmb92h4"; 13 + sha256 = "sha256-dJ+UOSIR48m8nGoci/6iblLsX296ZGL1hZ74RUsa9lw="; 14 14 }; 15 15 16 16 patches = [ ··· 35 35 wirelesstools 36 36 pyrit 37 37 which 38 + bully 38 39 ]; 39 40 40 41 postFixup = let
+1 -1
pkgs/tools/networking/wireguard-tools/default.nix
··· 56 56 downloadPage = "https://git.zx2c4.com/wireguard-tools/refs/"; 57 57 homepage = "https://www.wireguard.com/"; 58 58 license = licenses.gpl2; 59 - maintainers = with maintainers; [ elseym ericsagnes mic92 zx2c4 globin ma27 xwvvvvwx ]; 59 + maintainers = with maintainers; [ elseym ericsagnes mic92 zx2c4 globin ma27 d-xo ]; 60 60 platforms = platforms.unix; 61 61 }; 62 62 }
+3 -3
pkgs/tools/security/gpg-tui/default.nix
··· 15 15 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "gpg-tui"; 18 - version = "0.7.3"; 18 + version = "0.7.4"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "orhun"; 22 22 repo = "gpg-tui"; 23 23 rev = "v${version}"; 24 - sha256 = "sha256-ti49b03Ta/MVDNIzW1WhWxJqHNVW9EALUcbElcZvurQ="; 24 + sha256 = "sha256-PJLiP8o4HMkaHMrsnObpUdGtKLxIuXZhxva34U26i40="; 25 25 }; 26 26 27 - cargoSha256 = "sha256-jF1Ozo5q5cKG9KjR1scbCCofG3FT3Fv98Cj0iOl18+c="; 27 + cargoSha256 = "sha256-6fHMchoJO5Tss6kFTulDmI4aXS3YF5k6RqEWQbh5mNc="; 28 28 29 29 nativeBuildInputs = [ 30 30 gpgme # for gpgme-config
+2 -2
pkgs/tools/text/epubcheck/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "epubcheck"; 6 - version = "4.2.4"; 6 + version = "4.2.6"; 7 7 8 8 src = fetchzip { 9 9 url = "https://github.com/w3c/epubcheck/releases/download/v${version}/epubcheck-${version}.zip"; 10 - sha256 = "02iy62b9wa5shxggflx99kv2q9xkilcsq94s0gbfq4m2aqjgzfwx"; 10 + sha256 = "sha256-f4r0ODKvZrl+YBcP2T9Z+zEuCyvQm9W7GNiLTr4p278="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ makeWrapper ];
+26
pkgs/tools/virtualization/reg/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildGoModule 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "reg"; 8 + version = "0.16.1"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "genuinetools"; 12 + repo = "reg"; 13 + rev = "v${version}"; 14 + sha256 = "1jlza1czfssssi3y9zi6kr8k9msfa7vp215ibhwbz4h97av5xw5m"; 15 + }; 16 + 17 + vendorSha256 = null; 18 + doCheck = false; 19 + 20 + meta = with lib; { 21 + description = "Docker registry v2 command line client and repo listing generator with security checks"; 22 + homepage = "https://github.com/genuinetools/reg"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ ereslibre ]; 25 + }; 26 + }
+4 -16
pkgs/top-level/all-packages.nix
··· 10 10 11 11 with pkgs; 12 12 13 - let 14 - self = 15 - builtins.trace '' 16 - It seems that you are using a patched Nixpkgs that references the self 17 - variable in pkgs/top-level/all-packages.nix. This variable was incorrectly 18 - named, so its usage needs attention. Please use pkgs for packages or super 19 - for functions. 20 - '' 21 - res; # Do *NOT* use res in your fork. It will be removed. 22 - 23 - # TODO: turn self into an error 24 - 25 - in 26 13 { 27 14 28 15 # A stdenv capable of building 32-bit binaries. On x86_64-linux, ··· 3260 3247 }; 3261 3248 3262 3249 psrecord = python3Packages.callPackage ../tools/misc/psrecord {}; 3250 + 3251 + reg = callPackage ../tools/virtualization/reg { }; 3263 3252 3264 3253 river = callPackage ../applications/window-managers/river { }; 3265 3254 ··· 13549 13538 cvise = python3Packages.callPackage ../development/tools/misc/cvise { 13550 13539 inherit (llvmPackages_11) llvm libclang; 13551 13540 }; 13541 + 13542 + cwltool = callPackage ../applications/science/misc/cwltool { }; 13552 13543 13553 13544 dprint = callPackage ../development/tools/dprint { }; 13554 13545 ··· 28695 28686 28696 28687 zola = callPackage ../applications/misc/zola { 28697 28688 inherit (darwin.apple_sdk.frameworks) CoreServices; 28698 - # Version 0.13.0 has the lexical_core 0.7.4 dependency that doesn't build 28699 - # with rust 1.53. This should be fixed in the next version. 28700 - rustPlatform = rustPackages_1_45.rustPlatform; 28701 28689 }; 28702 28690 28703 28691 zombietrackergps = libsForQt5.callPackage ../applications/gis/zombietrackergps { };
+6
pkgs/top-level/kodi-packages.nix
··· 80 80 81 81 steam-launcher = callPackage ../applications/video/kodi-packages/steam-launcher { }; 82 82 83 + steam-library = callPackage ../applications/video/kodi-packages/steam-library { }; 84 + 83 85 pdfreader = callPackage ../applications/video/kodi-packages/pdfreader { }; 84 86 85 87 pvr-hts = callPackage ../applications/video/kodi-packages/pvr-hts { }; ··· 119 121 myconnpy = callPackage ../applications/video/kodi-packages/myconnpy { }; 120 122 121 123 requests = callPackage ../applications/video/kodi-packages/requests { }; 124 + 125 + requests-cache = callPackage ../applications/video/kodi-packages/requests-cache { }; 126 + 127 + routing = callPackage ../applications/video/kodi-packages/routing { }; 122 128 123 129 signals = callPackage ../applications/video/kodi-packages/signals { }; 124 130
+6
pkgs/top-level/python-packages.nix
··· 995 995 996 996 bacpypes = callPackage ../development/python-modules/bacpypes { }; 997 997 998 + bagit = callPackage ../development/python-modules/bagit { }; 999 + 998 1000 banal = callPackage ../development/python-modules/banal { }; 999 1001 1000 1002 bandit = callPackage ../development/python-modules/bandit { }; ··· 7864 7866 7865 7867 schema = callPackage ../development/python-modules/schema { }; 7866 7868 7869 + schema-salad = callPackage ../development/python-modules/schema-salad { }; 7870 + 7867 7871 schiene = callPackage ../development/python-modules/schiene { }; 7868 7872 7869 7873 scikit-bio = callPackage ../development/python-modules/scikit-bio { }; ··· 8006 8010 sharkiqpy = callPackage ../development/python-modules/sharkiqpy { }; 8007 8011 8008 8012 sh = callPackage ../development/python-modules/sh { }; 8013 + 8014 + shellescape = callPackage ../development/python-modules/shellescape { }; 8009 8015 8010 8016 shellingham = callPackage ../development/python-modules/shellingham { }; 8011 8017