Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 25054886 f0955bea

+6779 -3222
+27 -5
doc/languages-frameworks/rust.section.md
··· 116 116 a `Cargo.lock` file using the `cargoLock` argument. For example: 117 117 118 118 ```nix 119 - rustPlatform.buildRustPackage rec { 119 + rustPlatform.buildRustPackage { 120 120 pname = "myproject"; 121 121 version = "1.0.0"; 122 122 123 123 cargoLock = { 124 124 lockFile = ./Cargo.lock; 125 - } 125 + }; 126 126 127 127 # ... 128 128 } 129 129 ``` 130 130 131 131 This will retrieve the dependencies using fixed-output derivations from 132 - the specified lockfile. Note that setting `cargoLock.lockFile` doesn't 133 - add a `Cargo.lock` to your `src`, and a `Cargo.lock` is still required 134 - to build a rust package. A simple fix is to use: 132 + the specified lockfile. 133 + 134 + One caveat is that `Cargo.lock` cannot be patched in the `patchPhase` 135 + because it runs after the dependencies have already been fetched. If 136 + you need to patch or generate the lockfile you can alternatively set 137 + `cargoLock.lockFileContents` to a string of its contents: 138 + 139 + ```nix 140 + rustPlatform.buildRustPackage { 141 + pname = "myproject"; 142 + version = "1.0.0"; 143 + 144 + cargoLock = let 145 + fixupLockFile = path: f (builtins.readFile path); 146 + in { 147 + lockFileContents = fixupLockFile ./Cargo.lock; 148 + }; 149 + 150 + # ... 151 + } 152 + ``` 153 + 154 + Note that setting `cargoLock.lockFile` or `cargoLock.lockFileContents` 155 + doesn't add a `Cargo.lock` to your `src`, and a `Cargo.lock` is still 156 + required to build a rust package. A simple fix is to use: 135 157 136 158 ```nix 137 159 postPatch = ''
+13 -1
nixos/modules/config/malloc.nix
··· 30 30 vulnerabilities, while maintaining good performance. 31 31 ''; 32 32 }; 33 + 34 + mimalloc = { 35 + libPath = "${pkgs.mimalloc}/lib/libmimalloc.so"; 36 + description = '' 37 + A compact and fast general purpose allocator, which may 38 + optionally be built with mitigations against various heap 39 + vulnerabilities. 40 + ''; 41 + }; 33 42 }; 34 43 35 44 providerConf = providers.${cfg.provider}; ··· 91 100 "abstractions/base" = '' 92 101 r /etc/ld-nix.so.preload, 93 102 r ${config.environment.etc."ld-nix.so.preload".source}, 94 - mr ${providerLibPath}, 103 + include "${pkgs.apparmorRulesFromClosure { 104 + name = "mallocLib"; 105 + baseRules = ["mr $path/lib/**.so*"]; 106 + } [ mallocLib ] }" 95 107 ''; 96 108 }; 97 109 };
+1
nixos/modules/module-list.nix
··· 202 202 ./programs/vim.nix 203 203 ./programs/wavemon.nix 204 204 ./programs/waybar.nix 205 + ./programs/weylus.nix 205 206 ./programs/wireshark.nix 206 207 ./programs/wshowkeys.nix 207 208 ./programs/xfs_quota.nix
+47
nixos/modules/programs/weylus.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.programs.weylus; 7 + in 8 + { 9 + options.programs.weylus = with types; { 10 + enable = mkEnableOption "weylus"; 11 + 12 + openFirewall = mkOption { 13 + type = bool; 14 + default = false; 15 + description = '' 16 + Open ports needed for the functionality of the program. 17 + ''; 18 + }; 19 + 20 + users = mkOption { 21 + type = listOf str; 22 + default = [ ]; 23 + description = '' 24 + To enable stylus and multi-touch support, the user you're going to use must be added to this list. 25 + These users can synthesize input events system-wide, even when another user is logged in - untrusted users should not be added. 26 + ''; 27 + }; 28 + 29 + package = mkOption { 30 + type = package; 31 + default = pkgs.weylus; 32 + defaultText = "pkgs.weylus"; 33 + description = "Weylus package to install."; 34 + }; 35 + }; 36 + config = mkIf cfg.enable { 37 + networking.firewall = mkIf cfg.openFirewall { 38 + allowedTCPPorts = [ 1701 9001 ]; 39 + }; 40 + 41 + hardware.uinput.enable = true; 42 + 43 + users.groups.uinput.members = cfg.users; 44 + 45 + environment.systemPackages = [ cfg.package ]; 46 + }; 47 + }
+38 -35
nixos/modules/services/monitoring/netdata.nix
··· 9 9 mkdir -p $out/libexec/netdata/plugins.d 10 10 ln -s /run/wrappers/bin/apps.plugin $out/libexec/netdata/plugins.d/apps.plugin 11 11 ln -s /run/wrappers/bin/cgroup-network $out/libexec/netdata/plugins.d/cgroup-network 12 - ln -s /run/wrappers/bin/freeipmi.plugin $out/libexec/netdata/plugins.d/freeipmi.plugin 13 12 ln -s /run/wrappers/bin/perf.plugin $out/libexec/netdata/plugins.d/perf.plugin 14 13 ln -s /run/wrappers/bin/slabinfo.plugin $out/libexec/netdata/plugins.d/slabinfo.plugin 14 + ln -s /run/wrappers/bin/freeipmi.plugin $out/libexec/netdata/plugins.d/freeipmi.plugin 15 15 ''; 16 16 17 17 plugins = [ ··· 211 211 212 212 systemd.enableCgroupAccounting = true; 213 213 214 - security.wrappers."apps.plugin" = { 215 - source = "${cfg.package}/libexec/netdata/plugins.d/apps.plugin.org"; 216 - capabilities = "cap_dac_read_search,cap_sys_ptrace+ep"; 217 - owner = cfg.user; 218 - group = cfg.group; 219 - permissions = "u+rx,g+x,o-rwx"; 220 - }; 214 + security.wrappers = { 215 + "apps.plugin" = { 216 + source = "${cfg.package}/libexec/netdata/plugins.d/apps.plugin.org"; 217 + capabilities = "cap_dac_read_search,cap_sys_ptrace+ep"; 218 + owner = cfg.user; 219 + group = cfg.group; 220 + permissions = "u+rx,g+x,o-rwx"; 221 + }; 221 222 222 - security.wrappers."cgroup-network" = { 223 - source = "${cfg.package}/libexec/netdata/plugins.d/cgroup-network.org"; 224 - capabilities = "cap_setuid+ep"; 225 - owner = cfg.user; 226 - group = cfg.group; 227 - permissions = "u+rx,g+x,o-rwx"; 228 - }; 223 + "cgroup-network" = { 224 + source = "${cfg.package}/libexec/netdata/plugins.d/cgroup-network.org"; 225 + capabilities = "cap_setuid+ep"; 226 + owner = cfg.user; 227 + group = cfg.group; 228 + permissions = "u+rx,g+x,o-rwx"; 229 + }; 229 230 230 - security.wrappers."freeipmi.plugin" = { 231 - source = "${cfg.package}/libexec/netdata/plugins.d/freeipmi.plugin.org"; 232 - capabilities = "cap_dac_override,cap_fowner+ep"; 233 - owner = cfg.user; 234 - group = cfg.group; 235 - permissions = "u+rx,g+x,o-rwx"; 236 - }; 231 + "perf.plugin" = { 232 + source = "${cfg.package}/libexec/netdata/plugins.d/perf.plugin.org"; 233 + capabilities = "cap_sys_admin+ep"; 234 + owner = cfg.user; 235 + group = cfg.group; 236 + permissions = "u+rx,g+x,o-rwx"; 237 + }; 237 238 238 - security.wrappers."perf.plugin" = { 239 - source = "${cfg.package}/libexec/netdata/plugins.d/perf.plugin.org"; 240 - capabilities = "cap_sys_admin+ep"; 241 - owner = cfg.user; 242 - group = cfg.group; 243 - permissions = "u+rx,g+x,o-rwx"; 244 - }; 239 + "slabinfo.plugin" = { 240 + source = "${cfg.package}/libexec/netdata/plugins.d/slabinfo.plugin.org"; 241 + capabilities = "cap_dac_override+ep"; 242 + owner = cfg.user; 243 + group = cfg.group; 244 + permissions = "u+rx,g+x,o-rwx"; 245 + }; 245 246 246 - security.wrappers."slabinfo.plugin" = { 247 - source = "${cfg.package}/libexec/netdata/plugins.d/slabinfo.plugin.org"; 248 - capabilities = "cap_dac_override+ep"; 249 - owner = cfg.user; 250 - group = cfg.group; 251 - permissions = "u+rx,g+x,o-rwx"; 247 + } // optionalAttrs (cfg.package.withIpmi) { 248 + "freeipmi.plugin" = { 249 + source = "${cfg.package}/libexec/netdata/plugins.d/freeipmi.plugin.org"; 250 + capabilities = "cap_dac_override,cap_fowner+ep"; 251 + owner = cfg.user; 252 + group = cfg.group; 253 + permissions = "u+rx,g+x,o-rwx"; 254 + }; 252 255 }; 253 256 254 257 security.pam.loginLimits = [
+2 -1
pkgs/applications/audio/tauon/default.nix
··· 15 15 , opusfile 16 16 , pango 17 17 , pulseaudio 18 + , withDiscordRPC ? false 18 19 }: 19 20 20 21 stdenv.mkDerivation rec { ··· 82 83 pysdl2 83 84 requests 84 85 send2trash 85 - ]; 86 + ] ++ lib.optional withDiscordRPC pypresence; 86 87 87 88 makeWrapperArgs = [ 88 89 "--prefix PATH : ${lib.makeBinPath [ffmpeg]}"
+4 -5
pkgs/applications/blockchains/trezor-suite/default.nix
··· 8 8 9 9 let 10 10 pname = "trezor-suite"; 11 - version = "21.7.1"; 11 + version = "21.9.2"; 12 12 name = "${pname}-${version}"; 13 13 14 14 suffix = { ··· 18 18 19 19 src = fetchurl { 20 20 url = "https://github.com/trezor/${pname}/releases/download/v${version}/Trezor-Suite-${version}-${suffix}.AppImage"; 21 - # sha512 hashes are obtained from latest-linux-arm64.yml and latest-linux.yml 22 - sha512 = { 23 - aarch64-linux = "sha512-GEu1Zx3IQws8wsVsZUaIKvC0kTe8l/BBPSdu5q44tDpszmPugz8G/8FDAO/Ra50dzyiHhRheybZPuf2BBGGb7A=="; 24 - x86_64-linux = "sha512-ghPbQa/MstzfUOWve1KNwB1t9dxK0+eYunBSoShWKpb85hgK69+ncTmhY8HejT28OkjFnGk6h4PWbrnQetj8MA=="; 21 + sha512 = { # curl -Lfs https://github.com/trezor/trezor-suite/releases/latest/download/latest-linux{-arm64,}.yml | rg ^sha512 | sed 's/: /-/' 22 + aarch64-linux = "sha512-mgip818sGkrKwF4v2mj/JeTNxBoj7DgdNPoxZ8sp8OvojHB2sa0hm4YXfrzAdPf8CP6d5ChUmwccQyYilGUiOQ=="; 23 + x86_64-linux = "sha512-f02m8Q6ITYhIXH1FS2BA/QYYsdtxklDDNYBXBarj8b1kA+yhDFZ3VL9vy+nZNdPQHQ2yMQreDzpcToXBQ67XyQ=="; 25 24 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 26 25 }; 27 26
+58
pkgs/applications/graphics/weylus/default.nix
··· 1 + { lib 2 + , dbus 3 + , stdenv 4 + , gst_all_1 5 + , xorg 6 + , libdrm 7 + , libva 8 + , fetchzip 9 + , copyDesktopItems 10 + , fontconfig 11 + , libpng 12 + , autoPatchelfHook 13 + }: 14 + 15 + stdenv.mkDerivation rec { 16 + pname = "weylus"; 17 + version = "0.11.2"; 18 + 19 + src = fetchzip { 20 + url = "https://github.com/H-M-H/Weylus/releases/download/v${version}/linux.zip"; 21 + sha256 = "sha256-coA8qUpUgRjVBF/0LZgimx61fTTpdck/AO6e+r2uNu0="; 22 + stripRoot = false; 23 + }; 24 + 25 + installPhase = '' 26 + runHook preInstall 27 + 28 + install -Dm755 ./weylus $out/bin/weylus 29 + copyDesktopItems ./weylus.desktop 30 + 31 + runHook postInstall 32 + ''; 33 + 34 + buildInputs = [ 35 + libpng 36 + dbus 37 + libdrm 38 + fontconfig 39 + libva 40 + gst_all_1.gst-plugins-base 41 + # autoPatchelfHook complains if these are missing, even on wayland 42 + xorg.libXft 43 + xorg.libXinerama 44 + xorg.libXcursor 45 + xorg.libXrandr 46 + xorg.libXcomposite 47 + xorg.libXtst 48 + ]; 49 + 50 + nativeBuildInputs = [ copyDesktopItems autoPatchelfHook ]; 51 + 52 + meta = with lib; { 53 + description = "Use your tablet as graphic tablet/touch screen on your computer"; 54 + homepage = "https://github.com/H-M-H/Weylus"; 55 + license = with licenses; [ agpl3Only ]; 56 + maintainers = with maintainers; [ legendofmiracles ]; 57 + }; 58 + }
+3
pkgs/applications/misc/1password-gui/default.nix
··· 86 86 substituteInPlace $out/share/applications/${pname}.desktop \ 87 87 --replace 'Exec=/opt/1Password/${pname}' 'Exec=${pname}' 88 88 89 + # Polkit file 90 + install -Dm 0644 -t $out/share/polkit-1/actions com.1password.1Password.policy 91 + 89 92 # Icons 90 93 cp -a resources/icons $out/share 91 94
+12 -12
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 1 1 { 2 2 "stable": { 3 - "version": "93.0.4577.82", 4 - "sha256": "0lr8zdq06smncdzd6knzww9hxl8ynvxadmrkyyl13fpwb1422rjx", 5 - "sha256bin64": "0ydvcakpnl20gx7493hv6aqnyf8f28rkvzgwnm4gws92b92n9ify", 3 + "version": "94.0.4606.54", 4 + "sha256": "0p8kfnyhykbv1cylsx4hj2qdzqr2xdql9rhpva8bfla2w9hr8g83", 5 + "sha256bin64": "0lq34l00zrr92g882xzqwq1lf2vf12x1mwidrr2qh6fz7v5418d3", 6 6 "deps": { 7 7 "gn": { 8 - "version": "2021-07-08", 8 + "version": "2021-08-11", 9 9 "url": "https://gn.googlesource.com/gn", 10 - "rev": "24e2f7df92641de0351a96096fb2c490b2436bb8", 11 - "sha256": "1lwkyhfhw0zd7daqz466n7x5cddf0danr799h4jg3s0yvd4galjl" 10 + "rev": "69ec4fca1fa69ddadae13f9e6b7507efa0675263", 11 + "sha256": "031znmkbm504iim5jvg3gmazj4qnkfc7zg8aymjsij18fhf7piz0" 12 12 } 13 13 }, 14 14 "chromedriver": { 15 - "version": "93.0.4577.63", 16 - "sha256_linux": "0w2lyjj0y9g1wnvk1sg2wi9dvhbjhdz1jb20rlrp5ny2gak6a47b", 17 - "sha256_darwin": "11420nflyfvf95hxj488336jq6xqjn4lcrwpr67rj2fx6ganji7z" 15 + "version": "94.0.4606.41", 16 + "sha256_linux": "06flgis4am4jmd9qz6yn1jfdr07w2n3mfrlicw6a9icg5ir64fdq", 17 + "sha256_darwin": "1mc0hhksqm5ms4k4aji043xzxncbifjwz5fqzywy4ji64w5kqrca" 18 18 } 19 19 }, 20 20 "beta": { ··· 31 31 } 32 32 }, 33 33 "dev": { 34 - "version": "95.0.4638.10", 35 - "sha256": "0pgd5k24yly9fqpzigc5qqx6lvn6m95fjp7294cgmk0132icx71j", 36 - "sha256bin64": "1gfaal3yxmi1n2nvfp39xp82g8vykzm0fjbdk0c1wh4gvlq2xx85", 34 + "version": "95.0.4638.17", 35 + "sha256": "1v5r8m3wlwh6prcj7bd4zprsr4g43869lhxv43m207c5nlnqiriz", 36 + "sha256bin64": "1azn9216jhcdg4yjr6frz8vp98qbcnnhifp9jn9bwvyg69lr0dwb", 37 37 "deps": { 38 38 "gn": { 39 39 "version": "2021-08-11",
+5 -3
pkgs/applications/networking/browsers/firefox/common.nix
··· 9 9 , yasm, libGLU, libGL, sqlite, unzip, makeWrapper 10 10 , hunspell, libevent, libstartup_notification 11 11 , libvpx_1_8 12 - , icu69, libpng, jemalloc, glib, pciutils 12 + , icu69, libpng, glib, pciutils 13 13 , autoconf213, which, gnused, rustPackages, rustPackages_1_45 14 14 , rust-cbindgen, nodejs, nasm, fetchpatch 15 15 , gnum4 ··· 27 27 , ltoSupport ? (stdenv.isLinux && stdenv.is64bit), overrideCC, buildPackages 28 28 , gssSupport ? true, libkrb5 29 29 , pipewireSupport ? waylandSupport && webrtcSupport, pipewire 30 + , jemallocSupport ? true, jemalloc 30 31 31 32 ## privacy-related options 32 33 ··· 189 190 xorg.libXdamage 190 191 xorg.libXext 191 192 libevent libstartup_notification /* cairo */ 192 - libpng jemalloc glib 193 + libpng glib 193 194 nasm icu69 libvpx_1_8 194 195 # >= 66 requires nasm for the AV1 lib dav1d 195 196 # yasm can potentially be removed in future versions ··· 202 203 ++ lib.optional gssSupport libkrb5 203 204 ++ lib.optionals waylandSupport [ libxkbcommon libdrm ] 204 205 ++ lib.optional pipewireSupport pipewire 206 + ++ lib.optional jemallocSupport jemalloc 205 207 ++ lib.optional (lib.versionAtLeast version "82") gnum4 206 208 ++ lib.optionals buildStdenv.isDarwin [ CoreMedia ExceptionHandling Kerberos 207 209 AVFoundation MediaToolbox CoreLocation ··· 309 311 "--disable-tests" 310 312 "--disable-necko-wifi" # maybe we want to enable this at some point 311 313 "--disable-updater" 312 - "--enable-jemalloc" 313 314 "--enable-default-toolkit=${default-toolkit}" 314 315 "--with-libclang-path=${llvmPackages.libclang.lib}/lib" 315 316 "--with-system-nspr" ··· 329 330 ++ flag alsaSupport "alsa" 330 331 ++ flag pulseaudioSupport "pulseaudio" 331 332 ++ flag ffmpegSupport "ffmpeg" 333 + ++ flag jemallocSupport "jemalloc" 332 334 ++ flag gssSupport "negotiateauth" 333 335 ++ flag webrtcSupport "webrtc" 334 336 ++ flag crashreporterSupport "crashreporter"
+2 -2
pkgs/applications/networking/cloudflared/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cloudflared"; 5 - version = "2021.9.0"; 5 + version = "2021.9.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloudflare"; 9 9 repo = "cloudflared"; 10 10 rev = version; 11 - sha256 = "sha256-djgMTCDIVcaPI6to/pPN2hPi1tsKPxRCT30EL0OOEQU="; 11 + sha256 = "sha256-VekJq7d80hD8AybkpLq4+9yeeBkeLATr2iG5OFU/TFs="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+2
pkgs/applications/networking/irc/weechat/scripts/default.nix
··· 3 3 { 4 4 colorize_nicks = callPackage ./colorize_nicks { }; 5 5 6 + edit = callPackage ./edit { }; 7 + 6 8 multiline = callPackage ./multiline { 7 9 inherit (perlPackages) PodParser; 8 10 };
+30
pkgs/applications/networking/irc/weechat/scripts/edit/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, weechat }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "edit-weechat"; 5 + version = "1.0.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "keith"; 9 + repo = "edit-weechat"; 10 + rev = version; 11 + sha256 = "1s42r0l0xkhlp6rbc23cm4vlda91il6cg53w33hqfhd2wz91s66w"; 12 + }; 13 + 14 + dontBuild = true; 15 + 16 + passthru.scripts = [ "edit.py" ]; 17 + 18 + installPhase = '' 19 + runHook preInstall 20 + install -D edit.py $out/share/edit.py 21 + runHook postInstall 22 + ''; 23 + 24 + meta = with lib; { 25 + inherit (weechat.meta) platforms; 26 + description = "This simple weechat plugin allows you to compose messages in your $EDITOR."; 27 + license = licenses.mit; 28 + maintainers = with maintainers; [ eraserhd ]; 29 + }; 30 + }
+2 -2
pkgs/applications/networking/nextcloud-client/default.nix
··· 21 21 22 22 mkDerivation rec { 23 23 pname = "nextcloud-client"; 24 - version = "3.3.3"; 24 + version = "3.3.4"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "nextcloud"; 28 28 repo = "desktop"; 29 29 rev = "v${version}"; 30 - sha256 = "sha256-QE6F+L1uy2Tmsf/DI8eUF5Ck+oE8CXDTpZS3xg2tiSs="; 30 + sha256 = "sha256-9RumsGpPHWa3EQXobBC3RcDUqwHCKiff+ngpTXKLyaE="; 31 31 }; 32 32 33 33 patches = [
+13 -6
pkgs/applications/networking/remote/aws-workspaces/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "aws-workspaces"; 8 - version = "3.1.8.1198"; 8 + version = "4.0.1.1302"; 9 9 10 10 src = fetchurl { 11 11 # ref https://d3nt0h4h6pmmc4.cloudfront.net/ubuntu/dists/bionic/main/binary-amd64/Packages 12 12 urls = [ 13 13 "https://d3nt0h4h6pmmc4.cloudfront.net/ubuntu/dists/bionic/main/binary-amd64/workspacesclient_${version}_amd64.deb" 14 - "https://web.archive.org/web/20210626165043/https://d3nt0h4h6pmmc4.cloudfront.net/ubuntu/dists/bionic/main/binary-amd64/workspacesclient_${version}_amd64.deb" 14 + "https://web.archive.org/web/20210921220718/https://d3nt0h4h6pmmc4.cloudfront.net/ubuntu/dists/bionic/main/binary-amd64/workspacesclient_${version}_amd64.deb" 15 15 ]; 16 - sha256 = "e784bc4401c2ffaf19f3cc42cb6c6f229c73adba36df49093a1d8cd30c86aaf0"; 16 + sha256 = "208e67a544be5be7ff25218d68b4eb2ea9e65abfed444c99a0f7a6738d69ab9a"; 17 17 }; 18 18 19 19 nativeBuildInputs = [ ··· 45 45 ${dpkg}/bin/dpkg -x $src $out 46 46 ''; 47 47 48 + preFixup = '' 49 + patchelf --replace-needed liblttng-ust.so.0 liblttng-ust.so $out/lib/libcoreclrtraceptprovider.so 50 + ''; 51 + 48 52 installPhase = '' 49 - mkdir -p $out/bin 50 - mv $out/opt/workspacesclient/* $out/bin 53 + mkdir -p $out/bin $out/lib 54 + mv $out/opt/workspacesclient/* $out/lib 55 + rm -rf $out/opt 51 56 52 - wrapProgram $out/bin/workspacesclient \ 57 + wrapProgram $out/lib/workspacesclient \ 53 58 --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath buildInputs}" \ 54 59 --set GDK_PIXBUF_MODULE_FILE "${librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" \ 55 60 --set GIO_EXTRA_MODULES "${glib-networking.out}/lib/gio/modules" 61 + 62 + mv $out/lib/workspacesclient $out/bin 56 63 ''; 57 64 58 65 meta = with lib; {
-1
pkgs/applications/office/paperless-ng/default.nix
··· 5 5 , ghostscript 6 6 , imagemagick 7 7 , jbig2enc 8 - , ocrmypdf 9 8 , optipng 10 9 , pngquant 11 10 , qpdf
+27
pkgs/applications/version-management/git-and-tools/glitter/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "glitter"; 5 + version = "1.4.4"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "milo123459"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1hj1md4h4m1g7cx41sjihlr8xq0zhkikci4cp2gbldqcq5x8iws4"; 12 + }; 13 + 14 + cargoSha256 = "sha256-2QgL8iH0FNlUR/863YML3PLad8lRkYjfSmbl49LTfWw="; 15 + 16 + # tests require it to be in a git repository 17 + preCheck = '' 18 + git init 19 + ''; 20 + 21 + meta = with lib; { 22 + description = "A git wrapper that allows you to compress multiple commands into one"; 23 + homepage = "https://github.com/milo123459/glitter"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ figsoda ]; 26 + }; 27 + }
+2 -2
pkgs/applications/version-management/gitea/default.nix
··· 16 16 17 17 buildGoPackage rec { 18 18 pname = "gitea"; 19 - version = "1.15.2"; 19 + version = "1.15.3"; 20 20 21 21 # not fetching directly from the git repo, because that lacks several vendor files for the web UI 22 22 src = fetchurl { 23 23 url = "https://github.com/go-gitea/gitea/releases/download/v${version}/gitea-src-${version}.tar.gz"; 24 - sha256 = "sha256-zvWJ1Q8nJw4hjPeBnuVprjn2NSlFwv4BwtHwgwHHvSI="; 24 + sha256 = "sha256-r8FP9jEIChg4XDb0AF9riQBpNCVmffrVI0yzI83qwA0="; 25 25 }; 26 26 27 27 unpackPhase = ''
+41 -11
pkgs/applications/video/catt/default.nix
··· 1 - { lib, python3 }: 1 + { lib 2 + , fetchFromGitHub 3 + , python3 4 + }: 2 5 3 - with python3.pkgs; 6 + let 7 + py = python3.override { 8 + packageOverrides = self: super: { 9 + # Upstream is pinning releases incl. dependencies of their dependencies 10 + zeroconf = super.zeroconf.overridePythonAttrs (oldAttrs: rec { 11 + version = "0.31.0"; 12 + src = fetchFromGitHub { 13 + owner = "jstasiak"; 14 + repo = "python-zeroconf"; 15 + rev = version; 16 + sha256 = "158dqay74zvnz6kmpvip4ml0kw59nf2aaajwgaamx0zc8ci1p5pj"; 17 + }; 18 + }); 19 + 20 + click = super.click.overridePythonAttrs (oldAttrs: rec { 21 + version = "7.1.2"; 22 + src = oldAttrs.src.override { 23 + inherit version; 24 + sha256 = "06kbzd6sjfkqan3miwj9wqyddfxc2b6hi7p5s4dvqjb3gif2bdfj"; 25 + }; 26 + }); 27 + 28 + PyChromecast = super.PyChromecast.overridePythonAttrs (oldAttrs: rec { 29 + version = "9.2.0"; 30 + src = oldAttrs.src.override { 31 + inherit version; 32 + sha256 = "02ig2wf2yyrnnl88r2n13s1naskwsifwgx3syifmcxygflsmjd3d"; 33 + }; 34 + }); 35 + }; 36 + }; 37 + in 38 + with py.pkgs; 4 39 5 40 buildPythonApplication rec { 6 41 pname = "catt"; 7 42 version = "0.12.2"; 8 43 44 + disabled = python3.pythonOlder "3.4"; 45 + 9 46 src = fetchPypi { 10 47 inherit pname version; 11 48 sha256 = "sha256-BOETKTkcbLOu5SubiejswU7D47qWS13QZ7rU9x3jf5Y="; ··· 19 56 youtube-dl 20 57 ]; 21 58 22 - # remove click when 0.12.3 is released 23 - # upstream doesn't use zeroconf directly but pins it for pychromecast 24 - postPatch = '' 25 - substituteInPlace setup.py \ 26 - --replace "zeroconf==0.31.0" "" \ 27 - --replace "Click>=7.1.2,<8" "click" 28 - ''; 59 + doCheck = false; # attempts to access various URLs 29 60 30 - doCheck = false; # attempts to access various URLs 31 61 pythonImportsCheck = [ "catt" ]; 32 62 33 63 meta = with lib; { 34 - description = "Cast All The Things allows you to send videos from many, many online sources to your Chromecast"; 64 + description = "Tool to send media from online sources to Chromecast devices"; 35 65 homepage = "https://github.com/skorokithakis/catt"; 36 66 license = licenses.bsd2; 37 67 maintainers = with maintainers; [ dtzWill ];
+86
pkgs/applications/video/pipe-viewer/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , perl 4 + , buildPerlModule 5 + , makeWrapper 6 + , wrapGAppsHook 7 + , withGtk3 ? false 8 + , ffmpeg 9 + , gtk3 10 + , wget 11 + , xdg-utils 12 + , youtube-dl 13 + , yt-dlp 14 + , TestPod 15 + , Gtk3 16 + }: 17 + let 18 + perlEnv = perl.withPackages (ps: with ps; [ 19 + AnyURIEscape 20 + DataDump 21 + Encode 22 + FilePath 23 + GetoptLong 24 + HTTPMessage 25 + JSON 26 + JSONXS 27 + LWPProtocolHttps 28 + LWPUserAgentCached 29 + Memoize 30 + PathTools 31 + ScalarListUtils 32 + TermReadLineGnu 33 + TextParsewords 34 + UnicodeLineBreak 35 + ] ++ lib.optionals withGtk3 [ 36 + FileShareDir 37 + ]); 38 + in 39 + buildPerlModule rec { 40 + pname = "pipe-viewer"; 41 + version = "0.1.4"; 42 + 43 + src = fetchFromGitHub { 44 + owner = "trizen"; 45 + repo = "pipe-viewer"; 46 + rev = version; 47 + hash = "sha256-kDlZ3Cl8zvN/naGExh2yVW5yHwc1O04x4s22lNkbCzU="; 48 + }; 49 + 50 + nativeBuildInputs = [ makeWrapper ] 51 + ++ lib.optionals withGtk3 [ wrapGAppsHook ]; 52 + 53 + buildInputs = [ perlEnv ] 54 + # Can't be in perlEnv for wrapGAppsHook to work correctly 55 + ++ lib.optional withGtk3 Gtk3; 56 + 57 + # Not supported by buildPerlModule 58 + # and the Perl code fails anyway 59 + # when Getopt::Long sets $gtk in Build.PL: 60 + # Modification of a read-only value attempted at /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-perl5.34.0-Getopt-Long-2.52/lib/perl5/site_perl/5.34.0/Getopt/Long.pm line 585. 61 + #buildFlags = lib.optional withGtk3 "--gtk3"; 62 + postPatch = lib.optionalString withGtk3 '' 63 + substituteInPlace Build.PL --replace 'my $gtk ' 'my $gtk = 1;#' 64 + ''; 65 + 66 + checkInputs = [ 67 + TestPod 68 + ]; 69 + 70 + dontWrapGApps = true; 71 + postFixup = '' 72 + wrapProgram "$out/bin/pipe-viewer" \ 73 + --prefix PATH : "${lib.makeBinPath [ ffmpeg wget youtube-dl yt-dlp ]}" 74 + '' + lib.optionalString withGtk3 '' 75 + wrapProgram "$out/bin/gtk-pipe-viewer" ''${gappsWrapperArgs[@]} \ 76 + --prefix PATH : "${lib.makeBinPath [ ffmpeg wget xdg-utils youtube-dl yt-dlp ]}" 77 + ''; 78 + 79 + meta = with lib; { 80 + homepage = "https://github.com/trizen/pipe-viewer"; 81 + description = "CLI+GUI YouTube Client"; 82 + license = licenses.artistic2; 83 + maintainers = with maintainers; [ julm ]; 84 + platforms = platforms.all; 85 + }; 86 + }
+6
pkgs/build-support/rust/default-crate-overrides.nix
··· 22 22 , clang 23 23 , llvmPackages 24 24 , linux-pam 25 + , rdkafka 25 26 , ... 26 27 }: 27 28 ··· 133 134 pq-sys = attr: { 134 135 nativeBuildInputs = [ pkg-config ]; 135 136 buildInputs = [ postgresql ]; 137 + }; 138 + 139 + rdkafka-sys = attr: { 140 + nativeBuildInputs = [ pkg-config ]; 141 + buildInputs = [ rdkafka ]; 136 142 }; 137 143 138 144 rink = attrs: {
+8 -4
pkgs/build-support/vm/default.nix
··· 13 13 14 14 rec { 15 15 16 - qemu = pkgs.qemu_kvm; 16 + qemu = buildPackages.qemu_kvm; 17 17 18 18 modulesClosure = makeModulesClosure { 19 19 inherit kernel rootModules; ··· 24 24 hd = "vda"; # either "sda" or "vda" 25 25 26 26 initrdUtils = runCommand "initrd-utils" 27 - { buildInputs = [ nukeReferences ]; 27 + { nativeBuildInputs = [ buildPackages.nukeReferences ]; 28 28 allowedReferences = [ "out" modulesClosure ]; # prevent accidents like glibc being included in the initrd 29 29 } 30 30 '' ··· 655 655 rpmClosureGenerator = 656 656 {name, packagesLists, urlPrefixes, packages, archs ? []}: 657 657 assert (builtins.length packagesLists) == (builtins.length urlPrefixes); 658 - runCommand "${name}.nix" {buildInputs = [perl perlPackages.XMLSimple]; inherit archs;} '' 658 + runCommand "${name}.nix" { 659 + nativeBuildInputs = [ buildPackages.perl buildPackages.perlPackages.XMLSimple ]; 660 + inherit archs; 661 + } '' 659 662 ${lib.concatImapStrings (i: pl: '' 660 663 gunzip < ${pl} > ./packages_${toString i}.xml 661 664 '') packagesLists} ··· 694 697 debClosureGenerator = 695 698 {name, packagesLists, urlPrefix, packages}: 696 699 697 - runCommand "${name}.nix" { buildInputs = [ perl dpkg ]; } '' 700 + runCommand "${name}.nix" 701 + { nativeBuildInputs = [ buildPackages.perl buildPackages.dpkg ]; } '' 698 702 for i in ${toString packagesLists}; do 699 703 echo "adding $i..." 700 704 case $i in
+2 -2
pkgs/desktops/gnome/games/tali/default.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "tali"; 23 - version = "40.2"; 23 + version = "40.3"; 24 24 25 25 src = fetchurl { 26 26 url = "mirror://gnome/sources/tali/${lib.versions.major version}/${pname}-${version}.tar.xz"; 27 - sha256 = "9SHsnW1SKA/Pfi1IerbVqIw54yx6n5XrqwKdUsAj4Cs="; 27 + sha256 = "neLxCreZjHprLKYvs3nBgby8HtYqp6gkG8VVHVF4/iE="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+5 -3
pkgs/desktops/pantheon/apps/appcenter/default.nix
··· 30 30 31 31 stdenv.mkDerivation rec { 32 32 pname = "appcenter"; 33 - version = "3.7.1"; 33 + version = "3.8.0"; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "elementary"; 37 37 repo = pname; 38 38 rev = version; 39 - sha256 = "1llkc0p47jcx992lkwics86vv622dmmvm5hxrdsq26j9crcd5dam"; 39 + sha256 = "07lkdpnjj9pxbq8h794qjiidvnysvzx0132w98r1wg9k7ca170bj"; 40 40 }; 41 41 42 42 patches = [ 43 43 # Try to remove other backends to make flatpak backend work. 44 44 # https://github.com/NixOS/nixpkgs/issues/70214 45 45 ./flatpak-only.patch 46 + # The homepage banner does not show up on first run, 47 + # has issues with app icon and mouse scrolling. 48 + ./drop-homepage-banner.patch 46 49 ]; 47 50 48 51 passthru = { ··· 82 85 ]; 83 86 84 87 mesonFlags = [ 85 - "-Dhomepage=false" 86 88 "-Dpayments=false" 87 89 "-Dcurated=false" 88 90 ];
+234
pkgs/desktops/pantheon/apps/appcenter/drop-homepage-banner.patch
··· 1 + From b1e09653d755ca6ffd03a1e3e67750e6bcc2bc6f Mon Sep 17 00:00:00 2001 2 + From: Bobby Rong <rjl931189261@126.com> 3 + Date: Wed, 22 Sep 2021 11:54:48 +0800 4 + Subject: [PATCH 2/2] Drop homepage banner 5 + 6 + --- 7 + src/Views/Homepage.vala | 181 +--------------------------------------- 8 + 1 file changed, 1 insertion(+), 180 deletions(-) 9 + 10 + diff --git a/src/Views/Homepage.vala b/src/Views/Homepage.vala 11 + index 576fc02c..80a1d221 100644 12 + --- a/src/Views/Homepage.vala 13 + +++ b/src/Views/Homepage.vala 14 + @@ -31,67 +31,12 @@ public class AppCenter.Homepage : AbstractView { 15 + public bool viewing_package { get; private set; default = false; } 16 + 17 + public AppStream.Category currently_viewed_category; 18 + - private Hdy.Carousel banner_carousel; 19 + - private Gtk.Revealer banner_revealer; 20 + - private Gtk.FlowBox recently_updated_carousel; 21 + - private Gtk.Revealer recently_updated_revealer; 22 + - 23 + - private uint banner_timeout_id; 24 + 25 + construct { 26 + - banner_carousel = new Hdy.Carousel () { 27 + - allow_long_swipes = true 28 + - }; 29 + - 30 + - var banner_event_box = new Gtk.EventBox (); 31 + - banner_event_box.events |= Gdk.EventMask.ENTER_NOTIFY_MASK; 32 + - banner_event_box.events |= Gdk.EventMask.LEAVE_NOTIFY_MASK; 33 + - banner_event_box.add (banner_carousel); 34 + - 35 + - var banner_dots = new Hdy.CarouselIndicatorDots () { 36 + - carousel = banner_carousel 37 + - }; 38 + - 39 + - var banner_grid = new Gtk.Grid () { 40 + - orientation = Gtk.Orientation.VERTICAL 41 + - }; 42 + - banner_grid.add (banner_event_box); 43 + - banner_grid.add (banner_dots); 44 + - 45 + - banner_revealer = new Gtk.Revealer (); 46 + - banner_revealer.add (banner_grid); 47 + - 48 + - var recently_updated_label = new Granite.HeaderLabel (_("Recently Updated")) { 49 + - margin_start = 12 50 + - }; 51 + - 52 + - recently_updated_carousel = new Gtk.FlowBox () { 53 + - activate_on_single_click = true, 54 + - column_spacing = 12, 55 + - row_spacing = 12, 56 + - homogeneous = true, 57 + - max_children_per_line = 5, 58 + - min_children_per_line = 3 59 + - }; 60 + - 61 + - var recently_updated_grid = new Gtk.Grid () { 62 + - margin_end = 12, 63 + - margin_start = 12 64 + - }; 65 + - recently_updated_grid.attach (recently_updated_label, 0, 0); 66 + - recently_updated_grid.attach (recently_updated_carousel, 0, 1); 67 + - 68 + - recently_updated_revealer = new Gtk.Revealer (); 69 + - recently_updated_revealer.add (recently_updated_grid ); 70 + - 71 + - var categories_label = new Granite.HeaderLabel (_("Categories")) { 72 + - margin_start = 24, 73 + - margin_top = 24 74 + - }; 75 + - 76 + category_flow = new Widgets.CategoryFlowBox () { 77 + margin_start = 12, 78 + margin_end =12, 79 + + margin_top = 12, 80 + valign = Gtk.Align.START 81 + }; 82 + 83 + @@ -99,9 +44,6 @@ public class AppCenter.Homepage : AbstractView { 84 + column_spacing = 24, 85 + orientation = Gtk.Orientation.VERTICAL 86 + }; 87 + - grid.add (banner_revealer); 88 + - grid.add (recently_updated_revealer); 89 + - grid.add (categories_label); 90 + grid.add (category_flow); 91 + 92 + scrolled_window = new Gtk.ScrolledWindow (null, null) { 93 + @@ -111,19 +53,6 @@ public class AppCenter.Homepage : AbstractView { 94 + 95 + add (scrolled_window); 96 + 97 + - var local_package = App.local_package; 98 + - if (local_package != null) { 99 + - var banner = new Widgets.Banner (local_package); 100 + - 101 + - banner_carousel.prepend (banner); 102 + - 103 + - banner.clicked.connect (() => { 104 + - show_package (local_package); 105 + - }); 106 + - } 107 + - 108 + - load_banners_and_carousels.begin (); 109 + - 110 + category_flow.child_activated.connect ((child) => { 111 + var item = child as Widgets.CategoryItem; 112 + if (item != null) { 113 + @@ -159,94 +88,8 @@ public class AppCenter.Homepage : AbstractView { 114 + } 115 + } 116 + } 117 + - 118 + - return GLib.Source.REMOVE; 119 + }); 120 + }); 121 + - 122 + - banner_event_box.enter_notify_event.connect (() => { 123 + - banner_timeout_stop (); 124 + - }); 125 + - 126 + - banner_event_box.leave_notify_event.connect (() => { 127 + - banner_timeout_start (); 128 + - }); 129 + - 130 + - recently_updated_carousel.child_activated.connect ((child) => { 131 + - var package_row_grid = (AppCenter.Widgets.ListPackageRowGrid) child.get_child (); 132 + - 133 + - show_package (package_row_grid.package); 134 + - }); 135 + - } 136 + - 137 + - private async void load_banners_and_carousels () { 138 + - unowned var fp_client = AppCenterCore.FlatpakBackend.get_default (); 139 + - var packages_by_release_date = fp_client.get_featured_packages_by_release_date (); 140 + - var packages_in_banner = new Gee.LinkedList<AppCenterCore.Package> (); 141 + - 142 + - int package_count = 0; 143 + - foreach (var package in packages_by_release_date) { 144 + - if (package_count >= MAX_PACKAGES_IN_BANNER) { 145 + - break; 146 + - } 147 + - 148 + - var installed = false; 149 + - foreach (var origin_package in package.origin_packages) { 150 + - try { 151 + - if (yield origin_package.backend.is_package_installed (origin_package)) { 152 + - installed = true; 153 + - break; 154 + - } 155 + - } catch (Error e) { 156 + - continue; 157 + - } 158 + - } 159 + - 160 + - if (!installed) { 161 + - packages_in_banner.add (package); 162 + - package_count++; 163 + - } 164 + - } 165 + - 166 + - foreach (var package in packages_in_banner) { 167 + - var banner = new Widgets.Banner (package); 168 + - banner.clicked.connect (() => { 169 + - show_package (package); 170 + - }); 171 + - 172 + - banner_carousel.add (banner); 173 + - } 174 + - 175 + - banner_carousel.show_all (); 176 + - banner_revealer.reveal_child = true; 177 + - banner_timeout_start (); 178 + - 179 + - foreach (var package in packages_by_release_date) { 180 + - if (recently_updated_carousel.get_children ().length () >= MAX_PACKAGES_IN_CAROUSEL) { 181 + - break; 182 + - } 183 + - 184 + - var installed = false; 185 + - foreach (var origin_package in package.origin_packages) { 186 + - try { 187 + - if (yield origin_package.backend.is_package_installed (origin_package)) { 188 + - installed = true; 189 + - break; 190 + - } 191 + - } catch (Error e) { 192 + - continue; 193 + - } 194 + - } 195 + - 196 + - if (!installed && !(package in packages_in_banner) && !package.is_explicit) { 197 + - var package_row = new AppCenter.Widgets.ListPackageRowGrid (package); 198 + - recently_updated_carousel.add (package_row); 199 + - } 200 + - } 201 + - recently_updated_carousel.show_all (); 202 + - recently_updated_revealer.reveal_child = recently_updated_carousel.get_children ().length () > 0; 203 + - 204 + - page_loaded (); 205 + } 206 + 207 + public override void show_package ( 208 + @@ -307,26 +150,4 @@ public class AppCenter.Homepage : AbstractView { 209 + var apps = client.get_applications_for_category (category); 210 + app_list_view.add_packages (apps); 211 + } 212 + - 213 + - private void banner_timeout_start () { 214 + - banner_timeout_id = Timeout.add (MILLISECONDS_BETWEEN_BANNER_ITEMS, () => { 215 + - var new_index = (uint) banner_carousel.position + 1; 216 + - var max_index = banner_carousel.n_pages - 1; // 0-based index 217 + - 218 + - if (banner_carousel.position >= max_index) { 219 + - new_index = 0; 220 + - } 221 + - 222 + - banner_carousel.switch_child (new_index, Granite.TRANSITION_DURATION_OPEN); 223 + - 224 + - return Source.CONTINUE; 225 + - }); 226 + - } 227 + - 228 + - private void banner_timeout_stop () { 229 + - if (banner_timeout_id != 0) { 230 + - Source.remove (banner_timeout_id); 231 + - banner_timeout_id = 0; 232 + - } 233 + - } 234 + }
+4 -38
pkgs/desktops/pantheon/apps/appcenter/flatpak-only.patch
··· 1 - From 63594caa1da772de504ab1d93b69aae148f29f64 Mon Sep 17 00:00:00 2001 1 + From 5d3f20b49a89b55e39339a0f90ae7f846356b0e1 Mon Sep 17 00:00:00 2001 2 2 From: Bobby Rong <rjl931189261@126.com> 3 - Date: Wed, 1 Sep 2021 12:25:09 +0800 4 - Subject: [PATCH] Drop PackageKitBackend and UbuntuDriversBackend 3 + Date: Wed, 22 Sep 2021 11:54:24 +0800 4 + Subject: [PATCH 1/2] Drop PackageKitBackend and UbuntuDriversBackend 5 5 6 6 --- 7 7 src/Application.vala | 14 --------- 8 8 src/Core/BackendAggregator.vala | 2 -- 9 9 src/Core/UpdateManager.vala | 56 --------------------------------- 10 10 src/MainWindow.vala | 17 ---------- 11 - src/Views/Homepage.vala | 15 --------- 12 - 5 files changed, 104 deletions(-) 11 + 4 files changed, 89 deletions(-) 13 12 14 13 diff --git a/src/Application.vala b/src/Application.vala 15 14 index 65fae5aa..9d42b14f 100644 ··· 161 160 return false; 162 161 } 163 162 164 - diff --git a/src/Views/Homepage.vala b/src/Views/Homepage.vala 165 - index 67d1e208..48af8f61 100644 166 - --- a/src/Views/Homepage.vala 167 - +++ b/src/Views/Homepage.vala 168 - @@ -212,7 +212,6 @@ public class AppCenter.Homepage : AbstractView { 169 - recently_updated_revealer.reveal_child = recently_updated_carousel.get_children ().length () > 0; 170 - 171 - var houston = AppCenterCore.Houston.get_default (); 172 - - var pk_client = AppCenterCore.PackageKitBackend.get_default (); 173 - var packages_for_banner = new Gee.LinkedList<AppCenterCore.Package> (); 174 - 175 - var newest_ids = yield houston.get_app_ids ("/newest/project"); 176 - @@ -220,20 +219,6 @@ public class AppCenter.Homepage : AbstractView { 177 - Utils.shuffle_array (trending_ids); 178 - 179 - var packages = new Gee.HashMap<string, AppCenterCore.Package> (); 180 - - packages.set_all (pk_client.get_packages_for_component_ids (newest_ids)); 181 - - packages.set_all (pk_client.get_packages_for_component_ids (trending_ids)); 182 - - 183 - - if (!AppCenterCore.PackageKitBackend.supports_parallel_package_queries) { 184 - - foreach (var package in packages.values) { 185 - - package.update_state (); 186 - - } 187 - - } else { 188 - - try { 189 - - yield pk_client.update_multiple_package_state (packages.values); 190 - - } catch (Error e) { 191 - - warning ("Error while getting installed state of banner packages: %s", e.message); 192 - - } 193 - - } 194 - 195 - foreach (var package in newest_ids) { 196 - if (packages_for_banner.size >= NUM_PACKAGES_IN_BANNER) {
+2 -2
pkgs/development/compilers/nim/default.nix
··· 22 22 "mips64" 23 23 else if isMsp430 then 24 24 "msp430" 25 - else if isPowerPC && is32bit then 25 + else if isPower && is32bit then 26 26 "powerpc" 27 - else if isPowerPC && is64bit then 27 + else if isPower && is64bit then 28 28 "powerpc64" 29 29 else if isRiscV && is64bit then 30 30 "riscv64"
+26
pkgs/development/embedded/tytools/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, wrapQtAppsHook , qtbase}: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "tytools"; 5 + version = "0.9.3"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "Koromix"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "0ax6j17f5nm0q4sp8sg1412hd48qp7whdy7dd699kwjcm763bl5j"; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ]; 15 + buildInputs = [ 16 + qtbase 17 + ]; 18 + 19 + meta = with lib; { 20 + description = "Collection of tools to manage Teensy boards"; 21 + homepage = "https://koromix.dev/tytools"; 22 + license = licenses.unlicense; 23 + platforms = platforms.unix; 24 + maintainers = with maintainers; [ ahuzik ]; 25 + }; 26 + }
+2 -2
pkgs/development/libraries/kimageannotator/default.nix
··· 2 2 3 3 mkDerivation rec { 4 4 pname = "kimageannotator"; 5 - version = "0.5.1"; 5 + version = "0.5.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ksnip"; 9 9 repo = "kImageAnnotator"; 10 10 rev = "v${version}"; 11 - sha256 = "0hfvrd78lgwd7bccz0fx2pr7g0v3s401y5plra63rxwk55ffkxf8"; 11 + sha256 = "07m3il928gwzzab349grpaksqqv4n7r6mn317sx2jly0x0bpv0rh"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake qttools ];
+30
pkgs/development/libraries/libfabric/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, libpsm2 2 + , enablePsm2 ? (stdenv.isx86_64 && stdenv.isLinux) }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "libfabric"; 6 + version = "1.13.1"; 7 + 8 + enableParallelBuilding = true; 9 + 10 + src = fetchFromGitHub { 11 + owner = "ofiwg"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "0USQMBXZrbz4GtXLNsSti9ohUOqqo0OCtVz+0Uk9ndI="; 15 + }; 16 + 17 + nativeBuildInputs = [ pkg-config autoreconfHook ]; 18 + 19 + buildInputs = lib.optional enablePsm2 libpsm2; 20 + 21 + configureFlags = [ (if enablePsm2 then "--enable-psm2=${libpsm2}" else "--disable-psm2") ]; 22 + 23 + meta = with lib; { 24 + homepage = "https://ofiwg.github.io/libfabric/"; 25 + description = "Open Fabric Interfaces"; 26 + license = with licenses; [ gpl2 bsd2 ]; 27 + platforms = platforms.all; 28 + maintainers = [ maintainers.bzizou ]; 29 + }; 30 + }
+3176 -2573
pkgs/development/node-packages/node-packages.nix
··· 31 31 sha512 = "CXMFAyovJHtLzKlraBpGlM/8TX9bvVz081IDZkQF3IMGHePgHCAs1vQdnKM38VMGekywNCbo7kt3fHooSMgA2w=="; 32 32 }; 33 33 }; 34 + "@alexbosworth/node-fetch-2.6.2" = { 35 + name = "_at_alexbosworth_slash_node-fetch"; 36 + packageName = "@alexbosworth/node-fetch"; 37 + version = "2.6.2"; 38 + src = fetchurl { 39 + url = "https://registry.npmjs.org/@alexbosworth/node-fetch/-/node-fetch-2.6.2.tgz"; 40 + sha512 = "9ls0Zn0qXTmUdt1p9LA1P9Kor9wF1pXtfUTjipCpoYYQ4fEUsuCgQbiymk4oJccpsZ9dAG3vZ1Zt51WabjJTUw=="; 41 + }; 42 + }; 34 43 "@alexbosworth/saxophone-0.6.2" = { 35 44 name = "_at_alexbosworth_slash_saxophone"; 36 45 packageName = "@alexbosworth/saxophone"; ··· 40 49 sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww=="; 41 50 }; 42 51 }; 43 - "@angular-devkit/architect-0.1202.5" = { 52 + "@angular-devkit/architect-0.1202.6" = { 44 53 name = "_at_angular-devkit_slash_architect"; 45 54 packageName = "@angular-devkit/architect"; 46 - version = "0.1202.5"; 55 + version = "0.1202.6"; 47 56 src = fetchurl { 48 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.5.tgz"; 49 - sha512 = "HiF8RceDrvP7m8Qm53KWVpekESX0UIK4/tOg9mgFMcS/2utRnPzuu4WbfrcY9DRrsoMWLXQs6j/UVXqf8PzXJw=="; 57 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.6.tgz"; 58 + sha512 = "DQHK5VGfPof1TuSmRmt2Usw2BuNVLzxKSSy7+tEJbYzqf8N/wQO+1M67ye8qf8gAU88xGo378dD9++DFc/PJZA=="; 50 59 }; 51 60 }; 52 61 "@angular-devkit/core-12.0.5" = { ··· 67 76 sha512 = "KOzGD8JbP/7EeUwPiU5x+fo3ZEQ5R4IVW5WoH92PaO3mdpqXC7UL2MWLct8PUe9il9nqJMvrBMldSSvP9PCT2w=="; 68 77 }; 69 78 }; 70 - "@angular-devkit/core-12.2.5" = { 79 + "@angular-devkit/core-12.2.6" = { 71 80 name = "_at_angular-devkit_slash_core"; 72 81 packageName = "@angular-devkit/core"; 73 - version = "12.2.5"; 82 + version = "12.2.6"; 74 83 src = fetchurl { 75 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.5.tgz"; 76 - sha512 = "UBo0Q9nVGPxC+C1PONSzaczPLv5++5Q7PC2orZepDbWmY0jUDwe9VVJrmp8EhLZbzVKFpyCIs1ZE8h0s0LP1zA=="; 84 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.6.tgz"; 85 + sha512 = "E+OhY34Vmwyy1/PaX/nzao40XM70wOr7Urh00sAtV8sPLXMLeW0gHk4DUchCKohxQkrIL0AxYt1aeUVgIc7bSA=="; 77 86 }; 78 87 }; 79 88 "@angular-devkit/schematics-12.0.5" = { ··· 94 103 sha512 = "yD3y3pK/K5piOgvALFoCCiPp4H8emNa3yZL+vlpEpewVLpF1MM55LeTxc0PI5s0uqtOGVnvcbA5wYgMm3YsUEA=="; 95 104 }; 96 105 }; 97 - "@angular-devkit/schematics-12.2.5" = { 106 + "@angular-devkit/schematics-12.2.6" = { 98 107 name = "_at_angular-devkit_slash_schematics"; 99 108 packageName = "@angular-devkit/schematics"; 100 - version = "12.2.5"; 109 + version = "12.2.6"; 101 110 src = fetchurl { 102 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.5.tgz"; 103 - sha512 = "8WAdZ39FZqbU1/ZQQrK+7PeRuj6QUGlxFUgoVXk5nzRbpZo/OSaKhPoC7sC1A0EU+7udLp5vT7R12sDz7Mr9vQ=="; 111 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.6.tgz"; 112 + sha512 = "CmDNOdJg08p5QrV8dNdg3O5ErYM1hJT06PLnVZzTWkShAL0y/3zxXAP/Wwdg0vAvt9Kh38jvMtC3YTCOThR/hA=="; 104 113 }; 105 114 }; 106 115 "@angular-devkit/schematics-cli-12.1.4" = { ··· 229 238 sha512 = "GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w=="; 230 239 }; 231 240 }; 232 - "@apollo/client-3.4.10" = { 241 + "@apollo/client-3.4.13" = { 233 242 name = "_at_apollo_slash_client"; 234 243 packageName = "@apollo/client"; 235 - version = "3.4.10"; 244 + version = "3.4.13"; 236 245 src = fetchurl { 237 - url = "https://registry.npmjs.org/@apollo/client/-/client-3.4.10.tgz"; 238 - sha512 = "b+8TT3jBM2BtEJi+V2FuLpvoYDZCY3baNYrgAgEyw4fjnuBCSRPY7qVjqriZAwMaGiTLtyVifGhmdeICQs4Eow=="; 246 + url = "https://registry.npmjs.org/@apollo/client/-/client-3.4.13.tgz"; 247 + sha512 = "/nH8z/0X6WJ+wtUREHTlKQGX4lo6u3XkF1hy+k4eCxLZzT5+VRw1rm92iIkj1H85vep/eE/KV3DdRq1x3t9NnQ=="; 239 248 }; 240 249 }; 241 250 "@apollo/protobufjs-1.2.2" = { ··· 310 319 sha1 = "e70187f8a862e191b1bce6c0268f13acd3a56b20"; 311 320 }; 312 321 }; 313 - "@babel/cli-7.15.4" = { 322 + "@babel/cli-7.15.7" = { 314 323 name = "_at_babel_slash_cli"; 315 324 packageName = "@babel/cli"; 316 - version = "7.15.4"; 325 + version = "7.15.7"; 317 326 src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.15.4.tgz"; 319 - sha512 = "9RhhQ7tgKRcSO/jI3rNLxalLSk30cHqeM8bb+nGOJTyYBDpkoXw/A9QHZ2SYjlslAt4tr90pZQGIEobwWHSIDw=="; 327 + url = "https://registry.npmjs.org/@babel/cli/-/cli-7.15.7.tgz"; 328 + sha512 = "YW5wOprO2LzMjoWZ5ZG6jfbY9JnkDxuHDwvnrThnuYtByorova/I0HNXJedrUfwuXFQfYOjcqDA4PU3qlZGZjg=="; 320 329 }; 321 330 }; 322 331 "@babel/code-frame-7.10.4" = { ··· 499 508 sha512 = "jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA=="; 500 509 }; 501 510 }; 502 - "@babel/helper-module-transforms-7.15.4" = { 511 + "@babel/helper-module-transforms-7.15.7" = { 503 512 name = "_at_babel_slash_helper-module-transforms"; 504 513 packageName = "@babel/helper-module-transforms"; 505 - version = "7.15.4"; 514 + version = "7.15.7"; 506 515 src = fetchurl { 507 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.4.tgz"; 508 - sha512 = "9fHHSGE9zTC++KuXLZcB5FKgvlV83Ox+NLUmQTawovwlJ85+QMhk1CnVk406CQVj97LaWod6KVjl2Sfgw9Aktw=="; 516 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.7.tgz"; 517 + sha512 = "ZNqjjQG/AuFfekFTY+7nY4RgBSklgTu970c7Rj3m/JOhIu5KPBUuTA9AY6zaKcUvk4g6EbDXdBnhi35FAssdSw=="; 509 518 }; 510 519 }; 511 520 "@babel/helper-optimise-call-expression-7.15.4" = { ··· 580 589 sha512 = "HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw=="; 581 590 }; 582 591 }; 583 - "@babel/helper-validator-identifier-7.14.9" = { 592 + "@babel/helper-validator-identifier-7.15.7" = { 584 593 name = "_at_babel_slash_helper-validator-identifier"; 585 594 packageName = "@babel/helper-validator-identifier"; 586 - version = "7.14.9"; 595 + version = "7.15.7"; 587 596 src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz"; 589 - sha512 = "pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g=="; 597 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"; 598 + sha512 = "K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="; 590 599 }; 591 600 }; 592 601 "@babel/helper-validator-option-7.14.5" = { ··· 643 652 sha512 = "OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw=="; 644 653 }; 645 654 }; 646 - "@babel/parser-7.15.5" = { 655 + "@babel/parser-7.15.7" = { 647 656 name = "_at_babel_slash_parser"; 648 657 packageName = "@babel/parser"; 649 - version = "7.15.5"; 658 + version = "7.15.7"; 650 659 src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.15.5.tgz"; 652 - sha512 = "2hQstc6I7T6tQsWzlboMh3SgMRPaS4H6H7cPQsJkdzTzEGqQrpLDsE2BGASU5sBPoEQyHzeqU6C8uKbFeEk6sg=="; 660 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.15.7.tgz"; 661 + sha512 = "rycZXvQ+xS9QyIcJ9HXeDWf1uxqlbVFAUq0Rq0dbc50Zb/+wUe/ehyfzGfm9KZZF0kBejYgxltBXocP+gKdL2g=="; 653 662 }; 654 663 }; 655 664 "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" = { ··· 769 778 sha512 = "6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA=="; 770 779 }; 771 780 }; 772 - "@babel/plugin-proposal-object-rest-spread-7.14.7" = { 781 + "@babel/plugin-proposal-object-rest-spread-7.15.6" = { 773 782 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 774 783 packageName = "@babel/plugin-proposal-object-rest-spread"; 775 - version = "7.14.7"; 784 + version = "7.15.6"; 776 785 src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz"; 778 - sha512 = "082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g=="; 786 + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.15.6.tgz"; 787 + sha512 = "qtOHo7A1Vt+O23qEAX+GdBpqaIuD3i9VRrWgCJeq7WO6H2d14EK3q11urj5Te2MAeK97nMiIdRpwd/ST4JFbNg=="; 779 788 }; 780 789 }; 781 790 "@babel/plugin-proposal-optional-catch-binding-7.14.5" = { ··· 1390 1399 sha512 = "UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw=="; 1391 1400 }; 1392 1401 }; 1393 - "@babel/preset-env-7.15.4" = { 1402 + "@babel/preset-env-7.15.6" = { 1394 1403 name = "_at_babel_slash_preset-env"; 1395 1404 packageName = "@babel/preset-env"; 1396 - version = "7.15.4"; 1405 + version = "7.15.6"; 1397 1406 src = fetchurl { 1398 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.4.tgz"; 1399 - sha512 = "4f2nLw+q6ht8gl3sHCmNhmA5W6b1ItLzbH3UrKuJxACHr2eCpk96jwjrAfCAaXaaVwTQGnyUYHY2EWXJGt7TUQ=="; 1407 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.6.tgz"; 1408 + sha512 = "L+6jcGn7EWu7zqaO2uoTDjjMBW+88FXzV8KvrBl2z6MtRNxlsmUNRlZPaNNPUTgqhyC5DHNFk/2Jmra+ublZWw=="; 1400 1409 }; 1401 1410 }; 1402 1411 "@babel/preset-flow-7.14.5" = { ··· 1489 1498 sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA=="; 1490 1499 }; 1491 1500 }; 1492 - "@babel/runtime-corejs3-7.15.4" = { 1493 - name = "_at_babel_slash_runtime-corejs3"; 1494 - packageName = "@babel/runtime-corejs3"; 1495 - version = "7.15.4"; 1496 - src = fetchurl { 1497 - url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz"; 1498 - sha512 = "lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg=="; 1499 - }; 1500 - }; 1501 - "@babel/standalone-7.15.5" = { 1501 + "@babel/standalone-7.15.7" = { 1502 1502 name = "_at_babel_slash_standalone"; 1503 1503 packageName = "@babel/standalone"; 1504 - version = "7.15.5"; 1504 + version = "7.15.7"; 1505 1505 src = fetchurl { 1506 - url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.15.5.tgz"; 1507 - sha512 = "rho2fzDGLrdYVbl0S71I8z6AREWnVvADzv7Gb4TLKhqpE6cJAvno0ALMuF253+wqhN8futx4ELWQpBYMxi4jmA=="; 1506 + url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.15.7.tgz"; 1507 + sha512 = "1dPLi+eQEJE0g1GnUM0Ik2GcS5SMXivoxt6meQxQxGWEd/DCdSBRJClUVlQ25Vbqe49g1HG5Ej0ULhmsqtSMmg=="; 1508 1508 }; 1509 1509 }; 1510 1510 "@babel/template-7.15.4" = { ··· 1534 1534 sha512 = "K4nY2xFN4QMvQwkQ+zmBDp6ANMbVNw6BbxWmYA4qNjhR9W+Lj/8ky5MEY2Me5r+B2c6/v6F53oMndG+f9s3IiA=="; 1535 1535 }; 1536 1536 }; 1537 - "@babel/types-7.15.4" = { 1537 + "@babel/types-7.15.6" = { 1538 1538 name = "_at_babel_slash_types"; 1539 1539 packageName = "@babel/types"; 1540 - version = "7.15.4"; 1540 + version = "7.15.6"; 1541 1541 src = fetchurl { 1542 - url = "https://registry.npmjs.org/@babel/types/-/types-7.15.4.tgz"; 1543 - sha512 = "0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw=="; 1542 + url = "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz"; 1543 + sha512 = "BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig=="; 1544 1544 }; 1545 1545 }; 1546 - "@blueprintjs/colors-3.0.0" = { 1546 + "@blueprintjs/colors-5.0.0-alpha.0" = { 1547 1547 name = "_at_blueprintjs_slash_colors"; 1548 1548 packageName = "@blueprintjs/colors"; 1549 - version = "3.0.0"; 1549 + version = "5.0.0-alpha.0"; 1550 1550 src = fetchurl { 1551 - url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-3.0.0.tgz"; 1552 - sha512 = "8rRkIcnnOwMEMAGDciKFdVQ3dZXvCkSGcgEzVR2ijopCvLZrrHf+ySzn8v7Y2d60A2Q2A3Of8NDrYbV32sBssg=="; 1551 + url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-5.0.0-alpha.0.tgz"; 1552 + sha512 = "TsYKtsT7K+ok14GYWheBfkQxqMRGd6M3cnJ1Ge/nitNzIzmYiydKhOb7KBV0xnRNHlDKGuXSEdnsylAlRgSoIQ=="; 1553 1553 }; 1554 1554 }; 1555 - "@blueprintjs/core-3.49.1" = { 1555 + "@blueprintjs/core-3.50.2" = { 1556 1556 name = "_at_blueprintjs_slash_core"; 1557 1557 packageName = "@blueprintjs/core"; 1558 - version = "3.49.1"; 1558 + version = "3.50.2"; 1559 1559 src = fetchurl { 1560 - url = "https://registry.npmjs.org/@blueprintjs/core/-/core-3.49.1.tgz"; 1561 - sha512 = "H6UAYZeBZcGDQb24vEkFps0eKlkyKvy/B/OJ2elZjHC1B1Regv7TwIDjju9wgzZvzKCcCVZzUg9OqtH43V+1yA=="; 1560 + url = "https://registry.npmjs.org/@blueprintjs/core/-/core-3.50.2.tgz"; 1561 + sha512 = "y+J5yh34MoCFPgr7TlfRAY8xyFvZadoGbqhoMWdUWP+Nfhb6+Zu5wIchpC+2Z2Kw+eHH3W1ld39GYiPHOVnNWw=="; 1562 1562 }; 1563 1563 }; 1564 - "@blueprintjs/icons-3.29.0" = { 1564 + "@blueprintjs/icons-3.30.1" = { 1565 1565 name = "_at_blueprintjs_slash_icons"; 1566 1566 packageName = "@blueprintjs/icons"; 1567 - version = "3.29.0"; 1567 + version = "3.30.1"; 1568 1568 src = fetchurl { 1569 - url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.29.0.tgz"; 1570 - sha512 = "FDpPsEBwzsFBsxDXNsea+u+bU+iFWcVTbKH05+jtGEpvDEOrpOsOwUYvkBvVaReR0DORREVye2/NL0/uvLCRrg=="; 1569 + url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.30.1.tgz"; 1570 + sha512 = "Y15u+B/+N51oLwOkZg5uQ5tkGCMLXfMhf2iRBIr6t3OBkCGoc9C61a7VeII5EDC8fjKlh9MewVbLuFIIEbUP8g=="; 1571 1571 }; 1572 1572 }; 1573 1573 "@braintree/sanitize-url-3.1.0" = { ··· 1633 1633 sha512 = "htzFO1Zc57S8kgdRK9mLcPVTW1BY2ijfH7Dk2CeZmspTWKdKqSo1iwmqrq2WtRjFlo8aRZYgLX0wFrDXF/9DLA=="; 1634 1634 }; 1635 1635 }; 1636 - "@cdktf/hcl2cdk-0.5.0" = { 1636 + "@cdktf/hcl2cdk-0.6.2" = { 1637 1637 name = "_at_cdktf_slash_hcl2cdk"; 1638 1638 packageName = "@cdktf/hcl2cdk"; 1639 - version = "0.5.0"; 1639 + version = "0.6.2"; 1640 1640 src = fetchurl { 1641 - url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.5.0.tgz"; 1642 - sha512 = "E9/uA3JxXPPVKkiTX6DhUZHkAH5ZFWrNewhJB/woOejTkn7P4saOGxXYgrxiu6MCz2lgN8iE4YNGSTKPcxq8sA=="; 1641 + url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.6.2.tgz"; 1642 + sha512 = "apQgyFFMDNiuOcTUVgyRaELtkU+KAZEnzleGfJgsmeEJARxTFHjvtDAtMY5P5K2ozvQCYmoB7NmBkIQSljqmNQ=="; 1643 1643 }; 1644 1644 }; 1645 - "@cdktf/hcl2json-0.5.0" = { 1645 + "@cdktf/hcl2json-0.6.2" = { 1646 1646 name = "_at_cdktf_slash_hcl2json"; 1647 1647 packageName = "@cdktf/hcl2json"; 1648 - version = "0.5.0"; 1648 + version = "0.6.2"; 1649 1649 src = fetchurl { 1650 - url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.5.0.tgz"; 1651 - sha512 = "3E4/6sCLEcoPUk6FJHOpLGqBNSE2AHrIrErXKRFU3je/MZotxvWrfrZY3IsENJgjJ69Zv0dxMxTZo/l+BVNa3w=="; 1650 + url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.6.2.tgz"; 1651 + sha512 = "d77n8iXu7g6vMgG0Mi5aWFrV5Zvdh4ezlUBJX6/nKHqVy8IcLni9ifEfVyB1KPis1aJP0B5WmJI1cLRlT1KC3g=="; 1652 1652 }; 1653 1653 }; 1654 1654 "@chemzqm/neovim-5.4.0" = { ··· 1921 1921 sha512 = "HilPrVrCosYWqSyjfpDtaaN1kJwdlBpS+IAflP3z+e7nsEgk3JGJf1Vg0NgHJooTf5HDfXSyZqMVg+5jvXCK0g=="; 1922 1922 }; 1923 1923 }; 1924 - "@discoveryjs/json-ext-0.5.3" = { 1924 + "@discoveryjs/json-ext-0.5.5" = { 1925 1925 name = "_at_discoveryjs_slash_json-ext"; 1926 1926 packageName = "@discoveryjs/json-ext"; 1927 - version = "0.5.3"; 1927 + version = "0.5.5"; 1928 1928 src = fetchurl { 1929 - url = "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.3.tgz"; 1930 - sha512 = "Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g=="; 1929 + url = "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.5.tgz"; 1930 + sha512 = "6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA=="; 1931 1931 }; 1932 1932 }; 1933 - "@electron-forge/async-ora-6.0.0-beta.60" = { 1933 + "@electron-forge/async-ora-6.0.0-beta.61" = { 1934 1934 name = "_at_electron-forge_slash_async-ora"; 1935 1935 packageName = "@electron-forge/async-ora"; 1936 - version = "6.0.0-beta.60"; 1936 + version = "6.0.0-beta.61"; 1937 1937 src = fetchurl { 1938 - url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.60.tgz"; 1939 - sha512 = "MGRAfcxHkBVstgoZl/vk35IufNCu+xEYyZwaBk94w7NicIcW69z2VnP/W/v35sP3ekhqjpDCc0QGSQP5S1Zmuw=="; 1938 + url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.61.tgz"; 1939 + sha512 = "K+9fwnLbcV7TmgDxZO0PMdh1Cs1dWPFmVRfLRPBTS1NFsbiJqVwMVNZiL7fXV8ruWQDi7VXC8I42poLIVhcg0A=="; 1940 1940 }; 1941 1941 }; 1942 - "@electron-forge/core-6.0.0-beta.60" = { 1942 + "@electron-forge/core-6.0.0-beta.61" = { 1943 1943 name = "_at_electron-forge_slash_core"; 1944 1944 packageName = "@electron-forge/core"; 1945 - version = "6.0.0-beta.60"; 1945 + version = "6.0.0-beta.61"; 1946 1946 src = fetchurl { 1947 - url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.60.tgz"; 1948 - sha512 = "JOUcO+PNdSeA623Y38zBJYvGnR6eIGNs+GA15ba9X/BKwX4zNjXDubc2tct+tiMNudTdSIAA/dwlzCJw9hTF9g=="; 1947 + url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.61.tgz"; 1948 + sha512 = "MdthpIbTmjbzq7DdYDKWSyT+bApmP4uvIEdC9b8FafInxZWvBGWupod3OuoZs49uZE8w9dpYwDc1g4B3jDcAHw=="; 1949 1949 }; 1950 1950 }; 1951 - "@electron-forge/installer-base-6.0.0-beta.60" = { 1951 + "@electron-forge/installer-base-6.0.0-beta.61" = { 1952 1952 name = "_at_electron-forge_slash_installer-base"; 1953 1953 packageName = "@electron-forge/installer-base"; 1954 - version = "6.0.0-beta.60"; 1954 + version = "6.0.0-beta.61"; 1955 1955 src = fetchurl { 1956 - url = "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.60.tgz"; 1957 - sha512 = "WnU7LEw98Lew1/5Kv/DzvqW19BNPPXxPTtTfpHnhOybm5g9uJ2sEjol4We5bgK0UFbCCORmwgbZYZsMCN/mx4A=="; 1956 + url = "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.61.tgz"; 1957 + sha512 = "8Mx/c3xtJm4uWv6y8SBd0SW0NodWFr1SHGJXURY8TmLQKvy+9YCDXhJlIF5etUHXgWeZeAidY3Ly/EksJrmm4g=="; 1958 1958 }; 1959 1959 }; 1960 - "@electron-forge/installer-darwin-6.0.0-beta.60" = { 1960 + "@electron-forge/installer-darwin-6.0.0-beta.61" = { 1961 1961 name = "_at_electron-forge_slash_installer-darwin"; 1962 1962 packageName = "@electron-forge/installer-darwin"; 1963 - version = "6.0.0-beta.60"; 1963 + version = "6.0.0-beta.61"; 1964 1964 src = fetchurl { 1965 - url = "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.60.tgz"; 1966 - sha512 = "qAbPhr5Dt+aALmwC47cjNKR70hj+spNKRkMYSJMxD6tpbG4JDS+UQaHeuQAWY50XGgBWdialN6Hvr+y+d+QgGg=="; 1965 + url = "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.61.tgz"; 1966 + sha512 = "96BO9FwhB1LUrHQVEtl+Lz7Fs6tJYW/lUlYYfXzMhCD2xmYOaZ91uDdbqSRdZ1F9iOYAb5xVSV6RuHvf3F84GQ=="; 1967 1967 }; 1968 1968 }; 1969 - "@electron-forge/installer-deb-6.0.0-beta.60" = { 1969 + "@electron-forge/installer-deb-6.0.0-beta.61" = { 1970 1970 name = "_at_electron-forge_slash_installer-deb"; 1971 1971 packageName = "@electron-forge/installer-deb"; 1972 - version = "6.0.0-beta.60"; 1972 + version = "6.0.0-beta.61"; 1973 1973 src = fetchurl { 1974 - url = "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.60.tgz"; 1975 - sha512 = "Wma/FqochMopLeQTxW2/3uRt69JkkL7xq91P5PDJzIgEXEjlU0SyR8LKvNC8VMPQ7/cBDHowpI79cMBVjif25g=="; 1974 + url = "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.61.tgz"; 1975 + sha512 = "jA8H9RiIK9whif5pq3phzIncW6+FLOcPoipi75oh+LOp6Dvw39jWnfqH6mwleBH2SUhPmUy/XeFhre4LBissBQ=="; 1976 1976 }; 1977 1977 }; 1978 - "@electron-forge/installer-dmg-6.0.0-beta.60" = { 1978 + "@electron-forge/installer-dmg-6.0.0-beta.61" = { 1979 1979 name = "_at_electron-forge_slash_installer-dmg"; 1980 1980 packageName = "@electron-forge/installer-dmg"; 1981 - version = "6.0.0-beta.60"; 1981 + version = "6.0.0-beta.61"; 1982 1982 src = fetchurl { 1983 - url = "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.60.tgz"; 1984 - sha512 = "N0rXYeMA4qcsDH9WadJU4RT/HmveO8ggNw3zDVmuvvV1y0nt1OGU3kHaJuslDYAUY6DNpwdHoz6wd7XLsBzDrw=="; 1983 + url = "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.61.tgz"; 1984 + sha512 = "G6C96vaaRqZLG6JLkzcFd31OBSnOX80alIh5jmOpK3jZYMSWpvhDknhYmJfGktdGhH4MGBfhEcADdMnC8aDthw=="; 1985 1985 }; 1986 1986 }; 1987 - "@electron-forge/installer-exe-6.0.0-beta.60" = { 1987 + "@electron-forge/installer-exe-6.0.0-beta.61" = { 1988 1988 name = "_at_electron-forge_slash_installer-exe"; 1989 1989 packageName = "@electron-forge/installer-exe"; 1990 - version = "6.0.0-beta.60"; 1990 + version = "6.0.0-beta.61"; 1991 1991 src = fetchurl { 1992 - url = "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.60.tgz"; 1993 - sha512 = "YZ8V5DGTRgKB1+97t9wOtJh1T7yo7ea9CWK899yodGxYmFh1Xtc4hwfszOhnnXCoy5LyQhjvnrHWA3lRffOInA=="; 1992 + url = "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.61.tgz"; 1993 + sha512 = "feq/RCjEbQ6I0Xi06plMCbQ0lOhCP/G+La5RIkfyrzYUFMrSTA4tMbBirwI7w9Akxojdqfdfo8gldAIvvVMsjg=="; 1994 1994 }; 1995 1995 }; 1996 - "@electron-forge/installer-linux-6.0.0-beta.60" = { 1996 + "@electron-forge/installer-linux-6.0.0-beta.61" = { 1997 1997 name = "_at_electron-forge_slash_installer-linux"; 1998 1998 packageName = "@electron-forge/installer-linux"; 1999 - version = "6.0.0-beta.60"; 1999 + version = "6.0.0-beta.61"; 2000 2000 src = fetchurl { 2001 - url = "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.60.tgz"; 2002 - sha512 = "yi78aQvFtpyOe0WynsuJOOIXh2BSwrHPoufVgQpqicyAF8Ql/cteL5bZAbP7YNapWRBC/dI7XjxhUl5MbbEGTg=="; 2001 + url = "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.61.tgz"; 2002 + sha512 = "5nVQINdd+h6JWNQCLYe7Sh/15gD08lO2frOcjuWuG/w7/GhvkNot7eo9ff6vceKtIOi+OgJMgJIm2XnOF92u/w=="; 2003 2003 }; 2004 2004 }; 2005 - "@electron-forge/installer-rpm-6.0.0-beta.60" = { 2005 + "@electron-forge/installer-rpm-6.0.0-beta.61" = { 2006 2006 name = "_at_electron-forge_slash_installer-rpm"; 2007 2007 packageName = "@electron-forge/installer-rpm"; 2008 - version = "6.0.0-beta.60"; 2008 + version = "6.0.0-beta.61"; 2009 2009 src = fetchurl { 2010 - url = "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.60.tgz"; 2011 - sha512 = "JKP2ZefoC4mi3nCFXt6Md82QdEFn0A2WEW5q5R1xTOLbYm0SuYYX34S0Mo+6EZgBQYqot2ExA/l6C0beq1+GRQ=="; 2010 + url = "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.61.tgz"; 2011 + sha512 = "VARwf5fi8n4Y/UC51Vr2yM85FwDt/6Ynx4Xf80n3i0liIrdXuYgiuoaQ2ukrQ0osMpXZku0pKOvIo/McSI33TA=="; 2012 2012 }; 2013 2013 }; 2014 - "@electron-forge/installer-zip-6.0.0-beta.60" = { 2014 + "@electron-forge/installer-zip-6.0.0-beta.61" = { 2015 2015 name = "_at_electron-forge_slash_installer-zip"; 2016 2016 packageName = "@electron-forge/installer-zip"; 2017 - version = "6.0.0-beta.60"; 2017 + version = "6.0.0-beta.61"; 2018 2018 src = fetchurl { 2019 - url = "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.60.tgz"; 2020 - sha512 = "MMnCESVjn1nCVBGHHd1fD+4pBEgKj/aKCwAxYP9VmZdR/EcxpcFo+yjYEHtf39gFXHAKtVtJTO/FF7m7peUz+g=="; 2019 + url = "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.61.tgz"; 2020 + sha512 = "T4YNzbPsmlHKiLpy+P5sEtrKd6bYbOdCEjXAZllNKsmU8jMjL3b3Z4rvpxWoyE4o2EMCZkf1rteFe0JEqkMzeQ=="; 2021 2021 }; 2022 2022 }; 2023 - "@electron-forge/maker-base-6.0.0-beta.60" = { 2023 + "@electron-forge/maker-base-6.0.0-beta.61" = { 2024 2024 name = "_at_electron-forge_slash_maker-base"; 2025 2025 packageName = "@electron-forge/maker-base"; 2026 - version = "6.0.0-beta.60"; 2026 + version = "6.0.0-beta.61"; 2027 2027 src = fetchurl { 2028 - url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.60.tgz"; 2029 - sha512 = "z31j1tWMQunHpy9tCvbwEIFaF8/3ip13NAerTOSdABj1ngH1Wj+wdGm05iIeRQVcCrGSn/IIj/u7RGZ5CIRE6g=="; 2028 + url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.61.tgz"; 2029 + sha512 = "Q4FC11hNr/556lVNAT9TPY6whjSXCQqJb6IS0hNCdvlIX13mrb755fhsOSIdao9DKS2huYDZBN7ZkwcOcziJHQ=="; 2030 2030 }; 2031 2031 }; 2032 - "@electron-forge/plugin-base-6.0.0-beta.60" = { 2032 + "@electron-forge/plugin-base-6.0.0-beta.61" = { 2033 2033 name = "_at_electron-forge_slash_plugin-base"; 2034 2034 packageName = "@electron-forge/plugin-base"; 2035 - version = "6.0.0-beta.60"; 2035 + version = "6.0.0-beta.61"; 2036 2036 src = fetchurl { 2037 - url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.60.tgz"; 2038 - sha512 = "tNRGBmh/kFr/S/EXLvuyIRZYeu8axwt4IhJem/26rSe7byJ4ynjDYvhWBhT4S+//3w/fMmuJJX47cPKPfHxjgg=="; 2037 + url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.61.tgz"; 2038 + sha512 = "XVnV4teAx3e08Fg0bdPWUbGZTYQBOtXiD8i80NaKfo+tk3EkxEAVxYdQfHPZ0QV+0nZ1S/RZi/Lf6nKCnIbAGg=="; 2039 2039 }; 2040 2040 }; 2041 - "@electron-forge/publisher-base-6.0.0-beta.60" = { 2041 + "@electron-forge/publisher-base-6.0.0-beta.61" = { 2042 2042 name = "_at_electron-forge_slash_publisher-base"; 2043 2043 packageName = "@electron-forge/publisher-base"; 2044 - version = "6.0.0-beta.60"; 2044 + version = "6.0.0-beta.61"; 2045 2045 src = fetchurl { 2046 - url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.60.tgz"; 2047 - sha512 = "x7Zm/mukxPnvrJzP8mvhT1hohaIrAnGrDx4AKR8P2wxvz/lejU4VOJ6uRo+7w3OIi07IYJIrG52qhSyipEspqQ=="; 2046 + url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.61.tgz"; 2047 + sha512 = "qgZeWYKPfwLZEAa2KIE/PFTllxu9xWHigxyauy5RriM6wr1Df6FB7Zreq78j3aQOpi+mPZNx7+SUPPyImWMaqQ=="; 2048 2048 }; 2049 2049 }; 2050 - "@electron-forge/shared-types-6.0.0-beta.60" = { 2050 + "@electron-forge/shared-types-6.0.0-beta.61" = { 2051 2051 name = "_at_electron-forge_slash_shared-types"; 2052 2052 packageName = "@electron-forge/shared-types"; 2053 - version = "6.0.0-beta.60"; 2053 + version = "6.0.0-beta.61"; 2054 2054 src = fetchurl { 2055 - url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.60.tgz"; 2056 - sha512 = "ZAD7Aj+FpdKSrVvxnY54G8GsZKQYIbFtYmVljOgwV9hRaSt70uCMME60yBv6gbKeX+FYk0UopiU5Txrna2EeKA=="; 2055 + url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.61.tgz"; 2056 + sha512 = "VsFGVY5hXqEmhb36fg1CK57bPnYDZ/kYB9iZBNoXJVOHua9lW6HJaTXKXEsFfmCJi5U9hHLhfPtcIlNHPbG3/A=="; 2057 2057 }; 2058 2058 }; 2059 - "@electron-forge/template-base-6.0.0-beta.60" = { 2059 + "@electron-forge/template-base-6.0.0-beta.61" = { 2060 2060 name = "_at_electron-forge_slash_template-base"; 2061 2061 packageName = "@electron-forge/template-base"; 2062 - version = "6.0.0-beta.60"; 2062 + version = "6.0.0-beta.61"; 2063 2063 src = fetchurl { 2064 - url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.60.tgz"; 2065 - sha512 = "+/BM7QMljccaBFVq5wGUuf6vi1/UJt9gJq32TRlc4srZGjKarwmr393agedXYUkej85ns2dXK3mexF2ehIh4qQ=="; 2064 + url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.61.tgz"; 2065 + sha512 = "tt5tDD3Hb1oO2JJVMCn6pEWzVgFDq/Gok0Vjfk7v40l7dq6QUmDN1jAlxqXucPWlxkLC7U7oxiz+cNZRGbzqfQ=="; 2066 2066 }; 2067 2067 }; 2068 - "@electron-forge/template-typescript-6.0.0-beta.60" = { 2068 + "@electron-forge/template-typescript-6.0.0-beta.61" = { 2069 2069 name = "_at_electron-forge_slash_template-typescript"; 2070 2070 packageName = "@electron-forge/template-typescript"; 2071 - version = "6.0.0-beta.60"; 2071 + version = "6.0.0-beta.61"; 2072 2072 src = fetchurl { 2073 - url = "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.60.tgz"; 2074 - sha512 = "FN0mbNg4jyRSbrr1+hpx7JV6wyWwclDjB6X9vItrTc9IXz+xCWWrvTDvEfziwm5GMqNZ7u7/yWyJZnehre2k6A=="; 2073 + url = "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.61.tgz"; 2074 + sha512 = "oV+8TSHSjIGU7laO/6YSVGkod/zzxHjS3GFc3NqJ10K6417uQ2Xcxrs4rDJvKtQfuJ58n3tql0o5Rg5Hp7BYnA=="; 2075 2075 }; 2076 2076 }; 2077 - "@electron-forge/template-typescript-webpack-6.0.0-beta.60" = { 2077 + "@electron-forge/template-typescript-webpack-6.0.0-beta.61" = { 2078 2078 name = "_at_electron-forge_slash_template-typescript-webpack"; 2079 2079 packageName = "@electron-forge/template-typescript-webpack"; 2080 - version = "6.0.0-beta.60"; 2080 + version = "6.0.0-beta.61"; 2081 2081 src = fetchurl { 2082 - url = "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.60.tgz"; 2083 - sha512 = "UKGeLuq9Ds9/DBsu3c/99q8/6aBpFNENPjZI6kZ5CWq1wXXg+6QZaZLD+D6JAEYs3QJgAVT2bYMyvjysLglNoQ=="; 2082 + url = "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.61.tgz"; 2083 + sha512 = "HWsVSfrJbkUx4tqOYu7iygDCaioLMtDezlxDGPsX78Gdm2Npk1BqaZHpAZDQrUqM9qqfi4YMxkV+md7eVfFYhQ=="; 2084 2084 }; 2085 2085 }; 2086 - "@electron-forge/template-webpack-6.0.0-beta.60" = { 2086 + "@electron-forge/template-webpack-6.0.0-beta.61" = { 2087 2087 name = "_at_electron-forge_slash_template-webpack"; 2088 2088 packageName = "@electron-forge/template-webpack"; 2089 - version = "6.0.0-beta.60"; 2089 + version = "6.0.0-beta.61"; 2090 2090 src = fetchurl { 2091 - url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.60.tgz"; 2092 - sha512 = "RyYLOzuQXKQ2mFV2d2DiUObWVe99rHXZ+d+PmOcysJWnNHjuEuLc8OOQQskRjFBy1pUkVCuv530Q1d1ufwY8lg=="; 2091 + url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.61.tgz"; 2092 + sha512 = "epOCIlbDb2oklpTrVEBWVfZETfJkkCwAtvO8JI2v/DXdGG4K+b1118ZhRKzg4tArTuyD7EqO2oRkUny37tRdqQ=="; 2093 2093 }; 2094 2094 }; 2095 2095 "@electron/get-1.13.0" = { ··· 2182 2182 sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; 2183 2183 }; 2184 2184 }; 2185 - "@exodus/schemasafe-1.0.0-rc.4" = { 2185 + "@exodus/schemasafe-1.0.0-rc.6" = { 2186 2186 name = "_at_exodus_slash_schemasafe"; 2187 2187 packageName = "@exodus/schemasafe"; 2188 - version = "1.0.0-rc.4"; 2188 + version = "1.0.0-rc.6"; 2189 2189 src = fetchurl { 2190 - url = "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.0.0-rc.4.tgz"; 2191 - sha512 = "zHISeJ5jcHSo3i2bI5RHb0XEJ1JGxQ/QQzU2FLPcJxohNohJV8jHCM1FSrOUxTspyDRSSULg3iKQa1FJ4EsSiQ=="; 2190 + url = "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.0.0-rc.6.tgz"; 2191 + sha512 = "dDnQizD94EdBwEj/fh3zPRa/HWCS9O5au2PuHhZBbuM3xWHxuaKzPBOEWze7Nn0xW68MIpZ7Xdyn1CoCpjKCuQ=="; 2192 2192 }; 2193 2193 }; 2194 2194 "@expo/apple-utils-0.0.0-alpha.25" = { ··· 2434 2434 sha512 = "iT1bU56rKrKEOfODoW6fScY11qj3iaYrZ+z11T6fo5+TDm84UGkkXjLXJTE57ZJzg0/gbccHQWYv+chY7bJN8Q=="; 2435 2435 }; 2436 2436 }; 2437 - "@fluentui/react-7.175.2" = { 2437 + "@fluentui/react-7.176.1" = { 2438 2438 name = "_at_fluentui_slash_react"; 2439 2439 packageName = "@fluentui/react"; 2440 - version = "7.175.2"; 2440 + version = "7.176.1"; 2441 2441 src = fetchurl { 2442 - url = "https://registry.npmjs.org/@fluentui/react/-/react-7.175.2.tgz"; 2443 - sha512 = "jikYyizEWUEkXISiYKA5/bmV0Am1480rmct2nTMQZgWxnZGh00NG8jTPpr+rQKRENTyBvvpE8wZVp4/f5XKzAg=="; 2442 + url = "https://registry.npmjs.org/@fluentui/react/-/react-7.176.1.tgz"; 2443 + sha512 = "lYiJLLYXOpURpTUnyH/hXK4/KVJCV5l37mD50v7C0yKucrT48FtTfkhNXPpo365wR/avXltTP80q2Cdysm7fHQ=="; 2444 2444 }; 2445 2445 }; 2446 2446 "@fluentui/react-focus-7.18.0" = { ··· 2722 2722 sha512 = "UXepkOKCATJrhHGsxt+CGfpZy9zUn1q9mop5kfcXq1fBkTePxVNPOdnISlCbJFlCtld+pSLGyZCzr9/zVprFKA=="; 2723 2723 }; 2724 2724 }; 2725 - "@grpc/grpc-js-1.3.4" = { 2726 - name = "_at_grpc_slash_grpc-js"; 2727 - packageName = "@grpc/grpc-js"; 2728 - version = "1.3.4"; 2729 - src = fetchurl { 2730 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.4.tgz"; 2731 - sha512 = "AxtZcm0mArQhY9z8T3TynCYVEaSKxNCa9mVhVwBCUnsuUEe8Zn94bPYYKVQSLt+hJJ1y0ukr3mUvtWfcATL/IQ=="; 2732 - }; 2733 - }; 2734 - "@grpc/grpc-js-1.3.6" = { 2735 - name = "_at_grpc_slash_grpc-js"; 2736 - packageName = "@grpc/grpc-js"; 2737 - version = "1.3.6"; 2738 - src = fetchurl { 2739 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.6.tgz"; 2740 - sha512 = "v7+LQFbqZKmd/Tvf5/j1Xlbq6jXL/4d+gUtm2TNX4QiEC3ELWADmGr2dGlUyLl6aKTuYfsN72vAsO5zmavYkEg=="; 2741 - }; 2742 - }; 2743 2725 "@grpc/grpc-js-1.3.7" = { 2744 2726 name = "_at_grpc_slash_grpc-js"; 2745 2727 packageName = "@grpc/grpc-js"; ··· 2758 2740 sha512 = "q2Qle60Ht2OQBCp9S5hv1JbI4uBBq6/mqSevFNK3ZEgRDBCAkWqZPUhD/K9gXOHrHKluliHiVq2L9sw1mVyAIg=="; 2759 2741 }; 2760 2742 }; 2761 - "@grpc/proto-loader-0.6.3" = { 2743 + "@grpc/proto-loader-0.6.4" = { 2762 2744 name = "_at_grpc_slash_proto-loader"; 2763 2745 packageName = "@grpc/proto-loader"; 2764 - version = "0.6.3"; 2746 + version = "0.6.4"; 2765 2747 src = fetchurl { 2766 - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.3.tgz"; 2767 - sha512 = "AtMWwb7kY8DdtwIQh2hC4YFM1MzZ22lMA+gjbnCYDgICt14vX2tCa59bDrEjFyOI4LvORjpvT/UhHUdKvsX8og=="; 2748 + url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.4.tgz"; 2749 + sha512 = "7xvDvW/vJEcmLUltCUGOgWRPM8Oofv0eCFSVMuKqaqWJaXSzmB+m9hiyqe34QofAl4WAzIKUZZlinIF9FOHyTQ=="; 2768 2750 }; 2769 2751 }; 2770 - "@grpc/proto-loader-0.6.4" = { 2752 + "@grpc/proto-loader-0.6.5" = { 2771 2753 name = "_at_grpc_slash_proto-loader"; 2772 2754 packageName = "@grpc/proto-loader"; 2773 - version = "0.6.4"; 2755 + version = "0.6.5"; 2774 2756 src = fetchurl { 2775 - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.4.tgz"; 2776 - sha512 = "7xvDvW/vJEcmLUltCUGOgWRPM8Oofv0eCFSVMuKqaqWJaXSzmB+m9hiyqe34QofAl4WAzIKUZZlinIF9FOHyTQ=="; 2757 + url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.5.tgz"; 2758 + sha512 = "GZdzyVQI1Bln/kCzIYgTKu+rQJ5dno0gVrfmLe4jqQu7T2e7svSwJzpCBqVU5hhBSJP3peuPjOMWsj5GR61YmQ=="; 2777 2759 }; 2778 2760 }; 2779 2761 "@gulp-sourcemaps/identity-map-1.0.2" = { ··· 3838 3820 sha1 = "3e591f32e1f0c3981c864239f7b0ac06e610f8a9"; 3839 3821 }; 3840 3822 }; 3841 - "@mapbox/geojson-coords-0.0.1" = { 3823 + "@mapbox/geojson-coords-0.0.2" = { 3842 3824 name = "_at_mapbox_slash_geojson-coords"; 3843 3825 packageName = "@mapbox/geojson-coords"; 3844 - version = "0.0.1"; 3826 + version = "0.0.2"; 3845 3827 src = fetchurl { 3846 - url = "https://registry.npmjs.org/@mapbox/geojson-coords/-/geojson-coords-0.0.1.tgz"; 3847 - sha512 = "cdMlqmDl1vzAl2E0XC2zIuqM74vdet0Dq2el49haJEVbGpC8se40j5UcsnBK/gsvZzrume30fon1u/aSYMXG4Q=="; 3828 + url = "https://registry.npmjs.org/@mapbox/geojson-coords/-/geojson-coords-0.0.2.tgz"; 3829 + sha512 = "YuVzpseee/P1T5BWyeVVPppyfmuXYHFwZHmybkqaMfu4BWlOf2cmMGKj2Rr92MwfSTOCSUA0PAsVGRG8akY0rg=="; 3848 3830 }; 3849 3831 }; 3850 - "@mapbox/geojson-extent-1.0.0" = { 3832 + "@mapbox/geojson-extent-1.0.1" = { 3851 3833 name = "_at_mapbox_slash_geojson-extent"; 3852 3834 packageName = "@mapbox/geojson-extent"; 3853 - version = "1.0.0"; 3835 + version = "1.0.1"; 3854 3836 src = fetchurl { 3855 - url = "https://registry.npmjs.org/@mapbox/geojson-extent/-/geojson-extent-1.0.0.tgz"; 3856 - sha512 = "OWW/Tw7OkKHoogXjQJNILjLd2d4JZzO/elc5Qr08VNwFSIPpSnJgyaEGO2xRPqNuWDLr4RocuqmC0FcQWPgeOA=="; 3837 + url = "https://registry.npmjs.org/@mapbox/geojson-extent/-/geojson-extent-1.0.1.tgz"; 3838 + sha512 = "hh8LEO3djT4fqfr8sSC6wKt+p0TMiu+KOLMBUiFOyj+zGq7+IXwQGl0ppCVDkyzCewyd9LoGe9zAvDxXrLfhLw=="; 3857 3839 }; 3858 3840 }; 3859 3841 "@mapbox/geojson-normalize-0.0.1" = { ··· 3973 3955 sha512 = "7AQsO0hMmpqDledV7AhBuSYqYPFsKP9PaltMecX9nlnsyFxqtsqUg9/pvB2L/jxvskrDrNkdKYz2KTbQznCtng=="; 3974 3956 }; 3975 3957 }; 3976 - "@mdn/browser-compat-data-3.3.14" = { 3958 + "@mdn/browser-compat-data-4.0.2" = { 3977 3959 name = "_at_mdn_slash_browser-compat-data"; 3978 3960 packageName = "@mdn/browser-compat-data"; 3979 - version = "3.3.14"; 3961 + version = "4.0.2"; 3980 3962 src = fetchurl { 3981 - url = "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-3.3.14.tgz"; 3982 - sha512 = "n2RC9d6XatVbWFdHLimzzUJxJ1KY8LdjqrW6YvGPiRmsHkhOUx74/Ct10x5Yo7bC/Jvqx7cDEW8IMPv/+vwEzA=="; 3963 + url = "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-4.0.2.tgz"; 3964 + sha512 = "XGLqWi1uOil0L4TJs9KOTMRl9FdEtRQLvBDaB7++AFnFf9G0QYihiUNRJ4eXZa53KI9VORsEi3Fj8p3N+m/Gdw=="; 3983 3965 }; 3984 3966 }; 3985 3967 "@mdx-js/util-2.0.0-next.8" = { ··· 4009 3991 sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; 4010 3992 }; 4011 3993 }; 4012 - "@microsoft/load-themed-styles-1.10.208" = { 3994 + "@microsoft/load-themed-styles-1.10.212" = { 4013 3995 name = "_at_microsoft_slash_load-themed-styles"; 4014 3996 packageName = "@microsoft/load-themed-styles"; 4015 - version = "1.10.208"; 3997 + version = "1.10.212"; 4016 3998 src = fetchurl { 4017 - url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.208.tgz"; 4018 - sha512 = "lOJQ/FOFiZJ+LIOUnVKu2StmB3DKIg50XTlm6DwBXpgUowAFhJ188mck8j4POpZtzQf/DfmOlQLqPEZXzM/6/A=="; 3999 + url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.212.tgz"; 4000 + sha512 = "92kEfM+8eFg35DNnlxumrscxctwCM9aXExIha4WbAm03k7C69rFer3e7op5cszWBHTwbw9LZJLqQ165pPlWgCQ=="; 4019 4001 }; 4020 4002 }; 4021 4003 "@mitmaro/errors-1.0.0" = { ··· 4090 4072 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 4091 4073 }; 4092 4074 }; 4093 - "@netlify/build-18.8.0" = { 4075 + "@netlify/build-18.11.2" = { 4094 4076 name = "_at_netlify_slash_build"; 4095 4077 packageName = "@netlify/build"; 4096 - version = "18.8.0"; 4078 + version = "18.11.2"; 4097 4079 src = fetchurl { 4098 - url = "https://registry.npmjs.org/@netlify/build/-/build-18.8.0.tgz"; 4099 - sha512 = "6xU3mGfkSPJlhK5r0y9fMgBRmQFzs6UxPB4MLQ6hmufL/Tj4vFx56hCXX5+fADpThe0uMw+ubNbMr0L44b5gzQ=="; 4080 + url = "https://registry.npmjs.org/@netlify/build/-/build-18.11.2.tgz"; 4081 + sha512 = "YwqABbzBZ0eSbltdDYXvyp6YoZxh4KoMCayxiOQvRUTGFDVky8EBZkR9Fcvvcb14TIaYQd8PK3xV7SJk2QKtzQ=="; 4100 4082 }; 4101 4083 }; 4102 4084 "@netlify/cache-utils-2.0.3" = { ··· 4108 4090 sha512 = "820dYhacTHXKxpYm81VlmCJ48ySGj+6GZi1oPLevdTSkMXGM1BphBKUjM/r9+GUE1ocGOh8Vdt3PsDp8f7gS4w=="; 4109 4091 }; 4110 4092 }; 4111 - "@netlify/config-15.6.2" = { 4093 + "@netlify/config-15.6.3" = { 4112 4094 name = "_at_netlify_slash_config"; 4113 4095 packageName = "@netlify/config"; 4114 - version = "15.6.2"; 4096 + version = "15.6.3"; 4115 4097 src = fetchurl { 4116 - url = "https://registry.npmjs.org/@netlify/config/-/config-15.6.2.tgz"; 4117 - sha512 = "wFZ2sLg/NaU0kQC8EnxdMUrr3rMWC8CQnBedQsxRW2dmQKQgW4tsCqUVy2U++iu2FTZkh8CwYo8W0qCPoel4lA=="; 4098 + url = "https://registry.npmjs.org/@netlify/config/-/config-15.6.3.tgz"; 4099 + sha512 = "VYJSJgWAh1VwjCOhMt8h3lEb6ZzfHa6qAzA5TyEtfqFV3chBrIso9qx7JkVapAFlFnEiIb1BFX1n81xkmx/8oA=="; 4118 4100 }; 4119 4101 }; 4120 4102 "@netlify/esbuild-0.13.6" = { ··· 4126 4108 sha512 = "tiKmDcHM2riSVN79c0mJY/67EBDafXQAMitHuLiCDAMdtz3kfv+NqdVG5krgf5lWR8Uf8AeZrUW5Q9RP25REvw=="; 4127 4109 }; 4128 4110 }; 4129 - "@netlify/framework-info-5.9.1" = { 4111 + "@netlify/framework-info-5.9.2" = { 4130 4112 name = "_at_netlify_slash_framework-info"; 4131 4113 packageName = "@netlify/framework-info"; 4132 - version = "5.9.1"; 4114 + version = "5.9.2"; 4133 4115 src = fetchurl { 4134 - url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-5.9.1.tgz"; 4135 - sha512 = "EBbR4grr0innWmKk43q5iLokcuJ1bZn/56KBz8WyKsarCvLkt6SqHaxXJp3Uab1D6Fhn0BTQBhIttb3KdyPGdQ=="; 4116 + url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-5.9.2.tgz"; 4117 + sha512 = "2mzH9iOc57rUx698oIjOvw5wLRJJBHTgNBqLU6ZhUSn14Nj02jej5F2POeH4Zwi48u45YpTnJ0nnSIUjNExNWg=="; 4136 4118 }; 4137 4119 }; 4138 4120 "@netlify/functions-utils-2.0.2" = { ··· 4144 4126 sha512 = "mQI0NX0QPNVcYb2TQF5cpxO350BR9309r7vSOSvfn0DHkPWUea1kl3iiLXi1mm/dUC6pd3p5ctc0UboW0u+iVQ=="; 4145 4127 }; 4146 4128 }; 4147 - "@netlify/git-utils-2.0.1" = { 4129 + "@netlify/git-utils-2.0.2" = { 4148 4130 name = "_at_netlify_slash_git-utils"; 4149 4131 packageName = "@netlify/git-utils"; 4150 - version = "2.0.1"; 4132 + version = "2.0.2"; 4151 4133 src = fetchurl { 4152 - url = "https://registry.npmjs.org/@netlify/git-utils/-/git-utils-2.0.1.tgz"; 4153 - sha512 = "a9GKmoOJuVTQ4+0x+4utS9XOySIGX5KBhMUgPKXGAZAFNeDXGkJj+ITrzyHcyJ4P8d8WPfQEXIusIqAqlfp+DA=="; 4134 + url = "https://registry.npmjs.org/@netlify/git-utils/-/git-utils-2.0.2.tgz"; 4135 + sha512 = "gk1ak1AAktsjHQDY1Sg0qp8H+3dcmdB7jEmr0MD8V7X4u/CByPx8fBC0ZpksZ+HhkAdw/thRL4Qir+zhh4QtWA=="; 4154 4136 }; 4155 4137 }; 4156 4138 "@netlify/local-functions-proxy-1.1.1" = { ··· 4297 4279 sha512 = "yRgsmBw8Wzk6/I/afcerhC+3XtVxXUF0xrSMOYgxV0bmaKJmB/0StJG4FY9TOAmb/IzCp82mR/63ZpzwIvpVzw=="; 4298 4280 }; 4299 4281 }; 4300 - "@netlify/routing-local-proxy-0.31.0" = { 4282 + "@netlify/routing-local-proxy-0.33.2" = { 4301 4283 name = "_at_netlify_slash_routing-local-proxy"; 4302 4284 packageName = "@netlify/routing-local-proxy"; 4303 - version = "0.31.0"; 4285 + version = "0.33.2"; 4304 4286 src = fetchurl { 4305 - url = "https://registry.npmjs.org/@netlify/routing-local-proxy/-/routing-local-proxy-0.31.0.tgz"; 4306 - sha512 = "SSlWic9za/0QtfCP7GllJcOV98BWlx2goOF9bLLhmsHGiPfrhlhZfemqdMtKM4BIs+G70wzUqaIYeyjtxVh37A=="; 4287 + url = "https://registry.npmjs.org/@netlify/routing-local-proxy/-/routing-local-proxy-0.33.2.tgz"; 4288 + sha512 = "0y8PMy5f73PSttizvmxGk1MbrdZL6qKRZr9jH2Rk+OB29EhNlcsdJT56DHSjnIUxRAmeZVY0JnXDhHNI2cDapQ=="; 4307 4289 }; 4308 4290 }; 4309 4291 "@netlify/run-utils-2.0.1" = { ··· 4315 4297 sha512 = "F1YcF2kje0Ttj+t5Cn5d6ojGQcKj4i/GMWgQuoZGVjQ31ToNcDXIbBm5SBKIkMMpNejtR1wF+1a0Q+aBPWiZVQ=="; 4316 4298 }; 4317 4299 }; 4318 - "@netlify/zip-it-and-ship-it-4.20.0" = { 4300 + "@netlify/zip-it-and-ship-it-4.22.0" = { 4319 4301 name = "_at_netlify_slash_zip-it-and-ship-it"; 4320 4302 packageName = "@netlify/zip-it-and-ship-it"; 4321 - version = "4.20.0"; 4303 + version = "4.22.0"; 4322 4304 src = fetchurl { 4323 - url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.20.0.tgz"; 4324 - sha512 = "+wo8rupUJbrfw/lEBPccVP+GhFEJEbzx7M67eSEWxqwQkUKtZIHbBc6Ile+iVXqFnLyM2ryfxLTcSIm1pc797g=="; 4305 + url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.22.0.tgz"; 4306 + sha512 = "etOGaq248ws55tYiJ16qnkpD9UKisiVH4g/RnO1oVP45+BSdRmNynUZkFbAZqpkEe8F61r4lxGBHsStuxXfXMQ=="; 4325 4307 }; 4326 4308 }; 4327 4309 "@node-red/editor-api-2.0.6" = { ··· 4558 4540 sha512 = "Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA=="; 4559 4541 }; 4560 4542 }; 4561 - "@oclif/core-0.5.35" = { 4543 + "@oclif/core-0.5.39" = { 4562 4544 name = "_at_oclif_slash_core"; 4563 4545 packageName = "@oclif/core"; 4564 - version = "0.5.35"; 4546 + version = "0.5.39"; 4565 4547 src = fetchurl { 4566 - url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.35.tgz"; 4567 - sha512 = "5nTd+lOcDh1QPa9mM74qFChmApp5oHnP3EqYGYwqhfA3ad4qIfyYEn8pKxf0MlrYoPA8j2PrmceuRZThstKssA=="; 4548 + url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.39.tgz"; 4549 + sha512 = "4XusxLX8PnHDQxtRP25PImlkIj1Mlx6wt0NWb1FxQGvTJOAgXGJZl3YB02ZeXZLYbeKA2A3AqqxFTTKbADnZng=="; 4568 4550 }; 4569 4551 }; 4570 4552 "@oclif/errors-1.3.5" = { ··· 4648 4630 sha512 = "60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw=="; 4649 4631 }; 4650 4632 }; 4651 - "@octokit/auth-token-2.4.5" = { 4633 + "@octokit/auth-token-2.5.0" = { 4652 4634 name = "_at_octokit_slash_auth-token"; 4653 4635 packageName = "@octokit/auth-token"; 4654 - version = "2.4.5"; 4636 + version = "2.5.0"; 4655 4637 src = fetchurl { 4656 - url = "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.5.tgz"; 4657 - sha512 = "BpGYsPgJt05M7/L/5FoE1PiAbdxXFZkX/3kDYcsvd1v6UhlnE5e96dTDr0ezX/EFwciQxf3cNV0loipsURU+WA=="; 4638 + url = "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz"; 4639 + sha512 = "r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g=="; 4658 4640 }; 4659 4641 }; 4660 4642 "@octokit/core-3.5.1" = { ··· 4684 4666 sha512 = "0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg=="; 4685 4667 }; 4686 4668 }; 4687 - "@octokit/openapi-types-10.1.1" = { 4669 + "@octokit/openapi-types-10.2.2" = { 4688 4670 name = "_at_octokit_slash_openapi-types"; 4689 4671 packageName = "@octokit/openapi-types"; 4690 - version = "10.1.1"; 4672 + version = "10.2.2"; 4691 4673 src = fetchurl { 4692 - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-10.1.1.tgz"; 4693 - sha512 = "ygp/6r25Ezb1CJuVMnFfOsScEtPF0zosdTJDZ7mZ+I8IULl7DP1BS5ZvPRwglcarGPXOvS5sHdR0bjnVDDfQdQ=="; 4674 + url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-10.2.2.tgz"; 4675 + sha512 = "EVcXQ+ZrC04cg17AMg1ofocWMxHDn17cB66ZHgYc0eUwjFtxS0oBzkyw2VqIrHBwVgtfoYrq1WMQfQmMjUwthw=="; 4694 4676 }; 4695 4677 }; 4696 4678 "@octokit/plugin-enterprise-rest-6.0.1" = { ··· 4702 4684 sha512 = "93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw=="; 4703 4685 }; 4704 4686 }; 4705 - "@octokit/plugin-paginate-rest-2.16.0" = { 4687 + "@octokit/plugin-paginate-rest-2.16.3" = { 4706 4688 name = "_at_octokit_slash_plugin-paginate-rest"; 4707 4689 packageName = "@octokit/plugin-paginate-rest"; 4708 - version = "2.16.0"; 4690 + version = "2.16.3"; 4709 4691 src = fetchurl { 4710 - url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.16.0.tgz"; 4711 - sha512 = "8YYzALPMvEZ35kgy5pdYvQ22Roz+BIuEaedO575GwE2vb/ACDqQn0xQrTJR4tnZCJn7pi8+AWPVjrFDaERIyXQ=="; 4692 + url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.16.3.tgz"; 4693 + sha512 = "kdc65UEsqze/9fCISq6BxLzeB9qf0vKvKojIfzgwf4tEF+Wy6c9dXnPFE6vgpoDFB1Z5Jek5WFVU6vL1w22+Iw=="; 4712 4694 }; 4713 4695 }; 4714 4696 "@octokit/plugin-request-log-1.0.4" = { ··· 4720 4702 sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA=="; 4721 4703 }; 4722 4704 }; 4723 - "@octokit/plugin-rest-endpoint-methods-5.10.1" = { 4705 + "@octokit/plugin-rest-endpoint-methods-5.10.4" = { 4724 4706 name = "_at_octokit_slash_plugin-rest-endpoint-methods"; 4725 4707 packageName = "@octokit/plugin-rest-endpoint-methods"; 4726 - version = "5.10.1"; 4708 + version = "5.10.4"; 4709 + src = fetchurl { 4710 + url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.10.4.tgz"; 4711 + sha512 = "Dh+EAMCYR9RUHwQChH94Skl0lM8Fh99auT8ggck/xTzjJrwVzvsd0YH68oRPqp/HxICzmUjLfaQ9sy1o1sfIiA=="; 4712 + }; 4713 + }; 4714 + "@octokit/plugin-retry-3.0.9" = { 4715 + name = "_at_octokit_slash_plugin-retry"; 4716 + packageName = "@octokit/plugin-retry"; 4717 + version = "3.0.9"; 4727 4718 src = fetchurl { 4728 - url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.10.1.tgz"; 4729 - sha512 = "Rf1iMl40I0dIxjh1g32qZ6Ym/uT8QWZMm2vYGG5Vi8SX1MwZvbuxEGXYgmzTUWSD3PYWSLilE2+4L8kmdLGTMg=="; 4719 + url = "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-3.0.9.tgz"; 4720 + sha512 = "r+fArdP5+TG6l1Rv/C9hVoty6tldw6cE2pRHNGmFPdyfrc696R6JjrQ3d7HdVqGwuzfyrcaLAKD7K8TX8aehUQ=="; 4730 4721 }; 4731 4722 }; 4732 4723 "@octokit/request-5.6.1" = { ··· 4756 4747 sha512 = "esHR5OKy38bccL/sajHqZudZCvmv4yjovMJzyXlphaUo7xykmtOdILGJ3aAm0mFHmMLmPFmDMJXf39cAjNJsrw=="; 4757 4748 }; 4758 4749 }; 4759 - "@octokit/types-6.27.0" = { 4750 + "@octokit/types-6.28.1" = { 4760 4751 name = "_at_octokit_slash_types"; 4761 4752 packageName = "@octokit/types"; 4762 - version = "6.27.0"; 4753 + version = "6.28.1"; 4763 4754 src = fetchurl { 4764 - url = "https://registry.npmjs.org/@octokit/types/-/types-6.27.0.tgz"; 4765 - sha512 = "ha27f8DToxXBPEJdzHCCuqpw7AgKfjhWGdNf3yIlBAhAsaexBXTfWw36zNSsncALXGvJq4EjLy1p3Wz45Aqb4A=="; 4755 + url = "https://registry.npmjs.org/@octokit/types/-/types-6.28.1.tgz"; 4756 + sha512 = "XlxDoQLFO5JnFZgKVQTYTvXRsQFfr/GwDUU108NJ9R5yFPkA2qXhTJjYuul3vE4eLXP40FA2nysOu2zd6boE+w=="; 4766 4757 }; 4767 4758 }; 4768 4759 "@opencensus/core-0.0.8" = { ··· 4810 4801 sha512 = "a/szuMQV0Quy0/M7kKdglcbRSoorleyyOwbTNNJ32O+RBN766wbQlMTvdimImTmwYWGr+NJOni1EcC242WlRcA=="; 4811 4802 }; 4812 4803 }; 4813 - "@ot-builder/bin-composite-types-1.1.0" = { 4804 + "@ot-builder/bin-composite-types-1.1.1" = { 4814 4805 name = "_at_ot-builder_slash_bin-composite-types"; 4815 4806 packageName = "@ot-builder/bin-composite-types"; 4816 - version = "1.1.0"; 4807 + version = "1.1.1"; 4817 4808 src = fetchurl { 4818 - url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.1.0.tgz"; 4819 - sha512 = "/JaR3T99LHJWzOp08qLE9yTpe+v9DlgyE/ZwSyueG/fbzfCquHve9qgOaIP/yEiVNhQdMEBMsJdpQyicL6db3w=="; 4809 + url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.1.1.tgz"; 4810 + sha512 = "a0TkE2hUZkQcFbiaXIYBhziCF/x23ZgBz+uEfzp+hIszWneay2r9eCJIfSJMtW82xn3g7QOz9FyXgpmtCimcBA=="; 4820 4811 }; 4821 4812 }; 4822 - "@ot-builder/bin-util-1.1.0" = { 4813 + "@ot-builder/bin-util-1.1.1" = { 4823 4814 name = "_at_ot-builder_slash_bin-util"; 4824 4815 packageName = "@ot-builder/bin-util"; 4825 - version = "1.1.0"; 4816 + version = "1.1.1"; 4826 4817 src = fetchurl { 4827 - url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.1.0.tgz"; 4828 - sha512 = "Cwk6FsYU9aJmmbFcrE1DI3t+FzdyTb6IotsCY1YAxnS4nEkj70bNRfDbxu4rzpPqBgndIjAz1FSXtlSayW0LMw=="; 4818 + url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.1.1.tgz"; 4819 + sha512 = "QQo2wkYahVeDdsPY0dIZ7AAIRwnSIq0v+vFgJhZeFe55DS/0HSe0Lc3nlKjwFMqh8jWbeczltWrKUHqNpiNCNg=="; 4829 4820 }; 4830 4821 }; 4831 - "@ot-builder/cli-help-shower-1.1.0" = { 4822 + "@ot-builder/cli-help-shower-1.1.1" = { 4832 4823 name = "_at_ot-builder_slash_cli-help-shower"; 4833 4824 packageName = "@ot-builder/cli-help-shower"; 4834 - version = "1.1.0"; 4825 + version = "1.1.1"; 4835 4826 src = fetchurl { 4836 - url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.1.0.tgz"; 4837 - sha512 = "0KaiPVXkjyuBhHZK5/1fxGX7Ch0/YAmc/+Os3QSwH8xgN2O682TZhW+TaKJzGLe6wuTomQ0H3YzO5Z4PfIyx3g=="; 4827 + url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.1.1.tgz"; 4828 + sha512 = "kUfEQQP/80DubcUjMKEOjLkS4XvIFKkgvgOhWtBiIFyqx3gK99I+j5UyxzxPjV6c22m9RN/wCPy3fWShtjnupw=="; 4838 4829 }; 4839 4830 }; 4840 - "@ot-builder/cli-proc-1.1.0" = { 4831 + "@ot-builder/cli-proc-1.1.1" = { 4841 4832 name = "_at_ot-builder_slash_cli-proc"; 4842 4833 packageName = "@ot-builder/cli-proc"; 4843 - version = "1.1.0"; 4834 + version = "1.1.1"; 4844 4835 src = fetchurl { 4845 - url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.1.0.tgz"; 4846 - sha512 = "NiFyLMF6YCSum5gvqTWYZai2by0ULkOAX41bRdyoq9i+bq2vLQAisCdo3jZ6rjAWHO+zo4YTvcTyj2ukfABycw=="; 4836 + url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.1.1.tgz"; 4837 + sha512 = "4LzX3/+t7qLhmJLLphY5omCIIvhNK/QRSpvGk2tWD/fZxJbek/tKXtU03jdHzSdcO/U0trIo3DenKztwLlf/fw=="; 4847 4838 }; 4848 4839 }; 4849 - "@ot-builder/cli-shared-1.1.0" = { 4840 + "@ot-builder/cli-shared-1.1.1" = { 4850 4841 name = "_at_ot-builder_slash_cli-shared"; 4851 4842 packageName = "@ot-builder/cli-shared"; 4852 - version = "1.1.0"; 4843 + version = "1.1.1"; 4853 4844 src = fetchurl { 4854 - url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.1.0.tgz"; 4855 - sha512 = "rMsvIZHPc6RPSX1V2XJWM0fO/stSLctRMQZPnoPWQFcChS8Xvjf7iCBD8NA7V07LUI/8hYrcb4DMzp6aoJ4/pg=="; 4845 + url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.1.1.tgz"; 4846 + sha512 = "I9ycAD61HRoWAHo2UJBh4ywskjTae8qCMUy42Ld3SLGXgBSp5xaUmlc5645qRH3tMppCqFekmKXY0QVQWL/u4w=="; 4856 4847 }; 4857 4848 }; 4858 - "@ot-builder/common-impl-1.1.0" = { 4849 + "@ot-builder/common-impl-1.1.1" = { 4859 4850 name = "_at_ot-builder_slash_common-impl"; 4860 4851 packageName = "@ot-builder/common-impl"; 4861 - version = "1.1.0"; 4852 + version = "1.1.1"; 4862 4853 src = fetchurl { 4863 - url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.1.0.tgz"; 4864 - sha512 = "Gnm1eCD2UMSXJhqoqK4vEGGIqVHKch+UF6VBO6uezT7vzdHfTW/IltIaB5ukbT4wumQfRMuZs9Eb6cabNae+hg=="; 4854 + url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.1.1.tgz"; 4855 + sha512 = "2yeCB16S77sjgwz7G4Svrjc1m40Iot6XQGoua3kRq/CErf6Cvu4OQ9QlH1W14qW9nZ3yWfHfrJ6kg8YSgJGoQw=="; 4865 4856 }; 4866 4857 }; 4867 - "@ot-builder/errors-1.1.0" = { 4858 + "@ot-builder/errors-1.1.1" = { 4868 4859 name = "_at_ot-builder_slash_errors"; 4869 4860 packageName = "@ot-builder/errors"; 4870 - version = "1.1.0"; 4861 + version = "1.1.1"; 4871 4862 src = fetchurl { 4872 - url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.1.0.tgz"; 4873 - sha512 = "88O6kaLJSWv+n1rboJ/lFEWEs3gRlABlLbqEgUX/tXqVs3cineH7ZZlBDpoNvVYnYV53KzReh8P0P4MIQklejQ=="; 4863 + url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.1.1.tgz"; 4864 + sha512 = "mCm6yHnYVI0Uz0vk3FJES089KKTKR7zoXGFFFy5sUMB3vcHm7XeIT2aOog9b+eemQBrS/WkvQN6s6E6PZY8fRA=="; 4874 4865 }; 4875 4866 }; 4876 - "@ot-builder/io-bin-cff-1.1.0" = { 4867 + "@ot-builder/io-bin-cff-1.1.1" = { 4877 4868 name = "_at_ot-builder_slash_io-bin-cff"; 4878 4869 packageName = "@ot-builder/io-bin-cff"; 4879 - version = "1.1.0"; 4870 + version = "1.1.1"; 4880 4871 src = fetchurl { 4881 - url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.1.0.tgz"; 4882 - sha512 = "bLVT7VnEViiKjL2emb1GbWwybBN0qkfqWgZgkdZJEU930nlnY//FsQhKrpZDW6A9vce7GiwuZaxeSETexF0/ug=="; 4872 + url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.1.1.tgz"; 4873 + sha512 = "dRs9stSE5UHdalErQIeVn7l4ggVoGSWWitcb2Hy5Jds1RKmD+/ZX6G+qPO5Q3CnMbDMRLHjS6RtCJzoJi9jBQw=="; 4883 4874 }; 4884 4875 }; 4885 - "@ot-builder/io-bin-encoding-1.1.0" = { 4876 + "@ot-builder/io-bin-encoding-1.1.1" = { 4886 4877 name = "_at_ot-builder_slash_io-bin-encoding"; 4887 4878 packageName = "@ot-builder/io-bin-encoding"; 4888 - version = "1.1.0"; 4879 + version = "1.1.1"; 4889 4880 src = fetchurl { 4890 - url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.1.0.tgz"; 4891 - sha512 = "77cYkXoJxfrDfjXkVIGuCHy/E+ff+t5E2zABHIFLoNmpXJvJdjYPupM/roMKkHqWjhnIP6caEwdCuxt3e8UNHA=="; 4881 + url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.1.1.tgz"; 4882 + sha512 = "MyxdWkEj5yd+miWZzLfc0ZUm3iF9lgZ8UL91qXH6IbXB9OzLtCu75meQspRcPWdGe8ta+YejNU2aQ65WBoNDwQ=="; 4892 4883 }; 4893 4884 }; 4894 - "@ot-builder/io-bin-ext-private-1.1.0" = { 4885 + "@ot-builder/io-bin-ext-private-1.1.1" = { 4895 4886 name = "_at_ot-builder_slash_io-bin-ext-private"; 4896 4887 packageName = "@ot-builder/io-bin-ext-private"; 4897 - version = "1.1.0"; 4888 + version = "1.1.1"; 4898 4889 src = fetchurl { 4899 - url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.1.0.tgz"; 4900 - sha512 = "EwaHkGdP53bEXm7drrwrD6u63kSHw0A4NX+5xzhsIqDV24LShsZ9t34O2Pby9pN9jCJJFIWN3ryXEq3sHny4cA=="; 4890 + url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.1.1.tgz"; 4891 + sha512 = "BjyCWoF0RWg/mnCQfnJHxdiNpYHEr24gZ8yl1KpRqdwHkGQDNxIGg8hzm5lIFb/gBKTl0MRJYrmkT4dYdI1UtQ=="; 4901 4892 }; 4902 4893 }; 4903 - "@ot-builder/io-bin-font-1.1.0" = { 4894 + "@ot-builder/io-bin-font-1.1.1" = { 4904 4895 name = "_at_ot-builder_slash_io-bin-font"; 4905 4896 packageName = "@ot-builder/io-bin-font"; 4906 - version = "1.1.0"; 4897 + version = "1.1.1"; 4907 4898 src = fetchurl { 4908 - url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.1.0.tgz"; 4909 - sha512 = "PslL6SFENEGtQ6zOXMewl69cOibOLLzrr8CS2Pe78zNcxJ4BWsP6dwZNeu8gVqWKLsUQJQIWbwaPiP/RDhQKUQ=="; 4899 + url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.1.1.tgz"; 4900 + sha512 = "yqLqyYCA0l272Bf/AkziCofRLnzmLaNGned5Ibi2LvklpzCmpR+Tszm8M/moBTSWhFhs82ga7ujLRqjIzDJwnA=="; 4910 4901 }; 4911 4902 }; 4912 - "@ot-builder/io-bin-glyph-store-1.1.0" = { 4903 + "@ot-builder/io-bin-glyph-store-1.1.1" = { 4913 4904 name = "_at_ot-builder_slash_io-bin-glyph-store"; 4914 4905 packageName = "@ot-builder/io-bin-glyph-store"; 4915 - version = "1.1.0"; 4906 + version = "1.1.1"; 4916 4907 src = fetchurl { 4917 - url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.1.0.tgz"; 4918 - sha512 = "ontsdJHI6dY1N0HKzdwLIb0o9G5Q+S1ETADuShP/nQD0lV3cxxj1KS/PnFE/LSoyY0AKrs630kLV1lrMS3R4rg=="; 4908 + url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.1.1.tgz"; 4909 + sha512 = "VmOZaACjzSvE3AaTxJeqpyg4q35jt0AFXOlIXG3lzzGyvUf6nFIZexvDPAWBJtkHyN5jcJ9QWGmqulGY4Son1g=="; 4919 4910 }; 4920 4911 }; 4921 - "@ot-builder/io-bin-layout-1.1.0" = { 4912 + "@ot-builder/io-bin-layout-1.1.1" = { 4922 4913 name = "_at_ot-builder_slash_io-bin-layout"; 4923 4914 packageName = "@ot-builder/io-bin-layout"; 4924 - version = "1.1.0"; 4915 + version = "1.1.1"; 4925 4916 src = fetchurl { 4926 - url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.1.0.tgz"; 4927 - sha512 = "QEW3kR/Tu1Qtp3f6zrmQKGGeRD6daTpuBwjS4AnR47WhGHLZ9IJxVsNMHJeyYwnjXAWg6Tht5HjHGnI9dKnSDA=="; 4917 + url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.1.1.tgz"; 4918 + sha512 = "O/W1AV/ewUvLwh4Pmi5AkysVmyaczfq10Z49ku05oAa3gGDxQFEyX5e/3l7zD2rSLx/FN4zUb/t5obCJoHV2VQ=="; 4928 4919 }; 4929 4920 }; 4930 - "@ot-builder/io-bin-metadata-1.1.0" = { 4921 + "@ot-builder/io-bin-metadata-1.1.1" = { 4931 4922 name = "_at_ot-builder_slash_io-bin-metadata"; 4932 4923 packageName = "@ot-builder/io-bin-metadata"; 4933 - version = "1.1.0"; 4924 + version = "1.1.1"; 4934 4925 src = fetchurl { 4935 - url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.1.0.tgz"; 4936 - sha512 = "PjeEoquOsI2mwg3MZL4VDRlzmWVA5LBeYKAY3LH140WOPYFlPN27YfWGVUO/swc98Z+5xgDZau3emj3ElSRvrw=="; 4926 + url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.1.1.tgz"; 4927 + sha512 = "xGoUWEYBPQEpwhvTqjCK2IdhXWgNyIux3MKM7lf6mqkZJBLUTNu/9GnqAmBflRVZqnNo/kMVVRp3Z3EHTVc2qw=="; 4937 4928 }; 4938 4929 }; 4939 - "@ot-builder/io-bin-metric-1.1.0" = { 4930 + "@ot-builder/io-bin-metric-1.1.1" = { 4940 4931 name = "_at_ot-builder_slash_io-bin-metric"; 4941 4932 packageName = "@ot-builder/io-bin-metric"; 4942 - version = "1.1.0"; 4933 + version = "1.1.1"; 4943 4934 src = fetchurl { 4944 - url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.1.0.tgz"; 4945 - sha512 = "mVjDTkxn6ARu7UUMi7rQCNC+fYK7IgSuO2bmYdzuozP7EmEWI5VQq3rhhMHDlvTodEuNARKJxr/tmzcB5Tx7PQ=="; 4935 + url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.1.1.tgz"; 4936 + sha512 = "ivQQ15TGPNSmULEn4prvaptyFLu8ZGg7Odt/Hd48yGRnpHiFsfJDmowJ1EJda7XqCgSAjJaXcsGj2rrtm1+quw=="; 4946 4937 }; 4947 4938 }; 4948 - "@ot-builder/io-bin-name-1.1.0" = { 4939 + "@ot-builder/io-bin-name-1.1.1" = { 4949 4940 name = "_at_ot-builder_slash_io-bin-name"; 4950 4941 packageName = "@ot-builder/io-bin-name"; 4951 - version = "1.1.0"; 4942 + version = "1.1.1"; 4952 4943 src = fetchurl { 4953 - url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.1.0.tgz"; 4954 - sha512 = "EBQLOP5LFdU18crQuNRQ4lWBzLv3Dw2R8vTvlyUY8nX8OfVUE2KhBreyTjMYTZATfNA2Ey1ZzJPhbT5LpwHg8Q=="; 4944 + url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.1.1.tgz"; 4945 + sha512 = "clLE/osaX2w7Pb08y5g19rJ0VMyGYBQYFhRF+dx1QK0MXfEaFBzA6QydIt9T03aZowrJu8Chf9Vu0XLdvXuudA=="; 4955 4946 }; 4956 4947 }; 4957 - "@ot-builder/io-bin-sfnt-1.1.0" = { 4948 + "@ot-builder/io-bin-sfnt-1.1.1" = { 4958 4949 name = "_at_ot-builder_slash_io-bin-sfnt"; 4959 4950 packageName = "@ot-builder/io-bin-sfnt"; 4960 - version = "1.1.0"; 4951 + version = "1.1.1"; 4961 4952 src = fetchurl { 4962 - url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.1.0.tgz"; 4963 - sha512 = "SO0kgwif/7idUMT/Oo8J2N1iwIY98FKtl3yKSFYegiGrMqmL4qYGq26NxCt1NgpQyyZrMQV3D5eC81EpmvEy/Q=="; 4953 + url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.1.1.tgz"; 4954 + sha512 = "QzDy42PpGMMEIur2r8cAuN2+q2lgfYYTjYoDknMSVXJSjR+ZBFyQvPOL0qPjL5++7P14z32TxB11//01VQwv7Q=="; 4964 4955 }; 4965 4956 }; 4966 - "@ot-builder/io-bin-ttf-1.1.0" = { 4957 + "@ot-builder/io-bin-ttf-1.1.1" = { 4967 4958 name = "_at_ot-builder_slash_io-bin-ttf"; 4968 4959 packageName = "@ot-builder/io-bin-ttf"; 4969 - version = "1.1.0"; 4960 + version = "1.1.1"; 4970 4961 src = fetchurl { 4971 - url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.1.0.tgz"; 4972 - sha512 = "jlyLDuCocNq43uX2wGLspoJ/t901ywgO5OTIfx/x8hg4ka6TKlC13bi0bSvaiVNB6HpDO62GJ69gufRaSCEzvQ=="; 4962 + url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.1.1.tgz"; 4963 + sha512 = "uQtaQ2mMg+cYmDJkYQRQDVlgb/ylWJQnC5rwNV1s9tun1/ol3KM6Ym3zKQPtXUYJF7mK2DBePd3HjiusU2Ioag=="; 4973 4964 }; 4974 4965 }; 4975 - "@ot-builder/ot-1.1.0" = { 4966 + "@ot-builder/ot-1.1.1" = { 4976 4967 name = "_at_ot-builder_slash_ot"; 4977 4968 packageName = "@ot-builder/ot"; 4978 - version = "1.1.0"; 4969 + version = "1.1.1"; 4979 4970 src = fetchurl { 4980 - url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.1.0.tgz"; 4981 - sha512 = "9ikUYwiE5ur7l89Ki7uDscMYWm1bxvuRzeWJoMr7thxibtnlMl6rVW5H6NspjEbOZmxgAf3YmiL3oPCq/jiewA=="; 4971 + url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.1.1.tgz"; 4972 + sha512 = "uzpHTo12lWCNQgkiLYTV6edIDbs4dEHJ85A0FdAOieJhzalN5DVdzNPVmyEo6e7+qDf4Z5wwNQy/knw0Moz47Q=="; 4982 4973 }; 4983 4974 }; 4984 - "@ot-builder/ot-encoding-1.1.0" = { 4975 + "@ot-builder/ot-encoding-1.1.1" = { 4985 4976 name = "_at_ot-builder_slash_ot-encoding"; 4986 4977 packageName = "@ot-builder/ot-encoding"; 4987 - version = "1.1.0"; 4978 + version = "1.1.1"; 4988 4979 src = fetchurl { 4989 - url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.1.0.tgz"; 4990 - sha512 = "2x/lVIxC42XJdNB9BhvKq3P/bO1yomTwkLVcBS9R92x6/V1t4KOVCYHOtNL79lCGfZkdCWxHxtHhChF55BetsQ=="; 4980 + url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.1.1.tgz"; 4981 + sha512 = "XLGIHrYkLf1yq6fC9lDonWW5nA1z6t0+JFs01biQ40SholcfTOrlpCNbh7646UHTlOQX93CuzyFFSA/ONwOs2Q=="; 4991 4982 }; 4992 4983 }; 4993 - "@ot-builder/ot-ext-private-1.1.0" = { 4984 + "@ot-builder/ot-ext-private-1.1.1" = { 4994 4985 name = "_at_ot-builder_slash_ot-ext-private"; 4995 4986 packageName = "@ot-builder/ot-ext-private"; 4996 - version = "1.1.0"; 4987 + version = "1.1.1"; 4997 4988 src = fetchurl { 4998 - url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.1.0.tgz"; 4999 - sha512 = "MBMiz8RC8crmx7PB89G75y2nIue6+QkIiXGsx402ozlLQVgJe9YznV7dzUHlpLrPGFsbMYPRfZVTV4Ro+YAK0A=="; 4989 + url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.1.1.tgz"; 4990 + sha512 = "SKHLh13DSvSsWuAd9xsHOei8FjVyYAE0fTzbN/22mWFnrFMryuWVz1GE8n6KpxLa2EYjW1zQ9njuq1JnzjCCaw=="; 5000 4991 }; 5001 4992 }; 5002 - "@ot-builder/ot-glyphs-1.1.0" = { 4993 + "@ot-builder/ot-glyphs-1.1.1" = { 5003 4994 name = "_at_ot-builder_slash_ot-glyphs"; 5004 4995 packageName = "@ot-builder/ot-glyphs"; 5005 - version = "1.1.0"; 4996 + version = "1.1.1"; 5006 4997 src = fetchurl { 5007 - url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.1.0.tgz"; 5008 - sha512 = "EURkR2aUUR4Zlhdx+SdvEAkA7Vx+2mRorozb4gySs5PNqbKq43uzgXIgz1Djq6wasN00KcJGlOjogIv1zKFBwg=="; 4998 + url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.1.1.tgz"; 4999 + sha512 = "+1eUQ42XXE0X3bTJlXK7hPFxXT46Ad4rSd7v/nsIJoLCggngDZmlMP2xSfualh/x6VV66sgys49NWY9ZF/KLXg=="; 5009 5000 }; 5010 5001 }; 5011 - "@ot-builder/ot-layout-1.1.0" = { 5002 + "@ot-builder/ot-layout-1.1.1" = { 5012 5003 name = "_at_ot-builder_slash_ot-layout"; 5013 5004 packageName = "@ot-builder/ot-layout"; 5014 - version = "1.1.0"; 5005 + version = "1.1.1"; 5015 5006 src = fetchurl { 5016 - url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.1.0.tgz"; 5017 - sha512 = "x07BUvdLmcU2w8V8JxiMzv1dI5ybkuDrvpVDuwSAL/eBsuDYf7/3i+ewvHv1WlqG9nQ0v2RJK48CicrCGhlpQw=="; 5007 + url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.1.1.tgz"; 5008 + sha512 = "m3AgW5UT322g6fjUs9oRj/khjpCkAAC429PEckA1faRq2BJtCGOV5XE+S05TcjodiWNBMc11TVyREAqsSUEK/Q=="; 5018 5009 }; 5019 5010 }; 5020 - "@ot-builder/ot-metadata-1.1.0" = { 5011 + "@ot-builder/ot-metadata-1.1.1" = { 5021 5012 name = "_at_ot-builder_slash_ot-metadata"; 5022 5013 packageName = "@ot-builder/ot-metadata"; 5023 - version = "1.1.0"; 5014 + version = "1.1.1"; 5024 5015 src = fetchurl { 5025 - url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.1.0.tgz"; 5026 - sha512 = "zgUlAqDj8eCuizVbMN4CVA76m+PAUdl91tUO1JTAn5qt0Lo8kfnOWaFc/aU+Q8HD3RXENRpAjA3N3kBm05UNiQ=="; 5016 + url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.1.1.tgz"; 5017 + sha512 = "1IXH0alOpT9DA7efJnPjm6G25vRQB88T+dPFBUlxunRJCfWryUU4pKIHRDUTq4pshDRC2tGSU2z9o6a/UcRrMw=="; 5027 5018 }; 5028 5019 }; 5029 - "@ot-builder/ot-name-1.1.0" = { 5020 + "@ot-builder/ot-name-1.1.1" = { 5030 5021 name = "_at_ot-builder_slash_ot-name"; 5031 5022 packageName = "@ot-builder/ot-name"; 5032 - version = "1.1.0"; 5023 + version = "1.1.1"; 5033 5024 src = fetchurl { 5034 - url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.1.0.tgz"; 5035 - sha512 = "mudNPddCD/UD+v1fuFdPv3CzHjVS9Jt4GJhQ7or5HsG3/dIQ9N8jfqtBXtSK5ePEgoUsfhPWN5do/cwd//GQQQ=="; 5025 + url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.1.1.tgz"; 5026 + sha512 = "dtryvcD1/j8e0eaL1ZHm6Svrl3qesDtiWb6lpq0BFbGk5dP1hRICNX+McgOSssOQf2ry6O5yjzrhsPygClkg+A=="; 5036 5027 }; 5037 5028 }; 5038 - "@ot-builder/ot-sfnt-1.1.0" = { 5029 + "@ot-builder/ot-sfnt-1.1.1" = { 5039 5030 name = "_at_ot-builder_slash_ot-sfnt"; 5040 5031 packageName = "@ot-builder/ot-sfnt"; 5041 - version = "1.1.0"; 5032 + version = "1.1.1"; 5042 5033 src = fetchurl { 5043 - url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.1.0.tgz"; 5044 - sha512 = "iyz7npSWu5z9mgSnEjFkBFoOA4mKYIfbG27SGUWWWx0HWHI9cRoE+FHIcQOCJH0PmATvNCXMVfiCSPHesb57GA=="; 5034 + url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.1.1.tgz"; 5035 + sha512 = "U4WKdofSLDZNQsIf882b6snNA1tm7ooDl7o7p1cl5IcCycj/pbeqCpMwXd4mfcuzP8oAynuWvKOR2CgUjYoxEQ=="; 5045 5036 }; 5046 5037 }; 5047 - "@ot-builder/ot-standard-glyph-namer-1.1.0" = { 5038 + "@ot-builder/ot-standard-glyph-namer-1.1.1" = { 5048 5039 name = "_at_ot-builder_slash_ot-standard-glyph-namer"; 5049 5040 packageName = "@ot-builder/ot-standard-glyph-namer"; 5050 - version = "1.1.0"; 5041 + version = "1.1.1"; 5051 5042 src = fetchurl { 5052 - url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.1.0.tgz"; 5053 - sha512 = "2jyZCBOWmkKyLfU/EOS2AZjJ0Y0toqZqOb2vrIhQRUkli9cb1RyALxkOnP60IfGsD2SNa9yxZcEbS9RlRK8rvw=="; 5043 + url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.1.1.tgz"; 5044 + sha512 = "hEHm3Al0tZV48eVuupGsFmxuOPih60on3aQlhYp4zqdxSqPEmiDycdsJ7isjqi405MnYfKY+HKDihGXisWXhHQ=="; 5054 5045 }; 5055 5046 }; 5056 - "@ot-builder/prelude-1.1.0" = { 5047 + "@ot-builder/prelude-1.1.1" = { 5057 5048 name = "_at_ot-builder_slash_prelude"; 5058 5049 packageName = "@ot-builder/prelude"; 5059 - version = "1.1.0"; 5050 + version = "1.1.1"; 5060 5051 src = fetchurl { 5061 - url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.1.0.tgz"; 5062 - sha512 = "ghZ04jh2z8WD4UdHJVXKTyjzAo7zUD4lyilrO17fKT3WqD/LW/2vKC7inwepELwVC03uT8xaVhnflF1rYGMzKg=="; 5052 + url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.1.1.tgz"; 5053 + sha512 = "/o7oAgrKzcCwqJCgagucGZE+J2+RSCNTOo5b5OBhSYeHZkHuqkWHa/0osn93e6Pmx/2UPe14vdIAnmO3mtLR1g=="; 5063 5054 }; 5064 5055 }; 5065 - "@ot-builder/primitive-1.1.0" = { 5056 + "@ot-builder/primitive-1.1.1" = { 5066 5057 name = "_at_ot-builder_slash_primitive"; 5067 5058 packageName = "@ot-builder/primitive"; 5068 - version = "1.1.0"; 5059 + version = "1.1.1"; 5069 5060 src = fetchurl { 5070 - url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.1.0.tgz"; 5071 - sha512 = "ob7od9Lr3nlGSM6v4xoM8krXuO2W0bOFfpog4Trsg6BArRz8zFfdFVjsZ8umxAhJX2z0Jroiq1nM8okdkw0TDQ=="; 5061 + url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.1.1.tgz"; 5062 + sha512 = "Cnz9jKC+PLmpkBtcZCjUkb4+nxvaRaltVTWVPcPyhyKJRGcVJ71bYp/akV/+z6O6EO2vhleJdoayHr9GuLxYwQ=="; 5072 5063 }; 5073 5064 }; 5074 - "@ot-builder/rectify-1.1.0" = { 5065 + "@ot-builder/rectify-1.1.1" = { 5075 5066 name = "_at_ot-builder_slash_rectify"; 5076 5067 packageName = "@ot-builder/rectify"; 5077 - version = "1.1.0"; 5068 + version = "1.1.1"; 5078 5069 src = fetchurl { 5079 - url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.1.0.tgz"; 5080 - sha512 = "nT6VP78JwQtLcyn+DEVp5Xv5bAi+6z9Y8QaaLYWCtv5AnY4aNN7VKwiK4v9Kag77BYDqYT7PI4et2tR5Pf4jSA=="; 5070 + url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.1.1.tgz"; 5071 + sha512 = "vTEqcITcKTaZiyhdk1MWL0sKj8L/oKARNeSusJs3kMxzxtTZQVnG4sdbE8BvKy686DHtwggNyROncp1FPY0EEw=="; 5081 5072 }; 5082 5073 }; 5083 - "@ot-builder/stat-glyphs-1.1.0" = { 5074 + "@ot-builder/stat-glyphs-1.1.1" = { 5084 5075 name = "_at_ot-builder_slash_stat-glyphs"; 5085 5076 packageName = "@ot-builder/stat-glyphs"; 5086 - version = "1.1.0"; 5077 + version = "1.1.1"; 5087 5078 src = fetchurl { 5088 - url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.1.0.tgz"; 5089 - sha512 = "FquKCcC2/Z/cCV16vi+8DHoQzMdwaYSgvA8Hv4Djx3aYLyAmYe14ODfZF63RcW5uh7pZsG1c6u82bf1trwZr9g=="; 5079 + url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.1.1.tgz"; 5080 + sha512 = "vBukU1iyR9o+cDEpJd/X+EH8ySCgIM+g4VujiDk0EIaXD0fUuN/9IIbYnOIl6QmFaPLFTngR9d/Kmtm6QtHrUQ=="; 5090 5081 }; 5091 5082 }; 5092 - "@ot-builder/trace-1.1.0" = { 5083 + "@ot-builder/trace-1.1.1" = { 5093 5084 name = "_at_ot-builder_slash_trace"; 5094 5085 packageName = "@ot-builder/trace"; 5095 - version = "1.1.0"; 5086 + version = "1.1.1"; 5096 5087 src = fetchurl { 5097 - url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.1.0.tgz"; 5098 - sha512 = "1C2vziYWUYe2YzPEPfNIdqjXtVjl5we69EjX5q4ZZPbCFFoeWGRR54Zxgyp8V5GAvKz0Pn94nXGaFlfEdwk3jQ=="; 5088 + url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.1.1.tgz"; 5089 + sha512 = "Js9UH5YF2/7/rfNQbYbW/Lw/g3Nz4gjOr7BFJIgvBYw4Bu4EKg0Ic30OVfxdxJ7l1YwwtTDxnlCvPyjhoY5F9A=="; 5099 5090 }; 5100 5091 }; 5101 - "@ot-builder/var-store-1.1.0" = { 5092 + "@ot-builder/var-store-1.1.1" = { 5102 5093 name = "_at_ot-builder_slash_var-store"; 5103 5094 packageName = "@ot-builder/var-store"; 5104 - version = "1.1.0"; 5095 + version = "1.1.1"; 5105 5096 src = fetchurl { 5106 - url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.1.0.tgz"; 5107 - sha512 = "Q60yNeIDJiqlHIPDkqJJXZWN5zodkKQQv/5PpLIocKMdHrQVqltrTQ5QL+V42Nup1+BiGt1zmR+sO+uUa3A/Iw=="; 5097 + url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.1.1.tgz"; 5098 + sha512 = "8MZo9pfCFCfNb42eGnZMHuqIYi5GFDOxXGC7gkiKVkPd7RtDe2v5ZLMDEHgQwHACArUn16/U+cSexNbXg8y+Yw=="; 5108 5099 }; 5109 5100 }; 5110 - "@ot-builder/variance-1.1.0" = { 5101 + "@ot-builder/variance-1.1.1" = { 5111 5102 name = "_at_ot-builder_slash_variance"; 5112 5103 packageName = "@ot-builder/variance"; 5113 - version = "1.1.0"; 5104 + version = "1.1.1"; 5114 5105 src = fetchurl { 5115 - url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.1.0.tgz"; 5116 - sha512 = "azUnRrvj2LKkPTYWuiEFStbUEQWbaiI6F63SZOL8yIOEr5Jya/iZ33HeeGltx/jbCrLdboad5pBechG/QD44+w=="; 5106 + url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.1.1.tgz"; 5107 + sha512 = "zCL24UlrRJ7Eojq5PgbbAjPo05NDiYhyZ+wTwbgNpiJ4Pcd64SfgXwwWcrq261v7d2W/u0TkV77xGJYnHG+vKg=="; 5117 5108 }; 5118 5109 }; 5119 5110 "@parcel/fs-1.11.0" = { ··· 5206 5197 sha512 = "I/gRlM2meKPKXFN/1fxLoigPXvAUsivxRCih7vgeO7o4qrNNsl6Ah85l3UBbFi0t7ttjMde2+bS1A32a1Hu0BA=="; 5207 5198 }; 5208 5199 }; 5209 - "@prisma/engines-2.31.0-32.2452cc6313d52b8b9a96999ac0e974d0aedf88db" = { 5200 + "@prisma/engines-3.1.0-24.c22652b7e418506fab23052d569b85d3aec4883f" = { 5210 5201 name = "_at_prisma_slash_engines"; 5211 5202 packageName = "@prisma/engines"; 5212 - version = "2.31.0-32.2452cc6313d52b8b9a96999ac0e974d0aedf88db"; 5203 + version = "3.1.0-24.c22652b7e418506fab23052d569b85d3aec4883f"; 5213 5204 src = fetchurl { 5214 - url = "https://registry.npmjs.org/@prisma/engines/-/engines-2.31.0-32.2452cc6313d52b8b9a96999ac0e974d0aedf88db.tgz"; 5215 - sha512 = "Q9CwN6e5E5Abso7J3A1fHbcF4NXGRINyMnf7WQ07fXaebxTTARY5BNUzy2Mo5uH82eRVO5v7ImNuR044KTjLJg=="; 5205 + url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.1.0-24.c22652b7e418506fab23052d569b85d3aec4883f.tgz"; 5206 + sha512 = "6NEp0VlLho3hVtIvj2P4h0e19AYqQSXtFGts8gSIXDnV+l5pRFZaDMfGo2RiLMR0Kfrs8c3ZYxYX0sWmVL0tWw=="; 5216 5207 }; 5217 5208 }; 5218 5209 "@protobufjs/aspromise-1.1.2" = { ··· 5359 5350 sha512 = "tU8fQs0D76ZKhJ2cWtnfQthWqiZgGBx0gH0+5D8JvaBEBaqA8foPPBt3Nonwr3ygyv5xrw2IzKWgIY86BlGs+w=="; 5360 5351 }; 5361 5352 }; 5362 - "@redocly/openapi-core-1.0.0-beta.58" = { 5353 + "@redocly/openapi-core-1.0.0-beta.60" = { 5363 5354 name = "_at_redocly_slash_openapi-core"; 5364 5355 packageName = "@redocly/openapi-core"; 5365 - version = "1.0.0-beta.58"; 5356 + version = "1.0.0-beta.60"; 5366 5357 src = fetchurl { 5367 - url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.58.tgz"; 5368 - sha512 = "aHohzi5PCBJd47cXXLD1sigVWEs4Xs9E5MOMq2RZ3FNmufiRxY+u1b4oPYGfcr4n3mBnG2qH1mFiTue6Levq7w=="; 5358 + url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.60.tgz"; 5359 + sha512 = "XxpHcdIc50f/yqNu9zObo/gF2QVkWe1QqC6l7ju05bj35fhf2fUcx+XAroPeyJpEePCeT6FeM/rID40dM1c5Nw=="; 5369 5360 }; 5370 5361 }; 5371 5362 "@redocly/react-dropdown-aria-2.0.12" = { ··· 5458 5449 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 5459 5450 }; 5460 5451 }; 5461 - "@schematics/angular-12.2.5" = { 5452 + "@schematics/angular-12.2.6" = { 5462 5453 name = "_at_schematics_slash_angular"; 5463 5454 packageName = "@schematics/angular"; 5464 - version = "12.2.5"; 5455 + version = "12.2.6"; 5465 5456 src = fetchurl { 5466 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.5.tgz"; 5467 - sha512 = "Ln2GyO7Y00PrQKjqCONCDb4dwGzGboH3zIJvicWzFO+ZgkNLr/dsitGKm8b8OfR/UEiBcnK72xwPj9FWfXA4EQ=="; 5457 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.6.tgz"; 5458 + sha512 = "53yVIB43jPpqitJXT5IxPm9Kq1P8AyRgzrCIKAl4mESsPsOIFR6ZCpuNRlaumEinHnbMpgzZ2M+RlialzAOS6w=="; 5468 5459 }; 5469 5460 }; 5470 5461 "@segment/loosely-validate-event-2.0.0" = { ··· 5539 5530 sha512 = "q2CMqCkKeBaKA/UwfJAZLkdUsbghSbiYPvAX4rl9rsR5APm4KWtjKQP9CTOtVO5JRMWYoysK6jF0d5VJOABRzQ=="; 5540 5531 }; 5541 5532 }; 5542 - "@serverless/platform-client-china-2.2.6" = { 5533 + "@serverless/platform-client-china-2.2.7" = { 5543 5534 name = "_at_serverless_slash_platform-client-china"; 5544 5535 packageName = "@serverless/platform-client-china"; 5545 - version = "2.2.6"; 5536 + version = "2.2.7"; 5546 5537 src = fetchurl { 5547 - url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-2.2.6.tgz"; 5548 - sha512 = "CRQi3vi1iqWF8qeMNjU5lq+V7ztdVY3pUf6qNhCwcxM1TAOFncM3lsbIc4yf9gsKkOThHDmltf686u/KqDGgJg=="; 5538 + url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-2.2.7.tgz"; 5539 + sha512 = "6wkOQamu7jPNq4bI/TbMrk69BrIMm/nzRwKQbq84fNmdxC+u1sxLkWuAafGYOQePbA7lq/oLEsVO3fWAA83jCA=="; 5549 5540 }; 5550 5541 }; 5551 5542 "@serverless/template-1.1.4" = { ··· 5575 5566 sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog=="; 5576 5567 }; 5577 5568 }; 5578 - "@serverless/utils-5.10.0" = { 5569 + "@serverless/utils-5.14.0" = { 5579 5570 name = "_at_serverless_slash_utils"; 5580 5571 packageName = "@serverless/utils"; 5581 - version = "5.10.0"; 5572 + version = "5.14.0"; 5582 5573 src = fetchurl { 5583 - url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.10.0.tgz"; 5584 - sha512 = "bRv5o+uR2/o6PCvRI+9mAe6quhqAyJIybI3RH/UXiRzP3qNtbt9RnZDhAe2wjNidf+8iA5UYeLRt2MG3Mb9X3w=="; 5574 + url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.14.0.tgz"; 5575 + sha512 = "70DGJLQuPOxCP0sTqI0qqH1wJ3Zk7/D7OXZ+0ABMBeu+S/L5ZVF1/ZijauemxIA80TVOM9CeOuc/bUyfIFjP2g=="; 5585 5576 }; 5586 5577 }; 5587 5578 "@serverless/utils-china-1.1.4" = { ··· 5674 5665 sha512 = "JiX9vxoKMmu8Y3Zr2RVathBL1Cdu4Nt4MuNWemt1Nc06A0RAin9c5FArkhGsyMBWfCu4zj+9b+GxtjAnE4qqLQ=="; 5675 5666 }; 5676 5667 }; 5677 - "@sindresorhus/is-4.0.1" = { 5668 + "@sindresorhus/is-4.2.0" = { 5678 5669 name = "_at_sindresorhus_slash_is"; 5679 5670 packageName = "@sindresorhus/is"; 5680 - version = "4.0.1"; 5671 + version = "4.2.0"; 5681 5672 src = fetchurl { 5682 - url = "https://registry.npmjs.org/@sindresorhus/is/-/is-4.0.1.tgz"; 5683 - sha512 = "Qm9hBEBu18wt1PO2flE7LPb30BHMQt1eQgbV76YntdNk73XZGpn3izvGTYxbGgzXKgbCjiia0uxTd3aTNQrY/g=="; 5673 + url = "https://registry.npmjs.org/@sindresorhus/is/-/is-4.2.0.tgz"; 5674 + sha512 = "VkE3KLBmJwcCaVARtQpfuKcKv8gcBmUubrfHGF84dXuuW6jgsRYxPtzcIhPyK9WAPpRt2/xY6zkD9MnRaJzSyw=="; 5684 5675 }; 5685 5676 }; 5686 5677 "@sindresorhus/slugify-1.1.2" = { ··· 6088 6079 sha512 = "RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="; 6089 6080 }; 6090 6081 }; 6091 - "@trysound/sax-0.1.1" = { 6082 + "@trysound/sax-0.2.0" = { 6092 6083 name = "_at_trysound_slash_sax"; 6093 6084 packageName = "@trysound/sax"; 6094 - version = "0.1.1"; 6085 + version = "0.2.0"; 6095 6086 src = fetchurl { 6096 - url = "https://registry.npmjs.org/@trysound/sax/-/sax-0.1.1.tgz"; 6097 - sha512 = "Z6DoceYb/1xSg5+e+ZlPZ9v0N16ZvZ+wYMraFue4HYrE4ttONKtsvruIRf6t9TBR0YvSOfi1hUU0fJfBLCDYow=="; 6087 + url = "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz"; 6088 + sha512 = "L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="; 6098 6089 }; 6099 6090 }; 6100 6091 "@turist/fetch-7.1.7" = { ··· 6340 6331 sha512 = "vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw=="; 6341 6332 }; 6342 6333 }; 6343 - "@types/debounce-1.2.0" = { 6334 + "@types/debounce-1.2.1" = { 6344 6335 name = "_at_types_slash_debounce"; 6345 6336 packageName = "@types/debounce"; 6346 - version = "1.2.0"; 6337 + version = "1.2.1"; 6347 6338 src = fetchurl { 6348 - url = "https://registry.npmjs.org/@types/debounce/-/debounce-1.2.0.tgz"; 6349 - sha512 = "bWG5wapaWgbss9E238T0R6bfo5Fh3OkeoSt245CM7JJwVwpw6MEBCbIxLq5z8KzsE3uJhzcIuQkyiZmzV3M/Dw=="; 6339 + url = "https://registry.npmjs.org/@types/debounce/-/debounce-1.2.1.tgz"; 6340 + sha512 = "epMsEE85fi4lfmJUH/89/iV/LI+F5CvNIvmgs5g5jYFPfhO2S/ae8WSsLOKWdwtoaZw9Q2IhJ4tQ5tFCcS/4HA=="; 6350 6341 }; 6351 6342 }; 6352 6343 "@types/decompress-4.2.4" = { ··· 6565 6556 sha512 = "anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw=="; 6566 6557 }; 6567 6558 }; 6568 - "@types/graphlib-2.1.8" = { 6569 - name = "_at_types_slash_graphlib"; 6570 - packageName = "@types/graphlib"; 6571 - version = "2.1.8"; 6572 - src = fetchurl { 6573 - url = "https://registry.npmjs.org/@types/graphlib/-/graphlib-2.1.8.tgz"; 6574 - sha512 = "8nbbyD3zABRA9ePoBgAl2ym8cIwKQXTfv1gaIRTdY99yEOCaHfmjBeRp+BIemS8NtOqoWK7mfzWxjNrxLK3T5w=="; 6575 - }; 6576 - }; 6577 6559 "@types/hast-2.3.4" = { 6578 6560 name = "_at_types_slash_hast"; 6579 6561 packageName = "@types/hast"; ··· 6781 6763 sha512 = "EP6O3Jkr7bXvZZSZYlsgt5DIjiGr0dXP1/jVEwVLTFgg0d+3lWVQkRavYVQszV7dYUwvg0B8R0MBDpcmXg7XIA=="; 6782 6764 }; 6783 6765 }; 6784 - "@types/lodash-4.14.172" = { 6766 + "@types/lodash-4.14.173" = { 6785 6767 name = "_at_types_slash_lodash"; 6786 6768 packageName = "@types/lodash"; 6787 - version = "4.14.172"; 6769 + version = "4.14.173"; 6788 6770 src = fetchurl { 6789 - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.172.tgz"; 6790 - sha512 = "/BHF5HAx3em7/KkzVKm3LrsD6HZAXuXO1AJZQ3cRRBZj4oHZDviWPYu0aEplAqDFNHZPW6d3G7KN+ONcCCC7pw=="; 6771 + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.173.tgz"; 6772 + sha512 = "vv0CAYoaEjCw/mLy96GBTnRoZrSxkGE0BKzKimdR8P3OzrNYNvBgtW7p055A+E8C31vXNUhWKoFCbhq7gbyhFg=="; 6791 6773 }; 6792 6774 }; 6793 6775 "@types/long-4.0.1" = { ··· 6943 6925 sha512 = "F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw=="; 6944 6926 }; 6945 6927 }; 6946 - "@types/node-12.20.24" = { 6928 + "@types/node-12.20.25" = { 6947 6929 name = "_at_types_slash_node"; 6948 6930 packageName = "@types/node"; 6949 - version = "12.20.24"; 6931 + version = "12.20.25"; 6950 6932 src = fetchurl { 6951 - url = "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz"; 6952 - sha512 = "yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ=="; 6933 + url = "https://registry.npmjs.org/@types/node/-/node-12.20.25.tgz"; 6934 + sha512 = "hcTWqk7DR/HrN9Xe7AlJwuCaL13Vcd9/g/T54YrJz4Q3ESM5mr33YCzW2bOfzSIc3aZMeGBvbLGvgN6mIJ0I5Q=="; 6953 6935 }; 6954 6936 }; 6955 6937 "@types/node-14.11.1" = { ··· 6961 6943 sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="; 6962 6944 }; 6963 6945 }; 6964 - "@types/node-14.17.15" = { 6946 + "@types/node-14.17.17" = { 6965 6947 name = "_at_types_slash_node"; 6966 6948 packageName = "@types/node"; 6967 - version = "14.17.15"; 6949 + version = "14.17.17"; 6968 6950 src = fetchurl { 6969 - url = "https://registry.npmjs.org/@types/node/-/node-14.17.15.tgz"; 6970 - sha512 = "D1sdW0EcSCmNdLKBGMYb38YsHUS6JcM7yQ6sLQ9KuZ35ck7LYCKE7kYFHOO59ayFOY3zobWVZxf4KXhYHcHYFA=="; 6971 - }; 6972 - }; 6973 - "@types/node-15.12.5" = { 6974 - name = "_at_types_slash_node"; 6975 - packageName = "@types/node"; 6976 - version = "15.12.5"; 6977 - src = fetchurl { 6978 - url = "https://registry.npmjs.org/@types/node/-/node-15.12.5.tgz"; 6979 - sha512 = "se3yX7UHv5Bscf8f1ERKvQOD6sTyycH3hdaoozvaLxgUiY5lIGEeH37AD0G0Qi9kPqihPn0HOfd2yaIEN9VwEg=="; 6951 + url = "https://registry.npmjs.org/@types/node/-/node-14.17.17.tgz"; 6952 + sha512 = "niAjcewgEYvSPCZm3OaM9y6YQrL2SEPH9PymtE6fuZAvFiP6ereCcvApGl2jKTq7copTIguX3PBvfP08LN4LvQ=="; 6980 6953 }; 6981 6954 }; 6982 6955 "@types/node-15.14.9" = { ··· 6997 6970 sha512 = "7EIraBEyRHEe7CH+Fm1XvgqU6uwZN8Q7jppJGcqjROMT29qhAuuOxYB1uEY5UMYQKEmA5D+5tBnhdaPXSsLONA=="; 6998 6971 }; 6999 6972 }; 7000 - "@types/node-16.3.3" = { 7001 - name = "_at_types_slash_node"; 7002 - packageName = "@types/node"; 7003 - version = "16.3.3"; 7004 - src = fetchurl { 7005 - url = "https://registry.npmjs.org/@types/node/-/node-16.3.3.tgz"; 7006 - sha512 = "8h7k1YgQKxKXWckzFCMfsIwn0Y61UK6tlD6y2lOb3hTOIMlK3t9/QwHOhc81TwU+RMf0As5fj7NPjroERCnejQ=="; 7007 - }; 7008 - }; 7009 6973 "@types/node-16.6.1" = { 7010 6974 name = "_at_types_slash_node"; 7011 6975 packageName = "@types/node"; ··· 7024 6988 sha512 = "S6gm2sm9xIRWTxD7Ttj8N1ZrYfqdqZEU38Nwnrhd6krk7zf8vdgMgzz8hpAX9CfmXaJfP+Vqy2EhJpVavNEocg=="; 7025 6989 }; 7026 6990 }; 7027 - "@types/node-16.7.6" = { 6991 + "@types/node-16.9.1" = { 7028 6992 name = "_at_types_slash_node"; 7029 6993 packageName = "@types/node"; 7030 - version = "16.7.6"; 6994 + version = "16.9.1"; 7031 6995 src = fetchurl { 7032 - url = "https://registry.npmjs.org/@types/node/-/node-16.7.6.tgz"; 7033 - sha512 = "VESVNFoa/ahYA62xnLBjo5ur6gPsgEE5cNRy8SrdnkZ2nwJSW0kJ4ufbFr2zuU9ALtHM8juY53VcRoTA7htXSg=="; 6996 + url = "https://registry.npmjs.org/@types/node/-/node-16.9.1.tgz"; 6997 + sha512 = "QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g=="; 7034 6998 }; 7035 6999 }; 7036 - "@types/node-16.9.0" = { 7000 + "@types/node-16.9.4" = { 7037 7001 name = "_at_types_slash_node"; 7038 7002 packageName = "@types/node"; 7039 - version = "16.9.0"; 7003 + version = "16.9.4"; 7040 7004 src = fetchurl { 7041 - url = "https://registry.npmjs.org/@types/node/-/node-16.9.0.tgz"; 7042 - sha512 = "nmP+VR4oT0pJUPFbKE4SXj3Yb4Q/kz3M9dSAO1GGMebRKWHQxLfDNmU/yh3xxCJha3N60nQ/JwXWwOE/ZSEVag=="; 7005 + url = "https://registry.npmjs.org/@types/node/-/node-16.9.4.tgz"; 7006 + sha512 = "KDazLNYAGIuJugdbULwFZULF9qQ13yNWEBFnfVpqlpgAAo6H/qnM9RjBgh0A0kmHf3XxAKLdN5mTIng9iUvVLA=="; 7043 7007 }; 7044 7008 }; 7045 7009 "@types/node-6.14.13" = { ··· 7231 7195 sha512 = "/LO7xRVnL3DxJ1WkPGDQrp4VTV1reX9RkC85mJ+Qzykj2Bdw+mG15aAfDahc76HtknjzE16SX/Yddn6MxVbmGQ=="; 7232 7196 }; 7233 7197 }; 7234 - "@types/request-2.48.6" = { 7235 - name = "_at_types_slash_request"; 7236 - packageName = "@types/request"; 7237 - version = "2.48.6"; 7238 - src = fetchurl { 7239 - url = "https://registry.npmjs.org/@types/request/-/request-2.48.6.tgz"; 7240 - sha512 = "vrZaV3Ij7j/l/3hz6OttZFtpRCu7zlq7XgkYHJP6FwVEAZkGQ095WqyJV08/GlW9eyXKVcp/xmtruHm8eHpw1g=="; 7241 - }; 7242 - }; 7243 7198 "@types/request-2.48.7" = { 7244 7199 name = "_at_types_slash_request"; 7245 7200 packageName = "@types/request"; ··· 7492 7447 sha512 = "wZt3VTmzYrgZ0l/3QmEbCq4KAJ71K3/hmMQ/nfpv84oH8e81KKwPEoQ5v8dNCxfHFVJ1JabHKmCvqdYOoVm1Ow=="; 7493 7448 }; 7494 7449 }; 7495 - "@types/webpack-4.41.30" = { 7450 + "@types/webpack-4.41.31" = { 7496 7451 name = "_at_types_slash_webpack"; 7497 7452 packageName = "@types/webpack"; 7498 - version = "4.41.30"; 7453 + version = "4.41.31"; 7499 7454 src = fetchurl { 7500 - url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.30.tgz"; 7501 - sha512 = "GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA=="; 7455 + url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.31.tgz"; 7456 + sha512 = "/i0J7sepXFIp1ZT7FjUGi1eXMCg8HCCzLJEQkKsOtbJFontsJLolBcDC+3qxn5pPwiCt1G0ZdRmYRzNBtvpuGQ=="; 7502 7457 }; 7503 7458 }; 7504 7459 "@types/webpack-sources-3.2.0" = { ··· 7528 7483 sha512 = "d/7W23JAXPodQNbOZNXvl2K+bqAQrCMwlh/nuQsPSQk6Fq0opHoPrUw43aHsvSbIiQPr8Of2hkFbnz1XBFVyZQ=="; 7529 7484 }; 7530 7485 }; 7531 - "@types/ws-7.4.5" = { 7532 - name = "_at_types_slash_ws"; 7533 - packageName = "@types/ws"; 7534 - version = "7.4.5"; 7535 - src = fetchurl { 7536 - url = "https://registry.npmjs.org/@types/ws/-/ws-7.4.5.tgz"; 7537 - sha512 = "8mbDgtc8xpxDDem5Gwj76stBDJX35KQ3YBoayxlqUQcL5BZUthiqP/VQ4PQnLHqM4PmlbyO74t98eJpURO+gPA=="; 7538 - }; 7539 - }; 7540 7486 "@types/ws-7.4.7" = { 7541 7487 name = "_at_types_slash_ws"; 7542 7488 packageName = "@types/ws"; ··· 7564 7510 sha512 = "7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw=="; 7565 7511 }; 7566 7512 }; 7567 - "@types/yauzl-2.9.1" = { 7568 - name = "_at_types_slash_yauzl"; 7569 - packageName = "@types/yauzl"; 7570 - version = "2.9.1"; 7571 - src = fetchurl { 7572 - url = "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.9.1.tgz"; 7573 - sha512 = "A1b8SU4D10uoPjwb0lnHmmu8wZhR9d+9o2PKBQT2jU5YPTKsxac6M2qGAdY7VcL+dHHhARVUDmeg0rOrcd9EjA=="; 7574 - }; 7575 - }; 7576 7513 "@types/yauzl-2.9.2" = { 7577 7514 name = "_at_types_slash_yauzl"; 7578 7515 packageName = "@types/yauzl"; ··· 7591 7528 sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw=="; 7592 7529 }; 7593 7530 }; 7594 - "@typescript-eslint/eslint-plugin-4.31.0" = { 7531 + "@types/zen-observable-0.8.3" = { 7532 + name = "_at_types_slash_zen-observable"; 7533 + packageName = "@types/zen-observable"; 7534 + version = "0.8.3"; 7535 + src = fetchurl { 7536 + url = "https://registry.npmjs.org/@types/zen-observable/-/zen-observable-0.8.3.tgz"; 7537 + sha512 = "fbF6oTd4sGGy0xjHPKAt+eS2CrxJ3+6gQ3FGcBoIJR2TLAyCkCyI8JqZNy+FeON0AhVgNJoUumVoZQjBFUqHkw=="; 7538 + }; 7539 + }; 7540 + "@typescript-eslint/eslint-plugin-4.31.2" = { 7595 7541 name = "_at_typescript-eslint_slash_eslint-plugin"; 7596 7542 packageName = "@typescript-eslint/eslint-plugin"; 7597 - version = "4.31.0"; 7543 + version = "4.31.2"; 7598 7544 src = fetchurl { 7599 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.31.0.tgz"; 7600 - sha512 = "iPKZTZNavAlOhfF4gymiSuUkgLne/nh5Oz2/mdiUmuZVD42m9PapnCnzjxuDsnpnbH3wT5s2D8bw6S39TC6GNw=="; 7545 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.31.2.tgz"; 7546 + sha512 = "w63SCQ4bIwWN/+3FxzpnWrDjQRXVEGiTt9tJTRptRXeFvdZc/wLiz3FQUwNQ2CVoRGI6KUWMNUj/pk63noUfcA=="; 7601 7547 }; 7602 7548 }; 7603 7549 "@typescript-eslint/experimental-utils-3.10.1" = { ··· 7609 7555 sha512 = "DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw=="; 7610 7556 }; 7611 7557 }; 7612 - "@typescript-eslint/experimental-utils-4.31.0" = { 7558 + "@typescript-eslint/experimental-utils-4.31.2" = { 7613 7559 name = "_at_typescript-eslint_slash_experimental-utils"; 7614 7560 packageName = "@typescript-eslint/experimental-utils"; 7615 - version = "4.31.0"; 7561 + version = "4.31.2"; 7616 7562 src = fetchurl { 7617 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.31.0.tgz"; 7618 - sha512 = "Hld+EQiKLMppgKKkdUsLeVIeEOrwKc2G983NmznY/r5/ZtZCDvIOXnXtwqJIgYz/ymsy7n7RGvMyrzf1WaSQrw=="; 7563 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.31.2.tgz"; 7564 + sha512 = "3tm2T4nyA970yQ6R3JZV9l0yilE2FedYg8dcXrTar34zC9r6JB7WyBQbpIVongKPlhEMjhQ01qkwrzWy38Bk1Q=="; 7619 7565 }; 7620 7566 }; 7621 7567 "@typescript-eslint/parser-3.10.1" = { ··· 7627 7573 sha512 = "Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw=="; 7628 7574 }; 7629 7575 }; 7630 - "@typescript-eslint/parser-4.31.0" = { 7576 + "@typescript-eslint/parser-4.31.2" = { 7631 7577 name = "_at_typescript-eslint_slash_parser"; 7632 7578 packageName = "@typescript-eslint/parser"; 7633 - version = "4.31.0"; 7579 + version = "4.31.2"; 7634 7580 src = fetchurl { 7635 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.31.0.tgz"; 7636 - sha512 = "oWbzvPh5amMuTmKaf1wp0ySxPt2ZXHnFQBN2Szu1O//7LmOvgaKTCIDNLK2NvzpmVd5A2M/1j/rujBqO37hj3w=="; 7581 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.31.2.tgz"; 7582 + sha512 = "EcdO0E7M/sv23S/rLvenHkb58l3XhuSZzKf6DBvLgHqOYdL6YFMYVtreGFWirxaU2mS1GYDby3Lyxco7X5+Vjw=="; 7637 7583 }; 7638 7584 }; 7639 - "@typescript-eslint/scope-manager-4.31.0" = { 7585 + "@typescript-eslint/scope-manager-4.31.2" = { 7640 7586 name = "_at_typescript-eslint_slash_scope-manager"; 7641 7587 packageName = "@typescript-eslint/scope-manager"; 7642 - version = "4.31.0"; 7588 + version = "4.31.2"; 7643 7589 src = fetchurl { 7644 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.31.0.tgz"; 7645 - sha512 = "LJ+xtl34W76JMRLjbaQorhR0hfRAlp3Lscdiz9NeI/8i+q0hdBZ7BsiYieLoYWqy+AnRigaD3hUwPFugSzdocg=="; 7590 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.31.2.tgz"; 7591 + sha512 = "2JGwudpFoR/3Czq6mPpE8zBPYdHWFGL6lUNIGolbKQeSNv4EAiHaR5GVDQaLA0FwgcdcMtRk+SBJbFGL7+La5w=="; 7646 7592 }; 7647 7593 }; 7648 7594 "@typescript-eslint/types-3.10.1" = { ··· 7654 7600 sha512 = "+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ=="; 7655 7601 }; 7656 7602 }; 7657 - "@typescript-eslint/types-4.31.0" = { 7603 + "@typescript-eslint/types-4.31.2" = { 7658 7604 name = "_at_typescript-eslint_slash_types"; 7659 7605 packageName = "@typescript-eslint/types"; 7660 - version = "4.31.0"; 7606 + version = "4.31.2"; 7661 7607 src = fetchurl { 7662 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.31.0.tgz"; 7663 - sha512 = "9XR5q9mk7DCXgXLS7REIVs+BaAswfdHhx91XqlJklmqWpTALGjygWVIb/UnLh4NWhfwhR5wNe1yTyCInxVhLqQ=="; 7608 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.31.2.tgz"; 7609 + sha512 = "kWiTTBCTKEdBGrZKwFvOlGNcAsKGJSBc8xLvSjSppFO88AqGxGNYtF36EuEYG6XZ9vT0xX8RNiHbQUKglbSi1w=="; 7664 7610 }; 7665 7611 }; 7666 7612 "@typescript-eslint/typescript-estree-3.10.1" = { ··· 7672 7618 sha512 = "QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w=="; 7673 7619 }; 7674 7620 }; 7675 - "@typescript-eslint/typescript-estree-4.31.0" = { 7621 + "@typescript-eslint/typescript-estree-4.31.2" = { 7676 7622 name = "_at_typescript-eslint_slash_typescript-estree"; 7677 7623 packageName = "@typescript-eslint/typescript-estree"; 7678 - version = "4.31.0"; 7624 + version = "4.31.2"; 7679 7625 src = fetchurl { 7680 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.31.0.tgz"; 7681 - sha512 = "QHl2014t3ptg+xpmOSSPn5hm4mY8D4s97ftzyk9BZ8RxYQ3j73XcwuijnJ9cMa6DO4aLXeo8XS3z1omT9LA/Eg=="; 7626 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.31.2.tgz"; 7627 + sha512 = "ieBq8U9at6PvaC7/Z6oe8D3czeW5d//Fo1xkF/s9394VR0bg/UaMYPdARiWyKX+lLEjY3w/FNZJxitMsiWv+wA=="; 7682 7628 }; 7683 7629 }; 7684 7630 "@typescript-eslint/visitor-keys-3.10.1" = { ··· 7690 7636 sha512 = "9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ=="; 7691 7637 }; 7692 7638 }; 7693 - "@typescript-eslint/visitor-keys-4.31.0" = { 7639 + "@typescript-eslint/visitor-keys-4.31.2" = { 7694 7640 name = "_at_typescript-eslint_slash_visitor-keys"; 7695 7641 packageName = "@typescript-eslint/visitor-keys"; 7696 - version = "4.31.0"; 7642 + version = "4.31.2"; 7697 7643 src = fetchurl { 7698 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.31.0.tgz"; 7699 - sha512 = "HUcRp2a9I+P21+O21yu3ezv3GEPGjyGiXoEUQwZXjR8UxRApGeLyWH4ZIIUSalE28aG4YsV6GjtaAVB3QKOu0w=="; 7644 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.31.2.tgz"; 7645 + sha512 = "PrBId7EQq2Nibns7dd/ch6S6/M4/iwLM9McbgeEbCXfxdwRUNxJ4UNreJ6Gh3fI2GNKNrWnQxKL7oCPmngKBug=="; 7700 7646 }; 7701 7647 }; 7702 7648 "@uifabric/foundation-7.10.0" = { ··· 7780 7726 sha512 = "sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q=="; 7781 7727 }; 7782 7728 }; 7783 - "@unicode/unicode-13.0.0-1.2.0" = { 7729 + "@unicode/unicode-13.0.0-1.2.1" = { 7784 7730 name = "_at_unicode_slash_unicode-13.0.0"; 7785 7731 packageName = "@unicode/unicode-13.0.0"; 7786 - version = "1.2.0"; 7732 + version = "1.2.1"; 7787 7733 src = fetchurl { 7788 - url = "https://registry.npmjs.org/@unicode/unicode-13.0.0/-/unicode-13.0.0-1.2.0.tgz"; 7789 - sha512 = "ocuWbduBe3lNt/651RUs3eVbWLCQ7S40nxCCuErm0ynDZsraAzT9TGMea2qx9mUR59/un4a+SQSTHs1vB9QfPQ=="; 7734 + url = "https://registry.npmjs.org/@unicode/unicode-13.0.0/-/unicode-13.0.0-1.2.1.tgz"; 7735 + sha512 = "8NDE4zZASktxJe+hV13K795wefyx+wRhu3Wl7TJ8fzsKx95CHsgTFmYRTscqna90zpUz6YBjGyqXHBI2ubiMaw=="; 7790 7736 }; 7791 7737 }; 7792 7738 "@uphold/request-logger-2.0.0" = { ··· 7879 7825 sha512 = "B6PedV/H2kcGEAgnqncwjHe3E8fqUNXCLv1BsrNwkHHWQJXkDN7dFeuEB4oaucBOVbjhH7KGLJ6JAiXPE3S7xA=="; 7880 7826 }; 7881 7827 }; 7882 - "@vue/compiler-core-3.2.11" = { 7828 + "@vue/compiler-core-3.2.12" = { 7883 7829 name = "_at_vue_slash_compiler-core"; 7884 7830 packageName = "@vue/compiler-core"; 7885 - version = "3.2.11"; 7831 + version = "3.2.12"; 7886 7832 src = fetchurl { 7887 - url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.11.tgz"; 7888 - sha512 = "bcbsLx5XyQg8WDDEGwmpX0BfEfv82wIs9fWFelpyVhNRGMaABvUTalYINyfhVT+jOqNaD4JBhJiVKd/8TmsHWg=="; 7833 + url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.12.tgz"; 7834 + sha512 = "IGJ0JmrAaAl5KBBegPAKkoXvsfDFgN/h7K1t/+0MxqpZF1fTDVUOp3tG7q9gWa7fwzGEaIsPhjtT5C3qztdLKg=="; 7889 7835 }; 7890 7836 }; 7891 - "@vue/compiler-dom-3.2.11" = { 7837 + "@vue/compiler-dom-3.2.12" = { 7892 7838 name = "_at_vue_slash_compiler-dom"; 7893 7839 packageName = "@vue/compiler-dom"; 7894 - version = "3.2.11"; 7840 + version = "3.2.12"; 7895 7841 src = fetchurl { 7896 - url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.11.tgz"; 7897 - sha512 = "DNvhUHI/1Hn0/+ZYDYGAuDGasUm+XHKC3FE4GqkNCTO/fcLaJMRg/7eT1m1lkc7jPffUwwfh1rZru5mwzOjrNw=="; 7842 + url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.12.tgz"; 7843 + sha512 = "MulvKilA2USm8ubPfvXvNY55HVTn+zHERsXeNg437TXrmM4FRCis6zjWW47QZ3ZyxEkCdqOmuiFCtXbpnuthyw=="; 7898 7844 }; 7899 7845 }; 7900 - "@vue/shared-3.2.11" = { 7846 + "@vue/shared-3.2.12" = { 7901 7847 name = "_at_vue_slash_shared"; 7902 7848 packageName = "@vue/shared"; 7903 - version = "3.2.11"; 7849 + version = "3.2.12"; 7904 7850 src = fetchurl { 7905 - url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.11.tgz"; 7906 - sha512 = "ovfXAsSsCvV9JVceWjkqC/7OF5HbgLOtCWjCIosmPGG8lxbPuavhIxRH1dTx4Dg9xLgRTNLvI3pVxG4ItQZekg=="; 7851 + url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.12.tgz"; 7852 + sha512 = "5CkaifUCJwcTuru7FDwKFacPJuEoGUTw0LKSa5bw40B23s0TS+MGlYR1285nbV/ju3QUGlA6d6PD+GJkWy7uFg=="; 7907 7853 }; 7908 7854 }; 7909 7855 "@webassemblyjs/ast-1.11.1" = { ··· 8464 8410 sha512 = "WwB53ikYudh9pIorgxrkHKrQZcCqNM/Q/bDzZBffEaGUKGuHrRb3zZUT9Sh2qw9yogC7SsdRmQ1ER0pqvd3bfw=="; 8465 8411 }; 8466 8412 }; 8467 - "@xmldom/xmldom-0.7.4" = { 8413 + "@xmldom/xmldom-0.7.5" = { 8468 8414 name = "_at_xmldom_slash_xmldom"; 8469 8415 packageName = "@xmldom/xmldom"; 8470 - version = "0.7.4"; 8416 + version = "0.7.5"; 8471 8417 src = fetchurl { 8472 - url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.4.tgz"; 8473 - sha512 = "wdxC79cvO7PjSM34jATd/RYZuYWQ8y/R7MidZl1NYYlbpFn1+spfjkiR3ZsJfcaTs2IyslBN7VwBBJwrYKM+zw=="; 8418 + url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz"; 8419 + sha512 = "V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A=="; 8474 8420 }; 8475 8421 }; 8476 8422 "@xmpp/base64-0.12.1" = { ··· 9166 9112 sha1 = "6a7990437ca736d5e1288db92bd3266d5f5cb2aa"; 9167 9113 }; 9168 9114 }; 9169 - "addons-linter-3.12.0" = { 9115 + "addons-linter-3.14.0" = { 9170 9116 name = "addons-linter"; 9171 9117 packageName = "addons-linter"; 9172 - version = "3.12.0"; 9118 + version = "3.14.0"; 9173 9119 src = fetchurl { 9174 - url = "https://registry.npmjs.org/addons-linter/-/addons-linter-3.12.0.tgz"; 9175 - sha512 = "GAvHjjqxVn8cQYBD6xshneACdaY2KjakWIyUhXrVbx3g8TZSF78ISucKZ1+XtKZLDvEr1LIJjeeYlR49LNH3CQ=="; 9120 + url = "https://registry.npmjs.org/addons-linter/-/addons-linter-3.14.0.tgz"; 9121 + sha512 = "vtumbG5Ma50K3JkQerx7Q03CfIYy4qZLl4jgwx42tdU8rSFy0vOWqr3t6pOnWD94r1dHAxcDoVglz2YcUrhBuQ=="; 9176 9122 }; 9177 9123 }; 9178 - "addons-scanner-utils-4.9.0" = { 9124 + "addons-scanner-utils-4.10.0" = { 9179 9125 name = "addons-scanner-utils"; 9180 9126 packageName = "addons-scanner-utils"; 9181 - version = "4.9.0"; 9127 + version = "4.10.0"; 9182 9128 src = fetchurl { 9183 - url = "https://registry.npmjs.org/addons-scanner-utils/-/addons-scanner-utils-4.9.0.tgz"; 9184 - sha512 = "RF+pVMSj3CcWV6NH4pBboCZnpzfr48ZmJCBXt/LZbU59PNepZDFxax9tl2MXzX01AXNwKUGa321pPyc5h4zV5A=="; 9129 + url = "https://registry.npmjs.org/addons-scanner-utils/-/addons-scanner-utils-4.10.0.tgz"; 9130 + sha512 = "QVpmVvcKuHHNEqz2aUKKqb5hA65xFSUP2aitkR8OSD2Fh1DGIBrVvjXP41nef3f2hLDJ+2oWrEK7toEK1wk2dQ=="; 9185 9131 }; 9186 9132 }; 9187 9133 "addr-to-ip-port-1.5.4" = { ··· 9202 9148 sha512 = "aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA=="; 9203 9149 }; 9204 9150 }; 9205 - "adm-zip-0.5.5" = { 9151 + "adm-zip-0.5.6" = { 9206 9152 name = "adm-zip"; 9207 9153 packageName = "adm-zip"; 9208 - version = "0.5.5"; 9154 + version = "0.5.6"; 9209 9155 src = fetchurl { 9210 - url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.5.tgz"; 9211 - sha512 = "IWwXKnCbirdbyXSfUDvCCrmYrOHANRZcc8NcRrvTlIApdl7PwE9oGcsYvNeJPAVY1M+70b4PxXGKIf8AEuiQ6w=="; 9156 + url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.6.tgz"; 9157 + sha512 = "nUeYhBHLG08VFOkVwai0pLXge6NNlahH+ccwxXodvl+SLa5l9mXHjg40jRVzofRPz29goiTGze7vIKmCltKtSA=="; 9212 9158 }; 9213 9159 }; 9214 9160 "adverb-where-0.2.5" = { ··· 9389 9335 src = fetchurl { 9390 9336 url = "https://registry.npmjs.org/ajv/-/ajv-8.6.2.tgz"; 9391 9337 sha512 = "9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w=="; 9338 + }; 9339 + }; 9340 + "ajv-8.6.3" = { 9341 + name = "ajv"; 9342 + packageName = "ajv"; 9343 + version = "8.6.3"; 9344 + src = fetchurl { 9345 + url = "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz"; 9346 + sha512 = "SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw=="; 9392 9347 }; 9393 9348 }; 9394 9349 "ajv-errors-1.0.1" = { ··· 9778 9733 sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="; 9779 9734 }; 9780 9735 }; 9781 - "ansi-regex-5.0.0" = { 9736 + "ansi-regex-5.0.1" = { 9782 9737 name = "ansi-regex"; 9783 9738 packageName = "ansi-regex"; 9784 - version = "5.0.0"; 9739 + version = "5.0.1"; 9785 9740 src = fetchurl { 9786 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz"; 9787 - sha512 = "bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="; 9741 + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"; 9742 + sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 9788 9743 }; 9789 9744 }; 9790 - "ansi-regex-6.0.0" = { 9745 + "ansi-regex-6.0.1" = { 9791 9746 name = "ansi-regex"; 9792 9747 packageName = "ansi-regex"; 9793 - version = "6.0.0"; 9748 + version = "6.0.1"; 9794 9749 src = fetchurl { 9795 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.0.tgz"; 9796 - sha512 = "tAaOSrWCHF+1Ear1Z4wnJCXA9GGox4K6Ic85a5qalES2aeEwQGr7UC93mwef49536PkCYjzkp0zIxfFvexJ6zQ=="; 9750 + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz"; 9751 + sha512 = "n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="; 9797 9752 }; 9798 9753 }; 9799 9754 "ansi-split-1.0.1" = { ··· 10912 10867 sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; 10913 10868 }; 10914 10869 }; 10915 - "asar-3.0.3" = { 10870 + "asar-3.1.0" = { 10916 10871 name = "asar"; 10917 10872 packageName = "asar"; 10918 - version = "3.0.3"; 10873 + version = "3.1.0"; 10919 10874 src = fetchurl { 10920 - url = "https://registry.npmjs.org/asar/-/asar-3.0.3.tgz"; 10921 - sha512 = "k7zd+KoR+n8pl71PvgElcoKHrVNiSXtw7odKbyNpmgKe7EGRF9Pnu3uLOukD37EvavKwVFxOUpqXTIZC5B5Pmw=="; 10875 + url = "https://registry.npmjs.org/asar/-/asar-3.1.0.tgz"; 10876 + sha512 = "vyxPxP5arcAqN4F/ebHd/HhwnAiZtwhglvdmc7BR2f0ywbVNTOpSeyhLDbGXtE/y58hv1oC75TaNIXutnsOZsQ=="; 10922 10877 }; 10923 10878 }; 10924 10879 "ascii-table-0.0.9" = { ··· 11236 11191 sha512 = "XdD5lRO/87udXCMC9meWdYiR+Nq6ZjUfXidViUZGu2F1MO4T3XwZ1et0hb2++BgLfhyJwy44BGB/yx80ABx8hg=="; 11237 11192 }; 11238 11193 }; 11239 - "async-append-only-log-3.0.9" = { 11194 + "async-append-only-log-3.0.11" = { 11240 11195 name = "async-append-only-log"; 11241 11196 packageName = "async-append-only-log"; 11242 - version = "3.0.9"; 11197 + version = "3.0.11"; 11243 11198 src = fetchurl { 11244 - url = "https://registry.npmjs.org/async-append-only-log/-/async-append-only-log-3.0.9.tgz"; 11245 - sha512 = "PIAz4ujkfeDkCjWawS14HIJksu52QTp8i8fSdCdzg/neNldROEjCtfcZ4+DpU4o6U7aSYNNpdN5stwDwhSZQfA=="; 11199 + url = "https://registry.npmjs.org/async-append-only-log/-/async-append-only-log-3.0.11.tgz"; 11200 + sha512 = "wAPal2HNuPe1UVkXl4DnHXjjFmBpdvuam98qNnN4F7OS4yppGIZrJEoqul0DMyd9g4LIGvhlgwfSI/wTi9zy8w=="; 11246 11201 }; 11247 11202 }; 11248 11203 "async-done-1.3.2" = { ··· 11569 11524 sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg=="; 11570 11525 }; 11571 11526 }; 11572 - "aws-sdk-2.985.0" = { 11527 + "aws-sdk-2.991.0" = { 11573 11528 name = "aws-sdk"; 11574 11529 packageName = "aws-sdk"; 11575 - version = "2.985.0"; 11530 + version = "2.991.0"; 11576 11531 src = fetchurl { 11577 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.985.0.tgz"; 11578 - sha512 = "Al1oFENrrDeKRpxlklk5sONqzCgEkrhaJ1vtIfpLYYqhNlAY+ku/z1hG1+qSlvgmljGyn7T6/zAb2EcbbAFZLQ=="; 11532 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.991.0.tgz"; 11533 + sha512 = "TybluMJhRBZ0h5HGupHPTfamwtsJlW56HddJpMbsIjvmh4LGupajrkEwLQYW7osFXQ1S/xuE+0QIy6vWgOpT0g=="; 11579 11534 }; 11580 11535 }; 11581 11536 "aws-sign2-0.6.0" = { ··· 11639 11594 src = fetchurl { 11640 11595 url = "https://registry.npmjs.org/axios-retry/-/axios-retry-3.1.9.tgz"; 11641 11596 sha512 = "NFCoNIHq8lYkJa6ku4m+V1837TP6lCa7n79Iuf8/AqATAHYB0ISaAS1eyIenDOfHOLtym34W65Sjke2xjg2fsA=="; 11642 - }; 11643 - }; 11644 - "azure-devops-node-api-10.2.2" = { 11645 - name = "azure-devops-node-api"; 11646 - packageName = "azure-devops-node-api"; 11647 - version = "10.2.2"; 11648 - src = fetchurl { 11649 - url = "https://registry.npmjs.org/azure-devops-node-api/-/azure-devops-node-api-10.2.2.tgz"; 11650 - sha512 = "4TVv2X7oNStT0vLaEfExmy3J4/CzfuXolEcQl/BRUmvGySqKStTG2O55/hUQ0kM7UJlZBLgniM0SBq4d/WkKow=="; 11651 11597 }; 11652 11598 }; 11653 11599 "azure-devops-node-api-11.0.1" = { ··· 12766 12712 sha512 = "j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w=="; 12767 12713 }; 12768 12714 }; 12715 + "big-integer-1.6.49" = { 12716 + name = "big-integer"; 12717 + packageName = "big-integer"; 12718 + version = "1.6.49"; 12719 + src = fetchurl { 12720 + url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.49.tgz"; 12721 + sha512 = "KJ7VhqH+f/BOt9a3yMwJNmcZjG53ijWMTjSAGMveQWyLwqIiwkjNP5PFgDob3Snnx86SjDj6I89fIbv0dkQeNw=="; 12722 + }; 12723 + }; 12769 12724 "big.js-3.2.0" = { 12770 12725 name = "big.js"; 12771 12726 packageName = "big.js"; ··· 13567 13522 sha1 = "b4a0a5a839a406454af0fe05a8b91a7a766a54e2"; 13568 13523 }; 13569 13524 }; 13525 + "bottleneck-2.19.5" = { 13526 + name = "bottleneck"; 13527 + packageName = "bottleneck"; 13528 + version = "2.19.5"; 13529 + src = fetchurl { 13530 + url = "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz"; 13531 + sha512 = "VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw=="; 13532 + }; 13533 + }; 13570 13534 "boundary-1.0.1" = { 13571 13535 name = "boundary"; 13572 13536 packageName = "boundary"; ··· 13648 13612 sha512 = "eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ=="; 13649 13613 }; 13650 13614 }; 13651 - "boxen-5.0.1" = { 13615 + "boxen-5.1.2" = { 13652 13616 name = "boxen"; 13653 13617 packageName = "boxen"; 13654 - version = "5.0.1"; 13618 + version = "5.1.2"; 13655 13619 src = fetchurl { 13656 - url = "https://registry.npmjs.org/boxen/-/boxen-5.0.1.tgz"; 13657 - sha512 = "49VBlw+PrWEF51aCmy7QIteYPIFZxSpvqBdP/2itCPPlJ49kj9zg/XPRFrdkne2W+CfwXUls8exMvu1RysZpKA=="; 13620 + url = "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz"; 13621 + sha512 = "9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ=="; 13658 13622 }; 13659 13623 }; 13660 13624 "bplist-creator-0.0.6" = { ··· 14657 14621 sha512 = "i4uu6M4zuMUiyfZN4RU2+i9+peJh//pXhd9x1oSe1LBkZ3LEbCoygu8W0bXTukU1Jme2txKuotpCZRaC3FLxcQ=="; 14658 14622 }; 14659 14623 }; 14624 + "cacache-11.3.3" = { 14625 + name = "cacache"; 14626 + packageName = "cacache"; 14627 + version = "11.3.3"; 14628 + src = fetchurl { 14629 + url = "https://registry.npmjs.org/cacache/-/cacache-11.3.3.tgz"; 14630 + sha512 = "p8WcneCytvzPxhDvYp31PD039vi77I12W+/KfR9S8AZbaiARFBCpsPJS+9uhWfeBfeAtW7o/4vt3MUqLkbY6nA=="; 14631 + }; 14632 + }; 14660 14633 "cacache-12.0.4" = { 14661 14634 name = "cacache"; 14662 14635 packageName = "cacache"; ··· 14763 14736 src = fetchurl { 14764 14737 url = "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz"; 14765 14738 sha512 = "A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw=="; 14739 + }; 14740 + }; 14741 + "calfinated-1.4.1" = { 14742 + name = "calfinated"; 14743 + packageName = "calfinated"; 14744 + version = "1.4.1"; 14745 + src = fetchurl { 14746 + url = "https://registry.npmjs.org/calfinated/-/calfinated-1.4.1.tgz"; 14747 + sha1 = "5037e0e77d442b3353e131b04b7bbaf1198ddc6d"; 14766 14748 }; 14767 14749 }; 14768 14750 "call-bind-1.0.2" = { ··· 14981 14963 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 14982 14964 }; 14983 14965 }; 14984 - "caniuse-lite-1.0.30001255" = { 14966 + "caniuse-lite-1.0.30001259" = { 14985 14967 name = "caniuse-lite"; 14986 14968 packageName = "caniuse-lite"; 14987 - version = "1.0.30001255"; 14969 + version = "1.0.30001259"; 14988 14970 src = fetchurl { 14989 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001255.tgz"; 14990 - sha512 = "F+A3N9jTZL882f/fg/WWVnKSu6IOo3ueLz4zwaOPbPYHNmM/ZaDUyzyJwS1mZhX7Ex5jqTyW599Gdelh5PDYLQ=="; 14971 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001259.tgz"; 14972 + sha512 = "V7mQTFhjITxuk9zBpI6nYsiTXhcPe05l+364nZjK7MFK/E7ibvYBSAXr4YcA6oPR8j3ZLM/LN+lUqUVAQEUZFg=="; 14991 14973 }; 14992 14974 }; 14993 14975 "canvas-2.8.0" = { ··· 14999 14981 sha512 = "gLTi17X8WY9Cf5GZ2Yns8T5lfBOcGgFehDFb+JQwDqdOoBOcECS9ZWMEAqMSVcMYwXD659J8NyzjRY/2aE+C2Q=="; 15000 14982 }; 15001 14983 }; 15002 - "canvg-3.0.7" = { 14984 + "canvg-3.0.8" = { 15003 14985 name = "canvg"; 15004 14986 packageName = "canvg"; 15005 - version = "3.0.7"; 14987 + version = "3.0.8"; 15006 14988 src = fetchurl { 15007 - url = "https://registry.npmjs.org/canvg/-/canvg-3.0.7.tgz"; 15008 - sha512 = "4sq6iL5Q4VOXS3PL1BapiXIZItpxYyANVzsAKpTPS5oq4u3SKbGfUcbZh2gdLCQ3jWpG/y5wRkMlBBAJhXeiZA=="; 14989 + url = "https://registry.npmjs.org/canvg/-/canvg-3.0.8.tgz"; 14990 + sha512 = "9De5heHfVRgCkln3CGEeSJMviN5U2RyxL4uutYoe8HxI60BjH2XnT2ZUHIp+ZaAZNTUd5Asqfut8WEEdANqfAg=="; 15009 14991 }; 15010 14992 }; 15011 14993 "caporal-1.4.0" = { ··· 15125 15107 sha512 = "0aaAPgW92lLmypb9iCd22k7tSD1FbF6dps8VQzmIBKY6ych2gO09b2vo/SbaLTmezJuB8Kh88Rvpl/Uq52mNZg=="; 15126 15108 }; 15127 15109 }; 15128 - "cbor-7.0.6" = { 15129 - name = "cbor"; 15130 - packageName = "cbor"; 15131 - version = "7.0.6"; 15132 - src = fetchurl { 15133 - url = "https://registry.npmjs.org/cbor/-/cbor-7.0.6.tgz"; 15134 - sha512 = "rgt2RFogHGDLFU5r0kSfyeBc+de55DwYHP73KxKsQxsR5b0CYuQPH6AnJaXByiohpLdjQqj/K0SFcOV+dXdhSA=="; 15135 - }; 15136 - }; 15137 15110 "cbor-8.0.0" = { 15138 15111 name = "cbor"; 15139 15112 packageName = "cbor"; ··· 15152 15125 sha512 = "vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg=="; 15153 15126 }; 15154 15127 }; 15155 - "cdk8s-1.0.0-beta.30" = { 15128 + "cdk8s-1.0.0-beta.46" = { 15156 15129 name = "cdk8s"; 15157 15130 packageName = "cdk8s"; 15158 - version = "1.0.0-beta.30"; 15131 + version = "1.0.0-beta.46"; 15159 15132 src = fetchurl { 15160 - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.0.0-beta.30.tgz"; 15161 - sha512 = "U7esrJ2aQ89ACJY8TD0UWgP0dC30V+vy5ZZ8zSiHJyM5JL4N61pLWXDlrKAhpI3rFlrZn6h8YefkQJRM5aC2gw=="; 15133 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.0.0-beta.46.tgz"; 15134 + sha512 = "mThFg5t92Vu/pSpZVXppaokkSVIdFFnIN8pUoojIaiYL5gD1mG37IY1xt2+FDM6nncl1q6IzjKWipnGOoJYlcQ=="; 15162 15135 }; 15163 15136 }; 15164 - "cdk8s-plus-17-1.0.0-beta.57" = { 15137 + "cdk8s-plus-17-1.0.0-beta.74" = { 15165 15138 name = "cdk8s-plus-17"; 15166 15139 packageName = "cdk8s-plus-17"; 15167 - version = "1.0.0-beta.57"; 15140 + version = "1.0.0-beta.74"; 15168 15141 src = fetchurl { 15169 - url = "https://registry.npmjs.org/cdk8s-plus-17/-/cdk8s-plus-17-1.0.0-beta.57.tgz"; 15170 - sha512 = "xEHt7qxEqqPY7L7Thfmkyx+KmaBT8aFcFlmlfOdKA6rv+PhSlWBmCMM9bFq4QI/k6Yd0+pMuY67dV9KvODcdgQ=="; 15142 + url = "https://registry.npmjs.org/cdk8s-plus-17/-/cdk8s-plus-17-1.0.0-beta.74.tgz"; 15143 + sha512 = "+7+iKqt9Ump9DUm91VouW2H9R7H7cBvbb/hPu8zRflC4OwvSZJb1ONzdUDLahqzFp+l2VQ0zcGMFfD8ONlFMjA=="; 15171 15144 }; 15172 15145 }; 15173 - "cdktf-0.5.0" = { 15146 + "cdktf-0.6.2" = { 15174 15147 name = "cdktf"; 15175 15148 packageName = "cdktf"; 15176 - version = "0.5.0"; 15149 + version = "0.6.2"; 15177 15150 src = fetchurl { 15178 - url = "https://registry.npmjs.org/cdktf/-/cdktf-0.5.0.tgz"; 15179 - sha512 = "V/3JOJLvD01vGy8Tvft7jH0NY3R7biKWqJ/BjGCx7+J9KAz6k9aFvtIpRhgcvXMo98B+lmdnMwSgfW2jXhnauQ=="; 15151 + url = "https://registry.npmjs.org/cdktf/-/cdktf-0.6.2.tgz"; 15152 + sha512 = "Kj4ZfWbhsBPPqG1oLIypCgblSVZI+ERpBsHIau6yEsbN+9Frj05PaznfrYwgvobrgNXmUwjkB3jsbqo0vFW9bQ=="; 15180 15153 }; 15181 15154 }; 15182 15155 "center-align-0.1.3" = { ··· 15530 15503 sha1 = "5c710f2bab95653272842ba01c6ea61b3545ec35"; 15531 15504 }; 15532 15505 }; 15506 + "cheerio-0.22.0" = { 15507 + name = "cheerio"; 15508 + packageName = "cheerio"; 15509 + version = "0.22.0"; 15510 + src = fetchurl { 15511 + url = "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz"; 15512 + sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e"; 15513 + }; 15514 + }; 15533 15515 "cheerio-1.0.0-rc.10" = { 15534 15516 name = "cheerio"; 15535 15517 packageName = "cheerio"; ··· 15764 15746 sha1 = "01296a3e5d130cce34974eb509cbbc7d6f78dd3d"; 15765 15747 }; 15766 15748 }; 15767 - "chromecasts-1.10.0" = { 15749 + "chromecasts-1.10.1" = { 15768 15750 name = "chromecasts"; 15769 15751 packageName = "chromecasts"; 15770 - version = "1.10.0"; 15752 + version = "1.10.1"; 15771 15753 src = fetchurl { 15772 - url = "https://registry.npmjs.org/chromecasts/-/chromecasts-1.10.0.tgz"; 15773 - sha512 = "vrOiuHxqLb0bWRBlvyL18cHU8PcbZ7iJvwDB6aHdbtdIDVWuzWWZwDyAWHu54j4JNqyaAyYBJiJ6bbHInVcqBQ=="; 15754 + url = "https://registry.npmjs.org/chromecasts/-/chromecasts-1.10.1.tgz"; 15755 + sha512 = "NsbbMxwLEDevtJtVTrTkr5sQhJPZYJiwJ6RXQ1qO9RURtIlcLBnfoncfrjlQPRLAKuPETHkQcCbxYnqTHvILJA=="; 15774 15756 }; 15775 15757 }; 15776 15758 "chromium-pickle-js-0.2.0" = { ··· 16079 16061 sha1 = "7e673ee0dd39a611a486476e53f3c6b3941cb582"; 16080 16062 }; 16081 16063 }; 16082 - "cli-progress-3.9.0" = { 16064 + "cli-progress-3.9.1" = { 16083 16065 name = "cli-progress"; 16084 16066 packageName = "cli-progress"; 16085 - version = "3.9.0"; 16067 + version = "3.9.1"; 16086 16068 src = fetchurl { 16087 - url = "https://registry.npmjs.org/cli-progress/-/cli-progress-3.9.0.tgz"; 16088 - sha512 = "g7rLWfhAo/7pF+a/STFH/xPyosaL1zgADhI0OM83hl3c7S43iGvJWEAV2QuDOnQ8i6EMBj/u4+NTd0d5L+4JfA=="; 16069 + url = "https://registry.npmjs.org/cli-progress/-/cli-progress-3.9.1.tgz"; 16070 + sha512 = "AXxiCe2a0Lm0VN+9L0jzmfQSkcZm5EYspfqXKaSIQKqIk+0hnkZ3/v1E9B39mkD6vYhKih3c/RPsJBSwq9O99Q=="; 16089 16071 }; 16090 16072 }; 16091 - "cli-progress-footer-1.1.1" = { 16073 + "cli-progress-footer-2.0.2" = { 16092 16074 name = "cli-progress-footer"; 16093 16075 packageName = "cli-progress-footer"; 16094 - version = "1.1.1"; 16076 + version = "2.0.2"; 16095 16077 src = fetchurl { 16096 - url = "https://registry.npmjs.org/cli-progress-footer/-/cli-progress-footer-1.1.1.tgz"; 16097 - sha512 = "J0uW2u06pWI0tMKCbcCiMOZd8TbWj4EpuYgPo4Jiwih/FfGbd4dbLcJieO0Ior1pY1HBrnmCuHFk6GB9azE4pg=="; 16098 - }; 16099 - }; 16100 - "cli-progress-footer-2.0.0" = { 16101 - name = "cli-progress-footer"; 16102 - packageName = "cli-progress-footer"; 16103 - version = "2.0.0"; 16104 - src = fetchurl { 16105 - url = "https://registry.npmjs.org/cli-progress-footer/-/cli-progress-footer-2.0.0.tgz"; 16106 - sha512 = "+MWvSb0KGFOetUptNubegAYWj9NyDwI1XPrfvYE+YWOsufBinF/M7G3VLMjBEGvqSnLYM2nnAX76cHHh0eXsBg=="; 16078 + url = "https://registry.npmjs.org/cli-progress-footer/-/cli-progress-footer-2.0.2.tgz"; 16079 + sha512 = "FQbhQKqyRG463NbIj+XOIODJYNAf6juqIzZ5YvN1+25mvfWw+gdLzN/a64hYLlxr8OUlA5gzgxoqQTyKemko7g=="; 16107 16080 }; 16108 16081 }; 16109 16082 "cli-spinner-0.2.10" = { ··· 16844 16817 sha512 = "qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="; 16845 16818 }; 16846 16819 }; 16847 - "colorette-1.2.2" = { 16820 + "colorette-1.4.0" = { 16848 16821 name = "colorette"; 16849 16822 packageName = "colorette"; 16850 - version = "1.2.2"; 16823 + version = "1.4.0"; 16851 16824 src = fetchurl { 16852 - url = "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz"; 16853 - sha512 = "MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w=="; 16825 + url = "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz"; 16826 + sha512 = "Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g=="; 16854 16827 }; 16855 16828 }; 16856 - "colorette-1.3.0" = { 16829 + "colorette-2.0.2" = { 16857 16830 name = "colorette"; 16858 16831 packageName = "colorette"; 16859 - version = "1.3.0"; 16832 + version = "2.0.2"; 16860 16833 src = fetchurl { 16861 - url = "https://registry.npmjs.org/colorette/-/colorette-1.3.0.tgz"; 16862 - sha512 = "ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w=="; 16863 - }; 16864 - }; 16865 - "colorette-1.4.0" = { 16866 - name = "colorette"; 16867 - packageName = "colorette"; 16868 - version = "1.4.0"; 16869 - src = fetchurl { 16870 - url = "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz"; 16871 - sha512 = "Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g=="; 16834 + url = "https://registry.npmjs.org/colorette/-/colorette-2.0.2.tgz"; 16835 + sha512 = "iO5Ycn8HKVhTGGKpwJtyzrrvOGI9YC4u4dppP5yKSGP47ApaZNwX7ne4PtgpTzq+JBwQh6FrdAfCSYTBQe1+FA=="; 16872 16836 }; 16873 16837 }; 16874 16838 "colornames-1.1.1" = { ··· 17222 17186 sha512 = "Xvf85aAtu6v22+E5hfVoLHqyul/jyxh91zvqk/ioJTQuJR7Z78n7H558vMPKanPSRgIEeZemT92I2g9Y8LPbSQ=="; 17223 17187 }; 17224 17188 }; 17225 - "commander-8.1.0" = { 17189 + "commander-8.2.0" = { 17226 17190 name = "commander"; 17227 17191 packageName = "commander"; 17228 - version = "8.1.0"; 17192 + version = "8.2.0"; 17229 17193 src = fetchurl { 17230 - url = "https://registry.npmjs.org/commander/-/commander-8.1.0.tgz"; 17231 - sha512 = "mf45ldcuHSYShkplHHGKWb4TrmwQadxOn7v4WuhDJy0ZVoY5JFajaRDKD0PNe5qXzBX0rhovjTnP6Kz9LETcuA=="; 17194 + url = "https://registry.npmjs.org/commander/-/commander-8.2.0.tgz"; 17195 + sha512 = "LLKxDvHeL91/8MIyTAD5BFMNtoIwztGPMiM/7Bl8rIPmHCZXRxmSWr91h57dpOpnQ6jIUqEWdXE/uBYMfiVZDA=="; 17232 17196 }; 17233 17197 }; 17234 17198 "commandpost-1.4.0" = { ··· 17510 17474 sha512 = "bzlVWS2THbMetHqXKB8ypsXN4DQ/1qopGwNJi1eYbpwesJcd86FBjFciCQX/YwAhp9bM7NVnPFqZ5LpV7gP0Dg=="; 17511 17475 }; 17512 17476 }; 17513 - "conf-10.0.2" = { 17477 + "conf-10.0.3" = { 17514 17478 name = "conf"; 17515 17479 packageName = "conf"; 17516 - version = "10.0.2"; 17480 + version = "10.0.3"; 17517 17481 src = fetchurl { 17518 - url = "https://registry.npmjs.org/conf/-/conf-10.0.2.tgz"; 17519 - sha512 = "iyy4ArqyQ/yrzNASNBN+jaylu53JRuq0ztvL6KAWYHj4iN56BVuhy2SrzEEHBodNbacZr2Pd/4nWhoAwc66T1g=="; 17482 + url = "https://registry.npmjs.org/conf/-/conf-10.0.3.tgz"; 17483 + sha512 = "4gtQ/Q36qVxBzMe6B7gWOAfni1VdhuHkIzxydHkclnwGmgN+eW4bb6jj73vigCfr7d3WlmqawvhZrpCUCTPYxQ=="; 17520 17484 }; 17521 17485 }; 17522 17486 "conf-6.2.4" = { ··· 17753 17717 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 17754 17718 }; 17755 17719 }; 17756 - "constructs-3.3.147" = { 17720 + "constructs-10.0.5" = { 17757 17721 name = "constructs"; 17758 17722 packageName = "constructs"; 17759 - version = "3.3.147"; 17723 + version = "10.0.5"; 17760 17724 src = fetchurl { 17761 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.147.tgz"; 17762 - sha512 = "xTSA87W5hscsHdFC2NcbJWALeMt8QWoCvVXRHPIuoBDDXdvBuNoqL2a5kY1yEWSMLQvBPnrDyinfz3twTX6dAw=="; 17725 + url = "https://registry.npmjs.org/constructs/-/constructs-10.0.5.tgz"; 17726 + sha512 = "IwOwekzrASFC3qt4ozCtV09rteAIAesuCGsW0p+uBfqHd2XcvA5CXqJjgf4eUqm6g8e/noXlVCMDWwC8GaLtrg=="; 17727 + }; 17728 + }; 17729 + "constructs-3.3.149" = { 17730 + name = "constructs"; 17731 + packageName = "constructs"; 17732 + version = "3.3.149"; 17733 + src = fetchurl { 17734 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.149.tgz"; 17735 + sha512 = "3xs+rn1+dd/HFERX3zhcJgY/acW/phSZba3Uxw3DVHDKIRT3qc2pE14GaPFTqstr41NkQfGnUvZwcqUgC8q/+Q=="; 17763 17736 }; 17764 17737 }; 17765 17738 "consume-http-header-1.0.0" = { ··· 17835 17808 sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578"; 17836 17809 }; 17837 17810 }; 17838 - "contentful-management-7.36.2" = { 17811 + "contentful-management-7.39.1" = { 17839 17812 name = "contentful-management"; 17840 17813 packageName = "contentful-management"; 17841 - version = "7.36.2"; 17814 + version = "7.39.1"; 17842 17815 src = fetchurl { 17843 - url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.36.2.tgz"; 17844 - sha512 = "pOyHyIuOygqQPDfF9C1MQKTAKAJcounClp4R5afhKkXDdh8jUPc34Ej9BACCtseo99Q9BftLQn49nmk9xJHylQ=="; 17816 + url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.39.1.tgz"; 17817 + sha512 = "1fdJ8890tHZBOTbpCSsDvZY9AQtY/FXQmzItECcFwNAIRz7cUMxtrSNPqK85KVEjyjAlqiV4PIbZnju6ItF4dQ=="; 17845 17818 }; 17846 17819 }; 17847 - "contentful-sdk-core-6.8.5" = { 17820 + "contentful-sdk-core-6.9.0" = { 17848 17821 name = "contentful-sdk-core"; 17849 17822 packageName = "contentful-sdk-core"; 17850 - version = "6.8.5"; 17823 + version = "6.9.0"; 17851 17824 src = fetchurl { 17852 - url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.8.5.tgz"; 17853 - sha512 = "Efmv/Jf0zeTdRNqCW6y+iMsNbDa/+KpxYOaYYz0z1qVd4q88qtZDJrvLdjPHtYvrcrvkhYtucVRFr9oe2b+cAA=="; 17825 + url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.9.0.tgz"; 17826 + sha512 = "fLwE0avEf81iDdJGVFUB5nC8AzI1OPg+YY33V8aFBgHkKMXpHI6zNInWnQGUekXCl2OAGKk5QkVfEAjvpkFGig=="; 17854 17827 }; 17855 17828 }; 17856 17829 "continuable-1.1.8" = { ··· 17952 17925 sha512 = "z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw=="; 17953 17926 }; 17954 17927 }; 17955 - "conventional-changelog-conventionalcommits-4.6.0" = { 17928 + "conventional-changelog-conventionalcommits-4.6.1" = { 17956 17929 name = "conventional-changelog-conventionalcommits"; 17957 17930 packageName = "conventional-changelog-conventionalcommits"; 17958 - version = "4.6.0"; 17931 + version = "4.6.1"; 17959 17932 src = fetchurl { 17960 - url = "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.0.tgz"; 17961 - sha512 = "sj9tj3z5cnHaSJCYObA9nISf7eq/YjscLPoq6nmew4SiOjxqL2KRpK20fjnjVbpNDjJ2HR3MoVcWKXwbVvzS0A=="; 17933 + url = "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.1.tgz"; 17934 + sha512 = "lzWJpPZhbM1R0PIzkwzGBCnAkH5RKJzJfFQZcl/D+2lsJxAwGnDKBqn/F4C1RD31GJNn8NuKWQzAZDAVXPp2Mw=="; 17962 17935 }; 17963 17936 }; 17964 17937 "conventional-changelog-core-4.2.4" = { ··· 18339 18312 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 18340 18313 }; 18341 18314 }; 18342 - "core-js-3.16.0" = { 18315 + "core-js-3.17.2" = { 18343 18316 name = "core-js"; 18344 18317 packageName = "core-js"; 18345 - version = "3.16.0"; 18318 + version = "3.17.2"; 18346 18319 src = fetchurl { 18347 - url = "https://registry.npmjs.org/core-js/-/core-js-3.16.0.tgz"; 18348 - sha512 = "5+5VxRFmSf97nM8Jr2wzOwLqRo6zphH2aX+7KsAUONObyzakDNq2G/bgbhinxB4PoV9L3aXQYhiDKyIKWd2c8g=="; 18320 + url = "https://registry.npmjs.org/core-js/-/core-js-3.17.2.tgz"; 18321 + sha512 = "XkbXqhcXeMHPRk2ItS+zQYliAMilea2euoMsnpRRdDad6b2VY6CQQcwz1K8AnWesfw4p165RzY0bTnr3UrbYiA=="; 18349 18322 }; 18350 18323 }; 18351 - "core-js-3.17.3" = { 18324 + "core-js-3.18.0" = { 18352 18325 name = "core-js"; 18353 18326 packageName = "core-js"; 18354 - version = "3.17.3"; 18327 + version = "3.18.0"; 18355 18328 src = fetchurl { 18356 - url = "https://registry.npmjs.org/core-js/-/core-js-3.17.3.tgz"; 18357 - sha512 = "lyvajs+wd8N1hXfzob1LdOCCHFU4bGMbqqmLn1Q4QlCpDqWPpGf+p0nj+LNrvDDG33j0hZXw2nsvvVpHysxyNw=="; 18329 + url = "https://registry.npmjs.org/core-js/-/core-js-3.18.0.tgz"; 18330 + sha512 = "WJeQqq6jOYgVgg4NrXKL0KLQhi0CT4ZOCvFL+3CQ5o7I6J8HkT5wd53EadMfqTDp1so/MT1J+w2ujhWcCJtN7w=="; 18358 18331 }; 18359 18332 }; 18360 - "core-js-compat-3.17.3" = { 18333 + "core-js-compat-3.18.0" = { 18361 18334 name = "core-js-compat"; 18362 18335 packageName = "core-js-compat"; 18363 - version = "3.17.3"; 18336 + version = "3.18.0"; 18364 18337 src = fetchurl { 18365 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.17.3.tgz"; 18366 - sha512 = "+in61CKYs4hQERiADCJsdgewpdl/X0GhEX77pjKgbeibXviIt2oxEjTc8O2fqHX8mDdBrDvX8MYD/RYsBv4OiA=="; 18338 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.18.0.tgz"; 18339 + sha512 = "tRVjOJu4PxdXjRMEgbP7lqWy1TWJu9a01oBkn8d+dNrhgmBwdTkzhHZpVJnEmhISLdoJI1lX08rcBcHi3TZIWg=="; 18367 18340 }; 18368 18341 }; 18369 - "core-js-pure-3.17.3" = { 18342 + "core-js-pure-3.18.0" = { 18370 18343 name = "core-js-pure"; 18371 18344 packageName = "core-js-pure"; 18372 - version = "3.17.3"; 18345 + version = "3.18.0"; 18373 18346 src = fetchurl { 18374 - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.17.3.tgz"; 18375 - sha512 = "YusrqwiOTTn8058JDa0cv9unbXdIiIgcgI9gXso0ey4WgkFLd3lYlV9rp9n7nDCsYxXsMDTjA4m1h3T348mdlQ=="; 18347 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.18.0.tgz"; 18348 + sha512 = "ZnK+9vyuMhKulIGqT/7RHGRok8RtkHMEX/BGPHkHx+ouDkq+MUvf9mfIgdqhpmPDu8+V5UtRn/CbCRc9I4lX4w=="; 18376 18349 }; 18377 18350 }; 18378 18351 "core-util-is-1.0.2" = { ··· 18618 18591 sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6"; 18619 18592 }; 18620 18593 }; 18621 - "create-gatsby-1.13.0" = { 18594 + "create-gatsby-1.14.0" = { 18622 18595 name = "create-gatsby"; 18623 18596 packageName = "create-gatsby"; 18624 - version = "1.13.0"; 18597 + version = "1.14.0"; 18625 18598 src = fetchurl { 18626 - url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.13.0.tgz"; 18627 - sha512 = "ypJeb+nj5uZybFeic+ab5myxGh21oZQ+OeCRkKHPL9NPZbzcvQE/y5lWXgVXHqy2/xf2IBnotkImrmiQiqPOxg=="; 18599 + url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.14.0.tgz"; 18600 + sha512 = "ba081Li7A7T7cHmcoE4oL+MO12k4ck5MWENPcuF9U8fTbOfICf+r3S0Mr+35YKbxr0w25RzhN5VcOS3+rokgbA=="; 18628 18601 }; 18629 18602 }; 18630 18603 "create-graphback-1.0.1" = { ··· 19248 19221 sha512 = "AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A=="; 19249 19222 }; 19250 19223 }; 19251 - "csstype-3.0.8" = { 19224 + "csstype-3.0.9" = { 19252 19225 name = "csstype"; 19253 19226 packageName = "csstype"; 19254 - version = "3.0.8"; 19227 + version = "3.0.9"; 19255 19228 src = fetchurl { 19256 - url = "https://registry.npmjs.org/csstype/-/csstype-3.0.8.tgz"; 19257 - sha512 = "jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw=="; 19229 + url = "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz"; 19230 + sha512 = "rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw=="; 19258 19231 }; 19259 19232 }; 19260 19233 "csurf-1.11.0" = { ··· 19455 19428 sha512 = "4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw=="; 19456 19429 }; 19457 19430 }; 19458 - "d3-7.0.1" = { 19431 + "d3-7.0.3" = { 19459 19432 name = "d3"; 19460 19433 packageName = "d3"; 19461 - version = "7.0.1"; 19434 + version = "7.0.3"; 19462 19435 src = fetchurl { 19463 - url = "https://registry.npmjs.org/d3/-/d3-7.0.1.tgz"; 19464 - sha512 = "74zonD4nAtxF9dtwFwJ3RuoHPh2D/UTFX26midBuMVH+7pRbOezuyLUIb8mbQMuYFlcUXT+xy++orCmnvMM/CA=="; 19436 + url = "https://registry.npmjs.org/d3/-/d3-7.0.3.tgz"; 19437 + sha512 = "BEQCpEXI+Z9OnnlXLaS6txoYZZvvXuRyjZoudPuAnWGVOzHxGWC0TL8XRUs7V7IeZQPLfvGztcl54+jgOe122g=="; 19465 19438 }; 19466 19439 }; 19467 19440 "d3-array-1.2.4" = { ··· 19482 19455 sha512 = "B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ=="; 19483 19456 }; 19484 19457 }; 19485 - "d3-array-3.0.2" = { 19458 + "d3-array-3.0.4" = { 19486 19459 name = "d3-array"; 19487 19460 packageName = "d3-array"; 19488 - version = "3.0.2"; 19461 + version = "3.0.4"; 19489 19462 src = fetchurl { 19490 - url = "https://registry.npmjs.org/d3-array/-/d3-array-3.0.2.tgz"; 19491 - sha512 = "nTN4OC6ufZueotlexbxBd2z8xmG1eIfhvP2m1auH2ONps0L+AZn1r0JWuzMXZ6XgOj1VBOp7GGZmEs9NUFEBbA=="; 19463 + url = "https://registry.npmjs.org/d3-array/-/d3-array-3.0.4.tgz"; 19464 + sha512 = "ShFl90cxNqDaSynDF/Bik/kTzISqePqU3qo2fv6kSJEvF7y7tDCDpcU6WiT01rPO6zngZnrvJ/0j4q6Qg+5EQg=="; 19492 19465 }; 19493 19466 }; 19494 19467 "d3-axis-1.0.12" = { ··· 20004 19977 sha512 = "1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ=="; 20005 19978 }; 20006 19979 }; 20007 - "d3-scale-4.0.0" = { 19980 + "d3-scale-4.0.1" = { 20008 19981 name = "d3-scale"; 20009 19982 packageName = "d3-scale"; 20010 - version = "4.0.0"; 19983 + version = "4.0.1"; 20011 19984 src = fetchurl { 20012 - url = "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.0.tgz"; 20013 - sha512 = "foHQYKpWQcyndH1CGoHdUC4PECxTxonzwwBXGT8qu+Drb1FIc6ON6dG2P5f4hRRMkLiIKeWK7iFtdznDUrnuPQ=="; 19985 + url = "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.1.tgz"; 19986 + sha512 = "akUAsUujCFnw6Sf1dF7y/FXTxz+VvEIOB3ValKtLhNrzFp8q5wPO3VCAmsbCLJWRTxyJCZDoooodjOI1plFqlw=="; 20014 19987 }; 20015 19988 }; 20016 19989 "d3-scale-chromatic-1.5.0" = { ··· 20454 20427 sha512 = "hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw=="; 20455 20428 }; 20456 20429 }; 20457 - "date-fns-2.23.0" = { 20430 + "date-fns-2.24.0" = { 20458 20431 name = "date-fns"; 20459 20432 packageName = "date-fns"; 20460 - version = "2.23.0"; 20433 + version = "2.24.0"; 20461 20434 src = fetchurl { 20462 - url = "https://registry.npmjs.org/date-fns/-/date-fns-2.23.0.tgz"; 20463 - sha512 = "5ycpauovVyAk0kXNZz6ZoB9AYMZB4DObse7P3BPWmyEjXNORTI8EJ6X0uaSAq4sCHzM1uajzrkr6HnsLQpxGXA=="; 20435 + url = "https://registry.npmjs.org/date-fns/-/date-fns-2.24.0.tgz"; 20436 + sha512 = "6ujwvwgPID6zbI0o7UbURi2vlLDR9uP26+tW6Lg+Ji3w7dd0i3DOcjcClLjLPranT60SSEFBwdSyYwn/ZkPIuw=="; 20464 20437 }; 20465 20438 }; 20466 20439 "date-format-2.1.0" = { ··· 20517 20490 sha512 = "jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q=="; 20518 20491 }; 20519 20492 }; 20520 - "dateformat-4.5.1" = { 20493 + "dateformat-4.6.3" = { 20521 20494 name = "dateformat"; 20522 20495 packageName = "dateformat"; 20523 - version = "4.5.1"; 20496 + version = "4.6.3"; 20524 20497 src = fetchurl { 20525 - url = "https://registry.npmjs.org/dateformat/-/dateformat-4.5.1.tgz"; 20526 - sha512 = "OD0TZ+B7yP7ZgpJf5K2DIbj3FZvFvxgFUuaqA/V5zTjAtAAXZ1E8bktHxmAGs4x5b7PflqA9LeQ84Og7wYtF7Q=="; 20498 + url = "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz"; 20499 + sha512 = "2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA=="; 20527 20500 }; 20528 20501 }; 20529 - "dayjs-1.10.6" = { 20502 + "dayjs-1.10.7" = { 20530 20503 name = "dayjs"; 20531 20504 packageName = "dayjs"; 20532 - version = "1.10.6"; 20505 + version = "1.10.7"; 20533 20506 src = fetchurl { 20534 - url = "https://registry.npmjs.org/dayjs/-/dayjs-1.10.6.tgz"; 20535 - sha512 = "AztC/IOW4L1Q41A86phW5Thhcrco3xuAA+YX/BLpLWWjRcTj5TOt/QImBLmCKlrF7u7k47arTnOyL6GnbG8Hvw=="; 20507 + url = "https://registry.npmjs.org/dayjs/-/dayjs-1.10.7.tgz"; 20508 + sha512 = "P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig=="; 20536 20509 }; 20537 20510 }; 20538 20511 "dayjs-1.8.36" = { ··· 22137 22110 sha512 = "2FFKzmLGOnD+Y378bRKH+gTjRMuSpH7OKgPy31KjjfCoKZx7tU8Dmqfd/3fhG2d/4bppuN8/KtWMUZBAcUCRnQ=="; 22138 22111 }; 22139 22112 }; 22140 - "dockerfile-ast-0.3.1" = { 22113 + "dockerfile-ast-0.3.2" = { 22141 22114 name = "dockerfile-ast"; 22142 22115 packageName = "dockerfile-ast"; 22143 - version = "0.3.1"; 22116 + version = "0.3.2"; 22144 22117 src = fetchurl { 22145 - url = "https://registry.npmjs.org/dockerfile-ast/-/dockerfile-ast-0.3.1.tgz"; 22146 - sha512 = "sxFv+wY4TNC68+JkbZ4kPn3pAfnfvbFBUcvYAA9KFg7Es58FgWr+trskeDRWFkCFeuM1QIXeBC5exMeiAeW96Q=="; 22118 + url = "https://registry.npmjs.org/dockerfile-ast/-/dockerfile-ast-0.3.2.tgz"; 22119 + sha512 = "xh5xPW7YohEr/NjqkQ4IW6hjzqlTh0GIwgNZ1ezwCWyU3IJgOaN2z5Vyh9rLMGfdY+5fQF38gkj8+y9l7I11VA=="; 22147 22120 }; 22148 22121 }; 22149 - "dockerfile-language-service-0.5.0" = { 22122 + "dockerfile-language-service-0.7.1" = { 22150 22123 name = "dockerfile-language-service"; 22151 22124 packageName = "dockerfile-language-service"; 22152 - version = "0.5.0"; 22125 + version = "0.7.1"; 22153 22126 src = fetchurl { 22154 - url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.5.0.tgz"; 22155 - sha512 = "63B8rASoOz69NI4a3ftC64mVTDnQhd6xXdu5J6PN53+2wEm6vhO+zf6R4A5/ssxB3nSnckV25OtHCdBX2CYluQ=="; 22127 + url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.7.1.tgz"; 22128 + sha512 = "10utkoAyysjMJQaIGBE61qA1DRbm/+pwQfy/HzfHVgTY66JjbRKMrvW+qvHFhjC7nL/A2zMs90dvSOCMxIVD6w=="; 22156 22129 }; 22157 22130 }; 22158 - "dockerfile-utils-0.7.0" = { 22131 + "dockerfile-utils-0.9.0" = { 22159 22132 name = "dockerfile-utils"; 22160 22133 packageName = "dockerfile-utils"; 22161 - version = "0.7.0"; 22134 + version = "0.9.0"; 22162 22135 src = fetchurl { 22163 - url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.7.0.tgz"; 22164 - sha512 = "27Qh1oT1yjbAPbV/VheDZICoSOYfb9pEgkZSiQMbGQOXw0a4ZObDRNxqYQ2o9udVOTbb/HS4y/hm+reCpz8i9g=="; 22136 + url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.9.0.tgz"; 22137 + sha512 = "DIZO2fRVbRx5C9LcDZcF1FSFwMYYxQJ6NjLNlKtatQXO79+dAaWW+bvtBuiaUkhVgmWbkSfs0rpv/yr2X37cJw=="; 22165 22138 }; 22166 22139 }; 22167 22140 "doctoc-2.0.1" = { ··· 22414 22387 src = fetchurl { 22415 22388 url = "https://registry.npmjs.org/dompurify/-/dompurify-2.3.1.tgz"; 22416 22389 sha512 = "xGWt+NHAQS+4tpgbOAI08yxW0Pr256Gu/FNE2frZVTbgrBUn8M7tz7/ktS/LZ2MHeGqz6topj0/xY+y8R5FBFw=="; 22390 + }; 22391 + }; 22392 + "dompurify-2.3.3" = { 22393 + name = "dompurify"; 22394 + packageName = "dompurify"; 22395 + version = "2.3.3"; 22396 + src = fetchurl { 22397 + url = "https://registry.npmjs.org/dompurify/-/dompurify-2.3.3.tgz"; 22398 + sha512 = "dqnqRkPMAjOZE0FogZ+ceJNM2dZ3V/yNOuFB7+39qpO93hHhfRpHw3heYQC7DPK9FqbQTfBKUJhiSfz4MvXYwg=="; 22417 22399 }; 22418 22400 }; 22419 22401 "domutils-1.4.3" = { ··· 22893 22875 sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw=="; 22894 22876 }; 22895 22877 }; 22896 - "electron-13.3.0" = { 22878 + "electron-13.4.0" = { 22897 22879 name = "electron"; 22898 22880 packageName = "electron"; 22899 - version = "13.3.0"; 22881 + version = "13.4.0"; 22900 22882 src = fetchurl { 22901 - url = "https://registry.npmjs.org/electron/-/electron-13.3.0.tgz"; 22902 - sha512 = "d/BvOLDjI4i7yf9tqCuLL2fFGA2TrM/D9PyRpua+rJolG0qrwp/FohP02L0m+44kmPpofIo4l3NPwLmzyKKimA=="; 22883 + url = "https://registry.npmjs.org/electron/-/electron-13.4.0.tgz"; 22884 + sha512 = "KJGWS2qa0xZXIMPMDUNkRVO8/JxRd4+M0ejYYOzu2LIQ5ijecPzNuNR9nvDkml9XyyRBzu975FkhJcwD17ietQ=="; 22903 22885 }; 22904 22886 }; 22905 22887 "electron-notarize-1.1.1" = { ··· 22920 22902 sha512 = "icoRLHzFz/qxzDh/N4Pi2z4yVHurlsCAYQvsCSG7fCedJ4UJXBS6PoQyGH71IfcqKupcKeK7HX/NkyfG+v6vlQ=="; 22921 22903 }; 22922 22904 }; 22923 - "electron-packager-15.3.0" = { 22905 + "electron-packager-15.4.0" = { 22924 22906 name = "electron-packager"; 22925 22907 packageName = "electron-packager"; 22926 - version = "15.3.0"; 22908 + version = "15.4.0"; 22927 22909 src = fetchurl { 22928 - url = "https://registry.npmjs.org/electron-packager/-/electron-packager-15.3.0.tgz"; 22929 - sha512 = "PHcykXinmjPyJcYoNGbOWNsOU25nIbMLHBAfg4caazWzYELFL14FshDZEqqrvVOMEUnqjx/Ktc1NmMIN5ZRomQ=="; 22910 + url = "https://registry.npmjs.org/electron-packager/-/electron-packager-15.4.0.tgz"; 22911 + sha512 = "JrrLcBP15KGrPj0cZ/ALKGmaQ4gJkn3mocf0E3bRKdR3kxKWYcDRpCvdhksYDXw/r3I6tMEcZ7XzyApWFXdVpw=="; 22930 22912 }; 22931 22913 }; 22932 22914 "electron-rebuild-3.2.3" = { ··· 22938 22920 sha512 = "9oxNmKlDCaf651c+yJWCDIBpF6A9aY+wQtasLEeR5AsPYPuOKEX6xHnC2+WgCLOC94JEpCZznecyC84fbwZq4A=="; 22939 22921 }; 22940 22922 }; 22941 - "electron-to-chromium-1.3.833" = { 22923 + "electron-to-chromium-1.3.845" = { 22942 22924 name = "electron-to-chromium"; 22943 22925 packageName = "electron-to-chromium"; 22944 - version = "1.3.833"; 22926 + version = "1.3.845"; 22945 22927 src = fetchurl { 22946 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.833.tgz"; 22947 - sha512 = "h+9aVaUHjyunLqtCjJF2jrJ73tYcJqo2cCGKtVAXH9WmnBsb8hiChRQ0P1uXjdxR6Wcfxibephy41c1YlZA/pA=="; 22928 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.845.tgz"; 22929 + sha512 = "y0RorqmExFDI4RjLEC6j365bIT5UAXf9WIRcknvSFHVhbC/dRnCgJnPA3DUUW6SCC85QGKEafgqcHJ6uPdEP1Q=="; 22948 22930 }; 22949 22931 }; 22950 22932 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 23381 23363 sha512 = "Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg=="; 23382 23364 }; 23383 23365 }; 23384 - "enhanced-resolve-5.8.2" = { 23366 + "enhanced-resolve-5.8.3" = { 23385 23367 name = "enhanced-resolve"; 23386 23368 packageName = "enhanced-resolve"; 23387 - version = "5.8.2"; 23369 + version = "5.8.3"; 23388 23370 src = fetchurl { 23389 - url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.2.tgz"; 23390 - sha512 = "F27oB3WuHDzvR2DOGNTaYy0D5o0cnrv8TeI482VM4kYgQd/FT9lUQwuNsJ0oOHtBUq7eiW5ytqzp7nBFknL+GA=="; 23371 + url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz"; 23372 + sha512 = "EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA=="; 23391 23373 }; 23392 23374 }; 23393 23375 "enquirer-2.3.6" = { ··· 23642 23624 sha512 = "MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw=="; 23643 23625 }; 23644 23626 }; 23627 + "es-module-lexer-0.9.0" = { 23628 + name = "es-module-lexer"; 23629 + packageName = "es-module-lexer"; 23630 + version = "0.9.0"; 23631 + src = fetchurl { 23632 + url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.0.tgz"; 23633 + sha512 = "qU2eN/XHsrl3E4y7mK1wdWnyy5c8gXtCbfP6Xcsemm7fPUR1PIV1JhZfP7ojcN0Fzp69CfrS3u76h2tusvfKiQ=="; 23634 + }; 23635 + }; 23645 23636 "es-to-primitive-1.2.1" = { 23646 23637 name = "es-to-primitive"; 23647 23638 packageName = "es-to-primitive"; ··· 23993 23984 sha512 = "Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ=="; 23994 23985 }; 23995 23986 }; 23996 - "eslint-plugin-vue-7.17.0" = { 23987 + "eslint-plugin-vue-7.18.0" = { 23997 23988 name = "eslint-plugin-vue"; 23998 23989 packageName = "eslint-plugin-vue"; 23999 - version = "7.17.0"; 23990 + version = "7.18.0"; 24000 23991 src = fetchurl { 24001 - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.17.0.tgz"; 24002 - sha512 = "Rq5R2QetDCgC+kBFQw1+aJ5B93tQ4xqZvoCUxuIzwTonngNArsdP8ChM8PowIzsJvRtWl4ltGh/bZcN3xhFWSw=="; 23992 + url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.18.0.tgz"; 23993 + sha512 = "ceDXlXYMMPMSXw7tdKUR42w9jlzthJGJ3Kvm3YrZ0zuQfvAySNxe8sm6VHuksBW0+060GzYXhHJG6IHVOfF83Q=="; 24003 23994 }; 24004 23995 }; 24005 23996 "eslint-scope-3.7.3" = { ··· 24153 24144 src = fetchurl { 24154 24145 url = "https://registry.npmjs.org/esprima/-/esprima-1.1.1.tgz"; 24155 24146 sha1 = "5b6f1547f4d102e670e140c509be6771d6aeb549"; 24147 + }; 24148 + }; 24149 + "esprima-1.2.2" = { 24150 + name = "esprima"; 24151 + packageName = "esprima"; 24152 + version = "1.2.2"; 24153 + src = fetchurl { 24154 + url = "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz"; 24155 + sha1 = "76a0fd66fcfe154fd292667dc264019750b1657b"; 24156 24156 }; 24157 24157 }; 24158 24158 "esprima-2.0.0" = { ··· 25532 25532 sha512 = "On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow=="; 25533 25533 }; 25534 25534 }; 25535 + "fastify-warning-0.2.0" = { 25536 + name = "fastify-warning"; 25537 + packageName = "fastify-warning"; 25538 + version = "0.2.0"; 25539 + src = fetchurl { 25540 + url = "https://registry.npmjs.org/fastify-warning/-/fastify-warning-0.2.0.tgz"; 25541 + sha512 = "s1EQguBw/9qtc1p/WTY4eq9WMRIACkj+HTcOIK1in4MV5aFaQC9ZCIt0dJ7pr5bIf4lPpHvAtP2ywpTNgs7hqw=="; 25542 + }; 25543 + }; 25535 25544 "fastintcompression-0.0.4" = { 25536 25545 name = "fastintcompression"; 25537 25546 packageName = "fastintcompression"; ··· 25559 25568 sha512 = "XJ+vbiXYjmxc32VEpXScAq7mBg3vqh90OjLfiuyQ0zAtXpgICdVgGjKHep1kLGQufyuCBiEYpl6ZKcw79chTpA=="; 25560 25569 }; 25561 25570 }; 25562 - "fastq-1.12.0" = { 25571 + "fastq-1.13.0" = { 25563 25572 name = "fastq"; 25564 25573 packageName = "fastq"; 25565 - version = "1.12.0"; 25574 + version = "1.13.0"; 25566 25575 src = fetchurl { 25567 - url = "https://registry.npmjs.org/fastq/-/fastq-1.12.0.tgz"; 25568 - sha512 = "VNX0QkHK3RsXVKr9KrlUv/FoTa0NdbYoHHl7uXHv2rzyHSlxjdNAKug2twd9luJxpcyNeAgf5iPPMutJO67Dfg=="; 25576 + url = "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz"; 25577 + sha512 = "YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw=="; 25569 25578 }; 25570 25579 }; 25571 25580 "fault-1.0.4" = { ··· 25982 25991 sha512 = "7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg=="; 25983 25992 }; 25984 25993 }; 25994 + "filesize-4.2.1" = { 25995 + name = "filesize"; 25996 + packageName = "filesize"; 25997 + version = "4.2.1"; 25998 + src = fetchurl { 25999 + url = "https://registry.npmjs.org/filesize/-/filesize-4.2.1.tgz"; 26000 + sha512 = "bP82Hi8VRZX/TUBKfE24iiUGsB/sfm2WUrwTQyAzQrhO3V9IhcBBNBXMyzLY5orACxRyYJ3d2HeRVX+eFv4lmA=="; 26001 + }; 26002 + }; 25985 26003 "filesize-6.1.0" = { 25986 26004 name = "filesize"; 25987 26005 packageName = "filesize"; ··· 26000 26018 sha512 = "mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ=="; 26001 26019 }; 26002 26020 }; 26003 - "filesize-8.0.0" = { 26021 + "filesize-8.0.3" = { 26004 26022 name = "filesize"; 26005 26023 packageName = "filesize"; 26006 - version = "8.0.0"; 26024 + version = "8.0.3"; 26007 26025 src = fetchurl { 26008 - url = "https://registry.npmjs.org/filesize/-/filesize-8.0.0.tgz"; 26009 - sha512 = "sb690gQx3y/5KZIztgWAKM/r4Hf1V3R8mkAE0OhasMw2FDYduFTYCji8YN9BVpsGoMxrHPFvia1BMxwfLHX+fQ=="; 26026 + url = "https://registry.npmjs.org/filesize/-/filesize-8.0.3.tgz"; 26027 + sha512 = "UrhwVdUWmP0Jo9uLhVro8U36D4Yp3uT6pfXeNJHVRwyQrZjsqfnypOLthfnuB/bk1glUu7aIY947kyfoOfXuog=="; 26010 26028 }; 26011 26029 }; 26012 26030 "filestream-5.0.0" = { ··· 26450 26468 sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; 26451 26469 }; 26452 26470 }; 26453 - "flow-parser-0.159.0" = { 26471 + "flow-parser-0.160.1" = { 26454 26472 name = "flow-parser"; 26455 26473 packageName = "flow-parser"; 26456 - version = "0.159.0"; 26474 + version = "0.160.1"; 26457 26475 src = fetchurl { 26458 - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.159.0.tgz"; 26459 - sha512 = "/AFSLMSbqictmgPm+vrXBD0rLTsVRrlKfiGRoDjt/WhhUxqy5ZMuLVHbRD/g3C3JRnJgDrKSb3+piQoM1dzVGw=="; 26476 + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.160.1.tgz"; 26477 + sha512 = "EHdZ3/2oas3y6h4cj9sQkg4tboaz2xBPwyyjlowZgySbIobOFOO72veYz/dWbrpQO83Ucn0plmSESOl78dwdtw=="; 26460 26478 }; 26461 26479 }; 26462 26480 "fluent-ffmpeg-2.1.2" = { ··· 26621 26639 sha512 = "VjAQdSLsl6AkpZNyrQJfO7BXLo4chnStqb055bumZMbRUPpVuPN3a4ktsnRCmrFZjtMlYLkyXiR5rAs4WOpC4Q=="; 26622 26640 }; 26623 26641 }; 26624 - "follow-redirects-1.14.3" = { 26642 + "follow-redirects-1.14.4" = { 26625 26643 name = "follow-redirects"; 26626 26644 packageName = "follow-redirects"; 26627 - version = "1.14.3"; 26645 + version = "1.14.4"; 26628 26646 src = fetchurl { 26629 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.3.tgz"; 26630 - sha512 = "3MkHxknWMUtb23apkgz/83fDoe+y+qr0TdgacGIA7bew+QLBo3vdgEN2xEsuXNivpFy4CyDhBBZnNZOtalmenw=="; 26647 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.4.tgz"; 26648 + sha512 = "zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g=="; 26631 26649 }; 26632 26650 }; 26633 26651 "follow-redirects-1.5.10" = { ··· 26882 26900 sha512 = "wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g=="; 26883 26901 }; 26884 26902 }; 26885 - "fp-ts-2.11.1" = { 26903 + "fp-ts-2.11.3" = { 26886 26904 name = "fp-ts"; 26887 26905 packageName = "fp-ts"; 26888 - version = "2.11.1"; 26906 + version = "2.11.3"; 26889 26907 src = fetchurl { 26890 - url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.11.1.tgz"; 26891 - sha512 = "CJOfs+Heq/erkE5mqH2mhpsxCKABGmcLyeEwPxtbTlkLkItGUs6bmk2WqjB2SgoVwNwzTE5iKjPQJiq06CPs5g=="; 26908 + url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.11.3.tgz"; 26909 + sha512 = "qHI5iaVSFNFmdl6yDensWfFMk32iafAINCnqx8m486DV1+Jht/bTnA9CyahL+Xm7h2y3erinviVBIAWvv5bPYw=="; 26892 26910 }; 26893 26911 }; 26894 26912 "fraction.js-4.1.1" = { ··· 27422 27440 sha1 = "cbed2d20a40c1f5679a35908e2b9415733e78db9"; 27423 27441 }; 27424 27442 }; 27425 - "gatsby-core-utils-2.13.0" = { 27443 + "gatsby-core-utils-2.14.0" = { 27426 27444 name = "gatsby-core-utils"; 27427 27445 packageName = "gatsby-core-utils"; 27428 - version = "2.13.0"; 27446 + version = "2.14.0"; 27429 27447 src = fetchurl { 27430 - url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.13.0.tgz"; 27431 - sha512 = "fkMAxiWFY8N26Iui/Wq8yfE2FY2b31bGJVtlIlSwLgfsoO7fpta64lxeivRtfpNLbAoywmWY/L8TC74GFlnuWg=="; 27448 + url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.14.0.tgz"; 27449 + sha512 = "HDMb1XMqysup9raLYWB0wIQU568R9qPounF7iAwjf2esFUVV5mdBTvxEpune/7yG0RmwhNPhgrEZo2rBHeJf7A=="; 27432 27450 }; 27433 27451 }; 27434 - "gatsby-recipes-0.24.0" = { 27452 + "gatsby-recipes-0.25.0" = { 27435 27453 name = "gatsby-recipes"; 27436 27454 packageName = "gatsby-recipes"; 27437 - version = "0.24.0"; 27455 + version = "0.25.0"; 27438 27456 src = fetchurl { 27439 - url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.24.0.tgz"; 27440 - sha512 = "azDY4tnOCy5/CK+Kv53CBIgzmEroAGe/mLaiW2PuizTQIdhoY3lg63ZXK6kPQHAq1F4qAYHGkBM4ECgSfaq5HA=="; 27457 + url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.25.0.tgz"; 27458 + sha512 = "eEbmmAWY78pL1zLrx0M0CNC4fMbzKza/Ug0vSQ7egfAqNk74Lt0csgODRGdBLVHbmRRKYmJpJIXK7NdE+ZWh4A=="; 27441 27459 }; 27442 27460 }; 27443 - "gatsby-telemetry-2.13.0" = { 27461 + "gatsby-telemetry-2.14.0" = { 27444 27462 name = "gatsby-telemetry"; 27445 27463 packageName = "gatsby-telemetry"; 27446 - version = "2.13.0"; 27464 + version = "2.14.0"; 27447 27465 src = fetchurl { 27448 - url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.13.0.tgz"; 27449 - sha512 = "PN9kKbZd0i2QkoVvHyCa3VjuRVIvBwjXTyZHwL+se5yrbYufZQXoyMiMMXFV48FvxMgE53ON1U2vtzeRvE8U2w=="; 27466 + url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.14.0.tgz"; 27467 + sha512 = "c8/1L1nkK1OcxYV7axyoyM+7nzM1WL7DXvgxJloI7NSwb6M3EgcWvgq9bmqUAfmWM29/whR07mO7nnl1jZntyA=="; 27450 27468 }; 27451 27469 }; 27452 27470 "gauge-1.2.7" = { ··· 27476 27494 sha512 = "6STz6KdQgxO4S/ko+AbjlFGGdGcknluoqU+79GOFCDqqyYj5OanQf9AjxwN0jCidtT+ziPMmPSt9E4hfQ0CwIQ=="; 27477 27495 }; 27478 27496 }; 27479 - "gaxios-4.3.1" = { 27497 + "gaxios-4.3.2" = { 27480 27498 name = "gaxios"; 27481 27499 packageName = "gaxios"; 27482 - version = "4.3.1"; 27500 + version = "4.3.2"; 27483 27501 src = fetchurl { 27484 - url = "https://registry.npmjs.org/gaxios/-/gaxios-4.3.1.tgz"; 27485 - sha512 = "9qXV7yrMCGzTrphl9/YGMVH41oSg0rhn1j3wJWed4Oqk45/hXDD2wBT5J1NjQcqTCcv4g3nFnyQ7reSRHNgBgw=="; 27502 + url = "https://registry.npmjs.org/gaxios/-/gaxios-4.3.2.tgz"; 27503 + sha512 = "T+ap6GM6UZ0c4E6yb1y/hy2UB6hTrqhglp3XfmU9qbLCGRYhLVV5aRPpC4EmoG8N8zOnkYCgoBz+ScvGAARY6Q=="; 27486 27504 }; 27487 27505 }; 27488 27506 "gaze-1.1.3" = { ··· 27872 27890 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 27873 27891 }; 27874 27892 }; 27875 - "gh-release-fetch-2.0.2" = { 27893 + "gh-release-fetch-2.0.3" = { 27876 27894 name = "gh-release-fetch"; 27877 27895 packageName = "gh-release-fetch"; 27878 - version = "2.0.2"; 27896 + version = "2.0.3"; 27879 27897 src = fetchurl { 27880 - url = "https://registry.npmjs.org/gh-release-fetch/-/gh-release-fetch-2.0.2.tgz"; 27881 - sha512 = "VIlw5FzT8b31rwwH3A4zg05wd9R1/7vPYY+Dow14U1mXEkGF348+x8HUk5fY9py6icVVU3z/v4L7m5BV/7xxjA=="; 27898 + url = "https://registry.npmjs.org/gh-release-fetch/-/gh-release-fetch-2.0.3.tgz"; 27899 + sha512 = "g8q2GMzZASFm1TgU1JnVdbvGAmkrrsBWXDOdCcVuxShhfTPi26jY0tiUbPlEFYGa8dmMCxBOv7iWBX5hciTMkA=="; 27882 27900 }; 27883 27901 }; 27884 27902 "git-apply-delta-0.0.7" = { ··· 28593 28611 sha1 = "2edeeb958084d0f8ea7988e5d995b1c7dfc14777"; 28594 28612 }; 28595 28613 }; 28596 - "goldengate-10.3.0" = { 28597 - name = "goldengate"; 28598 - packageName = "goldengate"; 28599 - version = "10.3.0"; 28600 - src = fetchurl { 28601 - url = "https://registry.npmjs.org/goldengate/-/goldengate-10.3.0.tgz"; 28602 - sha512 = "TDwMwK7j0vU/aOlQIkL6WqrYoFBOAYnJ9l2ueK3d60IHspycYKPyO9yBaX1bzsaS7nBH5YjuXBYncZK+12TSZQ=="; 28603 - }; 28604 - }; 28605 28614 "goldengate-10.4.0" = { 28606 28615 name = "goldengate"; 28607 28616 packageName = "goldengate"; ··· 28629 28638 sha512 = "Q+ZjUEvLQj/lrVHF/IQwRo6p3s8Nc44Zk/DALsN+ac3T4HY/g/3rrufkgtl+nZ1TW7DNAw5cTChdVp4apUXVgQ=="; 28630 28639 }; 28631 28640 }; 28632 - "google-auth-library-7.9.1" = { 28641 + "google-auth-library-7.9.2" = { 28633 28642 name = "google-auth-library"; 28634 28643 packageName = "google-auth-library"; 28635 - version = "7.9.1"; 28644 + version = "7.9.2"; 28636 28645 src = fetchurl { 28637 - url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.9.1.tgz"; 28638 - sha512 = "cWGykH2WBR+UuYPGRnGVZ6Cjq2ftQiEIFjQWNIRIauZH7hUWoYTr/lkKUqLTYt5dex77nlWWVQ8aPV80mhfp5w=="; 28646 + url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.9.2.tgz"; 28647 + sha512 = "HjxbJt660a+YUTYAgYor87JCuBZvjUSNBExk4bXTEaMuCn8IHSDeHmFxKqThuDPrLCiKJp8blk/Ze8f7SI4N6g=="; 28639 28648 }; 28640 28649 }; 28641 28650 "google-closure-compiler-js-20170910.0.1" = { ··· 28647 28656 sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew=="; 28648 28657 }; 28649 28658 }; 28650 - "google-gax-2.25.1" = { 28659 + "google-gax-2.25.4" = { 28651 28660 name = "google-gax"; 28652 28661 packageName = "google-gax"; 28653 - version = "2.25.1"; 28662 + version = "2.25.4"; 28654 28663 src = fetchurl { 28655 - url = "https://registry.npmjs.org/google-gax/-/google-gax-2.25.1.tgz"; 28656 - sha512 = "wvirrn34kKe42NRF9uy68ukM/2CWT2ce3abS2SOJaMe7Ecdya1Zcd54WAX9WAWnD0WoAfieeibD4o1Ijue8iJw=="; 28664 + url = "https://registry.npmjs.org/google-gax/-/google-gax-2.25.4.tgz"; 28665 + sha512 = "+Jd0FFOWyb8ieX53e6Sl5OYvHXoA1sWKfQ24ykR502NKgBTvPAh/RFcITihGePBJZ1E8pfh4MKWU0Sf+f1CK+A=="; 28657 28666 }; 28658 28667 }; 28659 28668 "google-p12-pem-3.1.2" = { ··· 28854 28863 sha512 = "h5mJWgZXpuZQzBAMWhVIOluGNIYUP043eh7BHcecRWhSkD4eiZAh+uM4XX2rGL1vig9XQ3JVYl9gmK+ajy+JPA=="; 28855 28864 }; 28856 28865 }; 28857 - "graphology-types-0.19.4" = { 28866 + "graphology-types-0.19.5" = { 28858 28867 name = "graphology-types"; 28859 28868 packageName = "graphology-types"; 28860 - version = "0.19.4"; 28869 + version = "0.19.5"; 28861 28870 src = fetchurl { 28862 - url = "https://registry.npmjs.org/graphology-types/-/graphology-types-0.19.4.tgz"; 28863 - sha512 = "jBRgWBKCVzoSMmQh7I5KsPQcOai4FJLNdhPBtSTRfVcyafGZHxwt80z5EftRB6ZSyTiBqiolzu7n1CZEnRkAHA=="; 28871 + url = "https://registry.npmjs.org/graphology-types/-/graphology-types-0.19.5.tgz"; 28872 + sha512 = "zXJEDILlJ2JI+oUVjHkXZIRRZfWuwBEhOJagOARnt4eWuErBJZUJmiEOJjLDA0s0DQNFxIHD4+NRwsU4B0VxWw=="; 28864 28873 }; 28865 28874 }; 28866 28875 "graphql-0.11.7" = { ··· 28899 28908 sha512 = "GTCJtzJmkFLWRfFJuoo9RWWa/FfamUHgiFosxi/X1Ani4AVWbeyBenZTNX6dM+7WSbbFfTo/25eh0LLkwHMw2w=="; 28900 28909 }; 28901 28910 }; 28902 - "graphql-15.5.3" = { 28911 + "graphql-15.6.0" = { 28903 28912 name = "graphql"; 28904 28913 packageName = "graphql"; 28905 - version = "15.5.3"; 28914 + version = "15.6.0"; 28906 28915 src = fetchurl { 28907 - url = "https://registry.npmjs.org/graphql/-/graphql-15.5.3.tgz"; 28908 - sha512 = "sM+jXaO5KinTui6lbK/7b7H/Knj9BpjGxZ+Ki35v7YbUJxxdBCUqNM0h3CRVU1ZF9t5lNiBzvBCSYPvIwxPOQA=="; 28916 + url = "https://registry.npmjs.org/graphql/-/graphql-15.6.0.tgz"; 28917 + sha512 = "WJR872Zlc9hckiEPhXgyUftXH48jp2EjO5tgBBOyNMRJZ9fviL2mJBD6CAysk6N5S0r9BTs09Qk39nnJBkvOXQ=="; 28909 28918 }; 28910 28919 }; 28911 28920 "graphql-compose-7.25.1" = { ··· 30907 30916 sha512 = "bESly7s6X7cLMWCn4dsAVE/ttNbbB13o6jku2B7fV2wIV/g7NVC/yF7S3NiknGlftKn/uLU3fhMmbOfdBvQ5IA=="; 30908 30917 }; 30909 30918 }; 30910 - "hypertrie-5.1.1" = { 30919 + "hypertrie-5.1.2" = { 30911 30920 name = "hypertrie"; 30912 30921 packageName = "hypertrie"; 30913 - version = "5.1.1"; 30922 + version = "5.1.2"; 30914 30923 src = fetchurl { 30915 - url = "https://registry.npmjs.org/hypertrie/-/hypertrie-5.1.1.tgz"; 30916 - sha512 = "6PjBRPsTH+hqhMpjt1QmxXMFW6XaHNXkjxH1KrL1bp8Fpz7SPOvBNSaQVttvAP6GRzDKkeLraG4q3yJiSL4IhQ=="; 30924 + url = "https://registry.npmjs.org/hypertrie/-/hypertrie-5.1.2.tgz"; 30925 + sha512 = "kdzigFUWrCX5NTFvi28q5o3P7faP3QliAQpMfKRSrP5jtitqPfhTgXwstcxS+Vj7mP93R+unZlPYiwu6N9whzA=="; 30917 30926 }; 30918 30927 }; 30919 - "i-0.3.6" = { 30928 + "i-0.3.7" = { 30920 30929 name = "i"; 30921 30930 packageName = "i"; 30922 - version = "0.3.6"; 30931 + version = "0.3.7"; 30923 30932 src = fetchurl { 30924 - url = "https://registry.npmjs.org/i/-/i-0.3.6.tgz"; 30925 - sha1 = "d96c92732076f072711b6b10fd7d4f65ad8ee23d"; 30933 + url = "https://registry.npmjs.org/i/-/i-0.3.7.tgz"; 30934 + sha512 = "FYz4wlXgkQwIPqhzC5TdNMLSE5+GS1IIDJZY/1ZiEPCT2S3COUVZeT5OW4BmW4r5LHLQuOosSwsvnroG9GR59Q=="; 30926 30935 }; 30927 30936 }; 30928 30937 "i18next-20.3.2" = { ··· 31483 31492 sha512 = "zKSiXKhQveNteyhcj1CoOP8tqp1QuxPIPBl8Bid99DGLFqA1p87M6lNgfjJHSBoWJJlidGOv5rWjyYKEB3g2Jw=="; 31484 31493 }; 31485 31494 }; 31486 - "init-package-json-2.0.4" = { 31495 + "init-package-json-2.0.5" = { 31487 31496 name = "init-package-json"; 31488 31497 packageName = "init-package-json"; 31489 - version = "2.0.4"; 31498 + version = "2.0.5"; 31490 31499 src = fetchurl { 31491 - url = "https://registry.npmjs.org/init-package-json/-/init-package-json-2.0.4.tgz"; 31492 - sha512 = "gUACSdZYka+VvnF90TsQorC+1joAVWNI724vBNj3RD0LLMeDss2IuzaeiQs0T4YzKs76BPHtrp/z3sn2p+KDTw=="; 31500 + url = "https://registry.npmjs.org/init-package-json/-/init-package-json-2.0.5.tgz"; 31501 + sha512 = "u1uGAtEFu3VA6HNl/yUWw57jmKEMx8SKOxHhxjGnOFUiIlFnohKDFg4ZrPpv9wWqk44nDxGJAtqjdQFm+9XXQA=="; 31493 31502 }; 31494 31503 }; 31495 31504 "ink-2.7.1" = { ··· 31681 31690 sha512 = "DHLKJwLPNgkfwNmsuEUKSejJFbkv0FMO9SMiQbjI3n5NQuCrSIBqP66ggqyz2a6t2qEolKrMjhQ3+W/xXgUQ+Q=="; 31682 31691 }; 31683 31692 }; 31693 + "inquirer-8.1.5" = { 31694 + name = "inquirer"; 31695 + packageName = "inquirer"; 31696 + version = "8.1.5"; 31697 + src = fetchurl { 31698 + url = "https://registry.npmjs.org/inquirer/-/inquirer-8.1.5.tgz"; 31699 + sha512 = "G6/9xUqmt/r+UvufSyrPpt84NYwhKZ9jLsgMbQzlx804XErNupor8WQdBnBRrXmBfTPpuwf1sV+ss2ovjgdXIg=="; 31700 + }; 31701 + }; 31684 31702 "inquirer-autocomplete-prompt-1.4.0" = { 31685 31703 name = "inquirer-autocomplete-prompt"; 31686 31704 packageName = "inquirer-autocomplete-prompt"; ··· 31861 31879 sha512 = "lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw=="; 31862 31880 }; 31863 31881 }; 31864 - "internmap-2.0.1" = { 31882 + "internmap-2.0.3" = { 31865 31883 name = "internmap"; 31866 31884 packageName = "internmap"; 31867 - version = "2.0.1"; 31885 + version = "2.0.3"; 31868 31886 src = fetchurl { 31869 - url = "https://registry.npmjs.org/internmap/-/internmap-2.0.1.tgz"; 31870 - sha512 = "Ujwccrj9FkGqjbY3iVoxD1VV+KdZZeENx0rphrtzmRXbFvkFO88L80BL/zeSIguX/7T+y8k04xqtgWgS5vxwxw=="; 31887 + url = "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz"; 31888 + sha512 = "5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg=="; 31871 31889 }; 31872 31890 }; 31873 31891 "interpret-1.1.0" = { ··· 34012 34030 sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; 34013 34031 }; 34014 34032 }; 34015 - "jest-worker-27.1.1" = { 34033 + "jest-worker-27.2.0" = { 34016 34034 name = "jest-worker"; 34017 34035 packageName = "jest-worker"; 34018 - version = "27.1.1"; 34036 + version = "27.2.0"; 34019 34037 src = fetchurl { 34020 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.1.1.tgz"; 34021 - sha512 = "XJKCL7tu+362IUYTWvw8+3S75U7qMiYiRU6u5yqscB48bTvzwN6i8L/7wVTXiFLwkRsxARNM7TISnTvcgv9hxA=="; 34038 + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.2.0.tgz"; 34039 + sha512 = "laB0ZVIBz+voh/QQy9dmUuuDsadixeerrKqyVpgPz+CCWiOYjOBabUXHIXZhsdvkWbLqSHbgkAHWl5cg24Q6RA=="; 34022 34040 }; 34023 34041 }; 34024 34042 "jimp-compact-0.16.1" = { ··· 34030 34048 sha512 = "dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww=="; 34031 34049 }; 34032 34050 }; 34033 - "jitdb-3.3.0" = { 34051 + "jitdb-3.4.0" = { 34034 34052 name = "jitdb"; 34035 34053 packageName = "jitdb"; 34036 - version = "3.3.0"; 34054 + version = "3.4.0"; 34037 34055 src = fetchurl { 34038 - url = "https://registry.npmjs.org/jitdb/-/jitdb-3.3.0.tgz"; 34039 - sha512 = "lZvQN7Cv/nQ8eueyyT/U2RuDi5wKOTL1PP3TrTRuXXv7ENYBohvJfbUX/Rv6+JL84+aN82qjZeFb4UsllHWJ4w=="; 34056 + url = "https://registry.npmjs.org/jitdb/-/jitdb-3.4.0.tgz"; 34057 + sha512 = "TQUrWpifF3trL4Xk2e1DJn/Wk/FYPZE9QP+0yNzvo3KNDHlBtOYdufnH+otZh13kn1Nh0nt+ZWK8ENB2F34q8Q=="; 34040 34058 }; 34041 34059 }; 34042 34060 "jju-1.4.0" = { ··· 34147 34165 sha1 = "bcb4045c8dd0539c134bc1488cdd3e768a7a9e51"; 34148 34166 }; 34149 34167 }; 34150 - "jquery.terminal-2.29.1" = { 34168 + "jquery.terminal-2.29.2" = { 34151 34169 name = "jquery.terminal"; 34152 34170 packageName = "jquery.terminal"; 34153 - version = "2.29.1"; 34171 + version = "2.29.2"; 34154 34172 src = fetchurl { 34155 - url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.29.1.tgz"; 34156 - sha512 = "YfZuBY2B/wpmqNXtaIJuDStomw/dWLxAqgMzdt2Kipq3+annRaSzF1l8Al/d8PCo4W6vg2DiKj5nvQf03k0UGA=="; 34173 + url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.29.2.tgz"; 34174 + sha512 = "pRJHCT9v29VYkZNWNLxaW1+ABgzgCsRB4uVjMkTjGsUqPfXiQAGWPszca0qbcsKnF/64vEuQ5BNOVpyoYPCaTw=="; 34157 34175 }; 34158 34176 }; 34159 34177 "js-base64-2.6.4" = { ··· 34165 34183 sha512 = "pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ=="; 34166 34184 }; 34167 34185 }; 34168 - "js-base64-3.7.0" = { 34186 + "js-base64-3.7.1" = { 34169 34187 name = "js-base64"; 34170 34188 packageName = "js-base64"; 34171 - version = "3.7.0"; 34189 + version = "3.7.1"; 34172 34190 src = fetchurl { 34173 - url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.0.tgz"; 34174 - sha512 = "hJiXqoqZKdNx7PNuqHx3ZOgwcvgCprV0cs9ZMeqERshhVZ3cmXc3HGR60mKsHHqVK18PCwGXnmPiPDbao7SOMQ=="; 34191 + url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.1.tgz"; 34192 + sha512 = "XyYXEUTP3ykPPnGPoesMr4yBygopit99iXW52yT1EWrkzwzvtAor/pbf+EBuDkwqSty7K10LeTjCkUn8c166aQ=="; 34175 34193 }; 34176 34194 }; 34177 34195 "js-beautify-1.14.0" = { ··· 34480 34498 sha512 = "GOGAy5b+zCGeyYziBoNVXgamL2CEZKMj5moeemkyN4AUHUqugNk3fSul2Zdbxs2S13Suk0D9iYAgChDxew0bOw=="; 34481 34499 }; 34482 34500 }; 34483 - "jsii-srcmak-0.1.341" = { 34501 + "jsii-srcmak-0.1.350" = { 34484 34502 name = "jsii-srcmak"; 34485 34503 packageName = "jsii-srcmak"; 34486 - version = "0.1.341"; 34504 + version = "0.1.350"; 34487 34505 src = fetchurl { 34488 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.341.tgz"; 34489 - sha512 = "G8BUBXJDTXYsqpv5CWMSwYuGz21WdY1TRJZZVp+CIPTEbxCBc2nEJ41Ihsa1u8MCs9D1ddWGrX3JmZwqvMqUxw=="; 34506 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.350.tgz"; 34507 + sha512 = "SVrE9jpwomQc6S+nk0aETasXIrcH6vfORCgU6ROhUhsLzOMch00tOcE/HYcnCCOpIMqFfPPg77rzzT3c0bBJ0g=="; 34490 34508 }; 34491 34509 }; 34492 34510 "json-bigint-1.0.0" = { ··· 34777 34795 sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A=="; 34778 34796 }; 34779 34797 }; 34780 - "json2jsii-0.2.17" = { 34798 + "json2jsii-0.2.26" = { 34781 34799 name = "json2jsii"; 34782 34800 packageName = "json2jsii"; 34783 - version = "0.2.17"; 34801 + version = "0.2.26"; 34784 34802 src = fetchurl { 34785 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.17.tgz"; 34786 - sha512 = "dU28KQ5UBvyGcc4QaQey98a2uTwwsnh+bP4EI6wnJjsCKjMKxSLFot1jwSCA/olaWIpJFGCIYif2IJ/0Dy5a8w=="; 34803 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.26.tgz"; 34804 + sha512 = "Xz6y4Ss4UG37rIjrYSWVjmhTCGoR6oIbCrD2Jn9KPccjCncz9upi5U11z4i4JUKu9DcYp8hfEgq0DQbw0YvLIA=="; 34787 34805 }; 34788 34806 }; 34789 34807 "json3-3.2.6" = { ··· 34966 34984 sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280"; 34967 34985 }; 34968 34986 }; 34987 + "jsonpath-1.1.1" = { 34988 + name = "jsonpath"; 34989 + packageName = "jsonpath"; 34990 + version = "1.1.1"; 34991 + src = fetchurl { 34992 + url = "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz"; 34993 + sha512 = "l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w=="; 34994 + }; 34995 + }; 34969 34996 "jsonpath-plus-4.0.0" = { 34970 34997 name = "jsonpath-plus"; 34971 34998 packageName = "jsonpath-plus"; ··· 35288 35315 src = fetchurl { 35289 35316 url = "https://registry.npmjs.org/kad-fs/-/kad-fs-0.0.4.tgz"; 35290 35317 sha1 = "02ea5aa5cf22225725579627ccfd6d266372289a"; 35291 - }; 35292 - }; 35293 - "kad-git://github.com/wikimedia/kad#master" = { 35294 - name = "kad"; 35295 - packageName = "kad"; 35296 - version = "1.3.6"; 35297 - src = fetchgit { 35298 - url = "git://github.com/wikimedia/kad"; 35299 - rev = "634a3fc7f60898ec541406d60ccf0d48556070e2"; 35300 - sha256 = "285413585c8cc029d7204b5babc30cde39715fea8c8a875b8ae3c0dff2643d68"; 35301 35318 }; 35302 35319 }; 35303 35320 "kad-localstorage-0.0.7" = { ··· 36164 36181 sha512 = "BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA=="; 36165 36182 }; 36166 36183 }; 36167 - "lightning-3.3.12" = { 36168 - name = "lightning"; 36169 - packageName = "lightning"; 36170 - version = "3.3.12"; 36171 - src = fetchurl { 36172 - url = "https://registry.npmjs.org/lightning/-/lightning-3.3.12.tgz"; 36173 - sha512 = "tq7AAMpjQ9sl58pW/qis/vOBzN7MCQ4F4n+ox4VQhyv1qVA+P2LgJq36I1Y6b4RX68+hK48u1eHDzSt527fEXA=="; 36174 - }; 36175 - }; 36176 36184 "lightning-3.3.9" = { 36177 36185 name = "lightning"; 36178 36186 packageName = "lightning"; ··· 36182 36190 sha512 = "z/bfkDEAKyN0HtN7rkiyVlDA3J5L/jxXsE4YuGfQPa8TyPWovyLdo6/aHP0mMy8n+G4tq0g2oKZ/1Z5ONJAVqA=="; 36183 36191 }; 36184 36192 }; 36185 - "lightning-3.4.0" = { 36186 - name = "lightning"; 36187 - packageName = "lightning"; 36188 - version = "3.4.0"; 36189 - src = fetchurl { 36190 - url = "https://registry.npmjs.org/lightning/-/lightning-3.4.0.tgz"; 36191 - sha512 = "lD6PgHipqedfFcTEf/9mDF3s4KGO/lecr02W6zHBJHohNphuBUZS1z68kKRJAl3N4iHmDEfLxt+G86PBP0jhHw=="; 36192 - }; 36193 - }; 36194 36193 "lightning-4.1.0" = { 36195 36194 name = "lightning"; 36196 36195 packageName = "lightning"; ··· 36209 36208 sha512 = "DI21mqAdwBM/Os3pcAnBrpUCoaKQzJFTEv2c+DEJUzPBnpxRGGKGurlT5FDz9QZSTag7YgBb5ghsqtjQ2MlFWg=="; 36210 36209 }; 36211 36210 }; 36212 - "lightning-4.2.1" = { 36211 + "lightning-4.5.0" = { 36212 + name = "lightning"; 36213 + packageName = "lightning"; 36214 + version = "4.5.0"; 36215 + src = fetchurl { 36216 + url = "https://registry.npmjs.org/lightning/-/lightning-4.5.0.tgz"; 36217 + sha512 = "oKH9EVKxgPIWm2f3/7vLImQAZQVP2souwAMMg5njGdCPAlekA8KH+/r+Ltuv5jd1vQigwmQMkfmdZzd4qmOI8Q=="; 36218 + }; 36219 + }; 36220 + "lightning-4.6.0" = { 36221 + name = "lightning"; 36222 + packageName = "lightning"; 36223 + version = "4.6.0"; 36224 + src = fetchurl { 36225 + url = "https://registry.npmjs.org/lightning/-/lightning-4.6.0.tgz"; 36226 + sha512 = "ZCDSFomdsUvDDaINbABPdglLEJfg+9iMs4BHa8Or+fW5FYwM0HA8l2D/yMxfCMx2DFZg7uuiZVpM8x/7/AbS0Q=="; 36227 + }; 36228 + }; 36229 + "lightning-4.7.0" = { 36213 36230 name = "lightning"; 36214 36231 packageName = "lightning"; 36215 - version = "4.2.1"; 36232 + version = "4.7.0"; 36216 36233 src = fetchurl { 36217 - url = "https://registry.npmjs.org/lightning/-/lightning-4.2.1.tgz"; 36218 - sha512 = "ltYLcoJcGjL9yuBpoZfi8tLZ+SwInX3l/BrZIK1d14Wlk0dAu8jhLPClPDm0kt91HULpnynl/xxeOPVdQqdsHA=="; 36234 + url = "https://registry.npmjs.org/lightning/-/lightning-4.7.0.tgz"; 36235 + sha512 = "HtoVfuc9p8fcAOTXOBgIfH04S91A/1xlUZTRnYAdZx0h2zMjQaZ5/mpbDQjQkBn4Swf0EOHkcSI82scKm37JQg=="; 36219 36236 }; 36220 36237 }; 36221 36238 "lilconfig-2.0.3" = { ··· 36236 36253 sha1 = "cc09c24467a0f0a1ed10a5196dba597cad3f65dc"; 36237 36254 }; 36238 36255 }; 36239 - "limitation-0.2.2" = { 36256 + "limitation-0.2.3" = { 36240 36257 name = "limitation"; 36241 36258 packageName = "limitation"; 36242 - version = "0.2.2"; 36259 + version = "0.2.3"; 36243 36260 src = fetchurl { 36244 - url = "https://registry.npmjs.org/limitation/-/limitation-0.2.2.tgz"; 36245 - sha512 = "kUfYO29baIJzY3S4/j7qaWl0GdjxT88SEaIcUN98YGdhYh+m7Zkt1N4jGubVF05A7dzjfjgtQD/NI5APKl38RQ=="; 36261 + url = "https://registry.npmjs.org/limitation/-/limitation-0.2.3.tgz"; 36262 + sha512 = "IpIBG7WniPI1Og0HYxlo8JRD2E2pExwuol7hjobcNZSYBBxAamPJdV91Q47uw5/KiUKA+We8a33sh6vD1PQ+Yw=="; 36246 36263 }; 36247 36264 }; 36248 36265 "limiter-1.1.5" = { ··· 36362 36379 sha512 = "04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw=="; 36363 36380 }; 36364 36381 }; 36365 - "ln-accounting-5.0.1" = { 36382 + "ln-accounting-5.0.3" = { 36366 36383 name = "ln-accounting"; 36367 36384 packageName = "ln-accounting"; 36368 - version = "5.0.1"; 36385 + version = "5.0.3"; 36369 36386 src = fetchurl { 36370 - url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-5.0.1.tgz"; 36371 - sha512 = "5hHO3/ZdKwVicDpgU0ElDnSqKSrqx9Cz7eD6r/3STjqLnLuOjj9/ILzPOgY3lPyD7j3gHifzuJg5dUx2Bxh0sg=="; 36387 + url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-5.0.3.tgz"; 36388 + sha512 = "C6aYABDRKoNLIooap5FZxvPFVcQjLYuHkbg5vTQHhydBMje8M/e8ZtHXWQNC3cC42W6dE7Nrdh1cCg1cYhNp6g=="; 36372 36389 }; 36373 36390 }; 36374 36391 "ln-service-51.8.2" = { ··· 36380 36397 sha512 = "X+AFuuw54NEr8UqbkJlEtqkmlpIpmji7BX+bYmYrEOZOtJca7PbaqspVWq+YB9qWw/OiuI76ly67KGTYM0QbCw=="; 36381 36398 }; 36382 36399 }; 36383 - "ln-service-51.8.5" = { 36384 - name = "ln-service"; 36385 - packageName = "ln-service"; 36386 - version = "51.8.5"; 36387 - src = fetchurl { 36388 - url = "https://registry.npmjs.org/ln-service/-/ln-service-51.8.5.tgz"; 36389 - sha512 = "1SU0eG9/LDy6k3UGXaahmoe1wOahAJkaidWpLX5Nmlfq72I0arad420smma5ZGXAW4wNlGR/gx68KZzzYI5D4A=="; 36390 - }; 36391 - }; 36392 36400 "ln-service-52.0.1" = { 36393 36401 name = "ln-service"; 36394 36402 packageName = "ln-service"; ··· 36407 36415 sha512 = "upswAJU9Mrfh3l+q46rvmRu8Pf7iYR2vkKyq16dgiBgxKw7fzvI8aL2Xi0xrtyoRUOUODOyEzO7/MRRhNKcvMA=="; 36408 36416 }; 36409 36417 }; 36410 - "ln-service-52.1.0" = { 36418 + "ln-service-52.4.0" = { 36411 36419 name = "ln-service"; 36412 36420 packageName = "ln-service"; 36413 - version = "52.1.0"; 36421 + version = "52.4.0"; 36422 + src = fetchurl { 36423 + url = "https://registry.npmjs.org/ln-service/-/ln-service-52.4.0.tgz"; 36424 + sha512 = "8fKd/Px3c57CyjmL5CRY88MmVQ2cBkz2kB/VB5SEThzqQJbwDz0nVCOE9T5+ZV7t3TSAuonPwuJJxaoCJCrRHA=="; 36425 + }; 36426 + }; 36427 + "ln-service-52.6.0" = { 36428 + name = "ln-service"; 36429 + packageName = "ln-service"; 36430 + version = "52.6.0"; 36431 + src = fetchurl { 36432 + url = "https://registry.npmjs.org/ln-service/-/ln-service-52.6.0.tgz"; 36433 + sha512 = "tLJMrknIzK6MMIx/N1r8iRjVWBPFmt0S1hI2l+DNL6+ln930nSUN+/aW3SUZho48ACLPBJDSgXwAU50ExrC+rQ=="; 36434 + }; 36435 + }; 36436 + "ln-sync-2.0.0" = { 36437 + name = "ln-sync"; 36438 + packageName = "ln-sync"; 36439 + version = "2.0.0"; 36414 36440 src = fetchurl { 36415 - url = "https://registry.npmjs.org/ln-service/-/ln-service-52.1.0.tgz"; 36416 - sha512 = "xB+Si8fQoHpmJWQDA3JFVxs/xV/c26OU2NsnkIRcbNQagwQtSKV08fcwbfKs3tpZLHQiyzmKos4XF82TfYtzeA=="; 36441 + url = "https://registry.npmjs.org/ln-sync/-/ln-sync-2.0.0.tgz"; 36442 + sha512 = "BrqRO1pxeRhaCTw8GdnLGwCsFQSnrJohXkVxuDQCQ4OCgLFKFS7TpFKS7INoJrLE1XpcGS8NtLLXjsA0Akcd3A=="; 36417 36443 }; 36418 36444 }; 36419 - "ln-sync-0.4.7" = { 36445 + "ln-sync-2.0.1" = { 36420 36446 name = "ln-sync"; 36421 36447 packageName = "ln-sync"; 36422 - version = "0.4.7"; 36448 + version = "2.0.1"; 36423 36449 src = fetchurl { 36424 - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-0.4.7.tgz"; 36425 - sha512 = "2yqc59OhK0affnkwhgw7iY4x2tKZTb8y8KSWxRHn6cSXL3clUJgXdTNOGr4Jp8j1TkTl0iRVnLSNZlRbtU4vVA=="; 36450 + url = "https://registry.npmjs.org/ln-sync/-/ln-sync-2.0.1.tgz"; 36451 + sha512 = "+WJ/qQrDJu3sY48IXQf3r1jDe4AFyLRA0HV4Nm78zL2S6iZ+axXD/+4qVE9IN7OlMOfpkmAAunSu6tIlIltuLA=="; 36426 36452 }; 36427 36453 }; 36428 - "ln-telegram-3.2.11" = { 36454 + "ln-telegram-3.3.0" = { 36429 36455 name = "ln-telegram"; 36430 36456 packageName = "ln-telegram"; 36431 - version = "3.2.11"; 36457 + version = "3.3.0"; 36432 36458 src = fetchurl { 36433 - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.2.11.tgz"; 36434 - sha512 = "JzgJQGGLuKM/v7Olk707AeIiB5imQacM5AOGEefI98pTMjrMJ9SRgMg7M39+AOLOT2R7MHXHDBk+41UGtbQZGQ=="; 36459 + url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.3.0.tgz"; 36460 + sha512 = "rWrS5lO2oZhLbts7R58QDh1Hf/A/QIGA8Jew0iZrIFix9afiz3+xwJi5LFkB0nIaFnWvpOeFP4deDq3ADcF3Hw=="; 36435 36461 }; 36436 36462 }; 36437 36463 "load-ip-set-2.2.1" = { ··· 37082 37108 sha1 = "0d99f3ccd7a6d261d19bdaeb9245005d285808e7"; 37083 37109 }; 37084 37110 }; 37111 + "lodash.assignin-4.2.0" = { 37112 + name = "lodash.assignin"; 37113 + packageName = "lodash.assignin"; 37114 + version = "4.2.0"; 37115 + src = fetchurl { 37116 + url = "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz"; 37117 + sha1 = "ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"; 37118 + }; 37119 + }; 37085 37120 "lodash.bind-2.4.1" = { 37086 37121 name = "lodash.bind"; 37087 37122 packageName = "lodash.bind"; ··· 37089 37124 src = fetchurl { 37090 37125 url = "https://registry.npmjs.org/lodash.bind/-/lodash.bind-2.4.1.tgz"; 37091 37126 sha1 = "5d19fa005c8c4d236faf4742c7b7a1fcabe29267"; 37127 + }; 37128 + }; 37129 + "lodash.bind-4.2.1" = { 37130 + name = "lodash.bind"; 37131 + packageName = "lodash.bind"; 37132 + version = "4.2.1"; 37133 + src = fetchurl { 37134 + url = "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz"; 37135 + sha1 = "7ae3017e939622ac31b7d7d7dcb1b34db1690d35"; 37092 37136 }; 37093 37137 }; 37094 37138 "lodash.camelcase-4.3.0" = { ··· 37199 37243 sha1 = "64762c48618082518ac3df4ccf5d5886dae20347"; 37200 37244 }; 37201 37245 }; 37246 + "lodash.filter-4.6.0" = { 37247 + name = "lodash.filter"; 37248 + packageName = "lodash.filter"; 37249 + version = "4.6.0"; 37250 + src = fetchurl { 37251 + url = "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz"; 37252 + sha1 = "668b1d4981603ae1cc5a6fa760143e480b4c4ace"; 37253 + }; 37254 + }; 37202 37255 "lodash.flatmap-4.5.0" = { 37203 37256 name = "lodash.flatmap"; 37204 37257 packageName = "lodash.flatmap"; ··· 37235 37288 sha1 = "6fd7efb79691aecd67fdeac2761c98e701d6c39a"; 37236 37289 }; 37237 37290 }; 37291 + "lodash.foreach-4.5.0" = { 37292 + name = "lodash.foreach"; 37293 + packageName = "lodash.foreach"; 37294 + version = "4.5.0"; 37295 + src = fetchurl { 37296 + url = "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz"; 37297 + sha1 = "1a6a35eace401280c7f06dddec35165ab27e3e53"; 37298 + }; 37299 + }; 37238 37300 "lodash.forown-2.4.1" = { 37239 37301 name = "lodash.forown"; 37240 37302 packageName = "lodash.forown"; ··· 37487 37549 sha1 = "4dbc0472b156be50a0b286855d1bd0b0c656098a"; 37488 37550 }; 37489 37551 }; 37552 + "lodash.map-4.6.0" = { 37553 + name = "lodash.map"; 37554 + packageName = "lodash.map"; 37555 + version = "4.6.0"; 37556 + src = fetchurl { 37557 + url = "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz"; 37558 + sha1 = "771ec7839e3473d9c4cde28b19394c3562f4f6d3"; 37559 + }; 37560 + }; 37490 37561 "lodash.memoize-3.0.4" = { 37491 37562 name = "lodash.memoize"; 37492 37563 packageName = "lodash.memoize"; ··· 37577 37648 sha1 = "52f05610fff9ded422611441ed1fc123a03001b3"; 37578 37649 }; 37579 37650 }; 37651 + "lodash.reduce-4.6.0" = { 37652 + name = "lodash.reduce"; 37653 + packageName = "lodash.reduce"; 37654 + version = "4.6.0"; 37655 + src = fetchurl { 37656 + url = "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz"; 37657 + sha1 = "f1ab6b839299ad48f784abbf476596f03b914d3b"; 37658 + }; 37659 + }; 37660 + "lodash.reject-4.6.0" = { 37661 + name = "lodash.reject"; 37662 + packageName = "lodash.reject"; 37663 + version = "4.6.0"; 37664 + src = fetchurl { 37665 + url = "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz"; 37666 + sha1 = "80d6492dc1470864bbf583533b651f42a9f52415"; 37667 + }; 37668 + }; 37580 37669 "lodash.repeat-4.1.0" = { 37581 37670 name = "lodash.repeat"; 37582 37671 packageName = "lodash.repeat"; ··· 37766 37855 sha1 = "ec6662e4896408ed4ab6c542a3990b72cc080020"; 37767 37856 }; 37768 37857 }; 37769 - "log-6.1.0" = { 37858 + "log-6.2.0" = { 37770 37859 name = "log"; 37771 37860 packageName = "log"; 37772 - version = "6.1.0"; 37861 + version = "6.2.0"; 37773 37862 src = fetchurl { 37774 - url = "https://registry.npmjs.org/log/-/log-6.1.0.tgz"; 37775 - sha512 = "ZulFTrSNfKd8AlMNhl2sQ/jphhTReGeYYsB/ABV1u3jADp2wedQ7+uhSaXlBdu3VMM5PS0ribMFb0UJMesaGng=="; 37863 + url = "https://registry.npmjs.org/log/-/log-6.2.0.tgz"; 37864 + sha512 = "W1sDY5FqR6wlpygW8ZFSxCfBhKx/RzCHK5S+Br8zA14bAnwSgCm5hToIWzi0Yhy6x9Ppw7pyIV06r8F5cSRHUw=="; 37776 37865 }; 37777 37866 }; 37778 37867 "log-driver-1.2.7" = { ··· 37784 37873 sha512 = "U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg=="; 37785 37874 }; 37786 37875 }; 37787 - "log-node-8.0.0" = { 37876 + "log-node-8.0.1" = { 37788 37877 name = "log-node"; 37789 37878 packageName = "log-node"; 37790 - version = "8.0.0"; 37879 + version = "8.0.1"; 37791 37880 src = fetchurl { 37792 - url = "https://registry.npmjs.org/log-node/-/log-node-8.0.0.tgz"; 37793 - sha512 = "ogrmq+slTOCXG6TMgXxZ2lkfm00CrnO8LLgvqpvEzDhzJ/DmOCGj2AlSjEClk36k7S4k1HNw3WLwF2nqx15SKQ=="; 37881 + url = "https://registry.npmjs.org/log-node/-/log-node-8.0.1.tgz"; 37882 + sha512 = "w6ii8zZo+O4Os9EBB0+ruaeVU6CysNgYj/cUDOtobBxnNPRHynjMjzyqjEuNKGT/AD89sZzGh0pS3/0ZPRR1iQ=="; 37794 37883 }; 37795 37884 }; 37796 37885 "log-process-errors-6.3.0" = { ··· 38567 38656 sha1 = "a65cd29087a92598b8791257a523e021222ac1f9"; 38568 38657 }; 38569 38658 }; 38570 - "map-obj-4.2.1" = { 38659 + "map-obj-4.3.0" = { 38571 38660 name = "map-obj"; 38572 38661 packageName = "map-obj"; 38573 - version = "4.2.1"; 38662 + version = "4.3.0"; 38574 38663 src = fetchurl { 38575 - url = "https://registry.npmjs.org/map-obj/-/map-obj-4.2.1.tgz"; 38576 - sha512 = "+WA2/1sPmDj1dlvvJmB5G6JKfY9dpn7EVBUL06+y6PoljPkh+6V1QihwxNkbcGxCRjt2b0F9K0taiCuo7MbdFQ=="; 38664 + url = "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz"; 38665 + sha512 = "hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ=="; 38577 38666 }; 38578 38667 }; 38579 38668 "map-stream-0.0.7" = { ··· 38756 38845 sha512 = "HyxjAu6BRsdt6Xcv6TKVQnkz/E70TdGXEFHRYBGLncRE9lBFwDNLVtFojKxjJWgJ+5XxUwLaHXy+2sGBbDn+4A=="; 38757 38846 }; 38758 38847 }; 38759 - "markdown-it-multimd-table-4.1.0" = { 38848 + "markdown-it-multimd-table-4.1.1" = { 38760 38849 name = "markdown-it-multimd-table"; 38761 38850 packageName = "markdown-it-multimd-table"; 38762 - version = "4.1.0"; 38851 + version = "4.1.1"; 38763 38852 src = fetchurl { 38764 - url = "https://registry.npmjs.org/markdown-it-multimd-table/-/markdown-it-multimd-table-4.1.0.tgz"; 38765 - sha512 = "YNR7Td1gK3O+jLezL6Zfl80WNRn9iLAyXmCVAUSsTJ61drmJdHr7cWqr2CuWaSffBtnM0Zh0QBRUdmICoy+CDg=="; 38853 + url = "https://registry.npmjs.org/markdown-it-multimd-table/-/markdown-it-multimd-table-4.1.1.tgz"; 38854 + sha512 = "FIgU3m6sw60XTouDdBd4ASZAc7Ba5ER5YkZOfGw+7PS/VsSzFFLYKCrGIwxTt6LscoXK6/TbMIu/4kJfykbgBg=="; 38766 38855 }; 38767 38856 }; 38768 38857 "markdown-it-sub-1.0.0" = { ··· 38900 38989 sha512 = "+IUQJ5VlZoAFsM5MHNT7g3RHSkA3eETqhRCdXv4niUMAKHQ7lb1yvAcuGPmm4soxhmtX13u4Li6ZToXtvSEH+A=="; 38901 38990 }; 38902 38991 }; 38903 - "marked-terminal-4.1.1" = { 38992 + "marked-terminal-4.2.0" = { 38904 38993 name = "marked-terminal"; 38905 38994 packageName = "marked-terminal"; 38906 - version = "4.1.1"; 38995 + version = "4.2.0"; 38907 38996 src = fetchurl { 38908 - url = "https://registry.npmjs.org/marked-terminal/-/marked-terminal-4.1.1.tgz"; 38909 - sha512 = "t7Mdf6T3PvOEyN01c3tYxDzhyKZ8xnkp8Rs6Fohno63L/0pFTJ5Qtwto2AQVuDtbQiWzD+4E5AAu1Z2iLc8miQ=="; 38997 + url = "https://registry.npmjs.org/marked-terminal/-/marked-terminal-4.2.0.tgz"; 38998 + sha512 = "DQfNRV9svZf0Dm9Cf5x5xaVJ1+XjxQW6XjFJ5HFkVyK52SDpj5PCBzS5X5r2w9nHr3mlB0T5201UMLue9fmhUw=="; 38910 38999 }; 38911 39000 }; 38912 39001 "marky-1.2.2" = { ··· 39467 39556 sha512 = "QKFbPwGCh1ypmc2H8BUYpbapwT/x2AOCYZQogzSui4rUNes7WVMagQXsirPIfp18EarX0SSY9Fpg426nSjew4Q=="; 39468 39557 }; 39469 39558 }; 39470 - "memfs-3.2.4" = { 39559 + "memfs-3.3.0" = { 39471 39560 name = "memfs"; 39472 39561 packageName = "memfs"; 39473 - version = "3.2.4"; 39562 + version = "3.3.0"; 39474 39563 src = fetchurl { 39475 - url = "https://registry.npmjs.org/memfs/-/memfs-3.2.4.tgz"; 39476 - sha512 = "2mDCPhuduRPOxlfgsXF9V+uqC6Jgz8zt/bNe4d4W7d5f6pCzHrWkxLNr17jKGXd4+j2kQNsAG2HARPnt74sqVQ=="; 39564 + url = "https://registry.npmjs.org/memfs/-/memfs-3.3.0.tgz"; 39565 + sha512 = "BEE62uMfKOavX3iG7GYX43QJ+hAeeWnwIAuJ/R6q96jaMtiLzhsxHJC8B1L7fK7Pt/vXDRwb3SG/yBpNGDPqzg=="; 39477 39566 }; 39478 39567 }; 39479 39568 "memoize-one-5.2.1" = { ··· 40187 40276 sha512 = "CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA=="; 40188 40277 }; 40189 40278 }; 40279 + "mime-db-1.50.0" = { 40280 + name = "mime-db"; 40281 + packageName = "mime-db"; 40282 + version = "1.50.0"; 40283 + src = fetchurl { 40284 + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz"; 40285 + sha512 = "9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A=="; 40286 + }; 40287 + }; 40190 40288 "mime-types-2.1.18" = { 40191 40289 name = "mime-types"; 40192 40290 packageName = "mime-types"; ··· 40439 40537 sha512 = "wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg=="; 40440 40538 }; 40441 40539 }; 40442 - "minipass-3.1.3" = { 40540 + "minipass-3.1.5" = { 40443 40541 name = "minipass"; 40444 40542 packageName = "minipass"; 40445 - version = "3.1.3"; 40543 + version = "3.1.5"; 40446 40544 src = fetchurl { 40447 - url = "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz"; 40448 - sha512 = "Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg=="; 40545 + url = "https://registry.npmjs.org/minipass/-/minipass-3.1.5.tgz"; 40546 + sha512 = "+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw=="; 40449 40547 }; 40450 40548 }; 40451 40549 "minipass-collect-1.0.2" = { ··· 40970 41068 sha512 = "ja8+mFKIHdB1Tpl6vac+sktqy3gA8t9Mduom1BA75cI+R9AHnZOiaBQwpGiWnaVJLDGRdNhQmFaAqd7tkKSMGA=="; 40971 41069 }; 40972 41070 }; 40973 - "mri-1.1.6" = { 41071 + "mri-1.2.0" = { 40974 41072 name = "mri"; 40975 41073 packageName = "mri"; 40976 - version = "1.1.6"; 41074 + version = "1.2.0"; 40977 41075 src = fetchurl { 40978 - url = "https://registry.npmjs.org/mri/-/mri-1.1.6.tgz"; 40979 - sha512 = "oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ=="; 41076 + url = "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz"; 41077 + sha512 = "tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA=="; 40980 41078 }; 40981 41079 }; 40982 41080 "mrmr-0.1.10" = { ··· 41141 41239 sha512 = "TzxgGSLRLB7tqAlzjgd2x2ZE0cDsGFq4rs9W4yE5xp+7hlRXeUQGtXZsTGfGw2FwWB45rfe8DtXMYBpZGMLUng=="; 41142 41240 }; 41143 41241 }; 41242 + "multicast-dns-git://github.com/webtorrent/multicast-dns.git#fix-setMulticastInterface" = { 41243 + name = "multicast-dns"; 41244 + packageName = "multicast-dns"; 41245 + version = "7.2.3"; 41246 + src = fetchgit { 41247 + url = "git://github.com/webtorrent/multicast-dns.git"; 41248 + rev = "9cd95b2b8ac5843bf1da8bdb7f4092f1d7d6f17b"; 41249 + sha256 = "94ac6a61617c2ee660616d2323e3cbff2eeed5694e0c589714a22471122a7c1b"; 41250 + }; 41251 + }; 41144 41252 "multicast-dns-service-types-1.1.0" = { 41145 41253 name = "multicast-dns-service-types"; 41146 41254 packageName = "multicast-dns-service-types"; ··· 41445 41553 src = fetchurl { 41446 41554 url = "https://registry.npmjs.org/n64/-/n64-0.2.10.tgz"; 41447 41555 sha512 = "uH9geV4+roR1tohsrrqSOLCJ9Mh1iFcDI+9vUuydDlDxUS1UCAWUfuGb06p3dj3flzywquJNrGsQ7lHP8+4RVQ=="; 41556 + }; 41557 + }; 41558 + "named-regexp-0.1.1" = { 41559 + name = "named-regexp"; 41560 + packageName = "named-regexp"; 41561 + version = "0.1.1"; 41562 + src = fetchurl { 41563 + url = "https://registry.npmjs.org/named-regexp/-/named-regexp-0.1.1.tgz"; 41564 + sha1 = "cd9c5383245fa5cbc712a73d669b1e4e2aef590d"; 41448 41565 }; 41449 41566 }; 41450 41567 "nan-0.3.2" = { ··· 41970 42087 sha512 = "AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug=="; 41971 42088 }; 41972 42089 }; 41973 - "netlify-8.0.0" = { 42090 + "netlify-8.0.1" = { 41974 42091 name = "netlify"; 41975 42092 packageName = "netlify"; 41976 - version = "8.0.0"; 42093 + version = "8.0.1"; 41977 42094 src = fetchurl { 41978 - url = "https://registry.npmjs.org/netlify/-/netlify-8.0.0.tgz"; 41979 - sha512 = "BiQblBf85/GmerTZYxVH/1A4/O8qBvg0Qr8QX0MvxjAvO3j+jDUk1PSudMxNgJjU1zFw5pKM2/DBk70hP5gt+Q=="; 42095 + url = "https://registry.npmjs.org/netlify/-/netlify-8.0.1.tgz"; 42096 + sha512 = "bAUay/JDmUdmFSfW6BQuUGHuj498ALr/aS4Se3Juhgv1N0q1Whrp1uwGlkIgatrlP0lLL/zkTWc6hxmG1TqQcQ=="; 41980 42097 }; 41981 42098 }; 41982 42099 "netlify-headers-parser-4.0.1" = { ··· 42412 42529 sha512 = "V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw=="; 42413 42530 }; 42414 42531 }; 42415 - "node-fetch-2.6.2" = { 42532 + "node-fetch-2.6.4" = { 42416 42533 name = "node-fetch"; 42417 42534 packageName = "node-fetch"; 42418 - version = "2.6.2"; 42535 + version = "2.6.4"; 42419 42536 src = fetchurl { 42420 - url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.2.tgz"; 42421 - sha512 = "aLoxToI6RfZ+0NOjmWAgn9+LEd30YCkJKFSyWacNZdEKTit/ZMcKjGkTRo8uWEsnIb/hfKecNPEbln02PdWbcA=="; 42537 + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.4.tgz"; 42538 + sha512 = "aD1fO+xtLiSCc9vuD+sYMxpIuQyhHscGSkBEo2o5LTV/3bTEAYvdUii29n8LlO5uLCmWdGP7uVUVXFo5SRdkLA=="; 42422 42539 }; 42423 42540 }; 42424 42541 "node-fetch-h2-2.3.0" = { ··· 42520 42637 sha512 = "dSq1xmcPDKPZ2EED2S6zw/b9NKsqzXRE6dVr8TVQnI3FJOTteUMuqF3Qqs6LZg+mLGYJWqQzMbIjMtJqTv87nQ=="; 42521 42638 }; 42522 42639 }; 42523 - "node-gyp-build-4.2.3" = { 42640 + "node-gyp-build-4.3.0" = { 42524 42641 name = "node-gyp-build"; 42525 42642 packageName = "node-gyp-build"; 42526 - version = "4.2.3"; 42643 + version = "4.3.0"; 42527 42644 src = fetchurl { 42528 - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.2.3.tgz"; 42529 - sha512 = "MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg=="; 42645 + url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz"; 42646 + sha512 = "iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q=="; 42530 42647 }; 42531 42648 }; 42532 42649 "node-html-parser-1.4.9" = { ··· 42610 42727 sha512 = "fPNFIp2hF/Dq7qLDzSg4vZ0J4e9v60gJR+Qx7RbjbWqzPDdEqeVpEx5CFeDAELIl+A/woaaNn1fQ5nEVerMxJg=="; 42611 42728 }; 42612 42729 }; 42613 - "node-object-hash-2.3.9" = { 42730 + "node-object-hash-2.3.10" = { 42614 42731 name = "node-object-hash"; 42615 42732 packageName = "node-object-hash"; 42616 - version = "2.3.9"; 42733 + version = "2.3.10"; 42617 42734 src = fetchurl { 42618 - url = "https://registry.npmjs.org/node-object-hash/-/node-object-hash-2.3.9.tgz"; 42619 - sha512 = "NQt1YURrMPeQGZzW4lRbshUEF2PqxJEZYY4XJ/L+q33dI8yPYvnb7QXmwUcl1EuXluzeY4TEV+H6H0EmtI6f5g=="; 42735 + url = "https://registry.npmjs.org/node-object-hash/-/node-object-hash-2.3.10.tgz"; 42736 + sha512 = "jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA=="; 42620 42737 }; 42621 42738 }; 42622 42739 "node-persist-2.1.0" = { ··· 42673 42790 sha512 = "dBljNubVsolJkgfXUAF3KrCAO+hi5AXz+cftGjfHT76PyVB9pFUbAgTrkjZmKciC/B/14kEV5Ds+SwonqyTMfg=="; 42674 42791 }; 42675 42792 }; 42676 - "node-releases-1.1.75" = { 42793 + "node-releases-1.1.76" = { 42677 42794 name = "node-releases"; 42678 42795 packageName = "node-releases"; 42679 - version = "1.1.75"; 42796 + version = "1.1.76"; 42680 42797 src = fetchurl { 42681 - url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.75.tgz"; 42682 - sha512 = "Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw=="; 42798 + url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.76.tgz"; 42799 + sha512 = "9/IECtNr8dXNmPWmFXepT0/7o5eolGesHUa3mtr0KlgnCvnZxwh2qensKL42JJY2vQKC3nIBXetFAqR+PW1CmA=="; 42683 42800 }; 42684 42801 }; 42685 42802 "node-source-walk-4.2.0" = { ··· 43375 43492 sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg=="; 43376 43493 }; 43377 43494 }; 43378 - "nth-check-2.0.0" = { 43495 + "nth-check-2.0.1" = { 43379 43496 name = "nth-check"; 43380 43497 packageName = "nth-check"; 43381 - version = "2.0.0"; 43498 + version = "2.0.1"; 43382 43499 src = fetchurl { 43383 - url = "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz"; 43384 - sha512 = "i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q=="; 43500 + url = "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz"; 43501 + sha512 = "it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w=="; 43385 43502 }; 43386 43503 }; 43387 43504 "nugget-2.0.1" = { ··· 43700 43817 sha512 = "jgSbThcoR/s+XumvGMTMf81QVBmah+/Q7K7YduKeKVWL7N111unR2d6pZZarSk6kY/caeNxUDyxOvMWyzoU2eg=="; 43701 43818 }; 43702 43819 }; 43703 - "object-path-0.11.7" = { 43820 + "object-path-0.11.8" = { 43704 43821 name = "object-path"; 43705 43822 packageName = "object-path"; 43706 - version = "0.11.7"; 43823 + version = "0.11.8"; 43707 43824 src = fetchurl { 43708 - url = "https://registry.npmjs.org/object-path/-/object-path-0.11.7.tgz"; 43709 - sha512 = "T4evaK9VfGGQskXBDILcn6F90ZD+WO3OwRFFQ2rmZdUH4vQeDBpiolTpVlPY2yj5xSepyILTjDyM6UvbbdHMZw=="; 43825 + url = "https://registry.npmjs.org/object-path/-/object-path-0.11.8.tgz"; 43826 + sha512 = "YJjNZrlXJFM42wTBn6zgOJVar9KFJvzx6sTWDte8sWZF//cnjl0BxHNpfZx+ZffXX63A9q0b1zsFiBX4g4X5KA=="; 43710 43827 }; 43711 43828 }; 43712 43829 "object-to-arguments-0.0.8" = { ··· 43907 44024 sha512 = "0HGaSR/E/seIhSzFxLkh0QqckuNSre4iGqSElZRUv1hVHH2YgrZ7xtQL9McwL8o1fh6HqkzykjUx0Iy2haVIUg=="; 43908 44025 }; 43909 44026 }; 43910 - "office-ui-fabric-react-7.175.2" = { 44027 + "office-ui-fabric-react-7.176.1" = { 43911 44028 name = "office-ui-fabric-react"; 43912 44029 packageName = "office-ui-fabric-react"; 43913 - version = "7.175.2"; 44030 + version = "7.176.1"; 43914 44031 src = fetchurl { 43915 - url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.175.2.tgz"; 43916 - sha512 = "8D57MG+F4m8aTbV4M9oeFQNdu8NNYSV8yI9wSL20FmdeYSCddqhrxW/JqivJMiDBn1Y4+dnjXLRahudUbePBQQ=="; 44032 + url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.176.1.tgz"; 44033 + sha512 = "dtONShq8XmhRR5J3oX/vwKTWhA49oBSmIXETkGWMHZ68oSBcykxwh4DsM1w7Bi2fpZD2SFlCkv6QDoJiezhxmA=="; 43917 44034 }; 43918 44035 }; 43919 44036 "omggif-1.0.10" = { ··· 44402 44519 sha512 = "ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A=="; 44403 44520 }; 44404 44521 }; 44405 - "openid-2.0.9" = { 44522 + "openid-2.0.10" = { 44406 44523 name = "openid"; 44407 44524 packageName = "openid"; 44408 - version = "2.0.9"; 44525 + version = "2.0.10"; 44409 44526 src = fetchurl { 44410 - url = "https://registry.npmjs.org/openid/-/openid-2.0.9.tgz"; 44411 - sha512 = "LzsGBHUDU2FjW/aHjB99GXxuyEPVkFyU4Ub/df3K0hYGxD1qvYu7atPORLXddCufVkcZBpgbYxdLVG8uiY0fCA=="; 44527 + url = "https://registry.npmjs.org/openid/-/openid-2.0.10.tgz"; 44528 + sha512 = "EFTQ61/OUVhCeq78Y3rBpdKSuvgb0lwkU8nN4QTdcv0afc5MT7e4IVuZwgkMsgE993dmhbIhkxHFP3iTVJXWmw=="; 44412 44529 }; 44413 44530 }; 44414 44531 "openpgp-4.10.10" = { ··· 44771 44888 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; 44772 44889 }; 44773 44890 }; 44774 - "ot-builder-1.1.0" = { 44891 + "ot-builder-1.1.1" = { 44775 44892 name = "ot-builder"; 44776 44893 packageName = "ot-builder"; 44777 - version = "1.1.0"; 44894 + version = "1.1.1"; 44778 44895 src = fetchurl { 44779 - url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.1.0.tgz"; 44780 - sha512 = "IvQqHq33yHRKQuBzlzE6N3tXR2IktvBXeTvdASzib5Lqz84MJ1raGQrDNMimYxpRjcXZFJVfDgATYy5+gLhJIQ=="; 44896 + url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.1.1.tgz"; 44897 + sha512 = "bU1eH69ZopFnB9ZXdOLcpKq0FlsKPnyXGceDJBahftwCCSB7QS+zLXdnVIKAy8/aNmsZBS+8wxmKVdHZg21WDg=="; 44781 44898 }; 44782 44899 }; 44783 - "otb-ttc-bundle-1.1.0" = { 44900 + "otb-ttc-bundle-1.1.1" = { 44784 44901 name = "otb-ttc-bundle"; 44785 44902 packageName = "otb-ttc-bundle"; 44786 - version = "1.1.0"; 44903 + version = "1.1.1"; 44787 44904 src = fetchurl { 44788 - url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.1.0.tgz"; 44789 - sha512 = "tn3jkqHfaVIQsecQyAUTNf/VAAfE5EQiDH3AyIb1OFXjcdp0P9pBZUd0E4iP+rQjVoN8eMy1uCgvde5M5ZqVrg=="; 44905 + url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.1.1.tgz"; 44906 + sha512 = "w7nw9ARB7IglOASVnrObB7RaKk/9PHJrNn9DP9bM6mSufKPXT0rpCeMFCIAS5nKHvegocFxHksPU10TWp80pdw=="; 44790 44907 }; 44791 44908 }; 44792 44909 "ow-0.21.0" = { ··· 45068 45185 sha512 = "RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q=="; 45069 45186 }; 45070 45187 }; 45071 - "p-memoize-4.0.1" = { 45188 + "p-memoize-4.0.2" = { 45072 45189 name = "p-memoize"; 45073 45190 packageName = "p-memoize"; 45074 - version = "4.0.1"; 45191 + version = "4.0.2"; 45075 45192 src = fetchurl { 45076 - url = "https://registry.npmjs.org/p-memoize/-/p-memoize-4.0.1.tgz"; 45077 - sha512 = "km0sP12uE0dOZ5qP+s7kGVf07QngxyG0gS8sYFvFWhqlgzOsSy+m71aUejf/0akxj5W7gE//2G74qTv6b4iMog=="; 45193 + url = "https://registry.npmjs.org/p-memoize/-/p-memoize-4.0.2.tgz"; 45194 + sha512 = "REJQ6EIeFmvT9O/u0H/ZVWjRII/1/0GhckleQX0yn+Uk9EdXTtmfnrfa3FwF8ZUrfUEe8NInvlRa0ZBKlMxxTA=="; 45078 45195 }; 45079 45196 }; 45080 45197 "p-pipe-3.1.0" = { ··· 45374 45491 sha1 = "ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac"; 45375 45492 }; 45376 45493 }; 45377 - "paid-services-2.0.1" = { 45494 + "paid-services-3.0.0" = { 45378 45495 name = "paid-services"; 45379 45496 packageName = "paid-services"; 45380 - version = "2.0.1"; 45497 + version = "3.0.0"; 45381 45498 src = fetchurl { 45382 - url = "https://registry.npmjs.org/paid-services/-/paid-services-2.0.1.tgz"; 45383 - sha512 = "zbXKJneBdfu6gnl/H4ahUHPN7gyV2dO0kkz6U7sMm+VmWjPyJgRqpykbAE32YohJtcJCCmgHZf88cSMhRL9jpQ=="; 45499 + url = "https://registry.npmjs.org/paid-services/-/paid-services-3.0.0.tgz"; 45500 + sha512 = "BOsSlfeMeNjZRcs9FmDx+Z2UKjhOe32oH4ZywCiZgCvd6OFVL8ZQ2LLr6g+vzEpHWp44/AuPR7UtVtVIKrFlTg=="; 45384 45501 }; 45385 45502 }; 45386 45503 "pako-0.2.9" = { ··· 46616 46733 sha512 = "drPtqkkSf0ufx2gaea3TryFiBHdNIdXKf5LN0hTM82SXI4xVIve2wLwNg92e1MT6m3jASLu6VO7eGY6+mmGeyw=="; 46617 46734 }; 46618 46735 }; 46619 - "pino-6.13.0" = { 46736 + "pino-6.13.2" = { 46620 46737 name = "pino"; 46621 46738 packageName = "pino"; 46622 - version = "6.13.0"; 46739 + version = "6.13.2"; 46623 46740 src = fetchurl { 46624 - url = "https://registry.npmjs.org/pino/-/pino-6.13.0.tgz"; 46625 - sha512 = "mRXSTfa34tbfrWqCIp1sUpZLqBhcoaGapoyxfEwaWwJGMpLijlRdDKIQUyvq4M3DUfFH5vEglwSw8POZYwbThA=="; 46741 + url = "https://registry.npmjs.org/pino/-/pino-6.13.2.tgz"; 46742 + sha512 = "vmD/cabJ4xKqo9GVuAoAEeQhra8XJ7YydPV/JyIP+0zDtFTu5JSKdtt8eksGVWKtTSrNGcRrzJ4/IzvUWep3FA=="; 46626 46743 }; 46627 46744 }; 46628 46745 "pino-std-serializers-3.2.0" = { ··· 46715 46832 sha512 = "NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA=="; 46716 46833 }; 46717 46834 }; 46718 - "pkg-fetch-3.2.2" = { 46835 + "pkg-fetch-3.2.3" = { 46719 46836 name = "pkg-fetch"; 46720 46837 packageName = "pkg-fetch"; 46721 - version = "3.2.2"; 46838 + version = "3.2.3"; 46722 46839 src = fetchurl { 46723 - url = "https://registry.npmjs.org/pkg-fetch/-/pkg-fetch-3.2.2.tgz"; 46724 - sha512 = "bLhFNT4cNnONxzbHo1H2mCCKuQkCR4dgQtv0gUZnWtp8TDP0v0UAXKHG7DXhAoTC5IYP3slLsFJtIda9ksny8g=="; 46840 + url = "https://registry.npmjs.org/pkg-fetch/-/pkg-fetch-3.2.3.tgz"; 46841 + sha512 = "bv9vYANgAZ2Lvxn5Dsq7E0rLqzcqYkV4gnwe2f7oHV9N4SVMfDOIjjFCRuuTltop5EmsOcu7XkQpB5A/pIgC1g=="; 46725 46842 }; 46726 46843 }; 46727 46844 "pkg-up-2.0.0" = { ··· 47913 48030 sha512 = "7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg=="; 47914 48031 }; 47915 48032 }; 47916 - "prettier-2.3.0" = { 48033 + "prettier-2.3.2" = { 47917 48034 name = "prettier"; 47918 48035 packageName = "prettier"; 47919 - version = "2.3.0"; 48036 + version = "2.3.2"; 47920 48037 src = fetchurl { 47921 - url = "https://registry.npmjs.org/prettier/-/prettier-2.3.0.tgz"; 47922 - sha512 = "kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w=="; 48038 + url = "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz"; 48039 + sha512 = "lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ=="; 47923 48040 }; 47924 48041 }; 47925 - "prettier-2.4.0" = { 48042 + "prettier-2.4.1" = { 47926 48043 name = "prettier"; 47927 48044 packageName = "prettier"; 47928 - version = "2.4.0"; 48045 + version = "2.4.1"; 47929 48046 src = fetchurl { 47930 - url = "https://registry.npmjs.org/prettier/-/prettier-2.4.0.tgz"; 47931 - sha512 = "DsEPLY1dE5HF3BxCRBmD4uYZ+5DCbvatnolqTqcxEgKVZnL2kUfyu7b8pPQ5+hTBkdhU9SLUmK0/pHb07RE4WQ=="; 48047 + url = "https://registry.npmjs.org/prettier/-/prettier-2.4.1.tgz"; 48048 + sha512 = "9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA=="; 47932 48049 }; 47933 48050 }; 47934 48051 "prettier-bytes-1.0.4" = { ··· 47958 48075 sha512 = "2UzApPuxi2yRoyMlXMazgR6UcH9DKJhNgCviIwY3ixZ9THWSSrUww5vkiZ3C48WvpFl1M1y/oU63deSy1puWEA=="; 47959 48076 }; 47960 48077 }; 47961 - "prettier-plugin-svelte-2.3.1" = { 48078 + "prettier-plugin-svelte-2.4.0" = { 47962 48079 name = "prettier-plugin-svelte"; 47963 48080 packageName = "prettier-plugin-svelte"; 47964 - version = "2.3.1"; 48081 + version = "2.4.0"; 47965 48082 src = fetchurl { 47966 - url = "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-2.3.1.tgz"; 47967 - sha512 = "F1/r6OYoBq8Zgurhs1MN25tdrhPw0JW5JjioPRqpxbYdmrZ3gY/DzHGs0B6zwd4DLyRsfGB2gqhxUCbHt/D1fw=="; 48083 + url = "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-2.4.0.tgz"; 48084 + sha512 = "JwJ9bOz4XHLQtiLnX4mTSSDUdhu12WH8sTwy/XTDCSyPlah6IcV7NWeYBZscPEcceu2YnW8Y9sJCP40Z2UH9GA=="; 47968 48085 }; 47969 48086 }; 47970 48087 "prettier-stylelint-0.4.2" = { ··· 48138 48255 sha512 = "dG2w7WtovUa4SiYTdWn9H8Bd4JNdei2djtkP/Bk9fXq81j5Q15ZPHYSwhUVvBRbp5zMkGtu0Yk62HuMcly0pRw=="; 48139 48256 }; 48140 48257 }; 48141 - "prismjs-1.24.1" = { 48258 + "prismjs-1.25.0" = { 48142 48259 name = "prismjs"; 48143 48260 packageName = "prismjs"; 48144 - version = "1.24.1"; 48261 + version = "1.25.0"; 48145 48262 src = fetchurl { 48146 - url = "https://registry.npmjs.org/prismjs/-/prismjs-1.24.1.tgz"; 48147 - sha512 = "mNPsedLuk90RVJioIky8ANZEwYm5w9LcvCXrxHlwf4fNVSn8jEipMybMkWUyyF0JhnC+C4VcOVSBuHRKs1L5Ow=="; 48263 + url = "https://registry.npmjs.org/prismjs/-/prismjs-1.25.0.tgz"; 48264 + sha512 = "WCjJHl1KEWbnkQom1+SzftbtXMKQoezOCYs5rECqMN+jP+apI7ftoflyqigqzopSO3hMhTEb0mFClA8lkolgEg=="; 48148 48265 }; 48149 48266 }; 48150 48267 "private-0.1.8" = { ··· 48253 48370 src = fetchurl { 48254 48371 url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 48255 48372 sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 48256 - }; 48257 - }; 48258 - "process-utils-2.6.0" = { 48259 - name = "process-utils"; 48260 - packageName = "process-utils"; 48261 - version = "2.6.0"; 48262 - src = fetchurl { 48263 - url = "https://registry.npmjs.org/process-utils/-/process-utils-2.6.0.tgz"; 48264 - sha512 = "2zKFADQDvHiUDyJQTsBTdu1+Q2D/WtReBotZwXmD9oUueb0kNv4rXulK/78hMM+nclBNFZ/ZlHOJtobt8oHpqQ=="; 48265 48373 }; 48266 48374 }; 48267 48375 "process-utils-4.0.0" = { ··· 48579 48687 sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849"; 48580 48688 }; 48581 48689 }; 48582 - "proto3-json-serializer-0.1.3" = { 48690 + "proto3-json-serializer-0.1.4" = { 48583 48691 name = "proto3-json-serializer"; 48584 48692 packageName = "proto3-json-serializer"; 48585 - version = "0.1.3"; 48693 + version = "0.1.4"; 48586 48694 src = fetchurl { 48587 - url = "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-0.1.3.tgz"; 48588 - sha512 = "X0DAtxCBsy1NDn84huVFGOFgBslT2gBmM+85nY6/5SOAaCon1jzVNdvi74foIyFvs5CjtSbQsepsM5TsyNhqQw=="; 48695 + url = "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-0.1.4.tgz"; 48696 + sha512 = "bFzdsKU/zaTobWrRxRniMZIzzcgKYlmBWL1gAcTXZ2M7TQTGPI0JoYYs6bN7tpWj59ZCfwg7Ii/A2e8BbQGYnQ=="; 48589 48697 }; 48590 48698 }; 48591 48699 "protobufjs-3.8.2" = { ··· 48624 48732 sha512 = "5aFshI9SbhtcMiDiZZu3g2tMlZeS5lhni//AGJ7V34PQLU5JA91Cva7TIs6inZhYikS3OpnUzAUuL6YtS0CyDA=="; 48625 48733 }; 48626 48734 }; 48627 - "protocol-buffers-schema-3.5.2" = { 48735 + "protocol-buffers-schema-3.6.0" = { 48628 48736 name = "protocol-buffers-schema"; 48629 48737 packageName = "protocol-buffers-schema"; 48630 - version = "3.5.2"; 48738 + version = "3.6.0"; 48631 48739 src = fetchurl { 48632 - url = "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.5.2.tgz"; 48633 - sha512 = "LPzSaBYp/TcbuSlpGwqT5jR9kvJ3Zp5ic2N5c2ybx6XB/lSfEHq2D7ja8AgoxHoMD91wXFALJoXsvshKPuXyew=="; 48740 + url = "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz"; 48741 + sha512 = "TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw=="; 48634 48742 }; 48635 48743 }; 48636 48744 "protocols-1.4.8" = { ··· 49641 49749 sha512 = "l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A=="; 49642 49750 }; 49643 49751 }; 49644 - "puppeteer-10.2.0" = { 49752 + "puppeteer-10.4.0" = { 49645 49753 name = "puppeteer"; 49646 49754 packageName = "puppeteer"; 49647 - version = "10.2.0"; 49755 + version = "10.4.0"; 49648 49756 src = fetchurl { 49649 - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-10.2.0.tgz"; 49650 - sha512 = "OR2CCHRashF+f30+LBOtAjK6sNtz2HEyTr5FqAvhf8lR/qB3uBRoIZOwQKgwoyZnMBsxX7ZdazlyBgGjpnkiMw=="; 49757 + url = "https://registry.npmjs.org/puppeteer/-/puppeteer-10.4.0.tgz"; 49758 + sha512 = "2cP8mBoqnu5gzAVpbZ0fRaobBWZM8GEUF4I1F6WbgHrKV/rz7SX8PG2wMymZgD0wo0UBlg2FBPNxlF/xlqW6+w=="; 49651 49759 }; 49652 49760 }; 49653 49761 "puppeteer-9.1.1" = { ··· 49657 49765 src = fetchurl { 49658 49766 url = "https://registry.npmjs.org/puppeteer/-/puppeteer-9.1.1.tgz"; 49659 49767 sha512 = "W+nOulP2tYd/ZG99WuZC/I5ljjQQ7EUw/jQGcIb9eu8mDlZxNY2SgcJXTLG9h5gRvqA3uJOe4hZXYsd3EqioMw=="; 49768 + }; 49769 + }; 49770 + "purescript-0.14.4" = { 49771 + name = "purescript"; 49772 + packageName = "purescript"; 49773 + version = "0.14.4"; 49774 + src = fetchurl { 49775 + url = "https://registry.npmjs.org/purescript/-/purescript-0.14.4.tgz"; 49776 + sha512 = "9Lq2qvyVkQoKUBSNOEBKIJjtD5sDwThurSt3SRdtSseaA03p1Fk7VxbUr9HV/gHLVZPIkOhPtjvZGUNs5U2PDA=="; 49777 + }; 49778 + }; 49779 + "purescript-installer-0.2.5" = { 49780 + name = "purescript-installer"; 49781 + packageName = "purescript-installer"; 49782 + version = "0.2.5"; 49783 + src = fetchurl { 49784 + url = "https://registry.npmjs.org/purescript-installer/-/purescript-installer-0.2.5.tgz"; 49785 + sha512 = "fQAWWP5a7scuchXecjpU4r4KEgSPuS6bBnaP01k9f71qqD28HaJ2m4PXHFkhkR4oATAxTPIGCtmTwtVoiBOHog=="; 49660 49786 }; 49661 49787 }; 49662 49788 "purgecss-2.3.0" = { ··· 49704 49830 sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7"; 49705 49831 }; 49706 49832 }; 49707 - "pyright-1.1.166" = { 49833 + "pyright-1.1.170" = { 49708 49834 name = "pyright"; 49709 49835 packageName = "pyright"; 49710 - version = "1.1.166"; 49836 + version = "1.1.170"; 49711 49837 src = fetchurl { 49712 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.166.tgz"; 49713 - sha512 = "mO+iPT2dhHzlplAV3iKE6u4gUstGZxxLyMSRd1PKZqWhwhTCCGjn3/7VqbAwUt4fuhY8g0V+SAsu+MPT4H3FvQ=="; 49838 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.170.tgz"; 49839 + sha512 = "eoLp3FXvB+qGw6DMaC9xCNkIZMzdPMl5yERUXv1U/RF8AIuOcfjmG1171UL/TpXvoCLWGVArkWJcq8l5uBB35Q=="; 49714 49840 }; 49715 49841 }; 49716 49842 "q-0.9.7" = { ··· 50001 50127 sha512 = "ULWhjjE8BmiICGn3G8+1L9wFpERNxkf8ysxkAer4+TFdRefDaXOCV5m92aMB9FtBVmn/8sETXLXY6BfW7hyaWQ=="; 50002 50128 }; 50003 50129 }; 50004 - "quick-format-unescaped-4.0.3" = { 50130 + "quick-format-unescaped-4.0.4" = { 50005 50131 name = "quick-format-unescaped"; 50006 50132 packageName = "quick-format-unescaped"; 50007 - version = "4.0.3"; 50133 + version = "4.0.4"; 50008 50134 src = fetchurl { 50009 - url = "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.3.tgz"; 50010 - sha512 = "MaL/oqh02mhEo5m5J2rwsVL23Iw2PEaGVHgT2vFt8AAsr0lfvQA5dpXo9TPu0rz7tSBdUPgkbam0j/fj5ZM8yg=="; 50135 + url = "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz"; 50136 + sha512 = "tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg=="; 50011 50137 }; 50012 50138 }; 50013 50139 "quick-lru-1.1.0" = { ··· 51180 51306 sha512 = "nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg=="; 51181 51307 }; 51182 51308 }; 51309 + "recursive-readdir-sync-1.0.6" = { 51310 + name = "recursive-readdir-sync"; 51311 + packageName = "recursive-readdir-sync"; 51312 + version = "1.0.6"; 51313 + src = fetchurl { 51314 + url = "https://registry.npmjs.org/recursive-readdir-sync/-/recursive-readdir-sync-1.0.6.tgz"; 51315 + sha1 = "1dbf6d32f3c5bb8d3cde97a6c588d547a9e13d56"; 51316 + }; 51317 + }; 51183 51318 "recursive-watch-1.1.4" = { 51184 51319 name = "recursive-watch"; 51185 51320 packageName = "recursive-watch"; ··· 51342 51477 sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="; 51343 51478 }; 51344 51479 }; 51345 - "regenerate-unicode-properties-8.2.0" = { 51480 + "regenerate-unicode-properties-9.0.0" = { 51346 51481 name = "regenerate-unicode-properties"; 51347 51482 packageName = "regenerate-unicode-properties"; 51348 - version = "8.2.0"; 51483 + version = "9.0.0"; 51349 51484 src = fetchurl { 51350 - url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz"; 51351 - sha512 = "F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA=="; 51485 + url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz"; 51486 + sha512 = "3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA=="; 51352 51487 }; 51353 51488 }; 51354 51489 "regenerator-runtime-0.10.5" = { ··· 51450 51585 sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; 51451 51586 }; 51452 51587 }; 51453 - "regexpu-core-4.7.1" = { 51588 + "regexpu-core-4.8.0" = { 51454 51589 name = "regexpu-core"; 51455 51590 packageName = "regexpu-core"; 51456 - version = "4.7.1"; 51591 + version = "4.8.0"; 51457 51592 src = fetchurl { 51458 - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz"; 51459 - sha512 = "ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ=="; 51593 + url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz"; 51594 + sha512 = "1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg=="; 51460 51595 }; 51461 51596 }; 51462 51597 "register-protocol-win32-1.1.0" = { ··· 51522 51657 sha512 = "OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A=="; 51523 51658 }; 51524 51659 }; 51525 - "regjsparser-0.6.9" = { 51660 + "regjsparser-0.7.0" = { 51526 51661 name = "regjsparser"; 51527 51662 packageName = "regjsparser"; 51528 - version = "0.6.9"; 51663 + version = "0.7.0"; 51529 51664 src = fetchurl { 51530 - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz"; 51531 - sha512 = "ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ=="; 51665 + url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz"; 51666 + sha512 = "A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ=="; 51532 51667 }; 51533 51668 }; 51534 51669 "rehype-parse-6.0.2" = { ··· 52440 52575 sha1 = "6c1711a5407fb94a114219563e44145bcbf4723a"; 52441 52576 }; 52442 52577 }; 52578 + "request-as-curl-0.1.0" = { 52579 + name = "request-as-curl"; 52580 + packageName = "request-as-curl"; 52581 + version = "0.1.0"; 52582 + src = fetchurl { 52583 + url = "https://registry.npmjs.org/request-as-curl/-/request-as-curl-0.1.0.tgz"; 52584 + sha1 = "f017ac5b2060e1c4fc9677575c381a08249d5bf7"; 52585 + }; 52586 + }; 52443 52587 "request-light-0.2.5" = { 52444 52588 name = "request-light"; 52445 52589 packageName = "request-light"; ··· 53808 53952 sha1 = "478be1429500fcfaa780be88b3343ced7d2a9182"; 53809 53953 }; 53810 53954 }; 53811 - "sass-1.39.0" = { 53955 + "sass-1.42.0" = { 53812 53956 name = "sass"; 53813 53957 packageName = "sass"; 53814 - version = "1.39.0"; 53958 + version = "1.42.0"; 53815 53959 src = fetchurl { 53816 - url = "https://registry.npmjs.org/sass/-/sass-1.39.0.tgz"; 53817 - sha512 = "F4o+RhJkNOIG0b6QudYU8c78ZADKZjKDk5cyrf8XTKWfrgbtyVVXImFstJrc+1pkQDCggyidIOytq6gS4gCCZg=="; 53960 + url = "https://registry.npmjs.org/sass/-/sass-1.42.0.tgz"; 53961 + sha512 = "kcjxsemgaOnfl43oZgO/IePLvXQI0ZKzo0/xbCt6uyrg3FY/FF8hVK9YoO8GiZBcEG2Ebl79EKnUc+aiE4f2Vw=="; 53818 53962 }; 53819 53963 }; 53820 53964 "sax-0.5.8" = { ··· 54456 54600 sha1 = "f13bf928e42b9c3e79383e61cc3998b5d14e6cdd"; 54457 54601 }; 54458 54602 }; 54459 - "service-runner-2.8.4" = { 54603 + "service-runner-2.9.0" = { 54460 54604 name = "service-runner"; 54461 54605 packageName = "service-runner"; 54462 - version = "2.8.4"; 54606 + version = "2.9.0"; 54463 54607 src = fetchurl { 54464 - url = "https://registry.npmjs.org/service-runner/-/service-runner-2.8.4.tgz"; 54465 - sha512 = "x190eUDdtwmstQluk10aeA89gw0uTtm8OFzlXO6oMgv5MoCcp1PedNI1aCVsQoBHfiraExKhokvEZoxl6xTfQw=="; 54608 + url = "https://registry.npmjs.org/service-runner/-/service-runner-2.9.0.tgz"; 54609 + sha512 = "u5yFOwfPAaLo9oqbTWq0F02C3R/sohTbX5zqxWfoYe1bS3OpEyJsTGoRE5CGHum/RZcazxFpaVCrE+fIUvg3qA=="; 54466 54610 }; 54467 54611 }; 54468 54612 "set-blocking-1.0.0" = { ··· 54879 55023 sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590"; 54880 55024 }; 54881 55025 }; 54882 - "sign-addon-3.7.0" = { 55026 + "sign-addon-3.8.0" = { 54883 55027 name = "sign-addon"; 54884 55028 packageName = "sign-addon"; 54885 - version = "3.7.0"; 55029 + version = "3.8.0"; 54886 55030 src = fetchurl { 54887 - url = "https://registry.npmjs.org/sign-addon/-/sign-addon-3.7.0.tgz"; 54888 - sha512 = "XPLjMCcGuP5pPJSXpqFwKguIKxcteOx6dE1Bm2j92Brsro6pZYcklOpv4ohfRNW1UQp0J2cdi9zN2oNF4lMiRg=="; 55031 + url = "https://registry.npmjs.org/sign-addon/-/sign-addon-3.8.0.tgz"; 55032 + sha512 = "/KVjGIMGN/8nbSTzpq3orQzYs4YhlYOZF8OkZuG8TSIBns8sUR2vlUNvcgvJPGdpNJkrlienwFDsO1UkbDij1w=="; 54889 55033 }; 54890 55034 }; 54891 - "signal-exit-3.0.3" = { 55035 + "signal-exit-3.0.4" = { 54892 55036 name = "signal-exit"; 54893 55037 packageName = "signal-exit"; 54894 - version = "3.0.3"; 55038 + version = "3.0.4"; 54895 55039 src = fetchurl { 54896 - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz"; 54897 - sha512 = "VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="; 55040 + url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.4.tgz"; 55041 + sha512 = "rqYhcAnZ6d/vTPGghdrw7iumdcbXpsk1b8IG/rz+VWV51DM0p7XCtMoJ3qhPLIbp3tvyt3pKRbaaEMZYpHto8Q=="; 54898 55042 }; 54899 55043 }; 54900 55044 "signals-1.0.0" = { ··· 55644 55788 sha512 = "vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ=="; 55645 55789 }; 55646 55790 }; 55647 - "socks-proxy-agent-6.0.0" = { 55791 + "socks-proxy-agent-6.1.0" = { 55648 55792 name = "socks-proxy-agent"; 55649 55793 packageName = "socks-proxy-agent"; 55650 - version = "6.0.0"; 55794 + version = "6.1.0"; 55651 55795 src = fetchurl { 55652 - url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.0.0.tgz"; 55653 - sha512 = "FIgZbQWlnjVEQvMkylz64/rUggGtrKstPnx8OZyYFG0tAFR8CSBtpXxSwbFLHyeXFn/cunFL7MpuSOvDSOPo9g=="; 55796 + url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.0.tgz"; 55797 + sha512 = "57e7lwCN4Tzt3mXz25VxOErJKXlPfXmkMLnk310v/jwW20jWRVcgsOit+xNkN3eIEdB47GwnfAEBLacZ/wVIKg=="; 55654 55798 }; 55655 55799 }; 55656 55800 "socks5-client-1.2.8" = { ··· 56022 56166 sha512 = "q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA=="; 56023 56167 }; 56024 56168 }; 56169 + "spago-0.20.3" = { 56170 + name = "spago"; 56171 + packageName = "spago"; 56172 + version = "0.20.3"; 56173 + src = fetchurl { 56174 + url = "https://registry.npmjs.org/spago/-/spago-0.20.3.tgz"; 56175 + sha512 = "R4CWLP5IbaWoNIpS1QAUuDK2LKlKYqT5gBKVZL7ILilvCwdwS72u3NbGZbvx7VCRRZz4lG7zXUkqKNow7zh6wQ=="; 56176 + }; 56177 + }; 56025 56178 "spark-md5-1.0.1" = { 56026 56179 name = "spark-md5"; 56027 56180 packageName = "spark-md5"; ··· 56508 56661 sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung=="; 56509 56662 }; 56510 56663 }; 56511 - "ssb-db2-2.4.0" = { 56664 + "ssb-db2-2.5.2" = { 56512 56665 name = "ssb-db2"; 56513 56666 packageName = "ssb-db2"; 56514 - version = "2.4.0"; 56667 + version = "2.5.2"; 56515 56668 src = fetchurl { 56516 - url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.4.0.tgz"; 56517 - sha512 = "UMd6XqBGTHBNPduyEc0ynO+lkCn/8/NTedzDz9XRYQsqk4ed2Js0cWhqeREv0Bz+upfCMmPQBBHASPBw47XTOA=="; 56669 + url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.5.2.tgz"; 56670 + sha512 = "S0eTxwG2BrjZRQsLG/7DfFW5KsFQRuamj+1sUTkneKAEixOnCrK/oQQV//w+EQHrhIVuMUMUgbpzzT0LByjtoQ=="; 56518 56671 }; 56519 56672 }; 56520 56673 "ssb-ebt-5.6.7" = { ··· 56814 56967 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 56815 56968 }; 56816 56969 }; 56817 - "sscaff-1.2.63" = { 56970 + "sscaff-1.2.72" = { 56818 56971 name = "sscaff"; 56819 56972 packageName = "sscaff"; 56820 - version = "1.2.63"; 56973 + version = "1.2.72"; 56821 56974 src = fetchurl { 56822 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.63.tgz"; 56823 - sha512 = "7T/JlrjNIc7kD+3mBvfE3JEpOAV0qstAEbCy3WOrMHWcgROAOESA9llkqQPcDQZB9bRV8JLqQIAgqVtpwljFOw=="; 56975 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.72.tgz"; 56976 + sha512 = "+EVS+sM+3xDVFc7jIb8A44vnExYtpdfCRkPzCKFomGJXFuDoo52Dg3eIu9S6ueNSm2BLc9SM15/MGRpCtiXJYw=="; 56824 56977 }; 56825 56978 }; 56826 56979 "ssh-config-1.1.6" = { ··· 56940 57093 sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0"; 56941 57094 }; 56942 57095 }; 56943 - "stack-utils-2.0.3" = { 57096 + "stack-utils-2.0.5" = { 56944 57097 name = "stack-utils"; 56945 57098 packageName = "stack-utils"; 56946 - version = "2.0.3"; 57099 + version = "2.0.5"; 56947 57100 src = fetchurl { 56948 - url = "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz"; 56949 - sha512 = "gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw=="; 57101 + url = "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz"; 57102 + sha512 = "xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA=="; 56950 57103 }; 56951 57104 }; 56952 57105 "stackblur-canvas-2.5.0" = { ··· 57010 57163 src = fetchurl { 57011 57164 url = "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz"; 57012 57165 sha512 = "d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ=="; 57166 + }; 57167 + }; 57168 + "static-eval-2.0.2" = { 57169 + name = "static-eval"; 57170 + packageName = "static-eval"; 57171 + version = "2.0.2"; 57172 + src = fetchurl { 57173 + url = "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz"; 57174 + sha512 = "N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg=="; 57013 57175 }; 57014 57176 }; 57015 57177 "static-eval-2.1.0" = { ··· 57831 57993 sha512 = "AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w=="; 57832 57994 }; 57833 57995 }; 57834 - "strip-ansi-7.0.0" = { 57996 + "strip-ansi-7.0.1" = { 57835 57997 name = "strip-ansi"; 57836 57998 packageName = "strip-ansi"; 57837 - version = "7.0.0"; 57999 + version = "7.0.1"; 57838 58000 src = fetchurl { 57839 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.0.tgz"; 57840 - sha512 = "UhDTSnGF1dc0DRbUqr1aXwNoY3RgVkSWG8BrpnuFIxhP57IqbS7IRta2Gfiavds4yCxc5+fEAVVOgBZWnYkvzg=="; 58001 + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz"; 58002 + sha512 = "cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw=="; 57841 58003 }; 57842 58004 }; 57843 58005 "strip-ansi-control-characters-2.0.0" = { ··· 58488 58650 sha512 = "mDAmaltQl6e5zU2VEtoWEf7eLTfuOTGr9zt+BpA3AGHo8MIhKiNSPE9OLTCTOMgj0vj/uL9QBbaNmpG4G1CgIA=="; 58489 58651 }; 58490 58652 }; 58491 - "svelte-preprocess-4.9.4" = { 58653 + "svelte-preprocess-4.9.5" = { 58492 58654 name = "svelte-preprocess"; 58493 58655 packageName = "svelte-preprocess"; 58494 - version = "4.9.4"; 58656 + version = "4.9.5"; 58495 58657 src = fetchurl { 58496 - url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.9.4.tgz"; 58497 - sha512 = "Z0mUQBGtE+ZZSv/HerRSHe7ukJokxjiPeHe7iPOIXseEoRw51H3K/Vh6OMIMstetzZ11vWO9rCsXSD/uUUArmA=="; 58658 + url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.9.5.tgz"; 58659 + sha512 = "RbJbtuwKbuZq9RyzlljZUmmFNaojrg/zUEyDrS8io7haTcuITQmE4NERx8qiqHreApo6cQst5Qtp4MxUwr58Ew=="; 58498 58660 }; 58499 58661 }; 58500 - "svelte2tsx-0.4.5" = { 58662 + "svelte2tsx-0.4.6" = { 58501 58663 name = "svelte2tsx"; 58502 58664 packageName = "svelte2tsx"; 58503 - version = "0.4.5"; 58665 + version = "0.4.6"; 58504 58666 src = fetchurl { 58505 - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.4.5.tgz"; 58506 - sha512 = "5SbnH3rGA5eymeSidlPZ3qxL0P6SfJv0pWaoTVuJDxpHbI00dUZpuDTNn/WZ8yMXfU7vjY/QxKC/iYiDTbJEjg=="; 58667 + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.4.6.tgz"; 58668 + sha512 = "flljgh/MbJDijo6Z1HhCfyzdRgn1Nd7QTuuxk9Oq5CzyBXZl/NJYh4otZZwUHnx5poy8k7Oxr2CBE3IBh89tmQ=="; 58507 58669 }; 58508 58670 }; 58509 58671 "sver-compat-1.5.0" = { ··· 58785 58947 sha512 = "33+lQwlLxXoxy0o9WLOgw8OjbXeS3Jv+pSl+nxKc2AOClBI28HsdRPpH0u9Xa9OVjHLT9vonnOMw1ug7YXI0dA=="; 58786 58948 }; 58787 58949 }; 58788 - "systeminformation-5.8.7" = { 58950 + "systeminformation-5.9.3" = { 58789 58951 name = "systeminformation"; 58790 58952 packageName = "systeminformation"; 58791 - version = "5.8.7"; 58953 + version = "5.9.3"; 58792 58954 src = fetchurl { 58793 - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.8.7.tgz"; 58794 - sha512 = "e7b47PXn+GvPHLZm7FxC+IgPs5lqqsrmw7xtdxrr0U8aivYZO6V3CawMqCy5bfGB/ghZh/7AWlJEoXUPLyH3iw=="; 58955 + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.9.3.tgz"; 58956 + sha512 = "FmifqCPDU5uJZeORt1jCiATBTHwpX7luDzeFo8lojYbEiJk6oR3mtAZBOayCo3iEmgSILzmbcO855OXPHCeU+g=="; 58795 58957 }; 58796 58958 }; 58797 58959 "table-3.8.3" = { ··· 58939 59101 sha512 = "4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA=="; 58940 59102 }; 58941 59103 }; 58942 - "tapable-2.2.0" = { 59104 + "tapable-2.2.1" = { 58943 59105 name = "tapable"; 58944 59106 packageName = "tapable"; 58945 - version = "2.2.0"; 59107 + version = "2.2.1"; 58946 59108 src = fetchurl { 58947 - url = "https://registry.npmjs.org/tapable/-/tapable-2.2.0.tgz"; 58948 - sha512 = "FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw=="; 59109 + url = "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz"; 59110 + sha512 = "GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ=="; 58949 59111 }; 58950 59112 }; 58951 59113 "tape-2.3.3" = { ··· 59128 59290 sha512 = "6u5UyW2KpMS/hwC4DKLGlicK/rVSYCahPFgF14ioP6BzwcDwQlciHCB/oWguvxLJaYGrvY6crzLHfjupFTBPXw=="; 59129 59291 }; 59130 59292 }; 59131 - "telegraf-4.4.1" = { 59293 + "telegraf-4.4.2" = { 59132 59294 name = "telegraf"; 59133 59295 packageName = "telegraf"; 59134 - version = "4.4.1"; 59296 + version = "4.4.2"; 59135 59297 src = fetchurl { 59136 - url = "https://registry.npmjs.org/telegraf/-/telegraf-4.4.1.tgz"; 59137 - sha512 = "jxV8fC/K6abcUTlhy/l8txJAmEJIkJoDu/cN0yXOJWLp9csfLIp+cD4qlwJ6ko+4EgOJmNZvWK7Tr2dxKolJQQ=="; 59298 + url = "https://registry.npmjs.org/telegraf/-/telegraf-4.4.2.tgz"; 59299 + sha512 = "OGt9w1LbxYUOsRk3htAavBnL9hqWycmJNiOmS74oARzxKFnYS/MdwW8b5CX9VLCJt537AXkm8/eBNiEYD8E7lQ=="; 59138 59300 }; 59139 59301 }; 59140 59302 "temp-0.6.0" = { ··· 59335 59497 sha512 = "EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw=="; 59336 59498 }; 59337 59499 }; 59338 - "terser-5.7.2" = { 59500 + "terser-5.9.0" = { 59339 59501 name = "terser"; 59340 59502 packageName = "terser"; 59341 - version = "5.7.2"; 59503 + version = "5.9.0"; 59342 59504 src = fetchurl { 59343 - url = "https://registry.npmjs.org/terser/-/terser-5.7.2.tgz"; 59344 - sha512 = "0Omye+RD4X7X69O0eql3lC4Heh/5iLj3ggxR/B5ketZLOtLiOqukUgjw3q4PDnNQbsrkKr3UMypqStQG3XKRvw=="; 59505 + url = "https://registry.npmjs.org/terser/-/terser-5.9.0.tgz"; 59506 + sha512 = "h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ=="; 59345 59507 }; 59346 59508 }; 59347 59509 "terser-webpack-plugin-1.4.5" = { ··· 60487 60649 sha512 = "L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A=="; 60488 60650 }; 60489 60651 }; 60490 - "tree-kit-0.7.1" = { 60652 + "tree-kit-0.7.3" = { 60491 60653 name = "tree-kit"; 60492 60654 packageName = "tree-kit"; 60493 - version = "0.7.1"; 60655 + version = "0.7.3"; 60494 60656 src = fetchurl { 60495 - url = "https://registry.npmjs.org/tree-kit/-/tree-kit-0.7.1.tgz"; 60496 - sha512 = "7v5c7ipKxUBR0J3P+WCGg6WqbFV/2glYmTuibgQtyna1DaNJk5mSM3oxPC2AZ/xQN1dTbFWvih4aSbwSBDfx4Q=="; 60657 + url = "https://registry.npmjs.org/tree-kit/-/tree-kit-0.7.3.tgz"; 60658 + sha512 = "BVxfUGNHKXS6TEOwKHioWSBivg6b5zfbdXtOWEE5ZpgQxG6gPtvFvjnsoKXTp2ASFmzSe6PhXemutmx8zUxFQQ=="; 60497 60659 }; 60498 60660 }; 60499 60661 "tree-sitter-0.17.2" = { ··· 60667 60829 sha512 = "uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA=="; 60668 60830 }; 60669 60831 }; 60670 - "ts-invariant-0.9.1" = { 60832 + "ts-invariant-0.9.3" = { 60671 60833 name = "ts-invariant"; 60672 60834 packageName = "ts-invariant"; 60673 - version = "0.9.1"; 60835 + version = "0.9.3"; 60674 60836 src = fetchurl { 60675 - url = "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.9.1.tgz"; 60676 - sha512 = "hSeYibh29ULlHkuEfukcoiyTct+s2RzczMLTv4x3NWC/YrBy7x7ps5eYq/b4Y3Sb9/uAlf54+/5CAEMVxPhuQw=="; 60837 + url = "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.9.3.tgz"; 60838 + sha512 = "HinBlTbFslQI0OHP07JLsSXPibSegec6r9ai5xxq/qHYCsIQbzpymLpDhAUsnXcSrDEcd0L62L8vsOEdzM0qlA=="; 60677 60839 }; 60678 60840 }; 60679 60841 "ts-loader-8.0.4" = { ··· 61351 61513 sha512 = "DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA=="; 61352 61514 }; 61353 61515 }; 61354 - "typescript-4.4.2" = { 61516 + "typescript-4.4.3" = { 61355 61517 name = "typescript"; 61356 61518 packageName = "typescript"; 61357 - version = "4.4.2"; 61519 + version = "4.4.3"; 61358 61520 src = fetchurl { 61359 - url = "https://registry.npmjs.org/typescript/-/typescript-4.4.2.tgz"; 61360 - sha512 = "gzP+t5W4hdy4c+68bfcv0t400HVJMMd2+H9B7gae1nQlBzCqvrXX+6GL/b3GAgyTH966pzrZ70/fRjwAtZksSQ=="; 61521 + url = "https://registry.npmjs.org/typescript/-/typescript-4.4.3.tgz"; 61522 + sha512 = "4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA=="; 61361 61523 }; 61362 61524 }; 61363 61525 "typescript-eslint-parser-16.0.1" = { ··· 61783 61945 sha512 = "Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ=="; 61784 61946 }; 61785 61947 }; 61786 - "unicode-canonical-property-names-ecmascript-1.0.4" = { 61948 + "unicode-canonical-property-names-ecmascript-2.0.0" = { 61787 61949 name = "unicode-canonical-property-names-ecmascript"; 61788 61950 packageName = "unicode-canonical-property-names-ecmascript"; 61789 - version = "1.0.4"; 61951 + version = "2.0.0"; 61790 61952 src = fetchurl { 61791 - url = "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz"; 61792 - sha512 = "jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ=="; 61953 + url = "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz"; 61954 + sha512 = "yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ=="; 61793 61955 }; 61794 61956 }; 61795 61957 "unicode-emoji-modifier-base-1.0.0" = { ··· 61801 61963 sha1 = "dbbd5b54ba30f287e2a8d5a249da6c0cef369459"; 61802 61964 }; 61803 61965 }; 61804 - "unicode-match-property-ecmascript-1.0.4" = { 61966 + "unicode-match-property-ecmascript-2.0.0" = { 61805 61967 name = "unicode-match-property-ecmascript"; 61806 61968 packageName = "unicode-match-property-ecmascript"; 61807 - version = "1.0.4"; 61969 + version = "2.0.0"; 61808 61970 src = fetchurl { 61809 - url = "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz"; 61810 - sha512 = "L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg=="; 61971 + url = "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz"; 61972 + sha512 = "5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q=="; 61811 61973 }; 61812 61974 }; 61813 - "unicode-match-property-value-ecmascript-1.2.0" = { 61975 + "unicode-match-property-value-ecmascript-2.0.0" = { 61814 61976 name = "unicode-match-property-value-ecmascript"; 61815 61977 packageName = "unicode-match-property-value-ecmascript"; 61816 - version = "1.2.0"; 61978 + version = "2.0.0"; 61817 61979 src = fetchurl { 61818 - url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz"; 61819 - sha512 = "wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ=="; 61980 + url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz"; 61981 + sha512 = "7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw=="; 61820 61982 }; 61821 61983 }; 61822 - "unicode-property-aliases-ecmascript-1.1.0" = { 61984 + "unicode-property-aliases-ecmascript-2.0.0" = { 61823 61985 name = "unicode-property-aliases-ecmascript"; 61824 61986 packageName = "unicode-property-aliases-ecmascript"; 61825 - version = "1.1.0"; 61987 + version = "2.0.0"; 61826 61988 src = fetchurl { 61827 - url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz"; 61828 - sha512 = "PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg=="; 61989 + url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz"; 61990 + sha512 = "5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ=="; 61829 61991 }; 61830 61992 }; 61831 61993 "unicode-trie-0.3.1" = { ··· 63728 63890 sha512 = "/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w=="; 63729 63891 }; 63730 63892 }; 63731 - "verda-1.3.2" = { 63893 + "verda-1.4.0" = { 63732 63894 name = "verda"; 63733 63895 packageName = "verda"; 63734 - version = "1.3.2"; 63896 + version = "1.4.0"; 63735 63897 src = fetchurl { 63736 - url = "https://registry.npmjs.org/verda/-/verda-1.3.2.tgz"; 63737 - sha512 = "uheYzfPZDvcyXX5nR/eAIB2jKtvbCPhmcEpbJESU7I3QykvIvZWozdb5MEdBAx9e6LyS6TqtBp6BwGBMTO7Xow=="; 63898 + url = "https://registry.npmjs.org/verda/-/verda-1.4.0.tgz"; 63899 + sha512 = "XzAxyH/99hE4B729ImVqv3TBYxDYwMsjVB8q4fIBOMtnsY9hvrT4xmiim9cRvwyKpCkF2uysyVbeMbFRqN3qgw=="; 63738 63900 }; 63739 63901 }; 63740 63902 "verror-1.1.0" = { ··· 64097 64259 sha1 = "614f7fbf8d801f0bb5f0661f5b2f5785750e4f09"; 64098 64260 }; 64099 64261 }; 64100 - "vsce-1.88.0" = { 64262 + "vsce-1.99.0" = { 64101 64263 name = "vsce"; 64102 64264 packageName = "vsce"; 64103 - version = "1.88.0"; 64265 + version = "1.99.0"; 64104 64266 src = fetchurl { 64105 - url = "https://registry.npmjs.org/vsce/-/vsce-1.88.0.tgz"; 64106 - sha512 = "FS5ou3G+WRnPPr/tWVs8b/jVzeDacgZHy/y7/QQW7maSPFEAmRt2bFGUJtJVEUDLBqtDm/3VGMJ7D31cF2U1tw=="; 64107 - }; 64108 - }; 64109 - "vsce-1.97.0" = { 64110 - name = "vsce"; 64111 - packageName = "vsce"; 64112 - version = "1.97.0"; 64113 - src = fetchurl { 64114 - url = "https://registry.npmjs.org/vsce/-/vsce-1.97.0.tgz"; 64115 - sha512 = "5Rxj6qO0dN4FnzVS9G94osstx8R3r1OQP39G7WYERpoO9X+OSodVVkRhFDapPNjekfUNo+d5Qn7W1EtNQVoLCg=="; 64267 + url = "https://registry.npmjs.org/vsce/-/vsce-1.99.0.tgz"; 64268 + sha512 = "fyzOLcmcgBmA+CYg0NyYU3JMmcOBcf94ZzZZYi83mIoXBRU391mYByoJEPnkl8xZGa3/OW5lH438/JOThlYPNA=="; 64116 64269 }; 64117 64270 }; 64118 64271 "vscode-css-languageservice-3.0.13" = { ··· 65060 65213 sha1 = "3bf8258f7d318c7443c36f2e169402a1a6703506"; 65061 65214 }; 65062 65215 }; 65216 + "webidl-conversions-3.0.1" = { 65217 + name = "webidl-conversions"; 65218 + packageName = "webidl-conversions"; 65219 + version = "3.0.1"; 65220 + src = fetchurl { 65221 + url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"; 65222 + sha1 = "24534275e2a7bc6be7bc86611cc16ae0a5654871"; 65223 + }; 65224 + }; 65063 65225 "webidl-conversions-4.0.2" = { 65064 65226 name = "webidl-conversions"; 65065 65227 packageName = "webidl-conversions"; ··· 65132 65294 sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ=="; 65133 65295 }; 65134 65296 }; 65135 - "webpack-5.52.0" = { 65297 + "webpack-5.53.0" = { 65136 65298 name = "webpack"; 65137 65299 packageName = "webpack"; 65138 - version = "5.52.0"; 65300 + version = "5.53.0"; 65139 65301 src = fetchurl { 65140 - url = "https://registry.npmjs.org/webpack/-/webpack-5.52.0.tgz"; 65141 - sha512 = "yRZOat8jWGwBwHpco3uKQhVU7HYaNunZiJ4AkAVQkPCUGoZk/tiIXiwG+8HIy/F+qsiZvSOa+GLQOj3q5RKRYg=="; 65302 + url = "https://registry.npmjs.org/webpack/-/webpack-5.53.0.tgz"; 65303 + sha512 = "RZ1Z3z3ni44snoWjfWeHFyzvd9HMVYDYC5VXmlYUT6NWgEOWdCNpad5Fve2CzzHoRED7WtsKe+FCyP5Vk4pWiQ=="; 65142 65304 }; 65143 65305 }; 65144 65306 "webpack-bundle-analyzer-3.9.0" = { ··· 65285 65447 sha512 = "y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA=="; 65286 65448 }; 65287 65449 }; 65288 - "webpack-sources-3.2.0" = { 65450 + "webpack-sources-3.2.1" = { 65289 65451 name = "webpack-sources"; 65290 65452 packageName = "webpack-sources"; 65291 - version = "3.2.0"; 65453 + version = "3.2.1"; 65292 65454 src = fetchurl { 65293 - url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.0.tgz"; 65294 - sha512 = "fahN08Et7P9trej8xz/Z7eRu8ltyiygEo/hnRi9KqBUs80KeDcnf96ZJo++ewWd84fEf3xSX9bp4ZS9hbw0OBw=="; 65455 + url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.1.tgz"; 65456 + sha512 = "t6BMVLQ0AkjBOoRTZgqrWm7xbXMBzD+XDq2EZ96+vMfn3qKgsvdXZhbPZ4ElUOpdv4u+iiGe+w3+J75iy/bYGA=="; 65295 65457 }; 65296 65458 }; 65297 65459 "webpack-stream-6.1.0" = { ··· 65391 65553 src = fetchurl { 65392 65554 url = "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz"; 65393 65555 sha512 = "M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="; 65556 + }; 65557 + }; 65558 + "whatwg-url-5.0.0" = { 65559 + name = "whatwg-url"; 65560 + packageName = "whatwg-url"; 65561 + version = "5.0.0"; 65562 + src = fetchurl { 65563 + url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"; 65564 + sha1 = "966454e8765462e37644d3626f6742ce8b70965d"; 65394 65565 }; 65395 65566 }; 65396 65567 "whatwg-url-6.5.0" = { ··· 65598 65769 src = fetchurl { 65599 65770 url = "https://registry.npmjs.org/wif/-/wif-2.0.6.tgz"; 65600 65771 sha1 = "08d3f52056c66679299726fade0d432ae74b4704"; 65772 + }; 65773 + }; 65774 + "wikimedia-kad-fork-1.3.6" = { 65775 + name = "wikimedia-kad-fork"; 65776 + packageName = "wikimedia-kad-fork"; 65777 + version = "1.3.6"; 65778 + src = fetchurl { 65779 + url = "https://registry.npmjs.org/wikimedia-kad-fork/-/wikimedia-kad-fork-1.3.6.tgz"; 65780 + sha512 = "m+IxFN4JatoQPRo0N46xMh7tR6FSznb/ithIchAy7Wg9mrkc4/bE/3BhlJS410quFJFrJp8lJJp93g4uTbj4lA=="; 65601 65781 }; 65602 65782 }; 65603 65783 "wikimedia-langconv-0.1.0" = { ··· 66149 66329 sha512 = "YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A=="; 66150 66330 }; 66151 66331 }; 66152 - "ws-7.5.0" = { 66153 - name = "ws"; 66154 - packageName = "ws"; 66155 - version = "7.5.0"; 66156 - src = fetchurl { 66157 - url = "https://registry.npmjs.org/ws/-/ws-7.5.0.tgz"; 66158 - sha512 = "6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw=="; 66159 - }; 66160 - }; 66161 66332 "ws-7.5.1" = { 66162 66333 name = "ws"; 66163 66334 packageName = "ws"; ··· 66192 66363 src = fetchurl { 66193 66364 url = "https://registry.npmjs.org/ws/-/ws-8.2.0.tgz"; 66194 66365 sha512 = "uYhVJ/m9oXwEI04iIVmgLmugh2qrZihkywG9y5FfZV2ATeLIzHf93qs+tUNqlttbQK957/VX3mtwAS+UfIwA4g=="; 66195 - }; 66196 - }; 66197 - "ws-8.2.1" = { 66198 - name = "ws"; 66199 - packageName = "ws"; 66200 - version = "8.2.1"; 66201 - src = fetchurl { 66202 - url = "https://registry.npmjs.org/ws/-/ws-8.2.1.tgz"; 66203 - sha512 = "XkgWpJU3sHU7gX8f13NqTn6KQ85bd1WU7noBHTT8fSohx7OS1TPY8k+cyRPCzFkia7C4mM229yeHr1qK9sM4JQ=="; 66204 66366 }; 66205 66367 }; 66206 66368 "ws-8.2.2" = { ··· 66563 66725 sha512 = "z9s6k3wxE+aZHgXYxSTpGDo7BYOUfJsIRyoZiX6HTjwpwfS2wpQBQKa2fD+ShLyPkqDYo5ud7KitmLZ2Cd6r0g=="; 66564 66726 }; 66565 66727 }; 66728 + "xmldom-0.5.0" = { 66729 + name = "xmldom"; 66730 + packageName = "xmldom"; 66731 + version = "0.5.0"; 66732 + src = fetchurl { 66733 + url = "https://registry.npmjs.org/xmldom/-/xmldom-0.5.0.tgz"; 66734 + sha512 = "Foaj5FXVzgn7xFzsKeNIde9g6aFBxTPi37iwsno8QvApmtg7KYrr+OPyRHcJF7dud2a5nGRBXK3n0dL62Gf7PA=="; 66735 + }; 66736 + }; 66566 66737 "xmldom-0.6.0" = { 66567 66738 name = "xmldom"; 66568 66739 packageName = "xmldom"; ··· 66627 66798 sha1 = "fcd82267e9351c13f0fb9c73307f25331d29c63a"; 66628 66799 }; 66629 66800 }; 66801 + "xpath-0.0.23" = { 66802 + name = "xpath"; 66803 + packageName = "xpath"; 66804 + version = "0.0.23"; 66805 + src = fetchurl { 66806 + url = "https://registry.npmjs.org/xpath/-/xpath-0.0.23.tgz"; 66807 + sha1 = "f5e8fdc6bdc7e72885b3234f40cba2669580aafa"; 66808 + }; 66809 + }; 66630 66810 "xpath-0.0.32" = { 66631 66811 name = "xpath"; 66632 66812 packageName = "xpath"; ··· 66699 66879 sha512 = "2t7FahYnGJys6DpHLhajusId7R0Pm2yTmuL0GV9+mV0ZlaLSnb2toBmppATfg5sWIhZQGlsTLoecSzya+l4EAQ=="; 66700 66880 }; 66701 66881 }; 66702 - "xstate-4.23.4" = { 66882 + "xstate-4.25.0" = { 66703 66883 name = "xstate"; 66704 66884 packageName = "xstate"; 66705 - version = "4.23.4"; 66885 + version = "4.25.0"; 66706 66886 src = fetchurl { 66707 - url = "https://registry.npmjs.org/xstate/-/xstate-4.23.4.tgz"; 66708 - sha512 = "lWaUvyrd0HGhosyKnf8i9wBlszVaS+/uIs0EfnuPYNsZIh1BW9ed4bZ64P57wVYk2uln7v3u+Mv98FC+r8xrxQ=="; 66887 + url = "https://registry.npmjs.org/xstate/-/xstate-4.25.0.tgz"; 66888 + sha512 = "qP7lc/ypOuuWME4ArOBnzaCa90TfHkjiqYDmxpiCjPy6FcXstInA2vH6qRVAHbPXRK4KQIYfIEOk1X38P+TldQ=="; 66709 66889 }; 66710 66890 }; 66711 66891 "xstream-11.14.0" = { ··· 66798 66978 sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="; 66799 66979 }; 66800 66980 }; 66981 + "yaml-2.0.0-8" = { 66982 + name = "yaml"; 66983 + packageName = "yaml"; 66984 + version = "2.0.0-8"; 66985 + src = fetchurl { 66986 + url = "https://registry.npmjs.org/yaml/-/yaml-2.0.0-8.tgz"; 66987 + sha512 = "QaYgJZMfWD6fKN/EYMk6w1oLWPCr1xj9QaPSZW5qkDb3y8nGCXhy2Ono+AF4F+CSL/vGcqswcAT0BaS//pgD2A=="; 66988 + }; 66989 + }; 66801 66990 "yaml-ast-parser-0.0.43" = { 66802 66991 name = "yaml-ast-parser"; 66803 66992 packageName = "yaml-ast-parser"; ··· 66814 67003 src = fetchurl { 66815 67004 url = "https://registry.npmjs.org/yaml-front-matter/-/yaml-front-matter-3.4.1.tgz"; 66816 67005 sha1 = "e52e84fea6983b93755e9b1564dba989b006b5a5"; 67006 + }; 67007 + }; 67008 + "yaml-include-1.2.1" = { 67009 + name = "yaml-include"; 67010 + packageName = "yaml-include"; 67011 + version = "1.2.1"; 67012 + src = fetchurl { 67013 + url = "https://registry.npmjs.org/yaml-include/-/yaml-include-1.2.1.tgz"; 67014 + sha512 = "d2Ayx9GykZwXHRdSlnlOOdcgbGzb8jjC0WPZicsTUjEbvwDMXDbJ8AMwLe8YCMa3BYeZSiUPcUYdUEjnwlUNGw=="; 66817 67015 }; 66818 67016 }; 66819 67017 "yaml-js-0.0.8" = { ··· 66940 67138 src = fetchurl { 66941 67139 url = "https://registry.npmjs.org/yargs/-/yargs-17.0.1.tgz"; 66942 67140 sha512 = "xBBulfCc8Y6gLFcrPvtqKz9hz8SO0l1Ni8GgDekvBX2ro0HRQImDGnikfc33cgzcYUSncapnNcZDjVFIH3f6KQ=="; 66943 - }; 66944 - }; 66945 - "yargs-17.1.0" = { 66946 - name = "yargs"; 66947 - packageName = "yargs"; 66948 - version = "17.1.0"; 66949 - src = fetchurl { 66950 - url = "https://registry.npmjs.org/yargs/-/yargs-17.1.0.tgz"; 66951 - sha512 = "SQr7qqmQ2sNijjJGHL4u7t8vyDZdZ3Ahkmo4sc1w5xI9TBX0QDdG/g4SFnxtWOsGLjwHQue57eFALfwFCnixgg=="; 66952 67141 }; 66953 67142 }; 66954 67143 "yargs-17.1.1" = { ··· 67311 67500 sha512 = "Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg=="; 67312 67501 }; 67313 67502 }; 67314 - "zen-observable-ts-1.2.2" = { 67503 + "zen-observable-ts-1.1.0" = { 67315 67504 name = "zen-observable-ts"; 67316 67505 packageName = "zen-observable-ts"; 67317 - version = "1.2.2"; 67506 + version = "1.1.0"; 67318 67507 src = fetchurl { 67319 - url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.2.tgz"; 67320 - sha512 = "o15G3luGAPoWD2//djCQsnC7886KpgQETAvTwnDPMN33RS+XACoFR46fm5e3tC/WNTF0uzHPL91Yyakc280Xiw=="; 67508 + url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.1.0.tgz"; 67509 + sha512 = "1h4zlLSqI2cRLPJUHJFL8bCWHhkpuXkF+dbGkRaWjgDIG26DmzyshUMrdV/rL3UnR+mhaX4fRq8LPouq0MYYIA=="; 67321 67510 }; 67322 67511 }; 67323 67512 "zeromq-5.2.8" = { ··· 67407 67596 "@angular/cli" = nodeEnv.buildNodePackage { 67408 67597 name = "_at_angular_slash_cli"; 67409 67598 packageName = "@angular/cli"; 67410 - version = "12.2.5"; 67599 + version = "12.2.6"; 67411 67600 src = fetchurl { 67412 - url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.5.tgz"; 67413 - sha512 = "O/NqRaFGx2jns03oWwhWBpilV4s7B8Zie6rgo2hJty1T3douGkK5kTO38N4Lebeayw8LTiPhT/JOrQTfFgXSjw=="; 67601 + url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.6.tgz"; 67602 + sha512 = "nBCynOi5OVVAXA4ktsVhWP+UyWjjR/7+TlEjNgEfcbtlwkE+HIki+oHETAtXKdn5nPvNum3OXPLZPLX2B8MiRA=="; 67414 67603 }; 67415 67604 dependencies = [ 67416 - sources."@angular-devkit/architect-0.1202.5" 67417 - sources."@angular-devkit/core-12.2.5" 67418 - sources."@angular-devkit/schematics-12.2.5" 67605 + sources."@angular-devkit/architect-0.1202.6" 67606 + sources."@angular-devkit/core-12.2.6" 67607 + sources."@angular-devkit/schematics-12.2.6" 67419 67608 sources."@gar/promisify-1.1.2" 67420 67609 sources."@npmcli/fs-1.0.0" 67421 67610 sources."@npmcli/git-2.1.0" ··· 67424 67613 sources."@npmcli/node-gyp-1.0.2" 67425 67614 sources."@npmcli/promise-spawn-1.3.2" 67426 67615 sources."@npmcli/run-script-1.8.6" 67427 - sources."@schematics/angular-12.2.5" 67616 + sources."@schematics/angular-12.2.6" 67428 67617 sources."@tootallnate/once-1.1.2" 67429 67618 sources."@yarnpkg/lockfile-1.1.0" 67430 67619 sources."abbrev-1.1.1" ··· 67435 67624 sources."ajv-formats-2.1.0" 67436 67625 sources."ansi-colors-4.1.1" 67437 67626 sources."ansi-escapes-4.3.2" 67438 - sources."ansi-regex-5.0.0" 67627 + sources."ansi-regex-5.0.1" 67439 67628 sources."ansi-styles-4.3.0" 67440 67629 sources."aproba-1.2.0" 67441 67630 (sources."are-we-there-yet-1.1.7" // { ··· 67573 67762 sources."mime-types-2.1.32" 67574 67763 sources."mimic-fn-2.1.0" 67575 67764 sources."minimatch-3.0.4" 67576 - sources."minipass-3.1.3" 67765 + sources."minipass-3.1.5" 67577 67766 sources."minipass-collect-1.0.2" 67578 67767 sources."minipass-fetch-1.4.1" 67579 67768 sources."minipass-flush-1.0.5" ··· 67632 67821 sources."safer-buffer-2.1.2" 67633 67822 sources."semver-7.3.5" 67634 67823 sources."set-blocking-2.0.0" 67635 - sources."signal-exit-3.0.3" 67824 + sources."signal-exit-3.0.4" 67636 67825 sources."smart-buffer-4.2.0" 67637 67826 sources."socks-2.6.1" 67638 - sources."socks-proxy-agent-6.0.0" 67827 + sources."socks-proxy-agent-6.1.0" 67639 67828 sources."source-map-0.7.3" 67640 67829 sources."sourcemap-codec-1.4.8" 67641 67830 sources."sshpk-1.16.1" ··· 67708 67897 sources."js-yaml-3.14.1" 67709 67898 sources."json5-2.1.3" 67710 67899 sources."lodash.clonedeep-4.5.0" 67711 - sources."map-obj-4.2.1" 67900 + sources."map-obj-4.3.0" 67712 67901 sources."minimist-1.2.5" 67713 67902 sources."quick-lru-4.0.1" 67714 67903 sources."sprintf-js-1.0.3" ··· 67910 68099 sources."lead-1.0.0" 67911 68100 sources."lodash.clonedeep-4.5.0" 67912 68101 sources."lowercase-keys-1.0.1" 67913 - sources."map-obj-4.2.1" 68102 + sources."map-obj-4.3.0" 67914 68103 sources."marky-1.2.2" 67915 68104 sources."matcher-2.1.0" 67916 68105 sources."mime-db-1.49.0" ··· 68060 68249 sources."acorn-walk-7.2.0" 68061 68250 sources."agent-base-6.0.2" 68062 68251 sources."ansi-escapes-4.3.2" 68063 - sources."ansi-regex-5.0.0" 68252 + sources."ansi-regex-5.0.1" 68064 68253 sources."ansi-styles-4.3.0" 68065 68254 sources."asynckit-0.4.0" 68066 68255 sources."big-integer-1.6.48" ··· 68127 68316 sources."mimic-fn-2.1.0" 68128 68317 sources."ms-2.1.2" 68129 68318 sources."mute-stream-0.0.8" 68130 - sources."node-fetch-2.6.2" 68319 + (sources."node-fetch-2.6.4" // { 68320 + dependencies = [ 68321 + sources."tr46-0.0.3" 68322 + sources."webidl-conversions-3.0.1" 68323 + sources."whatwg-url-5.0.0" 68324 + ]; 68325 + }) 68131 68326 sources."node-forge-0.10.0" 68132 68327 sources."nwsapi-2.2.0" 68133 68328 sources."onetime-5.1.2" ··· 68145 68340 sources."rxjs-6.6.7" 68146 68341 sources."safer-buffer-2.1.2" 68147 68342 sources."saxes-5.0.1" 68148 - sources."signal-exit-3.0.3" 68343 + sources."signal-exit-3.0.4" 68149 68344 sources."source-map-0.6.1" 68150 68345 sources."steno-0.4.4" 68151 68346 sources."string-width-4.2.2" ··· 68197 68392 }; 68198 68393 dependencies = [ 68199 68394 sources."@babel/code-frame-7.14.5" 68200 - sources."@babel/helper-validator-identifier-7.14.9" 68395 + sources."@babel/helper-validator-identifier-7.15.7" 68201 68396 (sources."@babel/highlight-7.14.5" // { 68202 68397 dependencies = [ 68203 68398 sources."ansi-styles-3.2.1" ··· 68233 68428 sources."@types/normalize-package-data-2.4.1" 68234 68429 sources."@types/parse-json-4.0.0" 68235 68430 sources."JSONStream-1.3.5" 68236 - sources."ansi-regex-5.0.0" 68431 + sources."ansi-regex-5.0.1" 68237 68432 sources."ansi-styles-4.3.0" 68238 68433 sources."array-ify-1.0.0" 68239 68434 sources."arrify-1.0.1" ··· 68300 68495 sources."locate-path-5.0.0" 68301 68496 sources."lodash-4.17.21" 68302 68497 sources."lru-cache-6.0.0" 68303 - sources."map-obj-4.2.1" 68498 + sources."map-obj-4.3.0" 68304 68499 sources."meow-8.1.2" 68305 68500 sources."merge-stream-2.0.0" 68306 68501 sources."mimic-fn-2.1.0" ··· 68343 68538 sources."semver-7.3.5" 68344 68539 sources."shebang-command-2.0.0" 68345 68540 sources."shebang-regex-3.0.0" 68346 - sources."signal-exit-3.0.3" 68541 + sources."signal-exit-3.0.4" 68347 68542 sources."spdx-correct-3.1.1" 68348 68543 sources."spdx-exceptions-2.3.0" 68349 68544 sources."spdx-expression-parse-3.0.1" ··· 68393 68588 dependencies = [ 68394 68589 sources."array-ify-1.0.0" 68395 68590 sources."compare-func-2.0.0" 68396 - sources."conventional-changelog-conventionalcommits-4.6.0" 68591 + sources."conventional-changelog-conventionalcommits-4.6.1" 68397 68592 sources."dot-prop-5.3.0" 68398 68593 sources."is-obj-2.0.0" 68399 68594 sources."lodash-4.17.21" ··· 68427 68622 sources."@hyperswarm/hypersign-2.1.1" 68428 68623 sources."@hyperswarm/network-2.1.0" 68429 68624 sources."@leichtgewicht/ip-codec-2.0.3" 68430 - sources."@types/node-16.9.0" 68625 + sources."@types/node-16.9.4" 68431 68626 sources."abstract-extension-3.1.1" 68432 68627 sources."abstract-leveldown-6.2.3" 68433 68628 sources."ansi-colors-3.2.3" ··· 68608 68803 ]; 68609 68804 }) 68610 68805 sources."hyperswarm-2.15.3" 68611 - sources."hypertrie-5.1.1" 68806 + sources."hypertrie-5.1.2" 68612 68807 sources."identify-filetype-1.0.0" 68613 68808 sources."ieee754-1.2.1" 68614 68809 sources."immediate-3.3.0" ··· 68703 68898 sources."nanoresource-promise-1.2.2" 68704 68899 sources."napi-macros-2.0.0" 68705 68900 sources."node-environment-flags-1.0.6" 68706 - sources."node-gyp-build-4.2.3" 68901 + sources."node-gyp-build-4.3.0" 68707 68902 (sources."noise-peer-2.1.1" // { 68708 68903 dependencies = [ 68709 68904 sources."readable-stream-3.6.0" ··· 68738 68933 sources."progress-string-1.2.2" 68739 68934 sources."protocol-buffers-4.2.0" 68740 68935 sources."protocol-buffers-encodings-1.1.1" 68741 - sources."protocol-buffers-schema-3.5.2" 68936 + sources."protocol-buffers-schema-3.6.0" 68742 68937 sources."prr-1.0.1" 68743 68938 sources."pseudomap-1.0.2" 68744 68939 sources."pump-3.0.0" ··· 68881 69076 sources."wide-align-1.1.3" 68882 69077 (sources."wrap-ansi-7.0.0" // { 68883 69078 dependencies = [ 68884 - sources."ansi-regex-5.0.0" 69079 + sources."ansi-regex-5.0.1" 68885 69080 sources."ansi-styles-4.3.0" 68886 69081 sources."color-convert-2.0.1" 68887 69082 sources."color-name-1.1.4" ··· 68922 69117 "@nerdwallet/shepherd" = nodeEnv.buildNodePackage { 68923 69118 name = "_at_nerdwallet_slash_shepherd"; 68924 69119 packageName = "@nerdwallet/shepherd"; 68925 - version = "1.14.1"; 69120 + version = "1.15.1"; 68926 69121 src = fetchurl { 68927 - url = "https://registry.npmjs.org/@nerdwallet/shepherd/-/shepherd-1.14.1.tgz"; 68928 - sha512 = "oJbTkmm6OJryEoEj3MyOV7bgOFlrW0+o6efwaF/tEfskMmmv8+lfXoeLVJXASxF/G2IgpHAWBrna7xOE2PCmRg=="; 69122 + url = "https://registry.npmjs.org/@nerdwallet/shepherd/-/shepherd-1.15.1.tgz"; 69123 + sha512 = "8IusD7fBMXdTcdsHBt4jZb3fu4VmN8NppnXEigNn6AxbhGepntGuUN2Ve9FGQX+xcpJKRZsRtsbUnXmf62G83g=="; 68929 69124 }; 68930 69125 dependencies = [ 68931 69126 sources."@hapi/hoek-9.2.0" 68932 69127 sources."@hapi/topo-5.1.0" 68933 69128 sources."@kwsites/file-exists-1.1.1" 68934 69129 sources."@kwsites/promise-deferred-1.1.1" 68935 - sources."@octokit/auth-token-2.4.5" 69130 + sources."@octokit/auth-token-2.5.0" 68936 69131 sources."@octokit/core-3.5.1" 68937 69132 sources."@octokit/endpoint-6.0.12" 68938 69133 sources."@octokit/graphql-4.8.0" 68939 - sources."@octokit/openapi-types-10.1.1" 68940 - sources."@octokit/plugin-paginate-rest-2.16.0" 69134 + sources."@octokit/openapi-types-10.2.2" 69135 + sources."@octokit/plugin-paginate-rest-2.16.3" 68941 69136 sources."@octokit/plugin-request-log-1.0.4" 68942 - sources."@octokit/plugin-rest-endpoint-methods-5.10.1" 69137 + sources."@octokit/plugin-rest-endpoint-methods-5.10.4" 69138 + sources."@octokit/plugin-retry-3.0.9" 68943 69139 sources."@octokit/request-5.6.1" 68944 69140 sources."@octokit/request-error-2.1.0" 68945 69141 sources."@octokit/rest-18.10.0" 68946 - sources."@octokit/types-6.27.0" 69142 + sources."@octokit/types-6.28.1" 68947 69143 sources."@sideway/address-4.1.2" 68948 69144 sources."@sideway/formula-3.0.0" 68949 69145 sources."@sideway/pinpoint-2.0.0" 68950 69146 sources."@types/js-yaml-3.12.7" 68951 - sources."ansi-regex-5.0.0" 69147 + sources."ansi-regex-5.0.1" 68952 69148 sources."ansi-styles-4.3.0" 68953 69149 sources."argparse-1.0.10" 68954 69150 sources."at-least-node-1.0.0" 68955 69151 sources."base64-js-1.5.1" 68956 69152 sources."before-after-hook-2.2.2" 68957 69153 sources."bl-4.1.0" 69154 + sources."bottleneck-2.19.5" 68958 69155 sources."buffer-5.7.1" 68959 69156 sources."chalk-4.1.2" 68960 69157 sources."child-process-promise-2.2.1" ··· 68987 69184 sources."mimic-fn-2.1.0" 68988 69185 sources."ms-2.1.2" 68989 69186 sources."netrc-0.1.4" 68990 - sources."node-fetch-2.6.2" 69187 + sources."node-fetch-2.6.4" 68991 69188 sources."node-version-1.2.0" 68992 69189 sources."once-1.4.0" 68993 69190 sources."onetime-5.1.2" ··· 68998 69195 sources."readable-stream-3.6.0" 68999 69196 sources."restore-cursor-3.1.0" 69000 69197 sources."safe-buffer-5.2.1" 69001 - sources."signal-exit-3.0.3" 69198 + sources."signal-exit-3.0.4" 69002 69199 sources."simple-git-2.45.1" 69003 69200 sources."sprintf-js-1.0.3" 69004 69201 sources."string_decoder-1.3.0" 69005 69202 sources."strip-ansi-6.0.0" 69006 69203 sources."supports-color-7.2.0" 69204 + sources."tr46-0.0.3" 69007 69205 sources."universal-user-agent-6.0.0" 69008 69206 sources."universalify-2.0.0" 69009 69207 sources."util-deprecate-1.0.2" 69010 69208 sources."wcwidth-1.0.1" 69209 + sources."webidl-conversions-3.0.1" 69210 + sources."whatwg-url-5.0.0" 69011 69211 sources."which-1.3.1" 69012 69212 sources."wrappy-1.0.2" 69013 69213 sources."yallist-2.1.2" ··· 69041 69241 ]; 69042 69242 }) 69043 69243 sources."@babel/code-frame-7.14.5" 69044 - sources."@babel/helper-validator-identifier-7.14.9" 69244 + sources."@babel/helper-validator-identifier-7.15.7" 69045 69245 (sources."@babel/highlight-7.14.5" // { 69046 69246 dependencies = [ 69047 69247 sources."ansi-styles-3.2.1" ··· 69066 69266 sources."@types/eslint-scope-3.7.1" 69067 69267 sources."@types/estree-0.0.50" 69068 69268 sources."@types/json-schema-7.0.9" 69069 - sources."@types/node-16.9.0" 69269 + sources."@types/node-16.9.4" 69070 69270 sources."@types/parse-json-4.0.0" 69071 69271 sources."@webassemblyjs/ast-1.11.1" 69072 69272 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 69091 69291 sources."ajv-keywords-3.5.2" 69092 69292 sources."ansi-colors-4.1.1" 69093 69293 sources."ansi-escapes-4.3.2" 69094 - sources."ansi-regex-5.0.0" 69294 + sources."ansi-regex-5.0.1" 69095 69295 sources."ansi-styles-4.3.0" 69096 69296 sources."anymatch-3.1.2" 69097 69297 sources."at-least-node-1.0.0" ··· 69105 69305 sources."buffer-5.7.1" 69106 69306 sources."buffer-from-1.1.2" 69107 69307 sources."callsites-3.1.0" 69108 - sources."caniuse-lite-1.0.30001255" 69308 + sources."caniuse-lite-1.0.30001259" 69109 69309 sources."chalk-3.0.0" 69110 69310 sources."chardet-0.7.0" 69111 69311 sources."chokidar-3.5.2" ··· 69132 69332 sources."cross-spawn-7.0.3" 69133 69333 sources."deepmerge-4.2.2" 69134 69334 sources."defaults-1.0.3" 69135 - sources."electron-to-chromium-1.3.833" 69335 + sources."electron-to-chromium-1.3.845" 69136 69336 sources."emoji-regex-8.0.0" 69137 69337 sources."end-of-stream-1.4.4" 69138 - (sources."enhanced-resolve-5.8.2" // { 69338 + (sources."enhanced-resolve-5.8.3" // { 69139 69339 dependencies = [ 69140 - sources."tapable-2.2.0" 69340 + sources."tapable-2.2.1" 69141 69341 ]; 69142 69342 }) 69143 69343 sources."error-ex-1.3.2" ··· 69199 69399 sources."is-stream-2.0.1" 69200 69400 sources."is-unicode-supported-0.1.0" 69201 69401 sources."isexe-2.0.0" 69202 - (sources."jest-worker-27.1.1" // { 69402 + (sources."jest-worker-27.2.0" // { 69203 69403 dependencies = [ 69204 69404 sources."supports-color-8.1.1" 69205 69405 ]; ··· 69223 69423 sources."lru-cache-6.0.0" 69224 69424 sources."macos-release-2.5.0" 69225 69425 sources."magic-string-0.25.7" 69226 - sources."memfs-3.2.4" 69426 + sources."memfs-3.3.0" 69227 69427 sources."merge-stream-2.0.0" 69228 69428 sources."mime-db-1.49.0" 69229 69429 sources."mime-types-2.1.32" ··· 69233 69433 sources."mute-stream-0.0.8" 69234 69434 sources."neo-async-2.6.2" 69235 69435 sources."node-emoji-1.10.0" 69236 - sources."node-releases-1.1.75" 69436 + sources."node-releases-1.1.76" 69237 69437 sources."normalize-path-3.0.0" 69238 69438 sources."npm-run-path-4.0.1" 69239 69439 sources."object-assign-4.1.1" ··· 69281 69481 sources."shebang-command-2.0.0" 69282 69482 sources."shebang-regex-3.0.0" 69283 69483 sources."shelljs-0.8.4" 69284 - sources."signal-exit-3.0.3" 69484 + sources."signal-exit-3.0.4" 69285 69485 sources."source-list-map-2.0.1" 69286 69486 sources."source-map-0.7.3" 69287 69487 (sources."source-map-support-0.5.19" // { ··· 69298 69498 sources."supports-color-7.2.0" 69299 69499 sources."symbol-observable-4.0.0" 69300 69500 sources."tapable-1.1.3" 69301 - (sources."terser-5.7.2" // { 69501 + (sources."terser-5.9.0" // { 69302 69502 dependencies = [ 69303 69503 sources."commander-2.20.3" 69504 + (sources."source-map-support-0.5.20" // { 69505 + dependencies = [ 69506 + sources."source-map-0.6.1" 69507 + ]; 69508 + }) 69304 69509 ]; 69305 69510 }) 69306 69511 (sources."terser-webpack-plugin-5.2.4" // { ··· 69334 69539 sources."ajv-6.12.6" 69335 69540 sources."json-schema-traverse-0.4.1" 69336 69541 sources."schema-utils-3.1.1" 69337 - sources."tapable-2.2.0" 69542 + sources."tapable-2.2.1" 69338 69543 ]; 69339 69544 }) 69340 69545 sources."webpack-node-externals-3.0.0" ··· 69370 69575 }; 69371 69576 dependencies = [ 69372 69577 sources."@squoosh/lib-0.4.0" 69373 - sources."ansi-regex-5.0.0" 69578 + sources."ansi-regex-5.0.1" 69374 69579 sources."ansi-styles-4.3.0" 69375 69580 sources."base64-js-1.5.1" 69376 69581 sources."bl-4.1.0" ··· 69398 69603 sources."readable-stream-3.6.0" 69399 69604 sources."restore-cursor-3.1.0" 69400 69605 sources."safe-buffer-5.2.1" 69401 - sources."signal-exit-3.0.3" 69606 + sources."signal-exit-3.0.4" 69402 69607 sources."string_decoder-1.3.0" 69403 69608 sources."strip-ansi-6.0.0" 69404 69609 sources."supports-color-7.2.0" ··· 69451 69656 sources."@babel/helper-hoist-variables-7.15.4" 69452 69657 sources."@babel/helper-member-expression-to-functions-7.15.4" 69453 69658 sources."@babel/helper-module-imports-7.15.4" 69454 - sources."@babel/helper-module-transforms-7.15.4" 69659 + sources."@babel/helper-module-transforms-7.15.7" 69455 69660 sources."@babel/helper-optimise-call-expression-7.15.4" 69456 69661 sources."@babel/helper-plugin-utils-7.14.5" 69457 69662 sources."@babel/helper-remap-async-to-generator-7.15.4" ··· 69459 69664 sources."@babel/helper-simple-access-7.15.4" 69460 69665 sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 69461 69666 sources."@babel/helper-split-export-declaration-7.15.4" 69462 - sources."@babel/helper-validator-identifier-7.14.9" 69667 + sources."@babel/helper-validator-identifier-7.15.7" 69463 69668 sources."@babel/helper-validator-option-7.14.5" 69464 69669 sources."@babel/helper-wrap-function-7.15.4" 69465 69670 sources."@babel/helpers-7.15.4" 69466 69671 sources."@babel/highlight-7.14.5" 69467 - sources."@babel/parser-7.15.5" 69672 + sources."@babel/parser-7.15.7" 69468 69673 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 69469 69674 sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 69470 69675 sources."@babel/plugin-proposal-class-properties-7.14.5" ··· 69475 69680 sources."@babel/plugin-proposal-logical-assignment-operators-7.14.5" 69476 69681 sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 69477 69682 sources."@babel/plugin-proposal-numeric-separator-7.14.5" 69478 - sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 69683 + sources."@babel/plugin-proposal-object-rest-spread-7.15.6" 69479 69684 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 69480 69685 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 69481 69686 sources."@babel/plugin-proposal-private-methods-7.14.5" ··· 69531 69736 sources."@babel/plugin-transform-typescript-7.15.4" 69532 69737 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 69533 69738 sources."@babel/plugin-transform-unicode-regex-7.14.5" 69534 - sources."@babel/preset-env-7.15.4" 69739 + sources."@babel/preset-env-7.15.6" 69535 69740 sources."@babel/preset-flow-7.14.5" 69536 69741 sources."@babel/preset-modules-0.1.4" 69537 69742 sources."@babel/preset-typescript-7.15.0" ··· 69545 69750 sources."@babel/runtime-7.15.4" 69546 69751 sources."@babel/template-7.15.4" 69547 69752 sources."@babel/traverse-7.15.4" 69548 - sources."@babel/types-7.15.4" 69753 + sources."@babel/types-7.15.6" 69549 69754 sources."@hapi/address-2.1.4" 69550 69755 sources."@hapi/bourne-1.3.2" 69551 69756 sources."@hapi/hoek-8.5.1" ··· 69598 69803 sources."@types/long-4.0.1" 69599 69804 sources."@types/mime-1.3.2" 69600 69805 sources."@types/minimatch-3.0.5" 69601 - sources."@types/node-16.9.0" 69806 + sources."@types/node-16.9.4" 69602 69807 sources."@types/normalize-package-data-2.4.1" 69603 69808 sources."@types/qs-6.9.7" 69604 69809 sources."@types/range-parser-1.2.4" ··· 69613 69818 }) 69614 69819 sources."@vue/cli-ui-addon-webpack-4.5.13" 69615 69820 sources."@vue/cli-ui-addon-widgets-4.5.13" 69616 - (sources."@vue/compiler-core-3.2.11" // { 69821 + (sources."@vue/compiler-core-3.2.12" // { 69617 69822 dependencies = [ 69618 69823 sources."source-map-0.6.1" 69619 69824 ]; 69620 69825 }) 69621 - sources."@vue/compiler-dom-3.2.11" 69622 - sources."@vue/shared-3.2.11" 69826 + sources."@vue/compiler-dom-3.2.12" 69827 + sources."@vue/shared-3.2.12" 69623 69828 sources."@wry/equality-0.1.11" 69624 69829 sources."accepts-1.3.7" 69625 69830 sources."aggregate-error-3.1.0" ··· 69741 69946 sources."call-bind-1.0.2" 69742 69947 sources."call-me-maybe-1.0.1" 69743 69948 sources."camelcase-5.3.1" 69744 - sources."caniuse-lite-1.0.30001255" 69949 + sources."caniuse-lite-1.0.30001259" 69745 69950 sources."caseless-0.12.0" 69746 69951 sources."caw-2.0.1" 69747 69952 sources."chalk-2.4.2" ··· 69798 70003 sources."cookie-0.4.0" 69799 70004 sources."cookie-signature-1.0.6" 69800 70005 sources."copy-descriptor-0.1.1" 69801 - (sources."core-js-compat-3.17.3" // { 70006 + (sources."core-js-compat-3.18.0" // { 69802 70007 dependencies = [ 69803 70008 sources."semver-7.0.0" 69804 70009 ]; 69805 70010 }) 69806 - sources."core-js-pure-3.17.3" 70011 + sources."core-js-pure-3.18.0" 69807 70012 sources."core-util-is-1.0.2" 69808 70013 sources."cors-2.8.5" 69809 70014 (sources."cross-spawn-6.0.5" // { ··· 69869 70074 sources."ecc-jsbn-0.1.2" 69870 70075 sources."ee-first-1.1.1" 69871 70076 sources."ejs-2.7.4" 69872 - sources."electron-to-chromium-1.3.833" 70077 + sources."electron-to-chromium-1.3.845" 69873 70078 sources."emoji-regex-7.0.3" 69874 70079 sources."encodeurl-1.0.2" 69875 70080 sources."end-of-stream-1.4.4" ··· 69931 70136 sources."fast-deep-equal-3.1.3" 69932 70137 sources."fast-glob-2.2.7" 69933 70138 sources."fast-json-stable-stringify-2.1.0" 69934 - sources."fastq-1.12.0" 70139 + sources."fastq-1.13.0" 69935 70140 sources."fd-slicer-1.1.0" 69936 70141 sources."figures-3.2.0" 69937 70142 sources."file-type-8.1.0" ··· 69952 70157 }) 69953 70158 sources."find-up-3.0.0" 69954 70159 sources."fkill-6.2.0" 69955 - sources."flow-parser-0.159.0" 70160 + sources."flow-parser-0.160.1" 69956 70161 sources."for-each-0.3.3" 69957 70162 sources."for-in-1.0.2" 69958 70163 sources."forever-agent-0.6.1" ··· 70194 70399 sources."neo-async-2.6.2" 70195 70400 sources."nice-try-1.0.5" 70196 70401 sources."node-dir-0.1.17" 70197 - sources."node-fetch-2.6.2" 70402 + sources."node-fetch-2.6.4" 70198 70403 sources."node-ipc-9.2.1" 70199 70404 sources."node-modules-regexp-1.0.0" 70200 70405 (sources."node-notifier-9.0.1" // { ··· 70206 70411 sources."which-2.0.2" 70207 70412 ]; 70208 70413 }) 70209 - sources."node-releases-1.1.75" 70414 + sources."node-releases-1.1.76" 70210 70415 (sources."normalize-package-data-2.5.0" // { 70211 70416 dependencies = [ 70212 70417 sources."semver-5.7.1" ··· 70236 70441 }) 70237 70442 sources."object-inspect-1.11.0" 70238 70443 sources."object-keys-1.1.1" 70239 - sources."object-path-0.11.7" 70444 + sources."object-path-0.11.8" 70240 70445 sources."object-visit-1.0.1" 70241 70446 sources."object.assign-4.1.2" 70242 70447 sources."object.getownpropertydescriptors-2.1.2" ··· 70296 70501 }) 70297 70502 sources."posix-character-classes-0.1.1" 70298 70503 sources."prepend-http-2.0.0" 70299 - sources."prismjs-1.24.1" 70504 + sources."prismjs-1.25.0" 70300 70505 sources."private-0.1.8" 70301 70506 sources."process-exists-3.1.0" 70302 70507 sources."process-nextick-args-2.0.1" ··· 70330 70535 ]; 70331 70536 }) 70332 70537 sources."regenerate-1.4.2" 70333 - sources."regenerate-unicode-properties-8.2.0" 70538 + sources."regenerate-unicode-properties-9.0.0" 70334 70539 sources."regenerator-runtime-0.13.9" 70335 70540 sources."regenerator-transform-0.14.5" 70336 70541 (sources."regex-not-1.0.2" // { ··· 70339 70544 sources."is-extendable-1.0.1" 70340 70545 ]; 70341 70546 }) 70342 - sources."regexpu-core-4.7.1" 70547 + sources."regexpu-core-4.8.0" 70343 70548 sources."regjsgen-0.5.2" 70344 - (sources."regjsparser-0.6.9" // { 70549 + (sources."regjsparser-0.7.0" // { 70345 70550 dependencies = [ 70346 70551 sources."jsesc-0.5.0" 70347 70552 ]; ··· 70392 70597 sources."shellwords-0.1.1" 70393 70598 sources."shortid-2.2.16" 70394 70599 sources."side-channel-1.0.4" 70395 - sources."signal-exit-3.0.3" 70600 + sources."signal-exit-3.0.4" 70396 70601 sources."slash-3.0.0" 70397 70602 (sources."snapdragon-0.8.2" // { 70398 70603 dependencies = [ ··· 70481 70686 }) 70482 70687 (sources."strip-ansi-6.0.0" // { 70483 70688 dependencies = [ 70484 - sources."ansi-regex-5.0.0" 70689 + sources."ansi-regex-5.0.1" 70485 70690 ]; 70486 70691 }) 70487 70692 sources."strip-dirs-2.1.0" ··· 70539 70744 sources."to-regex-range-2.1.1" 70540 70745 sources."toidentifier-1.0.0" 70541 70746 sources."tough-cookie-2.5.0" 70747 + sources."tr46-0.0.3" 70542 70748 sources."trim-repeated-1.0.0" 70543 70749 sources."ts-invariant-0.4.4" 70544 70750 sources."tslib-1.14.1" ··· 70549 70755 sources."typescript-4.1.6" 70550 70756 sources."unbox-primitive-1.0.1" 70551 70757 sources."unbzip2-stream-1.4.3" 70552 - sources."unicode-canonical-property-names-ecmascript-1.0.4" 70553 - sources."unicode-match-property-ecmascript-1.0.4" 70554 - sources."unicode-match-property-value-ecmascript-1.2.0" 70555 - sources."unicode-property-aliases-ecmascript-1.1.0" 70758 + sources."unicode-canonical-property-names-ecmascript-2.0.0" 70759 + sources."unicode-match-property-ecmascript-2.0.0" 70760 + sources."unicode-match-property-value-ecmascript-2.0.0" 70761 + sources."unicode-property-aliases-ecmascript-2.0.0" 70556 70762 sources."union-value-1.0.1" 70557 70763 sources."universalify-0.1.2" 70558 70764 sources."unpipe-1.0.0" ··· 70601 70807 }) 70602 70808 sources."watch-1.0.2" 70603 70809 sources."wcwidth-1.0.1" 70810 + sources."webidl-conversions-3.0.1" 70811 + sources."whatwg-url-5.0.0" 70604 70812 sources."which-1.3.1" 70605 70813 sources."which-boxed-primitive-1.0.2" 70606 70814 sources."widest-line-3.1.0" ··· 70767 70975 dependencies = [ 70768 70976 sources."@babel/code-frame-7.14.5" 70769 70977 sources."@babel/generator-7.15.4" 70770 - sources."@babel/helper-validator-identifier-7.14.9" 70978 + sources."@babel/helper-validator-identifier-7.15.7" 70771 70979 sources."@babel/highlight-7.14.5" 70772 - sources."@babel/parser-7.15.5" 70980 + sources."@babel/parser-7.15.7" 70773 70981 sources."@babel/template-7.15.4" 70774 - sources."@babel/types-7.15.4" 70982 + sources."@babel/types-7.15.6" 70775 70983 sources."@webassemblyjs/ast-1.11.1" 70776 70984 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 70777 70985 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 70839 71047 alloy = nodeEnv.buildNodePackage { 70840 71048 name = "alloy"; 70841 71049 packageName = "alloy"; 70842 - version = "1.16.3"; 71050 + version = "1.16.4"; 70843 71051 src = fetchurl { 70844 - url = "https://registry.npmjs.org/alloy/-/alloy-1.16.3.tgz"; 70845 - sha512 = "Y4pSzPpJHovMA6uqpRTztraKFtchQm9rPbYd9s6UkEuqpYs45hFSY4j+ezkvGxU6Hvn2L6OLc+5dlaOr+P+QKQ=="; 71052 + url = "https://registry.npmjs.org/alloy/-/alloy-1.16.4.tgz"; 71053 + sha512 = "kiIlTMDCEP1PP9QtFQywlN/P/Ji0V+zbwCWkG8gF6V6uRIytd2bkpHP4iaFdV7fQJTrQSd9h71Wj4x60jGt6Mg=="; 70846 71054 }; 70847 71055 dependencies = [ 70848 71056 sources."@babel/code-frame-7.14.5" ··· 70863 71071 sources."@babel/helper-hoist-variables-7.15.4" 70864 71072 sources."@babel/helper-member-expression-to-functions-7.15.4" 70865 71073 sources."@babel/helper-module-imports-7.15.4" 70866 - sources."@babel/helper-module-transforms-7.15.4" 71074 + sources."@babel/helper-module-transforms-7.15.7" 70867 71075 sources."@babel/helper-optimise-call-expression-7.15.4" 70868 71076 sources."@babel/helper-replace-supers-7.15.4" 70869 71077 sources."@babel/helper-simple-access-7.15.4" 70870 71078 sources."@babel/helper-split-export-declaration-7.15.4" 70871 - sources."@babel/helper-validator-identifier-7.14.9" 71079 + sources."@babel/helper-validator-identifier-7.15.7" 70872 71080 sources."@babel/helper-validator-option-7.14.5" 70873 71081 sources."@babel/helpers-7.15.4" 70874 71082 sources."@babel/highlight-7.14.5" 70875 - sources."@babel/parser-7.15.5" 71083 + sources."@babel/parser-7.15.7" 70876 71084 sources."@babel/template-7.15.4" 70877 71085 sources."@babel/traverse-7.15.4" 70878 - sources."@babel/types-7.15.4" 71086 + sources."@babel/types-7.15.6" 70879 71087 sources."JSV-4.0.2" 70880 71088 sources."ansi-styles-3.2.1" 70881 71089 sources."array-unique-0.3.2" ··· 70883 71091 sources."balanced-match-1.0.2" 70884 71092 sources."brace-expansion-1.1.11" 70885 71093 sources."browserslist-4.17.0" 70886 - sources."caniuse-lite-1.0.30001255" 71094 + sources."caniuse-lite-1.0.30001259" 70887 71095 sources."chalk-2.4.2" 70888 71096 sources."color-convert-1.9.3" 70889 71097 sources."color-name-1.1.3" 70890 71098 sources."colorette-1.4.0" 70891 71099 sources."colors-1.4.0" 70892 - sources."commander-8.1.0" 71100 + sources."commander-8.2.0" 70893 71101 sources."concat-map-0.0.1" 70894 71102 sources."convert-source-map-1.8.0" 70895 71103 sources."debug-4.3.2" 70896 71104 sources."ejs-3.1.6" 70897 - sources."electron-to-chromium-1.3.833" 71105 + sources."electron-to-chromium-1.3.845" 70898 71106 sources."ensure-posix-path-1.1.1" 70899 71107 sources."escalade-3.1.1" 70900 71108 sources."escape-string-regexp-1.0.5" ··· 70940 71148 sources."minimist-1.2.5" 70941 71149 sources."moment-2.29.1" 70942 71150 sources."ms-2.1.2" 70943 - sources."node-releases-1.1.75" 71151 + sources."node-releases-1.1.76" 70944 71152 sources."node.extend-2.0.2" 70945 71153 (sources."nomnom-1.8.1" // { 70946 71154 dependencies = [ ··· 70980 71188 asar = nodeEnv.buildNodePackage { 70981 71189 name = "asar"; 70982 71190 packageName = "asar"; 70983 - version = "3.0.3"; 71191 + version = "3.1.0"; 70984 71192 src = fetchurl { 70985 - url = "https://registry.npmjs.org/asar/-/asar-3.0.3.tgz"; 70986 - sha512 = "k7zd+KoR+n8pl71PvgElcoKHrVNiSXtw7odKbyNpmgKe7EGRF9Pnu3uLOukD37EvavKwVFxOUpqXTIZC5B5Pmw=="; 71193 + url = "https://registry.npmjs.org/asar/-/asar-3.1.0.tgz"; 71194 + sha512 = "vyxPxP5arcAqN4F/ebHd/HhwnAiZtwhglvdmc7BR2f0ywbVNTOpSeyhLDbGXtE/y58hv1oC75TaNIXutnsOZsQ=="; 70987 71195 }; 70988 71196 dependencies = [ 70989 71197 sources."@types/glob-7.1.4" 70990 71198 sources."@types/minimatch-3.0.5" 70991 - sources."@types/node-16.9.0" 71199 + sources."@types/node-16.9.4" 70992 71200 sources."balanced-match-1.0.2" 70993 71201 sources."brace-expansion-1.1.11" 70994 71202 sources."chromium-pickle-js-0.2.0" ··· 71023 71231 }; 71024 71232 dependencies = [ 71025 71233 sources."browserslist-4.17.0" 71026 - sources."caniuse-lite-1.0.30001255" 71234 + sources."caniuse-lite-1.0.30001259" 71027 71235 sources."colorette-1.4.0" 71028 - sources."electron-to-chromium-1.3.833" 71236 + sources."electron-to-chromium-1.3.845" 71029 71237 sources."escalade-3.1.1" 71030 71238 sources."fraction.js-4.1.1" 71031 - sources."node-releases-1.1.75" 71239 + sources."node-releases-1.1.76" 71032 71240 sources."normalize-range-0.1.2" 71033 71241 sources."postcss-value-parser-4.1.0" 71034 71242 ]; ··· 71052 71260 }; 71053 71261 dependencies = [ 71054 71262 sources."@tootallnate/once-1.1.2" 71055 - sources."@types/node-16.9.0" 71263 + sources."@types/node-16.9.4" 71056 71264 sources."@types/yauzl-2.9.2" 71057 71265 sources."agent-base-6.0.2" 71058 71266 sources."ansi-escapes-4.3.2" 71059 - sources."ansi-regex-5.0.0" 71267 + sources."ansi-regex-5.0.1" 71060 71268 sources."ansi-styles-4.3.0" 71061 71269 sources."ast-types-0.13.4" 71062 - (sources."aws-sdk-2.985.0" // { 71270 + (sources."aws-sdk-2.991.0" // { 71063 71271 dependencies = [ 71064 71272 sources."uuid-3.3.2" 71065 71273 ]; ··· 71088 71296 sources."clone-1.0.4" 71089 71297 sources."color-convert-2.0.1" 71090 71298 sources."color-name-1.1.4" 71091 - sources."commander-8.1.0" 71299 + sources."commander-8.2.0" 71092 71300 sources."concat-map-0.0.1" 71093 71301 sources."core-util-is-1.0.3" 71094 71302 sources."css-select-4.1.3" ··· 71144 71352 sources."inflight-1.0.6" 71145 71353 sources."inherits-2.0.4" 71146 71354 sources."ini-2.0.0" 71147 - sources."inquirer-8.1.2" 71355 + sources."inquirer-8.1.5" 71148 71356 sources."ip-1.1.5" 71149 71357 sources."is-fullwidth-code-point-3.0.0" 71150 71358 sources."is-interactive-1.0.0" ··· 71165 71373 sources."mute-stream-0.0.8" 71166 71374 sources."netmask-2.0.2" 71167 71375 sources."node-fetch-2.6.1" 71168 - sources."nth-check-2.0.0" 71376 + sources."nth-check-2.0.1" 71169 71377 sources."once-1.4.0" 71170 71378 sources."onetime-5.1.2" 71171 71379 sources."optionator-0.8.3" ··· 71188 71396 sources."proxy-from-env-1.1.0" 71189 71397 sources."pump-3.0.0" 71190 71398 sources."punycode-1.3.2" 71191 - (sources."puppeteer-10.2.0" // { 71399 + (sources."puppeteer-10.4.0" // { 71192 71400 dependencies = [ 71193 71401 sources."debug-4.3.1" 71194 71402 ]; ··· 71208 71416 sources."safer-buffer-2.1.2" 71209 71417 sources."sax-1.2.1" 71210 71418 sources."setprototypeof-1.1.1" 71211 - sources."signal-exit-3.0.3" 71419 + sources."signal-exit-3.0.4" 71212 71420 sources."smart-buffer-4.2.0" 71213 71421 sources."socks-2.6.1" 71214 71422 sources."socks-proxy-agent-5.0.1" ··· 71263 71471 balanceofsatoshis = nodeEnv.buildNodePackage { 71264 71472 name = "balanceofsatoshis"; 71265 71473 packageName = "balanceofsatoshis"; 71266 - version = "10.12.0"; 71474 + version = "10.18.1"; 71267 71475 src = fetchurl { 71268 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.12.0.tgz"; 71269 - sha512 = "G8UVRAfWYPQSJwLiw1eqh61jfDSFKt0cDEfNbTzgv9Z5X+WnaGvk/0XzHCpoqNfHqRxRO2Zf9KHkFXS007bm5A=="; 71476 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.18.1.tgz"; 71477 + sha512 = "QrMPcXaeybFz+kD4FlUr7phxJN/jSXoaxOmNtFQ+ZtPCc99m7IZFqP4Hk3Fj0OxcYHk1L1FlGN1sOoymuDaBtw=="; 71270 71478 }; 71271 71479 dependencies = [ 71272 71480 sources."@alexbosworth/html2unicode-1.1.5" 71481 + sources."@alexbosworth/node-fetch-2.6.2" 71273 71482 sources."@alexbosworth/saxophone-0.6.2" 71274 71483 sources."@cto.af/textdecoder-0.0.0" 71275 71484 (sources."@grpc/grpc-js-1.3.7" // { 71276 71485 dependencies = [ 71277 - sources."@types/node-16.9.0" 71486 + sources."@types/node-16.9.4" 71278 71487 ]; 71279 71488 }) 71280 71489 sources."@grpc/proto-loader-0.6.4" ··· 71309 71518 sources."@types/ws-7.4.7" 71310 71519 sources."abort-controller-3.0.0" 71311 71520 sources."accepts-1.3.7" 71312 - sources."ajv-8.6.2" 71521 + sources."ajv-8.6.3" 71313 71522 sources."ansi-0.3.1" 71314 71523 (sources."ansi-align-3.0.0" // { 71315 71524 dependencies = [ ··· 71372 71581 ]; 71373 71582 }) 71374 71583 sources."bolt09-0.1.5" 71375 - (sources."boxen-5.0.1" // { 71584 + (sources."boxen-5.1.2" // { 71376 71585 dependencies = [ 71377 - sources."ansi-regex-5.0.0" 71586 + sources."ansi-regex-5.0.1" 71378 71587 sources."ansi-styles-4.3.0" 71379 71588 sources."chalk-4.1.2" 71380 71589 sources."is-fullwidth-code-point-3.0.0" ··· 71400 71609 ]; 71401 71610 }) 71402 71611 sources."camelcase-6.2.0" 71403 - sources."caporal-1.4.0" 71612 + (sources."caporal-1.4.0" // { 71613 + dependencies = [ 71614 + sources."colorette-1.4.0" 71615 + ]; 71616 + }) 71404 71617 sources."cbor-8.0.0" 71405 71618 sources."cert-info-1.5.1" 71406 71619 (sources."chalk-1.1.3" // { ··· 71419 71632 sources."cli-width-2.2.1" 71420 71633 (sources."cliui-7.0.4" // { 71421 71634 dependencies = [ 71422 - sources."ansi-regex-5.0.0" 71635 + sources."ansi-regex-5.0.1" 71423 71636 sources."is-fullwidth-code-point-3.0.0" 71424 71637 sources."string-width-4.2.2" 71425 71638 sources."strip-ansi-6.0.0" ··· 71430 71643 sources."code-point-at-1.1.0" 71431 71644 sources."color-convert-2.0.1" 71432 71645 sources."color-name-1.1.4" 71433 - sources."colorette-1.3.0" 71646 + sources."colorette-2.0.2" 71434 71647 sources."colors-1.4.0" 71435 71648 sources."combined-stream-1.0.8" 71436 71649 sources."commander-6.2.1" ··· 71535 71748 sources."imurmurhash-0.1.4" 71536 71749 sources."inherits-2.0.4" 71537 71750 sources."ini-2.0.0" 71538 - (sources."inquirer-8.1.2" // { 71751 + (sources."inquirer-8.1.5" // { 71539 71752 dependencies = [ 71540 71753 sources."ansi-escapes-4.3.2" 71541 - sources."ansi-regex-5.0.0" 71754 + sources."ansi-regex-5.0.1" 71542 71755 sources."ansi-styles-4.3.0" 71543 71756 sources."chalk-4.1.2" 71544 71757 sources."cli-cursor-3.1.0" ··· 71598 71811 sources."bn.js-5.2.0" 71599 71812 ]; 71600 71813 }) 71601 - sources."ln-accounting-5.0.1" 71602 - (sources."ln-service-52.1.0" // { 71814 + (sources."ln-accounting-5.0.3" // { 71603 71815 dependencies = [ 71604 - sources."@types/node-16.7.6" 71816 + sources."@grpc/proto-loader-0.6.5" 71817 + sources."@types/node-16.9.1" 71605 71818 sources."bn.js-5.2.0" 71606 - sources."lightning-4.2.1" 71607 - sources."ws-8.2.1" 71819 + sources."lightning-4.5.0" 71820 + sources."ln-service-52.4.0" 71821 + sources."ws-8.2.2" 71608 71822 ]; 71609 71823 }) 71610 - (sources."ln-sync-0.4.7" // { 71824 + (sources."ln-service-52.6.0" // { 71611 71825 dependencies = [ 71612 - sources."@grpc/grpc-js-1.3.6" 71613 - sources."@types/node-16.3.3" 71614 - sources."@types/request-2.48.6" 71615 - sources."async-3.2.0" 71826 + sources."@grpc/proto-loader-0.6.5" 71827 + sources."@types/node-16.9.1" 71828 + sources."bn.js-5.2.0" 71829 + sources."lightning-4.7.0" 71830 + sources."ws-8.2.2" 71831 + ]; 71832 + }) 71833 + (sources."ln-sync-2.0.1" // { 71834 + dependencies = [ 71835 + sources."@grpc/proto-loader-0.6.5" 71836 + sources."@types/node-16.9.1" 71616 71837 sources."bn.js-5.2.0" 71617 - sources."cbor-7.0.6" 71618 - sources."colorette-1.2.2" 71619 - sources."lightning-3.4.0" 71620 - sources."nofilter-2.0.3" 71838 + sources."lightning-4.7.0" 71621 71839 ]; 71622 71840 }) 71623 - (sources."ln-telegram-3.2.11" // { 71841 + (sources."ln-telegram-3.3.0" // { 71624 71842 dependencies = [ 71843 + sources."@grpc/proto-loader-0.6.5" 71625 71844 sources."@types/node-16.6.1" 71626 - sources."bech32-2.0.0" 71627 71845 sources."bn.js-5.2.0" 71628 - sources."goldengate-10.3.0" 71846 + sources."colorette-1.4.0" 71629 71847 sources."lightning-4.1.0" 71630 71848 sources."ln-service-52.0.1" 71849 + (sources."ln-sync-2.0.0" // { 71850 + dependencies = [ 71851 + sources."@types/node-16.9.1" 71852 + sources."lightning-4.6.0" 71853 + ]; 71854 + }) 71631 71855 sources."ws-8.1.0" 71632 71856 ]; 71633 71857 }) ··· 71686 71910 sources."negotiator-0.6.2" 71687 71911 sources."node-addon-api-2.0.2" 71688 71912 sources."node-fetch-2.6.1" 71689 - sources."node-gyp-build-4.2.3" 71913 + sources."node-gyp-build-4.3.0" 71690 71914 sources."nofilter-3.0.3" 71691 71915 sources."normalize-url-4.5.1" 71692 71916 sources."npmlog-2.0.4" ··· 71698 71922 sources."onetime-1.1.0" 71699 71923 (sources."ora-5.4.1" // { 71700 71924 dependencies = [ 71701 - sources."ansi-regex-5.0.0" 71925 + sources."ansi-regex-5.0.1" 71702 71926 sources."ansi-styles-4.3.0" 71703 71927 sources."chalk-4.1.2" 71704 71928 sources."cli-cursor-3.1.0" ··· 71717 71941 sources."semver-6.3.0" 71718 71942 ]; 71719 71943 }) 71720 - (sources."paid-services-2.0.1" // { 71721 - dependencies = [ 71722 - sources."@grpc/grpc-js-1.3.4" 71723 - sources."@grpc/proto-loader-0.6.3" 71724 - sources."@types/express-4.17.12" 71725 - sources."@types/node-15.12.5" 71726 - sources."@types/request-2.48.5" 71727 - sources."@types/ws-7.4.5" 71728 - sources."async-3.2.0" 71729 - sources."bn.js-5.2.0" 71730 - sources."cbor-7.0.5" 71731 - sources."lightning-3.3.12" 71732 - sources."ln-service-51.8.5" 71733 - sources."nofilter-2.0.3" 71734 - sources."ws-7.5.0" 71735 - ]; 71736 - }) 71944 + sources."paid-services-3.0.0" 71737 71945 sources."parseurl-1.3.3" 71738 71946 sources."path-to-regexp-0.1.7" 71739 71947 sources."pinkie-2.0.4" ··· 71762 71970 sources."process-nextick-args-2.0.1" 71763 71971 (sources."protobufjs-6.11.2" // { 71764 71972 dependencies = [ 71765 - sources."@types/node-16.9.0" 71973 + sources."@types/node-16.9.4" 71766 71974 ]; 71767 71975 }) 71768 71976 sources."proxy-addr-2.0.7" ··· 71816 72024 sources."serve-static-1.14.1" 71817 72025 sources."setprototypeof-1.1.1" 71818 72026 sources."sha.js-2.4.11" 71819 - sources."signal-exit-3.0.3" 72027 + sources."signal-exit-3.0.4" 71820 72028 sources."sjcl-1.0.8" 71821 72029 (sources."slice-ansi-4.0.0" // { 71822 72030 dependencies = [ ··· 71835 72043 sources."supports-color-2.0.0" 71836 72044 (sources."table-6.7.1" // { 71837 72045 dependencies = [ 71838 - sources."ansi-regex-5.0.0" 72046 + sources."ansi-regex-5.0.1" 71839 72047 sources."is-fullwidth-code-point-3.0.0" 71840 72048 sources."string-width-4.2.2" 71841 72049 sources."strip-ansi-6.0.0" ··· 71850 72058 sources."strip-ansi-3.0.1" 71851 72059 ]; 71852 72060 }) 71853 - (sources."telegraf-4.4.1" // { 72061 + (sources."telegraf-4.4.2" // { 71854 72062 dependencies = [ 71855 72063 sources."debug-4.3.2" 71856 72064 sources."ms-2.1.2" ··· 71892 72100 sources."wcwidth-1.0.1" 71893 72101 (sources."widest-line-3.1.0" // { 71894 72102 dependencies = [ 71895 - sources."ansi-regex-5.0.0" 72103 + sources."ansi-regex-5.0.1" 71896 72104 sources."is-fullwidth-code-point-3.0.0" 71897 72105 sources."string-width-4.2.2" 71898 72106 sources."strip-ansi-6.0.0" ··· 71908 72116 }) 71909 72117 (sources."wrap-ansi-7.0.0" // { 71910 72118 dependencies = [ 71911 - sources."ansi-regex-5.0.0" 72119 + sources."ansi-regex-5.0.1" 71912 72120 sources."ansi-styles-4.3.0" 71913 72121 sources."is-fullwidth-code-point-3.0.0" 71914 72122 sources."string-width-4.2.2" ··· 71923 72131 sources."yallist-4.0.0" 71924 72132 (sources."yargs-16.2.0" // { 71925 72133 dependencies = [ 71926 - sources."ansi-regex-5.0.0" 72134 + sources."ansi-regex-5.0.1" 71927 72135 sources."is-fullwidth-code-point-3.0.0" 71928 72136 sources."string-width-4.2.2" 71929 72137 sources."strip-ansi-6.0.0" ··· 72184 72392 sources."safe-buffer-5.1.2" 72185 72393 sources."semver-5.7.1" 72186 72394 sources."set-blocking-2.0.0" 72187 - sources."signal-exit-3.0.3" 72395 + sources."signal-exit-3.0.4" 72188 72396 sources."simple-concat-1.0.1" 72189 72397 sources."simple-get-3.1.0" 72190 72398 sources."state-toggle-1.0.3" ··· 72331 72539 sources."loud-rejection-1.6.0" 72332 72540 sources."map-obj-1.0.1" 72333 72541 sources."meow-3.7.0" 72334 - sources."mime-db-1.49.0" 72542 + sources."mime-db-1.50.0" 72335 72543 sources."minimatch-3.0.4" 72336 72544 sources."minimist-1.2.5" 72337 72545 sources."mkdirp-0.5.5" ··· 72366 72574 ]; 72367 72575 }) 72368 72576 sources."semver-5.7.1" 72369 - sources."signal-exit-3.0.3" 72577 + sources."signal-exit-3.0.4" 72370 72578 sources."sort-keys-1.1.2" 72371 72579 sources."sort-keys-length-1.0.1" 72372 72580 sources."spdx-correct-3.1.1" ··· 72639 72847 }; 72640 72848 dependencies = [ 72641 72849 sources."@babel/code-frame-7.14.5" 72642 - sources."@babel/helper-validator-identifier-7.14.9" 72850 + sources."@babel/helper-validator-identifier-7.15.7" 72643 72851 sources."@babel/highlight-7.14.5" 72644 - sources."@babel/parser-7.15.5" 72645 - sources."@babel/types-7.15.4" 72852 + sources."@babel/parser-7.15.7" 72853 + sources."@babel/types-7.15.6" 72646 72854 sources."@kwsites/file-exists-1.1.1" 72647 72855 sources."@kwsites/promise-deferred-1.1.1" 72648 72856 sources."@types/minimist-1.2.2" ··· 72805 73013 ]; 72806 73014 }) 72807 73015 sources."find-up-4.1.0" 72808 - sources."follow-redirects-1.14.3" 73016 + sources."follow-redirects-1.14.4" 72809 73017 sources."forever-agent-0.6.1" 72810 73018 sources."form-data-2.3.3" 72811 73019 sources."forwarded-0.2.0" ··· 72874 73082 sources."locate-path-5.0.0" 72875 73083 sources."lodash-4.17.21" 72876 73084 sources."lru-cache-6.0.0" 72877 - sources."map-obj-4.2.1" 73085 + sources."map-obj-4.3.0" 72878 73086 (sources."markdown-it-12.2.0" // { 72879 73087 dependencies = [ 72880 73088 sources."argparse-2.0.1" ··· 73103 73311 sources."@protobufjs/pool-1.1.0" 73104 73312 sources."@protobufjs/utf8-1.1.0" 73105 73313 sources."@types/long-4.0.1" 73106 - sources."@types/node-16.9.0" 73314 + sources."@types/node-16.9.4" 73107 73315 sources."addr-to-ip-port-1.5.4" 73108 73316 sources."airplay-js-0.2.16" 73109 73317 sources."ajv-6.12.6" ··· 73165 73373 sources."co-3.1.0" 73166 73374 sources."codepage-1.4.0" 73167 73375 sources."combined-stream-1.0.8" 73168 - sources."commander-8.1.0" 73376 + sources."commander-8.2.0" 73169 73377 sources."compact2string-1.4.1" 73170 73378 sources."concat-map-0.0.1" 73171 73379 (sources."concat-stream-2.0.0" // { ··· 73400 73608 sources."safer-buffer-2.1.2" 73401 73609 sources."sax-1.2.4" 73402 73610 sources."semver-5.7.1" 73403 - sources."signal-exit-3.0.3" 73611 + sources."signal-exit-3.0.4" 73404 73612 sources."simple-concat-1.0.1" 73405 73613 sources."simple-get-2.8.1" 73406 73614 (sources."simple-peer-6.4.4" // { ··· 73508 73716 cdk8s-cli = nodeEnv.buildNodePackage { 73509 73717 name = "cdk8s-cli"; 73510 73718 packageName = "cdk8s-cli"; 73511 - version = "1.0.0-beta.50"; 73719 + version = "1.0.0-beta.52"; 73512 73720 src = fetchurl { 73513 - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.50.tgz"; 73514 - sha512 = "KLvdcMqAYTbrMp4ru2m5/a5pATm6Jf5yMuXmkRTI8MgCG4iVMeSOFAfZMqWpDr9OGHOTx+7Gn1ryC1hBHqYMYw=="; 73721 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.52.tgz"; 73722 + sha512 = "fpmL+BLmLgsNcgf7Nv/zBMZqnk0A2s64ij2Ets/CNplXuP2H+ZK8T7pWKGRPIC1smNQngHkz89RyeK7TQuX8bg=="; 73515 73723 }; 73516 73724 dependencies = [ 73517 73725 sources."@jsii/check-node-1.34.0" 73518 73726 sources."@jsii/spec-1.34.0" 73519 - sources."@types/node-12.20.24" 73520 - sources."@xmldom/xmldom-0.7.4" 73521 - sources."ansi-regex-5.0.0" 73727 + sources."@types/node-12.20.25" 73728 + sources."@xmldom/xmldom-0.7.5" 73729 + sources."ajv-8.6.3" 73730 + sources."ansi-regex-5.0.1" 73522 73731 sources."ansi-styles-4.3.0" 73523 73732 sources."at-least-node-1.0.0" 73524 73733 sources."available-typed-arrays-1.0.5" 73525 73734 sources."call-bind-1.0.2" 73526 73735 sources."camelcase-6.2.0" 73527 73736 sources."case-1.6.3" 73528 - sources."cdk8s-1.0.0-beta.30" 73529 - sources."cdk8s-plus-17-1.0.0-beta.57" 73737 + sources."cdk8s-1.0.0-beta.46" 73738 + sources."cdk8s-plus-17-1.0.0-beta.74" 73530 73739 sources."chalk-4.1.2" 73531 73740 sources."cliui-7.0.4" 73532 73741 sources."clone-2.1.2" ··· 73539 73748 sources."color-name-1.1.4" 73540 73749 sources."colors-1.4.0" 73541 73750 sources."commonmark-0.30.0" 73542 - sources."constructs-3.3.147" 73751 + sources."constructs-3.3.149" 73543 73752 sources."date-format-3.0.0" 73544 73753 sources."debug-4.3.2" 73545 73754 sources."decamelize-5.0.0" ··· 73555 73764 sources."es-to-primitive-1.2.1" 73556 73765 sources."escalade-3.1.1" 73557 73766 sources."escape-string-regexp-4.0.0" 73767 + sources."fast-deep-equal-3.1.3" 73558 73768 sources."find-up-4.1.0" 73559 73769 sources."flatted-2.0.2" 73560 73770 sources."foreach-2.0.5" ··· 73616 73826 sources."yargs-16.2.0" 73617 73827 ]; 73618 73828 }) 73619 - (sources."jsii-srcmak-0.1.341" // { 73829 + (sources."jsii-srcmak-0.1.350" // { 73620 73830 dependencies = [ 73621 73831 sources."fs-extra-9.1.0" 73622 73832 ]; 73623 73833 }) 73624 73834 sources."json-schema-0.3.0" 73625 - sources."json2jsii-0.2.17" 73835 + sources."json-schema-traverse-1.0.0" 73836 + sources."json2jsii-0.2.26" 73626 73837 sources."jsonfile-6.1.0" 73627 73838 sources."jsonschema-1.4.0" 73628 73839 sources."locate-path-5.0.0" ··· 73643 73854 sources."p-locate-4.1.0" 73644 73855 sources."p-try-2.2.0" 73645 73856 sources."path-exists-4.0.0" 73857 + sources."punycode-2.1.1" 73646 73858 sources."regexp.prototype.flags-1.3.1" 73647 73859 sources."require-directory-2.1.1" 73860 + sources."require-from-string-2.0.2" 73648 73861 sources."require-main-filename-2.0.0" 73649 73862 sources."rfdc-1.3.0" 73650 73863 sources."semver-7.3.5" ··· 73658 73871 sources."snake-case-3.0.4" 73659 73872 sources."sort-json-2.0.0" 73660 73873 sources."spdx-license-list-6.4.0" 73661 - sources."sscaff-1.2.63" 73874 + sources."sscaff-1.2.72" 73662 73875 (sources."streamroller-2.2.4" // { 73663 73876 dependencies = [ 73664 73877 sources."date-format-2.1.0" ··· 73674 73887 sources."typescript-3.9.10" 73675 73888 sources."unbox-primitive-1.0.1" 73676 73889 sources."universalify-2.0.0" 73890 + sources."uri-js-4.4.1" 73677 73891 sources."which-boxed-primitive-1.0.2" 73678 73892 sources."which-collection-1.0.1" 73679 73893 sources."which-module-2.0.0" ··· 73682 73896 sources."xmlbuilder-15.1.1" 73683 73897 sources."y18n-5.0.8" 73684 73898 sources."yallist-4.0.0" 73685 - sources."yaml-1.10.2" 73899 + sources."yaml-2.0.0-8" 73686 73900 (sources."yargs-15.4.1" // { 73687 73901 dependencies = [ 73688 73902 sources."camelcase-5.3.1" ··· 73707 73921 cdktf-cli = nodeEnv.buildNodePackage { 73708 73922 name = "cdktf-cli"; 73709 73923 packageName = "cdktf-cli"; 73710 - version = "0.5.0"; 73924 + version = "0.6.2"; 73711 73925 src = fetchurl { 73712 - url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.5.0.tgz"; 73713 - sha512 = "53HldFlYJdptaQ9yZyx8xuN0pxmBwI7yaVImmPwGmauoOYWsO89YrAjyPIiAaR+GWI8avbQeg3jz5Z1Q+MoIGA=="; 73926 + url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.6.2.tgz"; 73927 + sha512 = "Wjwl2i/KE52uuDqaALmcIKGrAlmPdzbWxH9R5EqBUtUi/Haj8HGjSwUm9A2ZQ1qVZw39ppRp0K5Gz/WgEPjrvA=="; 73714 73928 }; 73715 73929 dependencies = [ 73716 - sources."@apollo/client-3.4.10" 73930 + sources."@apollo/client-3.4.13" 73717 73931 (sources."@apollo/protobufjs-1.2.2" // { 73718 73932 dependencies = [ 73719 73933 sources."@types/node-10.17.60" ··· 73728 73942 }) 73729 73943 sources."@babel/code-frame-7.14.5" 73730 73944 sources."@babel/generator-7.15.4" 73731 - sources."@babel/helper-validator-identifier-7.14.9" 73945 + sources."@babel/helper-validator-identifier-7.15.7" 73732 73946 (sources."@babel/highlight-7.14.5" // { 73733 73947 dependencies = [ 73734 73948 sources."chalk-2.4.2" 73735 73949 ]; 73736 73950 }) 73737 - sources."@babel/parser-7.15.5" 73951 + sources."@babel/parser-7.15.7" 73738 73952 sources."@babel/template-7.15.4" 73739 - sources."@babel/types-7.15.4" 73740 - sources."@cdktf/hcl2cdk-0.5.0" 73741 - sources."@cdktf/hcl2json-0.5.0" 73953 + sources."@babel/types-7.15.6" 73954 + sources."@cdktf/hcl2cdk-0.6.2" 73955 + sources."@cdktf/hcl2json-0.6.2" 73742 73956 (sources."@graphql-tools/graphql-file-loader-6.2.7" // { 73743 73957 dependencies = [ 73744 73958 sources."tslib-2.1.0" ··· 73778 73992 sources."@nodelib/fs.scandir-2.1.5" 73779 73993 sources."@nodelib/fs.stat-2.0.5" 73780 73994 sources."@nodelib/fs.walk-1.2.8" 73995 + sources."@npmcli/ci-detect-1.3.0" 73781 73996 sources."@protobufjs/aspromise-1.1.2" 73782 73997 sources."@protobufjs/base64-1.1.2" 73783 73998 sources."@protobufjs/codegen-2.0.4" ··· 73798 74013 sources."@types/express-serve-static-core-4.17.24" 73799 74014 sources."@types/long-4.0.1" 73800 74015 sources."@types/mime-1.3.2" 73801 - sources."@types/node-14.17.15" 74016 + sources."@types/node-14.17.17" 73802 74017 sources."@types/node-fetch-2.5.12" 73803 74018 sources."@types/qs-6.9.7" 73804 74019 sources."@types/range-parser-1.2.4" 73805 74020 sources."@types/serve-static-1.13.10" 73806 74021 sources."@types/yauzl-2.9.2" 73807 74022 sources."@types/yoga-layout-1.9.2" 74023 + sources."@types/zen-observable-0.8.3" 73808 74024 sources."@wry/context-0.6.1" 73809 74025 sources."@wry/equality-0.5.2" 73810 74026 sources."@wry/trie-0.3.1" 73811 - sources."@xmldom/xmldom-0.7.4" 74027 + sources."@xmldom/xmldom-0.7.5" 73812 74028 sources."accepts-1.3.7" 73813 74029 sources."address-1.1.2" 73814 74030 (sources."ansi-escapes-4.3.2" // { ··· 73816 74032 sources."type-fest-0.21.3" 73817 74033 ]; 73818 74034 }) 73819 - sources."ansi-regex-5.0.0" 74035 + sources."ansi-regex-5.0.1" 73820 74036 sources."ansi-styles-3.2.1" 73821 74037 (sources."anymatch-3.1.2" // { 73822 74038 dependencies = [ ··· 73875 74091 ]; 73876 74092 }) 73877 74093 sources."case-1.6.3" 73878 - sources."cdktf-0.5.0" 74094 + sources."cdktf-0.6.2" 73879 74095 (sources."chalk-4.1.2" // { 73880 74096 dependencies = [ 73881 74097 sources."ansi-styles-4.3.0" ··· 73917 74133 ]; 73918 74134 }) 73919 74135 sources."concat-map-0.0.1" 73920 - sources."constructs-3.3.147" 74136 + sources."constructs-10.0.5" 73921 74137 (sources."content-disposition-0.5.3" // { 73922 74138 dependencies = [ 73923 74139 sources."safe-buffer-5.1.2" ··· 73927 74143 sources."convert-to-spaces-1.0.2" 73928 74144 sources."cookie-0.4.0" 73929 74145 sources."cookie-signature-1.0.6" 73930 - sources."core-js-pure-3.17.3" 74146 + sources."core-js-pure-3.18.0" 73931 74147 sources."core-util-is-1.0.3" 73932 74148 sources."cors-2.8.5" 73933 74149 sources."crc-32-1.2.0" ··· 73939 74155 }) 73940 74156 sources."cross-spawn-7.0.3" 73941 74157 sources."cssfilter-0.0.10" 73942 - sources."date-fns-2.23.0" 74158 + sources."date-fns-2.24.0" 73943 74159 sources."date-format-3.0.0" 73944 74160 sources."debug-2.6.9" 73945 74161 sources."decamelize-1.2.0" ··· 73993 74209 }) 73994 74210 sources."fast-glob-3.2.7" 73995 74211 sources."fast-json-stable-stringify-2.1.0" 73996 - sources."fastq-1.12.0" 74212 + sources."fastq-1.13.0" 73997 74213 sources."fd-slicer-1.1.0" 73998 74214 sources."figures-3.2.0" 73999 74215 sources."fill-range-7.0.1" 74000 74216 sources."finalhandler-1.1.2" 74001 74217 sources."find-up-4.1.0" 74002 74218 sources."flatted-2.0.2" 74003 - sources."follow-redirects-1.14.3" 74219 + sources."follow-redirects-1.14.4" 74004 74220 sources."foreach-2.0.5" 74005 74221 sources."form-data-3.0.1" 74006 74222 sources."forwarded-0.2.0" ··· 74024 74240 sources."globby-11.0.3" 74025 74241 sources."graceful-fs-4.2.8" 74026 74242 sources."graphology-0.20.0" 74027 - sources."graphology-types-0.19.4" 74028 - sources."graphql-15.5.3" 74243 + sources."graphology-types-0.19.5" 74244 + sources."graphql-15.6.0" 74029 74245 sources."graphql-subscriptions-1.2.1" 74030 74246 sources."graphql-tag-2.12.5" 74031 74247 sources."has-1.0.3" ··· 74059 74275 sources."ink-spinner-4.0.2" 74060 74276 sources."ink-text-input-4.0.1" 74061 74277 sources."ink-use-stdout-dimensions-1.0.5" 74062 - sources."inquirer-8.1.2" 74278 + sources."inquirer-8.1.5" 74063 74279 sources."internal-slot-1.0.3" 74064 74280 sources."ipaddr.js-1.9.1" 74065 74281 sources."is-arguments-1.1.1" ··· 74122 74338 sources."yargs-16.2.0" 74123 74339 ]; 74124 74340 }) 74125 - (sources."jsii-srcmak-0.1.341" // { 74341 + (sources."jsii-srcmak-0.1.350" // { 74126 74342 dependencies = [ 74343 + sources."ansi-styles-4.3.0" 74344 + sources."camelcase-5.3.1" 74345 + sources."cliui-6.0.0" 74346 + sources."color-convert-2.0.1" 74347 + sources."color-name-1.1.4" 74127 74348 sources."fs-extra-9.1.0" 74349 + sources."wrap-ansi-6.2.0" 74350 + sources."y18n-4.0.3" 74351 + sources."yargs-15.4.1" 74352 + sources."yargs-parser-18.1.3" 74128 74353 ]; 74129 74354 }) 74130 74355 sources."jsonfile-6.1.0" ··· 74156 74381 sources."loose-envify-1.4.0" 74157 74382 sources."lower-case-2.0.2" 74158 74383 sources."lru-cache-6.0.0" 74159 - sources."map-obj-4.2.1" 74384 + sources."map-obj-4.3.0" 74160 74385 sources."mdurl-1.0.1" 74161 74386 sources."media-typer-0.3.0" 74162 74387 sources."merge-descriptors-1.0.1" ··· 74175 74400 sources."ncp-2.0.0" 74176 74401 sources."negotiator-0.6.2" 74177 74402 sources."no-case-3.0.4" 74178 - sources."node-fetch-2.6.2" 74403 + sources."node-fetch-2.6.4" 74179 74404 sources."normalize-path-2.1.1" 74180 74405 sources."npm-run-path-4.0.1" 74181 74406 sources."object-assign-4.1.1" ··· 74210 74435 sources."path-type-4.0.0" 74211 74436 sources."pend-1.2.0" 74212 74437 sources."picomatch-2.3.0" 74213 - sources."prettier-2.4.0" 74438 + sources."prettier-2.4.1" 74214 74439 sources."printj-1.1.2" 74215 74440 sources."process-nextick-args-2.0.1" 74216 74441 sources."prop-types-15.7.2" ··· 74268 74493 sources."shebang-regex-3.0.0" 74269 74494 sources."shell-quote-1.7.2" 74270 74495 sources."side-channel-1.0.4" 74271 - sources."signal-exit-3.0.3" 74496 + sources."signal-exit-3.0.4" 74272 74497 sources."slash-3.0.0" 74273 74498 (sources."slice-ansi-3.0.0" // { 74274 74499 dependencies = [ ··· 74280 74505 sources."sort-json-2.0.0" 74281 74506 sources."source-map-0.5.7" 74282 74507 sources."spdx-license-list-6.4.0" 74283 - sources."sscaff-1.2.63" 74284 - (sources."stack-utils-2.0.3" // { 74508 + sources."sscaff-1.2.72" 74509 + (sources."stack-utils-2.0.5" // { 74285 74510 dependencies = [ 74286 74511 sources."escape-string-regexp-2.0.0" 74287 74512 ]; ··· 74319 74544 sources."to-fast-properties-2.0.0" 74320 74545 sources."to-regex-range-5.0.1" 74321 74546 sources."toidentifier-1.0.0" 74322 - sources."ts-invariant-0.9.1" 74547 + sources."tr46-0.0.3" 74548 + sources."ts-invariant-0.9.3" 74323 74549 sources."tslib-2.3.1" 74324 74550 sources."type-fest-0.15.1" 74325 74551 sources."type-is-1.6.18" ··· 74336 74562 sources."value-or-promise-1.0.10" 74337 74563 sources."vary-1.1.2" 74338 74564 sources."wcwidth-1.0.1" 74565 + sources."webidl-conversions-3.0.1" 74566 + sources."whatwg-url-5.0.0" 74339 74567 sources."which-2.0.2" 74340 74568 sources."which-boxed-primitive-1.0.2" 74341 74569 sources."which-collection-1.0.1" ··· 74355 74583 sources."xss-1.0.9" 74356 74584 sources."y18n-5.0.8" 74357 74585 sources."yallist-4.0.0" 74358 - (sources."yargs-15.4.1" // { 74359 - dependencies = [ 74360 - sources."ansi-styles-4.3.0" 74361 - sources."camelcase-5.3.1" 74362 - sources."cliui-6.0.0" 74363 - sources."color-convert-2.0.1" 74364 - sources."color-name-1.1.4" 74365 - sources."wrap-ansi-6.2.0" 74366 - sources."y18n-4.0.3" 74367 - sources."yargs-parser-18.1.3" 74368 - ]; 74369 - }) 74586 + sources."yargs-17.1.1" 74370 74587 sources."yargs-parser-20.2.9" 74371 74588 sources."yauzl-2.10.0" 74372 74589 sources."yn-3.1.1" 74373 74590 sources."yocto-queue-0.1.0" 74374 74591 sources."yoga-layout-prebuilt-1.10.0" 74375 74592 sources."zen-observable-0.8.15" 74376 - sources."zen-observable-ts-1.2.2" 74593 + sources."zen-observable-ts-1.1.0" 74377 74594 sources."zip-stream-4.1.0" 74378 74595 sources."zod-1.11.17" 74379 74596 ]; ··· 74492 74709 sources."semver-5.7.1" 74493 74710 sources."shebang-command-1.2.0" 74494 74711 sources."shebang-regex-1.0.0" 74495 - sources."signal-exit-3.0.3" 74712 + sources."signal-exit-3.0.4" 74496 74713 sources."spdx-correct-3.1.1" 74497 74714 sources."spdx-exceptions-2.3.0" 74498 74715 sources."spdx-expression-parse-3.0.1" ··· 74586 74803 coc-clangd = nodeEnv.buildNodePackage { 74587 74804 name = "coc-clangd"; 74588 74805 packageName = "coc-clangd"; 74589 - version = "0.14.1"; 74806 + version = "0.15.1"; 74590 74807 src = fetchurl { 74591 - url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.14.1.tgz"; 74592 - sha512 = "VhEqQMIWrFtF+qzA03kLfwU7fX9f3qIVWltTk4Gc3QLqcIM0qtmpqnSRS7x/jRtbh/kLk2ckuwupQE59sTigCQ=="; 74808 + url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.15.1.tgz"; 74809 + sha512 = "3ufaAOdcVDG1c6L7MlbPl2CMKpJeZvxh2rgz10EVGxbelreyKdoO+m66c+LT5ZydTwJZl86+CMOVFOK/YiAwQQ=="; 74593 74810 }; 74594 74811 buildInputs = globalBuildInputs; 74595 74812 meta = { ··· 74604 74821 coc-cmake = nodeEnv.buildNodePackage { 74605 74822 name = "coc-cmake"; 74606 74823 packageName = "coc-cmake"; 74607 - version = "0.1.1"; 74824 + version = "0.2.0"; 74608 74825 src = fetchurl { 74609 - url = "https://registry.npmjs.org/coc-cmake/-/coc-cmake-0.1.1.tgz"; 74610 - sha512 = "1cWC11FqQG6qUNi08xIBgojxR/Q4P2dCbcvVAQup4moCXYpTwF1YdtRmdLNBY6mpSw/5U7A1Sh/8FffrxIgj7A=="; 74826 + url = "https://registry.npmjs.org/coc-cmake/-/coc-cmake-0.2.0.tgz"; 74827 + sha512 = "hRCKiKikjEIUNrfBeb0IdbL3vvlU4inXtSOntfJF2Uhwv2V/KorK0KxdGeg6CTl6b0hhA53nieJaxQZSNVLfUA=="; 74611 74828 }; 74612 74829 buildInputs = globalBuildInputs; 74613 74830 meta = { ··· 74760 74977 sources."semver-6.3.0" 74761 74978 sources."shebang-command-2.0.0" 74762 74979 sources."shebang-regex-3.0.0" 74763 - sources."signal-exit-3.0.3" 74980 + sources."signal-exit-3.0.4" 74764 74981 sources."slash-1.0.0" 74765 74982 sources."strip-final-newline-2.0.0" 74766 74983 sources."trash-7.2.0" ··· 74809 75026 }; 74810 75027 dependencies = [ 74811 75028 sources."isexe-2.0.0" 74812 - sources."node-fetch-2.6.2" 75029 + sources."node-fetch-2.6.4" 75030 + sources."tr46-0.0.3" 74813 75031 sources."tslib-2.3.1" 74814 75032 sources."vscode-languageserver-textdocument-1.0.1" 74815 75033 sources."vscode-uri-3.0.2" 75034 + sources."webidl-conversions-3.0.1" 75035 + sources."whatwg-url-5.0.0" 74816 75036 sources."which-2.0.2" 74817 75037 ]; 74818 75038 buildInputs = globalBuildInputs; ··· 74850 75070 sha512 = "7SHQYzpRKPrpaLcTm1UUk1zu9VvFEJKFqxwDIuqv/CL0cBTtEvlsfpVh9DOaMHlZPu8U8Lgyf04bHV/sFS1zJw=="; 74851 75071 }; 74852 75072 dependencies = [ 74853 - sources."typescript-4.4.2" 75073 + sources."typescript-4.4.3" 74854 75074 ]; 74855 75075 buildInputs = globalBuildInputs; 74856 75076 meta = { ··· 74995 75215 coc-metals = nodeEnv.buildNodePackage { 74996 75216 name = "coc-metals"; 74997 75217 packageName = "coc-metals"; 74998 - version = "1.0.8"; 75218 + version = "1.0.9"; 74999 75219 src = fetchurl { 75000 - url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.8.tgz"; 75001 - sha512 = "ruCWV8SWSngpJFZrwghzi2yVVZ+Pa0o0vsNN106GlhMFgjtV+YudjVsPw7gH9NLBU77Zlpya4vtxP3AhgGfQ2w=="; 75220 + url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.9.tgz"; 75221 + sha512 = "xy7flhVZAMTJbFVlZixkJ670aQqUSHGlw+jCU3+oSTCvd7QxYnWCHAEwmNXRwtndBoJlVh17ZvAiJsW802gCPg=="; 75002 75222 }; 75003 75223 dependencies = [ 75004 75224 sources."@chemzqm/neovim-5.4.0" ··· 75008 75228 sources."async-2.6.3" 75009 75229 sources."await-semaphore-0.1.3" 75010 75230 sources."balanced-match-1.0.2" 75011 - sources."big-integer-1.6.48" 75231 + sources."big-integer-1.6.49" 75012 75232 sources."binary-0.3.0" 75013 75233 sources."bluebird-3.4.7" 75014 75234 sources."brace-expansion-1.1.11" ··· 75044 75264 sources."fast-diff-1.2.0" 75045 75265 sources."fb-watchman-2.0.1" 75046 75266 sources."flatted-2.0.2" 75047 - sources."follow-redirects-1.14.3" 75048 - sources."fp-ts-2.11.1" 75267 + sources."follow-redirects-1.14.4" 75268 + sources."fp-ts-2.11.3" 75049 75269 sources."fs-extra-8.1.0" 75050 75270 sources."fs-minipass-2.1.0" 75051 75271 sources."fs.realpath-1.0.0" ··· 75102 75322 sources."metals-languageclient-0.4.2" 75103 75323 sources."minimatch-3.0.4" 75104 75324 sources."minimist-1.2.5" 75105 - sources."minipass-3.1.3" 75325 + sources."minipass-3.1.5" 75106 75326 sources."minizlib-2.1.2" 75107 75327 sources."mkdirp-1.0.4" 75108 75328 sources."ms-2.1.2" ··· 75116 75336 }) 75117 75337 sources."ncp-2.0.0" 75118 75338 sources."nice-try-1.0.5" 75119 - sources."node-fetch-2.6.2" 75339 + sources."node-fetch-2.6.4" 75120 75340 sources."node-int64-0.4.0" 75121 75341 sources."npm-run-path-2.0.2" 75122 75342 sources."object-inspect-1.11.0" ··· 75142 75362 sources."shebang-regex-1.0.0" 75143 75363 sources."shell-quote-1.7.2" 75144 75364 sources."side-channel-1.0.4" 75145 - sources."signal-exit-3.0.3" 75365 + sources."signal-exit-3.0.4" 75146 75366 (sources."streamroller-2.2.4" // { 75147 75367 dependencies = [ 75148 75368 sources."date-format-2.1.0" ··· 75154 75374 sources."strip-eof-1.0.0" 75155 75375 sources."strip-json-comments-2.0.1" 75156 75376 sources."tar-6.1.11" 75377 + sources."tr46-0.0.3" 75157 75378 sources."traverse-0.3.9" 75158 75379 sources."tslib-2.3.1" 75159 75380 sources."unbox-primitive-1.0.1" ··· 75170 75391 sources."vscode-languageserver-textdocument-1.0.1" 75171 75392 sources."vscode-languageserver-types-3.16.0" 75172 75393 sources."vscode-uri-2.1.2" 75394 + sources."webidl-conversions-3.0.1" 75395 + sources."whatwg-url-5.0.0" 75173 75396 sources."which-2.0.2" 75174 75397 sources."which-boxed-primitive-1.0.2" 75175 75398 sources."wrappy-1.0.2" ··· 75212 75435 }; 75213 75436 dependencies = [ 75214 75437 sources."@babel/code-frame-7.12.11" 75215 - sources."@babel/helper-validator-identifier-7.14.9" 75438 + sources."@babel/helper-validator-identifier-7.15.7" 75216 75439 (sources."@babel/highlight-7.14.5" // { 75217 75440 dependencies = [ 75218 75441 sources."chalk-2.4.2" ··· 75244 75467 ]; 75245 75468 }) 75246 75469 sources."ansi-colors-4.1.1" 75247 - sources."ansi-regex-5.0.0" 75470 + sources."ansi-regex-5.0.1" 75248 75471 sources."ansi-styles-3.2.1" 75249 75472 sources."argparse-1.0.10" 75250 75473 sources."arr-diff-2.0.0" ··· 75291 75514 sources."callsites-3.1.0" 75292 75515 sources."camelcase-2.1.1" 75293 75516 sources."camelcase-keys-2.1.0" 75294 - sources."caniuse-lite-1.0.30001255" 75517 + sources."caniuse-lite-1.0.30001259" 75295 75518 sources."capture-stack-trace-1.0.1" 75296 75519 sources."ccount-1.1.0" 75297 75520 (sources."chalk-4.1.2" // { ··· 75353 75576 ]; 75354 75577 }) 75355 75578 sources."copy-descriptor-0.1.1" 75356 - sources."core-js-3.17.3" 75579 + sources."core-js-3.18.0" 75357 75580 sources."cosmiconfig-3.1.0" 75358 75581 sources."create-error-class-3.0.2" 75359 75582 sources."cross-spawn-7.0.3" ··· 75389 75612 sources."domutils-1.7.0" 75390 75613 sources."dot-prop-5.3.0" 75391 75614 sources."duplexer3-0.1.4" 75392 - sources."electron-to-chromium-1.3.833" 75615 + sources."electron-to-chromium-1.3.845" 75393 75616 sources."emoji-regex-8.0.0" 75394 75617 sources."end-of-stream-1.4.4" 75395 75618 sources."enquirer-2.3.6" ··· 75845 76068 sources."prelude-ls-1.2.1" 75846 76069 sources."prepend-http-1.0.4" 75847 76070 sources."preserve-0.2.0" 75848 - sources."prettier-2.4.0" 76071 + sources."prettier-2.4.1" 75849 76072 sources."prettier-eslint-12.0.0" 75850 76073 (sources."prettier-stylelint-0.4.2" // { 75851 76074 dependencies = [ ··· 75941 76164 }) 75942 76165 sources."shebang-command-2.0.0" 75943 76166 sources."shebang-regex-3.0.0" 75944 - sources."signal-exit-3.0.3" 76167 + sources."signal-exit-3.0.4" 75945 76168 sources."slash-1.0.0" 75946 76169 (sources."slice-ansi-4.0.0" // { 75947 76170 dependencies = [ ··· 76056 76279 sources."svg-tags-1.0.0" 76057 76280 (sources."table-6.7.1" // { 76058 76281 dependencies = [ 76059 - sources."ajv-8.6.2" 76282 + sources."ajv-8.6.3" 76060 76283 sources."json-schema-traverse-1.0.0" 76061 76284 ]; 76062 76285 }) ··· 76188 76411 coc-pyright = nodeEnv.buildNodePackage { 76189 76412 name = "coc-pyright"; 76190 76413 packageName = "coc-pyright"; 76191 - version = "1.1.166"; 76414 + version = "1.1.168"; 76192 76415 src = fetchurl { 76193 - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.166.tgz"; 76194 - sha512 = "ler5AiK0fE5BbQ+RlkQYO+qzGUfFRmQW0XrSPFPCWgjvTfL20qXx7DU+lSZKRUJUQo3wXXHbnBnv7HHIOhokSw=="; 76416 + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.168.tgz"; 76417 + sha512 = "kxOGpkN7YmdFOgmBzWnkHcqFdsQN448iIGGfHAvbicpQVal2a7vOYLUuzeoDGqmdKugWWig8TotfMs5EZ5BKHQ=="; 76195 76418 }; 76196 76419 dependencies = [ 76197 - sources."pyright-1.1.166" 76420 + sources."pyright-1.1.170" 76198 76421 ]; 76199 76422 buildInputs = globalBuildInputs; 76200 76423 meta = { ··· 76354 76577 sources."@babel/helper-hoist-variables-7.15.4" 76355 76578 sources."@babel/helper-member-expression-to-functions-7.15.4" 76356 76579 sources."@babel/helper-module-imports-7.15.4" 76357 - sources."@babel/helper-module-transforms-7.15.4" 76580 + sources."@babel/helper-module-transforms-7.15.7" 76358 76581 sources."@babel/helper-optimise-call-expression-7.15.4" 76359 76582 sources."@babel/helper-replace-supers-7.15.4" 76360 76583 sources."@babel/helper-simple-access-7.15.4" 76361 76584 sources."@babel/helper-split-export-declaration-7.15.4" 76362 - sources."@babel/helper-validator-identifier-7.14.9" 76585 + sources."@babel/helper-validator-identifier-7.15.7" 76363 76586 sources."@babel/helper-validator-option-7.14.5" 76364 76587 sources."@babel/helpers-7.15.4" 76365 76588 (sources."@babel/highlight-7.14.5" // { ··· 76367 76590 sources."chalk-2.4.2" 76368 76591 ]; 76369 76592 }) 76370 - sources."@babel/parser-7.15.5" 76593 + sources."@babel/parser-7.15.7" 76371 76594 sources."@babel/template-7.15.4" 76372 76595 sources."@babel/traverse-7.15.4" 76373 - sources."@babel/types-7.15.4" 76596 + sources."@babel/types-7.15.6" 76374 76597 sources."@nodelib/fs.scandir-2.1.5" 76375 76598 sources."@nodelib/fs.stat-2.0.5" 76376 76599 sources."@nodelib/fs.walk-1.2.8" ··· 76381 76604 sources."@types/normalize-package-data-2.4.1" 76382 76605 sources."@types/parse-json-4.0.0" 76383 76606 sources."@types/unist-2.0.6" 76384 - sources."ajv-8.6.2" 76385 - sources."ansi-regex-5.0.0" 76607 + sources."ajv-8.6.3" 76608 + sources."ansi-regex-5.0.1" 76386 76609 sources."ansi-styles-3.2.1" 76387 76610 sources."array-union-2.1.0" 76388 76611 sources."arrify-1.0.1" ··· 76400 76623 sources."callsites-3.1.0" 76401 76624 sources."camelcase-5.3.1" 76402 76625 sources."camelcase-keys-6.2.2" 76403 - sources."caniuse-lite-1.0.30001255" 76626 + sources."caniuse-lite-1.0.30001259" 76404 76627 (sources."chalk-4.1.2" // { 76405 76628 dependencies = [ 76406 76629 sources."ansi-styles-4.3.0" ··· 76438 76661 sources."domelementtype-1.3.1" 76439 76662 sources."domhandler-2.4.2" 76440 76663 sources."domutils-1.7.0" 76441 - sources."electron-to-chromium-1.3.833" 76664 + sources."electron-to-chromium-1.3.845" 76442 76665 sources."emoji-regex-8.0.0" 76443 76666 sources."entities-1.1.2" 76444 76667 sources."error-ex-1.3.2" ··· 76450 76673 sources."fast-diff-1.2.0" 76451 76674 sources."fast-glob-3.2.7" 76452 76675 sources."fastest-levenshtein-1.0.12" 76453 - sources."fastq-1.12.0" 76676 + sources."fastq-1.13.0" 76454 76677 sources."file-entry-cache-6.0.1" 76455 76678 sources."fill-range-7.0.1" 76456 76679 sources."find-up-4.1.0" ··· 76517 76740 sources."log-symbols-4.1.0" 76518 76741 sources."longest-streak-2.0.4" 76519 76742 sources."lru-cache-6.0.0" 76520 - sources."map-obj-4.2.1" 76743 + sources."map-obj-4.3.0" 76521 76744 sources."mathml-tag-names-2.1.3" 76522 76745 sources."mdast-util-from-markdown-0.8.5" 76523 76746 sources."mdast-util-to-markdown-0.6.5" ··· 76535 76758 ]; 76536 76759 }) 76537 76760 sources."ms-2.1.2" 76538 - sources."node-releases-1.1.75" 76761 + sources."node-releases-1.1.76" 76539 76762 (sources."normalize-package-data-3.0.3" // { 76540 76763 dependencies = [ 76541 76764 sources."semver-7.3.5" ··· 76608 76831 sources."run-parallel-1.2.0" 76609 76832 sources."safe-buffer-5.1.2" 76610 76833 sources."semver-6.3.0" 76611 - sources."signal-exit-3.0.3" 76834 + sources."signal-exit-3.0.4" 76612 76835 sources."slash-3.0.0" 76613 76836 (sources."slice-ansi-4.0.0" // { 76614 76837 dependencies = [ ··· 76725 76948 }; 76726 76949 dependencies = [ 76727 76950 sources."@babel/code-frame-7.14.5" 76728 - sources."@babel/helper-validator-identifier-7.14.9" 76951 + sources."@babel/helper-validator-identifier-7.15.7" 76729 76952 sources."@babel/highlight-7.14.5" 76730 76953 sources."ansi-styles-3.2.1" 76731 76954 sources."argparse-1.0.10" ··· 76818 77041 sha512 = "RTet29nZNYrOWEuquBOAv3yFtWyHPE7xGbsHjRdNbTP6g9PF+2nV2TnDO+c/T5HAk/1J0lKKZBu6hZTnEJ2f4w=="; 76819 77042 }; 76820 77043 dependencies = [ 76821 - sources."typescript-4.4.2" 77044 + sources."typescript-4.4.3" 76822 77045 ]; 76823 77046 buildInputs = globalBuildInputs; 76824 77047 meta = { ··· 76840 77063 }; 76841 77064 dependencies = [ 76842 77065 sources."@babel/code-frame-7.12.11" 76843 - sources."@babel/helper-validator-identifier-7.14.9" 77066 + sources."@babel/helper-validator-identifier-7.15.7" 76844 77067 (sources."@babel/highlight-7.14.5" // { 76845 77068 dependencies = [ 76846 77069 sources."chalk-2.4.2" ··· 76854 77077 sources."acorn-jsx-5.3.2" 76855 77078 sources."ajv-6.12.6" 76856 77079 sources."ansi-colors-4.1.1" 76857 - sources."ansi-regex-5.0.0" 77080 + sources."ansi-regex-5.0.1" 76858 77081 sources."ansi-styles-3.2.1" 76859 77082 sources."argparse-1.0.10" 76860 77083 sources."astral-regex-2.0.0" ··· 76884 77107 sources."enquirer-2.3.6" 76885 77108 sources."escape-string-regexp-4.0.0" 76886 77109 sources."eslint-7.32.0" 76887 - (sources."eslint-plugin-vue-7.17.0" // { 77110 + (sources."eslint-plugin-vue-7.18.0" // { 76888 77111 dependencies = [ 76889 77112 sources."semver-6.3.0" 76890 77113 ]; ··· 76960 77183 sources."path-key-3.1.1" 76961 77184 sources."path-parse-1.0.7" 76962 77185 sources."prelude-ls-1.2.1" 76963 - sources."prettier-2.4.0" 77186 + sources."prettier-2.4.1" 76964 77187 sources."progress-2.0.3" 76965 77188 sources."punycode-2.1.1" 76966 77189 sources."regexpp-3.2.0" ··· 76985 77208 sources."supports-color-5.5.0" 76986 77209 (sources."table-6.7.1" // { 76987 77210 dependencies = [ 76988 - sources."ajv-8.6.2" 77211 + sources."ajv-8.6.3" 76989 77212 sources."json-schema-traverse-1.0.0" 76990 77213 ]; 76991 77214 }) ··· 77001 77224 sources."tsutils-2.29.0" 77002 77225 sources."type-check-0.4.0" 77003 77226 sources."type-fest-0.20.2" 77004 - sources."typescript-4.4.2" 77227 + sources."typescript-4.4.3" 77005 77228 sources."uri-js-4.4.1" 77006 77229 sources."v8-compile-cache-2.3.0" 77007 77230 sources."vls-0.7.4" ··· 77285 77508 sources."semver-5.7.1" 77286 77509 sources."shebang-command-1.2.0" 77287 77510 sources."shebang-regex-1.0.0" 77288 - sources."signal-exit-3.0.3" 77511 + sources."signal-exit-3.0.4" 77289 77512 sources."slash-2.0.0" 77290 77513 (sources."string_decoder-1.1.1" // { 77291 77514 dependencies = [ ··· 77364 77587 sources."colors-1.4.0" 77365 77588 sources."commander-2.20.3" 77366 77589 sources."escape-string-regexp-1.0.5" 77367 - sources."follow-redirects-1.14.3" 77590 + sources."follow-redirects-1.14.4" 77368 77591 sources."has-flag-3.0.0" 77369 77592 sources."is-fullwidth-code-point-2.0.0" 77370 77593 sources."log-symbols-2.2.0" ··· 77373 77596 sources."onetime-2.0.1" 77374 77597 sources."ora-1.4.0" 77375 77598 sources."restore-cursor-2.0.0" 77376 - sources."signal-exit-3.0.3" 77599 + sources."signal-exit-3.0.4" 77377 77600 sources."string-width-2.1.1" 77378 77601 sources."strip-ansi-4.0.0" 77379 77602 sources."supports-color-5.5.0" ··· 77413 77636 sources."fast-safe-stringify-2.1.1" 77414 77637 sources."fecha-4.2.1" 77415 77638 sources."fn.name-1.1.0" 77416 - sources."follow-redirects-1.14.3" 77639 + sources."follow-redirects-1.14.4" 77417 77640 sources."http-proxy-1.18.1" 77418 77641 sources."inherits-2.0.4" 77419 77642 sources."is-arrayish-0.3.2" ··· 77465 77688 }; 77466 77689 dependencies = [ 77467 77690 sources."@babel/code-frame-7.14.5" 77468 - sources."@babel/helper-validator-identifier-7.14.9" 77691 + sources."@babel/helper-validator-identifier-7.15.7" 77469 77692 sources."@babel/highlight-7.14.5" 77470 77693 sources."@hutson/parse-repository-url-3.0.2" 77471 77694 sources."@types/minimist-1.2.2" 77472 77695 sources."@types/normalize-package-data-2.4.1" 77473 77696 sources."JSONStream-1.3.5" 77474 77697 sources."add-stream-1.0.0" 77475 - sources."ansi-regex-5.0.0" 77698 + sources."ansi-regex-5.0.1" 77476 77699 sources."ansi-styles-4.3.0" 77477 77700 sources."array-ify-1.0.0" 77478 77701 sources."arrify-1.0.1" ··· 77493 77716 sources."conventional-changelog-angular-5.0.13" 77494 77717 sources."conventional-changelog-atom-2.0.8" 77495 77718 sources."conventional-changelog-codemirror-2.0.8" 77496 - sources."conventional-changelog-conventionalcommits-4.6.0" 77719 + sources."conventional-changelog-conventionalcommits-4.6.1" 77497 77720 sources."conventional-changelog-core-4.2.4" 77498 77721 sources."conventional-changelog-ember-2.0.9" 77499 77722 sources."conventional-changelog-eslint-3.0.9" ··· 77565 77788 sources."lodash-4.17.21" 77566 77789 sources."lodash.ismatch-4.4.0" 77567 77790 sources."lru-cache-6.0.0" 77568 - sources."map-obj-4.2.1" 77791 + sources."map-obj-4.3.0" 77569 77792 (sources."meow-8.1.2" // { 77570 77793 dependencies = [ 77571 77794 sources."find-up-4.1.0" ··· 77728 77951 sources."balanced-match-1.0.2" 77729 77952 sources."base64-js-1.5.1" 77730 77953 sources."bcrypt-pbkdf-1.0.2" 77731 - sources."big-integer-1.6.48" 77954 + sources."big-integer-1.6.49" 77732 77955 (sources."body-parser-1.19.0" // { 77733 77956 dependencies = [ 77734 77957 sources."bytes-3.1.0" ··· 77740 77963 }) 77741 77964 (sources."boxen-4.2.0" // { 77742 77965 dependencies = [ 77743 - sources."ansi-regex-5.0.0" 77966 + sources."ansi-regex-5.0.1" 77744 77967 sources."emoji-regex-8.0.0" 77745 77968 sources."is-fullwidth-code-point-3.0.0" 77746 77969 sources."string-width-4.2.2" ··· 77871 78094 sources."fast-glob-3.2.7" 77872 78095 sources."fast-json-parse-1.0.3" 77873 78096 sources."fast-json-stable-stringify-2.1.0" 77874 - sources."fastq-1.12.0" 78097 + sources."fastq-1.13.0" 77875 78098 sources."figures-2.0.0" 77876 78099 sources."fill-range-7.0.1" 77877 78100 (sources."finalhandler-1.1.2" // { ··· 78037 78260 sources."mimic-response-1.0.1" 78038 78261 sources."minimatch-3.0.4" 78039 78262 sources."minimist-1.2.5" 78040 - sources."minipass-3.1.3" 78263 + sources."minipass-3.1.5" 78041 78264 sources."minipass-collect-1.0.2" 78042 78265 sources."minipass-fetch-1.4.1" 78043 78266 sources."minipass-flush-1.0.5" ··· 78183 78406 sources."setprototypeof-1.1.1" 78184 78407 sources."shebang-command-2.0.0" 78185 78408 sources."shebang-regex-3.0.0" 78186 - sources."signal-exit-3.0.3" 78409 + sources."signal-exit-3.0.4" 78187 78410 sources."slash-3.0.0" 78188 78411 sources."smart-buffer-4.2.0" 78189 78412 sources."socks-2.6.1" 78190 - sources."socks-proxy-agent-6.0.0" 78413 + sources."socks-proxy-agent-6.1.0" 78191 78414 sources."spdx-correct-3.1.1" 78192 78415 sources."spdx-exceptions-2.3.0" 78193 78416 sources."spdx-expression-parse-3.0.1" ··· 78244 78467 sources."wide-align-1.1.3" 78245 78468 (sources."widest-line-3.1.0" // { 78246 78469 dependencies = [ 78247 - sources."ansi-regex-5.0.0" 78470 + sources."ansi-regex-5.0.1" 78248 78471 sources."emoji-regex-8.0.0" 78249 78472 sources."is-fullwidth-code-point-3.0.0" 78250 78473 sources."string-width-4.2.2" ··· 78292 78515 }; 78293 78516 dependencies = [ 78294 78517 sources."@babel/code-frame-7.14.5" 78295 - sources."@babel/helper-validator-identifier-7.14.9" 78518 + sources."@babel/helper-validator-identifier-7.15.7" 78296 78519 sources."@babel/highlight-7.14.5" 78297 78520 sources."@mrmlnc/readdir-enhanced-2.2.1" 78298 78521 sources."@nodelib/fs.stat-1.1.3" 78299 78522 sources."@types/glob-7.1.4" 78300 78523 sources."@types/minimatch-3.0.5" 78301 78524 sources."@types/minimist-1.2.2" 78302 - sources."@types/node-16.9.0" 78525 + sources."@types/node-16.9.4" 78303 78526 sources."@types/normalize-package-data-2.4.1" 78304 78527 sources."aggregate-error-3.1.0" 78305 78528 sources."ansi-styles-3.2.1" ··· 78463 78686 sources."locate-path-5.0.0" 78464 78687 sources."make-dir-3.1.0" 78465 78688 sources."map-cache-0.2.2" 78466 - sources."map-obj-4.2.1" 78689 + sources."map-obj-4.3.0" 78467 78690 sources."map-visit-1.0.0" 78468 78691 sources."meow-6.1.1" 78469 78692 sources."merge2-1.4.1" ··· 78670 78893 sources."@cycle/run-3.4.0" 78671 78894 sources."@cycle/time-0.10.1" 78672 78895 sources."@types/cookiejar-2.1.2" 78673 - sources."@types/node-16.9.0" 78896 + sources."@types/node-16.9.4" 78674 78897 sources."@types/superagent-3.8.2" 78675 78898 sources."ansi-escapes-3.2.0" 78676 78899 sources."ansi-regex-2.1.1" ··· 78780 79003 sources."shebang-command-1.2.0" 78781 79004 sources."shebang-regex-1.0.0" 78782 79005 sources."side-channel-1.0.4" 78783 - sources."signal-exit-3.0.3" 79006 + sources."signal-exit-3.0.4" 78784 79007 sources."snabbdom-0.7.0" 78785 79008 sources."snabbdom-selector-1.2.1" 78786 79009 sources."sorted-immutable-list-1.1.0" ··· 79179 79402 sources."fast-json-stable-stringify-2.1.0" 79180 79403 (sources."fd-lock-1.2.0" // { 79181 79404 dependencies = [ 79182 - sources."node-gyp-build-4.2.3" 79405 + sources."node-gyp-build-4.3.0" 79183 79406 ]; 79184 79407 }) 79185 79408 sources."fd-read-stream-1.1.0" ··· 79430 79653 }) 79431 79654 sources."shebang-command-1.2.0" 79432 79655 sources."shebang-regex-1.0.0" 79433 - sources."signal-exit-3.0.3" 79656 + sources."signal-exit-3.0.4" 79434 79657 (sources."signed-varint-2.0.1" // { 79435 79658 dependencies = [ 79436 79659 sources."varint-5.0.2" ··· 79478 79701 sources."sodium-javascript-0.5.6" 79479 79702 (sources."sodium-native-2.4.9" // { 79480 79703 dependencies = [ 79481 - sources."node-gyp-build-4.2.3" 79704 + sources."node-gyp-build-4.3.0" 79482 79705 ]; 79483 79706 }) 79484 79707 sources."sodium-universal-2.0.0" ··· 79585 79808 sources."util-deprecate-1.0.2" 79586 79809 (sources."utp-native-2.5.3" // { 79587 79810 dependencies = [ 79588 - sources."node-gyp-build-4.2.3" 79811 + sources."node-gyp-build-4.3.0" 79589 79812 sources."readable-stream-3.6.0" 79590 79813 sources."unordered-set-2.0.1" 79591 79814 ]; ··· 79644 79867 "deltachat-desktop-../../applications/networking/instant-messengers/deltachat-desktop" = nodeEnv.buildNodePackage { 79645 79868 name = "deltachat-desktop"; 79646 79869 packageName = "deltachat-desktop"; 79647 - version = "1.21.0"; 79870 + version = "1.21.1"; 79648 79871 src = ../../applications/networking/instant-messengers/deltachat-desktop; 79649 79872 dependencies = [ 79650 79873 sources."@babel/code-frame-7.14.5" ··· 79671 79894 sources."@babel/helper-hoist-variables-7.15.4" 79672 79895 sources."@babel/helper-member-expression-to-functions-7.15.4" 79673 79896 sources."@babel/helper-module-imports-7.15.4" 79674 - sources."@babel/helper-module-transforms-7.15.4" 79897 + sources."@babel/helper-module-transforms-7.15.7" 79675 79898 sources."@babel/helper-optimise-call-expression-7.15.4" 79676 79899 sources."@babel/helper-plugin-utils-7.14.5" 79677 79900 sources."@babel/helper-remap-async-to-generator-7.15.4" ··· 79679 79902 sources."@babel/helper-simple-access-7.15.4" 79680 79903 sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 79681 79904 sources."@babel/helper-split-export-declaration-7.15.4" 79682 - sources."@babel/helper-validator-identifier-7.14.9" 79905 + sources."@babel/helper-validator-identifier-7.15.7" 79683 79906 sources."@babel/helper-validator-option-7.14.5" 79684 79907 sources."@babel/helper-wrap-function-7.15.4" 79685 79908 sources."@babel/helpers-7.15.4" 79686 79909 sources."@babel/highlight-7.14.5" 79687 - sources."@babel/parser-7.15.5" 79910 + sources."@babel/parser-7.15.7" 79688 79911 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 79689 79912 sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 79690 79913 sources."@babel/plugin-proposal-class-properties-7.14.5" ··· 79695 79918 sources."@babel/plugin-proposal-logical-assignment-operators-7.14.5" 79696 79919 sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 79697 79920 sources."@babel/plugin-proposal-numeric-separator-7.14.5" 79698 - sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 79921 + sources."@babel/plugin-proposal-object-rest-spread-7.15.6" 79699 79922 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 79700 79923 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 79701 79924 sources."@babel/plugin-proposal-private-methods-7.14.5" ··· 79752 79975 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 79753 79976 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 79754 79977 sources."@babel/plugin-transform-unicode-regex-7.14.5" 79755 - sources."@babel/preset-env-7.15.4" 79978 + sources."@babel/preset-env-7.15.6" 79756 79979 sources."@babel/preset-modules-0.1.4" 79757 79980 sources."@babel/preset-react-7.14.5" 79758 79981 sources."@babel/runtime-7.15.4" 79759 79982 sources."@babel/template-7.15.4" 79760 79983 sources."@babel/traverse-7.15.4" 79761 - sources."@babel/types-7.15.4" 79762 - sources."@blueprintjs/colors-3.0.0" 79763 - sources."@blueprintjs/core-3.49.1" 79764 - sources."@blueprintjs/icons-3.29.0" 79984 + sources."@babel/types-7.15.6" 79985 + sources."@blueprintjs/colors-5.0.0-alpha.0" 79986 + sources."@blueprintjs/core-3.50.2" 79987 + sources."@blueprintjs/icons-3.30.1" 79765 79988 sources."@electron/get-1.13.0" 79766 79989 sources."@hypnosphi/create-react-context-0.3.1" 79767 79990 sources."@mapbox/extent-0.4.0" 79768 - sources."@mapbox/geojson-coords-0.0.1" 79769 - sources."@mapbox/geojson-extent-1.0.0" 79991 + sources."@mapbox/geojson-coords-0.0.2" 79992 + sources."@mapbox/geojson-extent-1.0.1" 79770 79993 sources."@mapbox/geojson-normalize-0.0.1" 79771 79994 sources."@mapbox/geojson-rewind-0.5.1" 79772 79995 sources."@mapbox/geojson-types-1.0.2" ··· 79779 80002 sources."@mapbox/whoots-js-3.1.0" 79780 80003 sources."@sindresorhus/is-0.14.0" 79781 80004 sources."@szmarczak/http-timer-1.1.2" 79782 - sources."@types/debounce-1.2.0" 80005 + sources."@types/debounce-1.2.1" 79783 80006 sources."@types/dom4-2.0.2" 79784 80007 sources."@types/emoji-mart-3.0.5" 79785 80008 sources."@types/geojson-7946.0.8" 79786 80009 sources."@types/mapbox-gl-0.54.5" 79787 80010 sources."@types/mime-types-2.1.1" 79788 - sources."@types/node-14.17.15" 80011 + sources."@types/node-14.17.17" 79789 80012 sources."@types/node-fetch-2.5.12" 79790 80013 sources."@types/prop-types-15.7.4" 79791 80014 sources."@types/rc-1.2.0" ··· 79842 80065 ]; 79843 80066 }) 79844 80067 sources."call-bind-1.0.2" 79845 - sources."caniuse-lite-1.0.30001255" 80068 + sources."caniuse-lite-1.0.30001259" 79846 80069 sources."chalk-2.4.2" 79847 80070 sources."chokidar-2.1.8" 79848 80071 (sources."class-utils-0.3.6" // { ··· 79884 80107 ]; 79885 80108 }) 79886 80109 sources."copy-descriptor-0.1.1" 79887 - sources."core-js-3.17.3" 79888 - (sources."core-js-compat-3.17.3" // { 80110 + sources."core-js-3.18.0" 80111 + (sources."core-js-compat-3.18.0" // { 79889 80112 dependencies = [ 79890 80113 sources."semver-7.0.0" 79891 80114 ]; ··· 79893 80116 sources."core-util-is-1.0.3" 79894 80117 sources."crypto-random-string-1.0.0" 79895 80118 sources."csscolorparser-1.0.3" 79896 - sources."csstype-3.0.8" 80119 + sources."csstype-3.0.9" 79897 80120 sources."debounce-1.2.1" 79898 80121 sources."debug-4.3.2" 79899 80122 sources."decode-uri-component-0.2.0" ··· 79910 80133 sources."dom4-2.1.6" 79911 80134 sources."duplexer3-0.1.4" 79912 80135 sources."earcut-2.2.3" 79913 - sources."electron-13.3.0" 79914 - sources."electron-to-chromium-1.3.833" 80136 + sources."electron-13.4.0" 80137 + sources."electron-to-chromium-1.3.845" 79915 80138 sources."emoji-js-clean-4.0.0" 79916 80139 sources."emoji-mart-3.0.1" 79917 80140 sources."emoji-regex-9.2.2" ··· 80088 80311 sources."nan-2.15.0" 80089 80312 sources."nanomatch-1.2.13" 80090 80313 sources."napi-macros-2.0.0" 80091 - sources."node-fetch-2.6.2" 80092 - sources."node-gyp-build-4.2.3" 80093 - sources."node-releases-1.1.75" 80314 + sources."node-fetch-2.6.4" 80315 + sources."node-gyp-build-4.3.0" 80316 + sources."node-releases-1.1.76" 80094 80317 sources."normalize-path-3.0.0" 80095 80318 sources."normalize-url-4.5.1" 80096 80319 sources."normalize.css-8.0.1" ··· 80134 80357 sources."progress-2.0.3" 80135 80358 sources."prop-types-15.7.2" 80136 80359 sources."proto-list-1.2.4" 80137 - sources."protocol-buffers-schema-3.5.2" 80360 + sources."protocol-buffers-schema-3.6.0" 80138 80361 sources."pump-3.0.0" 80139 80362 sources."punycode-2.1.1" 80140 80363 sources."qr.js-0.0.0" ··· 80162 80385 ]; 80163 80386 }) 80164 80387 sources."regenerate-1.4.2" 80165 - sources."regenerate-unicode-properties-8.2.0" 80388 + sources."regenerate-unicode-properties-9.0.0" 80166 80389 sources."regenerator-runtime-0.13.9" 80167 80390 sources."regenerator-transform-0.14.5" 80168 80391 sources."regex-not-1.0.2" 80169 80392 sources."regexp.prototype.flags-1.3.1" 80170 - sources."regexpu-core-4.7.1" 80393 + sources."regexpu-core-4.8.0" 80171 80394 sources."regjsgen-0.5.2" 80172 - (sources."regjsparser-0.6.9" // { 80395 + (sources."regjsparser-0.7.0" // { 80173 80396 dependencies = [ 80174 80397 sources."jsesc-0.5.0" 80175 80398 ]; ··· 80189 80412 sources."rw-0.1.4" 80190 80413 sources."safe-buffer-5.2.1" 80191 80414 sources."safe-regex-1.1.0" 80192 - (sources."sass-1.39.0" // { 80415 + (sources."sass-1.42.0" // { 80193 80416 dependencies = [ 80194 80417 sources."anymatch-3.1.2" 80195 80418 sources."binary-extensions-2.2.0" ··· 80294 80517 sources."to-readable-stream-1.0.0" 80295 80518 sources."to-regex-3.0.2" 80296 80519 sources."to-regex-range-2.1.1" 80520 + sources."tr46-0.0.3" 80297 80521 sources."traverse-0.6.6" 80298 80522 sources."tslib-1.13.0" 80299 80523 sources."tunnel-0.0.6" ··· 80301 80525 sources."typed-styles-0.0.7" 80302 80526 sources."typedarray-0.0.6" 80303 80527 sources."typescript-3.9.10" 80304 - sources."unicode-canonical-property-names-ecmascript-1.0.4" 80305 - sources."unicode-match-property-ecmascript-1.0.4" 80306 - sources."unicode-match-property-value-ecmascript-1.2.0" 80307 - sources."unicode-property-aliases-ecmascript-1.1.0" 80528 + sources."unicode-canonical-property-names-ecmascript-2.0.0" 80529 + sources."unicode-match-property-ecmascript-2.0.0" 80530 + sources."unicode-match-property-value-ecmascript-2.0.0" 80531 + sources."unicode-property-aliases-ecmascript-2.0.0" 80308 80532 sources."union-value-1.0.1" 80309 80533 sources."unique-string-1.0.0" 80310 80534 sources."universalify-0.1.2" ··· 80327 80551 sources."util-deprecate-1.0.2" 80328 80552 sources."vt-pbf-3.1.3" 80329 80553 sources."warning-4.0.3" 80554 + sources."webidl-conversions-3.0.1" 80330 80555 sources."webrtc-adapter-7.7.1" 80556 + sources."whatwg-url-5.0.0" 80331 80557 sources."wrappy-1.0.2" 80332 80558 sources."xml-js-1.6.11" 80333 80559 sources."yallist-4.0.0" ··· 80385 80611 sources."del-6.0.0" 80386 80612 sources."dir-glob-3.0.1" 80387 80613 sources."fast-glob-3.2.7" 80388 - sources."fastq-1.12.0" 80614 + sources."fastq-1.13.0" 80389 80615 sources."fill-range-7.0.1" 80390 80616 sources."find-up-4.1.0" 80391 80617 sources."fs.realpath-1.0.0" ··· 80450 80676 dockerfile-language-server-nodejs = nodeEnv.buildNodePackage { 80451 80677 name = "dockerfile-language-server-nodejs"; 80452 80678 packageName = "dockerfile-language-server-nodejs"; 80453 - version = "0.6.0"; 80679 + version = "0.7.0"; 80454 80680 src = fetchurl { 80455 - url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.6.0.tgz"; 80456 - sha512 = "+5bTaLsYJ+sb9bOzV7i6374Bb61jKlE3eh0mMlaLKwG9ZJO8r/pTMbsRNt9vXipkcJEvc9N8xZJyDs2EYnyfPA=="; 80681 + url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.7.0.tgz"; 80682 + sha512 = "45XvooVfz1e8dUSGo1Nuyb61meY2nV+8lRBRp90T3I0nZGcAh5DJ9ioKsBhvsesBG+2rXwl5WK4OviFLlyyfDA=="; 80457 80683 }; 80458 80684 dependencies = [ 80459 - sources."dockerfile-ast-0.3.1" 80460 - sources."dockerfile-language-service-0.5.0" 80461 - sources."dockerfile-utils-0.7.0" 80685 + sources."dockerfile-ast-0.3.2" 80686 + sources."dockerfile-language-service-0.7.1" 80687 + sources."dockerfile-utils-0.9.0" 80462 80688 sources."vscode-jsonrpc-8.0.0-next.2" 80463 80689 sources."vscode-languageserver-8.0.0-next.2" 80464 80690 sources."vscode-languageserver-protocol-3.17.0-next.8" ··· 80478 80704 elasticdump = nodeEnv.buildNodePackage { 80479 80705 name = "elasticdump"; 80480 80706 packageName = "elasticdump"; 80481 - version = "6.73.0"; 80707 + version = "6.74.0"; 80482 80708 src = fetchurl { 80483 - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.73.0.tgz"; 80484 - sha512 = "9QWk+d0xuT6W+AEvr06Zoh1rllXGkDMUH9LxFtey3Abv5E0M2qSvdspGvqb4d6Fw7BZiThX4tDabT6VNpxqftQ=="; 80709 + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.74.0.tgz"; 80710 + sha512 = "hcT2HyGdWlqD+DUicipZd0CI4m49qgpa5HPGKAU7Qly6vClH/HgwV+VodFs9CTIEUoKZOq7qolxHAByt4lezPg=="; 80485 80711 }; 80486 80712 dependencies = [ 80487 80713 sources."@fast-csv/format-4.3.5" 80488 80714 sources."@fast-csv/parse-4.3.6" 80489 - sources."@types/node-14.17.15" 80715 + sources."@types/node-14.17.17" 80490 80716 sources."JSONStream-1.3.5" 80491 80717 sources."ajv-6.12.6" 80492 80718 sources."asn1-0.2.4" ··· 80624 80850 "@electron-forge/cli" = nodeEnv.buildNodePackage { 80625 80851 name = "_at_electron-forge_slash_cli"; 80626 80852 packageName = "@electron-forge/cli"; 80627 - version = "6.0.0-beta.60"; 80853 + version = "6.0.0-beta.61"; 80628 80854 src = fetchurl { 80629 - url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.60.tgz"; 80630 - sha512 = "bbppliO8kl54MHwe7hCNapzmaqP0RNUONFcK/fd9Od917+ib23KqRAgbrN4ukwKjXzIfzLfoAsEY06UgL0DvIg=="; 80855 + url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.61.tgz"; 80856 + sha512 = "0OMNfSl71UhjkhYx67yH9vGklfvqdKe0iiMw+R+/tvgArapUQ0AquNaALFY0xP2inVRnbpcwH2WsR0LaZQkJtg=="; 80631 80857 }; 80632 80858 dependencies = [ 80633 - sources."@electron-forge/async-ora-6.0.0-beta.60" 80634 - sources."@electron-forge/core-6.0.0-beta.60" 80635 - sources."@electron-forge/installer-base-6.0.0-beta.60" 80636 - sources."@electron-forge/installer-darwin-6.0.0-beta.60" 80637 - sources."@electron-forge/installer-deb-6.0.0-beta.60" 80638 - sources."@electron-forge/installer-dmg-6.0.0-beta.60" 80639 - sources."@electron-forge/installer-exe-6.0.0-beta.60" 80640 - sources."@electron-forge/installer-linux-6.0.0-beta.60" 80641 - sources."@electron-forge/installer-rpm-6.0.0-beta.60" 80642 - sources."@electron-forge/installer-zip-6.0.0-beta.60" 80643 - sources."@electron-forge/maker-base-6.0.0-beta.60" 80644 - sources."@electron-forge/plugin-base-6.0.0-beta.60" 80645 - sources."@electron-forge/publisher-base-6.0.0-beta.60" 80646 - sources."@electron-forge/shared-types-6.0.0-beta.60" 80647 - sources."@electron-forge/template-base-6.0.0-beta.60" 80648 - sources."@electron-forge/template-typescript-6.0.0-beta.60" 80649 - sources."@electron-forge/template-typescript-webpack-6.0.0-beta.60" 80650 - sources."@electron-forge/template-webpack-6.0.0-beta.60" 80859 + sources."@electron-forge/async-ora-6.0.0-beta.61" 80860 + sources."@electron-forge/core-6.0.0-beta.61" 80861 + sources."@electron-forge/installer-base-6.0.0-beta.61" 80862 + sources."@electron-forge/installer-darwin-6.0.0-beta.61" 80863 + sources."@electron-forge/installer-deb-6.0.0-beta.61" 80864 + sources."@electron-forge/installer-dmg-6.0.0-beta.61" 80865 + sources."@electron-forge/installer-exe-6.0.0-beta.61" 80866 + sources."@electron-forge/installer-linux-6.0.0-beta.61" 80867 + sources."@electron-forge/installer-rpm-6.0.0-beta.61" 80868 + sources."@electron-forge/installer-zip-6.0.0-beta.61" 80869 + sources."@electron-forge/maker-base-6.0.0-beta.61" 80870 + sources."@electron-forge/plugin-base-6.0.0-beta.61" 80871 + sources."@electron-forge/publisher-base-6.0.0-beta.61" 80872 + sources."@electron-forge/shared-types-6.0.0-beta.61" 80873 + sources."@electron-forge/template-base-6.0.0-beta.61" 80874 + sources."@electron-forge/template-typescript-6.0.0-beta.61" 80875 + sources."@electron-forge/template-typescript-webpack-6.0.0-beta.61" 80876 + sources."@electron-forge/template-webpack-6.0.0-beta.61" 80651 80877 (sources."@electron/get-1.13.0" // { 80652 80878 dependencies = [ 80653 80879 sources."@sindresorhus/is-0.14.0" ··· 80681 80907 sources."@nodelib/fs.walk-1.2.8" 80682 80908 sources."@npmcli/fs-1.0.0" 80683 80909 sources."@npmcli/move-file-1.1.2" 80684 - sources."@sindresorhus/is-4.0.1" 80910 + sources."@sindresorhus/is-4.2.0" 80685 80911 sources."@szmarczak/http-timer-4.0.6" 80686 80912 sources."@tootallnate/once-1.1.2" 80687 80913 sources."@types/cacheable-request-6.0.2" ··· 80689 80915 sources."@types/http-cache-semantics-4.0.1" 80690 80916 sources."@types/keyv-3.1.3" 80691 80917 sources."@types/minimatch-3.0.5" 80692 - sources."@types/node-16.9.0" 80918 + sources."@types/node-16.9.4" 80693 80919 sources."@types/responselike-1.0.0" 80694 80920 sources."@types/yauzl-2.9.2" 80695 80921 sources."abbrev-1.1.1" ··· 80702 80928 sources."type-fest-0.21.3" 80703 80929 ]; 80704 80930 }) 80705 - sources."ansi-regex-5.0.0" 80931 + sources."ansi-regex-5.0.1" 80706 80932 sources."ansi-styles-4.3.0" 80707 80933 sources."aproba-1.2.0" 80708 80934 (sources."are-we-there-yet-1.1.7" // { ··· 80713 80939 ]; 80714 80940 }) 80715 80941 sources."array-find-index-1.0.2" 80716 - (sources."asar-3.0.3" // { 80942 + (sources."asar-3.1.0" // { 80717 80943 dependencies = [ 80718 80944 sources."commander-5.1.0" 80719 80945 ]; ··· 80771 80997 sources."concat-map-0.0.1" 80772 80998 sources."config-chain-1.1.13" 80773 80999 sources."console-control-strings-1.1.0" 80774 - sources."core-js-3.17.3" 81000 + sources."core-js-3.18.0" 80775 81001 sources."core-util-is-1.0.3" 80776 81002 sources."cross-spawn-7.0.3" 80777 81003 (sources."cross-spawn-windows-exe-1.2.0" // { ··· 80817 81043 sources."debug-2.6.9" 80818 81044 ]; 80819 81045 }) 80820 - (sources."electron-packager-15.3.0" // { 81046 + (sources."electron-packager-15.4.0" // { 80821 81047 dependencies = [ 80822 81048 sources."fs-extra-9.1.0" 80823 81049 ]; ··· 80856 81082 sources."fast-deep-equal-3.1.3" 80857 81083 sources."fast-glob-3.2.7" 80858 81084 sources."fast-json-stable-stringify-2.1.0" 80859 - sources."fastq-1.12.0" 81085 + sources."fastq-1.13.0" 80860 81086 sources."fd-slicer-1.1.0" 80861 81087 sources."figures-3.2.0" 80862 81088 sources."filename-reserved-regex-2.0.0" ··· 80942 81168 sources."inflight-1.0.6" 80943 81169 sources."inherits-2.0.4" 80944 81170 sources."ini-1.3.8" 80945 - (sources."inquirer-8.1.2" // { 81171 + (sources."inquirer-8.1.5" // { 80946 81172 dependencies = [ 80947 81173 sources."is-fullwidth-code-point-3.0.0" 80948 81174 sources."string-width-4.2.2" ··· 81015 81241 sources."mimic-response-1.0.1" 81016 81242 sources."minimatch-3.0.4" 81017 81243 sources."minimist-1.2.5" 81018 - sources."minipass-3.1.3" 81244 + sources."minipass-3.1.5" 81019 81245 sources."minipass-collect-1.0.2" 81020 81246 sources."minipass-fetch-1.4.1" 81021 81247 sources."minipass-flush-1.0.5" ··· 81033 81259 }) 81034 81260 sources."node-addon-api-3.2.1" 81035 81261 sources."node-api-version-0.1.4" 81036 - sources."node-fetch-2.6.2" 81262 + sources."node-fetch-2.6.4" 81037 81263 sources."node-gyp-8.2.0" 81038 - sources."node-gyp-build-4.2.3" 81264 + sources."node-gyp-build-4.3.0" 81039 81265 sources."nopt-5.0.0" 81040 81266 (sources."normalize-package-data-2.5.0" // { 81041 81267 dependencies = [ ··· 81154 81380 sources."set-blocking-2.0.0" 81155 81381 sources."shebang-command-2.0.0" 81156 81382 sources."shebang-regex-3.0.0" 81157 - sources."signal-exit-3.0.3" 81383 + sources."signal-exit-3.0.4" 81158 81384 sources."single-line-log-1.1.2" 81159 81385 sources."smart-buffer-4.2.0" 81160 81386 sources."socks-2.6.1" ··· 81198 81424 sources."to-readable-stream-1.0.0" 81199 81425 sources."to-regex-range-5.0.1" 81200 81426 sources."tough-cookie-2.5.0" 81427 + sources."tr46-0.0.3" 81201 81428 sources."trim-newlines-1.0.0" 81202 81429 sources."trim-repeated-1.0.0" 81203 81430 sources."tslib-2.1.0" ··· 81220 81447 ]; 81221 81448 }) 81222 81449 sources."wcwidth-1.0.1" 81450 + sources."webidl-conversions-3.0.1" 81451 + sources."whatwg-url-5.0.0" 81223 81452 sources."which-2.0.2" 81224 81453 sources."wide-align-1.1.3" 81225 81454 (sources."wrap-ansi-7.0.0" // { ··· 81309 81538 sources."@babel/helper-hoist-variables-7.15.4" 81310 81539 sources."@babel/helper-member-expression-to-functions-7.15.4" 81311 81540 sources."@babel/helper-module-imports-7.15.4" 81312 - sources."@babel/helper-module-transforms-7.15.4" 81541 + sources."@babel/helper-module-transforms-7.15.7" 81313 81542 sources."@babel/helper-optimise-call-expression-7.15.4" 81314 81543 sources."@babel/helper-plugin-utils-7.14.5" 81315 81544 sources."@babel/helper-replace-supers-7.15.4" 81316 81545 sources."@babel/helper-simple-access-7.15.4" 81317 81546 sources."@babel/helper-split-export-declaration-7.15.4" 81318 - sources."@babel/helper-validator-identifier-7.14.9" 81547 + sources."@babel/helper-validator-identifier-7.15.7" 81319 81548 sources."@babel/helper-validator-option-7.14.5" 81320 81549 sources."@babel/helpers-7.15.4" 81321 81550 sources."@babel/highlight-7.14.5" 81322 - sources."@babel/parser-7.15.5" 81323 - sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 81551 + sources."@babel/parser-7.15.7" 81552 + sources."@babel/plugin-proposal-object-rest-spread-7.15.6" 81324 81553 sources."@babel/plugin-syntax-jsx-7.14.5" 81325 81554 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 81326 81555 sources."@babel/plugin-transform-destructuring-7.14.7" ··· 81328 81557 sources."@babel/plugin-transform-react-jsx-7.14.9" 81329 81558 sources."@babel/template-7.15.4" 81330 81559 sources."@babel/traverse-7.15.4" 81331 - sources."@babel/types-7.15.4" 81560 + sources."@babel/types-7.15.6" 81332 81561 sources."@types/minimist-1.2.2" 81333 81562 sources."@types/normalize-package-data-2.4.1" 81334 81563 sources."@types/yoga-layout-1.9.2" ··· 81338 81567 sources."type-fest-0.21.3" 81339 81568 ]; 81340 81569 }) 81341 - sources."ansi-regex-5.0.0" 81570 + sources."ansi-regex-5.0.1" 81342 81571 sources."ansi-styles-3.2.1" 81343 81572 sources."arch-2.2.0" 81344 81573 sources."arrify-1.0.1" ··· 81353 81582 sources."callsites-2.0.0" 81354 81583 sources."camelcase-5.3.1" 81355 81584 sources."camelcase-keys-6.2.2" 81356 - sources."caniuse-lite-1.0.30001255" 81585 + sources."caniuse-lite-1.0.30001259" 81357 81586 sources."chalk-2.4.2" 81358 81587 sources."ci-info-2.0.0" 81359 81588 sources."cli-boxes-2.2.1" ··· 81383 81612 ]; 81384 81613 }) 81385 81614 sources."dot-prop-5.3.0" 81386 - sources."electron-to-chromium-1.3.833" 81615 + sources."electron-to-chromium-1.3.845" 81387 81616 sources."emoji-regex-8.0.0" 81388 81617 sources."emojilib-2.4.0" 81389 81618 sources."end-of-stream-1.4.4" ··· 81459 81688 ]; 81460 81689 }) 81461 81690 sources."map-age-cleaner-0.1.3" 81462 - sources."map-obj-4.2.1" 81691 + sources."map-obj-4.3.0" 81463 81692 sources."mem-6.1.1" 81464 81693 (sources."meow-7.1.1" // { 81465 81694 dependencies = [ ··· 81473 81702 sources."minimist-options-4.1.0" 81474 81703 sources."ms-2.1.2" 81475 81704 sources."nice-try-1.0.5" 81476 - sources."node-releases-1.1.75" 81705 + sources."node-releases-1.1.76" 81477 81706 sources."normalize-package-data-2.5.0" 81478 81707 sources."npm-run-path-2.0.2" 81479 81708 sources."object-assign-4.1.1" ··· 81536 81765 sources."shebang-command-1.2.0" 81537 81766 sources."shebang-regex-1.0.0" 81538 81767 sources."shell-quote-1.7.2" 81539 - sources."signal-exit-3.0.3" 81768 + sources."signal-exit-3.0.4" 81540 81769 sources."skin-tone-1.0.0" 81541 81770 (sources."slice-ansi-3.0.0" // { 81542 81771 dependencies = [ ··· 81550 81779 sources."spdx-exceptions-2.3.0" 81551 81780 sources."spdx-expression-parse-3.0.1" 81552 81781 sources."spdx-license-ids-3.0.10" 81553 - (sources."stack-utils-2.0.3" // { 81782 + (sources."stack-utils-2.0.5" // { 81554 81783 dependencies = [ 81555 81784 sources."escape-string-regexp-2.0.0" 81556 81785 ]; ··· 81615 81844 src = ../../applications/video/epgstation; 81616 81845 dependencies = [ 81617 81846 sources."@babel/code-frame-7.14.5" 81618 - sources."@babel/helper-validator-identifier-7.14.9" 81847 + sources."@babel/helper-validator-identifier-7.15.7" 81619 81848 (sources."@babel/highlight-7.14.5" // { 81620 81849 dependencies = [ 81621 81850 sources."ansi-styles-3.2.1" ··· 81626 81855 sources."@fluentui/date-time-utilities-7.9.1" 81627 81856 sources."@fluentui/dom-utilities-1.1.2" 81628 81857 sources."@fluentui/keyboard-key-0.2.17" 81629 - sources."@fluentui/react-7.175.2" 81858 + sources."@fluentui/react-7.176.1" 81630 81859 sources."@fluentui/react-focus-7.18.0" 81631 81860 sources."@fluentui/react-window-provider-1.0.2" 81632 81861 sources."@fluentui/theme-1.7.4" ··· 81641 81870 sources."normalize-path-2.1.1" 81642 81871 ]; 81643 81872 }) 81644 - sources."@microsoft/load-themed-styles-1.10.208" 81873 + sources."@microsoft/load-themed-styles-1.10.212" 81645 81874 sources."@nodelib/fs.scandir-2.1.5" 81646 81875 sources."@nodelib/fs.stat-2.0.5" 81647 81876 sources."@nodelib/fs.walk-1.2.8" ··· 81880 82109 dependencies = [ 81881 82110 sources."chownr-2.0.0" 81882 82111 sources."fs-minipass-2.1.0" 81883 - sources."minipass-3.1.3" 82112 + sources."minipass-3.1.5" 81884 82113 sources."minizlib-2.1.2" 81885 82114 sources."p-map-4.0.0" 81886 82115 sources."rimraf-3.0.2" ··· 82178 82407 sources."fast-glob-3.2.7" 82179 82408 sources."fast-json-stable-stringify-2.1.0" 82180 82409 sources."fast-levenshtein-1.1.4" 82181 - sources."fastq-1.12.0" 82410 + sources."fastq-1.13.0" 82182 82411 sources."figgy-pudding-3.5.2" 82183 82412 sources."figures-2.0.0" 82184 82413 sources."file-uri-to-path-1.0.0" ··· 82518 82747 }) 82519 82748 (sources."minipass-collect-1.0.2" // { 82520 82749 dependencies = [ 82521 - sources."minipass-3.1.3" 82750 + sources."minipass-3.1.5" 82522 82751 ]; 82523 82752 }) 82524 82753 (sources."minipass-flush-1.0.5" // { 82525 82754 dependencies = [ 82526 - sources."minipass-3.1.3" 82755 + sources."minipass-3.1.5" 82527 82756 ]; 82528 82757 }) 82529 82758 (sources."minipass-pipeline-1.2.4" // { 82530 82759 dependencies = [ 82531 - sources."minipass-3.1.3" 82760 + sources."minipass-3.1.5" 82532 82761 ]; 82533 82762 }) 82534 82763 sources."minizlib-1.3.3" ··· 82669 82898 sources."object.map-1.0.1" 82670 82899 sources."object.pick-1.3.0" 82671 82900 sources."object.reduce-1.0.1" 82672 - sources."office-ui-fabric-react-7.175.2" 82901 + sources."office-ui-fabric-react-7.176.1" 82673 82902 sources."on-finished-2.3.0" 82674 82903 sources."on-headers-1.0.2" 82675 82904 sources."once-1.4.0" ··· 82896 83125 sources."safe-buffer-5.1.2" 82897 83126 sources."safe-regex-1.1.0" 82898 83127 sources."safer-buffer-2.1.2" 82899 - (sources."sass-1.39.0" // { 83128 + (sources."sass-1.42.0" // { 82900 83129 dependencies = [ 82901 83130 sources."anymatch-3.1.2" 82902 83131 sources."binary-extensions-2.2.0" ··· 82928 83157 sources."setprototypeof-1.1.1" 82929 83158 sources."sha.js-2.4.11" 82930 83159 sources."sift-7.0.1" 82931 - sources."signal-exit-3.0.3" 83160 + sources."signal-exit-3.0.4" 82932 83161 sources."slash-3.0.0" 82933 83162 (sources."snapdragon-0.8.2" // { 82934 83163 dependencies = [ ··· 83006 83235 sources."sshpk-1.16.1" 83007 83236 (sources."ssri-8.0.1" // { 83008 83237 dependencies = [ 83009 - sources."minipass-3.1.3" 83238 + sources."minipass-3.1.5" 83010 83239 ]; 83011 83240 }) 83012 83241 sources."stack-trace-0.0.10" ··· 83082 83311 sources."yallist-3.1.1" 83083 83312 ]; 83084 83313 }) 83085 - (sources."terser-5.7.2" // { 83314 + (sources."terser-5.9.0" // { 83086 83315 dependencies = [ 83087 83316 sources."source-map-0.7.3" 83088 83317 ]; ··· 83324 83553 }; 83325 83554 dependencies = [ 83326 83555 sources."@babel/code-frame-7.12.11" 83327 - sources."@babel/helper-validator-identifier-7.14.9" 83556 + sources."@babel/helper-validator-identifier-7.15.7" 83328 83557 (sources."@babel/highlight-7.14.5" // { 83329 83558 dependencies = [ 83330 83559 sources."chalk-2.4.2" ··· 83338 83567 sources."acorn-jsx-5.3.2" 83339 83568 sources."ajv-6.12.6" 83340 83569 sources."ansi-colors-4.1.1" 83341 - sources."ansi-regex-5.0.0" 83570 + sources."ansi-regex-5.0.1" 83342 83571 sources."ansi-styles-3.2.1" 83343 83572 sources."argparse-1.0.10" 83344 83573 sources."astral-regex-2.0.0" ··· 83451 83680 sources."supports-color-5.5.0" 83452 83681 (sources."table-6.7.1" // { 83453 83682 dependencies = [ 83454 - sources."ajv-8.6.2" 83683 + sources."ajv-8.6.3" 83455 83684 sources."json-schema-traverse-1.0.0" 83456 83685 ]; 83457 83686 }) ··· 83485 83714 }; 83486 83715 dependencies = [ 83487 83716 sources."@babel/code-frame-7.12.11" 83488 - sources."@babel/helper-validator-identifier-7.14.9" 83717 + sources."@babel/helper-validator-identifier-7.15.7" 83489 83718 (sources."@babel/highlight-7.14.5" // { 83490 83719 dependencies = [ 83491 83720 sources."chalk-2.4.2" ··· 83501 83730 sources."acorn-jsx-5.3.2" 83502 83731 sources."ajv-6.12.6" 83503 83732 sources."ansi-colors-4.1.1" 83504 - sources."ansi-regex-5.0.0" 83733 + sources."ansi-regex-5.0.1" 83505 83734 sources."ansi-styles-3.2.1" 83506 83735 sources."argparse-1.0.10" 83507 83736 sources."astral-regex-2.0.0" ··· 83616 83845 sources."supports-color-8.1.1" 83617 83846 (sources."table-6.7.1" // { 83618 83847 dependencies = [ 83619 - sources."ajv-8.6.2" 83848 + sources."ajv-8.6.3" 83620 83849 sources."json-schema-traverse-1.0.0" 83621 83850 ]; 83622 83851 }) ··· 83697 83926 sources."@babel/helper-hoist-variables-7.15.4" 83698 83927 sources."@babel/helper-member-expression-to-functions-7.15.4" 83699 83928 sources."@babel/helper-module-imports-7.15.4" 83700 - sources."@babel/helper-module-transforms-7.15.4" 83929 + sources."@babel/helper-module-transforms-7.15.7" 83701 83930 sources."@babel/helper-optimise-call-expression-7.15.4" 83702 83931 sources."@babel/helper-plugin-utils-7.14.5" 83703 83932 sources."@babel/helper-replace-supers-7.15.4" 83704 83933 sources."@babel/helper-simple-access-7.15.4" 83705 83934 sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 83706 83935 sources."@babel/helper-split-export-declaration-7.15.4" 83707 - sources."@babel/helper-validator-identifier-7.14.9" 83936 + sources."@babel/helper-validator-identifier-7.15.7" 83708 83937 sources."@babel/helper-validator-option-7.14.5" 83709 83938 sources."@babel/helpers-7.15.4" 83710 83939 (sources."@babel/highlight-7.14.5" // { ··· 83712 83941 sources."chalk-2.4.2" 83713 83942 ]; 83714 83943 }) 83715 - sources."@babel/parser-7.15.5" 83944 + sources."@babel/parser-7.15.7" 83716 83945 sources."@babel/plugin-proposal-class-properties-7.14.5" 83717 83946 sources."@babel/plugin-proposal-export-default-from-7.14.5" 83718 83947 sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 83719 - sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 83948 + sources."@babel/plugin-proposal-object-rest-spread-7.15.6" 83720 83949 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 83721 83950 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 83722 83951 sources."@babel/plugin-syntax-class-properties-7.12.13" ··· 83773 84002 sources."@babel/code-frame-7.14.5" 83774 84003 ]; 83775 84004 }) 83776 - sources."@babel/types-7.15.4" 84005 + sources."@babel/types-7.15.6" 83777 84006 sources."@dabh/diagnostics-2.0.2" 83778 84007 sources."@expo/apple-utils-0.0.0-alpha.25" 83779 84008 sources."@expo/bunyan-4.0.0" ··· 83915 84144 sources."@sideway/address-4.1.2" 83916 84145 sources."@sideway/formula-3.0.0" 83917 84146 sources."@sideway/pinpoint-2.0.0" 83918 - sources."@sindresorhus/is-4.0.1" 84147 + sources."@sindresorhus/is-4.2.0" 83919 84148 sources."@szmarczak/http-timer-4.0.6" 83920 84149 sources."@tootallnate/once-1.1.2" 83921 84150 sources."@types/cacheable-request-6.0.2" ··· 83939 84168 sources."source-map-0.6.1" 83940 84169 ]; 83941 84170 }) 83942 - (sources."@types/webpack-4.41.30" // { 84171 + (sources."@types/webpack-4.41.31" // { 83943 84172 dependencies = [ 83944 84173 sources."source-map-0.6.1" 83945 84174 ]; ··· 83970 84199 sources."@webassemblyjs/wast-parser-1.9.0" 83971 84200 sources."@webassemblyjs/wast-printer-1.9.0" 83972 84201 sources."@wry/equality-0.1.11" 83973 - sources."@xmldom/xmldom-0.7.4" 84202 + sources."@xmldom/xmldom-0.7.5" 83974 84203 sources."@xtuc/ieee754-1.2.0" 83975 84204 sources."@xtuc/long-4.2.2" 83976 84205 sources."abbrev-1.1.1" ··· 84003 84232 ]; 84004 84233 }) 84005 84234 sources."ansi-html-0.0.7" 84006 - sources."ansi-regex-5.0.0" 84235 + sources."ansi-regex-5.0.1" 84007 84236 sources."ansi-styles-3.2.1" 84008 84237 sources."any-promise-1.3.0" 84009 84238 sources."anymatch-3.1.2" ··· 84081 84310 sources."base64url-3.0.1" 84082 84311 sources."batch-0.6.1" 84083 84312 sources."bcrypt-pbkdf-1.0.2" 84084 - sources."big-integer-1.6.48" 84313 + sources."big-integer-1.6.49" 84085 84314 sources."big.js-5.2.2" 84086 84315 sources."binary-extensions-2.2.0" 84087 84316 sources."bindings-1.5.0" ··· 84099 84328 ]; 84100 84329 }) 84101 84330 sources."boolbase-1.0.0" 84102 - (sources."boxen-5.0.1" // { 84331 + (sources."boxen-5.1.2" // { 84103 84332 dependencies = [ 84104 84333 sources."type-fest-0.20.2" 84105 84334 ]; ··· 84136 84365 sources."bytes-3.0.0" 84137 84366 (sources."cacache-15.3.0" // { 84138 84367 dependencies = [ 84139 - sources."minipass-3.1.3" 84368 + sources."minipass-3.1.5" 84140 84369 sources."mkdirp-1.0.4" 84141 84370 sources."rimraf-3.0.2" 84142 84371 ]; ··· 84156 84385 }) 84157 84386 sources."camelcase-6.2.0" 84158 84387 sources."caniuse-api-3.0.0" 84159 - sources."caniuse-lite-1.0.30001255" 84388 + sources."caniuse-lite-1.0.30001259" 84160 84389 sources."caseless-0.12.0" 84161 84390 (sources."chalk-4.1.2" // { 84162 84391 dependencies = [ ··· 84291 84520 sources."serialize-javascript-4.0.0" 84292 84521 ]; 84293 84522 }) 84294 - sources."core-js-3.17.3" 84295 - (sources."core-js-compat-3.17.3" // { 84523 + sources."core-js-3.18.0" 84524 + (sources."core-js-compat-3.18.0" // { 84296 84525 dependencies = [ 84297 84526 sources."browserslist-4.17.0" 84298 84527 sources."semver-7.0.0" ··· 84428 84657 sources."duplexify-3.7.1" 84429 84658 sources."ecc-jsbn-0.1.2" 84430 84659 sources."ee-first-1.1.1" 84431 - sources."electron-to-chromium-1.3.833" 84660 + sources."electron-to-chromium-1.3.845" 84432 84661 (sources."elliptic-6.5.4" // { 84433 84662 dependencies = [ 84434 84663 sources."bn.js-4.12.0" ··· 84535 84764 sources."fast-glob-3.2.7" 84536 84765 sources."fast-json-stable-stringify-2.1.0" 84537 84766 sources."fast-safe-stringify-2.1.1" 84538 - sources."fastq-1.12.0" 84767 + sources."fastq-1.13.0" 84539 84768 sources."faye-websocket-0.10.0" 84540 84769 sources."fecha-4.2.1" 84541 84770 sources."figgy-pudding-3.5.2" ··· 84555 84784 sources."find-yarn-workspace-root-2.0.0" 84556 84785 sources."flush-write-stream-1.1.1" 84557 84786 sources."fn.name-1.1.0" 84558 - sources."follow-redirects-1.14.3" 84787 + sources."follow-redirects-1.14.4" 84559 84788 sources."for-each-0.3.3" 84560 84789 sources."for-in-1.0.2" 84561 84790 sources."forever-agent-0.6.1" ··· 84591 84820 sources."fs-extra-9.0.0" 84592 84821 (sources."fs-minipass-2.1.0" // { 84593 84822 dependencies = [ 84594 - sources."minipass-3.1.3" 84823 + sources."minipass-3.1.5" 84595 84824 ]; 84596 84825 }) 84597 84826 sources."fs-write-stream-atomic-1.0.10" ··· 84918 85147 }) 84919 85148 (sources."make-fetch-happen-9.1.0" // { 84920 85149 dependencies = [ 84921 - sources."minipass-3.1.3" 85150 + sources."minipass-3.1.5" 84922 85151 ]; 84923 85152 }) 84924 85153 sources."map-cache-0.2.2" ··· 84969 85198 }) 84970 85199 (sources."minipass-collect-1.0.2" // { 84971 85200 dependencies = [ 84972 - sources."minipass-3.1.3" 85201 + sources."minipass-3.1.5" 84973 85202 ]; 84974 85203 }) 84975 85204 (sources."minipass-fetch-1.4.1" // { 84976 85205 dependencies = [ 84977 - sources."minipass-3.1.3" 85206 + sources."minipass-3.1.5" 84978 85207 ]; 84979 85208 }) 84980 85209 (sources."minipass-flush-1.0.5" // { 84981 85210 dependencies = [ 84982 - sources."minipass-3.1.3" 85211 + sources."minipass-3.1.5" 84983 85212 ]; 84984 85213 }) 84985 85214 (sources."minipass-json-stream-1.0.1" // { 84986 85215 dependencies = [ 84987 - sources."minipass-3.1.3" 85216 + sources."minipass-3.1.5" 84988 85217 ]; 84989 85218 }) 84990 85219 (sources."minipass-pipeline-1.2.4" // { 84991 85220 dependencies = [ 84992 - sources."minipass-3.1.3" 85221 + sources."minipass-3.1.5" 84993 85222 ]; 84994 85223 }) 84995 85224 (sources."minipass-sized-1.0.3" // { 84996 85225 dependencies = [ 84997 - sources."minipass-3.1.3" 85226 + sources."minipass-3.1.5" 84998 85227 ]; 84999 85228 }) 85000 85229 (sources."minizlib-2.1.2" // { 85001 85230 dependencies = [ 85002 - sources."minipass-3.1.3" 85231 + sources."minipass-3.1.5" 85003 85232 ]; 85004 85233 }) 85005 85234 sources."mississippi-3.0.0" ··· 85039 85268 ]; 85040 85269 }) 85041 85270 sources."nocache-2.1.0" 85042 - sources."node-fetch-2.6.2" 85271 + sources."node-fetch-2.6.4" 85043 85272 sources."node-forge-0.10.0" 85044 85273 (sources."node-gyp-7.1.2" // { 85045 85274 dependencies = [ ··· 85054 85283 ]; 85055 85284 }) 85056 85285 sources."node-modules-regexp-1.0.0" 85057 - sources."node-releases-1.1.75" 85286 + sources."node-releases-1.1.76" 85058 85287 sources."nopt-5.0.0" 85059 85288 sources."normalize-path-3.0.0" 85060 85289 sources."normalize-url-6.1.0" ··· 85078 85307 (sources."npm-registry-fetch-11.0.0" // { 85079 85308 dependencies = [ 85080 85309 sources."hosted-git-info-4.0.2" 85081 - sources."minipass-3.1.3" 85310 + sources."minipass-3.1.5" 85082 85311 sources."npm-package-arg-8.1.5" 85083 85312 sources."semver-7.3.5" 85084 85313 ]; 85085 85314 }) 85086 85315 sources."npm-run-path-2.0.2" 85087 85316 sources."npmlog-4.1.2" 85088 - sources."nth-check-2.0.0" 85317 + sources."nth-check-2.0.1" 85089 85318 sources."number-is-nan-1.0.1" 85090 85319 sources."oauth-sign-0.9.0" 85091 85320 sources."ob1-0.59.0" ··· 85176 85405 (sources."pacote-11.3.5" // { 85177 85406 dependencies = [ 85178 85407 sources."hosted-git-info-4.0.2" 85179 - sources."minipass-3.1.3" 85408 + sources."minipass-3.1.5" 85180 85409 sources."mkdirp-1.0.4" 85181 85410 sources."npm-package-arg-8.1.5" 85182 85411 sources."rimraf-3.0.2" ··· 85458 85687 sources."redis-errors-1.2.0" 85459 85688 sources."redis-parser-3.0.0" 85460 85689 sources."regenerate-1.4.2" 85461 - sources."regenerate-unicode-properties-8.2.0" 85690 + sources."regenerate-unicode-properties-9.0.0" 85462 85691 sources."regenerator-runtime-0.13.9" 85463 85692 sources."regenerator-transform-0.14.5" 85464 85693 sources."regex-not-1.0.2" 85465 85694 sources."regexp.prototype.flags-1.3.1" 85466 - sources."regexpu-core-4.7.1" 85695 + sources."regexpu-core-4.8.0" 85467 85696 sources."registry-auth-token-3.3.2" 85468 85697 sources."registry-url-3.1.0" 85469 85698 sources."regjsgen-0.5.2" 85470 - (sources."regjsparser-0.6.9" // { 85699 + (sources."regjsparser-0.7.0" // { 85471 85700 dependencies = [ 85472 85701 sources."jsesc-0.5.0" 85473 85702 ]; ··· 85566 85795 sources."shebang-regex-1.0.0" 85567 85796 sources."shell-quote-1.7.2" 85568 85797 sources."side-channel-1.0.4" 85569 - sources."signal-exit-3.0.3" 85798 + sources."signal-exit-3.0.4" 85570 85799 sources."simple-plist-1.1.1" 85571 85800 sources."simple-swizzle-0.2.2" 85572 85801 sources."sisteransi-1.0.5" ··· 85615 85844 ]; 85616 85845 }) 85617 85846 sources."socks-2.6.1" 85618 - sources."socks-proxy-agent-6.0.0" 85847 + sources."socks-proxy-agent-6.1.0" 85619 85848 sources."source-list-map-2.0.1" 85620 85849 sources."source-map-0.5.7" 85621 85850 sources."source-map-resolve-0.5.3" ··· 85633 85862 sources."sshpk-1.16.1" 85634 85863 (sources."ssri-8.0.1" // { 85635 85864 dependencies = [ 85636 - sources."minipass-3.1.3" 85865 + sources."minipass-3.1.5" 85637 85866 ]; 85638 85867 }) 85639 85868 sources."stable-0.1.8" ··· 85721 85950 sources."tapable-1.1.3" 85722 85951 (sources."tar-6.1.11" // { 85723 85952 dependencies = [ 85724 - sources."minipass-3.1.3" 85953 + sources."minipass-3.1.5" 85725 85954 sources."mkdirp-1.0.4" 85726 85955 ]; 85727 85956 }) ··· 85782 86011 sources."to-regex-range-5.0.1" 85783 86012 sources."toidentifier-1.0.0" 85784 86013 sources."tough-cookie-2.5.0" 86014 + sources."tr46-0.0.3" 85785 86015 sources."traverse-0.6.6" 85786 86016 sources."tree-kill-1.2.2" 85787 86017 sources."triple-beam-1.3.0" ··· 85799 86029 sources."uglify-js-3.14.2" 85800 86030 sources."ultron-1.1.1" 85801 86031 sources."unbox-primitive-1.0.1" 85802 - sources."unicode-canonical-property-names-ecmascript-1.0.4" 85803 - sources."unicode-match-property-ecmascript-1.0.4" 85804 - sources."unicode-match-property-value-ecmascript-1.2.0" 85805 - sources."unicode-property-aliases-ecmascript-1.1.0" 86032 + sources."unicode-canonical-property-names-ecmascript-2.0.0" 86033 + sources."unicode-match-property-ecmascript-2.0.0" 86034 + sources."unicode-match-property-value-ecmascript-2.0.0" 86035 + sources."unicode-property-aliases-ecmascript-2.0.0" 85806 86036 sources."union-value-1.0.1" 85807 86037 sources."uniq-1.0.1" 85808 86038 sources."uniqs-2.0.0" ··· 85889 86119 }) 85890 86120 sources."wbuf-1.7.3" 85891 86121 sources."wcwidth-1.0.1" 86122 + sources."webidl-conversions-3.0.1" 85892 86123 (sources."webpack-4.43.0" // { 85893 86124 dependencies = [ 85894 86125 sources."braces-2.3.2" ··· 86017 86248 }) 86018 86249 sources."websocket-driver-0.6.5" 86019 86250 sources."websocket-extensions-0.1.4" 86251 + sources."whatwg-url-5.0.0" 86020 86252 sources."which-1.3.1" 86021 86253 sources."which-boxed-primitive-1.0.2" 86022 86254 sources."which-module-2.0.0" ··· 86125 86357 sources."@babel/helper-hoist-variables-7.15.4" 86126 86358 sources."@babel/helper-member-expression-to-functions-7.15.4" 86127 86359 sources."@babel/helper-module-imports-7.15.4" 86128 - sources."@babel/helper-module-transforms-7.15.4" 86360 + sources."@babel/helper-module-transforms-7.15.7" 86129 86361 sources."@babel/helper-optimise-call-expression-7.15.4" 86130 86362 sources."@babel/helper-plugin-utils-7.14.5" 86131 86363 sources."@babel/helper-replace-supers-7.15.4" 86132 86364 sources."@babel/helper-simple-access-7.15.4" 86133 86365 sources."@babel/helper-split-export-declaration-7.15.4" 86134 - sources."@babel/helper-validator-identifier-7.14.9" 86366 + sources."@babel/helper-validator-identifier-7.15.7" 86135 86367 sources."@babel/helper-validator-option-7.14.5" 86136 86368 sources."@babel/helpers-7.15.4" 86137 86369 sources."@babel/highlight-7.14.5" 86138 - sources."@babel/parser-7.15.5" 86139 - sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 86370 + sources."@babel/parser-7.15.7" 86371 + sources."@babel/plugin-proposal-object-rest-spread-7.15.6" 86140 86372 sources."@babel/plugin-syntax-jsx-7.14.5" 86141 86373 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 86142 86374 sources."@babel/plugin-transform-destructuring-7.14.7" ··· 86144 86376 sources."@babel/plugin-transform-react-jsx-7.14.9" 86145 86377 sources."@babel/template-7.15.4" 86146 86378 sources."@babel/traverse-7.15.4" 86147 - sources."@babel/types-7.15.4" 86379 + sources."@babel/types-7.15.6" 86148 86380 sources."@types/minimist-1.2.2" 86149 - sources."@types/node-16.9.0" 86381 + sources."@types/node-16.9.4" 86150 86382 sources."@types/normalize-package-data-2.4.1" 86151 86383 sources."@types/yauzl-2.9.2" 86152 86384 sources."@types/yoga-layout-1.9.2" ··· 86156 86388 sources."type-fest-0.21.3" 86157 86389 ]; 86158 86390 }) 86159 - sources."ansi-regex-5.0.0" 86391 + sources."ansi-regex-5.0.1" 86160 86392 sources."ansi-styles-3.2.1" 86161 86393 sources."arrify-1.0.1" 86162 86394 sources."astral-regex-2.0.0" ··· 86173 86405 sources."callsites-2.0.0" 86174 86406 sources."camelcase-5.3.1" 86175 86407 sources."camelcase-keys-6.2.2" 86176 - sources."caniuse-lite-1.0.30001255" 86408 + sources."caniuse-lite-1.0.30001259" 86177 86409 sources."chalk-2.4.2" 86178 86410 sources."chownr-1.1.4" 86179 86411 sources."ci-info-2.0.0" ··· 86198 86430 }) 86199 86431 sources."delay-5.0.0" 86200 86432 sources."devtools-protocol-0.0.869402" 86201 - sources."electron-to-chromium-1.3.833" 86433 + sources."electron-to-chromium-1.3.845" 86202 86434 sources."emoji-regex-8.0.0" 86203 86435 sources."end-of-stream-1.4.4" 86204 86436 sources."error-ex-1.3.2" ··· 86252 86484 sources."loose-envify-1.4.0" 86253 86485 sources."lru-cache-6.0.0" 86254 86486 sources."make-dir-3.1.0" 86255 - sources."map-obj-4.2.1" 86487 + sources."map-obj-4.3.0" 86256 86488 (sources."meow-9.0.0" // { 86257 86489 dependencies = [ 86258 86490 sources."type-fest-0.18.1" ··· 86265 86497 sources."minimist-options-4.1.0" 86266 86498 sources."mkdirp-classic-0.5.3" 86267 86499 sources."ms-2.1.2" 86268 - sources."node-fetch-2.6.2" 86269 - sources."node-releases-1.1.75" 86500 + sources."node-fetch-2.6.4" 86501 + sources."node-releases-1.1.76" 86270 86502 (sources."normalize-package-data-3.0.3" // { 86271 86503 dependencies = [ 86272 86504 sources."semver-7.3.5" ··· 86318 86550 sources."scheduler-0.18.0" 86319 86551 sources."semver-6.3.0" 86320 86552 sources."shell-quote-1.7.2" 86321 - sources."signal-exit-3.0.3" 86553 + sources."signal-exit-3.0.4" 86322 86554 (sources."slice-ansi-3.0.0" // { 86323 86555 dependencies = [ 86324 86556 sources."ansi-styles-4.3.0" ··· 86331 86563 sources."spdx-exceptions-2.3.0" 86332 86564 sources."spdx-expression-parse-3.0.1" 86333 86565 sources."spdx-license-ids-3.0.10" 86334 - (sources."stack-utils-2.0.3" // { 86566 + (sources."stack-utils-2.0.5" // { 86335 86567 dependencies = [ 86336 86568 sources."escape-string-regexp-2.0.0" 86337 86569 ]; ··· 86349 86581 sources."tar-stream-2.2.0" 86350 86582 sources."through-2.3.8" 86351 86583 sources."to-fast-properties-2.0.0" 86584 + sources."tr46-0.0.3" 86352 86585 sources."trim-newlines-3.0.1" 86353 86586 sources."type-fest-0.12.0" 86354 86587 sources."unbzip2-stream-1.4.3" 86355 86588 sources."util-deprecate-1.0.2" 86356 86589 sources."validate-npm-package-license-3.0.4" 86590 + sources."webidl-conversions-3.0.1" 86591 + sources."whatwg-url-5.0.0" 86357 86592 sources."widest-line-3.1.0" 86358 86593 (sources."wrap-ansi-6.2.0" // { 86359 86594 dependencies = [ ··· 86383 86618 fauna-shell = nodeEnv.buildNodePackage { 86384 86619 name = "fauna-shell"; 86385 86620 packageName = "fauna-shell"; 86386 - version = "0.12.5"; 86621 + version = "0.12.6"; 86387 86622 src = fetchurl { 86388 - url = "https://registry.npmjs.org/fauna-shell/-/fauna-shell-0.12.5.tgz"; 86389 - sha512 = "yDfb49A/9LCm7/xwk7zRzcjzt4w6FKUPLtSy+sRuOA9h26sNwhh4CYOqj57VOF+N7G55XFixEb0/FGKvDl7AyA=="; 86623 + url = "https://registry.npmjs.org/fauna-shell/-/fauna-shell-0.12.6.tgz"; 86624 + sha512 = "8EB7YEcbD6jmmK9oYe1R/UR8q3Akb0PrDUbROCZ66LQlBiFKrwGbf1CCZ+RAFZOYyYGmQIEp1QQE0vX6FsZzbg=="; 86390 86625 }; 86391 86626 dependencies = [ 86392 86627 (sources."@heroku-cli/color-1.1.14" // { ··· 86413 86648 sources."tslib-2.3.1" 86414 86649 ]; 86415 86650 }) 86416 - (sources."@oclif/core-0.5.35" // { 86651 + (sources."@oclif/core-0.5.39" // { 86417 86652 dependencies = [ 86418 86653 sources."chalk-4.1.2" 86419 86654 (sources."cli-ux-5.6.3" // { ··· 86465 86700 ]; 86466 86701 }) 86467 86702 sources."ansi-escapes-4.3.2" 86468 - sources."ansi-regex-5.0.0" 86703 + sources."ansi-regex-5.0.1" 86469 86704 sources."ansi-styles-4.3.0" 86470 86705 sources."ansicolors-0.3.2" 86471 86706 sources."argparse-1.0.10" ··· 86498 86733 ]; 86499 86734 }) 86500 86735 sources."bluebird-3.7.2" 86501 - (sources."boxen-5.0.1" // { 86736 + (sources."boxen-5.1.2" // { 86502 86737 dependencies = [ 86503 86738 sources."chalk-4.1.2" 86504 86739 sources."has-flag-4.0.0" ··· 86549 86784 sources."clean-stack-3.0.1" 86550 86785 sources."cli-boxes-2.2.1" 86551 86786 sources."cli-cursor-3.1.0" 86552 - sources."cli-progress-3.9.0" 86787 + sources."cli-progress-3.9.1" 86553 86788 sources."cli-spinners-2.6.0" 86554 86789 (sources."cli-table-0.3.6" // { 86555 86790 dependencies = [ ··· 86656 86891 sources."fast-glob-3.2.7" 86657 86892 sources."fast-json-stable-stringify-2.1.0" 86658 86893 sources."fast-levenshtein-2.0.6" 86659 - sources."fastq-1.12.0" 86894 + sources."fastq-1.13.0" 86660 86895 (sources."faunadb-4.4.1" // { 86661 86896 dependencies = [ 86662 86897 sources."chalk-4.1.2" ··· 86754 86989 sources."inflight-1.0.6" 86755 86990 sources."inherits-2.0.4" 86756 86991 sources."ini-1.3.8" 86757 - (sources."inquirer-8.1.2" // { 86992 + (sources."inquirer-8.1.5" // { 86758 86993 dependencies = [ 86759 86994 sources."chalk-4.1.2" 86760 86995 sources."has-flag-4.0.0" ··· 86836 87071 ]; 86837 87072 }) 86838 87073 sources."nice-try-1.0.5" 86839 - sources."node-fetch-2.6.2" 87074 + sources."node-fetch-2.6.4" 86840 87075 sources."normalize-url-2.0.1" 86841 87076 sources."npm-run-path-2.0.2" 86842 87077 sources."oauth-sign-0.9.0" ··· 86889 87124 sources."posix-character-classes-0.1.1" 86890 87125 sources."prelude-ls-1.1.2" 86891 87126 sources."prepend-http-2.0.0" 86892 - sources."prettier-2.4.0" 87127 + sources."prettier-2.4.1" 86893 87128 sources."process-nextick-args-2.0.1" 86894 87129 sources."psl-1.8.0" 86895 87130 sources."punycode-2.1.1" ··· 86931 87166 }) 86932 87167 sources."shebang-command-1.2.0" 86933 87168 sources."shebang-regex-1.0.0" 86934 - sources."signal-exit-3.0.3" 87169 + sources."signal-exit-3.0.4" 86935 87170 sources."slash-3.0.0" 86936 87171 (sources."snapdragon-0.8.2" // { 86937 87172 dependencies = [ ··· 87016 87251 sources."to-regex-3.0.2" 87017 87252 sources."to-regex-range-5.0.1" 87018 87253 sources."tough-cookie-2.5.0" 87254 + sources."tr46-0.0.3" 87019 87255 sources."treeify-1.1.0" 87020 87256 sources."tslib-1.14.1" 87021 87257 sources."tunnel-agent-0.6.0" ··· 87047 87283 ]; 87048 87284 }) 87049 87285 sources."wcwidth-1.0.1" 87286 + sources."webidl-conversions-3.0.1" 87287 + sources."whatwg-url-5.0.0" 87050 87288 sources."which-1.3.1" 87051 87289 sources."widest-line-3.1.0" 87052 87290 sources."word-wrap-1.2.3" ··· 87086 87324 sources."@google-cloud/promisify-2.0.4" 87087 87325 (sources."@google-cloud/pubsub-2.17.0" // { 87088 87326 dependencies = [ 87089 - sources."google-auth-library-7.9.1" 87327 + sources."google-auth-library-7.9.2" 87090 87328 ]; 87091 87329 }) 87092 87330 sources."@grpc/grpc-js-1.3.7" 87093 - sources."@grpc/proto-loader-0.6.4" 87331 + sources."@grpc/proto-loader-0.6.5" 87094 87332 sources."@jsdevtools/ono-7.1.3" 87095 87333 (sources."@npmcli/fs-1.0.0" // { 87096 87334 dependencies = [ ··· 87123 87361 sources."@types/json-schema-7.0.9" 87124 87362 sources."@types/long-4.0.1" 87125 87363 sources."@types/minimatch-3.0.5" 87126 - sources."@types/node-16.9.0" 87364 + sources."@types/node-16.9.4" 87127 87365 sources."JSONStream-1.3.5" 87128 87366 sources."abbrev-1.1.1" 87129 87367 sources."abort-controller-3.0.0" ··· 87142 87380 ]; 87143 87381 }) 87144 87382 sources."ansi-escapes-3.2.0" 87145 - sources."ansi-regex-5.0.0" 87383 + sources."ansi-regex-5.0.1" 87146 87384 sources."ansi-styles-4.3.0" 87147 87385 sources."ansicolors-0.3.2" 87148 87386 sources."anymatch-3.1.2" ··· 87182 87420 }) 87183 87421 sources."basic-auth-connect-1.0.0" 87184 87422 sources."bcrypt-pbkdf-1.0.2" 87185 - sources."big-integer-1.6.48" 87423 + sources."big-integer-1.6.49" 87186 87424 sources."bignumber.js-9.0.1" 87187 87425 sources."binary-0.3.0" 87188 87426 sources."binary-extensions-2.2.0" ··· 87456 87694 sources."strip-ansi-3.0.1" 87457 87695 ]; 87458 87696 }) 87459 - sources."gaxios-4.3.1" 87697 + sources."gaxios-4.3.2" 87460 87698 sources."gcp-metadata-4.3.1" 87461 87699 sources."get-caller-file-2.0.5" 87462 87700 sources."get-stream-4.1.0" ··· 87472 87710 sources."glob-slasher-1.0.1" 87473 87711 sources."global-dirs-2.1.0" 87474 87712 sources."google-auth-library-6.1.6" 87475 - (sources."google-gax-2.25.1" // { 87713 + (sources."google-gax-2.25.4" // { 87476 87714 dependencies = [ 87477 - sources."google-auth-library-7.9.1" 87715 + sources."google-auth-library-7.9.2" 87478 87716 ]; 87479 87717 }) 87480 87718 sources."google-p12-pem-3.1.2" ··· 87647 87885 sources."mimic-response-1.0.1" 87648 87886 sources."minimatch-3.0.4" 87649 87887 sources."minimist-1.2.5" 87650 - sources."minipass-3.1.3" 87888 + sources."minipass-3.1.5" 87651 87889 sources."minipass-collect-1.0.2" 87652 87890 sources."minipass-fetch-1.4.1" 87653 87891 sources."minipass-flush-1.0.5" ··· 87675 87913 sources."next-tick-1.0.0" 87676 87914 sources."nice-try-1.0.5" 87677 87915 sources."node-emoji-1.11.0" 87678 - sources."node-fetch-2.6.2" 87916 + sources."node-fetch-2.6.4" 87679 87917 sources."node-forge-0.10.0" 87680 87918 (sources."node-gyp-8.2.0" // { 87681 87919 dependencies = [ ··· 87738 87976 sources."promise-breaker-5.0.0" 87739 87977 sources."promise-inflight-1.0.1" 87740 87978 sources."promise-retry-2.0.1" 87741 - sources."proto3-json-serializer-0.1.3" 87979 + sources."proto3-json-serializer-0.1.4" 87742 87980 sources."protobufjs-6.11.2" 87743 87981 sources."proxy-addr-2.0.7" 87744 87982 (sources."proxy-agent-4.0.1" // { ··· 87814 88052 sources."setprototypeof-1.1.1" 87815 88053 sources."shebang-command-1.2.0" 87816 88054 sources."shebang-regex-1.0.0" 87817 - sources."signal-exit-3.0.3" 88055 + sources."signal-exit-3.0.4" 87818 88056 sources."simple-swizzle-0.2.2" 87819 88057 sources."smart-buffer-4.2.0" 87820 88058 sources."socks-2.6.1" ··· 87894 88132 sources."toidentifier-1.0.0" 87895 88133 sources."tough-cookie-2.5.0" 87896 88134 sources."toxic-1.0.1" 88135 + sources."tr46-0.0.3" 87897 88136 sources."traverse-0.3.9" 87898 88137 sources."triple-beam-1.3.0" 87899 88138 sources."tslib-2.3.1" ··· 87924 88163 }) 87925 88164 (sources."update-notifier-5.1.0" // { 87926 88165 dependencies = [ 87927 - sources."boxen-5.0.1" 88166 + sources."boxen-5.1.2" 87928 88167 sources."camelcase-6.2.0" 87929 88168 sources."chalk-4.1.2" 87930 88169 sources."global-dirs-3.0.0" ··· 87951 88190 ]; 87952 88191 }) 87953 88192 sources."wcwidth-1.0.1" 88193 + sources."webidl-conversions-3.0.1" 88194 + sources."whatwg-url-5.0.0" 87954 88195 sources."which-1.3.1" 87955 88196 (sources."wide-align-1.1.3" // { 87956 88197 dependencies = [ ··· 88003 88244 sha512 = "NptKAXT3UrePy8JfK6ww/yiwqjVipouoEYUucKVpLNOiOWsrZ7XtcG3iUWpb3yGUoaN7OEafsd3cEGFMIjoXUQ=="; 88004 88245 }; 88005 88246 dependencies = [ 88006 - sources."ansi-regex-5.0.0" 88247 + sources."ansi-regex-5.0.1" 88007 88248 sources."ansi-styles-4.3.0" 88008 88249 sources."balanced-match-1.0.2" 88009 88250 sources."brace-expansion-1.1.11" ··· 88053 88294 }; 88054 88295 dependencies = [ 88055 88296 sources."@babel/code-frame-7.14.5" 88056 - sources."@babel/helper-validator-identifier-7.14.9" 88297 + sources."@babel/helper-validator-identifier-7.15.7" 88057 88298 (sources."@babel/highlight-7.14.5" // { 88058 88299 dependencies = [ 88059 88300 sources."ansi-styles-3.2.1" ··· 88068 88309 sources."@types/normalize-package-data-2.4.1" 88069 88310 sources."aggregate-error-3.1.0" 88070 88311 sources."ansi-escapes-4.3.2" 88071 - sources."ansi-regex-5.0.0" 88312 + sources."ansi-regex-5.0.1" 88072 88313 sources."ansi-styles-4.3.0" 88073 88314 sources."arrify-2.0.1" 88074 88315 sources."astral-regex-2.0.0" ··· 88123 88364 sources."locate-path-5.0.0" 88124 88365 sources."lodash-4.17.21" 88125 88366 sources."lru-cache-6.0.0" 88126 - sources."map-obj-4.2.1" 88367 + sources."map-obj-4.3.0" 88127 88368 (sources."meow-8.1.2" // { 88128 88369 dependencies = [ 88129 88370 sources."type-fest-0.18.1" ··· 88183 88424 sources."semver-7.3.5" 88184 88425 sources."shebang-command-2.0.0" 88185 88426 sources."shebang-regex-3.0.0" 88186 - sources."signal-exit-3.0.3" 88427 + sources."signal-exit-3.0.4" 88187 88428 sources."slice-ansi-3.0.0" 88188 88429 sources."spdx-correct-3.1.1" 88189 88430 sources."spdx-exceptions-2.3.0" ··· 88233 88474 dependencies = [ 88234 88475 sources."@types/atob-2.1.2" 88235 88476 sources."@types/inquirer-6.5.0" 88236 - sources."@types/node-16.9.0" 88477 + sources."@types/node-16.9.4" 88237 88478 sources."@types/through-0.0.30" 88238 88479 sources."ajv-6.12.6" 88239 88480 sources."ansi-escapes-4.3.2" 88240 - sources."ansi-regex-5.0.0" 88481 + sources."ansi-regex-5.0.1" 88241 88482 sources."ansi-styles-4.3.0" 88242 88483 sources."argparse-1.0.10" 88243 88484 sources."asn1-0.2.4" ··· 88342 88583 sources."mkdirp-0.5.5" 88343 88584 sources."mute-stream-0.0.8" 88344 88585 sources."nedb-1.8.0" 88345 - sources."node-fetch-2.6.2" 88586 + sources."node-fetch-2.6.4" 88346 88587 (sources."number-to-bn-1.7.0" // { 88347 88588 dependencies = [ 88348 88589 sources."bn.js-4.11.6" ··· 88379 88620 sources."safe-buffer-5.2.1" 88380 88621 sources."safer-buffer-2.1.2" 88381 88622 sources."set-blocking-2.0.0" 88382 - sources."signal-exit-3.0.3" 88623 + sources."signal-exit-3.0.4" 88383 88624 sources."simple-concat-1.0.1" 88384 88625 sources."simple-get-2.8.1" 88385 88626 sources."sprintf-js-1.0.3" ··· 88394 88635 sources."timed-out-4.0.1" 88395 88636 sources."tmp-0.0.33" 88396 88637 sources."tough-cookie-2.5.0" 88638 + sources."tr46-0.0.3" 88397 88639 sources."tslib-1.14.1" 88398 88640 sources."tunnel-agent-0.6.0" 88399 88641 sources."tweetnacl-0.14.5" ··· 88407 88649 sources."uuid-3.4.0" 88408 88650 sources."verror-1.10.0" 88409 88651 sources."web3-utils-1.5.2" 88652 + sources."webidl-conversions-3.0.1" 88653 + sources."whatwg-url-5.0.0" 88410 88654 sources."which-module-2.0.0" 88411 88655 sources."wrap-ansi-6.2.0" 88412 88656 sources."wrappy-1.0.2" ··· 88606 88850 sources."kind-of-4.0.0" 88607 88851 ]; 88608 88852 }) 88609 - sources."i-0.3.6" 88853 + sources."i-0.3.7" 88610 88854 sources."imurmurhash-0.1.4" 88611 88855 sources."inflight-1.0.6" 88612 88856 sources."inherits-2.0.4" ··· 88743 88987 }) 88744 88988 sources."shush-1.0.0" 88745 88989 sources."side-channel-1.0.4" 88746 - sources."signal-exit-3.0.3" 88990 + sources."signal-exit-3.0.4" 88747 88991 (sources."snapdragon-0.8.2" // { 88748 88992 dependencies = [ 88749 88993 sources."define-property-0.2.5" ··· 88874 89118 }; 88875 89119 dependencies = [ 88876 89120 sources."@medv/blessed-2.0.1" 88877 - sources."ansi-regex-5.0.0" 89121 + sources."ansi-regex-5.0.1" 88878 89122 sources."ansi-styles-4.3.0" 88879 89123 sources."chalk-4.1.2" 88880 89124 sources."color-convert-2.0.1" ··· 88919 89163 gatsby-cli = nodeEnv.buildNodePackage { 88920 89164 name = "gatsby-cli"; 88921 89165 packageName = "gatsby-cli"; 88922 - version = "3.13.0"; 89166 + version = "3.14.0"; 88923 89167 src = fetchurl { 88924 - url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.13.0.tgz"; 88925 - sha512 = "QTJZUY4wPwXLuK4aP3GCqBpklruV2hv/jtf65ED5zfeF2YnZlFvrJXt40n9o1ptc5XYe/FF6yFBxu1Lwbt9qtg=="; 89168 + url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.14.0.tgz"; 89169 + sha512 = "1Az1EEQu0txRE8eZmOo9GOxRSjhJtFseinraiIEtSeHkYuM0/gjuoKVSrtmbBFNWdOZll6QYCO3sRl6sOrwb+g=="; 88926 89170 }; 88927 89171 dependencies = [ 88928 89172 (sources."@ardatan/aggregate-error-0.0.6" // { ··· 88954 89198 sources."@babel/helper-hoist-variables-7.15.4" 88955 89199 sources."@babel/helper-member-expression-to-functions-7.15.4" 88956 89200 sources."@babel/helper-module-imports-7.15.4" 88957 - sources."@babel/helper-module-transforms-7.15.4" 89201 + sources."@babel/helper-module-transforms-7.15.7" 88958 89202 sources."@babel/helper-optimise-call-expression-7.15.4" 88959 89203 sources."@babel/helper-plugin-utils-7.14.5" 88960 89204 sources."@babel/helper-replace-supers-7.15.4" 88961 89205 sources."@babel/helper-simple-access-7.15.4" 88962 89206 sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 88963 89207 sources."@babel/helper-split-export-declaration-7.15.4" 88964 - sources."@babel/helper-validator-identifier-7.14.9" 89208 + sources."@babel/helper-validator-identifier-7.15.7" 88965 89209 sources."@babel/helper-validator-option-7.14.5" 88966 89210 sources."@babel/helpers-7.15.4" 88967 89211 (sources."@babel/highlight-7.14.5" // { ··· 88969 89213 sources."chalk-2.4.2" 88970 89214 ]; 88971 89215 }) 88972 - sources."@babel/parser-7.15.5" 89216 + sources."@babel/parser-7.15.7" 88973 89217 sources."@babel/plugin-proposal-object-rest-spread-7.10.4" 88974 89218 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 88975 89219 sources."@babel/plugin-syntax-jsx-7.14.5" ··· 88978 89222 sources."@babel/plugin-transform-parameters-7.15.4" 88979 89223 sources."@babel/plugin-transform-react-jsx-7.14.9" 88980 89224 sources."@babel/runtime-7.15.4" 88981 - sources."@babel/standalone-7.15.5" 89225 + sources."@babel/standalone-7.15.7" 88982 89226 sources."@babel/template-7.15.4" 88983 89227 sources."@babel/traverse-7.15.4" 88984 - sources."@babel/types-7.15.4" 89228 + sources."@babel/types-7.15.6" 88985 89229 sources."@graphql-tools/schema-7.1.5" 88986 89230 sources."@graphql-tools/utils-7.10.0" 88987 89231 sources."@hapi/address-2.1.4" ··· 89007 89251 }) 89008 89252 sources."@sideway/formula-3.0.0" 89009 89253 sources."@sideway/pinpoint-2.0.0" 89010 - sources."@sindresorhus/is-0.14.0" 89011 - sources."@szmarczak/http-timer-1.1.2" 89254 + sources."@sindresorhus/is-4.2.0" 89255 + sources."@szmarczak/http-timer-4.0.6" 89012 89256 sources."@tokenizer/token-0.3.0" 89013 89257 sources."@turist/fetch-7.1.7" 89014 89258 sources."@turist/time-0.0.2" 89259 + sources."@types/cacheable-request-6.0.2" 89015 89260 sources."@types/common-tags-1.8.1" 89261 + sources."@types/http-cache-semantics-4.0.1" 89016 89262 sources."@types/istanbul-lib-coverage-2.0.3" 89017 89263 sources."@types/istanbul-lib-report-3.0.0" 89018 89264 sources."@types/istanbul-reports-1.1.2" 89019 89265 sources."@types/json-patch-0.0.30" 89020 - sources."@types/node-16.9.0" 89266 + sources."@types/keyv-3.1.3" 89267 + sources."@types/node-16.9.4" 89021 89268 sources."@types/node-fetch-2.5.12" 89269 + sources."@types/responselike-1.0.0" 89022 89270 sources."@types/unist-2.0.6" 89023 89271 sources."@types/yargs-15.0.14" 89024 89272 sources."@types/yargs-parser-20.2.1" ··· 89033 89281 ]; 89034 89282 }) 89035 89283 sources."ansi-escapes-4.3.2" 89036 - sources."ansi-regex-5.0.0" 89284 + sources."ansi-regex-5.0.1" 89037 89285 sources."ansi-styles-3.2.1" 89038 89286 sources."anymatch-3.1.2" 89039 89287 sources."arch-2.2.0" ··· 89070 89318 sources."braces-3.0.2" 89071 89319 sources."browserslist-4.17.0" 89072 89320 sources."bytes-3.1.0" 89073 - (sources."cacheable-request-6.1.0" // { 89321 + sources."cacheable-lookup-5.0.4" 89322 + (sources."cacheable-request-7.0.2" // { 89074 89323 dependencies = [ 89075 89324 sources."get-stream-5.2.0" 89076 - sources."lowercase-keys-2.0.0" 89077 - sources."normalize-url-4.5.1" 89078 89325 ]; 89079 89326 }) 89080 89327 sources."call-bind-1.0.2" 89081 89328 sources."camel-case-4.1.2" 89082 89329 sources."camelcase-5.3.1" 89083 - sources."caniuse-lite-1.0.30001255" 89330 + sources."caniuse-lite-1.0.30001259" 89084 89331 sources."ccount-1.1.0" 89085 89332 (sources."chalk-4.1.2" // { 89086 89333 dependencies = [ ··· 89130 89377 ]; 89131 89378 }) 89132 89379 sources."content-type-1.0.4" 89133 - sources."contentful-management-7.36.2" 89134 - sources."contentful-sdk-core-6.8.5" 89380 + sources."contentful-management-7.39.1" 89381 + sources."contentful-sdk-core-6.9.0" 89135 89382 sources."convert-hrtime-3.0.0" 89136 89383 (sources."convert-source-map-1.8.0" // { 89137 89384 dependencies = [ ··· 89141 89388 sources."cookie-0.4.0" 89142 89389 sources."cookie-signature-1.0.6" 89143 89390 sources."cors-2.8.5" 89144 - sources."create-gatsby-1.13.0" 89391 + sources."create-gatsby-1.14.0" 89145 89392 (sources."cross-spawn-6.0.5" // { 89146 89393 dependencies = [ 89147 89394 sources."semver-5.7.1" ··· 89153 89400 sources."debug-4.3.2" 89154 89401 sources."decamelize-1.2.0" 89155 89402 sources."decode-uri-component-0.2.0" 89156 - sources."decompress-response-3.3.0" 89403 + (sources."decompress-response-6.0.0" // { 89404 + dependencies = [ 89405 + sources."mimic-response-3.1.0" 89406 + ]; 89407 + }) 89157 89408 sources."deep-extend-0.6.0" 89158 - sources."defer-to-connect-1.1.3" 89409 + sources."defer-to-connect-2.0.1" 89159 89410 sources."delayed-stream-1.0.0" 89160 89411 sources."depd-1.1.2" 89161 89412 sources."destroy-1.0.4" ··· 89176 89427 sources."dotenv-8.6.0" 89177 89428 sources."duplexer3-0.1.4" 89178 89429 sources."ee-first-1.1.1" 89179 - sources."electron-to-chromium-1.3.833" 89430 + sources."electron-to-chromium-1.3.845" 89180 89431 sources."emoji-regex-7.0.3" 89181 89432 sources."encodeurl-1.0.2" 89182 89433 sources."end-of-stream-1.4.4" ··· 89238 89489 ]; 89239 89490 }) 89240 89491 sources."find-up-4.1.0" 89241 - sources."follow-redirects-1.14.3" 89492 + sources."follow-redirects-1.14.4" 89242 89493 sources."form-data-3.0.1" 89243 89494 sources."forwarded-0.2.0" 89244 89495 sources."fresh-0.5.2" 89245 89496 sources."fs-exists-cached-1.0.0" 89246 - sources."fs-extra-8.1.0" 89497 + sources."fs-extra-10.0.0" 89247 89498 sources."fs.realpath-1.0.0" 89248 89499 sources."fsevents-2.3.2" 89249 89500 sources."function-bind-1.1.1" 89250 - sources."gatsby-core-utils-2.13.0" 89251 - (sources."gatsby-recipes-0.24.0" // { 89501 + sources."gatsby-core-utils-2.14.0" 89502 + (sources."gatsby-recipes-0.25.0" // { 89252 89503 dependencies = [ 89253 89504 sources."strip-ansi-6.0.0" 89254 89505 ]; 89255 89506 }) 89256 - sources."gatsby-telemetry-2.13.0" 89507 + sources."gatsby-telemetry-2.14.0" 89257 89508 sources."gensync-1.0.0-beta.2" 89258 89509 sources."get-caller-file-2.0.5" 89259 89510 sources."get-intrinsic-1.1.1" ··· 89264 89515 sources."glob-parent-5.1.2" 89265 89516 sources."global-dirs-3.0.0" 89266 89517 sources."globals-11.12.0" 89267 - sources."got-9.6.0" 89518 + sources."got-11.8.2" 89268 89519 sources."graceful-fs-4.2.8" 89269 - sources."graphql-15.5.3" 89520 + sources."graphql-15.6.0" 89270 89521 sources."graphql-compose-7.25.1" 89271 89522 sources."graphql-subscriptions-1.2.1" 89272 89523 sources."graphql-type-json-0.3.2" ··· 89284 89535 sources."inherits-2.0.3" 89285 89536 ]; 89286 89537 }) 89538 + sources."http2-wrapper-1.0.3" 89287 89539 sources."human-signals-2.1.0" 89288 89540 sources."iconv-lite-0.4.24" 89289 89541 sources."ieee754-1.2.1" ··· 89354 89606 }) 89355 89607 sources."js-tokens-4.0.0" 89356 89608 sources."jsesc-2.5.2" 89357 - sources."json-buffer-3.0.0" 89609 + sources."json-buffer-3.0.1" 89358 89610 sources."json5-2.2.0" 89359 - sources."jsonfile-4.0.0" 89360 - sources."keyv-3.1.0" 89611 + sources."jsonfile-6.1.0" 89612 + sources."keyv-4.0.3" 89361 89613 sources."kleur-3.0.3" 89362 89614 sources."latest-version-5.1.0" 89363 89615 sources."locate-path-5.0.0" ··· 89367 89619 sources."longest-streak-2.0.4" 89368 89620 sources."loose-envify-1.4.0" 89369 89621 sources."lower-case-2.0.2" 89370 - sources."lowercase-keys-1.0.1" 89622 + sources."lowercase-keys-2.0.0" 89371 89623 sources."lru-cache-6.0.0" 89372 89624 (sources."make-dir-3.1.0" // { 89373 89625 dependencies = [ ··· 89411 89663 sources."nice-try-1.0.5" 89412 89664 sources."no-case-3.0.4" 89413 89665 sources."node-eta-0.9.0" 89414 - sources."node-fetch-2.6.2" 89415 - sources."node-object-hash-2.3.9" 89416 - sources."node-releases-1.1.75" 89666 + sources."node-fetch-2.6.4" 89667 + sources."node-object-hash-2.3.10" 89668 + sources."node-releases-1.1.76" 89417 89669 sources."normalize-path-3.0.0" 89418 89670 sources."normalize-url-6.1.0" 89419 89671 sources."npm-run-path-2.0.2" 89420 - sources."nth-check-2.0.0" 89672 + sources."nth-check-2.0.1" 89421 89673 sources."object-assign-4.1.1" 89422 89674 sources."object-inspect-1.11.0" 89423 89675 sources."object-path-0.11.5" ··· 89427 89679 sources."open-7.4.2" 89428 89680 sources."opentracing-0.14.5" 89429 89681 sources."os-tmpdir-1.0.2" 89430 - sources."p-cancelable-1.1.0" 89682 + sources."p-cancelable-2.1.1" 89431 89683 sources."p-finally-1.0.0" 89432 89684 sources."p-limit-2.3.0" 89433 89685 sources."p-locate-4.1.0" 89434 89686 sources."p-try-2.2.0" 89435 89687 (sources."package-json-6.5.0" // { 89436 89688 dependencies = [ 89689 + sources."@sindresorhus/is-0.14.0" 89690 + sources."@szmarczak/http-timer-1.1.2" 89691 + (sources."cacheable-request-6.1.0" // { 89692 + dependencies = [ 89693 + sources."lowercase-keys-2.0.0" 89694 + ]; 89695 + }) 89696 + sources."decompress-response-3.3.0" 89697 + sources."defer-to-connect-1.1.3" 89698 + sources."get-stream-5.2.0" 89699 + sources."got-9.6.0" 89700 + sources."json-buffer-3.0.0" 89701 + sources."keyv-3.1.0" 89702 + sources."lowercase-keys-1.0.1" 89703 + sources."normalize-url-4.5.1" 89704 + sources."p-cancelable-1.1.0" 89705 + sources."responselike-1.0.2" 89437 89706 sources."semver-6.3.0" 89438 89707 ]; 89439 89708 }) ··· 89451 89720 sources."picomatch-2.3.0" 89452 89721 sources."pkg-dir-4.2.0" 89453 89722 sources."prepend-http-2.0.0" 89454 - sources."prettier-2.4.0" 89723 + sources."prettier-2.4.1" 89455 89724 sources."pretty-error-2.1.2" 89456 89725 (sources."pretty-format-25.5.0" // { 89457 89726 dependencies = [ ··· 89470 89739 sources."pupa-2.1.1" 89471 89740 sources."qs-6.10.1" 89472 89741 sources."query-string-6.14.1" 89742 + sources."quick-lru-5.1.1" 89473 89743 sources."range-parser-1.2.1" 89474 89744 sources."raw-body-2.4.0" 89475 89745 (sources."rc-1.2.8" // { ··· 89514 89784 sources."require-directory-2.1.1" 89515 89785 sources."require-main-filename-2.0.0" 89516 89786 sources."resolve-1.20.0" 89787 + sources."resolve-alpn-1.2.1" 89517 89788 sources."resolve-cwd-3.0.0" 89518 89789 sources."resolve-from-5.0.0" 89519 - sources."responselike-1.0.2" 89790 + sources."responselike-2.0.0" 89520 89791 sources."restore-cursor-3.1.0" 89521 89792 sources."retry-0.12.0" 89522 89793 sources."rimraf-3.0.2" ··· 89550 89821 sources."shebang-command-1.2.0" 89551 89822 sources."shebang-regex-1.0.0" 89552 89823 sources."side-channel-1.0.4" 89553 - sources."signal-exit-3.0.3" 89824 + sources."signal-exit-3.0.4" 89554 89825 sources."single-trailing-newline-1.0.0" 89555 89826 sources."sisteransi-1.0.5" 89556 89827 sources."source-map-0.7.3" ··· 89588 89859 sources."to-regex-range-5.0.1" 89589 89860 sources."toidentifier-1.0.0" 89590 89861 sources."token-types-4.1.1" 89862 + sources."tr46-0.0.3" 89591 89863 sources."trim-0.0.1" 89592 89864 sources."trim-trailing-lines-1.1.4" 89593 89865 sources."trough-1.0.5" ··· 89613 89885 ]; 89614 89886 }) 89615 89887 sources."unist-util-visit-parents-2.1.2" 89616 - sources."universalify-0.1.2" 89888 + sources."universalify-2.0.0" 89617 89889 sources."unpipe-1.0.0" 89618 89890 (sources."update-notifier-5.1.0" // { 89619 89891 dependencies = [ 89620 - sources."boxen-5.0.1" 89892 + sources."boxen-5.1.2" 89621 89893 sources."camelcase-6.2.0" 89622 89894 sources."type-fest-0.20.2" 89623 89895 ]; ··· 89632 89904 sources."vfile-4.2.1" 89633 89905 sources."vfile-location-2.0.6" 89634 89906 sources."vfile-message-2.0.4" 89907 + sources."webidl-conversions-3.0.1" 89908 + sources."whatwg-url-5.0.0" 89635 89909 sources."which-1.3.1" 89636 89910 sources."which-module-2.0.0" 89637 89911 sources."widest-line-3.1.0" ··· 89647 89921 sources."write-file-atomic-3.0.3" 89648 89922 sources."ws-7.5.5" 89649 89923 sources."xdg-basedir-4.0.0" 89650 - sources."xstate-4.23.4" 89924 + sources."xstate-4.25.0" 89651 89925 sources."xtend-4.0.2" 89652 89926 sources."y18n-4.0.3" 89653 89927 sources."yallist-4.0.0" ··· 89681 89955 }; 89682 89956 dependencies = [ 89683 89957 sources."@babel/code-frame-7.14.5" 89684 - sources."@babel/helper-validator-identifier-7.14.9" 89958 + sources."@babel/helper-validator-identifier-7.15.7" 89685 89959 (sources."@babel/highlight-7.14.5" // { 89686 89960 dependencies = [ 89687 89961 sources."ansi-styles-3.2.1" ··· 89692 89966 sources."supports-color-5.5.0" 89693 89967 ]; 89694 89968 }) 89695 - sources."@octokit/auth-token-2.4.5" 89969 + sources."@octokit/auth-token-2.5.0" 89696 89970 sources."@octokit/core-3.5.1" 89697 89971 sources."@octokit/endpoint-6.0.12" 89698 89972 sources."@octokit/graphql-4.8.0" 89699 - sources."@octokit/openapi-types-10.1.1" 89700 - sources."@octokit/plugin-paginate-rest-2.16.0" 89973 + sources."@octokit/openapi-types-10.2.2" 89974 + sources."@octokit/plugin-paginate-rest-2.16.3" 89701 89975 sources."@octokit/plugin-request-log-1.0.4" 89702 - sources."@octokit/plugin-rest-endpoint-methods-5.10.1" 89976 + sources."@octokit/plugin-rest-endpoint-methods-5.10.4" 89703 89977 sources."@octokit/request-5.6.1" 89704 89978 sources."@octokit/request-error-2.1.0" 89705 89979 sources."@octokit/rest-18.10.0" 89706 - sources."@octokit/types-6.27.0" 89980 + sources."@octokit/types-6.28.1" 89707 89981 sources."@types/normalize-package-data-2.4.1" 89708 89982 sources."ansi-regex-2.1.1" 89709 89983 sources."ansi-styles-4.3.0" ··· 89757 90031 sources."minimatch-3.0.4" 89758 90032 sources."minimist-1.2.5" 89759 90033 sources."ms-2.1.2" 89760 - sources."node-fetch-2.6.2" 90034 + sources."node-fetch-2.6.4" 89761 90035 (sources."normalize-package-data-2.5.0" // { 89762 90036 dependencies = [ 89763 90037 sources."semver-5.7.1" ··· 89792 90066 sources."shebang-command-2.0.0" 89793 90067 sources."shebang-regex-3.0.0" 89794 90068 sources."shelljs-0.8.4" 89795 - sources."signal-exit-3.0.3" 90069 + sources."signal-exit-3.0.4" 89796 90070 sources."spdx-correct-3.1.1" 89797 90071 sources."spdx-exceptions-2.3.0" 89798 90072 sources."spdx-expression-parse-3.0.1" ··· 89808 90082 sources."supports-color-7.2.0" 89809 90083 sources."taketalk-1.0.0" 89810 90084 sources."text-table-0.2.0" 90085 + sources."tr46-0.0.3" 89811 90086 sources."truncate-utf8-bytes-1.0.2" 89812 90087 sources."type-fest-0.8.1" 89813 90088 sources."universal-user-agent-6.0.0" 89814 90089 sources."utf8-byte-length-1.0.4" 89815 90090 sources."validate-npm-package-license-3.0.4" 90091 + sources."webidl-conversions-3.0.1" 90092 + sources."whatwg-url-5.0.0" 89816 90093 sources."which-2.0.2" 89817 90094 (sources."wrap-ansi-2.1.0" // { 89818 90095 dependencies = [ ··· 89865 90142 sources."has-flag-3.0.0" 89866 90143 sources."iterall-1.3.0" 89867 90144 sources."minimist-1.2.5" 89868 - sources."node-fetch-2.6.2" 90145 + sources."node-fetch-2.6.4" 89869 90146 sources."supports-color-5.5.0" 90147 + sources."tr46-0.0.3" 90148 + sources."webidl-conversions-3.0.1" 90149 + sources."whatwg-url-5.0.0" 89870 90150 ]; 89871 90151 buildInputs = globalBuildInputs; 89872 90152 meta = { ··· 89965 90245 sources."multiserver-scopes-1.0.0" 89966 90246 sources."muxrpc-6.5.3" 89967 90247 sources."nearley-2.20.1" 89968 - sources."node-gyp-build-4.2.3" 90248 + sources."node-gyp-build-4.3.0" 89969 90249 sources."node-polyglot-1.0.0" 89970 90250 sources."non-private-ip-1.4.4" 89971 90251 sources."os-homedir-1.0.2" ··· 90119 90399 }; 90120 90400 dependencies = [ 90121 90401 sources."@babel/code-frame-7.14.5" 90122 - sources."@babel/helper-validator-identifier-7.14.9" 90402 + sources."@babel/helper-validator-identifier-7.15.7" 90123 90403 (sources."@babel/highlight-7.14.5" // { 90124 90404 dependencies = [ 90125 90405 sources."ansi-styles-3.2.1" ··· 90136 90416 sources."@types/minimist-1.2.2" 90137 90417 sources."@types/normalize-package-data-2.4.1" 90138 90418 sources."agent-base-6.0.2" 90139 - sources."ajv-8.6.2" 90419 + sources."ajv-8.6.3" 90140 90420 sources."ajv-formats-2.1.1" 90141 90421 (sources."ansi-align-3.0.0" // { 90142 90422 dependencies = [ ··· 90148 90428 ]; 90149 90429 }) 90150 90430 sources."ansi-escapes-4.3.2" 90151 - sources."ansi-regex-5.0.0" 90431 + sources."ansi-regex-5.0.1" 90152 90432 sources."ansi-styles-4.3.0" 90153 90433 sources."arrify-1.0.1" 90154 90434 sources."ast-types-0.13.4" 90155 90435 sources."atomically-1.7.0" 90156 90436 sources."base64-js-1.5.1" 90157 90437 sources."bl-4.1.0" 90158 - (sources."boxen-5.0.1" // { 90438 + (sources."boxen-5.1.2" // { 90159 90439 dependencies = [ 90160 90440 sources."camelcase-6.2.0" 90161 90441 sources."type-fest-0.20.2" ··· 90182 90462 sources."clone-response-1.0.2" 90183 90463 sources."color-convert-2.0.1" 90184 90464 sources."color-name-1.1.4" 90185 - sources."conf-10.0.2" 90465 + sources."conf-10.0.3" 90186 90466 (sources."configstore-5.0.1" // { 90187 90467 dependencies = [ 90188 90468 sources."dot-prop-5.3.0" ··· 90261 90541 sources."indent-string-4.0.0" 90262 90542 sources."inherits-2.0.4" 90263 90543 sources."ini-2.0.0" 90264 - sources."inquirer-8.1.2" 90544 + sources."inquirer-8.1.5" 90265 90545 (sources."inquirer-autocomplete-prompt-1.4.0" // { 90266 90546 dependencies = [ 90267 90547 sources."rxjs-6.6.7" ··· 90310 90590 sources."semver-6.3.0" 90311 90591 ]; 90312 90592 }) 90313 - sources."map-obj-4.2.1" 90593 + sources."map-obj-4.3.0" 90314 90594 (sources."meow-9.0.0" // { 90315 90595 dependencies = [ 90316 90596 sources."type-fest-0.18.1" ··· 90325 90605 sources."ms-2.1.2" 90326 90606 sources."mute-stream-0.0.8" 90327 90607 sources."netmask-2.0.2" 90328 - sources."node-fetch-2.6.2" 90608 + sources."node-fetch-2.6.4" 90329 90609 sources."normalize-package-data-3.0.3" 90330 90610 sources."normalize-url-4.5.1" 90331 90611 sources."npm-run-path-4.0.1" ··· 90410 90690 sources."setprototypeof-1.1.1" 90411 90691 sources."shebang-command-2.0.0" 90412 90692 sources."shebang-regex-3.0.0" 90413 - sources."signal-exit-3.0.3" 90693 + sources."signal-exit-3.0.4" 90414 90694 sources."smart-buffer-4.2.0" 90415 90695 sources."socks-2.6.1" 90416 90696 sources."socks-proxy-agent-5.0.1" ··· 90431 90711 sources."tmp-0.0.33" 90432 90712 sources."to-readable-stream-1.0.0" 90433 90713 sources."toidentifier-1.0.0" 90714 + sources."tr46-0.0.3" 90434 90715 sources."trim-newlines-3.0.1" 90435 90716 sources."tslib-2.1.0" 90436 90717 sources."type-check-0.3.2" ··· 90446 90727 sources."validate-npm-package-license-3.0.4" 90447 90728 sources."vm2-3.9.3" 90448 90729 sources."wcwidth-1.0.1" 90730 + sources."webidl-conversions-3.0.1" 90731 + sources."whatwg-url-5.0.0" 90449 90732 sources."which-2.0.2" 90450 90733 sources."widest-line-3.1.0" 90451 90734 sources."word-wrap-1.2.3" ··· 90508 90791 dependencies = [ 90509 90792 sources."@ardatan/aggregate-error-0.0.6" 90510 90793 sources."@babel/code-frame-7.14.5" 90511 - sources."@babel/helper-validator-identifier-7.14.9" 90794 + sources."@babel/helper-validator-identifier-7.15.7" 90512 90795 (sources."@babel/highlight-7.14.5" // { 90513 90796 dependencies = [ 90514 90797 sources."ansi-styles-3.2.1" ··· 90519 90802 sources."supports-color-5.5.0" 90520 90803 ]; 90521 90804 }) 90522 - sources."@exodus/schemasafe-1.0.0-rc.4" 90805 + sources."@exodus/schemasafe-1.0.0-rc.6" 90523 90806 sources."@graphql-cli/common-4.1.0" 90524 90807 sources."@graphql-cli/init-4.1.0" 90525 90808 (sources."@graphql-tools/batch-execute-7.1.2" // { ··· 90610 90893 sources."@nodelib/fs.walk-1.2.8" 90611 90894 sources."@sindresorhus/is-0.14.0" 90612 90895 sources."@szmarczak/http-timer-1.1.2" 90613 - sources."@types/node-16.9.0" 90896 + sources."@types/node-16.9.4" 90614 90897 sources."@types/parse-json-4.0.0" 90615 90898 sources."@types/websocket-1.0.2" 90616 90899 sources."abort-controller-3.0.0" ··· 90663 90946 sources."cli-width-3.0.0" 90664 90947 (sources."cliui-7.0.4" // { 90665 90948 dependencies = [ 90666 - sources."ansi-regex-5.0.0" 90949 + sources."ansi-regex-5.0.1" 90667 90950 sources."strip-ansi-6.0.0" 90668 90951 ]; 90669 90952 }) ··· 90726 91009 sources."fast-glob-3.2.7" 90727 91010 sources."fast-json-stable-stringify-2.1.0" 90728 91011 sources."fast-safe-stringify-2.1.1" 90729 - sources."fastq-1.12.0" 91012 + sources."fastq-1.13.0" 90730 91013 sources."figlet-1.5.0" 90731 91014 sources."figures-3.2.0" 90732 91015 sources."fill-range-7.0.1" ··· 90788 91071 sources."ini-1.3.8" 90789 91072 (sources."inquirer-7.3.3" // { 90790 91073 dependencies = [ 90791 - sources."ansi-regex-5.0.0" 91074 + sources."ansi-regex-5.0.1" 90792 91075 sources."cli-cursor-3.1.0" 90793 91076 sources."mimic-fn-2.1.0" 90794 91077 sources."onetime-5.1.2" ··· 90881 91164 sources."mimic-response-1.0.1" 90882 91165 sources."minimatch-3.0.4" 90883 91166 sources."minimist-1.2.5" 90884 - sources."minipass-3.1.3" 91167 + sources."minipass-3.1.5" 90885 91168 sources."minizlib-2.1.2" 90886 91169 sources."mkdirp-1.0.4" 90887 91170 sources."ms-2.1.2" ··· 90919 91202 sources."openapi-to-graphql-2.2.5" 90920 91203 (sources."ora-5.1.0" // { 90921 91204 dependencies = [ 90922 - sources."ansi-regex-5.0.0" 91205 + sources."ansi-regex-5.0.1" 90923 91206 sources."cli-cursor-3.1.0" 90924 91207 sources."log-symbols-4.1.0" 90925 91208 sources."mimic-fn-2.1.0" ··· 90995 91278 sources."should-type-adaptors-1.1.0" 90996 91279 sources."should-util-1.0.1" 90997 91280 sources."side-channel-1.0.4" 90998 - sources."signal-exit-3.0.3" 91281 + sources."signal-exit-3.0.4" 90999 91282 sources."simple-git-2.21.0" 91000 91283 sources."slash-3.0.0" 91001 91284 sources."sprintf-js-1.0.3" ··· 91003 91286 sources."string-env-interpolation-1.0.1" 91004 91287 (sources."string-width-4.2.2" // { 91005 91288 dependencies = [ 91006 - sources."ansi-regex-5.0.0" 91289 + sources."ansi-regex-5.0.1" 91007 91290 sources."strip-ansi-6.0.0" 91008 91291 ]; 91009 91292 }) ··· 91047 91330 sources."which-typed-array-1.1.7" 91048 91331 (sources."wrap-ansi-7.0.0" // { 91049 91332 dependencies = [ 91050 - sources."ansi-regex-5.0.0" 91333 + sources."ansi-regex-5.0.1" 91051 91334 sources."strip-ansi-6.0.0" 91052 91335 ]; 91053 91336 }) ··· 91308 91591 sources."cardinal-2.1.1" 91309 91592 sources."chalk-1.1.3" 91310 91593 sources."charm-0.1.2" 91311 - sources."cli-table-0.3.6" 91594 + sources."cli-table3-0.6.0" 91312 91595 sources."color-convert-2.0.1" 91313 91596 sources."color-name-1.1.4" 91314 - sources."colors-1.0.3" 91597 + sources."colors-1.4.0" 91315 91598 sources."core-util-is-1.0.3" 91316 91599 sources."drawille-blessed-contrib-1.0.0" 91317 91600 sources."drawille-canvas-blessed-contrib-0.1.3" 91601 + sources."emoji-regex-8.0.0" 91318 91602 sources."escape-string-regexp-1.0.5" 91319 91603 sources."esprima-4.0.1" 91320 91604 (sources."event-stream-0.9.8" // { ··· 91327 91611 sources."has-flag-4.0.0" 91328 91612 sources."here-0.0.2" 91329 91613 sources."inherits-2.0.4" 91614 + sources."is-fullwidth-code-point-3.0.0" 91330 91615 sources."isarray-0.0.1" 91331 91616 sources."lodash-4.17.21" 91332 91617 sources."map-canvas-0.1.5" 91333 91618 sources."marked-2.1.3" 91334 - (sources."marked-terminal-4.1.1" // { 91619 + (sources."marked-terminal-4.2.0" // { 91335 91620 dependencies = [ 91336 91621 sources."ansi-styles-4.3.0" 91337 91622 sources."chalk-4.1.2" ··· 91342 91627 sources."memorystream-0.3.1" 91343 91628 sources."node-emoji-1.11.0" 91344 91629 sources."nopt-2.1.2" 91630 + sources."object-assign-4.1.1" 91345 91631 sources."optimist-0.3.7" 91346 91632 sources."picture-tuber-1.0.2" 91347 91633 sources."png-js-0.1.1" ··· 91349 91635 sources."redeyed-2.1.1" 91350 91636 sources."sax-1.2.4" 91351 91637 sources."sparkline-0.1.2" 91638 + (sources."string-width-4.2.2" // { 91639 + dependencies = [ 91640 + sources."ansi-regex-5.0.1" 91641 + sources."strip-ansi-6.0.0" 91642 + ]; 91643 + }) 91352 91644 sources."string_decoder-0.10.31" 91353 91645 sources."strip-ansi-3.0.1" 91354 91646 sources."supports-color-2.0.0" ··· 91357 91649 sources."supports-color-7.2.0" 91358 91650 ]; 91359 91651 }) 91360 - sources."systeminformation-5.8.7" 91652 + sources."systeminformation-5.9.3" 91361 91653 sources."term-canvas-0.0.5" 91362 91654 sources."type-fest-0.21.3" 91363 91655 sources."wordwrap-0.0.3" ··· 92269 92561 htmlhint = nodeEnv.buildNodePackage { 92270 92562 name = "htmlhint"; 92271 92563 packageName = "htmlhint"; 92272 - version = "0.15.1"; 92564 + version = "0.15.2"; 92273 92565 src = fetchurl { 92274 - url = "https://registry.npmjs.org/htmlhint/-/htmlhint-0.15.1.tgz"; 92275 - sha512 = "uNbgqqBiD2ko4QQOYAHTPwDMluc9X81NwzlrJN7yExCoM6dHNgRFjVI+4TEdRrF/EqUzl1dpMUn7GYbu/qCKmA=="; 92566 + url = "https://registry.npmjs.org/htmlhint/-/htmlhint-0.15.2.tgz"; 92567 + sha512 = "ciCpeMEGZ7CbfK+MgK8ykV+wzUHz5he06mAiq8OQLuYN6pxFxZDAhwPwByirOYwdF3GV2M4s7spq2A/g/XMncQ=="; 92276 92568 }; 92277 92569 dependencies = [ 92278 - sources."ajv-6.12.6" 92570 + sources."@types/node-16.9.4" 92571 + sources."@types/node-fetch-2.5.12" 92279 92572 sources."ansi-styles-4.3.0" 92280 - sources."asn1-0.2.4" 92281 - sources."assert-plus-1.0.0" 92282 92573 sources."async-3.2.0" 92283 92574 sources."asynckit-0.4.0" 92284 - sources."aws-sign2-0.7.0" 92285 - sources."aws4-1.11.0" 92286 92575 sources."balanced-match-1.0.2" 92287 - sources."bcrypt-pbkdf-1.0.2" 92288 92576 sources."brace-expansion-1.1.11" 92289 - sources."caseless-0.12.0" 92290 92577 sources."chalk-4.1.0" 92291 92578 sources."color-convert-2.0.1" 92292 92579 sources."color-name-1.1.4" 92293 92580 sources."combined-stream-1.0.8" 92294 92581 sources."commander-5.1.0" 92295 92582 sources."concat-map-0.0.1" 92296 - sources."core-util-is-1.0.2" 92297 - sources."dashdash-1.14.1" 92298 92583 sources."delayed-stream-1.0.0" 92299 - sources."ecc-jsbn-0.1.2" 92300 - sources."extend-3.0.2" 92301 - sources."extsprintf-1.3.0" 92302 - sources."fast-deep-equal-3.1.3" 92303 - sources."fast-json-stable-stringify-2.1.0" 92304 - sources."forever-agent-0.6.1" 92305 - sources."form-data-2.3.3" 92584 + sources."form-data-3.0.1" 92306 92585 sources."fs.realpath-1.0.0" 92307 - sources."getpass-0.1.7" 92308 - sources."glob-7.1.6" 92586 + sources."glob-7.1.7" 92309 92587 sources."glob-base-0.3.0" 92310 92588 sources."glob-parent-2.0.0" 92311 - sources."har-schema-2.0.0" 92312 - sources."har-validator-5.1.5" 92313 92589 sources."has-flag-4.0.0" 92314 - sources."http-signature-1.2.0" 92315 92590 sources."inflight-1.0.6" 92316 92591 sources."inherits-2.0.4" 92317 92592 sources."is-dotfile-1.0.3" 92318 92593 sources."is-extglob-1.0.0" 92319 92594 sources."is-glob-2.0.1" 92320 - sources."is-typedarray-1.0.0" 92321 - sources."isstream-0.1.2" 92322 - sources."jsbn-0.1.1" 92323 - sources."json-schema-0.2.3" 92324 - sources."json-schema-traverse-0.4.1" 92325 - sources."json-stringify-safe-5.0.1" 92326 - sources."jsprim-1.4.1" 92327 92595 sources."mime-db-1.49.0" 92328 92596 sources."mime-types-2.1.32" 92329 92597 sources."minimatch-3.0.4" 92330 - sources."oauth-sign-0.9.0" 92598 + sources."node-fetch-2.6.4" 92331 92599 sources."once-1.4.0" 92332 92600 sources."parse-glob-3.0.4" 92333 92601 sources."path-is-absolute-1.0.1" 92334 - sources."performance-now-2.1.0" 92335 - sources."psl-1.8.0" 92336 - sources."punycode-2.1.1" 92337 - sources."qs-6.5.2" 92338 - sources."request-2.88.2" 92339 - sources."safe-buffer-5.2.1" 92340 - sources."safer-buffer-2.1.2" 92341 - sources."sshpk-1.16.1" 92342 92602 sources."strip-json-comments-3.1.0" 92343 92603 sources."supports-color-7.2.0" 92344 - sources."tough-cookie-2.5.0" 92345 - sources."tunnel-agent-0.6.0" 92346 - sources."tweetnacl-0.14.5" 92347 - sources."uri-js-4.4.1" 92348 - sources."uuid-3.4.0" 92349 - sources."verror-1.10.0" 92604 + sources."tr46-0.0.3" 92605 + sources."webidl-conversions-3.0.1" 92606 + sources."whatwg-url-5.0.0" 92350 92607 sources."wrappy-1.0.2" 92351 92608 sources."xml-1.0.1" 92352 92609 ]; ··· 92363 92620 http-server = nodeEnv.buildNodePackage { 92364 92621 name = "http-server"; 92365 92622 packageName = "http-server"; 92366 - version = "13.0.1"; 92623 + version = "13.0.2"; 92367 92624 src = fetchurl { 92368 - url = "https://registry.npmjs.org/http-server/-/http-server-13.0.1.tgz"; 92369 - sha512 = "ke9rphoNuqsOCHy4tA3b3W4Yuxy7VUIXcTHSLz6bkMDAJPQD4twjEatquelJBIPwNhZuC3+FYj/+dSaGHdKTCw=="; 92625 + url = "https://registry.npmjs.org/http-server/-/http-server-13.0.2.tgz"; 92626 + sha512 = "R8kvPT7qp11AMJWLZsRShvm6heIXdlR/+tL5oAWNG/86A/X+IAFX6q0F9SA2G+dR5aH/759+9PLH0V34Q6j4rg=="; 92370 92627 }; 92371 92628 dependencies = [ 92372 92629 sources."async-2.6.3" ··· 92376 92633 sources."corser-2.0.1" 92377 92634 sources."debug-3.2.7" 92378 92635 sources."eventemitter3-4.0.7" 92379 - sources."follow-redirects-1.14.3" 92636 + sources."follow-redirects-1.14.4" 92380 92637 sources."function-bind-1.1.1" 92381 92638 sources."get-intrinsic-1.1.1" 92382 92639 sources."has-1.0.3" ··· 92570 92827 bypassCache = true; 92571 92828 reconstructLock = true; 92572 92829 }; 92830 + hyperpotamus = nodeEnv.buildNodePackage { 92831 + name = "hyperpotamus"; 92832 + packageName = "hyperpotamus"; 92833 + version = "0.38.2"; 92834 + src = fetchurl { 92835 + url = "https://registry.npmjs.org/hyperpotamus/-/hyperpotamus-0.38.2.tgz"; 92836 + sha512 = "VavhoS9dr44WPPdtuBgHAge1uM/elPo8fAI6fMJ4Bs1NsOCgMOFg4g7FBo7ODgzmAaa2CjAFQGu1hIaY5UIqPg=="; 92837 + }; 92838 + dependencies = [ 92839 + sources."@fast-csv/format-4.3.5" 92840 + sources."@fast-csv/parse-4.3.6" 92841 + sources."@types/node-14.17.17" 92842 + sources."ajv-6.12.6" 92843 + sources."ansi-regex-5.0.1" 92844 + sources."ansi-styles-4.3.0" 92845 + sources."argparse-1.0.10" 92846 + sources."asn1-0.2.4" 92847 + sources."assert-plus-1.0.0" 92848 + sources."async-2.6.3" 92849 + sources."asynckit-0.4.0" 92850 + sources."aws-sdk-2.991.0" 92851 + sources."aws-sign2-0.7.0" 92852 + sources."aws4-1.11.0" 92853 + sources."base64-js-1.5.1" 92854 + sources."bcrypt-pbkdf-1.0.2" 92855 + sources."bluebird-3.7.2" 92856 + sources."boolbase-1.0.0" 92857 + sources."buffer-4.9.2" 92858 + sources."calfinated-1.4.1" 92859 + sources."caseless-0.12.0" 92860 + sources."cheerio-0.22.0" 92861 + sources."cliui-7.0.4" 92862 + sources."color-convert-2.0.1" 92863 + sources."color-name-1.1.4" 92864 + sources."colors-1.4.0" 92865 + sources."combined-stream-1.0.8" 92866 + sources."core-util-is-1.0.2" 92867 + sources."css-select-1.2.0" 92868 + sources."css-what-2.1.3" 92869 + sources."cycle-1.0.3" 92870 + sources."dashdash-1.14.1" 92871 + sources."debug-4.3.2" 92872 + sources."deep-is-0.1.4" 92873 + sources."delayed-stream-1.0.0" 92874 + sources."dom-serializer-0.1.1" 92875 + sources."domelementtype-1.3.1" 92876 + sources."domhandler-2.4.2" 92877 + sources."domutils-1.5.1" 92878 + sources."ecc-jsbn-0.1.2" 92879 + sources."emoji-regex-8.0.0" 92880 + sources."entities-1.1.2" 92881 + sources."escalade-3.1.1" 92882 + sources."escodegen-1.14.3" 92883 + sources."esprima-4.0.1" 92884 + sources."estraverse-4.3.0" 92885 + sources."esutils-2.0.3" 92886 + sources."events-1.1.1" 92887 + sources."extend-3.0.2" 92888 + sources."extsprintf-1.3.0" 92889 + sources."eyes-0.1.8" 92890 + sources."fast-csv-4.3.6" 92891 + sources."fast-deep-equal-3.1.3" 92892 + sources."fast-json-stable-stringify-2.1.0" 92893 + sources."fast-levenshtein-2.0.6" 92894 + sources."forever-agent-0.6.1" 92895 + sources."form-data-2.3.3" 92896 + sources."get-caller-file-2.0.5" 92897 + sources."getpass-0.1.7" 92898 + sources."har-schema-2.0.0" 92899 + sources."har-validator-5.1.5" 92900 + sources."htmlparser2-3.10.1" 92901 + sources."http-signature-1.2.0" 92902 + sources."ieee754-1.1.13" 92903 + sources."inherits-2.0.4" 92904 + (sources."ip-address-6.1.0" // { 92905 + dependencies = [ 92906 + sources."jsbn-1.1.0" 92907 + sources."sprintf-js-1.1.2" 92908 + ]; 92909 + }) 92910 + sources."is-fullwidth-code-point-3.0.0" 92911 + sources."is-typedarray-1.0.0" 92912 + sources."isarray-1.0.0" 92913 + sources."isstream-0.1.2" 92914 + sources."jmespath-0.15.0" 92915 + sources."js-yaml-3.14.1" 92916 + sources."jsbn-0.1.1" 92917 + sources."json-schema-0.2.3" 92918 + sources."json-schema-traverse-0.4.1" 92919 + sources."json-stringify-safe-5.0.1" 92920 + (sources."jsonpath-1.1.1" // { 92921 + dependencies = [ 92922 + sources."esprima-1.2.2" 92923 + ]; 92924 + }) 92925 + sources."jsprim-1.4.1" 92926 + sources."levn-0.3.0" 92927 + sources."lodash-4.17.21" 92928 + sources."lodash.assignin-4.2.0" 92929 + sources."lodash.bind-4.2.1" 92930 + sources."lodash.defaults-4.2.0" 92931 + sources."lodash.escaperegexp-4.1.2" 92932 + sources."lodash.filter-4.6.0" 92933 + sources."lodash.flatten-4.4.0" 92934 + sources."lodash.foreach-4.5.0" 92935 + sources."lodash.groupby-4.6.0" 92936 + sources."lodash.isboolean-3.0.3" 92937 + sources."lodash.isequal-4.5.0" 92938 + sources."lodash.isfunction-3.0.9" 92939 + sources."lodash.isnil-4.0.0" 92940 + sources."lodash.isundefined-3.0.1" 92941 + sources."lodash.map-4.6.0" 92942 + sources."lodash.merge-4.6.2" 92943 + sources."lodash.pick-4.4.0" 92944 + sources."lodash.reduce-4.6.0" 92945 + sources."lodash.reject-4.6.0" 92946 + sources."lodash.some-4.6.0" 92947 + sources."lodash.uniq-4.5.0" 92948 + sources."marked-2.1.3" 92949 + sources."mime-db-1.49.0" 92950 + sources."mime-types-2.1.32" 92951 + sources."minimist-1.2.5" 92952 + sources."mkdirp-0.5.5" 92953 + sources."moment-2.29.1" 92954 + sources."moment-timezone-0.5.33" 92955 + sources."ms-2.1.2" 92956 + sources."mute-stream-0.0.8" 92957 + sources."named-regexp-0.1.1" 92958 + sources."nth-check-1.0.2" 92959 + sources."oauth-sign-0.9.0" 92960 + sources."optionator-0.8.3" 92961 + sources."performance-now-2.1.0" 92962 + sources."prelude-ls-1.1.2" 92963 + (sources."prompt-1.2.0" // { 92964 + dependencies = [ 92965 + sources."async-0.9.2" 92966 + ]; 92967 + }) 92968 + sources."psl-1.8.0" 92969 + sources."punycode-1.3.2" 92970 + sources."qs-6.5.2" 92971 + sources."querystring-0.2.0" 92972 + sources."read-1.0.7" 92973 + sources."readable-stream-3.6.0" 92974 + sources."recursive-readdir-sync-1.0.6" 92975 + sources."request-2.88.2" 92976 + sources."request-as-curl-0.1.0" 92977 + sources."require-directory-2.1.1" 92978 + sources."revalidator-0.1.8" 92979 + sources."safe-buffer-5.2.1" 92980 + sources."safer-buffer-2.1.2" 92981 + sources."sax-1.2.1" 92982 + sources."semver-5.7.1" 92983 + sources."socks5-client-1.2.8" 92984 + sources."socks5-http-client-1.0.4" 92985 + sources."source-map-0.6.1" 92986 + sources."sprintf-js-1.0.3" 92987 + sources."sshpk-1.16.1" 92988 + sources."stack-trace-0.0.10" 92989 + sources."static-eval-2.0.2" 92990 + sources."string-width-4.2.2" 92991 + sources."string_decoder-1.3.0" 92992 + sources."strip-ansi-6.0.0" 92993 + (sources."tough-cookie-2.5.0" // { 92994 + dependencies = [ 92995 + sources."punycode-2.1.1" 92996 + ]; 92997 + }) 92998 + sources."tunnel-agent-0.6.0" 92999 + sources."tweetnacl-0.14.5" 93000 + sources."type-check-0.3.2" 93001 + sources."underscore-1.12.1" 93002 + (sources."uri-js-4.4.1" // { 93003 + dependencies = [ 93004 + sources."punycode-2.1.1" 93005 + ]; 93006 + }) 93007 + sources."url-0.10.3" 93008 + sources."util-deprecate-1.0.2" 93009 + sources."uuid-3.3.2" 93010 + sources."verror-1.10.0" 93011 + (sources."winston-2.4.5" // { 93012 + dependencies = [ 93013 + sources."async-1.0.0" 93014 + sources."colors-1.0.3" 93015 + ]; 93016 + }) 93017 + sources."word-wrap-1.2.3" 93018 + sources."wrap-ansi-7.0.0" 93019 + sources."xml2js-0.4.19" 93020 + sources."xmlbuilder-9.0.7" 93021 + sources."xmldom-0.5.0" 93022 + sources."xpath-0.0.23" 93023 + sources."y18n-5.0.8" 93024 + sources."yaml-include-1.2.1" 93025 + sources."yargs-16.2.0" 93026 + sources."yargs-parser-20.2.9" 93027 + ]; 93028 + buildInputs = globalBuildInputs; 93029 + meta = { 93030 + description = "YAML based HTTP script processing engine"; 93031 + homepage = "https://github.com/pmarkert/hyperpotamus/wiki"; 93032 + license = "MIT"; 93033 + }; 93034 + production = true; 93035 + bypassCache = true; 93036 + reconstructLock = true; 93037 + }; 92573 93038 ijavascript = nodeEnv.buildNodePackage { 92574 93039 name = "ijavascript"; 92575 93040 packageName = "ijavascript"; ··· 92583 93048 sources."jp-kernel-2.0.0" 92584 93049 sources."nan-2.14.2" 92585 93050 sources."nel-1.2.0" 92586 - sources."node-gyp-build-4.2.3" 93051 + sources."node-gyp-build-4.3.0" 92587 93052 sources."uuid-3.4.0" 92588 93053 sources."zeromq-5.2.8" 92589 93054 ]; ··· 92892 93357 sources."async-limiter-1.0.1" 92893 93358 sources."chrome-remote-interface-0.27.2" 92894 93359 sources."commander-2.11.0" 92895 - sources."node-fetch-2.6.2" 93360 + sources."node-fetch-2.6.4" 92896 93361 sources."semver-5.7.1" 92897 93362 sources."source-map-0.7.3" 93363 + sources."tr46-0.0.3" 93364 + sources."webidl-conversions-3.0.1" 93365 + sources."whatwg-url-5.0.0" 92898 93366 sources."ws-6.2.2" 92899 93367 ]; 92900 93368 buildInputs = globalBuildInputs; ··· 92945 93413 sources."is-wsl-2.2.0" 92946 93414 sources."isexe-2.0.0" 92947 93415 sources."jquery-3.6.0" 92948 - sources."jquery.terminal-2.29.1" 93416 + sources."jquery.terminal-2.29.2" 92949 93417 sources."jsonfile-2.4.0" 92950 93418 sources."keyboardevent-key-polyfill-1.1.0" 92951 93419 sources."line-reader-0.4.0" ··· 92957 93425 sources."p-finally-1.0.0" 92958 93426 sources."path-is-absolute-1.0.1" 92959 93427 sources."path-key-2.0.1" 92960 - sources."prismjs-1.24.1" 93428 + sources."prismjs-1.25.0" 92961 93429 sources."pump-3.0.0" 92962 93430 sources."rimraf-2.7.1" 92963 93431 sources."safer-buffer-2.1.2" 92964 93432 sources."semver-5.7.1" 92965 93433 sources."shebang-command-1.2.0" 92966 93434 sources."shebang-regex-1.0.0" 92967 - sources."signal-exit-3.0.3" 93435 + sources."signal-exit-3.0.4" 92968 93436 sources."strip-eof-1.0.0" 92969 93437 sources."wcwidth-1.0.1" 92970 93438 sources."which-1.3.1" ··· 93206 93674 sources."shebang-command-2.0.0" 93207 93675 sources."shebang-regex-3.0.0" 93208 93676 sources."side-channel-1.0.4" 93209 - sources."signal-exit-3.0.3" 93677 + sources."signal-exit-3.0.4" 93210 93678 (sources."slice-ansi-3.0.0" // { 93211 93679 dependencies = [ 93212 93680 sources."ansi-styles-4.3.0" ··· 93238 93706 sources."string_decoder-1.3.0" 93239 93707 (sources."strip-ansi-6.0.0" // { 93240 93708 dependencies = [ 93241 - sources."ansi-regex-5.0.0" 93709 + sources."ansi-regex-5.0.1" 93242 93710 ]; 93243 93711 }) 93244 93712 sources."strip-eof-1.0.0" ··· 93302 93770 dependencies = [ 93303 93771 sources."@iarna/toml-2.2.5" 93304 93772 sources."@msgpack/msgpack-2.7.1" 93305 - sources."@ot-builder/bin-composite-types-1.1.0" 93306 - sources."@ot-builder/bin-util-1.1.0" 93307 - (sources."@ot-builder/cli-help-shower-1.1.0" // { 93773 + sources."@ot-builder/bin-composite-types-1.1.1" 93774 + sources."@ot-builder/bin-util-1.1.1" 93775 + (sources."@ot-builder/cli-help-shower-1.1.1" // { 93308 93776 dependencies = [ 93309 93777 sources."ansi-styles-4.3.0" 93310 93778 sources."chalk-4.1.2" ··· 93314 93782 sources."supports-color-7.2.0" 93315 93783 ]; 93316 93784 }) 93317 - sources."@ot-builder/cli-proc-1.1.0" 93318 - sources."@ot-builder/cli-shared-1.1.0" 93319 - sources."@ot-builder/common-impl-1.1.0" 93320 - sources."@ot-builder/errors-1.1.0" 93321 - sources."@ot-builder/io-bin-cff-1.1.0" 93322 - sources."@ot-builder/io-bin-encoding-1.1.0" 93323 - sources."@ot-builder/io-bin-ext-private-1.1.0" 93324 - sources."@ot-builder/io-bin-font-1.1.0" 93325 - sources."@ot-builder/io-bin-glyph-store-1.1.0" 93326 - sources."@ot-builder/io-bin-layout-1.1.0" 93327 - sources."@ot-builder/io-bin-metadata-1.1.0" 93328 - sources."@ot-builder/io-bin-metric-1.1.0" 93329 - sources."@ot-builder/io-bin-name-1.1.0" 93330 - sources."@ot-builder/io-bin-sfnt-1.1.0" 93331 - sources."@ot-builder/io-bin-ttf-1.1.0" 93332 - sources."@ot-builder/ot-1.1.0" 93333 - sources."@ot-builder/ot-encoding-1.1.0" 93334 - sources."@ot-builder/ot-ext-private-1.1.0" 93335 - sources."@ot-builder/ot-glyphs-1.1.0" 93336 - sources."@ot-builder/ot-layout-1.1.0" 93337 - sources."@ot-builder/ot-metadata-1.1.0" 93338 - sources."@ot-builder/ot-name-1.1.0" 93339 - sources."@ot-builder/ot-sfnt-1.1.0" 93340 - sources."@ot-builder/ot-standard-glyph-namer-1.1.0" 93341 - sources."@ot-builder/prelude-1.1.0" 93342 - sources."@ot-builder/primitive-1.1.0" 93343 - sources."@ot-builder/rectify-1.1.0" 93344 - sources."@ot-builder/stat-glyphs-1.1.0" 93345 - sources."@ot-builder/trace-1.1.0" 93346 - sources."@ot-builder/var-store-1.1.0" 93347 - sources."@ot-builder/variance-1.1.0" 93348 - sources."@unicode/unicode-13.0.0-1.2.0" 93349 - sources."@xmldom/xmldom-0.7.4" 93785 + sources."@ot-builder/cli-proc-1.1.1" 93786 + sources."@ot-builder/cli-shared-1.1.1" 93787 + sources."@ot-builder/common-impl-1.1.1" 93788 + sources."@ot-builder/errors-1.1.1" 93789 + sources."@ot-builder/io-bin-cff-1.1.1" 93790 + sources."@ot-builder/io-bin-encoding-1.1.1" 93791 + sources."@ot-builder/io-bin-ext-private-1.1.1" 93792 + sources."@ot-builder/io-bin-font-1.1.1" 93793 + sources."@ot-builder/io-bin-glyph-store-1.1.1" 93794 + sources."@ot-builder/io-bin-layout-1.1.1" 93795 + sources."@ot-builder/io-bin-metadata-1.1.1" 93796 + sources."@ot-builder/io-bin-metric-1.1.1" 93797 + sources."@ot-builder/io-bin-name-1.1.1" 93798 + sources."@ot-builder/io-bin-sfnt-1.1.1" 93799 + sources."@ot-builder/io-bin-ttf-1.1.1" 93800 + sources."@ot-builder/ot-1.1.1" 93801 + sources."@ot-builder/ot-encoding-1.1.1" 93802 + sources."@ot-builder/ot-ext-private-1.1.1" 93803 + sources."@ot-builder/ot-glyphs-1.1.1" 93804 + sources."@ot-builder/ot-layout-1.1.1" 93805 + sources."@ot-builder/ot-metadata-1.1.1" 93806 + sources."@ot-builder/ot-name-1.1.1" 93807 + sources."@ot-builder/ot-sfnt-1.1.1" 93808 + sources."@ot-builder/ot-standard-glyph-namer-1.1.1" 93809 + sources."@ot-builder/prelude-1.1.1" 93810 + sources."@ot-builder/primitive-1.1.1" 93811 + sources."@ot-builder/rectify-1.1.1" 93812 + sources."@ot-builder/stat-glyphs-1.1.1" 93813 + sources."@ot-builder/trace-1.1.1" 93814 + sources."@ot-builder/var-store-1.1.1" 93815 + sources."@ot-builder/variance-1.1.1" 93816 + sources."@unicode/unicode-13.0.0-1.2.1" 93817 + sources."@xmldom/xmldom-0.7.5" 93350 93818 sources."aglfn-1.0.2" 93351 93819 sources."amdefine-1.0.1" 93352 - sources."ansi-regex-5.0.0" 93820 + sources."ansi-regex-5.0.1" 93353 93821 sources."ansi-styles-3.2.1" 93354 93822 sources."argparse-2.0.1" 93355 93823 sources."async-0.9.2" ··· 93427 93895 sources."once-1.4.0" 93428 93896 sources."onetime-5.1.2" 93429 93897 sources."optionator-0.8.3" 93430 - sources."ot-builder-1.1.0" 93431 - sources."otb-ttc-bundle-1.1.0" 93898 + sources."ot-builder-1.1.1" 93899 + sources."otb-ttc-bundle-1.1.1" 93432 93900 sources."passerror-1.1.1" 93433 93901 sources."patel-0.35.1" 93434 93902 sources."path-is-absolute-1.0.1" ··· 93449 93917 ]; 93450 93918 }) 93451 93919 sources."seq-0.3.5" 93452 - sources."signal-exit-3.0.3" 93920 + sources."signal-exit-3.0.4" 93453 93921 sources."source-map-0.6.1" 93454 93922 sources."source-map-resolve-0.5.3" 93455 93923 sources."source-map-url-0.4.1" ··· 93472 93940 sources."unicoderegexp-0.4.1" 93473 93941 sources."universalify-2.0.0" 93474 93942 sources."urix-0.1.0" 93475 - (sources."verda-1.3.2" // { 93943 + (sources."verda-1.4.0" // { 93476 93944 dependencies = [ 93477 93945 sources."ansi-styles-4.3.0" 93478 93946 sources."chalk-4.1.2" ··· 93693 94161 sources."async-mutex-0.1.4" 93694 94162 sources."asynckit-0.4.0" 93695 94163 sources."atob-2.1.2" 93696 - (sources."aws-sdk-2.985.0" // { 94164 + (sources."aws-sdk-2.991.0" // { 93697 94165 dependencies = [ 93698 94166 sources."sax-1.2.1" 93699 94167 sources."uuid-3.3.2" ··· 93855 94323 sources."file-uri-to-path-1.0.0" 93856 94324 sources."fill-range-7.0.1" 93857 94325 sources."find-up-2.1.0" 93858 - sources."follow-redirects-1.14.3" 94326 + sources."follow-redirects-1.14.4" 93859 94327 sources."font-awesome-filetypes-2.1.0" 93860 94328 sources."for-each-property-0.0.4" 93861 94329 sources."for-each-property-deep-0.0.3" ··· 94014 94482 sources."markdown-it-footnote-3.0.3" 94015 94483 sources."markdown-it-ins-3.0.1" 94016 94484 sources."markdown-it-mark-3.0.1" 94017 - (sources."markdown-it-multimd-table-4.1.0" // { 94485 + (sources."markdown-it-multimd-table-4.1.1" // { 94018 94486 dependencies = [ 94019 94487 sources."entities-2.0.3" 94020 94488 sources."linkify-it-3.0.2" ··· 94184 94652 sources."shebang-command-2.0.0" 94185 94653 sources."shebang-regex-3.0.0" 94186 94654 sources."shellwords-0.1.1" 94187 - sources."signal-exit-3.0.3" 94655 + sources."signal-exit-3.0.4" 94188 94656 sources."simple-concat-1.0.1" 94189 94657 sources."simple-get-3.1.0" 94190 94658 sources."simple-swizzle-0.2.2" ··· 94265 94733 sources."toidentifier-1.0.0" 94266 94734 sources."tough-cookie-3.0.1" 94267 94735 sources."tr46-1.0.1" 94268 - sources."tree-kit-0.7.1" 94736 + sources."tree-kit-0.7.3" 94269 94737 sources."tunnel-agent-0.6.0" 94270 94738 sources."tweetnacl-0.14.5" 94271 94739 sources."type-check-0.3.2" ··· 94405 94873 sha512 = "sxKt7h0vzCd+3Y81Ey2qinupL6DpRSZJclS04ugHDNmRUXGzqicMJ6iwayhSA0S0DwwX30c5ozyUthr1QKF6uw=="; 94406 94874 }; 94407 94875 dependencies = [ 94408 - sources."@babel/parser-7.15.5" 94876 + sources."@babel/parser-7.15.7" 94409 94877 sources."argparse-1.0.10" 94410 94878 sources."bluebird-3.7.2" 94411 94879 sources."catharsis-0.9.0" ··· 94619 95087 sources."array-flatten-1.1.1" 94620 95088 sources."basic-auth-2.0.1" 94621 95089 sources."body-parser-1.19.0" 94622 - sources."boxen-5.0.1" 95090 + sources."boxen-5.1.2" 94623 95091 sources."bytes-3.1.0" 94624 95092 (sources."cacheable-request-6.1.0" // { 94625 95093 dependencies = [ ··· 94633 95101 sources."cli-boxes-2.2.1" 94634 95102 (sources."cliui-7.0.4" // { 94635 95103 dependencies = [ 94636 - sources."ansi-regex-5.0.0" 95104 + sources."ansi-regex-5.0.1" 94637 95105 sources."strip-ansi-6.0.0" 94638 95106 ]; 94639 95107 }) ··· 94790 95258 sources."serve-static-1.14.1" 94791 95259 sources."server-destroy-1.0.1" 94792 95260 sources."setprototypeof-1.1.1" 94793 - sources."signal-exit-3.0.3" 95261 + sources."signal-exit-3.0.4" 94794 95262 sources."statuses-1.5.0" 94795 95263 sources."steno-0.4.4" 94796 95264 (sources."string-width-4.2.2" // { 94797 95265 dependencies = [ 94798 - sources."ansi-regex-5.0.0" 95266 + sources."ansi-regex-5.0.1" 94799 95267 sources."emoji-regex-8.0.0" 94800 95268 sources."is-fullwidth-code-point-3.0.0" 94801 95269 sources."strip-ansi-6.0.0" ··· 94818 95286 sources."widest-line-3.1.0" 94819 95287 (sources."wrap-ansi-7.0.0" // { 94820 95288 dependencies = [ 94821 - sources."ansi-regex-5.0.0" 95289 + sources."ansi-regex-5.0.1" 94822 95290 sources."strip-ansi-6.0.0" 94823 95291 ]; 94824 95292 }) ··· 95450 95918 sources."tslib-2.3.1" 95451 95919 ]; 95452 95920 }) 95453 - (sources."@oclif/core-0.5.35" // { 95921 + (sources."@oclif/core-0.5.39" // { 95454 95922 dependencies = [ 95455 95923 sources."fs-extra-9.1.0" 95456 95924 sources."jsonfile-6.1.0" ··· 95478 95946 }) 95479 95947 sources."ajv-6.12.6" 95480 95948 sources."ansi-escapes-4.3.2" 95481 - sources."ansi-regex-5.0.0" 95949 + sources."ansi-regex-5.0.1" 95482 95950 sources."ansi-styles-4.3.0" 95483 95951 sources."ansicolors-0.3.2" 95484 95952 sources."argparse-1.0.10" ··· 95504 95972 sources."chardet-0.7.0" 95505 95973 sources."clean-stack-3.0.1" 95506 95974 sources."cli-cursor-3.1.0" 95507 - sources."cli-progress-3.9.0" 95975 + sources."cli-progress-3.9.1" 95508 95976 (sources."cli-ux-5.6.3" // { 95509 95977 dependencies = [ 95510 95978 sources."has-flag-4.0.0" ··· 95552 96020 sources."fast-deep-equal-3.1.3" 95553 96021 sources."fast-glob-3.2.7" 95554 96022 sources."fast-json-stable-stringify-2.1.0" 95555 - sources."fastq-1.12.0" 96023 + sources."fastq-1.13.0" 95556 96024 (sources."figures-3.2.0" // { 95557 96025 dependencies = [ 95558 96026 sources."escape-string-regexp-1.0.5" ··· 95560 96028 }) 95561 96029 sources."fill-range-7.0.1" 95562 96030 sources."find-up-3.0.0" 95563 - sources."follow-redirects-1.14.3" 96031 + sources."follow-redirects-1.14.4" 95564 96032 sources."form-data-3.0.1" 95565 96033 sources."fs-extra-8.1.0" 95566 96034 sources."function-bind-1.1.1" ··· 95646 96114 sources."shebang-command-1.2.0" 95647 96115 sources."shebang-regex-1.0.0" 95648 96116 sources."side-channel-1.0.4" 95649 - sources."signal-exit-3.0.3" 96117 + sources."signal-exit-3.0.4" 95650 96118 sources."slash-3.0.0" 95651 96119 sources."sprintf-js-1.0.3" 95652 96120 sources."string-width-4.2.2" ··· 95718 96186 sources."@types/component-emitter-1.2.10" 95719 96187 sources."@types/cookie-0.4.1" 95720 96188 sources."@types/cors-2.8.12" 95721 - sources."@types/node-16.9.0" 96189 + sources."@types/node-16.9.4" 95722 96190 sources."accepts-1.3.7" 95723 - sources."ansi-regex-5.0.0" 96191 + sources."ansi-regex-5.0.1" 95724 96192 sources."ansi-styles-4.3.0" 95725 96193 sources."anymatch-3.1.2" 95726 96194 sources."balanced-match-1.0.2" ··· 95766 96234 sources."fill-range-7.0.1" 95767 96235 sources."finalhandler-1.1.2" 95768 96236 sources."flatted-2.0.2" 95769 - sources."follow-redirects-1.14.3" 96237 + sources."follow-redirects-1.14.4" 95770 96238 sources."fs-extra-8.1.0" 95771 96239 sources."fs.realpath-1.0.0" 95772 96240 sources."fsevents-2.3.2" ··· 95878 96346 sha512 = "JErcr+qnJbmS7ZwHlm5mFKzM162WtALhxaTdkr1SDhi8oS+hSVAniGACqIFfMNvGhODGh6iBipOpMVykAYKfNw=="; 95879 96347 }; 95880 96348 dependencies = [ 95881 - sources."@babel/cli-7.15.4" 96349 + sources."@babel/cli-7.15.7" 95882 96350 sources."@babel/code-frame-7.14.5" 95883 96351 sources."@babel/compat-data-7.15.0" 95884 96352 (sources."@babel/core-7.15.5" // { ··· 95898 96366 sources."@babel/helper-hoist-variables-7.15.4" 95899 96367 sources."@babel/helper-member-expression-to-functions-7.15.4" 95900 96368 sources."@babel/helper-module-imports-7.15.4" 95901 - sources."@babel/helper-module-transforms-7.15.4" 96369 + sources."@babel/helper-module-transforms-7.15.7" 95902 96370 sources."@babel/helper-optimise-call-expression-7.15.4" 95903 96371 sources."@babel/helper-plugin-utils-7.14.5" 95904 96372 sources."@babel/helper-replace-supers-7.15.4" 95905 96373 sources."@babel/helper-simple-access-7.15.4" 95906 96374 sources."@babel/helper-split-export-declaration-7.15.4" 95907 - sources."@babel/helper-validator-identifier-7.14.9" 96375 + sources."@babel/helper-validator-identifier-7.15.7" 95908 96376 sources."@babel/helper-validator-option-7.14.5" 95909 96377 sources."@babel/helpers-7.15.4" 95910 96378 sources."@babel/highlight-7.14.5" 95911 96379 sources."@babel/node-7.15.4" 95912 - sources."@babel/parser-7.15.5" 96380 + sources."@babel/parser-7.15.7" 95913 96381 sources."@babel/plugin-syntax-jsx-7.14.5" 95914 96382 sources."@babel/plugin-transform-react-jsx-7.14.9" 95915 96383 sources."@babel/register-7.15.3" 95916 96384 sources."@babel/template-7.15.4" 95917 96385 sources."@babel/traverse-7.15.4" 95918 - sources."@babel/types-7.15.4" 96386 + sources."@babel/types-7.15.6" 95919 96387 sources."@tootallnate/once-1.1.2" 95920 96388 sources."@xmpp/base64-0.12.1" 95921 96389 sources."@xmpp/client-0.12.1" ··· 95955 96423 sources."acorn-walk-7.2.0" 95956 96424 sources."agent-base-6.0.2" 95957 96425 sources."ansi-colors-4.1.1" 95958 - sources."ansi-regex-5.0.0" 96426 + sources."ansi-regex-5.0.1" 95959 96427 sources."ansi-styles-3.2.1" 95960 96428 sources."array-flatten-1.1.1" 95961 96429 sources."asn1.js-5.4.1" ··· 95981 96449 sources."bytes-3.1.0" 95982 96450 sources."bytesish-0.4.4" 95983 96451 sources."call-bind-1.0.2" 95984 - sources."caniuse-lite-1.0.30001255" 96452 + sources."caniuse-lite-1.0.30001259" 95985 96453 sources."caseless-0.12.0" 95986 96454 sources."chalk-2.4.2" 95987 96455 sources."chardet-1.3.0" ··· 96000 96468 sources."convert-source-map-1.8.0" 96001 96469 sources."cookie-0.4.0" 96002 96470 sources."cookie-signature-1.0.6" 96003 - sources."core-js-3.17.3" 96471 + sources."core-js-3.18.0" 96004 96472 sources."cors-2.8.5" 96005 96473 sources."create-hash-1.2.0" 96006 96474 sources."create-hmac-1.1.7" ··· 96010 96478 sources."cssom-0.3.8" 96011 96479 ]; 96012 96480 }) 96013 - sources."data-urls-2.0.0" 96481 + (sources."data-urls-2.0.0" // { 96482 + dependencies = [ 96483 + sources."tr46-2.1.0" 96484 + sources."webidl-conversions-6.1.0" 96485 + sources."whatwg-url-8.7.0" 96486 + ]; 96487 + }) 96014 96488 sources."debug-4.3.2" 96015 96489 sources."decimal.js-10.3.1" 96016 96490 sources."decode-uri-component-0.2.0" ··· 96027 96501 }) 96028 96502 sources."dotenv-8.6.0" 96029 96503 sources."ee-first-1.1.1" 96030 - sources."electron-to-chromium-1.3.833" 96504 + sources."electron-to-chromium-1.3.845" 96031 96505 sources."emoji-regex-8.0.0" 96032 96506 sources."encodeurl-1.0.2" 96033 96507 sources."enquirer-2.3.6" ··· 96125 96599 sources."js-tokens-4.0.0" 96126 96600 (sources."jsdom-16.7.0" // { 96127 96601 dependencies = [ 96602 + sources."tr46-2.1.0" 96603 + sources."webidl-conversions-6.1.0" 96604 + sources."whatwg-url-8.7.0" 96128 96605 sources."ws-7.5.5" 96129 96606 ]; 96130 96607 }) ··· 96151 96628 sources."ms-2.1.2" 96152 96629 sources."negotiator-0.6.2" 96153 96630 sources."node-environment-flags-1.0.6" 96154 - sources."node-fetch-2.6.2" 96631 + sources."node-fetch-2.6.4" 96155 96632 sources."node-localstorage-1.3.1" 96156 96633 sources."node-modules-regexp-1.0.0" 96157 - sources."node-releases-1.1.75" 96634 + sources."node-releases-1.1.76" 96158 96635 sources."nwsapi-2.2.0" 96159 96636 sources."object-assign-4.1.1" 96160 96637 sources."object-inspect-1.11.0" ··· 96238 96715 sources."to-fast-properties-2.0.0" 96239 96716 sources."toidentifier-1.0.0" 96240 96717 sources."tough-cookie-4.0.0" 96241 - sources."tr46-2.1.0" 96718 + sources."tr46-0.0.3" 96242 96719 sources."type-check-0.3.2" 96243 96720 sources."type-is-1.6.18" 96244 96721 sources."unbox-primitive-1.0.1" ··· 96252 96729 sources."vary-1.1.2" 96253 96730 sources."w3c-hr-time-1.0.2" 96254 96731 sources."w3c-xmlserializer-2.0.0" 96255 - sources."webidl-conversions-6.1.0" 96732 + sources."webidl-conversions-3.0.1" 96256 96733 sources."whatwg-encoding-1.0.5" 96257 96734 sources."whatwg-mimetype-2.3.0" 96258 - sources."whatwg-url-8.7.0" 96735 + sources."whatwg-url-5.0.0" 96259 96736 sources."which-boxed-primitive-1.0.2" 96260 96737 sources."word-wrap-1.2.3" 96261 96738 (sources."wrap-ansi-7.0.0" // { ··· 96470 96947 ]; 96471 96948 }) 96472 96949 sources."http-signature-1.2.0" 96473 - sources."i-0.3.6" 96950 + sources."i-0.3.7" 96474 96951 sources."inflight-1.0.6" 96475 96952 sources."inherits-2.0.4" 96476 96953 sources."ini-1.3.8" ··· 96567 97044 sources."set-blocking-2.0.0" 96568 97045 sources."shebang-command-1.2.0" 96569 97046 sources."shebang-regex-1.0.0" 96570 - sources."signal-exit-3.0.3" 97047 + sources."signal-exit-3.0.4" 96571 97048 sources."source-map-0.6.1" 96572 97049 sources."sshpk-1.16.1" 96573 97050 sources."stack-trace-0.0.10" ··· 96728 97205 ]; 96729 97206 }) 96730 97207 sources."http-signature-1.2.0" 96731 - sources."i-0.3.6" 97208 + sources."i-0.3.7" 96732 97209 sources."inflight-1.0.6" 96733 97210 sources."inherits-2.0.4" 96734 97211 sources."ini-1.3.8" ··· 96807 97284 sources."sax-1.2.4" 96808 97285 sources."secure-keys-1.0.0" 96809 97286 sources."set-blocking-2.0.0" 96810 - sources."signal-exit-3.0.3" 97287 + sources."signal-exit-3.0.4" 96811 97288 sources."source-map-0.6.1" 96812 97289 sources."sshpk-1.16.1" 96813 97290 sources."stack-trace-0.0.10" ··· 96855 97332 sources."y18n-3.2.2" 96856 97333 (sources."yargs-15.4.1" // { 96857 97334 dependencies = [ 96858 - sources."ansi-regex-5.0.0" 97335 + sources."ansi-regex-5.0.1" 96859 97336 sources."ansi-styles-4.3.0" 96860 97337 sources."cliui-6.0.0" 96861 97338 sources."color-convert-2.0.1" ··· 96893 97370 }; 96894 97371 dependencies = [ 96895 97372 sources."@babel/code-frame-7.14.5" 96896 - sources."@babel/helper-validator-identifier-7.14.9" 97373 + sources."@babel/helper-validator-identifier-7.15.7" 96897 97374 (sources."@babel/highlight-7.14.5" // { 96898 97375 dependencies = [ 96899 97376 sources."ansi-styles-3.2.1" ··· 97011 97488 sources."@npmcli/node-gyp-1.0.2" 97012 97489 sources."@npmcli/promise-spawn-1.3.2" 97013 97490 sources."@npmcli/run-script-1.8.6" 97014 - sources."@octokit/auth-token-2.4.5" 97491 + sources."@octokit/auth-token-2.5.0" 97015 97492 sources."@octokit/core-3.5.1" 97016 97493 (sources."@octokit/endpoint-6.0.12" // { 97017 97494 dependencies = [ ··· 97019 97496 ]; 97020 97497 }) 97021 97498 sources."@octokit/graphql-4.8.0" 97022 - sources."@octokit/openapi-types-10.1.1" 97499 + sources."@octokit/openapi-types-10.2.2" 97023 97500 sources."@octokit/plugin-enterprise-rest-6.0.1" 97024 - sources."@octokit/plugin-paginate-rest-2.16.0" 97501 + sources."@octokit/plugin-paginate-rest-2.16.3" 97025 97502 sources."@octokit/plugin-request-log-1.0.4" 97026 - sources."@octokit/plugin-rest-endpoint-methods-5.10.1" 97503 + sources."@octokit/plugin-rest-endpoint-methods-5.10.4" 97027 97504 (sources."@octokit/request-5.6.1" // { 97028 97505 dependencies = [ 97029 97506 sources."is-plain-object-5.0.0" ··· 97031 97508 }) 97032 97509 sources."@octokit/request-error-2.1.0" 97033 97510 sources."@octokit/rest-18.10.0" 97034 - sources."@octokit/types-6.27.0" 97511 + sources."@octokit/types-6.28.1" 97035 97512 sources."@tootallnate/once-1.1.2" 97036 97513 sources."@types/minimatch-3.0.5" 97037 97514 sources."@types/minimist-1.2.2" ··· 97094 97571 sources."cli-width-3.0.0" 97095 97572 (sources."cliui-7.0.4" // { 97096 97573 dependencies = [ 97097 - sources."ansi-regex-5.0.0" 97574 + sources."ansi-regex-5.0.1" 97098 97575 sources."strip-ansi-6.0.0" 97099 97576 ]; 97100 97577 }) ··· 97180 97657 sources."fast-deep-equal-3.1.3" 97181 97658 sources."fast-glob-3.2.7" 97182 97659 sources."fast-json-stable-stringify-2.1.0" 97183 - sources."fastq-1.12.0" 97660 + sources."fastq-1.13.0" 97184 97661 sources."figures-3.2.0" 97185 97662 sources."fill-range-7.0.1" 97186 97663 sources."filter-obj-1.1.0" ··· 97262 97739 sources."inflight-1.0.6" 97263 97740 sources."inherits-2.0.4" 97264 97741 sources."ini-1.3.8" 97265 - (sources."init-package-json-2.0.4" // { 97742 + (sources."init-package-json-2.0.5" // { 97266 97743 dependencies = [ 97267 97744 sources."normalize-package-data-3.0.3" 97268 97745 sources."read-package-json-4.1.1" ··· 97270 97747 }) 97271 97748 (sources."inquirer-7.3.3" // { 97272 97749 dependencies = [ 97273 - sources."ansi-regex-5.0.0" 97750 + sources."ansi-regex-5.0.1" 97274 97751 sources."strip-ansi-6.0.0" 97275 97752 ]; 97276 97753 }) ··· 97340 97817 ]; 97341 97818 }) 97342 97819 sources."make-fetch-happen-9.1.0" 97343 - sources."map-obj-4.2.1" 97820 + sources."map-obj-4.3.0" 97344 97821 (sources."meow-8.1.2" // { 97345 97822 dependencies = [ 97346 97823 sources."hosted-git-info-2.8.9" ··· 97374 97851 sources."arrify-1.0.1" 97375 97852 ]; 97376 97853 }) 97377 - sources."minipass-3.1.3" 97854 + sources."minipass-3.1.5" 97378 97855 sources."minipass-collect-1.0.2" 97379 97856 sources."minipass-fetch-1.4.1" 97380 97857 sources."minipass-flush-1.0.5" ··· 97390 97867 sources."mute-stream-0.0.8" 97391 97868 sources."negotiator-0.6.2" 97392 97869 sources."neo-async-2.6.2" 97393 - sources."node-fetch-2.6.2" 97870 + (sources."node-fetch-2.6.4" // { 97871 + dependencies = [ 97872 + sources."tr46-0.0.3" 97873 + sources."webidl-conversions-3.0.1" 97874 + sources."whatwg-url-5.0.0" 97875 + ]; 97876 + }) 97394 97877 sources."node-gyp-7.1.2" 97395 97878 sources."nopt-5.0.0" 97396 97879 (sources."normalize-package-data-2.5.0" // { ··· 97527 98010 sources."shebang-command-2.0.0" 97528 98011 sources."shebang-regex-3.0.0" 97529 98012 sources."side-channel-1.0.4" 97530 - sources."signal-exit-3.0.3" 98013 + sources."signal-exit-3.0.4" 97531 98014 sources."slash-3.0.0" 97532 98015 sources."slide-1.1.6" 97533 98016 sources."smart-buffer-4.2.0" 97534 98017 sources."socks-2.6.1" 97535 - sources."socks-proxy-agent-6.0.0" 98018 + sources."socks-proxy-agent-6.1.0" 97536 98019 sources."sort-keys-2.0.0" 97537 98020 sources."source-map-0.6.1" 97538 98021 sources."spdx-correct-3.1.1" ··· 97547 98030 sources."strict-uri-encode-2.0.0" 97548 98031 (sources."string-width-4.2.2" // { 97549 98032 dependencies = [ 97550 - sources."ansi-regex-5.0.0" 98033 + sources."ansi-regex-5.0.1" 97551 98034 sources."strip-ansi-6.0.0" 97552 98035 ]; 97553 98036 }) ··· 97614 98097 sources."wordwrap-1.0.0" 97615 98098 (sources."wrap-ansi-7.0.0" // { 97616 98099 dependencies = [ 97617 - sources."ansi-regex-5.0.0" 98100 + sources."ansi-regex-5.0.1" 97618 98101 sources."strip-ansi-6.0.0" 97619 98102 ]; 97620 98103 }) ··· 98586 99069 sources."@babel/helper-hoist-variables-7.15.4" 98587 99070 sources."@babel/helper-member-expression-to-functions-7.15.4" 98588 99071 sources."@babel/helper-module-imports-7.15.4" 98589 - sources."@babel/helper-module-transforms-7.15.4" 99072 + sources."@babel/helper-module-transforms-7.15.7" 98590 99073 sources."@babel/helper-optimise-call-expression-7.15.4" 98591 99074 sources."@babel/helper-plugin-utils-7.14.5" 98592 99075 sources."@babel/helper-remap-async-to-generator-7.15.4" ··· 98594 99077 sources."@babel/helper-simple-access-7.15.4" 98595 99078 sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 98596 99079 sources."@babel/helper-split-export-declaration-7.15.4" 98597 - sources."@babel/helper-validator-identifier-7.14.9" 99080 + sources."@babel/helper-validator-identifier-7.15.7" 98598 99081 sources."@babel/helper-validator-option-7.14.5" 98599 99082 sources."@babel/helper-wrap-function-7.15.4" 98600 99083 sources."@babel/helpers-7.15.4" ··· 98603 99086 sources."chalk-2.4.2" 98604 99087 ]; 98605 99088 }) 98606 - sources."@babel/parser-7.15.5" 99089 + sources."@babel/parser-7.15.7" 98607 99090 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 98608 99091 sources."@babel/plugin-external-helpers-7.8.3" 98609 99092 sources."@babel/plugin-proposal-async-generator-functions-7.15.4" ··· 98615 99098 sources."@babel/plugin-proposal-logical-assignment-operators-7.14.5" 98616 99099 sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 98617 99100 sources."@babel/plugin-proposal-numeric-separator-7.14.5" 98618 - sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 99101 + sources."@babel/plugin-proposal-object-rest-spread-7.15.6" 98619 99102 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 98620 99103 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 98621 99104 sources."@babel/plugin-proposal-private-methods-7.14.5" ··· 98670 99153 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 98671 99154 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 98672 99155 sources."@babel/plugin-transform-unicode-regex-7.14.5" 98673 - sources."@babel/preset-env-7.15.4" 99156 + sources."@babel/preset-env-7.15.6" 98674 99157 sources."@babel/preset-modules-0.1.4" 98675 99158 sources."@babel/preset-stage-2-7.8.3" 98676 99159 sources."@babel/runtime-7.15.4" 98677 99160 sources."@babel/template-7.15.4" 98678 99161 sources."@babel/traverse-7.15.4" 98679 - sources."@babel/types-7.15.4" 99162 + sources."@babel/types-7.15.6" 98680 99163 sources."@cnakazawa/watch-1.0.4" 98681 99164 sources."@comandeer/babel-plugin-banner-5.0.0" 98682 99165 sources."@istanbuljs/load-nyc-config-1.1.0" ··· 98697 99180 sources."@types/istanbul-lib-report-3.0.0" 98698 99181 sources."@types/istanbul-reports-1.1.2" 98699 99182 sources."@types/json-schema-7.0.9" 98700 - sources."@types/node-16.9.0" 99183 + sources."@types/node-16.9.4" 98701 99184 sources."@types/normalize-package-data-2.4.1" 98702 99185 sources."@types/resolve-0.0.8" 98703 99186 sources."@types/yargs-15.0.14" ··· 98870 99353 sources."cached-path-relative-1.0.2" 98871 99354 sources."call-bind-1.0.2" 98872 99355 sources."camelcase-5.3.1" 98873 - sources."caniuse-lite-1.0.30001255" 99356 + sources."caniuse-lite-1.0.30001259" 98874 99357 sources."capture-exit-2.0.0" 98875 99358 sources."caseless-0.12.0" 98876 99359 (sources."chalk-3.0.0" // { ··· 98942 99425 }) 98943 99426 sources."copy-descriptor-0.1.1" 98944 99427 sources."core-js-2.6.12" 98945 - (sources."core-js-compat-3.17.3" // { 99428 + (sources."core-js-compat-3.18.0" // { 98946 99429 dependencies = [ 98947 99430 sources."semver-7.0.0" 98948 99431 ]; ··· 98994 99477 sources."duplexer2-0.1.4" 98995 99478 sources."duplexify-3.7.1" 98996 99479 sources."ecc-jsbn-0.1.2" 98997 - sources."electron-to-chromium-1.3.833" 99480 + sources."electron-to-chromium-1.3.845" 98998 99481 (sources."elliptic-6.5.4" // { 98999 99482 dependencies = [ 99000 99483 sources."bn.js-4.12.0" ··· 99282 99765 sources."ncp-2.0.0" 99283 99766 sources."neo-async-2.6.2" 99284 99767 sources."nice-try-1.0.5" 99285 - sources."node-fetch-2.6.2" 99768 + sources."node-fetch-2.6.4" 99286 99769 sources."node-int64-0.4.0" 99287 99770 (sources."node-libs-browser-2.2.1" // { 99288 99771 dependencies = [ ··· 99297 99780 ]; 99298 99781 }) 99299 99782 sources."node-modules-regexp-1.0.0" 99300 - sources."node-releases-1.1.75" 99783 + sources."node-releases-1.1.76" 99301 99784 (sources."normalize-package-data-2.5.0" // { 99302 99785 dependencies = [ 99303 99786 sources."semver-5.7.1" ··· 99390 99873 sources."readdirp-3.6.0" 99391 99874 sources."realpath-native-2.0.0" 99392 99875 sources."regenerate-1.4.2" 99393 - sources."regenerate-unicode-properties-8.2.0" 99876 + sources."regenerate-unicode-properties-9.0.0" 99394 99877 sources."regenerator-runtime-0.13.9" 99395 99878 sources."regenerator-transform-0.14.5" 99396 99879 sources."regex-not-1.0.2" 99397 - sources."regexpu-core-4.7.1" 99880 + sources."regexpu-core-4.8.0" 99398 99881 sources."regjsgen-0.5.2" 99399 - (sources."regjsparser-0.6.9" // { 99882 + (sources."regjsparser-0.7.0" // { 99400 99883 dependencies = [ 99401 99884 sources."jsesc-0.5.0" 99402 99885 ]; ··· 99460 99943 sources."shebang-command-1.2.0" 99461 99944 sources."shebang-regex-1.0.0" 99462 99945 sources."shell-quote-1.7.2" 99463 - sources."signal-exit-3.0.3" 99946 + sources."signal-exit-3.0.4" 99464 99947 sources."simple-concat-1.0.1" 99465 99948 sources."slash-3.0.0" 99466 99949 (sources."snapdragon-0.8.2" // { ··· 99589 100072 sources."to-regex-3.0.2" 99590 100073 sources."to-regex-range-2.1.1" 99591 100074 sources."tough-cookie-2.5.0" 100075 + sources."tr46-0.0.3" 99592 100076 sources."tty-browserify-0.0.1" 99593 100077 sources."tunnel-agent-0.6.0" 99594 100078 sources."tweetnacl-0.14.5" ··· 99597 100081 sources."typedarray-to-buffer-3.1.5" 99598 100082 sources."umd-3.0.3" 99599 100083 sources."undeclared-identifiers-1.1.3" 99600 - sources."unicode-canonical-property-names-ecmascript-1.0.4" 99601 - sources."unicode-match-property-ecmascript-1.0.4" 99602 - sources."unicode-match-property-value-ecmascript-1.2.0" 99603 - sources."unicode-property-aliases-ecmascript-1.1.0" 100084 + sources."unicode-canonical-property-names-ecmascript-2.0.0" 100085 + sources."unicode-match-property-ecmascript-2.0.0" 100086 + sources."unicode-match-property-value-ecmascript-2.0.0" 100087 + sources."unicode-property-aliases-ecmascript-2.0.0" 99604 100088 sources."union-value-1.0.1" 99605 100089 sources."unique-filename-1.1.1" 99606 100090 sources."unique-slug-2.0.2" ··· 99655 100139 sources."readdirp-2.2.1" 99656 100140 ]; 99657 100141 }) 100142 + sources."webidl-conversions-3.0.1" 99658 100143 (sources."webpack-4.46.0" // { 99659 100144 dependencies = [ 99660 100145 sources."acorn-6.4.2" ··· 99684 100169 sources."source-map-0.6.1" 99685 100170 ]; 99686 100171 }) 100172 + sources."whatwg-url-5.0.0" 99687 100173 sources."which-2.0.2" 99688 100174 sources."which-module-2.0.0" 99689 100175 (sources."which-promise-1.0.0" // { ··· 100250 100736 }; 100251 100737 dependencies = [ 100252 100738 sources."@braintree/sanitize-url-3.1.0" 100253 - sources."@types/node-16.9.0" 100739 + sources."@types/node-16.9.4" 100254 100740 sources."@types/yauzl-2.9.2" 100255 100741 sources."agent-base-6.0.2" 100256 100742 sources."ansi-styles-4.3.0" ··· 100264 100750 sources."chownr-1.1.4" 100265 100751 sources."color-convert-2.0.1" 100266 100752 sources."color-name-1.1.4" 100267 - sources."commander-8.1.0" 100753 + sources."commander-8.2.0" 100268 100754 sources."concat-map-0.0.1" 100269 100755 sources."d3-5.16.0" 100270 100756 sources."d3-array-1.2.4" ··· 100343 100829 sources."progress-2.0.1" 100344 100830 sources."proxy-from-env-1.1.0" 100345 100831 sources."pump-3.0.0" 100346 - sources."puppeteer-10.2.0" 100832 + sources."puppeteer-10.4.0" 100347 100833 sources."readable-stream-3.6.0" 100348 100834 sources."rimraf-3.0.2" 100349 100835 sources."rw-1.3.3" ··· 100400 100886 sources."chokidar-3.5.2" 100401 100887 (sources."cliui-7.0.4" // { 100402 100888 dependencies = [ 100403 - sources."ansi-regex-5.0.0" 100889 + sources."ansi-regex-5.0.1" 100404 100890 sources."is-fullwidth-code-point-3.0.0" 100405 100891 sources."string-width-4.2.2" 100406 100892 sources."strip-ansi-6.0.0" ··· 100468 100954 sources."workerpool-6.1.5" 100469 100955 (sources."wrap-ansi-7.0.0" // { 100470 100956 dependencies = [ 100471 - sources."ansi-regex-5.0.0" 100957 + sources."ansi-regex-5.0.1" 100472 100958 sources."is-fullwidth-code-point-3.0.0" 100473 100959 sources."string-width-4.2.2" 100474 100960 sources."strip-ansi-6.0.0" ··· 100478 100964 sources."y18n-5.0.8" 100479 100965 (sources."yargs-16.2.0" // { 100480 100966 dependencies = [ 100481 - sources."ansi-regex-5.0.0" 100967 + sources."ansi-regex-5.0.1" 100482 100968 sources."is-fullwidth-code-point-3.0.0" 100483 100969 sources."string-width-4.2.2" 100484 100970 sources."strip-ansi-6.0.0" ··· 100577 101063 sources."@librescore/fonts-0.4.1" 100578 101064 sources."@librescore/sf3-0.3.0" 100579 101065 sources."ansi-escapes-4.3.2" 100580 - sources."ansi-regex-5.0.0" 101066 + sources."ansi-regex-5.0.1" 100581 101067 sources."ansi-styles-4.3.0" 100582 101068 sources."base64-js-1.5.1" 100583 101069 sources."bl-4.1.0" ··· 100608 101094 sources."log-symbols-4.1.0" 100609 101095 sources."mimic-fn-2.1.0" 100610 101096 sources."mute-stream-0.0.8" 100611 - sources."node-fetch-2.6.2" 101097 + sources."node-fetch-2.6.4" 100612 101098 sources."onetime-5.1.2" 100613 101099 sources."ora-5.4.1" 100614 101100 sources."os-tmpdir-1.0.2" ··· 100618 101104 sources."rxjs-6.6.7" 100619 101105 sources."safe-buffer-5.2.1" 100620 101106 sources."safer-buffer-2.1.2" 100621 - sources."signal-exit-3.0.3" 101107 + sources."signal-exit-3.0.4" 100622 101108 sources."string-width-4.2.2" 100623 101109 sources."string_decoder-1.3.0" 100624 101110 sources."strip-ansi-6.0.0" 100625 101111 sources."supports-color-7.2.0" 100626 101112 sources."through-2.3.8" 100627 101113 sources."tmp-0.0.33" 101114 + sources."tr46-0.0.3" 100628 101115 sources."tslib-1.14.1" 100629 101116 sources."type-fest-0.21.3" 100630 101117 sources."util-deprecate-1.0.2" 100631 101118 sources."wcwidth-1.0.1" 101119 + sources."webidl-conversions-3.0.1" 100632 101120 sources."webmscore-0.18.0" 101121 + sources."whatwg-url-5.0.0" 100633 101122 ]; 100634 101123 buildInputs = globalBuildInputs; 100635 101124 meta = { ··· 100704 101193 netlify-cli = nodeEnv.buildNodePackage { 100705 101194 name = "netlify-cli"; 100706 101195 packageName = "netlify-cli"; 100707 - version = "6.8.11"; 101196 + version = "6.9.11"; 100708 101197 src = fetchurl { 100709 - url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.8.11.tgz"; 100710 - sha512 = "OdClfrRa1MAI1Oltk2x0dJx43EsM4NZtENDttlbv3ODaglimInvd1NSpyjzOM4gFluMt6GG2rzH2LQcFNM8IvQ=="; 101198 + url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.9.11.tgz"; 101199 + sha512 = "73w6wTAwzuJ0eL7dS0kuO3eHHOB6SoAcvqxjM2+zjlKHnFq1Tpy6EBP9NvCAqk589g30tpnrMvmewU2t+bwKtw=="; 100711 101200 }; 100712 101201 dependencies = [ 100713 101202 sources."@babel/code-frame-7.14.5" ··· 100738 101227 sources."@babel/helper-hoist-variables-7.15.4" 100739 101228 sources."@babel/helper-member-expression-to-functions-7.15.4" 100740 101229 sources."@babel/helper-module-imports-7.15.4" 100741 - sources."@babel/helper-module-transforms-7.15.4" 101230 + sources."@babel/helper-module-transforms-7.15.7" 100742 101231 sources."@babel/helper-optimise-call-expression-7.15.4" 100743 101232 sources."@babel/helper-plugin-utils-7.14.5" 100744 101233 sources."@babel/helper-remap-async-to-generator-7.15.4" ··· 100746 101235 sources."@babel/helper-simple-access-7.15.4" 100747 101236 sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 100748 101237 sources."@babel/helper-split-export-declaration-7.15.4" 100749 - sources."@babel/helper-validator-identifier-7.14.9" 101238 + sources."@babel/helper-validator-identifier-7.15.7" 100750 101239 sources."@babel/helper-validator-option-7.14.5" 100751 101240 sources."@babel/helper-wrap-function-7.15.4" 100752 101241 sources."@babel/helpers-7.15.4" ··· 100760 101249 sources."supports-color-5.5.0" 100761 101250 ]; 100762 101251 }) 100763 - sources."@babel/parser-7.15.5" 101252 + sources."@babel/parser-7.15.7" 100764 101253 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 100765 101254 sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 100766 101255 sources."@babel/plugin-proposal-class-properties-7.14.5" ··· 100771 101260 sources."@babel/plugin-proposal-logical-assignment-operators-7.14.5" 100772 101261 sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 100773 101262 sources."@babel/plugin-proposal-numeric-separator-7.14.5" 100774 - sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 101263 + sources."@babel/plugin-proposal-object-rest-spread-7.15.6" 100775 101264 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 100776 101265 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 100777 101266 sources."@babel/plugin-proposal-private-methods-7.14.5" ··· 100823 101312 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 100824 101313 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 100825 101314 sources."@babel/plugin-transform-unicode-regex-7.14.5" 100826 - (sources."@babel/preset-env-7.15.4" // { 101315 + (sources."@babel/preset-env-7.15.6" // { 100827 101316 dependencies = [ 100828 101317 sources."semver-6.3.0" 100829 101318 ]; ··· 100832 101321 sources."@babel/runtime-7.15.4" 100833 101322 sources."@babel/template-7.15.4" 100834 101323 sources."@babel/traverse-7.15.4" 100835 - sources."@babel/types-7.15.4" 101324 + sources."@babel/types-7.15.6" 100836 101325 sources."@bugsnag/browser-7.11.0" 100837 101326 sources."@bugsnag/core-7.11.0" 100838 101327 sources."@bugsnag/cuid-3.0.0" ··· 100842 101331 sources."@dabh/diagnostics-2.0.2" 100843 101332 sources."@jest/types-26.6.2" 100844 101333 sources."@mrmlnc/readdir-enhanced-2.2.1" 100845 - (sources."@netlify/build-18.8.0" // { 101334 + (sources."@netlify/build-18.11.2" // { 100846 101335 dependencies = [ 100847 101336 sources."resolve-2.0.0-next.3" 100848 101337 ]; ··· 100854 101343 sources."slash-3.0.0" 100855 101344 ]; 100856 101345 }) 100857 - (sources."@netlify/config-15.6.2" // { 101346 + (sources."@netlify/config-15.6.3" // { 100858 101347 dependencies = [ 100859 101348 sources."dot-prop-5.3.0" 100860 101349 ]; 100861 101350 }) 100862 101351 sources."@netlify/esbuild-0.13.6" 100863 - sources."@netlify/framework-info-5.9.1" 101352 + sources."@netlify/framework-info-5.9.2" 100864 101353 sources."@netlify/functions-utils-2.0.2" 100865 - (sources."@netlify/git-utils-2.0.1" // { 101354 + (sources."@netlify/git-utils-2.0.2" // { 100866 101355 dependencies = [ 100867 101356 sources."braces-3.0.2" 100868 101357 sources."fill-range-7.0.1" ··· 100887 101376 sources."@netlify/open-api-2.5.0" 100888 101377 (sources."@netlify/plugin-edge-handlers-1.11.22" // { 100889 101378 dependencies = [ 100890 - sources."@types/node-14.17.15" 101379 + sources."@types/node-14.17.17" 100891 101380 ]; 100892 101381 }) 100893 101382 sources."@netlify/plugins-list-3.6.0" 100894 - sources."@netlify/routing-local-proxy-0.31.0" 101383 + sources."@netlify/routing-local-proxy-0.33.2" 100895 101384 sources."@netlify/run-utils-2.0.1" 100896 - (sources."@netlify/zip-it-and-ship-it-4.20.0" // { 101385 + (sources."@netlify/zip-it-and-ship-it-4.22.0" // { 100897 101386 dependencies = [ 100898 101387 sources."ansi-styles-4.3.0" 100899 101388 sources."cliui-7.0.4" ··· 100954 101443 sources."tslib-2.3.1" 100955 101444 ]; 100956 101445 }) 100957 - (sources."@oclif/core-0.5.35" // { 101446 + (sources."@oclif/core-0.5.39" // { 100958 101447 dependencies = [ 100959 101448 sources."@nodelib/fs.stat-2.0.5" 100960 101449 sources."ansi-styles-4.3.0" ··· 101023 101512 ]; 101024 101513 }) 101025 101514 sources."@oclif/screen-1.0.4" 101026 - sources."@octokit/auth-token-2.4.5" 101515 + sources."@octokit/auth-token-2.5.0" 101027 101516 sources."@octokit/core-3.5.1" 101028 101517 (sources."@octokit/endpoint-6.0.12" // { 101029 101518 dependencies = [ ··· 101031 101520 ]; 101032 101521 }) 101033 101522 sources."@octokit/graphql-4.8.0" 101034 - sources."@octokit/openapi-types-10.1.1" 101035 - sources."@octokit/plugin-paginate-rest-2.16.0" 101523 + sources."@octokit/openapi-types-10.2.2" 101524 + sources."@octokit/plugin-paginate-rest-2.16.3" 101036 101525 sources."@octokit/plugin-request-log-1.0.4" 101037 - sources."@octokit/plugin-rest-endpoint-methods-5.10.1" 101526 + sources."@octokit/plugin-rest-endpoint-methods-5.10.4" 101038 101527 (sources."@octokit/request-5.6.1" // { 101039 101528 dependencies = [ 101040 101529 sources."is-plain-object-5.0.0" ··· 101042 101531 }) 101043 101532 sources."@octokit/request-error-2.1.0" 101044 101533 sources."@octokit/rest-18.10.0" 101045 - sources."@octokit/types-6.27.0" 101534 + sources."@octokit/types-6.28.1" 101046 101535 sources."@rollup/plugin-babel-5.3.0" 101047 101536 (sources."@rollup/plugin-commonjs-18.1.0" // { 101048 101537 dependencies = [ ··· 101075 101564 sources."@types/istanbul-reports-3.0.1" 101076 101565 sources."@types/keyv-3.1.3" 101077 101566 sources."@types/minimatch-3.0.5" 101078 - sources."@types/node-16.9.0" 101567 + sources."@types/node-16.9.4" 101079 101568 sources."@types/node-fetch-2.5.12" 101080 101569 sources."@types/normalize-package-data-2.4.1" 101081 101570 sources."@types/resolve-1.17.1" ··· 101083 101572 sources."@types/semver-7.3.8" 101084 101573 sources."@types/yargs-15.0.14" 101085 101574 sources."@types/yargs-parser-20.2.1" 101086 - sources."@typescript-eslint/types-4.31.0" 101087 - (sources."@typescript-eslint/typescript-estree-4.31.0" // { 101575 + sources."@typescript-eslint/types-4.31.2" 101576 + (sources."@typescript-eslint/typescript-estree-4.31.2" // { 101088 101577 dependencies = [ 101089 101578 sources."@nodelib/fs.stat-2.0.5" 101090 101579 sources."array-union-2.1.0" ··· 101101 101590 sources."to-regex-range-5.0.1" 101102 101591 ]; 101103 101592 }) 101104 - sources."@typescript-eslint/visitor-keys-4.31.0" 101593 + sources."@typescript-eslint/visitor-keys-4.31.2" 101105 101594 sources."@ungap/from-entries-0.2.1" 101106 101595 sources."accepts-1.3.7" 101107 101596 sources."acorn-8.5.0" ··· 101111 101600 sources."clean-stack-2.2.0" 101112 101601 ]; 101113 101602 }) 101114 - sources."ajv-8.6.2" 101603 + sources."ajv-8.6.3" 101115 101604 (sources."all-node-versions-8.0.0" // { 101116 101605 dependencies = [ 101117 101606 sources."@jest/types-25.5.0" ··· 101138 101627 ]; 101139 101628 }) 101140 101629 sources."ansi-escapes-4.3.2" 101141 - sources."ansi-regex-5.0.0" 101630 + sources."ansi-regex-5.0.1" 101142 101631 sources."ansi-styles-5.2.0" 101143 101632 sources."ansicolors-0.3.2" 101144 101633 sources."any-observable-0.3.0" ··· 101198 101687 sources."raw-body-2.4.0" 101199 101688 ]; 101200 101689 }) 101201 - (sources."boxen-5.0.1" // { 101690 + (sources."boxen-5.1.2" // { 101202 101691 dependencies = [ 101203 101692 sources."ansi-styles-4.3.0" 101204 101693 sources."type-fest-0.20.2" ··· 101235 101724 sources."call-me-maybe-1.0.1" 101236 101725 sources."callsite-1.0.0" 101237 101726 sources."camelcase-6.2.0" 101238 - sources."caniuse-lite-1.0.30001255" 101727 + sources."caniuse-lite-1.0.30001259" 101239 101728 sources."cardinal-2.1.1" 101240 101729 (sources."chalk-4.1.2" // { 101241 101730 dependencies = [ ··· 101276 101765 sources."clean-stack-3.0.1" 101277 101766 sources."cli-boxes-2.2.1" 101278 101767 sources."cli-cursor-2.1.0" 101279 - sources."cli-progress-3.9.0" 101768 + sources."cli-progress-3.9.1" 101280 101769 sources."cli-spinners-2.6.0" 101281 101770 (sources."cli-truncate-0.2.1" // { 101282 101771 dependencies = [ ··· 101349 101838 sources."readdirp-2.2.1" 101350 101839 ]; 101351 101840 }) 101352 - (sources."core-js-compat-3.17.3" // { 101841 + (sources."core-js-compat-3.18.0" // { 101353 101842 dependencies = [ 101354 101843 sources."semver-7.0.0" 101355 101844 ]; ··· 101499 101988 }) 101500 101989 sources."duplexer3-0.1.4" 101501 101990 sources."ee-first-1.1.1" 101502 - sources."electron-to-chromium-1.3.833" 101991 + sources."electron-to-chromium-1.3.845" 101503 101992 sources."elegant-spinner-1.0.1" 101504 101993 sources."elf-cam-0.1.1" 101505 101994 sources."emoji-regex-8.0.0" ··· 101510 101999 sources."envinfo-7.8.1" 101511 102000 sources."error-ex-1.3.2" 101512 102001 sources."error-stack-parser-2.0.6" 102002 + sources."es-module-lexer-0.9.0" 101513 102003 sources."escalade-3.1.1" 101514 102004 sources."escape-goat-2.1.1" 101515 102005 sources."escape-html-1.0.3" ··· 101583 102073 sources."fast-glob-2.2.7" 101584 102074 sources."fast-levenshtein-2.0.6" 101585 102075 sources."fast-safe-stringify-2.1.1" 101586 - sources."fastq-1.12.0" 102076 + sources."fastq-1.13.0" 101587 102077 sources."fd-slicer-1.1.0" 101588 102078 sources."fecha-4.2.1" 101589 102079 (sources."fetch-node-website-5.0.3" // { ··· 101633 102123 sources."flush-write-stream-2.0.0" 101634 102124 sources."fn.name-1.1.0" 101635 102125 sources."folder-walker-3.2.0" 101636 - sources."follow-redirects-1.14.3" 102126 + sources."follow-redirects-1.14.4" 101637 102127 sources."for-in-1.0.2" 101638 102128 sources."form-data-3.0.1" 101639 102129 sources."forwarded-0.2.0" ··· 101659 102149 sources."get-port-5.1.1" 101660 102150 sources."get-stream-6.0.1" 101661 102151 sources."get-value-2.0.6" 101662 - sources."gh-release-fetch-2.0.2" 102152 + sources."gh-release-fetch-2.0.3" 101663 102153 sources."git-repo-info-2.1.1" 101664 102154 sources."gitconfiglocal-2.1.0" 101665 102155 sources."glob-7.1.7" ··· 101960 102450 ]; 101961 102451 }) 101962 102452 sources."map-cache-0.2.2" 101963 - sources."map-obj-4.2.1" 102453 + sources."map-obj-4.3.0" 101964 102454 sources."map-visit-1.0.0" 101965 102455 sources."maxstache-1.0.7" 101966 102456 (sources."maxstache-stream-1.0.4" // { ··· 102013 102503 sources."natural-orderby-2.0.3" 102014 102504 sources."negotiator-0.6.2" 102015 102505 sources."nested-error-stacks-2.1.0" 102016 - (sources."netlify-8.0.0" // { 102506 + (sources."netlify-8.0.1" // { 102017 102507 dependencies = [ 102018 102508 sources."qs-6.10.1" 102019 102509 ]; ··· 102022 102512 sources."netlify-redirect-parser-11.0.2" 102023 102513 sources."netlify-redirector-0.2.1" 102024 102514 sources."nice-try-1.0.5" 102025 - sources."node-fetch-2.6.2" 102026 - sources."node-releases-1.1.75" 102515 + sources."node-fetch-2.6.4" 102516 + sources."node-releases-1.1.76" 102027 102517 sources."node-source-walk-4.2.0" 102028 102518 (sources."node-version-alias-1.0.1" // { 102029 102519 dependencies = [ ··· 102265 102755 sources."readdirp-3.6.0" 102266 102756 sources."redeyed-2.1.1" 102267 102757 sources."regenerate-1.4.2" 102268 - sources."regenerate-unicode-properties-8.2.0" 102758 + sources."regenerate-unicode-properties-9.0.0" 102269 102759 sources."regenerator-runtime-0.13.9" 102270 102760 sources."regenerator-transform-0.14.5" 102271 102761 sources."regex-not-1.0.2" 102272 - sources."regexpu-core-4.7.1" 102762 + sources."regexpu-core-4.8.0" 102273 102763 sources."registry-auth-token-4.2.1" 102274 102764 sources."registry-url-5.1.0" 102275 102765 sources."regjsgen-0.5.2" 102276 - (sources."regjsparser-0.6.9" // { 102766 + (sources."regjsparser-0.7.0" // { 102277 102767 dependencies = [ 102278 102768 sources."jsesc-0.5.0" 102279 102769 ]; ··· 102348 102838 sources."shebang-command-2.0.0" 102349 102839 sources."shebang-regex-3.0.0" 102350 102840 sources."side-channel-1.0.4" 102351 - sources."signal-exit-3.0.3" 102841 + sources."signal-exit-3.0.4" 102352 102842 (sources."simple-swizzle-0.2.2" // { 102353 102843 dependencies = [ 102354 102844 sources."is-arrayish-0.3.2" ··· 102478 102968 sources."type-fest-0.16.0" 102479 102969 ]; 102480 102970 }) 102481 - (sources."terser-5.7.2" // { 102971 + (sources."terser-5.9.0" // { 102482 102972 dependencies = [ 102483 102973 sources."source-map-0.7.3" 102484 102974 ]; ··· 102509 102999 sources."toidentifier-1.0.0" 102510 103000 sources."toml-3.0.0" 102511 103001 sources."tomlify-j0.4-3.0.0" 103002 + sources."tr46-0.0.3" 102512 103003 sources."treeify-1.1.0" 102513 103004 (sources."trim-repeated-1.0.0" // { 102514 103005 dependencies = [ ··· 102523 103014 sources."type-fest-0.21.3" 102524 103015 sources."type-is-1.6.18" 102525 103016 sources."typedarray-to-buffer-3.1.5" 102526 - sources."typescript-4.4.2" 103017 + sources."typescript-4.4.3" 102527 103018 sources."uid-safe-2.1.5" 102528 103019 sources."unbzip2-stream-1.4.3" 102529 - sources."unicode-canonical-property-names-ecmascript-1.0.4" 102530 - sources."unicode-match-property-ecmascript-1.0.4" 102531 - sources."unicode-match-property-value-ecmascript-1.2.0" 102532 - sources."unicode-property-aliases-ecmascript-1.1.0" 103020 + sources."unicode-canonical-property-names-ecmascript-2.0.0" 103021 + sources."unicode-match-property-ecmascript-2.0.0" 103022 + sources."unicode-match-property-value-ecmascript-2.0.0" 103023 + sources."unicode-property-aliases-ecmascript-2.0.0" 102533 103024 sources."union-value-1.0.1" 102534 103025 sources."uniq-1.0.1" 102535 103026 sources."unique-string-2.0.0" ··· 102575 103066 ]; 102576 103067 }) 102577 103068 sources."wcwidth-1.0.1" 103069 + sources."webidl-conversions-3.0.1" 102578 103070 sources."well-known-symbols-2.0.0" 103071 + sources."whatwg-url-5.0.0" 102579 103072 sources."which-2.0.2" 102580 103073 sources."which-module-2.0.0" 102581 103074 sources."widest-line-3.1.0" ··· 102712 103205 sources."lru-cache-6.0.0" 102713 103206 sources."make-fetch-happen-8.0.14" 102714 103207 sources."minimatch-3.0.4" 102715 - sources."minipass-3.1.3" 103208 + sources."minipass-3.1.5" 102716 103209 sources."minipass-collect-1.0.2" 102717 103210 sources."minipass-fetch-1.4.1" 102718 103211 sources."minipass-flush-1.0.5" ··· 102738 103231 sources."safer-buffer-2.1.2" 102739 103232 sources."semver-7.3.5" 102740 103233 sources."set-blocking-2.0.0" 102741 - sources."signal-exit-3.0.3" 103234 + sources."signal-exit-3.0.4" 102742 103235 sources."smart-buffer-4.2.0" 102743 103236 sources."socks-2.6.1" 102744 103237 sources."socks-proxy-agent-5.0.1" ··· 102768 103261 node-gyp-build = nodeEnv.buildNodePackage { 102769 103262 name = "node-gyp-build"; 102770 103263 packageName = "node-gyp-build"; 102771 - version = "4.2.3"; 103264 + version = "4.3.0"; 102772 103265 src = fetchurl { 102773 - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.2.3.tgz"; 102774 - sha512 = "MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg=="; 103266 + url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz"; 103267 + sha512 = "iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q=="; 102775 103268 }; 102776 103269 buildInputs = globalBuildInputs; 102777 103270 meta = { ··· 102811 103304 sources."base64-js-0.0.8" 102812 103305 sources."bcrypt-pbkdf-1.0.2" 102813 103306 sources."biased-opener-0.2.8" 102814 - sources."big-integer-1.6.48" 103307 + sources."big-integer-1.6.49" 102815 103308 sources."block-stream-0.0.9" 102816 103309 sources."body-parser-1.19.0" 102817 103310 sources."boom-2.10.1" ··· 102999 103492 sources."serve-static-1.14.1" 103000 103493 sources."set-blocking-2.0.0" 103001 103494 sources."setprototypeof-1.1.1" 103002 - sources."signal-exit-3.0.3" 103495 + sources."signal-exit-3.0.4" 103003 103496 sources."sntp-1.0.9" 103004 103497 sources."spdx-correct-3.1.1" 103005 103498 sources."spdx-exceptions-2.3.0" ··· 103146 103639 sources."sax-1.2.4" 103147 103640 sources."semver-5.7.1" 103148 103641 sources."set-blocking-2.0.0" 103149 - sources."signal-exit-3.0.3" 103642 + sources."signal-exit-3.0.4" 103150 103643 sources."string-width-1.0.2" 103151 103644 sources."string_decoder-1.1.1" 103152 103645 sources."strip-ansi-3.0.1" ··· 103200 103693 sources."@node-red/registry-2.0.6" 103201 103694 sources."@node-red/runtime-2.0.6" 103202 103695 sources."@node-red/util-2.0.6" 103203 - sources."@sindresorhus/is-4.0.1" 103696 + sources."@sindresorhus/is-4.2.0" 103204 103697 sources."@szmarczak/http-timer-4.0.6" 103205 103698 sources."@types/cacheable-request-6.0.2" 103206 103699 sources."@types/http-cache-semantics-4.0.1" 103207 103700 sources."@types/keyv-3.1.3" 103208 - sources."@types/node-16.9.0" 103701 + sources."@types/node-16.9.4" 103209 103702 sources."@types/responselike-1.0.0" 103210 103703 sources."abbrev-1.1.1" 103211 103704 sources."accepts-1.3.7" ··· 103344 103837 }) 103345 103838 sources."fast-deep-equal-3.1.3" 103346 103839 sources."finalhandler-1.1.2" 103347 - sources."follow-redirects-1.14.3" 103840 + sources."follow-redirects-1.14.4" 103348 103841 sources."form-data-4.0.0" 103349 103842 sources."forwarded-0.2.0" 103350 103843 sources."fresh-0.5.2" ··· 103424 103917 sources."mimic-response-1.0.1" 103425 103918 sources."minimatch-3.0.4" 103426 103919 sources."minimist-1.2.5" 103427 - (sources."minipass-3.1.3" // { 103920 + (sources."minipass-3.1.5" // { 103428 103921 dependencies = [ 103429 103922 sources."yallist-4.0.0" 103430 103923 ]; ··· 103458 103951 sources."mute-stream-0.0.8" 103459 103952 sources."negotiator-0.6.2" 103460 103953 sources."node-addon-api-3.2.1" 103461 - sources."node-fetch-2.6.2" 103954 + sources."node-fetch-2.6.4" 103462 103955 sources."node-red-admin-2.2.0" 103463 103956 sources."nopt-5.0.0" 103464 103957 sources."normalize-url-6.1.0" 103465 103958 sources."npmlog-4.1.2" 103466 - sources."nth-check-2.0.0" 103959 + sources."nth-check-2.0.1" 103467 103960 sources."number-is-nan-1.0.1" 103468 103961 sources."oauth2orize-1.11.0" 103469 103962 sources."object-assign-4.1.1" ··· 103519 104012 sources."serve-static-1.14.1" 103520 104013 sources."set-blocking-2.0.0" 103521 104014 sources."setprototypeof-1.1.1" 103522 - sources."signal-exit-3.0.3" 104015 + sources."signal-exit-3.0.4" 103523 104016 (sources."split2-3.2.2" // { 103524 104017 dependencies = [ 103525 104018 sources."readable-stream-3.6.0" ··· 103541 104034 }) 103542 104035 sources."toidentifier-1.0.0" 103543 104036 sources."tough-cookie-4.0.0" 104037 + sources."tr46-0.0.3" 103544 104038 sources."tslib-2.3.1" 103545 104039 sources."type-is-1.6.18" 103546 104040 sources."typedarray-0.0.6" ··· 103554 104048 sources."utils-merge-1.0.1" 103555 104049 sources."uuid-8.3.2" 103556 104050 sources."vary-1.1.2" 104051 + sources."webidl-conversions-3.0.1" 104052 + sources."whatwg-url-5.0.0" 103557 104053 sources."wide-align-1.1.3" 103558 104054 sources."wrappy-1.0.2" 103559 104055 sources."ws-7.5.1" ··· 103661 104157 sources."mime-types-2.1.32" 103662 104158 sources."minimatch-3.0.4" 103663 104159 sources."minimist-1.2.5" 103664 - sources."minipass-3.1.3" 104160 + sources."minipass-3.1.5" 103665 104161 sources."minizlib-2.1.2" 103666 104162 sources."mkdirp-0.5.5" 103667 104163 sources."ncp-0.4.2" ··· 103718 104214 sources."safer-buffer-2.1.2" 103719 104215 sources."semver-7.3.5" 103720 104216 sources."set-blocking-2.0.0" 103721 - sources."signal-exit-3.0.3" 104217 + sources."signal-exit-3.0.4" 103722 104218 sources."slasp-0.0.4" 103723 104219 sources."slide-1.1.6" 103724 104220 sources."spdx-correct-3.1.1" ··· 103891 104387 sources."semver-6.3.0" 103892 104388 ]; 103893 104389 }) 103894 - sources."signal-exit-3.0.3" 104390 + sources."signal-exit-3.0.4" 103895 104391 (sources."string-width-4.2.2" // { 103896 104392 dependencies = [ 103897 - sources."ansi-regex-5.0.0" 104393 + sources."ansi-regex-5.0.1" 103898 104394 sources."emoji-regex-8.0.0" 103899 104395 sources."is-fullwidth-code-point-3.0.0" 103900 104396 sources."strip-ansi-6.0.0" ··· 103943 104439 }; 103944 104440 dependencies = [ 103945 104441 sources."@babel/code-frame-7.14.5" 103946 - sources."@babel/helper-validator-identifier-7.14.9" 104442 + sources."@babel/helper-validator-identifier-7.15.7" 103947 104443 (sources."@babel/highlight-7.14.5" // { 103948 104444 dependencies = [ 103949 104445 sources."ansi-styles-3.2.1" ··· 103969 104465 sources."@types/http-cache-semantics-4.0.1" 103970 104466 sources."@types/keyv-3.1.3" 103971 104467 sources."@types/minimist-1.2.2" 103972 - sources."@types/node-16.9.0" 104468 + sources."@types/node-16.9.4" 103973 104469 sources."@types/normalize-package-data-2.4.1" 103974 104470 sources."@types/parse-json-4.0.0" 103975 104471 sources."@types/responselike-1.0.0" ··· 103984 104480 ]; 103985 104481 }) 103986 104482 sources."ansi-escapes-4.3.2" 103987 - sources."ansi-regex-5.0.0" 104483 + sources."ansi-regex-5.0.1" 103988 104484 sources."ansi-styles-4.3.0" 103989 104485 sources."any-observable-0.5.1" 103990 104486 sources."array-union-2.1.0" 103991 104487 sources."arrify-1.0.1" 103992 104488 sources."async-exit-hook-2.0.1" 103993 104489 sources."balanced-match-1.0.2" 103994 - (sources."boxen-5.0.1" // { 104490 + (sources."boxen-5.1.2" // { 103995 104491 dependencies = [ 103996 104492 sources."camelcase-6.2.0" 103997 104493 sources."type-fest-0.20.2" ··· 104065 104561 sources."execa-5.1.1" 104066 104562 sources."external-editor-3.1.0" 104067 104563 sources."fast-glob-3.2.7" 104068 - sources."fastq-1.12.0" 104564 + sources."fastq-1.13.0" 104069 104565 (sources."figures-3.2.0" // { 104070 104566 dependencies = [ 104071 104567 sources."escape-string-regexp-1.0.5" ··· 104241 104737 ]; 104242 104738 }) 104243 104739 sources."map-age-cleaner-0.1.3" 104244 - sources."map-obj-4.2.1" 104245 - (sources."mem-6.1.1" // { 104246 - dependencies = [ 104247 - sources."mimic-fn-3.1.0" 104248 - ]; 104249 - }) 104740 + sources."map-obj-4.3.0" 104250 104741 (sources."meow-8.1.2" // { 104251 104742 dependencies = [ 104252 104743 sources."type-fest-0.18.1" ··· 104292 104783 sources."os-tmpdir-1.0.2" 104293 104784 (sources."ow-0.21.0" // { 104294 104785 dependencies = [ 104295 - sources."@sindresorhus/is-4.0.1" 104786 + sources."@sindresorhus/is-4.2.0" 104296 104787 sources."type-fest-0.20.2" 104297 104788 ]; 104298 104789 }) ··· 104307 104798 sources."p-limit-2.3.0" 104308 104799 sources."p-locate-4.1.0" 104309 104800 sources."p-map-4.0.0" 104310 - (sources."p-memoize-4.0.1" // { 104801 + (sources."p-memoize-4.0.2" // { 104311 104802 dependencies = [ 104312 104803 sources."mimic-fn-3.1.0" 104313 104804 ]; ··· 104405 104896 }) 104406 104897 sources."shebang-command-2.0.0" 104407 104898 sources."shebang-regex-3.0.0" 104408 - sources."signal-exit-3.0.3" 104899 + sources."signal-exit-3.0.4" 104409 104900 sources."slash-3.0.0" 104410 104901 sources."slice-ansi-0.0.4" 104411 104902 sources."spdx-correct-3.1.1" ··· 104473 104964 npm = nodeEnv.buildNodePackage { 104474 104965 name = "npm"; 104475 104966 packageName = "npm"; 104476 - version = "7.22.0"; 104967 + version = "7.24.0"; 104477 104968 src = fetchurl { 104478 - url = "https://registry.npmjs.org/npm/-/npm-7.22.0.tgz"; 104479 - sha512 = "HJnjTCrGGnacPMCSnrxuHGf2H4VdrY7hwTAK1RwByg0K96KIuTR4QNioFW+bnc/pW0uwpk9lLsDf4BeEQhTv2Q=="; 104969 + url = "https://registry.npmjs.org/npm/-/npm-7.24.0.tgz"; 104970 + sha512 = "4zd4txmN7dYEx32kH/K+gecnZhnGDdCrRFK6/n5TGUtqtyjevw0uPul0knJ9PzwDXeNf9MsWzGhjxGeI1M43FA=="; 104480 104971 }; 104481 104972 buildInputs = globalBuildInputs; 104482 104973 meta = { ··· 104537 105028 sources."aws4-1.11.0" 104538 105029 sources."balanced-match-1.0.2" 104539 105030 sources."bcrypt-pbkdf-1.0.2" 104540 - (sources."boxen-5.0.1" // { 105031 + (sources."boxen-5.1.2" // { 104541 105032 dependencies = [ 104542 - sources."ansi-regex-5.0.0" 105033 + sources."ansi-regex-5.0.1" 104543 105034 sources."emoji-regex-8.0.0" 104544 105035 sources."is-fullwidth-code-point-3.0.0" 104545 105036 sources."string-width-4.2.2" ··· 104601 105092 sources."fast-glob-3.2.7" 104602 105093 sources."fast-json-stable-stringify-2.1.0" 104603 105094 sources."fast-memoize-2.5.2" 104604 - sources."fastq-1.12.0" 105095 + sources."fastq-1.13.0" 104605 105096 sources."figgy-pudding-3.5.2" 104606 105097 sources."fill-range-7.0.1" 104607 105098 sources."find-up-5.0.0" ··· 104703 105194 sources."mimic-response-1.0.1" 104704 105195 sources."minimatch-3.0.4" 104705 105196 sources."minimist-1.2.5" 104706 - sources."minipass-3.1.3" 105197 + sources."minipass-3.1.5" 104707 105198 sources."minipass-collect-1.0.2" 104708 105199 sources."minipass-fetch-1.4.1" 104709 105200 sources."minipass-flush-1.0.5" ··· 104782 105273 }) 104783 105274 sources."semver-utils-1.1.4" 104784 105275 sources."set-blocking-2.0.0" 104785 - sources."signal-exit-3.0.3" 105276 + sources."signal-exit-3.0.4" 104786 105277 sources."sisteransi-1.0.5" 104787 105278 sources."slash-3.0.0" 104788 105279 sources."smart-buffer-4.2.0" 104789 105280 sources."socks-2.6.1" 104790 - sources."socks-proxy-agent-6.0.0" 105281 + sources."socks-proxy-agent-6.1.0" 104791 105282 sources."spawn-please-1.0.0" 104792 105283 sources."sshpk-1.16.1" 104793 105284 sources."ssri-8.0.1" ··· 104822 105313 sources."wide-align-1.1.3" 104823 105314 (sources."widest-line-3.1.0" // { 104824 105315 dependencies = [ 104825 - sources."ansi-regex-5.0.0" 105316 + sources."ansi-regex-5.0.1" 104826 105317 sources."emoji-regex-8.0.0" 104827 105318 sources."is-fullwidth-code-point-3.0.0" 104828 105319 sources."string-width-4.2.2" ··· 104831 105322 }) 104832 105323 (sources."wrap-ansi-7.0.0" // { 104833 105324 dependencies = [ 104834 - sources."ansi-regex-5.0.0" 105325 + sources."ansi-regex-5.0.1" 104835 105326 sources."emoji-regex-8.0.0" 104836 105327 sources."is-fullwidth-code-point-3.0.0" 104837 105328 sources."string-width-4.2.2" ··· 104995 105486 sources."safer-buffer-2.1.2" 104996 105487 sources."semver-4.3.6" 104997 105488 sources."set-blocking-2.0.0" 104998 - sources."signal-exit-3.0.3" 105489 + sources."signal-exit-3.0.4" 104999 105490 sources."slide-1.1.6" 105000 105491 sources."sshpk-1.16.1" 105001 105492 sources."string-width-2.1.1" ··· 105119 105610 sources."@babel/helper-hoist-variables-7.15.4" 105120 105611 sources."@babel/helper-member-expression-to-functions-7.15.4" 105121 105612 sources."@babel/helper-module-imports-7.15.4" 105122 - sources."@babel/helper-module-transforms-7.15.4" 105613 + sources."@babel/helper-module-transforms-7.15.7" 105123 105614 sources."@babel/helper-optimise-call-expression-7.15.4" 105124 105615 sources."@babel/helper-plugin-utils-7.14.5" 105125 105616 sources."@babel/helper-remap-async-to-generator-7.15.4" ··· 105127 105618 sources."@babel/helper-simple-access-7.15.4" 105128 105619 sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 105129 105620 sources."@babel/helper-split-export-declaration-7.15.4" 105130 - sources."@babel/helper-validator-identifier-7.14.9" 105621 + sources."@babel/helper-validator-identifier-7.15.7" 105131 105622 sources."@babel/helper-validator-option-7.14.5" 105132 105623 sources."@babel/helper-wrap-function-7.15.4" 105133 105624 sources."@babel/helpers-7.15.4" 105134 105625 sources."@babel/highlight-7.14.5" 105135 - sources."@babel/parser-7.15.5" 105626 + sources."@babel/parser-7.15.7" 105136 105627 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 105137 105628 sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 105138 105629 sources."@babel/plugin-proposal-class-properties-7.14.5" ··· 105143 105634 sources."@babel/plugin-proposal-logical-assignment-operators-7.14.5" 105144 105635 sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 105145 105636 sources."@babel/plugin-proposal-numeric-separator-7.14.5" 105146 - sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 105637 + sources."@babel/plugin-proposal-object-rest-spread-7.15.6" 105147 105638 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 105148 105639 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 105149 105640 sources."@babel/plugin-proposal-private-methods-7.14.5" ··· 105199 105690 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 105200 105691 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 105201 105692 sources."@babel/plugin-transform-unicode-regex-7.14.5" 105202 - (sources."@babel/preset-env-7.15.4" // { 105693 + (sources."@babel/preset-env-7.15.6" // { 105203 105694 dependencies = [ 105204 105695 sources."semver-6.3.0" 105205 105696 ]; ··· 105208 105699 sources."@babel/runtime-7.15.4" 105209 105700 sources."@babel/template-7.15.4" 105210 105701 sources."@babel/traverse-7.15.4" 105211 - sources."@babel/types-7.15.4" 105702 + sources."@babel/types-7.15.6" 105212 105703 sources."@iarna/toml-2.2.5" 105213 105704 sources."@mrmlnc/readdir-enhanced-2.2.1" 105214 105705 sources."@nodelib/fs.stat-1.1.3" ··· 105330 105821 sources."caller-path-2.0.0" 105331 105822 sources."callsites-2.0.0" 105332 105823 sources."caniuse-api-3.0.0" 105333 - sources."caniuse-lite-1.0.30001255" 105824 + sources."caniuse-lite-1.0.30001259" 105334 105825 sources."caseless-0.12.0" 105335 105826 sources."chalk-2.4.2" 105336 105827 sources."chokidar-2.1.8" ··· 105357 105848 sources."convert-source-map-1.8.0" 105358 105849 sources."copy-descriptor-0.1.1" 105359 105850 sources."core-js-2.6.12" 105360 - (sources."core-js-compat-3.17.3" // { 105851 + (sources."core-js-compat-3.18.0" // { 105361 105852 dependencies = [ 105362 105853 sources."semver-7.0.0" 105363 105854 ]; ··· 105468 105959 sources."duplexer2-0.1.4" 105469 105960 sources."ecc-jsbn-0.1.2" 105470 105961 sources."ee-first-1.1.1" 105471 - sources."electron-to-chromium-1.3.833" 105962 + sources."electron-to-chromium-1.3.845" 105472 105963 (sources."elliptic-6.5.4" // { 105473 105964 dependencies = [ 105474 105965 sources."bn.js-4.12.0" ··· 105578 106069 sources."posthtml-0.15.2" 105579 106070 sources."posthtml-parser-0.7.2" 105580 106071 sources."source-map-0.7.3" 105581 - sources."terser-5.7.2" 106072 + sources."terser-5.9.0" 105582 106073 ]; 105583 106074 }) 105584 106075 (sources."htmlparser2-6.1.0" // { ··· 105733 106224 sources."punycode-1.4.1" 105734 106225 ]; 105735 106226 }) 105736 - sources."node-releases-1.1.75" 106227 + sources."node-releases-1.1.76" 105737 106228 sources."normalize-path-3.0.0" 105738 106229 sources."normalize-url-3.3.0" 105739 106230 sources."nth-check-1.0.2" ··· 105879 106370 }) 105880 106371 sources."readdirp-2.2.1" 105881 106372 sources."regenerate-1.4.2" 105882 - sources."regenerate-unicode-properties-8.2.0" 106373 + sources."regenerate-unicode-properties-9.0.0" 105883 106374 sources."regenerator-runtime-0.13.9" 105884 106375 sources."regenerator-transform-0.14.5" 105885 106376 (sources."regex-not-1.0.2" // { ··· 105888 106379 sources."is-extendable-1.0.1" 105889 106380 ]; 105890 106381 }) 105891 - sources."regexpu-core-4.7.1" 106382 + sources."regexpu-core-4.8.0" 105892 106383 sources."regjsgen-0.5.2" 105893 - (sources."regjsparser-0.6.9" // { 106384 + (sources."regjsparser-0.7.0" // { 105894 106385 dependencies = [ 105895 106386 sources."jsesc-0.5.0" 105896 106387 ]; ··· 105941 106432 sources."object-inspect-1.11.0" 105942 106433 ]; 105943 106434 }) 105944 - sources."signal-exit-3.0.3" 106435 + sources."signal-exit-3.0.4" 105945 106436 (sources."simple-swizzle-0.2.2" // { 105946 106437 dependencies = [ 105947 106438 sources."is-arrayish-0.3.2" ··· 106029 106520 sources."postcss-selector-parser-6.0.2" 106030 106521 ]; 106031 106522 }) 106032 - sources."unicode-canonical-property-names-ecmascript-1.0.4" 106033 - sources."unicode-match-property-ecmascript-1.0.4" 106034 - sources."unicode-match-property-value-ecmascript-1.2.0" 106035 - sources."unicode-property-aliases-ecmascript-1.1.0" 106523 + sources."unicode-canonical-property-names-ecmascript-2.0.0" 106524 + sources."unicode-match-property-ecmascript-2.0.0" 106525 + sources."unicode-match-property-value-ecmascript-2.0.0" 106526 + sources."unicode-property-aliases-ecmascript-2.0.0" 106036 106527 sources."unicode-trie-0.3.1" 106037 106528 sources."union-value-1.0.1" 106038 106529 sources."uniq-1.0.1" ··· 106238 106729 sources."json-schema-traverse-0.4.1" 106239 106730 sources."json-stringify-safe-5.0.1" 106240 106731 sources."jsprim-1.4.1" 106241 - (sources."kad-git://github.com/wikimedia/kad#master" // { 106242 - dependencies = [ 106243 - sources."ms-0.7.3" 106244 - ]; 106245 - }) 106246 106732 sources."kad-fs-0.0.4" 106247 106733 sources."kad-localstorage-0.0.7" 106248 106734 sources."kad-memstore-0.0.1" 106249 - sources."limitation-0.2.2" 106735 + sources."limitation-0.2.3" 106250 106736 sources."locate-path-3.0.0" 106251 106737 sources."lodash-4.17.21" 106252 106738 sources."lodash.clone-4.5.0" ··· 106329 106815 ]; 106330 106816 }) 106331 106817 sources."serve-static-1.14.1" 106332 - (sources."service-runner-2.8.4" // { 106818 + (sources."service-runner-2.9.0" // { 106333 106819 dependencies = [ 106334 106820 sources."semver-7.3.5" 106335 106821 sources."yargs-14.2.3" ··· 106362 106848 sources."vary-1.1.2" 106363 106849 sources."verror-1.10.0" 106364 106850 sources."which-module-2.0.0" 106851 + (sources."wikimedia-kad-fork-1.3.6" // { 106852 + dependencies = [ 106853 + sources."ms-0.7.3" 106854 + ]; 106855 + }) 106365 106856 sources."wikimedia-langconv-0.1.0" 106366 106857 sources."wikipeg-2.0.6" 106367 106858 sources."wordwrap-1.0.0" ··· 106481 106972 sources."base64-js-0.0.8" 106482 106973 sources."bencode-2.0.2" 106483 106974 sources."bep53-range-1.1.1" 106484 - sources."big-integer-1.6.48" 106975 + sources."big-integer-1.6.49" 106485 106976 sources."bitfield-0.1.0" 106486 106977 (sources."bittorrent-dht-6.4.2" // { 106487 106978 dependencies = [ ··· 106698 107189 sources."safer-buffer-2.1.2" 106699 107190 sources."semver-5.7.1" 106700 107191 sources."server-destroy-1.0.1" 106701 - sources."signal-exit-3.0.3" 107192 + sources."signal-exit-3.0.4" 106702 107193 sources."simple-concat-1.0.1" 106703 107194 sources."simple-get-2.8.1" 106704 107195 sources."simple-peer-6.4.4" ··· 107145 107636 pkg = nodeEnv.buildNodePackage { 107146 107637 name = "pkg"; 107147 107638 packageName = "pkg"; 107148 - version = "5.3.1"; 107639 + version = "5.3.2"; 107149 107640 src = fetchurl { 107150 - url = "https://registry.npmjs.org/pkg/-/pkg-5.3.1.tgz"; 107151 - sha512 = "jT/sptM1ZG++FNk+jnJYNoWLDQXYd7hqpnBhd5j18SNW1jJzNYo55RahuCiD0KN0PX9mb53GWCqKM0ia/mJytA=="; 107641 + url = "https://registry.npmjs.org/pkg/-/pkg-5.3.2.tgz"; 107642 + sha512 = "78X8Tt71TI11XjkZm/r9shTdFRooFiiRcT8nfYeeOou5VKCkCysQauwAAkJKb5yjfrUhk3CBNL4zv22/iLpdnw=="; 107152 107643 }; 107153 107644 dependencies = [ 107154 - sources."@babel/helper-validator-identifier-7.14.9" 107645 + sources."@babel/helper-validator-identifier-7.15.7" 107155 107646 sources."@babel/parser-7.13.13" 107156 107647 sources."@babel/types-7.13.12" 107157 107648 sources."@nodelib/fs.scandir-2.1.5" 107158 107649 sources."@nodelib/fs.stat-2.0.5" 107159 107650 sources."@nodelib/fs.walk-1.2.8" 107160 107651 sources."agent-base-6.0.2" 107161 - sources."ansi-regex-5.0.0" 107652 + sources."ansi-regex-5.0.1" 107162 107653 sources."ansi-styles-4.3.0" 107163 107654 sources."aproba-1.2.0" 107164 107655 sources."are-we-there-yet-1.1.7" ··· 107197 107688 sources."expand-template-2.0.3" 107198 107689 sources."fast-glob-3.2.7" 107199 107690 sources."fast-levenshtein-2.0.6" 107200 - sources."fastq-1.12.0" 107691 + sources."fastq-1.13.0" 107201 107692 sources."fill-range-7.0.1" 107202 107693 sources."from2-2.3.0" 107203 107694 sources."fs-constants-1.0.0" ··· 107252 107743 sources."semver-5.7.1" 107253 107744 ]; 107254 107745 }) 107255 - sources."node-fetch-2.6.2" 107746 + sources."node-fetch-2.6.4" 107256 107747 sources."noop-logger-0.1.1" 107257 107748 sources."npmlog-4.1.2" 107258 107749 sources."number-is-nan-1.0.1" ··· 107263 107754 sources."path-parse-1.0.7" 107264 107755 sources."path-type-4.0.0" 107265 107756 sources."picomatch-2.3.0" 107266 - sources."pkg-fetch-3.2.2" 107757 + sources."pkg-fetch-3.2.3" 107267 107758 sources."prebuild-install-6.0.1" 107268 107759 sources."prelude-ls-1.1.2" 107269 107760 sources."process-nextick-args-2.0.1" ··· 107279 107770 sources."safe-buffer-5.1.2" 107280 107771 sources."semver-7.3.5" 107281 107772 sources."set-blocking-2.0.0" 107282 - sources."signal-exit-3.0.3" 107773 + sources."signal-exit-3.0.4" 107283 107774 sources."simple-concat-1.0.1" 107284 107775 sources."simple-get-3.1.0" 107285 107776 sources."slash-3.0.0" ··· 107298 107789 }) 107299 107790 sources."to-fast-properties-2.0.0" 107300 107791 sources."to-regex-range-5.0.1" 107792 + sources."tr46-0.0.3" 107301 107793 sources."tslib-2.1.0" 107302 107794 sources."tunnel-agent-0.6.0" 107303 107795 sources."type-check-0.3.2" 107304 107796 sources."universalify-2.0.0" 107305 107797 sources."util-deprecate-1.0.2" 107798 + sources."webidl-conversions-3.0.1" 107799 + sources."whatwg-url-5.0.0" 107306 107800 sources."which-pm-runs-1.0.0" 107307 107801 (sources."wide-align-1.1.3" // { 107308 107802 dependencies = [ ··· 107429 107923 sources."fclone-1.0.11" 107430 107924 sources."file-uri-to-path-2.0.0" 107431 107925 sources."fill-range-7.0.1" 107432 - sources."follow-redirects-1.14.3" 107926 + sources."follow-redirects-1.14.4" 107433 107927 sources."fs-extra-8.1.0" 107434 107928 sources."fs.realpath-1.0.0" 107435 107929 sources."fsevents-2.3.2" ··· 107520 108014 }) 107521 108015 sources."setprototypeof-1.1.1" 107522 108016 sources."shimmer-1.2.1" 107523 - sources."signal-exit-3.0.3" 108017 + sources."signal-exit-3.0.4" 107524 108018 sources."smart-buffer-4.2.0" 107525 108019 sources."socks-2.6.1" 107526 108020 sources."socks-proxy-agent-5.0.1" ··· 107530 108024 sources."statuses-1.5.0" 107531 108025 sources."string_decoder-0.10.31" 107532 108026 sources."supports-color-7.2.0" 107533 - sources."systeminformation-5.8.7" 108027 + sources."systeminformation-5.9.3" 107534 108028 sources."to-regex-range-5.0.1" 107535 108029 sources."toidentifier-1.0.0" 107536 108030 sources."tslib-2.3.1" ··· 107565 108059 pnpm = nodeEnv.buildNodePackage { 107566 108060 name = "pnpm"; 107567 108061 packageName = "pnpm"; 107568 - version = "6.14.7"; 108062 + version = "6.15.1"; 107569 108063 src = fetchurl { 107570 - url = "https://registry.npmjs.org/pnpm/-/pnpm-6.14.7.tgz"; 107571 - sha512 = "/pjz4Eod3Heyxw/QCGLYpkZR8YNuzTTblgcVC+qvvYCtX0Wb5J9jVcbHoSRqC2jeo4ldtg8H9dssPlHlH50I7w=="; 108064 + url = "https://registry.npmjs.org/pnpm/-/pnpm-6.15.1.tgz"; 108065 + sha512 = "hYGK8xlLdMj/sFhOLJ+x8IotsOkBp01c2mdWdLeKlUdA6EOl/RNWRp+7dUWs3Si2E1zgdTiHsEgNGYffv0PyLQ=="; 107572 108066 }; 107573 108067 buildInputs = globalBuildInputs; 107574 108068 meta = { ··· 107643 108137 sources."@nodelib/fs.scandir-2.1.5" 107644 108138 sources."@nodelib/fs.stat-2.0.5" 107645 108139 sources."@nodelib/fs.walk-1.2.8" 107646 - sources."ansi-regex-5.0.0" 108140 + sources."ansi-regex-5.0.1" 107647 108141 sources."ansi-styles-4.3.0" 107648 108142 sources."anymatch-3.1.2" 107649 108143 sources."array-union-2.1.0" ··· 107661 108155 sources."emoji-regex-8.0.0" 107662 108156 sources."escalade-3.1.1" 107663 108157 sources."fast-glob-3.2.7" 107664 - sources."fastq-1.12.0" 108158 + sources."fastq-1.13.0" 107665 108159 sources."fill-range-7.0.1" 107666 108160 sources."fs-extra-9.1.0" 107667 108161 sources."fsevents-2.3.2" ··· 107727 108221 prettier = nodeEnv.buildNodePackage { 107728 108222 name = "prettier"; 107729 108223 packageName = "prettier"; 107730 - version = "2.4.0"; 108224 + version = "2.4.1"; 107731 108225 src = fetchurl { 107732 - url = "https://registry.npmjs.org/prettier/-/prettier-2.4.0.tgz"; 107733 - sha512 = "DsEPLY1dE5HF3BxCRBmD4uYZ+5DCbvatnolqTqcxEgKVZnL2kUfyu7b8pPQ5+hTBkdhU9SLUmK0/pHb07RE4WQ=="; 108226 + url = "https://registry.npmjs.org/prettier/-/prettier-2.4.1.tgz"; 108227 + sha512 = "9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA=="; 107734 108228 }; 107735 108229 buildInputs = globalBuildInputs; 107736 108230 meta = { ··· 107769 108263 prisma = nodeEnv.buildNodePackage { 107770 108264 name = "prisma"; 107771 108265 packageName = "prisma"; 107772 - version = "3.0.1"; 108266 + version = "3.1.1"; 107773 108267 src = fetchurl { 107774 - url = "https://registry.npmjs.org/prisma/-/prisma-3.0.1.tgz"; 107775 - sha512 = "ENmYAopd56nkds5/IOSTGixbkbUN2QdEzB4cp/mtaGB/G0OArbP6cnbA/9u02Pe29RdErbNOoIdCGASjpItJwQ=="; 108268 + url = "https://registry.npmjs.org/prisma/-/prisma-3.1.1.tgz"; 108269 + sha512 = "+eZtWIL6hnOKUOvqq9WLBzSw2d/EbTmOx1Td1LI8/0XE40ctXMLG2N1p6NK5/+yivGaoNJ9PDpPsPL9lO4nJrQ=="; 107776 108270 }; 107777 108271 dependencies = [ 107778 - sources."@prisma/engines-2.31.0-32.2452cc6313d52b8b9a96999ac0e974d0aedf88db" 108272 + sources."@prisma/engines-3.1.0-24.c22652b7e418506fab23052d569b85d3aec4883f" 107779 108273 ]; 107780 108274 buildInputs = globalBuildInputs; 107781 108275 meta = { ··· 108092 108586 purescript-language-server = nodeEnv.buildNodePackage { 108093 108587 name = "purescript-language-server"; 108094 108588 packageName = "purescript-language-server"; 108095 - version = "0.15.5"; 108589 + version = "0.15.7"; 108096 108590 src = fetchurl { 108097 - url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.15.5.tgz"; 108098 - sha512 = "Km6LOus92Rab315/OhnILwslCseXbl8s53m0T8te0SYeYgNfUnxVh4/m/r217PAApicemaT3ZMdnXrtAZJ5U6Q=="; 108591 + url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.15.7.tgz"; 108592 + sha512 = "bl62M0n/fAq/ZWvyZD2Wpxlg5A9I0zyCnAvqdRsS052gbGlbyRmzJJz2kT2NexfZvubZT5EYTsENKI/zewUvuw=="; 108099 108593 }; 108100 108594 dependencies = [ 108595 + sources."ajv-6.12.6" 108596 + sources."ansi-escapes-3.2.0" 108597 + sources."ansi-regex-4.1.0" 108598 + sources."ansi-styles-3.2.1" 108599 + sources."aproba-1.2.0" 108600 + sources."arch-2.2.0" 108601 + sources."asn1-0.2.4" 108602 + sources."assert-plus-1.0.0" 108603 + sources."asynckit-0.4.0" 108604 + sources."aws-sign2-0.7.0" 108605 + sources."aws4-1.11.0" 108606 + sources."balanced-match-1.0.2" 108607 + sources."bcrypt-pbkdf-1.0.2" 108608 + sources."bluebird-3.7.2" 108609 + sources."brace-expansion-1.1.11" 108610 + sources."buffer-from-1.1.2" 108611 + sources."byline-5.0.0" 108612 + sources."cacache-11.3.3" 108613 + sources."caseless-0.12.0" 108614 + sources."chalk-2.4.2" 108615 + sources."chownr-1.1.4" 108616 + sources."cli-cursor-2.1.0" 108617 + sources."color-convert-1.9.3" 108618 + sources."color-name-1.1.3" 108619 + sources."combined-stream-1.0.8" 108620 + sources."concat-map-0.0.1" 108621 + sources."concat-stream-1.6.2" 108622 + sources."copy-concurrently-1.0.5" 108623 + sources."core-util-is-1.0.3" 108624 + sources."cross-spawn-7.0.3" 108625 + sources."cyclist-1.0.1" 108626 + sources."dashdash-1.14.1" 108627 + sources."delayed-stream-1.0.0" 108628 + sources."duplexify-3.7.1" 108629 + sources."ecc-jsbn-0.1.2" 108630 + sources."emoji-regex-7.0.3" 108631 + sources."end-of-stream-1.4.4" 108632 + sources."env-paths-2.2.1" 108633 + sources."escape-string-regexp-1.0.5" 108634 + sources."execa-2.1.0" 108635 + sources."extend-3.0.2" 108636 + sources."extsprintf-1.3.0" 108637 + sources."fast-deep-equal-3.1.3" 108638 + sources."fast-json-stable-stringify-2.1.0" 108639 + sources."figgy-pudding-3.5.2" 108640 + sources."filesize-4.2.1" 108641 + sources."flush-write-stream-1.1.1" 108642 + sources."forever-agent-0.6.1" 108643 + sources."form-data-2.3.3" 108644 + sources."from2-2.3.0" 108645 + sources."fs-minipass-1.2.7" 108646 + sources."fs-write-stream-atomic-1.0.10" 108647 + sources."fs.realpath-1.0.0" 108648 + sources."get-stream-5.2.0" 108649 + sources."getpass-0.1.7" 108650 + sources."glob-7.1.7" 108651 + sources."graceful-fs-4.2.8" 108652 + sources."har-schema-2.0.0" 108653 + sources."har-validator-5.1.5" 108654 + sources."has-flag-3.0.0" 108655 + sources."http-signature-1.2.0" 108656 + sources."iferr-0.1.5" 108657 + sources."imurmurhash-0.1.4" 108658 + sources."inflight-1.0.6" 108659 + sources."inherits-2.0.4" 108660 + sources."is-fullwidth-code-point-2.0.0" 108661 + sources."is-plain-obj-2.1.0" 108662 + sources."is-stream-2.0.1" 108663 + sources."is-typedarray-1.0.0" 108664 + sources."isarray-1.0.0" 108101 108665 sources."isexe-2.0.0" 108666 + sources."isstream-0.1.2" 108667 + sources."jsbn-0.1.1" 108668 + sources."json-schema-0.2.3" 108669 + sources."json-schema-traverse-0.4.1" 108670 + sources."json-stringify-safe-5.0.1" 108671 + sources."jsprim-1.4.1" 108672 + sources."log-symbols-3.0.0" 108673 + sources."log-update-3.4.0" 108674 + sources."lru-cache-5.1.1" 108675 + sources."merge-stream-2.0.0" 108676 + sources."mime-db-1.49.0" 108677 + sources."mime-types-2.1.32" 108678 + sources."mimic-fn-2.1.0" 108679 + sources."minimatch-3.0.4" 108680 + sources."minimist-1.2.5" 108681 + sources."minipass-2.9.0" 108682 + sources."minizlib-1.3.3" 108683 + sources."mississippi-3.0.0" 108684 + sources."mkdirp-0.5.5" 108685 + sources."move-concurrently-1.0.1" 108686 + sources."ms-2.1.3" 108687 + sources."npm-run-path-3.1.0" 108688 + sources."oauth-sign-0.9.0" 108689 + sources."once-1.4.0" 108690 + sources."onetime-5.1.2" 108691 + sources."p-finally-2.0.1" 108692 + sources."parallel-transform-1.2.0" 108693 + sources."path-is-absolute-1.0.1" 108694 + sources."path-key-3.1.1" 108695 + sources."performance-now-2.1.0" 108696 + sources."process-nextick-args-2.0.1" 108697 + sources."promise-inflight-1.0.1" 108698 + sources."psl-1.8.0" 108699 + sources."pump-3.0.0" 108700 + (sources."pumpify-1.5.1" // { 108701 + dependencies = [ 108702 + sources."pump-2.0.1" 108703 + ]; 108704 + }) 108705 + sources."punycode-2.1.1" 108706 + sources."purescript-0.14.4" 108707 + (sources."purescript-installer-0.2.5" // { 108708 + dependencies = [ 108709 + sources."which-1.3.1" 108710 + ]; 108711 + }) 108712 + sources."qs-6.5.2" 108713 + sources."readable-stream-2.3.7" 108714 + sources."request-2.88.2" 108715 + (sources."restore-cursor-2.0.0" // { 108716 + dependencies = [ 108717 + sources."mimic-fn-1.2.0" 108718 + sources."onetime-2.0.1" 108719 + ]; 108720 + }) 108721 + sources."rimraf-2.7.1" 108722 + sources."run-queue-1.0.3" 108723 + sources."safe-buffer-5.1.2" 108724 + sources."safer-buffer-2.1.2" 108725 + sources."shebang-command-2.0.0" 108726 + sources."shebang-regex-3.0.0" 108102 108727 sources."shell-quote-1.7.2" 108728 + sources."signal-exit-3.0.4" 108729 + sources."spago-0.20.3" 108730 + sources."sshpk-1.16.1" 108731 + sources."ssri-6.0.2" 108732 + sources."stream-each-1.2.3" 108733 + sources."stream-shift-1.0.1" 108734 + sources."string-width-3.1.0" 108735 + sources."string_decoder-1.1.1" 108736 + sources."strip-ansi-5.2.0" 108737 + sources."strip-final-newline-2.0.0" 108738 + sources."supports-color-5.5.0" 108739 + (sources."tar-4.4.19" // { 108740 + dependencies = [ 108741 + sources."safe-buffer-5.2.1" 108742 + ]; 108743 + }) 108744 + sources."through2-2.0.5" 108745 + sources."tough-cookie-2.5.0" 108746 + sources."tunnel-agent-0.6.0" 108747 + sources."tweetnacl-0.14.5" 108748 + sources."typedarray-0.0.6" 108749 + sources."unique-filename-1.1.1" 108750 + sources."unique-slug-2.0.2" 108751 + sources."uri-js-4.4.1" 108752 + sources."util-deprecate-1.0.2" 108103 108753 sources."uuid-3.4.0" 108104 - sources."vscode-jsonrpc-6.0.0" 108754 + (sources."verror-1.10.0" // { 108755 + dependencies = [ 108756 + sources."core-util-is-1.0.2" 108757 + ]; 108758 + }) 108759 + sources."vscode-jsonrpc-5.0.1" 108105 108760 sources."vscode-languageserver-6.1.1" 108106 - sources."vscode-languageserver-protocol-3.16.0" 108761 + (sources."vscode-languageserver-protocol-3.16.0" // { 108762 + dependencies = [ 108763 + sources."vscode-jsonrpc-6.0.0" 108764 + ]; 108765 + }) 108107 108766 sources."vscode-languageserver-textdocument-1.0.1" 108108 108767 sources."vscode-languageserver-types-3.16.0" 108109 108768 sources."vscode-uri-2.1.2" 108110 108769 sources."which-2.0.2" 108770 + sources."wrap-ansi-5.1.0" 108771 + sources."wrappy-1.0.2" 108772 + sources."xtend-4.0.2" 108773 + sources."y18n-4.0.3" 108774 + sources."yallist-3.1.1" 108775 + sources."zen-observable-0.8.15" 108111 108776 ]; 108112 108777 buildInputs = globalBuildInputs; 108113 108778 meta = { ··· 108166 108831 dependencies = [ 108167 108832 sources."@sindresorhus/is-0.14.0" 108168 108833 sources."@szmarczak/http-timer-1.1.2" 108169 - sources."@ungap/promise-all-settled-1.1.2" 108170 108834 sources."agent-base-6.0.2" 108171 - sources."ansi-colors-4.1.1" 108172 - sources."ansi-regex-3.0.0" 108173 - sources."ansi-styles-4.3.0" 108174 - sources."anymatch-3.1.2" 108175 108835 sources."appdata-path-1.0.0" 108176 - sources."argparse-2.0.1" 108177 108836 sources."at-least-node-1.0.0" 108178 108837 sources."axios-0.21.4" 108179 - sources."balanced-match-1.0.2" 108180 - sources."binary-extensions-2.2.0" 108181 108838 sources."blueimp-md5-2.18.0" 108182 - sources."brace-expansion-1.1.11" 108183 - sources."braces-3.0.2" 108184 - sources."browser-stdout-1.3.1" 108185 108839 (sources."cacheable-request-6.1.0" // { 108186 108840 dependencies = [ 108187 108841 sources."get-stream-5.2.0" ··· 108189 108843 ]; 108190 108844 }) 108191 108845 sources."call-bind-1.0.2" 108192 - sources."camelcase-6.2.0" 108193 - (sources."chalk-4.1.2" // { 108194 - dependencies = [ 108195 - sources."supports-color-7.2.0" 108196 - ]; 108197 - }) 108198 - sources."chokidar-3.5.1" 108199 - (sources."cliui-7.0.4" // { 108200 - dependencies = [ 108201 - sources."ansi-regex-5.0.0" 108202 - sources."is-fullwidth-code-point-3.0.0" 108203 - sources."string-width-4.2.2" 108204 - sources."strip-ansi-6.0.0" 108205 - ]; 108206 - }) 108207 108846 sources."clone-response-1.0.2" 108208 - sources."color-convert-2.0.1" 108209 - sources."color-name-1.1.4" 108210 108847 sources."colors-1.4.0" 108211 108848 sources."commander-5.1.0" 108212 108849 sources."compare-versions-3.6.0" 108213 - sources."concat-map-0.0.1" 108214 108850 sources."debug-4.3.2" 108215 - sources."decamelize-4.0.0" 108216 108851 sources."decompress-response-3.3.0" 108217 108852 sources."deep-extend-0.6.0" 108218 108853 sources."defer-to-connect-1.1.3" 108219 - sources."diff-5.0.0" 108220 108854 sources."duplexer3-0.1.4" 108221 - sources."emoji-regex-8.0.0" 108222 108855 sources."end-of-stream-1.4.4" 108223 - sources."escalade-3.1.1" 108224 - sources."escape-string-regexp-4.0.0" 108225 - sources."fill-range-7.0.1" 108226 - sources."find-up-5.0.0" 108227 - sources."flat-5.0.2" 108228 - sources."follow-redirects-1.14.3" 108856 + sources."follow-redirects-1.14.4" 108229 108857 sources."fs-extra-9.1.0" 108230 - sources."fs.realpath-1.0.0" 108231 - sources."fsevents-2.3.2" 108232 108858 sources."function-bind-1.1.1" 108233 - sources."get-caller-file-2.0.5" 108234 108859 sources."get-intrinsic-1.1.1" 108235 108860 sources."get-stream-4.1.0" 108236 - sources."glob-7.1.6" 108237 - sources."glob-parent-5.1.2" 108238 108861 sources."got-9.6.0" 108239 108862 sources."graceful-fs-4.2.8" 108240 - sources."growl-1.10.5" 108241 108863 sources."has-1.0.3" 108242 - sources."has-flag-4.0.0" 108243 108864 sources."has-symbols-1.0.2" 108244 - sources."he-1.2.0" 108245 108865 sources."http-cache-semantics-4.1.0" 108246 108866 sources."https-proxy-agent-5.0.0" 108247 - sources."inflight-1.0.6" 108248 - sources."inherits-2.0.4" 108249 108867 sources."ini-1.3.8" 108250 108868 sources."ip-1.1.5" 108251 - sources."is-binary-path-2.1.0" 108252 108869 sources."is-docker-2.2.1" 108253 - sources."is-extglob-2.1.1" 108254 - sources."is-fullwidth-code-point-2.0.0" 108255 - sources."is-glob-4.0.1" 108256 - sources."is-number-7.0.0" 108257 - sources."is-plain-obj-2.1.0" 108258 108870 sources."is-wsl-2.2.0" 108259 - sources."isexe-2.0.0" 108260 - sources."js-base64-3.7.0" 108261 - sources."js-yaml-4.0.0" 108871 + sources."js-base64-3.7.1" 108262 108872 sources."json-buffer-3.0.0" 108263 108873 sources."jsonfile-6.1.0" 108264 108874 sources."keyv-3.1.0" 108265 108875 sources."kleur-3.0.3" 108266 108876 sources."latest-version-5.1.0" 108267 - sources."locate-path-6.0.0" 108268 108877 sources."lodash.flatmap-4.5.0" 108269 - sources."log-symbols-4.0.0" 108270 108878 sources."lowercase-keys-1.0.1" 108271 108879 sources."mimic-response-1.0.1" 108272 - sources."minimatch-3.0.4" 108273 108880 sources."minimist-1.2.5" 108274 - (sources."mocha-8.4.0" // { 108275 - dependencies = [ 108276 - (sources."debug-4.3.1" // { 108277 - dependencies = [ 108278 - sources."ms-2.1.2" 108279 - ]; 108280 - }) 108281 - sources."ms-2.1.3" 108282 - ]; 108283 - }) 108284 108881 sources."moment-2.29.1" 108285 108882 sources."ms-2.1.2" 108286 - sources."nanoid-3.1.20" 108287 - sources."normalize-path-3.0.0" 108288 108883 sources."normalize-url-4.5.1" 108289 108884 sources."object-inspect-1.11.0" 108290 108885 sources."once-1.4.0" 108291 108886 sources."open-7.4.2" 108292 108887 sources."p-cancelable-1.1.0" 108293 - sources."p-limit-3.1.0" 108294 - sources."p-locate-5.0.0" 108295 108888 sources."package-json-6.5.0" 108296 - sources."path-exists-4.0.0" 108297 - sources."path-is-absolute-1.0.1" 108298 - sources."picomatch-2.3.0" 108299 108889 sources."pixiv-api-client-0.25.0" 108300 108890 sources."prepend-http-2.0.0" 108301 108891 sources."prompts-2.4.1" 108302 108892 sources."pump-3.0.0" 108303 108893 sources."qs-6.10.1" 108304 - sources."randombytes-2.1.0" 108305 - (sources."rc-1.2.8" // { 108306 - dependencies = [ 108307 - sources."strip-json-comments-2.0.1" 108308 - ]; 108309 - }) 108310 - sources."readdirp-3.5.0" 108894 + sources."rc-1.2.8" 108311 108895 sources."readline-sync-1.4.10" 108312 108896 sources."register-protocol-win32-1.1.0" 108313 108897 sources."registry-auth-token-4.2.1" 108314 108898 sources."registry-url-5.1.0" 108315 - sources."require-directory-2.1.1" 108316 108899 sources."responselike-1.0.2" 108317 - sources."safe-buffer-5.2.1" 108318 108900 sources."semver-6.3.0" 108319 - sources."serialize-javascript-5.0.1" 108320 108901 sources."side-channel-1.0.4" 108321 108902 sources."sisteransi-1.0.5" 108322 108903 sources."smart-buffer-4.2.0" 108323 108904 sources."socks-2.6.1" 108324 108905 sources."socks-proxy-agent-5.0.1" 108325 - sources."string-width-2.1.1" 108326 - sources."strip-ansi-4.0.0" 108327 - sources."strip-json-comments-3.1.1" 108328 - sources."supports-color-8.1.1" 108906 + sources."strip-json-comments-2.0.1" 108329 108907 sources."to-readable-stream-1.0.0" 108330 - sources."to-regex-range-5.0.1" 108331 108908 sources."universalify-2.0.0" 108332 108909 sources."url-parse-lax-3.0.0" 108333 - sources."which-2.0.2" 108334 - sources."wide-align-1.1.3" 108335 108910 sources."winreg-1.2.4" 108336 - sources."workerpool-6.1.0" 108337 - (sources."wrap-ansi-7.0.0" // { 108338 - dependencies = [ 108339 - sources."ansi-regex-5.0.0" 108340 - sources."is-fullwidth-code-point-3.0.0" 108341 - sources."string-width-4.2.2" 108342 - sources."strip-ansi-6.0.0" 108343 - ]; 108344 - }) 108345 108911 sources."wrappy-1.0.2" 108346 - sources."y18n-5.0.8" 108347 - (sources."yargs-16.2.0" // { 108348 - dependencies = [ 108349 - sources."ansi-regex-5.0.0" 108350 - sources."is-fullwidth-code-point-3.0.0" 108351 - sources."string-width-4.2.2" 108352 - sources."strip-ansi-6.0.0" 108353 - ]; 108354 - }) 108355 - sources."yargs-parser-20.2.4" 108356 - sources."yargs-unparser-2.0.0" 108357 - sources."yocto-queue-0.1.0" 108358 108912 ]; 108359 108913 buildInputs = globalBuildInputs; 108360 108914 meta = { ··· 108369 108923 pyright = nodeEnv.buildNodePackage { 108370 108924 name = "pyright"; 108371 108925 packageName = "pyright"; 108372 - version = "1.1.166"; 108926 + version = "1.1.170"; 108373 108927 src = fetchurl { 108374 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.166.tgz"; 108375 - sha512 = "mO+iPT2dhHzlplAV3iKE6u4gUstGZxxLyMSRd1PKZqWhwhTCCGjn3/7VqbAwUt4fuhY8g0V+SAsu+MPT4H3FvQ=="; 108928 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.170.tgz"; 108929 + sha512 = "eoLp3FXvB+qGw6DMaC9xCNkIZMzdPMl5yERUXv1U/RF8AIuOcfjmG1171UL/TpXvoCLWGVArkWJcq8l5uBB35Q=="; 108376 108930 }; 108377 108931 buildInputs = globalBuildInputs; 108378 108932 meta = { ··· 108485 109039 sources."minimist-1.2.5" 108486 109040 sources."moment-2.29.1" 108487 109041 sources."nice-try-1.0.5" 108488 - sources."node-fetch-2.6.2" 109042 + sources."node-fetch-2.6.4" 108489 109043 sources."npm-run-path-2.0.2" 108490 109044 sources."number-is-nan-1.0.1" 108491 109045 sources."object-inspect-1.4.1" ··· 108527 109081 sources."shallow-copy-0.0.1" 108528 109082 sources."shebang-command-1.2.0" 108529 109083 sources."shebang-regex-1.0.0" 108530 - sources."signal-exit-3.0.3" 109084 + sources."signal-exit-3.0.4" 108531 109085 sources."source-map-0.6.1" 108532 109086 (sources."static-eval-2.1.0" // { 108533 109087 dependencies = [ ··· 108566 109120 ]; 108567 109121 }) 108568 109122 sources."tiny-inflate-1.0.3" 109123 + sources."tr46-0.0.3" 108569 109124 sources."type-check-0.3.2" 108570 109125 sources."typedarray-0.0.6" 108571 109126 sources."typescript-3.2.4" ··· 108579 109134 sources."util-deprecate-1.0.2" 108580 109135 sources."uuid-3.4.0" 108581 109136 sources."vlq-0.2.3" 109137 + sources."webidl-conversions-3.0.1" 108582 109138 sources."whatwg-fetch-3.6.2" 109139 + sources."whatwg-url-5.0.0" 108583 109140 sources."which-1.3.1" 108584 109141 sources."which-module-2.0.0" 108585 109142 sources."word-wrap-1.2.3" ··· 108647 109204 sources."has-bigints-1.0.1" 108648 109205 sources."has-symbols-1.0.2" 108649 109206 sources."has-tostringtag-1.0.0" 108650 - sources."i-0.3.6" 109207 + sources."i-0.3.7" 108651 109208 sources."inflight-1.0.6" 108652 109209 sources."inherits-2.0.4" 108653 109210 sources."internal-slot-1.0.3" ··· 108723 109280 sha512 = "coA9MuNPfN+8TyFj7aOycw2e5W9t+sSgFOUyK30oDrh2MWWWHLjY0I4V1puyCconC2arggfDE2GYXvqOTCGv9Q=="; 108724 109281 }; 108725 109282 dependencies = [ 108726 - sources."@babel/cli-7.15.4" 109283 + sources."@babel/cli-7.15.7" 108727 109284 sources."@babel/code-frame-7.14.5" 108728 109285 sources."@babel/compat-data-7.15.0" 108729 109286 (sources."@babel/core-7.15.5" // { ··· 108752 109309 sources."@babel/helper-hoist-variables-7.15.4" 108753 109310 sources."@babel/helper-member-expression-to-functions-7.15.4" 108754 109311 sources."@babel/helper-module-imports-7.15.4" 108755 - sources."@babel/helper-module-transforms-7.15.4" 109312 + sources."@babel/helper-module-transforms-7.15.7" 108756 109313 sources."@babel/helper-optimise-call-expression-7.15.4" 108757 109314 sources."@babel/helper-plugin-utils-7.14.5" 108758 109315 sources."@babel/helper-remap-async-to-generator-7.15.4" ··· 108760 109317 sources."@babel/helper-simple-access-7.15.4" 108761 109318 sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 108762 109319 sources."@babel/helper-split-export-declaration-7.15.4" 108763 - sources."@babel/helper-validator-identifier-7.14.9" 109320 + sources."@babel/helper-validator-identifier-7.15.7" 108764 109321 sources."@babel/helper-validator-option-7.14.5" 108765 109322 sources."@babel/helper-wrap-function-7.15.4" 108766 109323 sources."@babel/helpers-7.15.4" 108767 109324 sources."@babel/highlight-7.14.5" 108768 - sources."@babel/parser-7.15.5" 109325 + sources."@babel/parser-7.15.7" 108769 109326 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" 108770 109327 sources."@babel/plugin-proposal-async-generator-functions-7.15.4" 108771 109328 sources."@babel/plugin-proposal-class-properties-7.14.5" ··· 108777 109334 sources."@babel/plugin-proposal-logical-assignment-operators-7.14.5" 108778 109335 sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 108779 109336 sources."@babel/plugin-proposal-numeric-separator-7.14.5" 108780 - sources."@babel/plugin-proposal-object-rest-spread-7.14.7" 109337 + sources."@babel/plugin-proposal-object-rest-spread-7.15.6" 108781 109338 sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 108782 109339 sources."@babel/plugin-proposal-optional-chaining-7.14.5" 108783 109340 sources."@babel/plugin-proposal-private-methods-7.14.5" ··· 108840 109397 sources."@babel/plugin-transform-typeof-symbol-7.14.5" 108841 109398 sources."@babel/plugin-transform-unicode-escapes-7.14.5" 108842 109399 sources."@babel/plugin-transform-unicode-regex-7.14.5" 108843 - (sources."@babel/preset-env-7.15.4" // { 109400 + (sources."@babel/preset-env-7.15.6" // { 108844 109401 dependencies = [ 108845 109402 sources."semver-6.3.0" 108846 109403 ]; ··· 108852 109409 sources."@babel/runtime-7.15.4" 108853 109410 sources."@babel/template-7.15.4" 108854 109411 sources."@babel/traverse-7.15.4" 108855 - sources."@babel/types-7.15.4" 109412 + sources."@babel/types-7.15.6" 108856 109413 sources."@reach/router-1.3.4" 108857 109414 sources."@sindresorhus/is-0.7.0" 108858 109415 sources."@types/glob-7.1.4" 108859 109416 sources."@types/json-schema-7.0.9" 108860 109417 sources."@types/minimatch-3.0.5" 108861 - sources."@types/node-16.9.0" 109418 + sources."@types/node-16.9.4" 108862 109419 sources."@types/parse-json-4.0.0" 108863 109420 sources."@types/q-1.5.5" 108864 109421 sources."@webassemblyjs/ast-1.9.0" ··· 109046 109603 sources."camel-case-3.0.0" 109047 109604 sources."camelcase-5.3.1" 109048 109605 sources."caniuse-api-3.0.0" 109049 - sources."caniuse-lite-1.0.30001255" 109606 + sources."caniuse-lite-1.0.30001259" 109050 109607 sources."case-sensitive-paths-webpack-plugin-2.4.0" 109051 109608 sources."caw-2.0.1" 109052 109609 (sources."chalk-2.4.2" // { ··· 109131 109688 sources."copy-concurrently-1.0.5" 109132 109689 sources."copy-descriptor-0.1.1" 109133 109690 sources."core-js-2.6.12" 109134 - (sources."core-js-compat-3.17.3" // { 109691 + (sources."core-js-compat-3.18.0" // { 109135 109692 dependencies = [ 109136 109693 sources."semver-7.0.0" 109137 109694 ]; ··· 109275 109832 sources."duplexify-3.7.1" 109276 109833 sources."ee-first-1.1.1" 109277 109834 sources."ejs-2.7.4" 109278 - sources."electron-to-chromium-1.3.833" 109835 + sources."electron-to-chromium-1.3.845" 109279 109836 (sources."elliptic-6.5.4" // { 109280 109837 dependencies = [ 109281 109838 sources."bn.js-4.12.0" ··· 109409 109966 sources."find-cache-dir-2.1.0" 109410 109967 sources."find-up-3.0.0" 109411 109968 sources."flush-write-stream-1.1.1" 109412 - sources."follow-redirects-1.14.3" 109969 + sources."follow-redirects-1.14.4" 109413 109970 sources."for-in-1.0.2" 109414 109971 sources."forwarded-0.2.0" 109415 109972 sources."fragment-cache-0.2.1" ··· 109676 110233 ]; 109677 110234 }) 109678 110235 sources."mime-2.5.2" 109679 - sources."mime-db-1.49.0" 109680 - sources."mime-types-2.1.32" 110236 + sources."mime-db-1.50.0" 110237 + (sources."mime-types-2.1.32" // { 110238 + dependencies = [ 110239 + sources."mime-db-1.49.0" 110240 + ]; 110241 + }) 109681 110242 sources."mimic-fn-1.2.0" 109682 110243 sources."mimic-response-1.0.1" 109683 110244 sources."minimalistic-assert-1.0.1" ··· 109718 110279 ]; 109719 110280 }) 109720 110281 sources."node-modules-regexp-1.0.0" 109721 - sources."node-releases-1.1.75" 110282 + sources."node-releases-1.1.76" 109722 110283 sources."normalize-path-3.0.0" 109723 110284 sources."normalize-range-0.1.2" 109724 110285 (sources."normalize-url-2.0.1" // { ··· 109990 110551 sources."readable-stream-2.3.7" 109991 110552 sources."readdirp-3.6.0" 109992 110553 sources."regenerate-1.4.2" 109993 - sources."regenerate-unicode-properties-8.2.0" 110554 + sources."regenerate-unicode-properties-9.0.0" 109994 110555 sources."regenerator-runtime-0.13.9" 109995 110556 sources."regenerator-transform-0.14.5" 109996 110557 sources."regex-not-1.0.2" 109997 110558 sources."regexp.prototype.flags-1.3.1" 109998 - sources."regexpu-core-4.7.1" 110559 + sources."regexpu-core-4.8.0" 109999 110560 sources."registry-auth-token-3.3.2" 110000 110561 sources."registry-url-3.1.0" 110001 110562 sources."regjsgen-0.5.2" 110002 - (sources."regjsparser-0.6.9" // { 110563 + (sources."regjsparser-0.7.0" // { 110003 110564 dependencies = [ 110004 110565 sources."jsesc-0.5.0" 110005 110566 ]; ··· 110014 110575 sources."dom-serializer-1.3.2" 110015 110576 sources."domelementtype-2.2.0" 110016 110577 sources."domutils-2.8.0" 110017 - sources."nth-check-2.0.0" 110578 + sources."nth-check-2.0.1" 110018 110579 sources."strip-ansi-3.0.1" 110019 110580 ]; 110020 110581 }) ··· 110107 110668 sources."shebang-regex-1.0.0" 110108 110669 sources."shorthash-0.0.2" 110109 110670 sources."side-channel-1.0.4" 110110 - sources."signal-exit-3.0.3" 110671 + sources."signal-exit-3.0.4" 110111 110672 (sources."simple-swizzle-0.2.2" // { 110112 110673 dependencies = [ 110113 110674 sources."is-arrayish-0.3.2" ··· 110304 110865 }) 110305 110866 sources."unbox-primitive-1.0.1" 110306 110867 sources."unbzip2-stream-1.4.3" 110307 - sources."unicode-canonical-property-names-ecmascript-1.0.4" 110308 - sources."unicode-match-property-ecmascript-1.0.4" 110309 - sources."unicode-match-property-value-ecmascript-1.2.0" 110310 - sources."unicode-property-aliases-ecmascript-1.1.0" 110868 + sources."unicode-canonical-property-names-ecmascript-2.0.0" 110869 + sources."unicode-match-property-ecmascript-2.0.0" 110870 + sources."unicode-match-property-value-ecmascript-2.0.0" 110871 + sources."unicode-property-aliases-ecmascript-2.0.0" 110311 110872 sources."union-value-1.0.1" 110312 110873 sources."uniq-1.0.1" 110313 110874 sources."uniqs-2.0.0" ··· 110544 111105 }) 110545 111106 sources."acorn-walk-7.2.0" 110546 111107 sources."agent-base-6.0.2" 110547 - sources."ansi-regex-5.0.0" 111108 + sources."ansi-regex-5.0.1" 110548 111109 sources."ansi-styles-4.3.0" 110549 111110 sources."asynckit-0.4.0" 110550 111111 sources."browser-process-hrtime-1.0.0" ··· 110568 111129 sources."webidl-conversions-5.0.0" 110569 111130 ]; 110570 111131 }) 110571 - sources."dompurify-2.3.1" 111132 + sources."dompurify-2.3.3" 110572 111133 sources."emoji-regex-8.0.0" 110573 111134 sources."escalade-3.1.1" 110574 111135 sources."escodegen-2.0.0" ··· 110653 111214 sources."@babel/helper-hoist-variables-7.15.4" 110654 111215 sources."@babel/helper-module-imports-7.15.4" 110655 111216 sources."@babel/helper-split-export-declaration-7.15.4" 110656 - sources."@babel/helper-validator-identifier-7.14.9" 111217 + sources."@babel/helper-validator-identifier-7.15.7" 110657 111218 sources."@babel/highlight-7.14.5" 110658 - sources."@babel/parser-7.15.5" 111219 + sources."@babel/parser-7.15.7" 110659 111220 sources."@babel/runtime-7.15.4" 110660 111221 sources."@babel/template-7.15.4" 110661 111222 sources."@babel/traverse-7.15.4" 110662 - sources."@babel/types-7.15.4" 111223 + sources."@babel/types-7.15.6" 110663 111224 sources."@emotion/is-prop-valid-0.8.8" 110664 111225 sources."@emotion/memoize-0.7.4" 110665 111226 sources."@emotion/stylis-0.8.5" 110666 111227 sources."@emotion/unitless-0.7.5" 110667 - sources."@exodus/schemasafe-1.0.0-rc.4" 111228 + sources."@exodus/schemasafe-1.0.0-rc.6" 110668 111229 sources."@redocly/ajv-8.6.2" 110669 - (sources."@redocly/openapi-core-1.0.0-beta.58" // { 111230 + (sources."@redocly/openapi-core-1.0.0-beta.60" // { 110670 111231 dependencies = [ 110671 - sources."@types/node-14.17.15" 111232 + sources."@types/node-14.17.17" 110672 111233 ]; 110673 111234 }) 110674 111235 sources."@redocly/react-dropdown-aria-2.0.12" 110675 111236 sources."@types/json-schema-7.0.9" 110676 111237 sources."@types/node-15.14.9" 110677 - sources."ansi-regex-5.0.0" 111238 + sources."ansi-regex-5.0.1" 110678 111239 sources."ansi-styles-3.2.1" 110679 111240 sources."anymatch-3.1.2" 110680 111241 sources."argparse-1.0.10" ··· 110749 111310 ]; 110750 111311 }) 110751 111312 sources."domain-browser-1.2.0" 110752 - sources."dompurify-2.3.1" 111313 + sources."dompurify-2.3.3" 110753 111314 (sources."elliptic-6.5.4" // { 110754 111315 dependencies = [ 110755 111316 sources."bn.js-4.12.0" ··· 110826 111387 sources."mobx-react-lite-3.2.1" 110827 111388 sources."ms-2.1.2" 110828 111389 sources."neo-async-2.6.2" 110829 - sources."node-fetch-2.6.2" 111390 + sources."node-fetch-2.6.4" 110830 111391 sources."node-fetch-h2-2.3.0" 110831 111392 sources."node-libs-browser-2.2.1" 110832 111393 sources."node-readfiles-0.2.0" ··· 110847 111408 sources."picomatch-2.3.0" 110848 111409 sources."polished-4.1.3" 110849 111410 sources."postcss-value-parser-4.1.0" 110850 - sources."prismjs-1.24.1" 111411 + sources."prismjs-1.25.0" 110851 111412 sources."process-0.11.10" 110852 111413 sources."process-nextick-args-2.0.1" 110853 111414 sources."prop-types-15.7.2" ··· 110912 111473 sources."to-arraybuffer-1.0.1" 110913 111474 sources."to-fast-properties-2.0.0" 110914 111475 sources."to-regex-range-5.0.1" 111476 + sources."tr46-0.0.3" 110915 111477 sources."tty-browserify-0.0.0" 110916 111478 sources."uglify-js-3.14.2" 110917 111479 (sources."uri-js-4.4.1" // { ··· 110932 111494 }) 110933 111495 sources."util-deprecate-1.0.2" 110934 111496 sources."vm-browserify-1.1.2" 111497 + sources."webidl-conversions-3.0.1" 111498 + sources."whatwg-url-5.0.0" 110935 111499 sources."wordwrap-1.0.0" 110936 111500 (sources."wrap-ansi-7.0.0" // { 110937 111501 dependencies = [ ··· 110968 111532 dependencies = [ 110969 111533 sources."@types/yoga-layout-1.9.2" 110970 111534 sources."ansi-escapes-4.3.2" 110971 - sources."ansi-regex-5.0.0" 111535 + sources."ansi-regex-5.0.1" 110972 111536 sources."ansi-styles-4.3.0" 110973 111537 sources."array-find-index-1.0.2" 110974 111538 sources."arrify-2.0.1" ··· 111062 111626 sources."restore-cursor-3.1.0" 111063 111627 sources."scheduler-0.18.0" 111064 111628 sources."semver-5.7.1" 111065 - sources."signal-exit-3.0.3" 111629 + sources."signal-exit-3.0.4" 111066 111630 sources."slice-ansi-3.0.0" 111067 111631 sources."spdx-correct-3.1.1" 111068 111632 sources."spdx-exceptions-2.3.0" ··· 111170 111734 "rust-analyzer-build-deps-../../misc/vscode-extensions/rust-analyzer/build-deps" = nodeEnv.buildNodePackage { 111171 111735 name = "rust-analyzer"; 111172 111736 packageName = "rust-analyzer"; 111173 - version = "0.2.735"; 111737 + version = "0.2.751"; 111174 111738 src = ../../misc/vscode-extensions/rust-analyzer/build-deps; 111175 111739 dependencies = [ 111176 111740 sources."@babel/code-frame-7.12.11" 111177 - sources."@babel/helper-validator-identifier-7.14.9" 111741 + sources."@babel/helper-validator-identifier-7.15.7" 111178 111742 (sources."@babel/highlight-7.14.5" // { 111179 111743 dependencies = [ 111180 111744 sources."chalk-2.4.2" ··· 111197 111761 sources."@types/json-schema-7.0.9" 111198 111762 sources."@types/minimatch-3.0.5" 111199 111763 sources."@types/mocha-8.2.3" 111200 - sources."@types/node-14.17.15" 111764 + sources."@types/node-14.17.17" 111201 111765 sources."@types/node-fetch-2.5.12" 111202 111766 sources."@types/vscode-1.60.0" 111203 - sources."@typescript-eslint/eslint-plugin-4.31.0" 111204 - sources."@typescript-eslint/experimental-utils-4.31.0" 111205 - sources."@typescript-eslint/parser-4.31.0" 111206 - sources."@typescript-eslint/scope-manager-4.31.0" 111207 - sources."@typescript-eslint/types-4.31.0" 111208 - sources."@typescript-eslint/typescript-estree-4.31.0" 111209 - sources."@typescript-eslint/visitor-keys-4.31.0" 111767 + sources."@typescript-eslint/eslint-plugin-4.31.2" 111768 + sources."@typescript-eslint/experimental-utils-4.31.2" 111769 + sources."@typescript-eslint/parser-4.31.2" 111770 + sources."@typescript-eslint/scope-manager-4.31.2" 111771 + sources."@typescript-eslint/types-4.31.2" 111772 + sources."@typescript-eslint/typescript-estree-4.31.2" 111773 + sources."@typescript-eslint/visitor-keys-4.31.2" 111210 111774 sources."@ungap/promise-all-settled-1.1.2" 111211 111775 sources."acorn-7.4.1" 111212 111776 sources."acorn-jsx-5.3.2" 111213 111777 sources."agent-base-6.0.2" 111214 111778 sources."ajv-6.12.6" 111215 111779 sources."ansi-colors-4.1.1" 111216 - sources."ansi-regex-5.0.0" 111780 + sources."ansi-regex-5.0.1" 111217 111781 sources."ansi-styles-3.2.1" 111218 111782 sources."anymatch-3.1.2" 111219 111783 sources."argparse-1.0.10" ··· 111222 111786 sources."asynckit-0.4.0" 111223 111787 sources."azure-devops-node-api-11.0.1" 111224 111788 sources."balanced-match-1.0.2" 111225 - sources."big-integer-1.6.48" 111789 + sources."big-integer-1.6.49" 111226 111790 sources."binary-0.3.0" 111227 111791 sources."binary-extensions-2.2.0" 111228 111792 sources."bluebird-3.4.7" ··· 111260 111824 sources."cross-spawn-7.0.3" 111261 111825 sources."css-select-4.1.3" 111262 111826 sources."css-what-5.0.1" 111263 - sources."d3-7.0.1" 111264 - sources."d3-array-3.0.2" 111827 + sources."d3-7.0.3" 111828 + sources."d3-array-3.0.4" 111265 111829 sources."d3-axis-3.0.0" 111266 111830 sources."d3-brush-3.0.0" 111267 111831 sources."d3-chord-3.0.1" ··· 111297 111861 sources."d3-polygon-3.0.1" 111298 111862 sources."d3-quadtree-3.0.1" 111299 111863 sources."d3-random-3.0.1" 111300 - sources."d3-scale-4.0.0" 111864 + sources."d3-scale-4.0.1" 111301 111865 sources."d3-scale-chromatic-3.0.0" 111302 111866 sources."d3-selection-3.0.0" 111303 111867 sources."d3-shape-3.0.1" ··· 111368 111932 sources."fast-glob-3.2.7" 111369 111933 sources."fast-json-stable-stringify-2.1.0" 111370 111934 sources."fast-levenshtein-2.0.6" 111371 - sources."fastq-1.12.0" 111935 + sources."fastq-1.13.0" 111372 111936 sources."fd-slicer-1.1.0" 111373 111937 sources."file-entry-cache-6.0.1" 111374 111938 sources."fill-range-7.0.1" ··· 111398 111962 sources."has-flag-3.0.0" 111399 111963 sources."has-symbols-1.0.2" 111400 111964 sources."he-1.2.0" 111965 + sources."hosted-git-info-4.0.2" 111401 111966 sources."htmlparser2-6.1.0" 111402 111967 sources."http-proxy-agent-4.0.1" 111403 111968 sources."https-proxy-agent-5.0.0" ··· 111407 111972 sources."imurmurhash-0.1.4" 111408 111973 sources."inflight-1.0.6" 111409 111974 sources."inherits-2.0.4" 111410 - sources."internmap-2.0.1" 111975 + sources."internmap-2.0.3" 111411 111976 sources."is-binary-path-2.1.0" 111412 111977 sources."is-extglob-2.1.1" 111413 111978 sources."is-fullwidth-code-point-3.0.0" ··· 111464 112029 sources."mute-stream-0.0.8" 111465 112030 sources."nanoid-3.1.23" 111466 112031 sources."natural-compare-1.4.0" 111467 - sources."node-fetch-2.6.2" 112032 + sources."node-fetch-2.6.4" 111468 112033 sources."normalize-path-3.0.0" 111469 - sources."nth-check-2.0.0" 112034 + sources."nth-check-2.0.1" 111470 112035 sources."object-inspect-1.11.0" 111471 112036 sources."once-1.4.0" 111472 112037 sources."optionator-0.9.1" ··· 111515 112080 sources."rw-1.3.3" 111516 112081 sources."safe-buffer-5.2.1" 111517 112082 sources."safer-buffer-2.1.2" 112083 + sources."sax-1.2.4" 111518 112084 sources."semver-7.3.5" 111519 112085 sources."serialize-javascript-6.0.0" 111520 112086 sources."setimmediate-1.0.5" ··· 111542 112108 sources."supports-color-5.5.0" 111543 112109 (sources."table-6.7.1" // { 111544 112110 dependencies = [ 111545 - sources."ajv-8.6.2" 112111 + sources."ajv-8.6.3" 111546 112112 sources."json-schema-traverse-1.0.0" 111547 112113 ]; 111548 112114 }) 111549 112115 sources."text-table-0.2.0" 111550 112116 sources."tmp-0.2.1" 111551 112117 sources."to-regex-range-5.0.1" 112118 + sources."tr46-0.0.3" 111552 112119 sources."traverse-0.3.9" 111553 112120 sources."tslib-2.3.1" 111554 112121 (sources."tsutils-3.21.0" // { ··· 111560 112127 sources."type-check-0.4.0" 111561 112128 sources."type-fest-0.20.2" 111562 112129 sources."typed-rest-client-1.8.6" 111563 - sources."typescript-4.4.2" 112130 + sources."typescript-4.4.3" 111564 112131 sources."typescript-formatter-7.2.2" 111565 112132 sources."uc.micro-1.0.6" 111566 112133 sources."underscore-1.13.1" ··· 111569 112136 sources."url-join-1.1.0" 111570 112137 sources."util-deprecate-1.0.2" 111571 112138 sources."v8-compile-cache-2.3.0" 111572 - (sources."vsce-1.97.0" // { 112139 + (sources."vsce-1.99.0" // { 111573 112140 dependencies = [ 111574 112141 sources."chalk-2.4.2" 111575 112142 sources."commander-6.2.1" ··· 111582 112149 sources."vscode-languageserver-protocol-3.17.0-next.6" 111583 112150 sources."vscode-languageserver-types-3.17.0-next.2" 111584 112151 sources."vscode-test-1.6.1" 112152 + sources."webidl-conversions-3.0.1" 112153 + sources."whatwg-url-5.0.0" 111585 112154 sources."which-2.0.2" 111586 112155 (sources."wide-align-1.1.3" // { 111587 112156 dependencies = [ ··· 111601 112170 ]; 111602 112171 }) 111603 112172 sources."wrappy-1.0.2" 112173 + sources."xml2js-0.4.23" 112174 + sources."xmlbuilder-11.0.1" 111604 112175 sources."y18n-5.0.8" 111605 112176 sources."yallist-4.0.0" 111606 112177 sources."yargs-16.2.0" ··· 111662 112233 sources."commander-1.3.2" 111663 112234 ]; 111664 112235 }) 111665 - sources."follow-redirects-1.14.3" 112236 + sources."follow-redirects-1.14.4" 111666 112237 sources."formidable-1.0.11" 111667 112238 sources."fresh-0.2.0" 111668 112239 sources."function-bind-1.1.1" ··· 111684 112255 sources."node-wsfederation-0.1.1" 111685 112256 sources."oauth-https://github.com/ciaranj/node-oauth/tarball/master" 111686 112257 sources."object-inspect-1.11.0" 111687 - (sources."openid-2.0.9" // { 112258 + (sources."openid-2.0.10" // { 111688 112259 dependencies = [ 111689 112260 sources."qs-6.10.1" 111690 112261 ]; ··· 111716 112287 sass = nodeEnv.buildNodePackage { 111717 112288 name = "sass"; 111718 112289 packageName = "sass"; 111719 - version = "1.39.0"; 112290 + version = "1.42.0"; 111720 112291 src = fetchurl { 111721 - url = "https://registry.npmjs.org/sass/-/sass-1.39.0.tgz"; 111722 - sha512 = "F4o+RhJkNOIG0b6QudYU8c78ZADKZjKDk5cyrf8XTKWfrgbtyVVXImFstJrc+1pkQDCggyidIOytq6gS4gCCZg=="; 112292 + url = "https://registry.npmjs.org/sass/-/sass-1.42.0.tgz"; 112293 + sha512 = "kcjxsemgaOnfl43oZgO/IePLvXQI0ZKzo0/xbCt6uyrg3FY/FF8hVK9YoO8GiZBcEG2Ebl79EKnUc+aiE4f2Vw=="; 111723 112294 }; 111724 112295 dependencies = [ 111725 112296 sources."anymatch-3.1.2" ··· 111773 112344 serve = nodeEnv.buildNodePackage { 111774 112345 name = "serve"; 111775 112346 packageName = "serve"; 111776 - version = "12.0.0"; 112347 + version = "12.0.1"; 111777 112348 src = fetchurl { 111778 - url = "https://registry.npmjs.org/serve/-/serve-12.0.0.tgz"; 111779 - sha512 = "BkTsETQYynAZ7rXX414kg4X6EvuZQS3UVs1NY0VQYdRHSTYWPYcH38nnDh48D0x6ONuislgjag8uKlU2gTBImA=="; 112349 + url = "https://registry.npmjs.org/serve/-/serve-12.0.1.tgz"; 112350 + sha512 = "CQ4ikLpxg/wmNM7yivulpS6fhjRiFG6OjmP8ty3/c1SBnSk23fpKmLAV4HboTA2KrZhkUPlDfjDhnRmAjQ5Phw=="; 111780 112351 }; 111781 112352 dependencies = [ 111782 112353 sources."@zeit/schemas-2.6.0" ··· 111861 112432 }) 111862 112433 sources."shebang-command-1.2.0" 111863 112434 sources."shebang-regex-1.0.0" 111864 - sources."signal-exit-3.0.3" 112435 + sources."signal-exit-3.0.4" 111865 112436 sources."string-width-2.1.1" 111866 112437 sources."strip-ansi-4.0.0" 111867 112438 sources."strip-eof-1.0.0" ··· 111889 112460 serverless = nodeEnv.buildNodePackage { 111890 112461 name = "serverless"; 111891 112462 packageName = "serverless"; 111892 - version = "2.57.0"; 112463 + version = "2.59.0"; 111893 112464 src = fetchurl { 111894 - url = "https://registry.npmjs.org/serverless/-/serverless-2.57.0.tgz"; 111895 - sha512 = "/gLzaqdisNlymMiQJMkFoACy7NXkOd7E67sbcOrENXuVb48QAS4PTT8VPkMNu6eQonlphGagbKhpqVmKzHJDmQ=="; 112465 + url = "https://registry.npmjs.org/serverless/-/serverless-2.59.0.tgz"; 112466 + sha512 = "HXUhoIOn0UyeJvtDcCDDvsmJqohXL/I2y7qTufqyB/1kpya0abW/OQ/Ox2HUtYR2dnw8xY8zJV3RSduYS5hg9A=="; 111896 112467 }; 111897 112468 dependencies = [ 111898 112469 sources."2-thenable-1.0.0" ··· 111932 112503 sources."js-yaml-4.1.0" 111933 112504 ]; 111934 112505 }) 111935 - sources."ansi-regex-5.0.0" 112506 + sources."ansi-regex-5.0.1" 111936 112507 sources."argparse-2.0.1" 111937 112508 sources."dotenv-8.6.0" 111938 112509 (sources."js-yaml-3.14.1" // { ··· 111960 112531 sources."jwt-decode-2.2.0" 111961 112532 ]; 111962 112533 }) 111963 - (sources."@serverless/platform-client-china-2.2.6" // { 112534 + (sources."@serverless/platform-client-china-2.2.7" // { 111964 112535 dependencies = [ 111965 112536 sources."dotenv-8.6.0" 111966 112537 sources."js-yaml-3.14.1" 111967 112538 ]; 111968 112539 }) 111969 112540 sources."@serverless/template-1.1.4" 111970 - (sources."@serverless/utils-5.10.0" // { 112541 + (sources."@serverless/utils-5.14.0" // { 111971 112542 dependencies = [ 111972 - sources."cli-progress-footer-2.0.0" 111973 112543 sources."get-stream-6.0.1" 111974 112544 sources."has-flag-4.0.0" 111975 112545 sources."supports-color-8.1.1" ··· 111985 112555 sources."@types/caseless-0.12.2" 111986 112556 sources."@types/http-cache-semantics-4.0.1" 111987 112557 sources."@types/keyv-3.1.3" 111988 - sources."@types/lodash-4.14.172" 112558 + sources."@types/lodash-4.14.173" 111989 112559 sources."@types/long-4.0.1" 111990 - sources."@types/node-16.9.0" 112560 + sources."@types/node-16.9.4" 111991 112561 sources."@types/request-2.48.7" 111992 112562 sources."@types/request-promise-native-1.0.18" 111993 112563 sources."@types/responselike-1.0.0" 111994 112564 sources."@types/tough-cookie-4.0.1" 111995 - sources."adm-zip-0.5.5" 112565 + sources."adm-zip-0.5.6" 111996 112566 sources."after-0.8.2" 111997 112567 (sources."agent-base-6.0.2" // { 111998 112568 dependencies = [ ··· 112048 112618 sources."async-2.6.3" 112049 112619 sources."asynckit-0.4.0" 112050 112620 sources."at-least-node-1.0.0" 112051 - (sources."aws-sdk-2.985.0" // { 112621 + (sources."aws-sdk-2.991.0" // { 112052 112622 dependencies = [ 112053 112623 sources."buffer-4.9.2" 112054 112624 sources."ieee754-1.1.13" ··· 112083 112653 }) 112084 112654 sources."blob-0.0.5" 112085 112655 sources."bluebird-3.7.2" 112086 - (sources."boxen-5.0.1" // { 112656 + (sources."boxen-5.1.2" // { 112087 112657 dependencies = [ 112088 - sources."ansi-regex-5.0.0" 112658 + sources."ansi-regex-5.0.1" 112089 112659 sources."is-fullwidth-code-point-3.0.0" 112090 112660 sources."string-width-4.2.2" 112091 112661 sources."strip-ansi-6.0.0" ··· 112138 112708 ]; 112139 112709 }) 112140 112710 sources."cli-cursor-3.1.0" 112141 - (sources."cli-progress-footer-1.1.1" // { 112142 - dependencies = [ 112143 - sources."ansi-regex-2.1.1" 112144 - sources."cli-color-1.4.0" 112145 - sources."process-utils-2.6.0" 112146 - ]; 112147 - }) 112711 + sources."cli-progress-footer-2.0.2" 112148 112712 (sources."cli-sprintf-format-1.1.0" // { 112149 112713 dependencies = [ 112150 112714 sources."ansi-regex-2.1.1" ··· 112189 112753 ]; 112190 112754 }) 112191 112755 sources."dashdash-1.14.1" 112192 - sources."dayjs-1.10.6" 112756 + sources."dayjs-1.10.7" 112193 112757 sources."debug-2.6.9" 112194 112758 (sources."decompress-4.2.1" // { 112195 112759 dependencies = [ ··· 112279 112843 sources."fast-json-stable-stringify-2.1.0" 112280 112844 sources."fast-safe-stringify-2.1.1" 112281 112845 sources."fastest-levenshtein-1.0.12" 112282 - sources."fastq-1.12.0" 112846 + sources."fastq-1.13.0" 112283 112847 sources."fd-slicer-1.1.0" 112284 112848 sources."fecha-4.2.1" 112285 112849 sources."figures-3.2.0" ··· 112287 112851 sources."file-uri-to-path-1.0.0" 112288 112852 sources."filename-reserved-regex-2.0.0" 112289 112853 sources."filenamify-4.3.0" 112290 - sources."filesize-8.0.0" 112854 + sources."filesize-8.0.3" 112291 112855 sources."fill-range-7.0.1" 112292 112856 sources."find-requires-1.0.0" 112293 112857 sources."flat-5.0.2" 112294 - sources."follow-redirects-1.14.3" 112858 + sources."follow-redirects-1.14.4" 112295 112859 sources."forever-agent-0.6.1" 112296 112860 sources."form-data-2.5.1" 112297 112861 sources."formidable-1.2.2" ··· 112321 112885 sources."globby-11.0.4" 112322 112886 (sources."got-11.8.2" // { 112323 112887 dependencies = [ 112324 - sources."@sindresorhus/is-4.0.1" 112888 + sources."@sindresorhus/is-4.2.0" 112325 112889 sources."@szmarczak/http-timer-4.0.6" 112326 112890 sources."cacheable-request-7.0.2" 112327 112891 sources."decompress-response-6.0.0" ··· 112369 112933 sources."ini-1.3.8" 112370 112934 (sources."inquirer-7.3.3" // { 112371 112935 dependencies = [ 112372 - sources."ansi-regex-5.0.0" 112936 + sources."ansi-regex-5.0.1" 112373 112937 sources."is-fullwidth-code-point-3.0.0" 112374 112938 sources."string-width-4.2.2" 112375 112939 sources."strip-ansi-6.0.0" ··· 112442 113006 sources."lodash.flatten-4.4.0" 112443 113007 sources."lodash.isplainobject-4.0.6" 112444 113008 sources."lodash.union-4.6.0" 112445 - sources."log-6.1.0" 112446 - (sources."log-node-8.0.0" // { 113009 + sources."log-6.2.0" 113010 + (sources."log-node-8.0.1" // { 112447 113011 dependencies = [ 112448 113012 sources."has-flag-4.0.0" 112449 113013 sources."supports-color-8.1.1" ··· 112479 113043 sources."mimic-response-1.0.1" 112480 113044 sources."minimatch-3.0.4" 112481 113045 sources."minimist-1.2.5" 112482 - sources."minipass-3.1.3" 113046 + sources."minipass-3.1.5" 112483 113047 sources."minizlib-2.1.2" 112484 113048 sources."mkdirp-0.5.5" 112485 113049 sources."ms-2.0.0" ··· 112498 113062 ]; 112499 113063 }) 112500 113064 sources."node-dir-0.1.17" 112501 - sources."node-fetch-2.6.2" 113065 + sources."node-fetch-2.6.4" 112502 113066 sources."noop-logger-0.1.1" 112503 113067 sources."normalize-path-3.0.0" 112504 113068 sources."normalize-url-4.5.1" ··· 112599 113163 sources."shebang-command-1.2.0" 112600 113164 sources."shebang-regex-1.0.0" 112601 113165 sources."shortid-2.2.16" 112602 - sources."signal-exit-3.0.3" 113166 + sources."signal-exit-3.0.4" 112603 113167 sources."simple-concat-1.0.1" 112604 113168 sources."simple-get-2.8.1" 112605 113169 (sources."simple-git-2.45.1" // { ··· 112706 113270 sources."to-regex-range-5.0.1" 112707 113271 sources."token-types-4.1.1" 112708 113272 sources."tough-cookie-2.5.0" 113273 + sources."tr46-0.0.3" 112709 113274 sources."traverse-0.6.6" 112710 113275 sources."trim-repeated-1.0.0" 112711 113276 sources."triple-beam-1.3.0" ··· 112731 113296 sources."util-deprecate-1.0.2" 112732 113297 sources."uuid-8.3.2" 112733 113298 sources."verror-1.10.0" 113299 + sources."webidl-conversions-3.0.1" 113300 + sources."whatwg-url-5.0.0" 112734 113301 sources."which-1.3.1" 112735 113302 sources."which-pm-runs-1.0.0" 112736 113303 sources."wide-align-1.1.3" 112737 113304 (sources."widest-line-3.1.0" // { 112738 113305 dependencies = [ 112739 - sources."ansi-regex-5.0.0" 113306 + sources."ansi-regex-5.0.1" 112740 113307 sources."is-fullwidth-code-point-3.0.0" 112741 113308 sources."string-width-4.2.2" 112742 113309 sources."strip-ansi-6.0.0" ··· 112752 113319 }) 112753 113320 (sources."wrap-ansi-7.0.0" // { 112754 113321 dependencies = [ 112755 - sources."ansi-regex-5.0.0" 113322 + sources."ansi-regex-5.0.1" 112756 113323 sources."ansi-styles-4.3.0" 112757 113324 sources."color-convert-2.0.1" 112758 113325 sources."color-name-1.1.4" ··· 113416 113983 snyk = nodeEnv.buildNodePackage { 113417 113984 name = "snyk"; 113418 113985 packageName = "snyk"; 113419 - version = "1.704.0"; 113986 + version = "1.717.0"; 113420 113987 src = fetchurl { 113421 - url = "https://registry.npmjs.org/snyk/-/snyk-1.704.0.tgz"; 113422 - sha512 = "vYt8Zp2O5Rce//JAqkivWKTSEGvSIvFMEPy6UM2tCUfRoQdk+398YP0l1yLsGfu8in4Q9A7H+Vy3om4fcFliYQ=="; 113988 + url = "https://registry.npmjs.org/snyk/-/snyk-1.717.0.tgz"; 113989 + sha512 = "OWVUEr1F24isElAGG7nxjEQnE6xaxpmgj3vDGLLz3ma2mvtgaUxjWT2fx5EopeEhe9tSk7uF6SUrgudCzrjUgQ=="; 113423 113990 }; 113424 113991 buildInputs = globalBuildInputs; 113425 113992 meta = { ··· 113443 114010 sources."@types/component-emitter-1.2.10" 113444 114011 sources."@types/cookie-0.4.1" 113445 114012 sources."@types/cors-2.8.12" 113446 - sources."@types/node-16.9.0" 114013 + sources."@types/node-16.9.4" 113447 114014 sources."accepts-1.3.7" 113448 114015 sources."base64-arraybuffer-0.1.4" 113449 114016 sources."base64id-2.0.0" ··· 113606 114173 sources."semver-diff-2.1.0" 113607 114174 sources."shebang-command-1.2.0" 113608 114175 sources."shebang-regex-1.0.0" 113609 - sources."signal-exit-3.0.3" 114176 + sources."signal-exit-3.0.4" 113610 114177 sources."spdx-correct-3.1.1" 113611 114178 sources."spdx-exceptions-2.3.0" 113612 114179 sources."spdx-expression-parse-3.0.1" ··· 113699 114266 sources."array-unique-0.2.1" 113700 114267 sources."arrify-1.0.1" 113701 114268 sources."assign-symbols-1.0.0" 113702 - (sources."async-append-only-log-3.0.9" // { 114269 + (sources."async-append-only-log-3.0.11" // { 113703 114270 dependencies = [ 113704 114271 sources."push-stream-11.0.1" 113705 114272 ]; ··· 114006 114573 sources."isarray-1.0.0" 114007 114574 sources."isexe-2.0.0" 114008 114575 sources."isobject-2.1.0" 114009 - (sources."jitdb-3.3.0" // { 114576 + (sources."jitdb-3.4.0" // { 114010 114577 dependencies = [ 114011 114578 sources."mkdirp-1.0.4" 114012 114579 sources."push-stream-11.0.1" ··· 114101 114668 sources."next-tick-1.1.0" 114102 114669 sources."nice-try-1.0.5" 114103 114670 sources."node-bindgen-loader-1.0.1" 114104 - sources."node-gyp-build-4.2.3" 114671 + sources."node-gyp-build-4.3.0" 114105 114672 sources."non-private-ip-1.4.4" 114106 114673 sources."normalize-path-2.1.1" 114107 114674 sources."normalize-uri-1.1.3" ··· 114415 114982 sources."ssb-client-4.9.0" 114416 114983 sources."ssb-config-3.4.5" 114417 114984 sources."ssb-db-19.2.0" 114418 - (sources."ssb-db2-2.4.0" // { 114985 + (sources."ssb-db2-2.5.2" // { 114419 114986 dependencies = [ 114420 114987 sources."abstract-leveldown-6.2.3" 114421 114988 (sources."flumecodec-0.0.1" // { ··· 114683 115250 sources."async-1.5.2" 114684 115251 sources."async-limiter-1.0.1" 114685 115252 sources."asynckit-0.4.0" 114686 - (sources."aws-sdk-2.985.0" // { 115253 + (sources."aws-sdk-2.991.0" // { 114687 115254 dependencies = [ 114688 115255 sources."uuid-3.3.2" 114689 115256 ]; ··· 114868 115435 sources."fd-slicer-1.1.0" 114869 115436 sources."finalhandler-1.1.2" 114870 115437 sources."find-up-3.0.0" 114871 - sources."follow-redirects-1.14.3" 115438 + sources."follow-redirects-1.14.4" 114872 115439 sources."forever-agent-0.6.1" 114873 115440 sources."form-data-2.1.4" 114874 115441 sources."formidable-1.2.2" ··· 115074 115641 sources."on-finished-2.3.0" 115075 115642 sources."on-headers-1.0.2" 115076 115643 sources."once-1.4.0" 115077 - (sources."openid-2.0.9" // { 115644 + (sources."openid-2.0.10" // { 115078 115645 dependencies = [ 115079 115646 sources."qs-6.10.1" 115080 115647 ]; ··· 115217 115784 sources."shebang-command-1.2.0" 115218 115785 sources."shebang-regex-1.0.0" 115219 115786 sources."side-channel-1.0.4" 115220 - sources."signal-exit-3.0.3" 115787 + sources."signal-exit-3.0.4" 115221 115788 sources."slash-1.0.0" 115222 115789 sources."sntp-1.0.9" 115223 115790 (sources."socket.io-2.4.1" // { ··· 115476 116043 sources."@babel/helper-hoist-variables-7.15.4" 115477 116044 sources."@babel/helper-member-expression-to-functions-7.15.4" 115478 116045 sources."@babel/helper-module-imports-7.15.4" 115479 - sources."@babel/helper-module-transforms-7.15.4" 116046 + sources."@babel/helper-module-transforms-7.15.7" 115480 116047 sources."@babel/helper-optimise-call-expression-7.15.4" 115481 116048 sources."@babel/helper-replace-supers-7.15.4" 115482 116049 sources."@babel/helper-simple-access-7.15.4" 115483 116050 sources."@babel/helper-split-export-declaration-7.15.4" 115484 - sources."@babel/helper-validator-identifier-7.14.9" 116051 + sources."@babel/helper-validator-identifier-7.15.7" 115485 116052 sources."@babel/helper-validator-option-7.14.5" 115486 116053 sources."@babel/helpers-7.15.4" 115487 116054 (sources."@babel/highlight-7.14.5" // { ··· 115489 116056 sources."chalk-2.4.2" 115490 116057 ]; 115491 116058 }) 115492 - sources."@babel/parser-7.15.5" 116059 + sources."@babel/parser-7.15.7" 115493 116060 sources."@babel/template-7.15.4" 115494 116061 sources."@babel/traverse-7.15.4" 115495 - sources."@babel/types-7.15.4" 116062 + sources."@babel/types-7.15.6" 115496 116063 sources."@nodelib/fs.scandir-2.1.5" 115497 116064 sources."@nodelib/fs.stat-2.0.5" 115498 116065 sources."@nodelib/fs.walk-1.2.8" ··· 115503 116070 sources."@types/normalize-package-data-2.4.1" 115504 116071 sources."@types/parse-json-4.0.0" 115505 116072 sources."@types/unist-2.0.6" 115506 - sources."ajv-8.6.2" 115507 - sources."ansi-regex-5.0.0" 116073 + sources."ajv-8.6.3" 116074 + sources."ansi-regex-5.0.1" 115508 116075 sources."ansi-styles-3.2.1" 115509 116076 sources."array-union-2.1.0" 115510 116077 sources."arrify-1.0.1" ··· 115522 116089 sources."callsites-3.1.0" 115523 116090 sources."camelcase-5.3.1" 115524 116091 sources."camelcase-keys-6.2.2" 115525 - sources."caniuse-lite-1.0.30001255" 116092 + sources."caniuse-lite-1.0.30001259" 115526 116093 (sources."chalk-4.1.2" // { 115527 116094 dependencies = [ 115528 116095 sources."ansi-styles-4.3.0" ··· 115560 116127 sources."domelementtype-1.3.1" 115561 116128 sources."domhandler-2.4.2" 115562 116129 sources."domutils-1.7.0" 115563 - sources."electron-to-chromium-1.3.833" 116130 + sources."electron-to-chromium-1.3.845" 115564 116131 sources."emoji-regex-8.0.0" 115565 116132 sources."entities-1.1.2" 115566 116133 sources."error-ex-1.3.2" ··· 115571 116138 sources."fast-deep-equal-3.1.3" 115572 116139 sources."fast-glob-3.2.7" 115573 116140 sources."fastest-levenshtein-1.0.12" 115574 - sources."fastq-1.12.0" 116141 + sources."fastq-1.13.0" 115575 116142 sources."file-entry-cache-6.0.1" 115576 116143 sources."fill-range-7.0.1" 115577 116144 sources."find-up-4.1.0" ··· 115638 116205 sources."log-symbols-4.1.0" 115639 116206 sources."longest-streak-2.0.4" 115640 116207 sources."lru-cache-6.0.0" 115641 - sources."map-obj-4.2.1" 116208 + sources."map-obj-4.3.0" 115642 116209 sources."mathml-tag-names-2.1.3" 115643 116210 sources."mdast-util-from-markdown-0.8.5" 115644 116211 sources."mdast-util-to-markdown-0.6.5" ··· 115656 116223 ]; 115657 116224 }) 115658 116225 sources."ms-2.1.2" 115659 - sources."node-releases-1.1.75" 116226 + sources."node-releases-1.1.76" 115660 116227 (sources."normalize-package-data-3.0.3" // { 115661 116228 dependencies = [ 115662 116229 sources."semver-7.3.5" ··· 115728 116295 sources."run-parallel-1.2.0" 115729 116296 sources."safe-buffer-5.1.2" 115730 116297 sources."semver-6.3.0" 115731 - sources."signal-exit-3.0.3" 116298 + sources."signal-exit-3.0.4" 115732 116299 sources."slash-3.0.0" 115733 116300 (sources."slice-ansi-4.0.0" // { 115734 116301 dependencies = [ ··· 115793 116360 svelte-check = nodeEnv.buildNodePackage { 115794 116361 name = "svelte-check"; 115795 116362 packageName = "svelte-check"; 115796 - version = "2.2.5"; 116363 + version = "2.2.6"; 115797 116364 src = fetchurl { 115798 - url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.2.5.tgz"; 115799 - sha512 = "EstDoqxjqWStWELh7Z0qytqUDl/ikdNEr21dveNc4fUDnhnqO2F2jHEufqoNnC3GfBji3GIUHvoXsp/I5lMbCg=="; 116365 + url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.2.6.tgz"; 116366 + sha512 = "oJux/afbmcZO+N+ADXB88h6XANLie8Y2rh2qBlhgfkpr2c3t/q/T0w2JWrHqagaDL8zeNwO8a8RVFBkrRox8gg=="; 115800 116367 }; 115801 116368 dependencies = [ 115802 - sources."@types/node-16.9.0" 116369 + sources."@nodelib/fs.scandir-2.1.5" 116370 + sources."@nodelib/fs.stat-2.0.5" 116371 + sources."@nodelib/fs.walk-1.2.8" 116372 + sources."@types/node-16.9.4" 115803 116373 sources."@types/pug-2.0.5" 115804 116374 sources."@types/sass-1.16.1" 115805 116375 sources."ansi-styles-4.3.0" ··· 115817 116387 sources."concat-map-0.0.1" 115818 116388 sources."detect-indent-6.1.0" 115819 116389 sources."es6-promise-3.3.1" 116390 + sources."fast-glob-3.2.7" 116391 + sources."fastq-1.13.0" 115820 116392 sources."fill-range-7.0.1" 115821 116393 sources."fs.realpath-1.0.0" 115822 116394 sources."fsevents-2.3.2" ··· 115832 116404 sources."is-glob-4.0.1" 115833 116405 sources."is-number-7.0.0" 115834 116406 sources."magic-string-0.25.7" 116407 + sources."merge2-1.4.1" 116408 + sources."micromatch-4.0.4" 115835 116409 sources."min-indent-1.0.1" 115836 116410 sources."minimatch-3.0.4" 115837 116411 sources."minimist-1.2.5" 115838 116412 sources."mkdirp-0.5.5" 115839 - sources."mri-1.1.6" 116413 + sources."mri-1.2.0" 115840 116414 sources."normalize-path-3.0.0" 115841 116415 sources."once-1.4.0" 115842 116416 sources."parent-module-1.0.1" 115843 116417 sources."path-is-absolute-1.0.1" 115844 116418 sources."picomatch-2.3.0" 116419 + sources."queue-microtask-1.2.3" 115845 116420 sources."readdirp-3.6.0" 115846 116421 sources."resolve-from-4.0.0" 116422 + sources."reusify-1.0.4" 115847 116423 sources."rimraf-2.7.1" 116424 + sources."run-parallel-1.2.0" 115848 116425 sources."sade-1.7.4" 115849 116426 sources."sander-0.5.1" 115850 116427 sources."sorcery-0.10.0" ··· 115852 116429 sources."sourcemap-codec-1.4.8" 115853 116430 sources."strip-indent-3.0.0" 115854 116431 sources."supports-color-7.2.0" 115855 - sources."svelte-preprocess-4.9.4" 116432 + sources."svelte-preprocess-4.9.5" 115856 116433 sources."to-regex-range-5.0.1" 115857 - sources."typescript-4.4.2" 116434 + sources."typescript-4.4.3" 115858 116435 sources."wrappy-1.0.2" 115859 116436 ]; 115860 116437 buildInputs = globalBuildInputs; ··· 115870 116447 svelte-language-server = nodeEnv.buildNodePackage { 115871 116448 name = "svelte-language-server"; 115872 116449 packageName = "svelte-language-server"; 115873 - version = "0.14.7"; 116450 + version = "0.14.8"; 115874 116451 src = fetchurl { 115875 - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.7.tgz"; 115876 - sha512 = "GuqBLvHE41ZB6G4EPhUeShDGav4k5TdMmNXk8j1fXGZSrwW+3Q7WmCNMqqeQgrNNtOg1UCUUx7XEjrvPu7RqDg=="; 116452 + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.8.tgz"; 116453 + sha512 = "0Q05fnhAZ4YlHNC2WAcUO2DXv+YhavU1Vbz8pNq/qUbHYgFzQe4yRPEfTNhBvnWtpVAQsfFk/kwgKQj13MwOxQ=="; 115877 116454 }; 115878 116455 dependencies = [ 115879 116456 sources."@emmetio/abbreviation-2.2.2" 115880 116457 sources."@emmetio/css-abbreviation-2.1.4" 115881 116458 sources."@emmetio/scanner-1.0.0" 115882 - sources."@types/node-16.9.0" 116459 + sources."@nodelib/fs.scandir-2.1.5" 116460 + sources."@nodelib/fs.stat-2.0.5" 116461 + sources."@nodelib/fs.walk-1.2.8" 116462 + sources."@types/node-16.9.4" 115883 116463 sources."@types/pug-2.0.5" 115884 116464 sources."@types/sass-1.16.1" 115885 116465 sources."anymatch-3.1.2" 115886 - sources."balanced-match-1.0.2" 115887 116466 sources."binary-extensions-2.2.0" 115888 - sources."brace-expansion-1.1.11" 115889 116467 sources."braces-3.0.2" 115890 116468 sources."chokidar-3.5.2" 115891 - sources."concat-map-0.0.1" 115892 116469 sources."dedent-js-1.0.1" 115893 116470 sources."detect-indent-6.1.0" 115894 116471 sources."emmet-2.3.4" 115895 116472 sources."estree-walker-2.0.2" 116473 + sources."fast-glob-3.2.7" 116474 + sources."fastq-1.13.0" 115896 116475 sources."fill-range-7.0.1" 115897 - sources."fs.realpath-1.0.0" 115898 116476 sources."fsevents-2.3.2" 115899 - sources."glob-7.1.7" 115900 116477 sources."glob-parent-5.1.2" 115901 - sources."inflight-1.0.6" 115902 - sources."inherits-2.0.4" 115903 116478 sources."is-binary-path-2.1.0" 115904 116479 sources."is-extglob-2.1.1" 115905 116480 sources."is-glob-4.0.1" ··· 115907 116482 sources."jsonc-parser-2.3.1" 115908 116483 sources."lodash-4.17.21" 115909 116484 sources."lower-case-2.0.2" 116485 + sources."merge2-1.4.1" 116486 + sources."micromatch-4.0.4" 115910 116487 sources."min-indent-1.0.1" 115911 - sources."minimatch-3.0.4" 115912 116488 sources."no-case-3.0.4" 115913 116489 sources."normalize-path-3.0.0" 115914 - sources."once-1.4.0" 115915 116490 sources."pascal-case-3.1.2" 115916 - sources."path-is-absolute-1.0.1" 115917 116491 sources."picomatch-2.3.0" 115918 - sources."prettier-2.3.0" 115919 - sources."prettier-plugin-svelte-2.3.1" 116492 + sources."prettier-2.3.2" 116493 + sources."prettier-plugin-svelte-2.4.0" 116494 + sources."queue-microtask-1.2.3" 115920 116495 sources."readdirp-3.6.0" 116496 + sources."reusify-1.0.4" 116497 + sources."run-parallel-1.2.0" 115921 116498 sources."source-map-0.7.3" 115922 116499 sources."strip-indent-3.0.0" 115923 116500 sources."svelte-3.38.3" 115924 116501 sources."svelte-preprocess-4.7.4" 115925 - sources."svelte2tsx-0.4.5" 116502 + sources."svelte2tsx-0.4.6" 115926 116503 sources."to-regex-range-5.0.1" 115927 116504 sources."tslib-2.3.1" 115928 - sources."typescript-4.4.2" 116505 + sources."typescript-4.4.3" 115929 116506 sources."vscode-css-languageservice-5.0.0" 115930 116507 sources."vscode-emmet-helper-2.1.2" 115931 116508 sources."vscode-html-languageservice-4.0.0" ··· 115940 116517 sources."vscode-languageserver-types-3.16.0" 115941 116518 sources."vscode-nls-5.0.0" 115942 116519 sources."vscode-uri-2.1.2" 115943 - sources."wrappy-1.0.2" 115944 116520 ]; 115945 116521 buildInputs = globalBuildInputs; 115946 116522 meta = { ··· 115955 116531 svgo = nodeEnv.buildNodePackage { 115956 116532 name = "svgo"; 115957 116533 packageName = "svgo"; 115958 - version = "2.5.0"; 116534 + version = "2.6.1"; 115959 116535 src = fetchurl { 115960 - url = "https://registry.npmjs.org/svgo/-/svgo-2.5.0.tgz"; 115961 - sha512 = "FSdBOOo271VyF/qZnOn1PgwCdt1v4Dx0Sey+U1jgqm1vqRYjPGdip0RGrFW6ItwtkBB8rHgHk26dlVr0uCs82Q=="; 116536 + url = "https://registry.npmjs.org/svgo/-/svgo-2.6.1.tgz"; 116537 + sha512 = "SDo274ymyG1jJ3HtCr3hkfwS8NqWdF0fMr6xPlrJ5y2QMofsQxIEFWgR1epwb197teKGgnZbzozxvJyIeJpE2Q=="; 115962 116538 }; 115963 116539 dependencies = [ 115964 - sources."@trysound/sax-0.1.1" 116540 + sources."@trysound/sax-0.2.0" 115965 116541 sources."boolbase-1.0.0" 115966 116542 sources."colorette-1.4.0" 115967 116543 sources."commander-7.2.0" ··· 115975 116551 sources."domutils-2.8.0" 115976 116552 sources."entities-2.2.0" 115977 116553 sources."mdn-data-2.0.14" 115978 - sources."nth-check-2.0.0" 116554 + sources."nth-check-2.0.1" 115979 116555 sources."source-map-0.6.1" 115980 116556 sources."stable-0.1.8" 115981 116557 ]; ··· 116461 117037 sources."shebang-regex-1.0.0" 116462 117038 sources."side-channel-1.0.4" 116463 117039 sources."sigmund-1.0.1" 116464 - sources."signal-exit-3.0.3" 117040 + sources."signal-exit-3.0.4" 116465 117041 sources."slash-1.0.0" 116466 117042 (sources."snapdragon-0.8.2" // { 116467 117043 dependencies = [ ··· 116700 117276 sources."module-alias-2.2.2" 116701 117277 sources."moment-2.29.1" 116702 117278 sources."ms-2.1.2" 116703 - sources."node-fetch-2.6.2" 117279 + sources."node-fetch-2.6.4" 116704 117280 sources."oauth-sign-0.9.0" 116705 117281 sources."p-limit-2.3.0" 116706 117282 sources."p-locate-3.0.0" ··· 116731 117307 sources."strip-ansi-5.2.0" 116732 117308 sources."telegraf-3.39.0" 116733 117309 sources."tough-cookie-2.5.0" 117310 + sources."tr46-0.0.3" 116734 117311 sources."tunnel-agent-0.6.0" 116735 117312 sources."tweetnacl-1.0.3" 116736 117313 sources."typegram-3.4.3" 116737 117314 sources."uri-js-4.4.1" 116738 117315 sources."uuid-3.4.0" 116739 117316 sources."verror-1.10.0" 117317 + sources."webidl-conversions-3.0.1" 117318 + sources."whatwg-url-5.0.0" 116740 117319 sources."which-module-2.0.0" 116741 117320 sources."wrap-ansi-5.1.0" 116742 117321 sources."ws-6.2.2" ··· 116813 117392 sources."safe-buffer-5.1.2" 116814 117393 sources."semver-5.7.1" 116815 117394 sources."set-blocking-2.0.0" 116816 - sources."signal-exit-3.0.3" 117395 + sources."signal-exit-3.0.4" 116817 117396 sources."simple-concat-1.0.1" 116818 117397 sources."simple-get-3.1.0" 116819 117398 sources."string-width-1.0.2" ··· 116895 117474 terser = nodeEnv.buildNodePackage { 116896 117475 name = "terser"; 116897 117476 packageName = "terser"; 116898 - version = "5.7.2"; 117477 + version = "5.9.0"; 116899 117478 src = fetchurl { 116900 - url = "https://registry.npmjs.org/terser/-/terser-5.7.2.tgz"; 116901 - sha512 = "0Omye+RD4X7X69O0eql3lC4Heh/5iLj3ggxR/B5ketZLOtLiOqukUgjw3q4PDnNQbsrkKr3UMypqStQG3XKRvw=="; 117479 + url = "https://registry.npmjs.org/terser/-/terser-5.9.0.tgz"; 117480 + sha512 = "h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ=="; 116902 117481 }; 116903 117482 dependencies = [ 116904 117483 sources."buffer-from-1.1.2" ··· 116948 117527 sources."@textlint/utils-12.0.2" 116949 117528 sources."@types/mdast-3.0.10" 116950 117529 sources."@types/unist-2.0.6" 116951 - sources."ajv-8.6.2" 117530 + sources."ajv-8.6.3" 116952 117531 sources."ansi-regex-2.1.1" 116953 117532 sources."ansi-styles-2.2.1" 116954 117533 sources."argparse-1.0.10" ··· 117125 117704 }) 117126 117705 (sources."strip-ansi-6.0.0" // { 117127 117706 dependencies = [ 117128 - sources."ansi-regex-5.0.0" 117707 + sources."ansi-regex-5.0.1" 117129 117708 ]; 117130 117709 }) 117131 117710 sources."strip-bom-2.0.0" ··· 117228 117807 }; 117229 117808 dependencies = [ 117230 117809 sources."@babel/code-frame-7.14.5" 117231 - sources."@babel/helper-validator-identifier-7.14.9" 117810 + sources."@babel/helper-validator-identifier-7.15.7" 117232 117811 sources."@babel/highlight-7.14.5" 117233 117812 sources."@sindresorhus/is-0.14.0" 117234 117813 sources."@szmarczak/http-timer-1.1.2" ··· 117419 117998 sources."semver-6.3.0" 117420 117999 ]; 117421 118000 }) 117422 - sources."map-obj-4.2.1" 118001 + sources."map-obj-4.3.0" 117423 118002 sources."map-stream-0.1.0" 117424 118003 sources."markdown-escapes-1.0.4" 117425 118004 sources."mdast-comment-marker-1.1.2" ··· 117519 118098 sources."semver-6.3.0" 117520 118099 ]; 117521 118100 }) 117522 - sources."signal-exit-3.0.3" 118101 + sources."signal-exit-3.0.4" 117523 118102 sources."sliced-1.0.1" 117524 118103 sources."space-separated-tokens-1.1.5" 117525 118104 (sources."spawn-to-readstream-0.1.3" // { ··· 117547 118126 sources."stream-combiner-0.0.4" 117548 118127 (sources."string-width-4.2.2" // { 117549 118128 dependencies = [ 117550 - sources."ansi-regex-5.0.0" 118129 + sources."ansi-regex-5.0.1" 117551 118130 sources."emoji-regex-8.0.0" 117552 118131 sources."is-fullwidth-code-point-3.0.0" 117553 118132 sources."strip-ansi-6.0.0" ··· 118046 118625 sources."@types/cacheable-request-6.0.2" 118047 118626 sources."@types/http-cache-semantics-4.0.1" 118048 118627 sources."@types/keyv-3.1.3" 118049 - sources."@types/node-16.9.0" 118628 + sources."@types/node-16.9.4" 118050 118629 sources."@types/responselike-1.0.0" 118051 118630 sources."abbrev-1.1.1" 118052 118631 sources."abstract-logging-2.0.1" ··· 118122 118701 sources."content-type-1.0.4" 118123 118702 sources."cookie-0.4.0" 118124 118703 sources."cookie-signature-1.0.6" 118125 - sources."core-js-3.17.3" 118704 + sources."core-js-3.18.0" 118126 118705 sources."core-util-is-1.0.2" 118127 118706 sources."css-select-1.2.0" 118128 118707 sources."css-what-2.1.3" ··· 118389 118968 sources."serve-static-1.14.1" 118390 118969 sources."set-blocking-2.0.0" 118391 118970 sources."setprototypeof-1.1.1" 118392 - sources."signal-exit-3.0.3" 118971 + sources."signal-exit-3.0.4" 118393 118972 (sources."socket.io-2.3.0" // { 118394 118973 dependencies = [ 118395 118974 sources."debug-4.1.1" ··· 118913 119492 typescript = nodeEnv.buildNodePackage { 118914 119493 name = "typescript"; 118915 119494 packageName = "typescript"; 118916 - version = "4.4.2"; 119495 + version = "4.4.3"; 118917 119496 src = fetchurl { 118918 - url = "https://registry.npmjs.org/typescript/-/typescript-4.4.2.tgz"; 118919 - sha512 = "gzP+t5W4hdy4c+68bfcv0t400HVJMMd2+H9B7gae1nQlBzCqvrXX+6GL/b3GAgyTH966pzrZ70/fRjwAtZksSQ=="; 119497 + url = "https://registry.npmjs.org/typescript/-/typescript-4.4.3.tgz"; 119498 + sha512 = "4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA=="; 118920 119499 }; 118921 119500 buildInputs = globalBuildInputs; 118922 119501 meta = { ··· 118953 119532 sources."del-6.0.0" 118954 119533 sources."dir-glob-3.0.1" 118955 119534 sources."fast-glob-3.2.7" 118956 - sources."fastq-1.12.0" 119535 + sources."fastq-1.13.0" 118957 119536 sources."fill-range-7.0.1" 118958 119537 sources."fs-extra-10.0.0" 118959 119538 sources."fs.realpath-1.0.0" ··· 119061 119640 sources."@types/component-emitter-1.2.10" 119062 119641 sources."@types/cookie-0.4.1" 119063 119642 sources."@types/cors-2.8.12" 119064 - sources."@types/node-14.17.15" 119643 + sources."@types/node-14.17.17" 119065 119644 sources."abbrev-1.1.1" 119066 119645 sources."accepts-1.3.7" 119067 - sources."ansi-regex-5.0.0" 119646 + sources."ansi-regex-5.0.1" 119068 119647 (sources."ansi-styles-4.3.0" // { 119069 119648 dependencies = [ 119070 119649 sources."color-convert-2.0.1" ··· 119342 119921 sha512 = "N+ENrder8z9zJQF9UM7K3/1LcfVW60omqeyaQsu6GN1BGdCgPm8gdHssn7WRD7vx+ABKc82IE1+pJyHOPkwe+w=="; 119343 119922 }; 119344 119923 dependencies = [ 119345 - sources."@types/node-16.9.0" 119924 + sources."@types/node-16.9.4" 119346 119925 sources."@types/unist-2.0.6" 119347 119926 sources."@types/vfile-3.0.2" 119348 119927 sources."@types/vfile-message-2.0.0" ··· 119506 120085 sources."chownr-2.0.0" 119507 120086 (sources."cliui-7.0.4" // { 119508 120087 dependencies = [ 119509 - sources."ansi-regex-5.0.0" 120088 + sources."ansi-regex-5.0.1" 119510 120089 sources."is-fullwidth-code-point-3.0.0" 119511 120090 sources."string-width-4.2.2" 119512 120091 sources."strip-ansi-6.0.0" ··· 119568 120147 }) 119569 120148 sources."mimic-response-2.1.0" 119570 120149 sources."minimatch-3.0.4" 119571 - sources."minipass-3.1.3" 120150 + sources."minipass-3.1.5" 119572 120151 sources."minizlib-2.1.2" 119573 120152 sources."mkdirp-1.0.4" 119574 120153 sources."ms-2.1.2" 119575 120154 sources."nan-2.15.0" 119576 - sources."node-fetch-2.6.2" 120155 + sources."node-fetch-2.6.4" 119577 120156 sources."nopt-5.0.0" 119578 120157 sources."npmlog-4.1.2" 119579 120158 sources."number-is-nan-1.0.1" ··· 119591 120170 sources."safer-buffer-2.1.2" 119592 120171 sources."semver-7.3.5" 119593 120172 sources."set-blocking-2.0.0" 119594 - sources."signal-exit-3.0.3" 120173 + sources."signal-exit-3.0.4" 119595 120174 sources."simple-concat-1.0.1" 119596 120175 sources."simple-get-3.1.0" 119597 120176 sources."string-width-1.0.2" ··· 119599 120178 sources."strip-ansi-3.0.1" 119600 120179 sources."tar-6.1.11" 119601 120180 sources."topojson-client-3.1.0" 120181 + sources."tr46-0.0.3" 119602 120182 sources."util-deprecate-1.0.2" 119603 120183 sources."vega-5.20.2" 119604 120184 sources."vega-canvas-1.2.6" ··· 119630 120210 sources."vega-view-transforms-4.5.8" 119631 120211 sources."vega-voronoi-4.1.5" 119632 120212 sources."vega-wordcloud-4.1.3" 120213 + sources."webidl-conversions-3.0.1" 120214 + sources."whatwg-url-5.0.0" 119633 120215 sources."wide-align-1.1.3" 119634 120216 (sources."wrap-ansi-7.0.0" // { 119635 120217 dependencies = [ 119636 - sources."ansi-regex-5.0.0" 120218 + sources."ansi-regex-5.0.1" 119637 120219 sources."is-fullwidth-code-point-3.0.0" 119638 120220 sources."string-width-4.2.2" 119639 120221 sources."strip-ansi-6.0.0" ··· 119644 120226 sources."yallist-4.0.0" 119645 120227 (sources."yargs-16.2.0" // { 119646 120228 dependencies = [ 119647 - sources."ansi-regex-5.0.0" 120229 + sources."ansi-regex-5.0.1" 119648 120230 sources."is-fullwidth-code-point-3.0.0" 119649 120231 sources."string-width-4.2.2" 119650 120232 sources."strip-ansi-6.0.0" ··· 119672 120254 }; 119673 120255 dependencies = [ 119674 120256 sources."@types/clone-2.1.1" 119675 - sources."ansi-regex-5.0.0" 120257 + sources."ansi-regex-5.0.1" 119676 120258 sources."ansi-styles-4.3.0" 119677 120259 sources."array-flat-polyfill-1.0.1" 119678 120260 sources."cliui-7.0.4" ··· 119719 120301 dependencies = [ 119720 120302 sources."@sindresorhus/is-0.14.0" 119721 120303 sources."@szmarczak/http-timer-1.1.2" 119722 - sources."@types/node-16.9.0" 120304 + sources."@types/node-16.9.4" 119723 120305 sources."@vercel/build-utils-2.12.2" 119724 120306 sources."@vercel/go-1.2.3" 119725 120307 sources."@vercel/node-1.12.1" ··· 119798 120380 sources."responselike-1.0.2" 119799 120381 sources."semver-6.3.0" 119800 120382 sources."semver-diff-3.1.1" 119801 - sources."signal-exit-3.0.3" 120383 + sources."signal-exit-3.0.4" 119802 120384 sources."source-map-0.6.1" 119803 120385 sources."source-map-support-0.5.20" 119804 120386 (sources."string-width-4.2.2" // { 119805 120387 dependencies = [ 119806 - sources."ansi-regex-5.0.0" 120388 + sources."ansi-regex-5.0.1" 119807 120389 sources."emoji-regex-8.0.0" 119808 120390 sources."is-fullwidth-code-point-3.0.0" 119809 120391 sources."strip-ansi-6.0.0" ··· 119865 120447 }; 119866 120448 dependencies = [ 119867 120449 sources."@babel/code-frame-7.12.11" 119868 - sources."@babel/helper-validator-identifier-7.14.9" 120450 + sources."@babel/helper-validator-identifier-7.15.7" 119869 120451 (sources."@babel/highlight-7.14.5" // { 119870 120452 dependencies = [ 119871 120453 sources."chalk-2.4.2" ··· 119879 120461 sources."acorn-jsx-5.3.2" 119880 120462 sources."ajv-6.12.6" 119881 120463 sources."ansi-colors-4.1.1" 119882 - sources."ansi-regex-5.0.0" 120464 + sources."ansi-regex-5.0.1" 119883 120465 sources."ansi-styles-3.2.1" 119884 120466 sources."argparse-1.0.10" 119885 120467 sources."astral-regex-2.0.0" ··· 119909 120491 sources."enquirer-2.3.6" 119910 120492 sources."escape-string-regexp-4.0.0" 119911 120493 sources."eslint-7.32.0" 119912 - (sources."eslint-plugin-vue-7.17.0" // { 120494 + (sources."eslint-plugin-vue-7.18.0" // { 119913 120495 dependencies = [ 119914 120496 sources."semver-6.3.0" 119915 120497 ]; ··· 119985 120567 sources."path-key-3.1.1" 119986 120568 sources."path-parse-1.0.7" 119987 120569 sources."prelude-ls-1.2.1" 119988 - sources."prettier-2.4.0" 120570 + sources."prettier-2.4.1" 119989 120571 sources."progress-2.0.3" 119990 120572 sources."punycode-2.1.1" 119991 120573 sources."regexpp-3.2.0" ··· 120010 120592 sources."supports-color-5.5.0" 120011 120593 (sources."table-6.7.1" // { 120012 120594 dependencies = [ 120013 - sources."ajv-8.6.2" 120595 + sources."ajv-8.6.3" 120014 120596 sources."json-schema-traverse-1.0.0" 120015 120597 ]; 120016 120598 }) ··· 120026 120608 sources."tsutils-2.29.0" 120027 120609 sources."type-check-0.4.0" 120028 120610 sources."type-fest-0.20.2" 120029 - sources."typescript-4.4.2" 120611 + sources."typescript-4.4.3" 120030 120612 sources."uri-js-4.4.1" 120031 120613 sources."v8-compile-cache-2.3.0" 120032 120614 (sources."vue-eslint-parser-7.11.0" // { ··· 120230 120812 sources."vscode-nls-4.1.2" 120231 120813 ]; 120232 120814 }) 120233 - sources."typescript-4.4.2" 120815 + sources."typescript-4.4.3" 120234 120816 sources."vscode-css-languageservice-5.1.5" 120235 120817 sources."vscode-html-languageservice-4.0.8" 120236 120818 sources."vscode-json-languageservice-4.1.7" ··· 120255 120837 "vscode-lldb-build-deps-../../misc/vscode-extensions/vscode-lldb/build-deps" = nodeEnv.buildNodePackage { 120256 120838 name = "vscode-lldb"; 120257 120839 packageName = "vscode-lldb"; 120258 - version = "1.6.5"; 120840 + version = "1.6.7"; 120259 120841 src = ../../misc/vscode-extensions/vscode-lldb/build-deps; 120260 120842 dependencies = [ 120261 - sources."@discoveryjs/json-ext-0.5.3" 120843 + sources."@discoveryjs/json-ext-0.5.5" 120262 120844 sources."@types/eslint-7.28.0" 120263 120845 sources."@types/eslint-scope-3.7.1" 120264 120846 sources."@types/estree-0.0.50" ··· 120297 120879 sources."ansi-styles-4.3.0" 120298 120880 sources."anymatch-3.1.2" 120299 120881 sources."argparse-2.0.1" 120300 - sources."azure-devops-node-api-10.2.2" 120882 + sources."azure-devops-node-api-11.0.1" 120301 120883 sources."balanced-match-1.0.2" 120302 120884 sources."big.js-5.2.2" 120303 120885 sources."binary-extensions-2.2.0" ··· 120310 120892 sources."buffer-from-1.1.2" 120311 120893 sources."call-bind-1.0.2" 120312 120894 sources."camelcase-6.2.0" 120313 - sources."caniuse-lite-1.0.30001255" 120895 + sources."caniuse-lite-1.0.30001259" 120314 120896 (sources."chalk-4.1.2" // { 120315 120897 dependencies = [ 120316 120898 sources."supports-color-7.2.0" ··· 120322 120904 sources."chrome-trace-event-1.0.3" 120323 120905 (sources."cliui-7.0.4" // { 120324 120906 dependencies = [ 120325 - sources."ansi-regex-5.0.0" 120907 + sources."ansi-regex-5.0.1" 120326 120908 sources."is-fullwidth-code-point-3.0.0" 120327 120909 sources."string-width-4.2.2" 120328 120910 sources."strip-ansi-6.0.0" ··· 120350 120932 sources."domelementtype-2.2.0" 120351 120933 sources."domhandler-4.2.2" 120352 120934 sources."domutils-2.8.0" 120353 - sources."electron-to-chromium-1.3.833" 120935 + sources."electron-to-chromium-1.3.845" 120354 120936 sources."emoji-regex-8.0.0" 120355 120937 sources."emojis-list-3.0.0" 120356 - sources."enhanced-resolve-5.8.2" 120938 + sources."enhanced-resolve-5.8.3" 120357 120939 sources."entities-2.2.0" 120358 120940 sources."envinfo-7.8.1" 120359 120941 sources."errno-0.1.8" ··· 120391 120973 sources."has-flag-4.0.0" 120392 120974 sources."has-symbols-1.0.2" 120393 120975 sources."he-1.2.0" 120976 + sources."hosted-git-info-4.0.2" 120394 120977 sources."htmlparser2-6.1.0" 120395 120978 sources."human-signals-2.1.0" 120396 120979 sources."import-local-3.0.2" ··· 120409 120992 sources."isarray-0.0.1" 120410 120993 sources."isexe-2.0.0" 120411 120994 sources."isobject-3.0.1" 120412 - sources."jest-worker-27.1.1" 120995 + sources."jest-worker-27.2.0" 120413 120996 sources."js-yaml-4.0.0" 120414 120997 sources."json-parse-better-errors-1.0.2" 120415 120998 sources."json-schema-traverse-0.4.1" ··· 120452 121035 sources."mute-stream-0.0.8" 120453 121036 sources."nanoid-3.1.20" 120454 121037 sources."neo-async-2.6.2" 120455 - sources."node-releases-1.1.75" 121038 + sources."node-releases-1.1.76" 120456 121039 sources."normalize-path-3.0.0" 120457 121040 sources."npm-run-path-4.0.1" 120458 - sources."nth-check-2.0.0" 121041 + sources."nth-check-2.0.1" 120459 121042 sources."object-inspect-1.11.0" 120460 121043 sources."once-1.4.0" 120461 121044 sources."onetime-5.1.2" ··· 120495 121078 sources."resolve-1.20.0" 120496 121079 sources."resolve-cwd-3.0.0" 120497 121080 sources."resolve-from-5.0.0" 121081 + sources."rimraf-3.0.2" 120498 121082 sources."safe-buffer-5.2.1" 121083 + sources."sax-1.2.4" 120499 121084 sources."schema-utils-3.1.1" 120500 121085 sources."semver-5.7.1" 120501 121086 sources."serialize-javascript-5.0.1" ··· 120503 121088 sources."shebang-command-2.0.0" 120504 121089 sources."shebang-regex-3.0.0" 120505 121090 sources."side-channel-1.0.4" 120506 - sources."signal-exit-3.0.3" 121091 + sources."signal-exit-3.0.4" 120507 121092 sources."source-map-0.6.1" 120508 121093 sources."source-map-support-0.5.20" 120509 121094 sources."sprintf-js-1.0.3" ··· 120514 121099 sources."strip-final-newline-2.0.0" 120515 121100 sources."strip-json-comments-3.1.1" 120516 121101 sources."supports-color-8.1.1" 120517 - sources."tapable-2.2.0" 120518 - (sources."terser-5.7.2" // { 121102 + sources."tapable-2.2.1" 121103 + (sources."terser-5.9.0" // { 120519 121104 dependencies = [ 120520 121105 sources."commander-2.20.3" 120521 121106 sources."source-map-0.7.3" ··· 120526 121111 sources."serialize-javascript-6.0.0" 120527 121112 ]; 120528 121113 }) 120529 - sources."tmp-0.0.29" 121114 + sources."tmp-0.2.1" 120530 121115 sources."to-regex-range-5.0.1" 120531 121116 (sources."ts-loader-8.3.0" // { 120532 121117 dependencies = [ ··· 120538 121123 sources."tslib-2.3.1" 120539 121124 sources."tunnel-0.0.6" 120540 121125 sources."typed-rest-client-1.8.6" 120541 - sources."typescript-4.4.2" 121126 + sources."typescript-4.4.3" 120542 121127 sources."uc.micro-1.0.6" 120543 121128 sources."underscore-1.13.1" 120544 121129 sources."uri-js-4.4.1" 120545 121130 sources."url-join-1.1.0" 120546 121131 sources."util-deprecate-1.0.2" 120547 121132 sources."v8-compile-cache-2.3.0" 120548 - (sources."vsce-1.88.0" // { 121133 + (sources."vsce-1.99.0" // { 120549 121134 dependencies = [ 120550 121135 sources."ansi-styles-3.2.1" 120551 121136 sources."chalk-2.4.2" ··· 120559 121144 sources."vscode-debugadapter-testsupport-1.49.0" 120560 121145 sources."vscode-debugprotocol-1.49.0" 120561 121146 sources."watchpack-2.2.0" 120562 - sources."webpack-5.52.0" 121147 + sources."webpack-5.53.0" 120563 121148 (sources."webpack-cli-4.8.0" // { 120564 121149 dependencies = [ 120565 121150 sources."commander-7.2.0" 120566 121151 ]; 120567 121152 }) 120568 121153 sources."webpack-merge-5.8.0" 120569 - sources."webpack-sources-3.2.0" 121154 + sources."webpack-sources-3.2.1" 120570 121155 sources."which-2.0.2" 120571 121156 sources."wide-align-1.1.3" 120572 121157 sources."wildcard-2.0.0" 120573 121158 sources."workerpool-6.1.0" 120574 121159 (sources."wrap-ansi-7.0.0" // { 120575 121160 dependencies = [ 120576 - sources."ansi-regex-5.0.0" 121161 + sources."ansi-regex-5.0.1" 120577 121162 sources."is-fullwidth-code-point-3.0.0" 120578 121163 sources."string-width-4.2.2" 120579 121164 sources."strip-ansi-6.0.0" 120580 121165 ]; 120581 121166 }) 120582 121167 sources."wrappy-1.0.2" 121168 + sources."xml2js-0.4.23" 121169 + sources."xmlbuilder-11.0.1" 120583 121170 sources."y18n-5.0.8" 120584 121171 sources."yallist-4.0.0" 120585 121172 sources."yaml-1.10.2" 120586 121173 (sources."yargs-16.2.0" // { 120587 121174 dependencies = [ 120588 - sources."ansi-regex-5.0.0" 121175 + sources."ansi-regex-5.0.1" 120589 121176 sources."is-fullwidth-code-point-3.0.0" 120590 121177 sources."string-width-4.2.2" 120591 121178 sources."strip-ansi-6.0.0" ··· 120820 121407 sources."safer-buffer-2.1.2" 120821 121408 sources."seek-bzip-1.0.6" 120822 121409 sources."semver-5.7.1" 120823 - sources."signal-exit-3.0.3" 121410 + sources."signal-exit-3.0.4" 120824 121411 sources."source-map-0.6.1" 120825 121412 sources."sprintf-js-1.0.3" 120826 121413 sources."sshpk-1.16.1" ··· 120903 121490 }; 120904 121491 dependencies = [ 120905 121492 sources."@babel/code-frame-7.14.5" 120906 - sources."@babel/helper-validator-identifier-7.14.9" 121493 + sources."@babel/helper-validator-identifier-7.15.7" 120907 121494 sources."@babel/highlight-7.14.5" 120908 121495 sources."@emmetio/extract-abbreviation-0.1.6" 120909 121496 sources."@mrmlnc/readdir-enhanced-2.2.1" ··· 120920 121507 sources."@starptech/rehype-webparser-0.10.0" 120921 121508 sources."@starptech/webparser-0.10.0" 120922 121509 sources."@szmarczak/http-timer-1.1.2" 120923 - sources."@types/node-16.9.0" 121510 + sources."@types/node-16.9.4" 120924 121511 sources."@types/unist-2.0.6" 120925 121512 sources."@types/vfile-3.0.2" 120926 121513 sources."@types/vfile-message-2.0.0" ··· 121552 122139 sources."shebang-regex-1.0.0" 121553 122140 sources."shellsubstitute-1.2.0" 121554 122141 sources."sigmund-1.0.1" 121555 - sources."signal-exit-3.0.3" 122142 + sources."signal-exit-3.0.4" 121556 122143 sources."slash-1.0.0" 121557 122144 sources."slice-ansi-2.1.0" 121558 122145 (sources."snapdragon-0.8.2" // { ··· 121761 122348 sources."vfile-message-3.0.2" 121762 122349 (sources."vfile-reporter-6.0.2" // { 121763 122350 dependencies = [ 121764 - sources."ansi-regex-5.0.0" 122351 + sources."ansi-regex-5.0.1" 121765 122352 sources."emoji-regex-8.0.0" 121766 122353 sources."is-fullwidth-code-point-3.0.0" 121767 122354 sources."string-width-4.2.2" ··· 121843 122430 sha512 = "uhSNGU27KDT2e2v51l/NqMc59O7X0DG7CHonZOwsnvMHLvyudCLZgXCU8Rw4T8gpqg2asn50vfPHq7l3DGlN5w=="; 121844 122431 }; 121845 122432 dependencies = [ 121846 - sources."@babel/runtime-corejs3-7.15.4" 122433 + sources."@babel/runtime-7.15.4" 121847 122434 sources."@mapbox/node-pre-gyp-1.0.5" 121848 122435 sources."@tootallnate/once-1.1.2" 121849 122436 sources."@types/raf-3.4.0" ··· 121867 122454 sources."balanced-match-1.0.2" 121868 122455 (sources."bit-field-1.5.3" // { 121869 122456 dependencies = [ 121870 - sources."ansi-regex-5.0.0" 122457 + sources."ansi-regex-5.0.1" 121871 122458 sources."fs-extra-10.0.0" 121872 122459 sources."is-fullwidth-code-point-3.0.0" 121873 122460 sources."string-width-4.2.2" ··· 121879 122466 sources."browser-process-hrtime-1.0.0" 121880 122467 sources."btoa-1.2.1" 121881 122468 sources."canvas-2.8.0" 121882 - sources."canvg-3.0.7" 122469 + sources."canvg-3.0.8" 121883 122470 sources."chownr-2.0.0" 121884 122471 (sources."cliui-7.0.4" // { 121885 122472 dependencies = [ 121886 - sources."ansi-regex-5.0.0" 122473 + sources."ansi-regex-5.0.1" 121887 122474 sources."is-fullwidth-code-point-3.0.0" 121888 122475 sources."string-width-4.2.2" 121889 122476 sources."strip-ansi-6.0.0" ··· 121895 122482 sources."combined-stream-1.0.8" 121896 122483 sources."concat-map-0.0.1" 121897 122484 sources."console-control-strings-1.1.0" 121898 - sources."core-js-pure-3.17.3" 122485 + sources."core-js-3.18.0" 121899 122486 sources."core-util-is-1.0.3" 121900 122487 sources."cssom-0.4.4" 121901 122488 (sources."cssstyle-2.3.0" // { ··· 121903 122490 sources."cssom-0.3.8" 121904 122491 ]; 121905 122492 }) 121906 - sources."data-urls-2.0.0" 122493 + (sources."data-urls-2.0.0" // { 122494 + dependencies = [ 122495 + sources."tr46-2.1.0" 122496 + sources."webidl-conversions-6.1.0" 122497 + sources."whatwg-url-8.7.0" 122498 + ]; 122499 + }) 121907 122500 sources."debug-4.3.2" 121908 122501 sources."decimal.js-10.3.1" 121909 122502 sources."decompress-response-4.2.1" ··· 121941 122534 sources."is-fullwidth-code-point-1.0.0" 121942 122535 sources."is-potential-custom-element-name-1.0.1" 121943 122536 sources."isarray-1.0.0" 121944 - sources."jsdom-16.7.0" 122537 + (sources."jsdom-16.7.0" // { 122538 + dependencies = [ 122539 + sources."tr46-2.1.0" 122540 + sources."webidl-conversions-6.1.0" 122541 + sources."whatwg-url-8.7.0" 122542 + ]; 122543 + }) 121945 122544 sources."json5-2.2.0" 121946 122545 sources."jsonfile-6.1.0" 121947 122546 sources."levn-0.3.0" ··· 121958 122557 sources."mimic-response-2.1.0" 121959 122558 sources."minimatch-3.0.4" 121960 122559 sources."minimist-1.2.5" 121961 - sources."minipass-3.1.3" 122560 + sources."minipass-3.1.5" 121962 122561 sources."minizlib-2.1.2" 121963 122562 sources."mkdirp-1.0.4" 121964 122563 sources."ms-2.1.2" 121965 122564 sources."nan-2.15.0" 121966 - sources."node-fetch-2.6.2" 122565 + sources."node-fetch-2.6.4" 121967 122566 sources."nopt-5.0.0" 121968 122567 sources."npmlog-4.1.2" 121969 122568 sources."number-is-nan-1.0.1" ··· 121991 122590 sources."saxes-5.0.1" 121992 122591 sources."semver-7.3.5" 121993 122592 sources."set-blocking-2.0.0" 121994 - sources."signal-exit-3.0.3" 122593 + sources."signal-exit-3.0.4" 121995 122594 sources."simple-concat-1.0.1" 121996 122595 sources."simple-get-3.1.0" 121997 122596 sources."source-map-0.6.1" ··· 122008 122607 sources."universalify-0.1.2" 122009 122608 ]; 122010 122609 }) 122011 - sources."tr46-2.1.0" 122610 + sources."tr46-0.0.3" 122012 122611 sources."tspan-0.4.0" 122013 122612 sources."type-check-0.3.2" 122014 122613 sources."universalify-2.0.0" ··· 122016 122615 sources."w3c-hr-time-1.0.2" 122017 122616 sources."w3c-xmlserializer-2.0.0" 122018 122617 sources."wavedrom-2.8.1" 122019 - sources."webidl-conversions-6.1.0" 122618 + sources."webidl-conversions-3.0.1" 122020 122619 sources."whatwg-encoding-1.0.5" 122021 122620 sources."whatwg-mimetype-2.3.0" 122022 - sources."whatwg-url-8.7.0" 122621 + sources."whatwg-url-5.0.0" 122023 122622 sources."wide-align-1.1.3" 122024 122623 sources."word-wrap-1.2.3" 122025 122624 (sources."wrap-ansi-7.0.0" // { 122026 122625 dependencies = [ 122027 - sources."ansi-regex-5.0.0" 122626 + sources."ansi-regex-5.0.1" 122028 122627 sources."is-fullwidth-code-point-3.0.0" 122029 122628 sources."string-width-4.2.2" 122030 122629 sources."strip-ansi-6.0.0" ··· 122038 122637 sources."yallist-4.0.0" 122039 122638 (sources."yargs-16.2.0" // { 122040 122639 dependencies = [ 122041 - sources."ansi-regex-5.0.0" 122640 + sources."ansi-regex-5.0.1" 122042 122641 sources."is-fullwidth-code-point-3.0.0" 122043 122642 sources."string-width-4.2.2" 122044 122643 sources."strip-ansi-6.0.0" ··· 122059 122658 web-ext = nodeEnv.buildNodePackage { 122060 122659 name = "web-ext"; 122061 122660 packageName = "web-ext"; 122062 - version = "6.3.0"; 122661 + version = "6.4.0"; 122063 122662 src = fetchurl { 122064 - url = "https://registry.npmjs.org/web-ext/-/web-ext-6.3.0.tgz"; 122065 - sha512 = "yMpSFUN6396oMs09zN+gqYM8gozfz932gduLdRCtspt16qt33c8p+7crGkHkAQmLRloMn2c4I/1RKgMq02Vnhg=="; 122663 + url = "https://registry.npmjs.org/web-ext/-/web-ext-6.4.0.tgz"; 122664 + sha512 = "M8NLCvgpPbJ9spQPlBjNmSEg674lC1SPI/X5UK0tJoz8mqvL70mFTEWrFcmgjDewzh+/DFNKiIOQFPg1UXjYDw=="; 122066 122665 }; 122067 122666 dependencies = [ 122068 122667 sources."@babel/code-frame-7.12.11" 122069 - sources."@babel/helper-validator-identifier-7.14.9" 122668 + sources."@babel/helper-validator-identifier-7.15.7" 122070 122669 (sources."@babel/highlight-7.14.5" // { 122071 122670 dependencies = [ 122072 122671 sources."ansi-styles-3.2.1" ··· 122097 122696 ]; 122098 122697 }) 122099 122698 sources."@humanwhocodes/object-schema-1.2.0" 122100 - sources."@mdn/browser-compat-data-3.3.14" 122699 + sources."@mdn/browser-compat-data-4.0.2" 122101 122700 sources."@sindresorhus/is-0.14.0" 122102 122701 sources."@szmarczak/http-timer-1.1.2" 122103 122702 sources."@types/minimatch-3.0.5" 122104 - sources."@types/node-16.9.0" 122105 - sources."@types/yauzl-2.9.1" 122703 + sources."@types/node-16.9.4" 122704 + sources."@types/yauzl-2.9.2" 122106 122705 sources."acorn-7.4.1" 122107 122706 sources."acorn-jsx-5.3.2" 122108 - (sources."addons-linter-3.12.0" // { 122707 + (sources."addons-linter-3.14.0" // { 122109 122708 dependencies = [ 122110 - sources."yargs-17.1.0" 122709 + sources."yargs-17.1.1" 122111 122710 ]; 122112 122711 }) 122113 - sources."addons-scanner-utils-4.9.0" 122114 - sources."adm-zip-0.5.5" 122712 + sources."addons-scanner-utils-4.10.0" 122713 + sources."adm-zip-0.5.6" 122115 122714 sources."ajv-6.12.6" 122116 122715 sources."ajv-merge-patch-4.1.0" 122117 122716 (sources."ansi-align-3.0.0" // { ··· 122147 122746 sources."bcrypt-pbkdf-1.0.2" 122148 122747 sources."bluebird-2.9.34" 122149 122748 sources."boolbase-1.0.0" 122150 - sources."boxen-5.0.1" 122749 + sources."boxen-5.1.2" 122151 122750 sources."brace-expansion-1.1.11" 122152 122751 sources."buffer-crc32-0.2.13" 122153 122752 sources."buffer-equal-constant-time-1.0.1" ··· 122170 122769 sources."cli-boxes-2.2.1" 122171 122770 (sources."cliui-7.0.4" // { 122172 122771 dependencies = [ 122173 - sources."ansi-regex-5.0.0" 122772 + sources."ansi-regex-5.0.1" 122174 122773 sources."strip-ansi-6.0.0" 122175 122774 ]; 122176 122775 }) ··· 122186 122785 sources."concat-map-0.0.1" 122187 122786 sources."concat-stream-1.6.2" 122188 122787 sources."configstore-5.0.1" 122189 - sources."core-js-3.16.0" 122788 + sources."core-js-3.17.2" 122190 122789 sources."core-util-is-1.0.2" 122191 122790 sources."cross-spawn-7.0.3" 122192 122791 sources."crypto-random-string-2.0.0" ··· 122234 122833 sources."escape-string-regexp-4.0.0" 122235 122834 (sources."eslint-7.32.0" // { 122236 122835 dependencies = [ 122237 - sources."ansi-regex-5.0.0" 122836 + sources."ansi-regex-5.0.1" 122238 122837 sources."debug-4.3.2" 122239 122838 sources."eslint-visitor-keys-2.1.0" 122240 122839 (sources."espree-7.3.1" // { ··· 122286 122885 sources."fast-levenshtein-2.0.6" 122287 122886 sources."fast-redact-3.0.2" 122288 122887 sources."fast-safe-stringify-2.1.1" 122888 + sources."fastify-warning-0.2.0" 122289 122889 sources."fd-slicer-1.1.0" 122290 122890 sources."file-entry-cache-6.0.1" 122291 122891 (sources."firefox-profile-4.2.0" // { ··· 122463 123063 }) 122464 123064 sources."normalize-url-4.5.1" 122465 123065 sources."npm-run-path-4.0.1" 122466 - sources."nth-check-2.0.0" 123066 + sources."nth-check-2.0.1" 122467 123067 sources."oauth-sign-0.9.0" 122468 123068 sources."object-assign-4.1.1" 122469 123069 sources."object-is-1.1.5" ··· 122491 123091 sources."path-key-3.1.1" 122492 123092 sources."pend-1.2.0" 122493 123093 sources."performance-now-2.1.0" 122494 - sources."pino-6.13.0" 123094 + sources."pino-6.13.2" 122495 123095 sources."pino-std-serializers-3.2.0" 122496 123096 sources."postcss-8.3.6" 122497 123097 sources."prelude-ls-1.2.1" ··· 122504 123104 sources."pupa-2.1.1" 122505 123105 sources."qs-6.5.2" 122506 123106 sources."queue-6.0.2" 122507 - sources."quick-format-unescaped-4.0.3" 123107 + sources."quick-format-unescaped-4.0.4" 122508 123108 (sources."rc-1.2.8" // { 122509 123109 dependencies = [ 122510 123110 sources."ini-1.3.8" ··· 122554 123154 sources."shebang-regex-3.0.0" 122555 123155 sources."shell-quote-1.6.1" 122556 123156 sources."shellwords-0.1.1" 122557 - sources."sign-addon-3.7.0" 122558 - sources."signal-exit-3.0.3" 123157 + sources."sign-addon-3.8.0" 123158 + sources."signal-exit-3.0.4" 122559 123159 sources."slice-ansi-4.0.0" 122560 123160 sources."sonic-boom-1.4.1" 122561 123161 sources."source-map-0.6.1" ··· 122569 123169 sources."stream-to-promise-3.0.0" 122570 123170 (sources."string-width-4.2.2" // { 122571 123171 dependencies = [ 122572 - sources."ansi-regex-5.0.0" 123172 + sources."ansi-regex-5.0.1" 122573 123173 sources."strip-ansi-6.0.0" 122574 123174 ]; 122575 123175 }) ··· 122587 123187 sources."supports-color-7.2.0" 122588 123188 (sources."table-6.7.1" // { 122589 123189 dependencies = [ 122590 - sources."ajv-8.6.2" 122591 - sources."ansi-regex-5.0.0" 123190 + sources."ajv-8.6.3" 123191 + sources."ansi-regex-5.0.1" 122592 123192 sources."json-schema-traverse-1.0.0" 122593 123193 sources."strip-ansi-6.0.0" 122594 123194 ]; ··· 122628 123228 sources."word-wrap-1.2.3" 122629 123229 (sources."wrap-ansi-7.0.0" // { 122630 123230 dependencies = [ 122631 - sources."ansi-regex-5.0.0" 123231 + sources."ansi-regex-5.0.1" 122632 123232 sources."strip-ansi-6.0.0" 122633 123233 ]; 122634 123234 }) ··· 122662 123262 webpack = nodeEnv.buildNodePackage { 122663 123263 name = "webpack"; 122664 123264 packageName = "webpack"; 122665 - version = "5.52.0"; 123265 + version = "5.53.0"; 122666 123266 src = fetchurl { 122667 - url = "https://registry.npmjs.org/webpack/-/webpack-5.52.0.tgz"; 122668 - sha512 = "yRZOat8jWGwBwHpco3uKQhVU7HYaNunZiJ4AkAVQkPCUGoZk/tiIXiwG+8HIy/F+qsiZvSOa+GLQOj3q5RKRYg=="; 123267 + url = "https://registry.npmjs.org/webpack/-/webpack-5.53.0.tgz"; 123268 + sha512 = "RZ1Z3z3ni44snoWjfWeHFyzvd9HMVYDYC5VXmlYUT6NWgEOWdCNpad5Fve2CzzHoRED7WtsKe+FCyP5Vk4pWiQ=="; 122669 123269 }; 122670 123270 dependencies = [ 122671 123271 sources."@types/eslint-7.28.0" 122672 123272 sources."@types/eslint-scope-3.7.1" 122673 123273 sources."@types/estree-0.0.50" 122674 123274 sources."@types/json-schema-7.0.9" 122675 - sources."@types/node-16.9.0" 123275 + sources."@types/node-16.9.4" 122676 123276 sources."@webassemblyjs/ast-1.11.1" 122677 123277 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 122678 123278 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 122696 123296 sources."ajv-keywords-3.5.2" 122697 123297 sources."browserslist-4.17.0" 122698 123298 sources."buffer-from-1.1.2" 122699 - sources."caniuse-lite-1.0.30001255" 123299 + sources."caniuse-lite-1.0.30001259" 122700 123300 sources."chrome-trace-event-1.0.3" 122701 123301 sources."colorette-1.4.0" 122702 123302 sources."commander-2.20.3" 122703 - sources."electron-to-chromium-1.3.833" 122704 - sources."enhanced-resolve-5.8.2" 123303 + sources."electron-to-chromium-1.3.845" 123304 + sources."enhanced-resolve-5.8.3" 122705 123305 sources."es-module-lexer-0.7.1" 122706 123306 sources."escalade-3.1.1" 122707 123307 sources."eslint-scope-5.1.1" ··· 122717 123317 sources."glob-to-regexp-0.4.1" 122718 123318 sources."graceful-fs-4.2.8" 122719 123319 sources."has-flag-4.0.0" 122720 - sources."jest-worker-27.1.1" 123320 + sources."jest-worker-27.2.0" 122721 123321 sources."json-parse-better-errors-1.0.2" 122722 123322 sources."json-schema-traverse-0.4.1" 122723 123323 sources."loader-runner-4.2.0" ··· 122725 123325 sources."mime-db-1.49.0" 122726 123326 sources."mime-types-2.1.32" 122727 123327 sources."neo-async-2.6.2" 122728 - sources."node-releases-1.1.75" 123328 + sources."node-releases-1.1.76" 122729 123329 sources."p-limit-3.1.0" 122730 123330 sources."punycode-2.1.1" 122731 123331 sources."randombytes-2.1.0" ··· 122735 123335 sources."source-map-0.6.1" 122736 123336 sources."source-map-support-0.5.20" 122737 123337 sources."supports-color-8.1.1" 122738 - sources."tapable-2.2.0" 122739 - (sources."terser-5.7.2" // { 123338 + sources."tapable-2.2.1" 123339 + (sources."terser-5.9.0" // { 122740 123340 dependencies = [ 122741 123341 sources."source-map-0.7.3" 122742 123342 ]; ··· 122744 123344 sources."terser-webpack-plugin-5.2.4" 122745 123345 sources."uri-js-4.4.1" 122746 123346 sources."watchpack-2.2.0" 122747 - sources."webpack-sources-3.2.0" 123347 + sources."webpack-sources-3.2.1" 122748 123348 sources."yocto-queue-0.1.0" 122749 123349 ]; 122750 123350 buildInputs = globalBuildInputs; ··· 122766 123366 sha512 = "+iBSWsX16uVna5aAYN6/wjhJy1q/GKk4KjKvfg90/6hykCTSgozbfz5iRgDTSJt/LgSbYxdBX3KBHeobIs+ZEw=="; 122767 123367 }; 122768 123368 dependencies = [ 122769 - sources."@discoveryjs/json-ext-0.5.3" 123369 + sources."@discoveryjs/json-ext-0.5.5" 122770 123370 sources."@webpack-cli/configtest-1.0.4" 122771 123371 sources."@webpack-cli/info-1.3.0" 122772 123372 sources."@webpack-cli/serve-1.5.2" ··· 122809 123409 sources."shallow-clone-3.0.1" 122810 123410 sources."shebang-command-2.0.0" 122811 123411 sources."shebang-regex-3.0.0" 122812 - sources."signal-exit-3.0.3" 123412 + sources."signal-exit-3.0.4" 122813 123413 sources."strip-final-newline-2.0.0" 122814 123414 sources."v8-compile-cache-2.3.0" 122815 123415 sources."webpack-merge-5.8.0" ··· 122829 123429 webpack-dev-server = nodeEnv.buildNodePackage { 122830 123430 name = "webpack-dev-server"; 122831 123431 packageName = "webpack-dev-server"; 122832 - version = "4.1.1"; 123432 + version = "4.2.1"; 122833 123433 src = fetchurl { 122834 - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.1.1.tgz"; 122835 - sha512 = "Kl1mnCEw8Cy1Kw173gCxLIB242LfPKEOj9WoKhKz/MbryZTNrILzOJTk8kiczw/YUEPzn3gcltCQv6hDsLudRg=="; 123434 + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.2.1.tgz"; 123435 + sha512 = "SQrIyQDZsTaF84p/WMAXNRKxjTeIaewhDIiHYZ423ENhNAsQWyubvqPTn0IoLMGkbhWyWv8/GYnCjItt0ZNC5w=="; 122836 123436 }; 122837 123437 dependencies = [ 122838 123438 sources."@nodelib/fs.scandir-2.1.5" ··· 122840 123440 sources."@nodelib/fs.walk-1.2.8" 122841 123441 sources."@types/http-proxy-1.17.7" 122842 123442 sources."@types/json-schema-7.0.9" 122843 - sources."@types/node-16.9.0" 123443 + sources."@types/node-16.9.4" 122844 123444 sources."@types/retry-0.12.1" 122845 123445 sources."accepts-1.3.7" 122846 123446 sources."aggregate-error-3.1.0" 122847 123447 sources."ajv-6.12.6" 122848 123448 sources."ajv-keywords-3.5.2" 122849 123449 sources."ansi-html-community-0.0.8" 122850 - sources."ansi-regex-6.0.0" 123450 + sources."ansi-regex-6.0.1" 122851 123451 sources."anymatch-3.1.2" 122852 123452 sources."array-flatten-2.1.2" 122853 123453 sources."array-union-2.1.0" ··· 122915 123515 sources."fast-deep-equal-3.1.3" 122916 123516 sources."fast-glob-3.2.7" 122917 123517 sources."fast-json-stable-stringify-2.1.0" 122918 - sources."fastq-1.12.0" 123518 + sources."fastq-1.13.0" 122919 123519 sources."faye-websocket-0.11.4" 122920 123520 sources."fill-range-7.0.1" 122921 123521 sources."finalhandler-1.1.2" 122922 - sources."follow-redirects-1.14.3" 123522 + sources."follow-redirects-1.14.4" 122923 123523 sources."forwarded-0.2.0" 122924 123524 sources."fresh-0.5.2" 122925 123525 sources."fs-monkey-1.0.3" ··· 122985 123585 sources."json-schema-traverse-0.4.1" 122986 123586 sources."lodash-4.17.21" 122987 123587 sources."media-typer-0.3.0" 122988 - sources."memfs-3.2.4" 123588 + sources."memfs-3.3.0" 122989 123589 sources."merge-descriptors-1.0.1" 122990 123590 sources."merge-stream-2.0.0" 122991 123591 sources."merge2-1.4.1" ··· 123076 123676 sources."setprototypeof-1.1.1" 123077 123677 sources."shebang-command-2.0.0" 123078 123678 sources."shebang-regex-3.0.0" 123079 - sources."signal-exit-3.0.3" 123679 + sources."signal-exit-3.0.4" 123080 123680 sources."slash-3.0.0" 123081 123681 sources."sockjs-0.3.21" 123082 123682 (sources."spdy-4.0.2" // { ··· 123097 123697 sources."safe-buffer-5.1.2" 123098 123698 ]; 123099 123699 }) 123100 - sources."strip-ansi-7.0.0" 123700 + sources."strip-ansi-7.0.1" 123101 123701 sources."strip-final-newline-2.0.0" 123102 123702 sources."thunky-1.1.0" 123103 123703 sources."to-regex-range-5.0.1" ··· 123157 123757 ]; 123158 123758 }) 123159 123759 sources."fast-json-stable-stringify-2.1.0" 123160 - sources."fastq-1.12.0" 123760 + sources."fastq-1.13.0" 123161 123761 sources."fill-range-7.0.1" 123162 123762 sources."glob-parent-6.0.1" 123163 123763 sources."globby-11.0.4" ··· 123198 123798 webtorrent-cli = nodeEnv.buildNodePackage { 123199 123799 name = "webtorrent-cli"; 123200 123800 packageName = "webtorrent-cli"; 123201 - version = "3.5.4"; 123801 + version = "4.0.0"; 123202 123802 src = fetchurl { 123203 - url = "https://registry.npmjs.org/webtorrent-cli/-/webtorrent-cli-3.5.4.tgz"; 123204 - sha512 = "7YZv5fSs6tf0JPSQT5eT02t+IgZR7sHPGGSbT2ZmE4VO3X1a4WhSIP4tIpQCNxbzcKCCe6NFimpTxlxXNF/KEQ=="; 123803 + url = "https://registry.npmjs.org/webtorrent-cli/-/webtorrent-cli-4.0.0.tgz"; 123804 + sha512 = "WFs8PWeUO3ck41NVy/fBNiWcmtyrvIanwdZguh2V8Gn27VZSfzcuazFWsbW+t5oNTFk9ToMwD5+PhV7ImzS07Q=="; 123205 123805 }; 123206 123806 dependencies = [ 123207 123807 sources."@leichtgewicht/ip-codec-2.0.3" ··· 123216 123816 sources."@protobufjs/pool-1.1.0" 123217 123817 sources."@protobufjs/utf8-1.1.0" 123218 123818 sources."@types/long-4.0.1" 123219 - sources."@types/node-16.9.0" 123819 + sources."@types/node-16.9.4" 123220 123820 sources."addr-to-ip-port-1.5.4" 123221 123821 sources."airplay-js-0.3.0" 123222 - sources."ansi-regex-5.0.0" 123822 + sources."ansi-regex-5.0.1" 123223 123823 sources."ansi-styles-4.3.0" 123224 123824 sources."balanced-match-1.0.2" 123225 123825 sources."base64-js-1.5.1" ··· 123280 123880 sources."chrome-dgram-3.0.6" 123281 123881 sources."chrome-dns-1.0.1" 123282 123882 sources."chrome-net-3.3.4" 123283 - (sources."chromecasts-1.10.0" // { 123883 + (sources."chromecasts-1.10.1" // { 123284 123884 dependencies = [ 123285 123885 sources."mime-1.6.0" 123286 123886 ]; ··· 123387 123987 sources."mp4-box-encoding-1.4.1" 123388 123988 sources."mp4-stream-3.1.3" 123389 123989 sources."ms-2.0.0" 123390 - (sources."multicast-dns-7.2.3" // { 123990 + (sources."multicast-dns-git://github.com/webtorrent/multicast-dns.git#fix-setMulticastInterface" // { 123391 123991 dependencies = [ 123392 123992 sources."thunky-1.1.0" 123393 123993 ]; ··· 123397 123997 sources."netmask-2.0.2" 123398 123998 sources."network-address-1.1.2" 123399 123999 sources."next-event-1.0.0" 123400 - sources."node-gyp-build-4.2.3" 124000 + sources."node-gyp-build-4.3.0" 123401 124001 sources."node-ssdp-2.9.1" 123402 124002 sources."nodebmc-0.0.7" 123403 124003 sources."on-finished-2.3.0" ··· 123638 124238 sha512 = "tpNqBCpTXplnduzw5XC+FF8zNJ9L/UXmvQyyQj7NKrDNavbJtHvzmZplL5ES/RCnjX7JR7W9wz5GVDXVP3dHUQ=="; 123639 124239 }; 123640 124240 dependencies = [ 123641 - sources."ansi-regex-5.0.0" 124241 + sources."ansi-regex-5.0.1" 123642 124242 sources."ansi-styles-4.3.0" 123643 124243 sources."balanced-match-1.0.2" 123644 124244 sources."brace-expansion-1.1.11" ··· 123877 124477 sources."config-chain-1.1.13" 123878 124478 sources."configstore-3.1.5" 123879 124479 sources."console-control-strings-1.1.0" 123880 - sources."core-js-3.17.3" 124480 + sources."core-js-3.18.0" 123881 124481 sources."core-util-is-1.0.3" 123882 124482 sources."create-error-class-3.0.2" 123883 124483 sources."cross-spawn-6.0.5" 123884 124484 sources."crypto-random-string-1.0.0" 123885 124485 sources."currently-unhandled-0.4.1" 123886 124486 sources."dashdash-1.14.1" 123887 - sources."dateformat-4.5.1" 124487 + sources."dateformat-4.6.3" 123888 124488 sources."debug-2.6.9" 123889 124489 sources."debuglog-1.0.1" 123890 124490 sources."decamelize-1.2.0" ··· 123931 124531 sources."fast-deep-equal-3.1.3" 123932 124532 sources."fast-glob-3.2.7" 123933 124533 sources."fast-json-stable-stringify-2.1.0" 123934 - sources."fastq-1.12.0" 124534 + sources."fastq-1.13.0" 123935 124535 sources."figures-2.0.0" 123936 124536 sources."filelist-1.0.2" 123937 124537 sources."fill-range-7.0.1" ··· 124137 124737 sources."mimic-response-1.0.1" 124138 124738 sources."minimatch-3.0.4" 124139 124739 sources."minimist-1.2.5" 124140 - sources."minipass-3.1.3" 124740 + sources."minipass-3.1.5" 124141 124741 sources."minipass-collect-1.0.2" 124142 124742 sources."minipass-fetch-1.4.1" 124143 124743 sources."minipass-flush-1.0.5" ··· 124219 124819 sources."open-6.4.0" 124220 124820 (sources."ora-5.4.1" // { 124221 124821 dependencies = [ 124222 - sources."ansi-regex-5.0.0" 124822 + sources."ansi-regex-5.0.1" 124223 124823 sources."ansi-styles-4.3.0" 124224 124824 sources."chalk-4.1.2" 124225 124825 sources."cli-cursor-3.1.0" ··· 124384 124984 sources."set-blocking-2.0.0" 124385 124985 sources."shebang-command-1.2.0" 124386 124986 sources."shebang-regex-1.0.0" 124387 - sources."signal-exit-3.0.3" 124987 + sources."signal-exit-3.0.4" 124388 124988 sources."slash-3.0.0" 124389 124989 sources."smart-buffer-4.2.0" 124390 124990 sources."socks-2.6.1" 124391 - (sources."socks-proxy-agent-6.0.0" // { 124991 + (sources."socks-proxy-agent-6.1.0" // { 124392 124992 dependencies = [ 124393 124993 sources."debug-4.3.2" 124394 124994 sources."ms-2.1.2" ··· 124588 125188 }) 124589 125189 sources."get-stream-6.0.1" 124590 125190 sources."has-flag-4.0.0" 124591 - sources."inquirer-8.1.2" 125191 + sources."inquirer-8.1.5" 124592 125192 sources."is-fullwidth-code-point-3.0.0" 124593 125193 sources."is-stream-2.0.1" 124594 125194 sources."locate-path-6.0.0" ··· 124610 125210 sources."string-width-4.2.2" 124611 125211 (sources."strip-ansi-6.0.0" // { 124612 125212 dependencies = [ 124613 - sources."ansi-regex-5.0.0" 125213 + sources."ansi-regex-5.0.1" 124614 125214 ]; 124615 125215 }) 124616 125216 sources."supports-color-7.2.0" ··· 124657 125257 sources."@nodelib/fs.walk-1.2.8" 124658 125258 sources."@types/fs-extra-9.0.12" 124659 125259 sources."@types/minimist-1.2.2" 124660 - sources."@types/node-16.9.0" 125260 + sources."@types/node-16.9.4" 124661 125261 sources."@types/node-fetch-2.5.12" 124662 125262 sources."ansi-styles-4.3.0" 124663 125263 sources."array-union-3.0.1" ··· 124672 125272 sources."duplexer-0.1.2" 124673 125273 sources."event-stream-3.3.4" 124674 125274 sources."fast-glob-3.2.7" 124675 - sources."fastq-1.12.0" 125275 + sources."fastq-1.13.0" 124676 125276 sources."fill-range-7.0.1" 124677 125277 sources."form-data-3.0.1" 124678 125278 sources."from-0.1.7" ··· 124693 125293 sources."mime-db-1.49.0" 124694 125294 sources."mime-types-2.1.32" 124695 125295 sources."minimist-1.2.5" 124696 - sources."node-fetch-2.6.2" 125296 + sources."node-fetch-2.6.4" 124697 125297 sources."path-type-4.0.0" 124698 125298 sources."pause-stream-0.0.11" 124699 125299 sources."picomatch-2.3.0" ··· 124707 125307 sources."supports-color-7.2.0" 124708 125308 sources."through-2.3.8" 124709 125309 sources."to-regex-range-5.0.1" 125310 + sources."tr46-0.0.3" 124710 125311 sources."universalify-2.0.0" 125312 + sources."webidl-conversions-3.0.1" 125313 + sources."whatwg-url-5.0.0" 124711 125314 sources."which-2.0.2" 124712 125315 ]; 124713 125316 buildInputs = globalBuildInputs;
+2 -2
pkgs/development/python-modules/ailment/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "ailment"; 10 - version = "9.0.9947"; 10 + version = "9.0.10010"; 11 11 disabled = pythonOlder "3.6"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "angr"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-4QwpIZbS+ZPjKp2oKSOzpjCK3Bi5AdntKTO8Ujx2TPE="; 17 + sha256 = "sha256-kEHbuc5gmurMznTyfn/KnZEClLHJgv2CzK4O30dIgTg="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [ pyvex ];
+2 -2
pkgs/development/python-modules/angr/default.nix
··· 43 43 44 44 buildPythonPackage rec { 45 45 pname = "angr"; 46 - version = "9.0.9947"; 46 + version = "9.0.10010"; 47 47 disabled = pythonOlder "3.6"; 48 48 49 49 src = fetchFromGitHub { 50 50 owner = pname; 51 51 repo = pname; 52 52 rev = "v${version}"; 53 - sha256 = "sha256-qE2LIfcKwMAbmEXycPYo4T1WU9A6tr6mDYcxDs21ySI="; 53 + sha256 = "sha256-UWg3lrBMfQsR09wbx8F2nml8eymk7V60gwFbPXwNqAw="; 54 54 }; 55 55 56 56 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/angrop/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "angrop"; 12 - version = "9.0.9947"; 12 + version = "9.0.10010"; 13 13 disabled = pythonOlder "3.6"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "angr"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-f9T2M2ilT8v6G87sbJ1r192zEpBeuWUpgQP9sYsUoeU="; 19 + sha256 = "sha256-VCVvJI98gyVZC2SPb5hd8FKLTYUhEILJtieb4IQGL2c="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/archinfo/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "archinfo"; 10 - version = "9.0.9947"; 10 + version = "9.0.10010"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "angr"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-DffiOMJUxreoWyPxelEL7mzaekwInYLquTS7HBIUJiM="; 16 + sha256 = "sha256-Eyquud4Cc0bU4z+ElWs/gPzuNRtNKPMxWjSLpwFlBXQ="; 17 17 }; 18 18 19 19 checkInputs = [
+5
pkgs/development/python-modules/bitlist/default.nix
··· 24 24 nose 25 25 ]; 26 26 27 + postPatch = '' 28 + substituteInPlace setup.py \ 29 + --replace "parts~=1.0.3" "parts>=1.0.3" 30 + ''; 31 + 27 32 pythonImportsCheck = [ "bitlist" ]; 28 33 29 34 meta = with lib; {
+2 -2
pkgs/development/python-modules/claripy/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "claripy"; 16 - version = "9.0.9947"; 16 + version = "9.0.10010"; 17 17 disabled = pythonOlder "3.6"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "angr"; 21 21 repo = pname; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-3nG173x0N4enGTN52wd0HbHbJJrAI7IKSp7FHQ/v/5U="; 23 + sha256 = "sha256-bcVbGDUTVLQ6ybPA2HjRlHJj1gnYK2dazhZXc9k0uSY="; 24 24 }; 25 25 26 26 # Use upstream z3 implementation
+2 -2
pkgs/development/python-modules/cle/default.nix
··· 15 15 16 16 let 17 17 # The binaries are following the argr projects release cycle 18 - version = "9.0.9947"; 18 + version = "9.0.10010"; 19 19 20 20 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 21 21 binaries = fetchFromGitHub { ··· 35 35 owner = "angr"; 36 36 repo = pname; 37 37 rev = "v${version}"; 38 - sha256 = "sha256-xlzc5Bde/OFlGJe9e4qb7QSszWyINJkQfEzY0wTaKD0="; 38 + sha256 = "sha256-Fq/xkcG6wLRaXG37UEf/3r+EsacpkP2iA+HZLT05ETg="; 39 39 }; 40 40 41 41 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/dask/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "dask"; 25 - version = "2021.08.1"; 25 + version = "2021.09.0"; 26 26 format = "setuptools"; 27 27 28 28 disabled = pythonOlder "3.7"; ··· 31 31 owner = "dask"; 32 32 repo = pname; 33 33 rev = version; 34 - sha256 = "sha256-HnrHOp3Y/iLYaK3KVp6NJrK68BMqX8lTl/wLosiGc7k="; 34 + sha256 = "sha256-Gb6eQ5Hebx3mBNGvgB5yvM4dPsIxJl9ka++yYC/Zf7Q="; 35 35 }; 36 36 37 37 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/distributed/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "distributed"; 22 - version = "2021.8.1"; 22 + version = "2021.9.0"; 23 23 disabled = pythonOlder "3.6"; 24 24 25 25 # get full repository need conftest.py to run tests 26 26 src = fetchPypi { 27 27 inherit pname version; 28 - sha256 = "c13ac10ecd9ee5f0ff67f5697149062d6e483f23a079918df1ab2e19b11fa77d"; 28 + sha256 = "sha256-IiKc0rJYODCtGC9AAOkjbww/VG7PdfrqJ32IHU9xWbo="; 29 29 }; 30 30 31 31 propagatedBuildInputs = [
+54
pkgs/development/python-modules/einops/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonPackage 4 + , numpy 5 + , nose 6 + , nbformat 7 + , nbconvert 8 + , jupyter 9 + , chainer 10 + , pytorch 11 + , mxnet 12 + , tensorflow 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "einops"; 17 + version = "0.3.2"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "arogozhnikov"; 21 + repo = pname; 22 + rev = "v${version}"; 23 + sha256 = "0ix094cfh6w4bvx6ymp5dpm35y9nkaibcn1y50g6kwdp4f0473y8"; 24 + }; 25 + 26 + checkInputs = [ 27 + nose 28 + numpy 29 + # For notebook tests 30 + nbformat 31 + nbconvert 32 + jupyter 33 + # For backend tests 34 + chainer 35 + pytorch 36 + mxnet 37 + tensorflow 38 + ]; 39 + 40 + # No CUDA in sandbox 41 + EINOPS_SKIP_CUPY = 1; 42 + 43 + checkPhase = '' 44 + export HOME=$TMPDIR 45 + nosetests -v -w tests 46 + ''; 47 + 48 + meta = { 49 + description = "Flexible and powerful tensor operations for readable and reliable code"; 50 + homepage = "https://github.com/arogozhnikov/einops"; 51 + license = lib.licenses.mit; 52 + maintainers = with lib.maintainers; [ yl3dy ]; 53 + }; 54 + }
+2 -2
pkgs/development/python-modules/fsspec/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "fsspec"; 17 - version = "2021.07.0"; 17 + version = "2021.08.1"; 18 18 disabled = pythonOlder "3.6"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "intake"; 22 22 repo = "filesystem_spec"; 23 23 rev = version; 24 - hash = "sha256-I0oR7qxMCB2egyOx69hY0++H7fzCdK3ZyyzCvP3yXAs="; 24 + sha256 = "0xxzcp69div1sy975x82k754snbsksyqr73h6jiasdxj8wka49s0"; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/gcsfs/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "gcsfs"; 20 - version = "2021.07.0"; 20 + version = "2021.08.1"; 21 21 disabled = pythonOlder "3.6"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "dask"; 25 25 repo = pname; 26 26 rev = version; 27 - sha256 = "sha256-nC/uyhKKam3W+cOOTBULPeG6Hy2bExWYNOfDs1cPt1Y="; 27 + sha256 = "sha256-SPQcSdEEbU791oqkvuwmvyvQ6HglvoWKMi5SdnRcEZI="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-dns/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "google-cloud-dns"; 12 - version = "0.33.0"; 12 + version = "0.33.1"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "sha256-iPAJMzxefRjLA0tGUfjAs15ZJvcyBUJB1QCMfMBo96I="; 16 + sha256 = "e4aa73fc6ca22764fd7294de19b602dff084d924c77366c136fb9c28e70ae739"; 17 17 }; 18 18 19 19 propagatedBuildInputs = [ google-api-core google-cloud-core ];
+2 -2
pkgs/development/python-modules/google-cloud-runtimeconfig/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "google-cloud-runtimeconfig"; 12 - version = "0.32.4"; 12 + version = "0.32.5"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "ee239455a5393b51018071678ec0f4cc58ddf0904390e9f317f704f158ab16ab"; 16 + sha256 = "2f7b2a69f4506239a54f2d88dda872db27fdb0fdfa0d5a9494fefb7ae360aa20"; 17 17 }; 18 18 19 19 propagatedBuildInputs = [ google-api-core google-cloud-core ];
+2 -2
pkgs/development/python-modules/google-cloud-spanner/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "google-cloud-spanner"; 17 - version = "3.9.0"; 17 + version = "3.10.0"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "53fe3d903363fb17db155fd05f5356d9b310a519fbebd53903aa426a31cad706"; 21 + sha256 = "49b946f9ae67ebae69d39f1f4ceabe88971b880b92277ce037651db49e5cf167"; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-speech/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-speech"; 14 - version = "2.8.0"; 14 + version = "2.9.0"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "3750fd988082b880ed1ec6f3d59c4f29f4cd0df3804a58d6c151d4bf15d3a597"; 18 + sha256 = "2368beb60e5cdeb6db527509cdcc8fc1156eddfc0c73da8f62d60658a551eee1"; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ libcst google-api-core proto-plus ];
+2 -2
pkgs/development/python-modules/google-crc32c/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "google-crc32c"; 5 - version = "1.1.3"; 5 + version = "1.2.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "googleapis"; 9 9 repo = "python-crc32c"; 10 10 rev = "v${version}"; 11 - sha256 = "1m2hafyfagvyabizr4fhcp2s2s3x56k006fhvl1qzk994qjhyzqk"; 11 + sha256 = "0snpqmj2avgqvfd7w26g03w78s6phwd8h55bvpjwm4lwj8hm8id7"; 12 12 }; 13 13 14 14 buildInputs = [ crc32c ];
+2 -7
pkgs/development/python-modules/google-resumable-media/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-resumable-media"; 15 - version = "2.0.2"; 15 + version = "2.0.3"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "36d682161fdcbfa29681212c210fabecbf6849a505a0cbc54b7f70a10a5278a2"; 19 + sha256 = "b4b4709d04a6a03cbec746c2b5cb18f1f9878bf1ef3cd61908842a3d94c20471"; 20 20 }; 21 - 22 - postPatch = '' 23 - substituteInPlace setup.py \ 24 - --replace "google-crc32c >= 1.0, <= 1.1.2" "google-crc32c~=1.0" 25 - ''; 26 21 27 22 propagatedBuildInputs = [ google-auth google-crc32c requests ]; 28 23
+2 -2
pkgs/development/python-modules/imap-tools/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "imap-tools"; 10 - version = "0.47.0"; 10 + version = "0.48.1"; 11 11 12 12 disabled = isPy27; 13 13 ··· 15 15 owner = "ikvk"; 16 16 repo = "imap_tools"; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-7I7g/jxaVQDvhoGLWVerqYZhFhGUM/FwH1XCpLpg3D0="; 18 + sha256 = "sha256-AS407jsDk+dAz1DPM44vTUQEleohr9xKnjgCw5Rjs9M="; 19 19 }; 20 20 21 21 checkInputs = [
+2 -2
pkgs/development/python-modules/impacket/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, flask, ldapdomaindump, pycryptodomex, pyasn1, pyopenssl, chardet }: 1 + { lib, buildPythonPackage, fetchPypi, flask, ldapdomaindump, pycryptodomex, pyasn1, pyopenssl, chardet, setuptools }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "impacket"; ··· 9 9 sha256 = "1c1be8a50cdbe3cffc566ba64f552b1b28bcc79b7a406b833956b49c56d77184"; 10 10 }; 11 11 12 - propagatedBuildInputs = [ flask ldapdomaindump pycryptodomex pyasn1 pyopenssl chardet ]; 12 + propagatedBuildInputs = [ flask ldapdomaindump pycryptodomex pyasn1 pyopenssl chardet setuptools ]; 13 13 14 14 # fail with: 15 15 # RecursionError: maximum recursion depth exceeded
+45
pkgs/development/python-modules/intake-parquet/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , pandas 6 + , dask 7 + , fastparquet 8 + , pyarrow 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "intake-parquet"; 13 + version = "0.2.3"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "intake"; 17 + repo = pname; 18 + rev = version; 19 + sha256 = "037jd3qkk6dybssp570kzvaln2c6pk2avd2b5mll42gaxdxxnp02"; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + pandas 24 + dask 25 + fastparquet 26 + pyarrow 27 + ]; 28 + 29 + postPatch = '' 30 + # Break circular dependency 31 + substituteInPlace requirements.txt \ 32 + --replace "intake" "" 33 + ''; 34 + 35 + doCheck = false; 36 + 37 + #pythonImportsCheck = [ "intake_parquet" ]; 38 + 39 + meta = with lib; { 40 + description = "Parquet plugin for Intake"; 41 + homepage = "https://github.com/intake/intake-parquet"; 42 + license = licenses.bsd2; 43 + maintainers = with maintainers; [ fab ]; 44 + }; 45 + }
+11 -5
pkgs/development/python-modules/intake/default.nix
··· 5 5 , dask 6 6 , holoviews 7 7 , hvplot 8 + , fsspec 8 9 , jinja2 9 10 , msgpack 10 11 , msgpack-numpy 11 12 , numpy 12 13 , pandas 13 14 , panel 15 + , intake-parquet 14 16 , pyarrow 15 17 , pytestCheckHook 16 18 , pythonOlder ··· 24 26 buildPythonPackage rec { 25 27 pname = "intake"; 26 28 version = "0.6.3"; 29 + 27 30 disabled = pythonOlder "3.6"; 28 31 29 32 src = fetchPypi { ··· 49 52 tornado 50 53 ]; 51 54 52 - checkInputs = [ pyarrow pytestCheckHook ]; 55 + checkInputs = [ 56 + fsspec 57 + intake-parquet 58 + pyarrow 59 + pytestCheckHook 60 + ]; 53 61 54 62 postPatch = '' 55 63 # Is in setup_requires but not used in setup.py... ··· 64 72 ''; 65 73 66 74 disabledTests = [ 67 - # disable tests which touch network 75 + # disable tests which touch network and are broken 68 76 "test_discover" 69 77 "test_filtered_compressed_cache" 70 78 "test_get_dir" 71 79 "test_remote_cat" 72 80 "http" 73 - 74 - # broken test 75 81 "test_read_pattern" 76 82 "test_remote_arr" 77 83 ]; ··· 80 86 description = "Data load and catalog system"; 81 87 homepage = "https://github.com/ContinuumIO/intake"; 82 88 license = licenses.bsd2; 83 - maintainers = [ maintainers.costrouc ]; 89 + maintainers = with maintainers; [ costrouc ]; 84 90 }; 85 91 }
+2 -2
pkgs/development/python-modules/keystoneauth1/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "keystoneauth1"; 27 - version = "4.3.1"; 27 + version = "4.4.0"; 28 28 29 29 src = fetchPypi { 30 30 inherit pname version; 31 - sha256 = "93605430a6d1424f31659bc5685e9dc1be9a6254e88c99f00cffc0a60c648a64"; 31 + sha256 = "34662a6be67ab29424aabe6f99a8d7eb6b88d293109a07e60fea123ebffb314f"; 32 32 }; 33 33 34 34 postPatch = ''
+84
pkgs/development/python-modules/ocrmypdf/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , cffi 4 + , coloredlogs 5 + , fetchFromGitHub 6 + , ghostscript 7 + , img2pdf 8 + , importlib-resources 9 + , jbig2enc 10 + , leptonica 11 + , pdfminer 12 + , pikepdf 13 + , pillow 14 + , pluggy 15 + , pngquant 16 + , pytest-xdist 17 + , pytestCheckHook 18 + , reportlab 19 + , setuptools 20 + , setuptools-scm 21 + , setuptools-scm-git-archive 22 + , stdenv 23 + , substituteAll 24 + , tesseract4 25 + , tqdm 26 + , unpaper 27 + }: 28 + 29 + buildPythonPackage rec { 30 + pname = "ocrmypdf"; 31 + version = "12.5.0"; 32 + 33 + src = fetchFromGitHub { 34 + owner = "jbarlow83"; 35 + repo = "OCRmyPDF"; 36 + rev = "v${version}"; 37 + sha256 = "sha256-g80WedX+TGHE9EJ/RSgOc53PM17V3WZslUNaHoqKTo0="; 38 + }; 39 + 40 + patches = [ 41 + (substituteAll { 42 + src = ./paths.patch; 43 + gs = "${lib.getBin ghostscript}/bin/gs"; 44 + jbig2 = "${lib.getBin jbig2enc}/bin/jbig2"; 45 + liblept = "${lib.getLib leptonica}/lib/liblept${stdenv.hostPlatform.extensions.sharedLibrary}"; 46 + pngquant = "${lib.getBin pngquant}/bin/pngquant"; 47 + tesseract = "${lib.getBin tesseract4}/bin/tesseract"; 48 + unpaper = "${lib.getBin unpaper}/bin/unpaper"; 49 + }) 50 + ]; 51 + 52 + nativeBuildInputs = [ 53 + setuptools-scm-git-archive 54 + setuptools-scm 55 + ]; 56 + 57 + propagatedBuildInputs = [ 58 + cffi 59 + coloredlogs 60 + img2pdf 61 + importlib-resources 62 + pdfminer 63 + pikepdf 64 + pillow 65 + pluggy 66 + reportlab 67 + setuptools 68 + tqdm 69 + ]; 70 + 71 + checkInputs = [ 72 + pytest-xdist 73 + pytestCheckHook 74 + ]; 75 + 76 + meta = with lib; { 77 + homepage = "https://github.com/jbarlow83/OCRmyPDF"; 78 + description = "Adds an OCR text layer to scanned PDF files, allowing them to be searched"; 79 + license = with licenses; [ mpl20 mit ]; 80 + platforms = platforms.linux; 81 + maintainers = with maintainers; [ kiwi dotlambda ]; 82 + changelog = "https://github.com/jbarlow83/OCRmyPDF/blob/v${version}/docs/release_notes.rst"; 83 + }; 84 + }
+160
pkgs/development/python-modules/ocrmypdf/paths.patch
··· 1 + diff --git a/src/ocrmypdf/_exec/ghostscript.py b/src/ocrmypdf/_exec/ghostscript.py 2 + index 5c357f1b..f459763a 100644 3 + --- a/src/ocrmypdf/_exec/ghostscript.py 4 + +++ b/src/ocrmypdf/_exec/ghostscript.py 5 + @@ -25,28 +25,7 @@ from ocrmypdf.subprocess import get_version, run, run_polling_stderr 6 + 7 + log = logging.getLogger(__name__) 8 + 9 + -missing_gs_error = """ 10 + ---------------------------------------------------------------------- 11 + -This error normally occurs when ocrmypdf find can't Ghostscript. 12 + -Please ensure Ghostscript is installed and its location is added to 13 + -the system PATH environment variable. 14 + - 15 + -For details see: 16 + - https://ocrmypdf.readthedocs.io/en/latest/installation.html 17 + ---------------------------------------------------------------------- 18 + -""" 19 + - 20 + -_gswin = None 21 + -if os.name == 'nt': 22 + - _gswin = which('gswin64c') 23 + - if not _gswin: 24 + - _gswin = which('gswin32c') 25 + - if not _gswin: 26 + - raise MissingDependencyError(missing_gs_error) 27 + - _gswin = Path(_gswin).stem 28 + - 29 + -GS = _gswin if _gswin else 'gs' 30 + -del _gswin 31 + +GS = '@gs@' 32 + 33 + 34 + def version(): 35 + diff --git a/src/ocrmypdf/_exec/jbig2enc.py b/src/ocrmypdf/_exec/jbig2enc.py 36 + index 2e8a058b..65a09088 100644 37 + --- a/src/ocrmypdf/_exec/jbig2enc.py 38 + +++ b/src/ocrmypdf/_exec/jbig2enc.py 39 + @@ -14,7 +14,7 @@ from ocrmypdf.subprocess import get_version, run 40 + 41 + 42 + def version(): 43 + - return get_version('jbig2', regex=r'jbig2enc (\d+(\.\d+)*).*') 44 + + return get_version('@jbig2@', regex=r'jbig2enc (\d+(\.\d+)*).*') 45 + 46 + 47 + def available(): 48 + @@ -27,7 +27,7 @@ def available(): 49 + 50 + def convert_group(*, cwd, infiles, out_prefix): 51 + args = [ 52 + - 'jbig2', 53 + + '@jbig2@', 54 + '-b', 55 + out_prefix, 56 + '-s', # symbol mode (lossy) 57 + @@ -46,7 +46,7 @@ def convert_group_mp(args): 58 + 59 + 60 + def convert_single(*, cwd, infile, outfile): 61 + - args = ['jbig2', '-p', infile] 62 + + args = ['@jbig2@', '-p', infile] 63 + with open(outfile, 'wb') as fstdout: 64 + proc = run(args, cwd=cwd, stdout=fstdout, stderr=PIPE) 65 + proc.check_returncode() 66 + diff --git a/src/ocrmypdf/_exec/pngquant.py b/src/ocrmypdf/_exec/pngquant.py 67 + index ca8a4542..d0544174 100644 68 + --- a/src/ocrmypdf/_exec/pngquant.py 69 + +++ b/src/ocrmypdf/_exec/pngquant.py 70 + @@ -19,7 +19,7 @@ from ocrmypdf.subprocess import get_version, run 71 + 72 + 73 + def version(): 74 + - return get_version('pngquant', regex=r'(\d+(\.\d+)*).*') 75 + + return get_version('@pngquant@', regex=r'(\d+(\.\d+)*).*') 76 + 77 + 78 + def available(): 79 + @@ -46,7 +46,7 @@ def input_as_png(input_file: Path): 80 + def quantize(input_file: Path, output_file: Path, quality_min: int, quality_max: int): 81 + with input_as_png(input_file) as input_stream: 82 + args = [ 83 + - 'pngquant', 84 + + '@pngquant@', 85 + '--force', 86 + '--skip-if-larger', 87 + '--quality', 88 + diff --git a/src/ocrmypdf/_exec/tesseract.py b/src/ocrmypdf/_exec/tesseract.py 89 + index 33ead41e..5840f7c1 100644 90 + --- a/src/ocrmypdf/_exec/tesseract.py 91 + +++ b/src/ocrmypdf/_exec/tesseract.py 92 + @@ -78,7 +78,7 @@ class TesseractVersion(StrictVersion): 93 + 94 + 95 + def version(): 96 + - return get_version('tesseract', regex=r'tesseract\s(.+)') 97 + + return get_version('@tesseract@', regex=r'tesseract\s(.+)') 98 + 99 + 100 + def has_user_words(): 101 + @@ -100,7 +100,7 @@ def get_languages(): 102 + msg += output 103 + return msg 104 + 105 + - args_tess = ['tesseract', '--list-langs'] 106 + + args_tess = ['@tesseract@', '--list-langs'] 107 + try: 108 + proc = run( 109 + args_tess, 110 + @@ -122,7 +122,7 @@ def get_languages(): 111 + 112 + 113 + def tess_base_args(langs: List[str], engine_mode: Optional[int]) -> List[str]: 114 + - args = ['tesseract'] 115 + + args = ['@tesseract@'] 116 + if langs: 117 + args.extend(['-l', '+'.join(langs)]) 118 + if engine_mode is not None: 119 + diff --git a/src/ocrmypdf/_exec/unpaper.py b/src/ocrmypdf/_exec/unpaper.py 120 + index 3c3ae72c..d269966a 100644 121 + --- a/src/ocrmypdf/_exec/unpaper.py 122 + +++ b/src/ocrmypdf/_exec/unpaper.py 123 + @@ -31,7 +31,7 @@ log = logging.getLogger(__name__) 124 + 125 + 126 + def version() -> str: 127 + - return get_version('unpaper') 128 + + return get_version('@unpaper@') 129 + 130 + 131 + def _setup_unpaper_io(tmpdir: Path, input_file: Path) -> Tuple[Path, Path]: 132 + @@ -71,7 +71,7 @@ def _setup_unpaper_io(tmpdir: Path, input_file: Path) -> Tuple[Path, Path]: 133 + def run( 134 + input_file: Path, output_file: Path, *, dpi: DecFloat, mode_args: List[str] 135 + ) -> None: 136 + - args_unpaper = ['unpaper', '-v', '--dpi', str(round(dpi, 6))] + mode_args 137 + + args_unpaper = ['@unpaper@', '-v', '--dpi', str(round(dpi, 6))] + mode_args 138 + 139 + with TemporaryDirectory() as tmpdir: 140 + input_pnm, output_pnm = _setup_unpaper_io(Path(tmpdir), input_file) 141 + diff --git a/src/ocrmypdf/leptonica.py b/src/ocrmypdf/leptonica.py 142 + index e4814f1a..fdaf7ea4 100644 143 + --- a/src/ocrmypdf/leptonica.py 144 + +++ b/src/ocrmypdf/leptonica.py 145 + @@ -33,14 +33,7 @@ from ocrmypdf.lib._leptonica import ffi 146 + 147 + logger = logging.getLogger(__name__) 148 + 149 + -if os.name == 'nt': 150 + - from ocrmypdf.subprocess._windows import shim_env_path 151 + - 152 + - libname = 'liblept-5' 153 + - os.environ['PATH'] = shim_env_path() 154 + -else: 155 + - libname = 'lept' 156 + -_libpath = find_library(libname) 157 + +_libpath = '@liblept@' 158 + if not _libpath: 159 + raise MissingDependencyError( 160 + """
+9 -35
pkgs/development/python-modules/openstacksdk/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , callPackage 3 4 , fetchPypi 4 5 , appdirs 5 6 , cryptography 6 - , ddt 7 7 , dogpile_cache 8 - , hacking 9 8 , jmespath 10 9 , jsonpatch 11 - , jsonschema 12 10 , keystoneauth1 13 11 , munch 14 12 , netifaces 15 13 , os-service-types 16 - , oslo-config 17 - , oslotest 18 14 , pbr 19 - , prometheus-client 20 - , requests-mock 15 + , pyyaml 21 16 , requestsexceptions 22 - , stestr 23 - , testscenarios 17 + , stdenv 24 18 }: 25 19 26 20 buildPythonPackage rec { ··· 44 38 os-service-types 45 39 pbr 46 40 requestsexceptions 41 + pyyaml 47 42 ]; 48 43 49 - checkInputs = [ 50 - ddt 51 - hacking 52 - jsonschema 53 - oslo-config 54 - oslotest 55 - prometheus-client 56 - requests-mock 57 - stestr 58 - testscenarios 59 - ]; 44 + # Checks moved to 'passthru.tests' to workaround slowness 45 + doCheck = false; 60 46 61 - checkPhase = '' 62 - stestr run -e <(echo " 63 - openstack.tests.unit.cloud.test_image.TestImage.test_create_image_task 64 - openstack.tests.unit.image.v2.test_proxy.TestImageProxy.test_wait_for_task_error_396 65 - openstack.tests.unit.image.v2.test_proxy.TestImageProxy.test_wait_for_task_wait 66 - openstack.tests.unit.test_resource.TestWaitForStatus.test_status_fails 67 - openstack.tests.unit.test_resource.TestWaitForStatus.test_status_fails_different_attribute 68 - openstack.tests.unit.test_resource.TestWaitForStatus.test_status_match 69 - openstack.tests.unit.test_resource.TestWaitForStatus.test_status_match_with_none 70 - openstack.tests.unit.test_stats.TestStats.test_list_projects 71 - openstack.tests.unit.test_stats.TestStats.test_projects 72 - openstack.tests.unit.test_stats.TestStats.test_servers 73 - openstack.tests.unit.test_stats.TestStats.test_servers_no_detail 74 - ") 75 - ''; 47 + passthru.tests = { 48 + tests = callPackage ./tests.nix { }; 49 + }; 76 50 77 51 pythonImportsCheck = [ "openstack" ]; 78 52
+65
pkgs/development/python-modules/openstacksdk/tests.nix
··· 1 + { buildPythonPackage 2 + , ddt 3 + , hacking 4 + , jsonschema 5 + , lib 6 + , openstacksdk 7 + , oslo-config 8 + , oslotest 9 + , prometheus-client 10 + , requests-mock 11 + , stdenv 12 + , stestr 13 + , testscenarios 14 + }: 15 + 16 + buildPythonPackage rec { 17 + pname = "openstacksdk-tests"; 18 + inherit (openstacksdk) version; 19 + 20 + src = openstacksdk.src; 21 + 22 + dontBuild = true; 23 + dontInstall = true; 24 + 25 + checkInputs = [ 26 + ddt 27 + hacking 28 + jsonschema 29 + openstacksdk 30 + oslo-config 31 + oslotest 32 + prometheus-client 33 + requests-mock 34 + stestr 35 + testscenarios 36 + ]; 37 + 38 + checkPhase = 39 + let aarch64TestsExcluded = lib.optionalString stdenv.hostPlatform.isAarch64 '' 40 + openstack.tests.unit.cloud.test_baremetal_node.TestBaremetalNode.test_node_set_provision_state_with_retries 41 + openstack.tests.unit.cloud.test_role_assignment.TestRoleAssignment.test_grant_role_user_domain_exists 42 + openstack.tests.unit.cloud.test_volume_backups.TestVolumeBackups.test_delete_volume_backup_force 43 + openstack.tests.unit.object_store.v1.test_proxy.TestTempURLBytesPathAndKey.test_set_account_temp_url_key_second 44 + openstack.tests.unit.cloud.test_security_groups.TestSecurityGroups.test_delete_security_group_neutron_not_found 45 + ''; in 46 + '' 47 + stestr run -e <(echo "${aarch64TestsExcluded} 48 + openstack.tests.unit.cloud.test_baremetal_node.TestBaremetalNode.test_wait_for_baremetal_node_lock_locked 49 + openstack.tests.unit.cloud.test_baremetal_node.TestBaremetalNode.test_inspect_machine_inspect_failed 50 + openstack.tests.unit.cloud.test_baremetal_node.TestBaremetalNode.test_inspect_machine_available_wait 51 + openstack.tests.unit.cloud.test_baremetal_node.TestBaremetalNode.test_inspect_machine_wait 52 + openstack.tests.unit.cloud.test_image.TestImage.test_create_image_task 53 + openstack.tests.unit.image.v2.test_proxy.TestImageProxy.test_wait_for_task_error_396 54 + openstack.tests.unit.image.v2.test_proxy.TestImageProxy.test_wait_for_task_wait 55 + openstack.tests.unit.test_resource.TestWaitForStatus.test_status_fails 56 + openstack.tests.unit.test_resource.TestWaitForStatus.test_status_fails_different_attribute 57 + openstack.tests.unit.test_resource.TestWaitForStatus.test_status_match 58 + openstack.tests.unit.test_resource.TestWaitForStatus.test_status_match_with_none 59 + openstack.tests.unit.test_stats.TestStats.test_list_projects 60 + openstack.tests.unit.test_stats.TestStats.test_projects 61 + openstack.tests.unit.test_stats.TestStats.test_servers 62 + openstack.tests.unit.test_stats.TestStats.test_servers_no_detail 63 + ") 64 + ''; 65 + }
+2 -2
pkgs/development/python-modules/osc-lib/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "osc-lib"; 16 - version = "2.4.1"; 16 + version = "2.4.2"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "1ianpk32vwdllpbk4zhfifqb5b064cbmia2hm02lcrh2m76z0zi5"; 20 + sha256 = "d6b530e3e50646840a6a5ef134e00f285cc4a04232c163f28585226ed40cc968"; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+53
pkgs/development/python-modules/ospd/default.nix
··· 1 + { lib 2 + , stdenv 3 + , buildPythonPackage 4 + , defusedxml 5 + , deprecated 6 + , fetchFromGitHub 7 + , lxml 8 + , paramiko 9 + , poetry 10 + , psutil 11 + , pytestCheckHook 12 + , pythonOlder 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "ospd"; 17 + version = "21.4.3"; 18 + format = "pyproject"; 19 + 20 + disabled = pythonOlder "3.7" || stdenv.isDarwin; 21 + 22 + src = fetchFromGitHub { 23 + owner = "greenbone"; 24 + repo = pname; 25 + rev = "v${version}"; 26 + sha256 = "1i4nfvxgxibqmqb6jwih951960sm2zy00i1wnjfnwb6za1xkpbkp"; 27 + }; 28 + 29 + nativeBuildInputs = [ 30 + poetry 31 + ]; 32 + 33 + propagatedBuildInputs = [ 34 + defusedxml 35 + deprecated 36 + lxml 37 + paramiko 38 + psutil 39 + ]; 40 + 41 + checkInputs = [ 42 + pytestCheckHook 43 + ]; 44 + 45 + pythonImportsCheck = [ "ospd" ]; 46 + 47 + meta = with lib; { 48 + description = "Framework for vulnerability scanners which support OSP"; 49 + homepage = "https://github.com/greenbone/ospd"; 50 + license = with licenses; [ agpl3Plus ]; 51 + maintainers = with maintainers; [ fab ]; 52 + }; 53 + }
+44
pkgs/development/python-modules/parquet/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , python-snappy 6 + , pythonOlder 7 + , thriftpy2 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "parquet"; 12 + version = "1.3.1"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "jcrobak"; 16 + repo = "parquet-python"; 17 + rev = "v${version}"; 18 + sha256 = "1ahvg4dz9fzi4vdm9jmslq3v3jahjj17fdcc5fljgcw6h9yxyl2r"; 19 + }; 20 + 21 + propagatedBuildInputs = [ 22 + python-snappy 23 + thriftpy2 24 + ]; 25 + 26 + checkInputs = [ 27 + pytestCheckHook 28 + ]; 29 + 30 + disabledTests = [ 31 + # Fails with AttributeError 32 + "test_bson" 33 + "testFromExample" 34 + ]; 35 + 36 + pythonImportsCheck = [ "thriftpy2" ]; 37 + 38 + meta = with lib; { 39 + description = "Python implementation of the parquet columnar file format"; 40 + homepage = "https://github.com/jcrobak/parquet-python"; 41 + license = licenses.bsd2; 42 + maintainers = with maintainers; [ fab ]; 43 + }; 44 + }
+2 -2
pkgs/development/python-modules/parts/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "parts"; 8 - version = "1.0.3"; 8 + version = "1.1.0"; 9 9 10 10 src = fetchPypi { 11 11 inherit pname version; 12 - sha256 = "a4137612bc050f606b4d6f9e6a554ebfb50633c8dd9699481f82271f84d9425f"; 12 + sha256 = "sha256-Xtcu/0ZO+6L7RiVfq/Jog4f7LOtZo4QUD1qi7UdPO7g="; 13 13 }; 14 14 15 15 # Project has no tests
+14 -13
pkgs/development/python-modules/pikepdf/default.nix
··· 5 5 , fetchPypi 6 6 , hypothesis 7 7 , isPy3k 8 + , jbig2dec 8 9 , lxml 10 + , mupdf 9 11 , pillow 10 12 , psutil 11 13 , pybind11 12 - , pytest-cov 13 - , pytest-helpers-namespace 14 - , pytest-timeout 15 14 , pytest-xdist 16 15 , pytestCheckHook 17 16 , python-dateutil ··· 20 19 , setuptools 21 20 , setuptools-scm 22 21 , setuptools-scm-git-archive 22 + , substituteAll 23 23 }: 24 24 25 25 buildPythonPackage rec { 26 26 pname = "pikepdf"; 27 - version = "2.16.1"; 27 + version = "3.0.0"; 28 28 disabled = ! isPy3k; 29 29 30 30 src = fetchPypi { 31 31 inherit pname version; 32 - sha256 = "sha256-4k3/avMfHrcy/LXbRniDXR8xJkOZb9zZ2+uKylK8Dd4="; 32 + sha256 = "sha256-PBeTfiMLIq+pdeaRMOid8pEd0eLHu+IAE4aEFU5CiEM="; 33 33 }; 34 34 35 + patches = [ 36 + (substituteAll { 37 + src = ./paths.patch; 38 + jbig2dec = "${lib.getBin jbig2dec}/bin/jbig2dec"; 39 + mudraw = "${lib.getBin mupdf}/bin/mudraw"; 40 + }) 41 + ]; 42 + 35 43 buildInputs = [ 36 44 pybind11 37 45 qpdf ··· 45 53 checkInputs = [ 46 54 attrs 47 55 hypothesis 48 - pytest-helpers-namespace 49 - pytest-timeout 50 56 pytest-xdist 51 57 psutil 52 - pytest-cov 53 58 pytestCheckHook 54 59 python-dateutil 55 60 python-xmp-toolkit ··· 62 67 setuptools 63 68 ]; 64 69 65 - preBuild = '' 66 - HOME=$TMPDIR 67 - ''; 68 - 69 70 pythonImportsCheck = [ "pikepdf" ]; 70 71 71 72 meta = with lib; { 72 73 homepage = "https://github.com/pikepdf/pikepdf"; 73 74 description = "Read and write PDFs with Python, powered by qpdf"; 74 75 license = licenses.mpl20; 75 - maintainers = [ maintainers.kiwi ]; 76 + maintainers = with maintainers; [ kiwi dotlambda ]; 76 77 changelog = "https://github.com/pikepdf/pikepdf/blob/${version}/docs/release_notes.rst"; 77 78 }; 78 79 }
+26
pkgs/development/python-modules/pikepdf/paths.patch
··· 1 + diff --git a/src/pikepdf/_methods.py b/src/pikepdf/_methods.py 2 + index 70cdc9e..c3a14d0 100644 3 + --- a/src/pikepdf/_methods.py 4 + +++ b/src/pikepdf/_methods.py 5 + @@ -190,7 +190,7 @@ def _mudraw(buffer, fmt) -> bytes: 6 + tmp_in.flush() 7 + 8 + proc = run( 9 + - ['mudraw', '-F', fmt, '-o', '-', tmp_in.name], 10 + + ['@mudraw@', '-F', fmt, '-o', '-', tmp_in.name], 11 + stdout=PIPE, 12 + stderr=PIPE, 13 + check=True, 14 + diff --git a/src/pikepdf/jbig2.py b/src/pikepdf/jbig2.py 15 + index 80cc910..64f6d31 100644 16 + --- a/src/pikepdf/jbig2.py 17 + +++ b/src/pikepdf/jbig2.py 18 + @@ -25,7 +25,7 @@ def extract_jbig2( 19 + global_path = Path(tmpdir) / "global" 20 + output_path = Path(tmpdir) / "outfile" 21 + 22 + - args = ["jbig2dec", "-e", "-o", os.fspath(output_path)] 23 + + args = ["@jbig2dec@", "-e", "-o", os.fspath(output_path)] 24 + 25 + # Get the raw stream, because we can't decode im_obj - that is why we are here 26 + # (Strictly speaking we should remove any non-JBIG2 filters if double encoded)
+2 -2
pkgs/development/python-modules/plugwise/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "plugwise"; 22 - version = "0.13.1"; 22 + version = "0.14.5"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = pname; 26 26 repo = "python-plugwise"; 27 27 rev = "v${version}"; 28 - sha256 = "1sv421aa6ip74ajxa5imnh188hyx9dq3vwkb6aifi14h2wpr9lh3"; 28 + sha256 = "1kwks87raxs04dvnpmpn8l1cbzg5yb5nyinaqzxdsc6al83isbik"; 29 29 }; 30 30 31 31 propagatedBuildInputs = [
+63
pkgs/development/python-modules/plyer/default.nix
··· 1 + { lib, buildPythonPackage, fetchFromGitHub, fetchpatch, keyring, mock, pytestCheckHook, stdenv }: 2 + 3 + buildPythonPackage rec { 4 + pname = "plyer"; 5 + version = "2.0.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "kivy"; 9 + repo = pname; 10 + rev = version; 11 + sha256 = "15z1wpq6s69s76r6akzgg340bpc21l2r1j8270gp7i1rpnffcjwm"; 12 + }; 13 + 14 + patches = [ 15 + # fix naming of the DOCUMENTS dir 16 + (fetchpatch { 17 + url = "https://github.com/rski/plyer/commit/99dabb2d62248fc3ea5705c2720abf71c9fc378b.patch"; 18 + sha256 = "sha256-bbnw0TxH4FGTso5dopzquDCjrjZAy+6CJauqi/nfstA="; 19 + }) 20 + # fix handling of the ~/.config/user-dirs.dir file 21 + (fetchpatch { 22 + url = "https://github.com/rski/plyer/commit/f803697a1fe4fb5e9c729ee6ef1997b8d64f3ccd.patch"; 23 + sha256 = "sha256-akuh//P5puz2PwcBRXZQ4KoGk+fxi4jn2H3pTIT5M78="; 24 + }) 25 + ]; 26 + 27 + postPatch = '' 28 + rm -r examples 29 + # remove all the wifi stuff. Depends on a python wifi module that has not been updated since 2016 30 + find -iname "wifi*" -exec rm {} \; 31 + substituteInPlace plyer/__init__.py \ 32 + --replace "wifi = Proxy('wifi', facades.Wifi)" "" \ 33 + --replace "'wifi'" "" 34 + substituteInPlace plyer/facades/__init__.py \ 35 + --replace "from plyer.facades.wifi import Wifi" "" 36 + ''; 37 + 38 + propagatedBuildInputs = [ keyring ]; 39 + 40 + checkInputs = [ mock pytestCheckHook ]; 41 + 42 + pytestFlagsArray = [ "plyer/tests" ]; 43 + disabledTests = [ 44 + # assumes dbus is not installed, it fails and is not very robust. 45 + "test_notification_notifysend" 46 + # fails during nix-build, but I am not able to explain why. 47 + # The test and the API under test do work outside the nix build. 48 + "test_uniqueid" 49 + ]; 50 + preCheck = '' 51 + HOME=$(mktemp -d) 52 + mkdir -p $HOME/.config/ $HOME/Pictures 53 + ''; 54 + 55 + pythonImportsCheck = [ "plyer" ]; 56 + 57 + meta = with lib; { 58 + description = "Plyer is a platform-independent api to use features commonly found on various platforms"; 59 + homepage = "https://github.com/kivy/plyer"; 60 + license = licenses.mit; 61 + maintainers = with maintainers; [ rski ]; 62 + }; 63 + }
+3 -2
pkgs/development/python-modules/pyfronius/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pyfronius"; 11 - version = "0.6.3"; 11 + version = "0.7.0"; 12 + 12 13 disabled = pythonOlder "3.6"; 13 14 14 15 src = fetchFromGitHub { 15 16 owner = "nielstron"; 16 17 repo = pname; 17 18 rev = "release-${version}"; 18 - sha256 = "19cgr0y4zfyghpw9hwl9immh5c464dlasnfd8q570k9f0q682249"; 19 + sha256 = "1jp9vsllvzfnrkzmln2sp1ggr4pwaj47744n2ijz1wsf8v38nw2j"; 19 20 }; 20 21 21 22 propagatedBuildInputs = [
+65
pkgs/development/python-modules/python-glanceclient/default.nix
··· 1 + { lib 2 + , buildPythonApplication 3 + , fetchPypi 4 + , coreutils 5 + , pbr 6 + , prettytable 7 + , keystoneauth1 8 + , requests 9 + , warlock 10 + , oslo-utils 11 + , oslo-i18n 12 + , wrapt 13 + , pyopenssl 14 + , stestr 15 + , testscenarios 16 + , ddt 17 + , requests-mock 18 + }: 19 + 20 + buildPythonApplication rec { 21 + pname = "python-glanceclient"; 22 + version = "3.5.0"; 23 + 24 + src = fetchPypi { 25 + inherit pname version; 26 + sha256 = "417b9d814b43e62df4351f26a0d5569b801e9f99f7758bd8c82ef994c3629356"; 27 + }; 28 + 29 + postPatch = '' 30 + substituteInPlace glanceclient/tests/unit/v1/test_shell.py \ 31 + --replace "/bin/echo" "${coreutils}/bin/echo" 32 + ''; 33 + 34 + propagatedBuildInputs = [ 35 + pbr 36 + prettytable 37 + keystoneauth1 38 + requests 39 + warlock 40 + oslo-utils 41 + oslo-i18n 42 + wrapt 43 + pyopenssl 44 + ]; 45 + 46 + checkInputs = [ 47 + stestr 48 + testscenarios 49 + ddt 50 + requests-mock 51 + ]; 52 + 53 + checkPhase = '' 54 + stestr run 55 + ''; 56 + 57 + pythonImportsCheck = [ "glanceclient" ]; 58 + 59 + meta = with lib; { 60 + description = "Python bindings for the OpenStack Images API"; 61 + homepage = "https://github.com/openstack/python-glanceclient/"; 62 + license = licenses.asl20; 63 + maintainers = teams.openstack.members; 64 + }; 65 + }
+69
pkgs/development/python-modules/python-heatclient/default.nix
··· 1 + { lib 2 + , buildPythonApplication 3 + , fetchPypi 4 + , pbr 5 + , Babel 6 + , cliff 7 + , iso8601 8 + , osc-lib 9 + , prettytable 10 + , oslo-i18n 11 + , oslo-serialization 12 + , oslo-utils 13 + , keystoneauth1 14 + , python-swiftclient 15 + , pyyaml 16 + , requests 17 + , six 18 + , stestr 19 + , testscenarios 20 + , requests-mock 21 + }: 22 + 23 + buildPythonApplication rec { 24 + pname = "python-heatclient"; 25 + version = "2.4.0"; 26 + 27 + src = fetchPypi { 28 + inherit pname version; 29 + sha256 = "b53529eb73f08c384181a580efaa42293cc35e0e1ecc4b0bc14a5c7b202019bb"; 30 + }; 31 + 32 + propagatedBuildInputs = [ 33 + pbr 34 + Babel 35 + cliff 36 + iso8601 37 + osc-lib 38 + prettytable 39 + oslo-i18n 40 + oslo-serialization 41 + oslo-utils 42 + keystoneauth1 43 + python-swiftclient 44 + pyyaml 45 + requests 46 + six 47 + ]; 48 + 49 + checkInputs = [ 50 + stestr 51 + testscenarios 52 + requests-mock 53 + ]; 54 + 55 + checkPhase = '' 56 + stestr run -e <(echo " 57 + heatclient.tests.unit.test_common_http.HttpClientTest.test_get_system_ca_file 58 + ") 59 + ''; 60 + 61 + pythonImportsCheck = [ "heatclient" ]; 62 + 63 + meta = with lib; { 64 + description = "A client library for Heat built on the Heat orchestration API"; 65 + homepage = "https://github.com/openstack/python-heatclient"; 66 + license = licenses.asl20; 67 + maintainers = teams.openstack.members; 68 + }; 69 + }
+63
pkgs/development/python-modules/python-ironicclient/default.nix
··· 1 + { lib 2 + , buildPythonApplication 3 + , fetchPypi 4 + , pbr 5 + , appdirs 6 + , cliff 7 + , dogpile_cache 8 + , jsonschema 9 + , keystoneauth1 10 + , openstacksdk 11 + , osc-lib 12 + , oslo-utils 13 + , pyyaml 14 + , requests 15 + , stevedore 16 + , stestr 17 + , requests-mock 18 + , oslotest 19 + }: 20 + 21 + buildPythonApplication rec { 22 + pname = "python-ironicclient"; 23 + version = "4.8.0"; 24 + 25 + src = fetchPypi { 26 + inherit pname version; 27 + sha256 = "b55516a72b995f92fb434619cbc1e2effa604c7fcaa6ac4afb8f5af1ea8193a4"; 28 + }; 29 + 30 + propagatedBuildInputs = [ 31 + pbr 32 + appdirs 33 + cliff 34 + dogpile_cache 35 + jsonschema 36 + keystoneauth1 37 + openstacksdk 38 + osc-lib 39 + oslo-utils 40 + pyyaml 41 + requests 42 + stevedore 43 + ]; 44 + 45 + checkInputs = [ 46 + stestr 47 + requests-mock 48 + oslotest 49 + ]; 50 + 51 + checkPhase = '' 52 + stestr run 53 + ''; 54 + 55 + pythonImportsCheck = [ "ironicclient" ]; 56 + 57 + meta = with lib; { 58 + description = "A client for OpenStack bare metal provisioning API, includes a Python module (ironicclient) and CLI (baremetal)."; 59 + homepage = "https://github.com/openstack/python-ironicclient"; 60 + license = licenses.asl20; 61 + maintainers = teams.openstack.members; 62 + }; 63 + }
+2 -2
pkgs/development/python-modules/python-keystoneclient/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "python-keystoneclient"; 17 - version = "4.2.0"; 17 + version = "4.3.0"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "12jsiw82x2zcn8sf78xisf85kr28gl3jqj46a0wxx59v91p44j02"; 21 + sha256 = "fd09b7790ce53c20dc94318ec4d76e1cf71908aed59baeb4c7a61c17afd3aad5"; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+58
pkgs/development/python-modules/python-manilaclient/default.nix
··· 1 + { lib 2 + , buildPythonApplication 3 + , fetchPypi 4 + , pbr 5 + , oslo-config 6 + , oslo-log 7 + , oslo-serialization 8 + , oslo-utils 9 + , prettytable 10 + , requests 11 + , simplejson 12 + , Babel 13 + , osc-lib 14 + , python-keystoneclient 15 + , debtcollector 16 + , callPackage 17 + }: 18 + 19 + buildPythonApplication rec { 20 + pname = "python-manilaclient"; 21 + version = "3.0.0"; 22 + 23 + src = fetchPypi { 24 + inherit pname version; 25 + sha256 = "2d90af35c5beccc53fa6b0f5a3c4b330a065e86924c33c42b017f18943ab2b05"; 26 + }; 27 + 28 + propagatedBuildInputs = [ 29 + pbr 30 + oslo-config 31 + oslo-log 32 + oslo-serialization 33 + oslo-utils 34 + prettytable 35 + requests 36 + simplejson 37 + Babel 38 + osc-lib 39 + python-keystoneclient 40 + debtcollector 41 + ]; 42 + 43 + # Checks moved to 'passthru.tests' to workaround infinite recursion 44 + doCheck = false; 45 + 46 + passthru.tests = { 47 + tests = callPackage ./tests.nix { }; 48 + }; 49 + 50 + pythonImportsCheck = [ "manilaclient" ]; 51 + 52 + meta = with lib; { 53 + description = "Client library for OpenStack Manila API"; 54 + homepage = "https://github.com/openstack/python-manilaclient"; 55 + license = licenses.asl20; 56 + maintainers = teams.openstack.members; 57 + }; 58 + }
+31
pkgs/development/python-modules/python-manilaclient/tests.nix
··· 1 + { buildPythonPackage 2 + , python-manilaclient 3 + , stestr 4 + , ddt 5 + , tempest 6 + , mock 7 + , python-openstackclient 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "python-manilaclient-tests"; 12 + inherit (python-manilaclient) version; 13 + 14 + src = python-manilaclient.src; 15 + 16 + dontBuild = true; 17 + dontInstall = true; 18 + 19 + checkInputs = [ 20 + python-manilaclient 21 + stestr 22 + ddt 23 + tempest 24 + mock 25 + python-openstackclient 26 + ]; 27 + 28 + checkPhase = '' 29 + stestr run 30 + ''; 31 + }
+2
pkgs/development/python-modules/python-swiftclient/default.nix
··· 29 29 stestr run 30 30 ''; 31 31 32 + pythonImportsCheck = [ "swiftclient" ]; 33 + 32 34 meta = with lib; { 33 35 homepage = "https://github.com/openstack/python-swiftclient"; 34 36 description = "Python bindings to the OpenStack Object Storage API";
+2 -2
pkgs/development/python-modules/pytibber/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pytibber"; 15 - version = "0.19.0"; 15 + version = "0.19.1"; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 ··· 20 20 owner = "Danielhiversen"; 21 21 repo = "pyTibber"; 22 22 rev = version; 23 - sha256 = "sha256-9xKt6OspdM7zWbVzjtvDPYuGyIW3K6ioASt53LOgdvk="; 23 + sha256 = "sha256-+CI2TIGUZTztwx/9JqleKfVksybwGUGiHktu2xcNyUg="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyvex/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pyvex"; 14 - version = "9.0.9947"; 14 + version = "9.0.10010"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "sha256-52yI8V2rQTDbo/giHqhTKJ5Pz0PAMEz6ErZuo7RlbbM="; 18 + sha256 = "sha256-1vAiDXMYiclK5P8QZUBuy6KllcAQm8d7rQpN+CBDVVA="; 19 19 }; 20 20 21 21 postPatch = lib.optionalString stdenv.isDarwin ''
+2 -2
pkgs/development/python-modules/s3fs/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "s3fs"; 11 - version = "2021.7.0"; 11 + version = "2021.8.1"; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - hash = "sha256-KTKU7I7QhgVhfbRA46UCKaQT3Bbc8yyUj66MvZsCrpY="; 15 + sha256 = "0zwy2fr95s5wzrr2iwbayjh9xh421p6wf0m75szl7rw930v1kb2y"; 16 16 }; 17 17 18 18 buildInputs = [
+89
pkgs/development/python-modules/tempest/default.nix
··· 1 + { lib 2 + , buildPythonApplication 3 + , fetchPypi 4 + , pbr 5 + , cliff 6 + , jsonschema 7 + , testtools 8 + , paramiko 9 + , netaddr 10 + , oslo-concurrency 11 + , oslo-config 12 + , oslo-log 13 + , stestr 14 + , oslo-serialization 15 + , oslo-utils 16 + , fixtures 17 + , pyyaml 18 + , subunit 19 + , stevedore 20 + , prettytable 21 + , urllib3 22 + , debtcollector 23 + , unittest2 24 + , hacking 25 + , oslotest 26 + , bash 27 + , python3 28 + }: 29 + 30 + buildPythonApplication rec { 31 + pname = "tempest"; 32 + version = "28.0.0"; 33 + 34 + src = fetchPypi { 35 + inherit pname version; 36 + sha256 = "24fcc0baa2044454b17b6b4aa2b1b19682cf95eb92ca38a2f289d3cbc488b170"; 37 + }; 38 + 39 + propagatedBuildInputs = [ 40 + pbr 41 + cliff 42 + jsonschema 43 + testtools 44 + paramiko 45 + netaddr 46 + oslo-concurrency 47 + oslo-config 48 + oslo-log 49 + stestr 50 + oslo-serialization 51 + oslo-utils 52 + fixtures 53 + pyyaml 54 + subunit 55 + stevedore 56 + prettytable 57 + urllib3 58 + debtcollector 59 + unittest2 60 + ]; 61 + 62 + checkInputs = [ 63 + stestr 64 + hacking 65 + oslotest 66 + ]; 67 + 68 + checkPhase = '' 69 + # Tests expect these applications available as such. 70 + mkdir -p bin 71 + export PATH="$PWD/bin:$PATH" 72 + printf '#!${bash}/bin/bash\nexec ${python3.interpreter} -m tempest.cmd.main "$@"\n' > bin/tempest 73 + printf '#!${bash}/bin/bash\nexec ${python3.interpreter} -m tempest.cmd.subunit_describe_calls "$@"\n' > bin/subunit-describe-calls 74 + chmod +x bin/* 75 + 76 + stestr --test-path tempest/tests run -e <(echo " 77 + tempest.tests.lib.cli.test_execute.TestExecute.test_execute_with_prefix 78 + ") 79 + ''; 80 + 81 + pythonImportsCheck = [ "tempest" ]; 82 + 83 + meta = with lib; { 84 + description = "An OpenStack integration test suite that runs against live OpenStack cluster and validates an OpenStack deployment"; 85 + homepage = "https://github.com/openstack/tempest"; 86 + license = licenses.asl20; 87 + maintainers = teams.openstack.members; 88 + }; 89 + }
+45
pkgs/development/python-modules/thriftpy2/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , cython 4 + , fetchFromGitHub 5 + , pythonOlder 6 + , ply 7 + , six 8 + , tornado 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "thriftpy2"; 13 + version = "0.4.14"; 14 + 15 + disabled = pythonOlder "3.6"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "Thriftpy"; 19 + repo = pname; 20 + rev = "v${version}"; 21 + sha256 = "17f57vsbym4c9yax128bhrwg2zjxcsgl3ja6422y8hyb38v5mdc3"; 22 + }; 23 + 24 + nativeBuildInputs = [ 25 + cython 26 + ]; 27 + 28 + propagatedBuildInputs = [ 29 + ply 30 + six 31 + tornado 32 + ]; 33 + 34 + # Not all needed files seems to be present 35 + doCheck = false; 36 + 37 + pythonImportsCheck = [ "thriftpy2" ]; 38 + 39 + meta = with lib; { 40 + description = "Python module for Apache Thrift"; 41 + homepage = "https://github.com/Thriftpy/thriftpy2"; 42 + license = licenses.mit; 43 + maintainers = with maintainers; [ fab ]; 44 + }; 45 + }
+5 -5
pkgs/development/python-modules/tlsh/default.nix
··· 4 4 , cmake 5 5 }: 6 6 7 - buildPythonPackage { 7 + buildPythonPackage rec { 8 8 pname = "tlsh"; 9 - version = "4.5.0"; 9 + version = "4.9.3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "trendmicro"; 13 13 repo = "tlsh"; 14 - rev = "f2bb7a97cfb0f9418a750ba92c182d1091e6c159"; 15 - sha256 = "1kxfhdwqjd4pjdlr1gjh2am8mxpaqmfq7rrxkjfi0mbisl1krkwb"; 14 + rev = version; 15 + sha256 = "sha256-12bhxJTJJWzoiWt4YwhcdwHDvJNoBenWl3l26SFuIGU="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ cmake ]; ··· 26 26 27 27 meta = with lib; { 28 28 description = "Trend Micro Locality Sensitive Hash"; 29 - homepage = "http://tlsh.org/"; 29 + homepage = "https://tlsh.org/"; 30 30 license = licenses.asl20; 31 31 platforms = platforms.unix; 32 32 };
+2 -2
pkgs/development/python-modules/zeroconf/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "zeroconf"; 13 - version = "0.36.4"; 13 + version = "0.36.6"; 14 14 format = "setuptools"; 15 15 disabled = pythonOlder "3.6"; 16 16 ··· 19 19 owner = "jstasiak"; 20 20 repo = "python-zeroconf"; 21 21 rev = version; 22 - sha256 = "sha256-HjS8KwbSir8L0irstoMeSRfeHaq8Kvcwib9wvGdyHEo="; 22 + sha256 = "sha256-Ignbms6/M36cK1fwm2ejMPDkYrANmQ7CcSqM+ISoZig="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+2 -2
pkgs/development/tools/apktool/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "apktool"; 5 - version = "2.5.0"; 5 + version = "2.6.0"; 6 6 7 7 src = fetchurl { 8 8 urls = [ 9 9 "https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_${version}.jar" 10 10 "https://github.com/iBotPeaches/Apktool/releases/download/v${version}/apktool_${version}.jar" 11 11 ]; 12 - sha256 = "1r4z0z2c1drjd4ynpf36dklxs3hq1wdnzh63mk2yk4mmk75xg4mk"; 12 + sha256 = "sha256-91CjzSwflC8n9ff9XRfq2jva/wpmQ/SduEfoQlef3aU="; 13 13 }; 14 14 15 15 dontUnpack = true;
+2 -2
pkgs/development/tools/buildah/default.nix
··· 14 14 15 15 buildGoModule rec { 16 16 pname = "buildah"; 17 - version = "1.22.3"; 17 + version = "1.23.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "containers"; 21 21 repo = "buildah"; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-e4Y398VyvoDo5WYyLeZJUMmb0HgWNBWj+hCPxdUlZNY="; 23 + sha256 = "sha256-MhPbABGgQG0sAHVnUA9PUGqaVYWd/YsY2pyf8H4uTe8="; 24 24 }; 25 25 26 26 outputs = [ "out" "man" ];
+3 -3
pkgs/development/tools/conftest/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "conftest"; 5 - version = "0.28.0"; 5 + version = "0.28.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "open-policy-agent"; 9 9 repo = "conftest"; 10 10 rev = "v${version}"; 11 - sha256 = "1fb2i2pkpf0dv2g17zii68hkxk2ni6xn5xyrhb3gmkc6afz96ni0"; 11 + sha256 = "sha256-o2P14Nsu77AXO+UnMBXthhP3Q7kI7nd/lI6GFE2cs3M="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-jt1gQDtbZiBm5o5qwkRNeZDJJoRbXnRUcQ4GoTp+otc="; 14 + vendorSha256 = "sha256-zzckZI/n00BBl166S7uonJFNQ4RJGLCkDyfLRoHZOtA="; 15 15 16 16 ldflags = [ 17 17 "-s"
+8 -8
pkgs/development/tools/electron/default.nix
··· 105 105 headers = "1zkdgpjrh1dc9j8qyrrrh49v24960yhvwi2c530qbpf2azgqj71b"; 106 106 }; 107 107 108 - electron_12 = mkElectron "12.1.1" { 109 - x86_64-linux = "21bcd5d415c147307082890498240f9f096e60053ebd90e81765375ecc00add3"; 110 - x86_64-darwin = "1ff96e9770dec3b61b7fcf8b2d5a334ed317cf271d91233604549df1e42cdc9b"; 111 - i686-linux = "b1e64e953ec9168dfa6da65888637fa866a57c08e2c48f1f443474f7f96b2e2e"; 112 - armv7l-linux = "f6a9c539df8c3699c45faeb5ffc5145b095af93604943e1e4c939f38fa1d6672"; 113 - aarch64-linux = "35a51b39c53c4e79aa0af90401cbb94f0d9ea0e606d1f6226473015021c0ac48"; 114 - aarch64-darwin = "5001583bd17cb3acb00f30c2a6e98e5f0b755d744c922d7eed9f166ac67964e0"; 115 - headers = "1x7ilyiy3kk2b1crv0h8v6dcfv6yhf371pi14x7333bzhw558s2a"; 108 + electron_12 = mkElectron "12.1.2" { 109 + x86_64-linux = "e0ed1e223e956213f4f835573dd9c84aac3588c1d12ca67f81399534611a873d"; 110 + x86_64-darwin = "6a0efef7cee47d5f7cff7edfe2f3eaa134368f9ac8741742dfcb49f59da51e59"; 111 + i686-linux = "90c60083261bf86410f30d2588204276943cc7cbfe7751192723fdde6a67da72"; 112 + armv7l-linux = "cdff93b3ee2ab175c45d1afa33c7dde38030abe54fe285804a0eb3f983f67bdd"; 113 + aarch64-linux = "fe1351253cc8e9f6828de90957b40fab1cad31d38e88ef085c98a1b72d9cd14b"; 114 + aarch64-darwin = "4b2a2b9986938f332894946b22fc6cac357f69aaa72afe61b6ca6084d48dce67"; 115 + headers = "019rf1r9mk0hzhbl5fq48zr0l4y943biv2xwnpdhr5bm1wqpvz6l"; 116 116 }; 117 117 118 118 electron_13 = mkElectron "13.4.0" {
+6 -3
pkgs/development/tools/rust/cargo-play/default.nix
··· 1 - { fetchFromGitHub, lib, rustPlatform }: 1 + { lib, rustPlatform, fetchFromGitHub }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-play"; ··· 13 13 14 14 cargoSha256 = "1xkscd9ci9vlkmbsaxvavrna1xpi16xcf9ri879lw8bdh7sa3nx8"; 15 15 16 - # some tests require internet access 17 - doCheck = false; 16 + # these tests require internet access 17 + checkFlags = [ 18 + "--skip=dtoa_test" 19 + "--skip=infer_override" 20 + ]; 18 21 19 22 meta = with lib; { 20 23 description = "Run your rust code without setting up cargo";
+25
pkgs/development/tools/rust/cargo-supply-chain/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub, stdenv, Security }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "cargo-supply-chain"; 5 + version = "0.0.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "rust-secure-code"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "0kpm842p7l0vwbfa99zq3w3nsasy5sp1b99si7brjjvq99bad9gr"; 12 + }; 13 + 14 + cargoSha256 = "sha256-Mn5s6pfTHoFXtHqn6ii8PtAIBz/RJaR0zO5U5jS3UDU="; 15 + 16 + buildInputs = lib.optional stdenv.isDarwin Security; 17 + 18 + meta = with lib; { 19 + description = "Gather author, contributor and publisher data on crates in your dependency graph"; 20 + homepage = "https://github.com/rust-secure-code/cargo-supply-chain"; 21 + changelog = "https://github.com/rust-secure-code/cargo-supply-chain/blob/master/CHANGELOG.md"; 22 + license = with licenses; [ asl20 mit zlib ]; # any of three 23 + maintainers = with maintainers; [ figsoda ]; 24 + }; 25 + }
+24
pkgs/development/tools/rust/panamax/default.nix
··· 1 + { lib, rustPlatform, fetchCrate, pkg-config, openssl, stdenv, Security }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "panamax"; 5 + version = "1.0.3"; 6 + 7 + src = fetchCrate { 8 + inherit pname version; 9 + sha256 = "sha256-w4waFdzd/Ps0whOp39QLBE/YF2eyc4t2Ili7FskUt1M="; 10 + }; 11 + 12 + cargoSha256 = "sha256-52snmkTFHI26xJo9qJkmqh1M5lLzhDxw8WT6uFd57aw="; 13 + 14 + nativeBuildInputs = [ pkg-config ]; 15 + 16 + buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security; 17 + 18 + meta = with lib; { 19 + description = "Mirror rustup and crates.io repositories for offline Rust and cargo usage"; 20 + homepage = "https://github.com/panamax-rs/panamax"; 21 + license = with licenses; [ mit /* or */ asl20 ]; 22 + maintainers = with maintainers; [ figsoda ]; 23 + }; 24 + }
+22
pkgs/development/tools/rust/rhack/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "rhack"; 5 + version = "0.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "nakabonne"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "088ynf65szaa86pxwwasn3wwi00z5pn7i8w9gh5dyn983z4d8237"; 12 + }; 13 + 14 + cargoSha256 = "sha256-HmBh2qbO/HuNPfHKifq41IB5ResnGka2iaAsnwppm9s="; 15 + 16 + meta = with lib; { 17 + description = "Temporary edit external crates that your project depends on"; 18 + homepage = "https://github.com/nakabonne/rhack"; 19 + license = licenses.bsd3; 20 + maintainers = with maintainers; [ figsoda ]; 21 + }; 22 + }
+6 -3
pkgs/development/tools/rust/rust-analyzer/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "rust-analyzer-unwrapped"; 9 - version = "2021-09-06"; 10 - cargoSha256 = "sha256-CTCDSoViyVMHxUKQz8fE+r3rkXf7yRgzZ90fZmMtcNM="; 9 + version = "2021-09-20"; 10 + cargoSha256 = "sha256-OPolZ0oXGRcKvWxXkRMjyEXzvf1p41hGfHBpbDbLJck="; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "rust-analyzer"; 14 14 repo = "rust-analyzer"; 15 15 rev = version; 16 - sha256 = "sha256-TacpTVvHAIs4kZ5vibj8luy/kryYwxY+OXFNPnqiXP0="; 16 + sha256 = "sha256-k2UGz+h9++8wtV+XdGZbWysjkIDe+UNudKL46eisZzw="; 17 17 }; 18 18 19 19 patches = [ 20 20 # Code format and git history check require more dependencies but don't really matter for packaging. 21 21 # So just ignore them. 22 22 ./ignore-git-and-rustfmt-tests.patch 23 + 24 + # Patch for our rust 1.54.0 in nixpkgs. Remove it when we have rust >= 1.55.0 25 + ./no-1-55-control-flow.patch 23 26 ]; 24 27 25 28 buildAndTestSubdir = "crates/rust-analyzer";
+212
pkgs/development/tools/rust/rust-analyzer/no-1-55-control-flow.patch
··· 1 + diff --git a/crates/hir/src/lib.rs b/crates/hir/src/lib.rs 2 + index 3b0c29e87..2841a39e2 100644 3 + --- a/crates/hir/src/lib.rs 4 + +++ b/crates/hir/src/lib.rs 5 + @@ -31,7 +31,7 @@ pub mod db; 6 + 7 + mod display; 8 + 9 + -use std::{iter, ops::ControlFlow, sync::Arc}; 10 + +use std::{iter, sync::Arc}; 11 + 12 + use arrayvec::ArrayVec; 13 + use base_db::{CrateDisplayName, CrateId, Edition, FileId}; 14 + @@ -70,7 +70,7 @@ use itertools::Itertools; 15 + use nameres::diagnostics::DefDiagnosticKind; 16 + use once_cell::unsync::Lazy; 17 + use rustc_hash::FxHashSet; 18 + -use stdx::{format_to, impl_from}; 19 + +use stdx::{format_to, impl_from, ControlFlow}; 20 + use syntax::{ 21 + ast::{self, AttrsOwner, NameOwner}, 22 + AstNode, AstPtr, SmolStr, SyntaxKind, SyntaxNodePtr, 23 + diff --git a/crates/hir_ty/src/method_resolution.rs b/crates/hir_ty/src/method_resolution.rs 24 + index c88a8b653..039b5589e 100644 25 + --- a/crates/hir_ty/src/method_resolution.rs 26 + +++ b/crates/hir_ty/src/method_resolution.rs 27 + @@ -2,7 +2,7 @@ 28 + //! For details about how this works in rustc, see the method lookup page in the 29 + //! [rustc guide](https://rust-lang.github.io/rustc-guide/method-lookup.html) 30 + //! and the corresponding code mostly in librustc_typeck/check/method/probe.rs. 31 + -use std::{iter, ops::ControlFlow, sync::Arc}; 32 + +use std::{iter, sync::Arc}; 33 + 34 + use arrayvec::ArrayVec; 35 + use base_db::{CrateId, Edition}; 36 + @@ -13,6 +13,7 @@ use hir_def::{ 37 + }; 38 + use hir_expand::name::Name; 39 + use rustc_hash::{FxHashMap, FxHashSet}; 40 + +use stdx::{try_control_flow, ControlFlow}; 41 + 42 + use crate::{ 43 + autoderef, 44 + @@ -483,7 +484,7 @@ pub fn iterate_method_candidates_dyn( 45 + 46 + let deref_chain = autoderef_method_receiver(db, krate, ty); 47 + for i in 0..deref_chain.len() { 48 + - iterate_method_candidates_with_autoref( 49 + + try_control_flow!(iterate_method_candidates_with_autoref( 50 + &deref_chain[i..], 51 + db, 52 + env.clone(), 53 + @@ -492,7 +493,7 @@ pub fn iterate_method_candidates_dyn( 54 + visible_from_module, 55 + name, 56 + callback, 57 + - )?; 58 + + )); 59 + } 60 + ControlFlow::Continue(()) 61 + } 62 + @@ -522,7 +523,7 @@ fn iterate_method_candidates_with_autoref( 63 + name: Option<&Name>, 64 + mut callback: &mut dyn FnMut(&Canonical<Ty>, AssocItemId) -> ControlFlow<()>, 65 + ) -> ControlFlow<()> { 66 + - iterate_method_candidates_by_receiver( 67 + + try_control_flow!(iterate_method_candidates_by_receiver( 68 + &deref_chain[0], 69 + &deref_chain[1..], 70 + db, 71 + @@ -532,7 +533,7 @@ fn iterate_method_candidates_with_autoref( 72 + visible_from_module, 73 + name, 74 + &mut callback, 75 + - )?; 76 + + )); 77 + 78 + let refed = Canonical { 79 + binders: deref_chain[0].binders.clone(), 80 + @@ -540,7 +541,7 @@ fn iterate_method_candidates_with_autoref( 81 + .intern(&Interner), 82 + }; 83 + 84 + - iterate_method_candidates_by_receiver( 85 + + try_control_flow!(iterate_method_candidates_by_receiver( 86 + &refed, 87 + deref_chain, 88 + db, 89 + @@ -550,7 +551,7 @@ fn iterate_method_candidates_with_autoref( 90 + visible_from_module, 91 + name, 92 + &mut callback, 93 + - )?; 94 + + )); 95 + 96 + let ref_muted = Canonical { 97 + binders: deref_chain[0].binders.clone(), 98 + @@ -586,7 +587,7 @@ fn iterate_method_candidates_by_receiver( 99 + // be found in any of the derefs of receiver_ty, so we have to go through 100 + // that. 101 + for self_ty in std::iter::once(receiver_ty).chain(rest_of_deref_chain) { 102 + - iterate_inherent_methods( 103 + + try_control_flow!(iterate_inherent_methods( 104 + self_ty, 105 + db, 106 + env.clone(), 107 + @@ -595,11 +596,11 @@ fn iterate_method_candidates_by_receiver( 108 + krate, 109 + visible_from_module, 110 + &mut callback, 111 + - )? 112 + + )) 113 + } 114 + 115 + for self_ty in std::iter::once(receiver_ty).chain(rest_of_deref_chain) { 116 + - iterate_trait_method_candidates( 117 + + try_control_flow!(iterate_trait_method_candidates( 118 + self_ty, 119 + db, 120 + env.clone(), 121 + @@ -608,7 +609,7 @@ fn iterate_method_candidates_by_receiver( 122 + name, 123 + Some(receiver_ty), 124 + &mut callback, 125 + - )? 126 + + )) 127 + } 128 + 129 + ControlFlow::Continue(()) 130 + @@ -624,7 +625,7 @@ fn iterate_method_candidates_for_self_ty( 131 + name: Option<&Name>, 132 + mut callback: &mut dyn FnMut(&Canonical<Ty>, AssocItemId) -> ControlFlow<()>, 133 + ) -> ControlFlow<()> { 134 + - iterate_inherent_methods( 135 + + try_control_flow!(iterate_inherent_methods( 136 + self_ty, 137 + db, 138 + env.clone(), 139 + @@ -633,7 +634,7 @@ fn iterate_method_candidates_for_self_ty( 140 + krate, 141 + visible_from_module, 142 + &mut callback, 143 + - )?; 144 + + )); 145 + iterate_trait_method_candidates(self_ty, db, env, krate, traits_in_scope, name, None, callback) 146 + } 147 + 148 + @@ -697,7 +698,7 @@ fn iterate_trait_method_candidates( 149 + } 150 + known_implemented = true; 151 + // FIXME: we shouldn't be ignoring the binders here 152 + - callback(self_ty, *item)? 153 + + try_control_flow!(callback(self_ty, *item)) 154 + } 155 + } 156 + ControlFlow::Continue(()) 157 + @@ -774,7 +775,7 @@ fn iterate_inherent_methods( 158 + continue; 159 + } 160 + let receiver_ty = receiver_ty.unwrap_or(self_ty); 161 + - callback(receiver_ty, item)?; 162 + + try_control_flow!(callback(receiver_ty, item)); 163 + } 164 + } 165 + } 166 + diff --git a/crates/ide/src/hover.rs b/crates/ide/src/hover.rs 167 + index 506d3ba3c..590963c17 100644 168 + --- a/crates/ide/src/hover.rs 169 + +++ b/crates/ide/src/hover.rs 170 + @@ -1,4 +1,4 @@ 171 + -use std::{collections::HashSet, ops::ControlFlow}; 172 + +use std::collections::HashSet; 173 + 174 + use either::Either; 175 + use hir::{AsAssocItem, HasAttrs, HasSource, HirDisplay, Semantics, TypeInfo}; 176 + @@ -12,7 +12,7 @@ use ide_db::{ 177 + RootDatabase, 178 + }; 179 + use itertools::Itertools; 180 + -use stdx::format_to; 181 + +use stdx::{format_to, ControlFlow}; 182 + use syntax::{ 183 + algo, ast, display::fn_as_proc_macro_label, match_ast, AstNode, Direction, SyntaxKind::*, 184 + SyntaxNode, SyntaxToken, TextRange, TextSize, T, 185 + diff --git a/crates/stdx/src/lib.rs b/crates/stdx/src/lib.rs 186 + index e7d4753de..fddf95147 100644 187 + --- a/crates/stdx/src/lib.rs 188 + +++ b/crates/stdx/src/lib.rs 189 + @@ -7,6 +7,22 @@ pub mod panic_context; 190 + 191 + pub use always_assert::{always, never}; 192 + 193 + +/// std::ops::ControlFlow from rust std 1.55.0 194 + +pub enum ControlFlow<B, C = ()> { 195 + + Continue(C), 196 + + Break(B), 197 + +} 198 + + 199 + +#[macro_export] 200 + +macro_rules! try_control_flow { 201 + + ($e:expr) => { 202 + + match $e { 203 + + $crate::ControlFlow::Continue(c) => c, 204 + + $crate::ControlFlow::Break(b) => return $crate::ControlFlow::Break(b), 205 + + } 206 + + }; 207 + +} 208 + + 209 + #[inline(always)] 210 + pub fn is_ci() -> bool { 211 + option_env!("CI").is_some() 212 +
+26
pkgs/development/tools/rust/rust-script/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "rust-script"; 5 + version = "0.17.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "fornwall"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "0jz8hlvl31c5h8whd6pnpmslw6w6alkxijd9lhgric1yypiym9x3"; 12 + }; 13 + 14 + cargoSha256 = "sha256-hg0QtxR1qm/x8G6HoN7xAyOwh9jiQvX2wWYjUR8YvMs="; 15 + 16 + # TODO: switch to `cargoCheckType = "false"` after #138822 is merged 17 + # tests only work in debug mode 18 + doCheck = false; 19 + 20 + meta = with lib; { 21 + description = "Run Rust files and expressions as scripts without any setup or compilation step"; 22 + homepage = "https://rust-script.org"; 23 + license = with licenses; [ mit /* or */ asl20 ]; 24 + maintainers = with maintainers; [ figsoda ]; 25 + }; 26 + }
+2 -2
pkgs/development/tools/vultr-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "vultr-cli"; 5 - version = "2.8.2"; 5 + version = "2.8.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vultr"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-fjmisTDW35aIFbWFF4gdyP8ygNd0o7sdsNr0NX1Hvfg="; 11 + sha256 = "sha256-TQgyJBzcfvT004Op7p6Iq7olOebJMK3HuU7PtGBkNII="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+2 -2
pkgs/development/tools/yq-go/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "yq-go"; 5 - version = "4.13.0"; 5 + version = "4.13.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mikefarah"; 9 9 repo = "yq"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-9yKCFEtGg6TiHo3PGobVzQSbqc27ptKhH+2WgbLKXRI="; 11 + sha256 = "sha256-manTuR7/3FE+q08WTVAtKilPCQBK136O8w1r5OX9T08="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-u7elWOW/tz1ISM/KC1njkZmPi8AEEssZ5QtxK/+1/1I=";
+3 -3
pkgs/development/web/deno/default.nix
··· 17 17 18 18 rustPlatform.buildRustPackage rec { 19 19 pname = "deno"; 20 - version = "1.14.0"; 20 + version = "1.14.1"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "denoland"; 24 24 repo = pname; 25 25 rev = "v${version}"; 26 - sha256 = "sha256-AVWQDFw/kof8rxKCs9N5efNDRe6TGseD6g1QAf02fx0="; 26 + sha256 = "sha256-WTBurNXI+t8S0f2ER6zw+6SlkzKYLDGFQcEVbXSQAtc="; 27 27 }; 28 - cargoSha256 = "sha256-MjmnKypvnPKhU5qZFGNVAz1hK3VkHudRwSPxciobuJU="; 28 + cargoSha256 = "sha256-/ohAzcfsoarPicinsZf5fi2cQwYD1oW5TOdWP8RbXos="; 29 29 30 30 # Install completions post-install 31 31 nativeBuildInputs = [ installShellFiles ];
+1 -1
pkgs/games/empty-epsilon/0001-bundle-system-glm-in-seriousproton.patch
··· 26 26 target_link_libraries(seriousproton_deps 27 27 INTERFACE 28 28 - box2d lua glew ${SFML_LIBRARIES} 29 - + box2d lua glew ${SFML_LIBRARIES} glm 29 + + box2d lua glew ${SFML_LIBRARIES} glm::glm 30 30 "$<$<BOOL:${WIN32}>:wsock32>" 31 31 # LTO flag must be on the linker's list as well. 32 32 "$<$<AND:$<BOOL:${CMAKE_COMPILER_IS_GNUCC}>,$<OR:$<CONFIG:RelWithDebInfo>,$<CONFIG:Release>>>:-flto>"
+218 -158
pkgs/misc/vim-plugins/generated.nix
··· 77 77 78 78 ale = buildVimPluginFrom2Nix { 79 79 pname = "ale"; 80 - version = "2021-09-17"; 80 + version = "2021-09-21"; 81 81 src = fetchFromGitHub { 82 82 owner = "dense-analysis"; 83 83 repo = "ale"; 84 - rev = "2f72a3ed1972d23a5ef50c78715ec68f090932e8"; 85 - sha256 = "1vjg0y02cnnknjgj0zp9f4s84y7dbcy80aw1jp6qizb6cfbkv39v"; 84 + rev = "f8a4c78b5b293d11da9075373c9de0bb5afdeffe"; 85 + sha256 = "0jmcsaz9hswcwkdmisggr34sn10mrfvybk5b8cmi86v8swz559yw"; 86 86 }; 87 87 meta.homepage = "https://github.com/dense-analysis/ale/"; 88 88 }; ··· 389 389 390 390 bufferline-nvim = buildVimPluginFrom2Nix { 391 391 pname = "bufferline.nvim"; 392 - version = "2021-09-16"; 392 + version = "2021-09-21"; 393 393 src = fetchFromGitHub { 394 394 owner = "akinsho"; 395 395 repo = "bufferline.nvim"; 396 - rev = "be5866b77c713d92cf3d383a387bec1d55e3f798"; 397 - sha256 = "1v4fw3idhbhnnnn08zw92g7pyb2x5ss8zbi7hfbxvn5jkpzyqz6p"; 396 + rev = "94211eac27c931f4458ce713fbe430b7cc82dea8"; 397 + sha256 = "12r6fyhip1gxxskmzakd209zh8pw8wx0niz3519m6giss7chllif"; 398 398 }; 399 399 meta.homepage = "https://github.com/akinsho/bufferline.nvim/"; 400 400 }; ··· 437 437 438 438 caw-vim = buildVimPluginFrom2Nix { 439 439 pname = "caw.vim"; 440 - version = "2021-09-16"; 440 + version = "2021-09-20"; 441 441 src = fetchFromGitHub { 442 442 owner = "tyru"; 443 443 repo = "caw.vim"; 444 - rev = "8978f977a2a80396ab3a536a0df0a3727fca9882"; 445 - sha256 = "0rskyi56rhq6l3iv1695xl049ji2l3y5y7fm272hyb18ggq1rzja"; 444 + rev = "3aefcb5a752a599a9200dd801d6bcb0b7606bf29"; 445 + sha256 = "0v21vp0ngj60ksmyrk6f8ld25qqmx298nsd0v1kj2ysrcvj3hjb7"; 446 446 }; 447 447 meta.homepage = "https://github.com/tyru/caw.vim/"; 448 448 }; 449 449 450 450 chadtree = buildVimPluginFrom2Nix { 451 451 pname = "chadtree"; 452 - version = "2021-09-18"; 452 + version = "2021-09-21"; 453 453 src = fetchFromGitHub { 454 454 owner = "ms-jpq"; 455 455 repo = "chadtree"; 456 - rev = "566ed3821410954826e2e5b55b3cbdd1333f1723"; 457 - sha256 = "1f1k1hqvjjip0i6hqdhaaihw57krb6bafaaq4xh1dk3h83gkx96m"; 456 + rev = "037682510c0229437b4969dd1780d88b4eb10718"; 457 + sha256 = "0y34w513wl77i5iq1930xv04hhd4ndiy21n728bj6bv7fkqbs95c"; 458 458 }; 459 459 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 460 460 }; ··· 473 473 474 474 cheatsheet-nvim = buildVimPluginFrom2Nix { 475 475 pname = "cheatsheet.nvim"; 476 - version = "2021-08-20"; 476 + version = "2021-09-20"; 477 477 src = fetchFromGitHub { 478 478 owner = "sudormrfbin"; 479 479 repo = "cheatsheet.nvim"; 480 - rev = "7d83f02176287436acc06428ded782fe4bc08b94"; 481 - sha256 = "1ajqmg4lls4nc9bpw233rd25z5qfbnkwbdi1jnrh79nlr9sxvcyp"; 480 + rev = "3f0b718a030dd2c2757e053345de4f130f213514"; 481 + sha256 = "0k1y57k14hgvjr7cq6likbwb2vdxmj6kiqbiqnk6arhnf8n614gi"; 482 482 }; 483 483 meta.homepage = "https://github.com/sudormrfbin/cheatsheet.nvim/"; 484 484 }; ··· 689 689 690 690 cmp_luasnip = buildVimPluginFrom2Nix { 691 691 pname = "cmp_luasnip"; 692 - version = "2021-09-13"; 692 + version = "2021-09-20"; 693 693 src = fetchFromGitHub { 694 694 owner = "saadparwaiz1"; 695 695 repo = "cmp_luasnip"; 696 - rev = "e22fe57aec4f9e7029b8e547657fbee1b16cbaf7"; 697 - sha256 = "0fkzxhs8gj5vbcbs2s8n66fjzmrxvzh1bn3kxijszmcm706d3nyq"; 696 + rev = "a0fb34a0ecfd06ae74f90517bb4da1e27223ec34"; 697 + sha256 = "1y6vpb5l2qy9vis2flm5s074lkhagbibgjwrzh8vzbfjghywadls"; 698 698 }; 699 699 meta.homepage = "https://github.com/saadparwaiz1/cmp_luasnip/"; 700 700 }; ··· 1110 1110 1111 1111 ctrlp-py-matcher = buildVimPluginFrom2Nix { 1112 1112 pname = "ctrlp-py-matcher"; 1113 - version = "2021-04-08"; 1113 + version = "2021-09-20"; 1114 1114 src = fetchFromGitHub { 1115 1115 owner = "FelikZ"; 1116 1116 repo = "ctrlp-py-matcher"; 1117 - rev = "24969b88702bca79a6bfd85256450936968cf55d"; 1118 - sha256 = "0fc2i14gsg6srjvmibz1d5dzzg9bry35pl5xs43l80xnhpkdndm8"; 1117 + rev = "940e267d4fecd81287a1bdecc8475bf079e9dca9"; 1118 + sha256 = "133xhi069ndcgj6wcgj5xvpf4m9c34zs9cnk35qpx13h2scxdsa4"; 1119 1119 }; 1120 1120 meta.homepage = "https://github.com/FelikZ/ctrlp-py-matcher/"; 1121 1121 }; ··· 1592 1592 1593 1593 echodoc-vim = buildVimPluginFrom2Nix { 1594 1594 pname = "echodoc.vim"; 1595 - version = "2021-09-16"; 1595 + version = "2021-09-19"; 1596 1596 src = fetchFromGitHub { 1597 1597 owner = "Shougo"; 1598 1598 repo = "echodoc.vim"; 1599 - rev = "b77548dcebf3a3324fec44ba361f3cd8dbe89f18"; 1600 - sha256 = "0fqd3fqfg7zri0y4mm0d4rpp87wjf8kpy0gphkha5r4lpd2mjgv4"; 1599 + rev = "da6ce88098c71b1b959471af06b2f9f2412145a9"; 1600 + sha256 = "1n321bglnmd9xi7zrvg32l4ilanvx5aiqq4kcqrb9cai5dw8arla"; 1601 1601 }; 1602 1602 meta.homepage = "https://github.com/Shougo/echodoc.vim/"; 1603 1603 }; ··· 1786 1786 1787 1787 fern-vim = buildVimPluginFrom2Nix { 1788 1788 pname = "fern.vim"; 1789 - version = "2021-08-08"; 1789 + version = "2021-09-19"; 1790 1790 src = fetchFromGitHub { 1791 1791 owner = "lambdalisue"; 1792 1792 repo = "fern.vim"; 1793 - rev = "ed2e422f047eb2cc8afcfecea9464984cfa801a0"; 1794 - sha256 = "0jr632pd274xhyji7b1l195i8avf20v4d9g8r4w1ryskirj1k3ry"; 1793 + rev = "264a73d4df15a9234a4ec74ecd70e9a0b9d45bf7"; 1794 + sha256 = "165kac22gmfm8f64rb5xgv8pqap2zh87xvhnd7i1fy34yzj0n514"; 1795 1795 }; 1796 1796 meta.homepage = "https://github.com/lambdalisue/fern.vim/"; 1797 1797 }; ··· 1883 1883 1884 1884 formatter-nvim = buildVimPluginFrom2Nix { 1885 1885 pname = "formatter.nvim"; 1886 - version = "2021-09-15"; 1886 + version = "2021-09-20"; 1887 1887 src = fetchFromGitHub { 1888 1888 owner = "mhartington"; 1889 1889 repo = "formatter.nvim"; 1890 - rev = "42aa771f34843f1583be98bfabc8f4a71f20a001"; 1891 - sha256 = "0zrrsisil9z1w6xcf9r5f52w0mnhv9qcl3zsl5c2hkw8ar7im27j"; 1890 + rev = "2b187813f63d22f572ebe406711e2d0e81272f8e"; 1891 + sha256 = "0vbwagbx2wzalf9sp3w6fr06fllvj936id4yvafk73gp6ihsn1wj"; 1892 1892 }; 1893 1893 meta.homepage = "https://github.com/mhartington/formatter.nvim/"; 1894 1894 }; ··· 1931 1931 1932 1932 fugitive-gitlab-vim = buildVimPluginFrom2Nix { 1933 1933 pname = "fugitive-gitlab.vim"; 1934 - version = "2021-09-14"; 1934 + version = "2021-09-20"; 1935 1935 src = fetchFromGitHub { 1936 1936 owner = "shumphrey"; 1937 1937 repo = "fugitive-gitlab.vim"; 1938 - rev = "36155d4b9f7a7abc2e6e94936952c661314f141f"; 1939 - sha256 = "1y0fpzgrqvnk2bgks1icbidc60z07syiaf8912rncmx4pdc2gzv1"; 1938 + rev = "85d4e16e03b05964560514afe53bc74f9d445b02"; 1939 + sha256 = "1zvn4rz765yjxyhv71dxly9lzdp9r94762jprff0srpnsyjiypz2"; 1940 1940 }; 1941 1941 meta.homepage = "https://github.com/shumphrey/fugitive-gitlab.vim/"; 1942 1942 }; ··· 2135 2135 2136 2136 gitsigns-nvim = buildVimPluginFrom2Nix { 2137 2137 pname = "gitsigns.nvim"; 2138 - version = "2021-09-14"; 2138 + version = "2021-09-20"; 2139 2139 src = fetchFromGitHub { 2140 2140 owner = "lewis6991"; 2141 2141 repo = "gitsigns.nvim"; 2142 - rev = "42acbae18327c53b8a82011074bcb529c3c75c8a"; 2143 - sha256 = "1m5wczqigx3a73a97p0qgqj5121mjawslj596jd18v5scbr39gv0"; 2142 + rev = "60403b46c67ee3ead7e59715ceab27a2affb2e6e"; 2143 + sha256 = "1mq5nyhy9cxp45bk261jzbh1yaniy0xh22v6yzqg5mfbjipmvcpc"; 2144 2144 }; 2145 2145 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 2146 2146 }; ··· 2207 2207 2208 2208 goto-preview = buildVimPluginFrom2Nix { 2209 2209 pname = "goto-preview"; 2210 - version = "2021-09-17"; 2210 + version = "2021-09-21"; 2211 2211 src = fetchFromGitHub { 2212 2212 owner = "rmagatti"; 2213 2213 repo = "goto-preview"; 2214 - rev = "88ebcb56214ace7f52f2a846b40ff1f3e098af35"; 2215 - sha256 = "17xpdh5q62d97v5akq52b7qpfqmnvai5ggn46c0ysgl0r5cdycrv"; 2214 + rev = "0f2f5a960f4de920741614bc5142d9c83a775254"; 2215 + sha256 = "1g9mf0zyd5favsspy8sa7j25x0981n4fyhrdxix3m1dglcpc1h5b"; 2216 2216 }; 2217 2217 meta.homepage = "https://github.com/rmagatti/goto-preview/"; 2218 2218 }; ··· 2495 2495 2496 2496 indent-blankline-nvim = buildVimPluginFrom2Nix { 2497 2497 pname = "indent-blankline.nvim"; 2498 - version = "2021-09-15"; 2498 + version = "2021-09-21"; 2499 2499 src = fetchFromGitHub { 2500 2500 owner = "lukas-reineke"; 2501 2501 repo = "indent-blankline.nvim"; 2502 - rev = "aed095e367bead0784a72e946ddfa2337b59ace8"; 2503 - sha256 = "0w90k6zd26a5zsfni10m509gcv7w5gfrcwx9xazhkz4bqwzc8jjr"; 2502 + rev = "f39a3a58baa7f6dbe76db9c8b36473eedb27348d"; 2503 + sha256 = "00qwhvhfx8a6nbw6b2jjrgnj1drslqqx8yrd50324iblxhs9gbf4"; 2504 2504 }; 2505 2505 meta.homepage = "https://github.com/lukas-reineke/indent-blankline.nvim/"; 2506 2506 }; ··· 2772 2772 2773 2773 LeaderF = buildVimPluginFrom2Nix { 2774 2774 pname = "LeaderF"; 2775 - version = "2021-08-31"; 2775 + version = "2021-09-19"; 2776 2776 src = fetchFromGitHub { 2777 2777 owner = "Yggdroot"; 2778 2778 repo = "LeaderF"; 2779 - rev = "880888469193a6bf020376bab098a7401a06e445"; 2780 - sha256 = "03hq263cqay01v6hazghma4h48j30kqpx6bbnwsar26m8vg6vpg1"; 2779 + rev = "f80ff99c434d4d233a4a8bf2d116289b6619fbcd"; 2780 + sha256 = "0l0jy9wj95vz86rzmf5yvrvmbapg8g6rfx8ls21i95kzbm02c435"; 2781 2781 }; 2782 2782 meta.homepage = "https://github.com/Yggdroot/LeaderF/"; 2783 2783 }; ··· 2940 2940 2941 2941 lir-nvim = buildVimPluginFrom2Nix { 2942 2942 pname = "lir.nvim"; 2943 - version = "2021-08-27"; 2943 + version = "2021-09-20"; 2944 2944 src = fetchFromGitHub { 2945 2945 owner = "tamago324"; 2946 2946 repo = "lir.nvim"; 2947 - rev = "ccbae9636949afa9d3afbcba93f35dba3437ad94"; 2948 - sha256 = "1lxh6vh4nnfldxqivnv1f03300pmm7cb5pvapa2afv6h8src8hzs"; 2947 + rev = "bc14ddcb173d332e62ce3712eb0ca3ac6d9fa59a"; 2948 + sha256 = "1sh13m98dni9dspjiwsaafzvg3nlwd41v5ma5achpzla80hzm2h1"; 2949 2949 }; 2950 2950 meta.homepage = "https://github.com/tamago324/lir.nvim/"; 2951 2951 }; ··· 3012 3012 3013 3013 lsp_signature-nvim = buildVimPluginFrom2Nix { 3014 3014 pname = "lsp_signature.nvim"; 3015 - version = "2021-09-17"; 3015 + version = "2021-09-19"; 3016 3016 src = fetchFromGitHub { 3017 3017 owner = "ray-x"; 3018 3018 repo = "lsp_signature.nvim"; 3019 - rev = "5ee2b1fff09463e22679f5f3f8040d1200d6f848"; 3020 - sha256 = "18pa21ia9mvla19glf0k20l73mm8kam81xqq73ns16ww9mmql51z"; 3019 + rev = "99a81120838dad866a42823670e6b6666eb8c9c5"; 3020 + sha256 = "0mvv9xkks18d581jc6s2j2hkds3ajg7r9qsxxrrfn4g0n03gcka4"; 3021 3021 }; 3022 3022 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 3023 3023 }; ··· 3072 3072 3073 3073 luasnip = buildVimPluginFrom2Nix { 3074 3074 pname = "luasnip"; 3075 - version = "2021-09-18"; 3075 + version = "2021-09-21"; 3076 3076 src = fetchFromGitHub { 3077 3077 owner = "l3mon4d3"; 3078 3078 repo = "luasnip"; 3079 - rev = "ccf8d5da2370877ccf7b3ea164d0530ff1f59a87"; 3080 - sha256 = "04646vmfkpzby0dimxs2xaim4isjnvfivildjskl8frbabkfwkrw"; 3079 + rev = "800e1876df24a178252520253eb63cb5c9f0e1b9"; 3080 + sha256 = "1w334jqw7b0bmrhx0036iaxb9lpi17vb1wq99kgwada7yxl5a72s"; 3081 3081 }; 3082 3082 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; 3083 3083 }; ··· 3456 3456 3457 3457 neco-vim = buildVimPluginFrom2Nix { 3458 3458 pname = "neco-vim"; 3459 - version = "2021-08-28"; 3459 + version = "2021-09-20"; 3460 3460 src = fetchFromGitHub { 3461 3461 owner = "Shougo"; 3462 3462 repo = "neco-vim"; 3463 - rev = "31e5725ab5666396921d86bcec2f0b6ea0028ce7"; 3464 - sha256 = "1mm827a9d848ypp6x77paqii37a1j70vwh3hayp8p7g3pv4cimjl"; 3463 + rev = "cd666d51cb4d03e509039fd35e5744bbf9db431b"; 3464 + sha256 = "0q3sdrdi78p09mns9mdpicvhrm8y6n1vna96n0v4yfjknkxa02yw"; 3465 3465 }; 3466 3466 meta.homepage = "https://github.com/Shougo/neco-vim/"; 3467 3467 }; ··· 3600 3600 3601 3601 neosnippet-vim = buildVimPluginFrom2Nix { 3602 3602 pname = "neosnippet.vim"; 3603 - version = "2021-09-15"; 3603 + version = "2021-09-20"; 3604 3604 src = fetchFromGitHub { 3605 3605 owner = "Shougo"; 3606 3606 repo = "neosnippet.vim"; 3607 - rev = "5d07842911b485240719b781dfd7817b85c8eb96"; 3608 - sha256 = "0igrsgvaa36p42gp375w17dp9iz652lr91mmbznbbbb71d7y7l1y"; 3607 + rev = "0ab419e93f4256baed77229548195402e170afa8"; 3608 + sha256 = "1gsf5d610slh9cdy6i52fh0k98m5b7xvzp35l6cq008acgsvh575"; 3609 3609 }; 3610 3610 meta.homepage = "https://github.com/Shougo/neosnippet.vim/"; 3611 3611 }; ··· 3696 3696 3697 3697 nerdtree = buildVimPluginFrom2Nix { 3698 3698 pname = "nerdtree"; 3699 - version = "2021-09-15"; 3699 + version = "2021-09-20"; 3700 3700 src = fetchFromGitHub { 3701 3701 owner = "preservim"; 3702 3702 repo = "nerdtree"; 3703 - rev = "7eee457efae1bf9b96d7a266ac097639720a68fe"; 3704 - sha256 = "0lm58labs6jr1yyax839ks67ij30ijlknf0lnwijv2alf5rzqsc2"; 3703 + rev = "e731b845590017493224dfcb7403c2332105b700"; 3704 + sha256 = "1ksvs97cck1m8k1m6gngv62c7hh3l9ray82nmwyghs68mncn87nc"; 3705 3705 }; 3706 3706 meta.homepage = "https://github.com/preservim/nerdtree/"; 3707 3707 }; ··· 3792 3792 3793 3793 nord-nvim = buildVimPluginFrom2Nix { 3794 3794 pname = "nord.nvim"; 3795 - version = "2021-09-09"; 3795 + version = "2021-09-20"; 3796 3796 src = fetchFromGitHub { 3797 3797 owner = "shaunsingh"; 3798 3798 repo = "nord.nvim"; 3799 - rev = "467d684f296a57b0069ff4ee9566df439511efe3"; 3799 + rev = "ebd3ff7b96ff8f9e75ec19f77bd10cb2bb7c8e84"; 3800 3800 sha256 = "1grnvi8glqffbr1k4sifr0bg6dkflarzj3f6c2jbm98l4dk3vps8"; 3801 3801 }; 3802 3802 meta.homepage = "https://github.com/shaunsingh/nord.nvim/"; ··· 3816 3816 3817 3817 nterm-nvim = buildVimPluginFrom2Nix { 3818 3818 pname = "nterm.nvim"; 3819 - version = "2021-08-24"; 3819 + version = "2021-09-21"; 3820 3820 src = fetchFromGitHub { 3821 3821 owner = "jlesquembre"; 3822 3822 repo = "nterm.nvim"; 3823 - rev = "bb612046c7775c6986e706b8ab31057ed8ca19b2"; 3824 - sha256 = "1r50z8c3jjx1ysazih298ni2iikblmj48gxh3k9p722kngfdsxjg"; 3823 + rev = "fb16fc215702b075574f83c0e332d47575da642e"; 3824 + sha256 = "1kcdkw4i1q889hnil70fjqqikzlzqcrhf0i5ab6y8mh5vpg6cp96"; 3825 3825 }; 3826 3826 meta.homepage = "https://github.com/jlesquembre/nterm.nvim/"; 3827 3827 }; 3828 3828 3829 3829 null-ls-nvim = buildVimPluginFrom2Nix { 3830 3830 pname = "null-ls.nvim"; 3831 - version = "2021-09-17"; 3831 + version = "2021-09-21"; 3832 3832 src = fetchFromGitHub { 3833 3833 owner = "jose-elias-alvarez"; 3834 3834 repo = "null-ls.nvim"; 3835 - rev = "2c6a20434de6b1d09f76c20eea34e37e7432e06c"; 3836 - sha256 = "1z58wqvw8xslz9yzbrnmsjn0mdn9kpvrrv7hmydfc2a8vir55mlk"; 3835 + rev = "96b977966810b5038cb3b96ec54247c7a63c9c92"; 3836 + sha256 = "1yhcm3p9msw09jh968isg09dqn49gfbjbdpvqd638siij70zs9ki"; 3837 3837 }; 3838 3838 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 3839 3839 }; ··· 3876 3876 3877 3877 nvim-autopairs = buildVimPluginFrom2Nix { 3878 3878 pname = "nvim-autopairs"; 3879 - version = "2021-09-18"; 3879 + version = "2021-09-20"; 3880 3880 src = fetchFromGitHub { 3881 3881 owner = "windwp"; 3882 3882 repo = "nvim-autopairs"; 3883 - rev = "e465f581f9dce556a37366587ab1fabd2bb75fbf"; 3884 - sha256 = "0l4r3ba7rqiab47fqzbzbxvkxirpw7f9lsvif4agm1hdm5hqpgxi"; 3883 + rev = "19bb83320aec21d7fcb1514f3cb8bd8496d22ea8"; 3884 + sha256 = "18xwwdbzggfyy86mh1ji17a9b62d86cc1jnw9r93996ynqdrs87n"; 3885 3885 }; 3886 3886 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 3887 3887 }; 3888 3888 3889 3889 nvim-base16 = buildVimPluginFrom2Nix { 3890 3890 pname = "nvim-base16"; 3891 - version = "2021-08-23"; 3891 + version = "2021-09-21"; 3892 3892 src = fetchFromGitHub { 3893 3893 owner = "RRethy"; 3894 3894 repo = "nvim-base16"; 3895 - rev = "bb06f63bacdd6ca0ea6e5874843e5854ea01cb6f"; 3896 - sha256 = "1qginyalp9j9pv1pb0448ngvfjphhj03n30jjsnk7zq11pdcdrwg"; 3895 + rev = "3e9e1d9c2f49ddc018f7f6b934d7a14e0d87f266"; 3896 + sha256 = "14bz8csj0ci67fkj01jc8zrxq8pg00y4dz91dy8d5a37lzrj2s1z"; 3897 3897 }; 3898 3898 meta.homepage = "https://github.com/RRethy/nvim-base16/"; 3899 3899 }; ··· 3936 3936 3937 3937 nvim-cmp = buildVimPluginFrom2Nix { 3938 3938 pname = "nvim-cmp"; 3939 - version = "2021-09-18"; 3939 + version = "2021-09-21"; 3940 3940 src = fetchFromGitHub { 3941 3941 owner = "hrsh7th"; 3942 3942 repo = "nvim-cmp"; 3943 - rev = "7c8876330df6e11cf91ca42ab6e52f37d81cc003"; 3944 - sha256 = "1z0kyffycwrl7izdmss9k9ldqqynhq1j2js4izbgpp1660iqsfja"; 3943 + rev = "0a8ca50d9e96ae5b84e71146b5eb9d30baabc84a"; 3944 + sha256 = "1lbp45hbwzprfpzrhkws853dnv1ax63bqnzav04bl787kk5ryajn"; 3945 3945 }; 3946 3946 meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; 3947 3947 }; ··· 3984 3984 3985 3985 nvim-dap = buildVimPluginFrom2Nix { 3986 3986 pname = "nvim-dap"; 3987 - version = "2021-09-18"; 3987 + version = "2021-09-20"; 3988 3988 src = fetchFromGitHub { 3989 3989 owner = "mfussenegger"; 3990 3990 repo = "nvim-dap"; 3991 - rev = "5ecabb093c360786321bce1b618c324bde3dae70"; 3992 - sha256 = "1gxp0x6b4f08xbvl8w5s17v665b59r8nqky27vvz0pmwwnkjxwlp"; 3991 + rev = "1ccfcc12f7d1019e4afa0a1bb64c371d0944d179"; 3992 + sha256 = "1xvvv6sxcsf6n3gxfrdxdcbvqfs8sc2fjwg6jz0rgbsavlis476b"; 3993 3993 }; 3994 3994 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 3995 3995 }; ··· 4044 4044 4045 4045 nvim-gps = buildVimPluginFrom2Nix { 4046 4046 pname = "nvim-gps"; 4047 - version = "2021-09-12"; 4047 + version = "2021-09-19"; 4048 4048 src = fetchFromGitHub { 4049 4049 owner = "smiteshp"; 4050 4050 repo = "nvim-gps"; 4051 - rev = "38adf37b1937abdbee41860299d6dc29303bcfcc"; 4052 - sha256 = "0cvbdg4mvvnnziz28h0imgwf5cj9s3nji9z0gbkf0xzqanlfqbaa"; 4051 + rev = "aebf14fa2fdbdc468045d55d07641f498c548374"; 4052 + sha256 = "01hfm570hrx2paifnxxqirailxl5hfx22ay7j0cxk9v9z01p4dks"; 4053 4053 }; 4054 4054 meta.homepage = "https://github.com/smiteshp/nvim-gps/"; 4055 4055 }; ··· 4092 4092 4093 4093 nvim-jdtls = buildVimPluginFrom2Nix { 4094 4094 pname = "nvim-jdtls"; 4095 - version = "2021-09-06"; 4095 + version = "2021-09-21"; 4096 4096 src = fetchFromGitHub { 4097 4097 owner = "mfussenegger"; 4098 4098 repo = "nvim-jdtls"; 4099 - rev = "3792030b5281a2f7bcc186e04440036b44648e90"; 4100 - sha256 = "0wq82v8z0vsnbakc5dnn0f00bjm3mirqdaq3zlq0z2gx7jkmldfg"; 4099 + rev = "2aae87e2f5f7afd2a6fb8c75bcb63908299390b2"; 4100 + sha256 = "1lxlh0jbz2krfl4f037h2x992yc5riqznq257rahy7n7nydd0yma"; 4101 4101 }; 4102 4102 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 4103 4103 }; 4104 4104 4105 4105 nvim-lightbulb = buildVimPluginFrom2Nix { 4106 4106 pname = "nvim-lightbulb"; 4107 - version = "2021-09-18"; 4107 + version = "2021-09-21"; 4108 4108 src = fetchFromGitHub { 4109 4109 owner = "kosayoda"; 4110 4110 repo = "nvim-lightbulb"; 4111 - rev = "7180e64d7f8dcde0fd162d6ca55b73e2d9d9621b"; 4112 - sha256 = "1sv3xgjgbm3d9v1mwln9zfwllxjn37virzb9fmr6m1axc2vn5lj4"; 4111 + rev = "5b265fe19a3a60b6429b34c8cfdb0284ce52de33"; 4112 + sha256 = "0m2kq0rs0rkif8d8783dbd9dwahzih67zfz3wi58r5lsm4fnai9h"; 4113 4113 }; 4114 4114 meta.homepage = "https://github.com/kosayoda/nvim-lightbulb/"; 4115 4115 }; ··· 4200 4200 4201 4201 nvim-spectre = buildVimPluginFrom2Nix { 4202 4202 pname = "nvim-spectre"; 4203 - version = "2021-09-11"; 4203 + version = "2021-09-21"; 4204 4204 src = fetchFromGitHub { 4205 4205 owner = "windwp"; 4206 4206 repo = "nvim-spectre"; 4207 - rev = "f8d6775bf41a341b1ee4a9c76da1f2f98836c505"; 4208 - sha256 = "0vizqw40im61c5638910dh6aa4l9g9lspn0l1yqc3qnj7rvcjflc"; 4207 + rev = "966a8ca70599e818108b92f49ff45105df98f3cc"; 4208 + sha256 = "1x20a8pklmhanqvbiykwznwpgsg2mr6l2m3w6xkhjxpll7kb2vy4"; 4209 4209 }; 4210 4210 meta.homepage = "https://github.com/windwp/nvim-spectre/"; 4211 4211 }; ··· 4464 4464 4465 4465 open-browser-vim = buildVimPluginFrom2Nix { 4466 4466 pname = "open-browser.vim"; 4467 - version = "2020-05-20"; 4467 + version = "2021-09-20"; 4468 4468 src = fetchFromGitHub { 4469 4469 owner = "tyru"; 4470 4470 repo = "open-browser.vim"; 4471 - rev = "d6f1784685abdd86500fdb5fa2fbaf2aab833f18"; 4472 - sha256 = "1akgsq1v9v5klm995y09zmka0hbfsa0gr44gyp2nvqi9ggfadp0k"; 4471 + rev = "4d7131705ee97db15e10ec59f6de808feffa1f2e"; 4472 + sha256 = "1sxfflyrfly16l6b6lrga8r7mn7if7w9243lcx05jvp1sjdkw21n"; 4473 4473 }; 4474 4474 meta.homepage = "https://github.com/tyru/open-browser.vim/"; 4475 4475 }; 4476 4476 4477 4477 orgmode-nvim = buildVimPluginFrom2Nix { 4478 4478 pname = "orgmode.nvim"; 4479 - version = "2021-09-17"; 4479 + version = "2021-09-21"; 4480 4480 src = fetchFromGitHub { 4481 4481 owner = "kristijanhusak"; 4482 4482 repo = "orgmode.nvim"; 4483 - rev = "09ecdefb8f7a6d13a2dde1efe271e406ffa407c6"; 4484 - sha256 = "1s1mg8hvlz4n3fjfdhakihwpqcnrs1p5hdnwin6fx3wifbb55gp3"; 4483 + rev = "09d3d87b5a48cb31b8b1ddd84a1aa2012771fb9a"; 4484 + sha256 = "1l1jlcabjhqbz7dv0mr1qwajavq288y1ki07sjq70r8dzpzprg27"; 4485 4485 }; 4486 4486 meta.homepage = "https://github.com/kristijanhusak/orgmode.nvim/"; 4487 4487 }; 4488 4488 4489 4489 packer-nvim = buildVimPluginFrom2Nix { 4490 4490 pname = "packer.nvim"; 4491 - version = "2021-09-17"; 4491 + version = "2021-09-20"; 4492 4492 src = fetchFromGitHub { 4493 4493 owner = "wbthomason"; 4494 4494 repo = "packer.nvim"; 4495 - rev = "b6b568cb790b10bd2a83c2af27af8393ddc4832d"; 4496 - sha256 = "07pyvf4gqwr2qjdq5yjf5zgxx9g173jv6nlx2qwa01pp0jxca0x1"; 4495 + rev = "0a2d8cbaa2045bdf3797af7a5abb2d42d0edecb0"; 4496 + sha256 = "01xx86wj4yx730mpzzy805dh72ridvbhk5540zylbjxwwb5dh1y7"; 4497 4497 }; 4498 4498 meta.homepage = "https://github.com/wbthomason/packer.nvim/"; 4499 4499 }; ··· 4596 4596 4597 4597 plenary-nvim = buildVimPluginFrom2Nix { 4598 4598 pname = "plenary.nvim"; 4599 - version = "2021-09-16"; 4599 + version = "2021-09-21"; 4600 4600 src = fetchFromGitHub { 4601 4601 owner = "nvim-lua"; 4602 4602 repo = "plenary.nvim"; 4603 - rev = "ce8f7fa999b5c091d3e7badcc2340df62b94abf9"; 4604 - sha256 = "0v7yidq75yhcghg7bz86r3r59aj6ls7n9w5dhj1s4zskbmqvr94h"; 4603 + rev = "03ac32af651bb33acfc4ce20d5cb51bf5a424aa1"; 4604 + sha256 = "1rvw01i89mz43fzyxrynvfyxhb0xsijllf3y8yp5dvy61i9c7yar"; 4605 4605 }; 4606 4606 meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; 4607 4607 }; ··· 4653 4653 sha256 = "0jhvm4vyqw77x5lkm93aa54ma2yf77js6kgcrcr1024gnggnznz7"; 4654 4654 }; 4655 4655 meta.homepage = "https://github.com/andweeb/presence.nvim/"; 4656 + }; 4657 + 4658 + presenting-vim = buildVimPluginFrom2Nix { 4659 + pname = "presenting.vim"; 4660 + version = "2021-06-02"; 4661 + src = fetchFromGitHub { 4662 + owner = "sotte"; 4663 + repo = "presenting.vim"; 4664 + rev = "fd826318582ffccf2f79aff7bef365d68f2ca4fc"; 4665 + sha256 = "1s2c44ngv5vpszwg0nkcghb5flzq9pby1m0l7gr7vwb9p7xl3b83"; 4666 + }; 4667 + meta.homepage = "https://github.com/sotte/presenting.vim/"; 4656 4668 }; 4657 4669 4658 4670 PreserveNoEOL = buildVimPluginFrom2Nix { ··· 5172 5184 meta.homepage = "https://github.com/mopp/sky-color-clock.vim/"; 5173 5185 }; 5174 5186 5187 + slimv = buildVimPluginFrom2Nix { 5188 + pname = "slimv"; 5189 + version = "2021-08-24"; 5190 + src = fetchFromGitHub { 5191 + owner = "kovisoft"; 5192 + repo = "slimv"; 5193 + rev = "1c1ef6dad577e8c5fb7d94ec3b6d698b68e7730d"; 5194 + sha256 = "03wy3apmzbrjxypq2xv1z71xnx7bkvhyarw5w1y3l8gl430vjmgi"; 5195 + }; 5196 + meta.homepage = "https://github.com/kovisoft/slimv/"; 5197 + }; 5198 + 5175 5199 smartpairs-vim = buildVimPluginFrom2Nix { 5176 5200 pname = "smartpairs.vim"; 5177 5201 version = "2018-01-01"; ··· 5331 5355 5332 5356 sqlite-lua = buildVimPluginFrom2Nix { 5333 5357 pname = "sqlite.lua"; 5334 - version = "2021-09-18"; 5358 + version = "2021-09-21"; 5335 5359 src = fetchFromGitHub { 5336 5360 owner = "tami5"; 5337 5361 repo = "sqlite.lua"; 5338 - rev = "edf642e2f2088a7a4bafa5a3850fd2b338566c2c"; 5339 - sha256 = "06l604b2jfj1735dpgprkd00f02mfwbl43bjj08nsnpbjsd541mn"; 5362 + rev = "828cf63fd2494cd47bd6d2a3a5b927157d3204d1"; 5363 + sha256 = "0h34xl1ich9m4xgz3a9ck9liyya6swmmc9iqcr61lihhgh5fz3qz"; 5340 5364 }; 5341 5365 meta.homepage = "https://github.com/tami5/sqlite.lua/"; 5342 5366 }; ··· 5487 5511 5488 5512 tabnine-vim = buildVimPluginFrom2Nix { 5489 5513 pname = "tabnine-vim"; 5490 - version = "2021-09-14"; 5514 + version = "2021-09-19"; 5491 5515 src = fetchFromGitHub { 5492 5516 owner = "codota"; 5493 5517 repo = "tabnine-vim"; 5494 - rev = "b7fdf200d309f024bb035a65611422d22abe8710"; 5495 - sha256 = "1bvky5gsxhh9ldxk1l9fsaqmqvi7m248dgpwc4f6hh1xdyi9gvcf"; 5518 + rev = "7700a2809a08c1774bba6fa140c61bbd9831e12a"; 5519 + sha256 = "1swc4y8njgr343hfc4qiyfxzavz9fhzg6hnrplxm3zm8i8fbqz68"; 5496 5520 fetchSubmodules = true; 5497 5521 }; 5498 5522 meta.homepage = "https://github.com/codota/tabnine-vim/"; ··· 5584 5608 5585 5609 taskwiki = buildVimPluginFrom2Nix { 5586 5610 pname = "taskwiki"; 5587 - version = "2021-09-18"; 5611 + version = "2021-09-21"; 5588 5612 src = fetchFromGitHub { 5589 5613 owner = "tools-life"; 5590 5614 repo = "taskwiki"; 5591 - rev = "146d0891a62e6f9202d3d4795668626cb0f79494"; 5592 - sha256 = "1js1sq8arr9c8bzcyga64vblpq5qfy8dx16xvkyahakz2fk7rz40"; 5615 + rev = "70b33f336a0388c2d4fc72ecf7cab2245df580b8"; 5616 + sha256 = "1k3yh2ypzy6vwdvf1rrnswnpc9cqnjhvdsjal7yfqk2brvwawk46"; 5593 5617 }; 5594 5618 meta.homepage = "https://github.com/tools-life/taskwiki/"; 5595 5619 }; ··· 5717 5741 5718 5742 telescope-nvim = buildVimPluginFrom2Nix { 5719 5743 pname = "telescope.nvim"; 5720 - version = "2021-09-17"; 5744 + version = "2021-09-20"; 5721 5745 src = fetchFromGitHub { 5722 5746 owner = "nvim-telescope"; 5723 5747 repo = "telescope.nvim"; 5724 - rev = "2e7584f1cfdffb32bf26039a050cd2cf74ede4cd"; 5725 - sha256 = "16gdsx9yv5kwg8girmf51l6wb4v2kzg5snc1d2lhilizhs35qzmw"; 5748 + rev = "60660334c70d9d81dccc10a563e01920b9455e76"; 5749 + sha256 = "1ss1yrbsp4hnw7h1aqb7bkpd9p594r0g1906sgsmcglyjyc1zasc"; 5726 5750 }; 5727 5751 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 5728 5752 }; ··· 6076 6100 meta.homepage = "https://github.com/vhda/verilog_systemverilog.vim/"; 6077 6101 }; 6078 6102 6103 + vifm-vim = buildVimPluginFrom2Nix { 6104 + pname = "vifm.vim"; 6105 + version = "2021-09-21"; 6106 + src = fetchFromGitHub { 6107 + owner = "vifm"; 6108 + repo = "vifm.vim"; 6109 + rev = "858ef2d7a637b1c50c9266806473d895829d0775"; 6110 + sha256 = "1fbnhcxwic629nz49vp8qdxr164dqnlp7gfdb4qngj2j2mv6g44r"; 6111 + }; 6112 + meta.homepage = "https://github.com/vifm/vifm.vim/"; 6113 + }; 6114 + 6079 6115 vim-abolish = buildVimPluginFrom2Nix { 6080 6116 pname = "vim-abolish"; 6081 6117 version = "2021-03-20"; ··· 6330 6366 6331 6367 vim-airline = buildVimPluginFrom2Nix { 6332 6368 pname = "vim-airline"; 6333 - version = "2021-09-10"; 6369 + version = "2021-09-21"; 6334 6370 src = fetchFromGitHub { 6335 6371 owner = "vim-airline"; 6336 6372 repo = "vim-airline"; 6337 - rev = "2e29ab965625d1315f0ad070c928794baea3d66f"; 6338 - sha256 = "1v1n6q6iq1d82i4hrkp0rqmd5yd2p0znlwd5khwq3nsfgbqsnwa9"; 6373 + rev = "26f922753a288df639b8d05d13ed62b9b04a26bc"; 6374 + sha256 = "0ikjcdx7c0k8skl6mwywpnqdprp64fhvpkvzz0v95s1p7pmjbl83"; 6339 6375 }; 6340 6376 meta.homepage = "https://github.com/vim-airline/vim-airline/"; 6341 6377 }; ··· 6642 6678 6643 6679 vim-clap = buildVimPluginFrom2Nix { 6644 6680 pname = "vim-clap"; 6645 - version = "2021-09-15"; 6681 + version = "2021-09-20"; 6646 6682 src = fetchFromGitHub { 6647 6683 owner = "liuchengxu"; 6648 6684 repo = "vim-clap"; 6649 - rev = "c88f7fdd1c9a394a203785ed791261e7f9e159c7"; 6650 - sha256 = "1y7mzlns37a62zys87zd0zbzkwhb7216arjym9bf1n5gfllfbgcl"; 6685 + rev = "e5490b568561d51ea41ccc72e3cef88f85c8968a"; 6686 + sha256 = "19r3kgr2ahfyvm7slf6qvyxbzjviiq6ckkrqnkws6pr0n3jz1irl"; 6651 6687 }; 6652 6688 meta.homepage = "https://github.com/liuchengxu/vim-clap/"; 6653 6689 }; ··· 6906 6942 6907 6943 vim-dadbod = buildVimPluginFrom2Nix { 6908 6944 pname = "vim-dadbod"; 6909 - version = "2021-09-12"; 6945 + version = "2021-09-20"; 6910 6946 src = fetchFromGitHub { 6911 6947 owner = "tpope"; 6912 6948 repo = "vim-dadbod"; 6913 - rev = "3900e1003ba64bce7d8ed877d742bee386ad56dc"; 6914 - sha256 = "1xbjadnp0mx4a6r5ghlqx7w9ngf930yg4qyhkvlji0scf20vvjis"; 6949 + rev = "8fcde4c500440757f04e38c039005319476d1471"; 6950 + sha256 = "1b6759y9s8sl6d96xzc2lx5qqh0x5sabls12hz0zj6s1736hs3sk"; 6915 6951 }; 6916 6952 meta.homepage = "https://github.com/tpope/vim-dadbod/"; 6917 6953 }; ··· 7432 7468 meta.homepage = "https://github.com/thinca/vim-ft-diff_fold/"; 7433 7469 }; 7434 7470 7471 + vim-fubitive = buildVimPluginFrom2Nix { 7472 + pname = "vim-fubitive"; 7473 + version = "2020-09-10"; 7474 + src = fetchFromGitHub { 7475 + owner = "tommcdo"; 7476 + repo = "vim-fubitive"; 7477 + rev = "5717417ee75c39ea2f8f446a9491cdf99d5965e9"; 7478 + sha256 = "0lkp5i8s1214b9b1q9mg3aq32cvqzfd8q0i90bx9nf6n42cg2kjn"; 7479 + }; 7480 + meta.homepage = "https://github.com/tommcdo/vim-fubitive/"; 7481 + }; 7482 + 7435 7483 vim-fugitive = buildVimPluginFrom2Nix { 7436 7484 pname = "vim-fugitive"; 7437 - version = "2021-09-17"; 7485 + version = "2021-09-19"; 7438 7486 src = fetchFromGitHub { 7439 7487 owner = "tpope"; 7440 7488 repo = "vim-fugitive"; 7441 - rev = "a67e1f8189938c44f295fc97e6c9dd13b727b1e3"; 7442 - sha256 = "1r9z936myiasyvx8v838kfjgk1ymwdznsm7w629wchjm2zlxy4by"; 7489 + rev = "e1d382b3e7e7491acea8546ef3bdfa9ce7e54fef"; 7490 + sha256 = "1y1iascskvqq08020c7ks8xhn0b4zrsxva326iaa3ypwhsjada94"; 7443 7491 }; 7444 7492 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 7445 7493 }; ··· 8397 8445 8398 8446 vim-matchup = buildVimPluginFrom2Nix { 8399 8447 pname = "vim-matchup"; 8400 - version = "2021-09-12"; 8448 + version = "2021-09-20"; 8401 8449 src = fetchFromGitHub { 8402 8450 owner = "andymass"; 8403 8451 repo = "vim-matchup"; 8404 - rev = "5a1978e46a0e721b5c5d113379c685ff7ec339e7"; 8405 - sha256 = "0r5hwfc41p0yv3ny7sgr8aqyl2y81kfjwy4mcqiha0rbw0x41fas"; 8452 + rev = "daaa7dbde55d829dd456f458d90ae2ba98717ed2"; 8453 + sha256 = "1lqx3ixdf3l4pd4k2cbhxpsja66lm30bas4zciyxq5c9fgbpg091"; 8406 8454 }; 8407 8455 meta.homepage = "https://github.com/andymass/vim-matchup/"; 8408 8456 }; ··· 8637 8685 8638 8686 vim-ocaml = buildVimPluginFrom2Nix { 8639 8687 pname = "vim-ocaml"; 8640 - version = "2021-09-05"; 8688 + version = "2021-09-20"; 8641 8689 src = fetchFromGitHub { 8642 8690 owner = "ocaml"; 8643 8691 repo = "vim-ocaml"; 8644 - rev = "3582a24f46c965cfe5d6b0c50f636f52168df650"; 8645 - sha256 = "0wmrc4z4l8rk96kkixb148d53jzdm4w4vxlqidjm8q4d9vxnf6sb"; 8692 + rev = "d02e928db459d3c9e9727d990838caa70b83714a"; 8693 + sha256 = "0qqyr1r4sgbwylr2i1rpqkx9ww2im5nk3c2qai420ywp3y4hr8x5"; 8646 8694 }; 8647 8695 meta.homepage = "https://github.com/ocaml/vim-ocaml/"; 8648 8696 }; ··· 9776 9824 meta.homepage = "https://github.com/glts/vim-textobj-comment/"; 9777 9825 }; 9778 9826 9827 + vim-textobj-entire = buildVimPluginFrom2Nix { 9828 + pname = "vim-textobj-entire"; 9829 + version = "2018-01-19"; 9830 + src = fetchFromGitHub { 9831 + owner = "kana"; 9832 + repo = "vim-textobj-entire"; 9833 + rev = "64a856c9dff3425ed8a863b9ec0a21dbaee6fb3a"; 9834 + sha256 = "0kv0s85wbcxn9hrvml4hdzbpf49b1wwr3nk6gsz3p5rvfs6fbvmm"; 9835 + }; 9836 + meta.homepage = "https://github.com/kana/vim-textobj-entire/"; 9837 + }; 9838 + 9779 9839 vim-textobj-function = buildVimPluginFrom2Nix { 9780 9840 pname = "vim-textobj-function"; 9781 9841 version = "2014-05-03"; ··· 9910 9970 9911 9971 vim-toml = buildVimPluginFrom2Nix { 9912 9972 pname = "vim-toml"; 9913 - version = "2021-09-09"; 9973 + version = "2021-09-21"; 9914 9974 src = fetchFromGitHub { 9915 9975 owner = "cespare"; 9916 9976 repo = "vim-toml"; 9917 - rev = "b524235e91a6ce07a53411719c67e5265b3d5edf"; 9918 - sha256 = "05s9bl15myi6cppapfjadkjaqldsb6bsw8ksbqm379lscd6l6nv8"; 9977 + rev = "9a05931018f4046179b76dec5b3932b48f3e3fb9"; 9978 + sha256 = "11ck5flydf48hpagl0v6ik6cd05il6jv57hixnhg7pzyrjp5q26y"; 9919 9979 }; 9920 9980 meta.homepage = "https://github.com/cespare/vim-toml/"; 9921 9981 }; ··· 10006 10066 10007 10067 vim-unimpaired = buildVimPluginFrom2Nix { 10008 10068 pname = "vim-unimpaired"; 10009 - version = "2021-09-17"; 10069 + version = "2021-09-19"; 10010 10070 src = fetchFromGitHub { 10011 10071 owner = "tpope"; 10012 10072 repo = "vim-unimpaired"; 10013 - rev = "c51ed445182334aabd392f295708ebe8677bd8e8"; 10014 - sha256 = "0j5q11czlkhm4x78z6idbj6am29nfcg3yzli2l5607s60lvxnc0j"; 10073 + rev = "9cf8b258e444b393784c32d7560fff25b24c79d3"; 10074 + sha256 = "0bd9k8446163n8f5f3w3sxvx2s72b2mv0zjphkxxyhy9h7jycmz8"; 10015 10075 }; 10016 10076 meta.homepage = "https://github.com/tpope/vim-unimpaired/"; 10017 10077 }; ··· 10090 10150 10091 10151 vim-vsnip-integ = buildVimPluginFrom2Nix { 10092 10152 pname = "vim-vsnip-integ"; 10093 - version = "2021-09-13"; 10153 + version = "2021-09-19"; 10094 10154 src = fetchFromGitHub { 10095 10155 owner = "hrsh7th"; 10096 10156 repo = "vim-vsnip-integ"; 10097 - rev = "a570685fc5f691e2323cb2e3c267355b8f72527f"; 10098 - sha256 = "0ib7zmvwp46lacay0xq30sxx8jf2d5afzsrsyjkrzkzlvx8c40qh"; 10157 + rev = "21c77665bd9d57416be2b6d11378347e163cfaa4"; 10158 + sha256 = "0wpscf9mavc7g1494c53bghh733db7v02lvqv2ggskjygz7v7ikc"; 10099 10159 }; 10100 10160 meta.homepage = "https://github.com/hrsh7th/vim-vsnip-integ/"; 10101 10161 }; ··· 10402 10462 10403 10463 vimspector = buildVimPluginFrom2Nix { 10404 10464 pname = "vimspector"; 10405 - version = "2021-09-18"; 10465 + version = "2021-09-21"; 10406 10466 src = fetchFromGitHub { 10407 10467 owner = "puremourning"; 10408 10468 repo = "vimspector"; 10409 - rev = "66c5a3d08ca5f481851d360d4b39860b00fc8e00"; 10410 - sha256 = "1lrvzsy3grv2klm47diklhdx2i94h8hdxhzpcxr2ymnjl91c9isq"; 10469 + rev = "eb782756ac46a1f09dfaa1664fae3b9722876b8a"; 10470 + sha256 = "08hcd0gai7hxs6632s3w4yp93kpvz0525rps68g0nyyr8blrlp0i"; 10411 10471 fetchSubmodules = true; 10412 10472 }; 10413 10473 meta.homepage = "https://github.com/puremourning/vimspector/"; ··· 10415 10475 10416 10476 vimtex = buildVimPluginFrom2Nix { 10417 10477 pname = "vimtex"; 10418 - version = "2021-09-16"; 10478 + version = "2021-09-21"; 10419 10479 src = fetchFromGitHub { 10420 10480 owner = "lervag"; 10421 10481 repo = "vimtex"; 10422 - rev = "43ba45fe94e6b162c36f06ee80ecd8b225d7c703"; 10423 - sha256 = "12c1drvpiwg1jffgar057p9vk7jkcn8ijfxl5hhl9gp2jsy29xzv"; 10482 + rev = "562afdb82a58f105ae17c3e93e37ee233ae166a9"; 10483 + sha256 = "0nysplhi5yj7y4ngij284hp4g45f3qbf0fmssinhyl75miz102i4"; 10424 10484 }; 10425 10485 meta.homepage = "https://github.com/lervag/vimtex/"; 10426 10486 }; ··· 10487 10547 10488 10548 vista-vim = buildVimPluginFrom2Nix { 10489 10549 pname = "vista.vim"; 10490 - version = "2021-08-03"; 10550 + version = "2021-09-20"; 10491 10551 src = fetchFromGitHub { 10492 10552 owner = "liuchengxu"; 10493 10553 repo = "vista.vim"; 10494 - rev = "cb908f21c23d9c9ebce678c8dbc7a0f876384b8c"; 10495 - sha256 = "0s2r7k1g7bzwy0yc7hx6iqyha3839jngr2db5gdihnc1niq9z8q5"; 10554 + rev = "f49ca3dbf334ac33d2629c510524285335031706"; 10555 + sha256 = "1pb6njvshml5vwk4wf1w62dgf2ph2farccka2ly2wwiij8ajk6qk"; 10496 10556 }; 10497 10557 meta.homepage = "https://github.com/liuchengxu/vista.vim/"; 10498 10558 }; ··· 10668 10728 10669 10729 YouCompleteMe = buildVimPluginFrom2Nix { 10670 10730 pname = "YouCompleteMe"; 10671 - version = "2021-09-13"; 10731 + version = "2021-09-19"; 10672 10732 src = fetchFromGitHub { 10673 10733 owner = "ycm-core"; 10674 10734 repo = "YouCompleteMe"; 10675 - rev = "bb9ebb5b25be3534e33a585c77a14c77f15e8bc8"; 10676 - sha256 = "1pqa4j7i0qv5k5mxwdwmqrxb2jhqllv1s9rdyvji4qqpdfs6q343"; 10735 + rev = "4117a99861b537830d717c3113e3d584523bc573"; 10736 + sha256 = "1c0p1zk54rcn4ph1h17qyfrsdx90rgw7cc9hp1n8xpb9nhwvx494"; 10677 10737 fetchSubmodules = true; 10678 10738 }; 10679 10739 meta.homepage = "https://github.com/ycm-core/YouCompleteMe/";
+6 -1
pkgs/misc/vim-plugins/overrides.nix
··· 686 686 libiconv 687 687 ]; 688 688 689 - cargoSha256 = "083v2bnnjyf9j923p6bidgbvmwnh8sfv5ai70qfffzrysi5gvzdf"; 689 + cargoSha256 = "sha256-zg8PKuzC1srCOtn0ZcqI9cZxMwN9hsf+sNhYgDg93Gs="; 690 690 }; 691 691 in 692 692 '' ··· 834 834 835 835 vim-surround = super.vim-surround.overrideAttrs (old: { 836 836 dependencies = with self; [ vim-repeat ]; 837 + }); 838 + 839 + vim-textobj-entire = super.vim-textobj-entire.overrideAttrs (old: { 840 + dependencies = with self; [ vim-textobj-user ]; 841 + meta.maintainers = with lib.maintainers; [ farlion ]; 837 842 }); 838 843 839 844 vim-unimpaired = super.vim-unimpaired.overrideAttrs (old: {
+5
pkgs/misc/vim-plugins/vim-plugin-names
··· 324 324 kana/vim-operator-replace 325 325 kana/vim-operator-user 326 326 kana/vim-tabpagecd 327 + kana/vim-textobj-entire 327 328 kana/vim-textobj-function 328 329 kana/vim-textobj-user 329 330 karb94/neoscroll.nvim ··· 345 346 Konfekt/vim-alias 346 347 konfekt/vim-DetectSpellLang 347 348 kosayoda/nvim-lightbulb 349 + kovisoft/slimv 348 350 kristijanhusak/defx-git 349 351 kristijanhusak/defx-icons 350 352 kristijanhusak/deoplete-phpactor ··· 690 692 sodapopcan/vim-twiggy 691 693 solarnz/arcanist.vim 692 694 sonph/onehalf 695 + sotte/presenting.vim 693 696 srcery-colors/srcery-vim 694 697 steelsojka/completion-buffers 695 698 steelsojka/pears.nvim ··· 743 746 tomasr/molokai 744 747 tomlion/vim-solidity 745 748 tommcdo/vim-exchange 749 + tommcdo/vim-fubitive 746 750 tommcdo/vim-lion 747 751 tommcdo/vim-ninja-feet 748 752 tomtom/tcomment_vim ··· 801 805 Valloric/MatchTagAlways 802 806 Valodim/deoplete-notmuch 803 807 vhda/verilog_systemverilog.vim 808 + vifm/vifm.vim 804 809 vigoux/LanguageTool.nvim 805 810 vim-airline/vim-airline 806 811 vim-airline/vim-airline-themes
+1 -1
pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
··· 1 1 { 2 2 "name": "rust-analyzer", 3 - "version": "0.2.735", 3 + "version": "0.2.751", 4 4 "dependencies": { 5 5 "https-proxy-agent": "^5.0.0", 6 6 "node-fetch": "^2.6.1",
+2 -2
pkgs/misc/vscode-extensions/vscode-lldb/build-deps/package.json
··· 1 1 { 2 2 "name": "vscode-lldb", 3 - "version": "1.6.5", 3 + "version": "1.6.7", 4 4 "dependencies": { 5 5 "string-argv": "^0.3.1", 6 6 "yaml": "^1.10.0", ··· 15 15 "memory-streams": "^0.1.3", 16 16 "vscode-debugprotocol": "^1.47.0", 17 17 "vscode-debugadapter-testsupport": "^1.47.0", 18 - "vsce": "=1.88.0", 18 + "vsce": "^1.88.0", 19 19 "webpack": "^5.37.1", 20 20 "webpack-cli": "^4.7.0", 21 21 "ts-loader": "^8.0.0"
+3 -3
pkgs/misc/vscode-extensions/vscode-lldb/default.nix
··· 5 5 let 6 6 publisher = "vadimcn"; 7 7 pname = "vscode-lldb"; 8 - version = "1.6.5"; 8 + version = "1.6.7"; 9 9 10 10 vscodeExtUniqueId = "${publisher}.${pname}"; 11 11 ··· 13 13 owner = "vadimcn"; 14 14 repo = "vscode-lldb"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-ppiEWFKJiUtlF8LSqBb8Xvg26B+wHcIZJhU+ANE4J2k="; 16 + sha256 = "sha256-9rqdqpxUWcUV9RnZOTxg+zMW7wlTXZVkoKYHuv/lE7c="; 17 17 }; 18 18 19 19 lldb = callPackage ./lldb.nix {}; ··· 25 25 # It will pollute the build environment of `buildRustPackage`. 26 26 cargoPatches = [ ./reset-cargo-config.patch ]; 27 27 28 - cargoSha256 = "sha256-ksRFlbtrFAbcX/Pc6rgWUHVl859GVUOvNckxM7Q971U="; 28 + cargoSha256 = "sha256-KeZpjMCBdOJTLj8pA5WWi3EMyhhWw/+aik4IJqIs/mk="; 29 29 30 30 nativeBuildInputs = [ makeWrapper ]; 31 31
-3
pkgs/misc/vscode-extensions/vscode-lldb/update.sh
··· 30 30 "$src/package.json" \ 31 31 > build-deps/package.json 32 32 33 - # FIXME: vsce@1.93.0 breaks the build. 34 - sed 's/"vsce": ".*"/"vsce": "=1.88.0"/' --in-place build-deps/package.json 35 - 36 33 # Regenerate nodePackages. 37 34 cd "$nixpkgs/pkgs/development/node-packages" 38 35 exec ./generate.sh
+4 -4
pkgs/os-specific/linux/kernel/linux-lqx.nix
··· 1 1 { lib, fetchFromGitHub, buildLinux, linux_zen, ... } @ args: 2 2 3 3 let 4 - version = "5.13.15"; 5 - suffix = "lqx1"; 4 + version = "5.14.6"; 5 + suffix = "lqx4"; 6 6 in 7 7 8 8 buildLinux (args // { ··· 14 14 owner = "zen-kernel"; 15 15 repo = "zen-kernel"; 16 16 rev = "v${version}-${suffix}"; 17 - sha256 = "sha256-YDdBOB49NkX2V+lA7JeKRXfpo81/MSoLDOsPjphhBJA="; 17 + sha256 = "sha256-arje/B/oXW/2QUHKi1vJ2n20zNbri1bcMU58mE0evOM="; 18 18 }; 19 19 20 20 extraMeta = { 21 - branch = "5.13/master"; 21 + branch = "5.14/master"; 22 22 maintainers = with lib.maintainers; [ atemu ]; 23 23 description = linux_zen.meta.description + " (Same as linux_zen but less aggressive release schedule)"; 24 24 };
+2 -2
pkgs/os-specific/linux/kernel/linux-xanmod.nix
··· 1 1 { lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args: 2 2 3 3 let 4 - version = "5.14.4"; 4 + version = "5.14.6"; 5 5 release = "1"; 6 6 suffix = "xanmod${release}-cacule"; 7 7 in ··· 13 13 owner = "xanmod"; 14 14 repo = "linux"; 15 15 rev = modDirVersion; 16 - sha256 = "sha256-cRm5LVAIKQalcJS00ZM4cQHAiStGOQC+IfWsuPNi4UY="; 16 + sha256 = "sha256-vtOMnY0PeG3Th2YsNXhzwBToKtIatv6ceyMPSKiIR3M="; 17 17 }; 18 18 19 19 structuredExtraConfig = with lib.kernel; {
-29
pkgs/os-specific/linux/libfabric/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, libpsm2 }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "libfabric"; 5 - version = "1.13.1"; 6 - 7 - enableParallelBuilding = true; 8 - 9 - src = fetchFromGitHub { 10 - owner = "ofiwg"; 11 - repo = pname; 12 - rev = "v${version}"; 13 - sha256 = "sha256-0USQMBXZrbz4GtXLNsSti9ohUOqqo0OCtVz+0Uk9ndI="; 14 - }; 15 - 16 - nativeBuildInputs = [ pkg-config autoreconfHook ] ; 17 - 18 - buildInputs = [ libpsm2 ] ; 19 - 20 - configureFlags = [ "--enable-psm2=${libpsm2}" ] ; 21 - 22 - meta = with lib; { 23 - homepage = "http://libfabric.org/"; 24 - description = "Open Fabric Interfaces"; 25 - license = with licenses; [ gpl2 bsd2 ]; 26 - platforms = [ "x86_64-linux" ]; 27 - maintainers = [ maintainers.bzizou ]; 28 - }; 29 - }
+3 -5
pkgs/servers/heisenbridge/default.nix
··· 2 2 3 3 python3Packages.buildPythonPackage rec { 4 4 pname = "heisenbridge"; 5 - version = "1.1.1"; 5 + version = "1.1.2"; 6 6 7 7 # Use the release tarball because it has the version set correctly using the 8 8 # version.txt file. 9 9 src = fetchurl { 10 - url = "https://github.com/hifi/heisenbridge/releases/download/v${version}/heisenbridge-v${version}.tar.gz"; 11 - sha256 = "sha256-thI3NYYnLHmlfs5mmH2SQcREBLWtnilYlxriKWnamPM="; 10 + url = "https://github.com/hifi/heisenbridge/releases/download/v${version}/heisenbridge-${version}.tar.gz"; 11 + sha256 = "sha256-hY0dB4QT9W18ubUytvJwRUWKpNQMpyYdSLbmu+c8BCo="; 12 12 }; 13 13 14 14 propagatedBuildInputs = with python3Packages; [ ··· 16 16 irc 17 17 pyyaml 18 18 ]; 19 - 20 - checkInputs = [ python3Packages.pytestCheckHook ]; 21 19 22 20 meta = with lib; { 23 21 description = "A bouncer-style Matrix-IRC bridge.";
+3 -3
pkgs/servers/monitoring/grafana/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "grafana"; 5 - version = "8.1.4"; 5 + version = "8.1.5"; 6 6 7 7 excludedPackages = "\\(alert_webhook_listener\\|clean-swagger\\|release_publisher\\|slow_proxy\\|slow_proxy_mac\\|macaron\\)"; 8 8 ··· 10 10 rev = "v${version}"; 11 11 owner = "grafana"; 12 12 repo = "grafana"; 13 - sha256 = "sha256-fBeiJL40TXY5UHdNUYQhy4wzuaoCidHAidN7aWJ2GnQ="; 13 + sha256 = "sha256-Tr5U+bXBW7UIcmqrbmt/e82sZWLDMEObYsxl0INqXxw="; 14 14 }; 15 15 16 16 srcStatic = fetchurl { 17 17 url = "https://dl.grafana.com/oss/release/grafana-${version}.linux-amd64.tar.gz"; 18 - sha256 = "sha256-a1fY4W8ZfA9wSb1DiNixTnwKhfoJ+salaRXcy1Y2t9Y="; 18 + sha256 = "sha256-yE7mhX3peYnTdiY0YwKJ7SMvz4iXmvJncz002vdFXFg="; 19 19 }; 20 20 21 21 vendorSha256 = "sha256-DFD6orsM5oDOLgHbCbrD+zNKVGbQT3Izm1VtNCZO40I=";
+3 -3
pkgs/servers/monitoring/telegraf/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "telegraf"; 5 - version = "1.19.3"; 5 + version = "1.20.0"; 6 6 7 7 excludedPackages = "test"; 8 8 ··· 12 12 owner = "influxdata"; 13 13 repo = "telegraf"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-14nwSLCurI9vNgZwad3qc2/yrvpc8Og8jojTCAfJ5F0="; 15 + sha256 = "sha256-whsPXevnN/Kg09hcjEAeAduLZsYbo7IvUm5z4HodwrQ="; 16 16 }; 17 17 18 - vendorSha256 = "sha256-J48ezMi9+PxohDKFhBpbcu6fdojlZPXnQQw2IcyimTA="; 18 + vendorSha256 = "sha256-VywVlCcdOV/TdXQBa88oU9V8U4EbuYMId4aT4YAY1Wk="; 19 19 proxyVendor = true; 20 20 21 21 ldflags = [
+3 -3
pkgs/servers/roon-server/default.nix
··· 11 11 , zlib 12 12 }: stdenv.mkDerivation rec { 13 13 pname = "roon-server"; 14 - version = "1.8-814"; 14 + version = "1.8-831"; 15 15 16 16 # N.B. The URL is unstable. I've asked for them to provide a stable URL but 17 17 # they have ignored me. If this package fails to build for you, you may need 18 18 # to update the version and sha256. 19 19 # c.f. https://community.roonlabs.com/t/latest-roon-server-is-not-available-for-download-on-nixos/118129 20 20 src = fetchurl { 21 - url = "https://web.archive.org/web/20210729154130/http://download.roonlabs.com/builds/RoonServer_linuxx64.tar.bz2"; 22 - sha256 = "sha256-GbWcgNq+dmzoHNFZyB/QFCvJ7Hh48v8IuGS4WMNlKgI="; 21 + url = "https://web.archive.org/web/20210921161727/http://download.roonlabs.com/builds/RoonServer_linuxx64.tar.bz2"; 22 + sha256 = "sha256-SeMSC7K6DV7rVr1w/SqMnLvipoWbypS/gJnSZmpfXZk="; 23 23 }; 24 24 25 25 buildInputs = [
+13
pkgs/servers/routinator/Cargo.toml.patch
··· 1 + diff --git a/Cargo.toml b/Cargo.toml 2 + index 7f07b3b..7d7af0a 100644 3 + --- a/Cargo.toml 4 + +++ b/Cargo.toml 5 + @@ -48,7 +48,7 @@ syslog = "5.0.0" 6 + rustc_version = "0.4.0" 7 + 8 + [features] 9 + -default = [ "socks", "ui"] 10 + +default = [ "socks" ] 11 + extra-debug = ["rpki/extra-debug"] 12 + socks = [ "reqwest/socks" ] 13 + rta = []
+13 -4
pkgs/servers/routinator/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, rustPlatform, Security }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , rustPlatform 5 + , Security 6 + }: 2 7 3 8 rustPlatform.buildRustPackage rec { 4 9 pname = "routinator"; 5 - version = "0.10.0"; 10 + version = "0.10.1"; 6 11 7 12 src = fetchFromGitHub { 8 13 owner = "NLnetLabs"; 9 14 repo = pname; 10 15 rev = "v${version}"; 11 - sha256 = "171zmqqkgdpbspn70sgsypnyw7m6q2x8izwxrzbyi5xslsgd24i4"; 16 + sha256 = "sha256-ThgTGtTZ0LGm9nHJoy0KhnBFWNvKRjk7hoNTVVTeL/Y="; 12 17 }; 13 18 19 + cargoPatches = [ 20 + ./Cargo.toml.patch 21 + ]; 22 + cargoSha256 = "sha256-mcx+qUtTUxeYP0PeJp1eOQwsdS6PPUx/m7TfAyqFiIM="; 23 + 14 24 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 15 - cargoSha256 = "0r1m1zv3mkmmaalln3ny6m33dyjqzdyfbmkcav05kz12xjdd94fs"; 16 25 17 26 meta = with lib; { 18 27 description = "An RPKI Validator written in Rust";
+2 -2
pkgs/servers/web-apps/wordpress/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wordpress"; 5 - version = "5.8"; 5 + version = "5.8.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://wordpress.org/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-0pgTq1U2Exj1GfKo+mYxEmoKj5GsMPYstgAsEIV36H8="; 9 + sha256 = "sha256-kMqQxK+jfa3IpHQ7XLERsgzaX5g84HPCwL69zmT6gio="; 10 10 }; 11 11 12 12 installPhase = ''
+2 -2
pkgs/shells/oil/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "oil"; 5 - version = "0.9.0"; 5 + version = "0.9.2"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.oilshell.org/download/oil-${version}.tar.xz"; 9 - sha256 = "sha256-xk4io2ZXVupU6mCqmD94k1AaE8Kk0cf3PIx28X6gNjY="; 9 + sha256 = "sha256-msPRus7J/qMfFFaayQfrjFFqhSvPuwpr6EaobOCBaUE="; 10 10 }; 11 11 12 12 postPatch = ''
+6 -5
pkgs/tools/admin/fits-cloudctl/default.nix
··· 1 - { buildGoModule 1 + { lib 2 + , buildGoModule 2 3 , fetchFromGitHub 3 - , lib 4 4 }: 5 5 6 6 buildGoModule rec { 7 7 pname = "fits-cloudctl"; 8 - version = "0.9.11"; 8 + version = "0.10.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "fi-ts"; 12 12 repo = "cloudctl"; 13 13 rev = "v${version}"; 14 - sha256 = "1i9h96b0b69ib72b2ayp8mhgvkm21jbh8mf7wb1fp2gdzbxcgrhg"; 14 + sha256 = "09v5fgqf4c2d6k2z638g29mcsmdisg3zfq1g7330wsd7yaxv9m23"; 15 15 }; 16 16 17 - vendorSha256 = "1fs1jqxz36i25vyb0mznkjglz8wwq9a8884052cjpacvsgd3glkf"; 17 + vendorSha256 = "1rdqih04mlp33m69y9zxm4llx8cafwqhjhfxw873s8b35j0xz2m5"; 18 18 19 19 meta = with lib; { 20 20 description = "Command-line client for FI-TS Finance Cloud Native services"; 21 21 homepage = "https://github.com/fi-ts/cloudctl"; 22 22 license = licenses.mit; 23 23 maintainers = with maintainers; [ j0xaf ]; 24 + mainProgram = "cloudctl"; 24 25 }; 25 26 }
+3
pkgs/tools/admin/puppet/puppet-bolt/Gemfile
··· 1 + source 'https://rubygems.org' 2 + 3 + gem 'bolt'
+176
pkgs/tools/admin/puppet/puppet-bolt/Gemfile.lock
··· 1 + GEM 2 + remote: https://rubygems.org/ 3 + specs: 4 + CFPropertyList (2.3.6) 5 + addressable (2.8.0) 6 + public_suffix (>= 2.0.2, < 5.0) 7 + aws-eventstream (1.1.1) 8 + aws-partitions (1.493.0) 9 + aws-sdk-core (3.119.1) 10 + aws-eventstream (~> 1, >= 1.0.2) 11 + aws-partitions (~> 1, >= 1.239.0) 12 + aws-sigv4 (~> 1.1) 13 + jmespath (~> 1.0) 14 + aws-sdk-ec2 (1.260.0) 15 + aws-sdk-core (~> 3, >= 3.119.0) 16 + aws-sigv4 (~> 1.1) 17 + aws-sigv4 (1.2.4) 18 + aws-eventstream (~> 1, >= 1.0.2) 19 + bindata (2.4.10) 20 + bolt (3.17.0) 21 + CFPropertyList (~> 2.2) 22 + addressable (~> 2.5) 23 + aws-sdk-ec2 (~> 1) 24 + concurrent-ruby (~> 1.0) 25 + ffi (>= 1.9.25, < 2.0.0) 26 + hiera-eyaml (~> 3) 27 + jwt (~> 2.2) 28 + logging (~> 2.2) 29 + minitar (~> 0.6) 30 + net-scp (~> 1.2) 31 + net-ssh (>= 4.0) 32 + net-ssh-krb (~> 0.5) 33 + orchestrator_client (~> 0.5) 34 + puppet (>= 6.18.0) 35 + puppet-resource_api (>= 1.8.1) 36 + puppet-strings (~> 2.3) 37 + puppetfile-resolver (~> 0.5) 38 + r10k (~> 3.1) 39 + ruby_smb (~> 1.0) 40 + terminal-table (~> 1.8) 41 + winrm (~> 2.0) 42 + winrm-fs (~> 1.3) 43 + builder (3.2.4) 44 + colored2 (3.1.2) 45 + concurrent-ruby (1.1.9) 46 + connection_pool (2.2.5) 47 + cri (2.15.10) 48 + deep_merge (1.2.1) 49 + erubi (1.10.0) 50 + facter (4.2.3) 51 + hocon (~> 1.3) 52 + thor (>= 1.0.1, < 2.0) 53 + faraday (0.17.4) 54 + multipart-post (>= 1.2, < 3) 55 + faraday_middleware (0.14.0) 56 + faraday (>= 0.7.4, < 1.0) 57 + fast_gettext (1.1.2) 58 + ffi (1.15.3) 59 + gettext (3.2.9) 60 + locale (>= 2.0.5) 61 + text (>= 1.3.0) 62 + gettext-setup (0.34) 63 + fast_gettext (~> 1.1.0) 64 + gettext (>= 3.0.2, < 3.3.0) 65 + locale 66 + gssapi (1.3.1) 67 + ffi (>= 1.0.1) 68 + gyoku (1.3.1) 69 + builder (>= 2.1.2) 70 + hiera (3.7.0) 71 + hiera-eyaml (3.2.2) 72 + highline 73 + optimist 74 + highline (2.0.3) 75 + hocon (1.3.1) 76 + httpclient (2.8.3) 77 + jmespath (1.4.0) 78 + jwt (2.2.3) 79 + little-plugger (1.1.4) 80 + locale (2.1.3) 81 + log4r (1.1.10) 82 + logging (2.3.0) 83 + little-plugger (~> 1.1) 84 + multi_json (~> 1.14) 85 + minitar (0.9) 86 + molinillo (0.8.0) 87 + multi_json (1.15.0) 88 + multipart-post (2.1.1) 89 + net-http-persistent (4.0.1) 90 + connection_pool (~> 2.2) 91 + net-scp (1.2.1) 92 + net-ssh (>= 2.6.5) 93 + net-ssh (6.1.0) 94 + net-ssh-krb (0.5.1) 95 + gssapi (~> 1.3.0) 96 + net-ssh (>= 2.0) 97 + nori (2.6.0) 98 + optimist (3.0.1) 99 + orchestrator_client (0.5.2) 100 + faraday 101 + net-http-persistent 102 + public_suffix (4.0.6) 103 + puppet (7.10.0) 104 + concurrent-ruby (~> 1.0) 105 + deep_merge (~> 1.0) 106 + facter (> 2.0.1, < 5) 107 + fast_gettext (~> 1.1) 108 + hiera (>= 3.2.1, < 4) 109 + locale (~> 2.1) 110 + multi_json (~> 1.10) 111 + puppet-resource_api (~> 1.5) 112 + scanf (~> 1.0) 113 + semantic_puppet (~> 1.0) 114 + puppet-resource_api (1.8.14) 115 + hocon (>= 1.0) 116 + puppet-strings (2.8.0) 117 + rgen 118 + yard (~> 0.9.5) 119 + puppet_forge (2.3.4) 120 + faraday (>= 0.9.0, < 0.18.0, != 0.13.1) 121 + faraday_middleware (>= 0.9.0, < 0.15.0) 122 + gettext-setup (~> 0.11) 123 + minitar 124 + semantic_puppet (~> 1.0) 125 + puppetfile-resolver (0.5.0) 126 + molinillo (~> 0.6) 127 + semantic_puppet (~> 1.0) 128 + r10k (3.11.0) 129 + colored2 (= 3.1.2) 130 + cri (= 2.15.10) 131 + fast_gettext (~> 1.1.0) 132 + gettext (>= 3.0.2, < 3.3.0) 133 + gettext-setup (~> 0.24) 134 + jwt (~> 2.2.3) 135 + log4r (= 1.1.10) 136 + multi_json (~> 1.10) 137 + puppet_forge (~> 2.3.0) 138 + rgen (0.8.2) 139 + ruby_smb (1.1.0) 140 + bindata 141 + rubyntlm 142 + windows_error 143 + rubyntlm (0.6.3) 144 + rubyzip (2.3.2) 145 + scanf (1.0.0) 146 + semantic_puppet (1.0.4) 147 + terminal-table (1.8.0) 148 + unicode-display_width (~> 1.1, >= 1.1.1) 149 + text (1.3.1) 150 + thor (1.1.0) 151 + unicode-display_width (1.7.0) 152 + windows_error (0.1.2) 153 + winrm (2.3.6) 154 + builder (>= 2.1.2) 155 + erubi (~> 1.8) 156 + gssapi (~> 1.2) 157 + gyoku (~> 1.0) 158 + httpclient (~> 2.2, >= 2.2.0.2) 159 + logging (>= 1.6.1, < 3.0) 160 + nori (~> 2.0) 161 + rubyntlm (~> 0.6.0, >= 0.6.3) 162 + winrm-fs (1.3.5) 163 + erubi (~> 1.8) 164 + logging (>= 1.6.1, < 3.0) 165 + rubyzip (~> 2.0) 166 + winrm (~> 2.0) 167 + yard (0.9.26) 168 + 169 + PLATFORMS 170 + ruby 171 + 172 + DEPENDENCIES 173 + bolt 174 + 175 + BUNDLED WITH 176 + 2.1.4
+13
pkgs/tools/admin/puppet/puppet-bolt/default.nix
··· 1 + { bundlerApp, makeWrapper }: 2 + 3 + bundlerApp { 4 + pname = "bolt"; 5 + gemdir = ./.; 6 + exes = [ "bolt" ]; 7 + buildInputs = [ makeWrapper ]; 8 + 9 + postBuild = '' 10 + # Set BOLT_GEM=1 to remove warning 11 + wrapProgram $out/bin/bolt --set BOLT_GEM 1 12 + ''; 13 + }
+710
pkgs/tools/admin/puppet/puppet-bolt/gemset.nix
··· 1 + { 2 + addressable = { 3 + dependencies = ["public_suffix"]; 4 + groups = ["default"]; 5 + platforms = []; 6 + source = { 7 + remotes = ["https://rubygems.org"]; 8 + sha256 = "022r3m9wdxljpbya69y2i3h9g3dhhfaqzidf95m6qjzms792jvgp"; 9 + type = "gem"; 10 + }; 11 + version = "2.8.0"; 12 + }; 13 + aws-eventstream = { 14 + groups = ["default"]; 15 + platforms = []; 16 + source = { 17 + remotes = ["https://rubygems.org"]; 18 + sha256 = "0jfki5ikfr8ln5cdgv4iv1643kax0bjpp29jh78chzy713274jh3"; 19 + type = "gem"; 20 + }; 21 + version = "1.1.1"; 22 + }; 23 + aws-partitions = { 24 + groups = ["default"]; 25 + platforms = []; 26 + source = { 27 + remotes = ["https://rubygems.org"]; 28 + sha256 = "1qq2fsccafv3lag6c86xai9nbiszfhzfdj9hla9iphjpa1wlfqcp"; 29 + type = "gem"; 30 + }; 31 + version = "1.493.0"; 32 + }; 33 + aws-sdk-core = { 34 + dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"]; 35 + groups = ["default"]; 36 + platforms = []; 37 + source = { 38 + remotes = ["https://rubygems.org"]; 39 + sha256 = "0l09wjfa3y38jc5njqcxmj4f6gra79adhxzmsym2cvcrazcv272w"; 40 + type = "gem"; 41 + }; 42 + version = "3.119.1"; 43 + }; 44 + aws-sdk-ec2 = { 45 + dependencies = ["aws-sdk-core" "aws-sigv4"]; 46 + groups = ["default"]; 47 + platforms = []; 48 + source = { 49 + remotes = ["https://rubygems.org"]; 50 + sha256 = "07l9nsd9fk42qbc727s73qylrrbag6l1qig5xgcfqjh2m2qjb9b4"; 51 + type = "gem"; 52 + }; 53 + version = "1.260.0"; 54 + }; 55 + aws-sigv4 = { 56 + dependencies = ["aws-eventstream"]; 57 + groups = ["default"]; 58 + platforms = []; 59 + source = { 60 + remotes = ["https://rubygems.org"]; 61 + sha256 = "0cb9hsg0x9v4yk6sxif8968sg646qphmsjaqy9z8p7y3my5bkrf0"; 62 + type = "gem"; 63 + }; 64 + version = "1.2.4"; 65 + }; 66 + bindata = { 67 + groups = ["default"]; 68 + platforms = []; 69 + source = { 70 + remotes = ["https://rubygems.org"]; 71 + sha256 = "06lqi4svq5qls9f7nnvd2zmjdqmi2sf82sq78ci5d78fq0z5x2vr"; 72 + type = "gem"; 73 + }; 74 + version = "2.4.10"; 75 + }; 76 + bolt = { 77 + dependencies = ["CFPropertyList" "addressable" "aws-sdk-ec2" "concurrent-ruby" "ffi" "hiera-eyaml" "jwt" "logging" "minitar" "net-scp" "net-ssh" "net-ssh-krb" "orchestrator_client" "puppet" "puppet-resource_api" "puppet-strings" "puppetfile-resolver" "r10k" "ruby_smb" "terminal-table" "winrm" "winrm-fs"]; 78 + groups = ["default"]; 79 + platforms = []; 80 + source = { 81 + remotes = ["https://rubygems.org"]; 82 + sha256 = "0zszklla2j1dh4w9drz03zn20ls5im4vji5wsvn6zbyaj2ivkdiq"; 83 + type = "gem"; 84 + }; 85 + version = "3.17.0"; 86 + }; 87 + builder = { 88 + groups = ["default"]; 89 + platforms = []; 90 + source = { 91 + remotes = ["https://rubygems.org"]; 92 + sha256 = "045wzckxpwcqzrjr353cxnyaxgf0qg22jh00dcx7z38cys5g1jlr"; 93 + type = "gem"; 94 + }; 95 + version = "3.2.4"; 96 + }; 97 + CFPropertyList = { 98 + groups = ["default"]; 99 + platforms = []; 100 + source = { 101 + remotes = ["https://rubygems.org"]; 102 + sha256 = "0hadm41xr1fq3qp74jd9l5q8l0j9083rgklgzsilllwaav7qrrid"; 103 + type = "gem"; 104 + }; 105 + version = "2.3.6"; 106 + }; 107 + colored2 = { 108 + groups = ["default"]; 109 + platforms = []; 110 + source = { 111 + remotes = ["https://rubygems.org"]; 112 + sha256 = "0jlbqa9q4mvrm73aw9mxh23ygzbjiqwisl32d8szfb5fxvbjng5i"; 113 + type = "gem"; 114 + }; 115 + version = "3.1.2"; 116 + }; 117 + concurrent-ruby = { 118 + groups = ["default"]; 119 + platforms = []; 120 + source = { 121 + remotes = ["https://rubygems.org"]; 122 + sha256 = "0nwad3211p7yv9sda31jmbyw6sdafzmdi2i2niaz6f0wk5nq9h0f"; 123 + type = "gem"; 124 + }; 125 + version = "1.1.9"; 126 + }; 127 + connection_pool = { 128 + groups = ["default"]; 129 + platforms = []; 130 + source = { 131 + remotes = ["https://rubygems.org"]; 132 + sha256 = "0ffdxhgirgc86qb42yvmfj6v1v0x4lvi0pxn9zhghkff44wzra0k"; 133 + type = "gem"; 134 + }; 135 + version = "2.2.5"; 136 + }; 137 + cri = { 138 + groups = ["default"]; 139 + platforms = []; 140 + source = { 141 + remotes = ["https://rubygems.org"]; 142 + sha256 = "1h45kw2s4bjwgbfsrncs30av0j4zjync3wmcc6lpdnzbcxs7yms2"; 143 + type = "gem"; 144 + }; 145 + version = "2.15.10"; 146 + }; 147 + deep_merge = { 148 + groups = ["default"]; 149 + platforms = []; 150 + source = { 151 + remotes = ["https://rubygems.org"]; 152 + sha256 = "1q3picw7zx1xdkybmrnhmk2hycxzaa0jv4gqrby1s90dy5n7fmsb"; 153 + type = "gem"; 154 + }; 155 + version = "1.2.1"; 156 + }; 157 + erubi = { 158 + groups = ["default"]; 159 + platforms = []; 160 + source = { 161 + remotes = ["https://rubygems.org"]; 162 + sha256 = "09l8lz3j00m898li0yfsnb6ihc63rdvhw3k5xczna5zrjk104f2l"; 163 + type = "gem"; 164 + }; 165 + version = "1.10.0"; 166 + }; 167 + facter = { 168 + dependencies = ["hocon" "thor"]; 169 + groups = ["default"]; 170 + platforms = []; 171 + source = { 172 + remotes = ["https://rubygems.org"]; 173 + sha256 = "08n13ygl2fripg9a8wxf2p6qpv48dkmq079cbcpw3g351pq38gzk"; 174 + type = "gem"; 175 + }; 176 + version = "4.2.3"; 177 + }; 178 + faraday = { 179 + dependencies = ["multipart-post"]; 180 + groups = ["default"]; 181 + platforms = []; 182 + source = { 183 + remotes = ["https://rubygems.org"]; 184 + sha256 = "172dirvq89zk57rv42n00rhbc2qwv1w20w4zjm6zvfqz4rdpnrqi"; 185 + type = "gem"; 186 + }; 187 + version = "0.17.4"; 188 + }; 189 + faraday_middleware = { 190 + dependencies = ["faraday"]; 191 + groups = ["default"]; 192 + platforms = []; 193 + source = { 194 + remotes = ["https://rubygems.org"]; 195 + sha256 = "1x7jgvpzl1nm7hqcnc8carq6yj1lijq74jv8pph4sb3bcpfpvcsc"; 196 + type = "gem"; 197 + }; 198 + version = "0.14.0"; 199 + }; 200 + fast_gettext = { 201 + groups = ["default"]; 202 + platforms = []; 203 + source = { 204 + remotes = ["https://rubygems.org"]; 205 + sha256 = "0ci71w9jb979c379c7vzm88nc3k6lf68kbrsgw9nlx5g4hng0s78"; 206 + type = "gem"; 207 + }; 208 + version = "1.1.2"; 209 + }; 210 + ffi = { 211 + groups = ["default"]; 212 + platforms = []; 213 + source = { 214 + remotes = ["https://rubygems.org"]; 215 + sha256 = "1wgvaclp4h9y8zkrgz8p2hqkrgr4j7kz0366mik0970w532cbmcq"; 216 + type = "gem"; 217 + }; 218 + version = "1.15.3"; 219 + }; 220 + gettext = { 221 + dependencies = ["locale" "text"]; 222 + groups = ["default"]; 223 + platforms = []; 224 + source = { 225 + remotes = ["https://rubygems.org"]; 226 + sha256 = "0764vj7gacn0aypm2bf6m46dzjzwzrjlmbyx6qwwwzbmi94r40wr"; 227 + type = "gem"; 228 + }; 229 + version = "3.2.9"; 230 + }; 231 + gettext-setup = { 232 + dependencies = ["fast_gettext" "gettext" "locale"]; 233 + groups = ["default"]; 234 + platforms = []; 235 + source = { 236 + remotes = ["https://rubygems.org"]; 237 + sha256 = "1vfnayz20xd8q0sz27816kvgia9z2dpj9fy7z15da239wmmnz7ga"; 238 + type = "gem"; 239 + }; 240 + version = "0.34"; 241 + }; 242 + gssapi = { 243 + dependencies = ["ffi"]; 244 + groups = ["default"]; 245 + platforms = []; 246 + source = { 247 + remotes = ["https://rubygems.org"]; 248 + sha256 = "1qdfhj12aq8v0y961v4xv96a1y2z80h3xhvzrs9vsfgf884g6765"; 249 + type = "gem"; 250 + }; 251 + version = "1.3.1"; 252 + }; 253 + gyoku = { 254 + dependencies = ["builder"]; 255 + groups = ["default"]; 256 + platforms = []; 257 + source = { 258 + remotes = ["https://rubygems.org"]; 259 + sha256 = "1wn0sl14396g5lyvp8sjmcb1hw9rbyi89gxng91r7w4df4jwiidh"; 260 + type = "gem"; 261 + }; 262 + version = "1.3.1"; 263 + }; 264 + hiera = { 265 + groups = ["default"]; 266 + platforms = []; 267 + source = { 268 + remotes = ["https://rubygems.org"]; 269 + sha256 = "1g1bagbb4lvs334gpqyylvcrs7h6q2kn1h162dnvhzqa4rzxap8a"; 270 + type = "gem"; 271 + }; 272 + version = "3.7.0"; 273 + }; 274 + hiera-eyaml = { 275 + dependencies = ["highline" "optimist"]; 276 + groups = ["default"]; 277 + platforms = []; 278 + source = { 279 + remotes = ["https://rubygems.org"]; 280 + sha256 = "0fqn73wdh0ar63f863bda3wj1ii5p8gc3vqzv39l2cwkax6vcqgj"; 281 + type = "gem"; 282 + }; 283 + version = "3.2.2"; 284 + }; 285 + highline = { 286 + groups = ["default"]; 287 + platforms = []; 288 + source = { 289 + remotes = ["https://rubygems.org"]; 290 + sha256 = "0yclf57n2j3cw8144ania99h1zinf8q3f5zrhqa754j6gl95rp9d"; 291 + type = "gem"; 292 + }; 293 + version = "2.0.3"; 294 + }; 295 + hocon = { 296 + groups = ["default"]; 297 + platforms = []; 298 + source = { 299 + remotes = ["https://rubygems.org"]; 300 + sha256 = "0mifv4vfvppfdpkd0cwgy634sj0aplz6ys84sp8s11qrnm6vlnmn"; 301 + type = "gem"; 302 + }; 303 + version = "1.3.1"; 304 + }; 305 + httpclient = { 306 + groups = ["default"]; 307 + platforms = []; 308 + source = { 309 + remotes = ["https://rubygems.org"]; 310 + sha256 = "19mxmvghp7ki3klsxwrlwr431li7hm1lczhhj8z4qihl2acy8l99"; 311 + type = "gem"; 312 + }; 313 + version = "2.8.3"; 314 + }; 315 + jmespath = { 316 + groups = ["default"]; 317 + platforms = []; 318 + source = { 319 + remotes = ["https://rubygems.org"]; 320 + sha256 = "1d4wac0dcd1jf6kc57891glih9w57552zgqswgy74d1xhgnk0ngf"; 321 + type = "gem"; 322 + }; 323 + version = "1.4.0"; 324 + }; 325 + jwt = { 326 + groups = ["default"]; 327 + platforms = []; 328 + source = { 329 + remotes = ["https://rubygems.org"]; 330 + sha256 = "036i5fc09275ms49mw43mh4i9pwaap778ra2pmx06ipzyyjl6bfs"; 331 + type = "gem"; 332 + }; 333 + version = "2.2.3"; 334 + }; 335 + little-plugger = { 336 + groups = ["default"]; 337 + platforms = []; 338 + source = { 339 + remotes = ["https://rubygems.org"]; 340 + sha256 = "1frilv82dyxnlg8k1jhrvyd73l6k17mxc5vwxx080r4x1p04gwym"; 341 + type = "gem"; 342 + }; 343 + version = "1.1.4"; 344 + }; 345 + locale = { 346 + groups = ["default"]; 347 + platforms = []; 348 + source = { 349 + remotes = ["https://rubygems.org"]; 350 + sha256 = "0997465kxvpxm92fiwc2b16l49mngk7b68g5k35ify0m3q0yxpdn"; 351 + type = "gem"; 352 + }; 353 + version = "2.1.3"; 354 + }; 355 + log4r = { 356 + groups = ["default"]; 357 + platforms = []; 358 + source = { 359 + remotes = ["https://rubygems.org"]; 360 + sha256 = "0ri90q0frfmigkirqv5ihyrj59xm8pq5zcmf156cbdv4r4l2jicv"; 361 + type = "gem"; 362 + }; 363 + version = "1.1.10"; 364 + }; 365 + logging = { 366 + dependencies = ["little-plugger" "multi_json"]; 367 + groups = ["default"]; 368 + platforms = []; 369 + source = { 370 + remotes = ["https://rubygems.org"]; 371 + sha256 = "0pkmhcxi8lp74bq5gz9lxrvaiv5w0745kk7s4bw2b1x07qqri0n9"; 372 + type = "gem"; 373 + }; 374 + version = "2.3.0"; 375 + }; 376 + minitar = { 377 + groups = ["default"]; 378 + platforms = []; 379 + source = { 380 + remotes = ["https://rubygems.org"]; 381 + sha256 = "126mq86x67d1p63acrfka4zx0cx2r0vc93884jggxnrmmnzbxh13"; 382 + type = "gem"; 383 + }; 384 + version = "0.9"; 385 + }; 386 + molinillo = { 387 + groups = ["default"]; 388 + platforms = []; 389 + source = { 390 + remotes = ["https://rubygems.org"]; 391 + sha256 = "0p846facmh1j5xmbrpgzadflspvk7bzs3sykrh5s7qi4cdqz5gzg"; 392 + type = "gem"; 393 + }; 394 + version = "0.8.0"; 395 + }; 396 + multi_json = { 397 + groups = ["default"]; 398 + platforms = []; 399 + source = { 400 + remotes = ["https://rubygems.org"]; 401 + sha256 = "0pb1g1y3dsiahavspyzkdy39j4q377009f6ix0bh1ag4nqw43l0z"; 402 + type = "gem"; 403 + }; 404 + version = "1.15.0"; 405 + }; 406 + multipart-post = { 407 + groups = ["default"]; 408 + platforms = []; 409 + source = { 410 + remotes = ["https://rubygems.org"]; 411 + sha256 = "1zgw9zlwh2a6i1yvhhc4a84ry1hv824d6g2iw2chs3k5aylpmpfj"; 412 + type = "gem"; 413 + }; 414 + version = "2.1.1"; 415 + }; 416 + net-http-persistent = { 417 + dependencies = ["connection_pool"]; 418 + groups = ["default"]; 419 + platforms = []; 420 + source = { 421 + remotes = ["https://rubygems.org"]; 422 + sha256 = "1yfypmfg1maf20yfd22zzng8k955iylz7iip0mgc9lazw36g8li7"; 423 + type = "gem"; 424 + }; 425 + version = "4.0.1"; 426 + }; 427 + net-scp = { 428 + dependencies = ["net-ssh"]; 429 + groups = ["default"]; 430 + platforms = []; 431 + source = { 432 + remotes = ["https://rubygems.org"]; 433 + sha256 = "0b0jqrcsp4bbi4n4mzyf70cp2ysyp6x07j8k8cqgxnvb4i3a134j"; 434 + type = "gem"; 435 + }; 436 + version = "1.2.1"; 437 + }; 438 + net-ssh = { 439 + groups = ["default"]; 440 + platforms = []; 441 + source = { 442 + remotes = ["https://rubygems.org"]; 443 + sha256 = "0jp3jgcn8cij407xx9ldb5h9c6jv13jc4cf6kk2idclz43ww21c9"; 444 + type = "gem"; 445 + }; 446 + version = "6.1.0"; 447 + }; 448 + net-ssh-krb = { 449 + dependencies = ["gssapi" "net-ssh"]; 450 + groups = ["default"]; 451 + platforms = []; 452 + source = { 453 + remotes = ["https://rubygems.org"]; 454 + sha256 = "120mns6drrapn8i63cbgxngjql4cyclv6asyrkgc87bv5prlh50c"; 455 + type = "gem"; 456 + }; 457 + version = "0.5.1"; 458 + }; 459 + nori = { 460 + groups = ["default"]; 461 + platforms = []; 462 + source = { 463 + remotes = ["https://rubygems.org"]; 464 + sha256 = "066wc774a2zp4vrq3k7k8p0fhv30ymqmxma1jj7yg5735zls8agn"; 465 + type = "gem"; 466 + }; 467 + version = "2.6.0"; 468 + }; 469 + optimist = { 470 + groups = ["default"]; 471 + platforms = []; 472 + source = { 473 + remotes = ["https://rubygems.org"]; 474 + sha256 = "1vg2chy1cfmdj6c1gryl8zvjhhmb3plwgyh1jfnpq4fnfqv7asrk"; 475 + type = "gem"; 476 + }; 477 + version = "3.0.1"; 478 + }; 479 + orchestrator_client = { 480 + dependencies = ["faraday" "net-http-persistent"]; 481 + groups = ["default"]; 482 + platforms = []; 483 + source = { 484 + remotes = ["https://rubygems.org"]; 485 + sha256 = "1a0yd89bflsgn7apai7ar76h39jbk56pbhd86x68wnwfbib32nmc"; 486 + type = "gem"; 487 + }; 488 + version = "0.5.2"; 489 + }; 490 + public_suffix = { 491 + groups = ["default"]; 492 + platforms = []; 493 + source = { 494 + remotes = ["https://rubygems.org"]; 495 + sha256 = "1xqcgkl7bwws1qrlnmxgh8g4g9m10vg60bhlw40fplninb3ng6d9"; 496 + type = "gem"; 497 + }; 498 + version = "4.0.6"; 499 + }; 500 + puppet = { 501 + dependencies = ["concurrent-ruby" "deep_merge" "facter" "fast_gettext" "hiera" "locale" "multi_json" "puppet-resource_api" "scanf" "semantic_puppet"]; 502 + groups = ["default"]; 503 + platforms = []; 504 + source = { 505 + remotes = ["https://rubygems.org"]; 506 + sha256 = "0bfqwz6jyx746sf06bh14blf1g2xh7lv5bqpradzpfkxgxcy9j2b"; 507 + type = "gem"; 508 + }; 509 + version = "7.10.0"; 510 + }; 511 + puppet-resource_api = { 512 + dependencies = ["hocon"]; 513 + groups = ["default"]; 514 + platforms = []; 515 + source = { 516 + remotes = ["https://rubygems.org"]; 517 + sha256 = "1dchnnrrx0wd0pcrry5aaqwnbbgvp81g6f3brqhgvkc397kly3lj"; 518 + type = "gem"; 519 + }; 520 + version = "1.8.14"; 521 + }; 522 + puppet-strings = { 523 + dependencies = ["rgen" "yard"]; 524 + groups = ["default"]; 525 + platforms = []; 526 + source = { 527 + remotes = ["https://rubygems.org"]; 528 + sha256 = "1pfxccfyl7i565x95kbaz574scrd5vrrlhx3x5kbcpalps9b06b1"; 529 + type = "gem"; 530 + }; 531 + version = "2.8.0"; 532 + }; 533 + puppet_forge = { 534 + dependencies = ["faraday" "faraday_middleware" "gettext-setup" "minitar" "semantic_puppet"]; 535 + groups = ["default"]; 536 + platforms = []; 537 + source = { 538 + remotes = ["https://rubygems.org"]; 539 + sha256 = "1jp9jczc11vxr6y57lxhxxd59vqa763h4qbsbjh1j0yhfagcv877"; 540 + type = "gem"; 541 + }; 542 + version = "2.3.4"; 543 + }; 544 + puppetfile-resolver = { 545 + dependencies = ["molinillo" "semantic_puppet"]; 546 + groups = ["default"]; 547 + platforms = []; 548 + source = { 549 + remotes = ["https://rubygems.org"]; 550 + sha256 = "1npaafsafvi2mhcz76gycnshxwrrqq33fl2493v7grq6jw0bsann"; 551 + type = "gem"; 552 + }; 553 + version = "0.5.0"; 554 + }; 555 + r10k = { 556 + dependencies = ["colored2" "cri" "fast_gettext" "gettext" "gettext-setup" "jwt" "log4r" "multi_json" "puppet_forge"]; 557 + groups = ["default"]; 558 + platforms = []; 559 + source = { 560 + remotes = ["https://rubygems.org"]; 561 + sha256 = "004z9nhgc3w33snrcyjikhrw53nk5nprysq9l3dkssv79ygfw5dg"; 562 + type = "gem"; 563 + }; 564 + version = "3.11.0"; 565 + }; 566 + rgen = { 567 + groups = ["default"]; 568 + platforms = []; 569 + source = { 570 + remotes = ["https://rubygems.org"]; 571 + sha256 = "077kbdnn4cp6jks0w4xsybpiw2cc8y2c7hw7zx5dpf9cwzl7mq0p"; 572 + type = "gem"; 573 + }; 574 + version = "0.8.2"; 575 + }; 576 + ruby_smb = { 577 + dependencies = ["bindata" "rubyntlm" "windows_error"]; 578 + groups = ["default"]; 579 + platforms = []; 580 + source = { 581 + remotes = ["https://rubygems.org"]; 582 + sha256 = "125pimmaskp13nkk5j138nfk1kd8n91sfdlx4dhj2j9zk342wsf4"; 583 + type = "gem"; 584 + }; 585 + version = "1.1.0"; 586 + }; 587 + rubyntlm = { 588 + groups = ["default"]; 589 + platforms = []; 590 + source = { 591 + remotes = ["https://rubygems.org"]; 592 + sha256 = "0b8hczk8hysv53ncsqzx4q6kma5gy5lqc7s5yx8h64x3vdb18cjv"; 593 + type = "gem"; 594 + }; 595 + version = "0.6.3"; 596 + }; 597 + rubyzip = { 598 + groups = ["default"]; 599 + platforms = []; 600 + source = { 601 + remotes = ["https://rubygems.org"]; 602 + sha256 = "0grps9197qyxakbpw02pda59v45lfgbgiyw48i0mq9f2bn9y6mrz"; 603 + type = "gem"; 604 + }; 605 + version = "2.3.2"; 606 + }; 607 + scanf = { 608 + groups = ["default"]; 609 + platforms = []; 610 + source = { 611 + remotes = ["https://rubygems.org"]; 612 + sha256 = "000vxsci3zq8m1wl7mmppj7sarznrqlm6v2x2hdfmbxcwpvvfgak"; 613 + type = "gem"; 614 + }; 615 + version = "1.0.0"; 616 + }; 617 + semantic_puppet = { 618 + groups = ["default"]; 619 + platforms = []; 620 + source = { 621 + remotes = ["https://rubygems.org"]; 622 + sha256 = "0gg1bizlgb8wswxwy3irgppqvd6mlr27qsp0fzpm459wffzq10sx"; 623 + type = "gem"; 624 + }; 625 + version = "1.0.4"; 626 + }; 627 + terminal-table = { 628 + dependencies = ["unicode-display_width"]; 629 + groups = ["default"]; 630 + platforms = []; 631 + source = { 632 + remotes = ["https://rubygems.org"]; 633 + sha256 = "1512cngw35hsmhvw4c05rscihc59mnj09m249sm9p3pik831ydqk"; 634 + type = "gem"; 635 + }; 636 + version = "1.8.0"; 637 + }; 638 + text = { 639 + groups = ["default"]; 640 + platforms = []; 641 + source = { 642 + remotes = ["https://rubygems.org"]; 643 + sha256 = "1x6kkmsr49y3rnrin91rv8mpc3dhrf3ql08kbccw8yffq61brfrg"; 644 + type = "gem"; 645 + }; 646 + version = "1.3.1"; 647 + }; 648 + thor = { 649 + groups = ["default"]; 650 + platforms = []; 651 + source = { 652 + remotes = ["https://rubygems.org"]; 653 + sha256 = "18yhlvmfya23cs3pvhr1qy38y41b6mhr5q9vwv5lrgk16wmf3jna"; 654 + type = "gem"; 655 + }; 656 + version = "1.1.0"; 657 + }; 658 + unicode-display_width = { 659 + groups = ["default"]; 660 + platforms = []; 661 + source = { 662 + remotes = ["https://rubygems.org"]; 663 + sha256 = "06i3id27s60141x6fdnjn5rar1cywdwy64ilc59cz937303q3mna"; 664 + type = "gem"; 665 + }; 666 + version = "1.7.0"; 667 + }; 668 + windows_error = { 669 + groups = ["default"]; 670 + platforms = []; 671 + source = { 672 + remotes = ["https://rubygems.org"]; 673 + sha256 = "0kbcv9j5sc7pvjzf1dkp6h69i6lmj205zyy2arxcfgqg11bsz2kp"; 674 + type = "gem"; 675 + }; 676 + version = "0.1.2"; 677 + }; 678 + winrm = { 679 + dependencies = ["builder" "erubi" "gssapi" "gyoku" "httpclient" "logging" "nori" "rubyntlm"]; 680 + groups = ["default"]; 681 + platforms = []; 682 + source = { 683 + remotes = ["https://rubygems.org"]; 684 + sha256 = "0nxf6a47d1xf1nvi7rbfbzjyyjhz0iakrnrsr2hj6y24a381sd8i"; 685 + type = "gem"; 686 + }; 687 + version = "2.3.6"; 688 + }; 689 + winrm-fs = { 690 + dependencies = ["erubi" "logging" "rubyzip" "winrm"]; 691 + groups = ["default"]; 692 + platforms = []; 693 + source = { 694 + remotes = ["https://rubygems.org"]; 695 + sha256 = "0gb91k6s1yjqw387x4w1nkpnxblq3pjdqckayl0qvz5n3ygdsb0d"; 696 + type = "gem"; 697 + }; 698 + version = "1.3.5"; 699 + }; 700 + yard = { 701 + groups = ["default"]; 702 + platforms = []; 703 + source = { 704 + remotes = ["https://rubygems.org"]; 705 + sha256 = "0qzr5j1a1cafv81ib3i51qyl8jnmwdxlqi3kbiraldzpbjh4ln9h"; 706 + type = "gem"; 707 + }; 708 + version = "0.9.26"; 709 + }; 710 + }
+2 -2
pkgs/tools/filesystems/btrfs-progs/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "btrfs-progs"; 7 - version = "5.14"; 7 + version = "5.14.1"; 8 8 9 9 src = fetchurl { 10 10 url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; 11 - sha256 = "sha256-qhVUcexXVimNncOXKw1RjnOOUDq3F83dlZJpozmHnVc="; 11 + sha256 = "sha256-1UqTRlRcpG3xKOPMt31gwJfZDJO34xSZAjbijPr4xVs="; 12 12 }; 13 13 14 14 nativeBuildInputs = [
+77
pkgs/tools/misc/ksnip/default.nix
··· 1 + { stdenv 2 + , lib 3 + , cmake 4 + , extra-cmake-modules 5 + , fetchFromGitHub 6 + , kcolorpicker 7 + , kimageannotator 8 + , qtsvg 9 + , qttranslations 10 + , qtx11extras 11 + }: 12 + 13 + stdenv.mkDerivation rec { 14 + pname = "ksnip"; 15 + version = "1.9.1"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "ksnip"; 19 + repo = "ksnip"; 20 + rev = "v${version}"; 21 + sha256 = "1izsk586n9fbm0di0hj6pxs7r0a6w554gpad1ghf247icr0pfc1l"; 22 + }; 23 + 24 + dontWrapQtApps = true; 25 + 26 + nativeBuildInputs = [ 27 + cmake 28 + extra-cmake-modules 29 + ]; 30 + 31 + buildInputs = [ 32 + kcolorpicker 33 + kimageannotator 34 + qtsvg 35 + qttranslations 36 + qtx11extras 37 + ]; 38 + 39 + meta = with lib; { 40 + homepage = "https://github.com/ksnip/ksnip"; 41 + description = "Cross-platform screenshot tool wihth many annotation features"; 42 + longDescription = '' 43 + Features: 44 + 45 + - Supports Linux (X11, Plasma Wayland, GNOME Wayland and xdg-desktop-portal Wayland), Windows and macOS. 46 + - Screenshot of a custom rectangular area that can be drawn with mouse cursor. 47 + - Screenshot of last selected rectangular area without selecting again. 48 + - Screenshot of the screen/monitor where the mouse cursor is currently located. 49 + - Screenshot of full-screen, including all screens/monitors. 50 + - Screenshot of window that currently has focus. 51 + - Screenshot of window under mouse cursor. 52 + - Screenshot with or without mouse cursor. 53 + - Capture mouse cursor as annotation item that can be moved and deleted. 54 + - Customizable capture delay for all capture options. 55 + - Upload screenshots directly to imgur.com in anonymous or user mode. 56 + - Upload screenshots via custom user defined scripts. 57 + - Command-line support, for capturing screenshots and saving to default location, filename and format. 58 + - Filename wildcards for Year ($Y), Month ($M), Day ($D), Time ($T) and Counter (multiple # characters for number with zero-leading padding). 59 + - Print screenshot or save it to PDF/PS. 60 + - Annotate screenshots with pen, marker, rectangles, ellipses, texts and other tools. 61 + - Annotate screenshots with stickers and add custom stickers. 62 + - Obfuscate image regions with blur and pixelate. 63 + - Add effects to image (Drop Shadow, Grayscale, invert color or Border). 64 + - Add watermarks to captured images. 65 + - Global hotkeys for capturing screenshots (currently only for Windows and X11). 66 + - Tabs for screenshots and images. 67 + - Open existing images via dialog, drag-and-drop or paste from clipboard. 68 + - Run as single instance application (secondary instances send cli parameter to primary instance). 69 + - Pin screenshots in frameless windows that stay atop other windows. 70 + - User-defined actions for taking screenshot and post-processing. 71 + - Many configuration options. 72 + ''; 73 + license = licenses.gpl2Plus; 74 + maintainers = with maintainers; [ x3ro ]; 75 + platforms = platforms.linux; 76 + }; 77 + }
+2 -2
pkgs/tools/networking/dnsproxy/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnsproxy"; 5 - version = "0.39.5"; 5 + version = "0.39.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "AdguardTeam"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ID40+moRAdceiEOwB4tmBE6U1om/aWBXIlxzfLtm5E4="; 11 + sha256 = "sha256-jU5O+t8muaIM7JhuNhqfWh1pWezaFvdg+oRPYAQpIkk="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+19 -19
pkgs/tools/security/expliot/default.nix
··· 1 1 { lib 2 - , aiocoap 3 - , awsiotpythonsdk 4 - , bluepy 5 - , buildPythonApplication 6 - , can 7 - , cmd2 8 - , cryptography 9 2 , fetchFromGitLab 10 - , paho-mqtt 11 - , pyi2cflash 12 - , pymodbus 13 - , pynetdicom 14 - , pyparsing 15 - , pyserial 16 - , pyspiflash 17 - , pythonOlder 18 - , upnpy 19 - , xmltodict 20 - , zeroconf 3 + , python3 21 4 }: 5 + let 6 + py = python3.override { 7 + packageOverrides = self: super: { 8 + 9 + cmd2 = super.cmd2.overridePythonAttrs (oldAttrs: rec { 10 + version = "1.5.0"; 11 + src = oldAttrs.src.override { 12 + inherit version; 13 + sha256 = "0qiax309my534drk81lihq9ghngr96qnm40kbmgc9ay4fncqq6kh"; 14 + }; 15 + }); 16 + }; 17 + }; 18 + in 19 + with py.pkgs; 22 20 23 21 buildPythonApplication rec { 24 22 pname = "expliot"; 25 23 version = "0.9.8"; 26 - disabled = pythonOlder "3.7"; 24 + 25 + disabled = python3.pythonOlder "3.7"; 27 26 28 27 src = fetchFromGitLab { 29 28 owner = "expliot_framework"; ··· 53 52 54 53 # Project has no tests 55 54 doCheck = false; 55 + 56 56 pythonImportsCheck = [ "expliot" ]; 57 57 58 58 meta = with lib; {
+3 -2
pkgs/tools/security/exploitdb/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "exploitdb"; 5 - version = "2021-09-18"; 5 + version = "2021-09-22"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "offensive-security"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-Rgm76Za2z2g4FpyyoX//UmcW4vGAjK51GWpJYOF4uV4="; 11 + sha256 = "sha256-axA20Ok+5LgtW4Mf1xMM64Gd6C6joBC5isUdZPncgDw="; 12 12 }; 13 13 14 14 installPhase = '' ··· 24 24 description = "Archive of public exploits and corresponding vulnerable software"; 25 25 license = with licenses; [ gpl2Plus gpl3Plus mit ]; 26 26 maintainers = with maintainers; [ applePrincess ]; 27 + mainProgram = "searchsploit"; 27 28 }; 28 29 }
+29
pkgs/tools/security/kerbrute/default.nix
··· 1 + { lib, python3 }: 2 + 3 + python3.pkgs.buildPythonApplication rec { 4 + pname = "kerbrute"; 5 + version = "0.0.2"; 6 + 7 + src = python3.pkgs.fetchPypi { 8 + inherit pname version; 9 + sha256 = "sha256-ok/yttRSkCaEdV4aM2670qERjgDBll6Oi3L5TV5YEEA="; 10 + }; 11 + 12 + # This package does not have any tests 13 + doCheck = false; 14 + 15 + propagatedBuildInputs = with python3.pkgs; [ 16 + impacket 17 + ]; 18 + 19 + installChechPhase = '' 20 + $out/bin/kerbrute --version 21 + ''; 22 + 23 + meta = { 24 + homepage = "https://github.com/TarlogicSecurity/kerbrute"; 25 + description = "Kerberos bruteforce utility"; 26 + license = lib.licenses.gpl3Only; 27 + maintainers = with lib.maintainers; [ applePrincess ]; 28 + }; 29 + }
+4 -1
pkgs/tools/system/netdata/default.nix
··· 87 87 wrapProgram $out/bin/netdata-claim.sh --prefix PATH : ${lib.makeBinPath [ openssl ]} 88 88 ''; 89 89 90 - passthru.tests.netdata = nixosTests.netdata; 90 + passthru = { 91 + inherit withIpmi; 92 + tests.netdata = nixosTests.netdata; 93 + }; 91 94 92 95 meta = { 93 96 description = "Real-time performance monitoring tool";
-89
pkgs/tools/text/ocrmypdf/default.nix
··· 1 - { fetchFromGitHub 2 - , ghostscript 3 - , img2pdf 4 - , jbig2enc 5 - , leptonica 6 - , pngquant 7 - , python3 8 - , python3Packages 9 - , qpdf 10 - , lib 11 - , stdenv 12 - , tesseract4 13 - , unpaper 14 - , substituteAll 15 - }: 16 - let 17 - inherit (python3Packages) buildPythonApplication; 18 - 19 - runtimeDeps = with python3Packages; [ 20 - ghostscript 21 - jbig2enc 22 - leptonica 23 - pngquant 24 - qpdf 25 - tesseract4 26 - unpaper 27 - pillow 28 - ]; 29 - 30 - in 31 - buildPythonApplication rec { 32 - pname = "ocrmypdf"; 33 - version = "12.5.0"; 34 - 35 - src = fetchFromGitHub { 36 - owner = "jbarlow83"; 37 - repo = "OCRmyPDF"; 38 - rev = "v${version}"; 39 - sha256 = "sha256-g80WedX+TGHE9EJ/RSgOc53PM17V3WZslUNaHoqKTo0="; 40 - }; 41 - 42 - nativeBuildInputs = with python3Packages; [ 43 - setuptools 44 - setuptools-scm-git-archive 45 - setuptools-scm 46 - ]; 47 - 48 - propagatedBuildInputs = with python3Packages; [ 49 - cffi 50 - coloredlogs 51 - img2pdf 52 - importlib-resources 53 - pdfminer 54 - pluggy 55 - pikepdf 56 - pillow 57 - reportlab 58 - setuptools 59 - tqdm 60 - ]; 61 - 62 - checkInputs = with python3Packages; [ 63 - pypdf2 64 - pytest 65 - pytest-helpers-namespace 66 - pytest-xdist 67 - pytest-cov 68 - python-xmp-toolkit 69 - pytestCheckHook 70 - ] ++ runtimeDeps; 71 - 72 - patches = [ 73 - (substituteAll { 74 - src = ./liblept.patch; 75 - liblept = "${lib.getLib leptonica}/lib/liblept${stdenv.hostPlatform.extensions.sharedLibrary}"; 76 - }) 77 - ]; 78 - 79 - makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ghostscript jbig2enc pngquant qpdf tesseract4 unpaper ]}" ]; 80 - 81 - meta = with lib; { 82 - homepage = "https://github.com/jbarlow83/OCRmyPDF"; 83 - description = "Adds an OCR text layer to scanned PDF files, allowing them to be searched"; 84 - license = with licenses; [ mpl20 mit ]; 85 - platforms = platforms.linux; 86 - maintainers = [ maintainers.kiwi ]; 87 - changelog = "https://github.com/jbarlow83/OCRmyPDF/blob/v${version}/docs/release_notes.rst"; 88 - }; 89 - }
-13
pkgs/tools/text/ocrmypdf/liblept.patch
··· 1 - diff --git a/src/ocrmypdf/leptonica.py b/src/ocrmypdf/leptonica.py 2 - index 328b063..b993cc9 100644 3 - --- a/src/ocrmypdf/leptonica.py 4 - +++ b/src/ocrmypdf/leptonica.py 5 - @@ -46,7 +46,7 @@ if os.name == 'nt': 6 - os.environ['PATH'] = shim_paths_with_program_files() 7 - else: 8 - libname = 'lept' 9 - -_libpath = find_library(libname) 10 - +_libpath = '@liblept@' 11 - if not _libpath: 12 - raise MissingDependencyError( 13 - """
+27 -3
pkgs/top-level/all-packages.nix
··· 906 906 907 907 weidu = callPackage ../tools/games/weidu { }; 908 908 909 + weylus = callPackage ../applications/graphics/weylus { }; 910 + 909 911 gfshare = callPackage ../tools/security/gfshare { }; 910 912 911 913 gobgp = callPackage ../tools/networking/gobgp { }; 912 914 913 915 gofu = callPackage ../applications/misc/gofu { }; 916 + 917 + ksnip = libsForQt5.callPackage ../tools/misc/ksnip { }; 914 918 915 919 linux-router = callPackage ../tools/networking/linux-router { }; 916 920 ··· 3245 3249 3246 3250 oci-cli = callPackage ../tools/admin/oci-cli { }; 3247 3251 3248 - ocrmypdf = callPackage ../tools/text/ocrmypdf { }; 3252 + ocrmypdf = with python3.pkgs; toPythonApplication ocrmypdf; 3249 3253 3250 3254 ocrfeeder = callPackage ../applications/graphics/ocrfeeder { }; 3251 3255 ··· 4814 4818 4815 4819 expect = callPackage ../tools/misc/expect { }; 4816 4820 4817 - expliot = python3Packages.callPackage ../tools/security/expliot { }; 4821 + expliot = callPackage ../tools/security/expliot { }; 4818 4822 4819 4823 f2fs-tools = callPackage ../tools/filesystems/f2fs-tools { }; 4820 4824 ··· 5517 5521 gl2ps = callPackage ../development/libraries/gl2ps { }; 5518 5522 5519 5523 glab = callPackage ../applications/version-management/git-and-tools/glab { }; 5524 + 5525 + glitter = callPackage ../applications/version-management/git-and-tools/glitter { }; 5520 5526 5521 5527 glusterfs = callPackage ../tools/filesystems/glusterfs { }; 5522 5528 ··· 12472 12478 cargo-readme = callPackage ../development/tools/rust/cargo-readme {}; 12473 12479 cargo-sort = callPackage ../development/tools/rust/cargo-sort { }; 12474 12480 cargo-spellcheck = callPackage ../development/tools/rust/cargo-spellcheck { }; 12481 + cargo-supply-chain = callPackage ../development/tools/rust/cargo-supply-chain { 12482 + inherit (darwin.apple_sdk.frameworks) Security; 12483 + }; 12475 12484 cargo-sweep = callPackage ../development/tools/rust/cargo-sweep { }; 12476 12485 cargo-sync-readme = callPackage ../development/tools/rust/cargo-sync-readme {}; 12477 12486 cargo-tally = callPackage ../development/tools/rust/cargo-tally { ··· 12503 12512 maturin = callPackage ../development/tools/rust/maturin { 12504 12513 inherit (darwin.apple_sdk.frameworks) Security; 12505 12514 }; 12515 + panamax = callPackage ../development/tools/rust/panamax { 12516 + inherit (darwin.apple_sdk.frameworks) Security; 12517 + }; 12506 12518 12519 + rhack = callPackage ../development/tools/rust/rhack { }; 12507 12520 inherit (rustPackages) rls; 12508 12521 rustfmt = rustPackages.rustfmt; 12509 12522 rustracer = callPackage ../development/tools/rust/racer { ··· 12520 12533 rust-cbindgen = callPackage ../development/tools/rust/cbindgen { 12521 12534 inherit (darwin.apple_sdk.frameworks) Security; 12522 12535 }; 12536 + rust-script = callPackage ../development/tools/rust/rust-script { }; 12523 12537 rustup = callPackage ../development/tools/rust/rustup { 12524 12538 inherit (darwin.apple_sdk.frameworks) CoreServices Security; 12525 12539 }; ··· 14551 14565 pry = callPackage ../development/tools/pry { }; 14552 14566 14553 14567 pup = callPackage ../development/tools/pup { }; 14568 + 14569 + puppet-bolt = callPackage ../tools/admin/puppet/puppet-bolt { }; 14554 14570 14555 14571 puppet-lint = callPackage ../development/tools/puppet/puppet-lint { }; 14556 14572 ··· 14814 14830 14815 14831 teensy-loader-cli = callPackage ../development/embedded/teensy-loader-cli { }; 14816 14832 14833 + tytools = libsForQt5.callPackage ../development/embedded/tytools { }; 14834 + 14817 14835 terracognita = callPackage ../development/tools/misc/terracognita { }; 14818 14836 14819 14837 terraform-lsp = callPackage ../development/tools/misc/terraform-lsp { }; ··· 17064 17082 17065 17083 libf2c = callPackage ../development/libraries/libf2c {}; 17066 17084 17067 - libfabric = callPackage ../os-specific/linux/libfabric {}; 17085 + libfabric = callPackage ../development/libraries/libfabric {}; 17068 17086 17069 17087 libfive = libsForQt5.callPackage ../development/libraries/libfive { }; 17070 17088 ··· 24092 24110 24093 24111 keepass-otpkeyprov = callPackage ../applications/misc/keepass-plugins/otpkeyprov { }; 24094 24112 24113 + kerbrute = callPackage ../tools/security/kerbrute { }; 24114 + 24095 24115 exrdisplay = callPackage ../applications/graphics/exrdisplay { }; 24096 24116 24097 24117 exrtools = callPackage ../applications/graphics/exrtools { }; ··· 24656 24676 gnucash = callPackage ../applications/office/gnucash { }; 24657 24677 24658 24678 goffice = callPackage ../development/libraries/goffice { }; 24679 + 24680 + gtk-pipe-viewer = perlPackages.callPackage ../applications/video/pipe-viewer { withGtk3 = true; }; 24659 24681 24660 24682 hydrus = python3Packages.callPackage ../applications/graphics/hydrus { 24661 24683 inherit miniupnpc_2 swftools; ··· 26231 26253 ping = callPackage ../applications/networking/ping { }; 26232 26254 26233 26255 piper = callPackage ../os-specific/linux/piper { }; 26256 + 26257 + pipe-viewer = perlPackages.callPackage ../applications/video/pipe-viewer {}; 26234 26258 26235 26259 plank = callPackage ../applications/misc/plank { }; 26236 26260
+30 -3
pkgs/top-level/perl-packages.nix
··· 8148 8148 }; 8149 8149 propagatedBuildInputs = [ TextGlob ]; 8150 8150 meta = { 8151 - license = lib.licenses.free; # Same as Perl 8151 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 8152 8152 }; 8153 8153 }; 8154 8154 ··· 8162 8162 meta = { 8163 8163 maintainers = teams.deshaw.members; 8164 8164 description = "simple filename and pathname matching"; 8165 - license = lib.licenses.free; # Same as Perl 8165 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 8166 8166 }; 8167 8167 }; 8168 8168 ··· 8378 8378 })]; 8379 8379 propagatedBuildInputs = [ ClassAccessor ]; 8380 8380 meta = { 8381 - license = lib.licenses.free; # Same as Perl 8381 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 8382 8382 description = "Pid File Manipulation"; 8383 8383 maintainers = teams.deshaw.members; 8384 8384 }; ··· 12388 12388 description = "Legacy HTTP/1.0 support for LWP"; 12389 12389 license = with lib.licenses; [ artistic1 gpl1Plus ]; 12390 12390 }; 12391 + }; 12392 + 12393 + LWPUserAgentCached = buildPerlPackage { 12394 + pname = "LWP-UserAgent-Cached"; 12395 + version = "0.08"; 12396 + src = fetchurl { 12397 + url = "mirror://cpan/authors/id/O/OL/OLEG/LWP-UserAgent-Cached-0.08.tar.gz"; 12398 + hash = "sha256-Pc5atMeAQWVs54Vk92Az5b0ew4b1TS57MHQK5I7nh8M="; 12399 + }; 12400 + propagatedBuildInputs = [ LWP ]; 12401 + meta = { 12402 + description = "LWP::UserAgent with simple caching mechanism"; 12403 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 12404 + }; 12391 12405 }; 12392 12406 12393 12407 LWPUserAgentDNSHosts = buildPerlModule { ··· 22535 22549 homepage = "https://github.com/dagolden/Test-Number-Delta"; 22536 22550 description = "Compare the difference between numbers against a given tolerance"; 22537 22551 license = "apache"; 22552 + }; 22553 + }; 22554 + 22555 + TextParsewords = buildPerlPackage { 22556 + pname = "Text-Parsewords"; 22557 + version = "3.30"; 22558 + src = fetchurl { 22559 + url = "mirror://cpan/authors/id/C/CH/CHORNY/Text-ParseWords-3.30.tar.gz"; 22560 + hash = "sha256-heAjgXndQ5l+WMZr1RYRGCvH1TNQUCmi2w0yMu2v9eg="; 22561 + }; 22562 + meta = { 22563 + description = "Parse text into an array of tokens or array of arrays"; 22564 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 22538 22565 }; 22539 22566 }; 22540 22567
+24
pkgs/top-level/python-packages.nix
··· 2312 2312 2313 2313 eggdeps = callPackage ../development/python-modules/eggdeps { }; 2314 2314 2315 + einops = callPackage ../development/python-modules/einops { }; 2316 + 2315 2317 elgato = callPackage ../development/python-modules/elgato { }; 2316 2318 2317 2319 elasticsearch = callPackage ../development/python-modules/elasticsearch { }; ··· 3643 3645 inquirer = callPackage ../development/python-modules/inquirer { }; 3644 3646 3645 3647 intake = callPackage ../development/python-modules/intake { }; 3648 + 3649 + intake-parquet = callPackage ../development/python-modules/intake-parquet { }; 3646 3650 3647 3651 intbitset = callPackage ../development/python-modules/intbitset { }; 3648 3652 ··· 5060 5064 }; 5061 5065 5062 5066 oci = callPackage ../development/python-modules/oci { }; 5067 + 5068 + ocrmypdf = callPackage ../development/python-modules/ocrmypdf { }; 5063 5069 5064 5070 od = callPackage ../development/python-modules/od { }; 5065 5071 ··· 5204 5210 5205 5211 oslotest = callPackage ../development/python-modules/oslotest { }; 5206 5212 5213 + ospd = callPackage ../development/python-modules/ospd { }; 5214 + 5207 5215 osqp = callPackage ../development/python-modules/osqp { }; 5208 5216 5209 5217 outcome = callPackage ../development/python-modules/outcome { }; ··· 5268 5276 paramz = callPackage ../development/python-modules/paramz { }; 5269 5277 5270 5278 parfive = callPackage ../development/python-modules/parfive { }; 5279 + 5280 + parquet = callPackage ../development/python-modules/parquet { }; 5271 5281 5272 5282 parse = callPackage ../development/python-modules/parse { }; 5273 5283 ··· 5562 5572 5563 5573 python-ecobee-api = callPackage ../development/python-modules/python-ecobee-api { }; 5564 5574 5575 + python-glanceclient = callPackage ../development/python-modules/python-glanceclient { }; 5576 + 5577 + python-heatclient = callPackage ../development/python-modules/python-heatclient { }; 5578 + 5565 5579 python-ipmi = callPackage ../development/python-modules/python-ipmi { }; 5580 + 5581 + python-ironicclient = callPackage ../development/python-modules/python-ironicclient { }; 5566 5582 5567 5583 python-izone = callPackage ../development/python-modules/python-izone { }; 5568 5584 ··· 5623 5639 plumbum = callPackage ../development/python-modules/plumbum { }; 5624 5640 5625 5641 ply = callPackage ../development/python-modules/ply { }; 5642 + 5643 + plyer = callPackage ../development/python-modules/plyer { }; 5626 5644 5627 5645 plyfile = callPackage ../development/python-modules/plyfile { }; 5628 5646 ··· 7276 7294 7277 7295 python_magic = callPackage ../development/python-modules/python-magic { }; 7278 7296 7297 + python-manilaclient = callPackage ../development/python-modules/python-manilaclient { }; 7298 + 7279 7299 python-mapnik = let 7280 7300 boost = pkgs.boost.override { 7281 7301 enablePython = true; ··· 8766 8786 8767 8787 telfhash = callPackage ../development/python-modules/telfhash { }; 8768 8788 8789 + tempest = callPackage ../development/python-modules/tempest { }; 8790 + 8769 8791 tempita = callPackage ../development/python-modules/tempita { }; 8770 8792 8771 8793 tempora = callPackage ../development/python-modules/tempora { }; ··· 8906 8928 three-merge = callPackage ../development/python-modules/three-merge { }; 8907 8929 8908 8930 thrift = callPackage ../development/python-modules/thrift { }; 8931 + 8932 + thriftpy2 = callPackage ../development/python-modules/thriftpy2 { }; 8909 8933 8910 8934 thumborPexif = callPackage ../development/python-modules/thumborpexif { }; 8911 8935