Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
a1d3be1d 86197a80

+1743 -1373
+1 -1
nixos/modules/services/cluster/kubernetes/pki.nix
··· 189 189 # manually paste it in place. Just symlink. 190 190 # otherwise, create the target file, ready for users to insert the token 191 191 192 - mkdir -p $(dirname ${certmgrAPITokenPath}) 192 + mkdir -p "$(dirname "${certmgrAPITokenPath}")" 193 193 if [ -f "${cfsslAPITokenPath}" ]; then 194 194 ln -fs "${cfsslAPITokenPath}" "${certmgrAPITokenPath}" 195 195 else
+53 -39
nixos/modules/services/networking/syncthing.nix
··· 25 25 folder.enable 26 26 ) cfg.declarative.folders); 27 27 28 - # get the api key by parsing the config.xml 29 - getApiKey = pkgs.writers.writeDash "getAPIKey" '' 30 - ${pkgs.libxml2}/bin/xmllint \ 31 - --xpath 'string(configuration/gui/apikey)'\ 32 - ${cfg.configDir}/config.xml 33 - ''; 34 - 35 28 updateConfig = pkgs.writers.writeDash "merge-syncthing-config" '' 36 29 set -efu 37 - # wait for syncthing port to open 38 - until ${pkgs.curl}/bin/curl -Ss ${cfg.guiAddress} -o /dev/null; do 39 - sleep 1 40 - done 41 30 42 - API_KEY=$(${getApiKey}) 43 - OLD_CFG=$(${pkgs.curl}/bin/curl -Ss \ 44 - -H "X-API-Key: $API_KEY" \ 45 - ${cfg.guiAddress}/rest/system/config) 31 + # get the api key by parsing the config.xml 32 + while 33 + ! api_key=$(${pkgs.libxml2}/bin/xmllint \ 34 + --xpath 'string(configuration/gui/apikey)' \ 35 + ${cfg.configDir}/config.xml) 36 + do sleep 1; done 46 37 47 - # generate the new config by merging with the nixos config options 48 - NEW_CFG=$(echo "$OLD_CFG" | ${pkgs.jq}/bin/jq -s '.[] as $in | $in * { 49 - "devices": (${builtins.toJSON devices}${optionalString (! cfg.declarative.overrideDevices) " + $in.devices"}), 50 - "folders": (${builtins.toJSON folders}${optionalString (! cfg.declarative.overrideFolders) " + $in.folders"}) 51 - }') 38 + curl() { 39 + while 40 + ${pkgs.curl}/bin/curl -Ss -H "X-API-Key: $api_key" \ 41 + --retry 100 --retry-delay 1 --retry-connrefused "$@" 42 + status=$? 43 + [ "$status" -eq 52 ] # retry on empty reply from server 44 + do sleep 1; done 45 + return "$status" 46 + } 52 47 53 - # POST the new config to syncthing 54 - echo "$NEW_CFG" | ${pkgs.curl}/bin/curl -Ss \ 55 - -H "X-API-Key: $API_KEY" \ 56 - ${cfg.guiAddress}/rest/system/config -d @- 48 + # query the old config 49 + old_cfg=$(curl ${cfg.guiAddress}/rest/config) 57 50 58 - # restart syncthing after sending the new config 59 - ${pkgs.curl}/bin/curl -Ss \ 60 - -H "X-API-Key: $API_KEY" \ 61 - -X POST \ 62 - ${cfg.guiAddress}/rest/system/restart 51 + # generate the new config by merging with the NixOS config options 52 + new_cfg=$(echo "$old_cfg" | ${pkgs.jq}/bin/jq -c '. * { 53 + "devices": (${builtins.toJSON devices}${optionalString (! cfg.declarative.overrideDevices) " + .devices"}), 54 + "folders": (${builtins.toJSON folders}${optionalString (! cfg.declarative.overrideFolders) " + .folders"}) 55 + } * ${builtins.toJSON cfg.declarative.extraOptions}') 56 + 57 + # send the new config 58 + curl -X PUT -d "$new_cfg" ${cfg.guiAddress}/rest/config 59 + 60 + # restart Syncthing if required 61 + if curl ${cfg.guiAddress}/rest/config/restart-required | 62 + ${pkgs.jq}/bin/jq -e .requiresRestart > /dev/null; then 63 + curl -X POST ${cfg.guiAddress}/rest/system/restart 64 + fi 63 65 ''; 64 66 in { 65 67 ###### interface ··· 77 79 type = types.nullOr types.str; 78 80 default = null; 79 81 description = '' 80 - Path to users cert.pem file, will be copied into the syncthing's 82 + Path to users cert.pem file, will be copied into Syncthing's 81 83 <literal>configDir</literal> 82 84 ''; 83 85 }; ··· 86 88 type = types.nullOr types.str; 87 89 default = null; 88 90 description = '' 89 - Path to users key.pem file, will be copied into the syncthing's 91 + Path to users key.pem file, will be copied into Syncthing's 90 92 <literal>configDir</literal> 91 93 ''; 92 94 }; ··· 105 107 devices = mkOption { 106 108 default = {}; 107 109 description = '' 108 - Peers/devices which syncthing should communicate with. 110 + Peers/devices which Syncthing should communicate with. 109 111 ''; 110 112 example = { 111 113 bigbox = { ··· 168 170 folders = mkOption { 169 171 default = {}; 170 172 description = '' 171 - folders which should be shared by syncthing. 173 + Folders which should be shared by Syncthing. 172 174 ''; 173 175 example = literalExample '' 174 176 { ··· 227 229 versioning = mkOption { 228 230 default = null; 229 231 description = '' 230 - How to keep changed/deleted files with syncthing. 232 + How to keep changed/deleted files with Syncthing. 231 233 There are 4 different types of versioning with different parameters. 232 234 See https://docs.syncthing.net/users/versioning.html 233 235 ''; ··· 335 337 upstream's docs</link>. 336 338 ''; 337 339 }; 338 - 339 340 }; 340 341 })); 341 342 }; 343 + 344 + extraOptions = mkOption { 345 + type = types.addCheck (pkgs.formats.json {}).type isAttrs; 346 + default = {}; 347 + description = '' 348 + Extra configuration options for Syncthing. 349 + ''; 350 + example = { 351 + options.localAnnounceEnabled = false; 352 + gui.theme = "black"; 353 + }; 354 + }; 342 355 }; 343 356 344 357 guiAddress = mkOption { ··· 378 391 default = null; 379 392 example = "socks5://address.com:1234"; 380 393 description = '' 381 - Overwrites all_proxy environment variable for the syncthing process to 394 + Overwrites all_proxy environment variable for the Syncthing process to 382 395 the given value. This is normaly used to let relay client connect 383 396 through SOCKS5 proxy server. 384 397 ''; ··· 412 425 Open the default ports in the firewall: 413 426 - TCP 22000 for transfers 414 427 - UDP 21027 for discovery 415 - If multiple users are running syncthing on this machine, you will need to manually open a set of ports for each instance and leave this disabled. 428 + If multiple users are running Syncthing on this machine, you will need to manually open a set of ports for each instance and leave this disabled. 416 429 Alternatively, if are running only a single instance on this machine using the default ports, enable this. 417 430 ''; 418 431 }; ··· 431 444 432 445 imports = [ 433 446 (mkRemovedOptionModule ["services" "syncthing" "useInotify"] '' 434 - This option was removed because syncthing now has the inotify functionality included under the name "fswatcher". 447 + This option was removed because Syncthing now has the inotify functionality included under the name "fswatcher". 435 448 It can be enabled on a per-folder basis through the webinterface. 436 449 '') 437 450 ]; ··· 516 529 }; 517 530 }; 518 531 syncthing-init = mkIf ( 519 - cfg.declarative.devices != {} || cfg.declarative.folders != {} 532 + cfg.declarative.devices != {} || cfg.declarative.folders != {} || cfg.declarative.extraOptions != {} 520 533 ) { 534 + description = "Syncthing configuration updater"; 521 535 after = [ "syncthing.service" ]; 522 536 wantedBy = [ "multi-user.target" ]; 523 537
+2
nixos/tests/syncthing-init.nix
··· 17 17 path = "/tmp/test"; 18 18 devices = [ "testDevice" ]; 19 19 }; 20 + extraOptions.gui.user = "guiUser"; 20 21 }; 21 22 }; 22 23 }; ··· 27 28 28 29 assert "testFolder" in config 29 30 assert "${testId}" in config 31 + assert "guiUser" in config 30 32 ''; 31 33 })
+2 -2
nixos/tests/syncthing.nix
··· 25 25 "xmllint --xpath 'string(configuration/gui/apikey)' %s/config.xml" % confdir 26 26 ).strip() 27 27 oldConf = host.succeed( 28 - "curl -Ssf -H 'X-API-Key: %s' 127.0.0.1:8384/rest/system/config" % APIKey 28 + "curl -Ssf -H 'X-API-Key: %s' 127.0.0.1:8384/rest/config" % APIKey 29 29 ) 30 30 conf = json.loads(oldConf) 31 31 conf["devices"].append({"deviceID": deviceID, "id": name}) ··· 39 39 ) 40 40 newConf = json.dumps(conf) 41 41 host.succeed( 42 - "curl -Ssf -H 'X-API-Key: %s' 127.0.0.1:8384/rest/system/config -d %s" 42 + "curl -Ssf -H 'X-API-Key: %s' 127.0.0.1:8384/rest/config -X PUT -d %s" 43 43 % (APIKey, shlex.quote(newConf)) 44 44 ) 45 45
+7 -6
pkgs/applications/audio/axoloti/libusb1.nix
··· 1 - { stdenv, lib, fetchurl, pkg-config, systemd ? null, libobjc, IOKit, fetchpatch }: 1 + { stdenv, lib, fetchurl, pkg-config, systemd, libobjc, IOKit, fetchpatch }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "libusb-1.0.19"; 4 + pname = "libusb"; 5 + version = "1.0.19"; 5 6 6 7 src = fetchurl { 7 - url = "mirror://sourceforge/libusb/${name}.tar.bz2"; 8 + url = "mirror://sourceforge/libusb/libusb-${version}.tar.bz2"; 8 9 sha256 = "0h38p9rxfpg9vkrbyb120i1diq57qcln82h5fr7hvy82c20jql3c"; 9 10 }; 10 11 11 12 outputs = [ "out" "dev" ]; # get rid of propagating systemd closure 12 13 13 14 buildInputs = [ pkg-config ]; 14 - propagatedBuildInputs = 15 - lib.optional stdenv.isLinux systemd ++ 16 - lib.optionals stdenv.isDarwin [ libobjc IOKit ]; 15 + propagatedBuildInputs = lib.optional stdenv.isLinux systemd 16 + ++ lib.optionals stdenv.isDarwin [ libobjc IOKit ]; 17 17 18 18 patches = [ 19 19 (fetchpatch { ··· 32 32 meta = with lib; { 33 33 homepage = "http://www.libusb.info"; 34 34 description = "User-space USB library"; 35 + maintainers = with maintainers; [ ]; 35 36 platforms = platforms.unix; 36 37 license = licenses.lgpl21; 37 38 };
+27 -9
pkgs/applications/audio/rosegarden/default.nix
··· 1 - { lib, stdenv, fetchurl, cmake, makedepend, perl, pkg-config, qttools, wrapQtAppsHook 2 - , dssi, fftwSinglePrec, ladspaH, ladspaPlugins, libjack2, alsa-lib 3 - , liblo, libsamplerate, libsndfile, lirc ? null, lrdf, qtbase }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , cmake 5 + , makedepend 6 + , perl 7 + , pkg-config 8 + , qttools 9 + , wrapQtAppsHook 10 + , dssi 11 + , fftwSinglePrec 12 + , ladspaH 13 + , ladspaPlugins 14 + , libjack2 15 + , alsa-lib 16 + , liblo 17 + , libsamplerate 18 + , libsndfile 19 + , lirc 20 + , lrdf 21 + , qtbase 22 + }: 4 23 5 - stdenv.mkDerivation (rec { 24 + stdenv.mkDerivation rec { 25 + pname = "rosegarden"; 6 26 version = "20.12"; 7 - pname = "rosegarden"; 8 27 9 28 src = fetchurl { 10 29 url = "mirror://sourceforge/rosegarden/${pname}-${version}.tar.bz2"; 11 30 sha256 = "sha256-iGaEr8WFipV4I00fhFGI2xMBFPf784IIxNXs2hUTHFs="; 12 31 }; 13 32 14 - patchPhase = '' 33 + postPhase = '' 15 34 substituteInPlace src/CMakeLists.txt --replace svnheader svnversion 16 35 ''; 17 36 18 - nativeBuildInputs = 19 - [ cmake makedepend perl pkg-config qttools wrapQtAppsHook ]; 37 + nativeBuildInputs = [ cmake makedepend perl pkg-config qttools wrapQtAppsHook ]; 20 38 21 39 buildInputs = [ 22 40 dssi ··· 49 67 license = licenses.lgpl2Plus; 50 68 platforms = platforms.linux; 51 69 }; 52 - }) 70 + }
+32
pkgs/applications/misc/corefm/default.nix
··· 1 + { mkDerivation, lib, fetchFromGitLab, qtbase, libcprime, libcsys, cmake, ninja }: 2 + 3 + mkDerivation rec { 4 + pname = "corefm"; 5 + version = "4.2.0"; 6 + 7 + src = fetchFromGitLab { 8 + owner = "cubocore/coreapps"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-PczKIKY9uCD+cAzAC6Gkb+g+cn9KKCQYd3epoZK8bvA="; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + cmake 16 + ninja 17 + ]; 18 + 19 + buildInputs = [ 20 + qtbase 21 + libcprime 22 + libcsys 23 + ]; 24 + 25 + meta = with lib; { 26 + description = "A lightwight filemanager from the C Suite"; 27 + homepage = "https://gitlab.com/cubocore/coreapps/corefm"; 28 + license = licenses.gpl3Plus; 29 + maintainers = with maintainers; [ dan4ik605743 ]; 30 + platforms = platforms.linux; 31 + }; 32 + }
+8
pkgs/applications/misc/coretoppings/0001-fix-install-phase.patch
··· 1 + --- a/corepkit/CMakeLists.txt 2 + +++ b/corepkit/Cmakelists.txt 3 + @@ -32,4 +32,4 @@ 4 + target_link_libraries( corepkit Qt5::Core ) 5 + 6 + install( TARGETS corepkit DESTINATION libexec/coreapps/ ) 7 + -install( FILES org.cubocore.coreapps.policy DESTINATION /usr/share/polkit-1/actions/ ) 8 + +install( FILES org.cubocore.coreapps.policy DESTINATION ${CMAKE_INSTALL_PREFIX}/usr/share/polkit-1/actions/ )
+62
pkgs/applications/misc/coretoppings/default.nix
··· 1 + { mkDerivation, lib, fetchFromGitLab, libcprime, cmake, ninja 2 + , ffmpeg, qtbase, qtx11extras, qtconnectivity, v4l-utils, grim, wf-recorder 3 + , libdbusmenu, playerctl, xorg, iio-sensor-proxy, inotify-tools 4 + , bluez, networkmanager, connman, redshift, gawk 5 + , polkit, libnotify, systemd, xdg-utils }: 6 + 7 + mkDerivation rec { 8 + pname = "coretoppings"; 9 + version = "4.2.0"; 10 + 11 + src = fetchFromGitLab { 12 + owner = "cubocore/coreapps"; 13 + repo = pname; 14 + rev = "v${version}"; 15 + sha256 = "sha256-DpmzGqjW1swLirRLzd5nblAb40LHAmf8nL+VykQNL3E="; 16 + }; 17 + 18 + nativeBuildInputs = [ 19 + cmake 20 + ninja 21 + ]; 22 + 23 + patches = [ 24 + # Fix file cannot create directory: /var/empty/share/polkit-1/actions 25 + ./0001-fix-install-phase.patch 26 + ]; 27 + 28 + buildInputs = [ 29 + qtbase 30 + qtx11extras 31 + qtconnectivity 32 + libdbusmenu 33 + libcprime 34 + ffmpeg 35 + v4l-utils 36 + grim 37 + wf-recorder 38 + playerctl 39 + xorg.xrandr 40 + xorg.xinput 41 + xorg.libXdamage 42 + iio-sensor-proxy 43 + inotify-tools 44 + bluez 45 + networkmanager 46 + connman 47 + redshift 48 + gawk 49 + polkit 50 + libnotify 51 + systemd 52 + xdg-utils 53 + ]; 54 + 55 + meta = with lib; { 56 + description = "Additional features,plugins etc for CuboCore Application Suite"; 57 + homepage = "https://gitlab.com/cubocore/coreapps/coretoppings"; 58 + license = licenses.gpl3Plus; 59 + maintainers = with maintainers; [ dan4ik605743 ]; 60 + platforms = platforms.linux; 61 + }; 62 + }
+10 -2
pkgs/applications/networking/cluster/kubernetes/default.nix
··· 7 7 , makeWrapper 8 8 , rsync 9 9 , installShellFiles 10 + , nixosTests 10 11 11 12 , components ? [ 12 13 "cmd/kubelet" ··· 66 67 install -D build/pause/linux/pause -t $pause/bin 67 68 installManPage docs/man/man1/*.[1-9] 68 69 69 - # Unfortunately, kube-addons-main.sh only looks for the lib file in either the current working dir 70 - # or in /opt. We have to patch this for now. 70 + # Unfortunately, kube-addons-main.sh only looks for the lib file in either the 71 + # current working dir or in /opt. We have to patch this for now. 71 72 substitute cluster/addons/addon-manager/kube-addons-main.sh $out/bin/kube-addons \ 72 73 --subst-var out 73 74 ··· 94 95 homepage = "https://kubernetes.io"; 95 96 maintainers = with maintainers; [ johanot offline saschagrunert ]; 96 97 platforms = platforms.unix; 98 + }; 99 + 100 + passthru.tests = with nixosTests.kubernetes; { 101 + dns-single-node = dns.singlenode; 102 + dns-multi-node = dns.multinode; 103 + rbac-single-node = rbac.singlenode; 104 + rbac-multi-node = rbac.multinode; 97 105 }; 98 106 }
+1 -1
pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
··· 114 114 platforms = platforms.linux; 115 115 homepage = "https://desktop.telegram.org/"; 116 116 changelog = "https://github.com/telegramdesktop/tdesktop/releases/tag/v${version}"; 117 - maintainers = with maintainers; [ primeos abbradar oxalica ]; 117 + maintainers = with maintainers; [ oxalica primeos ]; 118 118 }; 119 119 }
+1 -1
pkgs/applications/networking/mailreaders/astroid/default.nix
··· 3 3 , gtkmm3, libpeas, gsettings-desktop-schemas, gobject-introspection, python3 4 4 5 5 # vim to be used, should support the GUI mode. 6 - , vim ? vim_configurable.override { features = "normal"; gui = "auto"; } 6 + , vim 7 7 8 8 # additional python3 packages to be available within plugins 9 9 , extraPythonPackages ? []
+2 -2
pkgs/applications/virtualization/crun/default.nix
··· 38 38 in 39 39 stdenv.mkDerivation rec { 40 40 pname = "crun"; 41 - version = "0.20.1"; 41 + version = "0.21"; 42 42 43 43 src = fetchFromGitHub { 44 44 owner = "containers"; 45 45 repo = pname; 46 46 rev = version; 47 - sha256 = "sha256-Fo8UCUwZ5RiJTXs1jWn1Mwq2qvK8p++ETxW9Tseokjw="; 47 + sha256 = "sha256-PhhaCXtWsknMsEt1F9jMfEWSl+OLQ/C/iTj7t0XuAFw="; 48 48 fetchSubmodules = true; 49 49 }; 50 50
+3 -3
pkgs/applications/virtualization/firecracker/default.nix
··· 1 1 { fetchurl, lib, stdenv }: 2 2 3 3 let 4 - version = "0.24.4"; 4 + version = "0.24.5"; 5 5 6 6 suffix = { 7 7 x86_64-linux = "x86_64"; ··· 22 22 23 23 sourceRoot = "."; 24 24 src = dlbin { 25 - x86_64-linux = "sha256-EKndfLdkxn+S+2ElAyQ+mKEo5XN6kqZLuLCsQf+fKuk="; 26 - aarch64-linux = "0zzr8x776aya6f6pw0dc0a6jxgbqv3f37p1vd8mmlsdv66c4kmfb"; 25 + x86_64-linux = "sha256-drcm2kz2csuJqr8Oqs0r1BrxgPHOyuwC2S+99MhbMjA="; 26 + aarch64-linux = "sha256-x8RoBmgY3HRUOLw8YzEwQfQuT83zGfBHHWu88b4i05o="; 27 27 }; 28 28 29 29 dontConfigure = true;
+3 -2
pkgs/development/compilers/gcc/10/default.nix
··· 156 156 157 157 depsBuildBuild = [ buildPackages.stdenv.cc ]; 158 158 nativeBuildInputs = [ texinfo which gettext ] 159 - ++ (optional (perl != null) perl); 159 + ++ (optional (perl != null) perl) 160 + ++ (optional langAda gnatboot) 161 + ; 160 162 161 163 # For building runtime libs 162 164 depsBuildTarget = ··· 177 179 # The builder relies on GNU sed (for instance, Darwin's `sed' fails with 178 180 # "-i may not be used with stdin"), and `stdenvNative' doesn't provide it. 179 181 ++ (optional hostPlatform.isDarwin gnused) 180 - ++ (optional langAda gnatboot) 181 182 ; 182 183 183 184 depsTargetTarget = optional (!crossStageStatic && threadsCross != null) threadsCross;
+3 -2
pkgs/development/compilers/gcc/11/default.nix
··· 161 161 162 162 depsBuildBuild = [ buildPackages.stdenv.cc ]; 163 163 nativeBuildInputs = [ texinfo which gettext ] 164 - ++ (optional (perl != null) perl); 164 + ++ (optional (perl != null) perl) 165 + ++ (optional langAda gnatboot) 166 + ; 165 167 166 168 # For building runtime libs 167 169 depsBuildTarget = ··· 182 184 # The builder relies on GNU sed (for instance, Darwin's `sed' fails with 183 185 # "-i may not be used with stdin"), and `stdenvNative' doesn't provide it. 184 186 ++ (optional hostPlatform.isDarwin gnused) 185 - ++ (optional langAda gnatboot) 186 187 ; 187 188 188 189 depsTargetTarget = optional (!crossStageStatic && threadsCross != null) threadsCross;
+3 -2
pkgs/development/compilers/gcc/6/default.nix
··· 199 199 nativeBuildInputs = [ texinfo which gettext ] 200 200 ++ (optional (perl != null) perl) 201 201 ++ (optional javaAwtGtk pkg-config) 202 - ++ (optional (with stdenv.targetPlatform; isVc4 || isRedox) flex); 202 + ++ (optional (with stdenv.targetPlatform; isVc4 || isRedox) flex) 203 + ++ (optional langAda gnatboot) 204 + ; 203 205 204 206 # For building runtime libs 205 207 depsBuildTarget = ··· 222 224 # The builder relies on GNU sed (for instance, Darwin's `sed' fails with 223 225 # "-i may not be used with stdin"), and `stdenvNative' doesn't provide it. 224 226 ++ (optional hostPlatform.isDarwin gnused) 225 - ++ (optional langAda gnatboot) 226 227 ; 227 228 228 229 depsTargetTarget = optional (!crossStageStatic && threadsCross != null) threadsCross;
+3 -2
pkgs/development/compilers/gcc/9/default.nix
··· 170 170 171 171 depsBuildBuild = [ buildPackages.stdenv.cc ]; 172 172 nativeBuildInputs = [ texinfo which gettext ] 173 - ++ (optional (perl != null) perl); 173 + ++ (optional (perl != null) perl) 174 + ++ (optional langAda gnatboot) 175 + ; 174 176 175 177 # For building runtime libs 176 178 depsBuildTarget = ··· 191 193 # The builder relies on GNU sed (for instance, Darwin's `sed' fails with 192 194 # "-i may not be used with stdin"), and `stdenvNative' doesn't provide it. 193 195 ++ (optional hostPlatform.isDarwin gnused) 194 - ++ (optional langAda gnatboot) 195 196 ; 196 197 197 198 depsTargetTarget = optional (!crossStageStatic && threadsCross != null) threadsCross;
+5 -2
pkgs/development/compilers/gcc/common/configure-flags.nix
··· 170 170 "--enable-cloog-backend=isl" 171 171 ] 172 172 173 - # Ada options 174 - ++ lib.optional langAda "--enable-libada" 173 + # Ada options, gcc can't build the runtime library for a cross compiler 174 + ++ lib.optional langAda 175 + (if hostPlatform == targetPlatform 176 + then "--enable-libada" 177 + else "--disable-libada") 175 178 176 179 # Java options 177 180 ++ lib.optionals langJava [
+6 -2
pkgs/development/compilers/gnatboot/default.nix
··· 1 1 { lib, stdenv, fetchurl }: 2 2 3 + if stdenv.hostPlatform != stdenv.targetPlatform 4 + then builtins.throw "gnatboot can't cross-compile" 5 + else 6 + 3 7 stdenv.mkDerivation { 4 8 pname = "gentoo-gnatboot"; 5 9 version = "4.1"; 6 10 7 - src = if stdenv.system == "i686-linux" then 11 + src = if stdenv.hostPlatform.system == "i686-linux" then 8 12 fetchurl { 9 13 url = mirror://gentoo/distfiles/gnatboot-4.1-i386.tar.bz2; 10 14 sha256 = "0665zk71598204bf521vw68i5y6ccqarq9fcxsqp7ccgycb4lysr"; 11 15 } 12 - else if stdenv.system == "x86_64-linux" then 16 + else if stdenv.hostPlatform.system == "x86_64-linux" then 13 17 fetchurl { 14 18 url = mirror://gentoo/distfiles/gnatboot-4.1-amd64.tar.bz2; 15 19 sha256 = "1li4d52lmbnfs6llcshlbqyik2q2q4bvpir0f7n38nagp0h6j0d4";
+2
pkgs/development/coq-modules/corn/default.nix
··· 6 6 defaultVersion = switch coq.coq-version [ 7 7 { case = "8.6"; out = "8.8.1"; } 8 8 { case = (versions.range "8.7" "8.12"); out = "8.12.0"; } 9 + { case = (versions.range "8.13" "8.13"); out = "c366d3f01ec1812b145117a4da940518b092d3a6"; } 9 10 ] null; 10 11 release = { 11 12 "8.8.1".sha256 = "0gh32j0f18vv5lmf6nb87nr5450w6ai06rhrnvlx2wwi79gv10wp"; 12 13 "8.12.0".sha256 = "0b92vhyzn1j6cs84z2182fn82hxxj0bqq7hk6cs4awwb3vc7dkhi"; 14 + "c366d3f01ec1812b145117a4da940518b092d3a6".sha256 = "1wzr7mdsnf1rq7q0dvmv55vxzysy85b00ahwbs868bl7m8fk8x5b"; 13 15 }; 14 16 15 17 preConfigure = "patchShebangs ./configure.sh";
+10 -3
pkgs/development/libraries/libfprint/default.nix
··· 10 10 , nss 11 11 , gobject-introspection 12 12 , coreutils 13 + , cairo 14 + , libgudev 13 15 , gtk-doc 14 16 , docbook-xsl-nons 15 17 , docbook_xml_dtd_43 ··· 17 19 18 20 stdenv.mkDerivation rec { 19 21 pname = "libfprint"; 20 - version = "1.90.7"; 22 + version = "1.92.1"; 21 23 outputs = [ "out" "devdoc" ]; 22 24 23 25 src = fetchFromGitLab { ··· 25 27 owner = "libfprint"; 26 28 repo = pname; 27 29 rev = "v${version}"; 28 - sha256 = "sha256-g/yczzCZEzUKV2uFl1MAPL1H/R2QJSwxgppI2ftt9QI="; 30 + sha256 = "0dpwzmwl9jjpaz44znvy3v8s9sln0c71b756rs1knk0zx8sa1qbc"; 29 31 }; 30 32 31 33 nativeBuildInputs = [ ··· 43 45 pixman 44 46 glib 45 47 nss 48 + cairo 49 + libgudev 46 50 ]; 47 51 48 52 checkInputs = [ ··· 53 57 "-Dudev_rules_dir=${placeholder "out"}/lib/udev/rules.d" 54 58 # Include virtual drivers for fprintd tests 55 59 "-Ddrivers=all" 60 + "-Dudev_hwdb_dir=${placeholder "out"}/lib/udev/hwdb.d" 56 61 ]; 57 62 58 63 doCheck = true; ··· 61 66 patchShebangs \ 62 67 tests/test-runner.sh \ 63 68 tests/unittest_inspector.py \ 64 - tests/virtual-image.py 69 + tests/virtual-image.py \ 70 + tests/umockdev-test.py \ 71 + tests/test-generated-hwdb.sh 65 72 ''; 66 73 67 74 meta = with lib; {
-25
pkgs/development/libraries/libjpeg/builder.sh
··· 1 - source $stdenv/setup 2 - 3 - preConfigure() { 4 - # Workarounds for the ancient libtool shipped by libjpeg. 5 - ln -s $libtool/bin/libtool . 6 - cp $libtool/share/libtool/config.guess . 7 - cp $libtool/share/libtool/config.sub . 8 - } 9 - 10 - preInstall() { 11 - mkdir $out 12 - mkdir $out/bin 13 - mkdir $out/lib 14 - mkdir $out/include 15 - mkdir $out/man 16 - mkdir $out/man/man1 17 - } 18 - 19 - patchPhase() { 20 - for i in $patches; do 21 - patch < $i 22 - done 23 - } 24 - 25 - genericBuild
+10 -10
pkgs/development/libraries/libjpeg/default.nix
··· 1 1 { lib, stdenv, fetchurl, static ? false }: 2 2 3 - with lib; 4 - 5 - stdenv.mkDerivation { 6 - name = "libjpeg-9d"; 3 + stdenv.mkDerivation rec { 4 + pname = "libjpeg"; 5 + version = "9d"; 7 6 8 7 src = fetchurl { 9 - url = "http://www.ijg.org/files/jpegsrc.v9d.tar.gz"; 8 + url = "http://www.ijg.org/files/jpegsrc.v${version}.tar.gz"; 10 9 sha256 = "1vkip9rz4hz8f31a2kl7wl7f772wg1z0fg1fbd1653wzwlxllhvc"; 11 10 }; 12 11 13 - configureFlags = optional static "--enable-static --disable-shared"; 12 + configureFlags = lib.optional static "--enable-static --disable-shared"; 14 13 15 14 outputs = [ "bin" "dev" "out" "man" ]; 16 15 17 - meta = { 18 - homepage = "http://www.ijg.org/"; 16 + meta = with lib; { 17 + homepage = "https://www.ijg.org/"; 19 18 description = "A library that implements the JPEG image file format"; 20 - license = lib.licenses.free; 21 - platforms = lib.platforms.unix; 19 + maintainers = with maintainers; [ ]; 20 + license = licenses.free; 21 + platforms = platforms.unix; 22 22 }; 23 23 }
+1
pkgs/development/node-packages/node-packages.json
··· 199 199 , "purescript-language-server" 200 200 , "purescript-psa" 201 201 , "purty" 202 + , "pxder" 202 203 , "pyright" 203 204 , "quicktype" 204 205 , "react-native-cli"
+1372 -1205
pkgs/development/node-packages/node-packages.nix
··· 49 49 sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww=="; 50 50 }; 51 51 }; 52 - "@angular-devkit/architect-0.1201.2" = { 52 + "@angular-devkit/architect-0.1201.3" = { 53 53 name = "_at_angular-devkit_slash_architect"; 54 54 packageName = "@angular-devkit/architect"; 55 - version = "0.1201.2"; 55 + version = "0.1201.3"; 56 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1201.2.tgz"; 58 - sha512 = "hR5kI03WoeEY9dkAsQNLlhL1iEFC2L77ansaKquN+HCAeOGHby4w95suSlZUAg0r6ZhPhPH0tkIRZXU9NMa09g=="; 57 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1201.3.tgz"; 58 + sha512 = "+k8bKcc+j6ml4zxw0buwE3dO4mVtVT57Ro8fxc8GIyJMVDD9bogNB3y5ll8lJa0kP5HJ0tFCUi+hd8CISE+aSg=="; 59 59 }; 60 60 }; 61 61 "@angular-devkit/core-12.0.5" = { ··· 67 67 sha512 = "zVSQV+8/vjUjsUKGlj8Kf5LioA6AXJTGI0yhHW9q1dFX4dPpbW63k0R1UoIB2wJ0F/AbYVgpnPGPe9BBm2fvZA=="; 68 68 }; 69 69 }; 70 - "@angular-devkit/core-12.1.1" = { 70 + "@angular-devkit/core-12.1.3" = { 71 71 name = "_at_angular-devkit_slash_core"; 72 72 packageName = "@angular-devkit/core"; 73 - version = "12.1.1"; 73 + version = "12.1.3"; 74 74 src = fetchurl { 75 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.1.1.tgz"; 76 - sha512 = "z5+O3ugXbo8djKPjUtf/UfnYCmco2K1LVhQ6cWLhKi3NKRBiHeNmZh5nAycqFD8/Q+oI/+Ao40MkmkK1Tq0jsw=="; 77 - }; 78 - }; 79 - "@angular-devkit/core-12.1.2" = { 80 - name = "_at_angular-devkit_slash_core"; 81 - packageName = "@angular-devkit/core"; 82 - version = "12.1.2"; 83 - src = fetchurl { 84 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.1.2.tgz"; 85 - sha512 = "TeaRbvsNEeAkRJcIBlT6yUNh0vaVVBGBYfXYFIMg/I04ex/HI0ApEowu78GeTzCqlE0r4t+WaGT46m7+NIljKg=="; 75 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.1.3.tgz"; 76 + sha512 = "69bM4wYUxbHUuZvx97pxVxzNYPrUPsMuszHpYdS6/lsAgpa15EDuBoQHgob4chFiQaNoG9mzOsumlUkoI3mEbg=="; 86 77 }; 87 78 }; 88 79 "@angular-devkit/schematics-12.0.5" = { ··· 94 85 sha512 = "iW3XuDHScr3TXuunlEjF5O01zBpwpLgfr1oEny8PvseFGDlHK4Nj8zNIoIn3Yg936aiFO4GJAC/UXsT8g5vKxQ=="; 95 86 }; 96 87 }; 97 - "@angular-devkit/schematics-12.1.1" = { 88 + "@angular-devkit/schematics-12.1.3" = { 98 89 name = "_at_angular-devkit_slash_schematics"; 99 90 packageName = "@angular-devkit/schematics"; 100 - version = "12.1.1"; 91 + version = "12.1.3"; 101 92 src = fetchurl { 102 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.1.1.tgz"; 103 - sha512 = "oRsvlhJQLXkGWdJvArOby+G4j8UX2uCHwrN4EC1hXUKs84UsD+UATYOAh4h2auy+I+sdrmELUaHwdI4wdKpqnw=="; 93 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.1.3.tgz"; 94 + sha512 = "QTfGurkNDdEwNheoe1lILWc4YUNSbqOeXRRkwFp1+QwxwlxXoeJ1zNMAo8ytQodnBRsomw7Wu9l1xSWfOL25nA=="; 104 95 }; 105 96 }; 106 - "@angular-devkit/schematics-12.1.2" = { 107 - name = "_at_angular-devkit_slash_schematics"; 108 - packageName = "@angular-devkit/schematics"; 109 - version = "12.1.2"; 110 - src = fetchurl { 111 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.1.2.tgz"; 112 - sha512 = "/UGcAJChq+g7wf46Exr5iIyuVw3j4TxTIntTpuKg/z/xf9Y+8mzJAZgGittu/yFcHAJ9aYcOHctffrfEdV7QSA=="; 113 - }; 114 - }; 115 - "@angular-devkit/schematics-cli-12.1.1" = { 97 + "@angular-devkit/schematics-cli-12.1.3" = { 116 98 name = "_at_angular-devkit_slash_schematics-cli"; 117 99 packageName = "@angular-devkit/schematics-cli"; 118 - version = "12.1.1"; 100 + version = "12.1.3"; 119 101 src = fetchurl { 120 - url = "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-12.1.1.tgz"; 121 - sha512 = "mIwE9iD7RKnARNlm39Ao3WtXqUFkemX77AHuqWUatQ4QsaOG3fxrTH8UYPP7Oi17J4wRipIkzia1cOIStluTVA=="; 102 + url = "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-12.1.3.tgz"; 103 + sha512 = "fpf1448DoF9xIBUGx/DNeaw+KmvVIGzvAUwBu5yGIEjbw93ODcKqaE8DX7FNOe9kHvTEoqYaS/aCb2tHa4KS5A=="; 122 104 }; 123 105 }; 124 106 "@antora/asciidoc-loader-2.3.4" = { ··· 1570 1552 sha512 = "GcIY79elgB+azP74j8vqkiXz8xLFfIzbQJdlwOPisgbKT00tviJQuEghOXSMVxJ00HoYJbGswr4kcllUc4xCcg=="; 1571 1553 }; 1572 1554 }; 1573 - "@bugsnag/browser-7.10.5" = { 1555 + "@bugsnag/browser-7.11.0" = { 1574 1556 name = "_at_bugsnag_slash_browser"; 1575 1557 packageName = "@bugsnag/browser"; 1576 - version = "7.10.5"; 1558 + version = "7.11.0"; 1577 1559 src = fetchurl { 1578 - url = "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.10.5.tgz"; 1579 - sha512 = "LxzQ0g8kbVq2YAoZkLM58pzNGqKWV/JxVTBCudHQVp92Wm9Wl7aFVMNPzUWCjp9T9XrNl3h9lrs6Bb127SomyA=="; 1560 + url = "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.11.0.tgz"; 1561 + sha512 = "iOKXJcZzdl9XsjJnL62S+T4OQZJ21mUMCXXOiMRlLnDCrw30BwD4BoAZ5s3oQ0VE0azrv/CUsXQzU63NUcsb+Q=="; 1580 1562 }; 1581 1563 }; 1582 - "@bugsnag/core-7.10.0" = { 1564 + "@bugsnag/core-7.11.0" = { 1583 1565 name = "_at_bugsnag_slash_core"; 1584 1566 packageName = "@bugsnag/core"; 1585 - version = "7.10.0"; 1567 + version = "7.11.0"; 1586 1568 src = fetchurl { 1587 - url = "https://registry.npmjs.org/@bugsnag/core/-/core-7.10.0.tgz"; 1588 - sha512 = "sDa2nDxwsxHQx2/2/tsBWjYqH0TewCR8N/r5at6B+irwVkI0uts7Qc2JyqDTfiEiBXKVEXFK+fHTz1x9b8tsiA=="; 1569 + url = "https://registry.npmjs.org/@bugsnag/core/-/core-7.11.0.tgz"; 1570 + sha512 = "xCaaONqQEAewifrvHC8v+yqN+Is4WNUcmK+sdeLcSb+ghLQ52y3BQ9nEDYzQxGuJRpv1zW3edCVIB4RN5eunSQ=="; 1589 1571 }; 1590 1572 }; 1591 1573 "@bugsnag/cuid-3.0.0" = { ··· 1597 1579 sha512 = "LOt8aaBI+KvOQGneBtpuCz3YqzyEAehd1f3nC5yr9TIYW1+IzYKa2xWS4EiMz5pPOnRPHkyyS5t/wmSmN51Gjg=="; 1598 1580 }; 1599 1581 }; 1600 - "@bugsnag/js-7.10.5" = { 1582 + "@bugsnag/js-7.11.0" = { 1601 1583 name = "_at_bugsnag_slash_js"; 1602 1584 packageName = "@bugsnag/js"; 1603 - version = "7.10.5"; 1585 + version = "7.11.0"; 1604 1586 src = fetchurl { 1605 - url = "https://registry.npmjs.org/@bugsnag/js/-/js-7.10.5.tgz"; 1606 - sha512 = "zLlZI+KoBUFTg5gmB9swUq17wVRm1kgY+DDuPGBCv9EqBV+ofXCdfZaSFIXles4fqTH/edN6WXeVrXZ2QnQStg=="; 1587 + url = "https://registry.npmjs.org/@bugsnag/js/-/js-7.11.0.tgz"; 1588 + sha512 = "2KQZdiBUQRayrTweMrH8LuT+YFcZSYxPVb+RaAx5J1z3vWWFar7Lw3II34zA4e+zs/7wMSTKll5p+O7Wuz60/A=="; 1607 1589 }; 1608 1590 }; 1609 - "@bugsnag/node-7.10.1" = { 1591 + "@bugsnag/node-7.11.0" = { 1610 1592 name = "_at_bugsnag_slash_node"; 1611 1593 packageName = "@bugsnag/node"; 1612 - version = "7.10.1"; 1594 + version = "7.11.0"; 1613 1595 src = fetchurl { 1614 - url = "https://registry.npmjs.org/@bugsnag/node/-/node-7.10.1.tgz"; 1615 - sha512 = "kpasrz/im5ljptt2JOqrjbOu4b0i5sAZOYU4L0psWXlD31/wXytk7im11QlNALdI8gZZBxIFsVo8ks6dR6mHzg=="; 1596 + url = "https://registry.npmjs.org/@bugsnag/node/-/node-7.11.0.tgz"; 1597 + sha512 = "hwIG7LTE2lwaIjAes1JxYbjSoih9Eu07MSf+QJoMILY6tJoHMgxJ6v0/8AfldJeEAb753qBtlQLO8Rtr2LKHBA=="; 1616 1598 }; 1617 1599 }; 1618 1600 "@bugsnag/safe-json-stringify-6.0.0" = { ··· 1633 1615 sha512 = "yabxBeKkCJvj3gFQmHfsS/P6JaQMBqbyEZ1G67gTCtfkbOSEGib8KWsl3ZA+u5Fs2z5q9M4emLcCBHHPrmSG3g=="; 1634 1616 }; 1635 1617 }; 1636 - "@chemzqm/neovim-5.2.13" = { 1618 + "@chemzqm/neovim-5.3.4" = { 1637 1619 name = "_at_chemzqm_slash_neovim"; 1638 1620 packageName = "@chemzqm/neovim"; 1639 - version = "5.2.13"; 1621 + version = "5.3.4"; 1640 1622 src = fetchurl { 1641 - url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.2.13.tgz"; 1642 - sha512 = "Eo1NBUj0e2vtOdNA7fpHra6xviDtwDWbYZiPzH5BWGwPtbRa0XjNGPMggcDCCKKKFRJgp9AaAfmT0LaqIyQvyg=="; 1623 + url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.3.4.tgz"; 1624 + sha512 = "UVH9xoNSwhzsnEhhcIc4hoDpmyUhGcqBbco5tuISdGV4gEgOKN48c7WhVMmyrsSGogohVCwPHuDugdssUx66tQ=="; 1643 1625 }; 1644 1626 }; 1645 1627 "@cnakazawa/watch-1.0.4" = { ··· 1795 1777 sha512 = "Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g=="; 1796 1778 }; 1797 1779 }; 1798 - "@electron-forge/async-ora-6.0.0-beta.58" = { 1780 + "@electron-forge/async-ora-6.0.0-beta.59" = { 1799 1781 name = "_at_electron-forge_slash_async-ora"; 1800 1782 packageName = "@electron-forge/async-ora"; 1801 - version = "6.0.0-beta.58"; 1783 + version = "6.0.0-beta.59"; 1802 1784 src = fetchurl { 1803 - url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.58.tgz"; 1804 - sha512 = "osJoCA+Mxda0ToHnVh0c52UiqG0vYRChFp7YZnXSOFAyv/pJhO1gaSfJeTX+2ddki0SLvWQbgiJS5ysMax6Veg=="; 1785 + url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.59.tgz"; 1786 + sha512 = "vF60XyjHCyoyXHgkDi/tZy+OB9K6oSBio2at7B4pwZLO6nqstofkeAB+Gz/XUsVj9Nim+vHKtyXPzE0BTXQkZQ=="; 1805 1787 }; 1806 1788 }; 1807 - "@electron-forge/core-6.0.0-beta.58" = { 1789 + "@electron-forge/core-6.0.0-beta.59" = { 1808 1790 name = "_at_electron-forge_slash_core"; 1809 1791 packageName = "@electron-forge/core"; 1810 - version = "6.0.0-beta.58"; 1792 + version = "6.0.0-beta.59"; 1811 1793 src = fetchurl { 1812 - url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.58.tgz"; 1813 - sha512 = "mro6o/Oa2BETPfnzlWcpLJ5W5IWVuDokE7HZPzb9c6OTlcm/BWwl8pbfSZU19Q9SLsjou9hAuMwqzFveZRqGew=="; 1794 + url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.59.tgz"; 1795 + sha512 = "DRls31VQdVqGlna9EviHGKPchTkcbYPsRjOHSTrpksyOBQGck7for/hD1sxFREQ0r1qfKMR4xtmXbpXqzD8AyQ=="; 1814 1796 }; 1815 1797 }; 1816 - "@electron-forge/installer-base-6.0.0-beta.58" = { 1798 + "@electron-forge/installer-base-6.0.0-beta.59" = { 1817 1799 name = "_at_electron-forge_slash_installer-base"; 1818 1800 packageName = "@electron-forge/installer-base"; 1819 - version = "6.0.0-beta.58"; 1801 + version = "6.0.0-beta.59"; 1820 1802 src = fetchurl { 1821 - url = "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.58.tgz"; 1822 - sha512 = "VXA9cjCy9HHWyOcPGkO1Q5ym63AAfBLj/dL0Ezpw9r0/GKbgAN0g8HWgTwvs+rqWCdOAeyhIs+sTNI0rZQjc+A=="; 1803 + url = "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.59.tgz"; 1804 + sha512 = "rmayhhJXj5aXed8xrkqOPTGF4J1DqZdTGo05RAVKoCmXv0iGBPUp0VvkiQinOvoBopr/5XorZTzCxgqps0UC6w=="; 1823 1805 }; 1824 1806 }; 1825 - "@electron-forge/installer-darwin-6.0.0-beta.58" = { 1807 + "@electron-forge/installer-darwin-6.0.0-beta.59" = { 1826 1808 name = "_at_electron-forge_slash_installer-darwin"; 1827 1809 packageName = "@electron-forge/installer-darwin"; 1828 - version = "6.0.0-beta.58"; 1810 + version = "6.0.0-beta.59"; 1829 1811 src = fetchurl { 1830 - url = "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.58.tgz"; 1831 - sha512 = "yfx97cL7+kB77xTeniNqRT4Va++uJX6j9kZwIwgaBFvtyLHZ1DChOlOI8IR6/qctzEtrZHW41DySFKXnsWYwuw=="; 1812 + url = "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.59.tgz"; 1813 + sha512 = "2bssItA6CWgdL0G0/opG5usUdpCurCptdrA1bC8el6hlgv/v+hhRxalkPX9A38cWTB3w8VMhesDti+PpEYnniw=="; 1832 1814 }; 1833 1815 }; 1834 - "@electron-forge/installer-deb-6.0.0-beta.58" = { 1816 + "@electron-forge/installer-deb-6.0.0-beta.59" = { 1835 1817 name = "_at_electron-forge_slash_installer-deb"; 1836 1818 packageName = "@electron-forge/installer-deb"; 1837 - version = "6.0.0-beta.58"; 1819 + version = "6.0.0-beta.59"; 1838 1820 src = fetchurl { 1839 - url = "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.58.tgz"; 1840 - sha512 = "Ukw1ccUtmTOKCiorYLJCAIWGT5zxpinH1W9UpxlMP3JhrzQXApm2rF7n9TEGowkTMtPciEsNXaF/F9lzjRqIpQ=="; 1821 + url = "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.59.tgz"; 1822 + sha512 = "z2095DHbNm81gClIn+fkid/Z8FKlBnAySIodDRFKNjNDaGcWcg2Wurv3vV32Xq4kBlsHRduhxA31IqnGY1zOvA=="; 1841 1823 }; 1842 1824 }; 1843 - "@electron-forge/installer-dmg-6.0.0-beta.58" = { 1825 + "@electron-forge/installer-dmg-6.0.0-beta.59" = { 1844 1826 name = "_at_electron-forge_slash_installer-dmg"; 1845 1827 packageName = "@electron-forge/installer-dmg"; 1846 - version = "6.0.0-beta.58"; 1828 + version = "6.0.0-beta.59"; 1847 1829 src = fetchurl { 1848 - url = "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.58.tgz"; 1849 - sha512 = "zw46CQSZ2Jihx7GBUcEPHGBQJD1pIBv6oTi5HPR7IkEJ7CQ/yjESAfDuu1UfQc9mgAKI+6s+QMuFZMW+ZMqYPg=="; 1830 + url = "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.59.tgz"; 1831 + sha512 = "QAYJ0H31hVMiTQDQ9ngBkAFBbSTb9Okj3mKNsym+Yw4RlQJQEc9XWWOmiTjPHCB1LR/NmaescT06sJ6Kh0wtQw=="; 1850 1832 }; 1851 1833 }; 1852 - "@electron-forge/installer-exe-6.0.0-beta.58" = { 1834 + "@electron-forge/installer-exe-6.0.0-beta.59" = { 1853 1835 name = "_at_electron-forge_slash_installer-exe"; 1854 1836 packageName = "@electron-forge/installer-exe"; 1855 - version = "6.0.0-beta.58"; 1837 + version = "6.0.0-beta.59"; 1856 1838 src = fetchurl { 1857 - url = "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.58.tgz"; 1858 - sha512 = "Z7gl1CX8WJ/9kr5As9y0GELK8/u754j7bzSlxmaeyhaO/vSf5+M/MjkEiPUQUKVmqZ77ngdzN/T4IfDGxpk++A=="; 1839 + url = "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.59.tgz"; 1840 + sha512 = "FJ0vu65K6wBz8gY5RJNfLanXJEGMs2w/WrawSLh5xGH5GzOkWwq3RRD5AdN1CFRrkXSCBbgkdF6x+F1kdwH7OQ=="; 1859 1841 }; 1860 1842 }; 1861 - "@electron-forge/installer-linux-6.0.0-beta.58" = { 1843 + "@electron-forge/installer-linux-6.0.0-beta.59" = { 1862 1844 name = "_at_electron-forge_slash_installer-linux"; 1863 1845 packageName = "@electron-forge/installer-linux"; 1864 - version = "6.0.0-beta.58"; 1846 + version = "6.0.0-beta.59"; 1865 1847 src = fetchurl { 1866 - url = "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.58.tgz"; 1867 - sha512 = "39A2mmhsJg2MEjYS+gtF/9FUYLKEoVmD6e4S+Rn0u9Yv/WOtdqOR0KR/pLYPtsiQKsGQA5nD2V2/ZN8N/qTxZw=="; 1848 + url = "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.59.tgz"; 1849 + sha512 = "dB1A8j6oubCnAOQQzmtFWQWTMMSijeiClaGMricNOlC0wC2U3BHiBwrU2jJqxvy4M401kfgR9UiMs6mQNSPdPg=="; 1868 1850 }; 1869 1851 }; 1870 - "@electron-forge/installer-rpm-6.0.0-beta.58" = { 1852 + "@electron-forge/installer-rpm-6.0.0-beta.59" = { 1871 1853 name = "_at_electron-forge_slash_installer-rpm"; 1872 1854 packageName = "@electron-forge/installer-rpm"; 1873 - version = "6.0.0-beta.58"; 1855 + version = "6.0.0-beta.59"; 1874 1856 src = fetchurl { 1875 - url = "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.58.tgz"; 1876 - sha512 = "RyuKOGJoJknnp1C9WPFDc06Jw9K+KBM574byYegNiJPm5eGu+ZL/4tU9hD29YAtImyoGUy8L5dquApaC4d9zKA=="; 1857 + url = "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.59.tgz"; 1858 + sha512 = "h/S5uMl8Vvg+Euv5xIhynjB8Q6biaBauJJoPtlALxSgSNuKnWWIuc4edwqY5F0cBIw3WO4tnmA/CE6gVWgGJMg=="; 1877 1859 }; 1878 1860 }; 1879 - "@electron-forge/installer-zip-6.0.0-beta.58" = { 1861 + "@electron-forge/installer-zip-6.0.0-beta.59" = { 1880 1862 name = "_at_electron-forge_slash_installer-zip"; 1881 1863 packageName = "@electron-forge/installer-zip"; 1882 - version = "6.0.0-beta.58"; 1864 + version = "6.0.0-beta.59"; 1883 1865 src = fetchurl { 1884 - url = "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.58.tgz"; 1885 - sha512 = "J71WhNtHdgFDNCYB2vm3vv4Zt/rCuXFgtXxXRowb+pT39wxyL35DjXsOi/a6j5Vb2lGq0mekMuHvpcD/4MSo8w=="; 1866 + url = "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.59.tgz"; 1867 + sha512 = "sTYv2NR0liFUUa9snpQs+SCWPMOUddVNK/sNBNkwU1q5jrO+ZjfTF22u5C5RawIWKgTrwxc3dFUYDYXh8753og=="; 1886 1868 }; 1887 1869 }; 1888 - "@electron-forge/maker-base-6.0.0-beta.58" = { 1870 + "@electron-forge/maker-base-6.0.0-beta.59" = { 1889 1871 name = "_at_electron-forge_slash_maker-base"; 1890 1872 packageName = "@electron-forge/maker-base"; 1891 - version = "6.0.0-beta.58"; 1873 + version = "6.0.0-beta.59"; 1892 1874 src = fetchurl { 1893 - url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.58.tgz"; 1894 - sha512 = "Ztbv99kznlOAK/iDM03Hu/XmdTEXmfLnkcfAJ+uBlRwJmFqiAcPWNlUrPWtCu5KKxHcOiDl6mN3OC/Ae2/3fMA=="; 1875 + url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.59.tgz"; 1876 + sha512 = "S/Qdu2kwio5PdZgoDDxZPo6JSf2YwcuXi3sy9Tw2Qj58+ZT9nOHn0C+JBHI8sREv3IRK52Axu1/RYkwtX9+V8w=="; 1895 1877 }; 1896 1878 }; 1897 - "@electron-forge/plugin-base-6.0.0-beta.58" = { 1879 + "@electron-forge/plugin-base-6.0.0-beta.59" = { 1898 1880 name = "_at_electron-forge_slash_plugin-base"; 1899 1881 packageName = "@electron-forge/plugin-base"; 1900 - version = "6.0.0-beta.58"; 1882 + version = "6.0.0-beta.59"; 1901 1883 src = fetchurl { 1902 - url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.58.tgz"; 1903 - sha512 = "RMRjw8iRqkPChSMKdTSWCSubvDMSdJx+9Q9eO8n3GRN0jx4ExizhSIkxWpLSuze5dPyJXm3i24YUZjKOAR21EA=="; 1884 + url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.59.tgz"; 1885 + sha512 = "S30s/hfuIjKhCI2U4DwChjTx1ulGouqyorXpkHn3hlyfIXiC35T6fJ4Baw4Ng1W4BJrnZTmkVnglEHriFyV+Lg=="; 1904 1886 }; 1905 1887 }; 1906 - "@electron-forge/publisher-base-6.0.0-beta.58" = { 1888 + "@electron-forge/publisher-base-6.0.0-beta.59" = { 1907 1889 name = "_at_electron-forge_slash_publisher-base"; 1908 1890 packageName = "@electron-forge/publisher-base"; 1909 - version = "6.0.0-beta.58"; 1891 + version = "6.0.0-beta.59"; 1910 1892 src = fetchurl { 1911 - url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.58.tgz"; 1912 - sha512 = "pnAZ7VXnL0vosYn4Au347WukXVTU0XLqUSQrjC4pYCMs7YumL4n+ya+JNy51D6SkcFMmd0nCU2ohz7IHo3ttcg=="; 1893 + url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.59.tgz"; 1894 + sha512 = "W+fKf8ehtHU6GQLZnpnyy1XS+9o2dw8PJcRBU+pQNEUcbFqBxcAJhLkfh6cGE2tQQ/rN+N77RMWEnLh9GjZMCQ=="; 1913 1895 }; 1914 1896 }; 1915 - "@electron-forge/shared-types-6.0.0-beta.58" = { 1897 + "@electron-forge/shared-types-6.0.0-beta.59" = { 1916 1898 name = "_at_electron-forge_slash_shared-types"; 1917 1899 packageName = "@electron-forge/shared-types"; 1918 - version = "6.0.0-beta.58"; 1900 + version = "6.0.0-beta.59"; 1919 1901 src = fetchurl { 1920 - url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.58.tgz"; 1921 - sha512 = "Kz21kMg+EnINGK3H6qW4YXjFbXYvRv24O8PBnVaQiFXYIaUOXpaXj42QeytDXR/zMSA/jy78GoGodJLKE+gbdA=="; 1902 + url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.59.tgz"; 1903 + sha512 = "3tRCgfHqn5/8LijlVZsLb2xHm9W3qgzQ+KZNWXdYhb0Wj1+h6/sXn8rlxw10Mmb2mlYJEBW/NvIhpUDHgrGPXA=="; 1922 1904 }; 1923 1905 }; 1924 - "@electron-forge/template-base-6.0.0-beta.58" = { 1906 + "@electron-forge/template-base-6.0.0-beta.59" = { 1925 1907 name = "_at_electron-forge_slash_template-base"; 1926 1908 packageName = "@electron-forge/template-base"; 1927 - version = "6.0.0-beta.58"; 1909 + version = "6.0.0-beta.59"; 1928 1910 src = fetchurl { 1929 - url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.58.tgz"; 1930 - sha512 = "U2iT2YUY9R2wz9RNkM9dAEzv5q+b3HSDJcqPy/B7lzT3lB9kni0HZTZKihZttlQYGRO6jj+9aWnLqaE3HmtgsQ=="; 1911 + url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.59.tgz"; 1912 + sha512 = "PHPSHlJ72fYlk8hrEj6+6ok0Xlxz3EeFkn2DSO4ol7fjFJI7cqbaSdNuDL55CmsWsWr/3RUqk/44pn5ywmvoOg=="; 1931 1913 }; 1932 1914 }; 1933 - "@electron-forge/template-typescript-6.0.0-beta.58" = { 1915 + "@electron-forge/template-typescript-6.0.0-beta.59" = { 1934 1916 name = "_at_electron-forge_slash_template-typescript"; 1935 1917 packageName = "@electron-forge/template-typescript"; 1936 - version = "6.0.0-beta.58"; 1918 + version = "6.0.0-beta.59"; 1937 1919 src = fetchurl { 1938 - url = "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.58.tgz"; 1939 - sha512 = "x3dJeB4VDg18c69GOOUSk0LFRygaN2fDYxxjTZcGMlnsUTyypXkuaVIoEnMnB01TlY+gTPrsoITeB2e7ahSyaQ=="; 1920 + url = "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.59.tgz"; 1921 + sha512 = "GD+KyNv9y1ga6RbbXwlTNVsBeg055E/92Q5+1Y/dM+f2LLx0El0whXEwBf8eJ1+AXzrBsD0JQzAFkAIFyECLkQ=="; 1940 1922 }; 1941 1923 }; 1942 - "@electron-forge/template-typescript-webpack-6.0.0-beta.58" = { 1924 + "@electron-forge/template-typescript-webpack-6.0.0-beta.59" = { 1943 1925 name = "_at_electron-forge_slash_template-typescript-webpack"; 1944 1926 packageName = "@electron-forge/template-typescript-webpack"; 1945 - version = "6.0.0-beta.58"; 1927 + version = "6.0.0-beta.59"; 1946 1928 src = fetchurl { 1947 - url = "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.58.tgz"; 1948 - sha512 = "PTh0TW+ohn7BT+jjdQ3ubqFU9biP2ilfA36vA1Dgnv9/N8P1IBoEtXFJ4ilsMZOAfbp344ja9vsTFG+qGTsiDw=="; 1929 + url = "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.59.tgz"; 1930 + sha512 = "OPYA8eVbkFZFIpXCVTmDJntPTatzgaESyF2+eKwN1f6/j00kvHCbREL9zbXbji3gryt0a59bT+GKigWXldln5g=="; 1949 1931 }; 1950 1932 }; 1951 - "@electron-forge/template-webpack-6.0.0-beta.58" = { 1933 + "@electron-forge/template-webpack-6.0.0-beta.59" = { 1952 1934 name = "_at_electron-forge_slash_template-webpack"; 1953 1935 packageName = "@electron-forge/template-webpack"; 1954 - version = "6.0.0-beta.58"; 1936 + version = "6.0.0-beta.59"; 1955 1937 src = fetchurl { 1956 - url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.58.tgz"; 1957 - sha512 = "Uf7Ck17bn3djuoSglzOioXhOBRqY72pqMSZF0K84zNGwfzsW/KSonizmOMG3yrvSDEQf48JE5Ezhssla3SSgiA=="; 1938 + url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.59.tgz"; 1939 + sha512 = "ScPVUQ//zqqnpr53/WY8pVygs6KVTpXsPlAoo0ZeYfOjuTRh2uSMPN0+2UnUUD5FGjLm3hkpIibUH4ZMtLu8aw=="; 1958 1940 }; 1959 1941 }; 1960 1942 "@electron/get-1.12.4" = { ··· 2362 2344 sha512 = "+6PB+CwwL2GNHy4GrDR6871ng7A7FRGXSHQzGqfeLq7Dr7vjO82fGuIsrIaFO1Ry1lug6c41uC5Bon/mKcs1KQ=="; 2363 2345 }; 2364 2346 }; 2365 - "@fluentui/react-8.22.0" = { 2347 + "@fluentui/react-8.23.8" = { 2366 2348 name = "_at_fluentui_slash_react"; 2367 2349 packageName = "@fluentui/react"; 2368 - version = "8.22.0"; 2350 + version = "8.23.8"; 2369 2351 src = fetchurl { 2370 - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.22.0.tgz"; 2371 - sha512 = "mn/zUd7vJNFLqpXZhc3ePNpDcNx4mhYdQ5vCC6kqcFIYjMg2ve5WqBP9tpFlbD3LEBa8NyOvIWfdG0NZdKejLg=="; 2352 + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.23.8.tgz"; 2353 + sha512 = "piomaUcVxDZvA0yueTW/BGMISYdJ9/LJ1FNMgvSnST8/LwWTCRGbswN3tg/IUVULRlENy9th9rBp1TeMZ/DigQ=="; 2372 2354 }; 2373 2355 }; 2374 2356 "@fluentui/react-focus-7.17.6" = { ··· 3442 3424 sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="; 3443 3425 }; 3444 3426 }; 3445 - "@jsii/spec-1.31.0" = { 3427 + "@jsii/spec-1.32.0" = { 3446 3428 name = "_at_jsii_slash_spec"; 3447 3429 packageName = "@jsii/spec"; 3448 - version = "1.31.0"; 3430 + version = "1.32.0"; 3449 3431 src = fetchurl { 3450 - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.31.0.tgz"; 3451 - sha512 = "qpJqZ+xj4lnKfk/HJYdYURDmHzh9aBIVOTgwd314AxKmwubDAajlAup+D2F9z9kylAB7GsQiva/SXgUlFjBeQw=="; 3432 + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.32.0.tgz"; 3433 + sha512 = "XjSnqvmBXvFork9w3ehacqaa0JmUVaEYubOzR1l6z67z2FDZ9C4KP7EqMqjnv/S+j+Ou3tWQPfLICnl6aK1iGA=="; 3452 3434 }; 3453 3435 }; 3454 3436 "@kwsites/file-exists-1.1.1" = { ··· 4171 4153 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 4172 4154 }; 4173 4155 }; 4174 - "@netlify/build-16.1.0" = { 4156 + "@netlify/build-17.1.1" = { 4175 4157 name = "_at_netlify_slash_build"; 4176 4158 packageName = "@netlify/build"; 4177 - version = "16.1.0"; 4159 + version = "17.1.1"; 4178 4160 src = fetchurl { 4179 - url = "https://registry.npmjs.org/@netlify/build/-/build-16.1.0.tgz"; 4180 - sha512 = "FEPgiR2IoEC7fwCkAguMdWbiWwdAr6Zh1+mEFlgqTPAQDE6j/ji3elD8kuXwtdHHhC8U28YYOTZL6fCodlvRAw=="; 4161 + url = "https://registry.npmjs.org/@netlify/build/-/build-17.1.1.tgz"; 4162 + sha512 = "ulYaC/nCveDar8QGyl64wVtdjpbcUYM58/jHssVDgBiK3jQrDt6oZ5vG1sAJLDOY8ReXAtW1MqiIKLDImsk/4g=="; 4181 4163 }; 4182 4164 }; 4183 - "@netlify/cache-utils-1.0.7" = { 4165 + "@netlify/cache-utils-2.0.0" = { 4184 4166 name = "_at_netlify_slash_cache-utils"; 4185 4167 packageName = "@netlify/cache-utils"; 4186 - version = "1.0.7"; 4168 + version = "2.0.0"; 4187 4169 src = fetchurl { 4188 - url = "https://registry.npmjs.org/@netlify/cache-utils/-/cache-utils-1.0.7.tgz"; 4189 - sha512 = "yrdrnQkzg/qMovoFYwQ24UVt/OyHtP+t0KpQFd7eBl6gnuuGGgxFocaFFv6eKpMVwzHTsOwx/y9B/FcC3/6cfA=="; 4170 + url = "https://registry.npmjs.org/@netlify/cache-utils/-/cache-utils-2.0.0.tgz"; 4171 + sha512 = "CnWCssqm0pNCt/92zxpn2tfKaCts0envf4NwL7XgUDpPaKOCSwwi9+1ew8POdPmPaPYY0wFvOgejwNopKGzCOQ=="; 4190 4172 }; 4191 4173 }; 4192 - "@netlify/config-13.0.0" = { 4174 + "@netlify/config-14.0.0" = { 4193 4175 name = "_at_netlify_slash_config"; 4194 4176 packageName = "@netlify/config"; 4195 - version = "13.0.0"; 4177 + version = "14.0.0"; 4196 4178 src = fetchurl { 4197 - url = "https://registry.npmjs.org/@netlify/config/-/config-13.0.0.tgz"; 4198 - sha512 = "d7NNG3lbvZN/w9eCRdlFKBY21Vpjxlwis08v5NJjkZpNTuuAuemNFrhZv2y5zmy33TM+zTrkaoEAk6vJ96R5cQ=="; 4179 + url = "https://registry.npmjs.org/@netlify/config/-/config-14.0.0.tgz"; 4180 + sha512 = "Ke7rEmHAy9N5qxaY9uCGrnDjCllC2lqMg1kn8p6qse0y+qkptkdlKnD0pBSDaUIsNfmyX3omvw0/d5vr0qNofA=="; 4199 4181 }; 4200 4182 }; 4201 4183 "@netlify/esbuild-0.13.6" = { ··· 4216 4198 sha512 = "5yO26VRpeXmXorl1kNYbXxgFsJSNcrDaQVnAT9XPqZ5mb7vtjEP/ddEHkNpDsYBj/Y8VBPCvkPhDizg7UPenSw=="; 4217 4199 }; 4218 4200 }; 4219 - "@netlify/functions-utils-1.4.7" = { 4201 + "@netlify/functions-utils-2.0.2" = { 4220 4202 name = "_at_netlify_slash_functions-utils"; 4221 4203 packageName = "@netlify/functions-utils"; 4222 - version = "1.4.7"; 4204 + version = "2.0.2"; 4223 4205 src = fetchurl { 4224 - url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.4.7.tgz"; 4225 - sha512 = "e0y/iUsXWJq65ZUS3mn6ACJlQ6bfVSjtV6DO8Y194tevctnArtQA+F86L08zQklyhJbEV6cmyg4QbHhbLqTNOg=="; 4206 + url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-2.0.2.tgz"; 4207 + sha512 = "mQI0NX0QPNVcYb2TQF5cpxO350BR9309r7vSOSvfn0DHkPWUea1kl3iiLXi1mm/dUC6pd3p5ctc0UboW0u+iVQ=="; 4226 4208 }; 4227 4209 }; 4228 - "@netlify/git-utils-1.0.11" = { 4210 + "@netlify/git-utils-2.0.0" = { 4229 4211 name = "_at_netlify_slash_git-utils"; 4230 4212 packageName = "@netlify/git-utils"; 4231 - version = "1.0.11"; 4213 + version = "2.0.0"; 4232 4214 src = fetchurl { 4233 - url = "https://registry.npmjs.org/@netlify/git-utils/-/git-utils-1.0.11.tgz"; 4234 - sha512 = "bvlvFAB9VU3wTYYEEUinsOeRFxZ/MmetffzHehSMEyP00kXakvrySq4XbC6G8u3wCDln34eOjKDt8uPYoqfuNQ=="; 4215 + url = "https://registry.npmjs.org/@netlify/git-utils/-/git-utils-2.0.0.tgz"; 4216 + sha512 = "O8cGi3yRtdqJ2pDkdcoj3t6F9JSB/SokRwZiCJjp2aBQyC+Jg3RsRH7G0MbYEjrjN6JY4/p6j62NTFqsIBGh2A=="; 4235 4217 }; 4236 4218 }; 4237 - "@netlify/local-functions-proxy-0.1.0" = { 4219 + "@netlify/local-functions-proxy-1.0.0" = { 4238 4220 name = "_at_netlify_slash_local-functions-proxy"; 4239 4221 packageName = "@netlify/local-functions-proxy"; 4240 - version = "0.1.0"; 4222 + version = "1.0.0"; 4241 4223 src = fetchurl { 4242 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy/-/local-functions-proxy-0.1.0.tgz"; 4243 - sha512 = "n4Y3LE3I6MrSCCLqLjY4VOVAi/uXdU35Kswd0eK0060Fla5huj+rKSnzu8GIERrvuRJMPi/AY7WFxB5mkFS8qw=="; 4224 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy/-/local-functions-proxy-1.0.0.tgz"; 4225 + sha512 = "J3ZSOzcTrJVomNDP14V9Jg/xqwOK/vUfwadrBmau9zNpO/MJOb450UB5biCeJFbLVJVbkjrGbh3shUJwUZp7Fw=="; 4244 4226 }; 4245 4227 }; 4246 - "@netlify/local-functions-proxy-darwin-arm64-0.1.0" = { 4228 + "@netlify/local-functions-proxy-darwin-arm64-1.0.0" = { 4247 4229 name = "_at_netlify_slash_local-functions-proxy-darwin-arm64"; 4248 4230 packageName = "@netlify/local-functions-proxy-darwin-arm64"; 4249 - version = "0.1.0"; 4231 + version = "1.0.0"; 4250 4232 src = fetchurl { 4251 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-darwin-arm64/-/local-functions-proxy-darwin-arm64-0.1.0.tgz"; 4252 - sha512 = "QsVber2F4H2zS2Oi31y226zeLkhWQrjy+9lYV4bsU0lZB9wHqrLGQNlOabqs6MWUQmWMqcDHLv31XMFpfhndnw=="; 4233 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy-darwin-arm64/-/local-functions-proxy-darwin-arm64-1.0.0.tgz"; 4234 + sha512 = "K9rS6Y/IYIl6UuOPIgXuiHFpGg3HAc+EJwW+q87LRc4NExUx4HyLAh7YeJlhFg/KJG7IaCYqAOBBaFRoUVi0/g=="; 4253 4235 }; 4254 4236 }; 4255 - "@netlify/local-functions-proxy-darwin-x64-0.1.0" = { 4237 + "@netlify/local-functions-proxy-darwin-x64-1.0.0" = { 4256 4238 name = "_at_netlify_slash_local-functions-proxy-darwin-x64"; 4257 4239 packageName = "@netlify/local-functions-proxy-darwin-x64"; 4258 - version = "0.1.0"; 4240 + version = "1.0.0"; 4259 4241 src = fetchurl { 4260 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-darwin-x64/-/local-functions-proxy-darwin-x64-0.1.0.tgz"; 4261 - sha512 = "7Wb3ooicvRzHMErMWF+L+QG+rVy7iBEQ7b2GOzywL/VmeajatVk/D16v5b9adM2sX0KX1dyj3O9x2QLkDW2G7w=="; 4242 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy-darwin-x64/-/local-functions-proxy-darwin-x64-1.0.0.tgz"; 4243 + sha512 = "PxGE9JknIX/SvBBUW9uvpSahAKSOJ+4cEJhtV+GIzHsh/M2qMdZptfDQt+XYJVT6J+jgxJ+coJmJKmKnfwnPGg=="; 4262 4244 }; 4263 4245 }; 4264 - "@netlify/local-functions-proxy-freebsd-arm64-0.1.0" = { 4246 + "@netlify/local-functions-proxy-freebsd-arm64-1.0.0" = { 4265 4247 name = "_at_netlify_slash_local-functions-proxy-freebsd-arm64"; 4266 4248 packageName = "@netlify/local-functions-proxy-freebsd-arm64"; 4267 - version = "0.1.0"; 4249 + version = "1.0.0"; 4268 4250 src = fetchurl { 4269 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-freebsd-arm64/-/local-functions-proxy-freebsd-arm64-0.1.0.tgz"; 4270 - sha512 = "Keno1p1rvp5fiGEDZDm0fIOZTbcE1QwyqF5hgVSpD0bxitSAFOaXZwhcyo80x8qcMlBqQp9zWEJWu4zN1UiZMA=="; 4251 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy-freebsd-arm64/-/local-functions-proxy-freebsd-arm64-1.0.0.tgz"; 4252 + sha512 = "F4eajUy+Re4k6kUoXQhGTwISAnjI0EzNDrQb3XuzKfRt7sF4rSSmVsrNhi7UqvlIibSKa03bFqSHmcbxcj5GGQ=="; 4271 4253 }; 4272 4254 }; 4273 - "@netlify/local-functions-proxy-freebsd-x64-0.1.0" = { 4255 + "@netlify/local-functions-proxy-freebsd-x64-1.0.0" = { 4274 4256 name = "_at_netlify_slash_local-functions-proxy-freebsd-x64"; 4275 4257 packageName = "@netlify/local-functions-proxy-freebsd-x64"; 4276 - version = "0.1.0"; 4258 + version = "1.0.0"; 4277 4259 src = fetchurl { 4278 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-freebsd-x64/-/local-functions-proxy-freebsd-x64-0.1.0.tgz"; 4279 - sha512 = "kyEjE/aW/k7yD1+Oy28LLZjg6W8091HPCqUHzCk5GzT46zvR61vTPfeAEQwNaEL2uFHPJ3SauDNUZ1+U+FNlHA=="; 4260 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy-freebsd-x64/-/local-functions-proxy-freebsd-x64-1.0.0.tgz"; 4261 + sha512 = "Gy9oRFKU+pP0Tk03KgZ02wtY9ROoaH8C260P/5poK3dtV5gz05qVyHTOoFaWHbljuE1OabivMSLsjK6a098IVw=="; 4280 4262 }; 4281 4263 }; 4282 - "@netlify/local-functions-proxy-linux-arm-0.1.0" = { 4264 + "@netlify/local-functions-proxy-linux-arm-1.0.0" = { 4283 4265 name = "_at_netlify_slash_local-functions-proxy-linux-arm"; 4284 4266 packageName = "@netlify/local-functions-proxy-linux-arm"; 4285 - version = "0.1.0"; 4267 + version = "1.0.0"; 4286 4268 src = fetchurl { 4287 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-arm/-/local-functions-proxy-linux-arm-0.1.0.tgz"; 4288 - sha512 = "Un4RIA3xaiWT1njCMgYJsYc1etksFuARz8suHtcoKadsEJ1XICh6OzJoCO3AdHCN1kMQlo3cVC/sHoAB2EyEqw=="; 4269 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-arm/-/local-functions-proxy-linux-arm-1.0.0.tgz"; 4270 + sha512 = "COHrxdRVwpsgzCZl8amYyFX5TFUFPyYSTctwCIoMhXgMlx8HxnQ7fCGMTWXrraat4+LxRDfVyy2jZe7vSAE3hA=="; 4289 4271 }; 4290 4272 }; 4291 - "@netlify/local-functions-proxy-linux-arm64-0.1.0" = { 4273 + "@netlify/local-functions-proxy-linux-arm64-1.0.0" = { 4292 4274 name = "_at_netlify_slash_local-functions-proxy-linux-arm64"; 4293 4275 packageName = "@netlify/local-functions-proxy-linux-arm64"; 4294 - version = "0.1.0"; 4276 + version = "1.0.0"; 4295 4277 src = fetchurl { 4296 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-arm64/-/local-functions-proxy-linux-arm64-0.1.0.tgz"; 4297 - sha512 = "ZDdy+5fgpHxFqpKghtJuMyyQ5tKWV+LJm6t8tKlXkAgC1n1GuqeWNP0JqHV8DSSShFHRaRNoBVpLoXJbtNIorQ=="; 4278 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-arm64/-/local-functions-proxy-linux-arm64-1.0.0.tgz"; 4279 + sha512 = "qYerhh878nqN7dCReD690/K44iCDu806A0wxtuaBLLldNy6UTWpk7LrSScIDC6BUFchN822jjYecOokkRDfyxQ=="; 4298 4280 }; 4299 4281 }; 4300 - "@netlify/local-functions-proxy-linux-ia32-0.1.0" = { 4282 + "@netlify/local-functions-proxy-linux-ia32-1.0.0" = { 4301 4283 name = "_at_netlify_slash_local-functions-proxy-linux-ia32"; 4302 4284 packageName = "@netlify/local-functions-proxy-linux-ia32"; 4303 - version = "0.1.0"; 4285 + version = "1.0.0"; 4304 4286 src = fetchurl { 4305 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-ia32/-/local-functions-proxy-linux-ia32-0.1.0.tgz"; 4306 - sha512 = "vR1qlu341JKN91t0TPsYt2xC+ug8Bjp/WCqMtARmFT9jaL8NBTm6kiUh89QcGILYCo2hMNcYb9eih8y5D4N5Iw=="; 4287 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-ia32/-/local-functions-proxy-linux-ia32-1.0.0.tgz"; 4288 + sha512 = "zOjtT2iUoXyQsSOq3Adv7DidYNYhbLZp1Y5Kg5mK1xGwq8xcGMI5tVSCWeBsJFpt7sa2rTYJLim4Mt7OiZXDMQ=="; 4307 4289 }; 4308 4290 }; 4309 - "@netlify/local-functions-proxy-linux-ppc64-0.1.0" = { 4291 + "@netlify/local-functions-proxy-linux-ppc64-1.0.0" = { 4310 4292 name = "_at_netlify_slash_local-functions-proxy-linux-ppc64"; 4311 4293 packageName = "@netlify/local-functions-proxy-linux-ppc64"; 4312 - version = "0.1.0"; 4294 + version = "1.0.0"; 4313 4295 src = fetchurl { 4314 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-ppc64/-/local-functions-proxy-linux-ppc64-0.1.0.tgz"; 4315 - sha512 = "pcAPe+PzFkNrHpICvrIHHfxk5KNIVo3GgZKoI67NXECCtVel48aXitvlcOwsodrejD8ruQkfbvossBQs9Deq8A=="; 4296 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-ppc64/-/local-functions-proxy-linux-ppc64-1.0.0.tgz"; 4297 + sha512 = "mliQBNFWPW+WLnAewMXrcmAAhe/TnYsvgncc3OsVyxq+eABs1lxN/HtDBNHrynPg2Cu8DGXExU/6EhSSf58UYQ=="; 4316 4298 }; 4317 4299 }; 4318 - "@netlify/local-functions-proxy-linux-x64-0.1.0" = { 4300 + "@netlify/local-functions-proxy-linux-x64-1.0.0" = { 4319 4301 name = "_at_netlify_slash_local-functions-proxy-linux-x64"; 4320 4302 packageName = "@netlify/local-functions-proxy-linux-x64"; 4321 - version = "0.1.0"; 4303 + version = "1.0.0"; 4322 4304 src = fetchurl { 4323 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-x64/-/local-functions-proxy-linux-x64-0.1.0.tgz"; 4324 - sha512 = "sjlMLoKNJRJnq8Esk+GkxEk9CByDNouKdeQ+doiiQhYGRjLhKXZdXbaC137z2tm/vHhI/94Lg7mhCcGygitJpA=="; 4305 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy-linux-x64/-/local-functions-proxy-linux-x64-1.0.0.tgz"; 4306 + sha512 = "SAJPQsd6WAiki7kC/lgahbmhQleTNb1Hxr4kbW4QFaGP+yRzcBh9H2nT0HIsgzbtKpaKrTSwXYozyyY5rY09sg=="; 4325 4307 }; 4326 4308 }; 4327 - "@netlify/local-functions-proxy-openbsd-x64-0.1.0" = { 4309 + "@netlify/local-functions-proxy-openbsd-x64-1.0.0" = { 4328 4310 name = "_at_netlify_slash_local-functions-proxy-openbsd-x64"; 4329 4311 packageName = "@netlify/local-functions-proxy-openbsd-x64"; 4330 - version = "0.1.0"; 4312 + version = "1.0.0"; 4331 4313 src = fetchurl { 4332 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-openbsd-x64/-/local-functions-proxy-openbsd-x64-0.1.0.tgz"; 4333 - sha512 = "Dn9wQfeAU6FvurFo8eJL2scahtVigQyAi6lpV+c4YLD87WUfmiQ/mVgB7dfYB9zMiq5GO/iXbcK6wWjFyAZ6Aw=="; 4314 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy-openbsd-x64/-/local-functions-proxy-openbsd-x64-1.0.0.tgz"; 4315 + sha512 = "470jepQRK7KnThc7cfPexQaR1QlPOelo178Qq/AWa9Fbolf194IyCygIP3iq4FC8wUVUY8pRuscGLfNoVVr1Mg=="; 4334 4316 }; 4335 4317 }; 4336 - "@netlify/local-functions-proxy-win32-ia32-0.1.0" = { 4318 + "@netlify/local-functions-proxy-win32-ia32-1.0.0" = { 4337 4319 name = "_at_netlify_slash_local-functions-proxy-win32-ia32"; 4338 4320 packageName = "@netlify/local-functions-proxy-win32-ia32"; 4339 - version = "0.1.0"; 4321 + version = "1.0.0"; 4340 4322 src = fetchurl { 4341 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-win32-ia32/-/local-functions-proxy-win32-ia32-0.1.0.tgz"; 4342 - sha512 = "LRz6UZpgS0UzB5IKgOvBnVNkpBcnzRfT4YBBSBL31fucJ1J2c0zGJIUTqbFdS8eBLOS9Npq2qUT7qlnrgAWyMw=="; 4323 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy-win32-ia32/-/local-functions-proxy-win32-ia32-1.0.0.tgz"; 4324 + sha512 = "znys5GBoUcMCg9iraFFM+YHc+jNKFCMO5kLjBaTz80MXn+43Qh7+rvmeyV2RMECTO3xI0Q7JvwIZr+6FHe/0vw=="; 4343 4325 }; 4344 4326 }; 4345 - "@netlify/local-functions-proxy-win32-x64-0.1.0" = { 4327 + "@netlify/local-functions-proxy-win32-x64-1.0.0" = { 4346 4328 name = "_at_netlify_slash_local-functions-proxy-win32-x64"; 4347 4329 packageName = "@netlify/local-functions-proxy-win32-x64"; 4348 - version = "0.1.0"; 4330 + version = "1.0.0"; 4349 4331 src = fetchurl { 4350 - url = "https://registry.npmjs.org/@netlify/local-functions-proxy-win32-x64/-/local-functions-proxy-win32-x64-0.1.0.tgz"; 4351 - sha512 = "YYzVpBPsAiup/Jg+kCAi0/EsV80BMF6JkQ3/2JjJhUqRuEG99THA+HwrFpsQOpOnr3niJBY93YrQymnJPgrk3A=="; 4332 + url = "https://registry.npmjs.org/@netlify/local-functions-proxy-win32-x64/-/local-functions-proxy-win32-x64-1.0.0.tgz"; 4333 + sha512 = "uPs7LI60p6XU11Ac7lN36P1nBTg9vUBT4wMxtztwPGmdNL9gSA4+2tRElGM6zXLdICzxdAGo4e0510S+WRN5oQ=="; 4352 4334 }; 4353 4335 }; 4354 4336 "@netlify/open-api-2.5.0" = { ··· 4387 4369 sha512 = "SSlWic9za/0QtfCP7GllJcOV98BWlx2goOF9bLLhmsHGiPfrhlhZfemqdMtKM4BIs+G70wzUqaIYeyjtxVh37A=="; 4388 4370 }; 4389 4371 }; 4390 - "@netlify/run-utils-1.0.7" = { 4372 + "@netlify/run-utils-2.0.0" = { 4391 4373 name = "_at_netlify_slash_run-utils"; 4392 4374 packageName = "@netlify/run-utils"; 4393 - version = "1.0.7"; 4375 + version = "2.0.0"; 4394 4376 src = fetchurl { 4395 - url = "https://registry.npmjs.org/@netlify/run-utils/-/run-utils-1.0.7.tgz"; 4396 - sha512 = "YFi1Sf+ktQICS3tAKu7/uiGzLXgi8RNVwH9naUkziXwXQNH2oxDhKgy0/Zv5Nw0zMDJyKWrJ3xObWEC57mJ/KA=="; 4377 + url = "https://registry.npmjs.org/@netlify/run-utils/-/run-utils-2.0.0.tgz"; 4378 + sha512 = "bfkyaK73zCm5rAaP6ORvuvk7gIN+yeq1SMeshDzga+xNzu1T9yXt4hoiodJXAhhfgHId5m69hnSoFwaCrnOuIA=="; 4397 4379 }; 4398 4380 }; 4399 - "@netlify/zip-it-and-ship-it-4.14.0" = { 4381 + "@netlify/zip-it-and-ship-it-4.15.0" = { 4400 4382 name = "_at_netlify_slash_zip-it-and-ship-it"; 4401 4383 packageName = "@netlify/zip-it-and-ship-it"; 4402 - version = "4.14.0"; 4384 + version = "4.15.0"; 4403 4385 src = fetchurl { 4404 - url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.14.0.tgz"; 4405 - sha512 = "EFUYbcB7g/7Sa4KYZaqNrqe+mJJCeoosUNl8mFyeF3qIqn0po7txSZn0/y1sgjejuv9mRKv8sm7dH8kMM/HJcg=="; 4386 + url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.15.0.tgz"; 4387 + sha512 = "zEwtpomvakEogJMEnYpUxSBb+TAonxgKSo2c9B6rDd6DVUad3RtXBdnx8qizwUGRvFj7Le7QGAmnYC5yWja82A=="; 4406 4388 }; 4407 4389 }; 4408 - "@node-red/editor-api-2.0.1" = { 4390 + "@netlify/zip-it-and-ship-it-4.15.1" = { 4391 + name = "_at_netlify_slash_zip-it-and-ship-it"; 4392 + packageName = "@netlify/zip-it-and-ship-it"; 4393 + version = "4.15.1"; 4394 + src = fetchurl { 4395 + url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.15.1.tgz"; 4396 + sha512 = "YgPzJEGY60zZxSSbaDe3mMO+jYB7pbsWyAVvv4tASod8Sys2x/MuOGJ64KmOTZ+bUqZYvJLOcfVL6fiFRSU9wg=="; 4397 + }; 4398 + }; 4399 + "@node-red/editor-api-2.0.3" = { 4409 4400 name = "_at_node-red_slash_editor-api"; 4410 4401 packageName = "@node-red/editor-api"; 4411 - version = "2.0.1"; 4402 + version = "2.0.3"; 4412 4403 src = fetchurl { 4413 - url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-2.0.1.tgz"; 4414 - sha512 = "0+wY8FJvS6P3hiRnz7YzjWmkannoJyBMYgnSevQ6euf8dABML5AOYThghpMNPrtl+RzRIar0oabHrTRSoEpDEg=="; 4404 + url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-2.0.3.tgz"; 4405 + sha512 = "hCOfwaid2AMSTavfRKkYBUDwh9JIPTvEN4Vq+1/mtTy8+5uBAtlDBYU6HTAXMIXUS4TYPONQqQPwwYZiV8e3aQ=="; 4415 4406 }; 4416 4407 }; 4417 - "@node-red/editor-client-2.0.1" = { 4408 + "@node-red/editor-client-2.0.3" = { 4418 4409 name = "_at_node-red_slash_editor-client"; 4419 4410 packageName = "@node-red/editor-client"; 4420 - version = "2.0.1"; 4411 + version = "2.0.3"; 4421 4412 src = fetchurl { 4422 - url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-2.0.1.tgz"; 4423 - sha512 = "9YP0n+VFruudzZfcsTL0fofm7j/BYodKzQTqksL3ZlcZsB075O3d8zM8ZuoNlpj2CfROR/PZi7E72ucmNExzlQ=="; 4413 + url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-2.0.3.tgz"; 4414 + sha512 = "vKNjIOMl3HupJTlJRm2o+qiZHvszRCwuHmmD+Zq1pFntuLINSadZggmh0ThjTmnY7fIZksjqzGj2tDITNqHFKg=="; 4424 4415 }; 4425 4416 }; 4426 - "@node-red/nodes-2.0.1" = { 4417 + "@node-red/nodes-2.0.3" = { 4427 4418 name = "_at_node-red_slash_nodes"; 4428 4419 packageName = "@node-red/nodes"; 4429 - version = "2.0.1"; 4420 + version = "2.0.3"; 4430 4421 src = fetchurl { 4431 - url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-2.0.1.tgz"; 4432 - sha512 = "op1gcV99xp/xZAVg1B+VRzylNpWk/oF//I6dcRqiF8xoXjff42VfIJ8l01/JqsvuJD3p9+x9fz82QRMmASOu+w=="; 4422 + url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-2.0.3.tgz"; 4423 + sha512 = "+EnOyZtjLroJsPrYEsos8fxxVlZNl/NtNtSO2sSmt/5edIFw9bXlGFMf93r2XiztsyZq018tBGegJmRHFvKRKQ=="; 4433 4424 }; 4434 4425 }; 4435 - "@node-red/registry-2.0.1" = { 4426 + "@node-red/registry-2.0.3" = { 4436 4427 name = "_at_node-red_slash_registry"; 4437 4428 packageName = "@node-red/registry"; 4438 - version = "2.0.1"; 4429 + version = "2.0.3"; 4439 4430 src = fetchurl { 4440 - url = "https://registry.npmjs.org/@node-red/registry/-/registry-2.0.1.tgz"; 4441 - sha512 = "B2La0qWpSEqbiiBWVmUKTqS4y/c/pZuUDPu7a5ZibGgcUEe032X05uZ68wIYMt1y2/ltnUlrPSdOjjpzpxEhEQ=="; 4431 + url = "https://registry.npmjs.org/@node-red/registry/-/registry-2.0.3.tgz"; 4432 + sha512 = "psViMyuZQfQHktASYn/SbVNYbvT1qxmlMBxqZcNEDAqYipJg81Hd35beGt7l67D5840Xi3QSk0/l1HnsMzzeMA=="; 4442 4433 }; 4443 4434 }; 4444 - "@node-red/runtime-2.0.1" = { 4435 + "@node-red/runtime-2.0.3" = { 4445 4436 name = "_at_node-red_slash_runtime"; 4446 4437 packageName = "@node-red/runtime"; 4447 - version = "2.0.1"; 4438 + version = "2.0.3"; 4448 4439 src = fetchurl { 4449 - url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-2.0.1.tgz"; 4450 - sha512 = "3MbJk5Xum38Nt13FIvDmsuQYcdo5uxzKu2khHbXN3hG7XlECALSaKqLq19t7yg6e8q8Jqnb7j6184A1m34GVqQ=="; 4440 + url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-2.0.3.tgz"; 4441 + sha512 = "mlqfUuVtqvil8B1OO1kW5DJX/5tKd/RdJt+cUwH99e+eL39NkP2s+rfk3qePRBphUiMkBQKIlpK+xFzDDTGUIQ=="; 4451 4442 }; 4452 4443 }; 4453 - "@node-red/util-2.0.1" = { 4444 + "@node-red/util-2.0.3" = { 4454 4445 name = "_at_node-red_slash_util"; 4455 4446 packageName = "@node-red/util"; 4456 - version = "2.0.1"; 4447 + version = "2.0.3"; 4457 4448 src = fetchurl { 4458 - url = "https://registry.npmjs.org/@node-red/util/-/util-2.0.1.tgz"; 4459 - sha512 = "gT+3cI134m2pD4U0/iKuOAjRqluPXKlS19eCE06ArWGLxHmqx7Gi6Cyjxu971gNcw69QEfwJzEA2xIrAKRAR+g=="; 4449 + url = "https://registry.npmjs.org/@node-red/util/-/util-2.0.3.tgz"; 4450 + sha512 = "dMtAjtgL8W2VXEI3F1daaOArJBQaVZ+jclH6xu4JQz8ds4QoiOPQGcKlrnb7XQdf0J+4D1VxtNvm+fVcjJ+2Aw=="; 4460 4451 }; 4461 4452 }; 4462 4453 "@nodelib/fs.scandir-2.1.5" = { ··· 4756 4747 sha512 = "SWTdXsVheRmlotWNjKzPOb6Js6tjSqA2a8z9+glDJng0Aqjzti8MEWOtuT8ZSu6wHnci7LZNuarE87+WJBG4vg=="; 4757 4748 }; 4758 4749 }; 4759 - "@octokit/openapi-types-9.1.0" = { 4750 + "@octokit/openapi-types-9.1.1" = { 4760 4751 name = "_at_octokit_slash_openapi-types"; 4761 4752 packageName = "@octokit/openapi-types"; 4762 - version = "9.1.0"; 4753 + version = "9.1.1"; 4763 4754 src = fetchurl { 4764 - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-9.1.0.tgz"; 4765 - sha512 = "XBP03pG4XuTU+VgeJM1ozRdmZJerMG4tk6wA+raFKycC4qV9jtD2UQroAg9bAcmI3Q0zWvifeDGtPqsFjMzkLg=="; 4755 + url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-9.1.1.tgz"; 4756 + sha512 = "xmyPP9tVb4T4A6Lk6SL6ScnIqAHpPV4jfMZI8VtY286212ri9J/6IFGuLsZ26daADUmriuLejake4k+azEfnaw=="; 4766 4757 }; 4767 4758 }; 4768 4759 "@octokit/plugin-enterprise-rest-6.0.1" = { ··· 4792 4783 sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA=="; 4793 4784 }; 4794 4785 }; 4795 - "@octokit/plugin-rest-endpoint-methods-5.5.0" = { 4786 + "@octokit/plugin-rest-endpoint-methods-5.5.1" = { 4796 4787 name = "_at_octokit_slash_plugin-rest-endpoint-methods"; 4797 4788 packageName = "@octokit/plugin-rest-endpoint-methods"; 4798 - version = "5.5.0"; 4789 + version = "5.5.1"; 4799 4790 src = fetchurl { 4800 - url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.5.0.tgz"; 4801 - sha512 = "v4dNoHF8cXNx7C67yQx7oarHs5Wg2IiafWvp/ULkNcCOuXgQdBOkJtwidpYqPiRPUw4uHDkI6Tgfje+nXB+Deg=="; 4791 + url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.5.1.tgz"; 4792 + sha512 = "Al57+OZmO65JpiPk4JS6u6kQ2y9qjoZtY1IWiSshc4N+F7EcrK8Rgy/cUJBB4WIcSFUQyF66EJQK1oKgXWeRNw=="; 4802 4793 }; 4803 4794 }; 4804 4795 "@octokit/request-5.6.0" = { ··· 4819 4810 sha512 = "1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg=="; 4820 4811 }; 4821 4812 }; 4822 - "@octokit/rest-18.7.0" = { 4813 + "@octokit/rest-18.7.1" = { 4823 4814 name = "_at_octokit_slash_rest"; 4824 4815 packageName = "@octokit/rest"; 4825 - version = "18.7.0"; 4816 + version = "18.7.1"; 4826 4817 src = fetchurl { 4827 - url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.7.0.tgz"; 4828 - sha512 = "8K8BJFyPFRSfnwu+aSbdjU5w3EtxC33PkDlEi5tyVTYC+t4n7gaqygRg5ajJLCpb/ZzVaXXFJXC9OxQ9TvFRAw=="; 4818 + url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.7.1.tgz"; 4819 + sha512 = "790Yv8Xpbqs3BtnMAO5hlOftVICHPdgZ/3qlTmeOoqrQGzT25BIpHkg/KKMeKG9Fg8d598PLxGhf80RswElv9g=="; 4829 4820 }; 4830 4821 }; 4831 - "@octokit/types-6.21.0" = { 4822 + "@octokit/types-6.21.1" = { 4832 4823 name = "_at_octokit_slash_types"; 4833 4824 packageName = "@octokit/types"; 4834 - version = "6.21.0"; 4825 + version = "6.21.1"; 4835 4826 src = fetchurl { 4836 - url = "https://registry.npmjs.org/@octokit/types/-/types-6.21.0.tgz"; 4837 - sha512 = "VPSxn9uhCoOUMpxCsOAQhf8DgIx+uzFjZRYDiZS5+TvrKaEwBrWkjr/5NmUVvPbW6xdPC2n3yL3XCnoxa4rxvg=="; 4827 + url = "https://registry.npmjs.org/@octokit/types/-/types-6.21.1.tgz"; 4828 + sha512 = "PP+m3T5EWZKawru4zi/FvX8KL2vkO5f1fLthx78/7743p7RtJUevt3z7698k+7oAYRA7YuVqfXthSEHqkDvZ8g=="; 4838 4829 }; 4839 4830 }; 4840 4831 "@open-policy-agent/opa-wasm-1.2.0" = { ··· 5557 5548 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 5558 5549 }; 5559 5550 }; 5560 - "@schematics/angular-12.1.2" = { 5551 + "@schematics/angular-12.1.3" = { 5561 5552 name = "_at_schematics_slash_angular"; 5562 5553 packageName = "@schematics/angular"; 5563 - version = "12.1.2"; 5554 + version = "12.1.3"; 5564 5555 src = fetchurl { 5565 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.1.2.tgz"; 5566 - sha512 = "nnFPp9uHLinP05r9TFsWT+fwlbwbLHg3yzJr+0aIOX1OsZQFV8hblEFEqdzFQJyx1uGMp4nvBHvCUlYv9GVQLg=="; 5556 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.1.3.tgz"; 5557 + sha512 = "VSXHok3Oi62FuVgHvOuz/HOgS1tGPc7iTCaW/SlrBaH+DaUffmZF1qkJnU1dzdzZfox+KckK2SjXlRJgqNZhFw=="; 5567 5558 }; 5568 5559 }; 5569 5560 "@segment/loosely-validate-event-2.0.0" = { ··· 5890 5881 sha512 = "ti5fPYivhBGCJ7rZGznMX2UJE1M5lR811WvVyBWTRJwLYVFYkhxRXKfgZUXEB0tq8vpo3V7tm3syrBd5TLPIMA=="; 5891 5882 }; 5892 5883 }; 5893 - "@snyk/docker-registry-v2-client-2.2.4" = { 5884 + "@snyk/docker-registry-v2-client-2.3.0" = { 5894 5885 name = "_at_snyk_slash_docker-registry-v2-client"; 5895 5886 packageName = "@snyk/docker-registry-v2-client"; 5896 - version = "2.2.4"; 5887 + version = "2.3.0"; 5897 5888 src = fetchurl { 5898 - url = "https://registry.npmjs.org/@snyk/docker-registry-v2-client/-/docker-registry-v2-client-2.2.4.tgz"; 5899 - sha512 = "7JoxHCYAjJQBOEa11Sdb1scjtq/K4HVDlcE10pNFKbmcUn5Gcm/VDJ2RMEbG2oBdmHTTJMJ5RopIiNMSFd669w=="; 5889 + url = "https://registry.npmjs.org/@snyk/docker-registry-v2-client/-/docker-registry-v2-client-2.3.0.tgz"; 5890 + sha512 = "VYQe/1SuIdQ8C7bA6nzfcEeafsqG1cHaZDFaIt1uYGwI1TI0OWzUIvGRkfgkMkwFBVLRqS1hFczSoxGTT7OMfA=="; 5900 5891 }; 5901 5892 }; 5902 5893 "@snyk/fast-glob-3.2.6-patch" = { ··· 5971 5962 sha512 = "aWiQSOacH2lOpJ1ard9ErABcH4tdJogdr+mg1U67iZJOPO9n2gFgAwz1TQJDyPkv4/A5mh4hT2rg03Uq+KBn2Q=="; 5972 5963 }; 5973 5964 }; 5974 - "@snyk/java-call-graph-builder-1.21.0" = { 5965 + "@snyk/java-call-graph-builder-1.23.1" = { 5975 5966 name = "_at_snyk_slash_java-call-graph-builder"; 5976 5967 packageName = "@snyk/java-call-graph-builder"; 5977 - version = "1.21.0"; 5968 + version = "1.23.1"; 5978 5969 src = fetchurl { 5979 - url = "https://registry.npmjs.org/@snyk/java-call-graph-builder/-/java-call-graph-builder-1.21.0.tgz"; 5980 - sha512 = "i0c4N0+pYjpXEgqAkFniM3Q9YANvy+RtbbkQMPIvdEw41+XJISfEHzZ968ZmGWcoi480cgo5t9oxZEadFuHzyg=="; 5981 - }; 5982 - }; 5983 - "@snyk/java-call-graph-builder-1.23.0" = { 5984 - name = "_at_snyk_slash_java-call-graph-builder"; 5985 - packageName = "@snyk/java-call-graph-builder"; 5986 - version = "1.23.0"; 5987 - src = fetchurl { 5988 - url = "https://registry.npmjs.org/@snyk/java-call-graph-builder/-/java-call-graph-builder-1.23.0.tgz"; 5989 - sha512 = "Go/UV33/R0SW10nvshrs/s8GjY2mnbJaRV4Xkj4zGrwpK80lL30th6LDpXDKEdXPZ66EbYGS1Q9gGlL7GzOdeA=="; 5970 + url = "https://registry.npmjs.org/@snyk/java-call-graph-builder/-/java-call-graph-builder-1.23.1.tgz"; 5971 + sha512 = "mm6EI/BXFYq8boOHKs61j0R1n3JPsvwxlBsaO35cGFu9fTQaFRsBJdenKW41uJuLX+aFOC4zascbJDNfeE5THQ=="; 5990 5972 }; 5991 5973 }; 5992 5974 "@snyk/mix-parser-1.3.2" = { ··· 6016 5998 sha512 = "WHhnwyoGOhjFOjBXqUfszD84SErrtjHjium/4xFbqKpEE+yuwxs8OwV/S29BtxhYiGtjpD1azv5QtH30VUMl0A=="; 6017 5999 }; 6018 6000 }; 6019 - "@snyk/snyk-docker-pull-3.6.3" = { 6001 + "@snyk/snyk-docker-pull-3.7.0" = { 6020 6002 name = "_at_snyk_slash_snyk-docker-pull"; 6021 6003 packageName = "@snyk/snyk-docker-pull"; 6022 - version = "3.6.3"; 6004 + version = "3.7.0"; 6023 6005 src = fetchurl { 6024 - url = "https://registry.npmjs.org/@snyk/snyk-docker-pull/-/snyk-docker-pull-3.6.3.tgz"; 6025 - sha512 = "SXhIAVfBVB/WoMgh3pTJNEKehpHygzqnnqHpg3ucw2rc5z0LqSAJQyYWl3jSAUnl5LgA11UuYD8zj0dsRbed2A=="; 6006 + url = "https://registry.npmjs.org/@snyk/snyk-docker-pull/-/snyk-docker-pull-3.7.0.tgz"; 6007 + sha512 = "YRNysIPXmVPrP6+Gn8aG8T414r4GiSbxBP2R8CMXgBWFOdAPBoEoFjs7StjBfaVL1p0xl01AudgDnd42HDK9PA=="; 6026 6008 }; 6027 6009 }; 6028 6010 "@snyk/snyk-hex-plugin-1.1.4" = { ··· 6628 6610 sha512 = "vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw=="; 6629 6611 }; 6630 6612 }; 6631 - "@types/debug-4.1.6" = { 6613 + "@types/debug-4.1.7" = { 6632 6614 name = "_at_types_slash_debug"; 6633 6615 packageName = "@types/debug"; 6634 - version = "4.1.6"; 6616 + version = "4.1.7"; 6635 6617 src = fetchurl { 6636 - url = "https://registry.npmjs.org/@types/debug/-/debug-4.1.6.tgz"; 6637 - sha512 = "7fDOJFA/x8B+sO1901BmHlf5dE1cxBU8mRXj8QOEDnn16hhGJv/IHxJtZhvsabZsIMn0eLIyeOKAeqSNJJYTpA=="; 6618 + url = "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz"; 6619 + sha512 = "9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg=="; 6638 6620 }; 6639 6621 }; 6640 6622 "@types/decompress-4.2.4" = { ··· 6725 6707 src = fetchurl { 6726 6708 url = "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz"; 6727 6709 sha512 = "EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="; 6728 - }; 6729 - }; 6730 - "@types/estree-0.0.49" = { 6731 - name = "_at_types_slash_estree"; 6732 - packageName = "@types/estree"; 6733 - version = "0.0.49"; 6734 - src = fetchurl { 6735 - url = "https://registry.npmjs.org/@types/estree/-/estree-0.0.49.tgz"; 6736 - sha512 = "K1AFuMe8a+pXmfHTtnwBvqoEylNKVeaiKYkjmcEAdytMQVJ/i9Fu7sc13GxgXdO49gkE7Hy8SyJonUZUn+eVaw=="; 6737 6710 }; 6738 6711 }; 6739 6712 "@types/estree-0.0.50" = { ··· 7213 7186 sha512 = "ekGvFhFgrc2zYQoX4JeZPmVzZxw6Dtllga7iGHzfbYIYkAMUx/sAFP2GdFpLff+vdHXu5fl7WX9AT+TtqYcsyw=="; 7214 7187 }; 7215 7188 }; 7189 + "@types/ms-0.7.31" = { 7190 + name = "_at_types_slash_ms"; 7191 + packageName = "@types/ms"; 7192 + version = "0.7.31"; 7193 + src = fetchurl { 7194 + url = "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz"; 7195 + sha512 = "iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA=="; 7196 + }; 7197 + }; 7216 7198 "@types/multer-1.4.4" = { 7217 7199 name = "_at_types_slash_multer"; 7218 7200 packageName = "@types/multer"; ··· 7276 7258 sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="; 7277 7259 }; 7278 7260 }; 7279 - "@types/node-14.17.5" = { 7261 + "@types/node-14.17.6" = { 7280 7262 name = "_at_types_slash_node"; 7281 7263 packageName = "@types/node"; 7282 - version = "14.17.5"; 7264 + version = "14.17.6"; 7283 7265 src = fetchurl { 7284 - url = "https://registry.npmjs.org/@types/node/-/node-14.17.5.tgz"; 7285 - sha512 = "bjqH2cX/O33jXT/UmReo2pM7DIJREPMnarixbQ57DOOzzFaI6D2+IcwaJQaJpv0M1E9TIhPCYVxrkcityLjlqA=="; 7266 + url = "https://registry.npmjs.org/@types/node/-/node-14.17.6.tgz"; 7267 + sha512 = "iBxsxU7eswQDGhlr3AiamBxOssaYxbM+NKXVil8jg9yFXvrfEFbDumLD/2dMTB+zYyg7w+Xjt8yuxfdbUHAtcQ=="; 7286 7268 }; 7287 7269 }; 7288 7270 "@types/node-15.12.5" = { ··· 7294 7276 sha512 = "se3yX7UHv5Bscf8f1ERKvQOD6sTyycH3hdaoozvaLxgUiY5lIGEeH37AD0G0Qi9kPqihPn0HOfd2yaIEN9VwEg=="; 7295 7277 }; 7296 7278 }; 7297 - "@types/node-15.14.2" = { 7279 + "@types/node-15.14.3" = { 7298 7280 name = "_at_types_slash_node"; 7299 7281 packageName = "@types/node"; 7300 - version = "15.14.2"; 7282 + version = "15.14.3"; 7301 7283 src = fetchurl { 7302 - url = "https://registry.npmjs.org/@types/node/-/node-15.14.2.tgz"; 7303 - sha512 = "dvMUE/m2LbXPwlvVuzCyslTEtQ2ZwuuFClDrOQ6mp2CenCg971719PTILZ4I6bTP27xfFFc+o7x2TkLuun/MPw=="; 7284 + url = "https://registry.npmjs.org/@types/node/-/node-15.14.3.tgz"; 7285 + sha512 = "gliNP92vLGGha1nioYHIIT2WrZ450sxpRgyPCEyog2hMVi6LEbhY/Pkj+EDiGWrCXntZ9lrnE2+lTIlyYtaxCg=="; 7304 7286 }; 7305 7287 }; 7306 7288 "@types/node-15.6.1" = { ··· 7330 7312 sha512 = "8h7k1YgQKxKXWckzFCMfsIwn0Y61UK6tlD6y2lOb3hTOIMlK3t9/QwHOhc81TwU+RMf0As5fj7NPjroERCnejQ=="; 7331 7313 }; 7332 7314 }; 7333 - "@types/node-16.4.0" = { 7315 + "@types/node-16.4.3" = { 7334 7316 name = "_at_types_slash_node"; 7335 7317 packageName = "@types/node"; 7336 - version = "16.4.0"; 7318 + version = "16.4.3"; 7337 7319 src = fetchurl { 7338 - url = "https://registry.npmjs.org/@types/node/-/node-16.4.0.tgz"; 7339 - sha512 = "HrJuE7Mlqcjj+00JqMWpZ3tY8w7EUd+S0U3L1+PQSWiXZbOgyQDvi+ogoUxaHApPJq5diKxYBQwA3iIlNcPqOg=="; 7320 + url = "https://registry.npmjs.org/@types/node/-/node-16.4.3.tgz"; 7321 + sha512 = "GKM4FLMkWDc0sfx7tXqPWkM6NBow1kge0fgQh0bOnlqo4iT1kvTvMEKE0c1RtUGnbLlGRXiAA8SumE//90uKAg=="; 7340 7322 }; 7341 7323 }; 7342 7324 "@types/node-6.14.13" = { ··· 7366 7348 sha512 = "/aKAdg5c8n468cYLy2eQrcR5k6chlbNwZNGUj3TboyPa2hcO2QAJcfymlqPzMiRj8B6nYKXjzQz36minFE0RwQ=="; 7367 7349 }; 7368 7350 }; 7369 - "@types/node-fetch-2.5.11" = { 7351 + "@types/node-fetch-2.5.12" = { 7370 7352 name = "_at_types_slash_node-fetch"; 7371 7353 packageName = "@types/node-fetch"; 7372 - version = "2.5.11"; 7354 + version = "2.5.12"; 7373 7355 src = fetchurl { 7374 - url = "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.11.tgz"; 7375 - sha512 = "2upCKaqVZETDRb8A2VTaRymqFBEgH8u6yr96b/u3+1uQEPDRo3mJLEiPk7vdXBHRtjwkjqzFYMJXrt0Z9QsYjQ=="; 7356 + url = "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.12.tgz"; 7357 + sha512 = "MKgC4dlq4kKNa/mYrwpKfzQMB5X3ee5U6fSprkKpToBqBmX4nFZL9cW5jl6sWn+xpRJ7ypWh2yyqqr8UUCstSw=="; 7376 7358 }; 7377 7359 }; 7378 7360 "@types/normalize-package-data-2.4.1" = { ··· 7546 7528 sha512 = "iZUcRrGuz/Tbg3loODpW7vrQJkUtpY2fFSf4ELqqkApcS2TkZ1msk7ie8iZPB86lDOP8QOTTmuvWjc5S0R9OjQ=="; 7547 7529 }; 7548 7530 }; 7549 - "@types/semver-7.3.7" = { 7531 + "@types/semver-7.3.8" = { 7550 7532 name = "_at_types_slash_semver"; 7551 7533 packageName = "@types/semver"; 7552 - version = "7.3.7"; 7534 + version = "7.3.8"; 7553 7535 src = fetchurl { 7554 - url = "https://registry.npmjs.org/@types/semver/-/semver-7.3.7.tgz"; 7555 - sha512 = "4g1jrL98mdOIwSOUh6LTlB0Cs9I0dQPwINUhBg7C6pN4HLr8GS8xsksJxilW6S6dQHVi2K/o+lQuQcg7LroCnw=="; 7536 + url = "https://registry.npmjs.org/@types/semver/-/semver-7.3.8.tgz"; 7537 + sha512 = "D/2EJvAlCEtYFEYmmlGwbGXuK886HzyCc3nZX/tkFTQdEU8jZDAgiv08P162yB17y4ZXZoq7yFAnW4GDBb9Now=="; 7556 7538 }; 7557 7539 }; 7558 7540 "@types/serve-static-1.13.10" = { ··· 7852 7834 sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw=="; 7853 7835 }; 7854 7836 }; 7855 - "@typescript-eslint/eslint-plugin-4.28.4" = { 7837 + "@typescript-eslint/eslint-plugin-4.28.5" = { 7856 7838 name = "_at_typescript-eslint_slash_eslint-plugin"; 7857 7839 packageName = "@typescript-eslint/eslint-plugin"; 7858 - version = "4.28.4"; 7840 + version = "4.28.5"; 7859 7841 src = fetchurl { 7860 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.4.tgz"; 7861 - sha512 = "s1oY4RmYDlWMlcV0kKPBaADn46JirZzvvH7c2CtAqxCY96S538JRBAzt83RrfkDheV/+G/vWNK0zek+8TB3Gmw=="; 7842 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.5.tgz"; 7843 + sha512 = "m31cPEnbuCqXtEZQJOXAHsHvtoDi9OVaeL5wZnO2KZTnkvELk+u6J6jHg+NzvWQxk+87Zjbc4lJS4NHmgImz6Q=="; 7862 7844 }; 7863 7845 }; 7864 7846 "@typescript-eslint/experimental-utils-3.10.1" = { ··· 7870 7852 sha512 = "DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw=="; 7871 7853 }; 7872 7854 }; 7873 - "@typescript-eslint/experimental-utils-4.28.4" = { 7855 + "@typescript-eslint/experimental-utils-4.28.5" = { 7874 7856 name = "_at_typescript-eslint_slash_experimental-utils"; 7875 7857 packageName = "@typescript-eslint/experimental-utils"; 7876 - version = "4.28.4"; 7858 + version = "4.28.5"; 7877 7859 src = fetchurl { 7878 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.4.tgz"; 7879 - sha512 = "OglKWOQRWTCoqMSy6pm/kpinEIgdcXYceIcH3EKWUl4S8xhFtN34GQRaAvTIZB9DD94rW7d/U7tUg3SYeDFNHA=="; 7860 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.5.tgz"; 7861 + sha512 = "bGPLCOJAa+j49hsynTaAtQIWg6uZd8VLiPcyDe4QPULsvQwLHGLSGKKcBN8/lBxIX14F74UEMK2zNDI8r0okwA=="; 7880 7862 }; 7881 7863 }; 7882 7864 "@typescript-eslint/parser-3.10.1" = { ··· 7888 7870 sha512 = "Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw=="; 7889 7871 }; 7890 7872 }; 7891 - "@typescript-eslint/parser-4.28.4" = { 7873 + "@typescript-eslint/parser-4.28.5" = { 7892 7874 name = "_at_typescript-eslint_slash_parser"; 7893 7875 packageName = "@typescript-eslint/parser"; 7894 - version = "4.28.4"; 7876 + version = "4.28.5"; 7895 7877 src = fetchurl { 7896 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.28.4.tgz"; 7897 - sha512 = "4i0jq3C6n+og7/uCHiE6q5ssw87zVdpUj1k6VlVYMonE3ILdFApEzTWgppSRG4kVNB/5jxnH+gTeKLMNfUelQA=="; 7878 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.28.5.tgz"; 7879 + sha512 = "NPCOGhTnkXGMqTznqgVbA5LqVsnw+i3+XA1UKLnAb+MG1Y1rP4ZSK9GX0kJBmAZTMIktf+dTwXToT6kFwyimbw=="; 7898 7880 }; 7899 7881 }; 7900 - "@typescript-eslint/scope-manager-4.28.4" = { 7882 + "@typescript-eslint/scope-manager-4.28.5" = { 7901 7883 name = "_at_typescript-eslint_slash_scope-manager"; 7902 7884 packageName = "@typescript-eslint/scope-manager"; 7903 - version = "4.28.4"; 7885 + version = "4.28.5"; 7904 7886 src = fetchurl { 7905 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.28.4.tgz"; 7906 - sha512 = "ZJBNs4usViOmlyFMt9X9l+X0WAFcDH7EdSArGqpldXu7aeZxDAuAzHiMAeI+JpSefY2INHrXeqnha39FVqXb8w=="; 7887 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.28.5.tgz"; 7888 + sha512 = "PHLq6n9nTMrLYcVcIZ7v0VY1X7dK309NM8ya9oL/yG8syFINIMHxyr2GzGoBYUdv3NUfCOqtuqps0ZmcgnZTfQ=="; 7907 7889 }; 7908 7890 }; 7909 7891 "@typescript-eslint/types-3.10.1" = { ··· 7915 7897 sha512 = "+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ=="; 7916 7898 }; 7917 7899 }; 7918 - "@typescript-eslint/types-4.28.4" = { 7900 + "@typescript-eslint/types-4.28.5" = { 7919 7901 name = "_at_typescript-eslint_slash_types"; 7920 7902 packageName = "@typescript-eslint/types"; 7921 - version = "4.28.4"; 7903 + version = "4.28.5"; 7922 7904 src = fetchurl { 7923 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.28.4.tgz"; 7924 - sha512 = "3eap4QWxGqkYuEmVebUGULMskR6Cuoc/Wii0oSOddleP4EGx1tjLnZQ0ZP33YRoMDCs5O3j56RBV4g14T4jvww=="; 7905 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.28.5.tgz"; 7906 + sha512 = "MruOu4ZaDOLOhw4f/6iudyks/obuvvZUAHBDSW80Trnc5+ovmViLT2ZMDXhUV66ozcl6z0LJfKs1Usldgi/WCA=="; 7925 7907 }; 7926 7908 }; 7927 7909 "@typescript-eslint/typescript-estree-3.10.1" = { ··· 7933 7915 sha512 = "QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w=="; 7934 7916 }; 7935 7917 }; 7936 - "@typescript-eslint/typescript-estree-4.28.4" = { 7918 + "@typescript-eslint/typescript-estree-4.28.5" = { 7937 7919 name = "_at_typescript-eslint_slash_typescript-estree"; 7938 7920 packageName = "@typescript-eslint/typescript-estree"; 7939 - version = "4.28.4"; 7921 + version = "4.28.5"; 7940 7922 src = fetchurl { 7941 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.4.tgz"; 7942 - sha512 = "z7d8HK8XvCRyN2SNp+OXC2iZaF+O2BTquGhEYLKLx5k6p0r05ureUtgEfo5f6anLkhCxdHtCf6rPM1p4efHYDQ=="; 7923 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.5.tgz"; 7924 + sha512 = "FzJUKsBX8poCCdve7iV7ShirP8V+ys2t1fvamVeD1rWpiAnIm550a+BX/fmTHrjEpQJ7ZAn+Z7ZZwJjytk9rZw=="; 7943 7925 }; 7944 7926 }; 7945 7927 "@typescript-eslint/visitor-keys-3.10.1" = { ··· 7951 7933 sha512 = "9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ=="; 7952 7934 }; 7953 7935 }; 7954 - "@typescript-eslint/visitor-keys-4.28.4" = { 7936 + "@typescript-eslint/visitor-keys-4.28.5" = { 7955 7937 name = "_at_typescript-eslint_slash_visitor-keys"; 7956 7938 packageName = "@typescript-eslint/visitor-keys"; 7957 - version = "4.28.4"; 7939 + version = "4.28.5"; 7958 7940 src = fetchurl { 7959 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.4.tgz"; 7960 - sha512 = "NIAXAdbz1XdOuzqkJHjNKXKj8QQ4cv5cxR/g0uQhCYf/6//XrmfpaYsM7PnBcNbfvTDLUkqQ5TPNm1sozDdTWg=="; 7941 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.5.tgz"; 7942 + sha512 = "dva/7Rr+EkxNWdJWau26xU/0slnFlkh88v3TsyTgRS/IIYFi5iIfpCFM4ikw0vQTFUR9FYSSyqgK4w64gsgxhg=="; 7961 7943 }; 7962 7944 }; 7963 7945 "@uifabric/foundation-7.9.26" = { ··· 8689 8671 sha512 = "FYjcPNTfDfMKLFafQPt49EY28jnYC82Z2S7oMwLPUh144BL8v8YXzb4aCnFyi5nFC5h2kcrJfZh7+Pm/qvCqGw=="; 8690 8672 }; 8691 8673 }; 8692 - "@yarnpkg/fslib-2.4.0" = { 8674 + "@yarnpkg/fslib-2.5.0" = { 8693 8675 name = "_at_yarnpkg_slash_fslib"; 8694 8676 packageName = "@yarnpkg/fslib"; 8695 - version = "2.4.0"; 8677 + version = "2.5.0"; 8696 8678 src = fetchurl { 8697 - url = "https://registry.npmjs.org/@yarnpkg/fslib/-/fslib-2.4.0.tgz"; 8698 - sha512 = "CwffYY9owtl3uImNOn1K4jl5iIb/L16a9UZ9Q3lkBARk6tlUsPrNFX00eoUlFcLn49TTfd3zdN6higloGCyncw=="; 8679 + url = "https://registry.npmjs.org/@yarnpkg/fslib/-/fslib-2.5.0.tgz"; 8680 + sha512 = "xkKmuW3HwQeWOPqOhBCbDjTGbgimP/VWN2bPpx4FnfgbVj1xjULyOtZR5h9p49jA7IIZsccG91+Ad9kLZ2A4DA=="; 8699 8681 }; 8700 8682 }; 8701 - "@yarnpkg/json-proxy-2.1.0" = { 8683 + "@yarnpkg/json-proxy-2.1.1" = { 8702 8684 name = "_at_yarnpkg_slash_json-proxy"; 8703 8685 packageName = "@yarnpkg/json-proxy"; 8704 - version = "2.1.0"; 8686 + version = "2.1.1"; 8705 8687 src = fetchurl { 8706 - url = "https://registry.npmjs.org/@yarnpkg/json-proxy/-/json-proxy-2.1.0.tgz"; 8707 - sha512 = "rOgCg2DkyviLgr80mUMTt9vzdf5RGOujQB26yPiXjlz4WNePLBshKlTNG9rKSoKQSOYEQcw6cUmosfOKDatrCw=="; 8688 + url = "https://registry.npmjs.org/@yarnpkg/json-proxy/-/json-proxy-2.1.1.tgz"; 8689 + sha512 = "meUiCAgCYpXTH1qJfqfz+dX013ohW9p2dKfwIzUYAFutH+lsz1eHPBIk72cuCV84adh9gX6j66ekBKH/bIhCQw=="; 8708 8690 }; 8709 8691 }; 8710 - "@yarnpkg/libzip-2.2.1" = { 8692 + "@yarnpkg/libzip-2.2.2" = { 8711 8693 name = "_at_yarnpkg_slash_libzip"; 8712 8694 packageName = "@yarnpkg/libzip"; 8713 - version = "2.2.1"; 8695 + version = "2.2.2"; 8714 8696 src = fetchurl { 8715 - url = "https://registry.npmjs.org/@yarnpkg/libzip/-/libzip-2.2.1.tgz"; 8716 - sha512 = "AYDJXrkzayoDd3ZlVgFJ+LyDX+Zj/cki3vxIpcYxejtgkl3aquVWOxlC0DD9WboBWsJFIP1MjrUbchLyh++/7A=="; 8697 + url = "https://registry.npmjs.org/@yarnpkg/libzip/-/libzip-2.2.2.tgz"; 8698 + sha512 = "M7ziz16f+tFFnJSCreLtemaGPpjT+NC0E21JQaWXAAlRmFIXz6zl2EZ+tXLxV9yJaplpNDbTgX1j5GPiwg5H5w=="; 8717 8699 }; 8718 8700 }; 8719 8701 "@yarnpkg/lockfile-1.1.0" = { ··· 8725 8707 sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="; 8726 8708 }; 8727 8709 }; 8728 - "@yarnpkg/parsers-2.3.0" = { 8710 + "@yarnpkg/parsers-2.4.0" = { 8729 8711 name = "_at_yarnpkg_slash_parsers"; 8730 8712 packageName = "@yarnpkg/parsers"; 8731 - version = "2.3.0"; 8713 + version = "2.4.0"; 8732 8714 src = fetchurl { 8733 - url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-2.3.0.tgz"; 8734 - sha512 = "qgz0QUgOvnhtF92kaluIhIIKBUHlYlHUBQxqh5v9+sxEQvUeF6G6PKiFlzo3E6O99XwvNEGpVu1xZPoSGyGscQ=="; 8715 + url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-2.4.0.tgz"; 8716 + sha512 = "XWgiNGh4MkhdBTJVEbXEqzk66JKjvxTtKGeLPqo3rnJ7JiJnRaK2n9MLTKQB0uoRMWYzPlISdIlok6H9OdlOVQ=="; 8735 8717 }; 8736 8718 }; 8737 8719 "@yarnpkg/pnp-2.3.2" = { ··· 9157 9139 sha512 = "LjwZql59OKrQgppreOvRcgJDYrnj9XKVW2gb5Q1ZyGG3CH46VCiiNHJB6nYMgOntLo+DPQwQQPOSknZ1zW+wTw=="; 9158 9140 }; 9159 9141 }; 9160 - "addr-to-ip-port-1.5.1" = { 9142 + "addr-to-ip-port-1.5.3" = { 9161 9143 name = "addr-to-ip-port"; 9162 9144 packageName = "addr-to-ip-port"; 9163 - version = "1.5.1"; 9145 + version = "1.5.3"; 9164 9146 src = fetchurl { 9165 - url = "https://registry.npmjs.org/addr-to-ip-port/-/addr-to-ip-port-1.5.1.tgz"; 9166 - sha512 = "bA+dyydTNuQtrEDJ0g9eR7XabNhvrM5yZY0hvTbNK3yvoeC73ZqMES6E1cEqH9WPxs4uMtMsOjfwS4FmluhsAA=="; 9147 + url = "https://registry.npmjs.org/addr-to-ip-port/-/addr-to-ip-port-1.5.3.tgz"; 9148 + sha512 = "8azR4KaQNuAFyTX2taTTBAWmE/WpX/q0K0Hz4h0P18Ero2ngYiA2x/OVRB8T2jjt9u/qSMF3CO/us7OxwSdX3Q=="; 9167 9149 }; 9168 9150 }; 9169 9151 "address-1.1.2" = { ··· 10075 10057 sha512 = "pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig=="; 10076 10058 }; 10077 10059 }; 10060 + "appdata-path-1.0.0" = { 10061 + name = "appdata-path"; 10062 + packageName = "appdata-path"; 10063 + version = "1.0.0"; 10064 + src = fetchurl { 10065 + url = "https://registry.npmjs.org/appdata-path/-/appdata-path-1.0.0.tgz"; 10066 + sha512 = "ZbH3ezXfnT/YE3NdqduIt4lBV+H0ybvA2Qx3K76gIjQvh8gROpDFdDLpx6B1QJtW7zxisCbpTlCLhKqoR8cDBw=="; 10067 + }; 10068 + }; 10078 10069 "append-0.1.1" = { 10079 10070 name = "append"; 10080 10071 packageName = "append"; ··· 11380 11371 sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg=="; 11381 11372 }; 11382 11373 }; 11383 - "aws-sdk-2.951.0" = { 11374 + "aws-sdk-2.954.0" = { 11384 11375 name = "aws-sdk"; 11385 11376 packageName = "aws-sdk"; 11386 - version = "2.951.0"; 11377 + version = "2.954.0"; 11387 11378 src = fetchurl { 11388 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.951.0.tgz"; 11389 - sha512 = "YPqhdESUzd4+pSuGJcfMnG1qNVbmZjnmsa85Z9jofR1ilIpuV31onIiFHv8iubM59ETok/+zy3QOmxRSLYzFmQ=="; 11379 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.954.0.tgz"; 11380 + sha512 = "AbP7lUIBVHX1/dnDMgcmmkRYRU5FeBRqemtsV+BwHywEKeiDpVi024KNOIkZkd4NoYtRiLEOwTzUP9w1z/EnxQ=="; 11390 11381 }; 11391 11382 }; 11392 11383 "aws-sign2-0.6.0" = { ··· 12442 12433 sha512 = "T3yrKnVGB63zRuoco/7Ybl7BwwGZR0lceoVG5XmQyMIH9s19SV5m+a8qam4if0zQuAmOQTyPTPmsQBdAorGK3w=="; 12443 12434 }; 12444 12435 }; 12445 - "bep53-range-1.1.0" = { 12436 + "bep53-range-1.1.1" = { 12446 12437 name = "bep53-range"; 12447 12438 packageName = "bep53-range"; 12448 - version = "1.1.0"; 12439 + version = "1.1.1"; 12449 12440 src = fetchurl { 12450 - url = "https://registry.npmjs.org/bep53-range/-/bep53-range-1.1.0.tgz"; 12451 - sha512 = "yGQTG4NtwTciX0Bkgk1FqQL4p+NiCQKpTSFho2lrxvUkXIlzyJDwraj8aYxAxRZMnnOhRr7QlIBoMRPEnIR34Q=="; 12441 + url = "https://registry.npmjs.org/bep53-range/-/bep53-range-1.1.1.tgz"; 12442 + sha512 = "ct6s33iiwRCUPp9KXnJ4QMWDgHIgaw36caK/5XEQ9L8dCzSQlJt1Vk6VmHh1VD4AlGCAI4C2zmtfItifBBPrhQ=="; 12452 12443 }; 12453 12444 }; 12454 12445 "bessel-1.0.2" = { ··· 12892 12883 sha512 = "fvb6M58Ceiv/S94nu6zeaiMoJvUYOeIqRbgaClm+kJTzCAqJPtAR/31pXNYB5iEReOoKqQB5zY33gY0W6ZRWQQ=="; 12893 12884 }; 12894 12885 }; 12895 - "bittorrent-lsd-1.1.0" = { 12886 + "bittorrent-lsd-1.1.1" = { 12896 12887 name = "bittorrent-lsd"; 12897 12888 packageName = "bittorrent-lsd"; 12898 - version = "1.1.0"; 12889 + version = "1.1.1"; 12899 12890 src = fetchurl { 12900 - url = "https://registry.npmjs.org/bittorrent-lsd/-/bittorrent-lsd-1.1.0.tgz"; 12901 - sha512 = "j9F+bDt1R//+kLfeSgkmc1A3x0u70gjb/FXaRgTtw+V3wIeYjOekiIlmsXf1SNKuxU5YHDkNL8CFNHx+MfSPSw=="; 12891 + url = "https://registry.npmjs.org/bittorrent-lsd/-/bittorrent-lsd-1.1.1.tgz"; 12892 + sha512 = "dWxU2Mr2lU6jzIKgZrTsXgeXDCIcYpR1b6f2n89fn7juwPAYbNU04OgWjcQPLiNliY0filsX5CQAWntVErpk+Q=="; 12902 12893 }; 12903 12894 }; 12904 - "bittorrent-peerid-1.3.3" = { 12895 + "bittorrent-peerid-1.3.4" = { 12905 12896 name = "bittorrent-peerid"; 12906 12897 packageName = "bittorrent-peerid"; 12907 - version = "1.3.3"; 12898 + version = "1.3.4"; 12908 12899 src = fetchurl { 12909 - url = "https://registry.npmjs.org/bittorrent-peerid/-/bittorrent-peerid-1.3.3.tgz"; 12910 - sha512 = "tSh9HdQgwyEAfo1jzoGEis6o/zs4CcdRTchG93XVl5jct+DCAN90M5MVUV76k2vJ9Xg3GAzLB5NLsY/vnVTh6w=="; 12900 + url = "https://registry.npmjs.org/bittorrent-peerid/-/bittorrent-peerid-1.3.4.tgz"; 12901 + sha512 = "Xzk1FJFHmsc9H8IKFtDUkfAZIT1HW8r6UqajfZBBxWmpA1v7FsPO8xPFtnFzCqcXlPN3yi8dDmlqZCemyB7P8w=="; 12911 12902 }; 12912 12903 }; 12913 12904 "bittorrent-protocol-3.4.2" = { ··· 12928 12919 sha1 = "ffd2eabc141d36ed5c1817df7e992f91fd7fc65c"; 12929 12920 }; 12930 12921 }; 12931 - "bittorrent-tracker-9.17.3" = { 12922 + "bittorrent-tracker-9.17.4" = { 12932 12923 name = "bittorrent-tracker"; 12933 12924 packageName = "bittorrent-tracker"; 12934 - version = "9.17.3"; 12925 + version = "9.17.4"; 12935 12926 src = fetchurl { 12936 - url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.17.3.tgz"; 12937 - sha512 = "Z37yunPPT8pIEkB0Q0bDP1fMke2Rez7JSsmqwqGKoJWh4zjAtFgrEw2GHYNllRRvcy+fkfVPWt7ArvxsGoUmfA=="; 12927 + url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.17.4.tgz"; 12928 + sha512 = "ykhdVQHtLfn4DYSJUQD/zFAbP8YwnF6nGlj2SBnCY4xkW5bhwXPeFZUhryAtdITl0qNL/FpmFOamBZfxIwkbxg=="; 12938 12929 }; 12939 12930 }; 12940 12931 "bl-1.2.3" = { ··· 14800 14791 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 14801 14792 }; 14802 14793 }; 14803 - "caniuse-lite-1.0.30001246" = { 14794 + "caniuse-lite-1.0.30001247" = { 14804 14795 name = "caniuse-lite"; 14805 14796 packageName = "caniuse-lite"; 14806 - version = "1.0.30001246"; 14797 + version = "1.0.30001247"; 14807 14798 src = fetchurl { 14808 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001246.tgz"; 14809 - sha512 = "Tc+ff0Co/nFNbLOrziBXmMVtpt9S2c2Y+Z9Nk9Khj09J+0zR9ejvIW5qkZAErCbOrVODCx/MN+GpB5FNBs5GFA=="; 14799 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001247.tgz"; 14800 + sha512 = "4rS7co+7+AoOSPRPOPUt5/GdaqZc0EsUpWk66ofE3HJTAajUK2Ss2VwoNzVN69ghg8lYYlh0an0Iy4LIHHo9UQ=="; 14810 14801 }; 14811 14802 }; 14812 14803 "canvas-2.8.0" = { ··· 16456 16447 sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg=="; 16457 16448 }; 16458 16449 }; 16459 - "codemaker-1.31.0" = { 16450 + "codemaker-1.32.0" = { 16460 16451 name = "codemaker"; 16461 16452 packageName = "codemaker"; 16462 - version = "1.31.0"; 16453 + version = "1.32.0"; 16463 16454 src = fetchurl { 16464 - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.31.0.tgz"; 16465 - sha512 = "gyWhtZ4YU5b+pIijCfOZkGrH0DCkUQXyRG3BQtDlnwFJuXyJnDoz+dpM5ErkJuDD9w6Qns4aryyG/bU78huaSg=="; 16455 + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.32.0.tgz"; 16456 + sha512 = "RYHzKPI83NJi0u7KjUVeAm4rmMwIPjLsFjcSv8sIZizNiVFwWNxON99YhtFvbg0YMbdMnjpkx0W/VADNuwETGA=="; 16466 16457 }; 16467 16458 }; 16468 16459 "codepage-1.4.0" = { ··· 16967 16958 src = fetchurl { 16968 16959 url = "https://registry.npmjs.org/commander/-/commander-8.0.0.tgz"; 16969 16960 sha512 = "Xvf85aAtu6v22+E5hfVoLHqyul/jyxh91zvqk/ioJTQuJR7Z78n7H558vMPKanPSRgIEeZemT92I2g9Y8LPbSQ=="; 16961 + }; 16962 + }; 16963 + "commander-8.1.0" = { 16964 + name = "commander"; 16965 + packageName = "commander"; 16966 + version = "8.1.0"; 16967 + src = fetchurl { 16968 + url = "https://registry.npmjs.org/commander/-/commander-8.1.0.tgz"; 16969 + sha512 = "mf45ldcuHSYShkplHHGKWb4TrmwQadxOn7v4WuhDJy0ZVoY5JFajaRDKD0PNe5qXzBX0rhovjTnP6Kz9LETcuA=="; 16970 16970 }; 16971 16971 }; 16972 16972 "commandpost-1.4.0" = { ··· 17491 17491 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 17492 17492 }; 17493 17493 }; 17494 - "constructs-3.3.99" = { 17494 + "constructs-3.3.106" = { 17495 17495 name = "constructs"; 17496 17496 packageName = "constructs"; 17497 - version = "3.3.99"; 17497 + version = "3.3.106"; 17498 17498 src = fetchurl { 17499 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.99.tgz"; 17500 - sha512 = "uX3bZtp6Zn53Utyurp4DrKolIDUuiDddHVTgsQ39KhVRkQ8TRMtl0nyXllysMtu78t8zLo9QygeyQ0QOBy3LHw=="; 17499 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.106.tgz"; 17500 + sha512 = "QJCbOQRS5UcCcM/e73L1bxNG7eeV70uOzwML5ffoAMhvlgsNYyeI8VleEcsbG0u1TTspMM+lIwD2NYud9NVq7A=="; 17501 17501 }; 17502 17502 }; 17503 17503 "consume-http-header-1.0.0" = { ··· 17573 17573 sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578"; 17574 17574 }; 17575 17575 }; 17576 - "contentful-management-7.30.0" = { 17576 + "contentful-management-7.31.0" = { 17577 17577 name = "contentful-management"; 17578 17578 packageName = "contentful-management"; 17579 - version = "7.30.0"; 17579 + version = "7.31.0"; 17580 17580 src = fetchurl { 17581 - url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.30.0.tgz"; 17582 - sha512 = "2aAIqLrxxCJt2bWg1LN+wxjYaevAHTsfZGkIPA5QRKK11WhpffrUMkTthbED6UWaY58BAM0TYXT3Z0s7nFu5zg=="; 17581 + url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.31.0.tgz"; 17582 + sha512 = "YhPikvkO/ckRTO400I+iHYpVLuHwPyMzTQcMwBWpUluXYCF45I/RpWw7cyNQciQ19Q0NpjgEfUTQnhFhIqHtwA=="; 17583 17583 }; 17584 17584 }; 17585 17585 "contentful-sdk-core-6.8.0" = { ··· 18311 18311 sha512 = "dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw=="; 18312 18312 }; 18313 18313 }; 18314 - "create-torrent-4.7.0" = { 18314 + "create-torrent-4.7.1" = { 18315 18315 name = "create-torrent"; 18316 18316 packageName = "create-torrent"; 18317 - version = "4.7.0"; 18317 + version = "4.7.1"; 18318 18318 src = fetchurl { 18319 - url = "https://registry.npmjs.org/create-torrent/-/create-torrent-4.7.0.tgz"; 18320 - sha512 = "Pb3XjZNKdCs0Nk46yFKb82y+a3xRQeMvGi1AlJfIV40y/iwkgBqzS5EfqdnakEOvh2jzTOx3v8QxZpkz4hPzyw=="; 18319 + url = "https://registry.npmjs.org/create-torrent/-/create-torrent-4.7.1.tgz"; 18320 + sha512 = "OMT0cYHa35p55jqRPP5Cilow/iD9tk+1lRlgmGWNcAhP3e37DwgGnEPkgTU40UTSPfZpaLiWY3wGc929Q2WaRw=="; 18321 18321 }; 18322 18322 }; 18323 18323 "cron-1.8.2" = { ··· 18491 18491 sha512 = "bzHZN8Pn+gS7DQA6n+iUmBfl0hO5DJq++QP3U6uTucDtk/0iGpXd/Gg7CGR0p8tJhofJyaKoWBuJI4eAO00BBg=="; 18492 18492 }; 18493 18493 }; 18494 + "crypto-js-4.1.1" = { 18495 + name = "crypto-js"; 18496 + packageName = "crypto-js"; 18497 + version = "4.1.1"; 18498 + src = fetchurl { 18499 + url = "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz"; 18500 + sha512 = "o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw=="; 18501 + }; 18502 + }; 18494 18503 "crypto-random-string-1.0.0" = { 18495 18504 name = "crypto-random-string"; 18496 18505 packageName = "crypto-random-string"; ··· 20543 20552 sha512 = "aiQcQowF01RxFI4ZLFMpzyotbQonhNpBao6dkI8JPk5a+hmSjR5ErHp2CQySmQe8os3VBqLCIh87nDBgZXvsmg=="; 20544 20553 }; 20545 20554 }; 20555 + "degenerator-3.0.1" = { 20556 + name = "degenerator"; 20557 + packageName = "degenerator"; 20558 + version = "3.0.1"; 20559 + src = fetchurl { 20560 + url = "https://registry.npmjs.org/degenerator/-/degenerator-3.0.1.tgz"; 20561 + sha512 = "LFsIFEeLPlKvAKXu7j3ssIG6RT0TbI7/GhsqrI0DnHASEQjXQ0LUSYcjJteGgRGmZbl1TnMSxpNQIAiJ7Du5TQ=="; 20562 + }; 20563 + }; 20546 20564 "del-4.1.1" = { 20547 20565 name = "del"; 20548 20566 packageName = "del"; ··· 21092 21110 sha512 = "Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg=="; 21093 21111 }; 21094 21112 }; 21095 - "diff2html-3.4.7" = { 21113 + "diff2html-3.4.8" = { 21096 21114 name = "diff2html"; 21097 21115 packageName = "diff2html"; 21098 - version = "3.4.7"; 21116 + version = "3.4.8"; 21099 21117 src = fetchurl { 21100 - url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.7.tgz"; 21101 - sha512 = "QbQMz1qKFxQqqWvpDAxzD37iZb7i9ixVoBjHh7y5PLg1EagYgbrM4Fley4u5YM6i2elNrJNnKjNzyNtGBx3xjw=="; 21118 + url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.8.tgz"; 21119 + sha512 = "ZkZXowZdEGu756Ka8kfmz3bEcH4j0ENC3FCDyomJ6Fz63U+tRoaoG1Qnjoej7fYMNk45AE+vsvn+woKMvm4zMg=="; 21102 21120 }; 21103 21121 }; 21104 21122 "diff3-0.0.3" = { ··· 21803 21821 sha512 = "UGGGWfSauusaVJC+8fgV+NVvBXkCTmVv7sk6nojDZZvuOUNGUy0Zk4UpHQD6EDjS0jpBwcACvH4eofvyzBcRDw=="; 21804 21822 }; 21805 21823 }; 21806 - "dotnet-deps-parser-5.0.0" = { 21824 + "dotnet-deps-parser-5.1.0" = { 21807 21825 name = "dotnet-deps-parser"; 21808 21826 packageName = "dotnet-deps-parser"; 21809 - version = "5.0.0"; 21827 + version = "5.1.0"; 21810 21828 src = fetchurl { 21811 - url = "https://registry.npmjs.org/dotnet-deps-parser/-/dotnet-deps-parser-5.0.0.tgz"; 21812 - sha512 = "1l9K4UnQQHSfKgeHeLrxnB53AidCZqPyf9dkRL4/fZl8//NPiiDD43zHtgylw8DHlO7gvM8+O5a0UPHesNYZKw=="; 21829 + url = "https://registry.npmjs.org/dotnet-deps-parser/-/dotnet-deps-parser-5.1.0.tgz"; 21830 + sha512 = "/VVFME8IwiYJMC7amuVzHf+CZHiXxYjEjgKpRvvY3lKYFirdqacLwqLlrBl1dYYcUEwmHb/90cssTKInc9pvYg=="; 21813 21831 }; 21814 21832 }; 21815 21833 "downgrade-root-1.2.2" = { ··· 22181 22199 sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ=="; 22182 22200 }; 22183 22201 }; 22184 - "electron-to-chromium-1.3.782" = { 22202 + "electron-to-chromium-1.3.788" = { 22185 22203 name = "electron-to-chromium"; 22186 22204 packageName = "electron-to-chromium"; 22187 - version = "1.3.782"; 22205 + version = "1.3.788"; 22188 22206 src = fetchurl { 22189 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.782.tgz"; 22190 - sha512 = "6AI2se1NqWA1SBf/tlD6tQD/6ZOt+yAhqmrTlh4XZw4/g0Mt3p6JhTQPZxRPxPZiOg0o7ss1EBP/CpYejfnoIA=="; 22207 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.788.tgz"; 22208 + sha512 = "dbMIpX4E4/Gk4gzOh1GYS7ls1vGsByWKpIqLviJi1mSmSt5BvrWLLtSqpFE5BaC7Ef4NnI0GMaiddNX2Brw6zA=="; 22191 22209 }; 22192 22210 }; 22193 22211 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 25747 25765 sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; 25748 25766 }; 25749 25767 }; 25750 - "flow-parser-0.155.1" = { 25768 + "flow-parser-0.156.0" = { 25751 25769 name = "flow-parser"; 25752 25770 packageName = "flow-parser"; 25753 - version = "0.155.1"; 25771 + version = "0.156.0"; 25754 25772 src = fetchurl { 25755 - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.155.1.tgz"; 25756 - sha512 = "EU55hHBilG20Qu80tMYrVjEIqB3FcXPPJwndNcf6UryvhiF74dQ2FX8zPV1LIpuvkW3P13wgZlsnG94oRihgpw=="; 25773 + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.156.0.tgz"; 25774 + sha512 = "OCE3oIixhOttaV4ahIGtxf9XfaDdxujiTnXuHu+0dvDVVDiSDJlQpgCWdDKqP0OHfFnxQKrjMamArDAXtrBtZw=="; 25757 25775 }; 25758 25776 }; 25759 25777 "fluent-ffmpeg-2.1.2" = { ··· 26044 26062 sha512 = "DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw=="; 26045 26063 }; 26046 26064 }; 26047 - "fork-ts-checker-webpack-plugin-6.2.12" = { 26065 + "fork-ts-checker-webpack-plugin-6.2.13" = { 26048 26066 name = "fork-ts-checker-webpack-plugin"; 26049 26067 packageName = "fork-ts-checker-webpack-plugin"; 26050 - version = "6.2.12"; 26068 + version = "6.2.13"; 26051 26069 src = fetchurl { 26052 - url = "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.2.12.tgz"; 26053 - sha512 = "BzXGIfM47q1WFwXsNLl22dQVMFwSBgldL07lvqRJFxgrhT76QQ3nri5PX01Rxfa2RYvv/hqACULO8K5gT8fFuA=="; 26070 + url = "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.2.13.tgz"; 26071 + sha512 = "+j/DfwevcZeSXn5WOv32c/shbcbhcKi88asC2A4TDPtURS3MW/qXiVucGiL1PXdt9PCGB88R3BfaSWZ1C/XGHA=="; 26054 26072 }; 26055 26073 }; 26056 26074 "form-data-1.0.0-rc3" = { ··· 26188 26206 sha512 = "wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g=="; 26189 26207 }; 26190 26208 }; 26191 - "fp-ts-2.10.5" = { 26209 + "fp-ts-2.11.0" = { 26192 26210 name = "fp-ts"; 26193 26211 packageName = "fp-ts"; 26194 - version = "2.10.5"; 26212 + version = "2.11.0"; 26195 26213 src = fetchurl { 26196 - url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.10.5.tgz"; 26197 - sha512 = "X2KfTIV0cxIk3d7/2Pvp/pxL/xr2MV1WooyEzKtTWYSc1+52VF4YzjBTXqeOlSiZsPCxIBpDGfT9Dyo7WEY0DQ=="; 26214 + url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.11.0.tgz"; 26215 + sha512 = "MRss/AgPUBgScVtHaaNkKa/3+SaN3QOokYr1CnOOgdfterSwuaE2x6h/ADQOTcs3mKDC17d6NzQyZOZDFijQmA=="; 26198 26216 }; 26199 26217 }; 26200 26218 "fraction.js-4.1.1" = { ··· 26773 26791 sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7"; 26774 26792 }; 26775 26793 }; 26794 + "gauge-3.0.1" = { 26795 + name = "gauge"; 26796 + packageName = "gauge"; 26797 + version = "3.0.1"; 26798 + src = fetchurl { 26799 + url = "https://registry.npmjs.org/gauge/-/gauge-3.0.1.tgz"; 26800 + sha512 = "6STz6KdQgxO4S/ko+AbjlFGGdGcknluoqU+79GOFCDqqyYj5OanQf9AjxwN0jCidtT+ziPMmPSt9E4hfQ0CwIQ=="; 26801 + }; 26802 + }; 26776 26803 "gaxios-4.3.0" = { 26777 26804 name = "gaxios"; 26778 26805 packageName = "gaxios"; ··· 27142 27169 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 27143 27170 }; 27144 27171 }; 27145 - "gh-release-fetch-2.0.1" = { 27172 + "gh-release-fetch-2.0.2" = { 27146 27173 name = "gh-release-fetch"; 27147 27174 packageName = "gh-release-fetch"; 27148 - version = "2.0.1"; 27175 + version = "2.0.2"; 27149 27176 src = fetchurl { 27150 - url = "https://registry.npmjs.org/gh-release-fetch/-/gh-release-fetch-2.0.1.tgz"; 27151 - sha512 = "Ca5chpW8/yXeJPYdAxDLB8UShrWViOgnlYl4QTlQi4Y6sJnMXrXK9GMjKHyjJtNAw9IiSh0DbcTMiJZyp6vfMg=="; 27177 + url = "https://registry.npmjs.org/gh-release-fetch/-/gh-release-fetch-2.0.2.tgz"; 27178 + sha512 = "VIlw5FzT8b31rwwH3A4zg05wd9R1/7vPYY+Dow14U1mXEkGF348+x8HUk5fY9py6icVVU3z/v4L7m5BV/7xxjA=="; 27152 27179 }; 27153 27180 }; 27154 27181 "git-apply-delta-0.0.7" = { ··· 27547 27574 sha512 = "+20KpaW6DDLqhG7JDiJpD1JvNvb8ts+TNl7BPOYcURqCrXqnN1Vf+XVOrkKJAFPqfX+oEhsdzOj1hLWkBTdNJg=="; 27548 27575 }; 27549 27576 }; 27550 - "global-cache-dir-1.0.1" = { 27551 - name = "global-cache-dir"; 27552 - packageName = "global-cache-dir"; 27553 - version = "1.0.1"; 27554 - src = fetchurl { 27555 - url = "https://registry.npmjs.org/global-cache-dir/-/global-cache-dir-1.0.1.tgz"; 27556 - sha512 = "wYGh6O3Xkx1LsMXQpObr/uu3PsFpbWhpbslgn9Xq52rbDZ6YOwJcQtU5R4lSEQgCDtXLItV9EH5X1F/VnBTAlw=="; 27557 - }; 27558 - }; 27559 27577 "global-cache-dir-2.0.0" = { 27560 27578 name = "global-cache-dir"; 27561 27579 packageName = "global-cache-dir"; ··· 27890 27908 sha512 = "2a6WY+p6YMVMmwXmkRqiLreXx67xHDZhkmflcL8aDUkl1csx9ywxEI01veoDXy6T1l0JJD6zLbl5TIbWimmXrw=="; 27891 27909 }; 27892 27910 }; 27893 - "google-p12-pem-3.1.0" = { 27911 + "google-p12-pem-3.1.1" = { 27894 27912 name = "google-p12-pem"; 27895 27913 packageName = "google-p12-pem"; 27896 - version = "3.1.0"; 27914 + version = "3.1.1"; 27897 27915 src = fetchurl { 27898 - url = "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-3.1.0.tgz"; 27899 - sha512 = "JUtEHXL4DY/N+xhlm7TC3qL797RPAtk0ZGXNs3/gWyiDHYoA/8Rjes0pztkda+sZv4ej1EoO2KhWgW5V9KTrSQ=="; 27916 + url = "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-3.1.1.tgz"; 27917 + sha512 = "e9CwdD2QYkpvJsktki3Bm8P8FSGIneF+/42a9F9QHcQvJ73C2RoYZdrwRl6BhwksWtzl65gT4OnBROhUIFw95Q=="; 27900 27918 }; 27901 27919 }; 27902 27920 "goosig-0.10.0" = { ··· 29754 29772 sha512 = "wcGvY31MpFNHIkUcXHHnvrE4IKYlpvitJw5P/1u892gMBAM46muQ+RH7UN1d+Ntnfx5apnOnVY6vcLmrWHOLwg=="; 29755 29773 }; 29756 29774 }; 29757 - "http2-client-1.3.3" = { 29775 + "http2-client-1.3.5" = { 29758 29776 name = "http2-client"; 29759 29777 packageName = "http2-client"; 29760 - version = "1.3.3"; 29778 + version = "1.3.5"; 29761 29779 src = fetchurl { 29762 - url = "https://registry.npmjs.org/http2-client/-/http2-client-1.3.3.tgz"; 29763 - sha512 = "nUxLymWQ9pzkzTmir24p2RtsgruLmhje7lH3hLX1IpwvyTg77fW+1brenPPP3USAR+rQ36p5sTA/x7sjCJVkAA=="; 29780 + url = "https://registry.npmjs.org/http2-client/-/http2-client-1.3.5.tgz"; 29781 + sha512 = "EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA=="; 29764 29782 }; 29765 29783 }; 29766 29784 "http2-wrapper-1.0.3" = { ··· 32427 32445 sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; 32428 32446 }; 32429 32447 }; 32430 - "is-stream-2.0.0" = { 32448 + "is-stream-2.0.1" = { 32431 32449 name = "is-stream"; 32432 32450 packageName = "is-stream"; 32433 - version = "2.0.0"; 32451 + version = "2.0.1"; 32434 32452 src = fetchurl { 32435 - url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"; 32436 - sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="; 32453 + url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"; 32454 + sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="; 32437 32455 }; 32438 32456 }; 32439 32457 "is-stream-ended-0.1.4" = { ··· 33255 33273 sha512 = "pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ=="; 33256 33274 }; 33257 33275 }; 33276 + "js-base64-3.6.1" = { 33277 + name = "js-base64"; 33278 + packageName = "js-base64"; 33279 + version = "3.6.1"; 33280 + src = fetchurl { 33281 + url = "https://registry.npmjs.org/js-base64/-/js-base64-3.6.1.tgz"; 33282 + sha512 = "Frdq2+tRRGLQUIQOgsIGSCd1VePCS2fsddTG5dTCqR0JHgltXWfsxnY0gIXPoMeRmdom6Oyq+UMOFg5suduOjQ=="; 33283 + }; 33284 + }; 33258 33285 "js-beautify-1.14.0" = { 33259 33286 name = "js-beautify"; 33260 33287 packageName = "js-beautify"; ··· 33525 33552 sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; 33526 33553 }; 33527 33554 }; 33528 - "jsii-1.31.0" = { 33555 + "jsii-1.32.0" = { 33529 33556 name = "jsii"; 33530 33557 packageName = "jsii"; 33531 - version = "1.31.0"; 33558 + version = "1.32.0"; 33532 33559 src = fetchurl { 33533 - url = "https://registry.npmjs.org/jsii/-/jsii-1.31.0.tgz"; 33534 - sha512 = "q/p5a6OLO9V0pIcyzS5sygkU9lPskY57KM7KbmppLDPVi5nIqpsRyFfsbPnGWFfDBMk//nkcfj+dbKJIplVkgg=="; 33560 + url = "https://registry.npmjs.org/jsii/-/jsii-1.32.0.tgz"; 33561 + sha512 = "Vw/xjiRgMdb+wbSSUaA7DTvVfSYfCR0k8Gdei43xSOOqmRfyLsmrWkN4ypnsbfaWfEYLpTj/HXGc4rJmw9Vnrw=="; 33535 33562 }; 33536 33563 }; 33537 - "jsii-pacmak-1.31.0" = { 33564 + "jsii-pacmak-1.32.0" = { 33538 33565 name = "jsii-pacmak"; 33539 33566 packageName = "jsii-pacmak"; 33540 - version = "1.31.0"; 33567 + version = "1.32.0"; 33541 33568 src = fetchurl { 33542 - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.31.0.tgz"; 33543 - sha512 = "fGiAoooRPMadwTWU0vfHJdcNzeYdESnkU/8LmlI4k6yF1iIlFMIbWPulBxP6fV7SqV3CZQKGpUbcPD/Uzf1glg=="; 33569 + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.32.0.tgz"; 33570 + sha512 = "zH+5ys4w9rSz7ZbfDTX0XZ8zhqpoygikuAppiWWVqjMmdk8qqZUgY9fLncZliMnI42YCXSz7q43g4tVL7dd3ng=="; 33544 33571 }; 33545 33572 }; 33546 - "jsii-reflect-1.31.0" = { 33573 + "jsii-reflect-1.32.0" = { 33547 33574 name = "jsii-reflect"; 33548 33575 packageName = "jsii-reflect"; 33549 - version = "1.31.0"; 33576 + version = "1.32.0"; 33550 33577 src = fetchurl { 33551 - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.31.0.tgz"; 33552 - sha512 = "jKc3tryVeEyEBZFv5bDB8rOaEgW+yBPh0DE4GQCKQQLdkp76Lm9ZSkrnJk5e0gEuAWsmuc1DUs35OcVNr8QRWg=="; 33578 + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.32.0.tgz"; 33579 + sha512 = "BJN8pgxSa3LlP5yPfxtaviSjsHKpG9b4xOr2kXv6w/SElIX15Q5/tKauI4/ZHTnBHGimRWh9ACNtxXAxvH0Vqg=="; 33553 33580 }; 33554 33581 }; 33555 - "jsii-rosetta-1.31.0" = { 33582 + "jsii-rosetta-1.32.0" = { 33556 33583 name = "jsii-rosetta"; 33557 33584 packageName = "jsii-rosetta"; 33558 - version = "1.31.0"; 33585 + version = "1.32.0"; 33559 33586 src = fetchurl { 33560 - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.31.0.tgz"; 33561 - sha512 = "Heu6D+yI5mmUklLQdX3PdDvHUQm14618Fj4PQM9seKa4cohxzJ7EHopfRObKYHMko9awopx4Qr7Gtu6u/QPqfw=="; 33587 + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.32.0.tgz"; 33588 + sha512 = "NrhHIJ0BNKxpjyvqtqhunIcHhJiA5dhlRSPPuO+EGsCQB+yc94aRj+hZZXYvWj+X1o61kdLVudJLn54sn7ESoQ=="; 33562 33589 }; 33563 33590 }; 33564 - "jsii-srcmak-0.1.302" = { 33591 + "jsii-srcmak-0.1.308" = { 33565 33592 name = "jsii-srcmak"; 33566 33593 packageName = "jsii-srcmak"; 33567 - version = "0.1.302"; 33594 + version = "0.1.308"; 33568 33595 src = fetchurl { 33569 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.302.tgz"; 33570 - sha512 = "UsXZ6LGLqP/nUNyq0ey3xOLpNDpkye5HeNAnJCVqw4vsT9o5EX7MHv9ca/JDlt7fWn+cUdo/Bcj5UZJvg+Chfg=="; 33596 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.308.tgz"; 33597 + sha512 = "jm/nmU3Z9730bn2NSfCu/X0pJySpVCdO7vMQGjP4ni1qcBqbQ2hp6qWThaYoB1IfS1TR9TH5RkwtxZGiTBo8PQ=="; 33571 33598 }; 33572 33599 }; 33573 33600 "json-bigint-0.2.3" = { ··· 33876 33903 sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A=="; 33877 33904 }; 33878 33905 }; 33879 - "json2jsii-0.1.272" = { 33906 + "json2jsii-0.1.278" = { 33880 33907 name = "json2jsii"; 33881 33908 packageName = "json2jsii"; 33882 - version = "0.1.272"; 33909 + version = "0.1.278"; 33883 33910 src = fetchurl { 33884 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.272.tgz"; 33885 - sha512 = "OUZqjQhnRalQmQx3kFM3mG5DQcfEYzmUYBWGdb6QwGLuvwB/eJ2PhXuLEkGF+PhRwOrW5IyEcF8U+O39mh3G5Q=="; 33911 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.278.tgz"; 33912 + sha512 = "sc7Nu9qWIDbIAWVktPahGn8LLSiNNO5/FFJLDIpIhLI6FjHrsLT1wE+97WNHEzabdrpzvuGnyVO1Zu9+DEtC9A=="; 33886 33913 }; 33887 33914 }; 33888 33915 "json3-3.2.6" = { ··· 34182 34209 sha1 = "b88f3a7b2e67a2a048152982c7a3756d9c4828f0"; 34183 34210 }; 34184 34211 }; 34185 - "jszip-3.4.0" = { 34212 + "jszip-3.7.0" = { 34186 34213 name = "jszip"; 34187 34214 packageName = "jszip"; 34188 - version = "3.4.0"; 34215 + version = "3.7.0"; 34189 34216 src = fetchurl { 34190 - url = "https://registry.npmjs.org/jszip/-/jszip-3.4.0.tgz"; 34191 - sha512 = "gZAOYuPl4EhPTXT0GjhI3o+ZAz3su6EhLrKUoAivcKqyqC7laS5JEv4XWZND9BgcDcF83vI85yGbDmDR6UhrIg=="; 34192 - }; 34193 - }; 34194 - "jszip-3.6.0" = { 34195 - name = "jszip"; 34196 - packageName = "jszip"; 34197 - version = "3.6.0"; 34198 - src = fetchurl { 34199 - url = "https://registry.npmjs.org/jszip/-/jszip-3.6.0.tgz"; 34200 - sha512 = "jgnQoG9LKnWO3mnVNBnfhkh0QknICd1FGSrXcgrl67zioyJ4wgx25o9ZqwNtrROSflGBCGYnJfjrIyRIby1OoQ=="; 34217 + url = "https://registry.npmjs.org/jszip/-/jszip-3.7.0.tgz"; 34218 + sha512 = "Y2OlFIzrDOPWUnpU0LORIcDn2xN7rC9yKffFM/7pGhQuhO+SUhfm2trkJ/S5amjFvem0Y+1EALz/MEPkvHXVNw=="; 34201 34219 }; 34202 34220 }; 34203 34221 "junk-3.1.0" = { ··· 35299 35317 sha512 = "kUfYO29baIJzY3S4/j7qaWl0GdjxT88SEaIcUN98YGdhYh+m7Zkt1N4jGubVF05A7dzjfjgtQD/NI5APKl38RQ=="; 35300 35318 }; 35301 35319 }; 35320 + "limiter-1.1.5" = { 35321 + name = "limiter"; 35322 + packageName = "limiter"; 35323 + version = "1.1.5"; 35324 + src = fetchurl { 35325 + url = "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz"; 35326 + sha512 = "FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA=="; 35327 + }; 35328 + }; 35302 35329 "line-reader-0.4.0" = { 35303 35330 name = "line-reader"; 35304 35331 packageName = "line-reader"; ··· 37261 37288 sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="; 37262 37289 }; 37263 37290 }; 37264 - "lossless-json-1.0.4" = { 37291 + "lossless-json-1.0.5" = { 37265 37292 name = "lossless-json"; 37266 37293 packageName = "lossless-json"; 37267 - version = "1.0.4"; 37294 + version = "1.0.5"; 37268 37295 src = fetchurl { 37269 - url = "https://registry.npmjs.org/lossless-json/-/lossless-json-1.0.4.tgz"; 37270 - sha512 = "zEkWwELMSQQISdtOF44vk0bRJhN/PJ93qcgJLcodizQjxrJKdFrq2H1+Xv5QDe7v3dTYYbBI5hOsh4a9l0B2Ow=="; 37296 + url = "https://registry.npmjs.org/lossless-json/-/lossless-json-1.0.5.tgz"; 37297 + sha512 = "RicKUuLwZVNZ6ZdJHgIZnSeA05p8qWc5NW0uR96mpPIjN9WDLUg9+kj1esQU1GkPn9iLZVKatSQK5gyiaFHgJA=="; 37271 37298 }; 37272 37299 }; 37273 37300 "lossy-store-1.2.4" = { ··· 39394 39421 sha512 = "FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ=="; 39395 39422 }; 39396 39423 }; 39424 + "mime-db-1.49.0" = { 39425 + name = "mime-db"; 39426 + packageName = "mime-db"; 39427 + version = "1.49.0"; 39428 + src = fetchurl { 39429 + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.49.0.tgz"; 39430 + sha512 = "CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA=="; 39431 + }; 39432 + }; 39397 39433 "mime-types-2.1.18" = { 39398 39434 name = "mime-types"; 39399 39435 packageName = "mime-types"; ··· 40384 40420 sha1 = "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b"; 40385 40421 }; 40386 40422 }; 40387 - "multimatch-4.0.0" = { 40388 - name = "multimatch"; 40389 - packageName = "multimatch"; 40390 - version = "4.0.0"; 40391 - src = fetchurl { 40392 - url = "https://registry.npmjs.org/multimatch/-/multimatch-4.0.0.tgz"; 40393 - sha512 = "lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ=="; 40394 - }; 40395 - }; 40396 40423 "multimatch-5.0.0" = { 40397 40424 name = "multimatch"; 40398 40425 packageName = "multimatch"; ··· 41186 41213 sha512 = "AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug=="; 41187 41214 }; 41188 41215 }; 41189 - "netlify-7.0.1" = { 41216 + "netlify-8.0.0" = { 41190 41217 name = "netlify"; 41191 41218 packageName = "netlify"; 41192 - version = "7.0.1"; 41219 + version = "8.0.0"; 41193 41220 src = fetchurl { 41194 - url = "https://registry.npmjs.org/netlify/-/netlify-7.0.1.tgz"; 41195 - sha512 = "Gd1aexpJ3RrOzkssdE8ipS67PuppOAkJNhRqQPp2in2XnJKPm5kvYonYMNVadasSFlNdmVCk9nELV3TnbAfklw=="; 41221 + url = "https://registry.npmjs.org/netlify/-/netlify-8.0.0.tgz"; 41222 + sha512 = "BiQblBf85/GmerTZYxVH/1A4/O8qBvg0Qr8QX0MvxjAvO3j+jDUk1PSudMxNgJjU1zFw5pKM2/DBk70hP5gt+Q=="; 41196 41223 }; 41197 41224 }; 41198 41225 "netlify-redirect-parser-8.1.0" = { ··· 42465 42492 sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg=="; 42466 42493 }; 42467 42494 }; 42495 + "npmlog-5.0.0" = { 42496 + name = "npmlog"; 42497 + packageName = "npmlog"; 42498 + version = "5.0.0"; 42499 + src = fetchurl { 42500 + url = "https://registry.npmjs.org/npmlog/-/npmlog-5.0.0.tgz"; 42501 + sha512 = "ftpIiLjerL2tUg3dCqN8pOSoB90gqZlzv/gaZoxHaKjeLClrfJIEQ1Pdxi6qSzflz916Bljdy8dTWQ4J7hAFSQ=="; 42502 + }; 42503 + }; 42468 42504 "nprogress-0.2.0" = { 42469 42505 name = "nprogress"; 42470 42506 packageName = "nprogress"; ··· 43195 43231 sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA=="; 43196 43232 }; 43197 43233 }; 43198 - "oo-ascii-tree-1.31.0" = { 43234 + "oo-ascii-tree-1.32.0" = { 43199 43235 name = "oo-ascii-tree"; 43200 43236 packageName = "oo-ascii-tree"; 43201 - version = "1.31.0"; 43237 + version = "1.32.0"; 43202 43238 src = fetchurl { 43203 - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.31.0.tgz"; 43204 - sha512 = "gNb2MyP1ZcF7cX0WgsAjYe4gZcx7BMLBWKE2TJZZbQ9/j4D8gbJh5Aq6RlXBgev74ODlgAVVcPr2wKU4Dufhqg=="; 43239 + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.32.0.tgz"; 43240 + sha512 = "QCYSWgdhbQwvMzw1OguyZ+K2KwZeQ1xvhFXa0/XV8XfmUXgr07MlnUoNthntfYgY6w7w+KI8WvqIxr+Q/NF5gw=="; 43205 43241 }; 43206 43242 }; 43207 43243 "opal-runtime-1.0.11" = { ··· 44320 44356 sha512 = "ejNgYm2HTXSIYX9eFlkvqFp8hyJ374uDf0Zq5YUAifiSh1D6fo+iBivQZirGvVv8dCYUsLhmLBRhlAYvBKI5+Q=="; 44321 44357 }; 44322 44358 }; 44359 + "pac-proxy-agent-5.0.0" = { 44360 + name = "pac-proxy-agent"; 44361 + packageName = "pac-proxy-agent"; 44362 + version = "5.0.0"; 44363 + src = fetchurl { 44364 + url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz"; 44365 + sha512 = "CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ=="; 44366 + }; 44367 + }; 44323 44368 "pac-resolver-4.2.0" = { 44324 44369 name = "pac-resolver"; 44325 44370 packageName = "pac-resolver"; ··· 44327 44372 src = fetchurl { 44328 44373 url = "https://registry.npmjs.org/pac-resolver/-/pac-resolver-4.2.0.tgz"; 44329 44374 sha512 = "rPACZdUyuxT5Io/gFKUeeZFfE5T7ve7cAkE5TUZRRfuKP0u5Hocwe48X7ZEm6mYB+bTB0Qf+xlVlA/RM/i6RCQ=="; 44375 + }; 44376 + }; 44377 + "pac-resolver-5.0.0" = { 44378 + name = "pac-resolver"; 44379 + packageName = "pac-resolver"; 44380 + version = "5.0.0"; 44381 + src = fetchurl { 44382 + url = "https://registry.npmjs.org/pac-resolver/-/pac-resolver-5.0.0.tgz"; 44383 + sha512 = "H+/A6KitiHNNW+bxBKREk2MCGSxljfqRX76NjummWEYIat7ldVXRU3dhRIE3iXZ0nvGBk6smv3nntxKkzRL8NA=="; 44330 44384 }; 44331 44385 }; 44332 44386 "package-json-1.2.0" = { ··· 45787 45841 sha1 = "8f47dcec5011b477b67db03c243bc1f3085e8854"; 45788 45842 }; 45789 45843 }; 45844 + "pixiv-api-client-0.25.0" = { 45845 + name = "pixiv-api-client"; 45846 + packageName = "pixiv-api-client"; 45847 + version = "0.25.0"; 45848 + src = fetchurl { 45849 + url = "https://registry.npmjs.org/pixiv-api-client/-/pixiv-api-client-0.25.0.tgz"; 45850 + sha512 = "IWo0HwnxUEH9OtQ3qEZsKUbpdStRSomS18Gx4UV5JT1fj/E/opYGZMgpcdzC1+3ouBJECV1evzt0778S2RJ+/Q=="; 45851 + }; 45852 + }; 45790 45853 "pkg-conf-1.1.3" = { 45791 45854 name = "pkg-conf"; 45792 45855 packageName = "pkg-conf"; ··· 45832 45895 sha512 = "NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA=="; 45833 45896 }; 45834 45897 }; 45835 - "pkg-fetch-3.1.1" = { 45898 + "pkg-fetch-3.2.2" = { 45836 45899 name = "pkg-fetch"; 45837 45900 packageName = "pkg-fetch"; 45838 - version = "3.1.1"; 45901 + version = "3.2.2"; 45839 45902 src = fetchurl { 45840 - url = "https://registry.npmjs.org/pkg-fetch/-/pkg-fetch-3.1.1.tgz"; 45841 - sha512 = "3GfpNwbwoTxge2TrVp6Oyz/FZJOoxF1r0+1YikOhnBXa2Di/VOJKtUObFHap76BFnyFo1fwh5vARWFR9TzLKUg=="; 45903 + url = "https://registry.npmjs.org/pkg-fetch/-/pkg-fetch-3.2.2.tgz"; 45904 + sha512 = "bLhFNT4cNnONxzbHo1H2mCCKuQkCR4dgQtv0gUZnWtp8TDP0v0UAXKHG7DXhAoTC5IYP3slLsFJtIda9ksny8g=="; 45842 45905 }; 45843 45906 }; 45844 45907 "pkg-up-2.0.0" = { ··· 47192 47255 sha512 = "973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q=="; 47193 47256 }; 47194 47257 }; 47195 - "pretty-quick-3.1.1" = { 47196 - name = "pretty-quick"; 47197 - packageName = "pretty-quick"; 47198 - version = "3.1.1"; 47199 - src = fetchurl { 47200 - url = "https://registry.npmjs.org/pretty-quick/-/pretty-quick-3.1.1.tgz"; 47201 - sha512 = "ZYLGiMoV2jcaas3vTJrLvKAYsxDoXQBUn8OSTxkl67Fyov9lyXivJTl0+2WVh+y6EovGcw7Lm5ThYpH+Sh3XxQ=="; 47202 - }; 47203 - }; 47204 47258 "pretty-time-1.1.0" = { 47205 47259 name = "pretty-time"; 47206 47260 packageName = "pretty-time"; ··· 47804 47858 sha512 = "ODnQnW2jc/FUVwHHuaZEfN5otg/fMbvMxz9nMSUQfJ9JU7q2SZvSULSsjLloVgJOiv9yhc8GlNMKc4GkFmcVEA=="; 47805 47859 }; 47806 47860 }; 47861 + "proxy-agent-5.0.0" = { 47862 + name = "proxy-agent"; 47863 + packageName = "proxy-agent"; 47864 + version = "5.0.0"; 47865 + src = fetchurl { 47866 + url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-5.0.0.tgz"; 47867 + sha512 = "gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g=="; 47868 + }; 47869 + }; 47807 47870 "proxy-from-env-1.1.0" = { 47808 47871 name = "proxy-from-env"; 47809 47872 packageName = "proxy-from-env"; ··· 48146 48209 sha1 = "146b36e3e043d7a666b59a14165fdd3bef3cf44c"; 48147 48210 }; 48148 48211 }; 48149 - "pull-async-filter-1.0.0" = { 48150 - name = "pull-async-filter"; 48151 - packageName = "pull-async-filter"; 48152 - version = "1.0.0"; 48153 - src = fetchurl { 48154 - url = "https://registry.npmjs.org/pull-async-filter/-/pull-async-filter-1.0.0.tgz"; 48155 - sha1 = "ebc3617d9de2463908c89fd01671c727564d6831"; 48156 - }; 48157 - }; 48158 48212 "pull-awaitable-1.0.0" = { 48159 48213 name = "pull-awaitable"; 48160 48214 packageName = "pull-awaitable"; ··· 48839 48893 sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7"; 48840 48894 }; 48841 48895 }; 48842 - "pyright-1.1.157" = { 48896 + "pyright-1.1.158" = { 48843 48897 name = "pyright"; 48844 48898 packageName = "pyright"; 48845 - version = "1.1.157"; 48899 + version = "1.1.158"; 48846 48900 src = fetchurl { 48847 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.157.tgz"; 48848 - sha512 = "slTex47hQKuyoi579Zk7lEhVH+4Dmn+eZ3gP1JGcFBcbcmDwd9ZI1ESww3jY3YoOYdNbYTafxBNuh3RHGkGiMA=="; 48901 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.158.tgz"; 48902 + sha512 = "gT+uy5OYyRTbB7997hag74kUuDh7XdMFYjj6AgBQ5Zp53e7oL09RH10zNDVHvI9nzuooiWjYkIS0rhuapfDL0g=="; 48849 48903 }; 48850 48904 }; 48851 48905 "q-0.9.7" = { ··· 49856 49910 sha512 = "aLcPqxovhJTVJcsnROuuzQvv6oziQx4zd3JvG0vGCL5MjTONUc4uJ90zCBC6R7W7oUKBNoR/F8pkyfVwlbxqng=="; 49857 49911 }; 49858 49912 }; 49859 - "read-package-json-fast-2.0.2" = { 49913 + "read-package-json-fast-2.0.3" = { 49860 49914 name = "read-package-json-fast"; 49861 49915 packageName = "read-package-json-fast"; 49862 - version = "2.0.2"; 49916 + version = "2.0.3"; 49863 49917 src = fetchurl { 49864 - url = "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.2.tgz"; 49865 - sha512 = "5fyFUyO9B799foVk4n6ylcoAktG/FbE3jwRKxvwaeSrIunaoMc0u81dzXxjeAFKOce7O5KncdfwpGvvs6r5PsQ=="; 49918 + url = "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz"; 49919 + sha512 = "W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ=="; 49866 49920 }; 49867 49921 }; 49868 49922 "read-package-tree-5.3.1" = { ··· 50180 50234 sha512 = "XNvYvkfdAN9QewbrxeTOjgINkdY/odTgTS56ZNEWL9Ml0weT4T3sFtvnTuF+Gxyu46ANcRm1ntrF6F5LAJPAaQ=="; 50181 50235 }; 50182 50236 }; 50183 - "recast-0.20.4" = { 50237 + "recast-0.20.5" = { 50184 50238 name = "recast"; 50185 50239 packageName = "recast"; 50186 - version = "0.20.4"; 50240 + version = "0.20.5"; 50187 50241 src = fetchurl { 50188 - url = "https://registry.npmjs.org/recast/-/recast-0.20.4.tgz"; 50189 - sha512 = "6qLIBGGRcwjrTZGIiBpJVC/NeuXpogXNyRQpqU1zWPUigCphvApoCs9KIwDYh1eDuJ6dAFlQoi/QUyE5KQ6RBQ=="; 50242 + url = "https://registry.npmjs.org/recast/-/recast-0.20.5.tgz"; 50243 + sha512 = "E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ=="; 50190 50244 }; 50191 50245 }; 50192 50246 "rechoir-0.6.2" = { ··· 50414 50468 sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="; 50415 50469 }; 50416 50470 }; 50417 - "regenerator-runtime-0.13.8" = { 50471 + "regenerator-runtime-0.13.9" = { 50418 50472 name = "regenerator-runtime"; 50419 50473 packageName = "regenerator-runtime"; 50420 - version = "0.13.8"; 50474 + version = "0.13.9"; 50421 50475 src = fetchurl { 50422 - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.8.tgz"; 50423 - sha512 = "o/ASGwgZ6UiVjspr4YnzHKF1NbBdX+mCPkSeymofk/d7I+csCYn3ZgZMMVtXeecpT8DBiI2nAlYkHd+xNCqu4A=="; 50476 + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"; 50477 + sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; 50424 50478 }; 50425 50479 }; 50426 50480 "regenerator-transform-0.14.5" = { ··· 50502 50556 src = fetchurl { 50503 50557 url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz"; 50504 50558 sha512 = "ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ=="; 50559 + }; 50560 + }; 50561 + "register-protocol-win32-1.1.0" = { 50562 + name = "register-protocol-win32"; 50563 + packageName = "register-protocol-win32"; 50564 + version = "1.1.0"; 50565 + src = fetchurl { 50566 + url = "https://registry.npmjs.org/register-protocol-win32/-/register-protocol-win32-1.1.0.tgz"; 50567 + sha1 = "ac961c69caaa2d609eec368aa0e4daf81a2dfee3"; 50505 50568 }; 50506 50569 }; 50507 50570 "registry-auth-token-3.3.2" = { ··· 51746 51809 sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A=="; 51747 51810 }; 51748 51811 }; 51749 - "rollup-2.53.3" = { 51812 + "rollup-2.54.0" = { 51750 51813 name = "rollup"; 51751 51814 packageName = "rollup"; 51752 - version = "2.53.3"; 51815 + version = "2.54.0"; 51753 51816 src = fetchurl { 51754 - url = "https://registry.npmjs.org/rollup/-/rollup-2.53.3.tgz"; 51755 - sha512 = "79QIGP5DXz5ZHYnCPi3tLz+elOQi6gudp9YINdaJdjG0Yddubo6JRFUM//qCZ0Bap/GJrsUoEBVdSOc4AkMlRA=="; 51817 + url = "https://registry.npmjs.org/rollup/-/rollup-2.54.0.tgz"; 51818 + sha512 = "RHzvstAVwm9A751NxWIbGPFXs3zL4qe/eYg+N7WwGtIXVLy1cK64MiU37+hXeFm1jqipK6DGgMi6Z2hhPuCC3A=="; 51756 51819 }; 51757 51820 }; 51758 51821 "rollup-plugin-babel-4.4.0" = { ··· 51953 52016 sha512 = "tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ=="; 51954 52017 }; 51955 52018 }; 52019 + "run-con-1.2.10" = { 52020 + name = "run-con"; 52021 + packageName = "run-con"; 52022 + version = "1.2.10"; 52023 + src = fetchurl { 52024 + url = "https://registry.npmjs.org/run-con/-/run-con-1.2.10.tgz"; 52025 + sha512 = "n7PZpYmMM26ZO21dd8y3Yw1TRtGABjRtgPSgFS/nhzfvbJMXFtJhJVyEgayMiP+w/23craJjsnfDvx4W4ue/HQ=="; 52026 + }; 52027 + }; 51956 52028 "run-parallel-1.2.0" = { 51957 52029 name = "run-parallel"; 51958 52030 packageName = "run-parallel"; ··· 52241 52313 sha512 = "y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg=="; 52242 52314 }; 52243 52315 }; 52244 - "sass-1.35.2" = { 52316 + "sass-1.36.0" = { 52245 52317 name = "sass"; 52246 52318 packageName = "sass"; 52247 - version = "1.35.2"; 52319 + version = "1.36.0"; 52248 52320 src = fetchurl { 52249 - url = "https://registry.npmjs.org/sass/-/sass-1.35.2.tgz"; 52250 - sha512 = "jhO5KAR+AMxCEwIH3v+4zbB2WB0z67V1X0jbapfVwQQdjHZUGUyukpnoM6+iCMfsIUC016w9OPKQ5jrNOS9uXw=="; 52321 + url = "https://registry.npmjs.org/sass/-/sass-1.36.0.tgz"; 52322 + sha512 = "fQzEjipfOv5kh930nu3Imzq3ie/sGDc/4KtQMJlt7RRdrkQSfe37Bwi/Rf/gfuYHsIuE1fIlDMvpyMcEwjnPvg=="; 52251 52323 }; 52252 52324 }; 52253 52325 "sax-0.5.8" = { ··· 53906 53978 sha512 = "1jAYPRgMapO2BYL+HWsUq5gsAiDGmI0Pn7omc0lk24tcUOMhUB+1hb0u9WBMNzHvXBjevBkjOctjpnt2hMKN6Q=="; 53907 53979 }; 53908 53980 }; 53909 - "snyk-gradle-plugin-3.16.0" = { 53981 + "snyk-gradle-plugin-3.16.1" = { 53910 53982 name = "snyk-gradle-plugin"; 53911 53983 packageName = "snyk-gradle-plugin"; 53912 - version = "3.16.0"; 53984 + version = "3.16.1"; 53913 53985 src = fetchurl { 53914 - url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-3.16.0.tgz"; 53915 - sha512 = "PQegG8GOweJvUDSroysO1E0RK3MxphSUvNG5siRqGHJQ8s+dw9DddYN8kMn5+pTrfzo6zddgDPJxjqsfNR+NIw=="; 53986 + url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-3.16.1.tgz"; 53987 + sha512 = "ii+W544+vCsRe+I4FdmhnYwGq5ZZYacEkUswJoUYmj1sIkkN1G0iUyas/r9mX+ERjQlvzyN4diptZe9OeaTaaA=="; 53916 53988 }; 53917 53989 }; 53918 53990 "snyk-module-3.1.0" = { ··· 53924 53996 sha512 = "HHuOYEAACpUpkFgU8HT57mmxmonaJ4O3YADoSkVhnhkmJ+AowqZyJOau703dYHNrq2DvQ7qYw81H7yyxS1Nfjw=="; 53925 53997 }; 53926 53998 }; 53927 - "snyk-mvn-plugin-2.26.1" = { 53999 + "snyk-mvn-plugin-2.26.2" = { 53928 54000 name = "snyk-mvn-plugin"; 53929 54001 packageName = "snyk-mvn-plugin"; 53930 - version = "2.26.1"; 54002 + version = "2.26.2"; 53931 54003 src = fetchurl { 53932 - url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-2.26.1.tgz"; 53933 - sha512 = "DCs53aRT/uK2e1jXzeVG2d+Ll0bmY/YHL+jEYaWJko8XwGoVwqCrVOkRyzXd2KOZUk3gpD6MaxIrBWsc8RJzRA=="; 54004 + url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-2.26.2.tgz"; 54005 + sha512 = "XS6I10OYMzUq60DUqf0Lf4m8uLXZTFH58O++n5W/X4MtSmYV4frrpgZOrrDfzxBM5S7SH9FlKDL3p+1m84yqzg=="; 53934 54006 }; 53935 54007 }; 53936 54008 "snyk-nodejs-lockfile-parser-1.35.0" = { ··· 53951 54023 sha512 = "NiXN+MdWaZxseXVDgCM4CZ5aBgI5LloUbwUP9c3oMZDih9Zj6Vf5edDcL8eM3BGl+a6LceJzB6w+xrIqKCXgQA=="; 53952 54024 }; 53953 54025 }; 53954 - "snyk-nuget-plugin-1.21.1" = { 54026 + "snyk-nuget-plugin-1.22.0" = { 53955 54027 name = "snyk-nuget-plugin"; 53956 54028 packageName = "snyk-nuget-plugin"; 53957 - version = "1.21.1"; 54029 + version = "1.22.0"; 53958 54030 src = fetchurl { 53959 - url = "https://registry.npmjs.org/snyk-nuget-plugin/-/snyk-nuget-plugin-1.21.1.tgz"; 53960 - sha512 = "nRtedIvrow5ODqOKkQWolKrxn8ZoNL3iNJGuW0jNhwv+/9K0XE1UORM5F1ENAsd+nzCSO/kiYAXCc5CNK8HWEw=="; 54031 + url = "https://registry.npmjs.org/snyk-nuget-plugin/-/snyk-nuget-plugin-1.22.0.tgz"; 54032 + sha512 = "R0pmcEYeoM3B6BUMUf30jPQgQo8ngHW0gAabyGMnBV3ZDvJ99TCa7McSIjI/3obdT1ERIKKF6bZxuzps4uzVOA=="; 53961 54033 }; 53962 54034 }; 53963 54035 "snyk-paket-parser-1.6.0" = { ··· 54788 54860 sha512 = "1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg=="; 54789 54861 }; 54790 54862 }; 54863 + "speed-limiter-1.0.2" = { 54864 + name = "speed-limiter"; 54865 + packageName = "speed-limiter"; 54866 + version = "1.0.2"; 54867 + src = fetchurl { 54868 + url = "https://registry.npmjs.org/speed-limiter/-/speed-limiter-1.0.2.tgz"; 54869 + sha512 = "Ax+TbUOho84bWUc3AKqWtkIvAIVws7d6QI4oJkgH4yQ5Yil+lR3vjd/7qd51dHKGzS5bFxg0++QwyNRN7s6rZA=="; 54870 + }; 54871 + }; 54791 54872 "speedometer-0.1.4" = { 54792 54873 name = "speedometer"; 54793 54874 packageName = "speedometer"; ··· 55094 55175 sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung=="; 55095 55176 }; 55096 55177 }; 55097 - "ssb-db2-2.1.4" = { 55178 + "ssb-db2-2.1.5" = { 55098 55179 name = "ssb-db2"; 55099 55180 packageName = "ssb-db2"; 55100 - version = "2.1.4"; 55181 + version = "2.1.5"; 55101 55182 src = fetchurl { 55102 - url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.1.4.tgz"; 55103 - sha512 = "r70wOz0taaIgpFX/I1DbzT1mucfLSHMmXfNMaenmLcrV6vDZFyFvZVyQTn26xgv7JwDkrdD9B/1Y85AH0qjYow=="; 55183 + url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.1.5.tgz"; 55184 + sha512 = "3Sbdf5AavoSqo7h1OQXSZ+RFIuTeu9CJpL2ojI8ySFZMZTsnPo7X7LQ1Bd4cNYTK7DBCvfjwvY01sO8VjFzlgw=="; 55104 55185 }; 55105 55186 }; 55106 55187 "ssb-ebt-5.6.7" = { ··· 55175 55256 sha512 = "FPeyYU/3LpxcagnbmVWE+Q/qzg6keqeOBPbD7sEH9UKixUASeufPKiORDgh8nVX7J9Z+0vUaHt/WG999kGjvVQ=="; 55176 55257 }; 55177 55258 }; 55178 - "ssb-keys-8.1.0" = { 55259 + "ssb-keys-8.2.0" = { 55179 55260 name = "ssb-keys"; 55180 55261 packageName = "ssb-keys"; 55181 - version = "8.1.0"; 55262 + version = "8.2.0"; 55182 55263 src = fetchurl { 55183 - url = "https://registry.npmjs.org/ssb-keys/-/ssb-keys-8.1.0.tgz"; 55184 - sha512 = "RC2gFMptimj2QZZESOViKVhzqgXCnfW3IqUeKLQ/E8nnTdODuCVa3soLYu4KUF8nGIzFIfdKq7L2Teg32kD85w=="; 55264 + url = "https://registry.npmjs.org/ssb-keys/-/ssb-keys-8.2.0.tgz"; 55265 + sha512 = "U5vmEvWlMdmJQDHyiWYzXQwxlq+Th6cYvHy/cfhyoGU1vopiB5ytYm339bfhdmtjjRDSV2SPrm3vcgLrN3KH2w=="; 55185 55266 }; 55186 55267 }; 55187 55268 "ssb-links-3.0.10" = { ··· 55337 55418 sha512 = "RcXRBLqQMwew+aKkaTZ2K0qq2kwe7he8ZUz8cX4bZ6Sr4+yszhRpxqnN6XeK1hA6TTvUltR0RNgOO/fqT3djRg=="; 55338 55419 }; 55339 55420 }; 55340 - "ssb-sort-1.1.3" = { 55341 - name = "ssb-sort"; 55342 - packageName = "ssb-sort"; 55343 - version = "1.1.3"; 55344 - src = fetchurl { 55345 - url = "https://registry.npmjs.org/ssb-sort/-/ssb-sort-1.1.3.tgz"; 55346 - sha512 = "oPsF8lGgcHcIb4F1GddV3CbZTJZ0OzxI9fHXH0Zc7ZjqjFlYdqMDxFSuvqJnmtDydJcswyGANiziP1ghd69jOw=="; 55347 - }; 55348 - }; 55349 55421 "ssb-unix-socket-1.0.0" = { 55350 55422 name = "ssb-unix-socket"; 55351 55423 packageName = "ssb-unix-socket"; ··· 55373 55445 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 55374 55446 }; 55375 55447 }; 55376 - "sscaff-1.2.22" = { 55448 + "sscaff-1.2.28" = { 55377 55449 name = "sscaff"; 55378 55450 packageName = "sscaff"; 55379 - version = "1.2.22"; 55451 + version = "1.2.28"; 55380 55452 src = fetchurl { 55381 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.22.tgz"; 55382 - sha512 = "aEkcIR+UIro2xsDASNy/K0v7hxGi18jgFshHpGrJ/tfB0GlQHQJR0W9y23mNxfDmFg/lbTaR0BdEsgC0znNEGA=="; 55453 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.28.tgz"; 55454 + sha512 = "HSL0UNbfhrfqbz4Pnm/0SVVPXyrqnfu6d/RCfXDCdBtPPeGqhg8JMm5PiBwuFkZ217xacctVmnR5LDwE+2rOeA=="; 55383 55455 }; 55384 55456 }; 55385 55457 "ssh-config-1.1.6" = { ··· 57065 57137 sha512 = "mDAmaltQl6e5zU2VEtoWEf7eLTfuOTGr9zt+BpA3AGHo8MIhKiNSPE9OLTCTOMgj0vj/uL9QBbaNmpG4G1CgIA=="; 57066 57138 }; 57067 57139 }; 57068 - "svelte2tsx-0.4.2" = { 57140 + "svelte2tsx-0.4.3" = { 57069 57141 name = "svelte2tsx"; 57070 57142 packageName = "svelte2tsx"; 57071 - version = "0.4.2"; 57143 + version = "0.4.3"; 57072 57144 src = fetchurl { 57073 - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.4.2.tgz"; 57074 - sha512 = "ya93OOdT/WvHVEEvQ3u+Y4lkUqq0D+mD1szbGUWcYVOdBjJyXUF5MhKS5HEJHWQw4r+XK9UlHk52BMeXR2SI8A=="; 57145 + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.4.3.tgz"; 57146 + sha512 = "bbX1jrqz9Hih7GyeNrMex6HvSNguX+oorW3PPlNZk3hEgz7xXSO6f9Wuu+1dDacKt7GCEJdLjnq0wc1ZhyLqoQ=="; 57075 57147 }; 57076 57148 }; 57077 57149 "sver-compat-1.5.0" = { ··· 57362 57434 sha512 = "33+lQwlLxXoxy0o9WLOgw8OjbXeS3Jv+pSl+nxKc2AOClBI28HsdRPpH0u9Xa9OVjHLT9vonnOMw1ug7YXI0dA=="; 57363 57435 }; 57364 57436 }; 57365 - "systeminformation-5.7.8" = { 57437 + "systeminformation-5.7.12" = { 57366 57438 name = "systeminformation"; 57367 57439 packageName = "systeminformation"; 57368 - version = "5.7.8"; 57440 + version = "5.7.12"; 57369 57441 src = fetchurl { 57370 - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.7.8.tgz"; 57371 - sha512 = "gpFGDPtOtWDxMaQ6/7oe2XM/4ErgSvev1l3sdxChnm1AqDJKzZ3cu+VK7Dq1N02pChPiNNsIbUwe6dCLixfWRg=="; 57442 + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.7.12.tgz"; 57443 + sha512 = "rRMi8JafAXSrGd/aIxgmIxJyGRgRzyOZd75JilvVw13vD98aEaAJzKtezba5DYlTC/86c/XiZzd6VCed5fr/sA=="; 57372 57444 }; 57373 57445 }; 57374 57446 "table-3.8.3" = { ··· 57561 57633 sha512 = "FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA=="; 57562 57634 }; 57563 57635 }; 57564 - "tar-4.4.13" = { 57636 + "tar-4.4.15" = { 57565 57637 name = "tar"; 57566 57638 packageName = "tar"; 57567 - version = "4.4.13"; 57639 + version = "4.4.15"; 57568 57640 src = fetchurl { 57569 - url = "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz"; 57570 - sha512 = "w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA=="; 57641 + url = "https://registry.npmjs.org/tar/-/tar-4.4.15.tgz"; 57642 + sha512 = "ItbufpujXkry7bHH9NpQyTXPbJ72iTlXgkBAYsAjDXk3Ds8t/3NfO5P4xZGy7u+sYuQUbimgzswX4uQIEeNVOA=="; 57571 57643 }; 57572 57644 }; 57573 57645 "tar-4.4.6" = { ··· 57595 57667 src = fetchurl { 57596 57668 url = "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz"; 57597 57669 sha512 = "DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA=="; 57670 + }; 57671 + }; 57672 + "tar-6.1.2" = { 57673 + name = "tar"; 57674 + packageName = "tar"; 57675 + version = "6.1.2"; 57676 + src = fetchurl { 57677 + url = "https://registry.npmjs.org/tar/-/tar-6.1.2.tgz"; 57678 + sha512 = "EwKEgqJ7nJoS+s8QfLYVGMDmAsj+StbI2AM/RTHeUSsOw6Z8bwNBRv5z3CY0m7laC5qUAqruLX5AhMuc5deY3Q=="; 57598 57679 }; 57599 57680 }; 57600 57681 "tar-fs-1.16.3" = { ··· 57876 57957 sha512 = "wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg=="; 57877 57958 }; 57878 57959 }; 57879 - "terminal-kit-1.49.3" = { 57960 + "terminal-kit-1.49.4" = { 57880 57961 name = "terminal-kit"; 57881 57962 packageName = "terminal-kit"; 57882 - version = "1.49.3"; 57963 + version = "1.49.4"; 57883 57964 src = fetchurl { 57884 - url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.49.3.tgz"; 57885 - sha512 = "7GovmExYxwGWOGfTh9LlH9uRt5braMj0bi6HmrhdhGi78Xi3S8hfJhTnio/h4iaN4pKtbAn3ugdGF2ypviZvMA=="; 57965 + url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.49.4.tgz"; 57966 + sha512 = "ehoNOk7xB/QBVX38P2kpoLip+s4Tlb6qYDBAoLg/rdRrrtRlDgs97a9MG0xU1IGq/Qpn47n1rwb5fWbM/Bprag=="; 57886 57967 }; 57887 57968 }; 57888 57969 "terminal-link-2.1.1" = { ··· 58893 58974 sha1 = "2d17d82cf669ada7f9dfe75db4b31f7034b71e29"; 58894 58975 }; 58895 58976 }; 58896 - "torrent-discovery-9.4.0" = { 58977 + "torrent-discovery-9.4.2" = { 58897 58978 name = "torrent-discovery"; 58898 58979 packageName = "torrent-discovery"; 58899 - version = "9.4.0"; 58980 + version = "9.4.2"; 58900 58981 src = fetchurl { 58901 - url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.4.0.tgz"; 58902 - sha512 = "+YW9JGbO5bCuDw9YYW//p4iVLV0aP4C+AYrNQjL/+dSNPUtD1ufK1V8UZERt6rIoeNGhutkSVyeO4Fid9Tjxjg=="; 58982 + url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.4.2.tgz"; 58983 + sha512 = "zM7GKeWJ/jLkC8nb2DXoSD6tcImj7DywoL9ziIDp0Pjqp+zYN7b6rNgPHY+1eJZeiN4bVJZv00hD5ruly2QgwA=="; 58903 58984 }; 58904 58985 }; 58905 58986 "torrent-piece-1.1.2" = { ··· 59082 59163 sha512 = "L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A=="; 59083 59164 }; 59084 59165 }; 59085 - "tree-kit-0.6.2" = { 59166 + "tree-kit-0.7.0" = { 59086 59167 name = "tree-kit"; 59087 59168 packageName = "tree-kit"; 59088 - version = "0.6.2"; 59169 + version = "0.7.0"; 59089 59170 src = fetchurl { 59090 - url = "https://registry.npmjs.org/tree-kit/-/tree-kit-0.6.2.tgz"; 59091 - sha512 = "95UzJA0EMbFfu5sGUUOoXixQMUGkwu82nGM4lmqLyQl+R4H3FK+lS0nT8TZJ5x7JhSHy+saVn7/AOqh6d+tmOg=="; 59171 + url = "https://registry.npmjs.org/tree-kit/-/tree-kit-0.7.0.tgz"; 59172 + sha512 = "MAqFo2oJJ39zmxq3xETx0nMAgZw2z6pnJPjIAehEcrDaeePDhBBTshAlyhCDtezMDTIu1Av+vGE501xN3Sh8VA=="; 59092 59173 }; 59093 59174 }; 59094 59175 "treeify-1.1.0" = { ··· 59820 59901 sha512 = "7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g=="; 59821 59902 }; 59822 59903 }; 59823 - "typegram-3.4.1" = { 59904 + "typegram-3.4.2" = { 59824 59905 name = "typegram"; 59825 59906 packageName = "typegram"; 59826 - version = "3.4.1"; 59907 + version = "3.4.2"; 59827 59908 src = fetchurl { 59828 - url = "https://registry.npmjs.org/typegram/-/typegram-3.4.1.tgz"; 59829 - sha512 = "O3HT/D46tsiIX1Y83gGF6sFoJiEITcqM5S8l8Iz9eyjDvarXFzUQ4mNoHZHoJ1JXlokB17GJk/vOT7Nx+TcpNA=="; 59909 + url = "https://registry.npmjs.org/typegram/-/typegram-3.4.2.tgz"; 59910 + sha512 = "Z+FaPrD+oyzvchLZHmfyz55MuPhJ51tYm6i+gbeZ0W8Yr4LLWQfI0mBlR2v08PzjHuRx26bmZBEM30jSrGbfbg=="; 59830 59911 }; 59831 59912 }; 59832 59913 "typescript-2.9.2" = { ··· 59991 60072 sha512 = "57H3ACYFXeo1IaZ1w02sfA71wI60MGco/IQFjOqK+WtKoprh7Go2/yvd2HPtoJILO2Or84ncLccI4xoHMTSbGg=="; 59992 60073 }; 59993 60074 }; 60075 + "uglify-js-3.14.1" = { 60076 + name = "uglify-js"; 60077 + packageName = "uglify-js"; 60078 + version = "3.14.1"; 60079 + src = fetchurl { 60080 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.1.tgz"; 60081 + sha512 = "JhS3hmcVaXlp/xSo3PKY5R0JqKs5M3IV+exdLHW99qKvKivPO4Z8qbej6mte17SOPqAOVMjt/XGgWacnFSzM3g=="; 60082 + }; 60083 + }; 59994 60084 "uglify-js-3.4.10" = { 59995 60085 name = "uglify-js"; 59996 60086 packageName = "uglify-js"; ··· 61215 61305 sha512 = "3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA=="; 61216 61306 }; 61217 61307 }; 61218 - "url-parse-1.5.1" = { 61308 + "url-parse-1.5.3" = { 61219 61309 name = "url-parse"; 61220 61310 packageName = "url-parse"; 61221 - version = "1.5.1"; 61311 + version = "1.5.3"; 61222 61312 src = fetchurl { 61223 - url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz"; 61224 - sha512 = "HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q=="; 61313 + url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz"; 61314 + sha512 = "IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ=="; 61225 61315 }; 61226 61316 }; 61227 61317 "url-parse-lax-1.0.0" = { ··· 62170 62260 sha512 = "/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w=="; 62171 62261 }; 62172 62262 }; 62173 - "verda-1.3.0" = { 62263 + "verda-1.3.2" = { 62174 62264 name = "verda"; 62175 62265 packageName = "verda"; 62176 - version = "1.3.0"; 62266 + version = "1.3.2"; 62177 62267 src = fetchurl { 62178 - url = "https://registry.npmjs.org/verda/-/verda-1.3.0.tgz"; 62179 - sha512 = "EldyK2oyHMxIKj5aMC1R75aN1XH8vH96ga1PgkuXrK5ZhYndR4g8TvBTomXpIgGvwhICjq5LZITZ37Xz/YHxAg=="; 62268 + url = "https://registry.npmjs.org/verda/-/verda-1.3.2.tgz"; 62269 + sha512 = "uheYzfPZDvcyXX5nR/eAIB2jKtvbCPhmcEpbJESU7I3QykvIvZWozdb5MEdBAx9e6LyS6TqtBp6BwGBMTO7Xow=="; 62180 62270 }; 62181 62271 }; 62182 62272 "verror-1.1.0" = { ··· 62575 62665 sha512 = "DTMa8QbVmujFPvD3NxoC5jjIXCyCG+cvn3hNzwQRhvhsk8LblNymBZBwzfcDdgEtqsi4O/2AB5HnMIRzxhzEzg=="; 62576 62666 }; 62577 62667 }; 62578 - "vscode-debugadapter-testsupport-1.47.0" = { 62668 + "vscode-debugadapter-testsupport-1.48.0" = { 62579 62669 name = "vscode-debugadapter-testsupport"; 62580 62670 packageName = "vscode-debugadapter-testsupport"; 62581 - version = "1.47.0"; 62671 + version = "1.48.0"; 62582 62672 src = fetchurl { 62583 - url = "https://registry.npmjs.org/vscode-debugadapter-testsupport/-/vscode-debugadapter-testsupport-1.47.0.tgz"; 62584 - sha512 = "zhEuaMt2RCOcJoTZ5p35k2WhCzk51UN1PlrtwfWJ8fiFhjDvXIG+682Wkq1VyL12EhTf4qOLMLn0X4JlX7eJ6g=="; 62673 + url = "https://registry.npmjs.org/vscode-debugadapter-testsupport/-/vscode-debugadapter-testsupport-1.48.0.tgz"; 62674 + sha512 = "XSPgfFleyHEWvzL1PqleQr+/bFBcqJEKb8lp+fi4xt+JYchNi9Onom+uGpEi22R9hVLdq1J3rE67FTK1xPr1og=="; 62585 62675 }; 62586 62676 }; 62587 - "vscode-debugprotocol-1.47.0" = { 62677 + "vscode-debugprotocol-1.48.0" = { 62588 62678 name = "vscode-debugprotocol"; 62589 62679 packageName = "vscode-debugprotocol"; 62590 - version = "1.47.0"; 62680 + version = "1.48.0"; 62591 62681 src = fetchurl { 62592 - url = "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.47.0.tgz"; 62593 - sha512 = "ii7oCz3Wfr/SGtFr5AYop5dJm0dUmpg0hq2lTzTBdaht8nSheYMMjPntxULBR+2TUxXLcCKFZkF2UEJQduYsIQ=="; 62682 + url = "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.48.0.tgz"; 62683 + sha512 = "l2jtStdGHAca+B/ZmGAeYZtx7NHT9SY9LL6g0QeImKZjQ9P7S6wB2lcBwz1LSkgFltwLw197yFULnCr36OkLKA=="; 62594 62684 }; 62595 62685 }; 62596 62686 "vscode-emmet-helper-1.2.17" = { ··· 63457 63547 sha512 = "6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q=="; 63458 63548 }; 63459 63549 }; 63460 - "webpack-5.43.0" = { 63550 + "webpack-5.46.0" = { 63461 63551 name = "webpack"; 63462 63552 packageName = "webpack"; 63463 - version = "5.43.0"; 63553 + version = "5.46.0"; 63464 63554 src = fetchurl { 63465 - url = "https://registry.npmjs.org/webpack/-/webpack-5.43.0.tgz"; 63466 - sha512 = "ex3nB9uxNI0azzb0r3xGwi+LS5Gw1RCRSKk0kg3kq9MYdIPmLS6UI3oEtG7esBaB51t9I+5H+vHmL3htaxqMSw=="; 63555 + url = "https://registry.npmjs.org/webpack/-/webpack-5.46.0.tgz"; 63556 + sha512 = "qxD0t/KTedJbpcXUmvMxY5PUvXDbF8LsThCzqomeGaDlCA6k998D8yYVwZMvO8sSM3BTEOaD4uzFniwpHaTIJw=="; 63467 63557 }; 63468 63558 }; 63469 - "webpack-5.45.1" = { 63559 + "webpack-5.47.0" = { 63470 63560 name = "webpack"; 63471 63561 packageName = "webpack"; 63472 - version = "5.45.1"; 63562 + version = "5.47.0"; 63473 63563 src = fetchurl { 63474 - url = "https://registry.npmjs.org/webpack/-/webpack-5.45.1.tgz"; 63475 - sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ=="; 63564 + url = "https://registry.npmjs.org/webpack/-/webpack-5.47.0.tgz"; 63565 + sha512 = "soKLGwcUM1R3YEbJhJNiZzy7T43TnI7ENda/ywfDp9G1mDlDTpO+qfc8I5b0AzMr9xM3jyvQ0n7ctJyiXuXW6Q=="; 63476 63566 }; 63477 63567 }; 63478 63568 "webpack-bundle-analyzer-3.9.0" = { ··· 63619 63709 sha512 = "y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA=="; 63620 63710 }; 63621 63711 }; 63712 + "webpack-sources-3.0.1" = { 63713 + name = "webpack-sources"; 63714 + packageName = "webpack-sources"; 63715 + version = "3.0.1"; 63716 + src = fetchurl { 63717 + url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.0.1.tgz"; 63718 + sha512 = "LkBxiXJ3tTuhLaS5gz6D6l77Et8mPWlghAe7bbnmi2PyN1CtkiL/YitR+I0pn9PtBC88Irqgg6F9dBJh8+sJRQ=="; 63719 + }; 63720 + }; 63622 63721 "webpack-stream-6.1.0" = { 63623 63722 name = "webpack-stream"; 63624 63723 packageName = "webpack-stream"; ··· 63664 63763 sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; 63665 63764 }; 63666 63765 }; 63667 - "webtorrent-1.2.5" = { 63766 + "webtorrent-1.3.3" = { 63668 63767 name = "webtorrent"; 63669 63768 packageName = "webtorrent"; 63670 - version = "1.2.5"; 63769 + version = "1.3.3"; 63671 63770 src = fetchurl { 63672 - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.2.5.tgz"; 63673 - sha512 = "EvtAQ3rK4c7Kf4ZGxYOGvi8Jih8qsZka1IgNB8T5Vxw5UzSNG1nxTVNNTXL0jFhQUMsyRwIOkTgd7ZkJY6bqsw=="; 63771 + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.3.3.tgz"; 63772 + sha512 = "JfnAqUguJQHT+jnQPkxD2mGKN1vAbBokrhwsb63q+lBi15xDY26Dx3Uvvfqk1ugr7RpqMpsg7IxW64pTrTfRkQ=="; 63674 63773 }; 63675 63774 }; 63676 63775 "well-known-symbols-2.0.0" = { ··· 65159 65258 sha512 = "2t7FahYnGJys6DpHLhajusId7R0Pm2yTmuL0GV9+mV0ZlaLSnb2toBmppATfg5sWIhZQGlsTLoecSzya+l4EAQ=="; 65160 65259 }; 65161 65260 }; 65162 - "xstate-4.23.0" = { 65261 + "xstate-4.23.1" = { 65163 65262 name = "xstate"; 65164 65263 packageName = "xstate"; 65165 - version = "4.23.0"; 65264 + version = "4.23.1"; 65166 65265 src = fetchurl { 65167 - url = "https://registry.npmjs.org/xstate/-/xstate-4.23.0.tgz"; 65168 - sha512 = "YIKb7thsDfpb6ooWJJuj+UnNZq923dG264zfpS2/vi4dkZz41ugO0ktC6QCBDeMfH8LBHhhqZ06sR4AYgWWnWg=="; 65266 + url = "https://registry.npmjs.org/xstate/-/xstate-4.23.1.tgz"; 65267 + sha512 = "8ZoCe8d6wDSPfkep+GBgi+fKAdMyXcaizoNf5FKceEhlso4+9n1TeK6oviaDsXZ3Z5O8xKkJOxXPNuD4cA9LCw=="; 65169 65268 }; 65170 65269 }; 65171 65270 "xstream-11.14.0" = { ··· 65591 65690 sha512 = "7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA=="; 65592 65691 }; 65593 65692 }; 65594 - "yarn-1.22.10" = { 65693 + "yarn-1.22.11" = { 65595 65694 name = "yarn"; 65596 65695 packageName = "yarn"; 65597 - version = "1.22.10"; 65696 + version = "1.22.11"; 65598 65697 src = fetchurl { 65599 - url = "https://registry.npmjs.org/yarn/-/yarn-1.22.10.tgz"; 65600 - sha512 = "IanQGI9RRPAN87VGTF7zs2uxkSyQSrSPsju0COgbsKQOOXr5LtcVPeyXWgwVa0ywG3d8dg6kSYKGBuYK021qeA=="; 65698 + url = "https://registry.npmjs.org/yarn/-/yarn-1.22.11.tgz"; 65699 + sha512 = "AWje4bzqO9RUn3sdnM5N8n4ZJ0BqCc/kqFJvpOI5/EVkINXui0yuvU7NDCEF//+WaxHuNay2uOHxA4+tq1P3cg=="; 65601 65700 }; 65602 65701 }; 65603 65702 "yarn-1.22.4" = { ··· 65831 65930 "@angular/cli" = nodeEnv.buildNodePackage { 65832 65931 name = "_at_angular_slash_cli"; 65833 65932 packageName = "@angular/cli"; 65834 - version = "12.1.2"; 65933 + version = "12.1.3"; 65835 65934 src = fetchurl { 65836 - url = "https://registry.npmjs.org/@angular/cli/-/cli-12.1.2.tgz"; 65837 - sha512 = "oBJcSqXJyPzWGYft5/nD3hJhunxTGXlI4++9ehzdF/fRipOLLMqf77vi/4rUA2DGuaPMbYJeunBnIsgXRGIHIg=="; 65935 + url = "https://registry.npmjs.org/@angular/cli/-/cli-12.1.3.tgz"; 65936 + sha512 = "XIywpo+8WhwJlEMlb4CXCMdnBSEbU1L1gUzcx5p0poYkWSp1c33Ssd96Jdu3moPP/9aP/49W8fMtoPiIQo3pNQ=="; 65838 65937 }; 65839 65938 dependencies = [ 65840 - sources."@angular-devkit/architect-0.1201.2" 65841 - sources."@angular-devkit/core-12.1.2" 65842 - sources."@angular-devkit/schematics-12.1.2" 65939 + sources."@angular-devkit/architect-0.1201.3" 65940 + sources."@angular-devkit/core-12.1.3" 65941 + sources."@angular-devkit/schematics-12.1.3" 65843 65942 sources."@npmcli/git-2.1.0" 65844 65943 sources."@npmcli/installed-package-contents-1.0.7" 65845 65944 sources."@npmcli/move-file-1.1.2" 65846 65945 sources."@npmcli/node-gyp-1.0.2" 65847 65946 sources."@npmcli/promise-spawn-1.3.2" 65848 65947 sources."@npmcli/run-script-1.8.5" 65849 - sources."@schematics/angular-12.1.2" 65948 + sources."@schematics/angular-12.1.3" 65850 65949 sources."@tootallnate/once-1.1.2" 65851 65950 sources."@yarnpkg/lockfile-1.1.0" 65852 65951 sources."abbrev-1.1.1" ··· 66031 66130 sources."psl-1.8.0" 66032 66131 sources."punycode-2.1.1" 66033 66132 sources."qs-6.5.2" 66034 - sources."read-package-json-fast-2.0.2" 66133 + sources."read-package-json-fast-2.0.3" 66035 66134 sources."readable-stream-3.6.0" 66036 66135 (sources."request-2.88.2" // { 66037 66136 dependencies = [ ··· 66062 66161 sources."strip-ansi-6.0.0" 66063 66162 sources."supports-color-7.2.0" 66064 66163 sources."symbol-observable-4.0.0" 66065 - sources."tar-6.1.0" 66164 + sources."tar-6.1.2" 66066 66165 sources."through-2.3.8" 66067 66166 sources."tmp-0.0.33" 66068 66167 sources."tough-cookie-2.5.0" ··· 66416 66515 ]; 66417 66516 }) 66418 66517 sources."to-utf8-0.0.1" 66419 - sources."uglify-js-3.13.10" 66518 + sources."uglify-js-3.14.1" 66420 66519 sources."unc-path-regex-0.1.2" 66421 66520 sources."unique-stream-2.3.1" 66422 66521 sources."universalify-0.1.2" ··· 66603 66702 "@hyperspace/cli" = nodeEnv.buildNodePackage { 66604 66703 name = "_at_hyperspace_slash_cli"; 66605 66704 packageName = "@hyperspace/cli"; 66606 - version = "1.5.1"; 66705 + version = "2.0.0"; 66607 66706 src = fetchurl { 66608 - url = "https://registry.npmjs.org/@hyperspace/cli/-/cli-1.5.1.tgz"; 66609 - sha512 = "+VU/4tWRLf8jVMYyYo1A/rzkZHg0F3LLSvxNti0515a8VD8iyGbyd07nbh88yZC0SWpzMtUZ9ULtKXB2E53MWQ=="; 66707 + url = "https://registry.npmjs.org/@hyperspace/cli/-/cli-2.0.0.tgz"; 66708 + sha512 = "YWis7dhbGR5LkGYj7rV3BA/gUusfuugze3LIQUeoggPdF2rdeOZXewSPUydM3UBfsptt0qyw0bPQS+fKT0KDVw=="; 66610 66709 }; 66611 66710 dependencies = [ 66612 66711 sources."@corestore/networker-1.1.0" ··· 66618 66717 sources."@hyperswarm/hypersign-2.1.1" 66619 66718 sources."@hyperswarm/network-2.1.0" 66620 66719 sources."@leichtgewicht/ip-codec-2.0.3" 66621 - sources."@types/node-16.4.0" 66720 + sources."@types/node-16.4.3" 66622 66721 sources."abstract-extension-3.1.1" 66623 66722 sources."abstract-leveldown-6.2.3" 66624 66723 sources."ansi-colors-3.2.3" ··· 67108 67207 "@nestjs/cli" = nodeEnv.buildNodePackage { 67109 67208 name = "_at_nestjs_slash_cli"; 67110 67209 packageName = "@nestjs/cli"; 67111 - version = "8.0.2"; 67210 + version = "8.1.0"; 67112 67211 src = fetchurl { 67113 - url = "https://registry.npmjs.org/@nestjs/cli/-/cli-8.0.2.tgz"; 67114 - sha512 = "q46mQvqhRkmnG6fXTzL9Wk7CtDxRaa2rE1IrDX3CgXaeOgjBZsA3oJKkIqelQHfKWvPGuU6yV6gDF5pOXNXixw=="; 67212 + url = "https://registry.npmjs.org/@nestjs/cli/-/cli-8.1.0.tgz"; 67213 + sha512 = "n+IllUA4uqf+U+5RmV6HsD5V5+kLWKJ8G3ObSIpPK01St1376/X0Pps6AmLMyHC7vzPK5AtQTThKGIUI43PBXw=="; 67115 67214 }; 67116 67215 dependencies = [ 67117 - sources."@angular-devkit/core-12.1.1" 67118 - sources."@angular-devkit/schematics-12.1.1" 67119 - (sources."@angular-devkit/schematics-cli-12.1.1" // { 67216 + sources."@angular-devkit/core-12.1.3" 67217 + sources."@angular-devkit/schematics-12.1.3" 67218 + (sources."@angular-devkit/schematics-cli-12.1.3" // { 67120 67219 dependencies = [ 67121 67220 sources."chalk-4.1.1" 67122 67221 sources."inquirer-8.1.1" ··· 67146 67245 }) 67147 67246 sources."@types/eslint-7.28.0" 67148 67247 sources."@types/eslint-scope-3.7.1" 67149 - sources."@types/estree-0.0.49" 67248 + sources."@types/estree-0.0.50" 67150 67249 sources."@types/json-schema-7.0.8" 67151 - sources."@types/node-16.4.0" 67250 + sources."@types/node-16.4.3" 67152 67251 sources."@types/parse-json-4.0.0" 67153 67252 sources."@webassemblyjs/ast-1.11.1" 67154 67253 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 67187 67286 sources."buffer-5.7.1" 67188 67287 sources."buffer-from-1.1.1" 67189 67288 sources."callsites-3.1.0" 67190 - sources."caniuse-lite-1.0.30001246" 67289 + sources."caniuse-lite-1.0.30001247" 67191 67290 sources."chalk-3.0.0" 67192 67291 sources."chardet-0.7.0" 67193 67292 sources."chokidar-3.5.2" ··· 67214 67313 sources."cross-spawn-7.0.3" 67215 67314 sources."deepmerge-4.2.2" 67216 67315 sources."defaults-1.0.3" 67217 - sources."electron-to-chromium-1.3.782" 67316 + sources."electron-to-chromium-1.3.788" 67218 67317 sources."emoji-regex-8.0.0" 67219 67318 sources."end-of-stream-1.4.4" 67220 67319 (sources."enhanced-resolve-5.8.2" // { ··· 67240 67339 sources."fast-json-stable-stringify-2.1.0" 67241 67340 sources."figures-3.2.0" 67242 67341 sources."fill-range-7.0.1" 67243 - (sources."fork-ts-checker-webpack-plugin-6.2.12" // { 67342 + (sources."fork-ts-checker-webpack-plugin-6.2.13" // { 67244 67343 dependencies = [ 67245 67344 sources."chalk-4.1.1" 67246 67345 sources."fs-extra-9.1.0" ··· 67278 67377 sources."is-glob-4.0.1" 67279 67378 sources."is-interactive-1.0.0" 67280 67379 sources."is-number-7.0.0" 67281 - sources."is-stream-2.0.0" 67380 + sources."is-stream-2.0.1" 67282 67381 sources."is-unicode-supported-0.1.0" 67283 67382 sources."isexe-2.0.0" 67284 67383 (sources."jest-worker-27.0.6" // { ··· 67411 67510 sources."util-deprecate-1.0.2" 67412 67511 sources."watchpack-2.2.0" 67413 67512 sources."wcwidth-1.0.1" 67414 - (sources."webpack-5.43.0" // { 67513 + (sources."webpack-5.46.0" // { 67415 67514 dependencies = [ 67416 67515 sources."ajv-6.12.6" 67417 67516 sources."json-schema-traverse-0.4.1" ··· 67623 67722 sources."@types/long-4.0.1" 67624 67723 sources."@types/mime-1.3.2" 67625 67724 sources."@types/minimatch-3.0.5" 67626 - sources."@types/node-16.4.0" 67725 + sources."@types/node-16.4.3" 67627 67726 sources."@types/normalize-package-data-2.4.1" 67628 67727 sources."@types/qs-6.9.7" 67629 67728 sources."@types/range-parser-1.2.4" ··· 67766 67865 sources."call-bind-1.0.2" 67767 67866 sources."call-me-maybe-1.0.1" 67768 67867 sources."camelcase-5.3.1" 67769 - sources."caniuse-lite-1.0.30001246" 67868 + sources."caniuse-lite-1.0.30001247" 67770 67869 sources."caseless-0.12.0" 67771 67870 sources."caw-2.0.1" 67772 67871 sources."chalk-2.4.2" ··· 67894 67993 sources."ecc-jsbn-0.1.2" 67895 67994 sources."ee-first-1.1.1" 67896 67995 sources."ejs-2.7.4" 67897 - sources."electron-to-chromium-1.3.782" 67996 + sources."electron-to-chromium-1.3.788" 67898 67997 sources."emoji-regex-7.0.3" 67899 67998 sources."encodeurl-1.0.2" 67900 67999 sources."end-of-stream-1.4.4" ··· 67977 68076 }) 67978 68077 sources."find-up-3.0.0" 67979 68078 sources."fkill-6.2.0" 67980 - sources."flow-parser-0.155.1" 68079 + sources."flow-parser-0.156.0" 67981 68080 sources."for-each-0.3.3" 67982 68081 sources."for-in-1.0.2" 67983 68082 sources."forever-agent-0.6.1" ··· 68134 68233 (sources."jscodeshift-0.11.0" // { 68135 68234 dependencies = [ 68136 68235 sources."ast-types-0.14.2" 68137 - sources."recast-0.20.4" 68236 + sources."recast-0.20.5" 68138 68237 sources."source-map-0.6.1" 68139 68238 sources."tslib-2.3.0" 68140 68239 ]; ··· 68353 68452 }) 68354 68453 sources."regenerate-1.4.2" 68355 68454 sources."regenerate-unicode-properties-8.2.0" 68356 - sources."regenerator-runtime-0.13.8" 68455 + sources."regenerator-runtime-0.13.9" 68357 68456 sources."regenerator-transform-0.14.5" 68358 68457 (sources."regex-not-1.0.2" // { 68359 68458 dependencies = [ ··· 68518 68617 sources."cross-spawn-7.0.3" 68519 68618 sources."execa-3.4.0" 68520 68619 sources."get-stream-5.2.0" 68521 - sources."is-stream-2.0.0" 68620 + sources."is-stream-2.0.1" 68522 68621 sources."mimic-fn-2.1.0" 68523 68622 sources."npm-run-path-4.0.1" 68524 68623 sources."onetime-5.1.2" ··· 68904 69003 sources."balanced-match-1.0.2" 68905 69004 sources."brace-expansion-1.1.11" 68906 69005 sources."browserslist-4.16.6" 68907 - sources."caniuse-lite-1.0.30001246" 69006 + sources."caniuse-lite-1.0.30001247" 68908 69007 sources."chalk-2.4.2" 68909 69008 sources."color-convert-1.9.3" 68910 69009 sources."color-name-1.1.3" 68911 69010 sources."colorette-1.2.2" 68912 69011 sources."colors-1.4.0" 68913 - sources."commander-8.0.0" 69012 + sources."commander-8.1.0" 68914 69013 sources."concat-map-0.0.1" 68915 69014 sources."convert-source-map-1.8.0" 68916 69015 sources."debug-4.3.2" 68917 69016 sources."ejs-3.1.6" 68918 - sources."electron-to-chromium-1.3.782" 69017 + sources."electron-to-chromium-1.3.788" 68919 69018 sources."ensure-posix-path-1.1.1" 68920 69019 sources."escalade-3.1.1" 68921 69020 sources."escape-string-regexp-1.0.5" ··· 69009 69108 dependencies = [ 69010 69109 sources."@types/glob-7.1.4" 69011 69110 sources."@types/minimatch-3.0.5" 69012 - sources."@types/node-16.4.0" 69111 + sources."@types/node-16.4.3" 69013 69112 sources."balanced-match-1.0.2" 69014 69113 sources."brace-expansion-1.1.11" 69015 69114 sources."chromium-pickle-js-0.2.0" ··· 69044 69143 }; 69045 69144 dependencies = [ 69046 69145 sources."browserslist-4.16.6" 69047 - sources."caniuse-lite-1.0.30001246" 69146 + sources."caniuse-lite-1.0.30001247" 69048 69147 sources."colorette-1.2.2" 69049 - sources."electron-to-chromium-1.3.782" 69148 + sources."electron-to-chromium-1.3.788" 69050 69149 sources."escalade-3.1.1" 69051 69150 sources."fraction.js-4.1.1" 69052 69151 sources."node-releases-1.1.73" ··· 69073 69172 }; 69074 69173 dependencies = [ 69075 69174 sources."@tootallnate/once-1.1.2" 69076 - sources."@types/node-16.4.0" 69175 + sources."@types/node-16.4.3" 69077 69176 sources."@types/yauzl-2.9.2" 69078 69177 sources."agent-base-6.0.2" 69079 69178 sources."ansi-escapes-4.3.2" 69080 69179 sources."ansi-regex-5.0.0" 69081 69180 sources."ansi-styles-4.3.0" 69082 69181 sources."ast-types-0.13.4" 69083 - (sources."aws-sdk-2.951.0" // { 69182 + (sources."aws-sdk-2.954.0" // { 69084 69183 dependencies = [ 69085 69184 sources."uuid-3.3.2" 69086 69185 ]; ··· 69109 69208 sources."clone-1.0.4" 69110 69209 sources."color-convert-2.0.1" 69111 69210 sources."color-name-1.1.4" 69112 - sources."commander-8.0.0" 69211 + sources."commander-8.1.0" 69113 69212 sources."concat-map-0.0.1" 69114 69213 sources."core-util-is-1.0.2" 69115 69214 sources."css-select-4.1.3" ··· 69300 69399 sources."@cto.af/textdecoder-0.0.0" 69301 69400 (sources."@grpc/grpc-js-1.3.2" // { 69302 69401 dependencies = [ 69303 - sources."@types/node-16.4.0" 69402 + sources."@types/node-16.4.3" 69304 69403 ]; 69305 69404 }) 69306 69405 sources."@grpc/proto-loader-0.6.2" ··· 69843 69942 sources."process-nextick-args-2.0.1" 69844 69943 (sources."protobufjs-6.11.2" // { 69845 69944 dependencies = [ 69846 - sources."@types/node-16.4.0" 69945 + sources."@types/node-16.4.3" 69847 69946 ]; 69848 69947 }) 69849 69948 sources."proxy-addr-2.0.7" ··· 69958 70057 sources."typedarray-0.0.6" 69959 70058 sources."typedarray-to-buffer-3.1.5" 69960 70059 sources."typeforce-1.18.0" 69961 - sources."typegram-3.4.1" 70060 + sources."typegram-3.4.2" 69962 70061 sources."unique-string-2.0.0" 69963 70062 sources."unpipe-1.0.0" 69964 70063 (sources."update-notifier-5.1.0" // { ··· 70257 70356 sources."loud-rejection-1.6.0" 70258 70357 sources."map-obj-1.0.1" 70259 70358 sources."meow-3.7.0" 70260 - sources."mime-db-1.48.0" 70359 + sources."mime-db-1.49.0" 70261 70360 sources."minimatch-3.0.4" 70262 70361 sources."minimist-1.2.5" 70263 70362 sources."mkdirp-0.5.5" ··· 70656 70755 sources."create-hash-1.2.0" 70657 70756 sources."create-hmac-1.1.7" 70658 70757 sources."crypt-0.0.2" 70659 - sources."crypto-js-4.0.0" 70758 + sources."crypto-js-4.1.1" 70660 70759 sources."csrf-3.1.0" 70661 70760 (sources."csurf-1.11.0" // { 70662 70761 dependencies = [ ··· 71023 71122 sources."@protobufjs/pool-1.1.0" 71024 71123 sources."@protobufjs/utf8-1.1.0" 71025 71124 sources."@types/long-4.0.1" 71026 - sources."@types/node-16.4.0" 71027 - sources."addr-to-ip-port-1.5.1" 71125 + sources."@types/node-16.4.3" 71126 + sources."addr-to-ip-port-1.5.3" 71028 71127 sources."airplay-js-0.2.16" 71029 71128 sources."ajv-6.12.6" 71030 71129 sources."ansi-regex-1.1.1" ··· 71043 71142 sources."base64-js-1.5.1" 71044 71143 sources."bcrypt-pbkdf-1.0.2" 71045 71144 sources."bencode-2.0.1" 71046 - sources."bep53-range-1.1.0" 71145 + sources."bep53-range-1.1.1" 71047 71146 sources."bitfield-0.1.0" 71048 71147 (sources."bittorrent-dht-6.4.2" // { 71049 71148 dependencies = [ ··· 71085 71184 sources."co-3.1.0" 71086 71185 sources."codepage-1.4.0" 71087 71186 sources."combined-stream-1.0.8" 71088 - sources."commander-8.0.0" 71187 + sources."commander-8.1.0" 71089 71188 sources."compact2string-1.4.1" 71090 71189 sources."concat-map-0.0.1" 71091 71190 (sources."concat-stream-2.0.0" // { ··· 71429 71528 cdk8s-cli = nodeEnv.buildNodePackage { 71430 71529 name = "cdk8s-cli"; 71431 71530 packageName = "cdk8s-cli"; 71432 - version = "1.0.0-beta.26"; 71531 + version = "1.0.0-beta.27"; 71433 71532 src = fetchurl { 71434 - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.26.tgz"; 71435 - sha512 = "+ikLey611rDoxLBiYuFaNJZxZ1ytCppSEzW+wBIfV5mkyV8Ug5ldHuFzpeUxShZToyzqq8TwhQ5A3CGTU0tSJw=="; 71533 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.27.tgz"; 71534 + sha512 = "1ezPt50XBr0KDh+UaJhe/aueRsOEHpNohJlCg3IIhxXWmz3jzo4PLdKrhcT6nFNYXhb6tHo1O+YPkWHhWrEb6w=="; 71436 71535 }; 71437 71536 dependencies = [ 71438 - sources."@jsii/spec-1.31.0" 71537 + sources."@jsii/spec-1.32.0" 71439 71538 sources."@types/node-10.17.60" 71440 71539 sources."ansi-regex-5.0.0" 71441 71540 sources."ansi-styles-4.3.0" ··· 71448 71547 sources."cdk8s-plus-17-1.0.0-beta.30" 71449 71548 sources."cliui-7.0.4" 71450 71549 sources."clone-2.1.2" 71451 - (sources."codemaker-1.31.0" // { 71550 + (sources."codemaker-1.32.0" // { 71452 71551 dependencies = [ 71453 71552 sources."fs-extra-9.1.0" 71454 71553 ]; ··· 71457 71556 sources."color-name-1.1.4" 71458 71557 sources."colors-1.4.0" 71459 71558 sources."commonmark-0.29.3" 71460 - sources."constructs-3.3.99" 71559 + sources."constructs-3.3.106" 71461 71560 sources."date-format-3.0.0" 71462 71561 sources."debug-4.3.2" 71463 71562 sources."decamelize-5.0.0" ··· 71506 71605 sources."is-weakmap-2.0.1" 71507 71606 sources."is-weakset-2.0.1" 71508 71607 sources."isarray-2.0.5" 71509 - (sources."jsii-1.31.0" // { 71608 + (sources."jsii-1.32.0" // { 71510 71609 dependencies = [ 71511 71610 sources."fs-extra-9.1.0" 71512 71611 sources."yargs-16.2.0" 71513 71612 ]; 71514 71613 }) 71515 - (sources."jsii-pacmak-1.31.0" // { 71614 + (sources."jsii-pacmak-1.32.0" // { 71516 71615 dependencies = [ 71517 71616 sources."fs-extra-9.1.0" 71518 71617 sources."yargs-16.2.0" 71519 71618 ]; 71520 71619 }) 71521 - (sources."jsii-reflect-1.31.0" // { 71620 + (sources."jsii-reflect-1.32.0" // { 71522 71621 dependencies = [ 71523 71622 sources."fs-extra-9.1.0" 71524 71623 sources."yargs-16.2.0" 71525 71624 ]; 71526 71625 }) 71527 - (sources."jsii-rosetta-1.31.0" // { 71626 + (sources."jsii-rosetta-1.32.0" // { 71528 71627 dependencies = [ 71529 71628 sources."fs-extra-9.1.0" 71530 71629 sources."yargs-16.2.0" 71531 71630 ]; 71532 71631 }) 71533 - (sources."jsii-srcmak-0.1.302" // { 71632 + (sources."jsii-srcmak-0.1.308" // { 71534 71633 dependencies = [ 71535 71634 sources."fs-extra-9.1.0" 71536 71635 ]; 71537 71636 }) 71538 71637 sources."json-schema-0.3.0" 71539 - sources."json2jsii-0.1.272" 71638 + sources."json2jsii-0.1.278" 71540 71639 sources."jsonfile-6.1.0" 71541 71640 sources."jsonschema-1.4.0" 71542 71641 sources."locate-path-5.0.0" ··· 71552 71651 sources."object-is-1.1.5" 71553 71652 sources."object-keys-1.1.1" 71554 71653 sources."object.assign-4.1.2" 71555 - sources."oo-ascii-tree-1.31.0" 71654 + sources."oo-ascii-tree-1.32.0" 71556 71655 sources."p-limit-2.3.0" 71557 71656 sources."p-locate-4.1.0" 71558 71657 sources."p-try-2.2.0" ··· 71572 71671 sources."snake-case-3.0.4" 71573 71672 sources."sort-json-2.0.0" 71574 71673 sources."spdx-license-list-6.4.0" 71575 - sources."sscaff-1.2.22" 71674 + sources."sscaff-1.2.28" 71576 71675 (sources."streamroller-2.2.4" // { 71577 71676 dependencies = [ 71578 71677 sources."date-format-2.1.0" ··· 71628 71727 }; 71629 71728 dependencies = [ 71630 71729 sources."@cdktf/hcl2json-0.4.1" 71631 - sources."@jsii/spec-1.31.0" 71730 + sources."@jsii/spec-1.32.0" 71632 71731 sources."@skorfmann/ink-confirm-input-3.0.0" 71633 71732 sources."@skorfmann/terraform-cloud-1.10.1" 71634 - sources."@types/node-14.17.5" 71635 - sources."@types/node-fetch-2.5.11" 71733 + sources."@types/node-14.17.6" 71734 + sources."@types/node-fetch-2.5.12" 71636 71735 sources."@types/yauzl-2.9.2" 71637 71736 sources."@types/yoga-layout-1.9.2" 71638 71737 (sources."ansi-escapes-4.3.2" // { ··· 71687 71786 sources."commonmark-0.29.3" 71688 71787 sources."compress-commons-4.1.1" 71689 71788 sources."concat-map-0.0.1" 71690 - sources."constructs-3.3.99" 71789 + sources."constructs-3.3.106" 71691 71790 sources."convert-to-spaces-1.0.2" 71692 71791 sources."core-util-is-1.0.2" 71693 71792 sources."crc-32-1.2.0" ··· 71770 71869 sources."is-wsl-2.2.0" 71771 71870 sources."isarray-1.0.0" 71772 71871 sources."js-tokens-4.0.0" 71773 - (sources."jsii-1.31.0" // { 71872 + (sources."jsii-1.32.0" // { 71774 71873 dependencies = [ 71775 71874 sources."fs-extra-9.1.0" 71776 71875 sources."jsonfile-6.1.0" ··· 71778 71877 sources."yargs-16.2.0" 71779 71878 ]; 71780 71879 }) 71781 - (sources."jsii-pacmak-1.31.0" // { 71880 + (sources."jsii-pacmak-1.32.0" // { 71782 71881 dependencies = [ 71783 71882 sources."camelcase-6.2.0" 71784 - sources."codemaker-1.31.0" 71883 + sources."codemaker-1.32.0" 71785 71884 sources."decamelize-5.0.0" 71786 71885 sources."escape-string-regexp-4.0.0" 71787 71886 sources."fs-extra-9.1.0" ··· 71790 71889 sources."yargs-16.2.0" 71791 71890 ]; 71792 71891 }) 71793 - (sources."jsii-reflect-1.31.0" // { 71892 + (sources."jsii-reflect-1.32.0" // { 71794 71893 dependencies = [ 71795 71894 sources."fs-extra-9.1.0" 71796 71895 sources."jsonfile-6.1.0" ··· 71798 71897 sources."yargs-16.2.0" 71799 71898 ]; 71800 71899 }) 71801 - (sources."jsii-rosetta-1.31.0" // { 71900 + (sources."jsii-rosetta-1.32.0" // { 71802 71901 dependencies = [ 71803 71902 sources."fs-extra-9.1.0" 71804 71903 sources."jsonfile-6.1.0" ··· 71806 71905 sources."yargs-16.2.0" 71807 71906 ]; 71808 71907 }) 71809 - (sources."jsii-srcmak-0.1.302" // { 71908 + (sources."jsii-srcmak-0.1.308" // { 71810 71909 dependencies = [ 71811 71910 sources."fs-extra-9.1.0" 71812 71911 sources."jsonfile-6.1.0" ··· 71848 71947 sources."object.assign-4.1.2" 71849 71948 sources."once-1.4.0" 71850 71949 sources."onetime-5.1.2" 71851 - sources."oo-ascii-tree-1.31.0" 71950 + sources."oo-ascii-tree-1.32.0" 71852 71951 sources."open-7.4.2" 71853 71952 sources."p-limit-2.3.0" 71854 71953 sources."p-locate-4.1.0" ··· 71889 71988 sources."slice-ansi-3.0.0" 71890 71989 sources."sort-json-2.0.0" 71891 71990 sources."spdx-license-list-6.4.0" 71892 - sources."sscaff-1.2.22" 71991 + sources."sscaff-1.2.28" 71893 71992 sources."stack-utils-2.0.3" 71894 71993 sources."stream-buffers-3.0.2" 71895 71994 (sources."streamroller-2.2.4" // { ··· 72121 72220 coc-diagnostic = nodeEnv.buildNodePackage { 72122 72221 name = "coc-diagnostic"; 72123 72222 packageName = "coc-diagnostic"; 72124 - version = "0.20.0"; 72223 + version = "0.21.0"; 72125 72224 src = fetchurl { 72126 - url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.20.0.tgz"; 72127 - sha512 = "iKMyYYkebv31l1LB0EbZtwQ4DeVW0dUh9nXwE0tG3LDahcUNzNi1eXGWeNVxcy+YhWmaLEkLgKTu9DE4zxpACQ=="; 72225 + url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.21.0.tgz"; 72226 + sha512 = "donSKELS/XuVyTpYrfuQDXej340xKZDknKyek4+4ThDYU7Xh5mVeITarDEbi882su0xQBYQsSSwy3zYDocQy7w=="; 72128 72227 }; 72129 72228 buildInputs = globalBuildInputs; 72130 72229 meta = { ··· 72210 72309 sources."inherits-2.0.4" 72211 72310 sources."is-docker-2.2.1" 72212 72311 sources."is-path-inside-3.0.3" 72213 - sources."is-stream-2.0.0" 72312 + sources."is-stream-2.0.1" 72214 72313 sources."is-wsl-2.2.0" 72215 72314 sources."isexe-2.0.0" 72216 72315 sources."make-dir-3.1.0" ··· 72266 72365 coc-git = nodeEnv.buildNodePackage { 72267 72366 name = "coc-git"; 72268 72367 packageName = "coc-git"; 72269 - version = "2.4.1"; 72368 + version = "2.4.3"; 72270 72369 src = fetchurl { 72271 - url = "https://registry.npmjs.org/coc-git/-/coc-git-2.4.1.tgz"; 72272 - sha512 = "CgBUD5qPMvbdTUKTIaeKPxmJSieVJNK3JS1PPgr4ivIXqXYZ4ECP4DM7jmnkA+BnK9Xvz1FnlebUTxTv3z/IFQ=="; 72370 + url = "https://registry.npmjs.org/coc-git/-/coc-git-2.4.3.tgz"; 72371 + sha512 = "JJq0jIXe4UyOI51JkyqQYPoAVXkTYWUuYBpWI/FMEDC/RVF8myL42GmqAZN3ikGhO/ErA/r4KmVhhb1UrfQqIQ=="; 72273 72372 }; 72274 72373 buildInputs = globalBuildInputs; 72275 72374 meta = { ··· 72483 72582 sha512 = "EiD4lpcGW2WyzxEDpRMYPrjxAa0FhG69SzDoc1KbDht2Do/vgnRzvrtIsufPT14dALAesieN3kVVMCCfA9S6jA=="; 72484 72583 }; 72485 72584 dependencies = [ 72486 - sources."@chemzqm/neovim-5.2.13" 72585 + sources."@chemzqm/neovim-5.3.4" 72487 72586 sources."@tootallnate/once-1.1.2" 72488 72587 sources."agent-base-6.0.2" 72489 72588 sources."arch-2.2.0" ··· 72527 72626 sources."fb-watchman-2.0.1" 72528 72627 sources."flatted-2.0.2" 72529 72628 sources."follow-redirects-1.14.1" 72530 - sources."fp-ts-2.10.5" 72629 + sources."fp-ts-2.11.0" 72531 72630 sources."fs-extra-8.1.0" 72532 72631 sources."fs-minipass-2.1.0" 72533 72632 sources."fs.realpath-1.0.0" ··· 72631 72730 sources."string_decoder-1.1.1" 72632 72731 sources."strip-eof-1.0.0" 72633 72732 sources."strip-json-comments-2.0.1" 72634 - sources."tar-6.1.0" 72733 + sources."tar-6.1.2" 72635 72734 sources."traverse-0.3.9" 72636 72735 sources."tslib-2.3.0" 72637 72736 sources."unbox-primitive-1.0.1" ··· 72769 72868 sources."callsites-3.1.0" 72770 72869 sources."camelcase-2.1.1" 72771 72870 sources."camelcase-keys-2.1.0" 72772 - sources."caniuse-lite-1.0.30001246" 72871 + sources."caniuse-lite-1.0.30001247" 72773 72872 sources."capture-stack-trace-1.0.1" 72774 72873 sources."ccount-1.1.0" 72775 72874 (sources."chalk-4.1.1" // { ··· 72867 72966 sources."domutils-1.7.0" 72868 72967 sources."dot-prop-5.3.0" 72869 72968 sources."duplexer3-0.1.4" 72870 - sources."electron-to-chromium-1.3.782" 72969 + sources."electron-to-chromium-1.3.788" 72871 72970 sources."emoji-regex-8.0.0" 72872 72971 sources."end-of-stream-1.4.4" 72873 72972 sources."enquirer-2.3.6" ··· 73666 73765 coc-pyright = nodeEnv.buildNodePackage { 73667 73766 name = "coc-pyright"; 73668 73767 packageName = "coc-pyright"; 73669 - version = "1.1.157"; 73768 + version = "1.1.158"; 73670 73769 src = fetchurl { 73671 - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.157.tgz"; 73672 - sha512 = "GyjrMQFSqrAnBB0SlZC93JV9E8VAcsDhfCBHZ6DIRDCH9qsSI3g0Y0RGJp7v+JHDDZTrEPJiiPOu1e/6PFA90A=="; 73770 + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.158.tgz"; 73771 + sha512 = "+aEgJAgklX3jRe+NkV4e5IgvU+6j0TtZFcjaKA50dYLiYUzjut7utjsxmBkrmacOEqRjcYlyWcHNpF20QaNZFQ=="; 73673 73772 }; 73674 73773 dependencies = [ 73675 - sources."pyright-1.1.157" 73774 + sources."pyright-1.1.158" 73676 73775 ]; 73677 73776 buildInputs = globalBuildInputs; 73678 73777 meta = { ··· 73746 73845 coc-rust-analyzer = nodeEnv.buildNodePackage { 73747 73846 name = "coc-rust-analyzer"; 73748 73847 packageName = "coc-rust-analyzer"; 73749 - version = "0.47.2"; 73848 + version = "0.47.3"; 73750 73849 src = fetchurl { 73751 - url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.47.2.tgz"; 73752 - sha512 = "DtUoWcXd++TT9PjjB5JDT3r+2c6wdZZlf2pCXeInELfwW/P4p10BKxP8EnMhkNq4jIzfP0V9QAwLMMppACFuRA=="; 73850 + url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.47.3.tgz"; 73851 + sha512 = "S7ccnNNqL0ucbVuWlRA/41m/0dwwbD65p3/2IfQ5p2EyV74bcIVcTtU04rRfX9G2pdYOqWcCtmXT0hXfjHEZHQ=="; 73753 73852 }; 73754 73853 buildInputs = globalBuildInputs; 73755 73854 meta = { ··· 73878 73977 sources."callsites-3.1.0" 73879 73978 sources."camelcase-5.3.1" 73880 73979 sources."camelcase-keys-6.2.2" 73881 - sources."caniuse-lite-1.0.30001246" 73980 + sources."caniuse-lite-1.0.30001247" 73882 73981 (sources."chalk-4.1.1" // { 73883 73982 dependencies = [ 73884 73983 sources."ansi-styles-4.3.0" ··· 73916 74015 sources."domelementtype-1.3.1" 73917 74016 sources."domhandler-2.4.2" 73918 74017 sources."domutils-1.7.0" 73919 - sources."electron-to-chromium-1.3.782" 74018 + sources."electron-to-chromium-1.3.788" 73920 74019 sources."emoji-regex-8.0.0" 73921 74020 sources."entities-1.1.2" 73922 74021 sources."error-ex-1.3.2" ··· 74290 74389 coc-tsserver = nodeEnv.buildNodePackage { 74291 74390 name = "coc-tsserver"; 74292 74391 packageName = "coc-tsserver"; 74293 - version = "1.8.1"; 74392 + version = "1.8.2"; 74294 74393 src = fetchurl { 74295 - url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.8.1.tgz"; 74296 - sha512 = "qkVsa46XLmOCmohpQhhz1SG9vUQN/54b/zZsDI5fnuBM49GX9f+Aya8m9ZidAzuwFKV+ostgvdWaB+GeQPPNPQ=="; 74394 + url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.8.2.tgz"; 74395 + sha512 = "bQ5bKzQ96W4ZMYZ2hkumWJsHOHtgNa/i3jS9DHqTeLLgesDg7KdHBxKDUbdVHq7BEG6TSPZF2m1BRpjxQPuS3A=="; 74297 74396 }; 74298 74397 dependencies = [ 74299 74398 sources."typescript-4.3.5" ··· 74722 74821 sources."http-proxy-1.18.1" 74723 74822 sources."inherits-2.0.4" 74724 74823 sources."is-arrayish-0.3.2" 74725 - sources."is-stream-2.0.0" 74824 + sources."is-stream-2.0.1" 74726 74825 sources."isarray-1.0.0" 74727 74826 sources."kuler-2.0.0" 74728 74827 sources."logform-2.2.0" ··· 75074 75173 sources."is-number-7.0.0" 75075 75174 sources."is-obj-2.0.0" 75076 75175 sources."is-path-inside-3.0.3" 75077 - sources."is-stream-2.0.0" 75176 + sources."is-stream-2.0.1" 75078 75177 sources."is-typedarray-1.0.0" 75079 75178 sources."is-wsl-2.2.0" 75080 75179 sources."is-yarn-global-0.3.0" ··· 75226 75325 sources."read-1.0.7" 75227 75326 sources."read-chunk-3.2.0" 75228 75327 sources."read-package-json-2.1.2" 75229 - sources."read-package-json-fast-2.0.2" 75328 + sources."read-package-json-fast-2.0.3" 75230 75329 sources."readable-stream-2.3.7" 75231 75330 sources."registry-auth-token-4.2.1" 75232 75331 sources."registry-url-5.1.0" ··· 75292 75391 sources."strip-json-comments-2.0.1" 75293 75392 sources."supports-color-7.2.0" 75294 75393 sources."systeminformation-4.34.23" 75295 - sources."tar-6.1.0" 75394 + sources."tar-6.1.2" 75296 75395 sources."term-size-2.2.1" 75297 75396 sources."through-2.3.8" 75298 75397 sources."tmp-0.2.1" ··· 75383 75482 sources."@types/glob-7.1.4" 75384 75483 sources."@types/minimatch-3.0.5" 75385 75484 sources."@types/minimist-1.2.2" 75386 - sources."@types/node-16.4.0" 75485 + sources."@types/node-16.4.3" 75387 75486 sources."@types/normalize-package-data-2.4.1" 75388 75487 sources."aggregate-error-3.1.0" 75389 75488 sources."ansi-styles-3.2.1" ··· 75754 75853 sources."@cycle/run-3.4.0" 75755 75854 sources."@cycle/time-0.10.1" 75756 75855 sources."@types/cookiejar-2.1.2" 75757 - sources."@types/node-16.4.0" 75856 + sources."@types/node-16.4.3" 75758 75857 sources."@types/superagent-3.8.2" 75759 75858 sources."ansi-escapes-3.2.0" 75760 75859 sources."ansi-regex-2.1.1" ··· 76730 76829 diagnostic-languageserver = nodeEnv.buildNodePackage { 76731 76830 name = "diagnostic-languageserver"; 76732 76831 packageName = "diagnostic-languageserver"; 76733 - version = "1.11.0"; 76832 + version = "1.12.0"; 76734 76833 src = fetchurl { 76735 - url = "https://registry.npmjs.org/diagnostic-languageserver/-/diagnostic-languageserver-1.11.0.tgz"; 76736 - sha512 = "4kjsgc/rV+qtH3dTqEnR/ug36yKNjyo5z674ySkD6k08DwlLs10fsP/I+d8BAsbtjpL36bqZxLa9iNgTDqioXQ=="; 76834 + url = "https://registry.npmjs.org/diagnostic-languageserver/-/diagnostic-languageserver-1.12.0.tgz"; 76835 + sha512 = "oXWAYO2ACrjFRYPTqUOQz3gCE7U1R5HVkuiqXXTFCcujiAprJjzvV5VAjrJolgA7guyRrXE5HliuDGoWJfWHOw=="; 76737 76836 }; 76738 76837 dependencies = [ 76739 76838 sources."@nodelib/fs.scandir-2.1.5" ··· 76768 76867 sources."is-number-7.0.0" 76769 76868 sources."is-path-cwd-2.2.0" 76770 76869 sources."is-path-inside-3.0.3" 76771 - sources."is-stream-2.0.0" 76870 + sources."is-stream-2.0.1" 76772 76871 sources."locate-path-5.0.0" 76773 76872 sources."lodash-4.17.21" 76774 76873 sources."merge2-1.4.1" ··· 76873 76972 dependencies = [ 76874 76973 sources."@fast-csv/format-4.3.5" 76875 76974 sources."@fast-csv/parse-4.3.6" 76876 - sources."@types/node-14.17.5" 76975 + sources."@types/node-14.17.6" 76877 76976 sources."JSONStream-1.3.5" 76878 76977 sources."ajv-6.12.6" 76879 76978 sources."asn1-0.2.4" ··· 76938 77037 sources."lodash.isnil-4.0.0" 76939 77038 sources."lodash.isundefined-3.0.1" 76940 77039 sources."lodash.uniq-4.5.0" 76941 - sources."lossless-json-1.0.4" 77040 + sources."lossless-json-1.0.5" 76942 77041 sources."method-missing-1.2.4" 76943 77042 sources."mime-db-1.48.0" 76944 77043 sources."mime-types-2.1.31" ··· 77011 77110 "@electron-forge/cli" = nodeEnv.buildNodePackage { 77012 77111 name = "_at_electron-forge_slash_cli"; 77013 77112 packageName = "@electron-forge/cli"; 77014 - version = "6.0.0-beta.58"; 77113 + version = "6.0.0-beta.59"; 77015 77114 src = fetchurl { 77016 - url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.58.tgz"; 77017 - sha512 = "dlGj8lrtUGOwoNaU/zEhbJMOEAqiZUcn9AJrX80saSplkkWEkOpoo4UkLJ256BLyK8nA1+k89pT/KMtFrUFcPg=="; 77115 + url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.59.tgz"; 77116 + sha512 = "cFYnr5LKi+Hg+rzhL2OZq5S7vlqzNS8rlQzXiYtv4Ft6BY27CTJ8mz76nAxgjRFv0/rDUyKTY2NZUOPeztziMQ=="; 77018 77117 }; 77019 77118 dependencies = [ 77020 - sources."@electron-forge/async-ora-6.0.0-beta.58" 77021 - sources."@electron-forge/core-6.0.0-beta.58" 77022 - sources."@electron-forge/installer-base-6.0.0-beta.58" 77023 - sources."@electron-forge/installer-darwin-6.0.0-beta.58" 77024 - sources."@electron-forge/installer-deb-6.0.0-beta.58" 77025 - sources."@electron-forge/installer-dmg-6.0.0-beta.58" 77026 - sources."@electron-forge/installer-exe-6.0.0-beta.58" 77027 - sources."@electron-forge/installer-linux-6.0.0-beta.58" 77028 - sources."@electron-forge/installer-rpm-6.0.0-beta.58" 77029 - sources."@electron-forge/installer-zip-6.0.0-beta.58" 77030 - sources."@electron-forge/maker-base-6.0.0-beta.58" 77031 - sources."@electron-forge/plugin-base-6.0.0-beta.58" 77032 - sources."@electron-forge/publisher-base-6.0.0-beta.58" 77033 - sources."@electron-forge/shared-types-6.0.0-beta.58" 77034 - sources."@electron-forge/template-base-6.0.0-beta.58" 77035 - sources."@electron-forge/template-typescript-6.0.0-beta.58" 77036 - sources."@electron-forge/template-typescript-webpack-6.0.0-beta.58" 77037 - sources."@electron-forge/template-webpack-6.0.0-beta.58" 77119 + sources."@electron-forge/async-ora-6.0.0-beta.59" 77120 + sources."@electron-forge/core-6.0.0-beta.59" 77121 + sources."@electron-forge/installer-base-6.0.0-beta.59" 77122 + sources."@electron-forge/installer-darwin-6.0.0-beta.59" 77123 + sources."@electron-forge/installer-deb-6.0.0-beta.59" 77124 + sources."@electron-forge/installer-dmg-6.0.0-beta.59" 77125 + sources."@electron-forge/installer-exe-6.0.0-beta.59" 77126 + sources."@electron-forge/installer-linux-6.0.0-beta.59" 77127 + sources."@electron-forge/installer-rpm-6.0.0-beta.59" 77128 + sources."@electron-forge/installer-zip-6.0.0-beta.59" 77129 + sources."@electron-forge/maker-base-6.0.0-beta.59" 77130 + sources."@electron-forge/plugin-base-6.0.0-beta.59" 77131 + sources."@electron-forge/publisher-base-6.0.0-beta.59" 77132 + sources."@electron-forge/shared-types-6.0.0-beta.59" 77133 + sources."@electron-forge/template-base-6.0.0-beta.59" 77134 + sources."@electron-forge/template-typescript-6.0.0-beta.59" 77135 + sources."@electron-forge/template-typescript-webpack-6.0.0-beta.59" 77136 + sources."@electron-forge/template-webpack-6.0.0-beta.59" 77038 77137 (sources."@electron/get-1.12.4" // { 77039 77138 dependencies = [ 77040 77139 sources."@sindresorhus/is-0.14.0" ··· 77062 77161 ]; 77063 77162 }) 77064 77163 sources."@malept/cross-spawn-promise-2.0.0" 77164 + sources."@nodelib/fs.scandir-2.1.5" 77165 + sources."@nodelib/fs.stat-2.0.5" 77166 + sources."@nodelib/fs.walk-1.2.8" 77065 77167 sources."@sindresorhus/is-4.0.1" 77066 77168 sources."@szmarczak/http-timer-4.0.6" 77067 77169 sources."@types/cacheable-request-6.0.2" ··· 77069 77171 sources."@types/http-cache-semantics-4.0.1" 77070 77172 sources."@types/keyv-3.1.2" 77071 77173 sources."@types/minimatch-3.0.5" 77072 - sources."@types/node-16.4.0" 77174 + sources."@types/node-16.4.3" 77073 77175 sources."@types/responselike-1.0.0" 77074 77176 sources."@types/yauzl-2.9.2" 77075 77177 sources."abbrev-1.1.1" ··· 77109 77211 sources."bluebird-3.7.2" 77110 77212 sources."boolean-3.1.2" 77111 77213 sources."brace-expansion-1.1.11" 77214 + sources."braces-3.0.2" 77112 77215 sources."buffer-5.7.1" 77113 77216 sources."buffer-alloc-1.2.0" 77114 77217 sources."buffer-alloc-unsafe-1.1.0" ··· 77227 77330 sources."extract-zip-2.0.1" 77228 77331 sources."extsprintf-1.3.0" 77229 77332 sources."fast-deep-equal-3.1.3" 77333 + sources."fast-glob-3.2.7" 77230 77334 sources."fast-json-stable-stringify-2.1.0" 77335 + sources."fastq-1.11.1" 77231 77336 sources."fd-slicer-1.1.0" 77232 77337 sources."figures-3.2.0" 77233 77338 sources."filename-reserved-regex-2.0.0" 77234 77339 sources."filenamify-4.3.0" 77340 + sources."fill-range-7.0.1" 77235 77341 (sources."find-up-5.0.0" // { 77236 77342 dependencies = [ 77237 77343 sources."locate-path-6.0.0" ··· 77279 77385 sources."get-stream-5.2.0" 77280 77386 sources."getpass-0.1.7" 77281 77387 sources."glob-7.1.7" 77388 + sources."glob-parent-5.1.2" 77282 77389 sources."global-agent-2.2.0" 77283 77390 sources."global-modules-1.0.0" 77284 77391 (sources."global-prefix-1.0.2" // { ··· 77316 77423 sources."is-arrayish-0.2.1" 77317 77424 sources."is-core-module-2.5.0" 77318 77425 sources."is-docker-2.2.1" 77426 + sources."is-extglob-2.1.1" 77319 77427 sources."is-finite-1.1.0" 77320 77428 sources."is-fullwidth-code-point-1.0.0" 77429 + sources."is-glob-4.0.1" 77321 77430 sources."is-interactive-1.0.0" 77431 + sources."is-number-7.0.0" 77322 77432 sources."is-stream-1.1.0" 77323 77433 sources."is-typedarray-1.0.0" 77324 77434 sources."is-unicode-supported-0.1.0" ··· 77376 77486 sources."strip-bom-2.0.0" 77377 77487 ]; 77378 77488 }) 77489 + sources."merge2-1.4.1" 77490 + sources."micromatch-4.0.4" 77379 77491 sources."mime-db-1.48.0" 77380 77492 sources."mime-types-2.1.31" 77381 77493 sources."mimic-fn-2.1.0" ··· 77410 77522 (sources."node-pre-gyp-0.11.0" // { 77411 77523 dependencies = [ 77412 77524 sources."semver-5.7.1" 77413 - sources."tar-4.4.13" 77525 + sources."tar-4.4.15" 77414 77526 ]; 77415 77527 }) 77416 77528 sources."nopt-4.0.3" ··· 77468 77580 sources."path-type-2.0.0" 77469 77581 sources."pend-1.2.0" 77470 77582 sources."performance-now-2.1.0" 77583 + sources."picomatch-2.3.0" 77471 77584 sources."pify-2.3.0" 77472 77585 sources."pinkie-2.0.4" 77473 77586 sources."pinkie-promise-2.0.1" ··· 77493 77606 sources."pump-3.0.0" 77494 77607 sources."punycode-2.1.1" 77495 77608 sources."qs-6.5.2" 77609 + sources."queue-microtask-1.2.3" 77496 77610 sources."quick-lru-5.1.1" 77497 77611 sources."rc-1.2.8" 77498 77612 sources."rcedit-3.0.1" ··· 77513 77627 sources."resolve-package-1.0.1" 77514 77628 sources."responselike-2.0.0" 77515 77629 sources."restore-cursor-3.1.0" 77630 + sources."reusify-1.0.4" 77516 77631 sources."rimraf-2.7.1" 77517 77632 sources."roarr-2.15.4" 77518 77633 sources."run-async-2.4.1" 77634 + sources."run-parallel-1.2.0" 77519 77635 sources."rxjs-7.2.0" 77520 77636 sources."safe-buffer-5.2.1" 77521 77637 sources."safer-buffer-2.1.2" ··· 77553 77669 sources."sudo-prompt-9.2.1" 77554 77670 sources."sumchecker-3.0.1" 77555 77671 sources."supports-color-7.2.0" 77556 - (sources."tar-6.1.0" // { 77672 + (sources."tar-6.1.2" // { 77557 77673 dependencies = [ 77558 77674 sources."chownr-2.0.0" 77559 77675 sources."fs-minipass-2.1.0" ··· 77574 77690 }) 77575 77691 sources."tmp-0.0.33" 77576 77692 sources."to-readable-stream-1.0.0" 77693 + sources."to-regex-range-5.0.1" 77577 77694 sources."tough-cookie-2.5.0" 77578 77695 sources."trim-newlines-1.0.0" 77579 77696 sources."trim-repeated-1.0.0" ··· 77707 77824 sources."@types/http-cache-semantics-4.0.1" 77708 77825 sources."@types/keyv-3.1.2" 77709 77826 sources."@types/minimist-1.2.2" 77710 - sources."@types/node-16.4.0" 77827 + sources."@types/node-16.4.3" 77711 77828 sources."@types/normalize-package-data-2.4.1" 77712 77829 sources."@types/responselike-1.0.0" 77713 77830 sources."@types/yoga-layout-1.9.2" ··· 77742 77859 sources."quick-lru-4.0.1" 77743 77860 ]; 77744 77861 }) 77745 - sources."caniuse-lite-1.0.30001246" 77862 + sources."caniuse-lite-1.0.30001247" 77746 77863 sources."chalk-2.4.2" 77747 77864 sources."ci-info-2.0.0" 77748 77865 sources."cli-boxes-2.2.1" ··· 77779 77896 }) 77780 77897 sources."defer-to-connect-2.0.1" 77781 77898 sources."dot-prop-5.3.0" 77782 - sources."electron-to-chromium-1.3.782" 77899 + sources."electron-to-chromium-1.3.788" 77783 77900 sources."emoji-regex-8.0.0" 77784 77901 sources."emojilib-2.4.0" 77785 77902 sources."end-of-stream-1.4.4" ··· 78289 78406 sources."minizlib-2.1.2" 78290 78407 sources."p-map-4.0.0" 78291 78408 sources."rimraf-3.0.2" 78292 - sources."tar-6.1.0" 78409 + sources."tar-6.1.2" 78293 78410 ]; 78294 78411 }) 78295 78412 sources."cache-base-1.0.1" ··· 79301 79418 sources."safe-buffer-5.1.2" 79302 79419 sources."safe-regex-1.1.0" 79303 79420 sources."safer-buffer-2.1.2" 79304 - (sources."sass-1.35.2" // { 79421 + (sources."sass-1.36.0" // { 79305 79422 dependencies = [ 79306 79423 sources."anymatch-3.1.2" 79307 79424 sources."binary-extensions-2.2.0" ··· 79480 79597 sources."swagger-ui-dist-3.34.0" 79481 79598 sources."tail-2.2.3" 79482 79599 sources."tapable-1.1.3" 79483 - (sources."tar-4.4.13" // { 79600 + (sources."tar-4.4.15" // { 79484 79601 dependencies = [ 79485 79602 sources."mkdirp-0.5.5" 79486 79603 sources."yallist-3.1.1" ··· 80616 80733 }) 80617 80734 sources."camelcase-5.3.1" 80618 80735 sources."caniuse-api-3.0.0" 80619 - sources."caniuse-lite-1.0.30001246" 80736 + sources."caniuse-lite-1.0.30001247" 80620 80737 sources."caseless-0.12.0" 80621 80738 (sources."chalk-4.1.1" // { 80622 80739 dependencies = [ ··· 80885 81002 sources."ecc-jsbn-0.1.2" 80886 81003 sources."ee-first-1.1.1" 80887 81004 sources."ejs-2.7.4" 80888 - sources."electron-to-chromium-1.3.782" 81005 + sources."electron-to-chromium-1.3.788" 80889 81006 (sources."elliptic-6.5.4" // { 80890 81007 dependencies = [ 80891 81008 sources."bn.js-4.12.0" ··· 81257 81374 sources."is-resolvable-1.1.0" 81258 81375 sources."is-retry-allowed-1.2.0" 81259 81376 sources."is-root-2.1.0" 81260 - sources."is-stream-2.0.0" 81377 + sources."is-stream-2.0.1" 81261 81378 sources."is-string-1.0.6" 81262 81379 sources."is-symbol-1.0.4" 81263 81380 sources."is-typedarray-1.0.0" ··· 81889 82006 sources."react-refresh-0.4.3" 81890 82007 sources."read-chunk-3.2.0" 81891 82008 sources."read-last-lines-1.6.0" 81892 - sources."read-package-json-fast-2.0.2" 82009 + sources."read-package-json-fast-2.0.3" 81893 82010 sources."readable-stream-2.3.7" 81894 82011 sources."readdirp-3.6.0" 81895 82012 sources."recursive-readdir-2.2.2" 81896 82013 sources."regenerate-1.4.2" 81897 82014 sources."regenerate-unicode-properties-8.2.0" 81898 - sources."regenerator-runtime-0.13.8" 82015 + sources."regenerator-runtime-0.13.9" 81899 82016 sources."regenerator-transform-0.14.5" 81900 82017 sources."regex-not-1.0.2" 81901 82018 sources."regexp.prototype.flags-1.3.1" ··· 81958 82075 ]; 81959 82076 }) 81960 82077 sources."ripemd160-2.0.2" 81961 - sources."rollup-2.53.3" 82078 + sources."rollup-2.54.0" 81962 82079 (sources."rollup-plugin-terser-7.0.2" // { 81963 82080 dependencies = [ 81964 82081 sources."commander-2.20.3" ··· 82177 82294 }) 82178 82295 sources."symbol-observable-1.2.0" 82179 82296 sources."tapable-1.1.3" 82180 - (sources."tar-6.1.0" // { 82297 + (sources."tar-6.1.2" // { 82181 82298 dependencies = [ 82182 82299 sources."minipass-3.1.3" 82183 82300 sources."mkdirp-1.0.4" ··· 82296 82413 sources."schema-utils-3.1.1" 82297 82414 ]; 82298 82415 }) 82299 - sources."url-parse-1.5.1" 82416 + sources."url-parse-1.5.3" 82300 82417 (sources."url-parse-lax-3.0.0" // { 82301 82418 dependencies = [ 82302 82419 sources."prepend-http-2.0.0" ··· 82637 82754 sources."@babel/traverse-7.14.8" 82638 82755 sources."@babel/types-7.14.8" 82639 82756 sources."@types/minimist-1.2.2" 82640 - sources."@types/node-16.4.0" 82757 + sources."@types/node-16.4.3" 82641 82758 sources."@types/normalize-package-data-2.4.1" 82642 82759 sources."@types/yauzl-2.9.2" 82643 82760 sources."@types/yoga-layout-1.9.2" ··· 82664 82781 sources."callsites-2.0.0" 82665 82782 sources."camelcase-5.3.1" 82666 82783 sources."camelcase-keys-6.2.2" 82667 - sources."caniuse-lite-1.0.30001246" 82784 + sources."caniuse-lite-1.0.30001247" 82668 82785 sources."chalk-2.4.2" 82669 82786 sources."chownr-1.1.4" 82670 82787 sources."ci-info-2.0.0" ··· 82689 82806 }) 82690 82807 sources."delay-5.0.0" 82691 82808 sources."devtools-protocol-0.0.869402" 82692 - sources."electron-to-chromium-1.3.782" 82809 + sources."electron-to-chromium-1.3.788" 82693 82810 sources."emoji-regex-8.0.0" 82694 82811 sources."end-of-stream-1.4.4" 82695 82812 sources."error-ex-1.3.2" ··· 83543 83660 sources."@types/json-schema-7.0.8" 83544 83661 sources."@types/long-4.0.1" 83545 83662 sources."@types/minimatch-3.0.5" 83546 - sources."@types/node-16.4.0" 83663 + sources."@types/node-16.4.3" 83547 83664 sources."JSONStream-1.3.5" 83548 83665 sources."abbrev-1.1.1" 83549 83666 sources."abort-controller-3.0.0" ··· 83633 83750 (sources."cacache-15.2.0" // { 83634 83751 dependencies = [ 83635 83752 sources."mkdirp-1.0.4" 83636 - sources."tar-6.1.0" 83753 + sources."tar-6.1.2" 83637 83754 ]; 83638 83755 }) 83639 83756 (sources."cacheable-request-6.1.0" // { ··· 83897 84014 sources."google-auth-library-7.3.0" 83898 84015 ]; 83899 84016 }) 83900 - sources."google-p12-pem-3.1.0" 84017 + sources."google-p12-pem-3.1.1" 83901 84018 sources."got-9.6.0" 83902 84019 sources."graceful-fs-4.2.6" 83903 84020 sources."gtoken-5.3.0" ··· 83964 84081 sources."is-obj-2.0.0" 83965 84082 sources."is-path-inside-3.0.3" 83966 84083 sources."is-promise-2.2.2" 83967 - sources."is-stream-2.0.0" 84084 + sources."is-stream-2.0.1" 83968 84085 sources."is-stream-ended-0.1.4" 83969 84086 sources."is-typedarray-1.0.0" 83970 84087 sources."is-url-1.2.4" ··· 84102 84219 dependencies = [ 84103 84220 sources."mkdirp-1.0.4" 84104 84221 sources."semver-7.3.5" 84105 - sources."tar-6.1.0" 84222 + sources."tar-6.1.2" 84106 84223 sources."which-2.0.2" 84107 84224 ]; 84108 84225 }) ··· 84282 84399 sources."has-flag-2.0.0" 84283 84400 ]; 84284 84401 }) 84285 - (sources."tar-4.4.13" // { 84402 + (sources."tar-4.4.15" // { 84286 84403 dependencies = [ 84287 84404 sources."chownr-1.1.4" 84288 84405 sources."fs-minipass-1.2.7" ··· 84530 84647 sources."is-core-module-2.5.0" 84531 84648 sources."is-fullwidth-code-point-3.0.0" 84532 84649 sources."is-plain-obj-1.1.0" 84533 - sources."is-stream-2.0.0" 84650 + sources."is-stream-2.0.1" 84534 84651 sources."isexe-2.0.0" 84535 84652 sources."js-tokens-4.0.0" 84536 84653 sources."json-parse-even-better-errors-2.3.1" ··· 84649 84766 dependencies = [ 84650 84767 sources."@types/atob-2.1.2" 84651 84768 sources."@types/inquirer-6.5.0" 84652 - sources."@types/node-16.4.0" 84769 + sources."@types/node-16.4.3" 84653 84770 sources."@types/through-0.0.30" 84654 84771 sources."ajv-6.12.6" 84655 84772 sources."ansi-escapes-4.3.2" ··· 85300 85417 sources."has-flag-4.0.0" 85301 85418 sources."indent-string-4.0.0" 85302 85419 sources."is-fullwidth-code-point-3.0.0" 85303 - sources."lossless-json-1.0.4" 85420 + sources."lossless-json-1.0.5" 85304 85421 sources."string-width-4.2.2" 85305 85422 sources."strip-ansi-6.0.0" 85306 85423 sources."supports-color-7.2.0" ··· 85434 85551 sources."@types/istanbul-lib-report-3.0.0" 85435 85552 sources."@types/istanbul-reports-1.1.2" 85436 85553 sources."@types/json-patch-0.0.30" 85437 - sources."@types/node-16.4.0" 85438 - sources."@types/node-fetch-2.5.11" 85554 + sources."@types/node-16.4.3" 85555 + sources."@types/node-fetch-2.5.12" 85439 85556 sources."@types/unist-2.0.6" 85440 85557 sources."@types/yargs-15.0.14" 85441 85558 sources."@types/yargs-parser-20.2.1" ··· 85501 85618 sources."call-bind-1.0.2" 85502 85619 sources."camel-case-4.1.2" 85503 85620 sources."camelcase-5.3.1" 85504 - sources."caniuse-lite-1.0.30001246" 85621 + sources."caniuse-lite-1.0.30001247" 85505 85622 sources."ccount-1.1.0" 85506 85623 (sources."chalk-4.1.1" // { 85507 85624 dependencies = [ ··· 85551 85668 ]; 85552 85669 }) 85553 85670 sources."content-type-1.0.4" 85554 - sources."contentful-management-7.30.0" 85671 + sources."contentful-management-7.31.0" 85555 85672 sources."contentful-sdk-core-6.8.0" 85556 85673 sources."convert-hrtime-3.0.0" 85557 85674 (sources."convert-source-map-1.8.0" // { ··· 85597 85714 sources."dotenv-8.6.0" 85598 85715 sources."duplexer3-0.1.4" 85599 85716 sources."ee-first-1.1.1" 85600 - sources."electron-to-chromium-1.3.782" 85717 + sources."electron-to-chromium-1.3.788" 85601 85718 sources."emoji-regex-7.0.3" 85602 85719 sources."encodeurl-1.0.2" 85603 85720 sources."end-of-stream-1.4.4" ··· 85613 85730 dependencies = [ 85614 85731 sources."cross-spawn-7.0.3" 85615 85732 sources."get-stream-6.0.1" 85616 - sources."is-stream-2.0.0" 85733 + sources."is-stream-2.0.1" 85617 85734 sources."npm-run-path-4.0.1" 85618 85735 sources."path-key-3.1.1" 85619 85736 sources."shebang-command-2.0.0" ··· 85904 86021 sources."readable-web-to-node-stream-3.0.2" 85905 86022 sources."readdirp-3.6.0" 85906 86023 sources."redux-4.1.0" 85907 - sources."regenerator-runtime-0.13.8" 86024 + sources."regenerator-runtime-0.13.9" 85908 86025 sources."registry-auth-token-4.2.1" 85909 86026 sources."registry-url-5.1.0" 85910 86027 sources."remark-mdx-2.0.0-next.9" ··· 86067 86184 sources."write-file-atomic-3.0.3" 86068 86185 sources."ws-7.5.3" 86069 86186 sources."xdg-basedir-4.0.0" 86070 - sources."xstate-4.23.0" 86187 + sources."xstate-4.23.1" 86071 86188 sources."xtend-4.0.2" 86072 86189 sources."y18n-4.0.3" 86073 86190 sources."yallist-4.0.0" ··· 86356 86473 gitmoji-cli = nodeEnv.buildNodePackage { 86357 86474 name = "gitmoji-cli"; 86358 86475 packageName = "gitmoji-cli"; 86359 - version = "4.1.0"; 86476 + version = "4.2.0"; 86360 86477 src = fetchurl { 86361 - url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.1.0.tgz"; 86362 - sha512 = "xf6lKP7Ptas6bIdn/KvOn7UqkPS9/BBKcGCDVrsak/e0dWYeDZIOCMNwWxLp/zEjwBMSiPZtJdOdsIdmWap3bQ=="; 86478 + url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.2.0.tgz"; 86479 + sha512 = "tpmDCrNmPrb1z5hauKtxXxYdHaV4+K4AjZqkzyQzDcV6tpUSBwYMGu66pFpw7g0Ux4QnE0pYSsdh3efDfYv1Pg=="; 86363 86480 }; 86364 86481 dependencies = [ 86365 86482 sources."@babel/code-frame-7.14.5" ··· 86395 86512 sources."ansi-regex-5.0.0" 86396 86513 sources."ansi-styles-4.3.0" 86397 86514 sources."arrify-1.0.1" 86398 - (sources."ast-types-0.13.4" // { 86399 - dependencies = [ 86400 - sources."tslib-2.3.0" 86401 - ]; 86402 - }) 86515 + sources."ast-types-0.13.4" 86403 86516 sources."atomically-1.7.0" 86404 86517 sources."base64-js-1.5.1" 86405 86518 sources."bl-4.1.0" ··· 86453 86566 sources."deep-is-0.1.3" 86454 86567 sources."defaults-1.0.3" 86455 86568 sources."defer-to-connect-1.1.3" 86456 - sources."degenerator-2.2.0" 86569 + sources."degenerator-3.0.1" 86457 86570 sources."depd-1.1.2" 86458 86571 sources."dot-prop-6.0.1" 86459 86572 sources."duplexer3-0.1.4" ··· 86509 86622 sources."indent-string-4.0.0" 86510 86623 sources."inherits-2.0.4" 86511 86624 sources."ini-2.0.0" 86512 - sources."inquirer-7.3.3" 86513 - sources."inquirer-autocomplete-prompt-1.4.0" 86625 + sources."inquirer-8.1.2" 86626 + (sources."inquirer-autocomplete-prompt-1.4.0" // { 86627 + dependencies = [ 86628 + sources."rxjs-6.6.7" 86629 + sources."tslib-1.14.1" 86630 + ]; 86631 + }) 86514 86632 sources."ip-1.1.5" 86515 86633 sources."is-arrayish-0.2.1" 86516 86634 sources."is-ci-2.0.0" ··· 86522 86640 sources."is-obj-2.0.0" 86523 86641 sources."is-path-inside-3.0.3" 86524 86642 sources."is-plain-obj-1.1.0" 86525 - sources."is-stream-2.0.0" 86643 + sources."is-stream-2.0.1" 86526 86644 sources."is-typedarray-1.0.0" 86527 86645 sources."is-unicode-supported-0.1.0" 86528 86646 sources."is-yarn-global-0.3.0" ··· 86585 86703 sources."p-limit-2.3.0" 86586 86704 sources."p-locate-3.0.0" 86587 86705 sources."p-try-2.2.0" 86588 - sources."pac-proxy-agent-4.1.0" 86589 - sources."pac-resolver-4.2.0" 86706 + sources."pac-proxy-agent-5.0.0" 86707 + sources."pac-resolver-5.0.0" 86590 86708 (sources."package-json-6.5.0" // { 86591 86709 dependencies = [ 86592 86710 sources."semver-6.3.0" ··· 86599 86717 sources."pkg-up-3.1.0" 86600 86718 sources."prelude-ls-1.1.2" 86601 86719 sources."prepend-http-2.0.0" 86602 - (sources."proxy-agent-4.0.1" // { 86720 + (sources."proxy-agent-5.0.0" // { 86603 86721 dependencies = [ 86604 86722 sources."lru-cache-5.1.1" 86605 86723 sources."yallist-3.1.1" ··· 86641 86759 sources."responselike-1.0.2" 86642 86760 sources."restore-cursor-3.1.0" 86643 86761 sources."run-async-2.4.1" 86644 - sources."rxjs-6.6.7" 86762 + sources."rxjs-7.2.0" 86645 86763 sources."safe-buffer-5.2.1" 86646 86764 sources."safer-buffer-2.1.2" 86647 86765 sources."semver-7.3.5" ··· 86675 86793 sources."to-readable-stream-1.0.0" 86676 86794 sources."toidentifier-1.0.0" 86677 86795 sources."trim-newlines-3.0.1" 86678 - sources."tslib-1.14.1" 86796 + sources."tslib-2.1.0" 86679 86797 sources."type-check-0.3.2" 86680 86798 sources."type-fest-0.21.3" 86681 86799 sources."typedarray-to-buffer-3.1.5" ··· 86687 86805 sources."url-parse-lax-3.0.0" 86688 86806 sources."util-deprecate-1.0.2" 86689 86807 sources."validate-npm-package-license-3.0.4" 86808 + sources."vm2-3.9.3" 86690 86809 sources."wcwidth-1.0.1" 86691 86810 sources."which-2.0.2" 86692 86811 sources."widest-line-3.1.0" ··· 86814 86933 sources."@nodelib/fs.walk-1.2.8" 86815 86934 sources."@sindresorhus/is-0.14.0" 86816 86935 sources."@szmarczak/http-timer-1.1.2" 86817 - sources."@types/node-16.4.0" 86936 + sources."@types/node-16.4.3" 86818 86937 sources."@types/parse-json-4.0.0" 86819 86938 sources."@types/websocket-1.0.2" 86820 86939 sources."abort-controller-3.0.0" ··· 86974 87093 sources."has-symbols-1.0.2" 86975 87094 sources."http-cache-semantics-4.1.0" 86976 87095 sources."http-signature-1.2.0" 86977 - sources."http2-client-1.3.3" 87096 + sources."http2-client-1.3.5" 86978 87097 sources."iconv-lite-0.4.24" 86979 87098 sources."ieee754-1.2.1" 86980 87099 sources."ignore-5.1.8" ··· 87559 87678 sources."supports-color-7.2.0" 87560 87679 ]; 87561 87680 }) 87562 - sources."systeminformation-5.7.8" 87681 + sources."systeminformation-5.7.12" 87563 87682 sources."term-canvas-0.0.5" 87564 87683 sources."type-fest-0.21.3" 87565 87684 sources."wordwrap-0.0.3" ··· 88455 88574 sources."param-case-2.1.1" 88456 88575 sources."relateurl-0.2.7" 88457 88576 sources."source-map-0.6.1" 88458 - sources."uglify-js-3.13.10" 88577 + sources."uglify-js-3.14.1" 88459 88578 sources."upper-case-1.1.3" 88460 88579 ]; 88461 88580 buildInputs = globalBuildInputs; ··· 89448 89567 ]; 89449 89568 }) 89450 89569 sources."supports-color-7.2.0" 89451 - sources."tar-4.4.13" 89570 + sources."tar-4.4.15" 89452 89571 sources."through-2.3.8" 89453 89572 sources."through2-3.0.2" 89454 89573 sources."tmp-0.0.33" ··· 89670 89789 sources."unicoderegexp-0.4.1" 89671 89790 sources."universalify-2.0.0" 89672 89791 sources."urix-0.1.0" 89673 - (sources."verda-1.3.0" // { 89792 + (sources."verda-1.3.2" // { 89674 89793 dependencies = [ 89675 89794 sources."ansi-styles-4.3.0" 89676 89795 sources."chalk-4.1.1" ··· 89900 90019 sources."async-mutex-0.1.4" 89901 90020 sources."asynckit-0.4.0" 89902 90021 sources."atob-2.1.2" 89903 - (sources."aws-sdk-2.951.0" // { 90022 + (sources."aws-sdk-2.954.0" // { 89904 90023 dependencies = [ 89905 90024 sources."sax-1.2.1" 89906 90025 sources."uuid-3.3.2" ··· 90444 90563 sources."symbol-observable-1.2.0" 90445 90564 sources."symbol-tree-3.2.4" 90446 90565 sources."table-layout-0.4.5" 90447 - (sources."tar-4.4.13" // { 90566 + (sources."tar-4.4.15" // { 90448 90567 dependencies = [ 90449 90568 sources."yallist-3.1.1" 90450 90569 ]; ··· 90461 90580 sources."q-0.9.7" 90462 90581 ]; 90463 90582 }) 90464 - sources."terminal-kit-1.49.3" 90583 + sources."terminal-kit-1.49.4" 90465 90584 (sources."tkwidgets-0.5.26" // { 90466 90585 dependencies = [ 90467 90586 sources."ansi-styles-3.2.1" ··· 90477 90596 sources."toidentifier-1.0.0" 90478 90597 sources."tough-cookie-3.0.1" 90479 90598 sources."tr46-1.0.1" 90480 - sources."tree-kit-0.6.2" 90599 + sources."tree-kit-0.7.0" 90481 90600 sources."tunnel-agent-0.6.0" 90482 90601 sources."tweetnacl-0.14.5" 90483 90602 sources."type-check-0.3.2" ··· 90503 90622 sources."punycode-1.3.2" 90504 90623 ]; 90505 90624 }) 90506 - sources."url-parse-1.5.1" 90625 + sources."url-parse-1.5.3" 90507 90626 sources."uslug-git+https://github.com/laurent22/uslug.git#emoji-support" 90508 90627 sources."util-deprecate-1.0.2" 90509 90628 sources."uuid-3.4.0" ··· 91924 92043 sources."@types/component-emitter-1.2.10" 91925 92044 sources."@types/cookie-0.4.1" 91926 92045 sources."@types/cors-2.8.12" 91927 - sources."@types/node-16.4.0" 92046 + sources."@types/node-16.4.3" 91928 92047 sources."accepts-1.3.7" 91929 92048 sources."ansi-regex-5.0.0" 91930 92049 sources."ansi-styles-4.3.0" ··· 92217 92336 sources."is-number-object-1.0.5" 92218 92337 sources."is-plain-obj-2.1.0" 92219 92338 sources."is-regex-1.1.3" 92220 - sources."is-stream-2.0.0" 92339 + sources."is-stream-2.0.1" 92221 92340 sources."is-string-1.0.6" 92222 92341 sources."is-symbol-1.0.4" 92223 92342 sources."is-typed-array-1.1.5" ··· 93068 93187 ]; 93069 93188 }) 93070 93189 sources."@octokit/graphql-4.6.4" 93071 - sources."@octokit/openapi-types-9.1.0" 93190 + sources."@octokit/openapi-types-9.1.1" 93072 93191 sources."@octokit/plugin-enterprise-rest-6.0.1" 93073 93192 sources."@octokit/plugin-paginate-rest-2.14.0" 93074 93193 sources."@octokit/plugin-request-log-1.0.4" 93075 - sources."@octokit/plugin-rest-endpoint-methods-5.5.0" 93194 + sources."@octokit/plugin-rest-endpoint-methods-5.5.1" 93076 93195 (sources."@octokit/request-5.6.0" // { 93077 93196 dependencies = [ 93078 93197 sources."is-plain-object-5.0.0" 93079 93198 ]; 93080 93199 }) 93081 93200 sources."@octokit/request-error-2.1.0" 93082 - sources."@octokit/rest-18.7.0" 93083 - sources."@octokit/types-6.21.0" 93201 + sources."@octokit/rest-18.7.1" 93202 + sources."@octokit/types-6.21.1" 93084 93203 sources."@tootallnate/once-1.1.2" 93085 93204 sources."@types/minimatch-3.0.5" 93086 93205 sources."@types/minimist-1.2.2" ··· 93354 93473 sources."is-plain-object-2.0.4" 93355 93474 sources."is-regex-1.1.3" 93356 93475 sources."is-ssh-1.3.3" 93357 - sources."is-stream-2.0.0" 93476 + sources."is-stream-2.0.1" 93358 93477 sources."is-string-1.0.6" 93359 93478 sources."is-symbol-1.0.4" 93360 93479 sources."is-text-path-1.0.1" ··· 93473 93592 sources."resolve-from-4.0.0" 93474 93593 sources."rimraf-2.7.1" 93475 93594 sources."semver-5.7.1" 93476 - sources."tar-4.4.13" 93595 + sources."tar-4.4.15" 93477 93596 sources."which-1.3.1" 93478 93597 sources."yallist-3.1.1" 93479 93598 ]; ··· 93542 93661 sources."read-1.0.7" 93543 93662 sources."read-cmd-shim-2.0.0" 93544 93663 sources."read-package-json-2.1.2" 93545 - sources."read-package-json-fast-2.0.2" 93664 + sources."read-package-json-fast-2.0.3" 93546 93665 sources."read-package-tree-5.3.1" 93547 93666 (sources."read-pkg-3.0.0" // { 93548 93667 dependencies = [ ··· 93619 93738 sources."strip-indent-3.0.0" 93620 93739 sources."strong-log-transformer-2.1.0" 93621 93740 sources."supports-color-7.2.0" 93622 - sources."tar-6.1.0" 93741 + sources."tar-6.1.2" 93623 93742 sources."temp-dir-1.0.0" 93624 93743 (sources."temp-write-4.0.0" // { 93625 93744 dependencies = [ ··· 93642 93761 sources."type-fest-0.4.1" 93643 93762 sources."typedarray-0.0.6" 93644 93763 sources."typedarray-to-buffer-3.1.5" 93645 - sources."uglify-js-3.13.10" 93764 + sources."uglify-js-3.14.1" 93646 93765 sources."uid-number-0.0.6" 93647 93766 sources."umask-1.1.0" 93648 93767 sources."unbox-primitive-1.0.1" ··· 94736 94855 sources."@types/istanbul-lib-report-3.0.0" 94737 94856 sources."@types/istanbul-reports-1.1.2" 94738 94857 sources."@types/json-schema-7.0.8" 94739 - sources."@types/node-16.4.0" 94858 + sources."@types/node-16.4.3" 94740 94859 sources."@types/normalize-package-data-2.4.1" 94741 94860 sources."@types/resolve-0.0.8" 94742 94861 sources."@types/yargs-15.0.14" ··· 94909 95028 sources."cached-path-relative-1.0.2" 94910 95029 sources."call-bind-1.0.2" 94911 95030 sources."camelcase-5.3.1" 94912 - sources."caniuse-lite-1.0.30001246" 95031 + sources."caniuse-lite-1.0.30001247" 94913 95032 sources."capture-exit-2.0.0" 94914 95033 sources."caseless-0.12.0" 94915 95034 (sources."chalk-3.0.0" // { ··· 95033 95152 sources."duplexer2-0.1.4" 95034 95153 sources."duplexify-3.7.1" 95035 95154 sources."ecc-jsbn-0.1.2" 95036 - sources."electron-to-chromium-1.3.782" 95155 + sources."electron-to-chromium-1.3.788" 95037 95156 (sources."elliptic-6.5.4" // { 95038 95157 dependencies = [ 95039 95158 sources."bn.js-4.12.0" ··· 95430 95549 sources."realpath-native-2.0.0" 95431 95550 sources."regenerate-1.4.2" 95432 95551 sources."regenerate-unicode-properties-8.2.0" 95433 - sources."regenerator-runtime-0.13.8" 95552 + sources."regenerator-runtime-0.13.9" 95434 95553 sources."regenerator-transform-0.14.5" 95435 95554 sources."regex-not-1.0.2" 95436 95555 sources."regexpu-core-4.7.1" ··· 95788 95907 markdownlint-cli = nodeEnv.buildNodePackage { 95789 95908 name = "markdownlint-cli"; 95790 95909 packageName = "markdownlint-cli"; 95791 - version = "0.27.1"; 95910 + version = "0.28.1"; 95792 95911 src = fetchurl { 95793 - url = "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.27.1.tgz"; 95794 - sha512 = "p1VV6aSbGrDlpUWzHizAnSNEQAweVR3qUI/AIUubxW7BGPXziSXkIED+uRtSohUlRS/jmqp3Wi4es5j6fIrdeQ=="; 95912 + url = "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.28.1.tgz"; 95913 + sha512 = "RBKtRRBzcuAF/H5wMSzb4zvEtbUkyYNEeaDtlQkyH9SoHWPL01emJ2Wrx6NEOa1ZDGwB+seBGvE157Qzc/t/vA=="; 95795 95914 }; 95796 95915 dependencies = [ 95797 95916 sources."argparse-2.0.1" 95798 95917 sources."balanced-match-1.0.2" 95799 95918 sources."brace-expansion-1.1.11" 95800 - sources."commander-7.1.0" 95919 + sources."commander-8.0.0" 95801 95920 sources."concat-map-0.0.1" 95802 95921 sources."deep-extend-0.6.0" 95803 95922 sources."entities-2.1.0" ··· 95807 95926 sources."ignore-5.1.8" 95808 95927 sources."inflight-1.0.6" 95809 95928 sources."inherits-2.0.4" 95810 - sources."ini-1.3.8" 95929 + sources."ini-2.0.0" 95811 95930 sources."js-yaml-4.1.0" 95812 95931 sources."jsonc-parser-3.0.0" 95813 95932 sources."linkify-it-3.0.2" ··· 95821 95940 sources."minimist-1.2.5" 95822 95941 sources."once-1.4.0" 95823 95942 sources."path-is-absolute-1.0.1" 95824 - sources."rc-1.2.8" 95825 - sources."strip-json-comments-2.0.1" 95943 + sources."run-con-1.2.10" 95944 + sources."strip-json-comments-3.1.1" 95826 95945 sources."uc.micro-1.0.6" 95827 95946 sources."wrappy-1.0.2" 95828 95947 ]; ··· 96281 96400 }; 96282 96401 dependencies = [ 96283 96402 sources."@braintree/sanitize-url-3.1.0" 96284 - sources."@types/node-16.4.0" 96403 + sources."@types/node-16.4.3" 96285 96404 sources."@types/yauzl-2.9.2" 96286 96405 sources."agent-base-6.0.2" 96287 96406 sources."ansi-styles-4.3.0" ··· 96295 96414 sources."chownr-1.1.4" 96296 96415 sources."color-convert-2.0.1" 96297 96416 sources."color-name-1.1.4" 96298 - sources."commander-8.0.0" 96417 + sources."commander-8.1.0" 96299 96418 sources."concat-map-0.0.1" 96300 96419 sources."d3-5.16.0" 96301 96420 sources."d3-array-1.2.4" ··· 96406 96525 mirakurun = nodeEnv.buildNodePackage { 96407 96526 name = "mirakurun"; 96408 96527 packageName = "mirakurun"; 96409 - version = "3.6.0"; 96528 + version = "3.7.0"; 96410 96529 src = fetchurl { 96411 - url = "https://registry.npmjs.org/mirakurun/-/mirakurun-3.6.0.tgz"; 96412 - sha512 = "LrJqn/26CxH9aQ9j7iPqnk9fS6ywI3gpCt7HS26UXeycC3VBfhkoONLZQW/JXW3aJGoUHUlxunsQBI0h89EJIw=="; 96530 + url = "https://registry.npmjs.org/mirakurun/-/mirakurun-3.7.0.tgz"; 96531 + sha512 = "seHSVEn7JJbOEuYD8T8UmqZcYT1iLCFp2mMA/+UyhcpRICLzClF9uQX3beAuHCZUymO3FBwdEjN4Ky5qd2kbHw=="; 96413 96532 }; 96414 96533 dependencies = [ 96415 96534 sources."@fluentui/date-time-utilities-8.2.1" ··· 96418 96537 sources."@fluentui/foundation-legacy-8.1.6" 96419 96538 sources."@fluentui/keyboard-key-0.3.3" 96420 96539 sources."@fluentui/merge-styles-8.1.3" 96421 - sources."@fluentui/react-8.22.0" 96540 + sources."@fluentui/react-8.23.8" 96422 96541 sources."@fluentui/react-focus-8.1.8" 96423 96542 sources."@fluentui/react-hooks-8.2.4" 96424 96543 sources."@fluentui/react-window-provider-2.1.3" ··· 96429 96548 sources."@microsoft/load-themed-styles-1.10.195" 96430 96549 sources."@sindresorhus/is-0.14.0" 96431 96550 sources."@szmarczak/http-timer-1.1.2" 96432 - sources."@types/cors-2.8.12" 96433 96551 sources."accepts-1.3.7" 96434 96552 sources."ajv-6.12.6" 96435 96553 sources."ansi-escapes-1.4.0" ··· 96685 96803 mocha = nodeEnv.buildNodePackage { 96686 96804 name = "mocha"; 96687 96805 packageName = "mocha"; 96688 - version = "9.0.2"; 96806 + version = "9.0.3"; 96689 96807 src = fetchurl { 96690 - url = "https://registry.npmjs.org/mocha/-/mocha-9.0.2.tgz"; 96691 - sha512 = "FpspiWU+UT9Sixx/wKimvnpkeW0mh6ROAKkIaPokj3xZgxeRhcna/k5X57jJghEr8X+Cgu/Vegf8zCX5ugSuTA=="; 96808 + url = "https://registry.npmjs.org/mocha/-/mocha-9.0.3.tgz"; 96809 + sha512 = "hnYFrSefHxYS2XFGtN01x8un0EwNu2bzKvhpRFhgoybIvMaOkkL60IVPmkb5h6XDmUl4IMSB+rT5cIO4/4bJgg=="; 96692 96810 }; 96693 96811 dependencies = [ 96694 96812 sources."@ungap/promise-all-settled-1.1.2" ··· 96939 97057 netlify-cli = nodeEnv.buildNodePackage { 96940 97058 name = "netlify-cli"; 96941 97059 packageName = "netlify-cli"; 96942 - version = "5.2.0"; 97060 + version = "5.2.8"; 96943 97061 src = fetchurl { 96944 - url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-5.2.0.tgz"; 96945 - sha512 = "Jwy74SaN5rM4xTE2QSZijF0qN1a/ZGh1PJWUmzmVFX1RnEgA1QMZ7MVHW04UXxZ3igx+G03GGzC071+FRLKT6g=="; 97062 + url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-5.2.8.tgz"; 97063 + sha512 = "p6sCh6NCfU+eLtL6/ZIsCzhXXOyKUCQ8Xf4jy3HfjviT8QGbGey1ddP5ia1+opd+2pWV53xy09X11zAWMawPxw=="; 96946 97064 }; 96947 97065 dependencies = [ 96948 97066 sources."@babel/code-frame-7.14.5" ··· 97067 97185 sources."@babel/template-7.14.5" 97068 97186 sources."@babel/traverse-7.14.8" 97069 97187 sources."@babel/types-7.14.8" 97070 - sources."@bugsnag/browser-7.10.5" 97071 - sources."@bugsnag/core-7.10.0" 97188 + sources."@bugsnag/browser-7.11.0" 97189 + sources."@bugsnag/core-7.11.0" 97072 97190 sources."@bugsnag/cuid-3.0.0" 97073 - sources."@bugsnag/js-7.10.5" 97074 - sources."@bugsnag/node-7.10.1" 97191 + sources."@bugsnag/js-7.11.0" 97192 + sources."@bugsnag/node-7.11.0" 97075 97193 sources."@bugsnag/safe-json-stringify-6.0.0" 97076 97194 sources."@dabh/diagnostics-2.0.2" 97077 97195 sources."@jest/types-24.9.0" 97078 97196 sources."@mrmlnc/readdir-enhanced-2.2.1" 97079 - (sources."@netlify/build-16.1.0" // { 97197 + (sources."@netlify/build-17.1.1" // { 97080 97198 dependencies = [ 97199 + (sources."@netlify/zip-it-and-ship-it-4.15.1" // { 97200 + dependencies = [ 97201 + sources."execa-5.1.1" 97202 + sources."locate-path-6.0.0" 97203 + sources."p-locate-5.0.0" 97204 + sources."pkg-dir-5.0.0" 97205 + sources."semver-7.3.5" 97206 + sources."yargs-16.2.0" 97207 + ]; 97208 + }) 97081 97209 sources."ansi-styles-4.3.0" 97082 97210 sources."boxen-4.2.0" 97083 97211 sources."chalk-3.0.0" 97084 - sources."execa-3.4.0" 97212 + sources."cp-file-9.1.0" 97213 + (sources."execa-3.4.0" // { 97214 + dependencies = [ 97215 + sources."get-stream-5.2.0" 97216 + sources."human-signals-1.1.1" 97217 + ]; 97218 + }) 97219 + sources."get-stream-6.0.1" 97220 + sources."human-signals-2.1.0" 97085 97221 sources."is-plain-obj-2.1.0" 97086 97222 sources."locate-path-5.0.0" 97087 97223 sources."resolve-2.0.0-next.3" ··· 97090 97226 sources."update-notifier-4.1.3" 97091 97227 ]; 97092 97228 }) 97093 - (sources."@netlify/cache-utils-1.0.7" // { 97229 + (sources."@netlify/cache-utils-2.0.0" // { 97094 97230 dependencies = [ 97095 97231 sources."del-5.1.0" 97096 97232 sources."locate-path-5.0.0" ··· 97098 97234 sources."slash-3.0.0" 97099 97235 ]; 97100 97236 }) 97101 - (sources."@netlify/config-13.0.0" // { 97237 + (sources."@netlify/config-14.0.0" // { 97102 97238 dependencies = [ 97103 97239 sources."ansi-styles-4.3.0" 97104 97240 sources."chalk-3.0.0" ··· 97112 97248 sources."@netlify/esbuild-0.13.6" 97113 97249 (sources."@netlify/framework-info-5.7.2" // { 97114 97250 dependencies = [ 97115 - sources."p-limit-3.1.0" 97116 97251 sources."p-locate-5.0.0" 97117 97252 ]; 97118 97253 }) 97119 - sources."@netlify/functions-utils-1.4.7" 97120 - (sources."@netlify/git-utils-1.0.11" // { 97254 + (sources."@netlify/functions-utils-2.0.2" // { 97255 + dependencies = [ 97256 + sources."@netlify/zip-it-and-ship-it-4.15.1" 97257 + sources."cp-file-9.1.0" 97258 + sources."pkg-dir-5.0.0" 97259 + sources."resolve-2.0.0-next.3" 97260 + sources."yargs-16.2.0" 97261 + ]; 97262 + }) 97263 + (sources."@netlify/git-utils-2.0.0" // { 97121 97264 dependencies = [ 97122 97265 sources."braces-3.0.2" 97123 97266 sources."execa-3.4.0" ··· 97127 97270 sources."to-regex-range-5.0.1" 97128 97271 ]; 97129 97272 }) 97130 - sources."@netlify/local-functions-proxy-0.1.0" 97131 - sources."@netlify/local-functions-proxy-darwin-arm64-0.1.0" 97132 - sources."@netlify/local-functions-proxy-darwin-x64-0.1.0" 97133 - sources."@netlify/local-functions-proxy-freebsd-arm64-0.1.0" 97134 - sources."@netlify/local-functions-proxy-freebsd-x64-0.1.0" 97135 - sources."@netlify/local-functions-proxy-linux-arm-0.1.0" 97136 - sources."@netlify/local-functions-proxy-linux-arm64-0.1.0" 97137 - sources."@netlify/local-functions-proxy-linux-ia32-0.1.0" 97138 - sources."@netlify/local-functions-proxy-linux-ppc64-0.1.0" 97139 - sources."@netlify/local-functions-proxy-linux-x64-0.1.0" 97140 - sources."@netlify/local-functions-proxy-openbsd-x64-0.1.0" 97141 - sources."@netlify/local-functions-proxy-win32-ia32-0.1.0" 97142 - sources."@netlify/local-functions-proxy-win32-x64-0.1.0" 97273 + sources."@netlify/local-functions-proxy-1.0.0" 97274 + sources."@netlify/local-functions-proxy-darwin-arm64-1.0.0" 97275 + sources."@netlify/local-functions-proxy-darwin-x64-1.0.0" 97276 + sources."@netlify/local-functions-proxy-freebsd-arm64-1.0.0" 97277 + sources."@netlify/local-functions-proxy-freebsd-x64-1.0.0" 97278 + sources."@netlify/local-functions-proxy-linux-arm-1.0.0" 97279 + sources."@netlify/local-functions-proxy-linux-arm64-1.0.0" 97280 + sources."@netlify/local-functions-proxy-linux-ia32-1.0.0" 97281 + sources."@netlify/local-functions-proxy-linux-ppc64-1.0.0" 97282 + sources."@netlify/local-functions-proxy-linux-x64-1.0.0" 97283 + sources."@netlify/local-functions-proxy-openbsd-x64-1.0.0" 97284 + sources."@netlify/local-functions-proxy-win32-ia32-1.0.0" 97285 + sources."@netlify/local-functions-proxy-win32-x64-1.0.0" 97143 97286 sources."@netlify/open-api-2.5.0" 97144 97287 (sources."@netlify/plugin-edge-handlers-1.11.22" // { 97145 97288 dependencies = [ 97146 - sources."@types/node-14.17.5" 97289 + sources."@types/node-14.17.6" 97290 + sources."typescript-4.3.5" 97147 97291 ]; 97148 97292 }) 97149 97293 sources."@netlify/plugins-list-2.19.3" 97150 97294 sources."@netlify/routing-local-proxy-0.31.0" 97151 - (sources."@netlify/run-utils-1.0.7" // { 97295 + (sources."@netlify/run-utils-2.0.0" // { 97152 97296 dependencies = [ 97153 97297 sources."execa-3.4.0" 97154 97298 ]; 97155 97299 }) 97156 - (sources."@netlify/zip-it-and-ship-it-4.14.0" // { 97300 + (sources."@netlify/zip-it-and-ship-it-4.15.0" // { 97157 97301 dependencies = [ 97158 - sources."ansi-styles-4.3.0" 97159 - sources."cliui-7.0.4" 97160 97302 sources."cp-file-9.1.0" 97161 97303 sources."pkg-dir-5.0.0" 97162 97304 sources."resolve-2.0.0-next.3" 97163 - sources."wrap-ansi-7.0.0" 97164 - sources."y18n-5.0.8" 97165 97305 sources."yargs-16.2.0" 97166 - sources."yargs-parser-20.2.9" 97167 97306 ]; 97168 97307 }) 97169 97308 (sources."@nodelib/fs.scandir-2.1.5" // { ··· 97216 97355 }) 97217 97356 (sources."@oclif/errors-1.3.5" // { 97218 97357 dependencies = [ 97219 - sources."ansi-styles-4.3.0" 97220 97358 sources."clean-stack-3.0.1" 97221 97359 sources."escape-string-regexp-4.0.0" 97222 - sources."wrap-ansi-7.0.0" 97223 97360 ]; 97224 97361 }) 97225 97362 sources."@oclif/linewrap-1.0.0" ··· 97280 97417 ]; 97281 97418 }) 97282 97419 sources."@octokit/graphql-4.6.4" 97283 - sources."@octokit/openapi-types-9.1.0" 97420 + sources."@octokit/openapi-types-9.1.1" 97284 97421 sources."@octokit/plugin-paginate-rest-2.14.0" 97285 97422 sources."@octokit/plugin-request-log-1.0.4" 97286 - sources."@octokit/plugin-rest-endpoint-methods-5.5.0" 97423 + sources."@octokit/plugin-rest-endpoint-methods-5.5.1" 97287 97424 (sources."@octokit/request-5.6.0" // { 97288 97425 dependencies = [ 97289 97426 sources."is-plain-object-5.0.0" 97290 97427 ]; 97291 97428 }) 97292 97429 sources."@octokit/request-error-2.1.0" 97293 - sources."@octokit/rest-18.7.0" 97294 - sources."@octokit/types-6.21.0" 97430 + sources."@octokit/rest-18.7.1" 97431 + sources."@octokit/types-6.21.1" 97295 97432 sources."@rollup/plugin-babel-5.3.0" 97296 97433 (sources."@rollup/plugin-commonjs-18.1.0" // { 97297 97434 dependencies = [ ··· 97328 97465 sources."@types/istanbul-reports-1.1.2" 97329 97466 sources."@types/keyv-3.1.2" 97330 97467 sources."@types/minimatch-3.0.5" 97331 - sources."@types/node-16.4.0" 97332 - sources."@types/node-fetch-2.5.11" 97468 + sources."@types/node-16.4.3" 97469 + sources."@types/node-fetch-2.5.12" 97333 97470 sources."@types/normalize-package-data-2.4.1" 97334 97471 sources."@types/resolve-1.17.1" 97335 97472 sources."@types/responselike-1.0.0" 97336 - sources."@types/semver-7.3.7" 97473 + sources."@types/semver-7.3.8" 97337 97474 sources."@types/yargs-13.0.12" 97338 97475 sources."@types/yargs-parser-20.2.1" 97339 - sources."@typescript-eslint/types-4.28.4" 97340 - (sources."@typescript-eslint/typescript-estree-4.28.4" // { 97476 + sources."@typescript-eslint/types-4.28.5" 97477 + (sources."@typescript-eslint/typescript-estree-4.28.5" // { 97341 97478 dependencies = [ 97342 97479 sources."@nodelib/fs.stat-2.0.5" 97343 97480 sources."array-union-2.1.0" ··· 97354 97491 sources."to-regex-range-5.0.1" 97355 97492 ]; 97356 97493 }) 97357 - sources."@typescript-eslint/visitor-keys-4.28.4" 97494 + sources."@typescript-eslint/visitor-keys-4.28.5" 97358 97495 sources."@ungap/from-entries-0.2.1" 97359 97496 sources."accepts-1.3.7" 97360 97497 sources."acorn-8.4.1" ··· 97368 97505 sources."ansi-regex-5.0.0" 97369 97506 sources."ansi-styles-4.3.0" 97370 97507 sources."chalk-3.0.0" 97371 - sources."global-cache-dir-2.0.0" 97372 97508 sources."jest-get-type-25.2.6" 97373 97509 sources."jest-validate-25.5.0" 97374 97510 sources."pretty-format-25.5.0" ··· 97446 97582 }) 97447 97583 (sources."boxen-5.0.1" // { 97448 97584 dependencies = [ 97449 - sources."ansi-styles-4.3.0" 97450 97585 sources."camelcase-6.2.0" 97451 97586 sources."type-fest-0.20.2" 97452 - sources."wrap-ansi-7.0.0" 97453 97587 ]; 97454 97588 }) 97455 97589 sources."brace-expansion-1.1.11" ··· 97487 97621 sources."call-me-maybe-1.0.1" 97488 97622 sources."callsite-1.0.0" 97489 97623 sources."camelcase-5.3.1" 97490 - sources."caniuse-lite-1.0.30001246" 97624 + sources."caniuse-lite-1.0.30001247" 97491 97625 sources."cardinal-2.1.1" 97492 97626 (sources."chalk-4.1.1" // { 97493 97627 dependencies = [ ··· 97555 97689 ]; 97556 97690 }) 97557 97691 sources."cli-width-2.2.1" 97558 - sources."cliui-6.0.0" 97692 + sources."cliui-7.0.4" 97559 97693 sources."clone-1.0.4" 97560 97694 sources."clone-response-1.0.2" 97561 97695 sources."code-point-at-1.1.0" ··· 97711 97845 sources."detective-sass-3.0.1" 97712 97846 sources."detective-scss-2.0.1" 97713 97847 sources."detective-stylus-1.0.0" 97714 - (sources."detective-typescript-7.0.0" // { 97715 - dependencies = [ 97716 - sources."typescript-3.9.10" 97717 - ]; 97718 - }) 97848 + sources."detective-typescript-7.0.0" 97719 97849 (sources."dir-glob-2.2.2" // { 97720 97850 dependencies = [ 97721 97851 sources."path-type-3.0.0" ··· 97753 97883 }) 97754 97884 sources."duplexer3-0.1.4" 97755 97885 sources."ee-first-1.1.1" 97756 - sources."electron-to-chromium-1.3.782" 97886 + sources."electron-to-chromium-1.3.788" 97757 97887 sources."elegant-spinner-1.0.1" 97758 97888 sources."elf-cam-0.1.1" 97759 97889 sources."emoji-regex-8.0.0" ··· 97923 98053 sources."get-port-5.1.1" 97924 98054 sources."get-stream-5.2.0" 97925 98055 sources."get-value-2.0.6" 97926 - sources."gh-release-fetch-2.0.1" 98056 + sources."gh-release-fetch-2.0.2" 97927 98057 sources."git-repo-info-2.1.1" 97928 98058 sources."gitconfiglocal-2.1.0" 97929 98059 sources."glob-7.1.7" ··· 97933 98063 ]; 97934 98064 }) 97935 98065 sources."glob-to-regexp-0.3.0" 97936 - sources."global-cache-dir-1.0.1" 98066 + sources."global-cache-dir-2.0.0" 97937 98067 sources."global-dirs-2.1.0" 97938 98068 sources."globals-11.12.0" 97939 98069 (sources."globby-10.0.2" // { ··· 98090 98220 sources."is-promise-2.2.2" 98091 98221 sources."is-reference-1.2.1" 98092 98222 sources."is-retry-allowed-1.2.0" 98093 - sources."is-stream-2.0.0" 98223 + sources."is-stream-2.0.1" 98094 98224 sources."is-typedarray-1.0.0" 98095 98225 sources."is-unicode-supported-0.1.0" 98096 98226 sources."is-url-1.2.4" ··· 98185 98315 }) 98186 98316 (sources."locate-path-6.0.0" // { 98187 98317 dependencies = [ 98188 - sources."p-limit-3.1.0" 98189 98318 sources."p-locate-5.0.0" 98190 98319 ]; 98191 98320 }) ··· 98300 98429 sources."natural-orderby-2.0.3" 98301 98430 sources."negotiator-0.6.2" 98302 98431 sources."nested-error-stacks-2.1.0" 98303 - (sources."netlify-7.0.1" // { 98432 + (sources."netlify-8.0.0" // { 98304 98433 dependencies = [ 98305 98434 sources."qs-6.10.1" 98306 98435 ]; ··· 98420 98549 }) 98421 98550 sources."p-finally-2.0.1" 98422 98551 sources."p-is-promise-1.1.0" 98423 - sources."p-limit-2.3.0" 98424 - sources."p-locate-4.1.0" 98552 + sources."p-limit-3.1.0" 98553 + (sources."p-locate-4.1.0" // { 98554 + dependencies = [ 98555 + sources."p-limit-2.3.0" 98556 + ]; 98557 + }) 98425 98558 sources."p-map-4.0.0" 98426 98559 sources."p-reduce-2.1.0" 98427 98560 (sources."p-timeout-2.0.1" // { ··· 98519 98652 }) 98520 98653 sources."rc-1.2.8" 98521 98654 sources."react-is-16.13.1" 98522 - sources."read-package-json-fast-2.0.2" 98655 + sources."read-package-json-fast-2.0.3" 98523 98656 (sources."read-pkg-5.2.0" // { 98524 98657 dependencies = [ 98525 98658 sources."type-fest-0.6.0" ··· 98538 98671 sources."redeyed-2.1.1" 98539 98672 sources."regenerate-1.4.2" 98540 98673 sources."regenerate-unicode-properties-8.2.0" 98541 - sources."regenerator-runtime-0.13.8" 98674 + sources."regenerator-runtime-0.13.9" 98542 98675 sources."regenerator-transform-0.14.5" 98543 98676 sources."regex-not-1.0.2" 98544 98677 sources."regexpu-core-4.7.1" ··· 98571 98704 sources."reusify-1.0.4" 98572 98705 sources."rfdc-1.3.0" 98573 98706 sources."rimraf-3.0.2" 98574 - sources."rollup-2.53.3" 98707 + sources."rollup-2.54.0" 98575 98708 (sources."rollup-plugin-inject-3.0.2" // { 98576 98709 dependencies = [ 98577 98710 sources."estree-walker-0.6.1" ··· 98797 98930 sources."type-fest-0.21.3" 98798 98931 sources."type-is-1.6.18" 98799 98932 sources."typedarray-to-buffer-3.1.5" 98800 - sources."typescript-4.3.5" 98933 + sources."typescript-3.9.10" 98801 98934 sources."uid-safe-2.1.5" 98802 98935 sources."unbzip2-stream-1.4.3" 98803 98936 sources."unicode-canonical-property-names-ecmascript-1.0.4" ··· 98882 99015 ]; 98883 99016 }) 98884 99017 sources."word-wrap-1.2.3" 98885 - (sources."wrap-ansi-6.2.0" // { 99018 + (sources."wrap-ansi-7.0.0" // { 98886 99019 dependencies = [ 98887 99020 sources."ansi-styles-4.3.0" 98888 99021 ]; ··· 98891 99024 sources."write-file-atomic-3.0.3" 98892 99025 sources."xdg-basedir-4.0.0" 98893 99026 sources."xtend-4.0.2" 98894 - sources."y18n-4.0.3" 99027 + sources."y18n-5.0.8" 98895 99028 sources."yallist-4.0.0" 98896 99029 (sources."yargs-15.4.1" // { 98897 99030 dependencies = [ 99031 + sources."ansi-styles-4.3.0" 99032 + sources."cliui-6.0.0" 98898 99033 sources."find-up-4.1.0" 98899 99034 sources."locate-path-5.0.0" 99035 + sources."wrap-ansi-6.2.0" 99036 + sources."y18n-4.0.3" 99037 + sources."yargs-parser-18.1.3" 98900 99038 ]; 98901 99039 }) 98902 - sources."yargs-parser-18.1.3" 98903 - sources."yarn-1.22.10" 99040 + sources."yargs-parser-20.2.9" 99041 + sources."yarn-1.22.11" 98904 99042 sources."yauzl-2.10.0" 98905 99043 sources."yocto-queue-0.1.0" 98906 99044 sources."zip-stream-4.1.0" ··· 99028 99166 sources."string-width-1.0.2" 99029 99167 sources."string_decoder-1.1.1" 99030 99168 sources."strip-ansi-3.0.1" 99031 - sources."tar-6.1.0" 99169 + sources."tar-6.1.2" 99032 99170 sources."unique-filename-1.1.1" 99033 99171 sources."unique-slug-2.0.2" 99034 99172 sources."util-deprecate-1.0.2" ··· 99432 99570 sources."string_decoder-1.1.1" 99433 99571 sources."strip-ansi-3.0.1" 99434 99572 sources."strip-json-comments-2.0.1" 99435 - sources."tar-4.4.13" 99573 + sources."tar-4.4.15" 99436 99574 sources."util-deprecate-1.0.2" 99437 99575 sources."wide-align-1.1.3" 99438 99576 sources."wrappy-1.0.2" ··· 99451 99589 node-red = nodeEnv.buildNodePackage { 99452 99590 name = "node-red"; 99453 99591 packageName = "node-red"; 99454 - version = "2.0.1"; 99592 + version = "2.0.3"; 99455 99593 src = fetchurl { 99456 - url = "https://registry.npmjs.org/node-red/-/node-red-2.0.1.tgz"; 99457 - sha512 = "r+wpPLWySuj/toc1mMkR8++mpFoTm9RZwsqe6guFc/IwEpQdDpmYkT11OGmTqjUqr8WdteOP+MNvdgNgtTzyxQ=="; 99594 + url = "https://registry.npmjs.org/node-red/-/node-red-2.0.3.tgz"; 99595 + sha512 = "sqhTY/p6lwO7lxjGrgbeZcml9xmpjeV1vdB/a3xXT6b5vAvq0bJgR5n+sXpZQc0JFSWGeygBXEoWvAAi39rkKQ=="; 99458 99596 }; 99459 99597 dependencies = [ 99460 99598 sources."@babel/runtime-7.14.8" 99461 99599 sources."@mapbox/node-pre-gyp-1.0.5" 99462 - sources."@node-red/editor-api-2.0.1" 99463 - sources."@node-red/editor-client-2.0.1" 99464 - (sources."@node-red/nodes-2.0.1" // { 99600 + sources."@node-red/editor-api-2.0.3" 99601 + sources."@node-red/editor-client-2.0.3" 99602 + (sources."@node-red/nodes-2.0.3" // { 99465 99603 dependencies = [ 99466 99604 sources."http-errors-1.7.3" 99467 99605 sources."iconv-lite-0.6.3" ··· 99474 99612 }) 99475 99613 ]; 99476 99614 }) 99477 - sources."@node-red/registry-2.0.1" 99478 - sources."@node-red/runtime-2.0.1" 99479 - sources."@node-red/util-2.0.1" 99615 + sources."@node-red/registry-2.0.3" 99616 + sources."@node-red/runtime-2.0.3" 99617 + sources."@node-red/util-2.0.3" 99480 99618 sources."@sindresorhus/is-4.0.1" 99481 99619 sources."@szmarczak/http-timer-4.0.6" 99482 99620 sources."@types/cacheable-request-6.0.2" 99483 99621 sources."@types/http-cache-semantics-4.0.1" 99484 99622 sources."@types/keyv-3.1.2" 99485 - sources."@types/node-16.4.0" 99623 + sources."@types/node-16.4.3" 99486 99624 sources."@types/responselike-1.0.0" 99487 99625 sources."abbrev-1.1.1" 99488 99626 sources."accepts-1.3.7" ··· 99771 99909 sources."raw-body-2.4.0" 99772 99910 sources."read-1.0.7" 99773 99911 sources."readable-stream-1.1.14" 99774 - sources."regenerator-runtime-0.13.8" 99912 + sources."regenerator-runtime-0.13.9" 99775 99913 sources."reinterval-1.1.0" 99776 99914 sources."require-from-string-2.0.2" 99777 99915 sources."resolve-alpn-1.2.0" ··· 100011 100149 ]; 100012 100150 }) 100013 100151 sources."strip-ansi-3.0.1" 100014 - (sources."tar-6.1.0" // { 100152 + (sources."tar-6.1.2" // { 100015 100153 dependencies = [ 100016 100154 sources."mkdirp-1.0.4" 100017 100155 ]; ··· 100242 100380 sources."@types/http-cache-semantics-4.0.1" 100243 100381 sources."@types/keyv-3.1.2" 100244 100382 sources."@types/minimist-1.2.2" 100245 - sources."@types/node-16.4.0" 100383 + sources."@types/node-16.4.3" 100246 100384 sources."@types/normalize-package-data-2.4.1" 100247 100385 sources."@types/parse-json-4.0.0" 100248 100386 sources."@types/responselike-1.0.0" ··· 100442 100580 sources."is-plain-obj-1.1.0" 100443 100581 sources."is-promise-2.2.2" 100444 100582 sources."is-scoped-2.1.0" 100445 - sources."is-stream-2.0.0" 100583 + sources."is-stream-2.0.1" 100446 100584 sources."is-typedarray-1.0.0" 100447 100585 sources."is-unicode-supported-0.1.0" 100448 100586 sources."is-url-superb-4.0.0" ··· 100746 100884 npm = nodeEnv.buildNodePackage { 100747 100885 name = "npm"; 100748 100886 packageName = "npm"; 100749 - version = "7.20.0"; 100887 + version = "7.20.1"; 100750 100888 src = fetchurl { 100751 - url = "https://registry.npmjs.org/npm/-/npm-7.20.0.tgz"; 100752 - sha512 = "59Eje4RcXP9EKYPIJvBvQGTyfEvZWaKdOx5+YZ+IJ+fqYhJJH5ng78qcdD8sFPyA1g1MFBR0DYXKfncwbxXpVA=="; 100889 + url = "https://registry.npmjs.org/npm/-/npm-7.20.1.tgz"; 100890 + sha512 = "Fau808Ybtzja6SdOglKyUfEX1vC57Gq9zR20IfK2z+iwaLmYOHvHqf3zQoeXzNLDzT5bf+CnKns3EhHLFLguew=="; 100753 100891 }; 100754 100892 buildInputs = globalBuildInputs; 100755 100893 meta = { ··· 101031 101169 sources."queue-microtask-1.2.3" 101032 101170 sources."rc-1.2.8" 101033 101171 sources."rc-config-loader-4.0.0" 101034 - sources."read-package-json-fast-2.0.2" 101172 + sources."read-package-json-fast-2.0.3" 101035 101173 sources."readable-stream-2.3.7" 101036 101174 sources."registry-auth-token-4.2.1" 101037 101175 sources."registry-url-5.1.0" ··· 101067 101205 sources."strip-ansi-3.0.1" 101068 101206 sources."strip-json-comments-2.0.1" 101069 101207 sources."supports-color-7.2.0" 101070 - sources."tar-6.1.0" 101208 + sources."tar-6.1.2" 101071 101209 sources."to-readable-stream-1.0.0" 101072 101210 sources."to-regex-range-5.0.1" 101073 101211 sources."tough-cookie-2.5.0" ··· 101151 101289 dependencies = [ 101152 101290 sources."abbrev-1.1.1" 101153 101291 sources."ajv-6.12.6" 101154 - sources."ansi-regex-2.1.1" 101155 - sources."aproba-1.2.0" 101292 + sources."ansi-regex-3.0.0" 101293 + sources."aproba-2.0.0" 101156 101294 sources."are-we-there-yet-1.1.5" 101157 101295 sources."argparse-0.1.15" 101158 101296 sources."asn1-0.2.4" ··· 101166 101304 sources."brace-expansion-1.1.11" 101167 101305 sources."caseless-0.12.0" 101168 101306 sources."chownr-0.0.2" 101169 - sources."code-point-at-1.1.0" 101170 101307 sources."coffee-script-1.12.7" 101308 + sources."color-support-1.1.3" 101171 101309 sources."combined-stream-1.0.8" 101172 101310 sources."concat-map-0.0.1" 101173 101311 (sources."config-chain-1.1.13" // { ··· 101203 101341 sources."mkdirp-0.5.5" 101204 101342 ]; 101205 101343 }) 101206 - sources."gauge-2.7.4" 101344 + sources."gauge-3.0.1" 101207 101345 sources."getpass-0.1.7" 101208 101346 sources."glob-7.1.7" 101209 101347 sources."graceful-fs-2.0.3" ··· 101214 101352 sources."inflight-1.0.6" 101215 101353 sources."inherits-2.0.4" 101216 101354 sources."ini-1.1.0" 101217 - sources."is-fullwidth-code-point-1.0.0" 101355 + sources."is-fullwidth-code-point-2.0.0" 101218 101356 sources."is-typedarray-1.0.0" 101219 101357 sources."isarray-1.0.0" 101220 101358 sources."isstream-0.1.2" ··· 101244 101382 sources."semver-2.3.2" 101245 101383 ]; 101246 101384 }) 101247 - sources."npmlog-4.1.2" 101248 - sources."number-is-nan-1.0.1" 101385 + sources."npmlog-5.0.0" 101249 101386 sources."oauth-sign-0.9.0" 101250 101387 sources."object-assign-4.1.1" 101251 101388 sources."once-1.4.0" ··· 101272 101409 sources."signal-exit-3.0.3" 101273 101410 sources."slide-1.1.6" 101274 101411 sources."sshpk-1.16.1" 101275 - sources."string-width-1.0.2" 101412 + sources."string-width-2.1.1" 101276 101413 (sources."string_decoder-1.1.1" // { 101277 101414 dependencies = [ 101278 101415 sources."safe-buffer-5.1.2" 101279 101416 ]; 101280 101417 }) 101281 - sources."strip-ansi-3.0.1" 101418 + sources."strip-ansi-4.0.0" 101282 101419 (sources."tar-0.1.17" // { 101283 101420 dependencies = [ 101284 101421 sources."inherits-1.0.2" ··· 101608 101745 sources."caller-path-2.0.0" 101609 101746 sources."callsites-2.0.0" 101610 101747 sources."caniuse-api-3.0.0" 101611 - sources."caniuse-lite-1.0.30001246" 101748 + sources."caniuse-lite-1.0.30001247" 101612 101749 sources."caseless-0.12.0" 101613 101750 sources."chalk-2.4.2" 101614 101751 sources."chokidar-2.1.8" ··· 101746 101883 sources."duplexer2-0.1.4" 101747 101884 sources."ecc-jsbn-0.1.2" 101748 101885 sources."ee-first-1.1.1" 101749 - sources."electron-to-chromium-1.3.782" 101886 + sources."electron-to-chromium-1.3.788" 101750 101887 (sources."elliptic-6.5.4" // { 101751 101888 dependencies = [ 101752 101889 sources."bn.js-4.12.0" ··· 102155 102292 sources."readdirp-2.2.1" 102156 102293 sources."regenerate-1.4.2" 102157 102294 sources."regenerate-unicode-properties-8.2.0" 102158 - sources."regenerator-runtime-0.13.8" 102295 + sources."regenerator-runtime-0.13.9" 102159 102296 sources."regenerator-transform-0.14.5" 102160 102297 (sources."regex-not-1.0.2" // { 102161 102298 dependencies = [ ··· 102617 102754 sources."tunnel-agent-0.6.0" 102618 102755 sources."tweetnacl-0.14.5" 102619 102756 sources."type-is-1.6.18" 102620 - sources."uglify-js-3.13.10" 102757 + sources."uglify-js-3.14.1" 102621 102758 sources."unix-dgram-2.0.4" 102622 102759 sources."unpipe-1.0.0" 102623 102760 sources."uri-js-4.4.1" ··· 102729 102866 sha512 = "spB+D+GXdM9JcPeWG8bpnWTxfXr/KwyyZ0OjNlpyw62ffxlCsbNhwaSmhXDpDC3wh4HuQejdYc1DlU+zTXL+WA=="; 102730 102867 }; 102731 102868 dependencies = [ 102732 - sources."addr-to-ip-port-1.5.1" 102869 + sources."addr-to-ip-port-1.5.3" 102733 102870 sources."airplay-protocol-2.0.2" 102734 102871 (sources."airplayer-2.0.0" // { 102735 102872 dependencies = [ ··· 102745 102882 sources."balanced-match-1.0.2" 102746 102883 sources."base64-js-0.0.8" 102747 102884 sources."bencode-2.0.1" 102748 - sources."bep53-range-1.1.0" 102885 + sources."bep53-range-1.1.1" 102749 102886 sources."big-integer-1.6.48" 102750 102887 sources."bitfield-0.1.0" 102751 102888 (sources."bittorrent-dht-6.4.2" // { ··· 103040 103177 peerflix-server = nodeEnv.buildNodePackage { 103041 103178 name = "peerflix-server"; 103042 103179 packageName = "peerflix-server"; 103043 - version = "0.5.1"; 103180 + version = "0.6.0"; 103044 103181 src = fetchurl { 103045 - url = "https://registry.npmjs.org/peerflix-server/-/peerflix-server-0.5.1.tgz"; 103046 - sha512 = "sXl2KCt8LCUrL6ezEPD4W5D5b+I0/VVOYlfI0K3GfdVUXkNHcb0q7cogPNjAXmoSMhvb57x2nhZN1xwxgGjzuw=="; 103182 + url = "https://registry.npmjs.org/peerflix-server/-/peerflix-server-0.6.0.tgz"; 103183 + sha512 = "NGLR8G6SP7WriloFrS5JDU8Rx1Ia1OlbJOpqGeAzMKxhrajnAdPza8VeXozMUk0oBCS8hr+cuLQ7stprgzISXg=="; 103047 103184 }; 103048 103185 dependencies = [ 103049 103186 sources."accepts-1.3.7" 103050 - sources."addr-to-ip-port-1.5.1" 103187 + sources."addr-to-ip-port-1.5.3" 103051 103188 sources."after-0.8.2" 103052 103189 sources."ajv-6.12.6" 103053 103190 sources."archiver-3.1.1" ··· 103405 103542 pkg = nodeEnv.buildNodePackage { 103406 103543 name = "pkg"; 103407 103544 packageName = "pkg"; 103408 - version = "5.3.0"; 103545 + version = "5.3.1"; 103409 103546 src = fetchurl { 103410 - url = "https://registry.npmjs.org/pkg/-/pkg-5.3.0.tgz"; 103411 - sha512 = "/DGG+QcSPraMAIxaoGCNqb2A6Xkm2jBQMsj2mjb4ag236ByTY9Xhpikvj5ixwlSQV0euuJw4fphKCd5YHRPS8w=="; 103547 + url = "https://registry.npmjs.org/pkg/-/pkg-5.3.1.tgz"; 103548 + sha512 = "jT/sptM1ZG++FNk+jnJYNoWLDQXYd7hqpnBhd5j18SNW1jJzNYo55RahuCiD0KN0PX9mb53GWCqKM0ia/mJytA=="; 103412 103549 }; 103413 103550 dependencies = [ 103414 103551 sources."@babel/helper-validator-identifier-7.14.8" ··· 103523 103660 sources."path-parse-1.0.7" 103524 103661 sources."path-type-4.0.0" 103525 103662 sources."picomatch-2.3.0" 103526 - sources."pkg-fetch-3.1.1" 103663 + sources."pkg-fetch-3.2.2" 103527 103664 sources."prebuild-install-6.0.1" 103528 103665 sources."prelude-ls-1.1.2" 103529 103666 sources."process-nextick-args-2.0.1" ··· 103788 103925 sources."statuses-1.5.0" 103789 103926 sources."string_decoder-0.10.31" 103790 103927 sources."supports-color-7.2.0" 103791 - sources."systeminformation-5.7.8" 103928 + sources."systeminformation-5.7.12" 103792 103929 sources."to-regex-range-5.0.1" 103793 103930 sources."toidentifier-1.0.0" 103794 103931 sources."tslib-2.3.0" ··· 104392 104529 bypassCache = true; 104393 104530 reconstructLock = true; 104394 104531 }; 104532 + pxder = nodeEnv.buildNodePackage { 104533 + name = "pxder"; 104534 + packageName = "pxder"; 104535 + version = "2.12.5"; 104536 + src = fetchurl { 104537 + url = "https://registry.npmjs.org/pxder/-/pxder-2.12.5.tgz"; 104538 + sha512 = "ttaD66WscLYQ4qIc/UbOvYvDfKYqbAzIzwFoFYyzLqQ0BhhZsVaIJhgl9oBo5NzMV4Cqu7dhxJP9noxqS9eqgw=="; 104539 + }; 104540 + dependencies = [ 104541 + sources."@sindresorhus/is-0.14.0" 104542 + sources."@szmarczak/http-timer-1.1.2" 104543 + sources."agent-base-6.0.2" 104544 + sources."appdata-path-1.0.0" 104545 + sources."at-least-node-1.0.0" 104546 + sources."axios-0.21.1" 104547 + sources."blueimp-md5-2.18.0" 104548 + (sources."cacheable-request-6.1.0" // { 104549 + dependencies = [ 104550 + sources."get-stream-5.2.0" 104551 + sources."lowercase-keys-2.0.0" 104552 + ]; 104553 + }) 104554 + sources."call-bind-1.0.2" 104555 + sources."clone-response-1.0.2" 104556 + sources."colors-1.4.0" 104557 + sources."commander-5.1.0" 104558 + sources."compare-versions-3.6.0" 104559 + sources."debug-4.3.2" 104560 + sources."decompress-response-3.3.0" 104561 + sources."deep-extend-0.6.0" 104562 + sources."defer-to-connect-1.1.3" 104563 + sources."duplexer3-0.1.4" 104564 + sources."end-of-stream-1.4.4" 104565 + sources."follow-redirects-1.14.1" 104566 + sources."fs-extra-9.1.0" 104567 + sources."function-bind-1.1.1" 104568 + sources."get-intrinsic-1.1.1" 104569 + sources."get-stream-4.1.0" 104570 + sources."got-9.6.0" 104571 + sources."graceful-fs-4.2.6" 104572 + sources."has-1.0.3" 104573 + sources."has-symbols-1.0.2" 104574 + sources."http-cache-semantics-4.1.0" 104575 + sources."https-proxy-agent-5.0.0" 104576 + sources."ini-1.3.8" 104577 + sources."ip-1.1.5" 104578 + sources."is-docker-2.2.1" 104579 + sources."is-wsl-2.2.0" 104580 + sources."js-base64-3.6.1" 104581 + sources."json-buffer-3.0.0" 104582 + sources."jsonfile-6.1.0" 104583 + sources."keyv-3.1.0" 104584 + sources."kleur-3.0.3" 104585 + sources."latest-version-5.1.0" 104586 + sources."lodash.flatmap-4.5.0" 104587 + sources."lowercase-keys-1.0.1" 104588 + sources."mimic-response-1.0.1" 104589 + sources."minimist-1.2.5" 104590 + sources."moment-2.29.1" 104591 + sources."ms-2.1.2" 104592 + sources."normalize-url-4.5.1" 104593 + sources."object-inspect-1.11.0" 104594 + sources."once-1.4.0" 104595 + sources."open-7.4.2" 104596 + sources."p-cancelable-1.1.0" 104597 + sources."package-json-6.5.0" 104598 + sources."pixiv-api-client-0.25.0" 104599 + sources."prepend-http-2.0.0" 104600 + sources."prompts-2.4.1" 104601 + sources."pump-3.0.0" 104602 + sources."qs-6.10.1" 104603 + sources."rc-1.2.8" 104604 + sources."readline-sync-1.4.10" 104605 + sources."register-protocol-win32-1.1.0" 104606 + sources."registry-auth-token-4.2.1" 104607 + sources."registry-url-5.1.0" 104608 + sources."responselike-1.0.2" 104609 + sources."semver-6.3.0" 104610 + sources."side-channel-1.0.4" 104611 + sources."sisteransi-1.0.5" 104612 + sources."smart-buffer-4.1.0" 104613 + sources."socks-2.6.1" 104614 + sources."socks-proxy-agent-5.0.1" 104615 + sources."strip-json-comments-2.0.1" 104616 + sources."to-readable-stream-1.0.0" 104617 + sources."universalify-2.0.0" 104618 + sources."url-parse-lax-3.0.0" 104619 + sources."winreg-1.2.4" 104620 + sources."wrappy-1.0.2" 104621 + ]; 104622 + buildInputs = globalBuildInputs; 104623 + meta = { 104624 + description = "Download illusts from pixiv.net P站插画批量下载器"; 104625 + homepage = "https://github.com/Tsuk1ko/pxder#readme"; 104626 + license = "GPL-3.0-or-later"; 104627 + }; 104628 + production = true; 104629 + bypassCache = true; 104630 + reconstructLock = true; 104631 + }; 104395 104632 pyright = nodeEnv.buildNodePackage { 104396 104633 name = "pyright"; 104397 104634 packageName = "pyright"; 104398 - version = "1.1.157"; 104635 + version = "1.1.158"; 104399 104636 src = fetchurl { 104400 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.157.tgz"; 104401 - sha512 = "slTex47hQKuyoi579Zk7lEhVH+4Dmn+eZ3gP1JGcFBcbcmDwd9ZI1ESww3jY3YoOYdNbYTafxBNuh3RHGkGiMA=="; 104637 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.158.tgz"; 104638 + sha512 = "gT+uy5OYyRTbB7997hag74kUuDh7XdMFYjj6AgBQ5Zp53e7oL09RH10zNDVHvI9nzuooiWjYkIS0rhuapfDL0g=="; 104402 104639 }; 104403 104640 buildInputs = globalBuildInputs; 104404 104641 meta = { ··· 104881 105118 sources."@types/glob-7.1.4" 104882 105119 sources."@types/json-schema-7.0.8" 104883 105120 sources."@types/minimatch-3.0.5" 104884 - sources."@types/node-16.4.0" 105121 + sources."@types/node-16.4.3" 104885 105122 sources."@types/parse-json-4.0.0" 104886 105123 sources."@types/q-1.5.5" 104887 105124 sources."@webassemblyjs/ast-1.9.0" ··· 105069 105306 sources."camel-case-3.0.0" 105070 105307 sources."camelcase-5.3.1" 105071 105308 sources."caniuse-api-3.0.0" 105072 - sources."caniuse-lite-1.0.30001246" 105309 + sources."caniuse-lite-1.0.30001247" 105073 105310 sources."case-sensitive-paths-webpack-plugin-2.4.0" 105074 105311 sources."caw-2.0.1" 105075 105312 (sources."chalk-2.4.2" // { ··· 105298 105535 sources."duplexify-3.7.1" 105299 105536 sources."ee-first-1.1.1" 105300 105537 sources."ejs-2.7.4" 105301 - sources."electron-to-chromium-1.3.782" 105538 + sources."electron-to-chromium-1.3.788" 105302 105539 (sources."elliptic-6.5.4" // { 105303 105540 dependencies = [ 105304 105541 sources."bn.js-4.12.0" ··· 105696 105933 ]; 105697 105934 }) 105698 105935 sources."mime-2.5.2" 105699 - sources."mime-db-1.48.0" 105700 - sources."mime-types-2.1.31" 105936 + sources."mime-db-1.49.0" 105937 + (sources."mime-types-2.1.31" // { 105938 + dependencies = [ 105939 + sources."mime-db-1.48.0" 105940 + ]; 105941 + }) 105701 105942 sources."mimic-fn-1.2.0" 105702 105943 sources."mimic-response-1.0.1" 105703 105944 sources."minimalistic-assert-1.0.1" ··· 106011 106252 sources."readdirp-3.6.0" 106012 106253 sources."regenerate-1.4.2" 106013 106254 sources."regenerate-unicode-properties-8.2.0" 106014 - sources."regenerator-runtime-0.13.8" 106255 + sources."regenerator-runtime-0.13.9" 106015 106256 sources."regenerator-transform-0.14.5" 106016 106257 sources."regex-not-1.0.2" 106017 106258 sources."regexp.prototype.flags-1.3.1" ··· 106356 106597 ]; 106357 106598 }) 106358 106599 sources."url-loader-2.3.0" 106359 - sources."url-parse-1.5.1" 106600 + sources."url-parse-1.5.3" 106360 106601 sources."url-parse-lax-3.0.0" 106361 106602 sources."url-to-options-1.0.1" 106362 106603 sources."use-3.1.1" ··· 106687 106928 sources."@redocly/ajv-8.6.2" 106688 106929 (sources."@redocly/openapi-core-1.0.0-beta.54" // { 106689 106930 dependencies = [ 106690 - sources."@types/node-14.17.5" 106931 + sources."@types/node-14.17.6" 106691 106932 ]; 106692 106933 }) 106693 106934 sources."@redocly/react-dropdown-aria-2.0.12" 106694 106935 sources."@types/json-schema-7.0.8" 106695 - sources."@types/node-15.14.2" 106936 + sources."@types/node-15.14.3" 106696 106937 sources."ansi-regex-5.0.0" 106697 106938 sources."ansi-styles-3.2.1" 106698 106939 sources."anymatch-3.1.2" ··· 106806 107047 }) 106807 107048 sources."hmac-drbg-1.0.1" 106808 107049 sources."hoist-non-react-statics-3.3.2" 106809 - sources."http2-client-1.3.3" 107050 + sources."http2-client-1.3.5" 106810 107051 sources."https-browserify-1.0.0" 106811 107052 sources."ieee754-1.2.1" 106812 107053 sources."inherits-2.0.1" ··· 106899 107140 ]; 106900 107141 }) 106901 107142 sources."reftools-1.1.9" 106902 - sources."regenerator-runtime-0.13.8" 107143 + sources."regenerator-runtime-0.13.9" 106903 107144 sources."require-directory-2.1.1" 106904 107145 sources."require-from-string-2.0.2" 106905 107146 sources."ripemd160-2.0.2" ··· 106932 107173 sources."to-fast-properties-2.0.0" 106933 107174 sources."to-regex-range-5.0.1" 106934 107175 sources."tty-browserify-0.0.0" 106935 - sources."uglify-js-3.13.10" 107176 + sources."uglify-js-3.14.1" 106936 107177 (sources."uri-js-4.4.1" // { 106937 107178 dependencies = [ 106938 107179 sources."punycode-2.1.1" ··· 107168 107409 rollup = nodeEnv.buildNodePackage { 107169 107410 name = "rollup"; 107170 107411 packageName = "rollup"; 107171 - version = "2.53.3"; 107412 + version = "2.54.0"; 107172 107413 src = fetchurl { 107173 - url = "https://registry.npmjs.org/rollup/-/rollup-2.53.3.tgz"; 107174 - sha512 = "79QIGP5DXz5ZHYnCPi3tLz+elOQi6gudp9YINdaJdjG0Yddubo6JRFUM//qCZ0Bap/GJrsUoEBVdSOc4AkMlRA=="; 107414 + url = "https://registry.npmjs.org/rollup/-/rollup-2.54.0.tgz"; 107415 + sha512 = "RHzvstAVwm9A751NxWIbGPFXs3zL4qe/eYg+N7WwGtIXVLy1cK64MiU37+hXeFm1jqipK6DGgMi6Z2hhPuCC3A=="; 107175 107416 }; 107176 107417 dependencies = [ 107177 107418 sources."fsevents-2.3.2" ··· 107224 107465 sources."@types/minimatch-3.0.5" 107225 107466 sources."@types/mocha-8.2.3" 107226 107467 sources."@types/node-12.12.70" 107227 - sources."@types/node-fetch-2.5.11" 107468 + sources."@types/node-fetch-2.5.12" 107228 107469 sources."@types/resolve-1.17.1" 107229 107470 sources."@types/vscode-1.58.1" 107230 - sources."@typescript-eslint/eslint-plugin-4.28.4" 107231 - sources."@typescript-eslint/experimental-utils-4.28.4" 107232 - sources."@typescript-eslint/parser-4.28.4" 107233 - sources."@typescript-eslint/scope-manager-4.28.4" 107234 - sources."@typescript-eslint/types-4.28.4" 107235 - sources."@typescript-eslint/typescript-estree-4.28.4" 107236 - sources."@typescript-eslint/visitor-keys-4.28.4" 107471 + sources."@typescript-eslint/eslint-plugin-4.28.5" 107472 + sources."@typescript-eslint/experimental-utils-4.28.5" 107473 + sources."@typescript-eslint/parser-4.28.5" 107474 + sources."@typescript-eslint/scope-manager-4.28.5" 107475 + sources."@typescript-eslint/types-4.28.5" 107476 + sources."@typescript-eslint/typescript-estree-4.28.5" 107477 + sources."@typescript-eslint/visitor-keys-4.28.5" 107237 107478 sources."@ungap/promise-all-settled-1.1.2" 107238 107479 sources."acorn-7.4.1" 107239 107480 sources."acorn-jsx-5.3.2" ··· 107497 107738 sources."resolve-from-4.0.0" 107498 107739 sources."reusify-1.0.4" 107499 107740 sources."rimraf-3.0.2" 107500 - sources."rollup-2.53.3" 107741 + sources."rollup-2.54.0" 107501 107742 sources."run-parallel-1.2.0" 107502 107743 sources."safe-buffer-5.2.1" 107503 107744 sources."semver-7.3.5" ··· 107702 107943 sass = nodeEnv.buildNodePackage { 107703 107944 name = "sass"; 107704 107945 packageName = "sass"; 107705 - version = "1.35.2"; 107946 + version = "1.36.0"; 107706 107947 src = fetchurl { 107707 - url = "https://registry.npmjs.org/sass/-/sass-1.35.2.tgz"; 107708 - sha512 = "jhO5KAR+AMxCEwIH3v+4zbB2WB0z67V1X0jbapfVwQQdjHZUGUyukpnoM6+iCMfsIUC016w9OPKQ5jrNOS9uXw=="; 107948 + url = "https://registry.npmjs.org/sass/-/sass-1.36.0.tgz"; 107949 + sha512 = "fQzEjipfOv5kh930nu3Imzq3ie/sGDc/4KtQMJlt7RRdrkQSfe37Bwi/Rf/gfuYHsIuE1fIlDMvpyMcEwjnPvg=="; 107709 107950 }; 107710 107951 dependencies = [ 107711 107952 sources."anymatch-3.1.2" ··· 107875 108116 serverless = nodeEnv.buildNodePackage { 107876 108117 name = "serverless"; 107877 108118 packageName = "serverless"; 107878 - version = "2.52.0"; 108119 + version = "2.52.1"; 107879 108120 src = fetchurl { 107880 - url = "https://registry.npmjs.org/serverless/-/serverless-2.52.0.tgz"; 107881 - sha512 = "MoEA+YLQsfknLuc2d/uV8vTehnAsAJqOXCyQLOZn3/QQ+rdwUFzasbg0m+zZdNMespfcHDTTht+CUgS2/svUJw=="; 108121 + url = "https://registry.npmjs.org/serverless/-/serverless-2.52.1.tgz"; 108122 + sha512 = "aDMJiSyCxqbJCt7011L0rMsxkd1lHSz8HotUiQWE8dFFqm3txZ1MpEy01bOLx4n35Qnyj1F8g+jmT9x+WnI2ZQ=="; 107882 108123 }; 107883 108124 dependencies = [ 107884 108125 sources."2-thenable-1.0.0" ··· 107926 108167 sources."argparse-1.0.10" 107927 108168 ]; 107928 108169 }) 107929 - sources."jwt-decode-3.1.2" 107930 108170 sources."ramda-0.27.1" 107931 108171 sources."strip-ansi-6.0.0" 107932 108172 sources."write-file-atomic-3.0.3" ··· 107945 108185 dependencies = [ 107946 108186 sources."adm-zip-0.4.16" 107947 108187 sources."js-yaml-3.14.1" 108188 + sources."jwt-decode-2.2.0" 107948 108189 ]; 107949 108190 }) 107950 108191 (sources."@serverless/platform-client-china-2.2.0" // { ··· 107957 108198 (sources."@serverless/utils-5.6.0" // { 107958 108199 dependencies = [ 107959 108200 sources."get-stream-6.0.1" 107960 - sources."jwt-decode-3.1.2" 107961 108201 sources."write-file-atomic-3.0.3" 107962 108202 ]; 107963 108203 }) ··· 107972 108212 sources."@types/keyv-3.1.2" 107973 108213 sources."@types/lodash-4.14.171" 107974 108214 sources."@types/long-4.0.1" 107975 - sources."@types/node-16.4.0" 108215 + sources."@types/node-16.4.3" 107976 108216 sources."@types/request-2.48.6" 107977 108217 sources."@types/request-promise-native-1.0.18" 107978 108218 sources."@types/responselike-1.0.0" ··· 108033 108273 sources."async-2.6.3" 108034 108274 sources."asynckit-0.4.0" 108035 108275 sources."at-least-node-1.0.0" 108036 - (sources."aws-sdk-2.951.0" // { 108276 + (sources."aws-sdk-2.954.0" // { 108037 108277 dependencies = [ 108038 108278 sources."buffer-4.9.2" 108039 108279 sources."ieee754-1.1.13" ··· 108391 108631 sources."json-stringify-safe-5.0.1" 108392 108632 sources."jsonfile-4.0.0" 108393 108633 sources."jsprim-1.4.1" 108394 - (sources."jszip-3.6.0" // { 108634 + (sources."jszip-3.7.0" // { 108395 108635 dependencies = [ 108396 108636 sources."readable-stream-2.3.7" 108397 108637 sources."safe-buffer-5.1.2" 108398 108638 sources."string_decoder-1.1.1" 108399 108639 ]; 108400 108640 }) 108401 - sources."jwt-decode-2.2.0" 108641 + sources."jwt-decode-3.1.2" 108402 108642 (sources."kafka-node-5.0.0" // { 108403 108643 dependencies = [ 108404 108644 sources."uuid-3.4.0" ··· 108651 108891 sources."untildify-3.0.3" 108652 108892 ]; 108653 108893 }) 108654 - (sources."tar-6.1.0" // { 108894 + (sources."tar-6.1.2" // { 108655 108895 dependencies = [ 108656 108896 sources."chownr-2.0.0" 108657 108897 sources."mkdirp-1.0.4" ··· 109388 109628 snyk = nodeEnv.buildNodePackage { 109389 109629 name = "snyk"; 109390 109630 packageName = "snyk"; 109391 - version = "1.664.0"; 109631 + version = "1.668.0"; 109392 109632 src = fetchurl { 109393 - url = "https://registry.npmjs.org/snyk/-/snyk-1.664.0.tgz"; 109394 - sha512 = "4YPqDdPPZsn3BBN82UiN6+Jy4zdKbBvw4MKClvh2QQgUJy6R9nEm/Q8IbdsM0jOqPByDRWVMwsCPQu3ZpqG3KA=="; 109633 + url = "https://registry.npmjs.org/snyk/-/snyk-1.668.0.tgz"; 109634 + sha512 = "iBcq6b2OOZAunU0qwbLhSHbfG3T1FtMTqTr0FUhOUAu9wRPAN5XbknRVeOb+ap1IbtzWeV1k6weY5Mp4liWirw=="; 109395 109635 }; 109396 109636 dependencies = [ 109397 109637 sources."@arcanis/slice-ansi-1.0.2" ··· 109413 109653 sources."semver-7.3.5" 109414 109654 ]; 109415 109655 }) 109416 - sources."@snyk/docker-registry-v2-client-2.2.4" 109656 + sources."@snyk/docker-registry-v2-client-2.3.0" 109417 109657 sources."@snyk/fast-glob-3.2.6-patch" 109418 109658 (sources."@snyk/fix-1.650.0" // { 109419 109659 dependencies = [ ··· 109441 109681 sources."strip-ansi-6.0.0" 109442 109682 ]; 109443 109683 }) 109444 - (sources."@snyk/java-call-graph-builder-1.23.0" // { 109684 + (sources."@snyk/java-call-graph-builder-1.23.1" // { 109445 109685 dependencies = [ 109446 109686 sources."rimraf-3.0.2" 109447 109687 sources."tmp-0.2.1" ··· 109458 109698 sources."tslib-2.3.0" 109459 109699 ]; 109460 109700 }) 109461 - (sources."@snyk/snyk-docker-pull-3.6.3" // { 109701 + (sources."@snyk/snyk-docker-pull-3.7.0" // { 109462 109702 dependencies = [ 109463 109703 sources."rimraf-3.0.2" 109464 109704 sources."tmp-0.2.1" ··· 109471 109711 }) 109472 109712 sources."@szmarczak/http-timer-4.0.6" 109473 109713 sources."@types/cacheable-request-6.0.2" 109474 - sources."@types/debug-4.1.6" 109714 + sources."@types/debug-4.1.7" 109475 109715 sources."@types/emscripten-1.39.5" 109476 109716 sources."@types/flat-cache-2.0.0" 109477 109717 sources."@types/graphlib-2.1.8" ··· 109483 109723 sources."@types/lodash.omit-4.5.6" 109484 109724 sources."@types/lodash.union-4.6.6" 109485 109725 sources."@types/minimatch-3.0.5" 109726 + sources."@types/ms-0.7.31" 109486 109727 sources."@types/node-13.13.52" 109487 109728 sources."@types/responselike-1.0.0" 109488 109729 sources."@types/sarif-2.1.4" 109489 - sources."@types/semver-7.3.7" 109730 + sources."@types/semver-7.3.8" 109490 109731 sources."@types/treeify-1.0.0" 109491 109732 sources."@types/uuid-8.3.1" 109492 109733 (sources."@yarnpkg/core-2.4.0" // { ··· 109501 109742 sources."which-2.0.2" 109502 109743 ]; 109503 109744 }) 109504 - sources."@yarnpkg/fslib-2.4.0" 109505 - sources."@yarnpkg/json-proxy-2.1.0" 109506 - sources."@yarnpkg/libzip-2.2.1" 109745 + sources."@yarnpkg/fslib-2.5.0" 109746 + sources."@yarnpkg/json-proxy-2.1.1" 109747 + sources."@yarnpkg/libzip-2.2.2" 109507 109748 sources."@yarnpkg/lockfile-1.1.0" 109508 - sources."@yarnpkg/parsers-2.3.0" 109749 + sources."@yarnpkg/parsers-2.4.0" 109509 109750 sources."@yarnpkg/pnp-2.3.2" 109510 109751 (sources."@yarnpkg/shell-2.4.1" // { 109511 109752 dependencies = [ ··· 109627 109868 sources."docker-modem-2.1.3" 109628 109869 sources."dockerfile-ast-0.2.1" 109629 109870 sources."dot-prop-5.3.0" 109630 - sources."dotnet-deps-parser-5.0.0" 109871 + sources."dotnet-deps-parser-5.1.0" 109631 109872 sources."duplexer3-0.1.4" 109632 109873 (sources."duplexify-3.7.1" // { 109633 109874 dependencies = [ ··· 109725 109966 sources."json-buffer-3.0.1" 109726 109967 sources."json-file-plus-3.3.1" 109727 109968 sources."json-stringify-safe-5.0.1" 109728 - (sources."jszip-3.6.0" // { 109969 + (sources."jszip-3.7.0" // { 109729 109970 dependencies = [ 109730 109971 sources."pako-1.0.11" 109731 109972 sources."readable-stream-2.3.7" ··· 109944 110185 sources."tmp-0.2.1" 109945 110186 ]; 109946 110187 }) 109947 - (sources."snyk-gradle-plugin-3.16.0" // { 110188 + (sources."snyk-gradle-plugin-3.16.1" // { 109948 110189 dependencies = [ 109949 110190 sources."chalk-3.0.0" 109950 110191 sources."rimraf-3.0.2" ··· 109953 110194 ]; 109954 110195 }) 109955 110196 sources."snyk-module-3.1.0" 109956 - (sources."snyk-mvn-plugin-2.26.1" // { 110197 + (sources."snyk-mvn-plugin-2.26.2" // { 109957 110198 dependencies = [ 109958 - (sources."@snyk/java-call-graph-builder-1.21.0" // { 109959 - dependencies = [ 109960 - sources."tmp-0.2.1" 109961 - ]; 109962 - }) 109963 - sources."rimraf-3.0.2" 109964 - (sources."tmp-0.1.0" // { 109965 - dependencies = [ 109966 - sources."rimraf-2.7.1" 109967 - ]; 109968 - }) 110199 + sources."tmp-0.1.0" 109969 110200 sources."tslib-1.11.1" 109970 110201 ]; 109971 110202 }) ··· 109976 110207 sources."p-map-2.1.0" 109977 110208 ]; 109978 110209 }) 109979 - (sources."snyk-nuget-plugin-1.21.1" // { 109980 - dependencies = [ 109981 - sources."jszip-3.4.0" 109982 - sources."pako-1.0.11" 109983 - sources."readable-stream-2.3.7" 109984 - sources."safe-buffer-5.1.2" 109985 - sources."string_decoder-1.1.1" 109986 - ]; 109987 - }) 110210 + sources."snyk-nuget-plugin-1.22.0" 109988 110211 sources."snyk-paket-parser-1.6.0" 109989 110212 (sources."snyk-php-plugin-1.9.2" // { 109990 110213 dependencies = [ ··· 110060 110283 sources."strip-eof-1.0.0" 110061 110284 sources."strip-json-comments-2.0.1" 110062 110285 sources."supports-color-7.2.0" 110063 - sources."tar-6.1.0" 110286 + sources."tar-6.1.2" 110064 110287 sources."tar-stream-2.2.0" 110065 110288 sources."temp-dir-2.0.0" 110066 110289 (sources."tempy-1.0.1" // { 110067 110290 dependencies = [ 110068 - sources."is-stream-2.0.0" 110291 + sources."is-stream-2.0.1" 110069 110292 sources."type-fest-0.16.0" 110070 110293 ]; 110071 110294 }) ··· 110149 110372 sources."@types/component-emitter-1.2.10" 110150 110373 sources."@types/cookie-0.4.1" 110151 110374 sources."@types/cors-2.8.12" 110152 - sources."@types/node-16.4.0" 110375 + sources."@types/node-16.4.3" 110153 110376 sources."accepts-1.3.7" 110154 110377 sources."base64-arraybuffer-0.1.4" 110155 110378 sources."base64id-2.0.0" ··· 110369 110592 sources."random-access-storage-1.3.0" 110370 110593 ]; 110371 110594 }) 110372 - sources."@types/minimatch-3.0.5" 110373 110595 sources."abstract-leveldown-6.0.3" 110374 110596 sources."aligned-block-file-1.2.2" 110375 110597 sources."ansi-escapes-1.4.0" ··· 110380 110602 sources."arr-diff-2.0.0" 110381 110603 sources."arr-flatten-1.1.0" 110382 110604 sources."arr-union-3.1.0" 110383 - sources."array-differ-3.0.0" 110384 110605 sources."array-union-1.0.2" 110385 110606 sources."array-uniq-1.0.3" 110386 110607 sources."array-unique-0.2.1" ··· 110464 110685 sources."code-point-at-1.1.0" 110465 110686 sources."collapse-white-space-1.0.6" 110466 110687 sources."collection-visit-1.0.0" 110467 - sources."color-convert-2.0.1" 110468 - sources."color-name-1.1.4" 110469 110688 sources."commander-2.20.3" 110470 110689 sources."compare-at-paths-1.0.0" 110471 110690 sources."component-emitter-1.3.0" ··· 110519 110738 sources."abstract-leveldown-6.3.0" 110520 110739 ]; 110521 110740 }) 110522 - sources."end-of-stream-1.4.4" 110523 110741 sources."epidemic-broadcast-trees-7.0.0" 110524 110742 sources."errno-0.1.8" 110525 110743 (sources."es-abstract-1.18.3" // { ··· 110534 110752 }) 110535 110753 sources."es-to-primitive-1.2.1" 110536 110754 sources."escape-string-regexp-1.0.5" 110537 - (sources."execa-4.1.0" // { 110538 - dependencies = [ 110539 - sources."cross-spawn-7.0.3" 110540 - sources."onetime-5.1.2" 110541 - sources."path-key-3.1.1" 110542 - sources."shebang-command-2.0.0" 110543 - sources."shebang-regex-3.0.0" 110544 - sources."which-2.0.2" 110545 - ]; 110546 - }) 110547 110755 sources."exit-hook-1.1.1" 110548 110756 sources."expand-brackets-0.1.5" 110549 110757 sources."expand-range-1.8.2" ··· 110561 110769 sources."file-uri-to-path-1.0.0" 110562 110770 sources."filename-regex-2.0.1" 110563 110771 sources."fill-range-2.2.4" 110564 - sources."find-up-4.1.0" 110565 110772 (sources."flumecodec-0.0.0" // { 110566 110773 dependencies = [ 110567 110774 sources."level-codec-6.2.0" ··· 110607 110814 sources."fsevents-1.2.13" 110608 110815 sources."function-bind-1.1.1" 110609 110816 sources."get-intrinsic-1.1.1" 110610 - sources."get-stream-5.2.0" 110611 110817 sources."get-value-2.0.6" 110612 110818 sources."glob-6.0.4" 110613 110819 sources."glob-base-0.3.0" ··· 110618 110824 sources."has-1.0.3" 110619 110825 sources."has-ansi-2.0.0" 110620 110826 sources."has-bigints-1.0.1" 110621 - sources."has-flag-4.0.0" 110622 110827 sources."has-network-0.0.1" 110623 110828 sources."has-symbols-1.0.2" 110624 110829 (sources."has-value-1.0.0" // { ··· 110640 110845 sources."he-0.5.0" 110641 110846 sources."heap-0.2.6" 110642 110847 sources."hoox-0.0.1" 110643 - sources."human-signals-1.1.1" 110644 110848 sources."idb-kv-store-4.5.0" 110645 110849 sources."ieee754-1.2.1" 110646 - sources."ignore-5.1.8" 110647 110850 sources."immediate-3.2.3" 110648 110851 sources."increment-buffer-1.0.1" 110649 110852 sources."inflight-1.0.6" ··· 110699 110902 sources."is-primitive-2.0.0" 110700 110903 sources."is-regex-1.1.3" 110701 110904 sources."is-set-2.0.2" 110702 - sources."is-stream-2.0.0" 110703 110905 sources."is-string-1.0.6" 110704 110906 sources."is-symbol-1.0.4" 110705 110907 sources."is-typed-array-1.1.5" ··· 110748 110950 sources."libnested-1.5.0" 110749 110951 sources."libsodium-0.7.9" 110750 110952 sources."libsodium-wrappers-0.7.9" 110751 - sources."locate-path-5.0.0" 110752 110953 sources."lodash.debounce-4.0.8" 110753 110954 sources."lodash.get-4.4.2" 110754 110955 sources."log-symbols-1.0.2" ··· 110764 110965 sources."markdown-table-0.4.0" 110765 110966 sources."math-random-1.0.4" 110766 110967 sources."mdmanifest-1.0.8" 110767 - sources."merge-stream-2.0.0" 110768 110968 sources."micromatch-2.3.11" 110769 - sources."mimic-fn-2.1.0" 110770 110969 sources."minimatch-3.0.4" 110771 110970 sources."minimist-1.2.5" 110772 110971 (sources."mixin-deep-1.3.2" // { ··· 110778 110977 sources."mkdirp-classic-0.5.3" 110779 110978 sources."monotonic-timestamp-0.0.9" 110780 110979 sources."moo-0.5.1" 110781 - sources."mri-1.1.6" 110782 110980 sources."ms-2.1.2" 110783 110981 sources."multiblob-1.13.7" 110784 110982 sources."multiblob-http-1.0.0" 110785 110983 sources."multicb-1.2.2" 110786 - (sources."multimatch-4.0.0" // { 110787 - dependencies = [ 110788 - sources."array-union-2.1.0" 110789 - sources."arrify-2.0.1" 110790 - ]; 110791 - }) 110792 110984 sources."multiserver-3.7.2" 110793 110985 sources."multiserver-address-1.0.1" 110794 110986 sources."multiserver-scopes-1.0.0" ··· 110820 111012 sources."normalize-path-2.1.1" 110821 111013 sources."normalize-uri-1.1.3" 110822 111014 sources."npm-prefix-1.2.0" 110823 - (sources."npm-run-path-4.0.1" // { 110824 - dependencies = [ 110825 - sources."path-key-3.1.1" 110826 - ]; 110827 - }) 110828 111015 sources."number-is-nan-1.0.1" 110829 111016 sources."object-assign-4.1.1" 110830 111017 (sources."object-copy-0.1.0" // { ··· 110867 111054 sources."os-tmpdir-1.0.2" 110868 111055 sources."osenv-0.1.5" 110869 111056 sources."p-defer-3.0.0" 110870 - sources."p-limit-2.3.0" 110871 - sources."p-locate-4.1.0" 110872 - sources."p-try-2.2.0" 110873 111057 sources."packet-stream-2.0.6" 110874 111058 sources."packet-stream-codec-1.1.3" 110875 111059 sources."parse-entities-1.2.2" 110876 111060 sources."parse-glob-3.0.4" 110877 111061 sources."pascalcase-0.1.1" 110878 - sources."path-exists-4.0.0" 110879 111062 sources."path-is-absolute-1.0.1" 110880 111063 sources."path-key-2.0.1" 110881 111064 sources."path-parse-1.0.7" ··· 110886 111069 sources."polyraf-1.1.0" 110887 111070 sources."posix-character-classes-0.1.1" 110888 111071 sources."preserve-0.2.0" 110889 - sources."prettier-2.3.2" 110890 - (sources."pretty-quick-3.1.1" // { 110891 - dependencies = [ 110892 - sources."ansi-styles-4.3.0" 110893 - sources."chalk-3.0.0" 110894 - sources."supports-color-7.2.0" 110895 - ]; 110896 - }) 110897 111072 sources."private-box-0.3.1" 110898 111073 sources."process-nextick-args-2.0.1" 110899 111074 sources."promisify-4loc-1.0.0" ··· 110901 111076 sources."prr-1.0.1" 110902 111077 sources."pull-abortable-4.0.0" 110903 111078 sources."pull-async-1.0.0" 110904 - (sources."pull-async-filter-1.0.0" // { 110905 - dependencies = [ 110906 - sources."pull-stream-2.28.4" 110907 - ]; 110908 - }) 110909 111079 sources."pull-awaitable-1.0.0" 110910 111080 sources."pull-box-stream-1.0.13" 110911 111081 sources."pull-cat-1.1.11" 110912 111082 sources."pull-catch-1.0.1" 110913 111083 sources."pull-cont-0.1.1" 110914 - sources."pull-core-1.1.0" 110915 111084 sources."pull-cursor-3.0.0" 110916 111085 sources."pull-defer-0.2.3" 110917 111086 sources."pull-drain-gently-1.1.0" ··· 110963 111132 }) 110964 111133 sources."pull-write-1.1.4" 110965 111134 sources."pull-write-file-0.2.4" 110966 - sources."pump-3.0.0" 110967 111135 sources."punycode-1.4.1" 110968 111136 sources."push-stream-10.1.2" 110969 111137 (sources."push-stream-to-pull-stream-1.0.5" // { ··· 111100 111268 sources."object-inspect-1.11.0" 111101 111269 ]; 111102 111270 }) 111103 - sources."signal-exit-3.0.3" 111104 111271 sources."smart-buffer-4.1.0" 111105 111272 (sources."snapdragon-0.8.2" // { 111106 111273 dependencies = [ ··· 111149 111316 sources."ssb-client-4.9.0" 111150 111317 sources."ssb-config-3.4.5" 111151 111318 sources."ssb-db-19.2.0" 111152 - (sources."ssb-db2-2.1.4" // { 111319 + (sources."ssb-db2-2.1.5" // { 111153 111320 dependencies = [ 111154 111321 sources."abstract-leveldown-6.2.3" 111155 111322 (sources."flumecodec-0.0.1" // { ··· 111163 111330 sources."mkdirp-1.0.4" 111164 111331 sources."push-stream-11.0.1" 111165 111332 sources."rimraf-3.0.2" 111166 - (sources."ssb-keys-8.1.0" // { 111333 + (sources."ssb-keys-8.2.0" // { 111167 111334 dependencies = [ 111168 111335 sources."mkdirp-0.5.5" 111169 111336 ]; ··· 111203 111370 sources."ssb-query-2.4.5" 111204 111371 sources."ssb-ref-2.14.3" 111205 111372 sources."ssb-replicate-1.3.3" 111206 - sources."ssb-sort-1.1.3" 111207 111373 sources."ssb-unix-socket-1.0.0" 111208 111374 (sources."ssb-validate-4.1.4" // { 111209 111375 dependencies = [ 111210 - sources."ssb-keys-8.1.0" 111376 + sources."ssb-keys-8.2.0" 111211 111377 ]; 111212 111378 }) 111213 111379 sources."ssb-ws-6.2.3" ··· 111242 111408 sources."string_decoder-1.1.1" 111243 111409 sources."stringify-entities-1.3.2" 111244 111410 sources."strip-ansi-3.0.1" 111245 - sources."strip-final-newline-2.0.0" 111246 111411 sources."strip-json-comments-2.0.1" 111247 111412 sources."supports-color-2.0.0" 111248 111413 (sources."tape-4.13.3" // { ··· 111415 111580 sources."async-1.5.2" 111416 111581 sources."async-limiter-1.0.1" 111417 111582 sources."asynckit-0.4.0" 111418 - (sources."aws-sdk-2.951.0" // { 111583 + (sources."aws-sdk-2.954.0" // { 111419 111584 dependencies = [ 111420 111585 sources."uuid-3.3.2" 111421 111586 ]; ··· 112253 112418 sources."callsites-3.1.0" 112254 112419 sources."camelcase-5.3.1" 112255 112420 sources."camelcase-keys-6.2.2" 112256 - sources."caniuse-lite-1.0.30001246" 112421 + sources."caniuse-lite-1.0.30001247" 112257 112422 (sources."chalk-4.1.1" // { 112258 112423 dependencies = [ 112259 112424 sources."ansi-styles-4.3.0" ··· 112291 112456 sources."domelementtype-1.3.1" 112292 112457 sources."domhandler-2.4.2" 112293 112458 sources."domutils-1.7.0" 112294 - sources."electron-to-chromium-1.3.782" 112459 + sources."electron-to-chromium-1.3.788" 112295 112460 sources."emoji-regex-8.0.0" 112296 112461 sources."entities-1.1.2" 112297 112462 sources."error-ex-1.3.2" ··· 112533 112698 sources."@emmetio/abbreviation-2.2.2" 112534 112699 sources."@emmetio/css-abbreviation-2.1.4" 112535 112700 sources."@emmetio/scanner-1.0.0" 112536 - sources."@types/node-16.4.0" 112701 + sources."@types/node-16.4.3" 112537 112702 sources."@types/pug-2.0.5" 112538 112703 sources."@types/sass-1.16.1" 112539 112704 sources."anymatch-3.1.2" ··· 112576 112741 sources."strip-indent-3.0.0" 112577 112742 sources."svelte-3.38.3" 112578 112743 sources."svelte-preprocess-4.7.4" 112579 - sources."svelte2tsx-0.4.2" 112744 + sources."svelte2tsx-0.4.3" 112580 112745 sources."to-regex-range-5.0.1" 112581 112746 sources."tslib-2.3.0" 112582 112747 sources."typescript-4.3.5" ··· 112615 112780 sha512 = "mqe/lgF0Ew+54YI4bPW5D26sMolh+MofQiz41U0c1GvUsP3bKsLLH0mjs4P4Xc+ajUFJtvGBo5PWaf0dd46sIQ=="; 112616 112781 }; 112617 112782 dependencies = [ 112618 - sources."@types/node-16.4.0" 112783 + sources."@types/node-16.4.3" 112619 112784 sources."@types/pug-2.0.5" 112620 112785 sources."@types/sass-1.16.1" 112621 112786 sources."ansi-styles-4.3.0" ··· 113295 113460 sources."truncate-utf8-bytes-1.0.2" 113296 113461 sources."type-is-1.6.18" 113297 113462 sources."typedarray-0.0.6" 113298 - sources."uglify-js-3.13.10" 113463 + sources."uglify-js-3.14.1" 113299 113464 sources."undefsafe-2.0.3" 113300 113465 (sources."union-value-1.0.1" // { 113301 113466 dependencies = [ ··· 113455 113620 sources."tough-cookie-2.5.0" 113456 113621 sources."tunnel-agent-0.6.0" 113457 113622 sources."tweetnacl-1.0.3" 113458 - sources."typegram-3.4.1" 113623 + sources."typegram-3.4.2" 113459 113624 sources."uri-js-4.4.1" 113460 113625 sources."uuid-3.4.0" 113461 113626 sources."verror-1.10.0" ··· 114759 114924 sources."@types/cacheable-request-6.0.2" 114760 114925 sources."@types/http-cache-semantics-4.0.1" 114761 114926 sources."@types/keyv-3.1.2" 114762 - sources."@types/node-16.4.0" 114927 + sources."@types/node-16.4.3" 114763 114928 sources."@types/responselike-1.0.0" 114764 114929 sources."abbrev-1.1.1" 114765 114930 sources."abstract-logging-2.0.1" ··· 115078 115243 sources."read-chunk-3.2.0" 115079 115244 sources."readable-stream-3.6.0" 115080 115245 sources."readable-web-to-node-stream-2.0.0" 115081 - sources."regenerator-runtime-0.13.8" 115246 + sources."regenerator-runtime-0.13.9" 115082 115247 sources."registry-auth-token-4.2.1" 115083 115248 sources."registry-url-5.1.0" 115084 115249 (sources."request-2.88.2" // { ··· 115146 115311 sources."strip-outer-1.0.1" 115147 115312 sources."strtok3-6.2.2" 115148 115313 sources."supports-color-7.2.0" 115149 - sources."tar-4.4.13" 115314 + sources."tar-4.4.15" 115150 115315 sources."tlds-1.208.0" 115151 115316 sources."to-array-0.1.4" 115152 115317 sources."to-readable-stream-1.0.0" ··· 115680 115845 sources."is-number-7.0.0" 115681 115846 sources."is-path-cwd-2.2.0" 115682 115847 sources."is-path-inside-3.0.3" 115683 - sources."is-stream-2.0.0" 115848 + sources."is-stream-2.0.1" 115684 115849 sources."jsonfile-6.1.0" 115685 115850 sources."merge2-1.4.1" 115686 115851 sources."micromatch-4.0.4" ··· 115723 115888 uglify-js = nodeEnv.buildNodePackage { 115724 115889 name = "uglify-js"; 115725 115890 packageName = "uglify-js"; 115726 - version = "3.13.10"; 115891 + version = "3.14.1"; 115727 115892 src = fetchurl { 115728 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.10.tgz"; 115729 - sha512 = "57H3ACYFXeo1IaZ1w02sfA71wI60MGco/IQFjOqK+WtKoprh7Go2/yvd2HPtoJILO2Or84ncLccI4xoHMTSbGg=="; 115893 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.1.tgz"; 115894 + sha512 = "JhS3hmcVaXlp/xSo3PKY5R0JqKs5M3IV+exdLHW99qKvKivPO4Z8qbej6mte17SOPqAOVMjt/XGgWacnFSzM3g=="; 115730 115895 }; 115731 115896 buildInputs = globalBuildInputs; 115732 115897 meta = { ··· 115772 115937 sources."@types/component-emitter-1.2.10" 115773 115938 sources."@types/cookie-0.4.1" 115774 115939 sources."@types/cors-2.8.12" 115775 - sources."@types/node-14.17.5" 115940 + sources."@types/node-14.17.6" 115776 115941 sources."abbrev-1.1.1" 115777 115942 sources."accepts-1.3.7" 115778 115943 sources."ansi-regex-5.0.0" ··· 115825 115990 sources."depd-1.1.2" 115826 115991 sources."destroy-1.0.4" 115827 115992 sources."diff-5.0.0" 115828 - sources."diff2html-3.4.7" 115993 + sources."diff2html-3.4.8" 115829 115994 sources."dnd-page-scroll-0.0.4" 115830 115995 sources."duplexer3-0.1.4" 115831 115996 sources."ee-first-1.1.1" ··· 115882 116047 sources."is-arrayish-0.3.2" 115883 116048 sources."is-docker-2.2.1" 115884 116049 sources."is-fullwidth-code-point-3.0.0" 115885 - sources."is-stream-2.0.0" 116050 + sources."is-stream-2.0.1" 115886 116051 sources."is-wsl-2.2.0" 115887 116052 sources."isarray-1.0.0" 115888 116053 sources."jquery-3.6.0" ··· 116157 116322 sources."string-width-1.0.2" 116158 116323 sources."string_decoder-1.1.1" 116159 116324 sources."strip-ansi-3.0.1" 116160 - sources."tar-6.1.0" 116325 + sources."tar-6.1.2" 116161 116326 sources."topojson-client-3.1.0" 116162 116327 sources."util-deprecate-1.0.2" 116163 116328 sources."vega-5.20.2" ··· 116697 116862 sources."buffer-from-1.1.1" 116698 116863 sources."call-bind-1.0.2" 116699 116864 sources."camelcase-6.2.0" 116700 - sources."caniuse-lite-1.0.30001246" 116865 + sources."caniuse-lite-1.0.30001247" 116701 116866 (sources."chalk-4.1.1" // { 116702 116867 dependencies = [ 116703 116868 sources."supports-color-7.2.0" ··· 116737 116902 sources."domelementtype-2.2.0" 116738 116903 sources."domhandler-4.2.0" 116739 116904 sources."domutils-2.7.0" 116740 - sources."electron-to-chromium-1.3.782" 116905 + sources."electron-to-chromium-1.3.788" 116741 116906 sources."emoji-regex-8.0.0" 116742 116907 sources."emojis-list-3.0.0" 116743 116908 sources."enhanced-resolve-5.8.2" ··· 116792 116957 sources."is-number-7.0.0" 116793 116958 sources."is-plain-obj-2.1.0" 116794 116959 sources."is-plain-object-2.0.4" 116795 - sources."is-stream-2.0.0" 116960 + sources."is-stream-2.0.1" 116796 116961 sources."isarray-0.0.1" 116797 116962 sources."isexe-2.0.0" 116798 116963 sources."isobject-3.0.1" ··· 116891 117056 sources."shebang-regex-3.0.0" 116892 117057 sources."side-channel-1.0.4" 116893 117058 sources."signal-exit-3.0.3" 116894 - sources."source-list-map-2.0.1" 116895 117059 sources."source-map-0.6.1" 116896 117060 sources."source-map-support-0.5.19" 116897 117061 sources."sprintf-js-1.0.3" ··· 116944 117108 sources."supports-color-5.5.0" 116945 117109 ]; 116946 117110 }) 116947 - sources."vscode-debugadapter-testsupport-1.47.0" 116948 - sources."vscode-debugprotocol-1.47.0" 117111 + sources."vscode-debugadapter-testsupport-1.48.0" 117112 + sources."vscode-debugprotocol-1.48.0" 116949 117113 sources."watchpack-2.2.0" 116950 - sources."webpack-5.45.1" 117114 + sources."webpack-5.47.0" 116951 117115 (sources."webpack-cli-4.7.2" // { 116952 117116 dependencies = [ 116953 117117 sources."commander-7.2.0" 116954 117118 ]; 116955 117119 }) 116956 117120 sources."webpack-merge-5.8.0" 116957 - sources."webpack-sources-2.3.1" 117121 + sources."webpack-sources-3.0.1" 116958 117122 sources."which-2.0.2" 116959 117123 sources."wide-align-1.1.3" 116960 117124 sources."wildcard-2.0.0" ··· 117245 117409 sources."tslib-1.14.1" 117246 117410 sources."tunnel-agent-0.6.0" 117247 117411 sources."tweetnacl-0.14.5" 117248 - sources."uglify-js-3.13.10" 117412 + sources."uglify-js-3.14.1" 117249 117413 sources."uid-0.0.2" 117250 117414 sources."unbzip2-stream-1.4.3" 117251 117415 sources."unyield-0.0.1" ··· 117304 117468 sources."@starptech/rehype-webparser-0.10.0" 117305 117469 sources."@starptech/webparser-0.10.0" 117306 117470 sources."@szmarczak/http-timer-1.1.2" 117307 - sources."@types/node-16.4.0" 117471 + sources."@types/node-16.4.3" 117308 117472 sources."@types/unist-2.0.6" 117309 117473 sources."@types/vfile-3.0.2" 117310 117474 sources."@types/vfile-message-2.0.0" ··· 118365 118529 sources."punycode-2.1.1" 118366 118530 sources."raf-3.4.1" 118367 118531 sources."readable-stream-2.3.7" 118368 - sources."regenerator-runtime-0.13.8" 118532 + sources."regenerator-runtime-0.13.9" 118369 118533 sources."require-directory-2.1.1" 118370 118534 sources."rgbcolor-1.0.1" 118371 118535 sources."rimraf-3.0.2" ··· 118386 118550 sources."svg-pathdata-5.0.5" 118387 118551 sources."svg2img-0.9.3" 118388 118552 sources."symbol-tree-3.2.4" 118389 - sources."tar-6.1.0" 118553 + sources."tar-6.1.2" 118390 118554 (sources."tough-cookie-4.0.0" // { 118391 118555 dependencies = [ 118392 118556 sources."universalify-0.1.2" ··· 118476 118640 sources."@sindresorhus/is-0.14.0" 118477 118641 sources."@szmarczak/http-timer-1.1.2" 118478 118642 sources."@types/minimatch-3.0.5" 118479 - sources."@types/node-16.4.0" 118643 + sources."@types/node-16.4.3" 118480 118644 sources."@types/yauzl-2.9.1" 118481 118645 sources."acorn-7.4.1" 118482 118646 sources."acorn-jsx-5.3.2" ··· 118736 118900 sources."is-path-inside-3.0.3" 118737 118901 sources."is-regex-1.1.3" 118738 118902 sources."is-relative-0.1.3" 118739 - sources."is-stream-2.0.0" 118903 + sources."is-stream-2.0.1" 118740 118904 sources."is-typedarray-1.0.0" 118741 118905 sources."is-utf8-0.2.1" 118742 118906 sources."is-wsl-2.2.0" ··· 118768 118932 ]; 118769 118933 }) 118770 118934 sources."jsprim-1.4.1" 118771 - sources."jszip-3.6.0" 118935 + sources."jszip-3.7.0" 118772 118936 sources."jwa-1.4.1" 118773 118937 sources."jws-3.2.2" 118774 118938 sources."keyv-3.1.0" ··· 118883 119047 sources."safe-buffer-5.1.2" 118884 119048 ]; 118885 119049 }) 118886 - sources."regenerator-runtime-0.13.8" 119050 + sources."regenerator-runtime-0.13.9" 118887 119051 sources."regexp.prototype.flags-1.3.1" 118888 119052 sources."regexpp-3.2.0" 118889 119053 sources."registry-auth-token-4.2.1" ··· 119029 119193 webpack = nodeEnv.buildNodePackage { 119030 119194 name = "webpack"; 119031 119195 packageName = "webpack"; 119032 - version = "5.45.1"; 119196 + version = "5.47.0"; 119033 119197 src = fetchurl { 119034 - url = "https://registry.npmjs.org/webpack/-/webpack-5.45.1.tgz"; 119035 - sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ=="; 119198 + url = "https://registry.npmjs.org/webpack/-/webpack-5.47.0.tgz"; 119199 + sha512 = "soKLGwcUM1R3YEbJhJNiZzy7T43TnI7ENda/ywfDp9G1mDlDTpO+qfc8I5b0AzMr9xM3jyvQ0n7ctJyiXuXW6Q=="; 119036 119200 }; 119037 119201 dependencies = [ 119038 119202 sources."@types/eslint-7.28.0" 119039 119203 sources."@types/eslint-scope-3.7.1" 119040 119204 sources."@types/estree-0.0.50" 119041 119205 sources."@types/json-schema-7.0.8" 119042 - sources."@types/node-16.4.0" 119206 + sources."@types/node-16.4.3" 119043 119207 sources."@webassemblyjs/ast-1.11.1" 119044 119208 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 119045 119209 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 119062 119226 sources."ajv-keywords-3.5.2" 119063 119227 sources."browserslist-4.16.6" 119064 119228 sources."buffer-from-1.1.1" 119065 - sources."caniuse-lite-1.0.30001246" 119229 + sources."caniuse-lite-1.0.30001247" 119066 119230 sources."chrome-trace-event-1.0.3" 119067 119231 sources."colorette-1.2.2" 119068 119232 sources."commander-2.20.3" 119069 - sources."electron-to-chromium-1.3.782" 119233 + sources."electron-to-chromium-1.3.788" 119070 119234 sources."enhanced-resolve-5.8.2" 119071 119235 sources."es-module-lexer-0.7.1" 119072 119236 sources."escalade-3.1.1" ··· 119098 119262 sources."safe-buffer-5.2.1" 119099 119263 sources."schema-utils-3.1.1" 119100 119264 sources."serialize-javascript-6.0.0" 119101 - sources."source-list-map-2.0.1" 119102 119265 sources."source-map-0.6.1" 119103 119266 sources."source-map-support-0.5.19" 119104 119267 sources."supports-color-8.1.1" ··· 119111 119274 sources."terser-webpack-plugin-5.1.4" 119112 119275 sources."uri-js-4.4.1" 119113 119276 sources."watchpack-2.2.0" 119114 - sources."webpack-sources-2.3.1" 119277 + sources."webpack-sources-3.0.1" 119115 119278 sources."yocto-queue-0.1.0" 119116 119279 ]; 119117 119280 buildInputs = globalBuildInputs; ··· 119153 119316 sources."interpret-2.2.0" 119154 119317 sources."is-core-module-2.5.0" 119155 119318 sources."is-plain-object-2.0.4" 119156 - sources."is-stream-2.0.0" 119319 + sources."is-stream-2.0.1" 119157 119320 sources."isexe-2.0.0" 119158 119321 sources."isobject-3.0.1" 119159 119322 sources."kind-of-6.0.3" ··· 119204 119367 dependencies = [ 119205 119368 sources."@types/glob-7.1.4" 119206 119369 sources."@types/minimatch-3.0.5" 119207 - sources."@types/node-16.4.0" 119370 + sources."@types/node-16.4.3" 119208 119371 sources."accepts-1.3.7" 119209 119372 sources."ajv-6.12.6" 119210 119373 sources."ajv-errors-1.0.1" ··· 119735 119898 sources."punycode-1.3.2" 119736 119899 ]; 119737 119900 }) 119738 - sources."url-parse-1.5.1" 119901 + sources."url-parse-1.5.3" 119739 119902 sources."use-3.1.1" 119740 119903 sources."util-deprecate-1.0.2" 119741 119904 sources."utils-merge-1.0.1" ··· 119858 120021 sources."@protobufjs/pool-1.1.0" 119859 120022 sources."@protobufjs/utf8-1.1.0" 119860 120023 sources."@types/long-4.0.1" 119861 - sources."@types/node-16.4.0" 119862 - sources."addr-to-ip-port-1.5.1" 120024 + sources."@types/node-16.4.3" 120025 + sources."addr-to-ip-port-1.5.3" 119863 120026 sources."airplay-js-0.3.0" 119864 120027 sources."ansi-regex-5.0.0" 119865 120028 sources."ansi-styles-4.3.0" 119866 120029 sources."balanced-match-1.0.2" 119867 120030 sources."base64-js-1.5.1" 119868 120031 sources."bencode-2.0.1" 119869 - sources."bep53-range-1.1.0" 120032 + sources."bep53-range-1.1.1" 119870 120033 sources."binary-search-1.3.6" 119871 120034 sources."bitfield-4.0.0" 119872 120035 (sources."bittorrent-dht-10.0.1" // { ··· 119875 120038 sources."ms-2.1.2" 119876 120039 ]; 119877 120040 }) 119878 - (sources."bittorrent-lsd-1.1.0" // { 120041 + (sources."bittorrent-lsd-1.1.1" // { 119879 120042 dependencies = [ 119880 120043 sources."debug-4.3.2" 119881 120044 sources."ms-2.1.2" 119882 120045 ]; 119883 120046 }) 119884 - sources."bittorrent-peerid-1.3.3" 120047 + sources."bittorrent-peerid-1.3.4" 119885 120048 (sources."bittorrent-protocol-3.4.2" // { 119886 120049 dependencies = [ 119887 120050 sources."debug-4.3.2" 119888 120051 sources."ms-2.1.2" 119889 120052 ]; 119890 120053 }) 119891 - (sources."bittorrent-tracker-9.17.3" // { 120054 + (sources."bittorrent-tracker-9.17.4" // { 119892 120055 dependencies = [ 119893 120056 sources."debug-4.3.2" 119894 120057 sources."decompress-response-6.0.0" ··· 119943 120106 }) 119944 120107 sources."core-util-is-1.0.2" 119945 120108 sources."cpus-1.0.3" 119946 - sources."create-torrent-4.7.0" 120109 + sources."create-torrent-4.7.1" 119947 120110 sources."debug-2.6.9" 119948 120111 sources."decompress-response-3.3.0" 119949 120112 sources."define-lazy-prop-2.0.0" ··· 119962 120125 sources."err-code-3.0.1" 119963 120126 sources."escalade-3.1.1" 119964 120127 sources."escape-html-1.0.3" 120128 + sources."fast-fifo-1.0.0" 119965 120129 sources."filestream-5.0.0" 119966 120130 sources."freelist-1.0.3" 119967 120131 (sources."fs-chunk-store-2.0.3" // { ··· 119997 120161 sources."k-rpc-5.1.0" 119998 120162 sources."k-rpc-socket-1.11.1" 119999 120163 sources."last-one-wins-1.0.4" 120164 + sources."limiter-1.1.5" 120000 120165 (sources."load-ip-set-2.2.1" // { 120001 120166 dependencies = [ 120002 120167 sources."decompress-response-6.0.0" ··· 120102 120267 sources."ms-2.1.2" 120103 120268 ]; 120104 120269 }) 120270 + sources."speed-limiter-1.0.2" 120105 120271 sources."speedometer-1.1.0" 120106 120272 sources."split-1.0.1" 120107 120273 sources."stream-to-blob-2.0.1" 120108 120274 sources."stream-to-blob-url-3.0.2" 120109 120275 sources."stream-with-known-length-to-buffer-1.0.4" 120276 + sources."streamx-2.10.3" 120110 120277 sources."string-width-4.2.2" 120111 120278 (sources."string2compact-1.3.0" // { 120112 120279 dependencies = [ ··· 120121 120288 sources."thunky-0.1.0" 120122 120289 sources."timeout-refresh-1.0.3" 120123 120290 sources."to-arraybuffer-1.0.1" 120124 - (sources."torrent-discovery-9.4.0" // { 120291 + (sources."torrent-discovery-9.4.2" // { 120125 120292 dependencies = [ 120126 120293 sources."debug-4.3.2" 120127 120294 sources."ms-2.1.2" ··· 120148 120315 sources."utp-native-2.5.3" 120149 120316 sources."videostream-3.2.2" 120150 120317 sources."vlc-command-1.2.0" 120151 - (sources."webtorrent-1.2.5" // { 120318 + (sources."webtorrent-1.3.3" // { 120152 120319 dependencies = [ 120153 120320 sources."debug-4.3.2" 120154 120321 sources."decompress-response-6.0.0" ··· 120270 120437 yarn = nodeEnv.buildNodePackage { 120271 120438 name = "yarn"; 120272 120439 packageName = "yarn"; 120273 - version = "1.22.10"; 120440 + version = "1.22.11"; 120274 120441 src = fetchurl { 120275 - url = "https://registry.npmjs.org/yarn/-/yarn-1.22.10.tgz"; 120276 - sha512 = "IanQGI9RRPAN87VGTF7zs2uxkSyQSrSPsju0COgbsKQOOXr5LtcVPeyXWgwVa0ywG3d8dg6kSYKGBuYK021qeA=="; 120442 + url = "https://registry.npmjs.org/yarn/-/yarn-1.22.11.tgz"; 120443 + sha512 = "AWje4bzqO9RUn3sdnM5N8n4ZJ0BqCc/kqFJvpOI5/EVkINXui0yuvU7NDCEF//+WaxHuNay2uOHxA4+tq1P3cg=="; 120277 120444 }; 120278 120445 buildInputs = globalBuildInputs; 120279 120446 meta = { ··· 120332 120499 sources."@tootallnate/once-1.1.2" 120333 120500 sources."@types/expect-1.20.4" 120334 120501 sources."@types/minimatch-3.0.5" 120335 - sources."@types/node-15.14.2" 120502 + sources."@types/node-15.14.3" 120336 120503 sources."@types/vinyl-2.0.5" 120337 120504 sources."abbrev-1.1.1" 120338 120505 (sources."agent-base-6.0.2" // { ··· 120895 121062 sources."queue-microtask-1.2.3" 120896 121063 sources."rc-1.2.8" 120897 121064 sources."read-cmd-shim-2.0.0" 120898 - sources."read-package-json-fast-2.0.2" 121065 + sources."read-package-json-fast-2.0.3" 120899 121066 (sources."read-pkg-1.1.0" // { 120900 121067 dependencies = [ 120901 121068 sources."path-type-1.1.0" ··· 120927 121094 sources."indent-string-2.1.0" 120928 121095 ]; 120929 121096 }) 120930 - sources."regenerator-runtime-0.13.8" 121097 + sources."regenerator-runtime-0.13.9" 120931 121098 sources."registry-auth-token-3.4.0" 120932 121099 sources."registry-url-3.1.0" 120933 121100 sources."remove-trailing-separator-1.1.0" ··· 121049 121216 ]; 121050 121217 }) 121051 121218 sources."taketalk-1.0.0" 121052 - (sources."tar-6.1.0" // { 121219 + (sources."tar-6.1.2" // { 121053 121220 dependencies = [ 121054 121221 sources."mkdirp-1.0.4" 121055 121222 ]; ··· 121168 121335 sources."has-flag-4.0.0" 121169 121336 sources."inquirer-8.1.2" 121170 121337 sources."is-fullwidth-code-point-3.0.0" 121171 - sources."is-stream-2.0.0" 121338 + sources."is-stream-2.0.1" 121172 121339 sources."locate-path-6.0.0" 121173 121340 sources."log-symbols-4.1.0" 121174 121341 sources."ms-2.1.2" ··· 121232 121399 dependencies = [ 121233 121400 sources."@types/fs-extra-9.0.12" 121234 121401 sources."@types/minimist-1.2.2" 121235 - sources."@types/node-16.4.0" 121236 - sources."@types/node-fetch-2.5.11" 121402 + sources."@types/node-16.4.3" 121403 + sources."@types/node-fetch-2.5.12" 121237 121404 sources."ansi-styles-4.3.0" 121238 121405 sources."asynckit-0.4.0" 121239 121406 sources."chalk-4.1.1"
+2 -2
pkgs/development/ocaml-modules/mirage-crypto/default.nix
··· 7 7 minimumOCamlVersion = "4.08"; 8 8 9 9 pname = "mirage-crypto"; 10 - version = "0.10.2"; 10 + version = "0.10.3"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/mirage/mirage-crypto/releases/download/v${version}/mirage-crypto-v${version}.tbz"; 14 - sha256 = "96c4826fa3532c9d2ba21cd5fa25df003be3df20b2cc01068b60d59e0222d906"; 14 + sha256 = "a27910365d59b02c3f0e8a40d93a5b81835acf832e1ffa596ee772b41e8a900b"; 15 15 }; 16 16 17 17 useDune2 = true;
+4 -1
pkgs/games/ecwolf/default.nix
··· 33 33 34 34 preConfigure = '' 35 35 sed -i -e "s|ecwolf.pk3|$out/share/ecwolf/ecwolf.pk3|" src/version.h 36 + '' 37 + # Disable app bundle creation on Darwin. It fails, and it is not needed to run it from the Nix store 38 + + lib.optionalString (stdenv.isDarwin) '' 39 + sed -i -e "s|include(\''${CMAKE_CURRENT_SOURCE_DIR}/macosx/install.txt)||" src/CMakeLists.txt 36 40 ''; 37 41 38 42 # Install the required PK3 file in the required data directory ··· 46 50 homepage = "https://maniacsvault.net/ecwolf/"; 47 51 license = licenses.gpl2Plus; 48 52 maintainers = with maintainers; [ sander ]; 49 - # Darwin is untested (supported by upstream) 50 53 platforms = platforms.all; 51 54 }; 52 55 }
+2 -2
pkgs/misc/vscode-extensions/remote-ssh/default.nix
··· 36 36 mktplcRef = { 37 37 name = "remote-ssh"; 38 38 publisher = "ms-vscode-remote"; 39 - version = "0.50.0"; 40 - sha256 = "01pyd6759p5nkjhjy3iplrl748xblr54l1jphk2g02s1n5ds2qb9"; 39 + version = "0.65.7"; 40 + sha256 = "ae86c4be79fc5af747bb1f1aa5841221af80ee7476cc2f1c9ac277fa2fa1d683"; 41 41 }; 42 42 43 43 postPatch = ''
+4 -4
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 19 19 # Policy: use the highest stable version as the default (on our master). 20 20 stable = if stdenv.hostPlatform.system == "x86_64-linux" 21 21 then generic { 22 - version = "460.73.01"; 23 - sha256_64bit = "120ymf59l6nipczszf82lrm2p4ihhqyv2pfwwfg9wy96vqcckc8i"; 24 - settingsSha256 = "08jh7g34p9yxv5fh1cw0r2pjx65ryiv3w2lk1qg0gxn2r7xypkx0"; 25 - persistencedSha256 = "040gx4wqp3hxcfb4aba4sl7b01ixr5slhzw0xldwcqlmhpwqphi5"; 22 + version = "470.57.02"; 23 + sha256_64bit = "sha256-VdeuEEgn+qeel1Mh/itg+d1C+/9lZCBTRDwOVv20xH0="; 24 + settingsSha256 = "sha256-DJg5QbyuKJmPpLQVYgTLvucI1e9YgQOO16690VXIWvk="; 25 + persistencedSha256 = "sha256-Cqv6oUFnsSi3S1sjplJKeq9bI2pqgBXPPb11HOJSlDo="; 26 26 } 27 27 else legacy_390; 28 28
+2 -2
pkgs/servers/tailscale/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tailscale"; 5 - version = "1.12.0"; 5 + version = "1.12.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tailscale"; 9 9 repo = "tailscale"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-PdCEmB0qchXtxIDfQVjA7f6YgHUe3ojmsMazpq4k6Bo="; 11 + sha256 = "sha256-lGUV3GsRz09HHooaBYSvM+D53R0FPkvPyZml66hxMww="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ];
+28 -13
pkgs/shells/xonsh/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 2 , fetchFromGitHub 3 3 , python3Packages 4 4 , glibcLocales ··· 8 8 9 9 python3Packages.buildPythonApplication rec { 10 10 pname = "xonsh"; 11 - version = "0.9.27"; 11 + version = "0.10.1"; 12 12 13 13 # fetch from github because the pypi package ships incomplete tests 14 14 src = fetchFromGitHub { 15 - owner = "xonsh"; 16 - repo = "xonsh"; 17 - rev = version; 18 - sha256 = "09w6bl3qsygfs2ph2r423ndnbd74bzf67vp8587h2dkkfxlzjbad"; 15 + owner = "xonsh"; 16 + repo = "xonsh"; 17 + rev = version; 18 + sha256 = "03ahay2rl98a9k4pqkxksmj6mcg554jnbhw9jh8cyvjrygrpcpch"; 19 19 }; 20 20 21 21 LC_ALL = "en_US.UTF-8"; ··· 31 31 patchShebangs . 32 32 ''; 33 33 34 - doCheck = !stdenv.isDarwin; 34 + disabledTests = [ 35 + # fails on sandbox 36 + "test_colorize_file" 37 + "test_loading_correctly" 38 + "test_no_command_path_completion" 39 + # fails on non-interactive shells 40 + "test_capture_always" 41 + "test_casting" 42 + "test_command_pipeline_capture" 43 + "test_dirty_working_directory" 44 + "test_man_completion" 45 + "test_vc_get_branch" 46 + ]; 35 47 36 - checkPhase = '' 37 - HOME=$TMPDIR pytest -k 'not test_repath_backslash and not test_os and not test_man_completion and not test_builtins and not test_main and not test_ptk_highlight and not test_pyghooks and not test_command_pipeline_capture and not test_git_dirty_working_directory_includes_untracked and not test_dirty_working_directory and not test_vc_get_branch' 38 - HOME=$TMPDIR pytest -k 'test_builtins or test_main' --reruns 5 39 - HOME=$TMPDIR pytest -k 'test_ptk_highlight' 48 + disabledTestPaths = [ 49 + # fails on non-interactive shells 50 + "tests/prompt/test_gitstatus.py" 51 + "tests/completers/test_bash_completer.py" 52 + ]; 53 + 54 + preCheck = '' 55 + HOME=$TMPDIR 40 56 ''; 41 57 42 - checkInputs = [ python3Packages.pytest python3Packages.pytest-rerunfailures glibcLocales git ]; 58 + checkInputs = [ glibcLocales git ] ++ (with python3Packages; [ pytestCheckHook pytest-subprocess ]); 43 59 44 60 propagatedBuildInputs = with python3Packages; [ ply prompt-toolkit pygments ]; 45 61 ··· 49 65 changelog = "https://github.com/xonsh/xonsh/raw/${version}/CHANGELOG.rst"; 50 66 license = licenses.bsd3; 51 67 maintainers = with maintainers; [ spwhitt vrthra ]; 52 - platforms = platforms.all; 53 68 }; 54 69 55 70 passthru = {
+1 -1
pkgs/tools/compression/mozlz4a/default.nix
··· 21 21 chmod a+x "$out/bin/mozlz4a" 22 22 ''; 23 23 24 - buildInputs = [ python3 python3.pkgs.python-lz4 ]; 24 + buildInputs = [ python3 python3.pkgs.lz4 ]; 25 25 26 26 meta = { 27 27 description = "A script to handle Mozilla's mozlz4 files";
+3 -3
pkgs/tools/games/ajour/default.nix
··· 34 34 35 35 in rustPlatform.buildRustPackage rec { 36 36 pname = "Ajour"; 37 - version = "1.2.1"; 37 + version = "1.2.5"; 38 38 39 39 src = fetchFromGitHub { 40 40 owner = "casperstorm"; 41 41 repo = "ajour"; 42 42 rev = version; 43 - sha256 = "sha256-arb6wPoDlNdBxSQ+G0KyN4Pbd0nPhb+DbvRlbPaPtPI="; 43 + sha256 = "sha256-Jn+CCUUGVa6YTD3af4bkY1wlJ4gAPOzxOwgfNx6VHL0="; 44 44 }; 45 45 46 - cargoSha256 = "sha256-1hK6C10oM5b8anX+EofekR686AZR5LcpXyhVkmHcSwA="; 46 + cargoSha256 = "sha256-7XMcZHezqk4g7FPgFCnMhbjJsJE8QkfzbtujUsV7GUw="; 47 47 48 48 nativeBuildInputs = [ 49 49 autoPatchelfHook
+14 -3
pkgs/tools/misc/android-tools/default.nix
··· 1 - { lib, stdenv, fetchurl 1 + { lib, stdenv, fetchurl, fetchpatch 2 2 , cmake, perl, go 3 - , protobuf, zlib, gtest, brotli, lz4, zstd, libusb1, pcre2 3 + , protobuf, zlib, gtest, brotli, lz4, zstd, libusb1, pcre2, fmt_7 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { ··· 12 12 sha256 = "sha256-YbO/bCQMsLTQzP72lsVZhuBmV4Q2J9+VD9z2iBrw+NQ="; 13 13 }; 14 14 15 + patches = [ 16 + # fmt 8 breaks the build but we can use fmt 7 from Nixpkgs: 17 + (fetchpatch { 18 + # Vendor google's version of fmtlib 19 + url = "https://github.com/nmeum/android-tools/commit/21061c1dfb006c22304053c1f6f9e48ae4cbe25a.patch"; 20 + sha256 = "17mcsgfc3i8xq4hck0ppnzafh15aljxy7j2q4djcmwnvrkv9kx3s"; 21 + revert = true; 22 + excludes = [ "vendor/fmtlib" ]; 23 + }) 24 + ]; 25 + 15 26 nativeBuildInputs = [ cmake perl go ]; 16 - buildInputs = [ protobuf zlib gtest brotli lz4 zstd libusb1 pcre2 ]; 27 + buildInputs = [ protobuf zlib gtest brotli lz4 zstd libusb1 pcre2 fmt_7 ]; 17 28 18 29 # Don't try to fetch any Go modules via the network: 19 30 GOFLAGS = [ "-mod=vendor" ];
+3 -3
pkgs/tools/misc/vector/default.nix
··· 28 28 29 29 rustPlatform.buildRustPackage rec { 30 30 pname = "vector"; 31 - version = "0.15.0"; 31 + version = "0.15.1"; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "timberio"; 35 35 repo = pname; 36 36 rev = "v${version}"; 37 - sha256 = "sha256-8ZsZyV6zlMiNTVYPwqQi7F1OJ4hV33IqrrGkvUb8JaY="; 37 + sha256 = "sha256-9Q0jRh8nlgiWslmlFAth8eff+hir5gIT8YL898FMSqk="; 38 38 }; 39 39 40 - cargoSha256 = "sha256-t6KeyBwIfCQTfaennFiFX3K+8unFOsduBP7nRbAo9wI="; 40 + cargoSha256 = "sha256-DFFA6t+ZgpGieq5kT80PW5ZSByIp54ia2UvcBYY2+Lg="; 41 41 nativeBuildInputs = [ pkg-config ]; 42 42 buildInputs = [ oniguruma openssl protobuf rdkafka zstd ] 43 43 ++ lib.optional stdenv.isDarwin [ Security libiconv coreutils CoreServices ];
+2 -2
pkgs/tools/security/fprintd/default.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "fprintd"; 28 - version = "1.90.9"; 28 + version = "1.92.0"; 29 29 outputs = [ "out" "devdoc" ]; 30 30 31 31 src = fetchFromGitLab { ··· 33 33 owner = "libfprint"; 34 34 repo = pname; 35 35 rev = "v${version}"; 36 - sha256 = "rOTVThHOY/Q2IIu2RGiv26UE2V/JFfWWnfKZQfKl5Mg="; 36 + sha256 = "0bqzxxb5iq3pdwdv1k8wsx3alirbjla6zgcki55b5p6mzrvk781x"; 37 37 }; 38 38 39 39 nativeBuildInputs = [
+5 -7
pkgs/tools/security/rekor/default.nix
··· 4 4 generic = { pname, packageToBuild, description }: 5 5 buildGoModule rec { 6 6 inherit pname; 7 - version = "0.2.0"; 7 + version = "0.3.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "sigstore"; 11 11 repo = "rekor"; 12 12 rev = "v${version}"; 13 - sha256 = "1y6qw55r30jgkcwc6434ly0v9dcfa2lc7z5djn7rjcqrjg3gn7yv"; 13 + sha256 = "sha256-FaVZm9C1pewJCZlYgNyD/ZYr/UIRvhqVTUhFTmysxeg="; 14 14 }; 15 15 16 - vendorSha256 = "1wlh505ypwyr91wi80fpbap3far3fljwjd4mql2qcqgg0b1yay9s"; 16 + vendorSha256 = "sha256-EBKj/+ruE88qvlbOme4GBfAqt3/1jHcqhY0IHxh6Y5U="; 17 17 18 18 subPackages = [ packageToBuild ]; 19 19 20 - preBuild = '' 21 - buildFlagsArray+=("-ldflags" "-s -w -X github.com/sigstore/rekor/${packageToBuild}/app.gitVersion=v${version}") 22 - ''; 20 + ldflags = [ "-s" "-w" "-X github.com/sigstore/rekor/${packageToBuild}/app.gitVersion=v${version}" ]; 23 21 24 22 meta = with lib; { 25 23 inherit description; 26 24 homepage = "https://github.com/sigstore/rekor"; 27 25 changelog = "https://github.com/sigstore/rekor/releases/tag/v${version}"; 28 26 license = licenses.asl20; 29 - maintainers = with maintainers; [ lesuisse ]; 27 + maintainers = with maintainers; [ lesuisse jk ]; 30 28 }; 31 29 }; 32 30 in {
+40 -5
pkgs/top-level/all-packages.nix
··· 3914 3914 3915 3915 corehunt = libsForQt5.callPackage ../applications/misc/corehunt { }; 3916 3916 3917 + coretoppings = libsForQt5.callPackage ../applications/misc/coretoppings { }; 3918 + 3917 3919 certstrap = callPackage ../tools/security/certstrap { }; 3918 3920 3919 3921 cfssl = callPackage ../tools/security/cfssl { }; ··· 11212 11214 langCC = false; 11213 11215 langAda = true; 11214 11216 profiledCompiler = false; 11215 - inherit gnatboot; 11217 + # As per upstream instructions building a cross compiler 11218 + # should be done with a (native) compiler of the same version. 11219 + # If we are cross-compiling GNAT, we may as well go the same 11220 + # route (especially as gnatboot can't cross-compile). 11221 + gnatboot = 11222 + if stdenv.hostPlatform == stdenv.targetPlatform 11223 + && stdenv.buildPlatform == stdenv.hostPlatform 11224 + then buildPackages.gnatboot 11225 + else buildPackages.gnat6; 11216 11226 }); 11217 11227 11218 11228 gnat9 = wrapCC (gcc9.cc.override { ··· 11221 11231 langCC = false; 11222 11232 langAda = true; 11223 11233 profiledCompiler = false; 11224 - gnatboot = gnat6; 11234 + # As per upstream instructions building a cross compiler 11235 + # should be done with a (native) compiler of the same version. 11236 + # If we are cross-compiling GNAT, we may as well do the same. 11237 + gnatboot = 11238 + if stdenv.hostPlatform == stdenv.targetPlatform 11239 + && stdenv.buildPlatform == stdenv.hostPlatform 11240 + then buildPackages.gnat6 11241 + else buildPackages.gnat9; 11225 11242 }); 11226 11243 11227 11244 gnat10 = wrapCC (gcc10.cc.override { ··· 11230 11247 langCC = false; 11231 11248 langAda = true; 11232 11249 profiledCompiler = false; 11233 - gnatboot = gnat6; 11250 + # As per upstream instructions building a cross compiler 11251 + # should be done with a (native) compiler of the same version. 11252 + # If we are cross-compiling GNAT, we may as well do the same. 11253 + gnatboot = 11254 + if stdenv.hostPlatform == stdenv.targetPlatform 11255 + && stdenv.buildPlatform == stdenv.hostPlatform 11256 + then buildPackages.gnat6 11257 + else buildPackages.gnat10; 11234 11258 }); 11235 11259 11236 11260 gnat11 = wrapCC (gcc11.cc.override { ··· 11239 11263 langCC = false; 11240 11264 langAda = true; 11241 11265 profiledCompiler = false; 11242 - gnatboot = gnat6; 11266 + # As per upstream instructions building a cross compiler 11267 + # should be done with a (native) compiler of the same version. 11268 + # If we are cross-compiling GNAT, we may as well do the same. 11269 + gnatboot = 11270 + if stdenv.hostPlatform == stdenv.targetPlatform 11271 + && stdenv.buildPlatform == stdenv.hostPlatform 11272 + then buildPackages.gnat6 11273 + else buildPackages.gnat11; 11243 11274 }); 11244 11275 11245 11276 gnatboot = wrapCC (callPackage ../development/compilers/gnatboot { }); ··· 23127 23158 23128 23159 assign-lb-ip = callPackage ../applications/networking/cluster/assign-lb-ip { }; 23129 23160 23130 - astroid = callPackage ../applications/networking/mailreaders/astroid { }; 23161 + astroid = callPackage ../applications/networking/mailreaders/astroid { 23162 + vim = vim_configurable.override { features = "normal"; gui = "auto"; }; 23163 + }; 23131 23164 23132 23165 aucatctl = callPackage ../applications/audio/aucatctl { }; 23133 23166 ··· 23157 23190 cadence = libsForQt5.callPackage ../applications/audio/cadence { }; 23158 23191 23159 23192 cheesecutter = callPackage ../applications/audio/cheesecutter { }; 23193 + 23194 + corefm = libsForQt5.callPackage ../applications/misc/corefm { }; 23160 23195 23161 23196 milkytracker = callPackage ../applications/audio/milkytracker { }; 23162 23197
+3 -3
pkgs/top-level/perl-packages.nix
··· 91 91 92 92 ack = buildPerlPackage { 93 93 pname = "ack"; 94 - version = "3.4.0"; 94 + version = "3.5.0"; 95 95 96 96 src = fetchurl { 97 - url = "mirror://cpan/authors/id/P/PE/PETDANCE/ack-v3.4.0.tar.gz"; 98 - sha256 = "0l3bkac2kl1nl5pwmh5b4plyr7wdzf1h501gwkga2ag1p6wxdkvf"; 97 + url = "mirror://cpan/authors/id/P/PE/PETDANCE/ack-v3.5.0.tar.gz"; 98 + sha256 = "sha256-ZgU+iE6AM4egLd7g1oq/KhAjn6tlQ2TaszKHMJpyVSE="; 99 99 }; 100 100 101 101 outputs = ["out" "man"];
+1 -1
pkgs/top-level/python-aliases.nix
··· 62 62 pytestquickcheck = pytest-quickcheck; # added 2021-07-20 63 63 pytestrunner = pytest-runner; # added 2021-01-04 64 64 python-lz4 = lz4; # added 2018-06-01 65 - python-pam = pam; # added 2020-09-07. 65 + pam = python-pam; # added 2020-09-07. 66 66 pytest_xdist = pytest-xdist; # added 2021-01-04 67 67 python_simple_hipchat = python-simple-hipchat; # added 2021-07-21 68 68 qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09