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