lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
b5b52a94 b872b6b4

+2252 -8928
+1
lib/systems/default.nix
··· 145 145 else if final.isS390 && !final.isS390x then null 146 146 else if final.isx86_64 then "x86_64" 147 147 else if final.isx86 then "i386" 148 + else if final.isMips64 then "mips64${lib.optionalString final.isLittleEndian "el"}" 148 149 else final.uname.processor; 149 150 150 151 # Name used by UEFI for architectures.
+9
maintainers/maintainer-list.nix
··· 15573 15573 githubId = 57180880; 15574 15574 name = "Ansh Tyagi"; 15575 15575 }; 15576 + therealr5 = { 15577 + email = "rouven@rfive.de"; 15578 + github = "therealr5"; 15579 + githubId = 72568063; 15580 + name = "Rouven Seifert"; 15581 + keys = [{ 15582 + fingerprint = "1169 87A8 DD3F 78FF 8601 BF4D B95E 8FE6 B11C 4D09"; 15583 + }]; 15584 + }; 15576 15585 therishidesai = { 15577 15586 email = "desai.rishi1@gmail.com"; 15578 15587 github = "therishidesai";
+13 -10
maintainers/scripts/copy-tarballs.pl
··· 50 50 } 51 51 } 52 52 53 + my $bucket; 53 54 54 - # S3 setup. 55 - my $aws_access_key_id = $ENV{'AWS_ACCESS_KEY_ID'} or die "AWS_ACCESS_KEY_ID not set\n"; 56 - my $aws_secret_access_key = $ENV{'AWS_SECRET_ACCESS_KEY'} or die "AWS_SECRET_ACCESS_KEY not set\n"; 55 + if (not defined $ENV{DEBUG}) { 56 + # S3 setup. 57 + my $aws_access_key_id = $ENV{'AWS_ACCESS_KEY_ID'} or die "AWS_ACCESS_KEY_ID not set\n"; 58 + my $aws_secret_access_key = $ENV{'AWS_SECRET_ACCESS_KEY'} or die "AWS_SECRET_ACCESS_KEY not set\n"; 57 59 58 - my $s3 = Net::Amazon::S3->new( 59 - { aws_access_key_id => $aws_access_key_id, 60 - aws_secret_access_key => $aws_secret_access_key, 61 - retry => 1, 62 - host => "s3-eu-west-1.amazonaws.com", 63 - }); 60 + my $s3 = Net::Amazon::S3->new( 61 + { aws_access_key_id => $aws_access_key_id, 62 + aws_secret_access_key => $aws_secret_access_key, 63 + retry => 1, 64 + host => "s3-eu-west-1.amazonaws.com", 65 + }); 64 66 65 - my $bucket = $s3->bucket("nixpkgs-tarballs") or die; 67 + $bucket = $s3->bucket("nixpkgs-tarballs") or die; 68 + } 66 69 67 70 my $doWrite = 0; 68 71 my $cacheFile = ($ENV{"HOME"} or die "\$HOME is not set") . "/.cache/nix/copy-tarballs";
+2
nixos/doc/manual/release-notes/rl-2305.section.md
··· 345 345 `services.dnsmasq.extraConfig` will be deprecated when NixOS 22.11 reaches 346 346 end of life. 347 347 348 + - `kube3d` has now been renamed to `k3d` since the 3d editor that originally took that name has been dropped from nixpkgs. `kube3d` will continue to work as an alias for now. 349 + 348 350 - The `dokuwiki` service is now configured via `services.dokuwiki.sites.<name>.settings` attribute set; `extraConfig` has been removed. 349 351 The `{aclUse,superUser,disableActions}` attributes have been renamed accordingly. `pluginsConfig` now only accepts an attribute set of booleans. 350 352 Passing plain PHP is no longer possible.
+21 -5
nixos/lib/test-driver/test_driver/machine.py
··· 7 7 import os 8 8 import queue 9 9 import re 10 + import select 10 11 import shlex 11 12 import shutil 12 13 import socket ··· 99 100 + "-blur 1x65535" 100 101 ) 101 102 102 - tess_args = f"-c debug_file=/dev/null --psm 11" 103 + tess_args = "-c debug_file=/dev/null --psm 11" 103 104 104 105 cmd = f"convert {magick_args} '{screenshot_path}' 'tiff:{screenshot_path}.tiff'" 105 106 ret = subprocess.run(cmd, shell=True, capture_output=True) ··· 154 155 # qemu options 155 156 qemu_opts = ( 156 157 " -device virtio-serial" 158 + # Note: virtconsole will map to /dev/hvc0 in Linux guests 157 159 " -device virtconsole,chardev=shell" 158 160 " -device virtio-rng-pci" 159 161 " -serial stdio" ··· 524 526 if timeout is not None: 525 527 timeout_str = f"timeout {timeout}" 526 528 529 + # While sh is bash on NixOS, this is not the case for every distro. 530 + # We explicitely call bash here to allow for the driver to boot other distros as well. 527 531 out_command = ( 528 - f"{timeout_str} sh -c {shlex.quote(command)} | (base64 --wrap 0; echo)\n" 532 + f"{timeout_str} bash -c {shlex.quote(command)} | (base64 --wrap 0; echo)\n" 529 533 ) 530 534 531 535 assert self.shell ··· 719 723 self.wait_for_unit(jobname) 720 724 721 725 def connect(self) -> None: 726 + def shell_ready(timeout_secs: int) -> bool: 727 + """We sent some data from the backdoor service running on the guest 728 + to indicate that the backdoor shell is ready. 729 + As soon as we read some data from the socket here, we assume that 730 + our root shell is operational. 731 + """ 732 + (ready, _, _) = select.select([self.shell], [], [], timeout_secs) 733 + return bool(ready) 734 + 722 735 if self.connected: 723 736 return 724 737 ··· 728 741 assert self.shell 729 742 730 743 tic = time.time() 731 - self.shell.recv(1024) 732 - # TODO: Timeout 744 + # TODO: do we want to bail after a set number of attempts? 745 + while not shell_ready(timeout_secs=30): 746 + self.log("Guest root shell did not produce any data yet...") 747 + 748 + self.log(self.shell.recv(1024).decode()) 733 749 toc = time.time() 734 750 735 751 self.log("connected to guest root shell") ··· 950 966 Prepares the machine to be reconnected which is useful if the 951 967 machine was started with `allow_reboot = True` 952 968 """ 953 - self.send_key(f"ctrl-alt-delete") 969 + self.send_key("ctrl-alt-delete") 954 970 self.connected = False 955 971 956 972 def wait_for_x(self) -> None:
+1 -1
nixos/modules/config/no-x-libs.nix
··· 47 47 libva = super.libva-minimal; 48 48 limesuite = super.limesuite.override { withGui = false; }; 49 49 mc = super.mc.override { x11Support = false; }; 50 - mpv-unwrapped = super.mpv-unwrapped.override { sdl2Support = false; x11Support = false; }; 50 + mpv-unwrapped = super.mpv-unwrapped.override { sdl2Support = false; x11Support = false; waylandSupport = false; }; 51 51 msmtp = super.msmtp.override { withKeyring = false; }; 52 52 neofetch = super.neofetch.override { x11Support = false; }; 53 53 networkmanager-fortisslvpn = super.networkmanager-fortisslvpn.override { withGnome = false; };
+1
nixos/modules/installer/cd-dvd/iso-image.nix
··· 483 483 Compression settings to use for the squashfs nix store. 484 484 ''; 485 485 example = "zstd -Xcompression-level 6"; 486 + type = types.str; 486 487 }; 487 488 488 489 isoImage.edition = mkOption {
+15
nixos/modules/installer/netboot/netboot.nix
··· 8 8 { 9 9 options = { 10 10 11 + netboot.squashfsCompression = mkOption { 12 + default = with pkgs.stdenv.hostPlatform; "xz -Xdict-size 100% " 13 + + lib.optionalString isx86 "-Xbcj x86" 14 + # Untested but should also reduce size for these platforms 15 + + lib.optionalString isAarch "-Xbcj arm" 16 + + lib.optionalString (isPower && is32bit && isBigEndian) "-Xbcj powerpc" 17 + + lib.optionalString (isSparc) "-Xbcj sparc"; 18 + description = lib.mdDoc '' 19 + Compression settings to use for the squashfs nix store. 20 + ''; 21 + example = "zstd -Xcompression-level 6"; 22 + type = types.str; 23 + }; 24 + 11 25 netboot.storeContents = mkOption { 12 26 example = literalExpression "[ pkgs.stdenv ]"; 13 27 description = lib.mdDoc '' ··· 77 91 # Create the squashfs image that contains the Nix store. 78 92 system.build.squashfsStore = pkgs.callPackage ../../../lib/make-squashfs.nix { 79 93 storeContents = config.netboot.storeContents; 94 + comp = config.netboot.squashfsCompression; 80 95 }; 81 96 82 97
+1 -1
nixos/modules/programs/fzf.nix
··· 26 26 source ${pkgs.fzf}/share/fzf/key-bindings.zsh 27 27 ''); 28 28 29 - programs.zsh.ohMyZsh.plugins = optional (cfg.keybindings || cfg.fuzzyCompletion) [ "fzf" ]; 29 + programs.zsh.ohMyZsh.plugins = lib.mkIf (cfg.keybindings || cfg.fuzzyCompletion) [ "fzf" ]; 30 30 }; 31 31 meta.maintainers = with maintainers; [ laalsaas ]; 32 32 }
+2
nixos/modules/programs/shadow.nix
··· 41 41 # This should be made configurable. 42 42 #CHFN_RESTRICT frwh 43 43 44 + # The default crypt() method, keep in sync with the PAM default 45 + ENCRYPT_METHOD YESCRYPT 44 46 ''; 45 47 46 48 mkSetuidRoot = source:
+1 -1
nixos/modules/security/apparmor/includes.nix
··· 22 22 # some may even be completely useless. 23 23 config.security.apparmor.includes = { 24 24 # This one is included by <tunables/global> 25 - # which is usualy included before any profile. 25 + # which is usually included before any profile. 26 26 "abstractions/tunables/alias" = '' 27 27 alias /bin -> /run/current-system/sw/bin, 28 28 alias /lib/modules -> /run/current-system/kernel/lib/modules,
+1 -1
nixos/modules/security/tpm2.nix
··· 3 3 cfg = config.security.tpm2; 4 4 5 5 # This snippet is taken from tpm2-tss/dist/tpm-udev.rules, but modified to allow custom user/groups 6 - # The idea is that the tssUser is allowed to acess the TPM and kernel TPM resource manager, while 6 + # The idea is that the tssUser is allowed to access the TPM and kernel TPM resource manager, while 7 7 # the tssGroup is only allowed to access the kernel resource manager 8 8 # Therefore, if either of the two are null, the respective part isn't generated 9 9 udevRules = tssUser: tssGroup: ''
+1 -1
nixos/modules/services/games/asf.nix
··· 245 245 246 246 rm -f www 247 247 ${optionalString cfg.web-ui.enable '' 248 - ln -s ${cfg.web-ui.package}/lib/dist www 248 + ln -s ${cfg.web-ui.package}/ www 249 249 ''} 250 250 ''; 251 251 };
+1 -1
nixos/modules/services/monitoring/prometheus/exporters.md
··· 76 76 directory, which will be called postfix.nix and contains all exporter 77 77 specific options and configuration: 78 78 ``` 79 - # nixpgs/nixos/modules/services/prometheus/exporters/postfix.nix 79 + # nixpkgs/nixos/modules/services/prometheus/exporters/postfix.nix 80 80 { config, lib, pkgs, options }: 81 81 82 82 with lib;
+1 -1
nixos/modules/services/torrent/deluge.nix
··· 93 93 `true`. 94 94 95 95 It does NOT apply to the daemon port nor the web UI port. To access those 96 - ports secuerly check the documentation 96 + ports securely check the documentation 97 97 <https://dev.deluge-torrent.org/wiki/UserGuide/ThinClient#CreateSSHTunnel> 98 98 or use a VPN or configure certificates for deluge. 99 99 '';
+1 -1
nixos/modules/services/web-apps/matomo.md
··· 3 3 Matomo is a real-time web analytics application. This module configures 4 4 php-fpm as backend for Matomo, optionally configuring an nginx vhost as well. 5 5 6 - An automatic setup is not suported by Matomo, so you need to configure Matomo 6 + An automatic setup is not supported by Matomo, so you need to configure Matomo 7 7 itself in the browser-based Matomo setup. 8 8 9 9 ## Database Setup {#module-services-matomo-database-setup}
+4 -4
nixos/modules/services/web-apps/peertube.nix
··· 429 429 430 430 environment = env; 431 431 432 - path = with pkgs; [ bashInteractive ffmpeg nodejs_16 openssl yarn python3 ]; 432 + path = with pkgs; [ bashInteractive ffmpeg nodejs_18 openssl yarn python3 ]; 433 433 434 434 script = '' 435 435 #!/bin/sh ··· 490 490 services.nginx = lib.mkIf cfg.configureNginx { 491 491 enable = true; 492 492 virtualHosts."${cfg.localDomain}" = { 493 - root = "/var/lib/peertube"; 493 + root = "/var/lib/peertube/www"; 494 494 495 495 # Application 496 496 locations."/" = { ··· 593 593 594 594 # Bypass PeerTube for performance reasons. 595 595 locations."~ ^/client/(assets/images/(icons/icon-36x36\.png|icons/icon-48x48\.png|icons/icon-72x72\.png|icons/icon-96x96\.png|icons/icon-144x144\.png|icons/icon-192x192\.png|icons/icon-512x512\.png|logo\.svg|favicon\.png|default-playlist\.jpg|default-avatar-account\.png|default-avatar-account-48x48\.png|default-avatar-video-channel\.png|default-avatar-video-channel-48x48\.png))$" = { 596 - tryFiles = "/www/client-overrides/$1 /www/client/$1 $1"; 596 + tryFiles = "/client-overrides/$1 /client/$1 $1"; 597 597 priority = 1310; 598 598 }; 599 599 ··· 859 859 home = cfg.package; 860 860 }; 861 861 }) 862 - (lib.attrsets.setAttrByPath [ cfg.user "packages" ] [ cfg.package peertubeEnv peertubeCli pkgs.ffmpeg pkgs.nodejs_16 pkgs.yarn ]) 862 + (lib.attrsets.setAttrByPath [ cfg.user "packages" ] [ cfg.package peertubeEnv peertubeCli pkgs.ffmpeg pkgs.nodejs_18 pkgs.yarn ]) 863 863 (lib.mkIf cfg.redis.enableUnixSocket {${config.services.peertube.user}.extraGroups = [ "redis-peertube" ];}) 864 864 ]; 865 865
+20 -19
nixos/modules/system/boot/systemd/repart.nix
··· 72 72 }; 73 73 74 74 config = lib.mkIf (cfg.enable || initrdCfg.enable) { 75 - # Always link the definitions into /etc so that they are also included in 76 - # the /nix/store of the sysroot during early userspace (i.e. while in the 77 - # initrd). 78 - environment.etc."repart.d".source = definitionsDirectory; 79 - 80 75 boot.initrd.systemd = lib.mkIf initrdCfg.enable { 81 76 additionalUpstreamUnits = [ 82 77 "systemd-repart.service" ··· 86 81 "${config.boot.initrd.systemd.package}/bin/systemd-repart" 87 82 ]; 88 83 84 + contents."/etc/repart.d".source = definitionsDirectory; 85 + 89 86 # Override defaults in upstream unit. 90 87 services.systemd-repart = { 91 - # Unset the conditions as they cannot be met before activation because 92 - # the definition files are not stored in the expected locations. 93 - unitConfig.ConditionDirectoryNotEmpty = [ 94 - " " # required to unset the previous value. 95 - ]; 88 + # systemd-repart tries to create directories in /var/tmp by default to 89 + # store large temporary files that benefit from persistence on disk. In 90 + # the initrd, however, /var/tmp does not provide more persistence than 91 + # /tmp, so we re-use it here. 92 + environment."TMPDIR" = "/tmp"; 96 93 serviceConfig = { 97 - # systemd-repart runs before the activation script. Thus we cannot 98 - # rely on them being linked in /etc already. Instead we have to 99 - # explicitly pass their location in the sysroot to the binary. 100 94 ExecStart = [ 101 95 " " # required to unset the previous value. 96 + # When running in the initrd, systemd-repart by default searches 97 + # for definition files in /sysroot or /sysusr. We tell it to look 98 + # in the initrd itself. 102 99 ''${config.boot.initrd.systemd.package}/bin/systemd-repart \ 103 - --definitions=/sysroot${definitionsDirectory} \ 100 + --definitions=/etc/repart.d \ 104 101 --dry-run=no 105 102 '' 106 103 ]; 107 104 }; 108 - # Because the initrd does not have the `initrd-usr-fs.target` the 109 - # upestream unit runs too early in the boot process, before the sysroot 110 - # is available. However, systemd-repart needs access to the sysroot to 111 - # find the definition files. 105 + # systemd-repart needs to run after /sysroot (or /sysuser, but we don't 106 + # have it) has been mounted because otherwise it cannot determine the 107 + # device (i.e disk) to operate on. If you want to run systemd-repart 108 + # without /sysroot, you have to explicitly tell it which device to 109 + # operate on. 112 110 after = [ "sysroot.mount" ]; 113 111 }; 112 + }; 113 + 114 + environment.etc = lib.mkIf cfg.enable { 115 + "repart.d".source = definitionsDirectory; 114 116 }; 115 117 116 118 systemd = lib.mkIf cfg.enable { ··· 119 121 ]; 120 122 }; 121 123 }; 122 - 123 124 }
+10 -2
nixos/modules/testing/test-instrumentation.nix
··· 36 36 while ! exec 2> /dev/${qemu-common.qemuSerialDevice}; do sleep 0.1; done 37 37 echo "connecting to host..." >&2 38 38 stty -F /dev/hvc0 raw -echo # prevent nl -> cr/nl conversion 39 - echo 40 - PS1= exec /bin/sh 39 + # The following line is essential since it signals to 40 + # the test driver that the shell is ready. 41 + # See: the connect method in the Machine class. 42 + echo "Spawning backdoor root shell..." 43 + # Passing the terminal device makes bash run non-interactively. 44 + # Otherwise we get errors on the terminal because bash tries to 45 + # setup things like job control. 46 + # Note: calling bash explicitely here instead of sh makes sure that 47 + # we can also run non-NixOS guests during tests. 48 + PS1= exec /usr/bin/env bash --norc /dev/hvc0 41 49 ''; 42 50 serviceConfig.KillSignal = "SIGHUP"; 43 51 };
+1 -1
nixos/tests/gitea.nix
··· 30 30 31 31 nodes = { 32 32 server = { config, pkgs, ... }: { 33 - virtualisation.memorySize = 2048; 33 + virtualisation.memorySize = 2047; 34 34 services.gitea = { 35 35 enable = true; 36 36 database = { inherit type; };
+1
nixos/tests/mosquitto.nix
··· 66 66 in { 67 67 server = { pkgs, ... }: { 68 68 networking.firewall.allowedTCPPorts = [ port tlsPort anonPort ]; 69 + networking.useNetworkd = true; 69 70 services.mosquitto = { 70 71 enable = true; 71 72 settings = {
+1 -1
nixos/tests/mysql/mysql.nix
··· 15 15 name ? mkTestName package, 16 16 useSocketAuth ? true, 17 17 hasMroonga ? true, 18 - hasRocksDB ? true 18 + hasRocksDB ? pkgs.stdenv.hostPlatform.is64bit 19 19 }: makeTest { 20 20 inherit name; 21 21 meta = with lib.maintainers; {
+1 -1
nixos/tests/wiki-js.nix
··· 5 5 }; 6 6 7 7 nodes.machine = { pkgs, ... }: { 8 - virtualisation.memorySize = 2048; 8 + virtualisation.memorySize = 2047; 9 9 services.wiki-js = { 10 10 enable = true; 11 11 settings.db.host = "/run/postgresql";
+4 -16
pkgs/applications/audio/ledfx/default.nix
··· 1 1 { lib 2 - , fetchpatch 3 2 , python3 4 3 }: 5 4 6 5 python3.pkgs.buildPythonPackage rec { 7 6 pname = "ledfx"; 8 - version = "2.0.64"; 7 + version = "2.0.67"; 9 8 format = "setuptools"; 10 9 11 10 src = python3.pkgs.fetchPypi { 12 11 inherit pname version; 13 - hash = "sha256-TKRa4PcMd0Jl94XD2WubOhmsxZaUplZeWKsuKz83Rl4="; 12 + hash = "sha256-lFxAMjglQZXCySr83PtvStU6hw2ucQu+rSjIHo1yZBk="; 14 13 }; 15 14 16 - patches = [ 17 - # replace tcp-latency which is not packaged with icmplib 18 - (fetchpatch { 19 - url = "https://github.com/LedFx/LedFx/commit/98cd4256846ae3bdae7094eeacb3b02a4807dc6f.patch"; 20 - excludes = [ 21 - # only used in win.spec file which is windows specific 22 - "hiddenimports.py" 23 - ]; 24 - hash = "sha256-p9fiLdjZI5fe5Qy2xbJIAtblp/7BwUxAvwjHQy5l9nQ="; 25 - }) 26 - ]; 27 - 28 15 postPatch = '' 29 16 substituteInPlace setup.py \ 30 17 --replace '"openrgb-python~=0.2.10",' "" \ 31 - --replace '"pyupdater>=3.1.0",' "" \ 32 18 --replace "'rpi-ws281x>=4.3.0; platform_system == \"Linux\"'," "" \ 19 + --replace '"sentry-sdk==1.14.0",' "" \ 33 20 --replace "~=" ">=" 34 21 ''; 35 22 ··· 49 36 psutil 50 37 pyserial 51 38 pystray 39 + python-rtmidi 52 40 # rpi-ws281x # not packaged 53 41 requests 54 42 sacn
+2 -2
pkgs/applications/audio/ocenaudio/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "ocenaudio"; 14 - version = "3.11.24"; 14 + version = "3.11.25"; 15 15 16 16 src = fetchurl { 17 17 url = "https://www.ocenaudio.com/downloads/index.php/ocenaudio_debian9_64.deb?version=${version}"; 18 - sha256 = "sha256-3NM2jw3XvzMxLpDQAR3LZzCJXwSnQXSDoN7IK4nr4wM="; 18 + sha256 = "sha256-B14xM4/E6TQZGLZifvIFA4JxLPo0hNah9PIyquS9TzI="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/applications/audio/praat/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "praat"; 5 - version = "6.3.09"; 5 + version = "6.3.10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "praat"; 9 9 repo = "praat"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-oidYxG3A0yZGAJzjf5WvspEIbh1d/SXNHJsxKsSRifI="; 11 + sha256 = "sha256-wnw8GKMukiraZgMMzd3S2NldC/cnRSILNo+D1Rqhr4k="; 12 12 }; 13 13 14 14 configurePhase = ''
+16 -8
pkgs/applications/audio/spotifywm/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, spotify, xorg, runtimeShell }: 1 + { lib, stdenv, fetchFromGitHub, spotify, xorg, makeWrapper }: 2 2 stdenv.mkDerivation { 3 3 pname = "spotifywm-unstable"; 4 4 version = "2022-10-26"; ··· 10 10 sha256 = "sha256-AsXqcoqUXUFxTG+G+31lm45gjP6qGohEnUSUtKypew0="; 11 11 }; 12 12 13 + nativeBuildInputs = [ makeWrapper ]; 14 + 13 15 buildInputs = [ xorg.libX11 ]; 14 16 15 - propagatedBuildInputs = [ spotify ]; 16 - 17 17 installPhase = '' 18 - echo "#!${runtimeShell}" > spotifywm 19 - echo "LD_PRELOAD="$out/lib/spotifywm.so" ${spotify}/bin/spotify \$*" >> spotifywm 20 - install -Dm644 spotifywm.so $out/lib/spotifywm.so 21 - install -Dm755 spotifywm $out/bin/spotifywm 18 + runHook preInstall 19 + 20 + mkdir -p $out/{bin,lib} 21 + install -Dm644 spotifywm.so $out/lib/ 22 + ln -sf ${spotify}/bin/spotify $out/bin/spotify 23 + 24 + # wrap spotify to use spotifywm.so 25 + wrapProgram $out/bin/spotify --set LD_PRELOAD "$out/lib/spotifywm.so" 26 + # backwards compatibility for people who are using the "spotifywm" binary 27 + ln -sf $out/bin/spotify $out/bin/spotifywm 28 + 29 + runHook postInstall 22 30 ''; 23 31 24 32 meta = with lib; { ··· 26 34 description = "Wrapper around Spotify that correctly sets class name before opening the window"; 27 35 license = licenses.mit; 28 36 platforms = platforms.linux; 29 - maintainers = with maintainers; [ jqueiroz ]; 37 + maintainers = with maintainers; [ jqueiroz the-argus ]; 30 38 }; 31 39 }
+1 -1
pkgs/applications/audio/vocal/default.nix
··· 86 86 meta = with lib; { 87 87 description = "The podcast client for the modern free desktop"; 88 88 longDescription = '' 89 - Vocal is a powerful, fast, and intuitive application that helps users find new podcasts, manage their libraries, and enjoy the best that indepedent audio and video publishing has to offer. Vocal features full support for both episode downloading and streaming, native system integration, iTunes store search and top 100 charts (with international results support), iTunes link parsing, OPML importing and exporting, and so much more. Plus, it has great smart features like automatically keeping your library clean from old files, and the ability to set custom skip intervals. 89 + Vocal is a powerful, fast, and intuitive application that helps users find new podcasts, manage their libraries, and enjoy the best that independent audio and video publishing has to offer. Vocal features full support for both episode downloading and streaming, native system integration, iTunes store search and top 100 charts (with international results support), iTunes link parsing, OPML importing and exporting, and so much more. Plus, it has great smart features like automatically keeping your library clean from old files, and the ability to set custom skip intervals. 90 90 ''; 91 91 homepage = "https://github.com/needle-and-thread/vocal"; 92 92 license = licenses.gpl3Plus;
+697 -1078
pkgs/applications/editors/neovim/gnvim/Cargo.lock
··· 1 1 # This file is automatically @generated by Cargo. 2 2 # It is not intended for manual editing. 3 - [[package]] 4 - name = "adler32" 5 - version = "1.1.0" 6 - source = "registry+https://github.com/rust-lang/crates.io-index" 7 - 8 - [[package]] 9 - name = "aho-corasick" 10 - version = "0.7.13" 11 - source = "registry+https://github.com/rust-lang/crates.io-index" 12 - dependencies = [ 13 - "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 14 - ] 3 + version = 3 15 4 16 5 [[package]] 17 - name = "ammonia" 18 - version = "2.1.2" 6 + name = "ahash" 7 + version = "0.7.6" 19 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 20 10 dependencies = [ 21 - "html5ever 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)", 22 - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 23 - "maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 24 - "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 25 - "tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 26 - "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 11 + "getrandom", 12 + "once_cell", 13 + "version_check", 27 14 ] 28 15 29 16 [[package]] 30 - name = "ansi_term" 31 - version = "0.11.0" 17 + name = "anyhow" 18 + version = "1.0.70" 32 19 source = "registry+https://github.com/rust-lang/crates.io-index" 33 - dependencies = [ 34 - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 35 - ] 20 + checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" 36 21 37 22 [[package]] 38 23 name = "async-trait" 39 - version = "0.1.36" 24 + version = "0.1.68" 40 25 source = "registry+https://github.com/rust-lang/crates.io-index" 26 + checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 41 27 dependencies = [ 42 - "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", 43 - "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", 44 - "syn 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", 45 - ] 46 - 47 - [[package]] 48 - name = "atk" 49 - version = "0.8.0" 50 - source = "registry+https://github.com/rust-lang/crates.io-index" 51 - dependencies = [ 52 - "atk-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 53 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 54 - "glib 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", 55 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 56 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 57 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 58 - ] 59 - 60 - [[package]] 61 - name = "atk-sys" 62 - version = "0.9.1" 63 - source = "registry+https://github.com/rust-lang/crates.io-index" 64 - dependencies = [ 65 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 66 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 67 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 68 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 28 + "proc-macro2", 29 + "quote", 30 + "syn 2.0.10", 69 31 ] 70 32 71 33 [[package]] 72 34 name = "atty" 73 35 version = "0.2.14" 74 36 source = "registry+https://github.com/rust-lang/crates.io-index" 37 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 75 38 dependencies = [ 76 - "hermit-abi 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", 77 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 78 - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 39 + "hermit-abi 0.1.19", 40 + "libc", 41 + "winapi", 79 42 ] 80 43 81 44 [[package]] 82 45 name = "autocfg" 83 - version = "0.1.7" 84 - source = "registry+https://github.com/rust-lang/crates.io-index" 85 - 86 - [[package]] 87 - name = "autocfg" 88 - version = "1.0.0" 46 + version = "1.1.0" 89 47 source = "registry+https://github.com/rust-lang/crates.io-index" 90 - 91 - [[package]] 92 - name = "base64" 93 - version = "0.12.3" 94 - source = "registry+https://github.com/rust-lang/crates.io-index" 95 - 96 - [[package]] 97 - name = "bincode" 98 - version = "1.3.1" 99 - source = "registry+https://github.com/rust-lang/crates.io-index" 100 - dependencies = [ 101 - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 102 - "serde 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)", 103 - ] 48 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 104 49 105 50 [[package]] 106 51 name = "bitflags" 107 - version = "1.2.1" 52 + version = "1.3.2" 108 53 source = "registry+https://github.com/rust-lang/crates.io-index" 54 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 109 55 110 56 [[package]] 111 57 name = "byteorder" 112 - version = "1.3.4" 58 + version = "1.4.3" 113 59 source = "registry+https://github.com/rust-lang/crates.io-index" 60 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 114 61 115 62 [[package]] 116 63 name = "bytes" 117 - version = "0.4.12" 64 + version = "1.4.0" 118 65 source = "registry+https://github.com/rust-lang/crates.io-index" 119 - dependencies = [ 120 - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 121 - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 122 - ] 66 + checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 123 67 124 68 [[package]] 125 69 name = "cairo-rs" 126 - version = "0.8.1" 70 + version = "0.17.0" 127 71 source = "registry+https://github.com/rust-lang/crates.io-index" 72 + checksum = "a8af54f5d48af1226928adc1f57edd22f5df1349e7da1fc96ae15cf43db0e871" 128 73 dependencies = [ 129 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 130 - "cairo-sys-rs 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 131 - "glib 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", 132 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 133 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 134 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 74 + "bitflags", 75 + "cairo-sys-rs", 76 + "glib", 77 + "libc", 78 + "once_cell", 79 + "thiserror", 135 80 ] 136 81 137 82 [[package]] 138 83 name = "cairo-sys-rs" 139 - version = "0.9.2" 84 + version = "0.17.0" 140 85 source = "registry+https://github.com/rust-lang/crates.io-index" 86 + checksum = "f55382a01d30e5e53f185eee269124f5e21ab526595b872751278dfbb463594e" 141 87 dependencies = [ 142 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 143 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 144 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 88 + "glib-sys", 89 + "libc", 90 + "system-deps", 145 91 ] 146 92 147 93 [[package]] 148 - name = "cc" 149 - version = "1.0.55" 94 + name = "cfg-expr" 95 + version = "0.14.0" 150 96 source = "registry+https://github.com/rust-lang/crates.io-index" 97 + checksum = "a35b255461940a32985c627ce82900867c61db1659764d3675ea81963f72a4c6" 98 + dependencies = [ 99 + "smallvec", 100 + ] 151 101 152 102 [[package]] 153 103 name = "cfg-if" 154 - version = "0.1.10" 155 - source = "registry+https://github.com/rust-lang/crates.io-index" 156 - 157 - [[package]] 158 - name = "chrono" 159 - version = "0.4.11" 104 + version = "1.0.0" 160 105 source = "registry+https://github.com/rust-lang/crates.io-index" 161 - dependencies = [ 162 - "num-integer 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)", 163 - "num-traits 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", 164 - ] 106 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 165 107 166 108 [[package]] 167 109 name = "clap" 168 - version = "2.33.1" 110 + version = "3.2.23" 169 111 source = "registry+https://github.com/rust-lang/crates.io-index" 112 + checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" 170 113 dependencies = [ 171 - "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", 172 - "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", 173 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 174 - "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 175 - "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", 176 - "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 177 - "vec_map 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", 114 + "atty", 115 + "bitflags", 116 + "clap_derive", 117 + "clap_lex", 118 + "indexmap", 119 + "once_cell", 120 + "strsim", 121 + "termcolor", 122 + "textwrap", 178 123 ] 179 124 180 125 [[package]] 181 - name = "cloudabi" 182 - version = "0.0.3" 126 + name = "clap_derive" 127 + version = "3.2.18" 183 128 source = "registry+https://github.com/rust-lang/crates.io-index" 129 + checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65" 184 130 dependencies = [ 185 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 131 + "heck", 132 + "proc-macro-error", 133 + "proc-macro2", 134 + "quote", 135 + "syn 1.0.109", 186 136 ] 187 137 188 138 [[package]] 189 - name = "crc32fast" 190 - version = "1.2.0" 139 + name = "clap_lex" 140 + version = "0.2.4" 191 141 source = "registry+https://github.com/rust-lang/crates.io-index" 142 + checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 192 143 dependencies = [ 193 - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 144 + "os_str_bytes", 194 145 ] 195 146 196 147 [[package]] 197 - name = "env_logger" 198 - version = "0.7.1" 199 - source = "registry+https://github.com/rust-lang/crates.io-index" 200 - dependencies = [ 201 - "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", 202 - "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 203 - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 204 - "regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 205 - "termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 206 - ] 207 - 208 - [[package]] 209 - name = "flate2" 210 - version = "1.0.14" 211 - source = "registry+https://github.com/rust-lang/crates.io-index" 212 - dependencies = [ 213 - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 214 - "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 215 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 216 - "miniz_oxide 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 217 - ] 218 - 219 - [[package]] 220 - name = "fnv" 221 - version = "1.0.7" 222 - source = "registry+https://github.com/rust-lang/crates.io-index" 223 - 224 - [[package]] 225 - name = "fuchsia-cprng" 226 - version = "0.1.1" 227 - source = "registry+https://github.com/rust-lang/crates.io-index" 228 - 229 - [[package]] 230 - name = "futf" 231 - version = "0.1.4" 148 + name = "field-offset" 149 + version = "0.3.5" 232 150 source = "registry+https://github.com/rust-lang/crates.io-index" 151 + checksum = "a3cf3a800ff6e860c863ca6d4b16fd999db8b752819c1606884047b73e468535" 233 152 dependencies = [ 234 - "mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 235 - "new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 153 + "memoffset", 154 + "rustc_version", 236 155 ] 237 156 238 157 [[package]] 239 158 name = "futures" 240 - version = "0.1.29" 241 - source = "registry+https://github.com/rust-lang/crates.io-index" 242 - 243 - [[package]] 244 - name = "futures" 245 - version = "0.3.5" 159 + version = "0.3.27" 246 160 source = "registry+https://github.com/rust-lang/crates.io-index" 161 + checksum = "531ac96c6ff5fd7c62263c5e3c67a603af4fcaee2e1a0ae5565ba3a11e69e549" 247 162 dependencies = [ 248 - "futures-channel 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 249 - "futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 250 - "futures-executor 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 251 - "futures-io 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 252 - "futures-sink 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 253 - "futures-task 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 254 - "futures-util 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 163 + "futures-channel", 164 + "futures-core", 165 + "futures-executor", 166 + "futures-io", 167 + "futures-sink", 168 + "futures-task", 169 + "futures-util", 255 170 ] 256 171 257 172 [[package]] 258 173 name = "futures-channel" 259 - version = "0.3.5" 174 + version = "0.3.27" 260 175 source = "registry+https://github.com/rust-lang/crates.io-index" 176 + checksum = "164713a5a0dcc3e7b4b1ed7d3b433cabc18025386f9339346e8daf15963cf7ac" 261 177 dependencies = [ 262 - "futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 263 - "futures-sink 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 178 + "futures-core", 179 + "futures-sink", 264 180 ] 265 181 266 182 [[package]] 267 183 name = "futures-core" 268 - version = "0.3.5" 184 + version = "0.3.27" 269 185 source = "registry+https://github.com/rust-lang/crates.io-index" 186 + checksum = "86d7a0c1aa76363dac491de0ee99faf6941128376f1cf96f07db7603b7de69dd" 270 187 271 188 [[package]] 272 189 name = "futures-executor" 273 - version = "0.3.5" 190 + version = "0.3.27" 274 191 source = "registry+https://github.com/rust-lang/crates.io-index" 192 + checksum = "1997dd9df74cdac935c76252744c1ed5794fac083242ea4fe77ef3ed60ba0f83" 275 193 dependencies = [ 276 - "futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 277 - "futures-task 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 278 - "futures-util 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 194 + "futures-core", 195 + "futures-task", 196 + "futures-util", 279 197 ] 280 198 281 199 [[package]] 282 200 name = "futures-io" 283 - version = "0.3.5" 201 + version = "0.3.27" 284 202 source = "registry+https://github.com/rust-lang/crates.io-index" 203 + checksum = "89d422fa3cbe3b40dca574ab087abb5bc98258ea57eea3fd6f1fa7162c778b91" 285 204 286 205 [[package]] 287 206 name = "futures-macro" 288 - version = "0.3.5" 207 + version = "0.3.27" 289 208 source = "registry+https://github.com/rust-lang/crates.io-index" 209 + checksum = "3eb14ed937631bd8b8b8977f2c198443447a8355b6e3ca599f38c975e5a963b6" 290 210 dependencies = [ 291 - "proc-macro-hack 0.5.16 (registry+https://github.com/rust-lang/crates.io-index)", 292 - "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", 293 - "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", 294 - "syn 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", 211 + "proc-macro2", 212 + "quote", 213 + "syn 1.0.109", 295 214 ] 296 215 297 216 [[package]] 298 217 name = "futures-sink" 299 - version = "0.3.5" 218 + version = "0.3.27" 300 219 source = "registry+https://github.com/rust-lang/crates.io-index" 220 + checksum = "ec93083a4aecafb2a80a885c9de1f0ccae9dbd32c2bb54b0c3a65690e0b8d2f2" 301 221 302 222 [[package]] 303 223 name = "futures-task" 304 - version = "0.3.5" 224 + version = "0.3.27" 305 225 source = "registry+https://github.com/rust-lang/crates.io-index" 306 - dependencies = [ 307 - "once_cell 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 308 - ] 226 + checksum = "fd65540d33b37b16542a0438c12e6aeead10d4ac5d05bd3f805b8f35ab592879" 309 227 310 228 [[package]] 311 229 name = "futures-util" 312 - version = "0.3.5" 230 + version = "0.3.27" 313 231 source = "registry+https://github.com/rust-lang/crates.io-index" 232 + checksum = "3ef6b17e481503ec85211fed8f39d1970f128935ca1f814cd32ac4a6842e84ab" 314 233 dependencies = [ 315 - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 316 - "futures-channel 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 317 - "futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 318 - "futures-io 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 319 - "futures-macro 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 320 - "futures-sink 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 321 - "futures-task 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 322 - "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 323 - "pin-project 0.4.22 (registry+https://github.com/rust-lang/crates.io-index)", 324 - "pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 325 - "proc-macro-hack 0.5.16 (registry+https://github.com/rust-lang/crates.io-index)", 326 - "proc-macro-nested 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 327 - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 328 - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", 234 + "futures-channel", 235 + "futures-core", 236 + "futures-io", 237 + "futures-macro", 238 + "futures-sink", 239 + "futures-task", 240 + "memchr", 241 + "pin-project-lite", 242 + "pin-utils", 243 + "slab", 329 244 ] 330 245 331 246 [[package]] 332 - name = "gdk" 333 - version = "0.12.1" 247 + name = "gdk-pixbuf" 248 + version = "0.17.0" 334 249 source = "registry+https://github.com/rust-lang/crates.io-index" 250 + checksum = "b023fbe0c6b407bd3d9805d107d9800da3829dc5a676653210f1d5f16d7f59bf" 335 251 dependencies = [ 336 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 337 - "cairo-rs 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 338 - "cairo-sys-rs 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 339 - "gdk-pixbuf 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 340 - "gdk-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 341 - "gio 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 342 - "gio-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 343 - "glib 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", 344 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 345 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 346 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 347 - "pango 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 252 + "bitflags", 253 + "gdk-pixbuf-sys", 254 + "gio", 255 + "glib", 256 + "libc", 257 + "once_cell", 348 258 ] 349 259 350 260 [[package]] 351 - name = "gdk-pixbuf" 352 - version = "0.8.0" 261 + name = "gdk-pixbuf-sys" 262 + version = "0.17.0" 353 263 source = "registry+https://github.com/rust-lang/crates.io-index" 264 + checksum = "7b41bd2b44ed49d99277d3925652a163038bd5ed943ec9809338ffb2f4391e3b" 354 265 dependencies = [ 355 - "gdk-pixbuf-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 356 - "gio 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 357 - "gio-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 358 - "glib 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", 359 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 360 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 361 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 266 + "gio-sys", 267 + "glib-sys", 268 + "gobject-sys", 269 + "libc", 270 + "system-deps", 362 271 ] 363 272 364 273 [[package]] 365 - name = "gdk-pixbuf-sys" 366 - version = "0.9.1" 274 + name = "gdk4" 275 + version = "0.6.3" 367 276 source = "registry+https://github.com/rust-lang/crates.io-index" 277 + checksum = "c3abf96408a26e3eddf881a7f893a1e111767137136e347745e8ea6ed12731ff" 368 278 dependencies = [ 369 - "gio-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 370 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 371 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 372 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 373 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 279 + "bitflags", 280 + "cairo-rs", 281 + "gdk-pixbuf", 282 + "gdk4-sys", 283 + "gio", 284 + "glib", 285 + "libc", 286 + "pango", 374 287 ] 375 288 376 289 [[package]] 377 - name = "gdk-sys" 378 - version = "0.9.1" 290 + name = "gdk4-sys" 291 + version = "0.6.3" 379 292 source = "registry+https://github.com/rust-lang/crates.io-index" 293 + checksum = "1bc92aa1608c089c49393d014c38ac0390d01e4841e1fedaa75dbcef77aaed64" 380 294 dependencies = [ 381 - "cairo-sys-rs 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 382 - "gdk-pixbuf-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 383 - "gio-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 384 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 385 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 386 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 387 - "pango-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 388 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 295 + "cairo-sys-rs", 296 + "gdk-pixbuf-sys", 297 + "gio-sys", 298 + "glib-sys", 299 + "gobject-sys", 300 + "libc", 301 + "pango-sys", 302 + "pkg-config", 303 + "system-deps", 389 304 ] 390 305 391 306 [[package]] 392 - name = "gio" 393 - version = "0.8.1" 307 + name = "getrandom" 308 + version = "0.2.8" 394 309 source = "registry+https://github.com/rust-lang/crates.io-index" 310 + checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 395 311 dependencies = [ 396 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 397 - "futures-channel 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 398 - "futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 399 - "futures-io 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 400 - "futures-util 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 401 - "gio-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 402 - "glib 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", 403 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 404 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 405 - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 406 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 312 + "cfg-if", 313 + "libc", 314 + "wasi", 407 315 ] 408 316 409 317 [[package]] 410 - name = "gio-sys" 411 - version = "0.9.1" 318 + name = "gio" 319 + version = "0.17.4" 412 320 source = "registry+https://github.com/rust-lang/crates.io-index" 321 + checksum = "2261a3b4e922ec676d1c27ac466218c38cf5dcb49a759129e54bb5046e442125" 413 322 dependencies = [ 414 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 415 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 416 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 417 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 323 + "bitflags", 324 + "futures-channel", 325 + "futures-core", 326 + "futures-io", 327 + "futures-util", 328 + "gio-sys", 329 + "glib", 330 + "libc", 331 + "once_cell", 332 + "pin-project-lite", 333 + "smallvec", 334 + "thiserror", 418 335 ] 419 336 420 337 [[package]] 421 - name = "glib" 422 - version = "0.9.3" 423 - source = "registry+https://github.com/rust-lang/crates.io-index" 338 + name = "gio-compat" 339 + version = "0.1.0" 424 340 dependencies = [ 425 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 426 - "futures-channel 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 427 - "futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 428 - "futures-executor 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 429 - "futures-task 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 430 - "futures-util 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 431 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 432 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 433 - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 434 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 341 + "futures", 342 + "gio", 435 343 ] 436 344 437 345 [[package]] 438 - name = "glib-sys" 439 - version = "0.9.1" 346 + name = "gio-sys" 347 + version = "0.17.4" 440 348 source = "registry+https://github.com/rust-lang/crates.io-index" 349 + checksum = "6b1d43b0d7968b48455244ecafe41192871257f5740aa6b095eb19db78e362a5" 441 350 dependencies = [ 442 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 443 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 351 + "glib-sys", 352 + "gobject-sys", 353 + "libc", 354 + "system-deps", 355 + "winapi", 444 356 ] 445 357 446 358 [[package]] 447 - name = "gnvim" 448 - version = "0.1.0" 359 + name = "glib" 360 + version = "0.17.5" 361 + source = "registry+https://github.com/rust-lang/crates.io-index" 362 + checksum = "cfb53061756195d76969292c2d2e329e01259276524a9bae6c9b73af62854773" 449 363 dependencies = [ 450 - "ammonia 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 451 - "async-trait 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)", 452 - "cairo-rs 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 453 - "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 454 - "futures 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 455 - "gdk 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", 456 - "gdk-pixbuf 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 457 - "gio 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 458 - "glib 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", 459 - "gtk 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 460 - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 461 - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 462 - "nvim-rs 0.1.1-alpha.0 (git+https://github.com/KillTheMule/nvim-rs)", 463 - "pango 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 464 - "pangocairo 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 465 - "pin-project 0.4.22 (registry+https://github.com/rust-lang/crates.io-index)", 466 - "pulldown-cmark 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 467 - "rmpv 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", 468 - "structopt 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 469 - "syntect 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 470 - "webkit2gtk 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 364 + "bitflags", 365 + "futures-channel", 366 + "futures-core", 367 + "futures-executor", 368 + "futures-task", 369 + "futures-util", 370 + "gio-sys", 371 + "glib-macros", 372 + "glib-sys", 373 + "gobject-sys", 374 + "libc", 375 + "log", 376 + "memchr", 377 + "once_cell", 378 + "smallvec", 379 + "thiserror", 471 380 ] 472 381 473 382 [[package]] 474 - name = "gobject-sys" 475 - version = "0.9.1" 383 + name = "glib-build-tools" 384 + version = "0.17.0" 476 385 source = "registry+https://github.com/rust-lang/crates.io-index" 477 - dependencies = [ 478 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 479 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 480 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 481 - ] 386 + checksum = "8f8480c9ba9cc06aa8d5baf446037f8dc237bee127e9b62080c4db7e293d8ea0" 482 387 483 388 [[package]] 484 - name = "gtk" 485 - version = "0.8.1" 389 + name = "glib-macros" 390 + version = "0.17.6" 486 391 source = "registry+https://github.com/rust-lang/crates.io-index" 392 + checksum = "32e73a9790e243f6d55d8e302426419f6084a1de7a84cd07f7268300408a19de" 487 393 dependencies = [ 488 - "atk 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 489 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 490 - "cairo-rs 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 491 - "cairo-sys-rs 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 492 - "cc 1.0.55 (registry+https://github.com/rust-lang/crates.io-index)", 493 - "gdk 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", 494 - "gdk-pixbuf 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 495 - "gdk-pixbuf-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 496 - "gdk-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 497 - "gio 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 498 - "gio-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 499 - "glib 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", 500 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 501 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 502 - "gtk-sys 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 503 - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 504 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 505 - "pango 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 506 - "pango-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 394 + "anyhow", 395 + "heck", 396 + "proc-macro-crate", 397 + "proc-macro-error", 398 + "proc-macro2", 399 + "quote", 400 + "syn 1.0.109", 507 401 ] 508 402 509 403 [[package]] 510 - name = "gtk-sys" 511 - version = "0.9.2" 404 + name = "glib-sys" 405 + version = "0.17.4" 512 406 source = "registry+https://github.com/rust-lang/crates.io-index" 407 + checksum = "49f00ad0a1bf548e61adfff15d83430941d9e1bb620e334f779edd1c745680a5" 513 408 dependencies = [ 514 - "atk-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 515 - "cairo-sys-rs 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 516 - "gdk-pixbuf-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 517 - "gdk-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 518 - "gio-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 519 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 520 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 521 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 522 - "pango-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 523 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 409 + "libc", 410 + "system-deps", 524 411 ] 525 412 526 413 [[package]] 527 - name = "heck" 414 + name = "gnvim" 528 415 version = "0.3.1" 529 - source = "registry+https://github.com/rust-lang/crates.io-index" 530 416 dependencies = [ 531 - "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", 417 + "atty", 418 + "cfg-if", 419 + "clap", 420 + "futures", 421 + "gio-compat", 422 + "glib", 423 + "glib-build-tools", 424 + "gtk4", 425 + "libc", 426 + "nvim-rs", 427 + "once_cell", 428 + "pango", 429 + "rmpv", 532 430 ] 533 431 534 432 [[package]] 535 - name = "hermit-abi" 536 - version = "0.1.14" 433 + name = "gobject-sys" 434 + version = "0.17.4" 537 435 source = "registry+https://github.com/rust-lang/crates.io-index" 436 + checksum = "15e75b0000a64632b2d8ca3cf856af9308e3a970844f6e9659bd197f026793d0" 538 437 dependencies = [ 539 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 438 + "glib-sys", 439 + "libc", 440 + "system-deps", 540 441 ] 541 442 542 443 [[package]] 543 - name = "html5ever" 544 - version = "0.23.0" 444 + name = "graphene-rs" 445 + version = "0.17.1" 545 446 source = "registry+https://github.com/rust-lang/crates.io-index" 447 + checksum = "21cf11565bb0e4dfc2f99d4775b6c329f0d40a2cff9c0066214d31a0e1b46256" 546 448 dependencies = [ 547 - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 548 - "mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 549 - "markup5ever 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 550 - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", 551 - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", 552 - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", 449 + "glib", 450 + "graphene-sys", 451 + "libc", 553 452 ] 554 453 555 454 [[package]] 556 - name = "humantime" 557 - version = "1.3.0" 455 + name = "graphene-sys" 456 + version = "0.17.0" 558 457 source = "registry+https://github.com/rust-lang/crates.io-index" 458 + checksum = "cf80a4849a8d9565410a8fec6fc3678e9c617f4ac7be182ca55ab75016e07af9" 559 459 dependencies = [ 560 - "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 460 + "glib-sys", 461 + "libc", 462 + "pkg-config", 463 + "system-deps", 561 464 ] 562 465 563 466 [[package]] 564 - name = "idna" 565 - version = "0.1.5" 467 + name = "gsk4" 468 + version = "0.6.3" 566 469 source = "registry+https://github.com/rust-lang/crates.io-index" 470 + checksum = "6f01ef44fa7cac15e2da9978529383e6bee03e570ba5bf7036b4c10a15cc3a3c" 567 471 dependencies = [ 568 - "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 569 - "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 570 - "unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", 472 + "bitflags", 473 + "cairo-rs", 474 + "gdk4", 475 + "glib", 476 + "graphene-rs", 477 + "gsk4-sys", 478 + "libc", 479 + "pango", 571 480 ] 572 481 573 482 [[package]] 574 - name = "indexmap" 575 - version = "1.4.0" 483 + name = "gsk4-sys" 484 + version = "0.6.3" 576 485 source = "registry+https://github.com/rust-lang/crates.io-index" 486 + checksum = "c07a84fb4dcf1323d29435aa85e2f5f58bef564342bef06775ec7bd0da1f01b0" 577 487 dependencies = [ 578 - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 488 + "cairo-sys-rs", 489 + "gdk4-sys", 490 + "glib-sys", 491 + "gobject-sys", 492 + "graphene-sys", 493 + "libc", 494 + "pango-sys", 495 + "system-deps", 579 496 ] 580 497 581 498 [[package]] 582 - name = "iovec" 583 - version = "0.1.4" 499 + name = "gtk4" 500 + version = "0.6.4" 584 501 source = "registry+https://github.com/rust-lang/crates.io-index" 502 + checksum = "1e30e124b5a605f6f5513db13958bfcd51d746607b20bc7bb718b33e303274ed" 585 503 dependencies = [ 586 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 504 + "bitflags", 505 + "cairo-rs", 506 + "field-offset", 507 + "futures-channel", 508 + "gdk-pixbuf", 509 + "gdk4", 510 + "gio", 511 + "glib", 512 + "graphene-rs", 513 + "gsk4", 514 + "gtk4-macros", 515 + "gtk4-sys", 516 + "libc", 517 + "once_cell", 518 + "pango", 587 519 ] 588 520 589 521 [[package]] 590 - name = "itoa" 591 - version = "0.4.6" 592 - source = "registry+https://github.com/rust-lang/crates.io-index" 593 - 594 - [[package]] 595 - name = "javascriptcore-rs" 596 - version = "0.9.0" 522 + name = "gtk4-macros" 523 + version = "0.6.5" 597 524 source = "registry+https://github.com/rust-lang/crates.io-index" 525 + checksum = "f041a797fb098bfb06e432c61738133604bfa3af57f13f1da3b9d46271422ef0" 598 526 dependencies = [ 599 - "glib 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", 600 - "javascriptcore-rs-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 527 + "anyhow", 528 + "proc-macro-crate", 529 + "proc-macro-error", 530 + "proc-macro2", 531 + "quote", 532 + "syn 1.0.109", 601 533 ] 602 534 603 535 [[package]] 604 - name = "javascriptcore-rs-sys" 605 - version = "0.2.0" 536 + name = "gtk4-sys" 537 + version = "0.6.3" 606 538 source = "registry+https://github.com/rust-lang/crates.io-index" 539 + checksum = "5f8283f707b07e019e76c7f2934bdd4180c277e08aa93f4c0d8dd07b7a34e22f" 607 540 dependencies = [ 608 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 541 + "cairo-sys-rs", 542 + "gdk-pixbuf-sys", 543 + "gdk4-sys", 544 + "gio-sys", 545 + "glib-sys", 546 + "gobject-sys", 547 + "graphene-sys", 548 + "gsk4-sys", 549 + "libc", 550 + "pango-sys", 551 + "system-deps", 609 552 ] 610 553 611 554 [[package]] 612 - name = "lazy_static" 613 - version = "1.4.0" 614 - source = "registry+https://github.com/rust-lang/crates.io-index" 615 - 616 - [[package]] 617 - name = "lazycell" 618 - version = "1.2.1" 555 + name = "hashbrown" 556 + version = "0.12.3" 619 557 source = "registry+https://github.com/rust-lang/crates.io-index" 620 - 621 - [[package]] 622 - name = "libc" 623 - version = "0.2.71" 624 - source = "registry+https://github.com/rust-lang/crates.io-index" 625 - 626 - [[package]] 627 - name = "line-wrap" 628 - version = "0.1.1" 629 - source = "registry+https://github.com/rust-lang/crates.io-index" 558 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 630 559 dependencies = [ 631 - "safemem 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 560 + "ahash", 632 561 ] 633 562 634 563 [[package]] 635 - name = "linked-hash-map" 636 - version = "0.5.3" 564 + name = "heck" 565 + version = "0.4.1" 637 566 source = "registry+https://github.com/rust-lang/crates.io-index" 567 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 638 568 639 569 [[package]] 640 - name = "log" 641 - version = "0.4.8" 570 + name = "hermit-abi" 571 + version = "0.1.19" 642 572 source = "registry+https://github.com/rust-lang/crates.io-index" 573 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 643 574 dependencies = [ 644 - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 575 + "libc", 645 576 ] 646 577 647 578 [[package]] 648 - name = "mac" 649 - version = "0.1.1" 579 + name = "hermit-abi" 580 + version = "0.2.6" 650 581 source = "registry+https://github.com/rust-lang/crates.io-index" 651 - 652 - [[package]] 653 - name = "maplit" 654 - version = "1.0.2" 655 - source = "registry+https://github.com/rust-lang/crates.io-index" 656 - 657 - [[package]] 658 - name = "markup5ever" 659 - version = "0.8.1" 660 - source = "registry+https://github.com/rust-lang/crates.io-index" 582 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 661 583 dependencies = [ 662 - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 663 - "phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", 664 - "phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", 665 - "serde 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)", 666 - "serde_derive 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)", 667 - "serde_json 1.0.55 (registry+https://github.com/rust-lang/crates.io-index)", 668 - "string_cache 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", 669 - "string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", 670 - "tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 584 + "libc", 671 585 ] 672 586 673 587 [[package]] 674 - name = "matches" 675 - version = "0.1.8" 676 - source = "registry+https://github.com/rust-lang/crates.io-index" 677 - 678 - [[package]] 679 - name = "memchr" 680 - version = "2.3.3" 681 - source = "registry+https://github.com/rust-lang/crates.io-index" 682 - 683 - [[package]] 684 - name = "miniz_oxide" 685 - version = "0.3.7" 588 + name = "indexmap" 589 + version = "1.9.3" 686 590 source = "registry+https://github.com/rust-lang/crates.io-index" 591 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 687 592 dependencies = [ 688 - "adler32 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 593 + "autocfg", 594 + "hashbrown", 689 595 ] 690 596 691 597 [[package]] 692 - name = "new_debug_unreachable" 693 - version = "1.0.4" 598 + name = "libc" 599 + version = "0.2.140" 694 600 source = "registry+https://github.com/rust-lang/crates.io-index" 601 + checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 695 602 696 603 [[package]] 697 - name = "num-integer" 698 - version = "0.1.43" 604 + name = "lock_api" 605 + version = "0.4.9" 699 606 source = "registry+https://github.com/rust-lang/crates.io-index" 607 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 700 608 dependencies = [ 701 - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 702 - "num-traits 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", 609 + "autocfg", 610 + "scopeguard", 703 611 ] 704 612 705 613 [[package]] 706 - name = "num-traits" 707 - version = "0.2.12" 614 + name = "log" 615 + version = "0.4.17" 708 616 source = "registry+https://github.com/rust-lang/crates.io-index" 709 - dependencies = [ 710 - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 711 - ] 712 - 713 - [[package]] 714 - name = "nvim-rs" 715 - version = "0.1.1-alpha.0" 716 - source = "git+https://github.com/KillTheMule/nvim-rs#9efc7480f976d80f9e57443d62c1da2f37805186" 617 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 717 618 dependencies = [ 718 - "async-trait 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)", 719 - "futures 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 720 - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 721 - "rmp 0.8.9 (registry+https://github.com/rust-lang/crates.io-index)", 722 - "rmpv 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", 619 + "cfg-if", 723 620 ] 724 621 725 622 [[package]] 726 - name = "once_cell" 727 - version = "1.4.0" 623 + name = "memchr" 624 + version = "2.5.0" 728 625 source = "registry+https://github.com/rust-lang/crates.io-index" 626 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 729 627 730 628 [[package]] 731 - name = "onig" 732 - version = "6.0.0" 629 + name = "memoffset" 630 + version = "0.8.0" 733 631 source = "registry+https://github.com/rust-lang/crates.io-index" 632 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 734 633 dependencies = [ 735 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 736 - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 737 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 738 - "onig_sys 69.5.0 (registry+https://github.com/rust-lang/crates.io-index)", 634 + "autocfg", 739 635 ] 740 636 741 637 [[package]] 742 - name = "onig_sys" 743 - version = "69.5.0" 638 + name = "mio" 639 + version = "0.8.6" 744 640 source = "registry+https://github.com/rust-lang/crates.io-index" 641 + checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 745 642 dependencies = [ 746 - "cc 1.0.55 (registry+https://github.com/rust-lang/crates.io-index)", 747 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 643 + "libc", 644 + "log", 645 + "wasi", 646 + "windows-sys", 748 647 ] 749 648 750 649 [[package]] 751 - name = "pango" 752 - version = "0.8.0" 650 + name = "num-traits" 651 + version = "0.2.15" 753 652 source = "registry+https://github.com/rust-lang/crates.io-index" 653 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 754 654 dependencies = [ 755 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 756 - "glib 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", 757 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 758 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 759 - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 760 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 761 - "pango-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 655 + "autocfg", 762 656 ] 763 657 764 658 [[package]] 765 - name = "pango-sys" 766 - version = "0.9.1" 659 + name = "num_cpus" 660 + version = "1.15.0" 767 661 source = "registry+https://github.com/rust-lang/crates.io-index" 662 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 768 663 dependencies = [ 769 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 770 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 771 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 772 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 664 + "hermit-abi 0.2.6", 665 + "libc", 773 666 ] 774 667 775 668 [[package]] 776 - name = "pangocairo" 777 - version = "0.9.0" 778 - source = "registry+https://github.com/rust-lang/crates.io-index" 669 + name = "nvim-rs" 670 + version = "0.1.0" 779 671 dependencies = [ 780 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 781 - "cairo-rs 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 782 - "cairo-sys-rs 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 783 - "glib 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", 784 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 785 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 786 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 787 - "pango 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 788 - "pango-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 789 - "pangocairo-sys 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 672 + "async-trait", 673 + "futures", 674 + "proc-macro2", 675 + "quote", 676 + "rmp-serde", 677 + "rmpv", 678 + "serde", 679 + "syn 1.0.109", 680 + "tokio", 681 + "tokio-util", 790 682 ] 791 683 792 684 [[package]] 793 - name = "pangocairo-sys" 794 - version = "0.10.1" 685 + name = "once_cell" 686 + version = "1.17.1" 795 687 source = "registry+https://github.com/rust-lang/crates.io-index" 796 - dependencies = [ 797 - "cairo-sys-rs 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 798 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 799 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 800 - "pango-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 801 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 802 - ] 688 + checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 803 689 804 690 [[package]] 805 - name = "percent-encoding" 806 - version = "1.0.1" 691 + name = "os_str_bytes" 692 + version = "6.5.0" 807 693 source = "registry+https://github.com/rust-lang/crates.io-index" 694 + checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267" 808 695 809 696 [[package]] 810 - name = "phf" 811 - version = "0.7.24" 697 + name = "pango" 698 + version = "0.17.4" 812 699 source = "registry+https://github.com/rust-lang/crates.io-index" 700 + checksum = "52c280b82a881e4208afb3359a8e7fde27a1b272280981f1f34610bed5770d37" 813 701 dependencies = [ 814 - "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", 702 + "bitflags", 703 + "gio", 704 + "glib", 705 + "libc", 706 + "once_cell", 707 + "pango-sys", 815 708 ] 816 709 817 710 [[package]] 818 - name = "phf_codegen" 819 - version = "0.7.24" 711 + name = "pango-sys" 712 + version = "0.17.0" 820 713 source = "registry+https://github.com/rust-lang/crates.io-index" 714 + checksum = "4293d0f0b5525eb5c24734d30b0ed02cd02aa734f216883f376b54de49625de8" 821 715 dependencies = [ 822 - "phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", 823 - "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", 716 + "glib-sys", 717 + "gobject-sys", 718 + "libc", 719 + "system-deps", 824 720 ] 825 721 826 722 [[package]] 827 - name = "phf_generator" 828 - version = "0.7.24" 723 + name = "parking_lot" 724 + version = "0.12.1" 829 725 source = "registry+https://github.com/rust-lang/crates.io-index" 726 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 830 727 dependencies = [ 831 - "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", 832 - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 728 + "lock_api", 729 + "parking_lot_core", 833 730 ] 834 731 835 732 [[package]] 836 - name = "phf_shared" 837 - version = "0.7.24" 733 + name = "parking_lot_core" 734 + version = "0.9.7" 838 735 source = "registry+https://github.com/rust-lang/crates.io-index" 736 + checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 839 737 dependencies = [ 840 - "siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 738 + "cfg-if", 739 + "libc", 740 + "redox_syscall", 741 + "smallvec", 742 + "windows-sys", 841 743 ] 842 744 843 745 [[package]] 844 - name = "pin-project" 845 - version = "0.4.22" 746 + name = "paste" 747 + version = "1.0.12" 846 748 source = "registry+https://github.com/rust-lang/crates.io-index" 847 - dependencies = [ 848 - "pin-project-internal 0.4.22 (registry+https://github.com/rust-lang/crates.io-index)", 849 - ] 749 + checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 850 750 851 751 [[package]] 852 - name = "pin-project-internal" 853 - version = "0.4.22" 752 + name = "pin-project-lite" 753 + version = "0.2.9" 854 754 source = "registry+https://github.com/rust-lang/crates.io-index" 855 - dependencies = [ 856 - "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", 857 - "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", 858 - "syn 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", 859 - ] 755 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 860 756 861 757 [[package]] 862 758 name = "pin-utils" 863 759 version = "0.1.0" 864 760 source = "registry+https://github.com/rust-lang/crates.io-index" 761 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 865 762 866 763 [[package]] 867 764 name = "pkg-config" 868 - version = "0.3.17" 765 + version = "0.3.26" 869 766 source = "registry+https://github.com/rust-lang/crates.io-index" 767 + checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 870 768 871 769 [[package]] 872 - name = "plist" 873 - version = "1.0.0" 770 + name = "proc-macro-crate" 771 + version = "1.3.1" 874 772 source = "registry+https://github.com/rust-lang/crates.io-index" 773 + checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 875 774 dependencies = [ 876 - "base64 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", 877 - "chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", 878 - "indexmap 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 879 - "line-wrap 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 880 - "serde 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)", 881 - "xml-rs 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", 775 + "once_cell", 776 + "toml_edit", 882 777 ] 883 778 884 779 [[package]] 885 - name = "precomputed-hash" 886 - version = "0.1.1" 887 - source = "registry+https://github.com/rust-lang/crates.io-index" 888 - 889 - [[package]] 890 780 name = "proc-macro-error" 891 - version = "1.0.3" 781 + version = "1.0.4" 892 782 source = "registry+https://github.com/rust-lang/crates.io-index" 783 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 893 784 dependencies = [ 894 - "proc-macro-error-attr 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 895 - "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", 896 - "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", 897 - "syn 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", 898 - "version_check 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 785 + "proc-macro-error-attr", 786 + "proc-macro2", 787 + "quote", 788 + "syn 1.0.109", 789 + "version_check", 899 790 ] 900 791 901 792 [[package]] 902 793 name = "proc-macro-error-attr" 903 - version = "1.0.3" 794 + version = "1.0.4" 904 795 source = "registry+https://github.com/rust-lang/crates.io-index" 796 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 905 797 dependencies = [ 906 - "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", 907 - "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", 908 - "syn 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", 909 - "syn-mid 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", 910 - "version_check 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 798 + "proc-macro2", 799 + "quote", 800 + "version_check", 911 801 ] 912 802 913 803 [[package]] 914 - name = "proc-macro-hack" 915 - version = "0.5.16" 916 - source = "registry+https://github.com/rust-lang/crates.io-index" 917 - 918 - [[package]] 919 - name = "proc-macro-nested" 920 - version = "0.1.6" 921 - source = "registry+https://github.com/rust-lang/crates.io-index" 922 - 923 - [[package]] 924 804 name = "proc-macro2" 925 - version = "0.4.30" 805 + version = "1.0.53" 926 806 source = "registry+https://github.com/rust-lang/crates.io-index" 807 + checksum = "ba466839c78239c09faf015484e5cc04860f88242cff4d03eb038f04b4699b73" 927 808 dependencies = [ 928 - "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 809 + "unicode-ident", 929 810 ] 930 811 931 812 [[package]] 932 - name = "proc-macro2" 933 - version = "1.0.18" 813 + name = "quote" 814 + version = "1.0.26" 934 815 source = "registry+https://github.com/rust-lang/crates.io-index" 816 + checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 935 817 dependencies = [ 936 - "unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 818 + "proc-macro2", 937 819 ] 938 820 939 821 [[package]] 940 - name = "pulldown-cmark" 941 - version = "0.2.0" 822 + name = "redox_syscall" 823 + version = "0.2.16" 942 824 source = "registry+https://github.com/rust-lang/crates.io-index" 825 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 943 826 dependencies = [ 944 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 827 + "bitflags", 945 828 ] 946 829 947 830 [[package]] 948 - name = "quick-error" 949 - version = "1.2.3" 831 + name = "rmp" 832 + version = "0.8.11" 950 833 source = "registry+https://github.com/rust-lang/crates.io-index" 951 - 952 - [[package]] 953 - name = "quote" 954 - version = "0.6.13" 955 - source = "registry+https://github.com/rust-lang/crates.io-index" 834 + checksum = "44519172358fd6d58656c86ab8e7fbc9e1490c3e8f14d35ed78ca0dd07403c9f" 956 835 dependencies = [ 957 - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", 836 + "byteorder", 837 + "num-traits", 838 + "paste", 958 839 ] 959 840 960 841 [[package]] 961 - name = "quote" 962 - version = "1.0.7" 842 + name = "rmp-serde" 843 + version = "1.1.1" 963 844 source = "registry+https://github.com/rust-lang/crates.io-index" 845 + checksum = "c5b13be192e0220b8afb7222aa5813cb62cc269ebb5cac346ca6487681d2913e" 964 846 dependencies = [ 965 - "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", 847 + "byteorder", 848 + "rmp", 849 + "serde", 966 850 ] 967 851 968 852 [[package]] 969 - name = "rand" 970 - version = "0.6.5" 853 + name = "rmpv" 854 + version = "1.0.0" 971 855 source = "registry+https://github.com/rust-lang/crates.io-index" 856 + checksum = "de8813b3a2f95c5138fe5925bfb8784175d88d6bff059ba8ce090aa891319754" 972 857 dependencies = [ 973 - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 974 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 975 - "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 976 - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 977 - "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 978 - "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 979 - "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 980 - "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 981 - "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 982 - "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 983 - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 858 + "num-traits", 859 + "rmp", 860 + "serde", 861 + "serde_bytes", 984 862 ] 985 863 986 864 [[package]] 987 - name = "rand_chacha" 988 - version = "0.1.1" 865 + name = "rustc_version" 866 + version = "0.4.0" 989 867 source = "registry+https://github.com/rust-lang/crates.io-index" 868 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 990 869 dependencies = [ 991 - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 992 - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 870 + "semver", 993 871 ] 994 872 995 873 [[package]] 996 - name = "rand_core" 997 - version = "0.3.1" 874 + name = "scopeguard" 875 + version = "1.1.0" 998 876 source = "registry+https://github.com/rust-lang/crates.io-index" 999 - dependencies = [ 1000 - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 1001 - ] 877 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1002 878 1003 879 [[package]] 1004 - name = "rand_core" 1005 - version = "0.4.2" 880 + name = "semver" 881 + version = "1.0.17" 1006 882 source = "registry+https://github.com/rust-lang/crates.io-index" 883 + checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 1007 884 1008 885 [[package]] 1009 - name = "rand_hc" 1010 - version = "0.1.0" 886 + name = "serde" 887 + version = "1.0.158" 1011 888 source = "registry+https://github.com/rust-lang/crates.io-index" 889 + checksum = "771d4d9c4163ee138805e12c710dd365e4f44be8be0503cb1bb9eb989425d9c9" 1012 890 dependencies = [ 1013 - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 891 + "serde_derive", 1014 892 ] 1015 893 1016 894 [[package]] 1017 - name = "rand_isaac" 1018 - version = "0.1.1" 895 + name = "serde_bytes" 896 + version = "0.11.9" 1019 897 source = "registry+https://github.com/rust-lang/crates.io-index" 898 + checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294" 1020 899 dependencies = [ 1021 - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 900 + "serde", 1022 901 ] 1023 902 1024 903 [[package]] 1025 - name = "rand_jitter" 1026 - version = "0.1.4" 904 + name = "serde_derive" 905 + version = "1.0.158" 1027 906 source = "registry+https://github.com/rust-lang/crates.io-index" 907 + checksum = "e801c1712f48475582b7696ac71e0ca34ebb30e09338425384269d9717c62cad" 1028 908 dependencies = [ 1029 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 1030 - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 1031 - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 909 + "proc-macro2", 910 + "quote", 911 + "syn 2.0.10", 1032 912 ] 1033 913 1034 914 [[package]] 1035 - name = "rand_os" 1036 - version = "0.1.3" 915 + name = "serde_spanned" 916 + version = "0.6.1" 1037 917 source = "registry+https://github.com/rust-lang/crates.io-index" 918 + checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" 1038 919 dependencies = [ 1039 - "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 1040 - "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1041 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 1042 - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 1043 - "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1044 - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 920 + "serde", 1045 921 ] 1046 922 1047 923 [[package]] 1048 - name = "rand_pcg" 1049 - version = "0.1.2" 924 + name = "signal-hook-registry" 925 + version = "1.4.1" 1050 926 source = "registry+https://github.com/rust-lang/crates.io-index" 927 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 1051 928 dependencies = [ 1052 - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 1053 - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 929 + "libc", 1054 930 ] 1055 931 1056 932 [[package]] 1057 - name = "rand_xorshift" 1058 - version = "0.1.1" 933 + name = "slab" 934 + version = "0.4.8" 1059 935 source = "registry+https://github.com/rust-lang/crates.io-index" 936 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 1060 937 dependencies = [ 1061 - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 938 + "autocfg", 1062 939 ] 1063 940 1064 941 [[package]] 1065 - name = "rdrand" 1066 - version = "0.4.0" 942 + name = "smallvec" 943 + version = "1.10.0" 1067 944 source = "registry+https://github.com/rust-lang/crates.io-index" 1068 - dependencies = [ 1069 - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1070 - ] 945 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 1071 946 1072 947 [[package]] 1073 - name = "regex" 1074 - version = "1.3.9" 948 + name = "socket2" 949 + version = "0.4.9" 1075 950 source = "registry+https://github.com/rust-lang/crates.io-index" 951 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 1076 952 dependencies = [ 1077 - "aho-corasick 0.7.13 (registry+https://github.com/rust-lang/crates.io-index)", 1078 - "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 1079 - "regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)", 1080 - "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 953 + "libc", 954 + "winapi", 1081 955 ] 1082 956 1083 957 [[package]] 1084 - name = "regex-syntax" 1085 - version = "0.6.18" 958 + name = "strsim" 959 + version = "0.10.0" 1086 960 source = "registry+https://github.com/rust-lang/crates.io-index" 961 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 1087 962 1088 963 [[package]] 1089 - name = "rmp" 1090 - version = "0.8.9" 964 + name = "syn" 965 + version = "1.0.109" 1091 966 source = "registry+https://github.com/rust-lang/crates.io-index" 967 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1092 968 dependencies = [ 1093 - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 1094 - "num-traits 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", 969 + "proc-macro2", 970 + "quote", 971 + "unicode-ident", 1095 972 ] 1096 973 1097 974 [[package]] 1098 - name = "rmpv" 1099 - version = "0.4.4" 975 + name = "syn" 976 + version = "2.0.10" 1100 977 source = "registry+https://github.com/rust-lang/crates.io-index" 1101 - dependencies = [ 1102 - "num-traits 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", 1103 - "rmp 0.8.9 (registry+https://github.com/rust-lang/crates.io-index)", 1104 - ] 1105 - 1106 - [[package]] 1107 - name = "ryu" 1108 - version = "1.0.5" 1109 - source = "registry+https://github.com/rust-lang/crates.io-index" 1110 - 1111 - [[package]] 1112 - name = "safemem" 1113 - version = "0.3.3" 1114 - source = "registry+https://github.com/rust-lang/crates.io-index" 1115 - 1116 - [[package]] 1117 - name = "same-file" 1118 - version = "1.0.6" 1119 - source = "registry+https://github.com/rust-lang/crates.io-index" 978 + checksum = "5aad1363ed6d37b84299588d62d3a7d95b5a5c2d9aad5c85609fda12afaa1f40" 1120 979 dependencies = [ 1121 - "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 980 + "proc-macro2", 981 + "quote", 982 + "unicode-ident", 1122 983 ] 1123 984 1124 985 [[package]] 1125 - name = "serde" 1126 - version = "1.0.114" 1127 - source = "registry+https://github.com/rust-lang/crates.io-index" 1128 - 1129 - [[package]] 1130 - name = "serde_derive" 1131 - version = "1.0.114" 986 + name = "system-deps" 987 + version = "6.0.4" 1132 988 source = "registry+https://github.com/rust-lang/crates.io-index" 989 + checksum = "555fc8147af6256f3931a36bb83ad0023240ce9cf2b319dec8236fd1f220b05f" 1133 990 dependencies = [ 1134 - "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", 1135 - "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", 1136 - "syn 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", 991 + "cfg-expr", 992 + "heck", 993 + "pkg-config", 994 + "toml", 995 + "version-compare", 1137 996 ] 1138 997 1139 998 [[package]] 1140 - name = "serde_json" 1141 - version = "1.0.55" 999 + name = "termcolor" 1000 + version = "1.2.0" 1142 1001 source = "registry+https://github.com/rust-lang/crates.io-index" 1002 + checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 1143 1003 dependencies = [ 1144 - "itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 1145 - "ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", 1146 - "serde 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)", 1004 + "winapi-util", 1147 1005 ] 1148 1006 1149 1007 [[package]] 1150 - name = "siphasher" 1151 - version = "0.2.3" 1152 - source = "registry+https://github.com/rust-lang/crates.io-index" 1153 - 1154 - [[package]] 1155 - name = "slab" 1156 - version = "0.4.2" 1008 + name = "textwrap" 1009 + version = "0.16.0" 1157 1010 source = "registry+https://github.com/rust-lang/crates.io-index" 1011 + checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 1158 1012 1159 1013 [[package]] 1160 - name = "soup-sys" 1161 - version = "0.9.0" 1014 + name = "thiserror" 1015 + version = "1.0.40" 1162 1016 source = "registry+https://github.com/rust-lang/crates.io-index" 1017 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 1163 1018 dependencies = [ 1164 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 1165 - "gio-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1166 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1167 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1168 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 1169 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 1019 + "thiserror-impl", 1170 1020 ] 1171 1021 1172 1022 [[package]] 1173 - name = "string_cache" 1174 - version = "0.7.5" 1023 + name = "thiserror-impl" 1024 + version = "1.0.40" 1175 1025 source = "registry+https://github.com/rust-lang/crates.io-index" 1026 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 1176 1027 dependencies = [ 1177 - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1178 - "new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 1179 - "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", 1180 - "precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1181 - "serde 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)", 1182 - "string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", 1183 - "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 1028 + "proc-macro2", 1029 + "quote", 1030 + "syn 2.0.10", 1184 1031 ] 1185 1032 1186 1033 [[package]] 1187 - name = "string_cache_codegen" 1188 - version = "0.4.4" 1034 + name = "tokio" 1035 + version = "1.26.0" 1189 1036 source = "registry+https://github.com/rust-lang/crates.io-index" 1037 + checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" 1190 1038 dependencies = [ 1191 - "phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", 1192 - "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", 1193 - "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", 1194 - "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", 1195 - "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 1039 + "autocfg", 1040 + "bytes", 1041 + "libc", 1042 + "memchr", 1043 + "mio", 1044 + "num_cpus", 1045 + "parking_lot", 1046 + "pin-project-lite", 1047 + "signal-hook-registry", 1048 + "socket2", 1049 + "tokio-macros", 1050 + "windows-sys", 1196 1051 ] 1197 1052 1198 1053 [[package]] 1199 - name = "string_cache_shared" 1200 - version = "0.3.0" 1054 + name = "tokio-macros" 1055 + version = "1.8.2" 1201 1056 source = "registry+https://github.com/rust-lang/crates.io-index" 1202 - 1203 - [[package]] 1204 - name = "strsim" 1205 - version = "0.8.0" 1206 - source = "registry+https://github.com/rust-lang/crates.io-index" 1207 - 1208 - [[package]] 1209 - name = "structopt" 1210 - version = "0.3.15" 1211 - source = "registry+https://github.com/rust-lang/crates.io-index" 1057 + checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" 1212 1058 dependencies = [ 1213 - "clap 2.33.1 (registry+https://github.com/rust-lang/crates.io-index)", 1214 - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1215 - "structopt-derive 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1059 + "proc-macro2", 1060 + "quote", 1061 + "syn 1.0.109", 1216 1062 ] 1217 1063 1218 1064 [[package]] 1219 - name = "structopt-derive" 1220 - version = "0.4.8" 1065 + name = "tokio-util" 1066 + version = "0.7.7" 1221 1067 source = "registry+https://github.com/rust-lang/crates.io-index" 1068 + checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" 1222 1069 dependencies = [ 1223 - "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1224 - "proc-macro-error 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 1225 - "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", 1226 - "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", 1227 - "syn 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", 1070 + "bytes", 1071 + "futures-core", 1072 + "futures-io", 1073 + "futures-sink", 1074 + "futures-util", 1075 + "hashbrown", 1076 + "pin-project-lite", 1077 + "slab", 1078 + "tokio", 1079 + "tracing", 1228 1080 ] 1229 1081 1230 1082 [[package]] 1231 - name = "syn" 1232 - version = "0.15.44" 1083 + name = "toml" 1084 + version = "0.7.3" 1233 1085 source = "registry+https://github.com/rust-lang/crates.io-index" 1086 + checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" 1234 1087 dependencies = [ 1235 - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", 1236 - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", 1237 - "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 1088 + "serde", 1089 + "serde_spanned", 1090 + "toml_datetime", 1091 + "toml_edit", 1238 1092 ] 1239 1093 1240 1094 [[package]] 1241 - name = "syn" 1242 - version = "1.0.33" 1095 + name = "toml_datetime" 1096 + version = "0.6.1" 1243 1097 source = "registry+https://github.com/rust-lang/crates.io-index" 1098 + checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" 1244 1099 dependencies = [ 1245 - "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", 1246 - "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", 1247 - "unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 1100 + "serde", 1248 1101 ] 1249 1102 1250 1103 [[package]] 1251 - name = "syn-mid" 1252 - version = "0.5.0" 1104 + name = "toml_edit" 1105 + version = "0.19.8" 1253 1106 source = "registry+https://github.com/rust-lang/crates.io-index" 1107 + checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" 1254 1108 dependencies = [ 1255 - "proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", 1256 - "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", 1257 - "syn 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)", 1109 + "indexmap", 1110 + "serde", 1111 + "serde_spanned", 1112 + "toml_datetime", 1113 + "winnow", 1258 1114 ] 1259 1115 1260 1116 [[package]] 1261 - name = "syntect" 1262 - version = "4.2.0" 1117 + name = "tracing" 1118 + version = "0.1.37" 1263 1119 source = "registry+https://github.com/rust-lang/crates.io-index" 1120 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 1264 1121 dependencies = [ 1265 - "bincode 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1266 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 1267 - "flate2 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)", 1268 - "fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", 1269 - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1270 - "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 1271 - "onig 6.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 1272 - "plist 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 1273 - "regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)", 1274 - "serde 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)", 1275 - "serde_derive 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)", 1276 - "serde_json 1.0.55 (registry+https://github.com/rust-lang/crates.io-index)", 1277 - "walkdir 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1278 - "yaml-rust 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", 1122 + "cfg-if", 1123 + "pin-project-lite", 1124 + "tracing-core", 1279 1125 ] 1280 1126 1281 1127 [[package]] 1282 - name = "tendril" 1283 - version = "0.4.1" 1128 + name = "tracing-core" 1129 + version = "0.1.30" 1284 1130 source = "registry+https://github.com/rust-lang/crates.io-index" 1131 + checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 1285 1132 dependencies = [ 1286 - "futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 1287 - "mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1288 - "utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", 1133 + "once_cell", 1289 1134 ] 1290 1135 1291 1136 [[package]] 1292 - name = "termcolor" 1293 - version = "1.1.0" 1137 + name = "unicode-ident" 1138 + version = "1.0.8" 1294 1139 source = "registry+https://github.com/rust-lang/crates.io-index" 1295 - dependencies = [ 1296 - "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1297 - ] 1140 + checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 1298 1141 1299 1142 [[package]] 1300 - name = "textwrap" 1301 - version = "0.11.0" 1143 + name = "version-compare" 1144 + version = "0.1.1" 1302 1145 source = "registry+https://github.com/rust-lang/crates.io-index" 1303 - dependencies = [ 1304 - "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 1305 - ] 1146 + checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" 1306 1147 1307 1148 [[package]] 1308 - name = "thread_local" 1309 - version = "1.0.1" 1149 + name = "version_check" 1150 + version = "0.9.4" 1310 1151 source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - dependencies = [ 1312 - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1313 - ] 1152 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1314 1153 1315 1154 [[package]] 1316 - name = "tinyvec" 1317 - version = "0.3.3" 1155 + name = "wasi" 1156 + version = "0.11.0+wasi-snapshot-preview1" 1318 1157 source = "registry+https://github.com/rust-lang/crates.io-index" 1158 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1319 1159 1320 1160 [[package]] 1321 - name = "tokio-io" 1322 - version = "0.1.13" 1161 + name = "winapi" 1162 + version = "0.3.9" 1323 1163 source = "registry+https://github.com/rust-lang/crates.io-index" 1164 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1324 1165 dependencies = [ 1325 - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 1326 - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1327 - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1166 + "winapi-i686-pc-windows-gnu", 1167 + "winapi-x86_64-pc-windows-gnu", 1328 1168 ] 1329 1169 1330 1170 [[package]] 1331 - name = "unicode-bidi" 1332 - version = "0.3.4" 1171 + name = "winapi-i686-pc-windows-gnu" 1172 + version = "0.4.0" 1333 1173 source = "registry+https://github.com/rust-lang/crates.io-index" 1334 - dependencies = [ 1335 - "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1336 - ] 1174 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1337 1175 1338 1176 [[package]] 1339 - name = "unicode-normalization" 1340 - version = "0.1.13" 1177 + name = "winapi-util" 1178 + version = "0.1.5" 1341 1179 source = "registry+https://github.com/rust-lang/crates.io-index" 1180 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 1342 1181 dependencies = [ 1343 - "tinyvec 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 1182 + "winapi", 1344 1183 ] 1345 1184 1346 1185 [[package]] 1347 - name = "unicode-segmentation" 1348 - version = "1.6.0" 1349 - source = "registry+https://github.com/rust-lang/crates.io-index" 1350 - 1351 - [[package]] 1352 - name = "unicode-width" 1353 - version = "0.1.7" 1354 - source = "registry+https://github.com/rust-lang/crates.io-index" 1355 - 1356 - [[package]] 1357 - name = "unicode-xid" 1358 - version = "0.1.0" 1359 - source = "registry+https://github.com/rust-lang/crates.io-index" 1360 - 1361 - [[package]] 1362 - name = "unicode-xid" 1363 - version = "0.2.1" 1186 + name = "winapi-x86_64-pc-windows-gnu" 1187 + version = "0.4.0" 1364 1188 source = "registry+https://github.com/rust-lang/crates.io-index" 1189 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1365 1190 1366 1191 [[package]] 1367 - name = "url" 1368 - version = "1.7.2" 1192 + name = "windows-sys" 1193 + version = "0.45.0" 1369 1194 source = "registry+https://github.com/rust-lang/crates.io-index" 1195 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 1370 1196 dependencies = [ 1371 - "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1372 - "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1373 - "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 1197 + "windows-targets", 1374 1198 ] 1375 1199 1376 1200 [[package]] 1377 - name = "utf-8" 1378 - version = "0.7.5" 1379 - source = "registry+https://github.com/rust-lang/crates.io-index" 1380 - 1381 - [[package]] 1382 - name = "vec_map" 1383 - version = "0.8.2" 1384 - source = "registry+https://github.com/rust-lang/crates.io-index" 1385 - 1386 - [[package]] 1387 - name = "version_check" 1388 - version = "0.9.2" 1389 - source = "registry+https://github.com/rust-lang/crates.io-index" 1390 - 1391 - [[package]] 1392 - name = "walkdir" 1393 - version = "2.3.1" 1201 + name = "windows-targets" 1202 + version = "0.42.2" 1394 1203 source = "registry+https://github.com/rust-lang/crates.io-index" 1204 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 1395 1205 dependencies = [ 1396 - "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", 1397 - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 1398 - "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1206 + "windows_aarch64_gnullvm", 1207 + "windows_aarch64_msvc", 1208 + "windows_i686_gnu", 1209 + "windows_i686_msvc", 1210 + "windows_x86_64_gnu", 1211 + "windows_x86_64_gnullvm", 1212 + "windows_x86_64_msvc", 1399 1213 ] 1400 1214 1401 1215 [[package]] 1402 - name = "webkit2gtk" 1403 - version = "0.9.2" 1216 + name = "windows_aarch64_gnullvm" 1217 + version = "0.42.2" 1404 1218 source = "registry+https://github.com/rust-lang/crates.io-index" 1405 - dependencies = [ 1406 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 1407 - "cairo-rs 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 1408 - "gdk 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", 1409 - "gdk-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1410 - "gio 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 1411 - "gio-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1412 - "glib 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", 1413 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1414 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1415 - "gtk 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 1416 - "gtk-sys 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 1417 - "javascriptcore-rs 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 1418 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 1419 - "webkit2gtk-sys 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", 1420 - ] 1219 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 1421 1220 1422 1221 [[package]] 1423 - name = "webkit2gtk-sys" 1424 - version = "0.11.0" 1222 + name = "windows_aarch64_msvc" 1223 + version = "0.42.2" 1425 1224 source = "registry+https://github.com/rust-lang/crates.io-index" 1426 - dependencies = [ 1427 - "atk-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1428 - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 1429 - "cairo-sys-rs 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 1430 - "gdk-pixbuf-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1431 - "gdk-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1432 - "gio-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1433 - "glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1434 - "gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1435 - "gtk-sys 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 1436 - "javascriptcore-rs-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1437 - "libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)", 1438 - "pango-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1439 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 1440 - "soup-sys 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 1441 - ] 1225 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 1442 1226 1443 1227 [[package]] 1444 - name = "winapi" 1445 - version = "0.3.9" 1228 + name = "windows_i686_gnu" 1229 + version = "0.42.2" 1446 1230 source = "registry+https://github.com/rust-lang/crates.io-index" 1447 - dependencies = [ 1448 - "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1449 - "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1450 - ] 1231 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1451 1232 1452 1233 [[package]] 1453 - name = "winapi-i686-pc-windows-gnu" 1454 - version = "0.4.0" 1234 + name = "windows_i686_msvc" 1235 + version = "0.42.2" 1455 1236 source = "registry+https://github.com/rust-lang/crates.io-index" 1237 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1456 1238 1457 1239 [[package]] 1458 - name = "winapi-util" 1459 - version = "0.1.5" 1240 + name = "windows_x86_64_gnu" 1241 + version = "0.42.2" 1460 1242 source = "registry+https://github.com/rust-lang/crates.io-index" 1461 - dependencies = [ 1462 - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 1463 - ] 1243 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1464 1244 1465 1245 [[package]] 1466 - name = "winapi-x86_64-pc-windows-gnu" 1467 - version = "0.4.0" 1246 + name = "windows_x86_64_gnullvm" 1247 + version = "0.42.2" 1468 1248 source = "registry+https://github.com/rust-lang/crates.io-index" 1249 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1469 1250 1470 1251 [[package]] 1471 - name = "xml-rs" 1472 - version = "0.8.3" 1252 + name = "windows_x86_64_msvc" 1253 + version = "0.42.2" 1473 1254 source = "registry+https://github.com/rust-lang/crates.io-index" 1255 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1474 1256 1475 1257 [[package]] 1476 - name = "yaml-rust" 1477 - version = "0.4.4" 1258 + name = "winnow" 1259 + version = "0.4.1" 1478 1260 source = "registry+https://github.com/rust-lang/crates.io-index" 1261 + checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28" 1479 1262 dependencies = [ 1480 - "linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", 1263 + "memchr", 1481 1264 ] 1482 - 1483 - [metadata] 1484 - "checksum adler32 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "567b077b825e468cc974f0020d4082ee6e03132512f207ef1a02fd5d00d1f32d" 1485 - "checksum aho-corasick 0.7.13 (registry+https://github.com/rust-lang/crates.io-index)" = "043164d8ba5c4c3035fec9bbee8647c0261d788f3474306f93bb65901cae0e86" 1486 - "checksum ammonia 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "384d704f242a0a9faf793fff775a0be6ab9aa27edabffa097331d73779142520" 1487 - "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" 1488 - "checksum async-trait 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)" = "a265e3abeffdce30b2e26b7a11b222fe37c6067404001b434101457d0385eb92" 1489 - "checksum atk 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "444daefa55f229af145ea58d77efd23725024ee1f6f3102743709aa6b18c663e" 1490 - "checksum atk-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e552c1776737a4c80110d06b36d099f47c727335f9aaa5d942a72b6863a8ec6f" 1491 - "checksum atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 1492 - "checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" 1493 - "checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d" 1494 - "checksum base64 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" 1495 - "checksum bincode 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f30d3a39baa26f9651f17b375061f3233dde33424a8b72b0dbe93a68a0bc896d" 1496 - "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" 1497 - "checksum byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" 1498 - "checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" 1499 - "checksum cairo-rs 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "157049ba9618aa3a61c39d5d785102c04d3b1f40632a706c621a9aedc21e6084" 1500 - "checksum cairo-sys-rs 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ff65ba02cac715be836f63429ab00a767d48336efc5497c5637afb53b4f14d63" 1501 - "checksum cc 1.0.55 (registry+https://github.com/rust-lang/crates.io-index)" = "b1be3409f94d7bdceeb5f5fac551039d9b3f00e25da7a74fc4d33400a0d96368" 1502 - "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 1503 - "checksum chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "80094f509cf8b5ae86a4966a39b3ff66cd7e2a3e594accec3743ff3fabeab5b2" 1504 - "checksum clap 2.33.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bdfa80d47f954d53a35a64987ca1422f495b8d6483c0fe9f7117b36c2a792129" 1505 - "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 1506 - "checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" 1507 - "checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" 1508 - "checksum flate2 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)" = "2cfff41391129e0a856d6d822600b8d71179d46879e310417eb9c762eb178b42" 1509 - "checksum fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1510 - "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 1511 - "checksum futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b" 1512 - "checksum futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef" 1513 - "checksum futures 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1e05b85ec287aac0dc34db7d4a569323df697f9c55b99b15d6b4ef8cde49f613" 1514 - "checksum futures-channel 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f366ad74c28cca6ba456d95e6422883cfb4b252a83bed929c83abfdbbf2967d5" 1515 - "checksum futures-core 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "59f5fff90fd5d971f936ad674802482ba441b6f09ba5e15fd8b39145582ca399" 1516 - "checksum futures-executor 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "10d6bb888be1153d3abeb9006b11b02cf5e9b209fda28693c31ae1e4e012e314" 1517 - "checksum futures-io 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "de27142b013a8e869c14957e6d2edeef89e97c289e69d042ee3a49acd8b51789" 1518 - "checksum futures-macro 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d0b5a30a4328ab5473878237c447333c093297bded83a4983d10f4deea240d39" 1519 - "checksum futures-sink 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "3f2032893cb734c7a05d85ce0cc8b8c4075278e93b24b66f9de99d6eb0fa8acc" 1520 - "checksum futures-task 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "bdb66b5f09e22019b1ab0830f7785bcea8e7a42148683f99214f73f8ec21a626" 1521 - "checksum futures-util 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8764574ff08b701a084482c3c7031349104b07ac897393010494beaa18ce32c6" 1522 - "checksum gdk 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fbe5e8772fc0865c52460cdd7a59d7d47700f44d9809d1dd00eecceb769a7589" 1523 - "checksum gdk-pixbuf 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e248220c46b329b097d4b158d2717f8c688f16dd76d0399ace82b3e98062bdd7" 1524 - "checksum gdk-pixbuf-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d8991b060a9e9161bafd09bf4a202e6fd404f5b4dd1a08d53a1e84256fb34ab0" 1525 - "checksum gdk-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6adf679e91d1bff0c06860287f80403e7db54c2d2424dce0a470023b56c88fbb" 1526 - "checksum gio 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0cd10f9415cce39b53f8024bf39a21f84f8157afa52da53837b102e585a296a5" 1527 - "checksum gio-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4fad225242b9eae7ec8a063bb86974aca56885014672375e5775dc0ea3533911" 1528 - "checksum glib 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "40fb573a09841b6386ddf15fd4bc6655b4f5b106ca962f57ecaecde32a0061c0" 1529 - "checksum glib-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "95856f3802f446c05feffa5e24859fe6a183a7cb849c8449afc35c86b1e316e2" 1530 - "checksum gobject-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31d1a804f62034eccf370006ccaef3708a71c31d561fee88564abe71177553d9" 1531 - "checksum gtk 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87e1e8d70290239c668594002d1b174fcc7d7ef5d26670ee141490ede8facf8f" 1532 - "checksum gtk-sys 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53def660c7b48b00b510c81ef2d2fbd3c570f1527081d8d7947f471513e1a4c1" 1533 - "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" 1534 - "checksum hermit-abi 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "b9586eedd4ce6b3c498bc3b4dd92fc9f11166aa908a914071953768066c67909" 1535 - "checksum html5ever 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5ce65ac8028cf5a287a7dbf6c4e0a6cf2dcf022ed5b167a81bae66ebf599a8b7" 1536 - "checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" 1537 - "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" 1538 - "checksum indexmap 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c398b2b113b55809ceb9ee3e753fcbac793f1956663f3c36549c1346015c2afe" 1539 - "checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" 1540 - "checksum itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6" 1541 - "checksum javascriptcore-rs 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2104be353e5c19d587e25f36ecb6d59504b5573ad84b96b06650b0cc99d02784" 1542 - "checksum javascriptcore-rs-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3f46ada8a08dcd75a10afae872fbfb51275df4a8ae0d46b8cc7c708f08dd2998" 1543 - "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1544 - "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" 1545 - "checksum libc 0.2.71 (registry+https://github.com/rust-lang/crates.io-index)" = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49" 1546 - "checksum line-wrap 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1547 - "checksum linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a" 1548 - "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" 1549 - "checksum mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1550 - "checksum maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 1551 - "checksum markup5ever 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f1af46a727284117e09780d05038b1ce6fc9c76cc6df183c3dae5a8955a25e21" 1552 - "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" 1553 - "checksum memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400" 1554 - "checksum miniz_oxide 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435" 1555 - "checksum new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1556 - "checksum num-integer 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "8d59457e662d541ba17869cf51cf177c0b5f0cbf476c66bdc90bf1edac4f875b" 1557 - "checksum num-traits 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ac267bcc07f48ee5f8935ab0d24f316fb722d7a1292e2913f0cc196b29ffd611" 1558 - "checksum nvim-rs 0.1.1-alpha.0 (git+https://github.com/KillTheMule/nvim-rs)" = "<none>" 1559 - "checksum once_cell 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0b631f7e854af39a1739f401cf34a8a013dfe09eac4fa4dba91e9768bd28168d" 1560 - "checksum onig 6.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bd91ccd8a02fce2f7e8a86655aec67bc6c171e6f8e704118a0e8c4b866a05a8a" 1561 - "checksum onig_sys 69.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3814583fad89f3c60ae0701d80e87e1fd3028741723deda72d0d4a0ecf0cb0db" 1562 - "checksum pango 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9c6b728f1be8edb5f9f981420b651d5ea30bdb9de89f1f1262d0084a020577" 1563 - "checksum pango-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "86b93d84907b3cf0819bff8f13598ba72843bee579d5ebc2502e4b0367b4be7d" 1564 - "checksum pangocairo 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bdd1077c0db2e5eb9225cc040514aa856cb6a4c4890c542cf50d37880e1c572d" 1565 - "checksum pangocairo-sys 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a3921b31ab776b23e28c8f6e474dda52fdc28bc2689101caeb362ba976719efe" 1566 - "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" 1567 - "checksum phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18" 1568 - "checksum phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e" 1569 - "checksum phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662" 1570 - "checksum phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0" 1571 - "checksum pin-project 0.4.22 (registry+https://github.com/rust-lang/crates.io-index)" = "12e3a6cdbfe94a5e4572812a0201f8c0ed98c1c452c7b8563ce2276988ef9c17" 1572 - "checksum pin-project-internal 0.4.22 (registry+https://github.com/rust-lang/crates.io-index)" = "6a0ffd45cf79d88737d7cc85bfd5d2894bee1139b356e616fe85dc389c61aaf7" 1573 - "checksum pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1574 - "checksum pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" 1575 - "checksum plist 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b336d94e8e4ce29bf15bba393164629764744c567e8ad306cc1fdd0119967fd" 1576 - "checksum precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1577 - "checksum proc-macro-error 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fc175e9777c3116627248584e8f8b3e2987405cabe1c0adf7d1dd28f09dc7880" 1578 - "checksum proc-macro-error-attr 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3cc9795ca17eb581285ec44936da7fc2335a3f34f2ddd13118b6f4d515435c50" 1579 - "checksum proc-macro-hack 0.5.16 (registry+https://github.com/rust-lang/crates.io-index)" = "7e0456befd48169b9f13ef0f0ad46d492cf9d2dbb918bcf38e01eed4ce3ec5e4" 1580 - "checksum proc-macro-nested 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a" 1581 - "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" 1582 - "checksum proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)" = "beae6331a816b1f65d04c45b078fd8e6c93e8071771f41b8163255bbd8d7c8fa" 1583 - "checksum pulldown-cmark 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eef52fac62d0ea7b9b4dc7da092aa64ea7ec3d90af6679422d3d7e0e14b6ee15" 1584 - "checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 1585 - "checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" 1586 - "checksum quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37" 1587 - "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" 1588 - "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" 1589 - "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 1590 - "checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 1591 - "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" 1592 - "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" 1593 - "checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" 1594 - "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" 1595 - "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" 1596 - "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" 1597 - "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 1598 - "checksum regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6" 1599 - "checksum regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)" = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8" 1600 - "checksum rmp 0.8.9 (registry+https://github.com/rust-lang/crates.io-index)" = "0f10b46df14cf1ee1ac7baa4d2fbc2c52c0622a4b82fa8740e37bc452ac0184f" 1601 - "checksum rmpv 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b8e5078dd8691b0811b14fbd2d78358f7fc68e83b98ba6f16488bf77694e9fe2" 1602 - "checksum ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" 1603 - "checksum safemem 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 1604 - "checksum same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1605 - "checksum serde 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)" = "5317f7588f0a5078ee60ef675ef96735a1442132dc645eb1d12c018620ed8cd3" 1606 - "checksum serde_derive 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)" = "2a0be94b04690fbaed37cddffc5c134bf537c8e3329d53e982fe04c374978f8e" 1607 - "checksum serde_json 1.0.55 (registry+https://github.com/rust-lang/crates.io-index)" = "ec2c5d7e739bc07a3e73381a39d61fdb5f671c60c1df26a130690665803d8226" 1608 - "checksum siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" 1609 - "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" 1610 - "checksum soup-sys 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "48a2f246b51c81d4baa1ce611240c2f6e0323ae75f3b6cc9d2d2911e0567962c" 1611 - "checksum string_cache 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" = "89c058a82f9fd69b1becf8c274f412281038877c553182f1d02eb027045a2d67" 1612 - "checksum string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0f45ed1b65bf9a4bf2f7b7dc59212d1926e9eaf00fa998988e420fd124467c6" 1613 - "checksum string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b1884d1bc09741d466d9b14e6d37ac89d6909cbcac41dd9ae982d4d063bbedfc" 1614 - "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 1615 - "checksum structopt 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "de2f5e239ee807089b62adce73e48c625e0ed80df02c7ab3f068f5db5281065c" 1616 - "checksum structopt-derive 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "510413f9de616762a4fbeab62509bf15c729603b72d7cd71280fbca431b1c118" 1617 - "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" 1618 - "checksum syn 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)" = "e8d5d96e8cbb005d6959f119f773bfaebb5684296108fb32600c00cde305b2cd" 1619 - "checksum syn-mid 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7be3539f6c128a931cf19dcee741c1af532c7fd387baa739c03dd2e96479338a" 1620 - "checksum syntect 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "83b43a6ca1829ccb0c933b615c9ea83ffc8793ae240cecbd15119b13d741161d" 1621 - "checksum tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "707feda9f2582d5d680d733e38755547a3e8fb471e7ba11452ecfd9ce93a5d3b" 1622 - "checksum termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f" 1623 - "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 1624 - "checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" 1625 - "checksum tinyvec 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "53953d2d3a5ad81d9f844a32f14ebb121f50b650cd59d0ee2a07cf13c617efed" 1626 - "checksum tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674" 1627 - "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" 1628 - "checksum unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977" 1629 - "checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" 1630 - "checksum unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479" 1631 - "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" 1632 - "checksum unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" 1633 - "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" 1634 - "checksum utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" = "05e42f7c18b8f902290b009cde6d651262f956c98bc51bca4cd1d511c9cd85c7" 1635 - "checksum vec_map 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 1636 - "checksum version_check 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed" 1637 - "checksum walkdir 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d" 1638 - "checksum webkit2gtk 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "af1de552309714f28c3242b0084f6cdcab4a8d19de849505202c49e7cfdf57a9" 1639 - "checksum webkit2gtk-sys 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7ed60661b81f0cc92f3c2043d83262e3a1ac253b08a616550a9fc008ae28c185" 1640 - "checksum winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1641 - "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1642 - "checksum winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 1643 - "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1644 - "checksum xml-rs 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b07db065a5cf61a7e4ba64f29e67db906fb1787316516c4e6e5ff0fea1efcd8a" 1645 - "checksum yaml-rust 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "39f0c922f1a334134dc2f7a8b67dc5d25f0735263feec974345ff706bcf20b0d"
+13 -24
pkgs/applications/editors/neovim/gnvim/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub, gtk, webkitgtk }: 1 + { lib, rustPlatform, fetchFromGitHub, pkg-config, glib, gtk4 }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "gnvim-unwrapped"; 5 - version = "0.1.6"; 5 + version = "0.3.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vhakulinen"; 9 9 repo = "gnvim"; 10 10 rev = "v${version}"; 11 - sha256 = "1cc3yk04v9icdjr5cn58mqc3ba1wqmlzhf9ly7biy9m8yk30w9y0"; 11 + hash = "sha256-VyyHlyMW/9zYECobQwngFARQYqcoXmopyCHUwHolXfo="; 12 12 }; 13 13 14 - cargoLock = { 15 - lockFile = ./Cargo.lock; 16 - outputHashes = { 17 - "nvim-rs-0.1.1-alpha.0" = "sha256-wn68Lix3zZULrg/G4hP+OSj1GbEZMsA/+PaOlG9WLtc="; 18 - }; 19 - }; 14 + cargoLock.lockFile = ./Cargo.lock; 20 15 21 - buildInputs = [ gtk webkitgtk ]; 16 + nativeBuildInputs = [ 17 + pkg-config 18 + # for the `glib-compile-resources` command 19 + glib 20 + ]; 21 + buildInputs = [ glib gtk4 ]; 22 22 23 23 # The default build script tries to get the version through Git, so we 24 24 # replace it 25 25 postPatch = '' 26 - cat << EOF > build.rs 27 - use std::env; 28 - use std::fs::File; 29 - use std::io::Write; 30 - use std::path::Path; 31 - 32 - fn main() { 33 - let out_dir = env::var("OUT_DIR").unwrap(); 34 - let dest_path = Path::new(&out_dir).join("gnvim_version.rs"); 35 - let mut f = File::create(&dest_path).unwrap(); 36 - f.write_all(b"const VERSION: &str = \"${version}\";").unwrap(); 37 - } 38 - EOF 39 - 40 26 # Install the binary ourselves, since the Makefile doesn't have the path 41 27 # containing the target architecture 42 28 sed -e "/target\/release/d" -i Makefile ··· 45 31 postInstall = '' 46 32 make install PREFIX="${placeholder "out"}" 47 33 ''; 34 + 35 + # GTK fails to initialize 36 + doCheck = false; 48 37 49 38 meta = with lib; { 50 39 description = "GUI for neovim, without any web bloat";
+3 -11
pkgs/applications/editors/neovim/gnvim/wrapper.nix
··· 1 - { stdenv, gnvim-unwrapped, neovim, makeWrapper }: 1 + { lib, stdenv, gnvim-unwrapped, neovim, makeWrapper }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "gnvim"; 5 5 version = gnvim-unwrapped.version; 6 - buildCommand = if stdenv.isDarwin then '' 7 - mkdir -p $out/Applications 8 - cp -r ${gnvim-unwrapped}/bin/gnvim.app $out/Applications 9 - 10 - chmod -R a+w "$out/Applications/gnvim.app/Contents/MacOS" 11 - wrapProgram "$out/Applications/gnvim.app/Contents/MacOS/gnvim" \ 12 - --prefix PATH : "${neovim}/bin" \ 13 - --set GNVIM_RUNTIME_PATH "${gnvim-unwrapped}/share/gnvim/runtime" 14 - '' else '' 6 + buildCommand = '' 15 7 makeWrapper '${gnvim-unwrapped}/bin/gnvim' "$out/bin/gnvim" \ 16 8 --prefix PATH : "${neovim}/bin" \ 17 9 --set GNVIM_RUNTIME_PATH "${gnvim-unwrapped}/share/gnvim/runtime" 18 - 10 + '' + lib.optionalString (!stdenv.isDarwin) '' 19 11 mkdir -p "$out/share" 20 12 ln -s '${gnvim-unwrapped}/share/icons' "$out/share/icons" 21 13
+10 -17
pkgs/applications/misc/ArchiSteamFarm/web-ui/default.nix
··· 1 - { lib, pkgs, fetchFromGitHub, nodejs, nodePackages, stdenv, ArchiSteamFarm }: 1 + { lib, fetchFromGitHub, buildNpmPackage, nodePackages, ArchiSteamFarm }: 2 2 3 - let 4 - nodePackages = import ./node-composition.nix { 5 - inherit pkgs nodejs; 6 - inherit (stdenv.hostPlatform) system; 7 - }; 3 + buildNpmPackage { 4 + pname = "asf-ui"; 5 + inherit (ArchiSteamFarm) version; 8 6 9 7 src = fetchFromGitHub { 10 8 owner = "JustArchiNET"; ··· 15 13 sha256 = "1ajmi2l6xhv3nlnag2kmkblny925irp4gngdc3mniiimw364p826"; 16 14 }; 17 15 18 - in 19 - nodePackages.package.override { 20 - inherit src; 16 + npmDepsHash = "sha256-AY1DFuZkB8tOQd2FzHuNZ31rtLlWujP+3AqsMMB2BhU="; 21 17 22 - # upstream isn't tagged, but we are using the latest official commit for that specific asf version (assuming both get updated at the same time) 23 - version = ArchiSteamFarm.version; 18 + installPhase = '' 19 + runHook preInstall 24 20 25 - nativeBuildInputs = [ pkgs.nodePackages.node-gyp-build ]; 21 + mkdir $out 22 + cp -rv dist/* $out/ 26 23 27 - postInstall = '' 28 - patchShebangs node_modules/ 29 - npm run build 30 - cp -r $out/lib/node_modules/asf-ui/dist $out/lib/dist 31 - rm -rf $out/lib/node_modules/ 24 + runHook postInstall 32 25 ''; 33 26 34 27 meta = with lib; {
-17
pkgs/applications/misc/ArchiSteamFarm/web-ui/node-composition.nix
··· 1 - # This file has been generated by node2nix 1.11.1. Do not edit! 2 - 3 - {pkgs ? import <nixpkgs> { 4 - inherit system; 5 - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs_14"}: 6 - 7 - let 8 - nodeEnv = import ../../../../development/node-packages/node-env.nix { 9 - inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript; 10 - inherit pkgs nodejs; 11 - libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; 12 - }; 13 - in 14 - import ./node-packages.nix { 15 - inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit; 16 - inherit nodeEnv; 17 - }
-7428
pkgs/applications/misc/ArchiSteamFarm/web-ui/node-packages.nix
··· 1 - # This file has been generated by node2nix 1.11.1. Do not edit! 2 - 3 - {nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}: 4 - 5 - let 6 - sources = { 7 - "@ampproject/remapping-2.2.0" = { 8 - name = "_at_ampproject_slash_remapping"; 9 - packageName = "@ampproject/remapping"; 10 - version = "2.2.0"; 11 - src = fetchurl { 12 - url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"; 13 - sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="; 14 - }; 15 - }; 16 - "@babel/code-frame-7.21.4" = { 17 - name = "_at_babel_slash_code-frame"; 18 - packageName = "@babel/code-frame"; 19 - version = "7.21.4"; 20 - src = fetchurl { 21 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz"; 22 - sha512 = "LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g=="; 23 - }; 24 - }; 25 - "@babel/compat-data-7.21.4" = { 26 - name = "_at_babel_slash_compat-data"; 27 - packageName = "@babel/compat-data"; 28 - version = "7.21.4"; 29 - src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.4.tgz"; 31 - sha512 = "/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g=="; 32 - }; 33 - }; 34 - "@babel/core-7.21.4" = { 35 - name = "_at_babel_slash_core"; 36 - packageName = "@babel/core"; 37 - version = "7.21.4"; 38 - src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz"; 40 - sha512 = "qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA=="; 41 - }; 42 - }; 43 - "@babel/eslint-parser-7.21.3" = { 44 - name = "_at_babel_slash_eslint-parser"; 45 - packageName = "@babel/eslint-parser"; 46 - version = "7.21.3"; 47 - src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.21.3.tgz"; 49 - sha512 = "kfhmPimwo6k4P8zxNs8+T7yR44q1LdpsZdE1NkCsVlfiuTPRfnGgjaF8Qgug9q9Pou17u6wneYF0lDCZJATMFg=="; 50 - }; 51 - }; 52 - "@babel/generator-7.21.4" = { 53 - name = "_at_babel_slash_generator"; 54 - packageName = "@babel/generator"; 55 - version = "7.21.4"; 56 - src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz"; 58 - sha512 = "NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA=="; 59 - }; 60 - }; 61 - "@babel/helper-annotate-as-pure-7.18.6" = { 62 - name = "_at_babel_slash_helper-annotate-as-pure"; 63 - packageName = "@babel/helper-annotate-as-pure"; 64 - version = "7.18.6"; 65 - src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz"; 67 - sha512 = "duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA=="; 68 - }; 69 - }; 70 - "@babel/helper-builder-binary-assignment-operator-visitor-7.18.6" = { 71 - name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 72 - packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 73 - version = "7.18.6"; 74 - src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.6.tgz"; 76 - sha512 = "KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw=="; 77 - }; 78 - }; 79 - "@babel/helper-compilation-targets-7.21.4" = { 80 - name = "_at_babel_slash_helper-compilation-targets"; 81 - packageName = "@babel/helper-compilation-targets"; 82 - version = "7.21.4"; 83 - src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz"; 85 - sha512 = "Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg=="; 86 - }; 87 - }; 88 - "@babel/helper-create-class-features-plugin-7.21.4" = { 89 - name = "_at_babel_slash_helper-create-class-features-plugin"; 90 - packageName = "@babel/helper-create-class-features-plugin"; 91 - version = "7.21.4"; 92 - src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.4.tgz"; 94 - sha512 = "46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q=="; 95 - }; 96 - }; 97 - "@babel/helper-create-regexp-features-plugin-7.21.4" = { 98 - name = "_at_babel_slash_helper-create-regexp-features-plugin"; 99 - packageName = "@babel/helper-create-regexp-features-plugin"; 100 - version = "7.21.4"; 101 - src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.4.tgz"; 103 - sha512 = "M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA=="; 104 - }; 105 - }; 106 - "@babel/helper-define-polyfill-provider-0.3.3" = { 107 - name = "_at_babel_slash_helper-define-polyfill-provider"; 108 - packageName = "@babel/helper-define-polyfill-provider"; 109 - version = "0.3.3"; 110 - src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz"; 112 - sha512 = "z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww=="; 113 - }; 114 - }; 115 - "@babel/helper-environment-visitor-7.18.9" = { 116 - name = "_at_babel_slash_helper-environment-visitor"; 117 - packageName = "@babel/helper-environment-visitor"; 118 - version = "7.18.9"; 119 - src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz"; 121 - sha512 = "3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="; 122 - }; 123 - }; 124 - "@babel/helper-explode-assignable-expression-7.18.6" = { 125 - name = "_at_babel_slash_helper-explode-assignable-expression"; 126 - packageName = "@babel/helper-explode-assignable-expression"; 127 - version = "7.18.6"; 128 - src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz"; 130 - sha512 = "eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg=="; 131 - }; 132 - }; 133 - "@babel/helper-function-name-7.21.0" = { 134 - name = "_at_babel_slash_helper-function-name"; 135 - packageName = "@babel/helper-function-name"; 136 - version = "7.21.0"; 137 - src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz"; 139 - sha512 = "HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg=="; 140 - }; 141 - }; 142 - "@babel/helper-hoist-variables-7.18.6" = { 143 - name = "_at_babel_slash_helper-hoist-variables"; 144 - packageName = "@babel/helper-hoist-variables"; 145 - version = "7.18.6"; 146 - src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz"; 148 - sha512 = "UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q=="; 149 - }; 150 - }; 151 - "@babel/helper-member-expression-to-functions-7.21.0" = { 152 - name = "_at_babel_slash_helper-member-expression-to-functions"; 153 - packageName = "@babel/helper-member-expression-to-functions"; 154 - version = "7.21.0"; 155 - src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz"; 157 - sha512 = "Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q=="; 158 - }; 159 - }; 160 - "@babel/helper-module-imports-7.18.6" = { 161 - name = "_at_babel_slash_helper-module-imports"; 162 - packageName = "@babel/helper-module-imports"; 163 - version = "7.18.6"; 164 - src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz"; 166 - sha512 = "0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="; 167 - }; 168 - }; 169 - "@babel/helper-module-transforms-7.21.2" = { 170 - name = "_at_babel_slash_helper-module-transforms"; 171 - packageName = "@babel/helper-module-transforms"; 172 - version = "7.21.2"; 173 - src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz"; 175 - sha512 = "79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ=="; 176 - }; 177 - }; 178 - "@babel/helper-optimise-call-expression-7.18.6" = { 179 - name = "_at_babel_slash_helper-optimise-call-expression"; 180 - packageName = "@babel/helper-optimise-call-expression"; 181 - version = "7.18.6"; 182 - src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz"; 184 - sha512 = "HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA=="; 185 - }; 186 - }; 187 - "@babel/helper-plugin-utils-7.20.2" = { 188 - name = "_at_babel_slash_helper-plugin-utils"; 189 - packageName = "@babel/helper-plugin-utils"; 190 - version = "7.20.2"; 191 - src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz"; 193 - sha512 = "8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ=="; 194 - }; 195 - }; 196 - "@babel/helper-remap-async-to-generator-7.18.9" = { 197 - name = "_at_babel_slash_helper-remap-async-to-generator"; 198 - packageName = "@babel/helper-remap-async-to-generator"; 199 - version = "7.18.9"; 200 - src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz"; 202 - sha512 = "dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA=="; 203 - }; 204 - }; 205 - "@babel/helper-replace-supers-7.20.7" = { 206 - name = "_at_babel_slash_helper-replace-supers"; 207 - packageName = "@babel/helper-replace-supers"; 208 - version = "7.20.7"; 209 - src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz"; 211 - sha512 = "vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A=="; 212 - }; 213 - }; 214 - "@babel/helper-simple-access-7.20.2" = { 215 - name = "_at_babel_slash_helper-simple-access"; 216 - packageName = "@babel/helper-simple-access"; 217 - version = "7.20.2"; 218 - src = fetchurl { 219 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz"; 220 - sha512 = "+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA=="; 221 - }; 222 - }; 223 - "@babel/helper-skip-transparent-expression-wrappers-7.20.0" = { 224 - name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 225 - packageName = "@babel/helper-skip-transparent-expression-wrappers"; 226 - version = "7.20.0"; 227 - src = fetchurl { 228 - url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz"; 229 - sha512 = "5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg=="; 230 - }; 231 - }; 232 - "@babel/helper-split-export-declaration-7.18.6" = { 233 - name = "_at_babel_slash_helper-split-export-declaration"; 234 - packageName = "@babel/helper-split-export-declaration"; 235 - version = "7.18.6"; 236 - src = fetchurl { 237 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz"; 238 - sha512 = "bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="; 239 - }; 240 - }; 241 - "@babel/helper-string-parser-7.19.4" = { 242 - name = "_at_babel_slash_helper-string-parser"; 243 - packageName = "@babel/helper-string-parser"; 244 - version = "7.19.4"; 245 - src = fetchurl { 246 - url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz"; 247 - sha512 = "nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="; 248 - }; 249 - }; 250 - "@babel/helper-validator-identifier-7.19.1" = { 251 - name = "_at_babel_slash_helper-validator-identifier"; 252 - packageName = "@babel/helper-validator-identifier"; 253 - version = "7.19.1"; 254 - src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"; 256 - sha512 = "awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="; 257 - }; 258 - }; 259 - "@babel/helper-validator-option-7.21.0" = { 260 - name = "_at_babel_slash_helper-validator-option"; 261 - packageName = "@babel/helper-validator-option"; 262 - version = "7.21.0"; 263 - src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz"; 265 - sha512 = "rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ=="; 266 - }; 267 - }; 268 - "@babel/helper-wrap-function-7.18.10" = { 269 - name = "_at_babel_slash_helper-wrap-function"; 270 - packageName = "@babel/helper-wrap-function"; 271 - version = "7.18.10"; 272 - src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.10.tgz"; 274 - sha512 = "95NLBP59VWdfK2lyLKe6eTMq9xg+yWKzxzxbJ1wcYNi1Auz200+83fMDADjRxBvc2QQor5zja2yTQzXGhk2GtQ=="; 275 - }; 276 - }; 277 - "@babel/helpers-7.21.0" = { 278 - name = "_at_babel_slash_helpers"; 279 - packageName = "@babel/helpers"; 280 - version = "7.21.0"; 281 - src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.0.tgz"; 283 - sha512 = "XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA=="; 284 - }; 285 - }; 286 - "@babel/highlight-7.18.6" = { 287 - name = "_at_babel_slash_highlight"; 288 - packageName = "@babel/highlight"; 289 - version = "7.18.6"; 290 - src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"; 292 - sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; 293 - }; 294 - }; 295 - "@babel/parser-7.21.4" = { 296 - name = "_at_babel_slash_parser"; 297 - packageName = "@babel/parser"; 298 - version = "7.21.4"; 299 - src = fetchurl { 300 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.21.4.tgz"; 301 - sha512 = "alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw=="; 302 - }; 303 - }; 304 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" = { 305 - name = "_at_babel_slash_plugin-bugfix-safari-id-destructuring-collision-in-function-expression"; 306 - packageName = "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression"; 307 - version = "7.18.6"; 308 - src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz"; 310 - sha512 = "Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ=="; 311 - }; 312 - }; 313 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7" = { 314 - name = "_at_babel_slash_plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 315 - packageName = "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 316 - version = "7.20.7"; 317 - src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz"; 319 - sha512 = "sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ=="; 320 - }; 321 - }; 322 - "@babel/plugin-proposal-async-generator-functions-7.20.7" = { 323 - name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 324 - packageName = "@babel/plugin-proposal-async-generator-functions"; 325 - version = "7.20.7"; 326 - src = fetchurl { 327 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz"; 328 - sha512 = "xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA=="; 329 - }; 330 - }; 331 - "@babel/plugin-proposal-class-properties-7.18.6" = { 332 - name = "_at_babel_slash_plugin-proposal-class-properties"; 333 - packageName = "@babel/plugin-proposal-class-properties"; 334 - version = "7.18.6"; 335 - src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz"; 337 - sha512 = "cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ=="; 338 - }; 339 - }; 340 - "@babel/plugin-proposal-class-static-block-7.21.0" = { 341 - name = "_at_babel_slash_plugin-proposal-class-static-block"; 342 - packageName = "@babel/plugin-proposal-class-static-block"; 343 - version = "7.21.0"; 344 - src = fetchurl { 345 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz"; 346 - sha512 = "XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw=="; 347 - }; 348 - }; 349 - "@babel/plugin-proposal-dynamic-import-7.18.6" = { 350 - name = "_at_babel_slash_plugin-proposal-dynamic-import"; 351 - packageName = "@babel/plugin-proposal-dynamic-import"; 352 - version = "7.18.6"; 353 - src = fetchurl { 354 - url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz"; 355 - sha512 = "1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw=="; 356 - }; 357 - }; 358 - "@babel/plugin-proposal-export-namespace-from-7.18.9" = { 359 - name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 360 - packageName = "@babel/plugin-proposal-export-namespace-from"; 361 - version = "7.18.9"; 362 - src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz"; 364 - sha512 = "k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA=="; 365 - }; 366 - }; 367 - "@babel/plugin-proposal-json-strings-7.18.6" = { 368 - name = "_at_babel_slash_plugin-proposal-json-strings"; 369 - packageName = "@babel/plugin-proposal-json-strings"; 370 - version = "7.18.6"; 371 - src = fetchurl { 372 - url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz"; 373 - sha512 = "lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ=="; 374 - }; 375 - }; 376 - "@babel/plugin-proposal-logical-assignment-operators-7.20.7" = { 377 - name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 378 - packageName = "@babel/plugin-proposal-logical-assignment-operators"; 379 - version = "7.20.7"; 380 - src = fetchurl { 381 - url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz"; 382 - sha512 = "y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug=="; 383 - }; 384 - }; 385 - "@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" = { 386 - name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 387 - packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 388 - version = "7.18.6"; 389 - src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz"; 391 - sha512 = "wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA=="; 392 - }; 393 - }; 394 - "@babel/plugin-proposal-numeric-separator-7.18.6" = { 395 - name = "_at_babel_slash_plugin-proposal-numeric-separator"; 396 - packageName = "@babel/plugin-proposal-numeric-separator"; 397 - version = "7.18.6"; 398 - src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz"; 400 - sha512 = "ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q=="; 401 - }; 402 - }; 403 - "@babel/plugin-proposal-object-rest-spread-7.20.7" = { 404 - name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 405 - packageName = "@babel/plugin-proposal-object-rest-spread"; 406 - version = "7.20.7"; 407 - src = fetchurl { 408 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz"; 409 - sha512 = "d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg=="; 410 - }; 411 - }; 412 - "@babel/plugin-proposal-optional-catch-binding-7.18.6" = { 413 - name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 414 - packageName = "@babel/plugin-proposal-optional-catch-binding"; 415 - version = "7.18.6"; 416 - src = fetchurl { 417 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz"; 418 - sha512 = "Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw=="; 419 - }; 420 - }; 421 - "@babel/plugin-proposal-optional-chaining-7.21.0" = { 422 - name = "_at_babel_slash_plugin-proposal-optional-chaining"; 423 - packageName = "@babel/plugin-proposal-optional-chaining"; 424 - version = "7.21.0"; 425 - src = fetchurl { 426 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz"; 427 - sha512 = "p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA=="; 428 - }; 429 - }; 430 - "@babel/plugin-proposal-private-methods-7.18.6" = { 431 - name = "_at_babel_slash_plugin-proposal-private-methods"; 432 - packageName = "@babel/plugin-proposal-private-methods"; 433 - version = "7.18.6"; 434 - src = fetchurl { 435 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz"; 436 - sha512 = "nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA=="; 437 - }; 438 - }; 439 - "@babel/plugin-proposal-private-property-in-object-7.21.0" = { 440 - name = "_at_babel_slash_plugin-proposal-private-property-in-object"; 441 - packageName = "@babel/plugin-proposal-private-property-in-object"; 442 - version = "7.21.0"; 443 - src = fetchurl { 444 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz"; 445 - sha512 = "ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw=="; 446 - }; 447 - }; 448 - "@babel/plugin-proposal-unicode-property-regex-7.18.6" = { 449 - name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 450 - packageName = "@babel/plugin-proposal-unicode-property-regex"; 451 - version = "7.18.6"; 452 - src = fetchurl { 453 - url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz"; 454 - sha512 = "2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w=="; 455 - }; 456 - }; 457 - "@babel/plugin-syntax-async-generators-7.8.4" = { 458 - name = "_at_babel_slash_plugin-syntax-async-generators"; 459 - packageName = "@babel/plugin-syntax-async-generators"; 460 - version = "7.8.4"; 461 - src = fetchurl { 462 - url = "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"; 463 - sha512 = "tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="; 464 - }; 465 - }; 466 - "@babel/plugin-syntax-class-properties-7.12.13" = { 467 - name = "_at_babel_slash_plugin-syntax-class-properties"; 468 - packageName = "@babel/plugin-syntax-class-properties"; 469 - version = "7.12.13"; 470 - src = fetchurl { 471 - url = "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"; 472 - sha512 = "fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="; 473 - }; 474 - }; 475 - "@babel/plugin-syntax-class-static-block-7.14.5" = { 476 - name = "_at_babel_slash_plugin-syntax-class-static-block"; 477 - packageName = "@babel/plugin-syntax-class-static-block"; 478 - version = "7.14.5"; 479 - src = fetchurl { 480 - url = "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz"; 481 - sha512 = "b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="; 482 - }; 483 - }; 484 - "@babel/plugin-syntax-dynamic-import-7.8.3" = { 485 - name = "_at_babel_slash_plugin-syntax-dynamic-import"; 486 - packageName = "@babel/plugin-syntax-dynamic-import"; 487 - version = "7.8.3"; 488 - src = fetchurl { 489 - url = "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz"; 490 - sha512 = "5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ=="; 491 - }; 492 - }; 493 - "@babel/plugin-syntax-export-namespace-from-7.8.3" = { 494 - name = "_at_babel_slash_plugin-syntax-export-namespace-from"; 495 - packageName = "@babel/plugin-syntax-export-namespace-from"; 496 - version = "7.8.3"; 497 - src = fetchurl { 498 - url = "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz"; 499 - sha512 = "MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q=="; 500 - }; 501 - }; 502 - "@babel/plugin-syntax-import-assertions-7.20.0" = { 503 - name = "_at_babel_slash_plugin-syntax-import-assertions"; 504 - packageName = "@babel/plugin-syntax-import-assertions"; 505 - version = "7.20.0"; 506 - src = fetchurl { 507 - url = "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz"; 508 - sha512 = "IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ=="; 509 - }; 510 - }; 511 - "@babel/plugin-syntax-json-strings-7.8.3" = { 512 - name = "_at_babel_slash_plugin-syntax-json-strings"; 513 - packageName = "@babel/plugin-syntax-json-strings"; 514 - version = "7.8.3"; 515 - src = fetchurl { 516 - url = "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"; 517 - sha512 = "lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="; 518 - }; 519 - }; 520 - "@babel/plugin-syntax-logical-assignment-operators-7.10.4" = { 521 - name = "_at_babel_slash_plugin-syntax-logical-assignment-operators"; 522 - packageName = "@babel/plugin-syntax-logical-assignment-operators"; 523 - version = "7.10.4"; 524 - src = fetchurl { 525 - url = "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"; 526 - sha512 = "d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="; 527 - }; 528 - }; 529 - "@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" = { 530 - name = "_at_babel_slash_plugin-syntax-nullish-coalescing-operator"; 531 - packageName = "@babel/plugin-syntax-nullish-coalescing-operator"; 532 - version = "7.8.3"; 533 - src = fetchurl { 534 - url = "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"; 535 - sha512 = "aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="; 536 - }; 537 - }; 538 - "@babel/plugin-syntax-numeric-separator-7.10.4" = { 539 - name = "_at_babel_slash_plugin-syntax-numeric-separator"; 540 - packageName = "@babel/plugin-syntax-numeric-separator"; 541 - version = "7.10.4"; 542 - src = fetchurl { 543 - url = "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"; 544 - sha512 = "9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="; 545 - }; 546 - }; 547 - "@babel/plugin-syntax-object-rest-spread-7.8.3" = { 548 - name = "_at_babel_slash_plugin-syntax-object-rest-spread"; 549 - packageName = "@babel/plugin-syntax-object-rest-spread"; 550 - version = "7.8.3"; 551 - src = fetchurl { 552 - url = "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"; 553 - sha512 = "XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="; 554 - }; 555 - }; 556 - "@babel/plugin-syntax-optional-catch-binding-7.8.3" = { 557 - name = "_at_babel_slash_plugin-syntax-optional-catch-binding"; 558 - packageName = "@babel/plugin-syntax-optional-catch-binding"; 559 - version = "7.8.3"; 560 - src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"; 562 - sha512 = "6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="; 563 - }; 564 - }; 565 - "@babel/plugin-syntax-optional-chaining-7.8.3" = { 566 - name = "_at_babel_slash_plugin-syntax-optional-chaining"; 567 - packageName = "@babel/plugin-syntax-optional-chaining"; 568 - version = "7.8.3"; 569 - src = fetchurl { 570 - url = "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"; 571 - sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="; 572 - }; 573 - }; 574 - "@babel/plugin-syntax-private-property-in-object-7.14.5" = { 575 - name = "_at_babel_slash_plugin-syntax-private-property-in-object"; 576 - packageName = "@babel/plugin-syntax-private-property-in-object"; 577 - version = "7.14.5"; 578 - src = fetchurl { 579 - url = "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz"; 580 - sha512 = "0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg=="; 581 - }; 582 - }; 583 - "@babel/plugin-syntax-top-level-await-7.14.5" = { 584 - name = "_at_babel_slash_plugin-syntax-top-level-await"; 585 - packageName = "@babel/plugin-syntax-top-level-await"; 586 - version = "7.14.5"; 587 - src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"; 589 - sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 590 - }; 591 - }; 592 - "@babel/plugin-transform-arrow-functions-7.20.7" = { 593 - name = "_at_babel_slash_plugin-transform-arrow-functions"; 594 - packageName = "@babel/plugin-transform-arrow-functions"; 595 - version = "7.20.7"; 596 - src = fetchurl { 597 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz"; 598 - sha512 = "3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ=="; 599 - }; 600 - }; 601 - "@babel/plugin-transform-async-to-generator-7.20.7" = { 602 - name = "_at_babel_slash_plugin-transform-async-to-generator"; 603 - packageName = "@babel/plugin-transform-async-to-generator"; 604 - version = "7.20.7"; 605 - src = fetchurl { 606 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz"; 607 - sha512 = "Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q=="; 608 - }; 609 - }; 610 - "@babel/plugin-transform-block-scoped-functions-7.18.6" = { 611 - name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 612 - packageName = "@babel/plugin-transform-block-scoped-functions"; 613 - version = "7.18.6"; 614 - src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz"; 616 - sha512 = "ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ=="; 617 - }; 618 - }; 619 - "@babel/plugin-transform-block-scoping-7.21.0" = { 620 - name = "_at_babel_slash_plugin-transform-block-scoping"; 621 - packageName = "@babel/plugin-transform-block-scoping"; 622 - version = "7.21.0"; 623 - src = fetchurl { 624 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz"; 625 - sha512 = "Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ=="; 626 - }; 627 - }; 628 - "@babel/plugin-transform-classes-7.21.0" = { 629 - name = "_at_babel_slash_plugin-transform-classes"; 630 - packageName = "@babel/plugin-transform-classes"; 631 - version = "7.21.0"; 632 - src = fetchurl { 633 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz"; 634 - sha512 = "RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ=="; 635 - }; 636 - }; 637 - "@babel/plugin-transform-computed-properties-7.20.7" = { 638 - name = "_at_babel_slash_plugin-transform-computed-properties"; 639 - packageName = "@babel/plugin-transform-computed-properties"; 640 - version = "7.20.7"; 641 - src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz"; 643 - sha512 = "Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ=="; 644 - }; 645 - }; 646 - "@babel/plugin-transform-destructuring-7.21.3" = { 647 - name = "_at_babel_slash_plugin-transform-destructuring"; 648 - packageName = "@babel/plugin-transform-destructuring"; 649 - version = "7.21.3"; 650 - src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz"; 652 - sha512 = "bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA=="; 653 - }; 654 - }; 655 - "@babel/plugin-transform-dotall-regex-7.18.6" = { 656 - name = "_at_babel_slash_plugin-transform-dotall-regex"; 657 - packageName = "@babel/plugin-transform-dotall-regex"; 658 - version = "7.18.6"; 659 - src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz"; 661 - sha512 = "6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg=="; 662 - }; 663 - }; 664 - "@babel/plugin-transform-duplicate-keys-7.18.9" = { 665 - name = "_at_babel_slash_plugin-transform-duplicate-keys"; 666 - packageName = "@babel/plugin-transform-duplicate-keys"; 667 - version = "7.18.9"; 668 - src = fetchurl { 669 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz"; 670 - sha512 = "d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw=="; 671 - }; 672 - }; 673 - "@babel/plugin-transform-exponentiation-operator-7.18.6" = { 674 - name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 675 - packageName = "@babel/plugin-transform-exponentiation-operator"; 676 - version = "7.18.6"; 677 - src = fetchurl { 678 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz"; 679 - sha512 = "wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw=="; 680 - }; 681 - }; 682 - "@babel/plugin-transform-for-of-7.21.0" = { 683 - name = "_at_babel_slash_plugin-transform-for-of"; 684 - packageName = "@babel/plugin-transform-for-of"; 685 - version = "7.21.0"; 686 - src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.0.tgz"; 688 - sha512 = "LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ=="; 689 - }; 690 - }; 691 - "@babel/plugin-transform-function-name-7.18.9" = { 692 - name = "_at_babel_slash_plugin-transform-function-name"; 693 - packageName = "@babel/plugin-transform-function-name"; 694 - version = "7.18.9"; 695 - src = fetchurl { 696 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz"; 697 - sha512 = "WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ=="; 698 - }; 699 - }; 700 - "@babel/plugin-transform-literals-7.18.9" = { 701 - name = "_at_babel_slash_plugin-transform-literals"; 702 - packageName = "@babel/plugin-transform-literals"; 703 - version = "7.18.9"; 704 - src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz"; 706 - sha512 = "IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg=="; 707 - }; 708 - }; 709 - "@babel/plugin-transform-member-expression-literals-7.18.6" = { 710 - name = "_at_babel_slash_plugin-transform-member-expression-literals"; 711 - packageName = "@babel/plugin-transform-member-expression-literals"; 712 - version = "7.18.6"; 713 - src = fetchurl { 714 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz"; 715 - sha512 = "qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA=="; 716 - }; 717 - }; 718 - "@babel/plugin-transform-modules-amd-7.20.11" = { 719 - name = "_at_babel_slash_plugin-transform-modules-amd"; 720 - packageName = "@babel/plugin-transform-modules-amd"; 721 - version = "7.20.11"; 722 - src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz"; 724 - sha512 = "NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g=="; 725 - }; 726 - }; 727 - "@babel/plugin-transform-modules-commonjs-7.21.2" = { 728 - name = "_at_babel_slash_plugin-transform-modules-commonjs"; 729 - packageName = "@babel/plugin-transform-modules-commonjs"; 730 - version = "7.21.2"; 731 - src = fetchurl { 732 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz"; 733 - sha512 = "Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA=="; 734 - }; 735 - }; 736 - "@babel/plugin-transform-modules-systemjs-7.20.11" = { 737 - name = "_at_babel_slash_plugin-transform-modules-systemjs"; 738 - packageName = "@babel/plugin-transform-modules-systemjs"; 739 - version = "7.20.11"; 740 - src = fetchurl { 741 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz"; 742 - sha512 = "vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw=="; 743 - }; 744 - }; 745 - "@babel/plugin-transform-modules-umd-7.18.6" = { 746 - name = "_at_babel_slash_plugin-transform-modules-umd"; 747 - packageName = "@babel/plugin-transform-modules-umd"; 748 - version = "7.18.6"; 749 - src = fetchurl { 750 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz"; 751 - sha512 = "dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ=="; 752 - }; 753 - }; 754 - "@babel/plugin-transform-named-capturing-groups-regex-7.20.5" = { 755 - name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 756 - packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 757 - version = "7.20.5"; 758 - src = fetchurl { 759 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz"; 760 - sha512 = "mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA=="; 761 - }; 762 - }; 763 - "@babel/plugin-transform-new-target-7.18.6" = { 764 - name = "_at_babel_slash_plugin-transform-new-target"; 765 - packageName = "@babel/plugin-transform-new-target"; 766 - version = "7.18.6"; 767 - src = fetchurl { 768 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz"; 769 - sha512 = "DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw=="; 770 - }; 771 - }; 772 - "@babel/plugin-transform-object-super-7.18.6" = { 773 - name = "_at_babel_slash_plugin-transform-object-super"; 774 - packageName = "@babel/plugin-transform-object-super"; 775 - version = "7.18.6"; 776 - src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz"; 778 - sha512 = "uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA=="; 779 - }; 780 - }; 781 - "@babel/plugin-transform-parameters-7.21.3" = { 782 - name = "_at_babel_slash_plugin-transform-parameters"; 783 - packageName = "@babel/plugin-transform-parameters"; 784 - version = "7.21.3"; 785 - src = fetchurl { 786 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz"; 787 - sha512 = "Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ=="; 788 - }; 789 - }; 790 - "@babel/plugin-transform-property-literals-7.18.6" = { 791 - name = "_at_babel_slash_plugin-transform-property-literals"; 792 - packageName = "@babel/plugin-transform-property-literals"; 793 - version = "7.18.6"; 794 - src = fetchurl { 795 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz"; 796 - sha512 = "cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg=="; 797 - }; 798 - }; 799 - "@babel/plugin-transform-regenerator-7.20.5" = { 800 - name = "_at_babel_slash_plugin-transform-regenerator"; 801 - packageName = "@babel/plugin-transform-regenerator"; 802 - version = "7.20.5"; 803 - src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz"; 805 - sha512 = "kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ=="; 806 - }; 807 - }; 808 - "@babel/plugin-transform-reserved-words-7.18.6" = { 809 - name = "_at_babel_slash_plugin-transform-reserved-words"; 810 - packageName = "@babel/plugin-transform-reserved-words"; 811 - version = "7.18.6"; 812 - src = fetchurl { 813 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz"; 814 - sha512 = "oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA=="; 815 - }; 816 - }; 817 - "@babel/plugin-transform-shorthand-properties-7.18.6" = { 818 - name = "_at_babel_slash_plugin-transform-shorthand-properties"; 819 - packageName = "@babel/plugin-transform-shorthand-properties"; 820 - version = "7.18.6"; 821 - src = fetchurl { 822 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz"; 823 - sha512 = "eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw=="; 824 - }; 825 - }; 826 - "@babel/plugin-transform-spread-7.20.7" = { 827 - name = "_at_babel_slash_plugin-transform-spread"; 828 - packageName = "@babel/plugin-transform-spread"; 829 - version = "7.20.7"; 830 - src = fetchurl { 831 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz"; 832 - sha512 = "ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw=="; 833 - }; 834 - }; 835 - "@babel/plugin-transform-sticky-regex-7.18.6" = { 836 - name = "_at_babel_slash_plugin-transform-sticky-regex"; 837 - packageName = "@babel/plugin-transform-sticky-regex"; 838 - version = "7.18.6"; 839 - src = fetchurl { 840 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz"; 841 - sha512 = "kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q=="; 842 - }; 843 - }; 844 - "@babel/plugin-transform-template-literals-7.18.9" = { 845 - name = "_at_babel_slash_plugin-transform-template-literals"; 846 - packageName = "@babel/plugin-transform-template-literals"; 847 - version = "7.18.9"; 848 - src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz"; 850 - sha512 = "S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA=="; 851 - }; 852 - }; 853 - "@babel/plugin-transform-typeof-symbol-7.18.9" = { 854 - name = "_at_babel_slash_plugin-transform-typeof-symbol"; 855 - packageName = "@babel/plugin-transform-typeof-symbol"; 856 - version = "7.18.9"; 857 - src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz"; 859 - sha512 = "SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw=="; 860 - }; 861 - }; 862 - "@babel/plugin-transform-unicode-escapes-7.18.10" = { 863 - name = "_at_babel_slash_plugin-transform-unicode-escapes"; 864 - packageName = "@babel/plugin-transform-unicode-escapes"; 865 - version = "7.18.10"; 866 - src = fetchurl { 867 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz"; 868 - sha512 = "kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ=="; 869 - }; 870 - }; 871 - "@babel/plugin-transform-unicode-regex-7.18.6" = { 872 - name = "_at_babel_slash_plugin-transform-unicode-regex"; 873 - packageName = "@babel/plugin-transform-unicode-regex"; 874 - version = "7.18.6"; 875 - src = fetchurl { 876 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz"; 877 - sha512 = "gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA=="; 878 - }; 879 - }; 880 - "@babel/preset-env-7.21.4" = { 881 - name = "_at_babel_slash_preset-env"; 882 - packageName = "@babel/preset-env"; 883 - version = "7.21.4"; 884 - src = fetchurl { 885 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.4.tgz"; 886 - sha512 = "2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw=="; 887 - }; 888 - }; 889 - "@babel/preset-modules-0.1.5" = { 890 - name = "_at_babel_slash_preset-modules"; 891 - packageName = "@babel/preset-modules"; 892 - version = "0.1.5"; 893 - src = fetchurl { 894 - url = "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz"; 895 - sha512 = "A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA=="; 896 - }; 897 - }; 898 - "@babel/regjsgen-0.8.0" = { 899 - name = "_at_babel_slash_regjsgen"; 900 - packageName = "@babel/regjsgen"; 901 - version = "0.8.0"; 902 - src = fetchurl { 903 - url = "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz"; 904 - sha512 = "x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA=="; 905 - }; 906 - }; 907 - "@babel/runtime-7.14.6" = { 908 - name = "_at_babel_slash_runtime"; 909 - packageName = "@babel/runtime"; 910 - version = "7.14.6"; 911 - src = fetchurl { 912 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz"; 913 - sha512 = "/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg=="; 914 - }; 915 - }; 916 - "@babel/template-7.20.7" = { 917 - name = "_at_babel_slash_template"; 918 - packageName = "@babel/template"; 919 - version = "7.20.7"; 920 - src = fetchurl { 921 - url = "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz"; 922 - sha512 = "8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw=="; 923 - }; 924 - }; 925 - "@babel/traverse-7.21.4" = { 926 - name = "_at_babel_slash_traverse"; 927 - packageName = "@babel/traverse"; 928 - version = "7.21.4"; 929 - src = fetchurl { 930 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.4.tgz"; 931 - sha512 = "eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q=="; 932 - }; 933 - }; 934 - "@babel/types-7.21.4" = { 935 - name = "_at_babel_slash_types"; 936 - packageName = "@babel/types"; 937 - version = "7.21.4"; 938 - src = fetchurl { 939 - url = "https://registry.npmjs.org/@babel/types/-/types-7.21.4.tgz"; 940 - sha512 = "rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA=="; 941 - }; 942 - }; 943 - "@discoveryjs/json-ext-0.5.7" = { 944 - name = "_at_discoveryjs_slash_json-ext"; 945 - packageName = "@discoveryjs/json-ext"; 946 - version = "0.5.7"; 947 - src = fetchurl { 948 - url = "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz"; 949 - sha512 = "dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw=="; 950 - }; 951 - }; 952 - "@eslint-community/eslint-utils-4.3.0" = { 953 - name = "_at_eslint-community_slash_eslint-utils"; 954 - packageName = "@eslint-community/eslint-utils"; 955 - version = "4.3.0"; 956 - src = fetchurl { 957 - url = "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.3.0.tgz"; 958 - sha512 = "v3oplH6FYCULtFuCeqyuTd9D2WKO937Dxdq+GmHOLL72TTRriLxz2VLlNfkZRsvj6PKnOPAtuT6dwrs/pA5DvA=="; 959 - }; 960 - }; 961 - "@eslint-community/regexpp-4.4.0" = { 962 - name = "_at_eslint-community_slash_regexpp"; 963 - packageName = "@eslint-community/regexpp"; 964 - version = "4.4.0"; 965 - src = fetchurl { 966 - url = "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.4.0.tgz"; 967 - sha512 = "A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ=="; 968 - }; 969 - }; 970 - "@eslint/eslintrc-2.0.2" = { 971 - name = "_at_eslint_slash_eslintrc"; 972 - packageName = "@eslint/eslintrc"; 973 - version = "2.0.2"; 974 - src = fetchurl { 975 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz"; 976 - sha512 = "3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ=="; 977 - }; 978 - }; 979 - "@eslint/js-8.39.0" = { 980 - name = "_at_eslint_slash_js"; 981 - packageName = "@eslint/js"; 982 - version = "8.39.0"; 983 - src = fetchurl { 984 - url = "https://registry.npmjs.org/@eslint/js/-/js-8.39.0.tgz"; 985 - sha512 = "kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng=="; 986 - }; 987 - }; 988 - "@fortawesome/fontawesome-common-types-6.4.0" = { 989 - name = "_at_fortawesome_slash_fontawesome-common-types"; 990 - packageName = "@fortawesome/fontawesome-common-types"; 991 - version = "6.4.0"; 992 - src = fetchurl { 993 - url = "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.4.0.tgz"; 994 - sha512 = "HNii132xfomg5QVZw0HwXXpN22s7VBHQBv9CeOu9tfJnhsWQNd2lmTNi8CSrnw5B+5YOmzu1UoPAyxaXsJ6RgQ=="; 995 - }; 996 - }; 997 - "@fortawesome/fontawesome-svg-core-6.4.0" = { 998 - name = "_at_fortawesome_slash_fontawesome-svg-core"; 999 - packageName = "@fortawesome/fontawesome-svg-core"; 1000 - version = "6.4.0"; 1001 - src = fetchurl { 1002 - url = "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.4.0.tgz"; 1003 - sha512 = "Bertv8xOiVELz5raB2FlXDPKt+m94MQ3JgDfsVbrqNpLU9+UE2E18GKjLKw+d3XbeYPqg1pzyQKGsrzbw+pPaw=="; 1004 - }; 1005 - }; 1006 - "@fortawesome/free-brands-svg-icons-6.4.0" = { 1007 - name = "_at_fortawesome_slash_free-brands-svg-icons"; 1008 - packageName = "@fortawesome/free-brands-svg-icons"; 1009 - version = "6.4.0"; 1010 - src = fetchurl { 1011 - url = "https://registry.npmjs.org/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-6.4.0.tgz"; 1012 - sha512 = "qvxTCo0FQ5k2N+VCXb/PZQ+QMhqRVM4OORiO6MXdG6bKolIojGU/srQ1ptvKk0JTbRgaJOfL2qMqGvBEZG7Z6g=="; 1013 - }; 1014 - }; 1015 - "@fortawesome/free-solid-svg-icons-6.4.0" = { 1016 - name = "_at_fortawesome_slash_free-solid-svg-icons"; 1017 - packageName = "@fortawesome/free-solid-svg-icons"; 1018 - version = "6.4.0"; 1019 - src = fetchurl { 1020 - url = "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.4.0.tgz"; 1021 - sha512 = "kutPeRGWm8V5dltFP1zGjQOEAzaLZj4StdQhWVZnfGFCvAPVvHh8qk5bRrU4KXnRRRNni5tKQI9PBAdI6MP8nQ=="; 1022 - }; 1023 - }; 1024 - "@fortawesome/vue-fontawesome-2.0.10" = { 1025 - name = "_at_fortawesome_slash_vue-fontawesome"; 1026 - packageName = "@fortawesome/vue-fontawesome"; 1027 - version = "2.0.10"; 1028 - src = fetchurl { 1029 - url = "https://registry.npmjs.org/@fortawesome/vue-fontawesome/-/vue-fontawesome-2.0.10.tgz"; 1030 - sha512 = "OTETSXz+3ygD2OK2/vy82cmUBpuJqeOAg4gfnnv+f2Rir1tDIhQg026Q3NQxznq83ZLz8iNqGG9XJm26inpDeg=="; 1031 - }; 1032 - }; 1033 - "@humanwhocodes/config-array-0.11.8" = { 1034 - name = "_at_humanwhocodes_slash_config-array"; 1035 - packageName = "@humanwhocodes/config-array"; 1036 - version = "0.11.8"; 1037 - src = fetchurl { 1038 - url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz"; 1039 - sha512 = "UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g=="; 1040 - }; 1041 - }; 1042 - "@humanwhocodes/module-importer-1.0.1" = { 1043 - name = "_at_humanwhocodes_slash_module-importer"; 1044 - packageName = "@humanwhocodes/module-importer"; 1045 - version = "1.0.1"; 1046 - src = fetchurl { 1047 - url = "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"; 1048 - sha512 = "bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="; 1049 - }; 1050 - }; 1051 - "@humanwhocodes/object-schema-1.2.1" = { 1052 - name = "_at_humanwhocodes_slash_object-schema"; 1053 - packageName = "@humanwhocodes/object-schema"; 1054 - version = "1.2.1"; 1055 - src = fetchurl { 1056 - url = "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"; 1057 - sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="; 1058 - }; 1059 - }; 1060 - "@jridgewell/gen-mapping-0.1.1" = { 1061 - name = "_at_jridgewell_slash_gen-mapping"; 1062 - packageName = "@jridgewell/gen-mapping"; 1063 - version = "0.1.1"; 1064 - src = fetchurl { 1065 - url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"; 1066 - sha512 = "sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="; 1067 - }; 1068 - }; 1069 - "@jridgewell/gen-mapping-0.3.2" = { 1070 - name = "_at_jridgewell_slash_gen-mapping"; 1071 - packageName = "@jridgewell/gen-mapping"; 1072 - version = "0.3.2"; 1073 - src = fetchurl { 1074 - url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz"; 1075 - sha512 = "mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A=="; 1076 - }; 1077 - }; 1078 - "@jridgewell/resolve-uri-3.1.0" = { 1079 - name = "_at_jridgewell_slash_resolve-uri"; 1080 - packageName = "@jridgewell/resolve-uri"; 1081 - version = "3.1.0"; 1082 - src = fetchurl { 1083 - url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"; 1084 - sha512 = "F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="; 1085 - }; 1086 - }; 1087 - "@jridgewell/set-array-1.1.2" = { 1088 - name = "_at_jridgewell_slash_set-array"; 1089 - packageName = "@jridgewell/set-array"; 1090 - version = "1.1.2"; 1091 - src = fetchurl { 1092 - url = "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"; 1093 - sha512 = "xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="; 1094 - }; 1095 - }; 1096 - "@jridgewell/source-map-0.3.3" = { 1097 - name = "_at_jridgewell_slash_source-map"; 1098 - packageName = "@jridgewell/source-map"; 1099 - version = "0.3.3"; 1100 - src = fetchurl { 1101 - url = "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz"; 1102 - sha512 = "b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg=="; 1103 - }; 1104 - }; 1105 - "@jridgewell/sourcemap-codec-1.4.14" = { 1106 - name = "_at_jridgewell_slash_sourcemap-codec"; 1107 - packageName = "@jridgewell/sourcemap-codec"; 1108 - version = "1.4.14"; 1109 - src = fetchurl { 1110 - url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"; 1111 - sha512 = "XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="; 1112 - }; 1113 - }; 1114 - "@jridgewell/trace-mapping-0.3.17" = { 1115 - name = "_at_jridgewell_slash_trace-mapping"; 1116 - packageName = "@jridgewell/trace-mapping"; 1117 - version = "0.3.17"; 1118 - src = fetchurl { 1119 - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz"; 1120 - sha512 = "MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g=="; 1121 - }; 1122 - }; 1123 - "@leichtgewicht/ip-codec-2.0.3" = { 1124 - name = "_at_leichtgewicht_slash_ip-codec"; 1125 - packageName = "@leichtgewicht/ip-codec"; 1126 - version = "2.0.3"; 1127 - src = fetchurl { 1128 - url = "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.3.tgz"; 1129 - sha512 = "nkalE/f1RvRGChwBnEIoBfSEYOXnCRdleKuv6+lePbMDrMZXeDQnqak5XDOeBgrPPyPfAdcCu/B5z+v3VhplGg=="; 1130 - }; 1131 - }; 1132 - "@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" = { 1133 - name = "_at_nicolo-ribaudo_slash_eslint-scope-5-internals"; 1134 - packageName = "@nicolo-ribaudo/eslint-scope-5-internals"; 1135 - version = "5.1.1-v1"; 1136 - src = fetchurl { 1137 - url = "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz"; 1138 - sha512 = "54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg=="; 1139 - }; 1140 - }; 1141 - "@nodelib/fs.scandir-2.1.5" = { 1142 - name = "_at_nodelib_slash_fs.scandir"; 1143 - packageName = "@nodelib/fs.scandir"; 1144 - version = "2.1.5"; 1145 - src = fetchurl { 1146 - url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"; 1147 - sha512 = "vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="; 1148 - }; 1149 - }; 1150 - "@nodelib/fs.stat-2.0.5" = { 1151 - name = "_at_nodelib_slash_fs.stat"; 1152 - packageName = "@nodelib/fs.stat"; 1153 - version = "2.0.5"; 1154 - src = fetchurl { 1155 - url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"; 1156 - sha512 = "RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="; 1157 - }; 1158 - }; 1159 - "@nodelib/fs.walk-1.2.8" = { 1160 - name = "_at_nodelib_slash_fs.walk"; 1161 - packageName = "@nodelib/fs.walk"; 1162 - version = "1.2.8"; 1163 - src = fetchurl { 1164 - url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"; 1165 - sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 1166 - }; 1167 - }; 1168 - "@polka/url-1.0.0-next.21" = { 1169 - name = "_at_polka_slash_url"; 1170 - packageName = "@polka/url"; 1171 - version = "1.0.0-next.21"; 1172 - src = fetchurl { 1173 - url = "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz"; 1174 - sha512 = "a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g=="; 1175 - }; 1176 - }; 1177 - "@types/body-parser-1.19.2" = { 1178 - name = "_at_types_slash_body-parser"; 1179 - packageName = "@types/body-parser"; 1180 - version = "1.19.2"; 1181 - src = fetchurl { 1182 - url = "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz"; 1183 - sha512 = "ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g=="; 1184 - }; 1185 - }; 1186 - "@types/bonjour-3.5.10" = { 1187 - name = "_at_types_slash_bonjour"; 1188 - packageName = "@types/bonjour"; 1189 - version = "3.5.10"; 1190 - src = fetchurl { 1191 - url = "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz"; 1192 - sha512 = "p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw=="; 1193 - }; 1194 - }; 1195 - "@types/connect-3.4.35" = { 1196 - name = "_at_types_slash_connect"; 1197 - packageName = "@types/connect"; 1198 - version = "3.4.35"; 1199 - src = fetchurl { 1200 - url = "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz"; 1201 - sha512 = "cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ=="; 1202 - }; 1203 - }; 1204 - "@types/connect-history-api-fallback-1.3.5" = { 1205 - name = "_at_types_slash_connect-history-api-fallback"; 1206 - packageName = "@types/connect-history-api-fallback"; 1207 - version = "1.3.5"; 1208 - src = fetchurl { 1209 - url = "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz"; 1210 - sha512 = "h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw=="; 1211 - }; 1212 - }; 1213 - "@types/eslint-8.2.2" = { 1214 - name = "_at_types_slash_eslint"; 1215 - packageName = "@types/eslint"; 1216 - version = "8.2.2"; 1217 - src = fetchurl { 1218 - url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.2.2.tgz"; 1219 - sha512 = "nQxgB8/Sg+QKhnV8e0WzPpxjIGT3tuJDDzybkDi8ItE/IgTlHo07U0shaIjzhcvQxlq9SDRE42lsJ23uvEgJ2A=="; 1220 - }; 1221 - }; 1222 - "@types/eslint-scope-3.7.3" = { 1223 - name = "_at_types_slash_eslint-scope"; 1224 - packageName = "@types/eslint-scope"; 1225 - version = "3.7.3"; 1226 - src = fetchurl { 1227 - url = "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz"; 1228 - sha512 = "PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g=="; 1229 - }; 1230 - }; 1231 - "@types/estree-1.0.0" = { 1232 - name = "_at_types_slash_estree"; 1233 - packageName = "@types/estree"; 1234 - version = "1.0.0"; 1235 - src = fetchurl { 1236 - url = "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz"; 1237 - sha512 = "WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ=="; 1238 - }; 1239 - }; 1240 - "@types/express-4.17.13" = { 1241 - name = "_at_types_slash_express"; 1242 - packageName = "@types/express"; 1243 - version = "4.17.13"; 1244 - src = fetchurl { 1245 - url = "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz"; 1246 - sha512 = "6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA=="; 1247 - }; 1248 - }; 1249 - "@types/express-serve-static-core-4.17.27" = { 1250 - name = "_at_types_slash_express-serve-static-core"; 1251 - packageName = "@types/express-serve-static-core"; 1252 - version = "4.17.27"; 1253 - src = fetchurl { 1254 - url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.27.tgz"; 1255 - sha512 = "e/sVallzUTPdyOTiqi8O8pMdBBphscvI6E4JYaKlja4Lm+zh7UFSSdW5VMkRbhDtmrONqOUHOXRguPsDckzxNA=="; 1256 - }; 1257 - }; 1258 - "@types/glob-7.1.4" = { 1259 - name = "_at_types_slash_glob"; 1260 - packageName = "@types/glob"; 1261 - version = "7.1.4"; 1262 - src = fetchurl { 1263 - url = "https://registry.npmjs.org/@types/glob/-/glob-7.1.4.tgz"; 1264 - sha512 = "w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA=="; 1265 - }; 1266 - }; 1267 - "@types/html-minifier-terser-6.0.0" = { 1268 - name = "_at_types_slash_html-minifier-terser"; 1269 - packageName = "@types/html-minifier-terser"; 1270 - version = "6.0.0"; 1271 - src = fetchurl { 1272 - url = "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.0.0.tgz"; 1273 - sha512 = "NZwaaynfs1oIoLAV1vg18e7QMVDvw+6SQrdJc8w3BwUaoroVSf6EBj/Sk4PBWGxsq0dzhA2drbsuMC1/6C6KgQ=="; 1274 - }; 1275 - }; 1276 - "@types/http-proxy-1.17.8" = { 1277 - name = "_at_types_slash_http-proxy"; 1278 - packageName = "@types/http-proxy"; 1279 - version = "1.17.8"; 1280 - src = fetchurl { 1281 - url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.8.tgz"; 1282 - sha512 = "5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA=="; 1283 - }; 1284 - }; 1285 - "@types/json-schema-7.0.9" = { 1286 - name = "_at_types_slash_json-schema"; 1287 - packageName = "@types/json-schema"; 1288 - version = "7.0.9"; 1289 - src = fetchurl { 1290 - url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz"; 1291 - sha512 = "qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="; 1292 - }; 1293 - }; 1294 - "@types/json5-0.0.29" = { 1295 - name = "_at_types_slash_json5"; 1296 - packageName = "@types/json5"; 1297 - version = "0.0.29"; 1298 - src = fetchurl { 1299 - url = "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"; 1300 - sha1 = "ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"; 1301 - }; 1302 - }; 1303 - "@types/mime-1.3.2" = { 1304 - name = "_at_types_slash_mime"; 1305 - packageName = "@types/mime"; 1306 - version = "1.3.2"; 1307 - src = fetchurl { 1308 - url = "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz"; 1309 - sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="; 1310 - }; 1311 - }; 1312 - "@types/minimatch-3.0.5" = { 1313 - name = "_at_types_slash_minimatch"; 1314 - packageName = "@types/minimatch"; 1315 - version = "3.0.5"; 1316 - src = fetchurl { 1317 - url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz"; 1318 - sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="; 1319 - }; 1320 - }; 1321 - "@types/node-12.11.2" = { 1322 - name = "_at_types_slash_node"; 1323 - packageName = "@types/node"; 1324 - version = "12.11.2"; 1325 - src = fetchurl { 1326 - url = "https://registry.npmjs.org/@types/node/-/node-12.11.2.tgz"; 1327 - sha512 = "dsfE4BHJkLQW+reOS6b17xhZ/6FB1rB8eRRvO08nn5o+voxf3i74tuyFWNH6djdfgX7Sm5s6LD8t6mJug4dpDw=="; 1328 - }; 1329 - }; 1330 - "@types/qs-6.9.7" = { 1331 - name = "_at_types_slash_qs"; 1332 - packageName = "@types/qs"; 1333 - version = "6.9.7"; 1334 - src = fetchurl { 1335 - url = "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz"; 1336 - sha512 = "FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw=="; 1337 - }; 1338 - }; 1339 - "@types/range-parser-1.2.4" = { 1340 - name = "_at_types_slash_range-parser"; 1341 - packageName = "@types/range-parser"; 1342 - version = "1.2.4"; 1343 - src = fetchurl { 1344 - url = "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz"; 1345 - sha512 = "EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="; 1346 - }; 1347 - }; 1348 - "@types/retry-0.12.1" = { 1349 - name = "_at_types_slash_retry"; 1350 - packageName = "@types/retry"; 1351 - version = "0.12.1"; 1352 - src = fetchurl { 1353 - url = "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz"; 1354 - sha512 = "xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g=="; 1355 - }; 1356 - }; 1357 - "@types/serve-index-1.9.1" = { 1358 - name = "_at_types_slash_serve-index"; 1359 - packageName = "@types/serve-index"; 1360 - version = "1.9.1"; 1361 - src = fetchurl { 1362 - url = "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz"; 1363 - sha512 = "d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg=="; 1364 - }; 1365 - }; 1366 - "@types/serve-static-1.13.10" = { 1367 - name = "_at_types_slash_serve-static"; 1368 - packageName = "@types/serve-static"; 1369 - version = "1.13.10"; 1370 - src = fetchurl { 1371 - url = "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz"; 1372 - sha512 = "nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ=="; 1373 - }; 1374 - }; 1375 - "@types/sockjs-0.3.33" = { 1376 - name = "_at_types_slash_sockjs"; 1377 - packageName = "@types/sockjs"; 1378 - version = "0.3.33"; 1379 - src = fetchurl { 1380 - url = "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz"; 1381 - sha512 = "f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw=="; 1382 - }; 1383 - }; 1384 - "@types/ws-8.5.3" = { 1385 - name = "_at_types_slash_ws"; 1386 - packageName = "@types/ws"; 1387 - version = "8.5.3"; 1388 - src = fetchurl { 1389 - url = "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz"; 1390 - sha512 = "6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w=="; 1391 - }; 1392 - }; 1393 - "@vue/compiler-sfc-2.7.14" = { 1394 - name = "_at_vue_slash_compiler-sfc"; 1395 - packageName = "@vue/compiler-sfc"; 1396 - version = "2.7.14"; 1397 - src = fetchurl { 1398 - url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.14.tgz"; 1399 - sha512 = "aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA=="; 1400 - }; 1401 - }; 1402 - "@vue/component-compiler-utils-3.2.2" = { 1403 - name = "_at_vue_slash_component-compiler-utils"; 1404 - packageName = "@vue/component-compiler-utils"; 1405 - version = "3.2.2"; 1406 - src = fetchurl { 1407 - url = "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.2.2.tgz"; 1408 - sha512 = "rAYMLmgMuqJFWAOb3Awjqqv5X3Q3hVr4jH/kgrFJpiU0j3a90tnNBplqbj+snzrgZhC9W128z+dtgMifOiMfJg=="; 1409 - }; 1410 - }; 1411 - "@webassemblyjs/ast-1.11.5" = { 1412 - name = "_at_webassemblyjs_slash_ast"; 1413 - packageName = "@webassemblyjs/ast"; 1414 - version = "1.11.5"; 1415 - src = fetchurl { 1416 - url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.5.tgz"; 1417 - sha512 = "LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ=="; 1418 - }; 1419 - }; 1420 - "@webassemblyjs/floating-point-hex-parser-1.11.5" = { 1421 - name = "_at_webassemblyjs_slash_floating-point-hex-parser"; 1422 - packageName = "@webassemblyjs/floating-point-hex-parser"; 1423 - version = "1.11.5"; 1424 - src = fetchurl { 1425 - url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.5.tgz"; 1426 - sha512 = "1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ=="; 1427 - }; 1428 - }; 1429 - "@webassemblyjs/helper-api-error-1.11.5" = { 1430 - name = "_at_webassemblyjs_slash_helper-api-error"; 1431 - packageName = "@webassemblyjs/helper-api-error"; 1432 - version = "1.11.5"; 1433 - src = fetchurl { 1434 - url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.5.tgz"; 1435 - sha512 = "L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA=="; 1436 - }; 1437 - }; 1438 - "@webassemblyjs/helper-buffer-1.11.5" = { 1439 - name = "_at_webassemblyjs_slash_helper-buffer"; 1440 - packageName = "@webassemblyjs/helper-buffer"; 1441 - version = "1.11.5"; 1442 - src = fetchurl { 1443 - url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.5.tgz"; 1444 - sha512 = "fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg=="; 1445 - }; 1446 - }; 1447 - "@webassemblyjs/helper-numbers-1.11.5" = { 1448 - name = "_at_webassemblyjs_slash_helper-numbers"; 1449 - packageName = "@webassemblyjs/helper-numbers"; 1450 - version = "1.11.5"; 1451 - src = fetchurl { 1452 - url = "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.5.tgz"; 1453 - sha512 = "DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA=="; 1454 - }; 1455 - }; 1456 - "@webassemblyjs/helper-wasm-bytecode-1.11.5" = { 1457 - name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; 1458 - packageName = "@webassemblyjs/helper-wasm-bytecode"; 1459 - version = "1.11.5"; 1460 - src = fetchurl { 1461 - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.5.tgz"; 1462 - sha512 = "oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA=="; 1463 - }; 1464 - }; 1465 - "@webassemblyjs/helper-wasm-section-1.11.5" = { 1466 - name = "_at_webassemblyjs_slash_helper-wasm-section"; 1467 - packageName = "@webassemblyjs/helper-wasm-section"; 1468 - version = "1.11.5"; 1469 - src = fetchurl { 1470 - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.5.tgz"; 1471 - sha512 = "uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA=="; 1472 - }; 1473 - }; 1474 - "@webassemblyjs/ieee754-1.11.5" = { 1475 - name = "_at_webassemblyjs_slash_ieee754"; 1476 - packageName = "@webassemblyjs/ieee754"; 1477 - version = "1.11.5"; 1478 - src = fetchurl { 1479 - url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.5.tgz"; 1480 - sha512 = "37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg=="; 1481 - }; 1482 - }; 1483 - "@webassemblyjs/leb128-1.11.5" = { 1484 - name = "_at_webassemblyjs_slash_leb128"; 1485 - packageName = "@webassemblyjs/leb128"; 1486 - version = "1.11.5"; 1487 - src = fetchurl { 1488 - url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.5.tgz"; 1489 - sha512 = "ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ=="; 1490 - }; 1491 - }; 1492 - "@webassemblyjs/utf8-1.11.5" = { 1493 - name = "_at_webassemblyjs_slash_utf8"; 1494 - packageName = "@webassemblyjs/utf8"; 1495 - version = "1.11.5"; 1496 - src = fetchurl { 1497 - url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.5.tgz"; 1498 - sha512 = "WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ=="; 1499 - }; 1500 - }; 1501 - "@webassemblyjs/wasm-edit-1.11.5" = { 1502 - name = "_at_webassemblyjs_slash_wasm-edit"; 1503 - packageName = "@webassemblyjs/wasm-edit"; 1504 - version = "1.11.5"; 1505 - src = fetchurl { 1506 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.5.tgz"; 1507 - sha512 = "C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ=="; 1508 - }; 1509 - }; 1510 - "@webassemblyjs/wasm-gen-1.11.5" = { 1511 - name = "_at_webassemblyjs_slash_wasm-gen"; 1512 - packageName = "@webassemblyjs/wasm-gen"; 1513 - version = "1.11.5"; 1514 - src = fetchurl { 1515 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.5.tgz"; 1516 - sha512 = "14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA=="; 1517 - }; 1518 - }; 1519 - "@webassemblyjs/wasm-opt-1.11.5" = { 1520 - name = "_at_webassemblyjs_slash_wasm-opt"; 1521 - packageName = "@webassemblyjs/wasm-opt"; 1522 - version = "1.11.5"; 1523 - src = fetchurl { 1524 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.5.tgz"; 1525 - sha512 = "tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw=="; 1526 - }; 1527 - }; 1528 - "@webassemblyjs/wasm-parser-1.11.5" = { 1529 - name = "_at_webassemblyjs_slash_wasm-parser"; 1530 - packageName = "@webassemblyjs/wasm-parser"; 1531 - version = "1.11.5"; 1532 - src = fetchurl { 1533 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.5.tgz"; 1534 - sha512 = "SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew=="; 1535 - }; 1536 - }; 1537 - "@webassemblyjs/wast-printer-1.11.5" = { 1538 - name = "_at_webassemblyjs_slash_wast-printer"; 1539 - packageName = "@webassemblyjs/wast-printer"; 1540 - version = "1.11.5"; 1541 - src = fetchurl { 1542 - url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.5.tgz"; 1543 - sha512 = "f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA=="; 1544 - }; 1545 - }; 1546 - "@webpack-cli/configtest-1.2.0" = { 1547 - name = "_at_webpack-cli_slash_configtest"; 1548 - packageName = "@webpack-cli/configtest"; 1549 - version = "1.2.0"; 1550 - src = fetchurl { 1551 - url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz"; 1552 - sha512 = "4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg=="; 1553 - }; 1554 - }; 1555 - "@webpack-cli/info-1.5.0" = { 1556 - name = "_at_webpack-cli_slash_info"; 1557 - packageName = "@webpack-cli/info"; 1558 - version = "1.5.0"; 1559 - src = fetchurl { 1560 - url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz"; 1561 - sha512 = "e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ=="; 1562 - }; 1563 - }; 1564 - "@webpack-cli/serve-1.7.0" = { 1565 - name = "_at_webpack-cli_slash_serve"; 1566 - packageName = "@webpack-cli/serve"; 1567 - version = "1.7.0"; 1568 - src = fetchurl { 1569 - url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz"; 1570 - sha512 = "oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q=="; 1571 - }; 1572 - }; 1573 - "@xtuc/ieee754-1.2.0" = { 1574 - name = "_at_xtuc_slash_ieee754"; 1575 - packageName = "@xtuc/ieee754"; 1576 - version = "1.2.0"; 1577 - src = fetchurl { 1578 - url = "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz"; 1579 - sha512 = "DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA=="; 1580 - }; 1581 - }; 1582 - "@xtuc/long-4.2.2" = { 1583 - name = "_at_xtuc_slash_long"; 1584 - packageName = "@xtuc/long"; 1585 - version = "4.2.2"; 1586 - src = fetchurl { 1587 - url = "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz"; 1588 - sha512 = "NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ=="; 1589 - }; 1590 - }; 1591 - "accepts-1.3.8" = { 1592 - name = "accepts"; 1593 - packageName = "accepts"; 1594 - version = "1.3.8"; 1595 - src = fetchurl { 1596 - url = "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz"; 1597 - sha512 = "PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="; 1598 - }; 1599 - }; 1600 - "acorn-8.8.0" = { 1601 - name = "acorn"; 1602 - packageName = "acorn"; 1603 - version = "8.8.0"; 1604 - src = fetchurl { 1605 - url = "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz"; 1606 - sha512 = "QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w=="; 1607 - }; 1608 - }; 1609 - "acorn-import-assertions-1.8.0" = { 1610 - name = "acorn-import-assertions"; 1611 - packageName = "acorn-import-assertions"; 1612 - version = "1.8.0"; 1613 - src = fetchurl { 1614 - url = "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz"; 1615 - sha512 = "m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw=="; 1616 - }; 1617 - }; 1618 - "acorn-jsx-5.3.2" = { 1619 - name = "acorn-jsx"; 1620 - packageName = "acorn-jsx"; 1621 - version = "5.3.2"; 1622 - src = fetchurl { 1623 - url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"; 1624 - sha512 = "rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="; 1625 - }; 1626 - }; 1627 - "acorn-walk-8.2.0" = { 1628 - name = "acorn-walk"; 1629 - packageName = "acorn-walk"; 1630 - version = "8.2.0"; 1631 - src = fetchurl { 1632 - url = "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz"; 1633 - sha512 = "k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA=="; 1634 - }; 1635 - }; 1636 - "ajv-6.12.6" = { 1637 - name = "ajv"; 1638 - packageName = "ajv"; 1639 - version = "6.12.6"; 1640 - src = fetchurl { 1641 - url = "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"; 1642 - sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1643 - }; 1644 - }; 1645 - "ajv-8.11.0" = { 1646 - name = "ajv"; 1647 - packageName = "ajv"; 1648 - version = "8.11.0"; 1649 - src = fetchurl { 1650 - url = "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz"; 1651 - sha512 = "wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg=="; 1652 - }; 1653 - }; 1654 - "ajv-8.12.0" = { 1655 - name = "ajv"; 1656 - packageName = "ajv"; 1657 - version = "8.12.0"; 1658 - src = fetchurl { 1659 - url = "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz"; 1660 - sha512 = "sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA=="; 1661 - }; 1662 - }; 1663 - "ajv-8.8.1" = { 1664 - name = "ajv"; 1665 - packageName = "ajv"; 1666 - version = "8.8.1"; 1667 - src = fetchurl { 1668 - url = "https://registry.npmjs.org/ajv/-/ajv-8.8.1.tgz"; 1669 - sha512 = "6CiMNDrzv0ZR916u2T+iRunnD60uWmNn8SkdB44/6stVORUg0aAkWO7PkOhpCmjmW8f2I/G/xnowD66fxGyQJg=="; 1670 - }; 1671 - }; 1672 - "ajv-8.8.2" = { 1673 - name = "ajv"; 1674 - packageName = "ajv"; 1675 - version = "8.8.2"; 1676 - src = fetchurl { 1677 - url = "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz"; 1678 - sha512 = "x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw=="; 1679 - }; 1680 - }; 1681 - "ajv-formats-2.1.1" = { 1682 - name = "ajv-formats"; 1683 - packageName = "ajv-formats"; 1684 - version = "2.1.1"; 1685 - src = fetchurl { 1686 - url = "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz"; 1687 - sha512 = "Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA=="; 1688 - }; 1689 - }; 1690 - "ajv-keywords-3.5.2" = { 1691 - name = "ajv-keywords"; 1692 - packageName = "ajv-keywords"; 1693 - version = "3.5.2"; 1694 - src = fetchurl { 1695 - url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz"; 1696 - sha512 = "5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="; 1697 - }; 1698 - }; 1699 - "ajv-keywords-5.1.0" = { 1700 - name = "ajv-keywords"; 1701 - packageName = "ajv-keywords"; 1702 - version = "5.1.0"; 1703 - src = fetchurl { 1704 - url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz"; 1705 - sha512 = "YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw=="; 1706 - }; 1707 - }; 1708 - "ansi-html-community-0.0.8" = { 1709 - name = "ansi-html-community"; 1710 - packageName = "ansi-html-community"; 1711 - version = "0.0.8"; 1712 - src = fetchurl { 1713 - url = "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz"; 1714 - sha512 = "1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw=="; 1715 - }; 1716 - }; 1717 - "ansi-regex-5.0.1" = { 1718 - name = "ansi-regex"; 1719 - packageName = "ansi-regex"; 1720 - version = "5.0.1"; 1721 - src = fetchurl { 1722 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"; 1723 - sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 1724 - }; 1725 - }; 1726 - "ansi-styles-3.2.1" = { 1727 - name = "ansi-styles"; 1728 - packageName = "ansi-styles"; 1729 - version = "3.2.1"; 1730 - src = fetchurl { 1731 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"; 1732 - sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 1733 - }; 1734 - }; 1735 - "ansi-styles-4.3.0" = { 1736 - name = "ansi-styles"; 1737 - packageName = "ansi-styles"; 1738 - version = "4.3.0"; 1739 - src = fetchurl { 1740 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 1741 - sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 1742 - }; 1743 - }; 1744 - "anymatch-3.1.2" = { 1745 - name = "anymatch"; 1746 - packageName = "anymatch"; 1747 - version = "3.1.2"; 1748 - src = fetchurl { 1749 - url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"; 1750 - sha512 = "P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="; 1751 - }; 1752 - }; 1753 - "argparse-2.0.1" = { 1754 - name = "argparse"; 1755 - packageName = "argparse"; 1756 - version = "2.0.1"; 1757 - src = fetchurl { 1758 - url = "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"; 1759 - sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="; 1760 - }; 1761 - }; 1762 - "array-flatten-1.1.1" = { 1763 - name = "array-flatten"; 1764 - packageName = "array-flatten"; 1765 - version = "1.1.1"; 1766 - src = fetchurl { 1767 - url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"; 1768 - sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; 1769 - }; 1770 - }; 1771 - "array-flatten-2.1.2" = { 1772 - name = "array-flatten"; 1773 - packageName = "array-flatten"; 1774 - version = "2.1.2"; 1775 - src = fetchurl { 1776 - url = "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz"; 1777 - sha512 = "hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ=="; 1778 - }; 1779 - }; 1780 - "array-includes-3.1.6" = { 1781 - name = "array-includes"; 1782 - packageName = "array-includes"; 1783 - version = "3.1.6"; 1784 - src = fetchurl { 1785 - url = "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz"; 1786 - sha512 = "sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw=="; 1787 - }; 1788 - }; 1789 - "array-union-1.0.2" = { 1790 - name = "array-union"; 1791 - packageName = "array-union"; 1792 - version = "1.0.2"; 1793 - src = fetchurl { 1794 - url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz"; 1795 - sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39"; 1796 - }; 1797 - }; 1798 - "array-uniq-1.0.3" = { 1799 - name = "array-uniq"; 1800 - packageName = "array-uniq"; 1801 - version = "1.0.3"; 1802 - src = fetchurl { 1803 - url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"; 1804 - sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6"; 1805 - }; 1806 - }; 1807 - "array.prototype.flat-1.3.1" = { 1808 - name = "array.prototype.flat"; 1809 - packageName = "array.prototype.flat"; 1810 - version = "1.3.1"; 1811 - src = fetchurl { 1812 - url = "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz"; 1813 - sha512 = "roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA=="; 1814 - }; 1815 - }; 1816 - "array.prototype.flatmap-1.3.1" = { 1817 - name = "array.prototype.flatmap"; 1818 - packageName = "array.prototype.flatmap"; 1819 - version = "1.3.1"; 1820 - src = fetchurl { 1821 - url = "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz"; 1822 - sha512 = "8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ=="; 1823 - }; 1824 - }; 1825 - "asynckit-0.4.0" = { 1826 - name = "asynckit"; 1827 - packageName = "asynckit"; 1828 - version = "0.4.0"; 1829 - src = fetchurl { 1830 - url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; 1831 - sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; 1832 - }; 1833 - }; 1834 - "available-typed-arrays-1.0.5" = { 1835 - name = "available-typed-arrays"; 1836 - packageName = "available-typed-arrays"; 1837 - version = "1.0.5"; 1838 - src = fetchurl { 1839 - url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz"; 1840 - sha512 = "DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="; 1841 - }; 1842 - }; 1843 - "axios-1.3.6" = { 1844 - name = "axios"; 1845 - packageName = "axios"; 1846 - version = "1.3.6"; 1847 - src = fetchurl { 1848 - url = "https://registry.npmjs.org/axios/-/axios-1.3.6.tgz"; 1849 - sha512 = "PEcdkk7JcdPiMDkvM4K6ZBRYq9keuVJsToxm2zQIM70Qqo2WHTdJZMXcG9X+RmRp2VPNUQC8W1RAGbgt6b1yMg=="; 1850 - }; 1851 - }; 1852 - "babel-loader-9.1.2" = { 1853 - name = "babel-loader"; 1854 - packageName = "babel-loader"; 1855 - version = "9.1.2"; 1856 - src = fetchurl { 1857 - url = "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz"; 1858 - sha512 = "mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA=="; 1859 - }; 1860 - }; 1861 - "babel-plugin-polyfill-corejs2-0.3.3" = { 1862 - name = "babel-plugin-polyfill-corejs2"; 1863 - packageName = "babel-plugin-polyfill-corejs2"; 1864 - version = "0.3.3"; 1865 - src = fetchurl { 1866 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz"; 1867 - sha512 = "8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q=="; 1868 - }; 1869 - }; 1870 - "babel-plugin-polyfill-corejs3-0.6.0" = { 1871 - name = "babel-plugin-polyfill-corejs3"; 1872 - packageName = "babel-plugin-polyfill-corejs3"; 1873 - version = "0.6.0"; 1874 - src = fetchurl { 1875 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz"; 1876 - sha512 = "+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA=="; 1877 - }; 1878 - }; 1879 - "babel-plugin-polyfill-regenerator-0.4.1" = { 1880 - name = "babel-plugin-polyfill-regenerator"; 1881 - packageName = "babel-plugin-polyfill-regenerator"; 1882 - version = "0.4.1"; 1883 - src = fetchurl { 1884 - url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz"; 1885 - sha512 = "NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw=="; 1886 - }; 1887 - }; 1888 - "balanced-match-1.0.0" = { 1889 - name = "balanced-match"; 1890 - packageName = "balanced-match"; 1891 - version = "1.0.0"; 1892 - src = fetchurl { 1893 - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; 1894 - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 1895 - }; 1896 - }; 1897 - "batch-0.6.1" = { 1898 - name = "batch"; 1899 - packageName = "batch"; 1900 - version = "0.6.1"; 1901 - src = fetchurl { 1902 - url = "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz"; 1903 - sha1 = "dc34314f4e679318093fc760272525f94bf25c16"; 1904 - }; 1905 - }; 1906 - "before-build-webpack-0.2.13" = { 1907 - name = "before-build-webpack"; 1908 - packageName = "before-build-webpack"; 1909 - version = "0.2.13"; 1910 - src = fetchurl { 1911 - url = "https://registry.npmjs.org/before-build-webpack/-/before-build-webpack-0.2.13.tgz"; 1912 - sha512 = "Vtx55X83giRl+DQ7EZBhU1leUrOLb0t4cKSfvlE9fSub2+TPXFEXjBTYP0jsEnUi7Hd4jdQmUtq/cL6ncBXDFA=="; 1913 - }; 1914 - }; 1915 - "big.js-5.2.2" = { 1916 - name = "big.js"; 1917 - packageName = "big.js"; 1918 - version = "5.2.2"; 1919 - src = fetchurl { 1920 - url = "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"; 1921 - sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="; 1922 - }; 1923 - }; 1924 - "binary-extensions-2.2.0" = { 1925 - name = "binary-extensions"; 1926 - packageName = "binary-extensions"; 1927 - version = "2.2.0"; 1928 - src = fetchurl { 1929 - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"; 1930 - sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; 1931 - }; 1932 - }; 1933 - "bluebird-3.7.2" = { 1934 - name = "bluebird"; 1935 - packageName = "bluebird"; 1936 - version = "3.7.2"; 1937 - src = fetchurl { 1938 - url = "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz"; 1939 - sha512 = "XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="; 1940 - }; 1941 - }; 1942 - "body-parser-1.19.2" = { 1943 - name = "body-parser"; 1944 - packageName = "body-parser"; 1945 - version = "1.19.2"; 1946 - src = fetchurl { 1947 - url = "https://registry.npmjs.org/body-parser/-/body-parser-1.19.2.tgz"; 1948 - sha512 = "SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw=="; 1949 - }; 1950 - }; 1951 - "bonjour-service-1.0.11" = { 1952 - name = "bonjour-service"; 1953 - packageName = "bonjour-service"; 1954 - version = "1.0.11"; 1955 - src = fetchurl { 1956 - url = "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.11.tgz"; 1957 - sha512 = "drMprzr2rDTCtgEE3VgdA9uUFaUHF+jXduwYSThHJnKMYM+FhI9Z3ph+TX3xy0LtgYHae6CHYPJ/2UnK8nQHcA=="; 1958 - }; 1959 - }; 1960 - "boolbase-1.0.0" = { 1961 - name = "boolbase"; 1962 - packageName = "boolbase"; 1963 - version = "1.0.0"; 1964 - src = fetchurl { 1965 - url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"; 1966 - sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"; 1967 - }; 1968 - }; 1969 - "brace-expansion-1.1.11" = { 1970 - name = "brace-expansion"; 1971 - packageName = "brace-expansion"; 1972 - version = "1.1.11"; 1973 - src = fetchurl { 1974 - url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; 1975 - sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; 1976 - }; 1977 - }; 1978 - "braces-3.0.2" = { 1979 - name = "braces"; 1980 - packageName = "braces"; 1981 - version = "3.0.2"; 1982 - src = fetchurl { 1983 - url = "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"; 1984 - sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="; 1985 - }; 1986 - }; 1987 - "browserslist-4.21.3" = { 1988 - name = "browserslist"; 1989 - packageName = "browserslist"; 1990 - version = "4.21.3"; 1991 - src = fetchurl { 1992 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.3.tgz"; 1993 - sha512 = "898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ=="; 1994 - }; 1995 - }; 1996 - "buffer-from-1.1.1" = { 1997 - name = "buffer-from"; 1998 - packageName = "buffer-from"; 1999 - version = "1.1.1"; 2000 - src = fetchurl { 2001 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"; 2002 - sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; 2003 - }; 2004 - }; 2005 - "bytes-3.0.0" = { 2006 - name = "bytes"; 2007 - packageName = "bytes"; 2008 - version = "3.0.0"; 2009 - src = fetchurl { 2010 - url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz"; 2011 - sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048"; 2012 - }; 2013 - }; 2014 - "bytes-3.1.2" = { 2015 - name = "bytes"; 2016 - packageName = "bytes"; 2017 - version = "3.1.2"; 2018 - src = fetchurl { 2019 - url = "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz"; 2020 - sha512 = "/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="; 2021 - }; 2022 - }; 2023 - "call-bind-1.0.2" = { 2024 - name = "call-bind"; 2025 - packageName = "call-bind"; 2026 - version = "1.0.2"; 2027 - src = fetchurl { 2028 - url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"; 2029 - sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="; 2030 - }; 2031 - }; 2032 - "callsites-3.1.0" = { 2033 - name = "callsites"; 2034 - packageName = "callsites"; 2035 - version = "3.1.0"; 2036 - src = fetchurl { 2037 - url = "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"; 2038 - sha512 = "P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="; 2039 - }; 2040 - }; 2041 - "camel-case-4.1.2" = { 2042 - name = "camel-case"; 2043 - packageName = "camel-case"; 2044 - version = "4.1.2"; 2045 - src = fetchurl { 2046 - url = "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz"; 2047 - sha512 = "gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw=="; 2048 - }; 2049 - }; 2050 - "caniuse-lite-1.0.30001399" = { 2051 - name = "caniuse-lite"; 2052 - packageName = "caniuse-lite"; 2053 - version = "1.0.30001399"; 2054 - src = fetchurl { 2055 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001399.tgz"; 2056 - sha512 = "4vQ90tMKS+FkvuVWS5/QY1+d805ODxZiKFzsU8o/RsVJz49ZSRR8EjykLJbqhzdPgadbX6wB538wOzle3JniRA=="; 2057 - }; 2058 - }; 2059 - "chalk-2.4.2" = { 2060 - name = "chalk"; 2061 - packageName = "chalk"; 2062 - version = "2.4.2"; 2063 - src = fetchurl { 2064 - url = "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"; 2065 - sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 2066 - }; 2067 - }; 2068 - "chalk-4.1.2" = { 2069 - name = "chalk"; 2070 - packageName = "chalk"; 2071 - version = "4.1.2"; 2072 - src = fetchurl { 2073 - url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"; 2074 - sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; 2075 - }; 2076 - }; 2077 - "chokidar-3.5.3" = { 2078 - name = "chokidar"; 2079 - packageName = "chokidar"; 2080 - version = "3.5.3"; 2081 - src = fetchurl { 2082 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"; 2083 - sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="; 2084 - }; 2085 - }; 2086 - "chrome-trace-event-1.0.3" = { 2087 - name = "chrome-trace-event"; 2088 - packageName = "chrome-trace-event"; 2089 - version = "1.0.3"; 2090 - src = fetchurl { 2091 - url = "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz"; 2092 - sha512 = "p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg=="; 2093 - }; 2094 - }; 2095 - "clean-css-5.2.2" = { 2096 - name = "clean-css"; 2097 - packageName = "clean-css"; 2098 - version = "5.2.2"; 2099 - src = fetchurl { 2100 - url = "https://registry.npmjs.org/clean-css/-/clean-css-5.2.2.tgz"; 2101 - sha512 = "/eR8ru5zyxKzpBLv9YZvMXgTSSQn7AdkMItMYynsFgGwTveCRVam9IUPFloE85B4vAIj05IuKmmEoV7/AQjT0w=="; 2102 - }; 2103 - }; 2104 - "clean-webpack-plugin-4.0.0" = { 2105 - name = "clean-webpack-plugin"; 2106 - packageName = "clean-webpack-plugin"; 2107 - version = "4.0.0"; 2108 - src = fetchurl { 2109 - url = "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-4.0.0.tgz"; 2110 - sha512 = "WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w=="; 2111 - }; 2112 - }; 2113 - "clone-deep-4.0.1" = { 2114 - name = "clone-deep"; 2115 - packageName = "clone-deep"; 2116 - version = "4.0.1"; 2117 - src = fetchurl { 2118 - url = "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz"; 2119 - sha512 = "neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ=="; 2120 - }; 2121 - }; 2122 - "color-convert-1.9.3" = { 2123 - name = "color-convert"; 2124 - packageName = "color-convert"; 2125 - version = "1.9.3"; 2126 - src = fetchurl { 2127 - url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"; 2128 - sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; 2129 - }; 2130 - }; 2131 - "color-convert-2.0.1" = { 2132 - name = "color-convert"; 2133 - packageName = "color-convert"; 2134 - version = "2.0.1"; 2135 - src = fetchurl { 2136 - url = "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"; 2137 - sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="; 2138 - }; 2139 - }; 2140 - "color-name-1.1.3" = { 2141 - name = "color-name"; 2142 - packageName = "color-name"; 2143 - version = "1.1.3"; 2144 - src = fetchurl { 2145 - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; 2146 - sha512 = "72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="; 2147 - }; 2148 - }; 2149 - "color-name-1.1.4" = { 2150 - name = "color-name"; 2151 - packageName = "color-name"; 2152 - version = "1.1.4"; 2153 - src = fetchurl { 2154 - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"; 2155 - sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 2156 - }; 2157 - }; 2158 - "colorette-2.0.16" = { 2159 - name = "colorette"; 2160 - packageName = "colorette"; 2161 - version = "2.0.16"; 2162 - src = fetchurl { 2163 - url = "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz"; 2164 - sha512 = "hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g=="; 2165 - }; 2166 - }; 2167 - "combined-stream-1.0.8" = { 2168 - name = "combined-stream"; 2169 - packageName = "combined-stream"; 2170 - version = "1.0.8"; 2171 - src = fetchurl { 2172 - url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"; 2173 - sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; 2174 - }; 2175 - }; 2176 - "commander-2.20.3" = { 2177 - name = "commander"; 2178 - packageName = "commander"; 2179 - version = "2.20.3"; 2180 - src = fetchurl { 2181 - url = "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"; 2182 - sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; 2183 - }; 2184 - }; 2185 - "commander-7.2.0" = { 2186 - name = "commander"; 2187 - packageName = "commander"; 2188 - version = "7.2.0"; 2189 - src = fetchurl { 2190 - url = "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz"; 2191 - sha512 = "QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="; 2192 - }; 2193 - }; 2194 - "commander-8.3.0" = { 2195 - name = "commander"; 2196 - packageName = "commander"; 2197 - version = "8.3.0"; 2198 - src = fetchurl { 2199 - url = "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz"; 2200 - sha512 = "OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="; 2201 - }; 2202 - }; 2203 - "commondir-1.0.1" = { 2204 - name = "commondir"; 2205 - packageName = "commondir"; 2206 - version = "1.0.1"; 2207 - src = fetchurl { 2208 - url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"; 2209 - sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b"; 2210 - }; 2211 - }; 2212 - "compressible-2.0.18" = { 2213 - name = "compressible"; 2214 - packageName = "compressible"; 2215 - version = "2.0.18"; 2216 - src = fetchurl { 2217 - url = "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz"; 2218 - sha512 = "AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg=="; 2219 - }; 2220 - }; 2221 - "compression-1.7.4" = { 2222 - name = "compression"; 2223 - packageName = "compression"; 2224 - version = "1.7.4"; 2225 - src = fetchurl { 2226 - url = "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz"; 2227 - sha512 = "jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ=="; 2228 - }; 2229 - }; 2230 - "concat-map-0.0.1" = { 2231 - name = "concat-map"; 2232 - packageName = "concat-map"; 2233 - version = "0.0.1"; 2234 - src = fetchurl { 2235 - url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 2236 - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 2237 - }; 2238 - }; 2239 - "confusing-browser-globals-1.0.10" = { 2240 - name = "confusing-browser-globals"; 2241 - packageName = "confusing-browser-globals"; 2242 - version = "1.0.10"; 2243 - src = fetchurl { 2244 - url = "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz"; 2245 - sha512 = "gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA=="; 2246 - }; 2247 - }; 2248 - "connect-history-api-fallback-2.0.0" = { 2249 - name = "connect-history-api-fallback"; 2250 - packageName = "connect-history-api-fallback"; 2251 - version = "2.0.0"; 2252 - src = fetchurl { 2253 - url = "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz"; 2254 - sha512 = "U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA=="; 2255 - }; 2256 - }; 2257 - "consolidate-0.15.1" = { 2258 - name = "consolidate"; 2259 - packageName = "consolidate"; 2260 - version = "0.15.1"; 2261 - src = fetchurl { 2262 - url = "https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz"; 2263 - sha512 = "DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw=="; 2264 - }; 2265 - }; 2266 - "content-disposition-0.5.4" = { 2267 - name = "content-disposition"; 2268 - packageName = "content-disposition"; 2269 - version = "0.5.4"; 2270 - src = fetchurl { 2271 - url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz"; 2272 - sha512 = "FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ=="; 2273 - }; 2274 - }; 2275 - "content-type-1.0.4" = { 2276 - name = "content-type"; 2277 - packageName = "content-type"; 2278 - version = "1.0.4"; 2279 - src = fetchurl { 2280 - url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"; 2281 - sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; 2282 - }; 2283 - }; 2284 - "convert-source-map-1.8.0" = { 2285 - name = "convert-source-map"; 2286 - packageName = "convert-source-map"; 2287 - version = "1.8.0"; 2288 - src = fetchurl { 2289 - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz"; 2290 - sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="; 2291 - }; 2292 - }; 2293 - "cookie-0.4.2" = { 2294 - name = "cookie"; 2295 - packageName = "cookie"; 2296 - version = "0.4.2"; 2297 - src = fetchurl { 2298 - url = "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz"; 2299 - sha512 = "aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA=="; 2300 - }; 2301 - }; 2302 - "cookie-signature-1.0.6" = { 2303 - name = "cookie-signature"; 2304 - packageName = "cookie-signature"; 2305 - version = "1.0.6"; 2306 - src = fetchurl { 2307 - url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz"; 2308 - sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; 2309 - }; 2310 - }; 2311 - "copy-to-clipboard-3.3.3" = { 2312 - name = "copy-to-clipboard"; 2313 - packageName = "copy-to-clipboard"; 2314 - version = "3.3.3"; 2315 - src = fetchurl { 2316 - url = "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz"; 2317 - sha512 = "2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA=="; 2318 - }; 2319 - }; 2320 - "copy-webpack-plugin-11.0.0" = { 2321 - name = "copy-webpack-plugin"; 2322 - packageName = "copy-webpack-plugin"; 2323 - version = "11.0.0"; 2324 - src = fetchurl { 2325 - url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz"; 2326 - sha512 = "fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ=="; 2327 - }; 2328 - }; 2329 - "core-js-compat-3.25.1" = { 2330 - name = "core-js-compat"; 2331 - packageName = "core-js-compat"; 2332 - version = "3.25.1"; 2333 - src = fetchurl { 2334 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.1.tgz"; 2335 - sha512 = "pOHS7O0i8Qt4zlPW/eIFjwp+NrTPx+wTL0ctgI2fHn31sZOq89rDsmtc/A2vAX7r6shl+bmVI+678He46jgBlw=="; 2336 - }; 2337 - }; 2338 - "core-util-is-1.0.3" = { 2339 - name = "core-util-is"; 2340 - packageName = "core-util-is"; 2341 - version = "1.0.3"; 2342 - src = fetchurl { 2343 - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"; 2344 - sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="; 2345 - }; 2346 - }; 2347 - "cross-spawn-7.0.3" = { 2348 - name = "cross-spawn"; 2349 - packageName = "cross-spawn"; 2350 - version = "7.0.3"; 2351 - src = fetchurl { 2352 - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"; 2353 - sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; 2354 - }; 2355 - }; 2356 - "css-loader-6.7.3" = { 2357 - name = "css-loader"; 2358 - packageName = "css-loader"; 2359 - version = "6.7.3"; 2360 - src = fetchurl { 2361 - url = "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz"; 2362 - sha512 = "qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ=="; 2363 - }; 2364 - }; 2365 - "css-select-4.1.3" = { 2366 - name = "css-select"; 2367 - packageName = "css-select"; 2368 - version = "4.1.3"; 2369 - src = fetchurl { 2370 - url = "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz"; 2371 - sha512 = "gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA=="; 2372 - }; 2373 - }; 2374 - "css-what-5.1.0" = { 2375 - name = "css-what"; 2376 - packageName = "css-what"; 2377 - version = "5.1.0"; 2378 - src = fetchurl { 2379 - url = "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz"; 2380 - sha512 = "arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw=="; 2381 - }; 2382 - }; 2383 - "cssesc-3.0.0" = { 2384 - name = "cssesc"; 2385 - packageName = "cssesc"; 2386 - version = "3.0.0"; 2387 - src = fetchurl { 2388 - url = "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz"; 2389 - sha512 = "/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="; 2390 - }; 2391 - }; 2392 - "csstype-3.1.0" = { 2393 - name = "csstype"; 2394 - packageName = "csstype"; 2395 - version = "3.1.0"; 2396 - src = fetchurl { 2397 - url = "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz"; 2398 - sha512 = "uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA=="; 2399 - }; 2400 - }; 2401 - "de-indent-1.0.2" = { 2402 - name = "de-indent"; 2403 - packageName = "de-indent"; 2404 - version = "1.0.2"; 2405 - src = fetchurl { 2406 - url = "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz"; 2407 - sha1 = "b2038e846dc33baa5796128d0804b455b8c1e21d"; 2408 - }; 2409 - }; 2410 - "debug-2.6.9" = { 2411 - name = "debug"; 2412 - packageName = "debug"; 2413 - version = "2.6.9"; 2414 - src = fetchurl { 2415 - url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; 2416 - sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 2417 - }; 2418 - }; 2419 - "debug-3.2.7" = { 2420 - name = "debug"; 2421 - packageName = "debug"; 2422 - version = "3.2.7"; 2423 - src = fetchurl { 2424 - url = "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"; 2425 - sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="; 2426 - }; 2427 - }; 2428 - "debug-4.3.3" = { 2429 - name = "debug"; 2430 - packageName = "debug"; 2431 - version = "4.3.3"; 2432 - src = fetchurl { 2433 - url = "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz"; 2434 - sha512 = "/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q=="; 2435 - }; 2436 - }; 2437 - "debug-4.3.4" = { 2438 - name = "debug"; 2439 - packageName = "debug"; 2440 - version = "4.3.4"; 2441 - src = fetchurl { 2442 - url = "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"; 2443 - sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; 2444 - }; 2445 - }; 2446 - "deep-is-0.1.4" = { 2447 - name = "deep-is"; 2448 - packageName = "deep-is"; 2449 - version = "0.1.4"; 2450 - src = fetchurl { 2451 - url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"; 2452 - sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; 2453 - }; 2454 - }; 2455 - "deepmerge-4.2.2" = { 2456 - name = "deepmerge"; 2457 - packageName = "deepmerge"; 2458 - version = "4.2.2"; 2459 - src = fetchurl { 2460 - url = "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"; 2461 - sha512 = "FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="; 2462 - }; 2463 - }; 2464 - "default-gateway-6.0.3" = { 2465 - name = "default-gateway"; 2466 - packageName = "default-gateway"; 2467 - version = "6.0.3"; 2468 - src = fetchurl { 2469 - url = "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz"; 2470 - sha512 = "fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg=="; 2471 - }; 2472 - }; 2473 - "define-lazy-prop-2.0.0" = { 2474 - name = "define-lazy-prop"; 2475 - packageName = "define-lazy-prop"; 2476 - version = "2.0.0"; 2477 - src = fetchurl { 2478 - url = "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz"; 2479 - sha512 = "Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og=="; 2480 - }; 2481 - }; 2482 - "define-properties-1.1.4" = { 2483 - name = "define-properties"; 2484 - packageName = "define-properties"; 2485 - version = "1.1.4"; 2486 - src = fetchurl { 2487 - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz"; 2488 - sha512 = "uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA=="; 2489 - }; 2490 - }; 2491 - "del-4.1.1" = { 2492 - name = "del"; 2493 - packageName = "del"; 2494 - version = "4.1.1"; 2495 - src = fetchurl { 2496 - url = "https://registry.npmjs.org/del/-/del-4.1.1.tgz"; 2497 - sha512 = "QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ=="; 2498 - }; 2499 - }; 2500 - "delayed-stream-1.0.0" = { 2501 - name = "delayed-stream"; 2502 - packageName = "delayed-stream"; 2503 - version = "1.0.0"; 2504 - src = fetchurl { 2505 - url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; 2506 - sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; 2507 - }; 2508 - }; 2509 - "depd-1.1.2" = { 2510 - name = "depd"; 2511 - packageName = "depd"; 2512 - version = "1.1.2"; 2513 - src = fetchurl { 2514 - url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"; 2515 - sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; 2516 - }; 2517 - }; 2518 - "destroy-1.0.4" = { 2519 - name = "destroy"; 2520 - packageName = "destroy"; 2521 - version = "1.0.4"; 2522 - src = fetchurl { 2523 - url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz"; 2524 - sha1 = "978857442c44749e4206613e37946205826abd80"; 2525 - }; 2526 - }; 2527 - "detect-node-2.1.0" = { 2528 - name = "detect-node"; 2529 - packageName = "detect-node"; 2530 - version = "2.1.0"; 2531 - src = fetchurl { 2532 - url = "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz"; 2533 - sha512 = "T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g=="; 2534 - }; 2535 - }; 2536 - "dir-glob-3.0.1" = { 2537 - name = "dir-glob"; 2538 - packageName = "dir-glob"; 2539 - version = "3.0.1"; 2540 - src = fetchurl { 2541 - url = "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"; 2542 - sha512 = "WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="; 2543 - }; 2544 - }; 2545 - "dns-equal-1.0.0" = { 2546 - name = "dns-equal"; 2547 - packageName = "dns-equal"; 2548 - version = "1.0.0"; 2549 - src = fetchurl { 2550 - url = "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz"; 2551 - sha1 = "b39e7f1da6eb0a75ba9c17324b34753c47e0654d"; 2552 - }; 2553 - }; 2554 - "dns-packet-5.3.1" = { 2555 - name = "dns-packet"; 2556 - packageName = "dns-packet"; 2557 - version = "5.3.1"; 2558 - src = fetchurl { 2559 - url = "https://registry.npmjs.org/dns-packet/-/dns-packet-5.3.1.tgz"; 2560 - sha512 = "spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw=="; 2561 - }; 2562 - }; 2563 - "doctrine-2.1.0" = { 2564 - name = "doctrine"; 2565 - packageName = "doctrine"; 2566 - version = "2.1.0"; 2567 - src = fetchurl { 2568 - url = "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"; 2569 - sha512 = "35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="; 2570 - }; 2571 - }; 2572 - "doctrine-3.0.0" = { 2573 - name = "doctrine"; 2574 - packageName = "doctrine"; 2575 - version = "3.0.0"; 2576 - src = fetchurl { 2577 - url = "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"; 2578 - sha512 = "yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="; 2579 - }; 2580 - }; 2581 - "dom-converter-0.2.0" = { 2582 - name = "dom-converter"; 2583 - packageName = "dom-converter"; 2584 - version = "0.2.0"; 2585 - src = fetchurl { 2586 - url = "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz"; 2587 - sha512 = "gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA=="; 2588 - }; 2589 - }; 2590 - "dom-serializer-1.3.2" = { 2591 - name = "dom-serializer"; 2592 - packageName = "dom-serializer"; 2593 - version = "1.3.2"; 2594 - src = fetchurl { 2595 - url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz"; 2596 - sha512 = "5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig=="; 2597 - }; 2598 - }; 2599 - "domelementtype-2.2.0" = { 2600 - name = "domelementtype"; 2601 - packageName = "domelementtype"; 2602 - version = "2.2.0"; 2603 - src = fetchurl { 2604 - url = "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz"; 2605 - sha512 = "DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A=="; 2606 - }; 2607 - }; 2608 - "domhandler-4.2.2" = { 2609 - name = "domhandler"; 2610 - packageName = "domhandler"; 2611 - version = "4.2.2"; 2612 - src = fetchurl { 2613 - url = "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz"; 2614 - sha512 = "PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w=="; 2615 - }; 2616 - }; 2617 - "domutils-2.8.0" = { 2618 - name = "domutils"; 2619 - packageName = "domutils"; 2620 - version = "2.8.0"; 2621 - src = fetchurl { 2622 - url = "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz"; 2623 - sha512 = "w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="; 2624 - }; 2625 - }; 2626 - "dot-case-3.0.4" = { 2627 - name = "dot-case"; 2628 - packageName = "dot-case"; 2629 - version = "3.0.4"; 2630 - src = fetchurl { 2631 - url = "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz"; 2632 - sha512 = "Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w=="; 2633 - }; 2634 - }; 2635 - "duplexer-0.1.2" = { 2636 - name = "duplexer"; 2637 - packageName = "duplexer"; 2638 - version = "0.1.2"; 2639 - src = fetchurl { 2640 - url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz"; 2641 - sha512 = "jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="; 2642 - }; 2643 - }; 2644 - "ee-first-1.1.1" = { 2645 - name = "ee-first"; 2646 - packageName = "ee-first"; 2647 - version = "1.1.1"; 2648 - src = fetchurl { 2649 - url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"; 2650 - sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 2651 - }; 2652 - }; 2653 - "electron-to-chromium-1.4.249" = { 2654 - name = "electron-to-chromium"; 2655 - packageName = "electron-to-chromium"; 2656 - version = "1.4.249"; 2657 - src = fetchurl { 2658 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.249.tgz"; 2659 - sha512 = "GMCxR3p2HQvIw47A599crTKYZprqihoBL4lDSAUmr7IYekXFK5t/WgEBrGJDCa2HWIZFQEkGuMqPCi05ceYqPQ=="; 2660 - }; 2661 - }; 2662 - "emojis-list-3.0.0" = { 2663 - name = "emojis-list"; 2664 - packageName = "emojis-list"; 2665 - version = "3.0.0"; 2666 - src = fetchurl { 2667 - url = "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz"; 2668 - sha512 = "/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q=="; 2669 - }; 2670 - }; 2671 - "encodeurl-1.0.2" = { 2672 - name = "encodeurl"; 2673 - packageName = "encodeurl"; 2674 - version = "1.0.2"; 2675 - src = fetchurl { 2676 - url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"; 2677 - sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; 2678 - }; 2679 - }; 2680 - "enhanced-resolve-5.13.0" = { 2681 - name = "enhanced-resolve"; 2682 - packageName = "enhanced-resolve"; 2683 - version = "5.13.0"; 2684 - src = fetchurl { 2685 - url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.13.0.tgz"; 2686 - sha512 = "eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg=="; 2687 - }; 2688 - }; 2689 - "entities-2.2.0" = { 2690 - name = "entities"; 2691 - packageName = "entities"; 2692 - version = "2.2.0"; 2693 - src = fetchurl { 2694 - url = "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz"; 2695 - sha512 = "p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="; 2696 - }; 2697 - }; 2698 - "envinfo-7.8.1" = { 2699 - name = "envinfo"; 2700 - packageName = "envinfo"; 2701 - version = "7.8.1"; 2702 - src = fetchurl { 2703 - url = "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz"; 2704 - sha512 = "/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw=="; 2705 - }; 2706 - }; 2707 - "es-abstract-1.21.1" = { 2708 - name = "es-abstract"; 2709 - packageName = "es-abstract"; 2710 - version = "1.21.1"; 2711 - src = fetchurl { 2712 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz"; 2713 - sha512 = "QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg=="; 2714 - }; 2715 - }; 2716 - "es-module-lexer-1.2.1" = { 2717 - name = "es-module-lexer"; 2718 - packageName = "es-module-lexer"; 2719 - version = "1.2.1"; 2720 - src = fetchurl { 2721 - url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz"; 2722 - sha512 = "9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg=="; 2723 - }; 2724 - }; 2725 - "es-set-tostringtag-2.0.1" = { 2726 - name = "es-set-tostringtag"; 2727 - packageName = "es-set-tostringtag"; 2728 - version = "2.0.1"; 2729 - src = fetchurl { 2730 - url = "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz"; 2731 - sha512 = "g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg=="; 2732 - }; 2733 - }; 2734 - "es-shim-unscopables-1.0.0" = { 2735 - name = "es-shim-unscopables"; 2736 - packageName = "es-shim-unscopables"; 2737 - version = "1.0.0"; 2738 - src = fetchurl { 2739 - url = "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz"; 2740 - sha512 = "Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w=="; 2741 - }; 2742 - }; 2743 - "es-to-primitive-1.2.1" = { 2744 - name = "es-to-primitive"; 2745 - packageName = "es-to-primitive"; 2746 - version = "1.2.1"; 2747 - src = fetchurl { 2748 - url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; 2749 - sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="; 2750 - }; 2751 - }; 2752 - "escalade-3.1.1" = { 2753 - name = "escalade"; 2754 - packageName = "escalade"; 2755 - version = "3.1.1"; 2756 - src = fetchurl { 2757 - url = "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"; 2758 - sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; 2759 - }; 2760 - }; 2761 - "escape-html-1.0.3" = { 2762 - name = "escape-html"; 2763 - packageName = "escape-html"; 2764 - version = "1.0.3"; 2765 - src = fetchurl { 2766 - url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"; 2767 - sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; 2768 - }; 2769 - }; 2770 - "escape-string-regexp-1.0.5" = { 2771 - name = "escape-string-regexp"; 2772 - packageName = "escape-string-regexp"; 2773 - version = "1.0.5"; 2774 - src = fetchurl { 2775 - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 2776 - sha512 = "vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="; 2777 - }; 2778 - }; 2779 - "escape-string-regexp-4.0.0" = { 2780 - name = "escape-string-regexp"; 2781 - packageName = "escape-string-regexp"; 2782 - version = "4.0.0"; 2783 - src = fetchurl { 2784 - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; 2785 - sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 2786 - }; 2787 - }; 2788 - "eslint-8.39.0" = { 2789 - name = "eslint"; 2790 - packageName = "eslint"; 2791 - version = "8.39.0"; 2792 - src = fetchurl { 2793 - url = "https://registry.npmjs.org/eslint/-/eslint-8.39.0.tgz"; 2794 - sha512 = "mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og=="; 2795 - }; 2796 - }; 2797 - "eslint-config-airbnb-base-15.0.0" = { 2798 - name = "eslint-config-airbnb-base"; 2799 - packageName = "eslint-config-airbnb-base"; 2800 - version = "15.0.0"; 2801 - src = fetchurl { 2802 - url = "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz"; 2803 - sha512 = "xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig=="; 2804 - }; 2805 - }; 2806 - "eslint-import-resolver-node-0.3.7" = { 2807 - name = "eslint-import-resolver-node"; 2808 - packageName = "eslint-import-resolver-node"; 2809 - version = "0.3.7"; 2810 - src = fetchurl { 2811 - url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz"; 2812 - sha512 = "gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA=="; 2813 - }; 2814 - }; 2815 - "eslint-module-utils-2.7.4" = { 2816 - name = "eslint-module-utils"; 2817 - packageName = "eslint-module-utils"; 2818 - version = "2.7.4"; 2819 - src = fetchurl { 2820 - url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz"; 2821 - sha512 = "j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA=="; 2822 - }; 2823 - }; 2824 - "eslint-plugin-import-2.27.5" = { 2825 - name = "eslint-plugin-import"; 2826 - packageName = "eslint-plugin-import"; 2827 - version = "2.27.5"; 2828 - src = fetchurl { 2829 - url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz"; 2830 - sha512 = "LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow=="; 2831 - }; 2832 - }; 2833 - "eslint-plugin-vue-9.11.0" = { 2834 - name = "eslint-plugin-vue"; 2835 - packageName = "eslint-plugin-vue"; 2836 - version = "9.11.0"; 2837 - src = fetchurl { 2838 - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.11.0.tgz"; 2839 - sha512 = "bBCJAZnkBV7ATH4Z1E7CvN3nmtS4H7QUU3UBxPdo8WohRU+yHjnQRALpTbxMVcz0e4Mx3IyxIdP5HYODMxK9cQ=="; 2840 - }; 2841 - }; 2842 - "eslint-scope-5.1.1" = { 2843 - name = "eslint-scope"; 2844 - packageName = "eslint-scope"; 2845 - version = "5.1.1"; 2846 - src = fetchurl { 2847 - url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"; 2848 - sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="; 2849 - }; 2850 - }; 2851 - "eslint-scope-7.1.1" = { 2852 - name = "eslint-scope"; 2853 - packageName = "eslint-scope"; 2854 - version = "7.1.1"; 2855 - src = fetchurl { 2856 - url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz"; 2857 - sha512 = "QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw=="; 2858 - }; 2859 - }; 2860 - "eslint-scope-7.2.0" = { 2861 - name = "eslint-scope"; 2862 - packageName = "eslint-scope"; 2863 - version = "7.2.0"; 2864 - src = fetchurl { 2865 - url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz"; 2866 - sha512 = "DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw=="; 2867 - }; 2868 - }; 2869 - "eslint-visitor-keys-2.1.0" = { 2870 - name = "eslint-visitor-keys"; 2871 - packageName = "eslint-visitor-keys"; 2872 - version = "2.1.0"; 2873 - src = fetchurl { 2874 - url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"; 2875 - sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="; 2876 - }; 2877 - }; 2878 - "eslint-visitor-keys-3.4.0" = { 2879 - name = "eslint-visitor-keys"; 2880 - packageName = "eslint-visitor-keys"; 2881 - version = "3.4.0"; 2882 - src = fetchurl { 2883 - url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz"; 2884 - sha512 = "HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ=="; 2885 - }; 2886 - }; 2887 - "espree-9.5.1" = { 2888 - name = "espree"; 2889 - packageName = "espree"; 2890 - version = "9.5.1"; 2891 - src = fetchurl { 2892 - url = "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz"; 2893 - sha512 = "5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg=="; 2894 - }; 2895 - }; 2896 - "esquery-1.4.2" = { 2897 - name = "esquery"; 2898 - packageName = "esquery"; 2899 - version = "1.4.2"; 2900 - src = fetchurl { 2901 - url = "https://registry.npmjs.org/esquery/-/esquery-1.4.2.tgz"; 2902 - sha512 = "JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng=="; 2903 - }; 2904 - }; 2905 - "esrecurse-4.3.0" = { 2906 - name = "esrecurse"; 2907 - packageName = "esrecurse"; 2908 - version = "4.3.0"; 2909 - src = fetchurl { 2910 - url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"; 2911 - sha512 = "KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="; 2912 - }; 2913 - }; 2914 - "estraverse-4.2.0" = { 2915 - name = "estraverse"; 2916 - packageName = "estraverse"; 2917 - version = "4.2.0"; 2918 - src = fetchurl { 2919 - url = "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz"; 2920 - sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13"; 2921 - }; 2922 - }; 2923 - "estraverse-5.2.0" = { 2924 - name = "estraverse"; 2925 - packageName = "estraverse"; 2926 - version = "5.2.0"; 2927 - src = fetchurl { 2928 - url = "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz"; 2929 - sha512 = "BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="; 2930 - }; 2931 - }; 2932 - "estraverse-5.3.0" = { 2933 - name = "estraverse"; 2934 - packageName = "estraverse"; 2935 - version = "5.3.0"; 2936 - src = fetchurl { 2937 - url = "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"; 2938 - sha512 = "MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="; 2939 - }; 2940 - }; 2941 - "esutils-2.0.2" = { 2942 - name = "esutils"; 2943 - packageName = "esutils"; 2944 - version = "2.0.2"; 2945 - src = fetchurl { 2946 - url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz"; 2947 - sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"; 2948 - }; 2949 - }; 2950 - "etag-1.8.1" = { 2951 - name = "etag"; 2952 - packageName = "etag"; 2953 - version = "1.8.1"; 2954 - src = fetchurl { 2955 - url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"; 2956 - sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; 2957 - }; 2958 - }; 2959 - "eventemitter3-4.0.7" = { 2960 - name = "eventemitter3"; 2961 - packageName = "eventemitter3"; 2962 - version = "4.0.7"; 2963 - src = fetchurl { 2964 - url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz"; 2965 - sha512 = "8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="; 2966 - }; 2967 - }; 2968 - "events-3.3.0" = { 2969 - name = "events"; 2970 - packageName = "events"; 2971 - version = "3.3.0"; 2972 - src = fetchurl { 2973 - url = "https://registry.npmjs.org/events/-/events-3.3.0.tgz"; 2974 - sha512 = "mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="; 2975 - }; 2976 - }; 2977 - "execa-5.1.1" = { 2978 - name = "execa"; 2979 - packageName = "execa"; 2980 - version = "5.1.1"; 2981 - src = fetchurl { 2982 - url = "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz"; 2983 - sha512 = "8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="; 2984 - }; 2985 - }; 2986 - "express-4.17.3" = { 2987 - name = "express"; 2988 - packageName = "express"; 2989 - version = "4.17.3"; 2990 - src = fetchurl { 2991 - url = "https://registry.npmjs.org/express/-/express-4.17.3.tgz"; 2992 - sha512 = "yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg=="; 2993 - }; 2994 - }; 2995 - "fast-deep-equal-3.1.3" = { 2996 - name = "fast-deep-equal"; 2997 - packageName = "fast-deep-equal"; 2998 - version = "3.1.3"; 2999 - src = fetchurl { 3000 - url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"; 3001 - sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 3002 - }; 3003 - }; 3004 - "fast-glob-3.2.11" = { 3005 - name = "fast-glob"; 3006 - packageName = "fast-glob"; 3007 - version = "3.2.11"; 3008 - src = fetchurl { 3009 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz"; 3010 - sha512 = "xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew=="; 3011 - }; 3012 - }; 3013 - "fast-json-stable-stringify-2.0.0" = { 3014 - name = "fast-json-stable-stringify"; 3015 - packageName = "fast-json-stable-stringify"; 3016 - version = "2.0.0"; 3017 - src = fetchurl { 3018 - url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; 3019 - sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2"; 3020 - }; 3021 - }; 3022 - "fast-levenshtein-2.0.6" = { 3023 - name = "fast-levenshtein"; 3024 - packageName = "fast-levenshtein"; 3025 - version = "2.0.6"; 3026 - src = fetchurl { 3027 - url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; 3028 - sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; 3029 - }; 3030 - }; 3031 - "fastest-levenshtein-1.0.12" = { 3032 - name = "fastest-levenshtein"; 3033 - packageName = "fastest-levenshtein"; 3034 - version = "1.0.12"; 3035 - src = fetchurl { 3036 - url = "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz"; 3037 - sha512 = "On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow=="; 3038 - }; 3039 - }; 3040 - "fastq-1.11.0" = { 3041 - name = "fastq"; 3042 - packageName = "fastq"; 3043 - version = "1.11.0"; 3044 - src = fetchurl { 3045 - url = "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz"; 3046 - sha512 = "7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g=="; 3047 - }; 3048 - }; 3049 - "faye-websocket-0.11.4" = { 3050 - name = "faye-websocket"; 3051 - packageName = "faye-websocket"; 3052 - version = "0.11.4"; 3053 - src = fetchurl { 3054 - url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz"; 3055 - sha512 = "CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g=="; 3056 - }; 3057 - }; 3058 - "file-entry-cache-6.0.1" = { 3059 - name = "file-entry-cache"; 3060 - packageName = "file-entry-cache"; 3061 - version = "6.0.1"; 3062 - src = fetchurl { 3063 - url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; 3064 - sha512 = "7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg=="; 3065 - }; 3066 - }; 3067 - "file-loader-6.2.0" = { 3068 - name = "file-loader"; 3069 - packageName = "file-loader"; 3070 - version = "6.2.0"; 3071 - src = fetchurl { 3072 - url = "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz"; 3073 - sha512 = "qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw=="; 3074 - }; 3075 - }; 3076 - "fill-range-7.0.1" = { 3077 - name = "fill-range"; 3078 - packageName = "fill-range"; 3079 - version = "7.0.1"; 3080 - src = fetchurl { 3081 - url = "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"; 3082 - sha512 = "qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="; 3083 - }; 3084 - }; 3085 - "finalhandler-1.1.2" = { 3086 - name = "finalhandler"; 3087 - packageName = "finalhandler"; 3088 - version = "1.1.2"; 3089 - src = fetchurl { 3090 - url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz"; 3091 - sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; 3092 - }; 3093 - }; 3094 - "find-cache-dir-3.3.2" = { 3095 - name = "find-cache-dir"; 3096 - packageName = "find-cache-dir"; 3097 - version = "3.3.2"; 3098 - src = fetchurl { 3099 - url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz"; 3100 - sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig=="; 3101 - }; 3102 - }; 3103 - "find-up-4.1.0" = { 3104 - name = "find-up"; 3105 - packageName = "find-up"; 3106 - version = "4.1.0"; 3107 - src = fetchurl { 3108 - url = "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"; 3109 - sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 3110 - }; 3111 - }; 3112 - "find-up-5.0.0" = { 3113 - name = "find-up"; 3114 - packageName = "find-up"; 3115 - version = "5.0.0"; 3116 - src = fetchurl { 3117 - url = "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"; 3118 - sha512 = "78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="; 3119 - }; 3120 - }; 3121 - "flat-5.0.2" = { 3122 - name = "flat"; 3123 - packageName = "flat"; 3124 - version = "5.0.2"; 3125 - src = fetchurl { 3126 - url = "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz"; 3127 - sha512 = "b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ=="; 3128 - }; 3129 - }; 3130 - "flat-cache-3.0.4" = { 3131 - name = "flat-cache"; 3132 - packageName = "flat-cache"; 3133 - version = "3.0.4"; 3134 - src = fetchurl { 3135 - url = "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz"; 3136 - sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; 3137 - }; 3138 - }; 3139 - "flatted-3.2.4" = { 3140 - name = "flatted"; 3141 - packageName = "flatted"; 3142 - version = "3.2.4"; 3143 - src = fetchurl { 3144 - url = "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz"; 3145 - sha512 = "8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw=="; 3146 - }; 3147 - }; 3148 - "follow-redirects-1.15.2" = { 3149 - name = "follow-redirects"; 3150 - packageName = "follow-redirects"; 3151 - version = "1.15.2"; 3152 - src = fetchurl { 3153 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz"; 3154 - sha512 = "VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="; 3155 - }; 3156 - }; 3157 - "for-each-0.3.3" = { 3158 - name = "for-each"; 3159 - packageName = "for-each"; 3160 - version = "0.3.3"; 3161 - src = fetchurl { 3162 - url = "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz"; 3163 - sha512 = "jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw=="; 3164 - }; 3165 - }; 3166 - "form-data-4.0.0" = { 3167 - name = "form-data"; 3168 - packageName = "form-data"; 3169 - version = "4.0.0"; 3170 - src = fetchurl { 3171 - url = "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz"; 3172 - sha512 = "ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww=="; 3173 - }; 3174 - }; 3175 - "forwarded-0.2.0" = { 3176 - name = "forwarded"; 3177 - packageName = "forwarded"; 3178 - version = "0.2.0"; 3179 - src = fetchurl { 3180 - url = "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz"; 3181 - sha512 = "buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="; 3182 - }; 3183 - }; 3184 - "fresh-0.5.2" = { 3185 - name = "fresh"; 3186 - packageName = "fresh"; 3187 - version = "0.5.2"; 3188 - src = fetchurl { 3189 - url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"; 3190 - sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; 3191 - }; 3192 - }; 3193 - "fs-monkey-1.0.3" = { 3194 - name = "fs-monkey"; 3195 - packageName = "fs-monkey"; 3196 - version = "1.0.3"; 3197 - src = fetchurl { 3198 - url = "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz"; 3199 - sha512 = "cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q=="; 3200 - }; 3201 - }; 3202 - "fs.realpath-1.0.0" = { 3203 - name = "fs.realpath"; 3204 - packageName = "fs.realpath"; 3205 - version = "1.0.0"; 3206 - src = fetchurl { 3207 - url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; 3208 - sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 3209 - }; 3210 - }; 3211 - "fsevents-2.3.2" = { 3212 - name = "fsevents"; 3213 - packageName = "fsevents"; 3214 - version = "2.3.2"; 3215 - src = fetchurl { 3216 - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"; 3217 - sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; 3218 - }; 3219 - }; 3220 - "function-bind-1.1.1" = { 3221 - name = "function-bind"; 3222 - packageName = "function-bind"; 3223 - version = "1.1.1"; 3224 - src = fetchurl { 3225 - url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"; 3226 - sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; 3227 - }; 3228 - }; 3229 - "function.prototype.name-1.1.5" = { 3230 - name = "function.prototype.name"; 3231 - packageName = "function.prototype.name"; 3232 - version = "1.1.5"; 3233 - src = fetchurl { 3234 - url = "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz"; 3235 - sha512 = "uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA=="; 3236 - }; 3237 - }; 3238 - "functions-have-names-1.2.3" = { 3239 - name = "functions-have-names"; 3240 - packageName = "functions-have-names"; 3241 - version = "1.2.3"; 3242 - src = fetchurl { 3243 - url = "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz"; 3244 - sha512 = "xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ=="; 3245 - }; 3246 - }; 3247 - "gensync-1.0.0-beta.2" = { 3248 - name = "gensync"; 3249 - packageName = "gensync"; 3250 - version = "1.0.0-beta.2"; 3251 - src = fetchurl { 3252 - url = "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"; 3253 - sha512 = "3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="; 3254 - }; 3255 - }; 3256 - "get-intrinsic-1.1.3" = { 3257 - name = "get-intrinsic"; 3258 - packageName = "get-intrinsic"; 3259 - version = "1.1.3"; 3260 - src = fetchurl { 3261 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz"; 3262 - sha512 = "QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A=="; 3263 - }; 3264 - }; 3265 - "get-stream-6.0.1" = { 3266 - name = "get-stream"; 3267 - packageName = "get-stream"; 3268 - version = "6.0.1"; 3269 - src = fetchurl { 3270 - url = "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz"; 3271 - sha512 = "ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="; 3272 - }; 3273 - }; 3274 - "get-symbol-description-1.0.0" = { 3275 - name = "get-symbol-description"; 3276 - packageName = "get-symbol-description"; 3277 - version = "1.0.0"; 3278 - src = fetchurl { 3279 - url = "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz"; 3280 - sha512 = "2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw=="; 3281 - }; 3282 - }; 3283 - "glob-7.1.3" = { 3284 - name = "glob"; 3285 - packageName = "glob"; 3286 - version = "7.1.3"; 3287 - src = fetchurl { 3288 - url = "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz"; 3289 - sha512 = "vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ=="; 3290 - }; 3291 - }; 3292 - "glob-parent-5.1.2" = { 3293 - name = "glob-parent"; 3294 - packageName = "glob-parent"; 3295 - version = "5.1.2"; 3296 - src = fetchurl { 3297 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"; 3298 - sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; 3299 - }; 3300 - }; 3301 - "glob-parent-6.0.2" = { 3302 - name = "glob-parent"; 3303 - packageName = "glob-parent"; 3304 - version = "6.0.2"; 3305 - src = fetchurl { 3306 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz"; 3307 - sha512 = "XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="; 3308 - }; 3309 - }; 3310 - "glob-to-regexp-0.4.1" = { 3311 - name = "glob-to-regexp"; 3312 - packageName = "glob-to-regexp"; 3313 - version = "0.4.1"; 3314 - src = fetchurl { 3315 - url = "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz"; 3316 - sha512 = "lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="; 3317 - }; 3318 - }; 3319 - "globals-11.12.0" = { 3320 - name = "globals"; 3321 - packageName = "globals"; 3322 - version = "11.12.0"; 3323 - src = fetchurl { 3324 - url = "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"; 3325 - sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 3326 - }; 3327 - }; 3328 - "globals-13.19.0" = { 3329 - name = "globals"; 3330 - packageName = "globals"; 3331 - version = "13.19.0"; 3332 - src = fetchurl { 3333 - url = "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz"; 3334 - sha512 = "dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ=="; 3335 - }; 3336 - }; 3337 - "globals-13.20.0" = { 3338 - name = "globals"; 3339 - packageName = "globals"; 3340 - version = "13.20.0"; 3341 - src = fetchurl { 3342 - url = "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz"; 3343 - sha512 = "Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ=="; 3344 - }; 3345 - }; 3346 - "globalthis-1.0.3" = { 3347 - name = "globalthis"; 3348 - packageName = "globalthis"; 3349 - version = "1.0.3"; 3350 - src = fetchurl { 3351 - url = "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz"; 3352 - sha512 = "sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA=="; 3353 - }; 3354 - }; 3355 - "globby-13.1.1" = { 3356 - name = "globby"; 3357 - packageName = "globby"; 3358 - version = "13.1.1"; 3359 - src = fetchurl { 3360 - url = "https://registry.npmjs.org/globby/-/globby-13.1.1.tgz"; 3361 - sha512 = "XMzoDZbGZ37tufiv7g0N4F/zp3zkwdFtVbV3EHsVl1KQr4RPLfNoT068/97RPshz2J5xYNEjLKKBKaGHifBd3Q=="; 3362 - }; 3363 - }; 3364 - "globby-6.1.0" = { 3365 - name = "globby"; 3366 - packageName = "globby"; 3367 - version = "6.1.0"; 3368 - src = fetchurl { 3369 - url = "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz"; 3370 - sha1 = "f5a6d70e8395e21c858fb0489d64df02424d506c"; 3371 - }; 3372 - }; 3373 - "gopd-1.0.1" = { 3374 - name = "gopd"; 3375 - packageName = "gopd"; 3376 - version = "1.0.1"; 3377 - src = fetchurl { 3378 - url = "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz"; 3379 - sha512 = "d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA=="; 3380 - }; 3381 - }; 3382 - "graceful-fs-4.2.9" = { 3383 - name = "graceful-fs"; 3384 - packageName = "graceful-fs"; 3385 - version = "4.2.9"; 3386 - src = fetchurl { 3387 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz"; 3388 - sha512 = "NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ=="; 3389 - }; 3390 - }; 3391 - "grapheme-splitter-1.0.4" = { 3392 - name = "grapheme-splitter"; 3393 - packageName = "grapheme-splitter"; 3394 - version = "1.0.4"; 3395 - src = fetchurl { 3396 - url = "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz"; 3397 - sha512 = "bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="; 3398 - }; 3399 - }; 3400 - "gzip-size-6.0.0" = { 3401 - name = "gzip-size"; 3402 - packageName = "gzip-size"; 3403 - version = "6.0.0"; 3404 - src = fetchurl { 3405 - url = "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz"; 3406 - sha512 = "ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q=="; 3407 - }; 3408 - }; 3409 - "handle-thing-2.0.1" = { 3410 - name = "handle-thing"; 3411 - packageName = "handle-thing"; 3412 - version = "2.0.1"; 3413 - src = fetchurl { 3414 - url = "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz"; 3415 - sha512 = "9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg=="; 3416 - }; 3417 - }; 3418 - "has-1.0.3" = { 3419 - name = "has"; 3420 - packageName = "has"; 3421 - version = "1.0.3"; 3422 - src = fetchurl { 3423 - url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; 3424 - sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 3425 - }; 3426 - }; 3427 - "has-bigints-1.0.2" = { 3428 - name = "has-bigints"; 3429 - packageName = "has-bigints"; 3430 - version = "1.0.2"; 3431 - src = fetchurl { 3432 - url = "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz"; 3433 - sha512 = "tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ=="; 3434 - }; 3435 - }; 3436 - "has-flag-3.0.0" = { 3437 - name = "has-flag"; 3438 - packageName = "has-flag"; 3439 - version = "3.0.0"; 3440 - src = fetchurl { 3441 - url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"; 3442 - sha512 = "sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="; 3443 - }; 3444 - }; 3445 - "has-flag-4.0.0" = { 3446 - name = "has-flag"; 3447 - packageName = "has-flag"; 3448 - version = "4.0.0"; 3449 - src = fetchurl { 3450 - url = "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"; 3451 - sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; 3452 - }; 3453 - }; 3454 - "has-property-descriptors-1.0.0" = { 3455 - name = "has-property-descriptors"; 3456 - packageName = "has-property-descriptors"; 3457 - version = "1.0.0"; 3458 - src = fetchurl { 3459 - url = "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"; 3460 - sha512 = "62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ=="; 3461 - }; 3462 - }; 3463 - "has-proto-1.0.1" = { 3464 - name = "has-proto"; 3465 - packageName = "has-proto"; 3466 - version = "1.0.1"; 3467 - src = fetchurl { 3468 - url = "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz"; 3469 - sha512 = "7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg=="; 3470 - }; 3471 - }; 3472 - "has-symbols-1.0.3" = { 3473 - name = "has-symbols"; 3474 - packageName = "has-symbols"; 3475 - version = "1.0.3"; 3476 - src = fetchurl { 3477 - url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz"; 3478 - sha512 = "l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="; 3479 - }; 3480 - }; 3481 - "has-tostringtag-1.0.0" = { 3482 - name = "has-tostringtag"; 3483 - packageName = "has-tostringtag"; 3484 - version = "1.0.0"; 3485 - src = fetchurl { 3486 - url = "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"; 3487 - sha512 = "kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="; 3488 - }; 3489 - }; 3490 - "hash-sum-1.0.2" = { 3491 - name = "hash-sum"; 3492 - packageName = "hash-sum"; 3493 - version = "1.0.2"; 3494 - src = fetchurl { 3495 - url = "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz"; 3496 - sha1 = "33b40777754c6432573c120cc3808bbd10d47f04"; 3497 - }; 3498 - }; 3499 - "he-1.2.0" = { 3500 - name = "he"; 3501 - packageName = "he"; 3502 - version = "1.2.0"; 3503 - src = fetchurl { 3504 - url = "https://registry.npmjs.org/he/-/he-1.2.0.tgz"; 3505 - sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="; 3506 - }; 3507 - }; 3508 - "hpack.js-2.1.6" = { 3509 - name = "hpack.js"; 3510 - packageName = "hpack.js"; 3511 - version = "2.1.6"; 3512 - src = fetchurl { 3513 - url = "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz"; 3514 - sha1 = "87774c0949e513f42e84575b3c45681fade2a0b2"; 3515 - }; 3516 - }; 3517 - "html-entities-2.3.2" = { 3518 - name = "html-entities"; 3519 - packageName = "html-entities"; 3520 - version = "2.3.2"; 3521 - src = fetchurl { 3522 - url = "https://registry.npmjs.org/html-entities/-/html-entities-2.3.2.tgz"; 3523 - sha512 = "c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ=="; 3524 - }; 3525 - }; 3526 - "html-minifier-terser-6.0.2" = { 3527 - name = "html-minifier-terser"; 3528 - packageName = "html-minifier-terser"; 3529 - version = "6.0.2"; 3530 - src = fetchurl { 3531 - url = "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.0.2.tgz"; 3532 - sha512 = "AgYO3UGhMYQx2S/FBJT3EM0ZYcKmH6m9XL9c1v77BeK/tYJxGPxT1/AtsdUi4FcP8kZGmqqnItCcjFPcX9hk6A=="; 3533 - }; 3534 - }; 3535 - "html-webpack-plugin-5.5.1" = { 3536 - name = "html-webpack-plugin"; 3537 - packageName = "html-webpack-plugin"; 3538 - version = "5.5.1"; 3539 - src = fetchurl { 3540 - url = "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.1.tgz"; 3541 - sha512 = "cTUzZ1+NqjGEKjmVgZKLMdiFg3m9MdRXkZW2OEe69WYVi5ONLMmlnSZdXzGGMOq0C8jGDrL6EWyEDDUioHO/pA=="; 3542 - }; 3543 - }; 3544 - "htmlparser2-6.1.0" = { 3545 - name = "htmlparser2"; 3546 - packageName = "htmlparser2"; 3547 - version = "6.1.0"; 3548 - src = fetchurl { 3549 - url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz"; 3550 - sha512 = "gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A=="; 3551 - }; 3552 - }; 3553 - "http-deceiver-1.2.7" = { 3554 - name = "http-deceiver"; 3555 - packageName = "http-deceiver"; 3556 - version = "1.2.7"; 3557 - src = fetchurl { 3558 - url = "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz"; 3559 - sha1 = "fa7168944ab9a519d337cb0bec7284dc3e723d87"; 3560 - }; 3561 - }; 3562 - "http-errors-1.6.3" = { 3563 - name = "http-errors"; 3564 - packageName = "http-errors"; 3565 - version = "1.6.3"; 3566 - src = fetchurl { 3567 - url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz"; 3568 - sha1 = "8b55680bb4be283a0b5bf4ea2e38580be1d9320d"; 3569 - }; 3570 - }; 3571 - "http-errors-1.8.1" = { 3572 - name = "http-errors"; 3573 - packageName = "http-errors"; 3574 - version = "1.8.1"; 3575 - src = fetchurl { 3576 - url = "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz"; 3577 - sha512 = "Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g=="; 3578 - }; 3579 - }; 3580 - "http-parser-js-0.5.5" = { 3581 - name = "http-parser-js"; 3582 - packageName = "http-parser-js"; 3583 - version = "0.5.5"; 3584 - src = fetchurl { 3585 - url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.5.tgz"; 3586 - sha512 = "x+JVEkO2PoM8qqpbPbOL3cqHPwerep7OwzK7Ay+sMQjKzaKCqWvjoXm5tqMP9tXWWTnTzAjIhXg+J99XYuPhPA=="; 3587 - }; 3588 - }; 3589 - "http-proxy-1.18.1" = { 3590 - name = "http-proxy"; 3591 - packageName = "http-proxy"; 3592 - version = "1.18.1"; 3593 - src = fetchurl { 3594 - url = "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz"; 3595 - sha512 = "7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ=="; 3596 - }; 3597 - }; 3598 - "http-proxy-middleware-2.0.4" = { 3599 - name = "http-proxy-middleware"; 3600 - packageName = "http-proxy-middleware"; 3601 - version = "2.0.4"; 3602 - src = fetchurl { 3603 - url = "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.4.tgz"; 3604 - sha512 = "m/4FxX17SUvz4lJ5WPXOHDUuCwIqXLfLHs1s0uZ3oYjhoXlx9csYxaOa0ElDEJ+h8Q4iJ1s+lTMbiCa4EXIJqg=="; 3605 - }; 3606 - }; 3607 - "human-signals-2.1.0" = { 3608 - name = "human-signals"; 3609 - packageName = "human-signals"; 3610 - version = "2.1.0"; 3611 - src = fetchurl { 3612 - url = "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz"; 3613 - sha512 = "B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="; 3614 - }; 3615 - }; 3616 - "humanize-duration-3.28.0" = { 3617 - name = "humanize-duration"; 3618 - packageName = "humanize-duration"; 3619 - version = "3.28.0"; 3620 - src = fetchurl { 3621 - url = "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.28.0.tgz"; 3622 - sha512 = "jMAxraOOmHuPbffLVDKkEKi/NeG8dMqP8lGRd6Tbf7JgAeG33jjgPWDbXXU7ypCI0o+oNKJFgbSB9FKVdWNI2A=="; 3623 - }; 3624 - }; 3625 - "iconv-lite-0.4.24" = { 3626 - name = "iconv-lite"; 3627 - packageName = "iconv-lite"; 3628 - version = "0.4.24"; 3629 - src = fetchurl { 3630 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; 3631 - sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 3632 - }; 3633 - }; 3634 - "icss-utils-5.1.0" = { 3635 - name = "icss-utils"; 3636 - packageName = "icss-utils"; 3637 - version = "5.1.0"; 3638 - src = fetchurl { 3639 - url = "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz"; 3640 - sha512 = "soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA=="; 3641 - }; 3642 - }; 3643 - "ignore-5.2.0" = { 3644 - name = "ignore"; 3645 - packageName = "ignore"; 3646 - version = "5.2.0"; 3647 - src = fetchurl { 3648 - url = "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz"; 3649 - sha512 = "CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="; 3650 - }; 3651 - }; 3652 - "immutable-4.0.0" = { 3653 - name = "immutable"; 3654 - packageName = "immutable"; 3655 - version = "4.0.0"; 3656 - src = fetchurl { 3657 - url = "https://registry.npmjs.org/immutable/-/immutable-4.0.0.tgz"; 3658 - sha512 = "zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw=="; 3659 - }; 3660 - }; 3661 - "import-fresh-3.3.0" = { 3662 - name = "import-fresh"; 3663 - packageName = "import-fresh"; 3664 - version = "3.3.0"; 3665 - src = fetchurl { 3666 - url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"; 3667 - sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 3668 - }; 3669 - }; 3670 - "import-local-3.0.3" = { 3671 - name = "import-local"; 3672 - packageName = "import-local"; 3673 - version = "3.0.3"; 3674 - src = fetchurl { 3675 - url = "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz"; 3676 - sha512 = "bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA=="; 3677 - }; 3678 - }; 3679 - "imurmurhash-0.1.4" = { 3680 - name = "imurmurhash"; 3681 - packageName = "imurmurhash"; 3682 - version = "0.1.4"; 3683 - src = fetchurl { 3684 - url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"; 3685 - sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; 3686 - }; 3687 - }; 3688 - "inflight-1.0.6" = { 3689 - name = "inflight"; 3690 - packageName = "inflight"; 3691 - version = "1.0.6"; 3692 - src = fetchurl { 3693 - url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; 3694 - sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 3695 - }; 3696 - }; 3697 - "inherits-2.0.3" = { 3698 - name = "inherits"; 3699 - packageName = "inherits"; 3700 - version = "2.0.3"; 3701 - src = fetchurl { 3702 - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"; 3703 - sha1 = "633c2c83e3da42a502f52466022480f4208261de"; 3704 - }; 3705 - }; 3706 - "inherits-2.0.4" = { 3707 - name = "inherits"; 3708 - packageName = "inherits"; 3709 - version = "2.0.4"; 3710 - src = fetchurl { 3711 - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; 3712 - sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 3713 - }; 3714 - }; 3715 - "internal-slot-1.0.4" = { 3716 - name = "internal-slot"; 3717 - packageName = "internal-slot"; 3718 - version = "1.0.4"; 3719 - src = fetchurl { 3720 - url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz"; 3721 - sha512 = "tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ=="; 3722 - }; 3723 - }; 3724 - "interpret-2.2.0" = { 3725 - name = "interpret"; 3726 - packageName = "interpret"; 3727 - version = "2.2.0"; 3728 - src = fetchurl { 3729 - url = "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz"; 3730 - sha512 = "Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw=="; 3731 - }; 3732 - }; 3733 - "ipaddr.js-1.9.1" = { 3734 - name = "ipaddr.js"; 3735 - packageName = "ipaddr.js"; 3736 - version = "1.9.1"; 3737 - src = fetchurl { 3738 - url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz"; 3739 - sha512 = "0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="; 3740 - }; 3741 - }; 3742 - "ipaddr.js-2.0.1" = { 3743 - name = "ipaddr.js"; 3744 - packageName = "ipaddr.js"; 3745 - version = "2.0.1"; 3746 - src = fetchurl { 3747 - url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz"; 3748 - sha512 = "1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng=="; 3749 - }; 3750 - }; 3751 - "is-array-buffer-3.0.1" = { 3752 - name = "is-array-buffer"; 3753 - packageName = "is-array-buffer"; 3754 - version = "3.0.1"; 3755 - src = fetchurl { 3756 - url = "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz"; 3757 - sha512 = "ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ=="; 3758 - }; 3759 - }; 3760 - "is-bigint-1.0.4" = { 3761 - name = "is-bigint"; 3762 - packageName = "is-bigint"; 3763 - version = "1.0.4"; 3764 - src = fetchurl { 3765 - url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz"; 3766 - sha512 = "zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg=="; 3767 - }; 3768 - }; 3769 - "is-binary-path-2.1.0" = { 3770 - name = "is-binary-path"; 3771 - packageName = "is-binary-path"; 3772 - version = "2.1.0"; 3773 - src = fetchurl { 3774 - url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"; 3775 - sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 3776 - }; 3777 - }; 3778 - "is-boolean-object-1.1.2" = { 3779 - name = "is-boolean-object"; 3780 - packageName = "is-boolean-object"; 3781 - version = "1.1.2"; 3782 - src = fetchurl { 3783 - url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; 3784 - sha512 = "gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA=="; 3785 - }; 3786 - }; 3787 - "is-callable-1.2.7" = { 3788 - name = "is-callable"; 3789 - packageName = "is-callable"; 3790 - version = "1.2.7"; 3791 - src = fetchurl { 3792 - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz"; 3793 - sha512 = "1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="; 3794 - }; 3795 - }; 3796 - "is-core-module-2.11.0" = { 3797 - name = "is-core-module"; 3798 - packageName = "is-core-module"; 3799 - version = "2.11.0"; 3800 - src = fetchurl { 3801 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"; 3802 - sha512 = "RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw=="; 3803 - }; 3804 - }; 3805 - "is-date-object-1.0.1" = { 3806 - name = "is-date-object"; 3807 - packageName = "is-date-object"; 3808 - version = "1.0.1"; 3809 - src = fetchurl { 3810 - url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz"; 3811 - sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"; 3812 - }; 3813 - }; 3814 - "is-docker-2.2.1" = { 3815 - name = "is-docker"; 3816 - packageName = "is-docker"; 3817 - version = "2.2.1"; 3818 - src = fetchurl { 3819 - url = "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz"; 3820 - sha512 = "F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ=="; 3821 - }; 3822 - }; 3823 - "is-extglob-2.1.1" = { 3824 - name = "is-extglob"; 3825 - packageName = "is-extglob"; 3826 - version = "2.1.1"; 3827 - src = fetchurl { 3828 - url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"; 3829 - sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; 3830 - }; 3831 - }; 3832 - "is-glob-4.0.1" = { 3833 - name = "is-glob"; 3834 - packageName = "is-glob"; 3835 - version = "4.0.1"; 3836 - src = fetchurl { 3837 - url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz"; 3838 - sha512 = "5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg=="; 3839 - }; 3840 - }; 3841 - "is-glob-4.0.3" = { 3842 - name = "is-glob"; 3843 - packageName = "is-glob"; 3844 - version = "4.0.3"; 3845 - src = fetchurl { 3846 - url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"; 3847 - sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="; 3848 - }; 3849 - }; 3850 - "is-negative-zero-2.0.2" = { 3851 - name = "is-negative-zero"; 3852 - packageName = "is-negative-zero"; 3853 - version = "2.0.2"; 3854 - src = fetchurl { 3855 - url = "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz"; 3856 - sha512 = "dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA=="; 3857 - }; 3858 - }; 3859 - "is-number-7.0.0" = { 3860 - name = "is-number"; 3861 - packageName = "is-number"; 3862 - version = "7.0.0"; 3863 - src = fetchurl { 3864 - url = "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"; 3865 - sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 3866 - }; 3867 - }; 3868 - "is-number-object-1.0.7" = { 3869 - name = "is-number-object"; 3870 - packageName = "is-number-object"; 3871 - version = "1.0.7"; 3872 - src = fetchurl { 3873 - url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz"; 3874 - sha512 = "k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ=="; 3875 - }; 3876 - }; 3877 - "is-path-cwd-2.2.0" = { 3878 - name = "is-path-cwd"; 3879 - packageName = "is-path-cwd"; 3880 - version = "2.2.0"; 3881 - src = fetchurl { 3882 - url = "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz"; 3883 - sha512 = "w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ=="; 3884 - }; 3885 - }; 3886 - "is-path-in-cwd-2.1.0" = { 3887 - name = "is-path-in-cwd"; 3888 - packageName = "is-path-in-cwd"; 3889 - version = "2.1.0"; 3890 - src = fetchurl { 3891 - url = "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz"; 3892 - sha512 = "rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ=="; 3893 - }; 3894 - }; 3895 - "is-path-inside-2.1.0" = { 3896 - name = "is-path-inside"; 3897 - packageName = "is-path-inside"; 3898 - version = "2.1.0"; 3899 - src = fetchurl { 3900 - url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz"; 3901 - sha512 = "wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg=="; 3902 - }; 3903 - }; 3904 - "is-path-inside-3.0.3" = { 3905 - name = "is-path-inside"; 3906 - packageName = "is-path-inside"; 3907 - version = "3.0.3"; 3908 - src = fetchurl { 3909 - url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"; 3910 - sha512 = "Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="; 3911 - }; 3912 - }; 3913 - "is-plain-obj-3.0.0" = { 3914 - name = "is-plain-obj"; 3915 - packageName = "is-plain-obj"; 3916 - version = "3.0.0"; 3917 - src = fetchurl { 3918 - url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz"; 3919 - sha512 = "gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA=="; 3920 - }; 3921 - }; 3922 - "is-plain-object-2.0.4" = { 3923 - name = "is-plain-object"; 3924 - packageName = "is-plain-object"; 3925 - version = "2.0.4"; 3926 - src = fetchurl { 3927 - url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"; 3928 - sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="; 3929 - }; 3930 - }; 3931 - "is-regex-1.1.4" = { 3932 - name = "is-regex"; 3933 - packageName = "is-regex"; 3934 - version = "1.1.4"; 3935 - src = fetchurl { 3936 - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"; 3937 - sha512 = "kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="; 3938 - }; 3939 - }; 3940 - "is-shared-array-buffer-1.0.2" = { 3941 - name = "is-shared-array-buffer"; 3942 - packageName = "is-shared-array-buffer"; 3943 - version = "1.0.2"; 3944 - src = fetchurl { 3945 - url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz"; 3946 - sha512 = "sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA=="; 3947 - }; 3948 - }; 3949 - "is-stream-2.0.1" = { 3950 - name = "is-stream"; 3951 - packageName = "is-stream"; 3952 - version = "2.0.1"; 3953 - src = fetchurl { 3954 - url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"; 3955 - sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="; 3956 - }; 3957 - }; 3958 - "is-string-1.0.7" = { 3959 - name = "is-string"; 3960 - packageName = "is-string"; 3961 - version = "1.0.7"; 3962 - src = fetchurl { 3963 - url = "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"; 3964 - sha512 = "tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="; 3965 - }; 3966 - }; 3967 - "is-symbol-1.0.4" = { 3968 - name = "is-symbol"; 3969 - packageName = "is-symbol"; 3970 - version = "1.0.4"; 3971 - src = fetchurl { 3972 - url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"; 3973 - sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; 3974 - }; 3975 - }; 3976 - "is-typed-array-1.1.10" = { 3977 - name = "is-typed-array"; 3978 - packageName = "is-typed-array"; 3979 - version = "1.1.10"; 3980 - src = fetchurl { 3981 - url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz"; 3982 - sha512 = "PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A=="; 3983 - }; 3984 - }; 3985 - "is-weakref-1.0.2" = { 3986 - name = "is-weakref"; 3987 - packageName = "is-weakref"; 3988 - version = "1.0.2"; 3989 - src = fetchurl { 3990 - url = "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"; 3991 - sha512 = "qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="; 3992 - }; 3993 - }; 3994 - "is-wsl-2.2.0" = { 3995 - name = "is-wsl"; 3996 - packageName = "is-wsl"; 3997 - version = "2.2.0"; 3998 - src = fetchurl { 3999 - url = "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz"; 4000 - sha512 = "fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="; 4001 - }; 4002 - }; 4003 - "isarray-1.0.0" = { 4004 - name = "isarray"; 4005 - packageName = "isarray"; 4006 - version = "1.0.0"; 4007 - src = fetchurl { 4008 - url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; 4009 - sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 4010 - }; 4011 - }; 4012 - "isexe-2.0.0" = { 4013 - name = "isexe"; 4014 - packageName = "isexe"; 4015 - version = "2.0.0"; 4016 - src = fetchurl { 4017 - url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"; 4018 - sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; 4019 - }; 4020 - }; 4021 - "isobject-3.0.1" = { 4022 - name = "isobject"; 4023 - packageName = "isobject"; 4024 - version = "3.0.1"; 4025 - src = fetchurl { 4026 - url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"; 4027 - sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; 4028 - }; 4029 - }; 4030 - "jest-worker-27.4.6" = { 4031 - name = "jest-worker"; 4032 - packageName = "jest-worker"; 4033 - version = "27.4.6"; 4034 - src = fetchurl { 4035 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.4.6.tgz"; 4036 - sha512 = "gHWJF/6Xi5CTG5QCvROr6GcmpIqNYpDJyc8A1h/DyXqH1tD6SnRCM0d3U5msV31D2LB/U+E0M+W4oyvKV44oNw=="; 4037 - }; 4038 - }; 4039 - "js-sdsl-4.1.4" = { 4040 - name = "js-sdsl"; 4041 - packageName = "js-sdsl"; 4042 - version = "4.1.4"; 4043 - src = fetchurl { 4044 - url = "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.4.tgz"; 4045 - sha512 = "Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw=="; 4046 - }; 4047 - }; 4048 - "js-tokens-4.0.0" = { 4049 - name = "js-tokens"; 4050 - packageName = "js-tokens"; 4051 - version = "4.0.0"; 4052 - src = fetchurl { 4053 - url = "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"; 4054 - sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 4055 - }; 4056 - }; 4057 - "js-yaml-4.1.0" = { 4058 - name = "js-yaml"; 4059 - packageName = "js-yaml"; 4060 - version = "4.1.0"; 4061 - src = fetchurl { 4062 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz"; 4063 - sha512 = "wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="; 4064 - }; 4065 - }; 4066 - "jsesc-0.5.0" = { 4067 - name = "jsesc"; 4068 - packageName = "jsesc"; 4069 - version = "0.5.0"; 4070 - src = fetchurl { 4071 - url = "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"; 4072 - sha512 = "uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA=="; 4073 - }; 4074 - }; 4075 - "jsesc-2.5.2" = { 4076 - name = "jsesc"; 4077 - packageName = "jsesc"; 4078 - version = "2.5.2"; 4079 - src = fetchurl { 4080 - url = "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"; 4081 - sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; 4082 - }; 4083 - }; 4084 - "json-parse-even-better-errors-2.3.1" = { 4085 - name = "json-parse-even-better-errors"; 4086 - packageName = "json-parse-even-better-errors"; 4087 - version = "2.3.1"; 4088 - src = fetchurl { 4089 - url = "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz"; 4090 - sha512 = "xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="; 4091 - }; 4092 - }; 4093 - "json-schema-traverse-0.4.1" = { 4094 - name = "json-schema-traverse"; 4095 - packageName = "json-schema-traverse"; 4096 - version = "0.4.1"; 4097 - src = fetchurl { 4098 - url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; 4099 - sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 4100 - }; 4101 - }; 4102 - "json-schema-traverse-1.0.0" = { 4103 - name = "json-schema-traverse"; 4104 - packageName = "json-schema-traverse"; 4105 - version = "1.0.0"; 4106 - src = fetchurl { 4107 - url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; 4108 - sha512 = "NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="; 4109 - }; 4110 - }; 4111 - "json-stable-stringify-without-jsonify-1.0.1" = { 4112 - name = "json-stable-stringify-without-jsonify"; 4113 - packageName = "json-stable-stringify-without-jsonify"; 4114 - version = "1.0.1"; 4115 - src = fetchurl { 4116 - url = "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; 4117 - sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651"; 4118 - }; 4119 - }; 4120 - "json5-1.0.1" = { 4121 - name = "json5"; 4122 - packageName = "json5"; 4123 - version = "1.0.1"; 4124 - src = fetchurl { 4125 - url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"; 4126 - sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; 4127 - }; 4128 - }; 4129 - "json5-2.1.3" = { 4130 - name = "json5"; 4131 - packageName = "json5"; 4132 - version = "2.1.3"; 4133 - src = fetchurl { 4134 - url = "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz"; 4135 - sha512 = "KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA=="; 4136 - }; 4137 - }; 4138 - "json5-2.2.3" = { 4139 - name = "json5"; 4140 - packageName = "json5"; 4141 - version = "2.2.3"; 4142 - src = fetchurl { 4143 - url = "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz"; 4144 - sha512 = "XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="; 4145 - }; 4146 - }; 4147 - "kind-of-6.0.3" = { 4148 - name = "kind-of"; 4149 - packageName = "kind-of"; 4150 - version = "6.0.3"; 4151 - src = fetchurl { 4152 - url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"; 4153 - sha512 = "dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="; 4154 - }; 4155 - }; 4156 - "klona-2.0.6" = { 4157 - name = "klona"; 4158 - packageName = "klona"; 4159 - version = "2.0.6"; 4160 - src = fetchurl { 4161 - url = "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz"; 4162 - sha512 = "dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA=="; 4163 - }; 4164 - }; 4165 - "launch-editor-2.6.0" = { 4166 - name = "launch-editor"; 4167 - packageName = "launch-editor"; 4168 - version = "2.6.0"; 4169 - src = fetchurl { 4170 - url = "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz"; 4171 - sha512 = "JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ=="; 4172 - }; 4173 - }; 4174 - "levn-0.4.1" = { 4175 - name = "levn"; 4176 - packageName = "levn"; 4177 - version = "0.4.1"; 4178 - src = fetchurl { 4179 - url = "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz"; 4180 - sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="; 4181 - }; 4182 - }; 4183 - "linkify-html-4.1.1" = { 4184 - name = "linkify-html"; 4185 - packageName = "linkify-html"; 4186 - version = "4.1.1"; 4187 - src = fetchurl { 4188 - url = "https://registry.npmjs.org/linkify-html/-/linkify-html-4.1.1.tgz"; 4189 - sha512 = "7RcF7gIhEOGBBvs7orCJ2tevaz7iF0ZLZSRPWNNBOnW/uGjOOQYB+ztSeHF6dchMC2dM9H8zZlt6Z959bjteaw=="; 4190 - }; 4191 - }; 4192 - "linkifyjs-4.1.1" = { 4193 - name = "linkifyjs"; 4194 - packageName = "linkifyjs"; 4195 - version = "4.1.1"; 4196 - src = fetchurl { 4197 - url = "https://registry.npmjs.org/linkifyjs/-/linkifyjs-4.1.1.tgz"; 4198 - sha512 = "zFN/CTVmbcVef+WaDXT63dNzzkfRBKT1j464NJQkV7iSgJU0sLBus9W0HBwnXK13/hf168pbrx/V/bjEHOXNHA=="; 4199 - }; 4200 - }; 4201 - "loader-runner-4.2.0" = { 4202 - name = "loader-runner"; 4203 - packageName = "loader-runner"; 4204 - version = "4.2.0"; 4205 - src = fetchurl { 4206 - url = "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz"; 4207 - sha512 = "92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw=="; 4208 - }; 4209 - }; 4210 - "loader-utils-1.4.0" = { 4211 - name = "loader-utils"; 4212 - packageName = "loader-utils"; 4213 - version = "1.4.0"; 4214 - src = fetchurl { 4215 - url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz"; 4216 - sha512 = "qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA=="; 4217 - }; 4218 - }; 4219 - "loader-utils-2.0.0" = { 4220 - name = "loader-utils"; 4221 - packageName = "loader-utils"; 4222 - version = "2.0.0"; 4223 - src = fetchurl { 4224 - url = "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz"; 4225 - sha512 = "rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ=="; 4226 - }; 4227 - }; 4228 - "locate-path-5.0.0" = { 4229 - name = "locate-path"; 4230 - packageName = "locate-path"; 4231 - version = "5.0.0"; 4232 - src = fetchurl { 4233 - url = "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"; 4234 - sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="; 4235 - }; 4236 - }; 4237 - "locate-path-6.0.0" = { 4238 - name = "locate-path"; 4239 - packageName = "locate-path"; 4240 - version = "6.0.0"; 4241 - src = fetchurl { 4242 - url = "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"; 4243 - sha512 = "iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="; 4244 - }; 4245 - }; 4246 - "lodash-4.17.21" = { 4247 - name = "lodash"; 4248 - packageName = "lodash"; 4249 - version = "4.17.21"; 4250 - src = fetchurl { 4251 - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"; 4252 - sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; 4253 - }; 4254 - }; 4255 - "lodash-es-4.17.21" = { 4256 - name = "lodash-es"; 4257 - packageName = "lodash-es"; 4258 - version = "4.17.21"; 4259 - src = fetchurl { 4260 - url = "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz"; 4261 - sha512 = "mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="; 4262 - }; 4263 - }; 4264 - "lodash.debounce-4.0.8" = { 4265 - name = "lodash.debounce"; 4266 - packageName = "lodash.debounce"; 4267 - version = "4.0.8"; 4268 - src = fetchurl { 4269 - url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; 4270 - sha512 = "FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="; 4271 - }; 4272 - }; 4273 - "lodash.merge-4.6.2" = { 4274 - name = "lodash.merge"; 4275 - packageName = "lodash.merge"; 4276 - version = "4.6.2"; 4277 - src = fetchurl { 4278 - url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"; 4279 - sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; 4280 - }; 4281 - }; 4282 - "lower-case-2.0.2" = { 4283 - name = "lower-case"; 4284 - packageName = "lower-case"; 4285 - version = "2.0.2"; 4286 - src = fetchurl { 4287 - url = "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz"; 4288 - sha512 = "7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg=="; 4289 - }; 4290 - }; 4291 - "lru-cache-4.1.5" = { 4292 - name = "lru-cache"; 4293 - packageName = "lru-cache"; 4294 - version = "4.1.5"; 4295 - src = fetchurl { 4296 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"; 4297 - sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="; 4298 - }; 4299 - }; 4300 - "lru-cache-5.1.1" = { 4301 - name = "lru-cache"; 4302 - packageName = "lru-cache"; 4303 - version = "5.1.1"; 4304 - src = fetchurl { 4305 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz"; 4306 - sha512 = "KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="; 4307 - }; 4308 - }; 4309 - "lru-cache-6.0.0" = { 4310 - name = "lru-cache"; 4311 - packageName = "lru-cache"; 4312 - version = "6.0.0"; 4313 - src = fetchurl { 4314 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"; 4315 - sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 4316 - }; 4317 - }; 4318 - "make-dir-3.1.0" = { 4319 - name = "make-dir"; 4320 - packageName = "make-dir"; 4321 - version = "3.1.0"; 4322 - src = fetchurl { 4323 - url = "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"; 4324 - sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 4325 - }; 4326 - }; 4327 - "media-typer-0.3.0" = { 4328 - name = "media-typer"; 4329 - packageName = "media-typer"; 4330 - version = "0.3.0"; 4331 - src = fetchurl { 4332 - url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; 4333 - sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; 4334 - }; 4335 - }; 4336 - "memfs-3.4.1" = { 4337 - name = "memfs"; 4338 - packageName = "memfs"; 4339 - version = "3.4.1"; 4340 - src = fetchurl { 4341 - url = "https://registry.npmjs.org/memfs/-/memfs-3.4.1.tgz"; 4342 - sha512 = "1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw=="; 4343 - }; 4344 - }; 4345 - "merge-descriptors-1.0.1" = { 4346 - name = "merge-descriptors"; 4347 - packageName = "merge-descriptors"; 4348 - version = "1.0.1"; 4349 - src = fetchurl { 4350 - url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; 4351 - sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; 4352 - }; 4353 - }; 4354 - "merge-source-map-1.1.0" = { 4355 - name = "merge-source-map"; 4356 - packageName = "merge-source-map"; 4357 - version = "1.1.0"; 4358 - src = fetchurl { 4359 - url = "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz"; 4360 - sha512 = "Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw=="; 4361 - }; 4362 - }; 4363 - "merge-stream-2.0.0" = { 4364 - name = "merge-stream"; 4365 - packageName = "merge-stream"; 4366 - version = "2.0.0"; 4367 - src = fetchurl { 4368 - url = "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"; 4369 - sha512 = "abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="; 4370 - }; 4371 - }; 4372 - "merge2-1.4.1" = { 4373 - name = "merge2"; 4374 - packageName = "merge2"; 4375 - version = "1.4.1"; 4376 - src = fetchurl { 4377 - url = "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"; 4378 - sha512 = "8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="; 4379 - }; 4380 - }; 4381 - "methods-1.1.2" = { 4382 - name = "methods"; 4383 - packageName = "methods"; 4384 - version = "1.1.2"; 4385 - src = fetchurl { 4386 - url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz"; 4387 - sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; 4388 - }; 4389 - }; 4390 - "micromatch-4.0.4" = { 4391 - name = "micromatch"; 4392 - packageName = "micromatch"; 4393 - version = "4.0.4"; 4394 - src = fetchurl { 4395 - url = "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz"; 4396 - sha512 = "pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg=="; 4397 - }; 4398 - }; 4399 - "mime-1.6.0" = { 4400 - name = "mime"; 4401 - packageName = "mime"; 4402 - version = "1.6.0"; 4403 - src = fetchurl { 4404 - url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"; 4405 - sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; 4406 - }; 4407 - }; 4408 - "mime-2.5.2" = { 4409 - name = "mime"; 4410 - packageName = "mime"; 4411 - version = "2.5.2"; 4412 - src = fetchurl { 4413 - url = "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz"; 4414 - sha512 = "tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg=="; 4415 - }; 4416 - }; 4417 - "mime-db-1.52.0" = { 4418 - name = "mime-db"; 4419 - packageName = "mime-db"; 4420 - version = "1.52.0"; 4421 - src = fetchurl { 4422 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz"; 4423 - sha512 = "sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="; 4424 - }; 4425 - }; 4426 - "mime-types-2.1.35" = { 4427 - name = "mime-types"; 4428 - packageName = "mime-types"; 4429 - version = "2.1.35"; 4430 - src = fetchurl { 4431 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz"; 4432 - sha512 = "ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="; 4433 - }; 4434 - }; 4435 - "mimic-fn-2.1.0" = { 4436 - name = "mimic-fn"; 4437 - packageName = "mimic-fn"; 4438 - version = "2.1.0"; 4439 - src = fetchurl { 4440 - url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"; 4441 - sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="; 4442 - }; 4443 - }; 4444 - "minimalistic-assert-1.0.1" = { 4445 - name = "minimalistic-assert"; 4446 - packageName = "minimalistic-assert"; 4447 - version = "1.0.1"; 4448 - src = fetchurl { 4449 - url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"; 4450 - sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="; 4451 - }; 4452 - }; 4453 - "minimatch-3.1.2" = { 4454 - name = "minimatch"; 4455 - packageName = "minimatch"; 4456 - version = "3.1.2"; 4457 - src = fetchurl { 4458 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"; 4459 - sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 4460 - }; 4461 - }; 4462 - "minimist-1.2.6" = { 4463 - name = "minimist"; 4464 - packageName = "minimist"; 4465 - version = "1.2.6"; 4466 - src = fetchurl { 4467 - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz"; 4468 - sha512 = "Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="; 4469 - }; 4470 - }; 4471 - "ms-2.0.0" = { 4472 - name = "ms"; 4473 - packageName = "ms"; 4474 - version = "2.0.0"; 4475 - src = fetchurl { 4476 - url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; 4477 - sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; 4478 - }; 4479 - }; 4480 - "ms-2.1.2" = { 4481 - name = "ms"; 4482 - packageName = "ms"; 4483 - version = "2.1.2"; 4484 - src = fetchurl { 4485 - url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; 4486 - sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 4487 - }; 4488 - }; 4489 - "ms-2.1.3" = { 4490 - name = "ms"; 4491 - packageName = "ms"; 4492 - version = "2.1.3"; 4493 - src = fetchurl { 4494 - url = "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"; 4495 - sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 4496 - }; 4497 - }; 4498 - "multicast-dns-7.2.4" = { 4499 - name = "multicast-dns"; 4500 - packageName = "multicast-dns"; 4501 - version = "7.2.4"; 4502 - src = fetchurl { 4503 - url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.4.tgz"; 4504 - sha512 = "XkCYOU+rr2Ft3LI6w4ye51M3VK31qJXFIxu0XLw169PtKG0Zx47OrXeVW/GCYOfpC9s1yyyf1S+L8/4LY0J9Zw=="; 4505 - }; 4506 - }; 4507 - "nanoid-3.3.4" = { 4508 - name = "nanoid"; 4509 - packageName = "nanoid"; 4510 - version = "3.3.4"; 4511 - src = fetchurl { 4512 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz"; 4513 - sha512 = "MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="; 4514 - }; 4515 - }; 4516 - "natural-compare-1.4.0" = { 4517 - name = "natural-compare"; 4518 - packageName = "natural-compare"; 4519 - version = "1.4.0"; 4520 - src = fetchurl { 4521 - url = "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"; 4522 - sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; 4523 - }; 4524 - }; 4525 - "negotiator-0.6.3" = { 4526 - name = "negotiator"; 4527 - packageName = "negotiator"; 4528 - version = "0.6.3"; 4529 - src = fetchurl { 4530 - url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz"; 4531 - sha512 = "+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="; 4532 - }; 4533 - }; 4534 - "neo-async-2.6.2" = { 4535 - name = "neo-async"; 4536 - packageName = "neo-async"; 4537 - version = "2.6.2"; 4538 - src = fetchurl { 4539 - url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"; 4540 - sha512 = "Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="; 4541 - }; 4542 - }; 4543 - "no-case-3.0.4" = { 4544 - name = "no-case"; 4545 - packageName = "no-case"; 4546 - version = "3.0.4"; 4547 - src = fetchurl { 4548 - url = "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz"; 4549 - sha512 = "fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg=="; 4550 - }; 4551 - }; 4552 - "node-forge-1.2.0" = { 4553 - name = "node-forge"; 4554 - packageName = "node-forge"; 4555 - version = "1.2.0"; 4556 - src = fetchurl { 4557 - url = "https://registry.npmjs.org/node-forge/-/node-forge-1.2.0.tgz"; 4558 - sha512 = "M4AsdaP0bGNaSPtatd/+f76asocI0cFaURRdeQVZvrJBrYp2Qohv5hDbGHykuNqCb1BYjWHjdS6HlN50qbztwA=="; 4559 - }; 4560 - }; 4561 - "node-releases-2.0.6" = { 4562 - name = "node-releases"; 4563 - packageName = "node-releases"; 4564 - version = "2.0.6"; 4565 - src = fetchurl { 4566 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz"; 4567 - sha512 = "PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg=="; 4568 - }; 4569 - }; 4570 - "normalize-path-3.0.0" = { 4571 - name = "normalize-path"; 4572 - packageName = "normalize-path"; 4573 - version = "3.0.0"; 4574 - src = fetchurl { 4575 - url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"; 4576 - sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; 4577 - }; 4578 - }; 4579 - "npm-run-path-4.0.1" = { 4580 - name = "npm-run-path"; 4581 - packageName = "npm-run-path"; 4582 - version = "4.0.1"; 4583 - src = fetchurl { 4584 - url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz"; 4585 - sha512 = "S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="; 4586 - }; 4587 - }; 4588 - "nth-check-2.0.1" = { 4589 - name = "nth-check"; 4590 - packageName = "nth-check"; 4591 - version = "2.0.1"; 4592 - src = fetchurl { 4593 - url = "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz"; 4594 - sha512 = "it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w=="; 4595 - }; 4596 - }; 4597 - "object-assign-4.1.1" = { 4598 - name = "object-assign"; 4599 - packageName = "object-assign"; 4600 - version = "4.1.1"; 4601 - src = fetchurl { 4602 - url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"; 4603 - sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; 4604 - }; 4605 - }; 4606 - "object-inspect-1.12.2" = { 4607 - name = "object-inspect"; 4608 - packageName = "object-inspect"; 4609 - version = "1.12.2"; 4610 - src = fetchurl { 4611 - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz"; 4612 - sha512 = "z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="; 4613 - }; 4614 - }; 4615 - "object-keys-1.1.1" = { 4616 - name = "object-keys"; 4617 - packageName = "object-keys"; 4618 - version = "1.1.1"; 4619 - src = fetchurl { 4620 - url = "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"; 4621 - sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="; 4622 - }; 4623 - }; 4624 - "object.assign-4.1.4" = { 4625 - name = "object.assign"; 4626 - packageName = "object.assign"; 4627 - version = "4.1.4"; 4628 - src = fetchurl { 4629 - url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz"; 4630 - sha512 = "1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ=="; 4631 - }; 4632 - }; 4633 - "object.entries-1.1.5" = { 4634 - name = "object.entries"; 4635 - packageName = "object.entries"; 4636 - version = "1.1.5"; 4637 - src = fetchurl { 4638 - url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz"; 4639 - sha512 = "TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g=="; 4640 - }; 4641 - }; 4642 - "object.values-1.1.6" = { 4643 - name = "object.values"; 4644 - packageName = "object.values"; 4645 - version = "1.1.6"; 4646 - src = fetchurl { 4647 - url = "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz"; 4648 - sha512 = "FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw=="; 4649 - }; 4650 - }; 4651 - "obuf-1.1.2" = { 4652 - name = "obuf"; 4653 - packageName = "obuf"; 4654 - version = "1.1.2"; 4655 - src = fetchurl { 4656 - url = "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz"; 4657 - sha512 = "PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg=="; 4658 - }; 4659 - }; 4660 - "on-finished-2.3.0" = { 4661 - name = "on-finished"; 4662 - packageName = "on-finished"; 4663 - version = "2.3.0"; 4664 - src = fetchurl { 4665 - url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"; 4666 - sha1 = "20f1336481b083cd75337992a16971aa2d906947"; 4667 - }; 4668 - }; 4669 - "on-headers-1.0.2" = { 4670 - name = "on-headers"; 4671 - packageName = "on-headers"; 4672 - version = "1.0.2"; 4673 - src = fetchurl { 4674 - url = "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz"; 4675 - sha512 = "pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="; 4676 - }; 4677 - }; 4678 - "once-1.4.0" = { 4679 - name = "once"; 4680 - packageName = "once"; 4681 - version = "1.4.0"; 4682 - src = fetchurl { 4683 - url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; 4684 - sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 4685 - }; 4686 - }; 4687 - "onetime-5.1.2" = { 4688 - name = "onetime"; 4689 - packageName = "onetime"; 4690 - version = "5.1.2"; 4691 - src = fetchurl { 4692 - url = "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz"; 4693 - sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; 4694 - }; 4695 - }; 4696 - "open-8.4.0" = { 4697 - name = "open"; 4698 - packageName = "open"; 4699 - version = "8.4.0"; 4700 - src = fetchurl { 4701 - url = "https://registry.npmjs.org/open/-/open-8.4.0.tgz"; 4702 - sha512 = "XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q=="; 4703 - }; 4704 - }; 4705 - "opener-1.5.2" = { 4706 - name = "opener"; 4707 - packageName = "opener"; 4708 - version = "1.5.2"; 4709 - src = fetchurl { 4710 - url = "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz"; 4711 - sha512 = "ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A=="; 4712 - }; 4713 - }; 4714 - "optionator-0.9.1" = { 4715 - name = "optionator"; 4716 - packageName = "optionator"; 4717 - version = "0.9.1"; 4718 - src = fetchurl { 4719 - url = "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz"; 4720 - sha512 = "74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw=="; 4721 - }; 4722 - }; 4723 - "p-limit-2.3.0" = { 4724 - name = "p-limit"; 4725 - packageName = "p-limit"; 4726 - version = "2.3.0"; 4727 - src = fetchurl { 4728 - url = "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"; 4729 - sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="; 4730 - }; 4731 - }; 4732 - "p-limit-3.1.0" = { 4733 - name = "p-limit"; 4734 - packageName = "p-limit"; 4735 - version = "3.1.0"; 4736 - src = fetchurl { 4737 - url = "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"; 4738 - sha512 = "TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="; 4739 - }; 4740 - }; 4741 - "p-locate-4.1.0" = { 4742 - name = "p-locate"; 4743 - packageName = "p-locate"; 4744 - version = "4.1.0"; 4745 - src = fetchurl { 4746 - url = "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"; 4747 - sha512 = "R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="; 4748 - }; 4749 - }; 4750 - "p-locate-5.0.0" = { 4751 - name = "p-locate"; 4752 - packageName = "p-locate"; 4753 - version = "5.0.0"; 4754 - src = fetchurl { 4755 - url = "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"; 4756 - sha512 = "LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="; 4757 - }; 4758 - }; 4759 - "p-map-2.1.0" = { 4760 - name = "p-map"; 4761 - packageName = "p-map"; 4762 - version = "2.1.0"; 4763 - src = fetchurl { 4764 - url = "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz"; 4765 - sha512 = "y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw=="; 4766 - }; 4767 - }; 4768 - "p-retry-4.6.1" = { 4769 - name = "p-retry"; 4770 - packageName = "p-retry"; 4771 - version = "4.6.1"; 4772 - src = fetchurl { 4773 - url = "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz"; 4774 - sha512 = "e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA=="; 4775 - }; 4776 - }; 4777 - "p-try-2.2.0" = { 4778 - name = "p-try"; 4779 - packageName = "p-try"; 4780 - version = "2.2.0"; 4781 - src = fetchurl { 4782 - url = "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"; 4783 - sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 4784 - }; 4785 - }; 4786 - "param-case-3.0.4" = { 4787 - name = "param-case"; 4788 - packageName = "param-case"; 4789 - version = "3.0.4"; 4790 - src = fetchurl { 4791 - url = "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz"; 4792 - sha512 = "RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A=="; 4793 - }; 4794 - }; 4795 - "parent-module-1.0.1" = { 4796 - name = "parent-module"; 4797 - packageName = "parent-module"; 4798 - version = "1.0.1"; 4799 - src = fetchurl { 4800 - url = "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"; 4801 - sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="; 4802 - }; 4803 - }; 4804 - "parseurl-1.3.3" = { 4805 - name = "parseurl"; 4806 - packageName = "parseurl"; 4807 - version = "1.3.3"; 4808 - src = fetchurl { 4809 - url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"; 4810 - sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="; 4811 - }; 4812 - }; 4813 - "pascal-case-3.1.2" = { 4814 - name = "pascal-case"; 4815 - packageName = "pascal-case"; 4816 - version = "3.1.2"; 4817 - src = fetchurl { 4818 - url = "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz"; 4819 - sha512 = "uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g=="; 4820 - }; 4821 - }; 4822 - "path-exists-4.0.0" = { 4823 - name = "path-exists"; 4824 - packageName = "path-exists"; 4825 - version = "4.0.0"; 4826 - src = fetchurl { 4827 - url = "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"; 4828 - sha512 = "ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="; 4829 - }; 4830 - }; 4831 - "path-is-absolute-1.0.1" = { 4832 - name = "path-is-absolute"; 4833 - packageName = "path-is-absolute"; 4834 - version = "1.0.1"; 4835 - src = fetchurl { 4836 - url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 4837 - sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 4838 - }; 4839 - }; 4840 - "path-is-inside-1.0.2" = { 4841 - name = "path-is-inside"; 4842 - packageName = "path-is-inside"; 4843 - version = "1.0.2"; 4844 - src = fetchurl { 4845 - url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz"; 4846 - sha1 = "365417dede44430d1c11af61027facf074bdfc53"; 4847 - }; 4848 - }; 4849 - "path-key-3.1.1" = { 4850 - name = "path-key"; 4851 - packageName = "path-key"; 4852 - version = "3.1.1"; 4853 - src = fetchurl { 4854 - url = "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"; 4855 - sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; 4856 - }; 4857 - }; 4858 - "path-parse-1.0.7" = { 4859 - name = "path-parse"; 4860 - packageName = "path-parse"; 4861 - version = "1.0.7"; 4862 - src = fetchurl { 4863 - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"; 4864 - sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; 4865 - }; 4866 - }; 4867 - "path-to-regexp-0.1.7" = { 4868 - name = "path-to-regexp"; 4869 - packageName = "path-to-regexp"; 4870 - version = "0.1.7"; 4871 - src = fetchurl { 4872 - url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; 4873 - sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; 4874 - }; 4875 - }; 4876 - "path-type-4.0.0" = { 4877 - name = "path-type"; 4878 - packageName = "path-type"; 4879 - version = "4.0.0"; 4880 - src = fetchurl { 4881 - url = "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"; 4882 - sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="; 4883 - }; 4884 - }; 4885 - "picocolors-0.2.1" = { 4886 - name = "picocolors"; 4887 - packageName = "picocolors"; 4888 - version = "0.2.1"; 4889 - src = fetchurl { 4890 - url = "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz"; 4891 - sha512 = "cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA=="; 4892 - }; 4893 - }; 4894 - "picocolors-1.0.0" = { 4895 - name = "picocolors"; 4896 - packageName = "picocolors"; 4897 - version = "1.0.0"; 4898 - src = fetchurl { 4899 - url = "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"; 4900 - sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="; 4901 - }; 4902 - }; 4903 - "picomatch-2.2.2" = { 4904 - name = "picomatch"; 4905 - packageName = "picomatch"; 4906 - version = "2.2.2"; 4907 - src = fetchurl { 4908 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz"; 4909 - sha512 = "q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg=="; 4910 - }; 4911 - }; 4912 - "picomatch-2.3.0" = { 4913 - name = "picomatch"; 4914 - packageName = "picomatch"; 4915 - version = "2.3.0"; 4916 - src = fetchurl { 4917 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz"; 4918 - sha512 = "lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="; 4919 - }; 4920 - }; 4921 - "pify-2.3.0" = { 4922 - name = "pify"; 4923 - packageName = "pify"; 4924 - version = "2.3.0"; 4925 - src = fetchurl { 4926 - url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"; 4927 - sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; 4928 - }; 4929 - }; 4930 - "pify-4.0.1" = { 4931 - name = "pify"; 4932 - packageName = "pify"; 4933 - version = "4.0.1"; 4934 - src = fetchurl { 4935 - url = "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz"; 4936 - sha512 = "uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="; 4937 - }; 4938 - }; 4939 - "pinkie-2.0.4" = { 4940 - name = "pinkie"; 4941 - packageName = "pinkie"; 4942 - version = "2.0.4"; 4943 - src = fetchurl { 4944 - url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"; 4945 - sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; 4946 - }; 4947 - }; 4948 - "pinkie-promise-2.0.1" = { 4949 - name = "pinkie-promise"; 4950 - packageName = "pinkie-promise"; 4951 - version = "2.0.1"; 4952 - src = fetchurl { 4953 - url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz"; 4954 - sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; 4955 - }; 4956 - }; 4957 - "pkg-dir-4.2.0" = { 4958 - name = "pkg-dir"; 4959 - packageName = "pkg-dir"; 4960 - version = "4.2.0"; 4961 - src = fetchurl { 4962 - url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"; 4963 - sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="; 4964 - }; 4965 - }; 4966 - "plurals-cldr-2.0.1" = { 4967 - name = "plurals-cldr"; 4968 - packageName = "plurals-cldr"; 4969 - version = "2.0.1"; 4970 - src = fetchurl { 4971 - url = "https://registry.npmjs.org/plurals-cldr/-/plurals-cldr-2.0.1.tgz"; 4972 - sha512 = "7WLem4xl5C10kOqFUgqV5pNSgvlev0nPvWwgdXbCVGJN7BFqKWzVpHbARhIzS9TK9jWHZx5Nm8mr3aWtd0uldQ=="; 4973 - }; 4974 - }; 4975 - "popper.js-1.16.1" = { 4976 - name = "popper.js"; 4977 - packageName = "popper.js"; 4978 - version = "1.16.1"; 4979 - src = fetchurl { 4980 - url = "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz"; 4981 - sha512 = "Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ=="; 4982 - }; 4983 - }; 4984 - "postcss-7.0.39" = { 4985 - name = "postcss"; 4986 - packageName = "postcss"; 4987 - version = "7.0.39"; 4988 - src = fetchurl { 4989 - url = "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz"; 4990 - sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 4991 - }; 4992 - }; 4993 - "postcss-8.4.19" = { 4994 - name = "postcss"; 4995 - packageName = "postcss"; 4996 - version = "8.4.19"; 4997 - src = fetchurl { 4998 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.19.tgz"; 4999 - sha512 = "h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA=="; 5000 - }; 5001 - }; 5002 - "postcss-modules-extract-imports-3.0.0" = { 5003 - name = "postcss-modules-extract-imports"; 5004 - packageName = "postcss-modules-extract-imports"; 5005 - version = "3.0.0"; 5006 - src = fetchurl { 5007 - url = "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz"; 5008 - sha512 = "bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw=="; 5009 - }; 5010 - }; 5011 - "postcss-modules-local-by-default-4.0.0" = { 5012 - name = "postcss-modules-local-by-default"; 5013 - packageName = "postcss-modules-local-by-default"; 5014 - version = "4.0.0"; 5015 - src = fetchurl { 5016 - url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz"; 5017 - sha512 = "sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ=="; 5018 - }; 5019 - }; 5020 - "postcss-modules-scope-3.0.0" = { 5021 - name = "postcss-modules-scope"; 5022 - packageName = "postcss-modules-scope"; 5023 - version = "3.0.0"; 5024 - src = fetchurl { 5025 - url = "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz"; 5026 - sha512 = "hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg=="; 5027 - }; 5028 - }; 5029 - "postcss-modules-values-4.0.0" = { 5030 - name = "postcss-modules-values"; 5031 - packageName = "postcss-modules-values"; 5032 - version = "4.0.0"; 5033 - src = fetchurl { 5034 - url = "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz"; 5035 - sha512 = "RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ=="; 5036 - }; 5037 - }; 5038 - "postcss-selector-parser-6.0.10" = { 5039 - name = "postcss-selector-parser"; 5040 - packageName = "postcss-selector-parser"; 5041 - version = "6.0.10"; 5042 - src = fetchurl { 5043 - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz"; 5044 - sha512 = "IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w=="; 5045 - }; 5046 - }; 5047 - "postcss-value-parser-4.2.0" = { 5048 - name = "postcss-value-parser"; 5049 - packageName = "postcss-value-parser"; 5050 - version = "4.2.0"; 5051 - src = fetchurl { 5052 - url = "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"; 5053 - sha512 = "1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="; 5054 - }; 5055 - }; 5056 - "prelude-ls-1.2.1" = { 5057 - name = "prelude-ls"; 5058 - packageName = "prelude-ls"; 5059 - version = "1.2.1"; 5060 - src = fetchurl { 5061 - url = "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"; 5062 - sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; 5063 - }; 5064 - }; 5065 - "prettier-1.19.1" = { 5066 - name = "prettier"; 5067 - packageName = "prettier"; 5068 - version = "1.19.1"; 5069 - src = fetchurl { 5070 - url = "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz"; 5071 - sha512 = "s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew=="; 5072 - }; 5073 - }; 5074 - "pretty-error-4.0.0" = { 5075 - name = "pretty-error"; 5076 - packageName = "pretty-error"; 5077 - version = "4.0.0"; 5078 - src = fetchurl { 5079 - url = "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz"; 5080 - sha512 = "AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw=="; 5081 - }; 5082 - }; 5083 - "process-nextick-args-2.0.1" = { 5084 - name = "process-nextick-args"; 5085 - packageName = "process-nextick-args"; 5086 - version = "2.0.1"; 5087 - src = fetchurl { 5088 - url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 5089 - sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 5090 - }; 5091 - }; 5092 - "proxy-addr-2.0.7" = { 5093 - name = "proxy-addr"; 5094 - packageName = "proxy-addr"; 5095 - version = "2.0.7"; 5096 - src = fetchurl { 5097 - url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz"; 5098 - sha512 = "llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg=="; 5099 - }; 5100 - }; 5101 - "proxy-from-env-1.1.0" = { 5102 - name = "proxy-from-env"; 5103 - packageName = "proxy-from-env"; 5104 - version = "1.1.0"; 5105 - src = fetchurl { 5106 - url = "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz"; 5107 - sha512 = "D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="; 5108 - }; 5109 - }; 5110 - "pseudomap-1.0.2" = { 5111 - name = "pseudomap"; 5112 - packageName = "pseudomap"; 5113 - version = "1.0.2"; 5114 - src = fetchurl { 5115 - url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; 5116 - sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; 5117 - }; 5118 - }; 5119 - "punycode-2.1.1" = { 5120 - name = "punycode"; 5121 - packageName = "punycode"; 5122 - version = "2.1.1"; 5123 - src = fetchurl { 5124 - url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; 5125 - sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; 5126 - }; 5127 - }; 5128 - "qs-6.9.7" = { 5129 - name = "qs"; 5130 - packageName = "qs"; 5131 - version = "6.9.7"; 5132 - src = fetchurl { 5133 - url = "https://registry.npmjs.org/qs/-/qs-6.9.7.tgz"; 5134 - sha512 = "IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw=="; 5135 - }; 5136 - }; 5137 - "queue-microtask-1.2.3" = { 5138 - name = "queue-microtask"; 5139 - packageName = "queue-microtask"; 5140 - version = "1.2.3"; 5141 - src = fetchurl { 5142 - url = "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"; 5143 - sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; 5144 - }; 5145 - }; 5146 - "randombytes-2.1.0" = { 5147 - name = "randombytes"; 5148 - packageName = "randombytes"; 5149 - version = "2.1.0"; 5150 - src = fetchurl { 5151 - url = "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz"; 5152 - sha512 = "vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="; 5153 - }; 5154 - }; 5155 - "range-parser-1.2.1" = { 5156 - name = "range-parser"; 5157 - packageName = "range-parser"; 5158 - version = "1.2.1"; 5159 - src = fetchurl { 5160 - url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz"; 5161 - sha512 = "Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="; 5162 - }; 5163 - }; 5164 - "raw-body-2.4.3" = { 5165 - name = "raw-body"; 5166 - packageName = "raw-body"; 5167 - version = "2.4.3"; 5168 - src = fetchurl { 5169 - url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.3.tgz"; 5170 - sha512 = "UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g=="; 5171 - }; 5172 - }; 5173 - "readable-stream-2.3.7" = { 5174 - name = "readable-stream"; 5175 - packageName = "readable-stream"; 5176 - version = "2.3.7"; 5177 - src = fetchurl { 5178 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"; 5179 - sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; 5180 - }; 5181 - }; 5182 - "readable-stream-3.6.0" = { 5183 - name = "readable-stream"; 5184 - packageName = "readable-stream"; 5185 - version = "3.6.0"; 5186 - src = fetchurl { 5187 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"; 5188 - sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 5189 - }; 5190 - }; 5191 - "readdirp-3.6.0" = { 5192 - name = "readdirp"; 5193 - packageName = "readdirp"; 5194 - version = "3.6.0"; 5195 - src = fetchurl { 5196 - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"; 5197 - sha512 = "hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="; 5198 - }; 5199 - }; 5200 - "rechoir-0.7.1" = { 5201 - name = "rechoir"; 5202 - packageName = "rechoir"; 5203 - version = "0.7.1"; 5204 - src = fetchurl { 5205 - url = "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz"; 5206 - sha512 = "/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg=="; 5207 - }; 5208 - }; 5209 - "regenerate-1.4.2" = { 5210 - name = "regenerate"; 5211 - packageName = "regenerate"; 5212 - version = "1.4.2"; 5213 - src = fetchurl { 5214 - url = "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz"; 5215 - sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="; 5216 - }; 5217 - }; 5218 - "regenerate-unicode-properties-10.1.0" = { 5219 - name = "regenerate-unicode-properties"; 5220 - packageName = "regenerate-unicode-properties"; 5221 - version = "10.1.0"; 5222 - src = fetchurl { 5223 - url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz"; 5224 - sha512 = "d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ=="; 5225 - }; 5226 - }; 5227 - "regenerator-runtime-0.13.7" = { 5228 - name = "regenerator-runtime"; 5229 - packageName = "regenerator-runtime"; 5230 - version = "0.13.7"; 5231 - src = fetchurl { 5232 - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz"; 5233 - sha512 = "a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew=="; 5234 - }; 5235 - }; 5236 - "regenerator-transform-0.15.1" = { 5237 - name = "regenerator-transform"; 5238 - packageName = "regenerator-transform"; 5239 - version = "0.15.1"; 5240 - src = fetchurl { 5241 - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz"; 5242 - sha512 = "knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg=="; 5243 - }; 5244 - }; 5245 - "regexp.prototype.flags-1.4.3" = { 5246 - name = "regexp.prototype.flags"; 5247 - packageName = "regexp.prototype.flags"; 5248 - version = "1.4.3"; 5249 - src = fetchurl { 5250 - url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"; 5251 - sha512 = "fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA=="; 5252 - }; 5253 - }; 5254 - "regexpu-core-5.3.2" = { 5255 - name = "regexpu-core"; 5256 - packageName = "regexpu-core"; 5257 - version = "5.3.2"; 5258 - src = fetchurl { 5259 - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz"; 5260 - sha512 = "RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ=="; 5261 - }; 5262 - }; 5263 - "regjsparser-0.9.1" = { 5264 - name = "regjsparser"; 5265 - packageName = "regjsparser"; 5266 - version = "0.9.1"; 5267 - src = fetchurl { 5268 - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz"; 5269 - sha512 = "dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ=="; 5270 - }; 5271 - }; 5272 - "relateurl-0.2.7" = { 5273 - name = "relateurl"; 5274 - packageName = "relateurl"; 5275 - version = "0.2.7"; 5276 - src = fetchurl { 5277 - url = "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz"; 5278 - sha1 = "54dbf377e51440aca90a4cd274600d3ff2d888a9"; 5279 - }; 5280 - }; 5281 - "renderkid-3.0.0" = { 5282 - name = "renderkid"; 5283 - packageName = "renderkid"; 5284 - version = "3.0.0"; 5285 - src = fetchurl { 5286 - url = "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz"; 5287 - sha512 = "q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg=="; 5288 - }; 5289 - }; 5290 - "require-from-string-2.0.2" = { 5291 - name = "require-from-string"; 5292 - packageName = "require-from-string"; 5293 - version = "2.0.2"; 5294 - src = fetchurl { 5295 - url = "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz"; 5296 - sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; 5297 - }; 5298 - }; 5299 - "requires-port-1.0.0" = { 5300 - name = "requires-port"; 5301 - packageName = "requires-port"; 5302 - version = "1.0.0"; 5303 - src = fetchurl { 5304 - url = "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz"; 5305 - sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff"; 5306 - }; 5307 - }; 5308 - "resolve-1.22.1" = { 5309 - name = "resolve"; 5310 - packageName = "resolve"; 5311 - version = "1.22.1"; 5312 - src = fetchurl { 5313 - url = "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz"; 5314 - sha512 = "nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw=="; 5315 - }; 5316 - }; 5317 - "resolve-cwd-3.0.0" = { 5318 - name = "resolve-cwd"; 5319 - packageName = "resolve-cwd"; 5320 - version = "3.0.0"; 5321 - src = fetchurl { 5322 - url = "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz"; 5323 - sha512 = "OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg=="; 5324 - }; 5325 - }; 5326 - "resolve-from-4.0.0" = { 5327 - name = "resolve-from"; 5328 - packageName = "resolve-from"; 5329 - version = "4.0.0"; 5330 - src = fetchurl { 5331 - url = "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"; 5332 - sha512 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="; 5333 - }; 5334 - }; 5335 - "resolve-from-5.0.0" = { 5336 - name = "resolve-from"; 5337 - packageName = "resolve-from"; 5338 - version = "5.0.0"; 5339 - src = fetchurl { 5340 - url = "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"; 5341 - sha512 = "qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="; 5342 - }; 5343 - }; 5344 - "retry-0.13.1" = { 5345 - name = "retry"; 5346 - packageName = "retry"; 5347 - version = "0.13.1"; 5348 - src = fetchurl { 5349 - url = "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz"; 5350 - sha512 = "XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg=="; 5351 - }; 5352 - }; 5353 - "reusify-1.0.4" = { 5354 - name = "reusify"; 5355 - packageName = "reusify"; 5356 - version = "1.0.4"; 5357 - src = fetchurl { 5358 - url = "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"; 5359 - sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; 5360 - }; 5361 - }; 5362 - "rimraf-2.7.1" = { 5363 - name = "rimraf"; 5364 - packageName = "rimraf"; 5365 - version = "2.7.1"; 5366 - src = fetchurl { 5367 - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz"; 5368 - sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="; 5369 - }; 5370 - }; 5371 - "rimraf-3.0.2" = { 5372 - name = "rimraf"; 5373 - packageName = "rimraf"; 5374 - version = "3.0.2"; 5375 - src = fetchurl { 5376 - url = "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"; 5377 - sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 5378 - }; 5379 - }; 5380 - "run-parallel-1.2.0" = { 5381 - name = "run-parallel"; 5382 - packageName = "run-parallel"; 5383 - version = "1.2.0"; 5384 - src = fetchurl { 5385 - url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"; 5386 - sha512 = "5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="; 5387 - }; 5388 - }; 5389 - "safe-buffer-5.1.2" = { 5390 - name = "safe-buffer"; 5391 - packageName = "safe-buffer"; 5392 - version = "5.1.2"; 5393 - src = fetchurl { 5394 - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"; 5395 - sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 5396 - }; 5397 - }; 5398 - "safe-buffer-5.2.1" = { 5399 - name = "safe-buffer"; 5400 - packageName = "safe-buffer"; 5401 - version = "5.2.1"; 5402 - src = fetchurl { 5403 - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"; 5404 - sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 5405 - }; 5406 - }; 5407 - "safe-regex-test-1.0.0" = { 5408 - name = "safe-regex-test"; 5409 - packageName = "safe-regex-test"; 5410 - version = "1.0.0"; 5411 - src = fetchurl { 5412 - url = "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz"; 5413 - sha512 = "JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA=="; 5414 - }; 5415 - }; 5416 - "safer-buffer-2.1.2" = { 5417 - name = "safer-buffer"; 5418 - packageName = "safer-buffer"; 5419 - version = "2.1.2"; 5420 - src = fetchurl { 5421 - url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; 5422 - sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 5423 - }; 5424 - }; 5425 - "sass-1.62.0" = { 5426 - name = "sass"; 5427 - packageName = "sass"; 5428 - version = "1.62.0"; 5429 - src = fetchurl { 5430 - url = "https://registry.npmjs.org/sass/-/sass-1.62.0.tgz"; 5431 - sha512 = "Q4USplo4pLYgCi+XlipZCWUQz5pkg/ruSSgJ0WRDSb/+3z9tXUOkQ7QPYn4XrhZKYAK4HlpaQecRwKLJX6+DBg=="; 5432 - }; 5433 - }; 5434 - "sass-loader-13.2.2" = { 5435 - name = "sass-loader"; 5436 - packageName = "sass-loader"; 5437 - version = "13.2.2"; 5438 - src = fetchurl { 5439 - url = "https://registry.npmjs.org/sass-loader/-/sass-loader-13.2.2.tgz"; 5440 - sha512 = "nrIdVAAte3B9icfBiGWvmMhT/D+eCDwnk+yA7VE/76dp/WkHX+i44Q/pfo71NYbwj0Ap+PGsn0ekOuU1WFJ2AA=="; 5441 - }; 5442 - }; 5443 - "schema-utils-3.1.2" = { 5444 - name = "schema-utils"; 5445 - packageName = "schema-utils"; 5446 - version = "3.1.2"; 5447 - src = fetchurl { 5448 - url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz"; 5449 - sha512 = "pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg=="; 5450 - }; 5451 - }; 5452 - "schema-utils-4.0.0" = { 5453 - name = "schema-utils"; 5454 - packageName = "schema-utils"; 5455 - version = "4.0.0"; 5456 - src = fetchurl { 5457 - url = "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz"; 5458 - sha512 = "1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg=="; 5459 - }; 5460 - }; 5461 - "schema-utils-4.0.1" = { 5462 - name = "schema-utils"; 5463 - packageName = "schema-utils"; 5464 - version = "4.0.1"; 5465 - src = fetchurl { 5466 - url = "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz"; 5467 - sha512 = "lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ=="; 5468 - }; 5469 - }; 5470 - "select-hose-2.0.0" = { 5471 - name = "select-hose"; 5472 - packageName = "select-hose"; 5473 - version = "2.0.0"; 5474 - src = fetchurl { 5475 - url = "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz"; 5476 - sha1 = "625d8658f865af43ec962bfc376a37359a4994ca"; 5477 - }; 5478 - }; 5479 - "selfsigned-2.1.1" = { 5480 - name = "selfsigned"; 5481 - packageName = "selfsigned"; 5482 - version = "2.1.1"; 5483 - src = fetchurl { 5484 - url = "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz"; 5485 - sha512 = "GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ=="; 5486 - }; 5487 - }; 5488 - "semver-6.3.0" = { 5489 - name = "semver"; 5490 - packageName = "semver"; 5491 - version = "6.3.0"; 5492 - src = fetchurl { 5493 - url = "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"; 5494 - sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; 5495 - }; 5496 - }; 5497 - "semver-7.3.8" = { 5498 - name = "semver"; 5499 - packageName = "semver"; 5500 - version = "7.3.8"; 5501 - src = fetchurl { 5502 - url = "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz"; 5503 - sha512 = "NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="; 5504 - }; 5505 - }; 5506 - "send-0.17.2" = { 5507 - name = "send"; 5508 - packageName = "send"; 5509 - version = "0.17.2"; 5510 - src = fetchurl { 5511 - url = "https://registry.npmjs.org/send/-/send-0.17.2.tgz"; 5512 - sha512 = "UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww=="; 5513 - }; 5514 - }; 5515 - "serialize-javascript-6.0.1" = { 5516 - name = "serialize-javascript"; 5517 - packageName = "serialize-javascript"; 5518 - version = "6.0.1"; 5519 - src = fetchurl { 5520 - url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz"; 5521 - sha512 = "owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w=="; 5522 - }; 5523 - }; 5524 - "serve-index-1.9.1" = { 5525 - name = "serve-index"; 5526 - packageName = "serve-index"; 5527 - version = "1.9.1"; 5528 - src = fetchurl { 5529 - url = "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz"; 5530 - sha1 = "d3768d69b1e7d82e5ce050fff5b453bea12a9239"; 5531 - }; 5532 - }; 5533 - "serve-static-1.14.2" = { 5534 - name = "serve-static"; 5535 - packageName = "serve-static"; 5536 - version = "1.14.2"; 5537 - src = fetchurl { 5538 - url = "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz"; 5539 - sha512 = "+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ=="; 5540 - }; 5541 - }; 5542 - "setprototypeof-1.1.0" = { 5543 - name = "setprototypeof"; 5544 - packageName = "setprototypeof"; 5545 - version = "1.1.0"; 5546 - src = fetchurl { 5547 - url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz"; 5548 - sha512 = "BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="; 5549 - }; 5550 - }; 5551 - "setprototypeof-1.2.0" = { 5552 - name = "setprototypeof"; 5553 - packageName = "setprototypeof"; 5554 - version = "1.2.0"; 5555 - src = fetchurl { 5556 - url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz"; 5557 - sha512 = "E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="; 5558 - }; 5559 - }; 5560 - "shallow-clone-3.0.1" = { 5561 - name = "shallow-clone"; 5562 - packageName = "shallow-clone"; 5563 - version = "3.0.1"; 5564 - src = fetchurl { 5565 - url = "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz"; 5566 - sha512 = "/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA=="; 5567 - }; 5568 - }; 5569 - "shebang-command-2.0.0" = { 5570 - name = "shebang-command"; 5571 - packageName = "shebang-command"; 5572 - version = "2.0.0"; 5573 - src = fetchurl { 5574 - url = "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"; 5575 - sha512 = "kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="; 5576 - }; 5577 - }; 5578 - "shebang-regex-3.0.0" = { 5579 - name = "shebang-regex"; 5580 - packageName = "shebang-regex"; 5581 - version = "3.0.0"; 5582 - src = fetchurl { 5583 - url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"; 5584 - sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 5585 - }; 5586 - }; 5587 - "shell-quote-1.8.0" = { 5588 - name = "shell-quote"; 5589 - packageName = "shell-quote"; 5590 - version = "1.8.0"; 5591 - src = fetchurl { 5592 - url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.0.tgz"; 5593 - sha512 = "QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ=="; 5594 - }; 5595 - }; 5596 - "side-channel-1.0.4" = { 5597 - name = "side-channel"; 5598 - packageName = "side-channel"; 5599 - version = "1.0.4"; 5600 - src = fetchurl { 5601 - url = "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"; 5602 - sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; 5603 - }; 5604 - }; 5605 - "signal-exit-3.0.3" = { 5606 - name = "signal-exit"; 5607 - packageName = "signal-exit"; 5608 - version = "3.0.3"; 5609 - src = fetchurl { 5610 - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz"; 5611 - sha512 = "VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="; 5612 - }; 5613 - }; 5614 - "sirv-1.0.17" = { 5615 - name = "sirv"; 5616 - packageName = "sirv"; 5617 - version = "1.0.17"; 5618 - src = fetchurl { 5619 - url = "https://registry.npmjs.org/sirv/-/sirv-1.0.17.tgz"; 5620 - sha512 = "qx9go5yraB7ekT7bCMqUHJ5jEaOC/GXBxUWv+jeWnb7WzHUFdcQPGWk7YmAwFBaQBrogpuSqd/azbC2lZRqqmw=="; 5621 - }; 5622 - }; 5623 - "slash-4.0.0" = { 5624 - name = "slash"; 5625 - packageName = "slash"; 5626 - version = "4.0.0"; 5627 - src = fetchurl { 5628 - url = "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz"; 5629 - sha512 = "3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew=="; 5630 - }; 5631 - }; 5632 - "sockjs-0.3.24" = { 5633 - name = "sockjs"; 5634 - packageName = "sockjs"; 5635 - version = "0.3.24"; 5636 - src = fetchurl { 5637 - url = "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz"; 5638 - sha512 = "GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ=="; 5639 - }; 5640 - }; 5641 - "source-map-0.6.1" = { 5642 - name = "source-map"; 5643 - packageName = "source-map"; 5644 - version = "0.6.1"; 5645 - src = fetchurl { 5646 - url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"; 5647 - sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; 5648 - }; 5649 - }; 5650 - "source-map-js-1.0.2" = { 5651 - name = "source-map-js"; 5652 - packageName = "source-map-js"; 5653 - version = "1.0.2"; 5654 - src = fetchurl { 5655 - url = "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"; 5656 - sha512 = "R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="; 5657 - }; 5658 - }; 5659 - "source-map-support-0.5.20" = { 5660 - name = "source-map-support"; 5661 - packageName = "source-map-support"; 5662 - version = "0.5.20"; 5663 - src = fetchurl { 5664 - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz"; 5665 - sha512 = "n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw=="; 5666 - }; 5667 - }; 5668 - "spdy-4.0.2" = { 5669 - name = "spdy"; 5670 - packageName = "spdy"; 5671 - version = "4.0.2"; 5672 - src = fetchurl { 5673 - url = "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz"; 5674 - sha512 = "r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA=="; 5675 - }; 5676 - }; 5677 - "spdy-transport-3.0.0" = { 5678 - name = "spdy-transport"; 5679 - packageName = "spdy-transport"; 5680 - version = "3.0.0"; 5681 - src = fetchurl { 5682 - url = "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz"; 5683 - sha512 = "hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw=="; 5684 - }; 5685 - }; 5686 - "statuses-1.5.0" = { 5687 - name = "statuses"; 5688 - packageName = "statuses"; 5689 - version = "1.5.0"; 5690 - src = fetchurl { 5691 - url = "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"; 5692 - sha1 = "161c7dac177659fd9811f43771fa99381478628c"; 5693 - }; 5694 - }; 5695 - "string.prototype.trimend-1.0.6" = { 5696 - name = "string.prototype.trimend"; 5697 - packageName = "string.prototype.trimend"; 5698 - version = "1.0.6"; 5699 - src = fetchurl { 5700 - url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz"; 5701 - sha512 = "JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ=="; 5702 - }; 5703 - }; 5704 - "string.prototype.trimstart-1.0.6" = { 5705 - name = "string.prototype.trimstart"; 5706 - packageName = "string.prototype.trimstart"; 5707 - version = "1.0.6"; 5708 - src = fetchurl { 5709 - url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz"; 5710 - sha512 = "omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA=="; 5711 - }; 5712 - }; 5713 - "string_decoder-1.1.1" = { 5714 - name = "string_decoder"; 5715 - packageName = "string_decoder"; 5716 - version = "1.1.1"; 5717 - src = fetchurl { 5718 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; 5719 - sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 5720 - }; 5721 - }; 5722 - "strip-ansi-6.0.1" = { 5723 - name = "strip-ansi"; 5724 - packageName = "strip-ansi"; 5725 - version = "6.0.1"; 5726 - src = fetchurl { 5727 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"; 5728 - sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 5729 - }; 5730 - }; 5731 - "strip-bom-3.0.0" = { 5732 - name = "strip-bom"; 5733 - packageName = "strip-bom"; 5734 - version = "3.0.0"; 5735 - src = fetchurl { 5736 - url = "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"; 5737 - sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; 5738 - }; 5739 - }; 5740 - "strip-final-newline-2.0.0" = { 5741 - name = "strip-final-newline"; 5742 - packageName = "strip-final-newline"; 5743 - version = "2.0.0"; 5744 - src = fetchurl { 5745 - url = "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz"; 5746 - sha512 = "BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="; 5747 - }; 5748 - }; 5749 - "strip-json-comments-3.1.1" = { 5750 - name = "strip-json-comments"; 5751 - packageName = "strip-json-comments"; 5752 - version = "3.1.1"; 5753 - src = fetchurl { 5754 - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; 5755 - sha512 = "6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="; 5756 - }; 5757 - }; 5758 - "supports-color-5.5.0" = { 5759 - name = "supports-color"; 5760 - packageName = "supports-color"; 5761 - version = "5.5.0"; 5762 - src = fetchurl { 5763 - url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"; 5764 - sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; 5765 - }; 5766 - }; 5767 - "supports-color-7.2.0" = { 5768 - name = "supports-color"; 5769 - packageName = "supports-color"; 5770 - version = "7.2.0"; 5771 - src = fetchurl { 5772 - url = "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"; 5773 - sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 5774 - }; 5775 - }; 5776 - "supports-color-8.1.1" = { 5777 - name = "supports-color"; 5778 - packageName = "supports-color"; 5779 - version = "8.1.1"; 5780 - src = fetchurl { 5781 - url = "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"; 5782 - sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; 5783 - }; 5784 - }; 5785 - "supports-preserve-symlinks-flag-1.0.0" = { 5786 - name = "supports-preserve-symlinks-flag"; 5787 - packageName = "supports-preserve-symlinks-flag"; 5788 - version = "1.0.0"; 5789 - src = fetchurl { 5790 - url = "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"; 5791 - sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 5792 - }; 5793 - }; 5794 - "svg-country-flags-1.2.10" = { 5795 - name = "svg-country-flags"; 5796 - packageName = "svg-country-flags"; 5797 - version = "1.2.10"; 5798 - src = fetchurl { 5799 - url = "https://registry.npmjs.org/svg-country-flags/-/svg-country-flags-1.2.10.tgz"; 5800 - sha512 = "xrqwo0TYf/h2cfPvGpjdSuSguUbri4vNNizBnwzoZnX0xGo3O5nGJMlbYEp7NOYcnPGBm6LE2axqDWSB847bLw=="; 5801 - }; 5802 - }; 5803 - "tapable-2.2.0" = { 5804 - name = "tapable"; 5805 - packageName = "tapable"; 5806 - version = "2.2.0"; 5807 - src = fetchurl { 5808 - url = "https://registry.npmjs.org/tapable/-/tapable-2.2.0.tgz"; 5809 - sha512 = "FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw=="; 5810 - }; 5811 - }; 5812 - "terser-5.16.9" = { 5813 - name = "terser"; 5814 - packageName = "terser"; 5815 - version = "5.16.9"; 5816 - src = fetchurl { 5817 - url = "https://registry.npmjs.org/terser/-/terser-5.16.9.tgz"; 5818 - sha512 = "HPa/FdTB9XGI2H1/keLFZHxl6WNvAI4YalHGtDQTlMnJcoqSab1UwL4l1hGEhs6/GmLHBZIg/YgB++jcbzoOEg=="; 5819 - }; 5820 - }; 5821 - "terser-webpack-plugin-5.3.7" = { 5822 - name = "terser-webpack-plugin"; 5823 - packageName = "terser-webpack-plugin"; 5824 - version = "5.3.7"; 5825 - src = fetchurl { 5826 - url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz"; 5827 - sha512 = "AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw=="; 5828 - }; 5829 - }; 5830 - "text-table-0.2.0" = { 5831 - name = "text-table"; 5832 - packageName = "text-table"; 5833 - version = "0.2.0"; 5834 - src = fetchurl { 5835 - url = "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"; 5836 - sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; 5837 - }; 5838 - }; 5839 - "thunky-1.1.0" = { 5840 - name = "thunky"; 5841 - packageName = "thunky"; 5842 - version = "1.1.0"; 5843 - src = fetchurl { 5844 - url = "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz"; 5845 - sha512 = "eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA=="; 5846 - }; 5847 - }; 5848 - "to-fast-properties-2.0.0" = { 5849 - name = "to-fast-properties"; 5850 - packageName = "to-fast-properties"; 5851 - version = "2.0.0"; 5852 - src = fetchurl { 5853 - url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; 5854 - sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; 5855 - }; 5856 - }; 5857 - "to-regex-range-5.0.1" = { 5858 - name = "to-regex-range"; 5859 - packageName = "to-regex-range"; 5860 - version = "5.0.1"; 5861 - src = fetchurl { 5862 - url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"; 5863 - sha512 = "65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="; 5864 - }; 5865 - }; 5866 - "toggle-selection-1.0.6" = { 5867 - name = "toggle-selection"; 5868 - packageName = "toggle-selection"; 5869 - version = "1.0.6"; 5870 - src = fetchurl { 5871 - url = "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz"; 5872 - sha1 = "6e45b1263f2017fa0acc7d89d78b15b8bf77da32"; 5873 - }; 5874 - }; 5875 - "toidentifier-1.0.1" = { 5876 - name = "toidentifier"; 5877 - packageName = "toidentifier"; 5878 - version = "1.0.1"; 5879 - src = fetchurl { 5880 - url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz"; 5881 - sha512 = "o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="; 5882 - }; 5883 - }; 5884 - "totalist-1.1.0" = { 5885 - name = "totalist"; 5886 - packageName = "totalist"; 5887 - version = "1.1.0"; 5888 - src = fetchurl { 5889 - url = "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz"; 5890 - sha512 = "gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g=="; 5891 - }; 5892 - }; 5893 - "tsconfig-paths-3.14.1" = { 5894 - name = "tsconfig-paths"; 5895 - packageName = "tsconfig-paths"; 5896 - version = "3.14.1"; 5897 - src = fetchurl { 5898 - url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz"; 5899 - sha512 = "fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ=="; 5900 - }; 5901 - }; 5902 - "tslib-2.3.1" = { 5903 - name = "tslib"; 5904 - packageName = "tslib"; 5905 - version = "2.3.1"; 5906 - src = fetchurl { 5907 - url = "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz"; 5908 - sha512 = "77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="; 5909 - }; 5910 - }; 5911 - "type-check-0.4.0" = { 5912 - name = "type-check"; 5913 - packageName = "type-check"; 5914 - version = "0.4.0"; 5915 - src = fetchurl { 5916 - url = "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"; 5917 - sha512 = "XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="; 5918 - }; 5919 - }; 5920 - "type-fest-0.20.2" = { 5921 - name = "type-fest"; 5922 - packageName = "type-fest"; 5923 - version = "0.20.2"; 5924 - src = fetchurl { 5925 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"; 5926 - sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 5927 - }; 5928 - }; 5929 - "type-is-1.6.18" = { 5930 - name = "type-is"; 5931 - packageName = "type-is"; 5932 - version = "1.6.18"; 5933 - src = fetchurl { 5934 - url = "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz"; 5935 - sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; 5936 - }; 5937 - }; 5938 - "typed-array-length-1.0.4" = { 5939 - name = "typed-array-length"; 5940 - packageName = "typed-array-length"; 5941 - version = "1.0.4"; 5942 - src = fetchurl { 5943 - url = "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz"; 5944 - sha512 = "KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng=="; 5945 - }; 5946 - }; 5947 - "typed-assert-1.0.8" = { 5948 - name = "typed-assert"; 5949 - packageName = "typed-assert"; 5950 - version = "1.0.8"; 5951 - src = fetchurl { 5952 - url = "https://registry.npmjs.org/typed-assert/-/typed-assert-1.0.8.tgz"; 5953 - sha512 = "5NkbXZUlmCE73Fs7gvkp1XXJWHYetPkg60QnQ2NXQmBYNFxbBr2zA8GCtaH4K2s2WhOmSlgiSTmrjrcm5tnM5g=="; 5954 - }; 5955 - }; 5956 - "unbox-primitive-1.0.2" = { 5957 - name = "unbox-primitive"; 5958 - packageName = "unbox-primitive"; 5959 - version = "1.0.2"; 5960 - src = fetchurl { 5961 - url = "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz"; 5962 - sha512 = "61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="; 5963 - }; 5964 - }; 5965 - "unicode-canonical-property-names-ecmascript-2.0.0" = { 5966 - name = "unicode-canonical-property-names-ecmascript"; 5967 - packageName = "unicode-canonical-property-names-ecmascript"; 5968 - version = "2.0.0"; 5969 - src = fetchurl { 5970 - url = "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz"; 5971 - sha512 = "yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ=="; 5972 - }; 5973 - }; 5974 - "unicode-match-property-ecmascript-2.0.0" = { 5975 - name = "unicode-match-property-ecmascript"; 5976 - packageName = "unicode-match-property-ecmascript"; 5977 - version = "2.0.0"; 5978 - src = fetchurl { 5979 - url = "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz"; 5980 - sha512 = "5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q=="; 5981 - }; 5982 - }; 5983 - "unicode-match-property-value-ecmascript-2.1.0" = { 5984 - name = "unicode-match-property-value-ecmascript"; 5985 - packageName = "unicode-match-property-value-ecmascript"; 5986 - version = "2.1.0"; 5987 - src = fetchurl { 5988 - url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz"; 5989 - sha512 = "qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA=="; 5990 - }; 5991 - }; 5992 - "unicode-property-aliases-ecmascript-2.1.0" = { 5993 - name = "unicode-property-aliases-ecmascript"; 5994 - packageName = "unicode-property-aliases-ecmascript"; 5995 - version = "2.1.0"; 5996 - src = fetchurl { 5997 - url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz"; 5998 - sha512 = "6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w=="; 5999 - }; 6000 - }; 6001 - "unpipe-1.0.0" = { 6002 - name = "unpipe"; 6003 - packageName = "unpipe"; 6004 - version = "1.0.0"; 6005 - src = fetchurl { 6006 - url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"; 6007 - sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; 6008 - }; 6009 - }; 6010 - "update-browserslist-db-1.0.9" = { 6011 - name = "update-browserslist-db"; 6012 - packageName = "update-browserslist-db"; 6013 - version = "1.0.9"; 6014 - src = fetchurl { 6015 - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz"; 6016 - sha512 = "/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg=="; 6017 - }; 6018 - }; 6019 - "uri-js-4.2.2" = { 6020 - name = "uri-js"; 6021 - packageName = "uri-js"; 6022 - version = "4.2.2"; 6023 - src = fetchurl { 6024 - url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz"; 6025 - sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ=="; 6026 - }; 6027 - }; 6028 - "url-loader-4.1.1" = { 6029 - name = "url-loader"; 6030 - packageName = "url-loader"; 6031 - version = "4.1.1"; 6032 - src = fetchurl { 6033 - url = "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz"; 6034 - sha512 = "3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA=="; 6035 - }; 6036 - }; 6037 - "util-deprecate-1.0.2" = { 6038 - name = "util-deprecate"; 6039 - packageName = "util-deprecate"; 6040 - version = "1.0.2"; 6041 - src = fetchurl { 6042 - url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; 6043 - sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 6044 - }; 6045 - }; 6046 - "utila-0.4.0" = { 6047 - name = "utila"; 6048 - packageName = "utila"; 6049 - version = "0.4.0"; 6050 - src = fetchurl { 6051 - url = "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz"; 6052 - sha1 = "8a16a05d445657a3aea5eecc5b12a4fa5379772c"; 6053 - }; 6054 - }; 6055 - "utils-merge-1.0.1" = { 6056 - name = "utils-merge"; 6057 - packageName = "utils-merge"; 6058 - version = "1.0.1"; 6059 - src = fetchurl { 6060 - url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"; 6061 - sha1 = "9f95710f50a267947b2ccc124741c1028427e713"; 6062 - }; 6063 - }; 6064 - "uuid-8.3.2" = { 6065 - name = "uuid"; 6066 - packageName = "uuid"; 6067 - version = "8.3.2"; 6068 - src = fetchurl { 6069 - url = "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"; 6070 - sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; 6071 - }; 6072 - }; 6073 - "v-tooltip-2.1.3" = { 6074 - name = "v-tooltip"; 6075 - packageName = "v-tooltip"; 6076 - version = "2.1.3"; 6077 - src = fetchurl { 6078 - url = "https://registry.npmjs.org/v-tooltip/-/v-tooltip-2.1.3.tgz"; 6079 - sha512 = "xXngyxLQTOx/yUEy50thb8te7Qo4XU6h4LZB6cvEfVd9mnysUxLEoYwGWDdqR+l69liKsy3IPkdYff3J1gAJ5w=="; 6080 - }; 6081 - }; 6082 - "vary-1.1.2" = { 6083 - name = "vary"; 6084 - packageName = "vary"; 6085 - version = "1.1.2"; 6086 - src = fetchurl { 6087 - url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"; 6088 - sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc"; 6089 - }; 6090 - }; 6091 - "vue-2.7.14" = { 6092 - name = "vue"; 6093 - packageName = "vue"; 6094 - version = "2.7.14"; 6095 - src = fetchurl { 6096 - url = "https://registry.npmjs.org/vue/-/vue-2.7.14.tgz"; 6097 - sha512 = "b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ=="; 6098 - }; 6099 - }; 6100 - "vue-eslint-parser-8.3.0" = { 6101 - name = "vue-eslint-parser"; 6102 - packageName = "vue-eslint-parser"; 6103 - version = "8.3.0"; 6104 - src = fetchurl { 6105 - url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz"; 6106 - sha512 = "dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g=="; 6107 - }; 6108 - }; 6109 - "vue-eslint-parser-9.1.1" = { 6110 - name = "vue-eslint-parser"; 6111 - packageName = "vue-eslint-parser"; 6112 - version = "9.1.1"; 6113 - src = fetchurl { 6114 - url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.1.1.tgz"; 6115 - sha512 = "C2aI/r85Q6tYcz4dpgvrs4wH/MqVrRAVIdpYedrxnATDHHkb+TroeRcDpKWGZCx/OcECMWfz7tVwQ8e+Opy6rA=="; 6116 - }; 6117 - }; 6118 - "vue-hot-reload-api-2.3.4" = { 6119 - name = "vue-hot-reload-api"; 6120 - packageName = "vue-hot-reload-api"; 6121 - version = "2.3.4"; 6122 - src = fetchurl { 6123 - url = "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz"; 6124 - sha512 = "BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog=="; 6125 - }; 6126 - }; 6127 - "vue-loader-15.10.1" = { 6128 - name = "vue-loader"; 6129 - packageName = "vue-loader"; 6130 - version = "15.10.1"; 6131 - src = fetchurl { 6132 - url = "https://registry.npmjs.org/vue-loader/-/vue-loader-15.10.1.tgz"; 6133 - sha512 = "SaPHK1A01VrNthlix6h1hq4uJu7S/z0kdLUb6klubo738NeQoLbS6V9/d8Pv19tU0XdQKju3D1HSKuI8wJ5wMA=="; 6134 - }; 6135 - }; 6136 - "vue-meta-2.4.0" = { 6137 - name = "vue-meta"; 6138 - packageName = "vue-meta"; 6139 - version = "2.4.0"; 6140 - src = fetchurl { 6141 - url = "https://registry.npmjs.org/vue-meta/-/vue-meta-2.4.0.tgz"; 6142 - sha512 = "XEeZUmlVeODclAjCNpWDnjgw+t3WA6gdzs6ENoIAgwO1J1d5p1tezDhtteLUFwcaQaTtayRrsx7GL6oXp/m2Jw=="; 6143 - }; 6144 - }; 6145 - "vue-multiselect-2.1.7" = { 6146 - name = "vue-multiselect"; 6147 - packageName = "vue-multiselect"; 6148 - version = "2.1.7"; 6149 - src = fetchurl { 6150 - url = "https://registry.npmjs.org/vue-multiselect/-/vue-multiselect-2.1.7.tgz"; 6151 - sha512 = "KIegcN+Ntwg3cbkY/jhw2s/+XJUM0Lpi/LcKFYCS8PrZHcWBl2iKCVze7ZCnRj3w8H7/lUJ9v7rj9KQiNxApBw=="; 6152 - }; 6153 - }; 6154 - "vue-resize-1.0.1" = { 6155 - name = "vue-resize"; 6156 - packageName = "vue-resize"; 6157 - version = "1.0.1"; 6158 - src = fetchurl { 6159 - url = "https://registry.npmjs.org/vue-resize/-/vue-resize-1.0.1.tgz"; 6160 - sha512 = "z5M7lJs0QluJnaoMFTIeGx6dIkYxOwHThlZDeQnWZBizKblb99GSejPnK37ZbNE/rVwDcYcHY+Io+AxdpY952w=="; 6161 - }; 6162 - }; 6163 - "vue-router-3.6.5" = { 6164 - name = "vue-router"; 6165 - packageName = "vue-router"; 6166 - version = "3.6.5"; 6167 - src = fetchurl { 6168 - url = "https://registry.npmjs.org/vue-router/-/vue-router-3.6.5.tgz"; 6169 - sha512 = "VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ=="; 6170 - }; 6171 - }; 6172 - "vue-snotify-3.2.1" = { 6173 - name = "vue-snotify"; 6174 - packageName = "vue-snotify"; 6175 - version = "3.2.1"; 6176 - src = fetchurl { 6177 - url = "https://registry.npmjs.org/vue-snotify/-/vue-snotify-3.2.1.tgz"; 6178 - sha512 = "7kETtCAK3key/mDkz47FY/LuPzDGNwHHrYmS037JuVac2FW/9GTtoCNIrOp+SNbpMHeXFdLIDktkBK0IdPdHew=="; 6179 - }; 6180 - }; 6181 - "vue-style-loader-4.1.3" = { 6182 - name = "vue-style-loader"; 6183 - packageName = "vue-style-loader"; 6184 - version = "4.1.3"; 6185 - src = fetchurl { 6186 - url = "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz"; 6187 - sha512 = "sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg=="; 6188 - }; 6189 - }; 6190 - "vue-template-compiler-2.7.14" = { 6191 - name = "vue-template-compiler"; 6192 - packageName = "vue-template-compiler"; 6193 - version = "2.7.14"; 6194 - src = fetchurl { 6195 - url = "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz"; 6196 - sha512 = "zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ=="; 6197 - }; 6198 - }; 6199 - "vue-template-es2015-compiler-1.9.1" = { 6200 - name = "vue-template-es2015-compiler"; 6201 - packageName = "vue-template-es2015-compiler"; 6202 - version = "1.9.1"; 6203 - src = fetchurl { 6204 - url = "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz"; 6205 - sha512 = "4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw=="; 6206 - }; 6207 - }; 6208 - "vuex-3.6.2" = { 6209 - name = "vuex"; 6210 - packageName = "vuex"; 6211 - version = "3.6.2"; 6212 - src = fetchurl { 6213 - url = "https://registry.npmjs.org/vuex/-/vuex-3.6.2.tgz"; 6214 - sha512 = "ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw=="; 6215 - }; 6216 - }; 6217 - "watchpack-2.4.0" = { 6218 - name = "watchpack"; 6219 - packageName = "watchpack"; 6220 - version = "2.4.0"; 6221 - src = fetchurl { 6222 - url = "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz"; 6223 - sha512 = "Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg=="; 6224 - }; 6225 - }; 6226 - "wbuf-1.7.3" = { 6227 - name = "wbuf"; 6228 - packageName = "wbuf"; 6229 - version = "1.7.3"; 6230 - src = fetchurl { 6231 - url = "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz"; 6232 - sha512 = "O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA=="; 6233 - }; 6234 - }; 6235 - "webpack-5.80.0" = { 6236 - name = "webpack"; 6237 - packageName = "webpack"; 6238 - version = "5.80.0"; 6239 - src = fetchurl { 6240 - url = "https://registry.npmjs.org/webpack/-/webpack-5.80.0.tgz"; 6241 - sha512 = "OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA=="; 6242 - }; 6243 - }; 6244 - "webpack-bundle-analyzer-4.8.0" = { 6245 - name = "webpack-bundle-analyzer"; 6246 - packageName = "webpack-bundle-analyzer"; 6247 - version = "4.8.0"; 6248 - src = fetchurl { 6249 - url = "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.8.0.tgz"; 6250 - sha512 = "ZzoSBePshOKhr+hd8u6oCkZVwpVaXgpw23ScGLFpR6SjYI7+7iIWYarjN6OEYOfRt8o7ZyZZQk0DuMizJ+LEIg=="; 6251 - }; 6252 - }; 6253 - "webpack-cli-4.10.0" = { 6254 - name = "webpack-cli"; 6255 - packageName = "webpack-cli"; 6256 - version = "4.10.0"; 6257 - src = fetchurl { 6258 - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz"; 6259 - sha512 = "NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w=="; 6260 - }; 6261 - }; 6262 - "webpack-dev-middleware-5.3.1" = { 6263 - name = "webpack-dev-middleware"; 6264 - packageName = "webpack-dev-middleware"; 6265 - version = "5.3.1"; 6266 - src = fetchurl { 6267 - url = "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.1.tgz"; 6268 - sha512 = "81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg=="; 6269 - }; 6270 - }; 6271 - "webpack-dev-server-4.13.3" = { 6272 - name = "webpack-dev-server"; 6273 - packageName = "webpack-dev-server"; 6274 - version = "4.13.3"; 6275 - src = fetchurl { 6276 - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.3.tgz"; 6277 - sha512 = "KqqzrzMRSRy5ePz10VhjyL27K2dxqwXQLP5rAKwRJBPUahe7Z2bBWzHw37jeb8GCPKxZRO79ZdQUAPesMh/Nug=="; 6278 - }; 6279 - }; 6280 - "webpack-merge-5.8.0" = { 6281 - name = "webpack-merge"; 6282 - packageName = "webpack-merge"; 6283 - version = "5.8.0"; 6284 - src = fetchurl { 6285 - url = "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz"; 6286 - sha512 = "/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q=="; 6287 - }; 6288 - }; 6289 - "webpack-sources-3.2.3" = { 6290 - name = "webpack-sources"; 6291 - packageName = "webpack-sources"; 6292 - version = "3.2.3"; 6293 - src = fetchurl { 6294 - url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz"; 6295 - sha512 = "/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w=="; 6296 - }; 6297 - }; 6298 - "webpack-subresource-integrity-5.1.0" = { 6299 - name = "webpack-subresource-integrity"; 6300 - packageName = "webpack-subresource-integrity"; 6301 - version = "5.1.0"; 6302 - src = fetchurl { 6303 - url = "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz"; 6304 - sha512 = "sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q=="; 6305 - }; 6306 - }; 6307 - "websocket-driver-0.7.4" = { 6308 - name = "websocket-driver"; 6309 - packageName = "websocket-driver"; 6310 - version = "0.7.4"; 6311 - src = fetchurl { 6312 - url = "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz"; 6313 - sha512 = "b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg=="; 6314 - }; 6315 - }; 6316 - "websocket-extensions-0.1.4" = { 6317 - name = "websocket-extensions"; 6318 - packageName = "websocket-extensions"; 6319 - version = "0.1.4"; 6320 - src = fetchurl { 6321 - url = "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz"; 6322 - sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; 6323 - }; 6324 - }; 6325 - "which-2.0.2" = { 6326 - name = "which"; 6327 - packageName = "which"; 6328 - version = "2.0.2"; 6329 - src = fetchurl { 6330 - url = "https://registry.npmjs.org/which/-/which-2.0.2.tgz"; 6331 - sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; 6332 - }; 6333 - }; 6334 - "which-boxed-primitive-1.0.2" = { 6335 - name = "which-boxed-primitive"; 6336 - packageName = "which-boxed-primitive"; 6337 - version = "1.0.2"; 6338 - src = fetchurl { 6339 - url = "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"; 6340 - sha512 = "bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="; 6341 - }; 6342 - }; 6343 - "which-typed-array-1.1.9" = { 6344 - name = "which-typed-array"; 6345 - packageName = "which-typed-array"; 6346 - version = "1.1.9"; 6347 - src = fetchurl { 6348 - url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz"; 6349 - sha512 = "w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA=="; 6350 - }; 6351 - }; 6352 - "wildcard-2.0.0" = { 6353 - name = "wildcard"; 6354 - packageName = "wildcard"; 6355 - version = "2.0.0"; 6356 - src = fetchurl { 6357 - url = "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz"; 6358 - sha512 = "JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw=="; 6359 - }; 6360 - }; 6361 - "word-wrap-1.2.3" = { 6362 - name = "word-wrap"; 6363 - packageName = "word-wrap"; 6364 - version = "1.2.3"; 6365 - src = fetchurl { 6366 - url = "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"; 6367 - sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 6368 - }; 6369 - }; 6370 - "wrappy-1.0.2" = { 6371 - name = "wrappy"; 6372 - packageName = "wrappy"; 6373 - version = "1.0.2"; 6374 - src = fetchurl { 6375 - url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; 6376 - sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 6377 - }; 6378 - }; 6379 - "ws-7.5.9" = { 6380 - name = "ws"; 6381 - packageName = "ws"; 6382 - version = "7.5.9"; 6383 - src = fetchurl { 6384 - url = "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz"; 6385 - sha512 = "F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q=="; 6386 - }; 6387 - }; 6388 - "ws-8.13.0" = { 6389 - name = "ws"; 6390 - packageName = "ws"; 6391 - version = "8.13.0"; 6392 - src = fetchurl { 6393 - url = "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz"; 6394 - sha512 = "x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA=="; 6395 - }; 6396 - }; 6397 - "xml-name-validator-4.0.0" = { 6398 - name = "xml-name-validator"; 6399 - packageName = "xml-name-validator"; 6400 - version = "4.0.0"; 6401 - src = fetchurl { 6402 - url = "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz"; 6403 - sha512 = "ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw=="; 6404 - }; 6405 - }; 6406 - "yallist-2.1.2" = { 6407 - name = "yallist"; 6408 - packageName = "yallist"; 6409 - version = "2.1.2"; 6410 - src = fetchurl { 6411 - url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"; 6412 - sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; 6413 - }; 6414 - }; 6415 - "yallist-3.1.1" = { 6416 - name = "yallist"; 6417 - packageName = "yallist"; 6418 - version = "3.1.1"; 6419 - src = fetchurl { 6420 - url = "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz"; 6421 - sha512 = "a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="; 6422 - }; 6423 - }; 6424 - "yallist-4.0.0" = { 6425 - name = "yallist"; 6426 - packageName = "yallist"; 6427 - version = "4.0.0"; 6428 - src = fetchurl { 6429 - url = "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"; 6430 - sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 6431 - }; 6432 - }; 6433 - "yocto-queue-0.1.0" = { 6434 - name = "yocto-queue"; 6435 - packageName = "yocto-queue"; 6436 - version = "0.1.0"; 6437 - src = fetchurl { 6438 - url = "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"; 6439 - sha512 = "rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="; 6440 - }; 6441 - }; 6442 - }; 6443 - args = { 6444 - name = "asf-ui"; 6445 - packageName = "asf-ui"; 6446 - version = "0.0.0"; 6447 - src = ./.; 6448 - dependencies = [ 6449 - (sources."@ampproject/remapping-2.2.0" // { 6450 - dependencies = [ 6451 - sources."@jridgewell/gen-mapping-0.1.1" 6452 - ]; 6453 - }) 6454 - sources."@babel/code-frame-7.21.4" 6455 - sources."@babel/compat-data-7.21.4" 6456 - (sources."@babel/core-7.21.4" // { 6457 - dependencies = [ 6458 - sources."debug-4.3.4" 6459 - sources."json5-2.2.3" 6460 - sources."ms-2.1.2" 6461 - sources."semver-6.3.0" 6462 - ]; 6463 - }) 6464 - (sources."@babel/eslint-parser-7.21.3" // { 6465 - dependencies = [ 6466 - sources."eslint-visitor-keys-2.1.0" 6467 - sources."semver-6.3.0" 6468 - ]; 6469 - }) 6470 - sources."@babel/generator-7.21.4" 6471 - sources."@babel/helper-annotate-as-pure-7.18.6" 6472 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.6" 6473 - (sources."@babel/helper-compilation-targets-7.21.4" // { 6474 - dependencies = [ 6475 - sources."lru-cache-5.1.1" 6476 - sources."semver-6.3.0" 6477 - sources."yallist-3.1.1" 6478 - ]; 6479 - }) 6480 - sources."@babel/helper-create-class-features-plugin-7.21.4" 6481 - sources."@babel/helper-create-regexp-features-plugin-7.21.4" 6482 - (sources."@babel/helper-define-polyfill-provider-0.3.3" // { 6483 - dependencies = [ 6484 - sources."debug-4.3.4" 6485 - sources."ms-2.1.2" 6486 - sources."semver-6.3.0" 6487 - ]; 6488 - }) 6489 - sources."@babel/helper-environment-visitor-7.18.9" 6490 - sources."@babel/helper-explode-assignable-expression-7.18.6" 6491 - sources."@babel/helper-function-name-7.21.0" 6492 - sources."@babel/helper-hoist-variables-7.18.6" 6493 - sources."@babel/helper-member-expression-to-functions-7.21.0" 6494 - sources."@babel/helper-module-imports-7.18.6" 6495 - sources."@babel/helper-module-transforms-7.21.2" 6496 - sources."@babel/helper-optimise-call-expression-7.18.6" 6497 - sources."@babel/helper-plugin-utils-7.20.2" 6498 - sources."@babel/helper-remap-async-to-generator-7.18.9" 6499 - sources."@babel/helper-replace-supers-7.20.7" 6500 - sources."@babel/helper-simple-access-7.20.2" 6501 - sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0" 6502 - sources."@babel/helper-split-export-declaration-7.18.6" 6503 - sources."@babel/helper-string-parser-7.19.4" 6504 - sources."@babel/helper-validator-identifier-7.19.1" 6505 - sources."@babel/helper-validator-option-7.21.0" 6506 - sources."@babel/helper-wrap-function-7.18.10" 6507 - sources."@babel/helpers-7.21.0" 6508 - sources."@babel/highlight-7.18.6" 6509 - sources."@babel/parser-7.21.4" 6510 - sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" 6511 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7" 6512 - sources."@babel/plugin-proposal-async-generator-functions-7.20.7" 6513 - sources."@babel/plugin-proposal-class-properties-7.18.6" 6514 - sources."@babel/plugin-proposal-class-static-block-7.21.0" 6515 - sources."@babel/plugin-proposal-dynamic-import-7.18.6" 6516 - sources."@babel/plugin-proposal-export-namespace-from-7.18.9" 6517 - sources."@babel/plugin-proposal-json-strings-7.18.6" 6518 - sources."@babel/plugin-proposal-logical-assignment-operators-7.20.7" 6519 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" 6520 - sources."@babel/plugin-proposal-numeric-separator-7.18.6" 6521 - sources."@babel/plugin-proposal-object-rest-spread-7.20.7" 6522 - sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" 6523 - sources."@babel/plugin-proposal-optional-chaining-7.21.0" 6524 - sources."@babel/plugin-proposal-private-methods-7.18.6" 6525 - sources."@babel/plugin-proposal-private-property-in-object-7.21.0" 6526 - sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" 6527 - sources."@babel/plugin-syntax-async-generators-7.8.4" 6528 - sources."@babel/plugin-syntax-class-properties-7.12.13" 6529 - sources."@babel/plugin-syntax-class-static-block-7.14.5" 6530 - sources."@babel/plugin-syntax-dynamic-import-7.8.3" 6531 - sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 6532 - sources."@babel/plugin-syntax-import-assertions-7.20.0" 6533 - sources."@babel/plugin-syntax-json-strings-7.8.3" 6534 - sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" 6535 - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 6536 - sources."@babel/plugin-syntax-numeric-separator-7.10.4" 6537 - sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 6538 - sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 6539 - sources."@babel/plugin-syntax-optional-chaining-7.8.3" 6540 - sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 6541 - sources."@babel/plugin-syntax-top-level-await-7.14.5" 6542 - sources."@babel/plugin-transform-arrow-functions-7.20.7" 6543 - sources."@babel/plugin-transform-async-to-generator-7.20.7" 6544 - sources."@babel/plugin-transform-block-scoped-functions-7.18.6" 6545 - sources."@babel/plugin-transform-block-scoping-7.21.0" 6546 - sources."@babel/plugin-transform-classes-7.21.0" 6547 - sources."@babel/plugin-transform-computed-properties-7.20.7" 6548 - sources."@babel/plugin-transform-destructuring-7.21.3" 6549 - sources."@babel/plugin-transform-dotall-regex-7.18.6" 6550 - sources."@babel/plugin-transform-duplicate-keys-7.18.9" 6551 - sources."@babel/plugin-transform-exponentiation-operator-7.18.6" 6552 - sources."@babel/plugin-transform-for-of-7.21.0" 6553 - sources."@babel/plugin-transform-function-name-7.18.9" 6554 - sources."@babel/plugin-transform-literals-7.18.9" 6555 - sources."@babel/plugin-transform-member-expression-literals-7.18.6" 6556 - sources."@babel/plugin-transform-modules-amd-7.20.11" 6557 - sources."@babel/plugin-transform-modules-commonjs-7.21.2" 6558 - sources."@babel/plugin-transform-modules-systemjs-7.20.11" 6559 - sources."@babel/plugin-transform-modules-umd-7.18.6" 6560 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" 6561 - sources."@babel/plugin-transform-new-target-7.18.6" 6562 - sources."@babel/plugin-transform-object-super-7.18.6" 6563 - sources."@babel/plugin-transform-parameters-7.21.3" 6564 - sources."@babel/plugin-transform-property-literals-7.18.6" 6565 - sources."@babel/plugin-transform-regenerator-7.20.5" 6566 - sources."@babel/plugin-transform-reserved-words-7.18.6" 6567 - sources."@babel/plugin-transform-shorthand-properties-7.18.6" 6568 - sources."@babel/plugin-transform-spread-7.20.7" 6569 - sources."@babel/plugin-transform-sticky-regex-7.18.6" 6570 - sources."@babel/plugin-transform-template-literals-7.18.9" 6571 - sources."@babel/plugin-transform-typeof-symbol-7.18.9" 6572 - sources."@babel/plugin-transform-unicode-escapes-7.18.10" 6573 - sources."@babel/plugin-transform-unicode-regex-7.18.6" 6574 - (sources."@babel/preset-env-7.21.4" // { 6575 - dependencies = [ 6576 - sources."semver-6.3.0" 6577 - ]; 6578 - }) 6579 - sources."@babel/preset-modules-0.1.5" 6580 - sources."@babel/regjsgen-0.8.0" 6581 - sources."@babel/runtime-7.14.6" 6582 - sources."@babel/template-7.20.7" 6583 - (sources."@babel/traverse-7.21.4" // { 6584 - dependencies = [ 6585 - sources."debug-4.3.3" 6586 - sources."ms-2.1.2" 6587 - ]; 6588 - }) 6589 - sources."@babel/types-7.21.4" 6590 - sources."@discoveryjs/json-ext-0.5.7" 6591 - sources."@eslint-community/eslint-utils-4.3.0" 6592 - sources."@eslint-community/regexpp-4.4.0" 6593 - (sources."@eslint/eslintrc-2.0.2" // { 6594 - dependencies = [ 6595 - sources."debug-4.3.3" 6596 - sources."globals-13.19.0" 6597 - sources."ms-2.1.2" 6598 - ]; 6599 - }) 6600 - sources."@eslint/js-8.39.0" 6601 - sources."@fortawesome/fontawesome-common-types-6.4.0" 6602 - sources."@fortawesome/fontawesome-svg-core-6.4.0" 6603 - sources."@fortawesome/free-brands-svg-icons-6.4.0" 6604 - sources."@fortawesome/free-solid-svg-icons-6.4.0" 6605 - sources."@fortawesome/vue-fontawesome-2.0.10" 6606 - (sources."@humanwhocodes/config-array-0.11.8" // { 6607 - dependencies = [ 6608 - sources."debug-4.3.3" 6609 - sources."ms-2.1.2" 6610 - ]; 6611 - }) 6612 - sources."@humanwhocodes/module-importer-1.0.1" 6613 - sources."@humanwhocodes/object-schema-1.2.1" 6614 - sources."@jridgewell/gen-mapping-0.3.2" 6615 - sources."@jridgewell/resolve-uri-3.1.0" 6616 - sources."@jridgewell/set-array-1.1.2" 6617 - sources."@jridgewell/source-map-0.3.3" 6618 - sources."@jridgewell/sourcemap-codec-1.4.14" 6619 - sources."@jridgewell/trace-mapping-0.3.17" 6620 - sources."@leichtgewicht/ip-codec-2.0.3" 6621 - sources."@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" 6622 - sources."@nodelib/fs.scandir-2.1.5" 6623 - sources."@nodelib/fs.stat-2.0.5" 6624 - sources."@nodelib/fs.walk-1.2.8" 6625 - sources."@polka/url-1.0.0-next.21" 6626 - sources."@types/body-parser-1.19.2" 6627 - sources."@types/bonjour-3.5.10" 6628 - sources."@types/connect-3.4.35" 6629 - sources."@types/connect-history-api-fallback-1.3.5" 6630 - sources."@types/eslint-8.2.2" 6631 - sources."@types/eslint-scope-3.7.3" 6632 - sources."@types/estree-1.0.0" 6633 - sources."@types/express-4.17.13" 6634 - sources."@types/express-serve-static-core-4.17.27" 6635 - sources."@types/glob-7.1.4" 6636 - sources."@types/html-minifier-terser-6.0.0" 6637 - sources."@types/http-proxy-1.17.8" 6638 - sources."@types/json-schema-7.0.9" 6639 - sources."@types/json5-0.0.29" 6640 - sources."@types/mime-1.3.2" 6641 - sources."@types/minimatch-3.0.5" 6642 - sources."@types/node-12.11.2" 6643 - sources."@types/qs-6.9.7" 6644 - sources."@types/range-parser-1.2.4" 6645 - sources."@types/retry-0.12.1" 6646 - sources."@types/serve-index-1.9.1" 6647 - sources."@types/serve-static-1.13.10" 6648 - sources."@types/sockjs-0.3.33" 6649 - sources."@types/ws-8.5.3" 6650 - sources."@vue/compiler-sfc-2.7.14" 6651 - (sources."@vue/component-compiler-utils-3.2.2" // { 6652 - dependencies = [ 6653 - sources."picocolors-0.2.1" 6654 - sources."postcss-7.0.39" 6655 - ]; 6656 - }) 6657 - sources."@webassemblyjs/ast-1.11.5" 6658 - sources."@webassemblyjs/floating-point-hex-parser-1.11.5" 6659 - sources."@webassemblyjs/helper-api-error-1.11.5" 6660 - sources."@webassemblyjs/helper-buffer-1.11.5" 6661 - sources."@webassemblyjs/helper-numbers-1.11.5" 6662 - sources."@webassemblyjs/helper-wasm-bytecode-1.11.5" 6663 - sources."@webassemblyjs/helper-wasm-section-1.11.5" 6664 - sources."@webassemblyjs/ieee754-1.11.5" 6665 - sources."@webassemblyjs/leb128-1.11.5" 6666 - sources."@webassemblyjs/utf8-1.11.5" 6667 - sources."@webassemblyjs/wasm-edit-1.11.5" 6668 - sources."@webassemblyjs/wasm-gen-1.11.5" 6669 - sources."@webassemblyjs/wasm-opt-1.11.5" 6670 - sources."@webassemblyjs/wasm-parser-1.11.5" 6671 - sources."@webassemblyjs/wast-printer-1.11.5" 6672 - sources."@webpack-cli/configtest-1.2.0" 6673 - sources."@webpack-cli/info-1.5.0" 6674 - sources."@webpack-cli/serve-1.7.0" 6675 - sources."@xtuc/ieee754-1.2.0" 6676 - sources."@xtuc/long-4.2.2" 6677 - sources."accepts-1.3.8" 6678 - sources."acorn-8.8.0" 6679 - sources."acorn-import-assertions-1.8.0" 6680 - sources."acorn-jsx-5.3.2" 6681 - sources."acorn-walk-8.2.0" 6682 - sources."ajv-6.12.6" 6683 - (sources."ajv-formats-2.1.1" // { 6684 - dependencies = [ 6685 - sources."ajv-8.8.1" 6686 - sources."json-schema-traverse-1.0.0" 6687 - ]; 6688 - }) 6689 - sources."ajv-keywords-3.5.2" 6690 - sources."ansi-html-community-0.0.8" 6691 - sources."ansi-regex-5.0.1" 6692 - sources."ansi-styles-3.2.1" 6693 - sources."anymatch-3.1.2" 6694 - sources."argparse-2.0.1" 6695 - sources."array-flatten-2.1.2" 6696 - sources."array-includes-3.1.6" 6697 - sources."array-union-1.0.2" 6698 - sources."array-uniq-1.0.3" 6699 - sources."array.prototype.flat-1.3.1" 6700 - sources."array.prototype.flatmap-1.3.1" 6701 - sources."asynckit-0.4.0" 6702 - sources."available-typed-arrays-1.0.5" 6703 - sources."axios-1.3.6" 6704 - (sources."babel-loader-9.1.2" // { 6705 - dependencies = [ 6706 - sources."ajv-8.12.0" 6707 - sources."ajv-keywords-5.1.0" 6708 - sources."json-schema-traverse-1.0.0" 6709 - sources."schema-utils-4.0.0" 6710 - ]; 6711 - }) 6712 - (sources."babel-plugin-polyfill-corejs2-0.3.3" // { 6713 - dependencies = [ 6714 - sources."semver-6.3.0" 6715 - ]; 6716 - }) 6717 - sources."babel-plugin-polyfill-corejs3-0.6.0" 6718 - sources."babel-plugin-polyfill-regenerator-0.4.1" 6719 - sources."balanced-match-1.0.0" 6720 - sources."batch-0.6.1" 6721 - sources."before-build-webpack-0.2.13" 6722 - sources."big.js-5.2.2" 6723 - sources."binary-extensions-2.2.0" 6724 - sources."bluebird-3.7.2" 6725 - (sources."body-parser-1.19.2" // { 6726 - dependencies = [ 6727 - sources."bytes-3.1.2" 6728 - ]; 6729 - }) 6730 - (sources."bonjour-service-1.0.11" // { 6731 - dependencies = [ 6732 - sources."dns-packet-5.3.1" 6733 - sources."multicast-dns-7.2.4" 6734 - ]; 6735 - }) 6736 - sources."boolbase-1.0.0" 6737 - sources."brace-expansion-1.1.11" 6738 - sources."braces-3.0.2" 6739 - sources."browserslist-4.21.3" 6740 - sources."buffer-from-1.1.1" 6741 - sources."bytes-3.0.0" 6742 - sources."call-bind-1.0.2" 6743 - sources."callsites-3.1.0" 6744 - sources."camel-case-4.1.2" 6745 - sources."caniuse-lite-1.0.30001399" 6746 - sources."chalk-2.4.2" 6747 - sources."chokidar-3.5.3" 6748 - sources."chrome-trace-event-1.0.3" 6749 - sources."clean-css-5.2.2" 6750 - sources."clean-webpack-plugin-4.0.0" 6751 - sources."clone-deep-4.0.1" 6752 - sources."color-convert-1.9.3" 6753 - sources."color-name-1.1.3" 6754 - sources."colorette-2.0.16" 6755 - sources."combined-stream-1.0.8" 6756 - sources."commander-2.20.3" 6757 - sources."commondir-1.0.1" 6758 - sources."compressible-2.0.18" 6759 - sources."compression-1.7.4" 6760 - sources."concat-map-0.0.1" 6761 - sources."confusing-browser-globals-1.0.10" 6762 - sources."connect-history-api-fallback-2.0.0" 6763 - sources."consolidate-0.15.1" 6764 - (sources."content-disposition-0.5.4" // { 6765 - dependencies = [ 6766 - sources."safe-buffer-5.2.1" 6767 - ]; 6768 - }) 6769 - sources."content-type-1.0.4" 6770 - sources."convert-source-map-1.8.0" 6771 - sources."cookie-0.4.2" 6772 - sources."cookie-signature-1.0.6" 6773 - sources."copy-to-clipboard-3.3.3" 6774 - (sources."copy-webpack-plugin-11.0.0" // { 6775 - dependencies = [ 6776 - sources."ajv-8.11.0" 6777 - sources."ajv-keywords-5.1.0" 6778 - sources."glob-parent-6.0.2" 6779 - sources."globby-13.1.1" 6780 - sources."json-schema-traverse-1.0.0" 6781 - sources."schema-utils-4.0.0" 6782 - ]; 6783 - }) 6784 - sources."core-js-compat-3.25.1" 6785 - sources."core-util-is-1.0.3" 6786 - sources."cross-spawn-7.0.3" 6787 - sources."css-loader-6.7.3" 6788 - sources."css-select-4.1.3" 6789 - sources."css-what-5.1.0" 6790 - sources."cssesc-3.0.0" 6791 - sources."csstype-3.1.0" 6792 - sources."de-indent-1.0.2" 6793 - sources."debug-2.6.9" 6794 - sources."deep-is-0.1.4" 6795 - sources."deepmerge-4.2.2" 6796 - sources."default-gateway-6.0.3" 6797 - sources."define-lazy-prop-2.0.0" 6798 - sources."define-properties-1.1.4" 6799 - (sources."del-4.1.1" // { 6800 - dependencies = [ 6801 - sources."pify-4.0.1" 6802 - sources."rimraf-2.7.1" 6803 - ]; 6804 - }) 6805 - sources."delayed-stream-1.0.0" 6806 - sources."depd-1.1.2" 6807 - sources."destroy-1.0.4" 6808 - sources."detect-node-2.1.0" 6809 - (sources."dir-glob-3.0.1" // { 6810 - dependencies = [ 6811 - sources."path-type-4.0.0" 6812 - ]; 6813 - }) 6814 - sources."dns-equal-1.0.0" 6815 - sources."doctrine-3.0.0" 6816 - sources."dom-converter-0.2.0" 6817 - sources."dom-serializer-1.3.2" 6818 - sources."domelementtype-2.2.0" 6819 - sources."domhandler-4.2.2" 6820 - sources."domutils-2.8.0" 6821 - sources."dot-case-3.0.4" 6822 - sources."duplexer-0.1.2" 6823 - sources."ee-first-1.1.1" 6824 - sources."electron-to-chromium-1.4.249" 6825 - sources."emojis-list-3.0.0" 6826 - sources."encodeurl-1.0.2" 6827 - sources."enhanced-resolve-5.13.0" 6828 - sources."entities-2.2.0" 6829 - sources."envinfo-7.8.1" 6830 - sources."es-abstract-1.21.1" 6831 - sources."es-module-lexer-1.2.1" 6832 - sources."es-set-tostringtag-2.0.1" 6833 - sources."es-shim-unscopables-1.0.0" 6834 - sources."es-to-primitive-1.2.1" 6835 - sources."escalade-3.1.1" 6836 - sources."escape-html-1.0.3" 6837 - sources."escape-string-regexp-1.0.5" 6838 - (sources."eslint-8.39.0" // { 6839 - dependencies = [ 6840 - sources."ansi-styles-4.3.0" 6841 - sources."chalk-4.1.2" 6842 - sources."color-convert-2.0.1" 6843 - sources."color-name-1.1.4" 6844 - sources."debug-4.3.4" 6845 - sources."escape-string-regexp-4.0.0" 6846 - sources."eslint-scope-7.2.0" 6847 - sources."estraverse-5.3.0" 6848 - sources."glob-parent-6.0.2" 6849 - sources."globals-13.20.0" 6850 - sources."has-flag-4.0.0" 6851 - sources."is-path-inside-3.0.3" 6852 - sources."ms-2.1.2" 6853 - sources."supports-color-7.2.0" 6854 - ]; 6855 - }) 6856 - (sources."eslint-config-airbnb-base-15.0.0" // { 6857 - dependencies = [ 6858 - sources."semver-6.3.0" 6859 - ]; 6860 - }) 6861 - (sources."eslint-import-resolver-node-0.3.7" // { 6862 - dependencies = [ 6863 - sources."debug-3.2.7" 6864 - sources."ms-2.1.3" 6865 - ]; 6866 - }) 6867 - (sources."eslint-module-utils-2.7.4" // { 6868 - dependencies = [ 6869 - sources."debug-3.2.7" 6870 - sources."ms-2.1.3" 6871 - ]; 6872 - }) 6873 - (sources."eslint-plugin-import-2.27.5" // { 6874 - dependencies = [ 6875 - sources."debug-3.2.7" 6876 - sources."doctrine-2.1.0" 6877 - sources."ms-2.1.3" 6878 - sources."semver-6.3.0" 6879 - ]; 6880 - }) 6881 - (sources."eslint-plugin-vue-9.11.0" // { 6882 - dependencies = [ 6883 - sources."debug-4.3.4" 6884 - sources."eslint-scope-7.2.0" 6885 - sources."estraverse-5.3.0" 6886 - sources."ms-2.1.2" 6887 - sources."vue-eslint-parser-9.1.1" 6888 - ]; 6889 - }) 6890 - sources."eslint-scope-5.1.1" 6891 - sources."eslint-visitor-keys-3.4.0" 6892 - sources."espree-9.5.1" 6893 - (sources."esquery-1.4.2" // { 6894 - dependencies = [ 6895 - sources."estraverse-5.2.0" 6896 - ]; 6897 - }) 6898 - (sources."esrecurse-4.3.0" // { 6899 - dependencies = [ 6900 - sources."estraverse-5.2.0" 6901 - ]; 6902 - }) 6903 - sources."estraverse-4.2.0" 6904 - sources."esutils-2.0.2" 6905 - sources."etag-1.8.1" 6906 - sources."eventemitter3-4.0.7" 6907 - sources."events-3.3.0" 6908 - sources."execa-5.1.1" 6909 - (sources."express-4.17.3" // { 6910 - dependencies = [ 6911 - sources."array-flatten-1.1.1" 6912 - sources."safe-buffer-5.2.1" 6913 - ]; 6914 - }) 6915 - sources."fast-deep-equal-3.1.3" 6916 - sources."fast-glob-3.2.11" 6917 - sources."fast-json-stable-stringify-2.0.0" 6918 - sources."fast-levenshtein-2.0.6" 6919 - sources."fastest-levenshtein-1.0.12" 6920 - sources."fastq-1.11.0" 6921 - sources."faye-websocket-0.11.4" 6922 - sources."file-entry-cache-6.0.1" 6923 - (sources."file-loader-6.2.0" // { 6924 - dependencies = [ 6925 - sources."json5-2.1.3" 6926 - sources."loader-utils-2.0.0" 6927 - ]; 6928 - }) 6929 - sources."fill-range-7.0.1" 6930 - sources."finalhandler-1.1.2" 6931 - (sources."find-cache-dir-3.3.2" // { 6932 - dependencies = [ 6933 - sources."find-up-4.1.0" 6934 - sources."locate-path-5.0.0" 6935 - sources."p-limit-2.3.0" 6936 - sources."p-locate-4.1.0" 6937 - sources."p-try-2.2.0" 6938 - sources."pkg-dir-4.2.0" 6939 - ]; 6940 - }) 6941 - sources."find-up-5.0.0" 6942 - sources."flat-5.0.2" 6943 - sources."flat-cache-3.0.4" 6944 - sources."flatted-3.2.4" 6945 - sources."follow-redirects-1.15.2" 6946 - sources."for-each-0.3.3" 6947 - sources."form-data-4.0.0" 6948 - sources."forwarded-0.2.0" 6949 - sources."fresh-0.5.2" 6950 - sources."fs-monkey-1.0.3" 6951 - sources."fs.realpath-1.0.0" 6952 - sources."fsevents-2.3.2" 6953 - sources."function-bind-1.1.1" 6954 - sources."function.prototype.name-1.1.5" 6955 - sources."functions-have-names-1.2.3" 6956 - sources."gensync-1.0.0-beta.2" 6957 - sources."get-intrinsic-1.1.3" 6958 - sources."get-stream-6.0.1" 6959 - sources."get-symbol-description-1.0.0" 6960 - sources."glob-7.1.3" 6961 - (sources."glob-parent-5.1.2" // { 6962 - dependencies = [ 6963 - sources."is-glob-4.0.1" 6964 - ]; 6965 - }) 6966 - sources."glob-to-regexp-0.4.1" 6967 - sources."globals-11.12.0" 6968 - sources."globalthis-1.0.3" 6969 - (sources."globby-6.1.0" // { 6970 - dependencies = [ 6971 - sources."pify-2.3.0" 6972 - ]; 6973 - }) 6974 - sources."gopd-1.0.1" 6975 - sources."graceful-fs-4.2.9" 6976 - sources."grapheme-splitter-1.0.4" 6977 - sources."gzip-size-6.0.0" 6978 - sources."handle-thing-2.0.1" 6979 - sources."has-1.0.3" 6980 - sources."has-bigints-1.0.2" 6981 - sources."has-flag-3.0.0" 6982 - sources."has-property-descriptors-1.0.0" 6983 - sources."has-proto-1.0.1" 6984 - sources."has-symbols-1.0.3" 6985 - sources."has-tostringtag-1.0.0" 6986 - sources."hash-sum-1.0.2" 6987 - sources."he-1.2.0" 6988 - (sources."hpack.js-2.1.6" // { 6989 - dependencies = [ 6990 - sources."readable-stream-2.3.7" 6991 - ]; 6992 - }) 6993 - sources."html-entities-2.3.2" 6994 - (sources."html-minifier-terser-6.0.2" // { 6995 - dependencies = [ 6996 - sources."commander-8.3.0" 6997 - ]; 6998 - }) 6999 - sources."html-webpack-plugin-5.5.1" 7000 - sources."htmlparser2-6.1.0" 7001 - sources."http-deceiver-1.2.7" 7002 - (sources."http-errors-1.8.1" // { 7003 - dependencies = [ 7004 - sources."inherits-2.0.4" 7005 - ]; 7006 - }) 7007 - sources."http-parser-js-0.5.5" 7008 - sources."http-proxy-1.18.1" 7009 - sources."http-proxy-middleware-2.0.4" 7010 - sources."human-signals-2.1.0" 7011 - sources."humanize-duration-3.28.0" 7012 - sources."iconv-lite-0.4.24" 7013 - sources."icss-utils-5.1.0" 7014 - sources."ignore-5.2.0" 7015 - sources."immutable-4.0.0" 7016 - (sources."import-fresh-3.3.0" // { 7017 - dependencies = [ 7018 - sources."resolve-from-4.0.0" 7019 - ]; 7020 - }) 7021 - (sources."import-local-3.0.3" // { 7022 - dependencies = [ 7023 - sources."find-up-4.1.0" 7024 - sources."locate-path-5.0.0" 7025 - sources."p-limit-2.3.0" 7026 - sources."p-locate-4.1.0" 7027 - sources."p-try-2.2.0" 7028 - sources."pkg-dir-4.2.0" 7029 - ]; 7030 - }) 7031 - sources."imurmurhash-0.1.4" 7032 - sources."inflight-1.0.6" 7033 - sources."inherits-2.0.3" 7034 - sources."internal-slot-1.0.4" 7035 - sources."interpret-2.2.0" 7036 - sources."ipaddr.js-2.0.1" 7037 - sources."is-array-buffer-3.0.1" 7038 - sources."is-bigint-1.0.4" 7039 - sources."is-binary-path-2.1.0" 7040 - sources."is-boolean-object-1.1.2" 7041 - sources."is-callable-1.2.7" 7042 - sources."is-core-module-2.11.0" 7043 - sources."is-date-object-1.0.1" 7044 - sources."is-docker-2.2.1" 7045 - sources."is-extglob-2.1.1" 7046 - sources."is-glob-4.0.3" 7047 - sources."is-negative-zero-2.0.2" 7048 - sources."is-number-7.0.0" 7049 - sources."is-number-object-1.0.7" 7050 - sources."is-path-cwd-2.2.0" 7051 - sources."is-path-in-cwd-2.1.0" 7052 - sources."is-path-inside-2.1.0" 7053 - sources."is-plain-obj-3.0.0" 7054 - sources."is-plain-object-2.0.4" 7055 - sources."is-regex-1.1.4" 7056 - sources."is-shared-array-buffer-1.0.2" 7057 - sources."is-stream-2.0.1" 7058 - sources."is-string-1.0.7" 7059 - sources."is-symbol-1.0.4" 7060 - sources."is-typed-array-1.1.10" 7061 - sources."is-weakref-1.0.2" 7062 - sources."is-wsl-2.2.0" 7063 - sources."isarray-1.0.0" 7064 - sources."isexe-2.0.0" 7065 - sources."isobject-3.0.1" 7066 - (sources."jest-worker-27.4.6" // { 7067 - dependencies = [ 7068 - sources."has-flag-4.0.0" 7069 - sources."supports-color-8.1.1" 7070 - ]; 7071 - }) 7072 - sources."js-sdsl-4.1.4" 7073 - sources."js-tokens-4.0.0" 7074 - sources."js-yaml-4.1.0" 7075 - sources."jsesc-2.5.2" 7076 - sources."json-parse-even-better-errors-2.3.1" 7077 - sources."json-schema-traverse-0.4.1" 7078 - sources."json-stable-stringify-without-jsonify-1.0.1" 7079 - sources."json5-1.0.1" 7080 - sources."kind-of-6.0.3" 7081 - sources."klona-2.0.6" 7082 - sources."launch-editor-2.6.0" 7083 - sources."levn-0.4.1" 7084 - sources."linkify-html-4.1.1" 7085 - sources."linkifyjs-4.1.1" 7086 - sources."loader-runner-4.2.0" 7087 - (sources."loader-utils-1.4.0" // { 7088 - dependencies = [ 7089 - sources."emojis-list-3.0.0" 7090 - ]; 7091 - }) 7092 - sources."locate-path-6.0.0" 7093 - sources."lodash-4.17.21" 7094 - sources."lodash-es-4.17.21" 7095 - sources."lodash.debounce-4.0.8" 7096 - sources."lodash.merge-4.6.2" 7097 - sources."lower-case-2.0.2" 7098 - sources."lru-cache-4.1.5" 7099 - (sources."make-dir-3.1.0" // { 7100 - dependencies = [ 7101 - sources."semver-6.3.0" 7102 - ]; 7103 - }) 7104 - sources."media-typer-0.3.0" 7105 - sources."memfs-3.4.1" 7106 - sources."merge-descriptors-1.0.1" 7107 - sources."merge-source-map-1.1.0" 7108 - sources."merge-stream-2.0.0" 7109 - sources."merge2-1.4.1" 7110 - sources."methods-1.1.2" 7111 - (sources."micromatch-4.0.4" // { 7112 - dependencies = [ 7113 - sources."picomatch-2.3.0" 7114 - ]; 7115 - }) 7116 - sources."mime-2.5.2" 7117 - sources."mime-db-1.52.0" 7118 - sources."mime-types-2.1.35" 7119 - sources."mimic-fn-2.1.0" 7120 - sources."minimalistic-assert-1.0.1" 7121 - sources."minimatch-3.1.2" 7122 - sources."minimist-1.2.6" 7123 - sources."ms-2.0.0" 7124 - sources."nanoid-3.3.4" 7125 - sources."natural-compare-1.4.0" 7126 - sources."negotiator-0.6.3" 7127 - sources."neo-async-2.6.2" 7128 - sources."no-case-3.0.4" 7129 - sources."node-forge-1.2.0" 7130 - sources."node-releases-2.0.6" 7131 - sources."normalize-path-3.0.0" 7132 - sources."npm-run-path-4.0.1" 7133 - sources."nth-check-2.0.1" 7134 - sources."object-assign-4.1.1" 7135 - sources."object-inspect-1.12.2" 7136 - sources."object-keys-1.1.1" 7137 - sources."object.assign-4.1.4" 7138 - sources."object.entries-1.1.5" 7139 - sources."object.values-1.1.6" 7140 - sources."obuf-1.1.2" 7141 - sources."on-finished-2.3.0" 7142 - sources."on-headers-1.0.2" 7143 - sources."once-1.4.0" 7144 - sources."onetime-5.1.2" 7145 - sources."open-8.4.0" 7146 - sources."opener-1.5.2" 7147 - sources."optionator-0.9.1" 7148 - sources."p-limit-3.1.0" 7149 - sources."p-locate-5.0.0" 7150 - sources."p-map-2.1.0" 7151 - sources."p-retry-4.6.1" 7152 - sources."param-case-3.0.4" 7153 - sources."parent-module-1.0.1" 7154 - sources."parseurl-1.3.3" 7155 - sources."pascal-case-3.1.2" 7156 - sources."path-exists-4.0.0" 7157 - sources."path-is-absolute-1.0.1" 7158 - sources."path-is-inside-1.0.2" 7159 - sources."path-key-3.1.1" 7160 - sources."path-parse-1.0.7" 7161 - sources."path-to-regexp-0.1.7" 7162 - sources."picocolors-1.0.0" 7163 - sources."picomatch-2.2.2" 7164 - sources."pinkie-2.0.4" 7165 - sources."pinkie-promise-2.0.1" 7166 - sources."plurals-cldr-2.0.1" 7167 - sources."popper.js-1.16.1" 7168 - sources."postcss-8.4.19" 7169 - sources."postcss-modules-extract-imports-3.0.0" 7170 - sources."postcss-modules-local-by-default-4.0.0" 7171 - sources."postcss-modules-scope-3.0.0" 7172 - sources."postcss-modules-values-4.0.0" 7173 - sources."postcss-selector-parser-6.0.10" 7174 - sources."postcss-value-parser-4.2.0" 7175 - sources."prelude-ls-1.2.1" 7176 - sources."prettier-1.19.1" 7177 - sources."pretty-error-4.0.0" 7178 - sources."process-nextick-args-2.0.1" 7179 - (sources."proxy-addr-2.0.7" // { 7180 - dependencies = [ 7181 - sources."ipaddr.js-1.9.1" 7182 - ]; 7183 - }) 7184 - sources."proxy-from-env-1.1.0" 7185 - sources."pseudomap-1.0.2" 7186 - sources."punycode-2.1.1" 7187 - sources."qs-6.9.7" 7188 - sources."queue-microtask-1.2.3" 7189 - sources."randombytes-2.1.0" 7190 - sources."range-parser-1.2.1" 7191 - (sources."raw-body-2.4.3" // { 7192 - dependencies = [ 7193 - sources."bytes-3.1.2" 7194 - ]; 7195 - }) 7196 - sources."readable-stream-3.6.0" 7197 - sources."readdirp-3.6.0" 7198 - sources."rechoir-0.7.1" 7199 - sources."regenerate-1.4.2" 7200 - sources."regenerate-unicode-properties-10.1.0" 7201 - sources."regenerator-runtime-0.13.7" 7202 - sources."regenerator-transform-0.15.1" 7203 - sources."regexp.prototype.flags-1.4.3" 7204 - sources."regexpu-core-5.3.2" 7205 - (sources."regjsparser-0.9.1" // { 7206 - dependencies = [ 7207 - sources."jsesc-0.5.0" 7208 - ]; 7209 - }) 7210 - sources."relateurl-0.2.7" 7211 - sources."renderkid-3.0.0" 7212 - sources."require-from-string-2.0.2" 7213 - sources."requires-port-1.0.0" 7214 - sources."resolve-1.22.1" 7215 - sources."resolve-cwd-3.0.0" 7216 - sources."resolve-from-5.0.0" 7217 - sources."retry-0.13.1" 7218 - sources."reusify-1.0.4" 7219 - sources."rimraf-3.0.2" 7220 - sources."run-parallel-1.2.0" 7221 - sources."safe-buffer-5.1.2" 7222 - sources."safe-regex-test-1.0.0" 7223 - sources."safer-buffer-2.1.2" 7224 - sources."sass-1.62.0" 7225 - sources."sass-loader-13.2.2" 7226 - sources."schema-utils-3.1.2" 7227 - sources."select-hose-2.0.0" 7228 - sources."selfsigned-2.1.1" 7229 - (sources."semver-7.3.8" // { 7230 - dependencies = [ 7231 - sources."lru-cache-6.0.0" 7232 - sources."yallist-4.0.0" 7233 - ]; 7234 - }) 7235 - (sources."send-0.17.2" // { 7236 - dependencies = [ 7237 - sources."mime-1.6.0" 7238 - sources."ms-2.1.3" 7239 - ]; 7240 - }) 7241 - sources."serialize-javascript-6.0.1" 7242 - (sources."serve-index-1.9.1" // { 7243 - dependencies = [ 7244 - sources."http-errors-1.6.3" 7245 - sources."setprototypeof-1.1.0" 7246 - ]; 7247 - }) 7248 - sources."serve-static-1.14.2" 7249 - sources."setprototypeof-1.2.0" 7250 - sources."shallow-clone-3.0.1" 7251 - sources."shebang-command-2.0.0" 7252 - sources."shebang-regex-3.0.0" 7253 - sources."shell-quote-1.8.0" 7254 - sources."side-channel-1.0.4" 7255 - sources."signal-exit-3.0.3" 7256 - sources."sirv-1.0.17" 7257 - sources."slash-4.0.0" 7258 - sources."sockjs-0.3.24" 7259 - sources."source-map-0.6.1" 7260 - sources."source-map-js-1.0.2" 7261 - (sources."spdy-4.0.2" // { 7262 - dependencies = [ 7263 - sources."debug-4.3.3" 7264 - sources."ms-2.1.2" 7265 - ]; 7266 - }) 7267 - (sources."spdy-transport-3.0.0" // { 7268 - dependencies = [ 7269 - sources."debug-4.3.3" 7270 - sources."ms-2.1.2" 7271 - ]; 7272 - }) 7273 - sources."statuses-1.5.0" 7274 - sources."string.prototype.trimend-1.0.6" 7275 - sources."string.prototype.trimstart-1.0.6" 7276 - sources."string_decoder-1.1.1" 7277 - sources."strip-ansi-6.0.1" 7278 - sources."strip-bom-3.0.0" 7279 - sources."strip-final-newline-2.0.0" 7280 - sources."strip-json-comments-3.1.1" 7281 - sources."supports-color-5.5.0" 7282 - sources."supports-preserve-symlinks-flag-1.0.0" 7283 - sources."svg-country-flags-1.2.10" 7284 - sources."tapable-2.2.0" 7285 - (sources."terser-5.16.9" // { 7286 - dependencies = [ 7287 - (sources."source-map-support-0.5.20" // { 7288 - dependencies = [ 7289 - sources."source-map-0.6.1" 7290 - ]; 7291 - }) 7292 - ]; 7293 - }) 7294 - sources."terser-webpack-plugin-5.3.7" 7295 - sources."text-table-0.2.0" 7296 - sources."thunky-1.1.0" 7297 - sources."to-fast-properties-2.0.0" 7298 - sources."to-regex-range-5.0.1" 7299 - sources."toggle-selection-1.0.6" 7300 - sources."toidentifier-1.0.1" 7301 - sources."totalist-1.1.0" 7302 - sources."tsconfig-paths-3.14.1" 7303 - sources."tslib-2.3.1" 7304 - sources."type-check-0.4.0" 7305 - sources."type-fest-0.20.2" 7306 - sources."type-is-1.6.18" 7307 - sources."typed-array-length-1.0.4" 7308 - sources."typed-assert-1.0.8" 7309 - sources."unbox-primitive-1.0.2" 7310 - sources."unicode-canonical-property-names-ecmascript-2.0.0" 7311 - sources."unicode-match-property-ecmascript-2.0.0" 7312 - sources."unicode-match-property-value-ecmascript-2.1.0" 7313 - sources."unicode-property-aliases-ecmascript-2.1.0" 7314 - sources."unpipe-1.0.0" 7315 - sources."update-browserslist-db-1.0.9" 7316 - sources."uri-js-4.2.2" 7317 - (sources."url-loader-4.1.1" // { 7318 - dependencies = [ 7319 - sources."json5-2.1.3" 7320 - sources."loader-utils-2.0.0" 7321 - ]; 7322 - }) 7323 - sources."util-deprecate-1.0.2" 7324 - sources."utila-0.4.0" 7325 - sources."utils-merge-1.0.1" 7326 - sources."uuid-8.3.2" 7327 - sources."v-tooltip-2.1.3" 7328 - sources."vary-1.1.2" 7329 - sources."vue-2.7.14" 7330 - (sources."vue-eslint-parser-8.3.0" // { 7331 - dependencies = [ 7332 - sources."debug-4.3.3" 7333 - sources."eslint-scope-7.1.1" 7334 - sources."estraverse-5.3.0" 7335 - sources."ms-2.1.2" 7336 - ]; 7337 - }) 7338 - sources."vue-hot-reload-api-2.3.4" 7339 - sources."vue-loader-15.10.1" 7340 - sources."vue-meta-2.4.0" 7341 - sources."vue-multiselect-2.1.7" 7342 - sources."vue-resize-1.0.1" 7343 - sources."vue-router-3.6.5" 7344 - sources."vue-snotify-3.2.1" 7345 - sources."vue-style-loader-4.1.3" 7346 - sources."vue-template-compiler-2.7.14" 7347 - sources."vue-template-es2015-compiler-1.9.1" 7348 - sources."vuex-3.6.2" 7349 - sources."watchpack-2.4.0" 7350 - sources."wbuf-1.7.3" 7351 - sources."webpack-5.80.0" 7352 - (sources."webpack-bundle-analyzer-4.8.0" // { 7353 - dependencies = [ 7354 - sources."ansi-styles-4.3.0" 7355 - sources."chalk-4.1.2" 7356 - sources."color-convert-2.0.1" 7357 - sources."color-name-1.1.4" 7358 - sources."commander-7.2.0" 7359 - sources."has-flag-4.0.0" 7360 - sources."supports-color-7.2.0" 7361 - sources."ws-7.5.9" 7362 - ]; 7363 - }) 7364 - (sources."webpack-cli-4.10.0" // { 7365 - dependencies = [ 7366 - sources."commander-7.2.0" 7367 - ]; 7368 - }) 7369 - (sources."webpack-dev-middleware-5.3.1" // { 7370 - dependencies = [ 7371 - sources."ajv-8.8.2" 7372 - sources."ajv-keywords-5.1.0" 7373 - sources."json-schema-traverse-1.0.0" 7374 - sources."schema-utils-4.0.0" 7375 - ]; 7376 - }) 7377 - (sources."webpack-dev-server-4.13.3" // { 7378 - dependencies = [ 7379 - sources."ajv-8.12.0" 7380 - sources."ajv-keywords-5.1.0" 7381 - sources."json-schema-traverse-1.0.0" 7382 - sources."schema-utils-4.0.1" 7383 - ]; 7384 - }) 7385 - sources."webpack-merge-5.8.0" 7386 - sources."webpack-sources-3.2.3" 7387 - sources."webpack-subresource-integrity-5.1.0" 7388 - sources."websocket-driver-0.7.4" 7389 - sources."websocket-extensions-0.1.4" 7390 - sources."which-2.0.2" 7391 - sources."which-boxed-primitive-1.0.2" 7392 - sources."which-typed-array-1.1.9" 7393 - sources."wildcard-2.0.0" 7394 - sources."word-wrap-1.2.3" 7395 - sources."wrappy-1.0.2" 7396 - sources."ws-8.13.0" 7397 - sources."xml-name-validator-4.0.0" 7398 - sources."yallist-2.1.2" 7399 - sources."yocto-queue-0.1.0" 7400 - ]; 7401 - buildInputs = globalBuildInputs; 7402 - meta = { 7403 - description = "The official web interface for ASF"; 7404 - }; 7405 - production = false; 7406 - bypassCache = true; 7407 - reconstructLock = false; 7408 - }; 7409 - in 7410 - { 7411 - args = args; 7412 - sources = sources; 7413 - tarball = nodeEnv.buildNodeSourceDist args; 7414 - package = nodeEnv.buildNodePackage args; 7415 - shell = nodeEnv.buildNodeShell args; 7416 - nodeDependencies = nodeEnv.buildNodeDependencies (lib.overrideExisting args { 7417 - src = stdenv.mkDerivation { 7418 - name = args.name + "-package-json"; 7419 - src = nix-gitignore.gitignoreSourcePure [ 7420 - "*" 7421 - "!package.json" 7422 - "!package-lock.json" 7423 - ] args.src; 7424 - dontBuild = true; 7425 - installPhase = "mkdir -p $out; cp -r ./* $out;"; 7426 - }; 7427 - }); 7428 - }
+2 -2
pkgs/applications/misc/jetbrains-toolbox/default.nix
··· 10 10 }: 11 11 let 12 12 pname = "jetbrains-toolbox"; 13 - version = "1.28.0.15158"; 13 + version = "1.28.1.15219"; 14 14 15 15 src = fetchzip { 16 16 url = "https://download.jetbrains.com/toolbox/jetbrains-toolbox-${version}.tar.gz"; 17 - sha256 = "sha256-IHs3tQtFXGS9xa5lKwSEWvp8aNffrCjNcoVE4tGX9ak="; 17 + sha256 = "sha256-4P73MC5Go8wLACBtjh1y3Ao0czE/3hsSI4728mNjKxA="; 18 18 stripRoot = false; 19 19 }; 20 20
+1 -1
pkgs/applications/misc/quicksynergy/default.nix
··· 24 24 keyboard between two or more computers. 25 25 26 26 Without the need for any external hardware, Synergy2 uses the TCP-IP 27 - protocol to share the resources, even between machines with diferent 27 + protocol to share the resources, even between machines with different 28 28 operating systems, such as Mac OS, Linux and Windows. 29 29 30 30 Remember to open port 24800 (used by synergys program) if you want to
+2 -2
pkgs/applications/misc/slweb/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "slweb"; 9 - version = "0.5"; 9 + version = "0.5.4"; 10 10 11 11 src = fetchFromSourcehut { 12 12 owner = "~strahinja"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-GoDumiysqIkWj2HTPQv2gheYsf4fWjtCNPFS/1R0tzc="; 15 + sha256 = "sha256-Wj9ZCs8nRBpIkX5jzTqBdo83zUBMamykk1vbBCIWyoQ="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ redo-apenwarr ];
+1 -1
pkgs/applications/networking/browsers/polypane/default.nix
··· 27 27 ''; 28 28 29 29 meta = with lib; { 30 - description = "Browser with unified devtools targeting responsability and acessibility"; 30 + description = "Browser with unified devtools targeting responsability and accessibility"; 31 31 longDescription = '' 32 32 The stand-alone browser for ambitious developers that want to build responsive, 33 33 accessible and performant websites in a fraction of the time it takes with other browsers.
+4 -5
pkgs/applications/networking/cluster/kube3d/default.nix pkgs/applications/networking/cluster/k3d/default.nix
··· 14 14 false; 15 15 in 16 16 buildGoModule rec { 17 - pname = "kube3d"; 17 + pname = "k3d"; 18 18 version = "5.4.4"; 19 19 20 20 src = fetchFromGitHub { ··· 30 30 excludedPackages = [ "tools" "docgen" ]; 31 31 32 32 ldflags = 33 - let t = "github.com/k3d-io/k3d/v5/version"; in 33 + let t = "github.com/k3d-io/k3d/v${lib.versions.major version}/version"; in 34 34 [ "-s" "-w" "-X ${t}.Version=v${version}" ] ++ lib.optionals k3sVersionSet [ "-X ${t}.K3sVersion=v${k3sVersion}" ]; 35 35 36 - preCheck = '' 36 + preCheck = '' 37 37 # skip test that uses networking 38 38 substituteInPlace version/version_test.go \ 39 39 --replace "TestGetK3sVersion" "SkipGetK3sVersion" ··· 57 57 meta = with lib; { 58 58 homepage = "https://github.com/k3d-io/k3d/"; 59 59 changelog = "https://github.com/k3d-io/k3d/blob/v${version}/CHANGELOG.md"; 60 - description = "A helper to run k3s (Lightweight Kubernetes. 5 less than k8s) in a docker container - k3d"; 60 + description = "A helper to run k3s (Lightweight Kubernetes. 5 less than k8s) in a docker container"; 61 61 longDescription = '' 62 62 k3s is the lightweight Kubernetes distribution by Rancher: rancher/k3s 63 63 ··· 67 67 license = licenses.mit; 68 68 maintainers = with maintainers; [ kuznero jlesquembre ngerstle jk ricochet ]; 69 69 platforms = platforms.linux ++ platforms.darwin; 70 - mainProgram = "k3d"; 71 70 }; 72 71 }
+17 -1
pkgs/applications/networking/cluster/terraform-backend-git/default.nix
··· 1 1 { lib 2 2 , buildGoModule 3 3 , fetchFromGitHub 4 + , installShellFiles 4 5 }: 5 6 6 7 buildGoModule rec { ··· 16 17 17 18 vendorHash = "sha256-Y/4UgG/2Vp+gxBnGrNpAgRNfPZWJXhVo8TVa/VfOYt0="; 18 19 19 - ldflags = [ "-s" "-w" ]; 20 + nativeBuildInputs = [ 21 + installShellFiles 22 + ]; 23 + 24 + ldflags = [ 25 + "-s" 26 + "-w" 27 + "-X=github.com/plumber-cd/terraform-backend-git/cmd.Version=${version}" 28 + ]; 29 + 30 + postInstall = '' 31 + installShellCompletion --cmd terraform-backend-git \ 32 + --bash <($out/bin/terraform-backend-git completion bash) \ 33 + --fish <($out/bin/terraform-backend-git completion fish) \ 34 + --zsh <($out/bin/terraform-backend-git completion zsh) 35 + ''; 20 36 21 37 meta = with lib; { 22 38 description = "Terraform HTTP Backend implementation that uses Git repository as storage";
+11 -11
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 437 437 "vendorHash": "sha256-SLFpH7isx4OM2X9bzWYYD4VlejlgckBovOxthg47OOQ=" 438 438 }, 439 439 "google": { 440 - "hash": "sha256-8uRIvFZsuPyisJMRmqL5zNxea6h1VwxZS+lmmvZslfo=", 440 + "hash": "sha256-0spzfAsinmWsdarpoxIfrQFIPGEV47H50IVw5Kfyqxs=", 441 441 "homepage": "https://registry.terraform.io/providers/hashicorp/google", 442 442 "owner": "hashicorp", 443 443 "proxyVendor": true, 444 444 "repo": "terraform-provider-google", 445 - "rev": "v4.63.1", 445 + "rev": "v4.64.0", 446 446 "spdx": "MPL-2.0", 447 - "vendorHash": "sha256-Xm1P6P2tMLqjV9QFX6D7koBPzg4umTH6jCQesyt0A/A=" 447 + "vendorHash": "sha256-rjLvmKymUiuAIwiZRpgivbYbP88MLVSBlrirlJxZpcw=" 448 448 }, 449 449 "google-beta": { 450 - "hash": "sha256-avE1EnjCItz1NcF0KzsSgUnQABr2D0IC7kLGgIj+j6g=", 450 + "hash": "sha256-VMJdTj9LUhoj0Qvmt9lUYh00sOJQctgEggem4ZRVsVw=", 451 451 "homepage": "https://registry.terraform.io/providers/hashicorp/google-beta", 452 452 "owner": "hashicorp", 453 453 "proxyVendor": true, 454 454 "repo": "terraform-provider-google-beta", 455 - "rev": "v4.63.1", 455 + "rev": "v4.64.0", 456 456 "spdx": "MPL-2.0", 457 - "vendorHash": "sha256-Xm1P6P2tMLqjV9QFX6D7koBPzg4umTH6jCQesyt0A/A=" 457 + "vendorHash": "sha256-rjLvmKymUiuAIwiZRpgivbYbP88MLVSBlrirlJxZpcw=" 458 458 }, 459 459 "googleworkspace": { 460 460 "hash": "sha256-dedYnsKHizxJZibuvJOMbJoux0W6zgKaK5fxIofKqCY=", ··· 728 728 "vendorHash": "sha256-QxbZv6YMa5/I4bTeQBNdmG3EKtLEmstnH7HMiZzFJrI=" 729 729 }, 730 730 "minio": { 731 - "hash": "sha256-LL3jOuNNCd5isNPyt+I35j5BdxAbnWRQ2o2RBLSOc/E=", 731 + "hash": "sha256-1VO0ofT+6JU8pMSfrSfgEJlTb5GM64AVYQ1hvbWPzCw=", 732 732 "homepage": "https://registry.terraform.io/providers/aminueza/minio", 733 733 "owner": "aminueza", 734 734 "repo": "terraform-provider-minio", 735 - "rev": "v1.15.0", 735 + "rev": "v1.15.1", 736 736 "spdx": "Apache-2.0", 737 737 "vendorHash": "sha256-Xz6WxAxzvLfgJTD2oDgZoeHffcdA7dyfgwY1g6lFkbk=" 738 738 }, ··· 764 764 "vendorHash": null 765 765 }, 766 766 "newrelic": { 767 - "hash": "sha256-+awQtvyJBLSm+WYH2gp+VM2uNbWeEfIbwqw7VsikQEA=", 767 + "hash": "sha256-YD7RpzhFgX9BwXzZ4OO3XdPPGLurTvEA6Y0iXnVxTPg=", 768 768 "homepage": "https://registry.terraform.io/providers/newrelic/newrelic", 769 769 "owner": "newrelic", 770 770 "repo": "terraform-provider-newrelic", 771 - "rev": "v3.21.3", 771 + "rev": "v3.22.0", 772 772 "spdx": "MPL-2.0", 773 - "vendorHash": "sha256-fqO3hlDUPY8/9SSMpNVD81pyaQE12zwNKDLSI54UF3M=" 773 + "vendorHash": "sha256-LWIqCc4hn4ExG4LkFKD5NLM6djWpKgYQdqZM7atTez8=" 774 774 }, 775 775 "nomad": { 776 776 "hash": "sha256-1TmcFS+ul7xpSGqQohcCdeQ2zuDD429xGI0X2Add5HQ=",
+64
pkgs/applications/networking/gabutdm/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , meson 5 + , pkg-config 6 + , cmake 7 + , ninja 8 + , vala 9 + , wrapGAppsHook4 10 + , desktop-file-utils 11 + , sqlite 12 + , libcanberra 13 + , libsoup_3 14 + , libgee 15 + , json-glib 16 + , qrencode 17 + , curl 18 + }: 19 + 20 + stdenv.mkDerivation rec { 21 + pname = "gabutdm"; 22 + version = "2.1.5"; 23 + 24 + src = fetchFromGitHub { 25 + owner = "gabutakut"; 26 + repo = pname; 27 + rev = version; 28 + hash = "sha256-8fV7STYSpmNnLyoAjz+RuF/0nFeNiu8AIxkON1MbWr4="; 29 + }; 30 + 31 + nativeBuildInputs = [ 32 + meson 33 + pkg-config 34 + cmake 35 + ninja 36 + vala 37 + wrapGAppsHook4 38 + desktop-file-utils 39 + ]; 40 + 41 + buildInputs = [ 42 + sqlite 43 + libcanberra 44 + libsoup_3 45 + libgee 46 + json-glib 47 + qrencode 48 + curl 49 + ]; 50 + 51 + postPatch = '' 52 + substituteInPlace meson/post_install.py \ 53 + --replace gtk-update-icon-cache gtk4-update-icon-cache 54 + ''; 55 + 56 + meta = with lib; { 57 + description = "Simple and faster download manager"; 58 + homepage = "https://github.com/gabutakut/gabutdm"; 59 + license = licenses.lgpl21Plus; 60 + mainProgram = "com.github.gabutakut.gabutdm"; 61 + maintainers = with maintainers; [ aleksana ]; 62 + platforms = platforms.unix; 63 + }; 64 + }
+2 -2
pkgs/applications/networking/instant-messengers/signalbackup-tools/default.nix
··· 2 2 3 3 (if stdenv.isDarwin then darwin.apple_sdk_11_0.clang14Stdenv else stdenv).mkDerivation rec { 4 4 pname = "signalbackup-tools"; 5 - version = "20230429"; 5 + version = "20230508-1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "bepaald"; 9 9 repo = pname; 10 10 rev = version; 11 - hash = "sha256-uOZfEZ5Wf+4lz5FxPqsockAIA/um61OZ6mvjj51BGkg="; 11 + hash = "sha256-0kkbJGZEnB6bL+aNhHpSI2oHpsVmju3OEFG7mitKBsc="; 12 12 }; 13 13 14 14 postPatch = ''
-2
pkgs/applications/networking/sniffers/wireshark/default.nix
··· 138 138 '' else 139 139 lib.optionalString withQt '' 140 140 pwd 141 - install -Dm644 -t $out/share/applications ../resources/freedesktop/org.wireshark.Wireshark.desktop 142 141 143 - install -Dm644 ../resources/icons/wsicon.svg $out/share/icons/wireshark.svg 144 142 mkdir -pv $dev/include/{epan/{wmem,ftypes,dfilter},wsutil/wmem,wiretap} 145 143 146 144 cp config.h $dev/include/wireshark/
+1 -1
pkgs/applications/science/chemistry/siesta/default.nix
··· 31 31 32 32 enableParallelBuilding = false; # Started making trouble with gcc-11 33 33 34 - # Must do manualy becuase siesta does not do the regular 34 + # Must do manually because siesta does not do the regular 35 35 # ./configure; make; make install 36 36 configurePhase = '' 37 37 cd Obj
+6
pkgs/applications/science/misc/root/default.nix
··· 122 122 123 123 patches = [ 124 124 ./sw_vers.patch 125 + ] ++ lib.optionals (python.pkgs.pythonAtLeast "3.11") [ 126 + # Fix build against Python 3.11 127 + (fetchpatch { 128 + url = "https://github.com/root-project/root/commit/484deb056dacf768aba4954073b41105c431bffc.patch"; 129 + hash = "sha256-4qur2e3SxMIPgOg4IjlvuULR2BObuP7xdvs+LmNT2/s="; 130 + }) 125 131 ]; 126 132 127 133 # Fix build against vanilla LLVM 9
+1 -1
pkgs/applications/video/mpv/default.nix
··· 69 69 , speexSupport ? true, speex 70 70 , swiftSupport ? stdenv.isDarwin && stdenv.isAarch64, swift 71 71 , theoraSupport ? true, libtheora 72 - , vaapiSupport ? stdenv.isLinux, libva 72 + , vaapiSupport ? x11Support || waylandSupport, libva 73 73 , vapoursynthSupport ? false, vapoursynth 74 74 , vdpauSupport ? true, libvdpau 75 75 , xineramaSupport ? stdenv.isLinux, libXinerama
+2 -2
pkgs/applications/video/obs-studio/plugins/advanced-scene-switcher/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "advanced-scene-switcher"; 17 - version = "1.20.5"; 17 + version = "1.21.1"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "WarmUpTill"; 21 21 repo = "SceneSwitcher"; 22 22 rev = version; 23 - sha256 = "04k7f7v756vdsan95g73cc29lrs61jis738v37a3ihi3ivps3ma3"; 23 + sha256 = "1p6fl1fy39hrm7yasjhv6z79bnjk2ib3yg9dvf1ahwzkd9bpyfyl"; 24 24 }; 25 25 26 26 nativeBuildInputs = [ cmake ];
+4
pkgs/applications/virtualization/rust-hypervisor-firmware/default.nix
··· 41 41 42 42 cargoSha256 = "sha256-edi6/Md6KebKM3wHArZe1htUCg0/BqMVZKA4xEH25GI="; 43 43 44 + # lld: error: unknown argument '-Wl,--undefined=AUDITABLE_VERSION_INFO' 45 + # https://github.com/cloud-hypervisor/rust-hypervisor-firmware/issues/249 46 + auditable = false; 47 + 44 48 RUSTC_BOOTSTRAP = 1; 45 49 46 50 nativeBuildInputs = [
+1 -1
pkgs/applications/window-managers/tinywm/default.nix
··· 28 28 ''; 29 29 30 30 meta = with lib;{ 31 - description = "A tiny window manger for X11"; 31 + description = "A tiny window manager for X11"; 32 32 longDescription = '' 33 33 34 34 TinyWM is a tiny window manager that I created as an exercise in
+3 -3
pkgs/build-support/cc-wrapper/default.nix
··· 364 364 '' 365 365 # this ensures that when clang passes -lgcc_s to lld (as it does 366 366 # when building e.g. firefox), lld is able to find libgcc_s.so 367 - + lib.optionalString (gccForLibs?libgcc) '' 368 - echo "-L${gccForLibs.libgcc}/lib" >> $out/nix-support/cc-ldflags 369 - '') 367 + + concatMapStrings (libgcc: '' 368 + echo "-L${libgcc}/lib" >> $out/nix-support/cc-ldflags 369 + '') (lib.toList (gccForLibs.libgcc or []))) 370 370 371 371 ## 372 372 ## General libc support
+1 -1
pkgs/data/fonts/d2coding/default.nix
··· 24 24 D2Coding is a monospace font developed by a Korean IT Company called Naver. 25 25 Font is good for displaying both Korean characters and latin characters, 26 26 as sometimes these two languages could share some similar strokes. 27 - Since verion 1.3, D2Coding font is officially supported by the font 27 + Since version 1.3, D2Coding font is officially supported by the font 28 28 creator, with symbols for Powerline. 29 29 ''; 30 30 homepage = "https://github.com/naver/d2codingfont";
+2 -2
pkgs/data/fonts/sarasa-gothic/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "sarasa-gothic"; 5 - version = "0.40.6"; 5 + version = "0.40.7"; 6 6 7 7 src = fetchurl { 8 8 # Use the 'ttc' files here for a smaller closure size. 9 9 # (Using 'ttf' files gives a closure size about 15x larger, as of November 2021.) 10 10 url = "https://github.com/be5invis/Sarasa-Gothic/releases/download/v${version}/sarasa-gothic-ttc-${version}.7z"; 11 - hash = "sha256-AHslDiYBQXcxo8XVh1GMZDR8LJXvzJHl4hrisfhltEM="; 11 + hash = "sha256-muxmoTfAZWLhPp4rx91PDnYogBGHuD4esYjE2kZiOAY="; 12 12 }; 13 13 14 14 sourceRoot = ".";
+39
pkgs/data/icons/dracula-icon-theme/default.nix
··· 1 + { lib, stdenvNoCC, fetchFromGitHub, jdupes }: 2 + 3 + stdenvNoCC.mkDerivation { 4 + pname = "dracula-icon-theme"; 5 + version = "unstable-2021-07-21"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "m4thewz"; 9 + repo = "dracula-icons"; 10 + rev = "2d3c83caa8664e93d956cfa67a0f21418b5cdad8"; 11 + hash = "sha256-GY+XxTM22jyNq8kaB81zNfHRhfXujArFcyzDa8kjxCQ="; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + jdupes 16 + ]; 17 + 18 + dontDropIconThemeCache = true; 19 + 20 + dontPatchELF = true; 21 + dontRewriteSymlinks = true; 22 + 23 + installPhase = '' 24 + runHook preInstall 25 + mkdir -p $out/share/icons/Dracula 26 + cp -a * $out/share/icons/Dracula/ 27 + jdupes --quiet --link-soft --recurse $out/share 28 + 29 + runHook postInstall 30 + ''; 31 + 32 + meta = with lib; { 33 + description = "Dracula Icon theme"; 34 + homepage = "https://github.com/m4thewz/dracula-icons"; 35 + platforms = platforms.linux; 36 + license = licenses.gpl3Only; 37 + maintainers = with maintainers; [ therealr5 ]; 38 + }; 39 + }
+10 -2
pkgs/development/compilers/llvm/multi.nix
··· 28 28 29 29 30 30 # includes 31 - ln -s ${glibc_multi.dev}/include $out/ 31 + mkdir -p $out/include 32 + ln -s ${glibc_multi.dev}/include/* $out/include 33 + ln -s ${gcc64.cc}/include/c++ $out/include/c++ 32 34 33 35 # dynamic linkers 34 36 mkdir -p $out/lib/32 ··· 46 48 libc = gcc_multi_sysroot; 47 49 }; 48 50 49 - gccForLibs = gcc_multi_sysroot; 51 + gccForLibs = gcc_multi_sysroot // { 52 + inherit (glibc_multi) libgcc; 53 + langCC = 54 + assert (gcc64.cc.langCC != gcc32.cc.langCC) 55 + -> throw "(gcc64.cc.langCC=${gcc64.cc.langCC}) != (gcc32.cc.langCC=${gcc32.cc.langCC})"; 56 + gcc64.cc.langCC; 57 + }; 50 58 }; 51 59 52 60 in clangMulti
+5
pkgs/development/libraries/ada/gnatcoll/bindings.nix
··· 14 14 , zlib 15 15 , python3 16 16 , ncurses 17 + , darwin 17 18 }: 18 19 19 20 let ··· 46 47 gprbuild 47 48 gnat 48 49 python3 50 + ]; 51 + 52 + buildInputs = lib.optionals stdenv.isDarwin [ 53 + darwin.apple_sdk.frameworks.CoreFoundation 49 54 ]; 50 55 51 56 # propagate since gprbuild needs to find referenced .gpr files
+1 -1
pkgs/development/libraries/alkimia/default.nix
··· 27 27 logic that will be used by all financial applications in KDE. 28 28 29 29 The target is to share financial related information over 30 - application bounderies. 30 + application boundaries. 31 31 ''; 32 32 license = lib.licenses.lgpl21Plus; 33 33 platforms = qtbase.meta.platforms;
+5
pkgs/development/libraries/gdal/default.nix
··· 52 52 , libspatialite 53 53 , sqlite 54 54 , libtiff 55 + , useTiledb ? !(stdenv.isDarwin && stdenv.isx86_64) 55 56 , tiledb 56 57 , libwebp 57 58 , xercesc ··· 91 92 "-DCMAKE_SKIP_BUILD_RPATH=ON" # without, libgdal.so can't find libmariadb.so 92 93 ] ++ lib.optionals stdenv.isDarwin [ 93 94 "-DCMAKE_BUILD_WITH_INSTALL_NAME_DIR=ON" 95 + ] ++ lib.optionals (!useTiledb) [ 96 + "-DGDAL_USE_TILEDB=OFF" 94 97 ]; 95 98 96 99 buildInputs = [ ··· 135 138 libspatialite 136 139 sqlite 137 140 libtiff 141 + ] ++ lib.optionals useTiledb [ 138 142 tiledb 143 + ] ++ [ 139 144 libwebp 140 145 zlib 141 146 zstd
+11 -2
pkgs/development/libraries/glibc/multi.nix
··· 1 - { runCommand, glibc, glibc32 1 + { lib 2 + , runCommand, glibc, glibc32 2 3 }: 3 4 4 5 let ··· 7 8 in 8 9 runCommand "${nameVersion.name}-multi-${nameVersion.version}" 9 10 # out as the first output is an exception exclusive to glibc 10 - { outputs = [ "out" "bin" "dev" ]; } # TODO: no static version here (yet) 11 + { 12 + outputs = [ "out" "bin" "dev" ]; # TODO: no static version here (yet) 13 + passthru = { 14 + libgcc = lib.lists.filter (x: x!=null) [ 15 + (glibc64.libgcc or null) 16 + (glibc32.libgcc or null) 17 + ]; 18 + }; 19 + } 11 20 '' 12 21 mkdir -p "$out/lib" 13 22 ln -s '${glibc64.out}'/lib/* "$out/lib"
+1 -1
pkgs/development/libraries/libhwy/default.nix
··· 17 17 dontUseCmakeBuildDir = true; 18 18 19 19 cmakeFlags = let 20 - libExt = stdenv.hostPlatform.extensions.sharedLibrary; 20 + libExt = stdenv.hostPlatform.extensions.library; 21 21 in [ 22 22 "-GNinja" 23 23 "-DCMAKE_INSTALL_LIBDIR=lib"
+39
pkgs/development/libraries/libosmo-abis/default.nix
··· 1 + { lib, stdenv, fetchgit, autoreconfHook, pkg-config 2 + , libosmocore, ortp, bctoolbox 3 + }: 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "libosmo-abis"; 7 + version = "1.4.0"; 8 + 9 + src = fetchgit { 10 + url = "https://gitea.osmocom.org/osmocom/libosmo-abis"; 11 + rev = version; 12 + sha256 = "sha256-RKJis0Ur3Y0LximNQl+hm6GENg8t2E1S++2c+63D2pQ="; 13 + }; 14 + 15 + postPatch = '' 16 + echo "${version}" > .tarball-version 17 + ''; 18 + 19 + configureFlags = [ "--disable-dahdi" ]; 20 + 21 + nativeBuildInputs = [ 22 + autoreconfHook 23 + pkg-config 24 + ]; 25 + 26 + buildInputs = [ 27 + libosmocore 28 + ortp 29 + bctoolbox 30 + ]; 31 + 32 + meta = with lib; { 33 + description = "GSM A-bis interface library"; 34 + homepage = "https://osmocom.org/projects/libosmo-abis"; 35 + maintainers = [ maintainers.markuskowa ]; 36 + platforms = platforms.linux; 37 + license = licenses.agpl3Only; 38 + }; 39 + }
+37
pkgs/development/libraries/libosmo-netif/default.nix
··· 1 + { lib, stdenv, fetchgit, autoreconfHook, pkg-config 2 + , libosmocore, lksctp-tools 3 + }: 4 + 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "libosmo-netif"; 8 + version = "1.3.0"; 9 + 10 + src = fetchgit { 11 + url = "https://gitea.osmocom.org/osmocom/libosmo-netif"; 12 + rev = version; 13 + sha256 = "sha256-PhGi/6JVO8tXxzfGwEKUB/GdrgCJkqROo26TPU+O9Sg="; 14 + }; 15 + 16 + postPatch = '' 17 + echo "${version}" > .tarball-version 18 + ''; 19 + 20 + nativeBuildInputs = [ 21 + autoreconfHook 22 + pkg-config 23 + ]; 24 + 25 + buildInputs = [ 26 + libosmocore 27 + lksctp-tools 28 + ]; 29 + 30 + meta = with lib; { 31 + description = "Higher-layer GSM cellular communications protocol implementation"; 32 + homepage = "https://gitea.osmocom.org/osmocom/libosmo-netif"; 33 + maintainers = [ maintainers.markuskowa ]; 34 + platforms = platforms.linux; 35 + license = licenses.agpl3Only; 36 + }; 37 + }
+38
pkgs/development/libraries/libosmo-sccp/default.nix
··· 1 + { lib, stdenv, fetchgit, autoreconfHook, pkg-config 2 + , libosmocore, libosmo-netif, lksctp-tools 3 + }: 4 + 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "libosmo-sccp"; 8 + version = "1.7.0"; 9 + 10 + src = fetchgit { 11 + url = "https://gitea.osmocom.org/osmocom/libosmo-sccp"; 12 + rev = version; 13 + sha256 = "sha256-ScJZke9iNmFc9XXqtRjb24ZzKfa5EYws5PDNhcZFb7U="; 14 + }; 15 + 16 + postPatch = '' 17 + echo "${version}" > .tarball-version 18 + ''; 19 + 20 + nativeBuildInputs = [ 21 + autoreconfHook 22 + pkg-config 23 + ]; 24 + 25 + buildInputs = [ 26 + libosmocore 27 + libosmo-netif 28 + lksctp-tools 29 + ]; 30 + 31 + meta = with lib; { 32 + description = "Implementation of telecom signaling protocols and OsmoSTP"; 33 + homepage = "https://osmocom.org/projects/osmo-stp/wiki"; 34 + maintainers = [ maintainers.markuskowa ]; 35 + platforms = platforms.linux; 36 + license = licenses.agpl3Only; 37 + }; 38 + }
+5 -14
pkgs/development/libraries/libressl/default.nix
··· 107 107 ]; 108 108 }; 109 109 110 - libressl_3_5 = generic { 111 - version = "3.5.4"; 112 - hash = "sha256-A3naE0Si9xrUpOO+MO+dgu7N3Of43CrmZjGh3+FDQ6w="; 113 - 114 - patches = [ 115 - # Fix endianness detection on aarch64-darwin, issue #181187 116 - (fetchpatch { 117 - name = "fix-endian-header-detection.patch"; 118 - url = "https://patch-diff.githubusercontent.com/raw/libressl-portable/portable/pull/771.patch"; 119 - sha256 = "sha256-in5U6+sl0HB9qMAtUL6Py4X2rlv0HsqRMIQhhM1oThE="; 120 - }) 121 - ]; 122 - }; 123 - 124 110 libressl_3_6 = generic { 125 111 version = "3.6.2"; 126 112 hash = "sha256-S+gP/wc3Rs9QtKjlur4nlayumMaxMqngJRm0Rd+/0DM="; 113 + }; 114 + 115 + libressl_3_7 = generic { 116 + version = "3.7.2"; 117 + hash = "sha256-sGqlOP78nGszxNtJMaCaX1LZ0jVyGa/L/32T/hLr9vc="; 127 118 }; 128 119 }
+2 -2
pkgs/development/libraries/opencv/tests.nix
··· 57 57 (map (test: "${testRunner}${opencv4.package_tests}/opencv_test_${test} --test_threads=$NIX_BUILD_CORES --gtest_filter=$GTEST_FILTER" ) testNames) 58 58 } 59 59 ''; 60 - perfomanceTests = lib.optionalString runPerformanceTests '' 60 + performanceTests = lib.optionalString runPerformanceTests '' 61 61 ${ builtins.concatStringsSep "\n" 62 62 (map (test: "${testRunner}${opencv4.package_tests}/opencv_perf_${test} --perf_impl=plain --perf_min_samples=10 --perf_force_samples=10 --perf_verify_sanity --skip_unstable=1 --gtest_filter=$GTEST_FILTER") perfTestNames) 63 63 } ··· 67 67 { 68 68 nativeBuildInputs = lib.optionals enableGStreamer (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good ]); 69 69 } 70 - (testsPreparation + accuracyTests + perfomanceTests) 70 + (testsPreparation + accuracyTests + performanceTests)
+1 -1
pkgs/development/libraries/spice-gtk/default.nix
··· 40 40 }: 41 41 42 42 # If this package is built with polkit support (withPolkit=true), 43 - # usb redirection reqires spice-client-glib-usb-acl-helper to run setuid root. 43 + # usb redirection requires spice-client-glib-usb-acl-helper to run setuid root. 44 44 # The helper confirms via polkit that the user has an active session, 45 45 # then adds a device acl entry for that user. 46 46 # Example NixOS config to create a setuid wrapper for the helper:
+1 -1
pkgs/development/libraries/zlib/default.nix
··· 57 57 export CHOST=${stdenv.hostPlatform.config} 58 58 ''; 59 59 60 - # For zlib's ./configure (as of verion 1.2.11), the order 60 + # For zlib's ./configure (as of version 1.2.11), the order 61 61 # of --static/--shared flags matters! 62 62 # `--shared --static` builds only static libs, while 63 63 # `--static --shared` builds both.
+1 -1
pkgs/development/node-packages/overrides.nix
··· 1 - # Do not use overrides in this file to add `meta.mainProgram` to packges. Use `./main-programs.nix` 1 + # Do not use overrides in this file to add `meta.mainProgram` to packages. Use `./main-programs.nix` 2 2 # instead. 3 3 { pkgs, nodejs }: 4 4
+6 -6
pkgs/development/ocaml-modules/lambdasoup/default.nix
··· 1 - { lib, fetchFromGitHub, buildDunePackage, ocaml, markup, ounit2 }: 1 + { lib, fetchFromGitHub, buildDunePackage, ocaml, camlp-streams, markup, ounit2 }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "lambdasoup"; 5 - version = "0.7.3"; 5 + version = "1.0.0"; 6 6 7 - minimalOCamlVersion = "4.02"; 7 + minimalOCamlVersion = "4.03"; 8 8 9 - useDune2 = true; 9 + duneVersion = "3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "aantron"; 13 13 repo = pname; 14 14 rev = version; 15 - sha256 = "sha256:1wclkn1pl0d150dw0xswb29jc7y1q9mhipff1pnsc1hli3pyvvb7"; 15 + hash = "sha256-PZkhN5vkkLu8A3gYrh5O+nq9wFtig0Q4qD8zLGUGTRI="; 16 16 }; 17 17 18 - propagatedBuildInputs = [ markup ]; 18 + propagatedBuildInputs = [ camlp-streams markup ]; 19 19 20 20 doCheck = lib.versionAtLeast ocaml.version "4.04"; 21 21 checkInputs = [ ounit2 ];
+20
pkgs/development/ocaml-modules/qcheck/ppx_deriving_qcheck.nix
··· 1 + { buildDunePackage, qcheck-core 2 + , qcheck, ppxlib, ppx_deriving }: 3 + 4 + buildDunePackage { 5 + pname = "ppx_deriving_qcheck"; 6 + 7 + inherit (qcheck-core) version src patches; 8 + 9 + duneVersion = "3"; 10 + 11 + propagatedBuildInputs = [ 12 + qcheck 13 + ppxlib 14 + ppx_deriving 15 + ]; 16 + 17 + meta = qcheck-core.meta // { 18 + description = "PPX Deriver for QCheck"; 19 + }; 20 + }
+2 -2
pkgs/development/python-modules/ailment/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "ailment"; 11 - version = "9.2.48"; 11 + version = "9.2.49"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "angr"; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-abUxA2ndkOlLMWdPspKKTgWGuoGYyypAq43MrgaW+AY="; 20 + hash = "sha256-pKQNaPRdsjS8RHPAsZCHEm9eiCOuAxQymDowvpeg7W0="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/angr/default.nix
··· 32 32 33 33 buildPythonPackage rec { 34 34 pname = "angr"; 35 - version = "9.2.48"; 35 + version = "9.2.49"; 36 36 format = "pyproject"; 37 37 38 38 disabled = pythonOlder "3.8"; ··· 41 41 owner = pname; 42 42 repo = pname; 43 43 rev = "refs/tags/v${version}"; 44 - hash = "sha256-KHeLi4b54gvWcCsbdIbJ2n1sRcowio7ng4eEqkGacTU="; 44 + hash = "sha256-6SHg1topRXQlZ2kDCcOyPbNpGl7Na9vcOgOthQ44tCs="; 45 45 }; 46 46 47 47 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/archinfo/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "archinfo"; 11 - version = "9.2.48"; 11 + version = "9.2.49"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "angr"; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-WQkIw/tuT/KwRBVQ2+u2NXioAzisV0hCvTN8tfN+lRY="; 20 + hash = "sha256-FbI2XX5/gc3bTW28alT8qEEQ46UEkQf5cO37jJcFVBs="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+13 -2
pkgs/development/python-modules/avion/default.nix
··· 4 4 , csrmesh 5 5 , fetchPypi 6 6 , pycryptodome 7 + , pythonOlder 7 8 , requests 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "avion"; 12 13 version = "0.10"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 13 17 14 18 src = fetchPypi { 15 19 inherit pname version; 16 - sha256 = "0zgv45086b97ngyqxdp41wxb7hpn9g7alygc21j9y3dib700vzdz"; 20 + hash = "sha256-v/0NwFmxDZ9kEOx5qs5L9sKzOg/kto79syctg0Ah+30="; 17 21 }; 18 22 23 + postPatch = '' 24 + # https://github.com/mjg59/python-avion/pull/16 25 + substituteInPlace setup.py \ 26 + --replace "bluepy>==1.1.4" "bluepy>=1.1.4" 27 + ''; 28 + 19 29 propagatedBuildInputs = [ 20 30 bluepy 21 31 csrmesh ··· 23 33 requests 24 34 ]; 25 35 26 - # Project has no test 36 + # Module has no test 27 37 doCheck = false; 38 + 28 39 # bluepy/uuids.json is not found 29 40 # pythonImportsCheck = [ "avion" ]; 30 41
+1 -1
pkgs/development/python-modules/betterproto/default.nix
··· 53 53 ] ++ passthru.optional-dependencies.compiler; 54 54 55 55 # The tests require the generation of code before execution. This requires 56 - # the protoc-gen-python_betterproto script from the packge to be on PATH. 56 + # the protoc-gen-python_betterproto script from the package to be on PATH. 57 57 preCheck = '' 58 58 export PATH=$PATH:$out/bin 59 59 ${python.interpreter} -m tests.generate
+2 -2
pkgs/development/python-modules/bluetooth-adapters/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "bluetooth-adapters"; 20 - version = "0.15.3"; 20 + version = "0.15.4"; 21 21 format = "pyproject"; 22 22 23 23 disabled = pythonOlder "3.9"; ··· 26 26 owner = "Bluetooth-Devices"; 27 27 repo = pname; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-sh5wOx/4J1AEzR5zrd77v7Cbq6Mt9vOjCSREKHRN4aQ="; 29 + hash = "sha256-H8QkOs+QPN9jB/g4f3OaGlX/F2SO2hIDptoPB47ogqA="; 30 30 }; 31 31 32 32 postPatch = ''
+2 -2
pkgs/development/python-modules/claripy/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "claripy"; 16 - version = "9.2.48"; 16 + version = "9.2.49"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "angr"; 23 23 repo = pname; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-rkeshqKlsYA16TyXb4iRTnoTJwoB2kQJcdH/cBrgJng="; 25 + hash = "sha256-PTlkyu8Thm81VO9HIhNUwGxDBEQedfs3RYfZW5ZEAaY="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+4 -4
pkgs/development/python-modules/cle/default.nix
··· 16 16 17 17 let 18 18 # The binaries are following the argr projects release cycle 19 - version = "9.2.48"; 19 + version = "9.2.49"; 20 20 21 21 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 22 22 binaries = fetchFromGitHub { 23 23 owner = "angr"; 24 24 repo = "binaries"; 25 - rev = "v${version}"; 26 - hash = "sha256-LpYi5Ty6OBcW0zokCliMDhujJ7tPPl1XdPs5ad1tv5s="; 25 + rev = "refs/tags/v${version}"; 26 + hash = "sha256-03DyvPht4E4uysKqgyfu8hxu1qh+YzWsTI09E4ftiSs="; 27 27 }; 28 28 29 29 in ··· 38 38 owner = "angr"; 39 39 repo = pname; 40 40 rev = "refs/tags/v${version}"; 41 - hash = "sha256-D5qIuu8pqnkroU3ChmhseVitLrUJjwXr01MG7ing2Zk="; 41 + hash = "sha256-xNYAYXKrfpvY9oYPmiR6GNaWAIUi9w1T9YznosIABSs="; 42 42 }; 43 43 44 44 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/dbus-client-gen/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "dbus-client-gen"; 8 - version = "0.5"; 8 + version = "0.5.1"; 9 9 10 10 src = fetchPypi { 11 11 inherit pname version; 12 - hash = "sha256-DrpIeB6kMXPP6PfCjyx7Lsi8yyvwSl9k1nnUGtvVGKg="; 12 + hash = "sha256-vRXo72aWoreH/VwzdEAOgoGSRzRf7vy8Z/IA+lnLoWw="; 13 13 }; 14 14 15 15 meta = with lib; {
+2 -2
pkgs/development/python-modules/dbus-signature-pyparsing/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "dbus-signature-pyparsing"; 12 - version = "0.04"; 12 + version = "0.4.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "stratis-storage"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - hash = "sha256-IXyepfq7pLTRkTolKWsKGrYDoxukVC9JTrxS9xV7s2I="; 18 + hash = "sha256-+jY8kg3jBDpZr5doih3DiyUEcSskq7TgubmW3qdBoZM="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ pyparsing ];
+35
pkgs/development/python-modules/defusedcsv/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # tests 6 + , pytestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "defusedcsv"; 11 + version = "2.0.0"; 12 + format = "setuptools"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "raphaelm"; 16 + repo = "defusedcsv"; 17 + rev = "refs/tags/v${version}"; 18 + hash = "sha256-y8qLVfdkxRrDjtrTOLK5Zvi/1Vyv8eOnCueUkaRp4sQ="; 19 + }; 20 + 21 + pythonImportsCheck = [ 22 + "defusedcsv.csv" 23 + ]; 24 + 25 + nativeCheckInputs = [ 26 + pytestCheckHook 27 + ]; 28 + 29 + meta = with lib; { 30 + description = "Python library to protect your users from Excel injections in CSV-format exports, drop-in replacement for standard library's csv module"; 31 + homepage = "https://github.com/raphaelm/defusedcsv"; 32 + license = licenses.asl20; 33 + maintainers = with maintainers; [ hexa ]; 34 + }; 35 + }
+43
pkgs/development/python-modules/django-i18nfield/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # tests 6 + , djangorestframework 7 + , html5lib 8 + , lxml 9 + , pytest-django 10 + , pytestCheckHook 11 + , pyyaml 12 + }: 13 + 14 + buildPythonPackage { 15 + pname = "django-i18nfield"; 16 + version = "1.9.4"; 17 + format = "setuptools"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "raphaelm"; 21 + repo = "django-i18nfield"; 22 + rev = "10488eb6c673be50e50387c76085a7c8d84e9157"; 23 + hash = "sha256-FF980LTw7RFuG9QgxA96yJsSczCNNMq9WsbacQqIReE="; 24 + }; 25 + 26 + env.DJANGO_SETTINGS_MODULE = "tests.settings"; 27 + 28 + nativeCheckInputs = [ 29 + djangorestframework 30 + html5lib 31 + lxml 32 + pytest-django 33 + pytestCheckHook 34 + pyyaml 35 + ]; 36 + 37 + meta = with lib; { 38 + description = "Store internationalized strings in Django models"; 39 + homepage = "https://github.com/raphaelm/django-i18nfield"; 40 + license = licenses.asl20; 41 + maintainers = with maintainers; [ hexa ]; 42 + }; 43 + }
+54
pkgs/development/python-modules/django-mysql/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # build-system 6 + , setuptools 7 + 8 + # dependencies 9 + , django 10 + , mysqlclient 11 + 12 + # tests 13 + , pytest-django 14 + , pytestCheckHook 15 + }: 16 + 17 + buildPythonPackage rec { 18 + pname = "django-mysql"; 19 + version = "4.9.0"; 20 + format = "pyproject"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "adamchainz"; 24 + repo = "django-mysql"; 25 + rev = "refs/tags/${version}"; 26 + hash = "sha256-mXAdwNqSIrWMh+YcCjksiqmkLSXGAd+ofyzJmiG+gNo="; 27 + }; 28 + 29 + nativeBuildInputs = [ 30 + setuptools 31 + ]; 32 + 33 + buildInputs = [ 34 + django 35 + mysqlclient 36 + ]; 37 + 38 + doCheck = false; # requires mysql/mariadb server 39 + 40 + env.DJANGO_SETTINGS_MODULE = "tests.settings"; 41 + 42 + nativeCheckInputs = [ 43 + pytest-django 44 + pytestCheckHook 45 + ]; 46 + 47 + meta = with lib; { 48 + changelog = "https://django-mysql.readthedocs.io/en/latest/changelog.html"; 49 + description = "Extensions to Django for use with MySQL/MariaD"; 50 + homepage = "https://github.com/adamchainz/django-mysql"; 51 + license = licenses.mit; 52 + maintainers = with maintainers; [ hexa ]; 53 + }; 54 + }
+23 -2
pkgs/development/python-modules/dlib/default.nix
··· 1 - { stdenv, buildPythonPackage, dlib, python, pytest, more-itertools 1 + { stdenv, buildPythonPackage, dlib, python, pytest, more-itertools, fetchpatch 2 2 , sse4Support ? stdenv.hostPlatform.sse4_1Support 3 3 , avxSupport ? stdenv.hostPlatform.avxSupport 4 4 }: ··· 6 6 buildPythonPackage { 7 7 inherit (dlib) pname version src nativeBuildInputs buildInputs meta; 8 8 9 - patches = [ ./build-cores.patch ]; 9 + patches = [ 10 + ./build-cores.patch 11 + 12 + # Upgrade minimum CMake & C++ requirement. Nixpkgs is sufficiently up-to-date 13 + # so that is not a problem. Applied to make sure the pybind11 patch applies cleanly. 14 + (fetchpatch { 15 + url = "https://github.com/davisking/dlib/commit/29288e5d895b21f5508c15294f1303b367534a63.patch"; 16 + sha256 = "sha256-8GsGOehTFabRf+QOZK6Ek/Xgwp8yLj8UKd7kmneBpXk="; 17 + }) 18 + # Removes a bunch of broken python tests. Also useful to make sure the pybind11 19 + # patch applies cleanly. 20 + (fetchpatch { 21 + url = "https://github.com/davisking/dlib/commit/a517aaa0bbb0524a1a7be3d6637aa6300c2e1dfe.patch"; 22 + sha256 = "sha256-31/c1ViVPdJ/gQVMV22Nnr01/Yg13s9tPowfh4BedNg="; 23 + }) 24 + # Upgrade pybind11 to 2.4.0. Relevant to fix Python 3.11 support. 25 + (fetchpatch { 26 + url = "https://github.com/davisking/dlib/commit/65bce59a1512cf222dec01d3e0f29b612dd181f5.patch"; 27 + sha256 = "sha256-04TGJdn9p9YhDVZHAU9ncgCyR1vrnRxKkTRDSwOk/fw="; 28 + excludes = [ ".github/workflows/build_python.yml" ]; 29 + }) 30 + ]; 10 31 11 32 nativeCheckInputs = [ pytest more-itertools ]; 12 33
+55
pkgs/development/python-modules/drf-ujson2/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # dependencies 6 + , django 7 + , djangorestframework 8 + , ujson 9 + 10 + # tests 11 + , pytest-django 12 + , pytest-mock 13 + , pytestCheckHook 14 + }: 15 + 16 + buildPythonPackage rec { 17 + pname = "drf-ujson2"; 18 + version = "1.7.2"; 19 + format = "setuptools"; 20 + 21 + src = fetchFromGitHub { 22 + owner = "Amertz08"; 23 + repo = "drf_ujson2"; 24 + rev = "refs/tags/v${version}"; 25 + hash = "sha256-kbpZN1zOXHvRPcn+Sjbelq74cWgvCUeMXZy1eFSa6rA="; 26 + }; 27 + 28 + postPatch = '' 29 + sed -i '/--cov/d' setup.cfg 30 + ''; 31 + 32 + buildInputs = [ 33 + django 34 + ]; 35 + 36 + propagatedBuildInputs = [ 37 + djangorestframework 38 + ujson 39 + ]; 40 + 41 + env.DJANGO_SETTINGS_MODULE = "tests.settings"; 42 + 43 + nativeCheckInputs = [ 44 + pytest-django 45 + pytest-mock 46 + pytestCheckHook 47 + ]; 48 + 49 + meta = with lib; { 50 + changelog = "https://github.com/Amertz08/drf_ujson2/releases/tag/v${version}"; 51 + description = "JSON parser and renderer using ujson for Django Rest Framework"; 52 + homepage = "https://github.com/Amertz08/drf_ujson2"; 53 + maintainers = with maintainers; [ hexa ]; 54 + }; 55 + }
+1 -1
pkgs/development/python-modules/extractcode/default.nix
··· 73 73 ]; 74 74 75 75 meta = with lib; { 76 - description = "Universal archive extractor using z7zip, libarchve, other libraries and the Python standard library"; 76 + description = "Universal archive extractor using z7zip, libarchive, other libraries and the Python standard library"; 77 77 homepage = "https://github.com/nexB/extractcode"; 78 78 changelog = "https://github.com/nexB/extractcode/releases/tag/v${version}"; 79 79 license = licenses.asl20;
+2 -2
pkgs/development/python-modules/home-assistant-chip-clusters/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "home-assistant-chip-clusters"; 9 - version = "2023.2.2"; 9 + version = "2023.4.1"; 10 10 format = "wheel"; 11 11 12 12 src = fetchPypi { ··· 14 14 pname = "home_assistant_chip_clusters"; 15 15 dist = "py3"; 16 16 python = "py3"; 17 - hash = "sha256-FsIE4dcZOP24/DX6TLnmoCHMYe4f9gWqmv2L25ujqu4="; 17 + hash = "sha256-kRgsXKn7j736yWfyRZ0LXP+Ftac5pRLmdn1LUmTYkCw="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/home-assistant-chip-core/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "home-assistant-chip-core"; 27 - version = "2023.2.2"; 27 + version = "2023.4.1"; 28 28 format = "wheel"; 29 29 30 30 disabled = pythonOlder "3.7"; ··· 33 33 system = { 34 34 "aarch64-linux" = { 35 35 name = "aarch64"; 36 - hash = "sha256-e3OIpTGPMj+YSx/pqzGi5paUAIpDhI94prhHL3DkM18="; 36 + hash = "sha256-Rke4cVHdpJjrqqiNKWFwglerr61VyiTNKj8AhLE0+Xo="; 37 37 }; 38 38 "x86_64-linux" = { 39 39 name = "x86_64"; 40 - hash = "sha256-15olERnpfe4PbDsDfw47vsYsqjFe8P8IDmSSGxGLtx8="; 40 + hash = "sha256-ihbbNFuR+3SLzdZgApJawpwnZeo1HPoOBWJXkY+5RSM="; 41 41 }; 42 42 }.${stdenv.system} or (throw "Unsupported system"); 43 43 in fetchPypi {
+2 -2
pkgs/development/python-modules/into-dbus-python/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "into-dbus-python"; 13 - version = "0.08"; 13 + version = "0.8.2"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "stratis-storage"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - hash = "sha256-Z8e6oAvRMIisMjG4HcS5jSH1znGVc7pGpMITo5fXYVs="; 19 + hash = "sha256-Ld/DyhVaDiWUXgqmvSmEHqFW2dcoRNM0O4X5DXE3UtM="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+1 -1
pkgs/development/python-modules/jaxlib/default.nix
··· 63 63 # aarch64-darwin is broken because of https://github.com/bazelbuild/rules_cc/pull/136 64 64 # however even with that fix applied, it doesn't work for everyone: 65 65 # https://github.com/NixOS/nixpkgs/pull/184395#issuecomment-1207287129 66 - broken = stdenv.isAarch64; 66 + broken = stdenv.isAarch64 || stdenv.isDarwin; 67 67 }; 68 68 69 69 cudatoolkit_joined = symlinkJoin {
+2 -2
pkgs/development/python-modules/latex2mathml/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "latex2mathml"; 14 - version = "3.75.3"; 14 + version = "3.75.5"; 15 15 16 16 disabled = pythonOlder "3.8"; 17 17 ··· 19 19 owner = "roniemartinez"; 20 20 repo = pname; 21 21 rev = version; 22 - hash = "sha256-i1OJ6hmF04cdDOG1gfyseCJu+e0LEr1I3UwLXbdQJqQ="; 22 + hash = "sha256-ezSksOUvSUqo8MktjKU5ZWhAxtFHwFkSAOJ8rG2jgoU="; 23 23 }; 24 24 25 25 format = "pyproject";
+3
pkgs/development/python-modules/maxcube-api/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , pythonAtLeast 3 4 , pythonOlder 4 5 , fetchFromGitHub 5 6 , unittestCheckHook ··· 30 31 ]; 31 32 32 33 meta = with lib; { 34 + # Tests indicate lack of 3.11 compatibility 35 + broken = pythonAtLeast "3.11"; 33 36 description = "eQ-3/ELV MAX! Cube Python API"; 34 37 homepage = "https://github.com/hackercowboy/python-maxcube-api"; 35 38 license = licenses.mit;
+2 -2
pkgs/development/python-modules/mesa/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "mesa"; 15 - version = "1.2.0"; 15 + version = "1.2.1"; 16 16 format = "setuptools"; 17 17 18 18 # According to their docs, this library is for Python 3+. ··· 21 21 src = fetchPypi { 22 22 pname = "Mesa"; 23 23 inherit version; 24 - hash = "sha256-Hb+iISf9Aug3JIf+3kcXwYPshAe2CkqbGPEuSY2Ij9s="; 24 + hash = "sha256-SJiAuQSnatBnsZpwF3KyBTd1oiNjCpJEepq7t0QjoAQ="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+1 -1
pkgs/development/python-modules/notion-client/default.nix
··· 25 25 httpx 26 26 ]; 27 27 28 - # disable coverage options as they don't provide us value, and they break the defalt pytestCheckHook 28 + # disable coverage options as they don't provide us value, and they break the default pytestCheckHook 29 29 preCheck = '' 30 30 sed -i '/addopts/d' ./setup.cfg 31 31 '';
+1 -1
pkgs/development/python-modules/os-service-types/default.nix
··· 33 33 pythonImportsCheck = [ "os_service_types" ]; 34 34 35 35 meta = with lib; { 36 - description = "Python library for consuming OpenStack sevice-types-authority data"; 36 + description = "Python library for consuming OpenStack service-types-authority data"; 37 37 homepage = "https://github.com/openstack/os-service-types"; 38 38 license = licenses.asl20; 39 39 maintainers = teams.openstack.members;
+52
pkgs/development/python-modules/paypal-checkout-serversdk/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # propagates 6 + , paypalhttp 7 + 8 + # tersts 9 + , pytestCheckHook 10 + , responses 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "paypal-checkout-serversdk"; 15 + version = "1.0.1"; 16 + format = "setuptools"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "paypal"; 20 + repo = "Checkout-Python-SDK"; 21 + rev = "refs/tags/${version}"; 22 + hash = "sha256-04ojNJeqVMdhnGpeCD+wzgKGLI22tVvrMW3gF/SH7KU="; 23 + }; 24 + 25 + postPatch = '' 26 + # outdated python2 samples 27 + rm -rf sample 28 + ''; 29 + 30 + propagatedBuildInputs = [ 31 + paypalhttp 32 + ]; 33 + 34 + nativeCheckInputs = [ 35 + pytestCheckHook 36 + responses 37 + ]; 38 + 39 + disabledTests = [ 40 + # network tests 41 + "testOrdersPatchTest" 42 + "testOrdersCreateTest" 43 + "testOrderGetRequestTest" 44 + ]; 45 + 46 + meta = with lib; { 47 + changelog = "https://github.com/paypal/Checkout-Python-SDK/releases/tag/${version}"; 48 + description = "Python SDK for Checkout RESTful APIs"; 49 + license = licenses.asl20; 50 + maintainers = with maintainers; [ hexa ]; 51 + }; 52 + }
+45
pkgs/development/python-modules/paypalhttp/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # propagates 6 + , pyopenssl 7 + , requests 8 + , six 9 + 10 + # tests 11 + , pytestCheckHook 12 + , responses 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "paypalhttp"; 17 + version = "1.0.0"; 18 + format = "setuptools"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "paypal"; 22 + repo = "paypalhttp_python"; 23 + rev = "refs/tags/${version}"; 24 + hash = "sha256-3ihcpYtpcejPkiyf4g4jveyNU6flQB2sv9EZ5Pd7tUc="; 25 + }; 26 + 27 + propagatedBuildInputs = [ 28 + requests 29 + six 30 + pyopenssl 31 + ]; 32 + 33 + nativeCheckInputs = [ 34 + pytestCheckHook 35 + responses 36 + ]; 37 + 38 + meta = with lib; { 39 + changelog = "https://github.com/paypal/paypalhttp_python/releases/tag/${version}"; 40 + description = "PayPalHttp is a generic HTTP Client"; 41 + homepage = "https://github.com/paypal/paypalhttp_python"; 42 + license = licenses.mit; 43 + maintainers = with maintainers; [ hexa ]; 44 + }; 45 + }
+1 -1
pkgs/development/python-modules/protobuf/default.nix
··· 15 15 buildPythonPackage { 16 16 inherit (protobuf) pname src; 17 17 18 - # protobuf 3.21 coresponds with its python library 4.21 18 + # protobuf 3.21 corresponds with its python library 4.21 19 19 version = 20 20 if lib.versionAtLeast protobuf.version "3.21" 21 21 then "${toString (lib.toInt versionMajor + 1)}.${versionMinor}.${versionPatch}"
+2 -3
pkgs/development/python-modules/pymumble/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , isPy27 5 4 , opuslib 6 5 , protobuf 7 6 , pytestCheckHook ··· 11 10 12 11 buildPythonPackage rec { 13 12 pname = "pymumble"; 14 - version = "1.7"; 13 + version = "1.6.1"; # Don't upgrade to 1.7, version was yanked 15 14 format = "setuptools"; 16 15 17 16 disabled = pythonOlder "3.7"; ··· 20 19 owner = "azlux"; 21 20 repo = "pymumble"; 22 21 rev = "refs/tags/${version}"; 23 - hash = "sha256-NMp1yZ+R9vmne7old7z9UvcxSi6C044g68ZQsofT0gA="; 22 + hash = "sha256-+sT5pqdm4A2rrUcUUmvsH+iazg80+/go0zM1vr9oeuE="; 24 23 }; 25 24 26 25 postPatch = ''
+2 -2
pkgs/development/python-modules/pyswitchbee/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pyswitchbee"; 13 - version = "1.7.26"; 13 + version = "1.8.0"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.9"; ··· 19 19 owner = "jafar-atili"; 20 20 repo = "pySwitchbee"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-g8g0QSih2AM/xPHdjuYGj6eB+kKqldjNHZ2Co60mUnk="; 22 + hash = "sha256-bMxWrapFX689yvC6+9NUunEtTe79+QNauFa1ZjG9ON4="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+1 -1
pkgs/development/python-modules/pytest-cases/default.nix
··· 40 40 41 41 # Tests have dependencies (pytest-harvest, pytest-steps) which 42 42 # are not available in Nixpkgs. Most of the packages (decopatch, 43 - # makefun, pytest-*) have circular dependecies. 43 + # makefun, pytest-*) have circular dependencies. 44 44 doCheck = false; 45 45 46 46 pythonImportsCheck = [
+2 -2
pkgs/development/python-modules/python-matter-server/default.nix
··· 27 27 28 28 buildPythonPackage rec { 29 29 pname = "python-matter-server"; 30 - version = "3.2.0"; 30 + version = "3.3.1"; 31 31 format = "pyproject"; 32 32 33 33 disabled = pythonOlder "3.10"; ··· 36 36 owner = "home-assistant-libs"; 37 37 repo = "python-matter-server"; 38 38 rev = "refs/tags/${version}"; 39 - hash = "sha256-T2DB3oWePYR8qKfUeVDMUA5JGdMk/onbpjBt2fWhCuw="; 39 + hash = "sha256-IsoqCG+xV8FKFVmOP60NBAdIJGlI/ThpOOr7PTUTHzo="; 40 40 }; 41 41 42 42 nativeBuildInputs = [
+6 -3
pkgs/development/python-modules/python-rtmidi/default.nix
··· 2 2 , stdenv 3 3 , buildPythonPackage 4 4 , fetchPypi 5 - , isPy27 5 + , pythonOlder 6 + , pythonAtLeast 6 7 , pkg-config 7 8 , alsa-lib 8 9 , libjack2 ··· 17 18 buildPythonPackage rec { 18 19 pname = "python-rtmidi"; 19 20 version = "1.4.9"; 20 - disabled = isPy27; 21 + 22 + # https://github.com/SpotlightKid/python-rtmidi/issues/115 23 + disabled = pythonOlder "3.6" || pythonAtLeast "3.11"; 21 24 22 25 src = fetchPypi { 23 26 inherit pname version; ··· 42 45 43 46 meta = with lib; { 44 47 description = "A Python binding for the RtMidi C++ library implemented using Cython"; 45 - homepage = "https://chrisarndt.de/projects/python-rtmidi/"; 48 + homepage = "https://github.com/SpotlightKid/python-rtmidi"; 46 49 license = licenses.mit; 47 50 maintainers = with maintainers; [ hexa ]; 48 51 };
+112
pkgs/development/python-modules/python-u2flib-server/cryptography-37-compat.patch
··· 1 + diff --git a/test/soft_u2f_v2.py b/test/soft_u2f_v2.py 2 + index d011b1f..9a24bb9 100644 3 + --- a/test/soft_u2f_v2.py 4 + +++ b/test/soft_u2f_v2.py 5 + @@ -112,9 +112,7 @@ class SoftU2FDevice(object): 6 + CERT_PRIV, password=None, backend=default_backend()) 7 + cert = CERT 8 + data = b'\x00' + app_param + client_param + key_handle + pub_key 9 + - signer = cert_priv.signer(ec.ECDSA(hashes.SHA256())) 10 + - signer.update(data) 11 + - signature = signer.finalize() 12 + + signature = cert_priv.sign(data, ec.ECDSA(hashes.SHA256())) 13 + 14 + raw_response = (b'\x05' + pub_key + six.int2byte(len(key_handle)) + 15 + key_handle + cert + signature) 16 + @@ -163,9 +161,7 @@ class SoftU2FDevice(object): 17 + counter = struct.pack('>I', self.counter) 18 + 19 + data = app_param + touch + counter + client_param 20 + - signer = priv_key.signer(ec.ECDSA(hashes.SHA256())) 21 + - signer.update(data) 22 + - signature = signer.finalize() 23 + + signature = priv_key.sign(data, ec.ECDSA(hashes.SHA256())) 24 + raw_response = touch + counter + signature 25 + 26 + return SignResponse( 27 + diff --git a/u2flib_server/attestation/resolvers.py b/u2flib_server/attestation/resolvers.py 28 + index 034549f..cd59b10 100644 29 + --- a/u2flib_server/attestation/resolvers.py 30 + +++ b/u2flib_server/attestation/resolvers.py 31 + @@ -86,27 +86,29 @@ class MetadataResolver(object): 32 + cert_bytes = cert.tbs_certificate_bytes 33 + 34 + if isinstance(pubkey, rsa.RSAPublicKey): 35 + - verifier = pubkey.verifier( 36 + - cert_signature, 37 + - padding.PKCS1v15(), 38 + - cert.signature_hash_algorithm 39 + - ) 40 + + try: 41 + + pubkey.verify( 42 + + cert_signature, 43 + + cert_bytes, 44 + + padding.PKCS1v15(), 45 + + cert.signature_hash_algorithm 46 + + ) 47 + + return True 48 + + except InvalidSignature: 49 + + return False 50 + elif isinstance(pubkey, ec.EllipticCurvePublicKey): 51 + - verifier = pubkey.verifier( 52 + - cert_signature, 53 + - ec.ECDSA(cert.signature_hash_algorithm) 54 + - ) 55 + + try: 56 + + pubkey.verify( 57 + + cert_signature, 58 + + cert_bytes, 59 + + ec.ECDSA(cert.signature_hash_algorithm) 60 + + ) 61 + + return True 62 + + except InvalidSignature: 63 + + return False 64 + else: 65 + raise ValueError("Unsupported public key value") 66 + 67 + - verifier.update(cert_bytes) 68 + - 69 + - try: 70 + - verifier.verify() 71 + - return True 72 + - except InvalidSignature: 73 + - return False 74 + - 75 + def resolve(self, cert): 76 + if isinstance(cert, bytes): 77 + cert = x509.load_der_x509_certificate(cert, default_backend()) 78 + diff --git a/u2flib_server/model.py b/u2flib_server/model.py 79 + index 481be51..6ec01bb 100644 80 + --- a/u2flib_server/model.py 81 + +++ b/u2flib_server/model.py 82 + @@ -175,12 +175,9 @@ class RegistrationData(object): 83 + cert = x509.load_der_x509_certificate(self.certificate, 84 + default_backend()) 85 + pubkey = cert.public_key() 86 + - verifier = pubkey.verifier(self.signature, ec.ECDSA(hashes.SHA256())) 87 + - 88 + - verifier.update(b'\0' + app_param + chal_param + self.key_handle + 89 + - self.pub_key) 90 + + msg = (b'\0' + app_param + chal_param + self.key_handle + self.pub_key) 91 + try: 92 + - verifier.verify() 93 + + pubkey.verify(self.signature, msg, ec.ECDSA(hashes.SHA256())) 94 + except InvalidSignature: 95 + raise ValueError('Attestation signature is invalid') 96 + 97 + @@ -207,13 +204,9 @@ class SignatureData(object): 98 + def verify(self, app_param, chal_param, der_pubkey): 99 + pubkey = load_der_public_key(PUB_KEY_DER_PREFIX + der_pubkey, 100 + default_backend()) 101 + - verifier = pubkey.verifier(self.signature, ec.ECDSA(hashes.SHA256())) 102 + - verifier.update(app_param + 103 + - six.int2byte(self.user_presence) + 104 + - struct.pack('>I', self.counter) + 105 + - chal_param) 106 + + msg = app_param + six.int2byte(self.user_presence) + struct.pack('>I', self.counter) + chal_param 107 + try: 108 + - verifier.verify() 109 + + pubkey.verify(self.signature, msg, ec.ECDSA(hashes.SHA256())) 110 + except InvalidSignature: 111 + raise ValueError('U2F signature is invalid') 112 +
+60
pkgs/development/python-modules/python-u2flib-server/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , fetchpatch 5 + 6 + # propagates 7 + , cryptography 8 + , six 9 + 10 + # optional 11 + , webob 12 + 13 + # tests 14 + , pytestCheckHook 15 + }: 16 + 17 + buildPythonPackage rec { 18 + pname = "python-u2flib-server"; 19 + version = "5.0.1"; 20 + format = "setuptools"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "Yubico"; 24 + repo = "python-u2flib-server"; 25 + rev = version; 26 + hash = "sha256-ginP9u+aHcdaWpwcFYJWu0Ghf7+nDZq9i3TVAacIPhg="; 27 + }; 28 + 29 + patches = [ 30 + ./cryptography-37-compat.patch 31 + ]; 32 + 33 + propagatedBuildInputs = [ 34 + cryptography 35 + six 36 + ]; 37 + 38 + passthru.optional-dependencies = { 39 + u2f_server = [ 40 + webob 41 + ]; 42 + }; 43 + 44 + pythonImportsCheck = [ 45 + "u2flib_server" 46 + "u2flib_server.u2f" 47 + ]; 48 + 49 + nativeCheckInputs = [ 50 + pytestCheckHook 51 + ] ++ passthru.optional-dependencies.u2f_server; 52 + 53 + meta = with lib; { 54 + description = "Python based U2F server library"; 55 + homepage = "https://github.com/Yubico/python-u2flib-server"; 56 + changelog = "https://github.com/Yubico/python-u2flib-server/blob/${src.rev}/NEWS"; 57 + license = licenses.bsd2; 58 + maintainers = with maintainers; [ hexa ]; 59 + }; 60 + }
+33
pkgs/development/python-modules/pyuca/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , unittestCheckHook 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "pyuca"; 9 + version = "1.2"; 10 + format = "setuptools"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "jtauber"; 14 + repo = "pyuca"; 15 + rev = "v${version}"; 16 + hash = "sha256-KIWk+/o1MX5J9cO7xITvjHrYg0NdgdTetOzfGVwAI/4="; 17 + }; 18 + 19 + pythonImportsCheck = [ 20 + "pyuca" 21 + ]; 22 + 23 + nativeCheckInputs = [ 24 + unittestCheckHook 25 + ]; 26 + 27 + meta = with lib; { 28 + description = "A Python implementation of the Unicode Collation Algorithm"; 29 + homepage = "https://github.com/jtauber/pyuca"; 30 + license = licenses.mit; 31 + maintainers = with maintainers; [ hexa ]; 32 + }; 33 + }
+2 -2
pkgs/development/python-modules/pyvex/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pyvex"; 16 - version = "9.2.48"; 16 + version = "9.2.49"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.8"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-kdvmybMPtmCAHyXMzgRXdAPns5jN8N6IDGZ5f4rx7do="; 23 + hash = "sha256-RtTejAkyvFLOr2zA7AKJUkz3Zjhxsz8ippn64T37qXU="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/rq/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "rq"; 11 - version = "1.13.0"; 11 + version = "1.14.1"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 17 17 owner = "rq"; 18 18 repo = "rq"; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-YbpH5Pt93nKYRZMb+MRFFGRxKcRITlvFTvbo574ruFs="; 20 + hash = "sha256-8X7l59YAO4T0JA3saLzEwirHZniXsp/9Z8q+Tr2HDv0="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+39
pkgs/development/python-modules/slimit/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , ply 5 + , pytestCheckHook 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "slimit"; 10 + version = "unstable-2018-08-08"; 11 + format = "setuptools"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "rspivak"; 15 + repo = "slimit"; 16 + rev = "3533eba9ad5b39f3a015ae6269670022ab310847"; 17 + hash = "sha256-J+8RGENM/+eaTNvoC54XXPP+aWmazlssjnZAY88J/F0="; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + ply 22 + ]; 23 + 24 + pythonImportsCheck = [ 25 + "slimit" 26 + ]; 27 + 28 + nativeCheckInputs = [ 29 + pytestCheckHook 30 + ]; 31 + 32 + meta = with lib; { 33 + description = "SlimIt - a JavaScript minifier/parser in Python"; 34 + homepage = "https://github.com/rspivak/slimit"; 35 + changelog = "https://github.com/rspivak/slimit/blob/${src.rev}/CHANGES"; 36 + license = licenses.mit; 37 + maintainers = with maintainers; [ hexa ]; 38 + }; 39 + }
+55
pkgs/development/python-modules/static3/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # optionals 6 + , genshi 7 + 8 + # tests 9 + , pytestCheckHook 10 + , webtest 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "static3"; 15 + version = "0.7.0"; 16 + format = "setuptools"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "rmohr"; 20 + repo = "static3"; 21 + rev = "v${version}"; 22 + hash = "sha256-uFgv+57/UZs4KoOdkFxbvTEDQrJbb0iYJ5JoWWN4yFY="; 23 + }; 24 + 25 + postPatch = '' 26 + substituteInPlace setup.py \ 27 + --replace ", 'pytest-cov'" "" 28 + ''; 29 + 30 + passthru.optional-dependencies = { 31 + KidMagic = [ 32 + # TODO: kid 33 + ]; 34 + Genshimagic = [ 35 + genshi 36 + ]; 37 + }; 38 + 39 + pythonImportsCheck = [ 40 + "static" 41 + ]; 42 + 43 + nativeCheckInputs = [ 44 + pytestCheckHook 45 + webtest 46 + ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); 47 + 48 + meta = with lib; { 49 + changelog = "https://github.com/rmohr/static3/releases/tag/v${version}"; 50 + description = "A really simple WSGI way to serve static (or mixed) content"; 51 + homepage = "https://github.com/rmohr/static3"; 52 + license = licenses.lgpl21Only; 53 + maintainers = with maintainers; [ hexa ]; 54 + }; 55 + }
+52
pkgs/development/python-modules/vat-moss/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , pytestCheckHook 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "vat-moss"; 10 + version = "0.11.0"; 11 + format = "setuptools"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "raphaelm"; 15 + repo = "vat_moss-python"; 16 + rev = version; 17 + hash = "sha256-c0lcyeW8IUhWKcfn3BmsbNmHyAzm8T0sdYp0Zp0FbFw="; 18 + }; 19 + 20 + patches = [ 21 + (fetchpatch { 22 + # Update API URL to HTTPS 23 + url = "https://github.com/raphaelm/vat_moss-python/commit/ed32b7d893da101332d3bb202d17b1bf89e5d9ed.patch"; 24 + hash = "sha256-GpxaQ6/1LdFdxzXT/p4HS7FHU0WeM0i3LbdRFeqnFdw="; 25 + }) 26 + ]; 27 + 28 + pythonImportsCheck = [ 29 + "vat_moss" 30 + ]; 31 + 32 + nativeCheckInputs = [ 33 + pytestCheckHook 34 + ]; 35 + 36 + disabledTests = [ 37 + "test_fetch" 38 + ]; 39 + 40 + disabledTestPaths = [ 41 + # network access 42 + "tests/test_id.py" 43 + ]; 44 + 45 + meta = with lib; { 46 + description = "A Python library for dealing with VAT MOSS and Norway VAT on digital services. Includes VAT ID validation, rate calculation based on place of supply, exchange rate and currency tools for invoices"; 47 + homepage = "https://github.com/raphaelm/vat_moss-python"; 48 + changelog = "https://github.com/raphaelm/vat_moss-python/blob/${src.rev}/changelog.md"; 49 + license = licenses.mit; 50 + maintainers = with maintainers; [ hexa ]; 51 + }; 52 + }
+2 -2
pkgs/development/python-modules/weasyprint/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "weasyprint"; 27 - version = "58.0"; 27 + version = "58.1"; 28 28 format = "pyproject"; 29 29 30 30 disabled = pythonOlder "3.7"; ··· 32 32 src = fetchPypi { 33 33 inherit version; 34 34 pname = "weasyprint"; 35 - hash = "sha256-cPSCytjlPCw+rpz4avQS65NAWxash4G1GeozJtR1vW8="; 35 + hash = "sha256-YXMAnjE75lgH/vv3ioBRzrepN3bv2n67uIwT9XaXlPM="; 36 36 }; 37 37 38 38 patches = [
+6 -1
pkgs/development/python-modules/webdav4/default.nix
··· 24 24 src = fetchFromGitHub { 25 25 owner = "skshetry"; 26 26 repo = pname; 27 - rev = "v${version}"; 27 + rev = "refs/tags/v${version}"; 28 28 hash = "sha256-Le/gABaUxMmSW2SjgucsBKqjxOq1h9UCAWl5YyUsCPk="; 29 29 }; 30 30 ··· 76 76 "test_open" 77 77 "test_open_binary" 78 78 "test_close_connection_if_nothing_is_read" 79 + # Assertion error due to comparing output 80 + "test_cp_cli" 81 + "test_mv_cli" 82 + "test_sync_remote_to_local" 79 83 ]; 80 84 81 85 disabledTestPaths = [ ··· 87 91 meta = with lib; { 88 92 description = "Library for interacting with WebDAV"; 89 93 homepage = "https://skshetry.github.io/webdav4/"; 94 + changelog = "https://github.com/skshetry/webdav4/releases/tag/v${version}"; 90 95 license = with licenses; [ mit ]; 91 96 maintainers = with maintainers; [ fab ]; 92 97 };
+2 -2
pkgs/development/python-modules/yfinance/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "yfinance"; 18 - version = "0.2.16"; 18 + version = "0.2.19b1"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "ranaroussi"; 25 25 repo = pname; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-OcGmRSsUk2v+zpEWtOanuZLupR9hR+wbEMln00/uCms="; 27 + hash = "sha256-kqNit24Fdi6rk0WIJnTIata3o+pkGOGAVWZkzTlZdsQ="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+13
pkgs/development/tools/build-managers/gprbuild/gpr-project-path-hook.sh
··· 6 6 } 7 7 8 8 addEnvHooks "$targetOffset" addAdaObjectsPath 9 + 10 + fixDarwinRpath() { 11 + for f in $(find $out -type f -executable); do 12 + install_name_tool -id $f $f || true 13 + for rpath in $(otool -L $f | grep rpath | awk '{print $1}'); do 14 + install_name_tool -change $rpath $out/lib/$(basename $rpath) $f || true 15 + done 16 + done 17 + } 18 + 19 + if [ "$(uname)" = "Darwin" ]; then 20 + preFixupPhases+=" fixDarwinRpath" 21 + fi
+2 -2
pkgs/development/tools/go-containerregistry/default.nix
··· 4 4 5 5 buildGoModule rec { 6 6 pname = "go-containerregistry"; 7 - version = "0.14.0"; 7 + version = "0.15.1"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "google"; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-rnlxvvHZYkWgmRP++ZRFHt2B6ZBdG1jojg/+9FYqJ4w="; 13 + sha256 = "sha256-yXIFPLuqyWaWgbGbGOuBwWg/KWM9vuMnXnTBcgluzhI="; 14 14 }; 15 15 vendorHash = null; 16 16
+4 -4
pkgs/development/tools/kustomize/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kustomize"; 5 - version = "4.5.4"; 5 + version = "5.0.2"; 6 6 7 7 ldflags = let t = "sigs.k8s.io/kustomize/api/provenance"; in 8 8 [ ··· 15 15 owner = "kubernetes-sigs"; 16 16 repo = pname; 17 17 rev = "kustomize/v${version}"; 18 - sha256 = "sha256-7Ode+ONgWJRNSbIpvIjhuT+oVvZgJfByFqS/iSUhcXw="; 18 + hash = "sha256-tsri90wvEZ6/UQpFz4fn7FgBQhji1IW1nPcx3jBaa3M="; 19 19 }; 20 20 21 21 # avoid finding test and development commands 22 22 modRoot = "kustomize"; 23 - 24 - vendorSha256 = "sha256-beIbeY/+k2NgotGw5zQFkYuqMKlwctoxuToZfiFlCm4="; 23 + proxyVendor = true; 24 + vendorHash = "sha256-9XOa3K5PBhnxwQo6eOPkdFcbp6axKTDYHFwzbAKxjEI="; 25 25 26 26 nativeBuildInputs = [ installShellFiles ]; 27 27
+2 -5
pkgs/development/tools/language-servers/docker-compose-language-service/default.nix
··· 1 1 { lib 2 2 , buildNpmPackage 3 - , nodejs_16 4 3 , fetchFromGitHub 5 4 }: 6 - let 7 - buildNpmPackage' = buildNpmPackage.override { nodejs = nodejs_16; }; 8 - in 9 - buildNpmPackage' rec { 5 + 6 + buildNpmPackage rec { 10 7 pname = "docker-compose-language-service"; 11 8 version = "0.1.3"; 12 9
+3 -3
pkgs/development/tools/misc/act/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "act"; 8 - version = "0.2.44"; 8 + version = "0.2.45"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "nektos"; 12 12 repo = pname; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-Hy/s7IVkarz/RLTP2ojyrPHkzepKFTxqS7omEYHi570="; 14 + hash = "sha256-mp5+hDSZsp46WMCCqVoorKSHeoQY/+ORtj0fNrKsFWI="; 15 15 }; 16 16 17 - vendorHash = "sha256-6Js3k0YZm8t52pT241d8pb71e2bXaF4FIWXZU51wvds="; 17 + vendorHash = "sha256-37fHVy4NLhWyk1yD9zSNnZoVVyd2QizzDCDbiNJCBlc="; 18 18 19 19 doCheck = false; 20 20
+3 -3
pkgs/development/tools/misc/clojure-lsp/default.nix
··· 2 2 3 3 buildGraalvmNativeImage rec { 4 4 pname = "clojure-lsp"; 5 - version = "2023.04.19-12.43.29"; 5 + version = "2023.05.04-19.38.01"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = pname; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-Y3zBkNp8rTQY8yjSeZDIKHgpMEDLe3XBlEWeuc5H3mk="; 11 + sha256 = "sha256-TWbOR0/YYO0O+4w2ACADOrp8EmyEfFAq2FQOUDEafjw="; 12 12 }; 13 13 14 14 jar = fetchurl { 15 15 url = "https://github.com/clojure-lsp/clojure-lsp/releases/download/${version}/clojure-lsp-standalone.jar"; 16 - sha256 = "df6b582a39183c271a8d00ddf4e3cf020b9e872e6fad2c13bf7de46e940ff4d6"; 16 + sha256 = "48503b147a247cef4c106084b0c15e10bb0f1de8f0b15d528ca9d66e76bba465"; 17 17 }; 18 18 19 19 extraNativeImageBuildArgs = [
+1 -1
pkgs/development/tools/misc/ctags/wrapped.nix
··· 53 53 "--regex-PHP=/function[ \\t]+([^ (]*)/\\1/f/" 54 54 ]; 55 55 56 - # Javascript: also find unnamed functions and funtions beeing passed within a dict. 56 + # Javascript: also find unnamed functions and functions being passed within a dict. 57 57 # the dict properties is used to implement duck typing in frameworks 58 58 # var foo = function () { ... } 59 59 # {
+1 -1
pkgs/development/tools/misc/pkgconf/default.nix
··· 35 35 # reason, but in this case the dev output is for the `libpkgconf` library, 36 36 # while the aclocal stuff is for the tool. The tool is already for use during 37 37 # development, so there is no reason to have separate "dev-bin" and "dev-lib" 38 - # outputs or someting. 38 + # outputs or something. 39 39 + '' 40 40 mv ${placeholder "dev"}/share ${placeholder "out"} 41 41 '';
+2
pkgs/development/tools/ocaml/ocaml-top/default.nix
··· 4 4 pname = "ocaml-top"; 5 5 version = "1.2.0"; 6 6 7 + duneVersion = "3"; 8 + 7 9 src = fetchFromGitHub { 8 10 owner = "OCamlPro"; 9 11 repo = "ocaml-top";
+4 -3
pkgs/development/tools/ocaml/ocp-indent/default.nix
··· 1 - { lib, fetchFromGitHub, buildDunePackage, cmdliner }: 1 + { lib, fetchFromGitHub, buildDunePackage, cmdliner, findlib }: 2 2 3 3 buildDunePackage rec { 4 4 version = "1.8.2"; 5 5 pname = "ocp-indent"; 6 6 7 - useDune2 = true; 7 + duneVersion = "3"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "OCamlPro"; ··· 13 13 sha256 = "sha256-IyvURw/6R0eKrnahV1fqLV0iIeypykrmxDbliECgbLc="; 14 14 }; 15 15 16 - minimumOCamlVersion = "4.02"; 16 + minimalOCamlVersion = "4.03"; 17 17 18 18 buildInputs = [ cmdliner ]; 19 + propagatedBuildInputs = [ findlib ]; 19 20 20 21 meta = with lib; { 21 22 homepage = "https://www.typerex.org/ocp-indent.html";
+2
pkgs/development/tools/ocaml/ocp-index/default.nix
··· 4 4 pname = "ocp-index"; 5 5 version = "1.3.4"; 6 6 7 + duneVersion = "3"; 8 + 7 9 minimalOCamlVersion = "4.08"; 8 10 9 11 src = fetchFromGitHub {
+2
pkgs/development/tools/rust/cargo-raze/default.nix
··· 31 31 ] 32 32 ++ lib.optional stdenv.isDarwin Security; 33 33 34 + __darwinAllowLocalNetworking = true; 35 + 34 36 meta = with lib; { 35 37 description = "Generate Bazel BUILD files from Cargo dependencies"; 36 38 homepage = "https://github.com/google/cargo-raze";
+25 -23
pkgs/development/tools/skjold/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 - , fetchpatch 4 3 , python3 5 4 }: 6 5 7 - python3.pkgs.buildPythonApplication rec { 6 + let 7 + py = python3.override { 8 + packageOverrides = self: super: { 9 + packaging = super.packaging.overridePythonAttrs (oldAttrs: rec { 10 + version = "21.3"; 11 + src = oldAttrs.src.override { 12 + inherit version; 13 + hash = "sha256-3UfEKSfYmrkR5gZRiQfMLTofOLvQJjhZcGQ/nFuOz+s="; 14 + }; 15 + nativeBuildInputs = with python3.pkgs; [ setuptools ]; 16 + propagatedBuildInputs = with python3.pkgs; [ pyparsing six ]; 17 + }); 18 + }; 19 + }; 20 + in 21 + with py.pkgs; 22 + 23 + buildPythonApplication rec { 8 24 pname = "skjold"; 9 - version = "0.4.1"; 25 + version = "0.6.1"; 10 26 format = "pyproject"; 11 27 12 28 src = fetchFromGitHub { 13 29 owner = "twu"; 14 30 repo = pname; 15 - rev = "v${version}"; 16 - hash = "sha256-xz6N7/LS3wOymh9tet8OLgsSaretzuMU4hQd+LeUPJ4="; 31 + rev = "refs/tags/v${version}"; 32 + hash = "sha256-rsdstzNZvokYfTjEyPrWR+0SJpf9wL0HAesq8+A+tPY="; 17 33 }; 18 34 19 - nativeBuildInputs = with python3.pkgs; [ 35 + nativeBuildInputs = with py.pkgs; [ 20 36 poetry-core 21 37 ]; 22 38 23 - propagatedBuildInputs = with python3.pkgs; [ 39 + propagatedBuildInputs = with py.pkgs; [ 24 40 click 25 41 packaging 26 42 pyyaml 27 43 toml 28 44 ]; 29 45 30 - nativeCheckInputs = with python3.pkgs; [ 46 + nativeCheckInputs = with py.pkgs; [ 31 47 pytest-mock 32 48 pytest-watch 33 49 pytestCheckHook 34 50 ]; 35 51 36 - patches = [ 37 - # Switch to poetry-core, https://github.com/twu/skjold/pull/91 38 - (fetchpatch { 39 - name = "switch-poetry-core.patch"; 40 - url = "https://github.com/twu/skjold/commit/b341748c9b11798b6a5182d659a651b0f200c6f5.patch"; 41 - sha256 = "sha256-FTZTbIudO6lYO9tLD4Lh1h5zsTeKYtflR2tbbHZ5auM="; 42 - }) 43 - ]; 44 - 45 - postPatch = '' 46 - substituteInPlace pyproject.toml \ 47 - --replace 'packaging = "^21.0"' 'packaging = "*"' \ 48 - --replace 'pyyaml = "^5.3"' 'pyyaml = "*"' 49 - ''; 50 - 51 52 disabledTestPaths = [ 52 53 # Too sensitive to pass 53 54 "tests/test_cli.py" ··· 73 74 meta = with lib; { 74 75 description = "Tool to Python dependencies against security advisory databases"; 75 76 homepage = "https://github.com/twu/skjold"; 77 + changelog = "https://github.com/twu/skjold/releases/tag/v${version}"; 76 78 license = with licenses; [ mit ]; 77 79 maintainers = with maintainers; [ fab ]; 78 80 };
+1 -1
pkgs/development/tools/statik/default.nix
··· 15 15 16 16 # Avoid building example 17 17 subPackages = [ "." "fs" ]; 18 - # Tests are checking that the files embeded are preserving 18 + # Tests are checking that the files embedded are preserving 19 19 # their meta data like dates etc, but it assumes to be in 2048 20 20 # which is not the case once entered the nix store 21 21 doCheck = false;
+3 -3
pkgs/development/tools/ytt/default.nix
··· 1 1 { lib, buildGoModule, fetchFromGitHub }: 2 2 buildGoModule rec { 3 3 pname = "ytt"; 4 - version = "0.45.0"; 4 + version = "0.45.1"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "vmware-tanzu"; 8 8 repo = "carvel-ytt"; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-G8rQEDVTv3e5YFwKSL7Rd1Is1kjBl08DL4Kl6H8aa68="; 10 + sha256 = "sha256-YfRr3oQUuDGVrQvfUzqld4SNWOsmGP4jmo5gf8tG6Vo="; 11 11 }; 12 12 13 - vendorSha256 = null; 13 + vendorHash = null; 14 14 15 15 ldflags = [ 16 16 "-X github.com/vmware-tanzu/carvel-ytt/pkg/version.Version=${version}"
+3 -3
pkgs/development/web/flyctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "flyctl"; 5 - version = "0.0.558"; 5 + version = "0.0.559"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "superfly"; 9 9 repo = "flyctl"; 10 10 rev = "v${version}"; 11 - hash = "sha256-L9DPj3pbWSpCWsLX09usoqmLmYzXL10Jkm1CGC7g3KQ="; 11 + hash = "sha256-pvIh5eECKyK+xa9HV6oGF6X10xfJOYfyOufalvmfFv8="; 12 12 }; 13 13 14 - vendorHash = "sha256-63GZztiH5E1c/hJEAo35JKTzkKDss7aEOhrKUBpO3ho="; 14 + vendorHash = "sha256-5UXq22ea+m2KJ+XX/MLu/vDk3B4M+og0ws+p9bDuIxk="; 15 15 16 16 subPackages = [ "." ]; 17 17
+3 -1
pkgs/os-specific/linux/ipu6-drivers/default.nix
··· 52 52 license = lib.licenses.gpl2; 53 53 maintainers = with lib.maintainers; [ hexa ]; 54 54 platforms = [ "x86_64-linux" ]; 55 - broken = kernel.kernelOlder "6.1.7"; 55 + # requires 6.1.7 https://github.com/intel/ipu6-drivers/pull/84 56 + # fails to build on 6.3 https://github.com/intel/ipu6-drivers/issues/140 57 + broken = kernel.kernelOlder "6.1.7" || kernel.kernelAtLeast "6.3"; 56 58 }; 57 59 }
+1 -1
pkgs/os-specific/linux/kernel/perf/default.nix
··· 148 148 149 149 preFixup = '' 150 150 # Pull in 'objdump' into PATH to make annotations work. 151 - # The embeded Python interpreter will search PATH to calculate the Python path configuration(Should be fixed by upstream). 151 + # The embedded Python interpreter will search PATH to calculate the Python path configuration(Should be fixed by upstream). 152 152 # Add python.interpreter to PATH for now. 153 153 wrapProgram $out/bin/perf \ 154 154 --prefix PATH : ${lib.makeBinPath [ binutils-unwrapped python3 ]}
+1 -1
pkgs/os-specific/linux/tpacpi-bat/default.nix
··· 28 28 meta = { 29 29 maintainers = [lib.maintainers.orbekk]; 30 30 platforms = lib.platforms.linux; 31 - description = "Tool to set battery charging thesholds on Lenovo Thinkpad"; 31 + description = "Tool to set battery charging thresholds on Lenovo Thinkpad"; 32 32 license = lib.licenses.gpl3Plus; 33 33 }; 34 34 }
+1 -1
pkgs/os-specific/linux/zenpower/default.nix
··· 23 23 ''; 24 24 25 25 meta = with lib; { 26 + inherit (src.meta) homepage; 26 27 description = "Linux kernel driver for reading temperature, voltage(SVI2), current(SVI2) and power(SVI2) for AMD Zen family CPUs."; 27 - homepage = "https://github.com/Ta180m/zenpower3"; 28 28 license = licenses.gpl2Plus; 29 29 maintainers = with maintainers; [ alexbakker artturin ]; 30 30 platforms = [ "x86_64-linux" ];
+3 -3
pkgs/servers/bazarr/default.nix
··· 8 8 in 9 9 stdenv.mkDerivation rec { 10 10 pname = "bazarr"; 11 - version = "1.2.0"; 11 + version = "1.2.1"; 12 12 13 13 sourceRoot = "."; 14 14 15 15 src = fetchurl { 16 16 url = "https://github.com/morpheus65535/bazarr/releases/download/v${version}/bazarr.zip"; 17 - sha256 = "sha256-rlph8On/dc9Xyx8/KQzp4vX49wY4fr1oTtBEyfVhrsc="; 17 + sha256 = "sha256-PuVK1jrNjxagESYvgqRBfxzsV/KxFhTdOyliO8smwec="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ unzip makeWrapper ]; 21 21 22 22 buildInputs = [ 23 - (python3.withPackages (ps: [ ps.lxml ps.numpy ps.gevent ps.gevent-websocket ])) 23 + (python3.withPackages (ps: [ ps.lxml ps.numpy ps.gevent ps.gevent-websocket ps.pillow ])) 24 24 ] ++ runtimeProgDeps; 25 25 26 26 installPhase = ''
+5 -5
pkgs/servers/peertube/default.nix
··· 14 14 15 15 in stdenv.mkDerivation rec { 16 16 pname = "peertube"; 17 - version = "5.0.0"; 17 + version = "5.1.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "Chocobozzz"; 21 21 repo = "PeerTube"; 22 22 rev = "v${version}"; 23 - hash = "sha256-Z2l0I/vVEx4ivC87N26QaUnQjySU/XRFW3biEwl7Od0="; 23 + hash = "sha256-C9mBF+QymGXyBB3IFX6MNgsZpHk739qv1/DLuvzrTaU="; 24 24 }; 25 25 26 26 yarnOfflineCacheServer = fetchYarnDeps { 27 27 yarnLock = "${src}/yarn.lock"; 28 - hash = "sha256-EVviTrgSZYsi68hJIlSC9ArQS3aVp6EQNKbkVx12WJk="; 28 + hash = "sha256-W+pX2XO27j6qAVxvo+Xf1h7g3V0LUMtwNf+meZmkgwE="; 29 29 }; 30 30 31 31 yarnOfflineCacheTools = fetchYarnDeps { ··· 35 35 36 36 yarnOfflineCacheClient = fetchYarnDeps { 37 37 yarnLock = "${src}/client/yarn.lock"; 38 - hash = "sha256-ehA1W1bDXzApTpkWH7MEAQ9Ek73q3En76/LdvJhxh2Q="; 38 + hash = "sha256-TAv8QAAfT3q28jUo26h0uCGsoqBzAn8lybIaqNAApU8="; 39 39 }; 40 40 41 41 nativeBuildInputs = [ brotli fixup_yarn_lock jq nodejs which yarn ]; ··· 123 123 license = licenses.agpl3Plus; 124 124 homepage = "https://joinpeertube.org/"; 125 125 platforms = [ "x86_64-linux" ]; 126 - maintainers = with maintainers; [ immae izorkin matthiasbeyer mohe2015 stevenroose ]; 126 + maintainers = with maintainers; [ immae izorkin mohe2015 stevenroose ]; 127 127 }; 128 128 }
+2 -2
pkgs/servers/sql/pgbouncer/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pgbouncer"; 5 - version = "1.18.0"; 5 + version = "1.19.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-k0nJ5Z9viBVjVPT2ryfNsBSiNbAK4YTLqjdoi9DfVEw="; 9 + sha256 = "sha256-rwsF6X0OH9mtRf4A6m0qk0xjB19n9+LM7yylnj2M5oI="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ];
+3 -3
pkgs/tools/misc/iay/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "iay"; 15 - version = "0.4.0"; 15 + version = "0.4.2"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "aaqaishtyaq"; 19 19 repo = pname; 20 20 rev = "v${version}"; 21 - sha256 = "0r2yp34gxkh32amrysfj1jg543dh0kyqxzcx0zyi6a8y9232d8ky"; 21 + sha256 = "sha256-vk+1RbAmzRf2bbvbSpO+upVW4VrtYWM+5iiH73N+dsc="; 22 22 }; 23 23 24 - cargoHash = "sha256-SMqiwM6LrXXjV4Mb2BY9WbeKKPkxiYxPyZ4aepVIAqU="; 24 + cargoHash = "sha256-+PpmxVPyRx/xF7jQGy/07xqALmdNp2uL3HZVOeRicqY="; 25 25 26 26 nativeBuildInputs = [ pkg-config ]; 27 27
+14 -1
pkgs/tools/networking/connman/connman/default.nix
··· 4 4 , fetchurl 5 5 , fetchpatch 6 6 , pkg-config 7 + , autoreconfHook 7 8 , file 8 9 , glib 9 10 # always required runtime dependencies ··· 64 65 sha256 = "sha256-eftA9P3VUwxFqo5ZL7Froj02dPOpjPELiaZXbxmN5Yk="; 65 66 }; 66 67 67 - patches = lib.optionals stdenv.hostPlatform.isMusl [ 68 + patches = [ 69 + (fetchpatch { 70 + name = "pppd-2.5.0-compat.patch"; 71 + url = "https://git.kernel.org/pub/scm/network/connman/connman.git/patch/?id=a48864a2e5d2a725dfc6eef567108bc13b43857f"; 72 + sha256 = "sha256-jB1qL13mceQ1riv3K+oFWw4VC7ohv/CcH9sjxZPXcG4="; 73 + }) 74 + (fetchpatch { 75 + name = "CVE-2023-28488.patch"; 76 + url = "https://git.kernel.org/pub/scm/network/connman/connman.git/patch/?id=99e2c16ea1cced34a5dc450d76287a1c3e762138"; 77 + sha256 = "sha256-377CmsECji2w/c4bZXR+TxzTB7Lce0yo7KdK1oWfCVY="; 78 + }) 79 + ] ++ lib.optionals stdenv.hostPlatform.isMusl [ 68 80 # Fix Musl build by avoiding a Glibc-only API. 69 81 (fetchpatch { 70 82 url = "https://git.alpinelinux.org/aports/plain/community/connman/libresolv.patch?id=e393ea84386878cbde3cccadd36a30396e357d1e"; ··· 88 100 nativeBuildInputs = [ 89 101 pkg-config 90 102 file 103 + autoreconfHook # as long as we're patching configure.ac 91 104 ]; 92 105 93 106 # fix invalid path to 'file'
+7 -3
pkgs/tools/networking/openfortivpn/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, autoreconfHook, pkg-config 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + , pkg-config 2 6 , openssl 3 7 , ppp 4 8 , systemd ··· 8 12 9 13 stdenv.mkDerivation rec { 10 14 pname = "openfortivpn"; 11 - version = "1.20.2"; 15 + version = "1.20.3"; 12 16 13 17 src = fetchFromGitHub { 14 18 owner = "adrienverge"; 15 19 repo = pname; 16 20 rev = "v${version}"; 17 - sha256 = "sha256-Ml1aVvF+kqlSTuzZeHG8Ry+BA24YdWACwQNlO2K+FGo="; 21 + hash = "sha256-3HKVHH9S409t07TgiZtw58AhQH6W+Ch8chsSmof1Jkk="; 18 22 }; 19 23 20 24 # we cannot write the config file to /etc and as we don't need the file, so drop it
+6 -5
pkgs/tools/networking/ppp/default.nix
··· 23 23 }; 24 24 25 25 configureFlags = [ 26 + "--localstatedir=/var" 27 + "--sysconfdir=/etc" 26 28 "--with-openssl=${openssl.dev}" 27 - "--sysconfdir=/etc" 28 29 ]; 29 30 30 31 nativeBuildInputs = [ 31 32 pkg-config 32 33 autoreconfHook 33 34 ]; 35 + 34 36 buildInputs = [ 35 37 libpcap 36 38 libxcrypt ··· 46 48 patchShebangs --host \ 47 49 scripts/{pon,poff,plog} 48 50 ''; 51 + 52 + enableParallelBuilding = true; 49 53 50 54 makeFlags = [ 51 55 "CC=${stdenv.cc.targetPrefix}cc" ··· 57 61 "sysconfdir=$(out)/etc" 58 62 ]; 59 63 60 - preInstall = '' 61 - mkdir -p $out/bin 62 - ''; 63 64 postInstall = '' 64 - install -D -m 755 scripts/{pon,poff,plog} $out/bin 65 + install -Dm755 -t $out/bin scripts/{pon,poff,plog} 65 66 ''; 66 67 67 68 postFixup = ''
+12 -17
pkgs/tools/security/cryptomator/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 2 , autoPatchelfHook 3 - , fuse, jffi 4 - , maven, jdk, jre, makeShellWrapper, glib, wrapGAppsHook 3 + , fuse3 4 + , maven, jdk, makeShellWrapper, glib, wrapGAppsHook 5 5 }: 6 6 7 7 let 8 8 pname = "cryptomator"; 9 - version = "1.6.14"; 9 + version = "1.8.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "cryptomator"; 13 13 repo = "cryptomator"; 14 14 rev = version; 15 - sha256 = "sha256-ArOYL3xj2HiXXu1Bymd5mciMsmikCDvxr5M3LMqZgYA="; 15 + sha256 = "sha256-4MjF2PDH0JB1biY4HO2wOC0i6EIGSlzkK6tDm8nzvIo="; 16 16 }; 17 17 18 18 # perform fake build to make a fixed-output derivation out of the files downloaded from maven central (120MB) ··· 21 21 inherit src; 22 22 23 23 nativeBuildInputs = [ jdk maven ]; 24 - buildInputs = [ jre ]; 24 + buildInputs = [ jdk ]; 25 25 26 26 buildPhase = '' 27 27 while mvn -Plinux package -Dmaven.test.skip=true -Dmaven.repo.local=$out/.m2 -Dmaven.wagon.rto=5000; [ $? = 1 ]; do ··· 35 35 find $out/.m2 -type f -iname '*.pom' -exec sed -i -e 's/\r\+$//' {} \; 36 36 ''; 37 37 38 - outputHashAlgo = "sha256"; 39 38 outputHashMode = "recursive"; 40 - outputHash = "sha256-svpz1mHCHNQGWc+CBroAPvW4cXQdYuqFkK4JSmf6kXE="; 39 + outputHash = "sha256-2nCaSL7OlS9f+PZPh0YiMvnjOaAqlQimkKWDSjSP+bQ="; 41 40 42 41 doCheck = false; 43 42 }; ··· 60 59 cp target/libs/* $out/share/cryptomator/libs/ 61 60 cp target/mods/* target/cryptomator-*.jar $out/share/cryptomator/mods/ 62 61 63 - # The bundeled jffi.so dosn't work on nixos and causes a segmentation fault 64 - # we thus replace it with a version build by nixos 65 - rm $out/share/cryptomator/libs/jff*.jar 66 - cp -f ${jffi}/share/java/jffi-complete.jar $out/share/cryptomator/libs/ 67 - 68 - makeShellWrapper ${jre}/bin/java $out/bin/cryptomator \ 62 + makeShellWrapper ${jdk}/bin/java $out/bin/cryptomator \ 63 + --add-flags "--enable-preview" \ 69 64 --add-flags "--class-path '$out/share/cryptomator/libs/*'" \ 70 65 --add-flags "--module-path '$out/share/cryptomator/mods'" \ 71 66 --add-flags "-Dcryptomator.logDir='~/.local/share/Cryptomator/logs'" \ ··· 82 77 --add-flags "-Djavafx.embed.singleThread=true " \ 83 78 --add-flags "-Dawt.useSystemAAFontSettings=on" \ 84 79 --add-flags "--module org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator" \ 85 - --prefix PATH : "$out/share/cryptomator/libs/:${lib.makeBinPath [ jre glib ]}" \ 86 - --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ fuse ]}" \ 87 - --set JAVA_HOME "${jre.home}" 80 + --prefix PATH : "$out/share/cryptomator/libs/:${lib.makeBinPath [ jdk glib ]}" \ 81 + --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ fuse3 ]}" \ 82 + --set JAVA_HOME "${jdk.home}" 88 83 89 84 # install desktop entry and icons 90 85 cp -r ${src}/dist/linux/appimage/resources/AppDir/usr/* $out/ ··· 105 100 wrapGAppsHook 106 101 jdk 107 102 ]; 108 - buildInputs = [ fuse jre glib jffi ]; 103 + buildInputs = [ fuse3 jdk glib ]; 109 104 110 105 meta = with lib; { 111 106 description = "Free client-side encryption for your cloud files";
+62 -7
pkgs/tools/security/cve-bin-tool/default.nix
··· 1 1 { lib 2 2 , buildPythonApplication 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , jsonschema 5 6 , plotly 6 7 , beautifulsoup4 ··· 24 25 , xmlschema 25 26 , setuptools 26 27 , packaging 28 + , cvss 29 + , google-cloud-sdk 30 + , pip 31 + , testers 32 + , cve-bin-tool 33 + # pinned packaging 34 + , pyparsing 35 + , fetchPypi 36 + , buildPythonPackage 37 + , pretend 38 + , pythonOlder 27 39 }: 40 + 41 + let 42 + # pin packaging to < 22 until issue related to https://github.com/intel/cve-bin-tool/pull/2436 are resolved by upstream (post-3.2) 43 + packaging_21_3 = buildPythonPackage rec { 44 + inherit (packaging) pname passthru meta; 45 + version = "21.3"; 46 + format = "pyproject"; 47 + disabled = pythonOlder "3.6"; 48 + 49 + src = fetchPypi { 50 + inherit pname version; 51 + sha256 = "sha256-3UfEKSfYmrkR5gZRiQfMLTofOLvQJjhZcGQ/nFuOz+s="; 52 + }; 53 + nativeBuildInputs = [ 54 + setuptools 55 + ]; 56 + propagatedBuildInputs = [ 57 + pyparsing 58 + ]; 59 + 60 + nativeCheckInputs = [ 61 + pytestCheckHook 62 + pretend 63 + ]; 64 + 65 + doCheck = false; 66 + }; 67 + in 28 68 buildPythonApplication rec { 29 69 pname = "cve-bin-tool"; 30 - version = "3.1.2"; 70 + version = "3.2"; 31 71 32 72 src = fetchFromGitHub { 33 73 owner = "intel"; 34 74 repo = "cve-bin-tool"; 35 75 rev = "refs/tags/v${version}"; 36 - sha256 = "sha256-P2GhGQxa6Y8BmMqFHXSfmqN58E1FbXD9Ndwwr+upK8Q="; 76 + hash = "sha256-QOnWt6iit0/F6d/MfZ8qJqDuT3IHh0Qjs6BcJkI/CBw="; 37 77 }; 38 78 79 + patches = [ 80 + # Not needed as python dependency, should just be on the PATH 81 + ./no-gsutil-python-dependency.patch 82 + # Already merged upstream, to be removed post-3.2 83 + # https://github.com/intel/cve-bin-tool/pull/2524 84 + (fetchpatch { 85 + name = "cve-bin-tool-version-success.patch"; 86 + url = "https://github.com/intel/cve-bin-tool/commit/6f9bd565219932c565c1443ac467fe4163408dd8.patch"; 87 + hash = "sha256-Glj6qiOvmvsuetXn4tysyiN/vrcOPFLORh+u3BoGzCI="; 88 + }) 89 + ]; 90 + 39 91 # Wants to open a sqlite database, access the internet, etc 40 92 doCheck = false; 41 93 94 + propagatedNativeBuildInputs = [ 95 + pip 96 + ]; 97 + 42 98 propagatedBuildInputs = [ 99 + google-cloud-sdk 43 100 jsonschema 44 101 plotly 45 102 beautifulsoup4 ··· 62 119 pillow 63 120 setuptools 64 121 xmlschema 65 - packaging 122 + cvss 123 + packaging_21_3 66 124 ]; 67 125 68 126 nativeCheckInputs = [ ··· 73 131 "cve_bin_tool" 74 132 ]; 75 133 76 - # required until https://github.com/intel/cve-bin-tool/pull/1665 is merged 77 - postPatch = '' 78 - sed '/^pytest/d' -i requirements.txt 79 - ''; 134 + passthru.tests.version = testers.testVersion { package = cve-bin-tool; }; 80 135 81 136 meta = with lib; { 82 137 description = "CVE Binary Checker Tool";
+12
pkgs/tools/security/cve-bin-tool/no-gsutil-python-dependency.patch
··· 1 + diff --git a/requirements.txt b/requirements.txt 2 + index 1d4aa9a..c9e9171 100644 3 + --- a/requirements.txt 4 + +++ b/requirements.txt 5 + @@ -14,6 +14,6 @@ xmlschema 6 + importlib_metadata; python_version < "3.8" 7 + requests 8 + urllib3>=1.26.5 # dependency of requests added explictly to avoid CVEs 9 + -gsutil 10 + +#gsutil 11 + cvss 12 + packaging
+2 -2
pkgs/tools/security/hcxdumptool/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "hcxdumptool"; 5 - version = "6.1.4"; 5 + version = "6.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ZerBea"; 9 9 repo = "hcxdumptool"; 10 10 rev = version; 11 - sha256 = "14rwcchqpsxyzvk086d7wbi5qlcxj4jcmafzgvkwzrpbspqh8p24"; 11 + sha256 = "sha256-29AG5vzWgVOzJvlx1TiYA/veXaQvOwfHa8QYq+qMnq0="; 12 12 }; 13 13 14 14 buildInputs = [ openssl ];
+8 -1
pkgs/tools/security/inql/default.nix
··· 11 11 owner = "doyensec"; 12 12 repo = pname; 13 13 rev = "refs/tags/v${version}"; 14 - sha256 = "sha256-DFGJHqdrCmOZn8GdY5SZ1PrOhuIsMLoK+2Fry9WkRiY="; 14 + hash = "sha256-DFGJHqdrCmOZn8GdY5SZ1PrOhuIsMLoK+2Fry9WkRiY="; 15 15 }; 16 + 17 + postPatch = '' 18 + # To set the version a full git checkout would be needed 19 + substituteInPlace setup.py \ 20 + --replace "version=version()," "version='${version}'," 21 + ''; 16 22 17 23 propagatedBuildInputs = with python3.pkgs; [ 18 24 stickytape ··· 28 34 meta = with lib; { 29 35 description = "Security testing tool for GraphQL"; 30 36 homepage = "https://github.com/doyensec/inql"; 37 + changelog = "https://github.com/doyensec/inql/releases/tag/v${version}"; 31 38 license = with licenses; [ asl20 ]; 32 39 maintainers = with maintainers; [ fab ]; 33 40 };
+14 -1
pkgs/tools/security/scorecard/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, fetchgit, installShellFiles }: 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , fetchgit 5 + , installShellFiles 6 + , testers 7 + , scorecard 8 + }: 2 9 3 10 buildGoModule rec { 4 11 pname = "scorecard"; ··· 66 73 # $out/bin/scorecard version 2>&1 | grep "v${version}" 67 74 runHook postInstallCheck 68 75 ''; 76 + 77 + passthru.tests.version = testers.testVersion { 78 + package = scorecard; 79 + command = "scorecard version"; 80 + version = "v${version}"; 81 + }; 69 82 70 83 meta = with lib; { 71 84 homepage = "https://github.com/ossf/scorecard";
+8 -5
pkgs/tools/system/acpica-tools/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "acpica-tools"; 10 - version = "20221020"; 10 + version = "20230331"; 11 11 12 12 src = fetchurl { 13 - # 20221020 has a weird filename published: https://acpica.org/node/201 14 - name = "acpica-unix-${version}.tar.gz"; 15 - url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar_0.gz"; 16 - hash = "sha256-M6LjlKygylfUAYr+PaNA361etFsbkwDoHdWV/aB88cU="; 13 + url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz"; 14 + hash = "sha256-DF1pXWBaqmFwnzxj9XoambiQIpFyOZhEawgTtXrDEOI="; 17 15 }; 18 16 19 17 nativeBuildInputs = [ bison flex ]; ··· 37 35 ]); 38 36 39 37 enableParallelBuilding = true; 38 + 39 + # i686 builds fail with hardening enabled (due to -Wformat-overflow). Disable 40 + # -Werror altogether to make this derivation less fragile to toolchain 41 + # updates. 42 + NOWERROR = "TRUE"; 40 43 41 44 # We can handle stripping ourselves. 42 45 # Unless we are on Darwin. Upstream makefiles degrade coreutils install to cp if _APPLE is detected.
+5 -1
pkgs/tools/typesetting/tex/texlive/combine.nix
··· 248 248 # libfaketime fixes non-determinism related to timestamps ignoring FORCE_SOURCE_DATE 249 249 # we cannot fix further randomness caused by luatex; for further details, see 250 250 # https://salsa.debian.org/live-team/live-build/-/blob/master/examples/hooks/reproducible/2006-reproducible-texlive-binaries-fmt-files.hook.chroot#L52 251 - FORCE_SOURCE_DATE=1 TZ= faketime -f '@1980-01-01 00:00:00 x0.001' fmtutil --sys --all | grep '^fmtutil' # too verbose 251 + # note that calling faketime and fmtutil is fragile (faketime uses LD_PRELOAD, fmtutil calls /bin/sh, causing potential glibc issues on non-NixOS) 252 + # so we patch fmtutil to use faketime, rather than calling faketime fmtutil 253 + substitute "$out/bin/fmtutil" fmtutil \ 254 + --replace 'my $cmdline = "$eng -ini ' 'my $cmdline = "faketime -f '"'"'\@1980-01-01 00:00:00 x0.001'"'"' $eng -ini ' 255 + FORCE_SOURCE_DATE=1 TZ= perl fmtutil --sys --all | grep '^fmtutil' # too verbose 252 256 #texlinks "$out/bin" && wrapBin # do we need to regenerate format links? 253 257 254 258 # Disable unavailable map files
+21 -18
pkgs/top-level/aliases.nix
··· 260 260 couchdb = throw "couchdb was removed from nixpkgs, use couchdb3 instead"; # Added 2021-03-03 261 261 couchdb2 = throw "couchdb2 was removed from nixpkgs, use couchdb3 instead"; # Added 2021-03-03 262 262 coreclr = throw "coreclr has been removed from nixpkgs, use dotnet-sdk instead"; # added 2022-06-12 263 - corgi = throw "corgi has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-02 263 + corgi = throw "corgi has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-02 264 264 cpp-gsl = throw "'cpp-gsl' has been renamed to/replaced by 'microsoft_gsl'"; # Converted to throw 2022-02-22 265 265 cpp_ethereum = throw "cpp_ethereum has been removed; abandoned upstream"; # Added 2020-11-30 266 266 cpuminer-multi = throw "cpuminer-multi has been removed: deleted by upstream"; # Added 2022-01-07 ··· 318 318 cudnn_cudatoolkit_9_1 = throw "cudnn_cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18 319 319 cudnn_cudatoolkit_9_2 = throw "cudnn_cudatoolkit_9_2 has been removed in favor of newer versions"; # Added 2021-04-18 320 320 cura_stable = throw "cura_stable was removed because it was broken and used Python 2"; # added 2022-06-05 321 - curl_unix_socket = throw "curl_unix_socket has been dropped due to the lack of maintanence from upstream since 2015"; # Added 2022-06-02 321 + curl_unix_socket = throw "curl_unix_socket has been dropped due to the lack of maintenance from upstream since 2015"; # Added 2022-06-02 322 322 cutensor = throw "cutensor is now part of cudaPackages*"; # Added 2022-04-04 323 323 cutensor_cudatoolkit_10 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 324 324 cutensor_cudatoolkit_10_1 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 ··· 391 391 docbook5_xsl = throw "'docbook5_xsl' has been renamed to/replaced by 'docbook_xsl_ns'"; # Converted to throw 2022-02-22 392 392 docbookrx = throw "docbookrx has been removed since it was unmaintained"; # Added 2021-01-12 393 393 docbook_xml_xslt = throw "'docbook_xml_xslt' has been renamed to/replaced by 'docbook_xsl'"; # Converted to throw 2022-02-22 394 - doh-proxy = throw "doh-proxy has been removed because upstream abandoned it and its depedencies where removed."; # Added 2022-03-30 394 + doh-proxy = throw "doh-proxy has been removed because upstream abandoned it and its dependencies where removed."; # Added 2022-03-30 395 395 docker_compose = throw "'docker_compose' has been renamed to/replaced by 'docker-compose'"; # Converted to throw 2022-02-22 396 396 docker-compose_2 = throw "'docker-compose_2' has been renamed to 'docker-compose'"; # Added 2022-06-05 397 397 docker-edge = throw "'docker-edge' has been removed, it was an alias for 'docker'"; # Added 2022-06-05 ··· 541 541 gaia = throw "gaia has been removed because it seems abandoned upstream and uses no longer supported dependencies"; # Added 2020-06-06 542 542 gammy = throw "'gammy' is deprecated upstream and has been replaced by 'gummy'"; # Added 2022-09-03 543 543 garmindev = throw "'garmindev' has been removed as the dependent software 'qlandkartegt' has been removed"; # Added 2023-04-17 544 - gawp = throw "gawp has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-02 544 + gawp = throw "gawp has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 545 545 gdal_1_11 = throw "gdal_1_11 was removed. Use gdal instead"; # Added 2021-04-03 546 546 gdb-multitarget = throw "'gdb-multitarget' has been renamed to/replaced by 'gdb'"; # Converted to throw 2022-02-22 547 547 gdk_pixbuf = throw "'gdk_pixbuf' has been renamed to/replaced by 'gdk-pixbuf'"; # Converted to throw 2022-02-22 ··· 553 553 ghostwriter = libsForQt5.kdeGear.ghostwriter; # Added 2023-03-18 554 554 giblib = throw " giblib has been removed from nixpkgs because upstream is gone"; # Added 2022-01-23 555 555 giflib_4_1 = throw "giflib_4_1 has been removed; use giflib instead"; # Added 2020-02-12 556 - git-annex-remote-b2 = throw "git-annex-remote-b2 has been dropped due to the lack of maintanence from upstream since 2016"; # Added 2022-06-02 556 + git-annex-remote-b2 = throw "git-annex-remote-b2 has been dropped due to the lack of maintenance from upstream since 2016"; # Added 2022-06-02 557 557 git-bz = throw "giz-bz has been removed from nixpkgs as it is stuck on python2"; # Added 2022-01-01 558 558 git-subset = throw "'git-subset' has been removed in favor of 'git-filter-repo'"; # Added 2023-01-13 559 559 ··· 611 611 gobby5 = gobby; # Added 2021-02-01 612 612 gobjectIntrospection = throw "'gobjectIntrospection' has been renamed to/replaced by 'gobject-introspection'"; # Converted to throw 2022-02-22 613 613 gogoclient = throw "gogoclient has been removed, because it was unmaintained"; # Added 2021-12-15 614 - goklp = throw "goklp has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-02 614 + goklp = throw "goklp has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 615 615 golly-beta = throw "golly-beta has been removed: use golly instead"; # Added 2022-03-21 616 616 goimports = throw "'goimports' has been renamed to/replaced by 'gotools'"; # Converted to throw 2022-02-22 617 617 gometalinter = throw "gometalinter was abandoned by upstream. Consider switching to golangci-lint instead"; # Added 2020-04-23 ··· 620 620 google-gflags = gflags; # Added 2019-07-25 621 621 google-musicmanager = throw "google-musicmanager has been removed because Google Play Music was discontinued"; # Added 2021-03-07 622 622 google-music-scripts = throw "google-music-scripts has been removed because Google Play Music was discontinued"; # Added 2021-03-07 623 - gosca = throw "gosca has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-30 623 + gosca = throw "gosca has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-30 624 624 google-play-music-desktop-player = throw "GPMDP shows a black screen, upstream homepage is dead, use 'ytmdesktop' instead"; # Added 2022-06-16 625 625 go-langserver = throw "go-langserver has been replaced by gopls"; # Added 2022-06-30 626 - go-mk = throw "go-mk has been dropped due to the lack of maintanence from upstream since 2015"; # Added 2022-06-02 626 + go-mk = throw "go-mk has been dropped due to the lack of maintenance from upstream since 2015"; # Added 2022-06-02 627 627 go-pup = throw "'go-pup' has been renamed to/replaced by 'pup'"; # Converted to throw 2022-02-22 628 - go-repo-root = throw "go-repo-root has been dropped due to the lack of maintanence from upstream since 2014"; # Added 2022-06-02 628 + go-repo-root = throw "go-repo-root has been dropped due to the lack of maintenance from upstream since 2014"; # Added 2022-06-02 629 629 gometer = throw "gometer has been removed from nixpkgs because goLance stopped offering Linux support"; # Added 2023-02-10 630 630 gpgstats = throw "gpgstats has been removed: upstream is gone"; # Added 2022-02-06 631 631 gpshell = throw "gpshell has been removed, because it was unmaintained in nixpkgs"; # added 2021-12-17 ··· 649 649 gr-osmosdr = gnuradio3_7.pkgs.osmosdr; # Added 2019-05-27, changed 2020-10-16 650 650 gr-rds = gnuradio3_7.pkgs.rds; # Added 2019-05-27, changed 2020-10-16 651 651 grub2_full = grub2; # Added 2022-11-18 652 - grv = throw "grv has been dropped due to the lack of maintanence from upstream since 2019"; # Added 2022-06-01 652 + grv = throw "grv has been dropped due to the lack of maintenance from upstream since 2019"; # Added 2022-06-01 653 653 gsettings_desktop_schemas = throw "'gsettings_desktop_schemas' has been renamed to/replaced by 'gsettings-desktop-schemas'"; # Converted to throw 2022-02-22 654 654 gsl_1 = throw "'gsl_1' has been renamed to/replaced by 'gsl'"; # Added 2022-11-19 655 655 gtk_doc = throw "'gtk_doc' has been renamed to/replaced by 'gtk-doc'"; # Converted to throw 2022-02-22 ··· 695 695 ### I ### 696 696 697 697 i3-gaps = i3; # Added 2023-01-03 698 - i3cat = throw "i3cat has been dropped due to the lack of maintanence from upstream since 2016"; # Added 2022-06-02 698 + i3cat = throw "i3cat has been dropped due to the lack of maintenance from upstream since 2016"; # Added 2022-06-02 699 699 iana_etc = throw "'iana_etc' has been renamed to/replaced by 'iana-etc'"; # Converted to throw 2022-02-22 700 700 iasl = throw "iasl has been removed, use acpica-tools instead"; # Added 2021-08-08 701 - ical2org = throw "ical2org has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-02 701 + ical2org = throw "ical2org has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-02 702 702 icecat-bin = throw "icecat-bin has been removed, the binary builds are not maintained upstream"; # Added 2022-02-15 703 703 icedtea8_web = adoptopenjdk-icedtea-web; # Added 2019-08-21 704 704 icedtea_web = adoptopenjdk-icedtea-web; # Added 2019-08-21 ··· 769 769 770 770 ### K ### 771 771 772 - k3d = throw "k3d has been removed because it was broken and has seen no release since 2016"; # Added 2022-01-04 772 + # k3d was a 3d editing software k-3d - "k3d has been removed because it was broken and has seen no release since 2016" Added 2022-01-04 773 + # now kube3d/k3d will take it's place 774 + kube3d = k3d; # Added 2022-0705 773 775 k9copy = throw "k9copy has been removed from nixpkgs, as there is no upstream activity"; # Added 2020-11-06 774 776 kafkacat = kcat; # Added 2021-10-07 775 777 kbdKeymaps = throw "kbdKeymaps is not needed anymore since dvp and neo are now part of kbd"; # Added 2021-04-11 ··· 785 787 keepnote = throw "keepnote has been removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-01 786 788 kerberos = libkrb5; # moved from top-level 2021-03-14 787 789 kexectools = kexec-tools; # Added 2021-09-03 788 - kexpand = throw "kexpand awless has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-01 790 + kexpand = throw "kexpand awless has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-01 789 791 keybase-go = throw "'keybase-go' has been renamed to/replaced by 'keybase'"; # Converted to throw 2022-02-22 790 792 keysmith = libsForQt5.kdeGear.keysmith; # Added 2021-07-14 791 793 kgx = gnome-console; # Added 2022-02-19 ··· 866 868 librdf = lrdf; # Added 2020-03-22 867 869 librecad2 = throw "'librecad2' has been renamed to/replaced by 'librecad'"; # Converted to throw 2022-02-22 868 870 libressl_3_2 = throw "'libressl_3_2' has reached end-of-life "; # Added 2022-03-19 871 + libressl_3_5 = throw "'libressl_3_5' has reached end-of-life "; # Added 2023-05-07 869 872 librevisa = throw "librevisa has been removed because its website and source have disappeared upstream"; # Added 2022-09-23 870 873 librsync_0_9 = throw "librsync_0_9 has been removed"; # Added 2021-07-24 871 874 librtlsdr = rtl-sdr; # Added 2023-02-18 ··· 1229 1232 phwmon = throw "phwmon has been removed: abandoned by upstream"; # Added 2022-04-24 1230 1233 1231 1234 # Obsolete PHP version aliases 1232 - php74 = throw "php74 has been dropped due to the lack of maintanence from upstream for future releases"; # Added 2022-05-24 1235 + php74 = throw "php74 has been dropped due to the lack of maintenance from upstream for future releases"; # Added 2022-05-24 1233 1236 php74Packages = php74; # Added 2022-05-24 1234 1237 php74Extensions = php74; # Added 2022-05-24 1235 1238 1236 - php73 = throw "php73 has been dropped due to the lack of maintanence from upstream for future releases"; # Added 2021-06-03 1239 + php73 = throw "php73 has been dropped due to the lack of maintenance from upstream for future releases"; # Added 2021-06-03 1237 1240 php73Packages = php73; # Added 2021-06-03 1238 1241 php73Extensions = php73; # Added 2021-06-03 1239 1242 ··· 1308 1311 polarssl = throw "'polarssl' has been renamed to/replaced by 'mbedtls'"; # Converted to throw 2022-02-22 1309 1312 polymc = throw "PolyMC has been removed from nixpkgs due to a hostile takeover by a rogue maintainer. The rest of the maintainers have made a fork which is packaged as 'prismlauncher'"; # Added 2022-10-18 1310 1313 polysh = throw "polysh has been removed from nixpkgs as the upstream has abandoned the project"; # Added 2022-01-01 1311 - pond = throw "pond has been dropped due to the lack of maintanence from upstream since 2016"; # Added 2022-06-02 1314 + pond = throw "pond has been dropped due to the lack of maintenance from upstream since 2016"; # Added 2022-06-02 1312 1315 poppler_qt5 = throw "'poppler_qt5' has been renamed to/replaced by 'libsForQt5.poppler'"; # Converted to throw 2022-02-22 1313 1316 powerdns = pdns; # Added 2022-03-28 1314 1317 portaudio2014 = throw "'portaudio2014' has been removed"; # Added 2022-05-10 ··· 1768 1771 xineUI = xine-ui; # Added 2021-04-27 1769 1772 xlibsWrapper = throw "'xlibsWrapper' has been replaced by its constituents"; # Converted to throw 2022-12-27 1770 1773 xmonad_log_applet_gnome3 = throw "'xmonad_log_applet_gnome3' has been renamed to/replaced by 'xmonad_log_applet'"; # Converted to throw 2022-02-22 1771 - xmpp-client = throw "xmpp-client has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-02 1774 + xmpp-client = throw "xmpp-client has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 1772 1775 xmpppy = throw "xmpppy has been removed from nixpkgs as it is unmaintained and python2-only"; 1773 1776 xp-pen-g430 = throw "xp-pen-g430 has been renamed to xp-pen-g430-driver"; # Converted to throw 2022-06-23 1774 1777 xpf = throw "xpf has been removed: abandoned by upstream"; # Added 2022-04-26
+21 -11
pkgs/top-level/all-packages.nix
··· 1503 1503 1504 1504 copier = callPackage ../tools/misc/copier { }; 1505 1505 1506 + gabutdm = callPackage ../applications/networking/gabutdm { }; 1507 + 1506 1508 gamemode = callPackage ../tools/games/gamemode { 1507 1509 libgamemode32 = pkgsi686Linux.gamemode.lib; 1508 1510 }; ··· 22152 22154 22153 22155 libosmocore = callPackage ../applications/misc/libosmocore { }; 22154 22156 22157 + libosmo-abis = callPackage ../development/libraries/libosmo-abis { }; 22158 + 22159 + libosmo-netif = callPackage ../development/libraries/libosmo-netif { }; 22160 + 22161 + libosmo-sccp = callPackage ../development/libraries/libosmo-sccp { }; 22162 + 22155 22163 libosmscout = libsForQt5.callPackage ../development/libraries/libosmscout { }; 22156 22164 22157 22165 libotr = callPackage ../development/libraries/libotr { }; ··· 23168 23176 23169 23177 inherit (callPackages ../development/libraries/libressl { }) 23170 23178 libressl_3_4 23171 - libressl_3_5 23172 - libressl_3_6; 23179 + libressl_3_6 23180 + libressl_3_7; 23173 23181 23174 - libressl = libressl_3_6; 23182 + libressl = libressl_3_7; 23175 23183 23176 23184 boringssl = callPackage ../development/libraries/boringssl { }; 23177 23185 ··· 26444 26452 26445 26453 criu = callPackage ../os-specific/linux/criu { }; 26446 26454 26447 - cryptomator = callPackage ../tools/security/cryptomator { }; 26455 + cryptomator = callPackage ../tools/security/cryptomator { 26456 + jdk = jdk.override { enableJavaFX = true; }; 26457 + }; 26448 26458 26449 26459 cryptsetup = callPackage ../os-specific/linux/cryptsetup { }; 26450 26460 ··· 27914 27924 dosemu_fonts = callPackage ../data/fonts/dosemu-fonts { }; 27915 27925 27916 27926 dotcolon-fonts = callPackage ../data/fonts/dotcolon-fonts { }; 27927 + 27928 + dracula-icon-theme = callPackage ../data/icons/dracula-icon-theme { }; 27917 27929 27918 27930 e17gtk = callPackage ../data/themes/e17gtk { }; 27919 27931 ··· 32432 32444 inherit lua; 32433 32445 }; 32434 32446 32435 - # Wraps without trigerring a rebuild 32447 + # Wraps without triggering a rebuild 32436 32448 wrapMpv = callPackage ../applications/video/mpv/wrapper.nix { }; 32437 32449 mpv = wrapMpv mpv-unwrapped { }; 32438 32450 ··· 33123 33135 peek = callPackage ../applications/video/peek { }; 33124 33136 33125 33137 peertube = callPackage ../servers/peertube { 33126 - nodejs = nodejs_16; 33138 + nodejs = nodejs_18; 33127 33139 }; 33128 33140 33129 33141 peroxide = callPackage ../applications/networking/peroxide { }; ··· 34641 34653 neovim-qt-unwrapped = libsForQt5.callPackage ../applications/editors/neovim/neovim-qt.nix { }; 34642 34654 neovim-qt = libsForQt5.callPackage ../applications/editors/neovim/qt.nix { }; 34643 34655 34644 - gnvim-unwrapped = callPackage ../applications/editors/neovim/gnvim { 34645 - gtk = gtk3; 34646 - }; 34656 + gnvim-unwrapped = callPackage ../applications/editors/neovim/gnvim { }; 34647 34657 34648 34658 gnvim = callPackage ../applications/editors/neovim/gnvim/wrapper.nix { }; 34649 34659 ··· 39623 39633 39624 39634 wasm-pack = callPackage ../development/tools/wasm-pack { 39625 39635 inherit (darwin.apple_sdk.frameworks) Security; 39626 - libressl = libressl_3_5; 39636 + libressl = libressl_3_6; 39627 39637 }; 39628 39638 39629 39639 wasynth = callPackage ../development/tools/wasynth { }; ··· 40105 40115 40106 40116 dapper = callPackage ../development/tools/dapper { }; 40107 40117 40108 - kube3d = callPackage ../applications/networking/cluster/kube3d { 40118 + k3d = callPackage ../applications/networking/cluster/k3d { 40109 40119 buildGoModule = buildGo118Module; # tests fail with 1.19 40110 40120 }; 40111 40121
+2
pkgs/top-level/ocaml-packages.nix
··· 1356 1356 1357 1357 ppx_deriving_protobuf = callPackage ../development/ocaml-modules/ppx_deriving_protobuf {}; 1358 1358 1359 + ppx_deriving_qcheck = callPackage ../development/ocaml-modules/qcheck/ppx_deriving_qcheck.nix {}; 1360 + 1359 1361 ppx_deriving_rpc = callPackage ../development/ocaml-modules/ppx_deriving_rpc { }; 1360 1362 1361 1363 ppx_deriving_yaml = callPackage ../development/ocaml-modules/ppx_deriving_yaml {};
+22
pkgs/top-level/python-packages.nix
··· 2408 2408 2409 2409 deform = callPackage ../development/python-modules/deform { }; 2410 2410 2411 + defusedcsv = callPackage ../development/python-modules/defusedcsv { }; 2412 + 2411 2413 defusedxml = callPackage ../development/python-modules/defusedxml { }; 2412 2414 2413 2415 deid = callPackage ../development/python-modules/deid { }; ··· 2668 2670 2669 2671 django_hijack = callPackage ../development/python-modules/django-hijack { }; 2670 2672 # This package may need an older version of Django. Override the package set and set e.g. `django = super.django_1_9`. See the Nixpkgs manual for examples on how to override the package set. 2673 + 2674 + django-i18nfield = callPackage ../development/python-modules/django-i18nfield { }; 2671 2675 2672 2676 django-import-export = callPackage ../development/python-modules/django-import-export { }; 2673 2677 ··· 2699 2703 2700 2704 django-mptt = callPackage ../development/python-modules/django-mptt { }; 2701 2705 2706 + django-mysql = callPackage ../development/python-modules/django-mysql { }; 2707 + 2702 2708 django_nose = callPackage ../development/python-modules/django_nose { }; 2703 2709 2704 2710 django-oauth-toolkit = callPackage ../development/python-modules/django-oauth-toolkit { }; ··· 2944 2950 drf-spectacular = callPackage ../development/python-modules/drf-spectacular { }; 2945 2951 2946 2952 drf-spectacular-sidecar = callPackage ../development/python-modules/drf-spectacular-sidecar { }; 2953 + 2954 + drf-ujson2 = callPackage ../development/python-modules/drf-ujson2 { }; 2947 2955 2948 2956 drf-writable-nested = callPackage ../development/python-modules/drf-writable-nested { }; 2949 2957 ··· 7228 7236 7229 7237 paver = callPackage ../development/python-modules/paver { }; 7230 7238 7239 + paypal-checkout-serversdk = callPackage ../development/python-modules/paypal-checkout-serversdk { }; 7240 + 7241 + paypalhttp = callPackage ../development/python-modules/paypalhttp { }; 7242 + 7231 7243 paypalrestsdk = callPackage ../development/python-modules/paypalrestsdk { }; 7232 7244 7233 7245 pbkdf2 = callPackage ../development/python-modules/pbkdf2 { }; ··· 7652 7664 pythonfinder = callPackage ../development/python-modules/pythonfinder { }; 7653 7665 7654 7666 pytomorrowio = callPackage ../development/python-modules/pytomorrowio { }; 7667 + 7668 + pyuca = callPackage ../development/python-modules/pyuca { }; 7655 7669 7656 7670 pyutil = callPackage ../development/python-modules/pyutil { }; 7657 7671 ··· 9825 9839 9826 9840 python-u2flib-host = callPackage ../development/python-modules/python-u2flib-host { }; 9827 9841 9842 + python-u2flib-server = callPackage ../development/python-modules/python-u2flib-server { }; 9843 + 9828 9844 python-uinput = callPackage ../development/python-modules/python-uinput { }; 9829 9845 9830 9846 python-unshare = callPackage ../development/python-modules/python-unshare { }; ··· 11045 11061 11046 11062 slither-analyzer = callPackage ../development/python-modules/slither-analyzer { }; 11047 11063 11064 + slimit = callPackage ../development/python-modules/slimit { }; 11065 + 11048 11066 slixmpp = callPackage ../development/python-modules/slixmpp { 11049 11067 inherit (pkgs) gnupg; 11050 11068 }; ··· 11466 11484 starline = callPackage ../development/python-modules/starline { }; 11467 11485 11468 11486 stashy = callPackage ../development/python-modules/stashy { }; 11487 + 11488 + static3 = callPackage ../development/python-modules/static3 { }; 11469 11489 11470 11490 staticjinja = callPackage ../development/python-modules/staticjinja { }; 11471 11491 ··· 12523 12543 variants = callPackage ../development/python-modules/variants { }; 12524 12544 12525 12545 varint = callPackage ../development/python-modules/varint { }; 12546 + 12547 + vat-moss = callPackage ../development/python-modules/vat-moss { }; 12526 12548 12527 12549 vcrpy = callPackage ../development/python-modules/vcrpy { }; 12528 12550
+3 -2
pkgs/top-level/release-cross.nix
··· 242 242 # so it will fail unless buildPlatform.canExecute hostPlatform. 243 243 # Unfortunately `bootstrapTools` also clobbers its own `system` 244 244 # attribute, so there is no way to detect this -- we must add it 245 - # as a special case. 246 - (builtins.removeAttrs tools ["bootstrapTools"]); 245 + # as a special case. We filter the "test" attribute (only from 246 + # *cross*-built bootstrapTools) for the same reason. 247 + (builtins.mapAttrs (_: v: builtins.removeAttrs v ["bootstrapTools" "test"]) tools); 247 248 248 249 # Cross-built nixStatic for platforms for enabled-but-unsupported platforms 249 250 mips64el-nixCrossStatic = mapTestOnCross lib.systems.examples.mips64el-linux-gnuabi64 nixCrossStatic;