diff --git a/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
index 6a24555de74a..424bf92364da 100644
--- a/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
+++ b/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
@@ -1173,6 +1173,16 @@
migration guide for more details.
+
+
+ teleport has been upgraded to major version
+ 9. Please see upstream
+ upgrade
+ instructions and
+ release
+ notes.
+
+
For pkgs.python3.pkgs.ipython, its direct
diff --git a/nixos/doc/manual/release-notes/rl-2205.section.md b/nixos/doc/manual/release-notes/rl-2205.section.md
index 2149427d9d02..5168dada83b1 100644
--- a/nixos/doc/manual/release-notes/rl-2205.section.md
+++ b/nixos/doc/manual/release-notes/rl-2205.section.md
@@ -490,6 +490,8 @@ In addition to numerous new and upgraded packages, this release has the followin
- The `autorestic` package has been upgraded from 1.3.0 to 1.5.0 which introduces breaking changes in config file, check [their migration guide](https://autorestic.vercel.app/migration/1.4_1.5) for more details.
+- `teleport` has been upgraded to major version 9. Please see upstream [upgrade instructions](https://goteleport.com/docs/setup/operations/upgrading/) and [release notes](https://goteleport.com/docs/changelog/#900).
+
- For `pkgs.python3.pkgs.ipython`, its direct dependency `pkgs.python3.pkgs.matplotlib-inline`
(which is really an adapter to integrate matplotlib in ipython if it is installed) does
not depend on `pkgs.python3.pkgs.matplotlib` anymore.
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index e0d1c0379358..84309f90132f 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -505,6 +505,7 @@
./services/mail/postfixadmin.nix
./services/mail/postsrsd.nix
./services/mail/postgrey.nix
+ ./services/mail/public-inbox.nix
./services/mail/spamassassin.nix
./services/mail/rspamd.nix
./services/mail/rss2email.nix
diff --git a/nixos/modules/services/mail/public-inbox.nix b/nixos/modules/services/mail/public-inbox.nix
new file mode 100644
index 000000000000..0f9bc4ef226d
--- /dev/null
+++ b/nixos/modules/services/mail/public-inbox.nix
@@ -0,0 +1,579 @@
+{ lib, pkgs, config, ... }:
+
+with lib;
+
+let
+ cfg = config.services.public-inbox;
+ stateDir = "/var/lib/public-inbox";
+
+ manref = name: vol: "${name}${toString vol}";
+
+ gitIni = pkgs.formats.gitIni { listsAsDuplicateKeys = true; };
+ iniAtom = elemAt gitIni.type/*attrsOf*/.functor.wrapped/*attrsOf*/.functor.wrapped/*either*/.functor.wrapped 0;
+
+ useSpamAssassin = cfg.settings.publicinboxmda.spamcheck == "spamc" ||
+ cfg.settings.publicinboxwatch.spamcheck == "spamc";
+
+ publicInboxDaemonOptions = proto: defaultPort: {
+ args = mkOption {
+ type = with types; listOf str;
+ default = [];
+ description = "Command-line arguments to pass to ${manref "public-inbox-${proto}d" 1}.";
+ };
+ port = mkOption {
+ type = with types; nullOr (either str port);
+ default = defaultPort;
+ description = ''
+ Listening port.
+ Beware that public-inbox uses well-known ports number to decide whether to enable TLS or not.
+ Set to null and use systemd.sockets.public-inbox-${proto}d.listenStreams
+ if you need a more advanced listening.
+ '';
+ };
+ cert = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ example = "/path/to/fullchain.pem";
+ description = "Path to TLS certificate to use for connections to ${manref "public-inbox-${proto}d" 1}.";
+ };
+ key = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ example = "/path/to/key.pem";
+ description = "Path to TLS key to use for connections to ${manref "public-inbox-${proto}d" 1}.";
+ };
+ };
+
+ serviceConfig = srv:
+ let proto = removeSuffix "d" srv;
+ needNetwork = builtins.hasAttr proto cfg && cfg.${proto}.port == null;
+ in {
+ serviceConfig = {
+ # Enable JIT-compiled C (via Inline::C)
+ Environment = [ "PERL_INLINE_DIRECTORY=/run/public-inbox-${srv}/perl-inline" ];
+ # NonBlocking is REQUIRED to avoid a race condition
+ # if running simultaneous services.
+ NonBlocking = true;
+ #LimitNOFILE = 30000;
+ User = config.users.users."public-inbox".name;
+ Group = config.users.groups."public-inbox".name;
+ RuntimeDirectory = [
+ "public-inbox-${srv}/perl-inline"
+ ];
+ RuntimeDirectoryMode = "700";
+ # This is for BindPaths= and BindReadOnlyPaths=
+ # to allow traversal of directories they create inside RootDirectory=
+ UMask = "0066";
+ StateDirectory = ["public-inbox"];
+ StateDirectoryMode = "0750";
+ WorkingDirectory = stateDir;
+ BindReadOnlyPaths = [
+ "/etc"
+ "/run/systemd"
+ "${config.i18n.glibcLocales}"
+ ] ++
+ mapAttrsToList (name: inbox: inbox.description) cfg.inboxes ++
+ # Without confinement the whole Nix store
+ # is made available to the service
+ optionals (!config.systemd.services."public-inbox-${srv}".confinement.enable) [
+ "${pkgs.dash}/bin/dash:/bin/sh"
+ builtins.storeDir
+ ];
+ # The following options are only for optimizing:
+ # systemd-analyze security public-inbox-'*'
+ AmbientCapabilities = "";
+ CapabilityBoundingSet = "";
+ # ProtectClock= adds DeviceAllow=char-rtc r
+ DeviceAllow = "";
+ LockPersonality = true;
+ MemoryDenyWriteExecute = true;
+ NoNewPrivileges = true;
+ PrivateNetwork = mkDefault (!needNetwork);
+ ProcSubset = "pid";
+ ProtectClock = true;
+ ProtectHome = mkDefault true;
+ ProtectHostname = true;
+ ProtectKernelLogs = true;
+ ProtectProc = "invisible";
+ #ProtectSystem = "strict";
+ RemoveIPC = true;
+ RestrictAddressFamilies = [ "AF_UNIX" ] ++
+ optionals needNetwork [ "AF_INET" "AF_INET6" ];
+ RestrictNamespaces = true;
+ RestrictRealtime = true;
+ RestrictSUIDSGID = true;
+ SystemCallFilter = [
+ "@system-service"
+ "~@aio" "~@chown" "~@keyring" "~@memlock" "~@resources"
+ # Not removing @setuid and @privileged because Inline::C needs them.
+ # Not removing @timer because git upload-pack needs it.
+ ];
+ SystemCallArchitectures = "native";
+
+ # The following options are redundant when confinement is enabled
+ RootDirectory = "/var/empty";
+ TemporaryFileSystem = "/";
+ PrivateMounts = true;
+ MountAPIVFS = true;
+ PrivateDevices = true;
+ PrivateTmp = true;
+ PrivateUsers = true;
+ ProtectControlGroups = true;
+ ProtectKernelModules = true;
+ ProtectKernelTunables = true;
+ };
+ confinement = {
+ # Until we agree upon doing it directly here in NixOS
+ # https://github.com/NixOS/nixpkgs/pull/104457#issuecomment-1115768447
+ # let the user choose to enable the confinement with:
+ # systemd.services.public-inbox-httpd.confinement.enable = true;
+ # systemd.services.public-inbox-imapd.confinement.enable = true;
+ # systemd.services.public-inbox-init.confinement.enable = true;
+ # systemd.services.public-inbox-nntpd.confinement.enable = true;
+ #enable = true;
+ mode = "full-apivfs";
+ # Inline::C needs a /bin/sh, and dash is enough
+ binSh = "${pkgs.dash}/bin/dash";
+ packages = [
+ pkgs.iana-etc
+ (getLib pkgs.nss)
+ pkgs.tzdata
+ ];
+ };
+ };
+in
+
+{
+ options.services.public-inbox = {
+ enable = mkEnableOption "the public-inbox mail archiver";
+ package = mkOption {
+ type = types.package;
+ default = pkgs.public-inbox;
+ defaultText = literalExpression "pkgs.public-inbox";
+ description = "public-inbox package to use.";
+ };
+ path = mkOption {
+ type = with types; listOf package;
+ default = [];
+ example = literalExpression "with pkgs; [ spamassassin ]";
+ description = ''
+ Additional packages to place in the path of public-inbox-mda,
+ public-inbox-watch, etc.
+ '';
+ };
+ inboxes = mkOption {
+ description = ''
+ Inboxes to configure, where attribute names are inbox names.
+ '';
+ default = {};
+ type = types.attrsOf (types.submodule ({name, ...}: {
+ freeformType = types.attrsOf iniAtom;
+ options.inboxdir = mkOption {
+ type = types.str;
+ default = "${stateDir}/inboxes/${name}";
+ description = "The absolute path to the directory which hosts the public-inbox.";
+ };
+ options.address = mkOption {
+ type = with types; listOf str;
+ example = "example-discuss@example.org";
+ description = "The email addresses of the public-inbox.";
+ };
+ options.url = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ example = "https://example.org/lists/example-discuss";
+ description = "URL where this inbox can be accessed over HTTP.";
+ };
+ options.description = mkOption {
+ type = types.str;
+ example = "user/dev discussion of public-inbox itself";
+ description = "User-visible description for the repository.";
+ apply = pkgs.writeText "public-inbox-description-${name}";
+ };
+ options.newsgroup = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = "NNTP group name for the inbox.";
+ };
+ options.watch = mkOption {
+ type = with types; listOf str;
+ default = [];
+ description = "Paths for ${manref "public-inbox-watch" 1} to monitor for new mail.";
+ example = [ "maildir:/path/to/test.example.com.git" ];
+ };
+ options.watchheader = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ example = "List-Id:";
+ description = ''
+ If specified, ${manref "public-inbox-watch" 1} will only process
+ mail containing a matching header.
+ '';
+ };
+ options.coderepo = mkOption {
+ type = (types.listOf (types.enum (attrNames cfg.settings.coderepo))) // {
+ description = "list of coderepo names";
+ };
+ default = [];
+ description = "Nicknames of a 'coderepo' section associated with the inbox.";
+ };
+ }));
+ };
+ imap = {
+ enable = mkEnableOption "the public-inbox IMAP server";
+ } // publicInboxDaemonOptions "imap" 993;
+ http = {
+ enable = mkEnableOption "the public-inbox HTTP server";
+ mounts = mkOption {
+ type = with types; listOf str;
+ default = [ "/" ];
+ example = [ "/lists/archives" ];
+ description = ''
+ Root paths or URLs that public-inbox will be served on.
+ If domain parts are present, only requests to those
+ domains will be accepted.
+ '';
+ };
+ args = (publicInboxDaemonOptions "http" 80).args;
+ port = mkOption {
+ type = with types; nullOr (either str port);
+ default = 80;
+ example = "/run/public-inbox-httpd.sock";
+ description = ''
+ Listening port or systemd's ListenStream= entry
+ to be used as a reverse proxy, eg. in nginx:
+ locations."/inbox".proxyPass = "http://unix:''${config.services.public-inbox.http.port}:/inbox";
+ Set to null and use systemd.sockets.public-inbox-httpd.listenStreams
+ if you need a more advanced listening.
+ '';
+ };
+ };
+ mda = {
+ enable = mkEnableOption "the public-inbox Mail Delivery Agent";
+ args = mkOption {
+ type = with types; listOf str;
+ default = [];
+ description = "Command-line arguments to pass to ${manref "public-inbox-mda" 1}.";
+ };
+ };
+ postfix.enable = mkEnableOption "the integration into Postfix";
+ nntp = {
+ enable = mkEnableOption "the public-inbox NNTP server";
+ } // publicInboxDaemonOptions "nntp" 563;
+ spamAssassinRules = mkOption {
+ type = with types; nullOr path;
+ default = "${cfg.package.sa_config}/user/.spamassassin/user_prefs";
+ defaultText = literalExpression "\${cfg.package.sa_config}/user/.spamassassin/user_prefs";
+ description = "SpamAssassin configuration specific to public-inbox.";
+ };
+ settings = mkOption {
+ description = ''
+ Settings for the public-inbox config file.
+ '';
+ default = {};
+ type = types.submodule {
+ freeformType = gitIni.type;
+ options.publicinbox = mkOption {
+ default = {};
+ description = "public inboxes";
+ type = types.submodule {
+ freeformType = with types; /*inbox name*/attrsOf (/*inbox option name*/attrsOf /*inbox option value*/iniAtom);
+ options.css = mkOption {
+ type = with types; listOf str;
+ default = [];
+ description = "The local path name of a CSS file for the PSGI web interface.";
+ };
+ options.nntpserver = mkOption {
+ type = with types; listOf str;
+ default = [];
+ example = [ "nntp://news.public-inbox.org" "nntps://news.public-inbox.org" ];
+ description = "NNTP URLs to this public-inbox instance";
+ };
+ options.wwwlisting = mkOption {
+ type = with types; enum [ "all" "404" "match=domain" ];
+ default = "404";
+ description = ''
+ Controls which lists (if any) are listed for when the root
+ public-inbox URL is accessed over HTTP.
+ '';
+ };
+ };
+ };
+ options.publicinboxmda.spamcheck = mkOption {
+ type = with types; enum [ "spamc" "none" ];
+ default = "none";
+ description = ''
+ If set to spamc, ${manref "public-inbox-watch" 1} will filter spam
+ using SpamAssassin.
+ '';
+ };
+ options.publicinboxwatch.spamcheck = mkOption {
+ type = with types; enum [ "spamc" "none" ];
+ default = "none";
+ description = ''
+ If set to spamc, ${manref "public-inbox-watch" 1} will filter spam
+ using SpamAssassin.
+ '';
+ };
+ options.publicinboxwatch.watchspam = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ example = "maildir:/path/to/spam";
+ description = ''
+ If set, mail in this maildir will be trained as spam and
+ deleted from all watched inboxes
+ '';
+ };
+ options.coderepo = mkOption {
+ default = {};
+ description = "code repositories";
+ type = types.attrsOf (types.submodule {
+ freeformType = types.attrsOf iniAtom;
+ options.cgitUrl = mkOption {
+ type = types.str;
+ description = "URL of a cgit instance";
+ };
+ options.dir = mkOption {
+ type = types.str;
+ description = "Path to a git repository";
+ };
+ });
+ };
+ };
+ };
+ openFirewall = mkEnableOption "opening the firewall when using a port option";
+ };
+ config = mkIf cfg.enable {
+ assertions = [
+ { assertion = config.services.spamassassin.enable || !useSpamAssassin;
+ message = ''
+ public-inbox is configured to use SpamAssassin, but
+ services.spamassassin.enable is false. If you don't need
+ spam checking, set `services.public-inbox.settings.publicinboxmda.spamcheck' and
+ `services.public-inbox.settings.publicinboxwatch.spamcheck' to null.
+ '';
+ }
+ { assertion = cfg.path != [] || !useSpamAssassin;
+ message = ''
+ public-inbox is configured to use SpamAssassin, but there is
+ no spamc executable in services.public-inbox.path. If you
+ don't need spam checking, set
+ `services.public-inbox.settings.publicinboxmda.spamcheck' and
+ `services.public-inbox.settings.publicinboxwatch.spamcheck' to null.
+ '';
+ }
+ ];
+ services.public-inbox.settings =
+ filterAttrsRecursive (n: v: v != null) {
+ publicinbox = mapAttrs (n: filterAttrs (n: v: n != "description")) cfg.inboxes;
+ };
+ users = {
+ users.public-inbox = {
+ home = stateDir;
+ group = "public-inbox";
+ isSystemUser = true;
+ };
+ groups.public-inbox = {};
+ };
+ networking.firewall = mkIf cfg.openFirewall
+ { allowedTCPPorts = mkMerge
+ (map (proto: (mkIf (cfg.${proto}.enable && types.port.check cfg.${proto}.port) [ cfg.${proto}.port ]))
+ ["imap" "http" "nntp"]);
+ };
+ services.postfix = mkIf (cfg.postfix.enable && cfg.mda.enable) {
+ # Not sure limiting to 1 is necessary, but better safe than sorry.
+ config.public-inbox_destination_recipient_limit = "1";
+
+ # Register the addresses as existing
+ virtual =
+ concatStringsSep "\n" (mapAttrsToList (_: inbox:
+ concatMapStringsSep "\n" (address:
+ "${address} ${address}"
+ ) inbox.address
+ ) cfg.inboxes);
+
+ # Deliver the addresses with the public-inbox transport
+ transport =
+ concatStringsSep "\n" (mapAttrsToList (_: inbox:
+ concatMapStringsSep "\n" (address:
+ "${address} public-inbox:${address}"
+ ) inbox.address
+ ) cfg.inboxes);
+
+ # The public-inbox transport
+ masterConfig.public-inbox = {
+ type = "unix";
+ privileged = true; # Required for user=
+ command = "pipe";
+ args = [
+ "flags=X" # Report as a final delivery
+ "user=${with config.users; users."public-inbox".name + ":" + groups."public-inbox".name}"
+ # Specifying a nexthop when using the transport
+ # (eg. test public-inbox:test) allows to
+ # receive mails with an extension (eg. test+foo).
+ "argv=${pkgs.writeShellScript "public-inbox-transport" ''
+ export HOME="${stateDir}"
+ export ORIGINAL_RECIPIENT="''${2:-1}"
+ export PATH="${makeBinPath cfg.path}:$PATH"
+ exec ${cfg.package}/bin/public-inbox-mda ${escapeShellArgs cfg.mda.args}
+ ''} \${original_recipient} \${nexthop}"
+ ];
+ };
+ };
+ systemd.sockets = mkMerge (map (proto:
+ mkIf (cfg.${proto}.enable && cfg.${proto}.port != null)
+ { "public-inbox-${proto}d" = {
+ listenStreams = [ (toString cfg.${proto}.port) ];
+ wantedBy = [ "sockets.target" ];
+ };
+ }
+ ) [ "imap" "http" "nntp" ]);
+ systemd.services = mkMerge [
+ (mkIf cfg.imap.enable
+ { public-inbox-imapd = mkMerge [(serviceConfig "imapd") {
+ after = [ "public-inbox-init.service" "public-inbox-watch.service" ];
+ requires = [ "public-inbox-init.service" ];
+ serviceConfig = {
+ ExecStart = escapeShellArgs (
+ [ "${cfg.package}/bin/public-inbox-imapd" ] ++
+ cfg.imap.args ++
+ optionals (cfg.imap.cert != null) [ "--cert" cfg.imap.cert ] ++
+ optionals (cfg.imap.key != null) [ "--key" cfg.imap.key ]
+ );
+ };
+ }];
+ })
+ (mkIf cfg.http.enable
+ { public-inbox-httpd = mkMerge [(serviceConfig "httpd") {
+ after = [ "public-inbox-init.service" "public-inbox-watch.service" ];
+ requires = [ "public-inbox-init.service" ];
+ serviceConfig = {
+ ExecStart = escapeShellArgs (
+ [ "${cfg.package}/bin/public-inbox-httpd" ] ++
+ cfg.http.args ++
+ # See https://public-inbox.org/public-inbox.git/tree/examples/public-inbox.psgi
+ # for upstream's example.
+ [ (pkgs.writeText "public-inbox.psgi" ''
+ #!${cfg.package.fullperl} -w
+ use strict;
+ use warnings;
+ use Plack::Builder;
+ use PublicInbox::WWW;
+
+ my $www = PublicInbox::WWW->new;
+ $www->preload;
+
+ builder {
+ # If reached through a reverse proxy,
+ # make it transparent by resetting some HTTP headers
+ # used by public-inbox to generate URIs.
+ enable 'ReverseProxy';
+
+ # No need to send a response body if it's an HTTP HEAD requests.
+ enable 'Head';
+
+ # Route according to configured domains and root paths.
+ ${concatMapStrings (path: ''
+ mount q(${path}) => sub { $www->call(@_); };
+ '') cfg.http.mounts}
+ }
+ '') ]
+ );
+ };
+ }];
+ })
+ (mkIf cfg.nntp.enable
+ { public-inbox-nntpd = mkMerge [(serviceConfig "nntpd") {
+ after = [ "public-inbox-init.service" "public-inbox-watch.service" ];
+ requires = [ "public-inbox-init.service" ];
+ serviceConfig = {
+ ExecStart = escapeShellArgs (
+ [ "${cfg.package}/bin/public-inbox-nntpd" ] ++
+ cfg.nntp.args ++
+ optionals (cfg.nntp.cert != null) [ "--cert" cfg.nntp.cert ] ++
+ optionals (cfg.nntp.key != null) [ "--key" cfg.nntp.key ]
+ );
+ };
+ }];
+ })
+ (mkIf (any (inbox: inbox.watch != []) (attrValues cfg.inboxes)
+ || cfg.settings.publicinboxwatch.watchspam != null)
+ { public-inbox-watch = mkMerge [(serviceConfig "watch") {
+ inherit (cfg) path;
+ wants = [ "public-inbox-init.service" ];
+ requires = [ "public-inbox-init.service" ] ++
+ optional (cfg.settings.publicinboxwatch.spamcheck == "spamc") "spamassassin.service";
+ wantedBy = [ "multi-user.target" ];
+ serviceConfig = {
+ ExecStart = "${cfg.package}/bin/public-inbox-watch";
+ ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
+ };
+ }];
+ })
+ ({ public-inbox-init = let
+ PI_CONFIG = gitIni.generate "public-inbox.ini"
+ (filterAttrsRecursive (n: v: v != null) cfg.settings);
+ in mkMerge [(serviceConfig "init") {
+ wantedBy = [ "multi-user.target" ];
+ restartIfChanged = true;
+ restartTriggers = [ PI_CONFIG ];
+ script = ''
+ set -ux
+ install -D -p ${PI_CONFIG} ${stateDir}/.public-inbox/config
+ '' + optionalString useSpamAssassin ''
+ install -m 0700 -o spamd -d ${stateDir}/.spamassassin
+ ${optionalString (cfg.spamAssassinRules != null) ''
+ ln -sf ${cfg.spamAssassinRules} ${stateDir}/.spamassassin/user_prefs
+ ''}
+ '' + concatStrings (mapAttrsToList (name: inbox: ''
+ if [ ! -e ${stateDir}/inboxes/${escapeShellArg name} ]; then
+ # public-inbox-init creates an inbox and adds it to a config file.
+ # It tries to atomically write the config file by creating
+ # another file in the same directory, and renaming it.
+ # This has the sad consequence that we can't use
+ # /dev/null, or it would try to create a file in /dev.
+ conf_dir="$(mktemp -d)"
+
+ PI_CONFIG=$conf_dir/conf \
+ ${cfg.package}/bin/public-inbox-init -V2 \
+ ${escapeShellArgs ([ name "${stateDir}/inboxes/${name}" inbox.url ] ++ inbox.address)}
+
+ rm -rf $conf_dir
+ fi
+
+ ln -sf ${inbox.description} \
+ ${stateDir}/inboxes/${escapeShellArg name}/description
+
+ export GIT_DIR=${stateDir}/inboxes/${escapeShellArg name}/all.git
+ if test -d "$GIT_DIR"; then
+ # Config is inherited by each epoch repository,
+ # so just needs to be set for all.git.
+ ${pkgs.git}/bin/git config core.sharedRepository 0640
+ fi
+ '') cfg.inboxes
+ ) + ''
+ shopt -s nullglob
+ for inbox in ${stateDir}/inboxes/*/; do
+ # This should be idempotent, but only do it for new
+ # inboxes anyway because it's only needed once, and could
+ # be slow for large pre-existing inboxes.
+ ls -1 "$inbox" | grep -q '^xap' ||
+ ${cfg.package}/bin/public-inbox-index "$inbox"
+ done
+ '';
+ serviceConfig = {
+ Type = "oneshot";
+ RemainAfterExit = true;
+ StateDirectory = [
+ "public-inbox/.public-inbox"
+ "public-inbox/.public-inbox/emergency"
+ "public-inbox/inboxes"
+ ];
+ };
+ }];
+ })
+ ];
+ environment.systemPackages = with pkgs; [ cfg.package ];
+ };
+ meta.maintainers = with lib.maintainers; [ julm qyliss ];
+}
diff --git a/nixos/modules/services/x11/desktop-managers/default.nix b/nixos/modules/services/x11/desktop-managers/default.nix
index f48eac21bd8f..2c2f2cae4b74 100644
--- a/nixos/modules/services/x11/desktop-managers/default.nix
+++ b/nixos/modules/services/x11/desktop-managers/default.nix
@@ -72,7 +72,7 @@ in
apply = map (d: d // {
manage = "desktop";
start = d.start
- + optionalString (needBGCond d) ''
+ + optionalString (needBGCond d) ''\n\n
if [ -e $HOME/.background-image ]; then
${pkgs.feh}/bin/feh --bg-${cfg.wallpaper.mode} ${optionalString cfg.wallpaper.combineScreens "--no-xinerama"} $HOME/.background-image
fi
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 0c085b64efa9..c00f7829ac67 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -456,6 +456,7 @@ in
proxy = handleTest ./proxy.nix {};
prowlarr = handleTest ./prowlarr.nix {};
pt2-clone = handleTest ./pt2-clone.nix {};
+ public-inbox = handleTest ./public-inbox.nix {};
pulseaudio = discoverTests (import ./pulseaudio.nix);
qboot = handleTestOn ["x86_64-linux" "i686-linux"] ./qboot.nix {};
quorum = handleTest ./quorum.nix {};
diff --git a/nixos/tests/public-inbox.nix b/nixos/tests/public-inbox.nix
new file mode 100644
index 000000000000..7de40400fcbf
--- /dev/null
+++ b/nixos/tests/public-inbox.nix
@@ -0,0 +1,227 @@
+import ./make-test-python.nix ({ pkgs, lib, ... }:
+let
+ orga = "example";
+ domain = "${orga}.localdomain";
+
+ tls-cert = pkgs.runCommand "selfSignedCert" { buildInputs = [ pkgs.openssl ]; } ''
+ openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -nodes -days 36500 \
+ -subj '/CN=machine.${domain}'
+ install -D -t $out key.pem cert.pem
+ '';
+in
+{
+ name = "public-inbox";
+
+ meta.maintainers = with pkgs.lib.maintainers; [ julm ];
+
+ machine = { config, pkgs, nodes, ... }: let
+ inherit (config.services) gitolite public-inbox;
+ # Git repositories paths in Gitolite.
+ # Only their baseNameOf is used for configuring public-inbox.
+ repositories = [
+ "user/repo1"
+ "user/repo2"
+ ];
+ in
+ {
+ virtualisation.diskSize = 1 * 1024;
+ virtualisation.memorySize = 1 * 1024;
+ networking.domain = domain;
+
+ security.pki.certificateFiles = [ "${tls-cert}/cert.pem" ];
+ # If using security.acme:
+ #security.acme.certs."${domain}".postRun = ''
+ # systemctl try-restart public-inbox-nntpd public-inbox-imapd
+ #'';
+
+ services.public-inbox = {
+ enable = true;
+ postfix.enable = true;
+ openFirewall = true;
+ settings.publicinbox = {
+ css = [ "href=https://machine.${domain}/style/light.css" ];
+ nntpserver = [ "nntps://machine.${domain}" ];
+ wwwlisting = "match=domain";
+ };
+ mda = {
+ enable = true;
+ args = [ "--no-precheck" ]; # Allow Bcc:
+ };
+ http = {
+ enable = true;
+ port = "/run/public-inbox-http.sock";
+ #port = 8080;
+ args = ["-W0"];
+ mounts = [
+ "https://machine.${domain}/inbox"
+ ];
+ };
+ nntp = {
+ enable = true;
+ #port = 563;
+ args = ["-W0"];
+ cert = "${tls-cert}/cert.pem";
+ key = "${tls-cert}/key.pem";
+ };
+ imap = {
+ enable = true;
+ #port = 993;
+ args = ["-W0"];
+ cert = "${tls-cert}/cert.pem";
+ key = "${tls-cert}/key.pem";
+ };
+ inboxes = lib.recursiveUpdate (lib.genAttrs (map baseNameOf repositories) (repo: {
+ address = [
+ # Routed to the "public-inbox:" transport in services.postfix.transport
+ "${repo}@${domain}"
+ ];
+ description = ''
+ ${repo}@${domain} :
+ discussions about ${repo}.
+ '';
+ url = "https://machine.${domain}/inbox/${repo}";
+ newsgroup = "inbox.comp.${orga}.${repo}";
+ coderepo = [ repo ];
+ }))
+ {
+ repo2 = {
+ hide = [
+ "imap" # FIXME: doesn't work for IMAP as of public-inbox 1.6.1
+ "manifest"
+ "www"
+ ];
+ };
+ };
+ settings.coderepo = lib.listToAttrs (map (path: lib.nameValuePair (baseNameOf path) {
+ dir = "/var/lib/gitolite/repositories/${path}.git";
+ cgitUrl = "https://git.${domain}/${path}.git";
+ }) repositories);
+ };
+
+ # Use gitolite to store Git repositories listed in coderepo entries
+ services.gitolite = {
+ enable = true;
+ adminPubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJmoTOQnGqX+//us5oye8UuE+tQBx9QEM7PN13jrwgqY root@localhost";
+ };
+ systemd.services.public-inbox-httpd = {
+ serviceConfig.SupplementaryGroups = [ gitolite.group ];
+ };
+
+ # Use nginx as a reverse proxy for public-inbox-httpd
+ services.nginx = {
+ enable = true;
+ recommendedGzipSettings = true;
+ recommendedOptimisation = true;
+ recommendedTlsSettings = true;
+ recommendedProxySettings = true;
+ virtualHosts."machine.${domain}" = {
+ forceSSL = true;
+ sslCertificate = "${tls-cert}/cert.pem";
+ sslCertificateKey = "${tls-cert}/key.pem";
+ locations."/".return = "302 /inbox";
+ locations."= /inbox".return = "302 /inbox/";
+ locations."/inbox".proxyPass = "http://unix:${public-inbox.http.port}:/inbox";
+ # If using TCP instead of a Unix socket:
+ #locations."/inbox".proxyPass = "http://127.0.0.1:${toString public-inbox.http.port}/inbox";
+ # Referred to by settings.publicinbox.css
+ # See http://public-inbox.org/meta/_/text/color/
+ locations."= /style/light.css".alias = pkgs.writeText "light.css" ''
+ * { background:#fff; color:#000 }
+
+ a { color:#00f; text-decoration:none }
+ a:visited { color:#808 }
+
+ *.q { color:#008 }
+
+ *.add { color:#060 }
+ *.del {color:#900 }
+ *.head { color:#000 }
+ *.hunk { color:#960 }
+
+ .hl.num { color:#f30 } /* number */
+ .hl.esc { color:#f0f } /* escape character */
+ .hl.str { color:#f30 } /* string */
+ .hl.ppc { color:#c3c } /* preprocessor */
+ .hl.pps { color:#f30 } /* preprocessor string */
+ .hl.slc { color:#099 } /* single-line comment */
+ .hl.com { color:#099 } /* multi-line comment */
+ /* .hl.opt { color:#ccc } */ /* operator */
+ /* .hl.ipl { color:#ccc } */ /* interpolation */
+
+ /* keyword groups kw[a-z] */
+ .hl.kwa { color:#f90 }
+ .hl.kwb { color:#060 }
+ .hl.kwc { color:#f90 }
+ /* .hl.kwd { color:#ccc } */
+ '';
+ };
+ };
+
+ services.postfix = {
+ enable = true;
+ setSendmail = true;
+ #sslCert = "${tls-cert}/cert.pem";
+ #sslKey = "${tls-cert}/key.pem";
+ recipientDelimiter = "+";
+ };
+
+ environment.systemPackages = [
+ pkgs.mailutils
+ pkgs.openssl
+ ];
+
+ };
+
+ testScript = ''
+ start_all()
+ machine.wait_for_unit("multi-user.target")
+ machine.wait_for_unit("public-inbox-init.service")
+
+ # Very basic check that Gitolite can work;
+ # Gitolite is not needed for the rest of this testScript
+ machine.wait_for_unit("gitolite-init.service")
+
+ # List inboxes through public-inbox-httpd
+ machine.wait_for_unit("nginx.service")
+ machine.succeed("curl -L https://machine.${domain} | grep repo1@${domain}")
+ # The repo2 inbox is hidden
+ machine.fail("curl -L https://machine.${domain} | grep repo2@${domain}")
+ machine.wait_for_unit("public-inbox-httpd.service")
+
+ # Send a mail and read it through public-inbox-httpd
+ # Must work too when using a recipientDelimiter.
+ machine.wait_for_unit("postfix.service")
+ machine.succeed("mail -t <${pkgs.writeText "mail" ''
+ Subject: Testing mail
+ From: root@localhost
+ To: repo1+extension@${domain}
+ Message-ID:
+ Content-Type: text/plain; charset=utf-8
+ Content-Disposition: inline
+
+ This is a testing mail.
+ ''}")
+ machine.sleep(5)
+ machine.succeed("curl -L 'https://machine.${domain}/inbox/repo1/repo1@root-1/T/#u' | grep 'This is a testing mail.'")
+
+ # Read a mail through public-inbox-imapd
+ machine.wait_for_open_port(993)
+ machine.wait_for_unit("public-inbox-imapd.service")
+ machine.succeed("openssl s_client -ign_eof -crlf -connect machine.${domain}:993 <${pkgs.writeText "imap-commands" ''
+ tag login anonymous@${domain} anonymous
+ tag SELECT INBOX.comp.${orga}.repo1.0
+ tag FETCH 1 (BODY[HEADER])
+ tag LOGOUT
+ ''} | grep '^Message-ID: '")
+
+ # TODO: Read a mail through public-inbox-nntpd
+ #machine.wait_for_open_port(563)
+ #machine.wait_for_unit("public-inbox-nntpd.service")
+
+ # Delete a mail.
+ # Note that the use of an extension not listed in the addresses
+ # require to use --all
+ machine.succeed("curl -L https://machine.example.localdomain/inbox/repo1/repo1@root-1/raw | sudo -u public-inbox public-inbox-learn rm --all")
+ machine.fail("curl -L https://machine.example.localdomain/inbox/repo1/repo1@root-1/T/#u | grep 'This is a testing mail.'")
+ '';
+})
diff --git a/pkgs/applications/audio/amberol/default.nix b/pkgs/applications/audio/amberol/default.nix
index e337af93ec1e..c0b90592cd24 100644
--- a/pkgs/applications/audio/amberol/default.nix
+++ b/pkgs/applications/audio/amberol/default.nix
@@ -19,20 +19,20 @@
stdenv.mkDerivation rec {
pname = "amberol";
- version = "0.6.0";
+ version = "0.6.1";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = pname;
rev = version;
- hash = "sha256-7cwoP2Dvlrq44orckhCjFGrSVDuG8WdW8wbpAjD5zhI=";
+ hash = "sha256-mbRBLhnALPFoHwvx05o0lH5Ld4BN+hPY2OyajgTFsek=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
- hash = "sha256-CGPDaVS8F7H/tH0lRjFloWmZmW8NHheyZRCCqEavWeo=";
+ hash = "sha256-/5AHwbolEWsj3ChLFJxQaccfookEGvSSkehw0THYnSE=";
};
postPatch = ''
diff --git a/pkgs/applications/editors/jupyter-kernels/clojupyter/default.nix b/pkgs/applications/editors/jupyter-kernels/clojupyter/default.nix
index c71b14f17422..ffecd65d50f9 100644
--- a/pkgs/applications/editors/jupyter-kernels/clojupyter/default.nix
+++ b/pkgs/applications/editors/jupyter-kernels/clojupyter/default.nix
@@ -20,7 +20,7 @@ let
'';
pname = "clojupyter";
- version = "0.3.2";
+ version = "0.3.3";
meta = with lib; {
description = "A Jupyter kernel for Clojure";
@@ -36,8 +36,8 @@ let
src = fetchFromGitHub {
owner = "clojupyter";
repo = "clojupyter";
- rev = "0.3.2";
- sha256 = "1wphc7h74qlm9bcv5f95qhq1rq9gmcm5hvjblb01vffx996vr6jz";
+ rev = version;
+ sha256 = "sha256-BCzcPnLSonm+ELFU4JIIzLPlVnP0VzlrRSGxOd/LFow=";
};
buildInputs = [ imagemagick ];
diff --git a/pkgs/applications/editors/jupyter-kernels/clojupyter/deps.edn b/pkgs/applications/editors/jupyter-kernels/clojupyter/deps.edn
index 86f489c7300e..be5a54fb06c1 100644
--- a/pkgs/applications/editors/jupyter-kernels/clojupyter/deps.edn
+++ b/pkgs/applications/editors/jupyter-kernels/clojupyter/deps.edn
@@ -1 +1 @@
-{:deps {clojupyter/clojupyter {:mvn/version "0.3.2"}}}
+{:deps {clojupyter/clojupyter {:mvn/version "0.3.3"}}}
diff --git a/pkgs/applications/editors/jupyter-kernels/clojupyter/deps.nix b/pkgs/applications/editors/jupyter-kernels/clojupyter/deps.nix
index 729db05b6cc7..2be3bf7a33e3 100644
--- a/pkgs/applications/editors/jupyter-kernels/clojupyter/deps.nix
+++ b/pkgs/applications/editors/jupyter-kernels/clojupyter/deps.nix
@@ -31,8 +31,8 @@
inherit repos;
artifactId = "data.json";
groupId = "org.clojure";
- sha512 = "ce526bef01bedd31b772954d921a61832ae60af06121f29080853f7932326438b33d183240a9cffbe57e00dc3744700220753948da26b8973ee21c30e84227a6";
- version = "0.2.6";
+ sha512 = "b767973db8b5b36aeb5c55f082e020a5c3f657bee1eede018e68ccaa2c535005759bc8a162fce7bb63eee1c14c6f29ec1c6080978a08817189864cbd40f154fa";
+ version = "2.3.1";
};
}
@@ -64,8 +64,8 @@
inherit repos;
artifactId = "clojupyter";
groupId = "clojupyter";
- sha512 = "3ff95101e9031f0678c1ebd67b0f0d1b50495aa81a69c8f08deb9c2931818bbdd6bcd6f1ef25c407c6714a975c1ef853b4287725641a3fed7b93e1c27ba78709";
- version = "0.3.2";
+ sha512 = "d030ae69cdadecbcec9a052e4ad91ba4f47cdc4bb3fb780317f337af62d8c34d12ef05d132d6c9a4ce790008c979919c22162432c1b9bcf4e0a470020d585dbe";
+ version = "0.3.3";
};
}
@@ -86,8 +86,8 @@
inherit repos;
artifactId = "tools.analyzer";
groupId = "org.clojure";
- sha512 = "9cce94540a6fd0ae0bad915efe9a30c8fb282fbd1e225c4a5a583273e84789b3b5fc605b06f11e19d7dcc212d08bc6138477accfcde5d48839bec97daa874ce6";
- version = "0.6.9";
+ sha512 = "e02d7baec926e0e0a7d9c71f09fee627fbde59ae7f3cbd4abcdf0533c8a87fba8c7cf4503df34bf33777063f4b6353a022552fd003fdbea9fad5752d53609bb8";
+ version = "1.0.0";
};
}
@@ -196,8 +196,8 @@
inherit repos;
artifactId = "encore";
groupId = "com.taoensso";
- sha512 = "c4928c76378415ac504071ae4812e82efdce3b432c961b0bb9d906a468bb9c51a778f0109ac86641419b1a852ef13ca3d5c54ddde457e5aaec36a2f54f9caf8f";
- version = "2.91.0";
+ sha512 = "bb9510a88bca86f9cfc4a2e5c8a85782bc71d961a0a639735edafb61df130422488ee40d1db4cb6ad961e40acdb07259052937391c32f1e54c71f09dd63d33e5";
+ version = "3.12.1";
};
}
@@ -229,8 +229,8 @@
inherit repos;
artifactId = "tools.analyzer.jvm";
groupId = "org.clojure";
- sha512 = "ec1cb7638e38dfdca49c88e0b71ecf9c6ea858dccd46a2044bb37d01912ab4709b838cd2f0d1c2f201927ba4eea8f68d4d82e9fdd6da2f9943f7239bf86549f2";
- version = "0.7.2";
+ sha512 = "ce9c7b51fa61c12c539f3c5c1c7fa1caf123497553d4e566c13895312faad2d2657fe6e54fe88110a6c87accb10c4c3b6ccfa87a035a7321da6c859da1d192d0";
+ version = "1.1.0";
};
}
@@ -273,8 +273,8 @@
inherit repos;
artifactId = "jackson-dataformat-cbor";
groupId = "com.fasterxml.jackson.dataformat";
- sha512 = "dd49d4a154b8284620704a364ec54fb94638d68424b4f3eaa1d61cccc70959d399e539162f6ac8dcdd6efb0d3817a2edd2bba12fd2630cabd4722cd2ce9b782a";
- version = "2.9.6";
+ sha512 = "575a00fec1760571403aaadbe0aa6c74f8bb01f40feae00741df6604e7c2bf199ac739a789bbd5d83af75ec6d9fcc55f5a1515b05aef33e0d3cc3046acad9e89";
+ version = "2.10.2";
};
}
@@ -339,8 +339,8 @@
inherit repos;
artifactId = "pretty";
groupId = "io.aviso";
- sha512 = "2c4df86bb572cf028992a1a321178df65d0e681cbbc699db3a149fd0bcf8ad803643bf4e621a9b7793067f128934819371796468288cf5822924b2218711ccac";
- version = "0.1.33";
+ sha512 = "512454e5296c54e2d2f3ddb3122e99edae3286b7e7f9a63dd453c96225b6aa5d0fb0972d58d7dac434b297f47a1f27d1b2021c126064af020f0c3040097226d6";
+ version = "0.1.37";
};
}
@@ -427,8 +427,8 @@
inherit repos;
artifactId = "jackson-core";
groupId = "com.fasterxml.jackson.core";
- sha512 = "a1b9b68b67d442a47e36b46b37b6b0ad7a10c547a1cf7adb4705baec77356e1080049d310b3b530f66bbd3c0ed05cfe43c041d6ef4ffbbc6731149624df4e699";
- version = "2.9.6";
+ sha512 = "5055943790cea2c3abbacbe91e63634e6d2e977cd59b08ce102c0ee7d859995eb5d150d530da3848235b2b1b751a8df55cff2c33d43da695659248187ddf1bff";
+ version = "2.10.2";
};
}
@@ -443,6 +443,17 @@
};
}
+ {
+ name = "org.ow2.asm/asm";
+ path = pkgs.fetchMavenArtifact {
+ inherit repos;
+ artifactId = "asm";
+ groupId = "org.ow2.asm";
+ sha512 = "40614e658138f2eb95bc26999545f996794c622c4d68efb9e10093743504c4b58bf22590767bc6bd93b77cdfb202c507144ba867bbc8b54d74fe7621cbc55e3a";
+ version = "5.2";
+ };
+ }
+
{
name = "org.slf4j/jul-to-slf4j";
path = pkgs.fetchMavenArtifact {
@@ -537,8 +548,8 @@
inherit repos;
artifactId = "truss";
groupId = "com.taoensso";
- sha512 = "601bdac92eb0432de228717d3feb7f8a24f484eaf8b93a98c95ee42a0d57bd3dd7d2929c21dadb3a9b43d5e449821d30bbcf4e5ae198dcb8c62ec9597ff57524";
- version = "1.5.0";
+ sha512 = "79a515306228e8e8f1c1cf5bb65ac8c979954f3a6e8461c059a7b9402967163a1eb7a70de3ad41e8195d9dbfac2d17af8cc03e09bf72f8e9f6704b842656c0b9";
+ version = "1.6.0";
};
}
@@ -559,8 +570,8 @@
inherit repos;
artifactId = "hiccup";
groupId = "hiccup";
- sha512 = "034f15be46c35029f41869c912f82cb2929fbbb0524ea64bd98dcdb9cf09875b28c75e926fa5fff53942b0f9e543e85a73a2d03c3f2112eecae30fcef8b148f4";
- version = "1.0.5";
+ sha512 = "419dd67281135feb31f74528907b785679066e22cf397f14a6d9439cb9c463d0db66436c214b2b1b5944be6b9d28e3fc7d9e4042de52f9633bf0825548c0f524";
+ version = "2.0.0-alpha2";
};
}
@@ -658,8 +669,8 @@
inherit repos;
artifactId = "timbre";
groupId = "com.taoensso";
- sha512 = "cbb47d1ba312ca5f8ffdb2953401e0b37b308529c49622d4eb57e1d128ae56768051a2e01264c3a3fe8ef1c8a8785fcc29bc9336ccc70e629f2ab432280e6d7f";
- version = "4.10.0";
+ sha512 = "2570f1d59d98034d8425598ab676f4c1e17f9da9926def2e142296377ddccf0fe3a894ba023114d614ca728c77c11d50927a709bfa896e9c5cce0854be31e32d";
+ version = "5.1.2";
};
}
@@ -713,8 +724,8 @@
inherit repos;
artifactId = "cider-nrepl";
groupId = "cider";
- sha512 = "2c665aeb6c31eb2d11f257966f19e6127d602546a8fea2ab19eed3352469f93bd870c210250cc3f8b89d68d61f6076a614b87d1792a1ab3a3fd8f3b974842f75";
- version = "0.21.1";
+ sha512 = "e201944e32ce9b8fa328327c84f31d11cf5507a97b4fd3189a0304f4ebfd3bd557a1886335f295831941ac30d2b2394ad79a2897cb9bce506c0cbd8e04bbc40f";
+ version = "0.26.0";
};
}
@@ -757,8 +768,8 @@
inherit repos;
artifactId = "cheshire";
groupId = "cheshire";
- sha512 = "46d638d3e261e2debcaae9bdf912abaad4e77218ee0ba25ad0ff71dc040f579e630e593d55cd84dc9815bf84df33650295243cbeb8ff868976854544dd77de2c";
- version = "5.8.1";
+ sha512 = "5b2a339f8d90951a80105729a080b841e0de671f576bfa164a78bccc08691d548cff6a7124224444f7b3a267c9aca69c18e347657f1d66e407167c9b5b8b52cb";
+ version = "5.10.0";
};
}
@@ -768,8 +779,8 @@
inherit repos;
artifactId = "tigris";
groupId = "tigris";
- sha512 = "5393fe3f656521a6760d289d9549ffb9e9c1a8a72b69878205d53763802afa8778f1cb8bed6899e0b9721de231a79b8b1254cc601c84f5374467f1cc4780a987";
- version = "0.1.1";
+ sha512 = "fdff4ef5e7175a973aaef98de4f37dee8e125fc711c495382e280aaf3e11341fe8925d52567ca60f3f1795511ade11bc23461c88959632dfae3cf50374d02bf6";
+ version = "0.1.2";
};
}
@@ -790,8 +801,8 @@
inherit repos;
artifactId = "tools.reader";
groupId = "org.clojure";
- sha512 = "3d6d184a30cead093a158a69feaff8685a24a8089b0245f2b262d26ff46c7fd0be6940bdaccb0b5b06f87cba7ac59e677f74afff1cfbd67dc2b32e2a1ff19541";
- version = "1.2.2";
+ sha512 = "03677c7eb85d294f878f13066bbd841e788ec1267285690e65c2eb342b02aecd028679509b7f1d192cf5631b0839a92abfe36e93237bf5e2544c14e6cebe7452";
+ version = "1.3.3";
};
}
@@ -834,8 +845,8 @@
inherit repos;
artifactId = "nrepl";
groupId = "nrepl";
- sha512 = "f9ffc647820e772428781cb4ccd4f84a7d903afffe64418af55c95bd7bc21e1722591ac425d1be366d8f4f4596debf0c1b006957848473d3c515f4187cd5cb86";
- version = "0.6.0";
+ sha512 = "663906ff1c8768c4a73fa9f32619da4c244cc86c93d86e8439eb8de81c79486be5a04140c1df6199ba475b3a3e7fd36304faef8b330672dd644945820cc6eb67";
+ version = "0.8.3";
};
}
@@ -955,8 +966,8 @@
inherit repos;
artifactId = "core.memoize";
groupId = "org.clojure";
- sha512 = "e1c5104ac20a22e670ccb80c085ce225c168802829668e91c316cbea4f8982431a9e2ac7bfa5e8477ef515088e9443763f44496633c8ee1e416f7eb8ddfefb88";
- version = "0.5.9";
+ sha512 = "37308fcbbe64d0a2802917ef5a589075f81086d63e08c71a9a1b648b73dd362e5bdc8f756084fde1f4b1964ba82a6dc06b2119460281b7949a271d82e6a47a7e";
+ version = "1.0.236";
};
}
@@ -999,8 +1010,8 @@
inherit repos;
artifactId = "data.priority-map";
groupId = "org.clojure";
- sha512 = "450e18bddb3962aee3a110398dc3e9c25280202eb15df2f25de6c26e99982e8de5cf535fe609948d190e312a00fad3ffc0b3a78b514ef66369577a4185df0a77";
- version = "0.0.7";
+ sha512 = "fb2d703468fb6d5f28c38f25e8e7acdaf02d2fa1ac23c14a9ff065873e88c9b74e155e73e5069436d674d7ef8547f01bc9777b7ae3b9dcde67cbd327d4a20c06";
+ version = "1.0.0";
};
}
@@ -1032,8 +1043,8 @@
inherit repos;
artifactId = "core.cache";
groupId = "org.clojure";
- sha512 = "464c8503229dfcb5aa3c09cd74fa273ae82aff7a8f8daadb5c59a4224c7d675da4552ee9cb28d44627d5413c6f580e64df4dbfdde20d237599a46bb8f9a4bf6e";
- version = "0.6.5";
+ sha512 = "6e4e126f23b20120c50a4dbefbe1b3b9bd98f0a7b8fa83affa267ff7f0de09542d2727243859a1ea346bda5b782d4ae0110f6c2b169c298261707a1fdadaedb0";
+ version = "1.0.207";
};
}
@@ -1048,25 +1059,14 @@
};
}
- {
- name = "org.ow2.asm/asm-all";
- path = pkgs.fetchMavenArtifact {
- inherit repos;
- artifactId = "asm-all";
- groupId = "org.ow2.asm";
- sha512 = "462f31f8889c5ff07f1ce7bb1d5e9e73b7ec3c31741dc2b3da8d0b1a50df171e8e72289ff13d725e80ecbd9efa7e873b09870f5e8efb547f51f680d2339f290d";
- version = "4.2";
- };
- }
-
{
name = "org.clojure/core.async";
path = pkgs.fetchMavenArtifact {
inherit repos;
artifactId = "core.async";
groupId = "org.clojure";
- sha512 = "f80d61b51b5278c6c8b2b81ed45fa24ebaa42ade10e495fe34c5e1d827713eab33701a86dcc226a76e334365b0bd69d0c9da1e8b337f8752cd490145d3fc98b8";
- version = "0.4.500";
+ sha512 = "7c8640769a68256f5cf131ed2436713c3c63bba2c4167f3593a1671ef65931d67b9b43eccfa6e5a20467ca7c6f5efd9cbf58d6c14e035757714f71220a754d0b";
+ version = "1.3.618";
};
}
@@ -1076,8 +1076,8 @@
inherit repos;
artifactId = "jackson-dataformat-smile";
groupId = "com.fasterxml.jackson.dataformat";
- sha512 = "bc0b293687b9aa6641a6983d4c09d901294010fd0710c8163b0b283f06d044cfd2d7cebdb2590b170fefdde4751406b704955f59312af27d0e1f12f0d6c81ed8";
- version = "2.9.6";
+ sha512 = "8998346f7039df868f3387d219efa0c04fc022a948d098296f3d7ac3f7a9a82bde6ec4a8f83b11994ad50318b5aca37781faacb1f20a65ba2ecc6d6d6eb9468e";
+ version = "2.10.2";
};
}
diff --git a/pkgs/applications/graphics/image_optim/default.nix b/pkgs/applications/graphics/image_optim/default.nix
index 690b7f4e83e0..fd7ff0216242 100644
--- a/pkgs/applications/graphics/image_optim/default.nix
+++ b/pkgs/applications/graphics/image_optim/default.nix
@@ -39,7 +39,7 @@ bundlerApp {
postBuild = ''
wrapProgram $out/bin/image_optim \
- --prefix PATH : ${makeBinPath optionalDepsPath}
+ --prefix PATH : ${lib.escapeShellArg (makeBinPath optionalDepsPath)}
'';
passthru.updateScript = bundlerUpdateScript "image_optim";
diff --git a/pkgs/applications/graphics/megapixels/default.nix b/pkgs/applications/graphics/megapixels/default.nix
index 64782cc7fcce..9ce07df34370 100644
--- a/pkgs/applications/graphics/megapixels/default.nix
+++ b/pkgs/applications/graphics/megapixels/default.nix
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
preFixup = optionalString (tiffSupport || jpgSupport) ''
gappsWrapperArgs+=(
- --prefix PATH : ${runtimePath}
+ --prefix PATH : ${lib.escapeShellArg runtimePath}
)
'';
diff --git a/pkgs/applications/kde/elisa.nix b/pkgs/applications/kde/elisa.nix
index cdcca2cc9bb2..63639800d5f6 100644
--- a/pkgs/applications/kde/elisa.nix
+++ b/pkgs/applications/kde/elisa.nix
@@ -21,6 +21,8 @@
mkDerivation rec {
pname = "elisa";
+ outputs = [ "out" "dev" ];
+
buildInputs = [ libvlc ];
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
diff --git a/pkgs/applications/misc/ssocr/default.nix b/pkgs/applications/misc/ssocr/default.nix
index 42bd58cd7831..4496f2a59532 100644
--- a/pkgs/applications/misc/ssocr/default.nix
+++ b/pkgs/applications/misc/ssocr/default.nix
@@ -1,17 +1,18 @@
-{ lib, stdenv, fetchFromGitHub, imlib2, libX11 }:
+{ lib, stdenv, fetchFromGitHub, imlib2, libX11, pkg-config }:
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "ssocr";
- version = "unstable-2018-08-11";
+ version = "2.22.1";
src = fetchFromGitHub {
owner = "auerswal";
repo = "ssocr";
- rev = "5e47e26b125a1a13bc79de93a5e87dd0b51354ca";
- sha256 = "0yzprwflky9a7zxa3zic7gvdwqg0zy49zvrqkdxng2k1ng78k3s7";
+ rev = "v${version}";
+ sha256 = "sha256-j1l1o1wtVQo+G9HfXZ1sJQ8amsUQhuYxFguWFQoRe/s=";
};
- nativeBuildInputs = [ imlib2 libX11 ];
+ nativeBuildInputs = [ pkg-config ];
+ buildInputs = [ imlib2 libX11 ];
installFlags = [ "PREFIX=$(out)" ];
diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix
index 438301583262..6d93629e7188 100644
--- a/pkgs/applications/networking/browsers/firefox/wrapper.nix
+++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix
@@ -219,6 +219,8 @@ let
ln -sfT "$target" "$out/$l"
done
+ cd "$out"
+
# create the wrapper
executablePrefix="$out/bin"
diff --git a/pkgs/applications/networking/cluster/nomad/1.2.nix b/pkgs/applications/networking/cluster/nomad/1.2.nix
index 81a31de7e506..a45d5b2e98d9 100644
--- a/pkgs/applications/networking/cluster/nomad/1.2.nix
+++ b/pkgs/applications/networking/cluster/nomad/1.2.nix
@@ -6,7 +6,7 @@
callPackage ./generic.nix {
inherit buildGoModule nvidia_x11 nvidiaGpuSupport;
- version = "1.2.6";
- sha256 = "1ik8v1jznky9y4m85bzxgyba256zqmm5fs6d5xsvp5rzcylcdwgd";
- vendorSha256 = "1mbvpssf7haaxzx6ka9qzixm49jck8i89w8ymkaddgmxhlbxjv05";
+ version = "1.2.7";
+ sha256 = "13whyjl0shr00mn46f361ybz90zwkiyab9ygcs0hrs75lgvkmfm9";
+ vendorSha256 = "177gv0h8bhxd5j78sf4is86zzq8xl9schg1hbyh0hmwg4whhqm8a";
}
diff --git a/pkgs/applications/networking/cluster/nomad/1.3.nix b/pkgs/applications/networking/cluster/nomad/1.3.nix
new file mode 100644
index 000000000000..932bbc7270f6
--- /dev/null
+++ b/pkgs/applications/networking/cluster/nomad/1.3.nix
@@ -0,0 +1,12 @@
+{ callPackage
+, buildGoModule
+, nvidia_x11
+, nvidiaGpuSupport
+}:
+
+callPackage ./generic.nix {
+ inherit buildGoModule nvidia_x11 nvidiaGpuSupport;
+ version = "1.3.0";
+ sha256 = "098sg7jl257r6zfi2fsp9dwm0rrzi8m2k85bb097q14n3p4s3pna";
+ vendorSha256 = "037bdgnyv8gkm2hz7h727ss46adnkywg28j6i1canmdacpi3qv5c";
+}
diff --git a/pkgs/applications/networking/instant-messengers/chatty/default.nix b/pkgs/applications/networking/instant-messengers/chatty/default.nix
index 2b8edf319cf3..35266eff9009 100644
--- a/pkgs/applications/networking/instant-messengers/chatty/default.nix
+++ b/pkgs/applications/networking/instant-messengers/chatty/default.nix
@@ -75,7 +75,7 @@ stdenv.mkDerivation rec {
preFixup = ''
gappsWrapperArgs+=(
- --prefix PURPLE_PLUGIN_PATH : ${pidgin.makePluginPath plugins}
+ --prefix PURPLE_PLUGIN_PATH : ${lib.escapeShellArg (pidgin.makePluginPath plugins)}
${lib.concatMapStringsSep " " (p: p.wrapArgs or "") plugins}
)
'';
diff --git a/pkgs/applications/networking/nextcloud-client/default.nix b/pkgs/applications/networking/nextcloud-client/default.nix
index 32dadb8e5f92..52e2e083ca17 100644
--- a/pkgs/applications/networking/nextcloud-client/default.nix
+++ b/pkgs/applications/networking/nextcloud-client/default.nix
@@ -1,6 +1,7 @@
{ lib
, mkDerivation
, fetchFromGitHub
+, fetchpatch
, cmake
, extra-cmake-modules
, inotify-tools
@@ -41,6 +42,11 @@ mkDerivation rec {
# Explicitly move dbus configuration files to the store path rather than `/etc/dbus-1/services`.
./0001-Explicitly-copy-dbus-files-into-the-store-dir.patch
./0001-When-creating-the-autostart-entry-do-not-use-an-abso.patch
+ # don't write cacheDir into home directory
+ (fetchpatch {
+ url = "https://github.com/nextcloud/desktop/commit/3a8aa8a2a88bc9b68098b7866e2a07aa23d3a33c.patch";
+ sha256 = "sha256-OviPANvXap3mg4haxRir/CK1aq8maWZDM/IVsN+OHgk=";
+ })
];
postPatch = ''
diff --git a/pkgs/applications/networking/p2p/tremc/default.nix b/pkgs/applications/networking/p2p/tremc/default.nix
index ea6b92c08e7e..6ff10989b1d3 100644
--- a/pkgs/applications/networking/p2p/tremc/default.nix
+++ b/pkgs/applications/networking/p2p/tremc/default.nix
@@ -44,7 +44,7 @@ python3Packages.buildPythonApplication rec {
dontBuild = true;
doCheck = false;
- makeWrapperArgs = ["--prefix PATH : ${wrapperPath}"];
+ makeWrapperArgs = ["--prefix PATH : ${lib.escapeShellArg wrapperPath}"];
installPhase = ''
make DESTDIR=$out install
diff --git a/pkgs/applications/office/jameica/default.nix b/pkgs/applications/office/jameica/default.nix
index 6e7f0f3d517b..1e34b7918da1 100644
--- a/pkgs/applications/office/jameica/default.nix
+++ b/pkgs/applications/office/jameica/default.nix
@@ -58,7 +58,7 @@ stdenv.mkDerivation rec {
--add-flags "-cp $out/share/java/jameica.jar:$out/share/jameica-${version}/* ${
lib.optionalString stdenv.isDarwin ''-Xdock:name="Jameica" -XstartOnFirstThread''
} de.willuhn.jameica.Main" \
- --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath buildInputs} \
+ --prefix LD_LIBRARY_PATH : ${lib.escapeShellArg (lib.makeLibraryPath buildInputs)} \
--chdir "$out/share/java/"
'';
diff --git a/pkgs/applications/radio/soapysdr/default.nix b/pkgs/applications/radio/soapysdr/default.nix
index 4875a4818f8d..1e5052d4f9be 100644
--- a/pkgs/applications/radio/soapysdr/default.nix
+++ b/pkgs/applications/radio/soapysdr/default.nix
@@ -42,7 +42,7 @@ in stdenv.mkDerivation {
done
# Needed for at least the remote plugin server
for file in $out/bin/*; do
- wrapProgram "$file" --prefix SOAPY_SDR_PLUGIN_PATH : ${extraPackagesSearchPath}
+ wrapProgram "$file" --prefix SOAPY_SDR_PLUGIN_PATH : ${lib.escapeShellArg extraPackagesSearchPath}
done
'';
diff --git a/pkgs/applications/science/electronics/qucs-s/default.nix b/pkgs/applications/science/electronics/qucs-s/default.nix
index 6507198a790f..9c692865f6e3 100644
--- a/pkgs/applications/science/electronics/qucs-s/default.nix
+++ b/pkgs/applications/science/electronics/qucs-s/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
preConfigure = ''
# Make custom kernels avaible from qucs-s
- gappsWrapperArgs+=(--prefix PATH ":" ${lib.makeBinPath kernels})
+ gappsWrapperArgs+=(--prefix PATH ":" ${lib.escapeShellArg (lib.makeBinPath kernels)})
'';
QTDIR=qt4;
diff --git a/pkgs/applications/video/vdr/wrapper.nix b/pkgs/applications/video/vdr/wrapper.nix
index 04984212b249..431d2dae4f04 100644
--- a/pkgs/applications/video/vdr/wrapper.nix
+++ b/pkgs/applications/video/vdr/wrapper.nix
@@ -17,7 +17,7 @@ in symlinkJoin {
postBuild = ''
wrapProgram $out/bin/vdr \
--add-flags "-L $out/lib/vdr --localedir=$out/share/locale" \
- --prefix XINE_PLUGIN_PATH ":" ${makeXinePluginPath requiredXinePlugins}
+ --prefix XINE_PLUGIN_PATH ":" ${lib.escapeShellArg (makeXinePluginPath requiredXinePlugins)}
'';
meta = with vdr.meta; {
diff --git a/pkgs/applications/virtualization/podman/wrapper.nix b/pkgs/applications/virtualization/podman/wrapper.nix
index fa3a50bc5357..48a08f518445 100644
--- a/pkgs/applications/virtualization/podman/wrapper.nix
+++ b/pkgs/applications/virtualization/podman/wrapper.nix
@@ -76,5 +76,5 @@ in runCommand podman.name {
ln -s ${podman-unwrapped}/share $out/share
makeWrapper ${podman-unwrapped}/bin/podman $out/bin/podman \
--set CONTAINERS_HELPER_BINARY_DIR ${helpersBin}/bin \
- --prefix PATH : ${binPath}
+ --prefix PATH : ${lib.escapeShellArg binPath}
''
diff --git a/pkgs/applications/window-managers/i3/blocks-gaps.nix b/pkgs/applications/window-managers/i3/blocks-gaps.nix
index 4acc2fb669c6..deb0c99c313a 100644
--- a/pkgs/applications/window-managers/i3/blocks-gaps.nix
+++ b/pkgs/applications/window-managers/i3/blocks-gaps.nix
@@ -28,17 +28,21 @@ stdenv.mkDerivation rec {
buildInputs = optional (contains_any scripts perlscripts) perl;
nativeBuildInputs = [ makeWrapper ];
- postFixup = ''
+ postFixup = optionalString (elem "bandwidth" scripts) ''
wrapProgram $out/libexec/i3blocks/bandwidth \
- --prefix PATH : ${makeBinPath (optional (elem "bandwidth" scripts) iproute2)}
+ --prefix PATH : ${makeBinPath [ iproute2 ]}
+ '' + optionalString (elem "battery" scripts) ''
wrapProgram $out/libexec/i3blocks/battery \
- --prefix PATH : ${makeBinPath (optional (elem "battery" scripts) acpi)}
+ --prefix PATH : ${makeBinPath [ acpi ]}
+ '' + optionalString (elem "cpu_usage" scripts) ''
wrapProgram $out/libexec/i3blocks/cpu_usage \
- --prefix PATH : ${makeBinPath (optional (elem "cpu_usage" scripts) sysstat)}
+ --prefix PATH : ${makeBinPath [ sysstat ]}
+ '' + optionalString (elem "iface" scripts) ''
wrapProgram $out/libexec/i3blocks/iface \
- --prefix PATH : ${makeBinPath (optional (elem "iface" scripts) iproute2)}
+ --prefix PATH : ${makeBinPath [ iproute2 ]}
+ '' + optionalString (elem "volume" scripts) ''
wrapProgram $out/libexec/i3blocks/volume \
- --prefix PATH : ${makeBinPath (optional (elem "volume" scripts) alsa-utils)}
+ --prefix PATH : ${makeBinPath [ alsa-utils ]}
'';
meta = with lib; {
diff --git a/pkgs/build-support/rust/build-rust-package/default.nix b/pkgs/build-support/rust/build-rust-package/default.nix
index 2cfd8d172869..e4772592e46c 100644
--- a/pkgs/build-support/rust/build-rust-package/default.nix
+++ b/pkgs/build-support/rust/build-rust-package/default.nix
@@ -59,8 +59,8 @@ assert buildType == "release" || buildType == "debug";
let
cargoDeps =
- if cargoVendorDir == null
- then if cargoLock != null then importCargoLock cargoLock
+ if cargoVendorDir != null then null
+ else if cargoLock != null then importCargoLock cargoLock
else fetchCargoTarball ({
inherit src srcs sourceRoot unpackPhase cargoUpdateHook;
name = cargoDepsName;
@@ -69,8 +69,7 @@ let
hash = args.cargoHash;
} // lib.optionalAttrs (args ? cargoSha256) {
sha256 = args.cargoSha256;
- } // depsExtraArgs)
- else null;
+ } // depsExtraArgs);
# If we have a cargoSha256 fixed-output derivation, validate it at build time
# against the src fixed-output derivation to check consistency.
diff --git a/pkgs/development/compilers/fpc/default.nix b/pkgs/development/compilers/fpc/default.nix
index 4721cac27834..b2c09d806826 100644
--- a/pkgs/development/compilers/fpc/default.nix
+++ b/pkgs/development/compilers/fpc/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, gawk }:
+{ lib, stdenv, fetchurl, gawk, fetchpatch }:
let startFPC = import ./binary.nix { inherit stdenv fetchurl; }; in
@@ -17,7 +17,14 @@ stdenv.mkDerivation rec {
# Patch paths for linux systems. Other platforms will need their own patches.
patches = [
./mark-paths.patch # mark paths for later substitution in postPatch
- ];
+ ] ++ lib.optional stdenv.isAarch64 (fetchpatch {
+ # backport upstream patch for aarch64 glibc 2.34
+ url = "https://gitlab.com/freepascal.org/fpc/source/-/commit/a20a7e3497bccf3415bf47ccc55f133eb9d6d6a0.patch";
+ hash = "sha256-xKTBwuOxOwX9KCazQbBNLhMXCqkuJgIFvlXewHY63GM=";
+ stripLen = 1;
+ extraPrefix = "fpcsrc/";
+ });
+
postPatch = ''
# substitute the markers set by the mark-paths patch
substituteInPlace fpcsrc/compiler/systems/t_linux.pas --subst-var-by dynlinker-prefix "${glibc}"
diff --git a/pkgs/development/libraries/aravis/default.nix b/pkgs/development/libraries/aravis/default.nix
index 6f2d241070f7..f8496499ba8e 100644
--- a/pkgs/development/libraries/aravis/default.nix
+++ b/pkgs/development/libraries/aravis/default.nix
@@ -1,85 +1,76 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gtk-doc, intltool
-, audit, glib, libusb1, libxml2
-, wrapGAppsHook
-, gstreamer
-, gst-plugins-base
-, gst-plugins-good
-, gst-plugins-bad
-, libnotify
-, gnome
-, gtk3
-, enableUsb ? true
-, enablePacketSocket ? true
-, enableViewer ? true
+{ lib
+, stdenv
+, fetchFromGitHub
+, meson
+, ninja
+, pkg-config
+, gi-docgen
+, glib
+, libxml2
+, gobject-introspection
+
, enableGstPlugin ? true
-, enableCppTest ? false
+, enableViewer ? true
+, gst_all_1
+, gtk3
+, wrapGAppsHook
+
+, enableUsb ? true
+, libusb1
+
+, enablePacketSocket ? true
, enableFastHeartbeat ? false
-, enableAsan ? false
}:
-let
- gstreamerAtLeastVersion1 =
- lib.all
- (pkg: pkg != null && lib.versionAtLeast (lib.getVersion pkg) "1.0")
- [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ];
-in
- assert enableViewer -> enableGstPlugin;
- assert enableViewer -> gstreamerAtLeastVersion1;
+assert enableGstPlugin -> gst_all_1 != null;
+assert enableViewer -> enableGstPlugin;
+assert enableViewer -> gtk3 != null;
+assert enableViewer -> wrapGAppsHook != null;
- stdenv.mkDerivation rec {
+stdenv.mkDerivation rec {
+ pname = "aravis";
+ version = "0.8.21";
- pname = "aravis";
- version = "0.6.4";
+ src = fetchFromGitHub {
+ owner = "AravisProject";
+ repo = pname;
+ rev = version;
+ sha256 = "sha256-z4fuo8tVyHf2Bw73ZfAEpAYmzbr9UIzEWPC5f95wnD8=";
+ };
- src = fetchFromGitHub {
- owner = "AravisProject";
- repo = pname;
- rev= "ARAVIS_${builtins.replaceStrings ["."] ["_"] version}";
- sha256 = "18fnliks661kzc3g8v08hcaj18hjid8b180d6s9gwn0zgv4g374w";
- };
+ outputs = [ "bin" "dev" "out" "lib" ];
- outputs = [ "bin" "dev" "out" "lib" ];
+ nativeBuildInputs = [
+ meson
+ ninja
+ pkg-config
+ gi-docgen
+ ] ++ lib.optional enableViewer wrapGAppsHook;
- nativeBuildInputs = [
- autoreconfHook
- pkg-config
- intltool
- gtk-doc
- ] ++ lib.optional enableViewer wrapGAppsHook;
+ buildInputs =
+ [ glib libxml2 gobject-introspection ]
+ ++ lib.optional enableUsb libusb1
+ ++ lib.optionals (enableViewer || enableGstPlugin) (with gst_all_1; [ gstreamer gst-plugins-base (gst-plugins-good.override { gtkSupport = true; }) gst-plugins-bad ])
+ ++ lib.optionals (enableViewer) [ gtk3 ];
- buildInputs =
- [ glib libxml2 ]
- ++ lib.optional enableUsb libusb1
- ++ lib.optional enablePacketSocket audit
- ++ lib.optionals (enableViewer || enableGstPlugin) [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ]
- ++ lib.optionals (enableViewer) [ libnotify gtk3 gnome.adwaita-icon-theme ];
+ mesonFlags = [
+ ] ++ lib.optional enableFastHeartbeat "-Dfast-heartbeat=enabled"
+ ++ lib.optional (!enableGstPlugin) "-Dgst-plugin=disabled"
+ ++ lib.optional (!enableViewer) "-Dviewer=disabled"
+ ++ lib.optional (!enableUsb) "-Dviewer=disabled"
+ ++ lib.optional (!enablePacketSocket) "-Dpacket-socket=disabled";
- preAutoreconf = "./autogen.sh";
+ doCheck = true;
- configureFlags =
- lib.optional enableUsb "--enable-usb"
- ++ lib.optional enablePacketSocket "--enable-packet-socket"
- ++ lib.optional enableViewer "--enable-viewer"
- ++ lib.optional enableGstPlugin
- (if gstreamerAtLeastVersion1 then "--enable-gst-plugin" else "--enable-gst-0.10-plugin")
- ++ lib.optional enableCppTest "--enable-cpp-test"
- ++ lib.optional enableFastHeartbeat "--enable-fast-heartbeat"
- ++ lib.optional enableAsan "--enable-asan";
-
- postPatch = ''
- ln -s ${gtk-doc}/share/gtk-doc/data/gtk-doc.make .
- '';
-
- doCheck = true;
-
- meta = {
- description = "Library for video acquisition using GenICam cameras";
- longDescription = ''
- Implements the gigabit ethernet and USB3 protocols used by industrial cameras.
- '';
- homepage = "https://aravisproject.github.io/docs/aravis-0.5";
- license = lib.licenses.lgpl2;
- maintainers = [];
- platforms = lib.platforms.unix;
- };
- }
+ meta = {
+ description = "Library for video acquisition using GenICam cameras";
+ longDescription = ''
+ Implements the gigabit ethernet and USB3 protocols used by industrial cameras.
+ '';
+ # the documentation is the best working homepage that's not the Github repo
+ homepage = "https://aravisproject.github.io/docs/aravis-0.8";
+ license = lib.licenses.lgpl2;
+ maintainers = with lib.maintainers; [ tpw_rules ];
+ platforms = lib.platforms.unix;
+ };
+}
diff --git a/pkgs/development/libraries/fltk/common.nix b/pkgs/development/libraries/fltk/common.nix
index 54c8b4094f16..6d0f90956b25 100644
--- a/pkgs/development/libraries/fltk/common.nix
+++ b/pkgs/development/libraries/fltk/common.nix
@@ -37,7 +37,7 @@
, doxygen
, graphviz
-, withExamples ? true
+, withExamples ? (stdenv.buildPlatform == stdenv.hostPlatform)
, withShared ? true
}:
@@ -139,6 +139,7 @@ stdenv.mkDerivation rec {
# Examples & Tests
"-DFLTK_BUILD_EXAMPLES=${onOff withExamples}"
+ "-DFLTK_BUILD_TEST=${onOff withExamples}"
# Docs
"-DOPTION_BUILD_HTML_DOCUMENTATION=${onOff withDocs}"
diff --git a/pkgs/development/libraries/hunspell/wrapper.nix b/pkgs/development/libraries/hunspell/wrapper.nix
index 4ae177232751..d67fe2301039 100644
--- a/pkgs/development/libraries/hunspell/wrapper.nix
+++ b/pkgs/development/libraries/hunspell/wrapper.nix
@@ -7,7 +7,7 @@ stdenv.mkDerivation {
name = (appendToName "with-dicts" hunspell).name;
nativeBuildInputs = [ makeWrapper ];
buildCommand = ''
- makeWrapper ${hunspell.bin}/bin/hunspell $out/bin/hunspell --prefix DICPATH : ${searchPath}
+ makeWrapper ${hunspell.bin}/bin/hunspell $out/bin/hunspell --prefix DICPATH : ${lib.escapeShellArg searchPath}
'';
meta = removeAttrs hunspell.meta ["outputsToInstall"];
}
diff --git a/pkgs/development/libraries/nuspell/wrapper.nix b/pkgs/development/libraries/nuspell/wrapper.nix
index ab09931579c7..64108c33b7c1 100644
--- a/pkgs/development/libraries/nuspell/wrapper.nix
+++ b/pkgs/development/libraries/nuspell/wrapper.nix
@@ -7,7 +7,7 @@ stdenv.mkDerivation {
name = (appendToName "with-dicts" nuspell).name;
nativeBuildInputs = [ makeWrapper ];
buildCommand = ''
- makeWrapper ${nuspell}/bin/nuspell $out/bin/nuspell --prefix DICPATH : ${searchPath}
+ makeWrapper ${nuspell}/bin/nuspell $out/bin/nuspell --prefix DICPATH : ${lib.escapeShellArg searchPath}
'';
meta = removeAttrs nuspell.meta ["outputsToInstall"];
}
diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json
index 75748305604e..387721533593 100644
--- a/pkgs/development/node-packages/node-packages.json
+++ b/pkgs/development/node-packages/node-packages.json
@@ -194,7 +194,6 @@
, "live-server"
, "livedown"
, "lodash"
-, {"lumo-build-deps": "../interpreters/clojurescript/lumo" }
, "lua-fmt"
, "madoko"
, "manta"
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index 8f949d7d7813..a56ffb0eb169 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -103,13 +103,13 @@ let
sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==";
};
};
- "@angular-devkit/architect-0.1303.4" = {
+ "@angular-devkit/architect-0.1303.5" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1303.4";
+ version = "0.1303.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.4.tgz";
- sha512 = "d6YmIWdYvwk6WaknHRcJgiXeJvX9K5i8uPMAaL2P2/LU8n3moIQ59C7SP0uULcHuuiREEmFWOyyrWnGxZCI9bg==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.5.tgz";
+ sha512 = "ZF5Vul8UqwDSwYPxJ4YvdG7lmciJZ1nncyt9Dbk0swxw4MGdy0ZIf+91o318qUn/5JrttQ7ZCYoCZJCjYOSBtw==";
};
};
"@angular-devkit/core-13.3.2" = {
@@ -121,13 +121,13 @@ let
sha512 = "wav5plcnlxQAfZ+0EUt3dvVTJnJ1au2TlKVQ0jSQJdR1LA6N7QUI49N2Ua6ZnDMwruQaQkoynitMW2l1it3qYQ==";
};
};
- "@angular-devkit/core-13.3.4" = {
+ "@angular-devkit/core-13.3.5" = {
name = "_at_angular-devkit_slash_core";
packageName = "@angular-devkit/core";
- version = "13.3.4";
+ version = "13.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.4.tgz";
- sha512 = "gj6i8ksPaT2bvYwI7wKJxLX53pHfTmZc1RaNbAGfZB1/zFNnb3MPj8utTcJSk4qMsGXuDDhiB7hpTKBw8ROaGA==";
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.5.tgz";
+ sha512 = "w7vzK4VoYP9rLgxJ2SwEfrkpKybdD+QgQZlsDBzT0C6Ebp7b4gkNcNVFo8EiZvfDl6Yplw2IAP7g7fs3STn0hQ==";
};
};
"@angular-devkit/schematics-13.3.2" = {
@@ -139,13 +139,13 @@ let
sha512 = "XCLb23jmqHN0gJg9ZlICaFgfpfnCufIQp5SOsRKMKRkhjKycvDmKnfBTKDlkzb1IaUl6wQwP5k7Z69b9EX+CQw==";
};
};
- "@angular-devkit/schematics-13.3.4" = {
+ "@angular-devkit/schematics-13.3.5" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
- version = "13.3.4";
+ version = "13.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.4.tgz";
- sha512 = "gKNpMMoZJjLKdXxjuVembic4GWa4AYV7kU1ou3ZuZoDKtKcig9URISr1wjS+nrhKYz+miFy0zIqSGMMattDlDQ==";
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.5.tgz";
+ sha512 = "0N/kL/Vfx0yVAEwa3HYxNx9wYb+G9r1JrLjJQQzDp+z9LtcojNf7j3oey6NXrDUs1WjVZOa/AIdRl3/DuaoG5w==";
};
};
"@angular-devkit/schematics-cli-13.3.2" = {
@@ -319,13 +319,13 @@ let
sha512 = "vF+zxhPiLtkwxONs6YanSt1EpwpGilThpneExUN5K3tCymuxNnVq2yojTvnpRjv2QfsEIt/n7ozPIIzBLwGIDQ==";
};
};
- "@apollographql/apollo-tools-0.5.3" = {
+ "@apollographql/apollo-tools-0.5.4" = {
name = "_at_apollographql_slash_apollo-tools";
packageName = "@apollographql/apollo-tools";
- version = "0.5.3";
+ version = "0.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.5.3.tgz";
- sha512 = "VcsXHfTFoCodDAgJZxN04GdFK1kqOhZQnQY/9Fa147P+I8xfvOSz5d+lKAPB+hwSgBNyd7ncAKGIs4+utbL+yA==";
+ url = "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.5.4.tgz";
+ sha512 = "shM3q7rUbNyXVVRkQJQseXv6bnYM3BUma/eZhwXR4xsuM+bqWnJKvW7SAfRjP7LuSCocrexa5AXhjjawNHrIlw==";
};
};
"@apollographql/graphql-playground-html-1.6.27" = {
@@ -472,31 +472,31 @@ let
sha512 = "+D3xnPD5985iphgAqgUerBDs371a2WzzoEVi7eHJUMMsP/gEnSTdSH0HNxsqhYv6CW4EdKtvDAQdAwA1VtCf2A==";
};
};
- "@aws-sdk/client-s3-3.81.0" = {
+ "@aws-sdk/client-s3-3.88.0" = {
name = "_at_aws-sdk_slash_client-s3";
packageName = "@aws-sdk/client-s3";
- version = "3.81.0";
+ version = "3.88.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.81.0.tgz";
- sha512 = "TzdSQlnLniRh31ix5kLkbBNM2TZnm4Bf0NXkQqTRzBIj4ngDjiiKoQX+avl8EeZ2WehVYGLuAG8iWN0psxIICg==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.88.0.tgz";
+ sha512 = "OZZZ2k1YMpnWYi+9Jb9lIhc2Gr6Z4vl35MKlWAsSC9ed/3vzPhkyKBAFuIi7wIWsRof0QtVLlpQKKBPyylK95g==";
};
};
- "@aws-sdk/client-sso-3.81.0" = {
+ "@aws-sdk/client-sso-3.85.0" = {
name = "_at_aws-sdk_slash_client-sso";
packageName = "@aws-sdk/client-sso";
- version = "3.81.0";
+ version = "3.85.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.81.0.tgz";
- sha512 = "VP6igPAA6pfF7Z7oBILeN4gVf/g6HLnof/oI6OLJp+I4633IKyajxcuSXcH1hYUVkWDIsNE9AW7/tZDNV1KX9Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.85.0.tgz";
+ sha512 = "JMW0NzFpo99oE6O9M/kgLela73p4vmhe/5TIcdrqUvP9XUV9nANl5nSXh3rqLz0ubmliedz9kdYYhwMC3ntoXg==";
};
};
- "@aws-sdk/client-sts-3.81.0" = {
+ "@aws-sdk/client-sts-3.87.0" = {
name = "_at_aws-sdk_slash_client-sts";
packageName = "@aws-sdk/client-sts";
- version = "3.81.0";
+ version = "3.87.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.81.0.tgz";
- sha512 = "NmuTUHtFxMLz05CMXjCt/9joCa6R2Vv3trbnjPGhhwcgl0KOeYO19PxDaKdckx0QFH7b3EL9eRl5CLxD6gf+PQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.87.0.tgz";
+ sha512 = "JGI5rzSq8T7IVlfDJ8ltGl8nyVEtwvqXrYR87DwTjeE4HP+/oBdWdbO0oBL1TJMGjzZcENyVYvmaSAkobenkTg==";
};
};
"@aws-sdk/config-resolver-3.80.0" = {
@@ -526,22 +526,22 @@ let
sha512 = "BHopP+gaovTYj+4tSrwCk8NNCR48gE9CWmpIOLkP9ell0gOL81Qh7aCEiIK0BZBZkccv1s16cYq1MSZZGS7PEQ==";
};
};
- "@aws-sdk/credential-provider-ini-3.81.0" = {
+ "@aws-sdk/credential-provider-ini-3.85.0" = {
name = "_at_aws-sdk_slash_credential-provider-ini";
packageName = "@aws-sdk/credential-provider-ini";
- version = "3.81.0";
+ version = "3.85.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.81.0.tgz";
- sha512 = "Fl29sS5V40/WnQFSzeVZEN0E79ND/YuzuWB4aw6SfX44fA6CtpN0HZzvVZxdtPGAQwezPSPGZBc7JrbAVBevTQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.85.0.tgz";
+ sha512 = "KgzLGq+w8OrSLutwdYUw0POeLinGQKcqvQJ9702eoeXCwZMnEHwKqU61bn8QKMX/tuYVCNV4I1enI7MmYPW8Lw==";
};
};
- "@aws-sdk/credential-provider-node-3.81.0" = {
+ "@aws-sdk/credential-provider-node-3.87.0" = {
name = "_at_aws-sdk_slash_credential-provider-node";
packageName = "@aws-sdk/credential-provider-node";
- version = "3.81.0";
+ version = "3.87.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.81.0.tgz";
- sha512 = "50YSQdvWrjoAmw/tkJNaDUntNtaCS5QsL86tSPKWAdvpcoath52pQhOGW7PgLMDMRFvh726yOzK2NdrK2eD2yg==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.87.0.tgz";
+ sha512 = "yL9W5nX00grNNsGj2df1y7hQ0F77UA7+2toPOVqYPIDhFtIUA97AVYiBEFQz1mO9OAhUfCGgxuFF4pyqFoMcHQ==";
};
};
"@aws-sdk/credential-provider-process-3.80.0" = {
@@ -553,13 +553,13 @@ let
sha512 = "3Ro+kMMyLUJHefOhGc5pOO/ibGcJi8bkj0z/Jtqd5I2Sm1qi7avoztST67/k48KMW1OqPnD/FUqxz5T8B2d+FQ==";
};
};
- "@aws-sdk/credential-provider-sso-3.81.0" = {
+ "@aws-sdk/credential-provider-sso-3.85.0" = {
name = "_at_aws-sdk_slash_credential-provider-sso";
packageName = "@aws-sdk/credential-provider-sso";
- version = "3.81.0";
+ version = "3.85.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.81.0.tgz";
- sha512 = "TKcPnHgLBPN00p3nRstfWg+Rf0rJJelBDJXFgosqh/v0FzJD9UKab9nqOLbrCb15Fjod/stt1aXgdkrw3uvpjw==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.85.0.tgz";
+ sha512 = "uE238BgJ/AftPDlBGDlV0XdiNWnUZxFmUmLxgbr19/6jHaCuBr//T6rP+Bc0BjcHkvQCvTdFoCjs17R3Quy3cw==";
};
};
"@aws-sdk/credential-provider-web-identity-3.78.0" = {
@@ -760,13 +760,13 @@ let
sha512 = "CTk+tA4+WMUNOcUfR6UQrkhwvPYFpnMsQ1vuHlpLFOGG3nCqywA2hueLMRQmVcDXzP0sGeygce6dzRI9dJB/GA==";
};
};
- "@aws-sdk/middleware-sdk-s3-3.78.0" = {
+ "@aws-sdk/middleware-sdk-s3-3.86.0" = {
name = "_at_aws-sdk_slash_middleware-sdk-s3";
packageName = "@aws-sdk/middleware-sdk-s3";
- version = "3.78.0";
+ version = "3.86.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.78.0.tgz";
- sha512 = "gxtfVHaL0CkKDIEwRQnmBequtN3dsCtY5LByZQoP3l5qEuTAzwxgbtvGUfHE8LwDVByBqUEFanzafjv1KJ3F8w==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.86.0.tgz";
+ sha512 = "1L9q8iJXy/KNyVR8JRs4DZ5SJse6nJPiK4AR8c2xF5FWHdGoFaLcdqpg2/TLB1kpdcfGgNp96uCROxh+IPXtDQ==";
};
};
"@aws-sdk/middleware-sdk-sts-3.78.0" = {
@@ -832,13 +832,13 @@ let
sha512 = "vyTOMK04huB7n10ZUv0thd2TE6KlY8livOuLqFTMtj99AJ6vyeB5XBNwKnQtJIt/P7CijYgp8KcFvI9fndOmKg==";
};
};
- "@aws-sdk/node-http-handler-3.78.0" = {
+ "@aws-sdk/node-http-handler-3.82.0" = {
name = "_at_aws-sdk_slash_node-http-handler";
packageName = "@aws-sdk/node-http-handler";
- version = "3.78.0";
+ version = "3.82.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.78.0.tgz";
- sha512 = "oGnX91QLB3qaeh2x5n7jtw9RZukLZ2Rqjf8/smVIedAPMJg4fuqnDN/597j+wlEFDPZFpGO2eoE4nah3BoWtwg==";
+ url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.82.0.tgz";
+ sha512 = "yyq/DA/IMzL4fLJhV7zVfP7aUQWPHfOKTCJjWB3KeV5YPiviJtSKb/KyzNi+gQyO7SmsL/8vQbQrf3/s7N/2OA==";
};
};
"@aws-sdk/property-provider-3.78.0" = {
@@ -877,13 +877,13 @@ let
sha512 = "csaH8YTyN+KMNczeK6fBS8l7iJaqcQcKOIbpQFg5upX4Ly5A56HJn4sVQhY1LSgfSk4xRsNfMy5mu6BlsIiaXA==";
};
};
- "@aws-sdk/s3-request-presigner-3.81.0" = {
+ "@aws-sdk/s3-request-presigner-3.88.0" = {
name = "_at_aws-sdk_slash_s3-request-presigner";
packageName = "@aws-sdk/s3-request-presigner";
- version = "3.81.0";
+ version = "3.88.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.81.0.tgz";
- sha512 = "0VDYMqVjk1knv3cSOZQCmPEhg4EmBVti2Do+SNX2bKQytTbzbYlX+bhMINySpYFmnukf26Pj8iSh6v3iRFdwKQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.88.0.tgz";
+ sha512 = "Ms3Fx+9HBV4llP5ZFrZ9LRQ6GTWGQs1ooX6kmdnzC1uNhKhAdcPrs4ngDQ4xqSsOCF77KMPaxRDTjj9o1DGqIQ==";
};
};
"@aws-sdk/service-error-classification-3.78.0" = {
@@ -913,22 +913,22 @@ let
sha512 = "eePjRYuzKoi3VMr/lgrUEF1ytLeH4fA/NMCykr/uR6NMo4bSJA59KrFLYSM7SlWLRIyB0UvJqygVEvSxFluyDw==";
};
};
- "@aws-sdk/signature-v4-multi-region-3.78.0" = {
+ "@aws-sdk/signature-v4-multi-region-3.88.0" = {
name = "_at_aws-sdk_slash_signature-v4-multi-region";
packageName = "@aws-sdk/signature-v4-multi-region";
- version = "3.78.0";
+ version = "3.88.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.78.0.tgz";
- sha512 = "5C+3m4dikUsSLTxW++aBCHP0DT1niiEfXR4UdnjJzcjTtmi/jbL/i8UPG5sCpib9Mu6TMW633tN0h5woVPIIcg==";
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.88.0.tgz";
+ sha512 = "RBbyQRpohlIQiuZc5qAvwbXO0Bob9XhHFS/kuLh+DcyeaBp+m+Bt291FX1Ksz2A0Q3ETNM34LFt7kTOBtMvjIQ==";
};
};
- "@aws-sdk/smithy-client-3.78.0" = {
+ "@aws-sdk/smithy-client-3.85.0" = {
name = "_at_aws-sdk_slash_smithy-client";
packageName = "@aws-sdk/smithy-client";
- version = "3.78.0";
+ version = "3.85.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.78.0.tgz";
- sha512 = "qweaupZtFPm9rFiEgErnVNgB6co/DylJfhC6/UImHBKa7mGzxv6t2JDm6+d8fs8cNnGNXozN+jJG8Lz6C8Roxw==";
+ url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.85.0.tgz";
+ sha512 = "Ox/yQEAnANzhpJMyrpuxWtF/i3EviavENczT7fo4uwSyZTz/sfSBQNjs/YAG1UeA6uOI3pBP5EaFERV5hr2fRA==";
};
};
"@aws-sdk/types-3.78.0" = {
@@ -1012,31 +1012,31 @@ let
sha512 = "30dzofQQfx6tp1jVZkZ0DGRsT0wwC15nEysKRiAcjncM64A0Cm6sra77d0os3vbKiKoPCI/lMsFr4o3533+qvQ==";
};
};
- "@aws-sdk/util-create-request-3.78.0" = {
+ "@aws-sdk/util-create-request-3.85.0" = {
name = "_at_aws-sdk_slash_util-create-request";
packageName = "@aws-sdk/util-create-request";
- version = "3.78.0";
+ version = "3.85.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.78.0.tgz";
- sha512 = "aGRuBXGZ/GFYpP+Bkdzo6kyfX1nkH0dhFK6RYZLxe3r7X/AfkMKeUmIco9tyS1sBAiyoy6a7Re/Oux2Y+ASnjg==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.85.0.tgz";
+ sha512 = "AQrG+mIgjtcN23O4zCAWpIwyPIHzKZAcPbF8OROAbNcQcMwyg2Q9hyodRR5l3fzGG2jiRt9P3copvORBWB7diA==";
};
};
- "@aws-sdk/util-defaults-mode-browser-3.78.0" = {
+ "@aws-sdk/util-defaults-mode-browser-3.85.0" = {
name = "_at_aws-sdk_slash_util-defaults-mode-browser";
packageName = "@aws-sdk/util-defaults-mode-browser";
- version = "3.78.0";
+ version = "3.85.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.78.0.tgz";
- sha512 = "fsKEqlRbrztjpdTsMbZTlWxFpo3Av9QeYYpJuFaZbwfE0ElzinUU54kKwUrKbi60HRroQV+itoUNj3JogQDeHw==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.85.0.tgz";
+ sha512 = "oqK/e2pHuMWrvTJWtDBzylbj232ezlTay5dCq4RQlyi3LPPVBQ08haYD1Mk2ikQ/qa0XvbSD6YVhjpTlvwRNjw==";
};
};
- "@aws-sdk/util-defaults-mode-node-3.81.0" = {
+ "@aws-sdk/util-defaults-mode-node-3.85.0" = {
name = "_at_aws-sdk_slash_util-defaults-mode-node";
packageName = "@aws-sdk/util-defaults-mode-node";
- version = "3.81.0";
+ version = "3.85.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.81.0.tgz";
- sha512 = "+7YOtl+TxF08oXt2h/ONP5qk6ZZg6GaO1YSAdpjIfco4odhpy7N2AlEGSX0jZyP6Zbfi+8N7yihBa4sOuOf+Cw==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.85.0.tgz";
+ sha512 = "KDNl4H8jJJLh6y7I3MSwRKe4plKbFKK8MVkS0+Fce/GJh4EnqxF0HzMMaSeNUcPvO2wHRq2a60+XW+0d7eWo1A==";
};
};
"@aws-sdk/util-format-url-3.78.0" = {
@@ -1162,7 +1162,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/@azu/format-text/-/format-text-1.0.1.tgz";
- sha1 = "6967350a94640f6b02855169bd897ce54d6cebe2";
+ sha512 = "fyPhr8C1DHQqq/xC8gIg2jmYTw/SoY+KgtVFs6H+DFhfh4Hr4OSDeQZuK1eGpOjhuckWy9A1Hhq84+uRjoznLQ==";
};
};
"@azu/style-format-1.0.0" = {
@@ -1171,7 +1171,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/@azu/style-format/-/style-format-1.0.0.tgz";
- sha1 = "e70187f8a862e191b1bce6c0268f13acd3a56b20";
+ sha512 = "L7iaxNrk0OLsH7kw3yx3KVQTKhc2zeW0D9SLrRCqbTZi3XtvSVmmjqO73kR4EnWbTRZ18mwdAikbFYJ0coZ55Q==";
};
};
"@babel/cli-7.17.10" = {
@@ -1516,15 +1516,6 @@ let
sha512 = "di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==";
};
};
- "@babel/plugin-external-helpers-7.8.3" = {
- name = "_at_babel_slash_plugin-external-helpers";
- packageName = "@babel/plugin-external-helpers";
- version = "7.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-external-helpers/-/plugin-external-helpers-7.8.3.tgz";
- sha512 = "mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw==";
- };
- };
"@babel/plugin-proposal-async-generator-functions-7.16.8" = {
name = "_at_babel_slash_plugin-proposal-async-generator-functions";
packageName = "@babel/plugin-proposal-async-generator-functions";
@@ -1678,15 +1669,6 @@ let
sha512 = "tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==";
};
};
- "@babel/plugin-syntax-bigint-7.8.3" = {
- name = "_at_babel_slash_plugin-syntax-bigint";
- packageName = "@babel/plugin-syntax-bigint";
- version = "7.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz";
- sha512 = "wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==";
- };
- };
"@babel/plugin-syntax-class-properties-7.12.13" = {
name = "_at_babel_slash_plugin-syntax-class-properties";
packageName = "@babel/plugin-syntax-class-properties";
@@ -1741,15 +1723,6 @@ let
sha512 = "UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==";
};
};
- "@babel/plugin-syntax-import-meta-7.10.4" = {
- name = "_at_babel_slash_plugin-syntax-import-meta";
- packageName = "@babel/plugin-syntax-import-meta";
- version = "7.10.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz";
- sha512 = "Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==";
- };
- };
"@babel/plugin-syntax-json-strings-7.8.3" = {
name = "_at_babel_slash_plugin-syntax-json-strings";
packageName = "@babel/plugin-syntax-json-strings";
@@ -2245,15 +2218,6 @@ let
sha512 = "+l6FlG1j73t4wh78W41StbcCz0/9a1/y+vxfnjtHl060kSmcgMfGzK9MEkLvrCOXfhp9RCX+d88sm6rOqxEIEQ==";
};
};
- "@babel/preset-stage-2-7.8.3" = {
- name = "_at_babel_slash_preset-stage-2";
- packageName = "@babel/preset-stage-2";
- version = "7.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-stage-2/-/preset-stage-2-7.8.3.tgz";
- sha512 = "dStnEQgejNYIHFNACdDCigK4BF7wgW6Zahv9Dc2un7rGjbeVtZhBfR3sy0I7ZJOhBexkFxVdMZ5hqmll7BFShw==";
- };
- };
"@babel/preset-typescript-7.16.7" = {
name = "_at_babel_slash_preset-typescript";
packageName = "@babel/preset-typescript";
@@ -2344,13 +2308,13 @@ let
sha512 = "9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A==";
};
};
- "@blueprintjs/colors-4.1.1" = {
+ "@blueprintjs/colors-4.1.2" = {
name = "_at_blueprintjs_slash_colors";
packageName = "@blueprintjs/colors";
- version = "4.1.1";
+ version = "4.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.1.tgz";
- sha512 = "uA/TDvIOG/TJ+mDJNerFRK5WnUJlInbRshzHI5SbJXlaPXXIj5BMxAXB67izH0gjvSNj5cXy/9UIgTO2WCB7XA==";
+ url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.2.tgz";
+ sha512 = "wvq92hgRZZYrohI8GaN/pV0iQfxvWa2RI1cLYuItDvXM6i/u1riaw0RcsqqAIL1MH1fHsKFdH1O8i7Tj5a+lpQ==";
};
};
"@blueprintjs/core-3.54.0" = {
@@ -2434,31 +2398,31 @@ let
sha512 = "mgmE7XBYY/21erpzhexk4Cj1cyTQ9LzvnTxtzM17BJ7ERMNE6W72mQRo0I1Ud8eFJ+RVVIcBNhLFZ3GX4XFz5w==";
};
};
- "@cdktf/hcl2cdk-0.10.3" = {
+ "@cdktf/hcl2cdk-0.10.4" = {
name = "_at_cdktf_slash_hcl2cdk";
packageName = "@cdktf/hcl2cdk";
- version = "0.10.3";
+ version = "0.10.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.10.3.tgz";
- sha512 = "JM+fknoNa+w6HXMC6XinOToxiofxpCfwskIimR2OgHflEuyuAjN4hX21fgys4mRPQq9ItNm/PIyC1FtAvr3fvA==";
+ url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.10.4.tgz";
+ sha512 = "o6/4Gtx7o24cwChYHc58GQfCUB94FEKBHRCx4TAaeOo8JDwdmveGiKTI35/9riwHrwxEE5WdYgQZfbWNodJ3qg==";
};
};
- "@cdktf/hcl2json-0.10.3" = {
+ "@cdktf/hcl2json-0.10.4" = {
name = "_at_cdktf_slash_hcl2json";
packageName = "@cdktf/hcl2json";
- version = "0.10.3";
+ version = "0.10.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.10.3.tgz";
- sha512 = "kiiif6H/mFBRfg9SJOVSOyOFRl5r2OFHDIssp+1q4w1nlKwQHwFkGcrYrWsID9gvFNaLZepbWg6GbMqT7sPJZw==";
+ url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.10.4.tgz";
+ sha512 = "futYHyzFIOc7N1LeGFM0Td854pwkmgwNYh2uRL/ImO/KrgsRQfxjb4eZqeWZ70p1Xdh52vt7Ae6fSXb9t+EB7g==";
};
};
- "@cdktf/provider-generator-0.10.3" = {
+ "@cdktf/provider-generator-0.10.4" = {
name = "_at_cdktf_slash_provider-generator";
packageName = "@cdktf/provider-generator";
- version = "0.10.3";
+ version = "0.10.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.10.3.tgz";
- sha512 = "T8MLSXIZqO4ZmXuxrM7ySPaA9qsh3vUTBpxiOA6z24PoVKAhKQXZFUtyrmlSrHc0DoGibyYQqD2H4NQZ414oLw==";
+ url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.10.4.tgz";
+ sha512 = "bRzR7E3boCAd2l8AhybLQ53roRMZmQH1Dr8Nx25pZhTGzMkUXUOsy+3VU9FC2jHdRAIVESWtncPWW0GOD+cC5w==";
};
};
"@chemzqm/neovim-5.7.9" = {
@@ -2479,15 +2443,6 @@ let
sha512 = "1rgl8GNttf8+Ru/lOhWmH36zYQwUBaKIChHXe66KdJXDF+lRUaFhD1cR5NBCOFR983xzrvTJtGp0GWoYbILd1Q==";
};
};
- "@cnakazawa/watch-1.0.4" = {
- name = "_at_cnakazawa_slash_watch";
- packageName = "@cnakazawa/watch";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz";
- sha512 = "v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==";
- };
- };
"@colors/colors-1.5.0" = {
name = "_at_colors_slash_colors";
packageName = "@colors/colors";
@@ -2497,15 +2452,6 @@ let
sha512 = "ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==";
};
};
- "@comandeer/babel-plugin-banner-5.0.0" = {
- name = "_at_comandeer_slash_babel-plugin-banner";
- packageName = "@comandeer/babel-plugin-banner";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@comandeer/babel-plugin-banner/-/babel-plugin-banner-5.0.0.tgz";
- sha512 = "sR9Go0U6puXoXyW9UgIiIQhRcJ8jVOvGl4BptUiXAtheMs72WcakZ1udh6J0ZOivr3o8jAM+MTCHLP8FZMbVpQ==";
- };
- };
"@commitlint/config-validator-16.2.1" = {
name = "_at_commitlint_slash_config-validator";
packageName = "@commitlint/config-validator";
@@ -2659,31 +2605,31 @@ let
sha512 = "do5jDoX9oCR/dGHE4POVQ3PYDCmQ2Fow4CA72UL4WoE8zUImA/0lChczjfl+ucNjE4sXFWUnzoO6j4WzrUvLnw==";
};
};
- "@cspell/cspell-bundled-dicts-5.19.7" = {
+ "@cspell/cspell-bundled-dicts-5.20.0" = {
name = "_at_cspell_slash_cspell-bundled-dicts";
packageName = "@cspell/cspell-bundled-dicts";
- version = "5.19.7";
+ version = "5.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.19.7.tgz";
- sha512 = "9h2KdI3yKODc8rAxkgB5UZb6RLwwEO25Fo91vnOtM1xfwLhX/scMACU1DoqtnTVaE73HoQ46DYAZAAq/OloRFQ==";
+ url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.20.0.tgz";
+ sha512 = "tCO32xVSuey4Tg8XuayBzcrCAfrAXL8J1PeYl26+/ZUl5zkAL4AuyL0Cf4e2PpeEomnUWP2y5noZLLbUeOIwnw==";
};
};
- "@cspell/cspell-pipe-5.19.7" = {
+ "@cspell/cspell-pipe-5.20.0" = {
name = "_at_cspell_slash_cspell-pipe";
packageName = "@cspell/cspell-pipe";
- version = "5.19.7";
+ version = "5.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.19.7.tgz";
- sha512 = "C2+qovrXyZtoM+IcyMuwwYieoGBwwnWORat+j7bkIkVHf6Pa9spxY3D1IdLt04PqWBKWKHb1g9KzJzw5grBqZw==";
+ url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.20.0.tgz";
+ sha512 = "dGHf4XZgPlGqviYTD+5ZwSk3hpiywsuuDqnoPo9SeQ1xPon7uFVKsMiAAzvhGAkkBaKIBNP/nwPU0feYvLoCJg==";
};
};
- "@cspell/cspell-types-5.19.7" = {
+ "@cspell/cspell-types-5.20.0" = {
name = "_at_cspell_slash_cspell-types";
packageName = "@cspell/cspell-types";
- version = "5.19.7";
+ version = "5.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.19.7.tgz";
- sha512 = "xL9a0oE8kPQ/GCkE/bxE5DTCMTctCpk7tdrhYG26wVbMK1VRGo8fv9w+vRVzXgTfF5jTxolEA1LTtfVBuik1MA==";
+ url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.20.0.tgz";
+ sha512 = "p06/HAKgalqyGHfnowJvjO3SQHxuOzKdiJTUlUi8x1CrEk7PmZEHuORlt9tVVZ46Xf2qY9+QLeTtattlWPJ39A==";
};
};
"@cspell/dict-ada-2.0.0" = {
@@ -2803,13 +2749,13 @@ let
sha512 = "tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==";
};
};
- "@cspell/dict-en_us-2.2.1" = {
+ "@cspell/dict-en_us-2.2.4" = {
name = "_at_cspell_slash_dict-en_us";
packageName = "@cspell/dict-en_us";
- version = "2.2.1";
+ version = "2.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.2.1.tgz";
- sha512 = "tx6sJOCgfLRTiXxF5Jeheo0wnhc+nedmEx9IKnWMJFzOZ1J9gXmdjDBlZE/zG8g7tsH415yqqPBh6k5J9bupiA==";
+ url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.2.4.tgz";
+ sha512 = "gblsvIPLNAK+pRR/Mn2m2kRQLVFeoORQJeaZKlGHWckA3s0iuTN49hSSTbK66k3aWlzhirtSoux7IdvT2RpgnQ==";
};
};
"@cspell/dict-filetypes-2.0.1" = {
@@ -2830,13 +2776,13 @@ let
sha512 = "AgkTalphfDPtKFPYmEExDcj8rRCh86xlOSXco8tehOEkYVYbksOk9XH0YVH34RFpy93YBd2nnVGLgyGVwagcPw==";
};
};
- "@cspell/dict-fullstack-2.0.4" = {
+ "@cspell/dict-fullstack-2.0.5" = {
name = "_at_cspell_slash_dict-fullstack";
packageName = "@cspell/dict-fullstack";
- version = "2.0.4";
+ version = "2.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-2.0.4.tgz";
- sha512 = "+JtYO58QAXnetRN+MGVzI8YbkbFTLpYfl/Cw/tmNqy7U1IDVC4sTXQ2pZvbbeKQWFHBqYvBs0YASV+mTouXYBw==";
+ url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-2.0.5.tgz";
+ sha512 = "jnLnHZ4HcCFNUfN+q7m0CUDtISNKat0Jahe1GgnAdEwzcozqKBhlGAjV7mQWPtKpqfJU61JakDnrxzqefAfZHw==";
};
};
"@cspell/dict-git-1.0.1" = {
@@ -2929,13 +2875,13 @@ let
sha512 = "ztBWzhvI+YaMehICSJ65cohhjQqoztxf9vrS3YckOiVGBFvUMaFVNdX9klQkvrLcS/O4+2PzoGeIEkmf99amLA==";
};
};
- "@cspell/dict-npm-2.0.2" = {
+ "@cspell/dict-npm-2.0.3" = {
name = "_at_cspell_slash_dict-npm";
packageName = "@cspell/dict-npm";
- version = "2.0.2";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-2.0.2.tgz";
- sha512 = "Q5ua0aeKTxW4WxvtU+UMdct46hCStOTeEiiG8iinTh/mH5brmdtMEj4olO8+mmkAKPpIC4TI3TmaaN6RN+Vpgw==";
+ url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-2.0.3.tgz";
+ sha512 = "K/rnVhmHkR3jfdo7o8P2NDKyMcpVe9pUBiFDY1y2C0YqZXIxCz1f5hObm/hxyO+Vbn5VLU3TKU5fZ5z3LspXOg==";
};
};
"@cspell/dict-php-2.0.0" = {
@@ -2965,13 +2911,13 @@ let
sha512 = "h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==";
};
};
- "@cspell/dict-python-2.0.6" = {
+ "@cspell/dict-python-3.0.3" = {
name = "_at_cspell_slash_dict-python";
packageName = "@cspell/dict-python";
- version = "2.0.6";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-2.0.6.tgz";
- sha512 = "54ICgMRiGwavorg8UJC38Fwx8tW8WKj8pimJmFUd0F/ImQ8wmeg4VrmyMach5MZVUaw1qUe2aP5uSyqA15Q0mg==";
+ url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.3.tgz";
+ sha512 = "Mt415KczTfqmLvKTgeV8FzMzpms9baTS0P5HfULTW+UxQtZeroviYyRM9TJPJKJSoI0ISu0GiIDgmYlV7+YPog==";
};
};
"@cspell/dict-r-1.0.2" = {
@@ -3010,13 +2956,13 @@ let
sha512 = "MUwA2YKpqaQOSR4V1/CVGRNk8Ii5kf6I8Ch+4/BhRZRQXuwWbi21rDRYWPqdQWps7VNzAbbMA+PQDWsD5YY38g==";
};
};
- "@cspell/dict-software-terms-2.1.4" = {
+ "@cspell/dict-software-terms-2.1.5" = {
name = "_at_cspell_slash_dict-software-terms";
packageName = "@cspell/dict-software-terms";
- version = "2.1.4";
+ version = "2.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.1.4.tgz";
- sha512 = "MB2eT9qhbnIEJajGv+ndzzi6S8NCJ9cMyeGJYMoRAiJobTKP6xPrT37VjPzhckRtrHJGG//UgtQ4NsiK5aBITw==";
+ url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.1.5.tgz";
+ sha512 = "ylXWCsOJlYuucaMoHaHQLVaB8HeDrsCZ42a3jrTC/i6F/SF9I+4tBg4lMivd4w31bXBgILdbIvVHtWzJf+5m0A==";
};
};
"@cspell/dict-swift-1.0.2" = {
@@ -3070,7 +3016,7 @@ let
version = "18.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/@cycle/dom/-/dom-18.3.0.tgz";
- sha1 = "37b9f55c6b0f629d1b689ece57637768fbeed2b0";
+ sha512 = "f0/+Hk/fCiODGlCDIcs3O5Gv4AZ8vehs/BbL8EnYB07M/H3sECxox2iYeC/1yVhiUY6kTxyF5ms5bpzJHi8jEQ==";
};
};
"@cycle/http-14.10.0" = {
@@ -3115,7 +3061,7 @@ let
version = "0.10.1";
src = fetchurl {
url = "https://registry.npmjs.org/@cycle/time/-/time-0.10.1.tgz";
- sha1 = "cbc4b9a68981bf0b501ccd06a9058acd65309bf7";
+ sha512 = "BGzQLeZGA1PtwEkbwgItUEOEgE7kDZL151DuqMRaH172dY4NIMpFoLc6OghiGdtNBJGVkbfJ/UTKiM0iRsApIg==";
};
};
"@dabh/diagnostics-2.0.3" = {
@@ -3442,13 +3388,13 @@ let
sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==";
};
};
- "@eslint/eslintrc-1.2.2" = {
+ "@eslint/eslintrc-1.2.3" = {
name = "_at_eslint_slash_eslintrc";
packageName = "@eslint/eslintrc";
- version = "1.2.2";
+ version = "1.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.2.tgz";
- sha512 = "lTVWHs7O2hjBFZunXTZYnYqtB9GakA1lnxIf+gKq2nY5gxkkNi/lQvveW6t8gFdOHTg6nG50Xs95PrLqVpcaLg==";
+ url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.3.tgz";
+ sha512 = "uGo44hIwoLGNyduRpjdEpovcbMdd+Nv7amtmJxnKmI8xj6yd5LncmSwDa5NgX/41lIFJtkjD6YdVfgEzPfJ5UA==";
};
};
"@exodus/schemasafe-1.0.0-rc.6" = {
@@ -3640,13 +3586,13 @@ let
sha512 = "HwFvBMtikal8s2mwf3veE8TReVOhkuMXX7HOBhRq8BSbq7RPnVzh6r8tVJVrIaWfqRn3s85GFvzU0YjqcvvHLA==";
};
};
- "@expo/xcpretty-4.1.1" = {
+ "@expo/xcpretty-4.1.2" = {
name = "_at_expo_slash_xcpretty";
packageName = "@expo/xcpretty";
- version = "4.1.1";
+ version = "4.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-4.1.1.tgz";
- sha512 = "2ssiyKGjgRUn61MSdSQyptV5lq1BtaT1DX80OjnCLvg+tXxIp2MVLZASSNqYqo8gQotghv35EpVrWBmOxMFuoQ==";
+ url = "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-4.1.2.tgz";
+ sha512 = "B2Nu52RFpXvZejEUllXnPQtKUoUcO799FHEAAU3quTb3Q10irUxhYAI2H+xRLg3pDYZEO7w09CoNYO8zHfeQrw==";
};
};
"@fast-csv/format-4.3.5" = {
@@ -3730,13 +3676,13 @@ let
sha512 = "jzTyqhockpunkFKbEK+8sBP2cbgLllcmcWdTkCrxb+8CxLXD5bMWGMgUiI99Xz7+G/01QBMgAHOngKC05dVS7A==";
};
};
- "@fluentui/react-8.67.2" = {
+ "@fluentui/react-8.67.4" = {
name = "_at_fluentui_slash_react";
packageName = "@fluentui/react";
- version = "8.67.2";
+ version = "8.67.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react/-/react-8.67.2.tgz";
- sha512 = "QzDa4gXcVacBsUfXKRQV+tL7NwBJZpzgJU/lRlI4zjeC9pqiBxh6ZmxtHu0XXXIKFXa0DyesgnAKBbyqGsENmw==";
+ url = "https://registry.npmjs.org/@fluentui/react/-/react-8.67.4.tgz";
+ sha512 = "iBbSyOmsuxRJkn1P4rMrvN5uAyORrtNAXLk9qXzpI7h9ohXZPfGCImHXn7GyrVON0zGtjNEYevkW5VS/M2hDww==";
};
};
"@fluentui/react-focus-8.5.7" = {
@@ -3874,13 +3820,13 @@ let
sha512 = "j8yRSSqswWi1QqUGKVEKOG03Q7qOoZP6/h2zN2YO+F5h2+DHU0bSrHCK9Y7lo2DI9fBd8qGAw795sf+3Jva4yA==";
};
};
- "@google-cloud/pubsub-2.19.3" = {
+ "@google-cloud/pubsub-2.19.4" = {
name = "_at_google-cloud_slash_pubsub";
packageName = "@google-cloud/pubsub";
- version = "2.19.3";
+ version = "2.19.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.19.3.tgz";
- sha512 = "VUP+4vaKPrgy/9YzZHfZgR+9jnmmZe6ZwkWS8xVq5B5DdSJAYAEjKWuYcY9MQo9sNeyVAQCzTV6zzaS57vya0g==";
+ url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.19.4.tgz";
+ sha512 = "+aZxq6N5XGarQS3xGXjKSRFy4TB+3PMpI0CBmSrcC59g3TB5nmwps3pv/KkdLa0Cd+CPHDdfrEW1uSrGBMLICw==";
};
};
"@grammyjs/types-2.7.1" = {
@@ -3919,13 +3865,13 @@ let
sha512 = "IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg==";
};
};
- "@graphql-tools/batch-execute-8.4.6" = {
+ "@graphql-tools/batch-execute-8.4.7" = {
name = "_at_graphql-tools_slash_batch-execute";
packageName = "@graphql-tools/batch-execute";
- version = "8.4.6";
+ version = "8.4.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.4.6.tgz";
- sha512 = "8O42fReZMssrA4HCkpK68RlRQz/QAvLfOkz+/6dDX2X7VgZtRx3VvFiJd2hFaGdNbLzklBWXF9E6hJdJGkEO5g==";
+ url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.4.7.tgz";
+ sha512 = "+ZXikTo8kJ1hJAQrT94sUrwmdL8EcvoDz4HULbb4B8hIFw0PPBaGkEaN8u5ylsCLOEoWIQNe1SwHx9yDhlvnJg==";
};
};
"@graphql-tools/delegate-7.1.5" = {
@@ -3937,13 +3883,13 @@ let
sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g==";
};
};
- "@graphql-tools/delegate-8.7.7" = {
+ "@graphql-tools/delegate-8.7.8" = {
name = "_at_graphql-tools_slash_delegate";
packageName = "@graphql-tools/delegate";
- version = "8.7.7";
+ version = "8.7.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.7.tgz";
- sha512 = "Yb9UHG+Upm0M+5FgtWipXM0/Q8Vuuh1Ieod7hFDmAwHGHbmwG0YpcS/NMdxrQAZYWnli9EdnSPgDAFnWLFN+ZQ==";
+ url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.8.tgz";
+ sha512 = "QRpk0B0VD+23mC3ePBLM542TvCXbQhdr0V/AmcnpxQLsV27/NA6fDxxN/zjjjs15M5v9/M2DaBT4rwY9NMMlQA==";
};
};
"@graphql-tools/graphql-file-loader-6.2.7" = {
@@ -3955,22 +3901,22 @@ let
sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ==";
};
};
- "@graphql-tools/graphql-file-loader-7.3.11" = {
+ "@graphql-tools/graphql-file-loader-7.3.12" = {
name = "_at_graphql-tools_slash_graphql-file-loader";
packageName = "@graphql-tools/graphql-file-loader";
- version = "7.3.11";
+ version = "7.3.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.11.tgz";
- sha512 = "3RMTfBN0VYSJH+5he9DxW8nGSn5p2+dNN2O2H88QSSwGorkONmKBdmf+9+JTzrEDvPObOzBjIuSD8wCnXlNaQA==";
+ url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.12.tgz";
+ sha512 = "V1K+g0QBflBnN58pU6jo7qrmXfIJjSgmIGo4zYxbMwfvcYCQcTmfYnKWUkvZmBj0cXIAGfhqSOQZsxZW9rgXIA==";
};
};
- "@graphql-tools/import-6.6.13" = {
+ "@graphql-tools/import-6.6.14" = {
name = "_at_graphql-tools_slash_import";
packageName = "@graphql-tools/import";
- version = "6.6.13";
+ version = "6.6.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.6.13.tgz";
- sha512 = "yqdCem+ZZFVAaIC2IxWyAXSEHLNPIuMzm4avTQe/LbYNRFRTpzyIYo3clc22ixeuh2LqSL3tLXKq2IsggCAeQw==";
+ url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.6.14.tgz";
+ sha512 = "XN6swtMdUxd9czmdNIK6yJ0w5t4FOUWSoSkYP0+to8j44r8zdM3nsAppoA0OLmsUY+JnTBgkW3jGlOFvqC3HWg==";
};
};
"@graphql-tools/json-file-loader-6.2.6" = {
@@ -3982,13 +3928,13 @@ let
sha512 = "CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA==";
};
};
- "@graphql-tools/json-file-loader-7.3.11" = {
+ "@graphql-tools/json-file-loader-7.3.12" = {
name = "_at_graphql-tools_slash_json-file-loader";
packageName = "@graphql-tools/json-file-loader";
- version = "7.3.11";
+ version = "7.3.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.3.11.tgz";
- sha512 = "3in/1y+OVKP3eJ8aloxWD2HdZLcZChgHRk5j3ey3C+ANTwoedIgTWcwxro+iLH40IZ7a6z+I/Lb2dEc8xlgwug==";
+ url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.3.12.tgz";
+ sha512 = "gmH6XFN7Alt/hGXeez6Jlp0/lHuY9O1rLVKq5w5FqslkQvWYg2dqzhn2U9jRqD42NbEmSQ5Sjhfkdmc4VT6OfA==";
};
};
"@graphql-tools/load-6.2.4" = {
@@ -4000,13 +3946,13 @@ let
sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg==";
};
};
- "@graphql-tools/load-7.5.10" = {
+ "@graphql-tools/load-7.5.11" = {
name = "_at_graphql-tools_slash_load";
packageName = "@graphql-tools/load";
- version = "7.5.10";
+ version = "7.5.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.10.tgz";
- sha512 = "I9b9Md1DdB7Du//+x8CtBAKUW21jyuENCPssvlBjHZjvmx5cIGrTftqwGzuDBgR0Zm72tkmat/FTu6/SQPiyeQ==";
+ url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.11.tgz";
+ sha512 = "a8sD3iHfxcbIwP0nSxF+DUAVg+/MuLNOizVJHcZGGS8AdDoezUsnWRkNDT6FlVqRoxHNbkpq8+6B55JKtqHSxg==";
};
};
"@graphql-tools/merge-6.2.17" = {
@@ -4018,13 +3964,13 @@ let
sha512 = "G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow==";
};
};
- "@graphql-tools/merge-8.2.10" = {
+ "@graphql-tools/merge-8.2.11" = {
name = "_at_graphql-tools_slash_merge";
packageName = "@graphql-tools/merge";
- version = "8.2.10";
+ version = "8.2.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.10.tgz";
- sha512 = "wpg22seOTNfkIO8jFAgo8w1BsT3IS2OTMpkCNf+dvcKSP09SVidYCOliyWHgjDCmpCrvvSjOX855NUKDx/Biew==";
+ url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.11.tgz";
+ sha512 = "fsjJVdsk9GV1jj1Ed2AKLlHYlsf0ZadTK8X5KxFRE1ZSnKqh56BLVX93JrtOIAnsiHkwOK2TC43HGhApF1swpQ==";
};
};
"@graphql-tools/schema-7.1.5" = {
@@ -4036,13 +3982,13 @@ let
sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA==";
};
};
- "@graphql-tools/schema-8.3.10" = {
+ "@graphql-tools/schema-8.3.11" = {
name = "_at_graphql-tools_slash_schema";
packageName = "@graphql-tools/schema";
- version = "8.3.10";
+ version = "8.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.10.tgz";
- sha512 = "tfhjSTi3OzheDrVzG7rkPZg2BbQjmZRLM2vvQoM2b1TnUwgUIbpAgcnf+AWDLRsoCOWlezeLgij1BLeAR0Q0jg==";
+ url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.11.tgz";
+ sha512 = "esMEnbyXbp8B5VEI4o395+x0G7Qmz3JSX5onFBF8HeLYcqWJasY5vBuWkO18VxrZpEnvnryodP6Y00bVag9O3Q==";
};
};
"@graphql-tools/url-loader-6.10.1" = {
@@ -4054,13 +4000,13 @@ let
sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw==";
};
};
- "@graphql-tools/url-loader-7.9.17" = {
+ "@graphql-tools/url-loader-7.9.21" = {
name = "_at_graphql-tools_slash_url-loader";
packageName = "@graphql-tools/url-loader";
- version = "7.9.17";
+ version = "7.9.21";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.17.tgz";
- sha512 = "tnzjx5qf81/4qjMkFSMVWKMG1/Avqlqh2GRDK0JTPZgZpHDTr9Xy3Hs+FLzhrfm5X7ILihug0jDwf8nBiymFSA==";
+ url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.21.tgz";
+ sha512 = "OPE08LVvKmeGyauWWksRYTBtQ1lB0kHUv2hofb0lOlD4TKURg53TwFopncof+1IT+1hTl3sLsERn7S5M1Z5PhQ==";
};
};
"@graphql-tools/utils-6.2.4" = {
@@ -4090,13 +4036,13 @@ let
sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ==";
};
};
- "@graphql-tools/utils-8.6.9" = {
+ "@graphql-tools/utils-8.6.10" = {
name = "_at_graphql-tools_slash_utils";
packageName = "@graphql-tools/utils";
- version = "8.6.9";
+ version = "8.6.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.6.9.tgz";
- sha512 = "Z1X4d4GCT81+8CSt6SgU4t1w1UAUsAIRb67mI90k/zAs+ArkB95iE3bWXuJCUmd1+r8DGGtmUNOArtd6wkt+OQ==";
+ url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.6.10.tgz";
+ sha512 = "bJH9qwuyM3BP0PTU6/lvBDkk6jdEIOn+dbyk4pHMVNnvbJ1gZQwo62To8SHxxaUTus8OMhhVPSh9ApWXREURcg==";
};
};
"@graphql-tools/wrap-7.0.8" = {
@@ -4108,13 +4054,13 @@ let
sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg==";
};
};
- "@graphql-tools/wrap-8.4.16" = {
+ "@graphql-tools/wrap-8.4.17" = {
name = "_at_graphql-tools_slash_wrap";
packageName = "@graphql-tools/wrap";
- version = "8.4.16";
+ version = "8.4.17";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.16.tgz";
- sha512 = "b3yz7uN0en44sBEv/fAEQIqdiCEM/gQJSaLyA7Z2hWJwM0gQ5kiq0XMwKvyUAIY8NGig7IywC7bbup5Jc2F35Q==";
+ url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.17.tgz";
+ sha512 = "oXTNXuUsty2smv3wm9M0W3Pon+fofy9ItIgGT3xfHnJITCNC2GC1s29lhcr0pIZL4Tjp7oTlqMx+sPjLHETSzw==";
};
};
"@grpc/grpc-js-1.5.7" = {
@@ -4162,6 +4108,15 @@ let
sha512 = "eBM03pu9hd3VqDQG+kHahiG1x80RGkkqqRb1Pchcwqej/KkAH95gAvKs6laqaHCycYaPK+TKuNQnOz9UXYA8qw==";
};
};
+ "@grpc/proto-loader-0.6.12" = {
+ name = "_at_grpc_slash_proto-loader";
+ packageName = "@grpc/proto-loader";
+ version = "0.6.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.12.tgz";
+ sha512 = "filTVbETFnxb9CyRX98zN18ilChTuf/C5scZ2xyaOTp0EHGq0/ufX8rjqXUcSb1Gpv7eZq4M2jDvbh9BogKnrg==";
+ };
+ };
"@grpc/proto-loader-0.6.9" = {
name = "_at_grpc_slash_proto-loader";
packageName = "@grpc/proto-loader";
@@ -4186,7 +4141,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz";
- sha1 = "890ae7c5d8c877f6d384860215ace9d7ec945bda";
+ sha512 = "o/EatdaGt8+x2qpb0vFLC/2Gug/xYPRXb6a+ET1wGYKozKN3krDWC/zZFZAtrzxJHuDL12mwdfEFKcKMNvc55A==";
};
};
"@handsontable/formulajs-2.0.2" = {
@@ -4513,24 +4468,6 @@ let
sha512 = "SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==";
};
};
- "@istanbuljs/load-nyc-config-1.1.0" = {
- name = "_at_istanbuljs_slash_load-nyc-config";
- packageName = "@istanbuljs/load-nyc-config";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz";
- sha512 = "VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==";
- };
- };
- "@istanbuljs/schema-0.1.3" = {
- name = "_at_istanbuljs_slash_schema";
- packageName = "@istanbuljs/schema";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz";
- sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==";
- };
- };
"@jcubic/lily-0.3.0" = {
name = "_at_jcubic_slash_lily";
packageName = "@jcubic/lily";
@@ -4558,24 +4495,6 @@ let
sha512 = "/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==";
};
};
- "@jest/transform-25.5.1" = {
- name = "_at_jest_slash_transform";
- packageName = "@jest/transform";
- version = "25.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@jest/transform/-/transform-25.5.1.tgz";
- sha512 = "Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==";
- };
- };
- "@jest/types-25.5.0" = {
- name = "_at_jest_slash_types";
- packageName = "@jest/types";
- version = "25.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz";
- sha512 = "OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==";
- };
- };
"@jest/types-27.5.1" = {
name = "_at_jest_slash_types";
packageName = "@jest/types";
@@ -4666,40 +4585,40 @@ let
sha512 = "sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==";
};
};
- "@jridgewell/resolve-uri-3.0.6" = {
+ "@jridgewell/resolve-uri-3.0.7" = {
name = "_at_jridgewell_slash_resolve-uri";
packageName = "@jridgewell/resolve-uri";
- version = "3.0.6";
+ version = "3.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.6.tgz";
- sha512 = "R7xHtBSNm+9SyvpJkdQl+qrM3Hm2fea3Ef197M3mUug+v+yR+Rhfbs7PBtcBUVnIWJ4JcAdjvij+c8hXS9p5aw==";
+ url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz";
+ sha512 = "8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==";
};
};
- "@jridgewell/set-array-1.1.0" = {
+ "@jridgewell/set-array-1.1.1" = {
name = "_at_jridgewell_slash_set-array";
packageName = "@jridgewell/set-array";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.0.tgz";
- sha512 = "SfJxIxNVYLTsKwzB3MoOQ1yxf4w/E6MdkvTgrgAt1bfxjSrLUoHMKrDOykwN14q65waezZIdqDneUIPh4/sKxg==";
+ url = "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.1.tgz";
+ sha512 = "Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==";
};
};
- "@jridgewell/sourcemap-codec-1.4.11" = {
+ "@jridgewell/sourcemap-codec-1.4.13" = {
name = "_at_jridgewell_slash_sourcemap-codec";
packageName = "@jridgewell/sourcemap-codec";
- version = "1.4.11";
+ version = "1.4.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz";
- sha512 = "Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==";
+ url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz";
+ sha512 = "GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==";
};
};
- "@jridgewell/trace-mapping-0.3.9" = {
+ "@jridgewell/trace-mapping-0.3.13" = {
name = "_at_jridgewell_slash_trace-mapping";
packageName = "@jridgewell/trace-mapping";
- version = "0.3.9";
+ version = "0.3.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz";
- sha512 = "3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==";
+ url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz";
+ sha512 = "o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==";
};
};
"@jsdevtools/ono-7.1.3" = {
@@ -4711,22 +4630,22 @@ let
sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==";
};
};
- "@jsii/check-node-1.57.0" = {
+ "@jsii/check-node-1.58.0" = {
name = "_at_jsii_slash_check-node";
packageName = "@jsii/check-node";
- version = "1.57.0";
+ version = "1.58.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.57.0.tgz";
- sha512 = "7c4D07I8xefmafKtiXQkarpRsSRufpach4lcM/mepWhBqVGxFjzGF7S4vRT7MAQiEKEpGhnIfpWFhmBgUtP6bw==";
+ url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.58.0.tgz";
+ sha512 = "JKLvi1Zx0R3qX7MeYo7G9qRekNog+gjK3ppssG98HOYsQgoT2VbZ7Hzp1RAVAgL+Qt5HrLbLoVZMboZmH/VRIw==";
};
};
- "@jsii/spec-1.57.0" = {
+ "@jsii/spec-1.58.0" = {
name = "_at_jsii_slash_spec";
packageName = "@jsii/spec";
- version = "1.57.0";
+ version = "1.58.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.57.0.tgz";
- sha512 = "Pt1wWIVeBN7UHJ9Flj676hNA3sNN06YSbErUd3loLgCUjRDOUzp2QysaRQK2Zsf2DBIjwLq048btoWkjPsTFJQ==";
+ url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.58.0.tgz";
+ sha512 = "jAFpUW0xGu08CeJLJxc+9z+ZHDQK62OFjV8i2S7850DRm2FJdUMU98wzG4A1FDXRCYlQNlYk2E51LdQfSo7+Vw==";
};
};
"@juggle/resize-observer-3.3.1" = {
@@ -4891,13 +4810,13 @@ let
sha512 = "lLseUPEhSFUXYTKj6q7s2O3s2vW2ebgA11vMAlKodXGf5AFw4zUoEbTz9CoFOC9jS6xY4Qr8BmRnxP/odT4Uuw==";
};
};
- "@leichtgewicht/ip-codec-2.0.3" = {
+ "@leichtgewicht/ip-codec-2.0.4" = {
name = "_at_leichtgewicht_slash_ip-codec";
packageName = "@leichtgewicht/ip-codec";
- version = "2.0.3";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.3.tgz";
- sha512 = "nkalE/f1RvRGChwBnEIoBfSEYOXnCRdleKuv6+lePbMDrMZXeDQnqak5XDOeBgrPPyPfAdcCu/B5z+v3VhplGg==";
+ url = "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz";
+ sha512 = "Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==";
};
};
"@lerna/add-4.0.0" = {
@@ -5809,13 +5728,13 @@ let
sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==";
};
};
- "@microsoft/load-themed-styles-1.10.260" = {
+ "@microsoft/load-themed-styles-1.10.263" = {
name = "_at_microsoft_slash_load-themed-styles";
packageName = "@microsoft/load-themed-styles";
- version = "1.10.260";
+ version = "1.10.263";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.260.tgz";
- sha512 = "fW6YvdNMrMVQ6LY8Ckl72dtUDdxY/wxgq8o9UKSoC+3sCN2vaSxB6rlmxaSCaR79BWVaxl6oIeQKKDX3UbPg5Q==";
+ url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.263.tgz";
+ sha512 = "nInzHMgly/OXuU3VycNcp5qvogDOZppOtQR1hFBopGZQ1nKT5jF+YUoB/0Aku5qG6hjzwAvbpjHMs9RbQeeSBQ==";
};
};
"@mischnic/json-sourcemap-0.1.0" = {
@@ -5881,13 +5800,13 @@ let
sha512 = "BTpWy1e+FxN82RnLz4x1+JcEewVdfmUhV1C6/XYD5AjS7PQp9QFF7K8bCD6gzPTr2l+prvqOyVueQhFJxB1vfg==";
};
};
- "@nestjs/schematics-8.0.10" = {
+ "@nestjs/schematics-8.0.11" = {
name = "_at_nestjs_slash_schematics";
packageName = "@nestjs/schematics";
- version = "8.0.10";
+ version = "8.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.10.tgz";
- sha512 = "gQq/8TYjtgum+5+QuPfHHKgKxDgNLGh8mH+EJ1skOKX+GTxgt5jmg1GFmwEfiOXZUcF9thT6GsOVNKWrdO3YMg==";
+ url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.11.tgz";
+ sha512 = "W/WzaxgH5aE01AiIErE9QrQJ73VR/M/8p8pq0LZmjmNcjZqU5kQyOWUxZg13WYfSpJdOa62t6TZRtFDmgZPoIg==";
};
};
"@netflix/nerror-1.1.3" = {
@@ -7015,85 +6934,85 @@ let
sha512 = "dygDmPsfAYJKTnUftcbEzjCik7AAaPbFvJW8ETYz8diyjkAG9y6hvCAZIrJE5pNOjFzg32en4v4UWv8Sqlzl9g==";
};
};
- "@parcel/css-1.8.2" = {
+ "@parcel/css-1.8.3" = {
name = "_at_parcel_slash_css";
packageName = "@parcel/css";
- version = "1.8.2";
+ version = "1.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css/-/css-1.8.2.tgz";
- sha512 = "3vTyKHy2LnZ3YJEut+UQPVIxsaY/mdGk7cDXtmvH4xR48Pd6rYzChHCMl4Ru2DUkCBpr0KCQRPZTdYcsJhUmIA==";
+ url = "https://registry.npmjs.org/@parcel/css/-/css-1.8.3.tgz";
+ sha512 = "6qUN4iicr8f9Q6UUZttwwHMzrb65BRX46PHWq0icA4KEmvmfR9cSYlp/hJH8F4stg3Wncx12Bnw+EuPf5OAEPQ==";
};
};
- "@parcel/css-darwin-arm64-1.8.2" = {
+ "@parcel/css-darwin-arm64-1.8.3" = {
name = "_at_parcel_slash_css-darwin-arm64";
packageName = "@parcel/css-darwin-arm64";
- version = "1.8.2";
+ version = "1.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-darwin-arm64/-/css-darwin-arm64-1.8.2.tgz";
- sha512 = "p5etxX3kPCuEQcipjqH9yc5j0x5/Yc++uB4MvG/sFbRgL2gI2zUuRo9sIgqA21boOP8lE4bQgz1ovPD/W1hj+Q==";
+ url = "https://registry.npmjs.org/@parcel/css-darwin-arm64/-/css-darwin-arm64-1.8.3.tgz";
+ sha512 = "qh/Ig6GfVjGoiGSWjIYDo6Ghwmyy/9BXvYS1l3R+Bp50F300cq84Czfl6wxaL+aFmghdHzhjJuGfWmZlcYliPA==";
};
};
- "@parcel/css-darwin-x64-1.8.2" = {
+ "@parcel/css-darwin-x64-1.8.3" = {
name = "_at_parcel_slash_css-darwin-x64";
packageName = "@parcel/css-darwin-x64";
- version = "1.8.2";
+ version = "1.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.8.2.tgz";
- sha512 = "c3xi5DXRZYec5db4KPTxp69eHbomOuasgZNiuPPOi80k7jlOwfzCFQs0h6/KwWvTcJrKEFsLl8BKJU/aX7mETw==";
+ url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.8.3.tgz";
+ sha512 = "gTUIoRgwyYr4UuH7sSn3gOuMlIshJBOJLmjL+E/mR5lqdYabguiKiRORvkrnb/gHBmOUF9re0RcTaFmJ2VOAlg==";
};
};
- "@parcel/css-linux-arm-gnueabihf-1.8.2" = {
+ "@parcel/css-linux-arm-gnueabihf-1.8.3" = {
name = "_at_parcel_slash_css-linux-arm-gnueabihf";
packageName = "@parcel/css-linux-arm-gnueabihf";
- version = "1.8.2";
+ version = "1.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-linux-arm-gnueabihf/-/css-linux-arm-gnueabihf-1.8.2.tgz";
- sha512 = "+ih3+mMpwbwtOjr/XW5pP0frsV1PMN+Qz7jCAM84h8xX+8UE/1IR0UVi3EPa8wQiIlcVcEwszQ1MV2UHacvo/A==";
+ url = "https://registry.npmjs.org/@parcel/css-linux-arm-gnueabihf/-/css-linux-arm-gnueabihf-1.8.3.tgz";
+ sha512 = "4P1r0BvL9dPz70py2xLg/jEvWJmKNyokPgafyrDP+GbpPTfH5NYJJkVRGo/TkKsp3Rv8SJhV9fdlpFKC6BI92A==";
};
};
- "@parcel/css-linux-arm64-gnu-1.8.2" = {
+ "@parcel/css-linux-arm64-gnu-1.8.3" = {
name = "_at_parcel_slash_css-linux-arm64-gnu";
packageName = "@parcel/css-linux-arm64-gnu";
- version = "1.8.2";
+ version = "1.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-linux-arm64-gnu/-/css-linux-arm64-gnu-1.8.2.tgz";
- sha512 = "jIoyXbjJ1trUHXtyJhi3hlF1ck6xM4CDyaY5N6eN+3+ovkdw6wxog9IiheYJ1jf9ellYevLvTF5kiYE9MiP04A==";
+ url = "https://registry.npmjs.org/@parcel/css-linux-arm64-gnu/-/css-linux-arm64-gnu-1.8.3.tgz";
+ sha512 = "1fUy94eaqdzum+C7bsYVF2AgxjLGR/qppArn/4HTQyydHR5QeV+Uoyqo5vdnO5Vclj8eQwlgR9OyAOlmzXxFDA==";
};
};
- "@parcel/css-linux-arm64-musl-1.8.2" = {
+ "@parcel/css-linux-arm64-musl-1.8.3" = {
name = "_at_parcel_slash_css-linux-arm64-musl";
packageName = "@parcel/css-linux-arm64-musl";
- version = "1.8.2";
+ version = "1.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.8.2.tgz";
- sha512 = "QVTc5a+HatoywIei3djKYmp3s5dbI2Q3QaYZf3gqhyjOkeC7bm6j5eeNzFO+wa5xtga5jdHkIuTRrJ/wCojKKw==";
+ url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.8.3.tgz";
+ sha512 = "ct1QRK5gAP8sO22NZ7RULZQB7dbHpou+WMa4z0LJb+Fho13a1JNw931vNHbeI5cRr1fCTDq76pz/+Valgetzcw==";
};
};
- "@parcel/css-linux-x64-gnu-1.8.2" = {
+ "@parcel/css-linux-x64-gnu-1.8.3" = {
name = "_at_parcel_slash_css-linux-x64-gnu";
packageName = "@parcel/css-linux-x64-gnu";
- version = "1.8.2";
+ version = "1.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-linux-x64-gnu/-/css-linux-x64-gnu-1.8.2.tgz";
- sha512 = "9r2tSfa6i3ZQ3a6C9XufJWuTv3LB7JYzxzEqsI35SSA8D/DrfAHMaIhqog5wSxKZRWmQxckh2wdT96eIIGHSGA==";
+ url = "https://registry.npmjs.org/@parcel/css-linux-x64-gnu/-/css-linux-x64-gnu-1.8.3.tgz";
+ sha512 = "pg/mahoogzjbaZcW76rrTZ64tEu8Wok4Gm0sW/dXHJEJD2QVJ6GxLP4UVNBuhaV0GrNFHggp9pcdhTtLGkKl/g==";
};
};
- "@parcel/css-linux-x64-musl-1.8.2" = {
+ "@parcel/css-linux-x64-musl-1.8.3" = {
name = "_at_parcel_slash_css-linux-x64-musl";
packageName = "@parcel/css-linux-x64-musl";
- version = "1.8.2";
+ version = "1.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.8.2.tgz";
- sha512 = "5SetLWkxXRQ3NU6QwwbGf9tOmGW2m1cGt07Moybbe4RCXOY6R5wAYUtauZUp7pD/fJlE9mHge4jnNHKpVO9pvw==";
+ url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.8.3.tgz";
+ sha512 = "4Iwawy28HQ2yAgbuyR60bgO+8oE+OiWpE02eNjbgqnDpTsfmXFMt4l5OYgZwJJ7DlaZqm+/yO8RPMd+EzwtNzg==";
};
};
- "@parcel/css-win32-x64-msvc-1.8.2" = {
+ "@parcel/css-win32-x64-msvc-1.8.3" = {
name = "_at_parcel_slash_css-win32-x64-msvc";
packageName = "@parcel/css-win32-x64-msvc";
- version = "1.8.2";
+ version = "1.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.8.2.tgz";
- sha512 = "/EdW5Ejlnkvc/AYrAi/FmLNvM6a6eAx+A4Y7oW+8JSMvk6bYa2zmXi7XLU/QOQuH2VQa/3gIIMA+sYjPndvDpw==";
+ url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.8.3.tgz";
+ sha512 = "vnHUdzIVjqONa5ALFzMJ3ZHt6NiaYTHW/lqzP+AR4l+bq+UTXD2Q75/RgirY5NYwdfy1VPy/jI82jAtLOCymkw==";
};
};
"@parcel/diagnostic-2.5.0" = {
@@ -7546,13 +7465,13 @@ let
sha512 = "/Ow5OKJWs+9OzV3Jy4J++VnbNx0j3ls/M1CGVBLiBWyCada9DMtquYoBQ4Sk6Uam50BKkIFYetGOeXPNQyyMjg==";
};
};
- "@peculiar/asn1-schema-2.1.0" = {
+ "@peculiar/asn1-schema-2.1.6" = {
name = "_at_peculiar_slash_asn1-schema";
packageName = "@peculiar/asn1-schema";
- version = "2.1.0";
+ version = "2.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.1.0.tgz";
- sha512 = "D6g4C5YRKC/iPujMAOXuZ7YGdaoMx8GsvWzfVSyx2LYeL38ECOKNywlYAuwbqQvON64lgsYdAujWQPX8hhoBLw==";
+ url = "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.1.6.tgz";
+ sha512 = "6ewdxD32vsjxbI/MvTef7PQxZIfLyV4w/5XzjOkosIGNt726zj8evLitCbjTeMHSZ/VeU4ZFSnrPXdCBHI6NWQ==";
};
};
"@peculiar/json-schema-1.1.12" = {
@@ -7564,13 +7483,13 @@ let
sha512 = "coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==";
};
};
- "@peculiar/webcrypto-1.3.3" = {
+ "@peculiar/webcrypto-1.4.0" = {
name = "_at_peculiar_slash_webcrypto";
packageName = "@peculiar/webcrypto";
- version = "1.3.3";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.3.3.tgz";
- sha512 = "+jkp16Hp18HkphJlMtqsQKjyDWJBh0AhDuoB+vVakuIRbkBdaFb7v26Ldm25altjiYhCyQnR5NChHxwSTvbXJw==";
+ url = "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.4.0.tgz";
+ sha512 = "U58N44b2m3OuTgpmKgf0LPDOmP3bhwNz01vAnj1mBwxBASRhptWYK+M3zG+HBkDqGQM+bFsoIihTW8MdmPXEqg==";
};
};
"@pm2/agent-2.0.1" = {
@@ -7618,22 +7537,22 @@ let
sha512 = "DiIjtous4XPuR2deTctD3/RVZy/vRzVYBgYYvHV313MmTfkbVP60qLH5txrT3/bYNvnb0poNDelLS6U0kqlvHA==";
};
};
- "@prisma/engines-3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b" = {
+ "@prisma/engines-3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d4a6a" = {
name = "_at_prisma_slash_engines";
packageName = "@prisma/engines";
- version = "3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b";
+ version = "3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d4a6a";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b.tgz";
- sha512 = "Ip9CcCeUocH61eXu4BUGpvl5KleQyhcUVLpWCv+0ZmDv44bFaDpREqjGHHdRupvPN/ugB6gTlD9b9ewdj02yVA==";
+ url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d4a6a.tgz";
+ sha512 = "LwZvI3FY6f43xFjQNRuE10JM5R8vJzFTSmbV9X0Wuhv9kscLkjRlZt0BEoiHmO+2HA3B3xxbMfB5du7ZoSFXGg==";
};
};
- "@prisma/prisma-fmt-wasm-3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b" = {
+ "@prisma/prisma-fmt-wasm-3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d4a6a" = {
name = "_at_prisma_slash_prisma-fmt-wasm";
packageName = "@prisma/prisma-fmt-wasm";
- version = "3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b";
+ version = "3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d4a6a";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b.tgz";
- sha512 = "zCJfpPpH98YJMKbpygHHVqPrDRTO5WhUAgf8hZnUDCu/iWlgW9Zi9dzuFScml+Ns/Jr5XAl1lOTJXK/3IZu9NA==";
+ url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d4a6a.tgz";
+ sha512 = "YwiGDAfUqLPz1NIyd6y6LyT1ViiTCXNx7AFWuMwb7aGhBmzhfuTeo/MQpzlA9x90wKh2ACJ4Fa3nZS5Wvr8xbg==";
};
};
"@protobufjs/aspromise-1.1.2" = {
@@ -7780,22 +7699,13 @@ let
sha512 = "y9qNj0//tZtWB2jfXNK3BX18BSBp9zNR7KE7lMysVHwbZtY392OJCjm6Rb/h4UHH2r1AqjNEHFD6bRn+DqU9Mw==";
};
};
- "@redocly/openapi-core-1.0.0-beta.94" = {
+ "@redocly/openapi-core-1.0.0-beta.97" = {
name = "_at_redocly_slash_openapi-core";
packageName = "@redocly/openapi-core";
- version = "1.0.0-beta.94";
+ version = "1.0.0-beta.97";
src = fetchurl {
- url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.94.tgz";
- sha512 = "xTklcobv+51bQVkUOpUiNY0GztL+0u3yGsy2BtldaHpcnNGMu3lu/utsoOHkiNTpgVEGyEWVZzBtF6Sz5v/Fkg==";
- };
- };
- "@redocly/react-dropdown-aria-2.0.12" = {
- name = "_at_redocly_slash_react-dropdown-aria";
- packageName = "@redocly/react-dropdown-aria";
- version = "2.0.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/@redocly/react-dropdown-aria/-/react-dropdown-aria-2.0.12.tgz";
- sha512 = "feQEZlyBvQsbT/fvpJ4jJ5OLGaUPpnskHYDsY8DGpPymN+HUeDQrqkBEbbKRwMKidFTI2cxk2kJNNTnvdS9jyw==";
+ url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.97.tgz";
+ sha512 = "3WW9/6flosJuRtU3GI0Vw39OYFZqqXMDCp5TLa3EjXOb7Nm6AZTWRb3Y+I/+UdNJ/NTszVJkQczoa1t476ekiQ==";
};
};
"@request/api-0.6.0" = {
@@ -7843,13 +7753,13 @@ let
sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==";
};
};
- "@schematics/angular-13.3.4" = {
+ "@schematics/angular-13.3.5" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "13.3.4";
+ version = "13.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.4.tgz";
- sha512 = "Cta11k965Igz2kWj60KQ/9z6RFAg9FjZ8i1TH4nyROJs9nWemWPQNA+OJFuXrEy6Ldpk7yJ5cWgJsyryGB25PA==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.5.tgz";
+ sha512 = "1Ovx0cq72ZaNCyTyRD8ebIwUzpqhEH9ypWF05bfBLq3J0LlZgewIMhPJSxKmwRC3NQB5DZIYEvD0uhzBIuHCCA==";
};
};
"@segment/loosely-validate-event-2.0.0" = {
@@ -7897,13 +7807,13 @@ let
sha512 = "DAa5Z0JAZc6UfrTZLYwqoZxgAponZpFwaqd7WzzMA+loMCkYWyJNwxrAmV6cr2UUJpkko4toPZuJ3vM9Ie+NDA==";
};
};
- "@serverless/utils-6.0.3" = {
+ "@serverless/utils-6.4.0" = {
name = "_at_serverless_slash_utils";
packageName = "@serverless/utils";
- version = "6.0.3";
+ version = "6.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/utils/-/utils-6.0.3.tgz";
- sha512 = "6oKLqAkK6CG2zjAs2rfuHEOLoK11K/oep5bwGTEb5JmFP/92JQtvyb+FxP4DknL4jYpiYj1Dd5sCt5auHhOASg==";
+ url = "https://registry.npmjs.org/@serverless/utils/-/utils-6.4.0.tgz";
+ sha512 = "N93Vd55docYMg2d8Gqb4/MagG4GDOStpUsWZak4QpBenkzE3Q+MK7TkeNCeBpmK+PzRiL6/4K6p81QPvZel+Pw==";
};
};
"@sideway/address-4.1.4" = {
@@ -8185,13 +8095,13 @@ let
sha512 = "X1Iui3FUNZP18EUvysTHxt+Avu2nlVzyf90YM8OYgP6SGzTzzX/0JgObfO1AQQDzuZtNNz29bVh8h5R97JrjxA==";
};
};
- "@stylelint/postcss-css-in-js-0.37.2" = {
+ "@stylelint/postcss-css-in-js-0.37.3" = {
name = "_at_stylelint_slash_postcss-css-in-js";
packageName = "@stylelint/postcss-css-in-js";
- version = "0.37.2";
+ version = "0.37.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@stylelint/postcss-css-in-js/-/postcss-css-in-js-0.37.2.tgz";
- sha512 = "nEhsFoJurt8oUmieT8qy4nk81WRHmJynmVwn/Vts08PL9fhgIsMhk1GId5yAN643OzqEEb5S/6At2TZW7pqPDA==";
+ url = "https://registry.npmjs.org/@stylelint/postcss-css-in-js/-/postcss-css-in-js-0.37.3.tgz";
+ sha512 = "scLk3cSH1H9KggSniseb2KNAU5D9FWc3H7BxCSAIdtU9OWIyw0zkEZ9qEKHryRM+SExYXRKNb7tOOVNAsQ3iwg==";
};
};
"@stylelint/postcss-markdown-0.36.2" = {
@@ -8203,13 +8113,13 @@ let
sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ==";
};
};
- "@swc/helpers-0.3.9" = {
+ "@swc/helpers-0.3.13" = {
name = "_at_swc_slash_helpers";
packageName = "@swc/helpers";
- version = "0.3.9";
+ version = "0.3.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.9.tgz";
- sha512 = "TLzWHAHOrzxauG2uB+5t7fqdom0CDiIbtjJ5zbhnT+SsGmipB767Hrw+d4/si8aS/wrYgWbqjbBR4Y0bxSyLxw==";
+ url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.3.13.tgz";
+ sha512 = "A1wswJhnqaLRn8uYVQ8YiNTtY5i/JIPmV08EXXjjTresIkUVUEUaFv/wXVhGXfRNYMvHPkuoMR1Nb6NgpxGjNg==";
};
};
"@szmarczak/http-timer-1.1.2" = {
@@ -8311,15 +8221,6 @@ let
sha512 = "TmqFyNqi68YpkqKabrkMlPzeSJMfY/+Wsv1/r43uDFgSYyM9GiD0eIpP12uKyL8xLW+rgfbqXxeFwSo26Conqw==";
};
};
- "@textlint/markdown-to-ast-6.1.7" = {
- name = "_at_textlint_slash_markdown-to-ast";
- packageName = "@textlint/markdown-to-ast";
- version = "6.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-6.1.7.tgz";
- sha512 = "B0QtokeQR4a9+4q0NQr8T9l7A1fFihTN5Ze57tVgqW+3ymzXEouh8DvPHeNQ4T6jEkAThvdjk95mxAMpGRJ79w==";
- };
- };
"@textlint/module-interop-12.1.1" = {
name = "_at_textlint_slash_module-interop";
packageName = "@textlint/module-interop";
@@ -8527,15 +8428,6 @@ let
sha512 = "veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==";
};
};
- "@types/asn1js-2.0.2" = {
- name = "_at_types_slash_asn1js";
- packageName = "@types/asn1js";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/asn1js/-/asn1js-2.0.2.tgz";
- sha512 = "t4YHCgtD+ERvH0FyxvNlYwJ2ezhqw7t+Ygh4urQ7dJER8i185JPv6oIM3ey5YQmGN6Zp9EMbpohkjZi9t3UxwA==";
- };
- };
"@types/atob-2.1.2" = {
name = "_at_types_slash_atob";
packageName = "@types/atob";
@@ -8554,42 +8446,6 @@ let
sha512 = "pkPtJUUY+Vwv6B1inAz55rQvivClHJxc9aVEPPmaq2cbyeMLCiDpbKpcKyX4LAwpNGi+SHBv0tHv6+0gXv0P2A==";
};
};
- "@types/babel__core-7.1.19" = {
- name = "_at_types_slash_babel__core";
- packageName = "@types/babel__core";
- version = "7.1.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz";
- sha512 = "WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==";
- };
- };
- "@types/babel__generator-7.6.4" = {
- name = "_at_types_slash_babel__generator";
- packageName = "@types/babel__generator";
- version = "7.6.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz";
- sha512 = "tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==";
- };
- };
- "@types/babel__template-7.4.1" = {
- name = "_at_types_slash_babel__template";
- packageName = "@types/babel__template";
- version = "7.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz";
- sha512 = "azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==";
- };
- };
- "@types/babel__traverse-7.17.1" = {
- name = "_at_types_slash_babel__traverse";
- packageName = "@types/babel__traverse";
- version = "7.17.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.1.tgz";
- sha512 = "kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==";
- };
- };
"@types/babylon-6.16.6" = {
name = "_at_types_slash_babylon";
packageName = "@types/babylon";
@@ -8725,13 +8581,13 @@ let
sha512 = "h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==";
};
};
- "@types/content-disposition-0.5.4" = {
+ "@types/content-disposition-0.5.5" = {
name = "_at_types_slash_content-disposition";
packageName = "@types/content-disposition";
- version = "0.5.4";
+ version = "0.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/content-disposition/-/content-disposition-0.5.4.tgz";
- sha512 = "0mPF08jn9zYI0n0Q/Pnz7C4kThdSt+6LD4amsrYDDpgBfrVWa3TcCOxKX1zkGgYniGagRv8heN2cbh+CAn+uuQ==";
+ url = "https://registry.npmjs.org/@types/content-disposition/-/content-disposition-0.5.5.tgz";
+ sha512 = "v6LCdKfK6BwcqMo+wYW05rLS12S0ZO0Fl4w1h4aaZMD7bqT3gVUns6FvLJKGZHQmYn3SX55JWGpziwJRwVgutA==";
};
};
"@types/cookie-0.4.1" = {
@@ -8824,13 +8680,13 @@ let
sha512 = "n0zoEj/fMdMOvqbHxmqnza/kXyoGgJmEpsXjpP+gEqE1Ye4yNqc7xWipKnUoMpWhMuzJQSfK2gMrwlElly7OGQ==";
};
};
- "@types/ejs-3.1.0" = {
+ "@types/ejs-3.1.1" = {
name = "_at_types_slash_ejs";
packageName = "@types/ejs";
- version = "3.1.0";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.0.tgz";
- sha512 = "DCg+Ka+uDQ31lJ/UtEXVlaeV3d6t81gifaVWKJy4MYVVgvJttyX/viREy+If7fz+tK/gVxTGMtyrFPnm4gjrVA==";
+ url = "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.1.tgz";
+ sha512 = "RQul5wEfY7BjWm0sYY86cmUN/pcXWGyVxWX93DFFJvcrxax5zKlieLwA3T77xJGwNcZW0YW6CYG70p1m8xPFmA==";
};
};
"@types/emoji-mart-3.0.9" = {
@@ -8851,13 +8707,13 @@ let
sha512 = "VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==";
};
};
- "@types/eslint-8.4.1" = {
+ "@types/eslint-8.4.2" = {
name = "_at_types_slash_eslint";
packageName = "@types/eslint";
- version = "8.4.1";
+ version = "8.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.1.tgz";
- sha512 = "GE44+DNEyxxh2Kc6ro/VkIj+9ma0pO0bwv9+uHSyBrikYOHr8zYcdPvnBOp1aw8s+CjRvuSx7CyWqRrNFQ59mA==";
+ url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.2.tgz";
+ sha512 = "Z1nseZON+GEnFjJc04sv4NSALGjhFwy6K0HXt7qsn5ArfAKtb63dXNJHf+1YW6IpOIYRBGUbu3GwJdj8DGnCjA==";
};
};
"@types/eslint-scope-3.7.3" = {
@@ -8977,15 +8833,6 @@ let
sha512 = "ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==";
};
};
- "@types/graceful-fs-4.1.5" = {
- name = "_at_types_slash_graceful-fs";
- packageName = "@types/graceful-fs";
- version = "4.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz";
- sha512 = "anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==";
- };
- };
"@types/hast-2.3.4" = {
name = "_at_types_slash_hast";
packageName = "@types/hast";
@@ -9040,13 +8887,13 @@ let
sha512 = "EqX+YQxINb+MeXaIqYDASb6U6FCHbWjkj4a1CKDBks3d/QiB2+PqBLyO72vLDgAO1wUI4O+9gweRcQK11bTL/w==";
};
};
- "@types/http-proxy-1.17.8" = {
+ "@types/http-proxy-1.17.9" = {
name = "_at_types_slash_http-proxy";
packageName = "@types/http-proxy";
- version = "1.17.8";
+ version = "1.17.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.8.tgz";
- sha512 = "5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA==";
+ url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz";
+ sha512 = "QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==";
};
};
"@types/inquirer-6.5.0" = {
@@ -9094,15 +8941,6 @@ let
sha512 = "plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==";
};
};
- "@types/istanbul-reports-1.1.2" = {
- name = "_at_types_slash_istanbul-reports";
- packageName = "@types/istanbul-reports";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz";
- sha512 = "P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==";
- };
- };
"@types/istanbul-reports-3.0.1" = {
name = "_at_types_slash_istanbul-reports";
packageName = "@types/istanbul-reports";
@@ -9445,13 +9283,13 @@ let
sha512 = "Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ==";
};
};
- "@types/node-12.20.50" = {
+ "@types/node-12.20.51" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "12.20.50";
+ version = "12.20.51";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-12.20.50.tgz";
- sha512 = "+9axpWx2b2JCVovr7Ilgt96uc6C1zBKOQMpGtRbWT9IoR/8ue32GGMfGA4woP8QyP2gBs6GQWEVM3tCybGCxDA==";
+ url = "https://registry.npmjs.org/@types/node/-/node-12.20.51.tgz";
+ sha512 = "anVDMfReTatfH8GVmHmaTZOL0jeTLNZ9wK9SSrQS3tMmn4vUc+9fVWlUzAieuQefWDyWUz4Z3aqXxDgO1VsYjg==";
};
};
"@types/node-13.13.52" = {
@@ -9472,13 +9310,13 @@ let
sha512 = "USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg==";
};
};
- "@types/node-14.18.16" = {
+ "@types/node-14.18.17" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "14.18.16";
+ version = "14.18.17";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-14.18.16.tgz";
- sha512 = "X3bUMdK/VmvrWdoTkz+VCn6nwKwrKCFTHtqwBIaQJNx4RUIBBUFXM00bqPz/DsDd+Icjmzm6/tyYZzeGVqb6/Q==";
+ url = "https://registry.npmjs.org/@types/node/-/node-14.18.17.tgz";
+ sha512 = "oajWz4kOajqpKJMPgnCvBajPq8QAvl2xIWoFjlAJPKGu6n7pjov5SxGE45a+0RxHDoo4ycOMoZw1SCOWtDERbw==";
};
};
"@types/node-15.14.9" = {
@@ -9490,13 +9328,13 @@ let
sha512 = "qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==";
};
};
- "@types/node-16.11.33" = {
+ "@types/node-16.11.34" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "16.11.33";
+ version = "16.11.34";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.11.33.tgz";
- sha512 = "0PJ0vg+JyU0MIan58IOIFRtSvsb7Ri+7Wltx2qAg94eMOrpg4+uuP3aUHCpxXc1i0jCXiC+zIamSZh3l9AbcQA==";
+ url = "https://registry.npmjs.org/@types/node/-/node-16.11.34.tgz";
+ sha512 = "UrWGDyLAlQ2Z8bNOGWTsqbP9ZcBeTYBVuTRNxXTztBy5KhWUFI3BaeDWoCP/CzV/EVGgO1NTYzv9ZytBI9GAEw==";
};
};
"@types/node-16.11.6" = {
@@ -9544,6 +9382,15 @@ let
sha512 = "AR0x5HbXGqkEx9CadRH3EBYx/VkiUgZIhP4wvPn/+5KIsgpNoyFaRlVe0Zlx9gRtg8fA06a9tskE2MSN7TcG4Q==";
};
};
+ "@types/node-17.0.32" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "17.0.32";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-17.0.32.tgz";
+ sha512 = "eAIcfAvhf/BkHcf4pkLJ7ECpBAhh9kcxRBpip9cTiO+hf+aJrsxYxBeS6OXvOd9WqNAJmavXVpZvY1rBjNsXmw==";
+ };
+ };
"@types/node-6.14.13" = {
name = "_at_types_slash_node";
packageName = "@types/node";
@@ -9688,22 +9535,22 @@ let
sha512 = "+TRLFmHLnpoV0uw4O/PzqMbPT6bhQM0q2KO0l+R7M3sHYRndPpNL6kv8p7Ee9ZxgQ6noYB18/t+heQi7eijOHA==";
};
};
- "@types/react-16.14.25" = {
+ "@types/react-16.14.26" = {
name = "_at_types_slash_react";
packageName = "@types/react";
- version = "16.14.25";
+ version = "16.14.26";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/react/-/react-16.14.25.tgz";
- sha512 = "cXRVHd7vBT5v1is72mmvmsg9stZrbJO04DJqFeh3Yj2tVKO6vmxg5BI+ybI6Ls7ROXRG3aFbZj9x0WA3ZAoDQw==";
+ url = "https://registry.npmjs.org/@types/react/-/react-16.14.26.tgz";
+ sha512 = "c/5CYyciOO4XdFcNhZW1O2woVx86k4T+DO2RorHZL7EhitkNQgSD/SgpdZJAUJa/qjVgOmTM44gHkAdZSXeQuQ==";
};
};
- "@types/react-dom-16.9.15" = {
+ "@types/react-dom-16.9.16" = {
name = "_at_types_slash_react-dom";
packageName = "@types/react-dom";
- version = "16.9.15";
+ version = "16.9.16";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.15.tgz";
- sha512 = "PjWhZj54ACucQX2hDmnHyqHz+N2On5g3Lt5BeNn+wy067qvOokVSQw1nEog1XGfvLYrSl3cyrdebEfjQQNXD3A==";
+ url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.16.tgz";
+ sha512 = "Oqc0RY4fggGA3ltEgyPLc3IV9T73IGoWjkONbsyJ3ZBn+UPPCYpU2ec0i3cEbJuEdZtkqcCF2l1zf2pBdgUGSg==";
};
};
"@types/react-window-1.8.5" = {
@@ -9733,15 +9580,6 @@ let
sha512 = "whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ==";
};
};
- "@types/resolve-0.0.8" = {
- name = "_at_types_slash_resolve";
- packageName = "@types/resolve";
- version = "0.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz";
- sha512 = "auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==";
- };
- };
"@types/responselike-1.0.0" = {
name = "_at_types_slash_responselike";
packageName = "@types/responselike";
@@ -10039,13 +9877,13 @@ let
sha512 = "awvdx4vX7SkMKyvWIlRjycjb4blYRSQI3Bav0YMn+lJLGN6gJgb20urN/dQCv/2ejDu5S6ADEBt6O15DOpIAkg==";
};
};
- "@types/vscode-1.66.0" = {
+ "@types/vscode-1.67.0" = {
name = "_at_types_slash_vscode";
packageName = "@types/vscode";
- version = "1.66.0";
+ version = "1.67.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.66.0.tgz";
- sha512 = "ZfJck4M7nrGasfs4A4YbUoxis3Vu24cETw3DERsNYtDZmYSYtk6ljKexKFKhImO/ZmY6ZMsmegu2FPkXoUFImA==";
+ url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.67.0.tgz";
+ sha512 = "GH8BDf8cw9AC9080uneJfulhSa7KHSMI2s/CyKePXoGNos9J486w2V4YKoeNUqIEkW4hKoEAWp6/cXTwyGj47g==";
};
};
"@types/webidl-conversions-6.1.1" = {
@@ -10156,15 +9994,6 @@ let
sha512 = "6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==";
};
};
- "@types/yargs-15.0.14" = {
- name = "_at_types_slash_yargs";
- packageName = "@types/yargs";
- version = "15.0.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz";
- sha512 = "yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==";
- };
- };
"@types/yargs-16.0.4" = {
name = "_at_types_slash_yargs";
packageName = "@types/yargs";
@@ -10228,13 +10057,13 @@ let
sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==";
};
};
- "@typescript-eslint/eslint-plugin-5.21.0" = {
+ "@typescript-eslint/eslint-plugin-5.23.0" = {
name = "_at_typescript-eslint_slash_eslint-plugin";
packageName = "@typescript-eslint/eslint-plugin";
- version = "5.21.0";
+ version = "5.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.21.0.tgz";
- sha512 = "fTU85q8v5ZLpoZEyn/u1S2qrFOhi33Edo2CZ0+q1gDaWWm0JuPh3bgOyU8lM0edIEYgKLDkPFiZX2MOupgjlyg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.23.0.tgz";
+ sha512 = "hEcSmG4XodSLiAp1uxv/OQSGsDY6QN3TcRU32gANp+19wGE1QQZLRS8/GV58VRUoXhnkuJ3ZxNQ3T6Z6zM59DA==";
};
};
"@typescript-eslint/experimental-utils-4.33.0" = {
@@ -10255,13 +10084,13 @@ let
sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==";
};
};
- "@typescript-eslint/parser-5.21.0" = {
+ "@typescript-eslint/parser-5.23.0" = {
name = "_at_typescript-eslint_slash_parser";
packageName = "@typescript-eslint/parser";
- version = "5.21.0";
+ version = "5.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.21.0.tgz";
- sha512 = "8RUwTO77hstXUr3pZoWZbRQUxXcSXafZ8/5gpnQCfXvgmP9gpNlRGlWzvfbEQ14TLjmtU8eGnONkff8U2ui2Eg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.23.0.tgz";
+ sha512 = "V06cYUkqcGqpFjb8ttVgzNF53tgbB/KoQT/iB++DOIExKmzI9vBJKjZKt/6FuV9c+zrDsvJKbJ2DOCYwX91cbw==";
};
};
"@typescript-eslint/scope-manager-4.33.0" = {
@@ -10273,22 +10102,22 @@ let
sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==";
};
};
- "@typescript-eslint/scope-manager-5.21.0" = {
+ "@typescript-eslint/scope-manager-5.23.0" = {
name = "_at_typescript-eslint_slash_scope-manager";
packageName = "@typescript-eslint/scope-manager";
- version = "5.21.0";
+ version = "5.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.21.0.tgz";
- sha512 = "XTX0g0IhvzcH/e3393SvjRCfYQxgxtYzL3UREteUneo72EFlt7UNoiYnikUtmGVobTbhUDByhJ4xRBNe+34kOQ==";
+ url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.23.0.tgz";
+ sha512 = "EhjaFELQHCRb5wTwlGsNMvzK9b8Oco4aYNleeDlNuL6qXWDF47ch4EhVNPh8Rdhf9tmqbN4sWDk/8g+Z/J8JVw==";
};
};
- "@typescript-eslint/type-utils-5.21.0" = {
+ "@typescript-eslint/type-utils-5.23.0" = {
name = "_at_typescript-eslint_slash_type-utils";
packageName = "@typescript-eslint/type-utils";
- version = "5.21.0";
+ version = "5.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.21.0.tgz";
- sha512 = "MxmLZj0tkGlkcZCSE17ORaHl8Th3JQwBzyXL/uvC6sNmu128LsgjTX0NIzy+wdH2J7Pd02GN8FaoudJntFvSOw==";
+ url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.23.0.tgz";
+ sha512 = "iuI05JsJl/SUnOTXA9f4oI+/4qS/Zcgk+s2ir+lRmXI+80D8GaGwoUqs4p+X+4AxDolPpEpVUdlEH4ADxFy4gw==";
};
};
"@typescript-eslint/types-4.33.0" = {
@@ -10300,13 +10129,13 @@ let
sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==";
};
};
- "@typescript-eslint/types-5.21.0" = {
+ "@typescript-eslint/types-5.23.0" = {
name = "_at_typescript-eslint_slash_types";
packageName = "@typescript-eslint/types";
- version = "5.21.0";
+ version = "5.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.21.0.tgz";
- sha512 = "XnOOo5Wc2cBlq8Lh5WNvAgHzpjnEzxn4CJBwGkcau7b/tZ556qrWXQz4DJyChYg8JZAD06kczrdgFPpEQZfDsA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.23.0.tgz";
+ sha512 = "NfBsV/h4dir/8mJwdZz7JFibaKC3E/QdeMEDJhiAE3/eMkoniZ7MjbEMCGXw6MZnZDMN3G9S0mH/6WUIj91dmw==";
};
};
"@typescript-eslint/typescript-estree-4.33.0" = {
@@ -10318,22 +10147,22 @@ let
sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==";
};
};
- "@typescript-eslint/typescript-estree-5.21.0" = {
+ "@typescript-eslint/typescript-estree-5.23.0" = {
name = "_at_typescript-eslint_slash_typescript-estree";
packageName = "@typescript-eslint/typescript-estree";
- version = "5.21.0";
+ version = "5.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.21.0.tgz";
- sha512 = "Y8Y2T2FNvm08qlcoSMoNchh9y2Uj3QmjtwNMdRQkcFG7Muz//wfJBGBxh8R7HAGQFpgYpdHqUpEoPQk+q9Kjfg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.23.0.tgz";
+ sha512 = "xE9e0lrHhI647SlGMl+m+3E3CKPF1wzvvOEWnuE3CCjjT7UiRnDGJxmAcVKJIlFgK6DY9RB98eLr1OPigPEOGg==";
};
};
- "@typescript-eslint/utils-5.21.0" = {
+ "@typescript-eslint/utils-5.23.0" = {
name = "_at_typescript-eslint_slash_utils";
packageName = "@typescript-eslint/utils";
- version = "5.21.0";
+ version = "5.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.21.0.tgz";
- sha512 = "q/emogbND9wry7zxy7VYri+7ydawo2HDZhRZ5k6yggIvXa7PvBbAAZ4PFH/oZLem72ezC4Pr63rJvDK/sTlL8Q==";
+ url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.23.0.tgz";
+ sha512 = "dbgaKN21drqpkbbedGMNPCtRPZo1IOUr5EI9Jrrh99r5UW5Q0dz46RKXeSBoPV+56R6dFKpbrdhgUNSJsDDRZA==";
};
};
"@typescript-eslint/visitor-keys-4.33.0" = {
@@ -10345,13 +10174,13 @@ let
sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==";
};
};
- "@typescript-eslint/visitor-keys-5.21.0" = {
+ "@typescript-eslint/visitor-keys-5.23.0" = {
name = "_at_typescript-eslint_slash_visitor-keys";
packageName = "@typescript-eslint/visitor-keys";
- version = "5.21.0";
+ version = "5.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.21.0.tgz";
- sha512 = "SX8jNN+iHqAF0riZQMkm7e8+POXa/fXw5cxL+gjpyP+FI+JVNhii53EmQgDAfDcBpFekYSlO0fGytMQwRiMQCA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.23.0.tgz";
+ sha512 = "Vd4mFNchU62sJB8pX19ZSPog05B0Y0CE2UxAZPT5k4iqhRYjPnqyY3woMxCd0++t9OTqkgjST+1ydLBi7e2Fvg==";
};
};
"@ungap/promise-all-settled-1.1.2" = {
@@ -10381,31 +10210,31 @@ let
sha1 = "c585c0bdb94210198945c6597e4fe23d6e63e084";
};
};
- "@vercel/build-utils-2.16.0" = {
+ "@vercel/build-utils-2.17.0" = {
name = "_at_vercel_slash_build-utils";
packageName = "@vercel/build-utils";
- version = "2.16.0";
+ version = "2.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-2.16.0.tgz";
- sha512 = "KEkt/uhBCMTca4qtRK9F9/M4kV712rkWKYm2p7xo4HVKrF5e+oSEQKF6zDHzUk0R0YOYY1aL3it01r440YsABA==";
+ url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-2.17.0.tgz";
+ sha512 = "eKHx3nW5MJ21xQC9RQrm+OthmHiV0PHr6bRpJAhsXryE/H6fbNqr1ZxOAQJpq2MaoKzEA/6Lt7J4TjJLd4pkqA==";
};
};
- "@vercel/go-1.4.0" = {
+ "@vercel/go-1.4.1" = {
name = "_at_vercel_slash_go";
packageName = "@vercel/go";
- version = "1.4.0";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/go/-/go-1.4.0.tgz";
- sha512 = "FDMQCeDIZnFYhteNWDQSe2H4SY3AL+u5G+YWHiVfnEjMl449843A8Q2lnG8YVfpQ5iyz6nS2+kUmPCBsfd03Pw==";
+ url = "https://registry.npmjs.org/@vercel/go/-/go-1.4.1.tgz";
+ sha512 = "bfMaPTDWd62GM2h1LXqPdYGwofh+jAeI+s2rNYT4PJVXBXvdulfsIhjhEOBTJ86XACdtkDjUYnRHSR1UpYsRfg==";
};
};
- "@vercel/node-1.15.0" = {
+ "@vercel/node-1.15.1" = {
name = "_at_vercel_slash_node";
packageName = "@vercel/node";
- version = "1.15.0";
+ version = "1.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/node/-/node-1.15.0.tgz";
- sha512 = "1xH2zBiLTPJKJPvF0odYna0ge5h754Ucpr3mdOtnrG2aW/F3DxS9TJ5h0GDwt15QVYfkdKmZ1RbNEj7ZOP4s4g==";
+ url = "https://registry.npmjs.org/@vercel/node/-/node-1.15.1.tgz";
+ sha512 = "78Cki0sOyxXI2qQDyNUpJ1subEyusDEfodiFqQoZL1EF4EpZHrKlBgy0ckVu4L6J3xc2rUtSeEwMHErtx6cuJg==";
};
};
"@vercel/node-bridge-2.2.1" = {
@@ -10417,22 +10246,22 @@ let
sha512 = "GJdBio0nKyxvFwfLcj6CMp2s22d5V6K9tmhmHkQcaiFwdKWK/Pa7jngiO84a09fvX+DFaOtpalJuxQa5LAJ9xQ==";
};
};
- "@vercel/python-2.3.0" = {
+ "@vercel/python-2.3.1" = {
name = "_at_vercel_slash_python";
packageName = "@vercel/python";
- version = "2.3.0";
+ version = "2.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/python/-/python-2.3.0.tgz";
- sha512 = "Cfis3gt3lUhX/eBOAJRfSEXYKpJAzRayt4xxQly96Ey2vvLNaFDBZK6J71o5P+fM2Q9z9FynVwrsY3rcW1lL8Q==";
+ url = "https://registry.npmjs.org/@vercel/python/-/python-2.3.1.tgz";
+ sha512 = "I5H04bRIPiYGMCiLEKM3NPyuU7vL1f8q8PuuBqKVk4l3bOF/iNIMq+mk9WHBS9tJDLK2SKQPeLKrCNFpiwgXgw==";
};
};
- "@vercel/ruby-1.3.3" = {
+ "@vercel/ruby-1.3.4" = {
name = "_at_vercel_slash_ruby";
packageName = "@vercel/ruby";
- version = "1.3.3";
+ version = "1.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.3.tgz";
- sha512 = "kEYtp+jLu9xFmlf6K28elkc6GOkdccGHNJOhqroYOnGmesEU9yXc00A2sQGKTwLLApbmmtTDyoG6PwnzStn5jw==";
+ url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.4.tgz";
+ sha512 = "ctY4FBCeSGfidX1aWdCOeKaqhLASkj4R5SnaC2UCklmS0BRiIDbpiYRmS76+IsAajU4G97eEH9TWrfoC/UHnGA==";
};
};
"@vscode/emmet-helper-2.8.4" = {
@@ -11659,15 +11488,6 @@ let
sha512 = "PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==";
};
};
- "ace.improved-0.2.1" = {
- name = "ace.improved";
- packageName = "ace.improved";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ace.improved/-/ace.improved-0.2.1.tgz";
- sha1 = "4d74628fc431b09cdcaa1fb2b23d1ec83c5d2f32";
- };
- };
"acorn-1.2.2" = {
name = "acorn";
packageName = "acorn";
@@ -12037,13 +11857,13 @@ let
sha512 = "4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==";
};
};
- "aggregate-error-4.0.0" = {
+ "aggregate-error-4.0.1" = {
name = "aggregate-error";
packageName = "aggregate-error";
- version = "4.0.0";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.0.tgz";
- sha512 = "8DGp7zUt1E9k0NE2q4jlXHk+V3ORErmwolEdRz9iV+LKJ40WhMHh92cxAvhqV2I+zEn/gotIoqoMs0NjF3xofg==";
+ url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz";
+ sha512 = "0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==";
};
};
"aglfn-1.0.2" = {
@@ -12748,13 +12568,13 @@ let
sha512 = "y8H99NExU1Sk4TvcaUxTdzfq2SZo6uSj5dyh75XSQvbpH6gdAXIW9MaBcvlNC7n0cVPsidHmOcHOWxJ/pTXGjA==";
};
};
- "apollo-graphql-0.9.6" = {
+ "apollo-graphql-0.9.7" = {
name = "apollo-graphql";
packageName = "apollo-graphql";
- version = "0.9.6";
+ version = "0.9.7";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-graphql/-/apollo-graphql-0.9.6.tgz";
- sha512 = "CrqJxZwfu/U5x0bYYPPluwu1G+oC3jjKFK/EVn9CDcpi4+yD9rAYko/h1iUB5A6VRQhA4Boluc7QexMYQ2tCng==";
+ url = "https://registry.npmjs.org/apollo-graphql/-/apollo-graphql-0.9.7.tgz";
+ sha512 = "bezL9ItUWUGHTm1bI/XzIgiiZbhXpsC7uxk4UxFPmcVJwJsDc3ayZ99oXxAaK+3Rbg/IoqrHckA6CwmkCsbaSA==";
};
};
"apollo-link-1.2.1" = {
@@ -12874,15 +12694,6 @@ let
sha1 = "2af5c2b544a40e15fc1ac55548314397460845d0";
};
};
- "app-path-3.3.0" = {
- name = "app-path";
- packageName = "app-path";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/app-path/-/app-path-3.3.0.tgz";
- sha512 = "EAgEXkdcxH1cgEePOSsmUtw9ItPl0KTxnh/pj9ZbhvbKbij9x0oX6PWpGnorDr0DS5AosLgoa5n3T/hZmKQpYA==";
- };
- };
"app-root-path-3.0.0" = {
name = "app-root-path";
packageName = "app-root-path";
@@ -13414,13 +13225,13 @@ let
sha1 = "9e528762b4a9066ad163a6962a364418e9626ece";
};
};
- "array-includes-3.1.4" = {
+ "array-includes-3.1.5" = {
name = "array-includes";
packageName = "array-includes";
- version = "3.1.4";
+ version = "3.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz";
- sha512 = "ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==";
+ url = "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz";
+ sha512 = "iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==";
};
};
"array-initial-1.1.0" = {
@@ -13747,13 +13558,13 @@ let
sha512 = "+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==";
};
};
- "asn1js-2.4.0" = {
+ "asn1js-3.0.1" = {
name = "asn1js";
packageName = "asn1js";
- version = "2.4.0";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/asn1js/-/asn1js-2.4.0.tgz";
- sha512 = "PvZC0FMyMut8aOnR2jAEGSkmRtHIUYPe9amUEnGjr9TdnUmsfoOkjrvUkOEU9mzpYBR1HyO9bF+8U1cLTMMHhQ==";
+ url = "https://registry.npmjs.org/asn1js/-/asn1js-3.0.1.tgz";
+ sha512 = "7RX/y1foVCz6QXITV3IycqP7FMAC/gbd680gHpO5xGWn8vri1mCJxRJuMFmmkXDQt2/ToeYAcf8VrkNu2cLW+A==";
};
};
"assert-1.5.0" = {
@@ -14341,13 +14152,13 @@ let
sha512 = "545VawhsCQ7yEx9jZKV0hTTW3FS/waycISWMvnNwqRfpU9o4FQ4DSu3je7ekn5yFKM+91dxJC+IfJgtIV8WaUw==";
};
};
- "aws-sdk-2.1125.0" = {
+ "aws-sdk-2.1134.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.1125.0";
+ version = "2.1134.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1125.0.tgz";
- sha512 = "2syNkKDqDcDmB/chc61a5xx+KYzaarLs1/KshE0b1Opp2oSq2FARyUBbk59HgwKaDUB61uPF33ZG9sHiIVx2hQ==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1134.0.tgz";
+ sha512 = "CvIcPSDzKFn4LRmk6GcQZYWtCxD/FwbbC1yaslvmpOYP8CndCmdz1MHMOPy/QyUyrH2WnUrVTAP2WdWqq6oCjQ==";
};
};
"aws-sign2-0.6.0" = {
@@ -14494,87 +14305,6 @@ let
sha512 = "poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==";
};
};
- "babel-eslint-10.0.3" = {
- name = "babel-eslint";
- packageName = "babel-eslint";
- version = "10.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.0.3.tgz";
- sha512 = "z3U7eMY6r/3f3/JB9mTsLjyxrv0Yb1zb8PCWCLpguxfCzBIZUwy23R1t/XKewP+8mEN2Ck8Dtr4q20z6ce6SoA==";
- };
- };
- "babel-helper-evaluate-path-0.5.0" = {
- name = "babel-helper-evaluate-path";
- packageName = "babel-helper-evaluate-path";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.5.0.tgz";
- sha512 = "mUh0UhS607bGh5wUMAQfOpt2JX2ThXMtppHRdRU1kL7ZLRWIXxoV2UIV1r2cAeeNeU1M5SB5/RSUgUxrK8yOkA==";
- };
- };
- "babel-helper-flip-expressions-0.4.3" = {
- name = "babel-helper-flip-expressions";
- packageName = "babel-helper-flip-expressions";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.4.3.tgz";
- sha1 = "3696736a128ac18bc25254b5f40a22ceb3c1d3fd";
- };
- };
- "babel-helper-is-nodes-equiv-0.0.1" = {
- name = "babel-helper-is-nodes-equiv";
- packageName = "babel-helper-is-nodes-equiv";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz";
- sha1 = "34e9b300b1479ddd98ec77ea0bbe9342dfe39684";
- };
- };
- "babel-helper-is-void-0-0.4.3" = {
- name = "babel-helper-is-void-0";
- packageName = "babel-helper-is-void-0";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-helper-is-void-0/-/babel-helper-is-void-0-0.4.3.tgz";
- sha1 = "7d9c01b4561e7b95dbda0f6eee48f5b60e67313e";
- };
- };
- "babel-helper-mark-eval-scopes-0.4.3" = {
- name = "babel-helper-mark-eval-scopes";
- packageName = "babel-helper-mark-eval-scopes";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.4.3.tgz";
- sha1 = "d244a3bef9844872603ffb46e22ce8acdf551562";
- };
- };
- "babel-helper-remove-or-void-0.4.3" = {
- name = "babel-helper-remove-or-void";
- packageName = "babel-helper-remove-or-void";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.4.3.tgz";
- sha1 = "a4f03b40077a0ffe88e45d07010dee241ff5ae60";
- };
- };
- "babel-helper-to-multiple-sequence-expressions-0.5.0" = {
- name = "babel-helper-to-multiple-sequence-expressions";
- packageName = "babel-helper-to-multiple-sequence-expressions";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.5.0.tgz";
- sha512 = "m2CvfDW4+1qfDdsrtf4dwOslQC3yhbgyBFptncp4wvtdrDHqueW7slsYv4gArie056phvQFhT2nRcGS4bnm6mA==";
- };
- };
- "babel-jest-25.5.1" = {
- name = "babel-jest";
- packageName = "babel-jest";
- version = "25.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-jest/-/babel-jest-25.5.1.tgz";
- sha512 = "9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==";
- };
- };
"babel-loader-8.1.0" = {
name = "babel-loader";
packageName = "babel-loader";
@@ -14602,24 +14332,6 @@ let
sha512 = "jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==";
};
};
- "babel-plugin-istanbul-6.1.1" = {
- name = "babel-plugin-istanbul";
- packageName = "babel-plugin-istanbul";
- version = "6.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz";
- sha512 = "Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==";
- };
- };
- "babel-plugin-jest-hoist-25.5.0" = {
- name = "babel-plugin-jest-hoist";
- packageName = "babel-plugin-jest-hoist";
- version = "25.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.5.0.tgz";
- sha512 = "u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g==";
- };
- };
"babel-plugin-jsx-pragmatic-1.0.2" = {
name = "babel-plugin-jsx-pragmatic";
packageName = "babel-plugin-jsx-pragmatic";
@@ -14638,105 +14350,6 @@ let
sha512 = "SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==";
};
};
- "babel-plugin-minify-builtins-0.5.0" = {
- name = "babel-plugin-minify-builtins";
- packageName = "babel-plugin-minify-builtins";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.5.0.tgz";
- sha512 = "wpqbN7Ov5hsNwGdzuzvFcjgRlzbIeVv1gMIlICbPj0xkexnfoIDe7q+AZHMkQmAE/F9R5jkrB6TLfTegImlXag==";
- };
- };
- "babel-plugin-minify-constant-folding-0.5.0" = {
- name = "babel-plugin-minify-constant-folding";
- packageName = "babel-plugin-minify-constant-folding";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.5.0.tgz";
- sha512 = "Vj97CTn/lE9hR1D+jKUeHfNy+m1baNiJ1wJvoGyOBUx7F7kJqDZxr9nCHjO/Ad+irbR3HzR6jABpSSA29QsrXQ==";
- };
- };
- "babel-plugin-minify-dead-code-elimination-0.5.1" = {
- name = "babel-plugin-minify-dead-code-elimination";
- packageName = "babel-plugin-minify-dead-code-elimination";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.5.1.tgz";
- sha512 = "x8OJOZIrRmQBcSqxBcLbMIK8uPmTvNWPXH2bh5MDCW1latEqYiRMuUkPImKcfpo59pTUB2FT7HfcgtG8ZlR5Qg==";
- };
- };
- "babel-plugin-minify-flip-comparisons-0.4.3" = {
- name = "babel-plugin-minify-flip-comparisons";
- packageName = "babel-plugin-minify-flip-comparisons";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.4.3.tgz";
- sha1 = "00ca870cb8f13b45c038b3c1ebc0f227293c965a";
- };
- };
- "babel-plugin-minify-guarded-expressions-0.4.4" = {
- name = "babel-plugin-minify-guarded-expressions";
- packageName = "babel-plugin-minify-guarded-expressions";
- version = "0.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.4.4.tgz";
- sha512 = "RMv0tM72YuPPfLT9QLr3ix9nwUIq+sHT6z8Iu3sLbqldzC1Dls8DPCywzUIzkTx9Zh1hWX4q/m9BPoPed9GOfA==";
- };
- };
- "babel-plugin-minify-infinity-0.4.3" = {
- name = "babel-plugin-minify-infinity";
- packageName = "babel-plugin-minify-infinity";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.4.3.tgz";
- sha1 = "dfb876a1b08a06576384ef3f92e653ba607b39ca";
- };
- };
- "babel-plugin-minify-mangle-names-0.5.0" = {
- name = "babel-plugin-minify-mangle-names";
- packageName = "babel-plugin-minify-mangle-names";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.5.0.tgz";
- sha512 = "3jdNv6hCAw6fsX1p2wBGPfWuK69sfOjfd3zjUXkbq8McbohWy23tpXfy5RnToYWggvqzuMOwlId1PhyHOfgnGw==";
- };
- };
- "babel-plugin-minify-numeric-literals-0.4.3" = {
- name = "babel-plugin-minify-numeric-literals";
- packageName = "babel-plugin-minify-numeric-literals";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.4.3.tgz";
- sha1 = "8e4fd561c79f7801286ff60e8c5fd9deee93c0bc";
- };
- };
- "babel-plugin-minify-replace-0.5.0" = {
- name = "babel-plugin-minify-replace";
- packageName = "babel-plugin-minify-replace";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.5.0.tgz";
- sha512 = "aXZiaqWDNUbyNNNpWs/8NyST+oU7QTpK7J9zFEFSA0eOmtUNMU3fczlTTTlnCxHmq/jYNFEmkkSG3DDBtW3Y4Q==";
- };
- };
- "babel-plugin-minify-simplify-0.5.1" = {
- name = "babel-plugin-minify-simplify";
- packageName = "babel-plugin-minify-simplify";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.5.1.tgz";
- sha512 = "OSYDSnoCxP2cYDMk9gxNAed6uJDiDz65zgL6h8d3tm8qXIagWGMLWhqysT6DY3Vs7Fgq7YUDcjOomhVUb+xX6A==";
- };
- };
- "babel-plugin-minify-type-constructors-0.4.3" = {
- name = "babel-plugin-minify-type-constructors";
- packageName = "babel-plugin-minify-type-constructors";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.4.3.tgz";
- sha1 = "1bc6f15b87f7ab1085d42b330b717657a2156500";
- };
- };
"babel-plugin-polyfill-corejs2-0.3.1" = {
name = "babel-plugin-polyfill-corejs2";
packageName = "babel-plugin-polyfill-corejs2";
@@ -14773,15 +14386,6 @@ let
sha512 = "i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==";
};
};
- "babel-plugin-syntax-flow-6.18.0" = {
- name = "babel-plugin-syntax-flow";
- packageName = "babel-plugin-syntax-flow";
- version = "6.18.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz";
- sha1 = "4c3ab20a2af26aa20cd25995c398c4eb70310c8d";
- };
- };
"babel-plugin-syntax-jsx-6.18.0" = {
name = "babel-plugin-syntax-jsx";
packageName = "babel-plugin-syntax-jsx";
@@ -14791,60 +14395,6 @@ let
sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946";
};
};
- "babel-plugin-transform-flow-strip-types-6.22.0" = {
- name = "babel-plugin-transform-flow-strip-types";
- packageName = "babel-plugin-transform-flow-strip-types";
- version = "6.22.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz";
- sha1 = "84cb672935d43714fdc32bce84568d87441cf7cf";
- };
- };
- "babel-plugin-transform-inline-consecutive-adds-0.4.3" = {
- name = "babel-plugin-transform-inline-consecutive-adds";
- packageName = "babel-plugin-transform-inline-consecutive-adds";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.4.3.tgz";
- sha1 = "323d47a3ea63a83a7ac3c811ae8e6941faf2b0d1";
- };
- };
- "babel-plugin-transform-member-expression-literals-6.9.4" = {
- name = "babel-plugin-transform-member-expression-literals";
- packageName = "babel-plugin-transform-member-expression-literals";
- version = "6.9.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.9.4.tgz";
- sha1 = "37039c9a0c3313a39495faac2ff3a6b5b9d038bf";
- };
- };
- "babel-plugin-transform-merge-sibling-variables-6.9.4" = {
- name = "babel-plugin-transform-merge-sibling-variables";
- packageName = "babel-plugin-transform-merge-sibling-variables";
- version = "6.9.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.9.4.tgz";
- sha1 = "85b422fc3377b449c9d1cde44087203532401dae";
- };
- };
- "babel-plugin-transform-minify-booleans-6.9.4" = {
- name = "babel-plugin-transform-minify-booleans";
- packageName = "babel-plugin-transform-minify-booleans";
- version = "6.9.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.9.4.tgz";
- sha1 = "acbb3e56a3555dd23928e4b582d285162dd2b198";
- };
- };
- "babel-plugin-transform-property-literals-6.9.4" = {
- name = "babel-plugin-transform-property-literals";
- packageName = "babel-plugin-transform-property-literals";
- version = "6.9.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.9.4.tgz";
- sha1 = "98c1d21e255736573f93ece54459f6ce24985d39";
- };
- };
"babel-plugin-transform-react-remove-prop-types-0.4.24" = {
name = "babel-plugin-transform-react-remove-prop-types";
packageName = "babel-plugin-transform-react-remove-prop-types";
@@ -14854,60 +14404,6 @@ let
sha512 = "eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==";
};
};
- "babel-plugin-transform-regexp-constructors-0.4.3" = {
- name = "babel-plugin-transform-regexp-constructors";
- packageName = "babel-plugin-transform-regexp-constructors";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.4.3.tgz";
- sha1 = "58b7775b63afcf33328fae9a5f88fbd4fb0b4965";
- };
- };
- "babel-plugin-transform-remove-console-6.9.4" = {
- name = "babel-plugin-transform-remove-console";
- packageName = "babel-plugin-transform-remove-console";
- version = "6.9.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.9.4.tgz";
- sha1 = "b980360c067384e24b357a588d807d3c83527780";
- };
- };
- "babel-plugin-transform-remove-debugger-6.9.4" = {
- name = "babel-plugin-transform-remove-debugger";
- packageName = "babel-plugin-transform-remove-debugger";
- version = "6.9.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.9.4.tgz";
- sha1 = "42b727631c97978e1eb2d199a7aec84a18339ef2";
- };
- };
- "babel-plugin-transform-remove-undefined-0.5.0" = {
- name = "babel-plugin-transform-remove-undefined";
- packageName = "babel-plugin-transform-remove-undefined";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.5.0.tgz";
- sha512 = "+M7fJYFaEE/M9CXa0/IRkDbiV3wRELzA1kKQFCJ4ifhrzLKn/9VCCgj9OFmYWwBd8IB48YdgPkHYtbYq+4vtHQ==";
- };
- };
- "babel-plugin-transform-simplify-comparison-operators-6.9.4" = {
- name = "babel-plugin-transform-simplify-comparison-operators";
- packageName = "babel-plugin-transform-simplify-comparison-operators";
- version = "6.9.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.9.4.tgz";
- sha1 = "f62afe096cab0e1f68a2d753fdf283888471ceb9";
- };
- };
- "babel-plugin-transform-undefined-to-void-6.9.4" = {
- name = "babel-plugin-transform-undefined-to-void";
- packageName = "babel-plugin-transform-undefined-to-void";
- version = "6.9.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.4.tgz";
- sha1 = "be241ca81404030678b748717322b89d0c8fe280";
- };
- };
"babel-plugin-universal-import-4.0.2" = {
name = "babel-plugin-universal-import";
packageName = "babel-plugin-universal-import";
@@ -14917,33 +14413,6 @@ let
sha512 = "VTtHsmvwRBkX3yLK4e+pFwk88BC6iNFqS2J8CCx2ddQc7RjXoRhuXXIgYCng21DYNty9IicCwDdTDjdr+TM7eg==";
};
};
- "babel-preset-current-node-syntax-0.1.4" = {
- name = "babel-preset-current-node-syntax";
- packageName = "babel-preset-current-node-syntax";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz";
- sha512 = "5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==";
- };
- };
- "babel-preset-jest-25.5.0" = {
- name = "babel-preset-jest";
- packageName = "babel-preset-jest";
- version = "25.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-25.5.0.tgz";
- sha512 = "8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==";
- };
- };
- "babel-preset-minify-0.5.1" = {
- name = "babel-preset-minify";
- packageName = "babel-preset-minify";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-preset-minify/-/babel-preset-minify-0.5.1.tgz";
- sha512 = "1IajDumYOAPYImkHbrKeiN5AKKP9iOmRoO2IPbIuVp0j2iuCcj0n7P260z38siKMZZ+85d3mJZdtW8IgOv+Tzg==";
- };
- };
"babel-runtime-6.26.0" = {
name = "babel-runtime";
packageName = "babel-runtime";
@@ -15727,13 +15196,13 @@ let
sha1 = "0e655c9b9c2435eaab68bf4027226d2b55a34524";
};
};
- "bip174-2.0.1" = {
+ "bip174-2.1.0" = {
name = "bip174";
packageName = "bip174";
- version = "2.0.1";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bip174/-/bip174-2.0.1.tgz";
- sha512 = "i3X26uKJOkDTAalYAp0Er+qGMDhrbbh2o93/xiPyAN2s25KrClSpe3VXo/7mNJoqA5qfko8rLS2l3RWZgYmjKQ==";
+ url = "https://registry.npmjs.org/bip174/-/bip174-2.1.0.tgz";
+ sha512 = "lkc0XyiX9E9KiVAS1ZiOqK1xfiwvf4FXDDdkDq5crcDzOq+xGytY+14qCsqz7kCiy8rpN1CRNfacRhf9G3JNSA==";
};
};
"bip32-2.0.6" = {
@@ -15916,13 +15385,13 @@ let
sha1 = "ffd2eabc141d36ed5c1817df7e992f91fd7fc65c";
};
};
- "bittorrent-tracker-9.18.5" = {
+ "bittorrent-tracker-9.18.6" = {
name = "bittorrent-tracker";
packageName = "bittorrent-tracker";
- version = "9.18.5";
+ version = "9.18.6";
src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.18.5.tgz";
- sha512 = "yh/lGHLNuTNZJJlUAmikYOX+njHIr8BFqCxJiXSQ3FaEmhj2xhe1OXF9DcrHpmMYmAQEKWC6+P/uNWGRKdkH9g==";
+ url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.18.6.tgz";
+ sha512 = "Exd6udzcnquiE6n9G2Jge70CsV2xI8PuQoLOnuNtFX5FPTALN/MGDxpAMVSCnvb9wMe/T9+FdDHk8TaCbKPIGw==";
};
};
"bitwise-xor-0.0.0" = {
@@ -16600,6 +16069,15 @@ let
sha512 = "PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==";
};
};
+ "bplist-parser-0.3.2" = {
+ name = "bplist-parser";
+ packageName = "bplist-parser";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz";
+ sha512 = "apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==";
+ };
+ };
"brace-expansion-1.1.11" = {
name = "brace-expansion";
packageName = "brace-expansion";
@@ -17357,13 +16835,13 @@ let
sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f";
};
};
- "builtin-modules-3.2.0" = {
+ "builtin-modules-3.3.0" = {
name = "builtin-modules";
packageName = "builtin-modules";
- version = "3.2.0";
+ version = "3.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz";
- sha512 = "lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==";
+ url = "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz";
+ sha512 = "zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==";
};
};
"builtin-status-codes-3.0.0" = {
@@ -18023,13 +17501,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001334" = {
+ "caniuse-lite-1.0.30001340" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001334";
+ version = "1.0.30001340";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001334.tgz";
- sha512 = "kbaCEBRRVSoeNs74sCuq92MJyGrMtjWVfhltoHUCW4t4pXFvGjUBrfo47weBRViHkiV3eBYyIsfl956NtHGazw==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001340.tgz";
+ sha512 = "jUNz+a9blQTQVu4uFcn17uAD8IDizPzQkIKh3LCJfg9BkyIqExYYdyc/ZSlWUSKb8iYiXxKsxbv4zYSvkqjrxw==";
};
};
"canvas-2.9.1" = {
@@ -18059,15 +17537,6 @@ let
sha1 = "51ad87353f1936ffd77f2f21c74633a4dea88801";
};
};
- "capture-exit-2.0.0" = {
- name = "capture-exit";
- packageName = "capture-exit";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz";
- sha512 = "PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==";
- };
- };
"capture-stack-trace-1.0.1" = {
name = "capture-stack-trace";
packageName = "capture-stack-trace";
@@ -18203,22 +17672,22 @@ let
sha512 = "5brCXdY69cJYff1njLMhbpj2lO5EAeeXbaR4l7m+vb/BIN/WpgiV9QatNgcxLqalcILnzGyDzlMB+TaCp//Rqw==";
};
};
- "cdk8s-plus-22-1.0.0-beta.218" = {
+ "cdk8s-plus-22-1.0.0-beta.220" = {
name = "cdk8s-plus-22";
packageName = "cdk8s-plus-22";
- version = "1.0.0-beta.218";
+ version = "1.0.0-beta.220";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.218.tgz";
- sha512 = "MpodeEotALdHVUie7ioxvs35WHN/2E31Hw/TTWYcXyrcBMg8g+x9y4u96ZWpsCfHE+QCaXCQ1jAGSQta2dE9AA==";
+ url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.220.tgz";
+ sha512 = "8oY3HE5LTmj1Q8z5cCfUT/OOl/rZu/zb6zkY7XiMsuBfUDoW2Tmr1N45VyvxwwB64tOlpDMHbETcm+sRz6BNRg==";
};
};
- "cdktf-0.10.3" = {
+ "cdktf-0.10.4" = {
name = "cdktf";
packageName = "cdktf";
- version = "0.10.3";
+ version = "0.10.4";
src = fetchurl {
- url = "https://registry.npmjs.org/cdktf/-/cdktf-0.10.3.tgz";
- sha512 = "Ja9YmHOZz1jqAbbZjK0V2IDsOJUc6MI38nlBu7wSA+ajmUmYOhgW331kxvT+q6nRwO06iqkUtRsR6FfndQ1xvA==";
+ url = "https://registry.npmjs.org/cdktf/-/cdktf-0.10.4.tgz";
+ sha512 = "jaNfN+DXGLGVsCWtAe9I6a+sYUPMqTf2e5oIvkk/j3qJBZTUKeuUcVFrjlvbLPsN3YkfNHwZQTK3mdJsIx3MdA==";
};
};
"center-align-0.1.3" = {
@@ -18851,13 +18320,13 @@ let
sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==";
};
};
- "ci-info-3.3.0" = {
+ "ci-info-3.3.1" = {
name = "ci-info";
packageName = "ci-info";
- version = "3.3.0";
+ version = "3.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz";
- sha512 = "riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==";
+ url = "https://registry.npmjs.org/ci-info/-/ci-info-3.3.1.tgz";
+ sha512 = "SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==";
};
};
"cint-8.2.1" = {
@@ -19787,13 +19256,13 @@ let
sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg==";
};
};
- "codemaker-1.57.0" = {
+ "codemaker-1.58.0" = {
name = "codemaker";
packageName = "codemaker";
- version = "1.57.0";
+ version = "1.58.0";
src = fetchurl {
- url = "https://registry.npmjs.org/codemaker/-/codemaker-1.57.0.tgz";
- sha512 = "M2/8sfQxQ9IkN2tsbOIwHn9U6KqG/mCRsg14muK8HIZH5oqjgc8Ucfqboqlrye8+9kyuQLieIhABiRV2gqeEDg==";
+ url = "https://registry.npmjs.org/codemaker/-/codemaker-1.58.0.tgz";
+ sha512 = "hV9snVkPiXjHKsYpZD7tTb28LHeXCkvZxiwSph9iWTJJP7+fP9s2inDiHdMHF+Nq+o+JLXKWkE2DP5iNOHAtuA==";
};
};
"codepage-1.4.0" = {
@@ -20507,13 +19976,13 @@ let
sha1 = "8a47901700238e4fc32269771230226f24b415a9";
};
};
- "compress-brotli-1.3.6" = {
+ "compress-brotli-1.3.8" = {
name = "compress-brotli";
packageName = "compress-brotli";
- version = "1.3.6";
+ version = "1.3.8";
src = fetchurl {
- url = "https://registry.npmjs.org/compress-brotli/-/compress-brotli-1.3.6.tgz";
- sha512 = "au99/GqZtUtiCBliqLFbWlhnCxn+XSYjwZ77q6mKN4La4qOXDoLVPZ50iXr0WmAyMxl8yqoq3Yq4OeQNPPkyeQ==";
+ url = "https://registry.npmjs.org/compress-brotli/-/compress-brotli-1.3.8.tgz";
+ sha512 = "lVcQsjhxhIXsuupfy9fmZUFtAIdBmXA7EGY6GBdgZ++qkM9zG4YFT8iU7FoBxzryNDMOpD1HIFHUSX4D87oqhQ==";
};
};
"compress-commons-2.1.1" = {
@@ -20849,22 +20318,22 @@ let
sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
};
};
- "constructs-10.0.130" = {
+ "constructs-10.1.7" = {
name = "constructs";
packageName = "constructs";
- version = "10.0.130";
+ version = "10.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-10.0.130.tgz";
- sha512 = "9LYBePJHHnuXCr42eN0T4+O8xXHRxxak6G/UX+avt8ZZ/SNE9HFbFD8a+FKP8ixSNzzaEamDMswrMwPPTtU8cA==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-10.1.7.tgz";
+ sha512 = "U4zMM7Iqa81hzLSfof9IW9R7kUWSMdhzV2JS8lXGISRFXljZrd4qwzYxhSO/VMB+CS24Tt0/YYLyNxET+6/3Mg==";
};
};
- "constructs-3.3.283" = {
+ "constructs-3.4.7" = {
name = "constructs";
packageName = "constructs";
- version = "3.3.283";
+ version = "3.4.7";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-3.3.283.tgz";
- sha512 = "0LbWDLDPE6sa19F87kTg/a+7ZhO6YXaGs3JYPYcYcd1vzastOUbJQ+GY9O7BweDMLj0Hcw4WP33qV0SFmGnipQ==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-3.4.7.tgz";
+ sha512 = "TnYJY+u7+TP/p5/sZOzBrPGNA/Aa3MDlqpS/+98gvWWndRwnLy0VFPX3HDS/gvVMa0WcE3U59heFXnxtQvSbqA==";
};
};
"consume-http-header-1.0.0" = {
@@ -21201,13 +20670,13 @@ let
sha1 = "7e3e48bbe6d997b1417ddca2868204b4d3d85715";
};
};
- "convict-6.2.2" = {
+ "convict-6.2.3" = {
name = "convict";
packageName = "convict";
- version = "6.2.2";
+ version = "6.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/convict/-/convict-6.2.2.tgz";
- sha512 = "3MsROJiEFN3BAzeFit1t87t7EUFzd44MNd13MLSikV2dsnDl7znwKgtYPPONtnDzxiDW0nBAsxVhSRNrjUrTTg==";
+ url = "https://registry.npmjs.org/convict/-/convict-6.2.3.tgz";
+ sha512 = "mTY04Qr7WrqiXifdeUYXr4/+Te4hPFWDvz6J2FVIKCLc2XBhq63VOSSYAKJ+unhZAYOAjmEdNswTOeHt7s++pQ==";
};
};
"cookie-0.0.4" = {
@@ -21471,31 +20940,31 @@ let
sha512 = "YUdI3fFu4TF/2WykQ2xzSiTQdldLB4KVuL9WeAy5XONZYt5Cun/fpQvctoKbCgvPhmzADeesTk/j2Rdx77AcKQ==";
};
};
- "core-js-3.22.3" = {
+ "core-js-3.22.5" = {
name = "core-js";
packageName = "core-js";
- version = "3.22.3";
+ version = "3.22.5";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.22.3.tgz";
- sha512 = "1t+2a/d2lppW1gkLXx3pKPVGbBdxXAkqztvWb1EJ8oF8O2gIGiytzflNiFEehYwVK/t2ryUsGBoOFFvNx95mbg==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.22.5.tgz";
+ sha512 = "VP/xYuvJ0MJWRAobcmQ8F2H6Bsn+s7zqAAjFaHGBMc5AQm7zaelhD1LGduFn2EehEcQcU+br6t+fwbpQ5d1ZWA==";
};
};
- "core-js-compat-3.22.3" = {
+ "core-js-compat-3.22.5" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.22.3";
+ version = "3.22.5";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.3.tgz";
- sha512 = "wliMbvPI2idgFWpFe7UEyHMvu6HWgW8WA+HnDRtgzoSDYvXFMpoGX1H3tPDDXrcfUSyXafCLDd7hOeMQHEZxGw==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.5.tgz";
+ sha512 = "rEF75n3QtInrYICvJjrAgV03HwKiYvtKHdPtaba1KucG+cNZ4NJnH9isqt979e67KZlhpbCOTwnsvnIr+CVeOg==";
};
};
- "core-js-pure-3.22.3" = {
+ "core-js-pure-3.22.5" = {
name = "core-js-pure";
packageName = "core-js-pure";
- version = "3.22.3";
+ version = "3.22.5";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.3.tgz";
- sha512 = "oN88zz7nmKROMy8GOjs+LN+0LedIvbMdnB5XsTlhcOg1WGARt9l0LFg0zohdoFmCsEZ1h2ZbSQ6azj3M+vhzwQ==";
+ url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.5.tgz";
+ sha512 = "8xo9R00iYD7TcV7OrC98GwxiUEAabVWO3dix+uyWjnYrx9fyASLlIX+f/3p5dW5qByaP2bcZ8X/T47s55et/tA==";
};
};
"core-util-is-1.0.2" = {
@@ -21741,13 +21210,13 @@ let
sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6";
};
};
- "create-gatsby-2.13.0" = {
+ "create-gatsby-2.14.0" = {
name = "create-gatsby";
packageName = "create-gatsby";
- version = "2.13.0";
+ version = "2.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.13.0.tgz";
- sha512 = "y2v+O1ydY0jfGevbW7oU/UA+gp5ljBTRwjdc4DyDdvS+SLnbHUp586j0rgaT/6cbY6CxfDgyGJxiAzYxuB5dlg==";
+ url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.14.0.tgz";
+ sha512 = "Q92Omw5zPTKRrv5XDcsIVzBqSIHwl3T1lpOjQhSrQd42LDKUFAuE8zf/kTWT0QXo9cacBC+diUWIRxkqIZVKzQ==";
};
};
"create-graphback-1.0.1" = {
@@ -21840,15 +21309,6 @@ let
sha512 = "1yHhtcfAd1r4nwQgknowuUNfIT9E8dOMMspC36g45dN+iD1blloi7xp8X/xAIDnjHWyt1uQ8PHk2fkNaym7soQ==";
};
};
- "cross-env-7.0.0" = {
- name = "cross-env";
- packageName = "cross-env";
- version = "7.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cross-env/-/cross-env-7.0.0.tgz";
- sha512 = "rV6M9ldNgmwP7bx5u6rZsTbYidzwvrwIYZnT08hSGLcQCcggofgFW+sNe7IhA1SRauPS0QuLbbX+wdNtpqE5CQ==";
- };
- };
"cross-fetch-3.0.6" = {
name = "cross-fetch";
packageName = "cross-fetch";
@@ -21930,13 +21390,13 @@ let
sha512 = "mkLtJJcYbDCxEG7Js6eUnUNndWjyUZwJ3H7bErmmtOYU/Zb99DyUkpamuIZE0b3bhmJyZ7D90uS6f+CGxRRjOw==";
};
};
- "cross-undici-fetch-0.3.3" = {
+ "cross-undici-fetch-0.4.3" = {
name = "cross-undici-fetch";
packageName = "cross-undici-fetch";
- version = "0.3.3";
+ version = "0.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cross-undici-fetch/-/cross-undici-fetch-0.3.3.tgz";
- sha512 = "pNariiu7YGO/00sFPAUxgQUDEJcoYbalF4XwmA6p2fYICbcv5y9FsybnuaNGZ2wEk49HhiN8xaFt7s+Lk4EQ/w==";
+ url = "https://registry.npmjs.org/cross-undici-fetch/-/cross-undici-fetch-0.4.3.tgz";
+ sha512 = "mv1jusEQsFnBHEBkpFaYROKAzAWyuW8ZyN48NcyqkjLGRrscMKuFRmUigUrkE/pdprQZjNTQQ/aWJKe6F4tzTA==";
};
};
"crossroads-0.12.2" = {
@@ -22011,49 +21471,49 @@ let
sha512 = "v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==";
};
};
- "cspell-gitignore-5.19.7" = {
+ "cspell-gitignore-5.20.0" = {
name = "cspell-gitignore";
packageName = "cspell-gitignore";
- version = "5.19.7";
+ version = "5.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.19.7.tgz";
- sha512 = "rEqlN6wigNj4P/4Z3QCI1P56KhKkPtXNBpGMXC5CbxIK/NTtn3cLaqHKIZp92pypEnU077lxSCSqRRYCPbg/6A==";
+ url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.20.0.tgz";
+ sha512 = "oWzoHcaidX6jFON6vwiH3cA1HqkGmawD1DWt+fPWKrea9/SuTcvFxm+RbqO4DjwXEAMIczyPOWo+SCM0VbcCrA==";
};
};
- "cspell-glob-5.19.7" = {
+ "cspell-glob-5.20.0" = {
name = "cspell-glob";
packageName = "cspell-glob";
- version = "5.19.7";
+ version = "5.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.19.7.tgz";
- sha512 = "fqlF7oqYTT2A3SRfQr7gzN21fwPoRO9IGKec1L3QeGkni5UPDxGrM2a5z+oLaYs2GN5pEf29BXVlN7dq0jVxIg==";
+ url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.20.0.tgz";
+ sha512 = "eyo8NYH4GapHxfilMarwvf1HIyGWT3gWuFlYkmQjYVx3KjzmfR1Y1x9S068wmwjp9kKCu9T6Vj71EGG+9R59Lw==";
};
};
- "cspell-io-5.19.7" = {
+ "cspell-io-5.20.0" = {
name = "cspell-io";
packageName = "cspell-io";
- version = "5.19.7";
+ version = "5.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-io/-/cspell-io-5.19.7.tgz";
- sha512 = "SEy8XkuOhvwleGjh336EBYj5HlH1J5FrCI5GxxGiU2g8zvWlBPQmaCfQPPO4tnDrrXtK76rZvolBu1jfCmWwQA==";
+ url = "https://registry.npmjs.org/cspell-io/-/cspell-io-5.20.0.tgz";
+ sha512 = "wgqqpVIhtMh+/+3YfHt8cDfrD7OLF+xQlStlURj8AJwEJ0xu16zyI9S5zcig+83+0QyzuMdxfZiMgbdQxWEvOg==";
};
};
- "cspell-lib-5.19.7" = {
+ "cspell-lib-5.20.0" = {
name = "cspell-lib";
packageName = "cspell-lib";
- version = "5.19.7";
+ version = "5.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.19.7.tgz";
- sha512 = "d4ewH1RBgcBE9NqAh0FexmVQ6YvkDQv9XOysskeDH+G9wm975owENUU/mBd8AyBt2b4YXL/FoLtaKd/7MRoNDA==";
+ url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.20.0.tgz";
+ sha512 = "Fc7+3ExF2pNS8BsQTXSMkhR6ITbpyiMQf+y4ZH/aBml09+O6lrbj4j2tJx/oR4XvDEA8uQkV/5lMGdU+otC1KQ==";
};
};
- "cspell-trie-lib-5.19.7" = {
+ "cspell-trie-lib-5.20.0" = {
name = "cspell-trie-lib";
packageName = "cspell-trie-lib";
- version = "5.19.7";
+ version = "5.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.19.7.tgz";
- sha512 = "qr0HS2hGuyIQhDGG5li0nqIjVi039iPRHR8wpeDoSO0YIBCll22i/VlvW3CSmqXLaP5RRoAc9txiZkIGob6DkQ==";
+ url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.20.0.tgz";
+ sha512 = "ET95dJh+OJ04PdLI9dKqAa+dDu47tXcUxCR6uKiZ+qZ18v1Zl986s8q89m9c+xpo7Leqh0rF6Zsw3M9Cjy6Jhw==";
};
};
"csrf-3.1.0" = {
@@ -22632,15 +22092,6 @@ let
sha1 = "596e9698fd0c80e12038c2b82d6eb1b35b6224d9";
};
};
- "cypress-image-snapshot-4.0.1" = {
- name = "cypress-image-snapshot";
- packageName = "cypress-image-snapshot";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cypress-image-snapshot/-/cypress-image-snapshot-4.0.1.tgz";
- sha512 = "PBpnhX/XItlx3/DAk5ozsXQHUi72exybBNH5Mpqj1DVmjq+S5Jd9WE5CRa4q5q0zuMZb2V2VpXHth6MjFpgj9Q==";
- };
- };
"d-1.0.1" = {
name = "d";
packageName = "d";
@@ -23667,13 +23118,13 @@ let
sha512 = "2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==";
};
};
- "dayjs-1.11.1" = {
+ "dayjs-1.11.2" = {
name = "dayjs";
packageName = "dayjs";
- version = "1.11.1";
+ version = "1.11.2";
src = fetchurl {
- url = "https://registry.npmjs.org/dayjs/-/dayjs-1.11.1.tgz";
- sha512 = "ER7EjqVAMkRRsxNCC5YqJ9d9VQYuWdGt7aiH2qA5R5wt8ZmWaP2dLUSIK6y/kVzLMlmh1Tvu5xUf4M/wdGJ5KA==";
+ url = "https://registry.npmjs.org/dayjs/-/dayjs-1.11.2.tgz";
+ sha512 = "F4LXf1OeU9hrSYRPTTj/6FbO4HTjPKXvEIC1P2kcnFurViINCVk3ZV0xAS3XVx9MkMsXbbqlK6hjseaYbgKEHw==";
};
};
"dayjs-1.8.36" = {
@@ -23712,15 +23163,6 @@ let
sha512 = "YKw0BmJSWxkjtQsbgn6Q9CHSWB7DKMen8vKrgyC006zy0UZ6nWyGidB0IzZgqkVRkOglAeUaFtiRTeLyel72bg==";
};
};
- "death-1.1.0" = {
- name = "death";
- packageName = "death";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/death/-/death-1.1.0.tgz";
- sha1 = "01aa9c401edd92750514470b8266390c66c67318";
- };
- };
"debounce-1.2.0" = {
name = "debounce";
packageName = "debounce";
@@ -25224,31 +24666,31 @@ let
sha512 = "k770mVWaCm3KbyOSPFizP6WB2ucZjfAv8aun4UsKl+IivowK7ItwBixNbziBjN05yNpvCL1/IxBdZiSz6KQIvA==";
};
};
- "dockerfile-language-service-0.8.1" = {
+ "dockerfile-language-service-0.9.0" = {
name = "dockerfile-language-service";
packageName = "dockerfile-language-service";
- version = "0.8.1";
+ version = "0.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.8.1.tgz";
- sha512 = "bqrZ2FzG45w2Mzmak3oC5ecIl/edStygSFQ0i/8WGabb5k/w6zWwqDaHVgT8dkfogm+swHMQUu4WGTvVu1qLCA==";
+ url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.9.0.tgz";
+ sha512 = "sDUkTR4LUimEAWXDIbUTEx2CytCBlx+XlJkg4B2Ptvak9HkwPD4JpXesaWxXPpp6YHCzxqwsTDY7Gf79ic340g==";
};
};
- "dockerfile-utils-0.9.4" = {
+ "dockerfile-utils-0.10.0" = {
name = "dockerfile-utils";
packageName = "dockerfile-utils";
- version = "0.9.4";
+ version = "0.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.9.4.tgz";
- sha512 = "lqmCxVhaUyCUIz9dhzYVrHZLJG5hzdcwd29JcA/0o7xIx2VwvIctUE6SpK8ugLTNuwMx/oKU2YVLaRIX/CmQPg==";
+ url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.10.0.tgz";
+ sha512 = "gnEhxITHpOXNXdlwJgJEq3xnJokm0IZOmrmHlJv8zCB2EDsgZWwdYWuktMMslIywK2YT22gxgZEoFjtEaJqzhQ==";
};
};
- "doctoc-2.1.0" = {
+ "doctoc-2.2.0" = {
name = "doctoc";
packageName = "doctoc";
- version = "2.1.0";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/doctoc/-/doctoc-2.1.0.tgz";
- sha512 = "0darEVEuWKLyIlpGOzE5cILf/pgUu25qUs6YwCqLqfxb8+3b9Cl4iakA8vwYrBQOkJ5SwpHKEPVMu2KOMrTA7A==";
+ url = "https://registry.npmjs.org/doctoc/-/doctoc-2.2.0.tgz";
+ sha512 = "PtiyaS+S3kcMbpx6x2V0S+PeDKisxmjEFnZsuYkkj4Lh3ObozJuuYh9dM4+sX02Ouuty8RF2LOCnIbpu/hWy/A==";
};
};
"doctrine-2.1.0" = {
@@ -25512,6 +24954,15 @@ let
sha512 = "OFP2u/3T1R5CEgWCEONuJ1a5+MFKnOYpkywpUSxv/dj1LeBT1erK+JwM7zK0ROy2BRhqVCf0LRw/kHqKuMkVGg==";
};
};
+ "dompurify-2.3.7" = {
+ name = "dompurify";
+ packageName = "dompurify";
+ version = "2.3.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dompurify/-/dompurify-2.3.7.tgz";
+ sha512 = "fsVZLywBd3awZIG3qU4JEdw7DCb0uUCajTfWRrLhsgKjTBd5CIIluPoAkNfco05GuNYQGj4/+bQIhlq96eT9eQ==";
+ };
+ };
"domutils-1.4.3" = {
name = "domutils";
packageName = "domutils";
@@ -25764,13 +25215,13 @@ let
sha1 = "5bcc80be7097e45fc489c342405ab68140a8c1d9";
};
};
- "dset-3.1.1" = {
+ "dset-3.1.2" = {
name = "dset";
packageName = "dset";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/dset/-/dset-3.1.1.tgz";
- sha512 = "hYf+jZNNqJBD2GiMYb+5mqOIX4R4RRHXU3qWMWYN+rqcR2/YpRL2bUHr8C8fU+5DNvqYjJ8YvMGSLuVPWU1cNg==";
+ url = "https://registry.npmjs.org/dset/-/dset-3.1.2.tgz";
+ sha512 = "g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==";
};
};
"dtrace-provider-0.6.0" = {
@@ -26034,13 +25485,13 @@ let
sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==";
};
};
- "ejs-3.1.7" = {
+ "ejs-3.1.8" = {
name = "ejs";
packageName = "ejs";
- version = "3.1.7";
+ version = "3.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/ejs/-/ejs-3.1.7.tgz";
- sha512 = "BIar7R6abbUxDA3bfXrO4DSgwo8I+fB5/1zgujl3HLLjwd6+9iOnrT+t3grn2qbk9vOgBubXOFwX2m9axoFaGw==";
+ url = "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz";
+ sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==";
};
};
"electron-14.2.9" = {
@@ -26088,13 +25539,13 @@ let
sha512 = "WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw==";
};
};
- "electron-to-chromium-1.4.129" = {
+ "electron-to-chromium-1.4.137" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.4.129";
+ version = "1.4.137";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.129.tgz";
- sha512 = "GgtN6bsDtHdtXJtlMYZWGB/uOyjZWjmRDumXTas7dGBaB9zUyCjzHet1DY2KhyHN8R0GLbzZWqm4efeddqqyRQ==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.137.tgz";
+ sha512 = "0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==";
};
};
"electrum-client-git+https://github.com/janoside/electrum-client" = {
@@ -26143,6 +25594,15 @@ let
sha512 = "iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==";
};
};
+ "emitter-component-1.1.1" = {
+ name = "emitter-component";
+ packageName = "emitter-component";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/emitter-component/-/emitter-component-1.1.1.tgz";
+ sha1 = "065e2dbed6959bf470679edabeaf7981d1003ab6";
+ };
+ };
"emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz" = {
name = "emitter";
packageName = "emitter";
@@ -26513,13 +25973,13 @@ let
sha512 = "IH8ZhDIwiLv0d/wXVzmjfV9Y82hbJIDhCGSVUV8o1kcpDe2I6Y3bZA3ZbJy4Ls7k7IVmcy/qn4k9RKWFhUGf5w==";
};
};
- "engine.io-client-6.2.1" = {
+ "engine.io-client-6.2.2" = {
name = "engine.io-client";
packageName = "engine.io-client";
- version = "6.2.1";
+ version = "6.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.1.tgz";
- sha512 = "5cu7xubVxEwoB6O9hJ6Zfu990yBVjXfyMlE1ZvfO5L8if3Kvc9bgDNEapV0C5pMp+5Om1UZFnljxoOuFm6dBKA==";
+ url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.2.tgz";
+ sha512 = "8ZQmx0LQGRTYkHuogVZuGSpDqYZtCM/nv8zQ68VZ+JkOpazJ7ICdsSpaO6iXwvaU30oFg5QJOJWj8zWqhbKjkQ==";
};
};
"engine.io-parser-1.0.6" = {
@@ -26801,13 +26261,13 @@ let
sha512 = "rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==";
};
};
- "es-abstract-1.19.5" = {
+ "es-abstract-1.20.0" = {
name = "es-abstract";
packageName = "es-abstract";
- version = "1.19.5";
+ version = "1.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.5.tgz";
- sha512 = "Aa2G2+Rd3b6kxEUKTF4TaW67czBLyAv3z7VOhYRU50YBx+bbsYZ9xQP4lMNazePuFlybXI0V4MruPos7qUo5fA==";
+ url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.0.tgz";
+ sha512 = "URbD8tgRthKD3YcC39vbvSDrX23upXnPcnGAjQfgxXF5ID75YcENawc9ZX/9iTP9ptUyfCLIxTTuMYoRfiOVKA==";
};
};
"es-get-iterator-1.1.2" = {
@@ -27197,13 +26657,13 @@ let
sha512 = "/KRpd9mIRg2raGxHRGwW9ZywYNAClZrHjdueHcrVDuO3a6bj83eoTirCCk0M0yPwOjWYKHwRVRid+xK4F/GHgA==";
};
};
- "eslint-8.14.0" = {
+ "eslint-8.15.0" = {
name = "eslint";
packageName = "eslint";
- version = "8.14.0";
+ version = "8.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-8.14.0.tgz";
- sha512 = "3/CE4aJX7LNEiE3i6FeodHmI/38GZtWCsAtsymScmzYapx8q1nVVb+eLcLSzATmCPXw5pT4TqVs1E0OmxAd9tw==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz";
+ sha512 = "GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==";
};
};
"eslint-config-prettier-6.15.0" = {
@@ -27449,6 +26909,15 @@ let
sha512 = "bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==";
};
};
+ "espree-9.3.2" = {
+ name = "espree";
+ packageName = "espree";
+ version = "9.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/espree/-/espree-9.3.2.tgz";
+ sha512 = "D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==";
+ };
+ };
"esprima-1.1.1" = {
name = "esprima";
packageName = "esprima";
@@ -27629,15 +27098,6 @@ let
sha512 = "3lXJ4Us9j8TUif9cWcQy81t9p5OLasnDuuhrFiqb+XstmKC1d1LmrQWYsY49/9URcfHE64mPypDBaNK9NwWDPQ==";
};
};
- "estree-walker-0.6.1" = {
- name = "estree-walker";
- packageName = "estree-walker";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz";
- sha512 = "SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==";
- };
- };
"estree-walker-2.0.2" = {
name = "estree-walker";
packageName = "estree-walker";
@@ -27917,13 +27377,13 @@ let
sha1 = "82998ea749501145fd2da7cf8ecbe6420fac02a4";
};
};
- "eventsource-1.1.0" = {
+ "eventsource-1.1.1" = {
name = "eventsource";
packageName = "eventsource";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz";
- sha512 = "VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==";
+ url = "https://registry.npmjs.org/eventsource/-/eventsource-1.1.1.tgz";
+ sha512 = "qV5ZC0h7jYIAOhArFJgSfdyz6rALJyb270714o7ZtNnw2WSJ+eexhKtE0O8LYPRsHZHf2osHKZBxGPvm3kPkCA==";
};
};
"everyauth-0.4.5" = {
@@ -27953,15 +27413,6 @@ let
sha1 = "c7c5ad2eef3478d38390c6dd3acfe8af0efc8301";
};
};
- "exec-sh-0.3.6" = {
- name = "exec-sh";
- packageName = "exec-sh";
- version = "0.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz";
- sha512 = "nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==";
- };
- };
"execa-0.10.0" = {
name = "execa";
packageName = "execa";
@@ -28178,13 +27629,13 @@ let
sha1 = "a793d3ac0cad4c6ab571e9968fbbab6cb2532929";
};
};
- "expo-modules-autolinking-0.7.0" = {
+ "expo-modules-autolinking-0.7.1" = {
name = "expo-modules-autolinking";
packageName = "expo-modules-autolinking";
- version = "0.7.0";
+ version = "0.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-0.7.0.tgz";
- sha512 = "xwO3hLCl3Ru8ouuf35cLQgbOL6ym1ku1HLXX/1xs7inYLKvDzAWY/oeiNS30qOl13T4aYFR3q2Nq9XlDw41/2Q==";
+ url = "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-0.7.1.tgz";
+ sha512 = "HKPcwXuRztEjhQRHxwhLXyAblkOsSi3n7aaBV6qgrOOi0WL/E3di8E2fowlHiiQW/i9vJDemMcvq0ZTCYW+bFg==";
};
};
"expo-pwa-0.0.118" = {
@@ -28376,6 +27827,15 @@ let
sha512 = "mPcYcLA0lvh7D4Oqr5aNJFMtBMKPLl++OKKxkHzZ0U0oDq1rpKBnkR5f5vCHR26VeArlTOEF9td4x5IjICksRQ==";
};
};
+ "express-session-1.17.3" = {
+ name = "express-session";
+ packageName = "express-session";
+ version = "1.17.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-session/-/express-session-1.17.3.tgz";
+ sha512 = "4+otWXlShYlG1Ma+2Jnn+xgKUZTMJ5QD3YvfilX3AcocOAbIkVylSWEklzALe/+Pu4qV6TYBj5GwOBFfdKqLBw==";
+ };
+ };
"express-urlrewrite-1.4.0" = {
name = "express-urlrewrite";
packageName = "express-urlrewrite";
@@ -28691,13 +28151,13 @@ let
sha1 = "c18d24ef5091174a497f318cd24b026a25cddab4";
};
};
- "falafel-2.2.4" = {
+ "falafel-2.2.5" = {
name = "falafel";
packageName = "falafel";
- version = "2.2.4";
+ version = "2.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/falafel/-/falafel-2.2.4.tgz";
- sha512 = "0HXjo8XASWRmsS0X1EkhwEMZaD3Qvp7FfURwjLKjG1ghfRm/MGZl2r4cWUTv41KdNghTw4OUMmVtdGQp3+H+uQ==";
+ url = "https://registry.npmjs.org/falafel/-/falafel-2.2.5.tgz";
+ sha512 = "HuC1qF9iTnHDnML9YZAdCDQwT0yKl/U55K4XSUXqGAA2GLoafFgWRqdAbhWJxXaYD4pyoVxAJ8wH670jMpI9DQ==";
};
};
"fancy-log-1.3.3" = {
@@ -29375,13 +28835,13 @@ let
sha512 = "hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==";
};
};
- "filelist-1.0.3" = {
+ "filelist-1.0.4" = {
name = "filelist";
packageName = "filelist";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/filelist/-/filelist-1.0.3.tgz";
- sha512 = "LwjCsruLWQULGYKy7TX0OPtrL9kLpojOFKc5VCTxdFTV7w5zbsgqVKfnkKG7Qgjtq50gKfO56hJv88OfcGb70Q==";
+ url = "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz";
+ sha512 = "w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==";
};
};
"filename-regex-2.0.1" = {
@@ -29735,13 +29195,13 @@ let
sha512 = "ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==";
};
};
- "firebase-frameworks-0.3.0" = {
+ "firebase-frameworks-0.4.2" = {
name = "firebase-frameworks";
packageName = "firebase-frameworks";
- version = "0.3.0";
+ version = "0.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/firebase-frameworks/-/firebase-frameworks-0.3.0.tgz";
- sha512 = "Zxtx5WsD8ZZdItIeDjjpM+JgaIWDdwBujmLYLKf2Ou6onyRsd8bNRrnVsqrnq4S3FN9TcNYliXdwMu7AwYdW7Q==";
+ url = "https://registry.npmjs.org/firebase-frameworks/-/firebase-frameworks-0.4.2.tgz";
+ sha512 = "a3xNE3wPh8JWq2WOgWlSypVS9O/y/3/3Im9EV7bNBF44wFV2oOAyFdVgDk6it81+lBRv7ci8PttgQZohtsFeVA==";
};
};
"firefox-profile-4.2.2" = {
@@ -29888,22 +29348,13 @@ let
sha512 = "d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA==";
};
};
- "flow-bin-0.118.0" = {
- name = "flow-bin";
- packageName = "flow-bin";
- version = "0.118.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/flow-bin/-/flow-bin-0.118.0.tgz";
- sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg==";
- };
- };
- "flow-parser-0.176.3" = {
+ "flow-parser-0.178.0" = {
name = "flow-parser";
packageName = "flow-parser";
- version = "0.176.3";
+ version = "0.178.0";
src = fetchurl {
- url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.176.3.tgz";
- sha512 = "KDzHEoEtc/kbW7NzujhfFkcTCdNi6VK91UpcdT3tc3yEAQdh4JXAEY/0TVJKipjRuVm8E2FxX/3B5Xpm3EFWXA==";
+ url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.178.0.tgz";
+ sha512 = "OviMR2Y/sMSyUzR1xLLAmQvmHXTsD1Sq69OTmP5AckVulld7sVNsCfwsw7t3uK00dO9A7k4fD+wodbzzaaEn5g==";
};
};
"fluent-ffmpeg-2.1.2" = {
@@ -30050,13 +29501,13 @@ let
sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==";
};
};
- "follow-redirects-1.14.9" = {
+ "follow-redirects-1.15.0" = {
name = "follow-redirects";
packageName = "follow-redirects";
- version = "1.14.9";
+ version = "1.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz";
- sha512 = "MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==";
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.0.tgz";
+ sha512 = "aExlJShTV4qOUOL7yF1U5tvLCB0xQuudbf6toyYA0E/acBNw71mvjFTnLaRp50aQaYocMR0a/RMMBIHeZnGyjQ==";
};
};
"follow-redirects-1.5.10" = {
@@ -30131,13 +29582,13 @@ let
sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b";
};
};
- "foreach-2.0.5" = {
+ "foreach-2.0.6" = {
name = "foreach";
packageName = "foreach";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz";
- sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99";
+ url = "https://registry.npmjs.org/foreach/-/foreach-2.0.6.tgz";
+ sha512 = "k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==";
};
};
"foreachasync-3.0.0" = {
@@ -30536,15 +29987,6 @@ let
sha512 = "C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==";
};
};
- "fs-extra-10.0.1" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "10.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.1.tgz";
- sha512 = "NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==";
- };
- };
"fs-extra-10.1.0" = {
name = "fs-extra";
packageName = "fs-extra";
@@ -30824,6 +30266,15 @@ let
sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==";
};
};
+ "function.prototype.name-1.1.5" = {
+ name = "function.prototype.name";
+ packageName = "function.prototype.name";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz";
+ sha512 = "uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==";
+ };
+ };
"functional-red-black-tree-1.0.1" = {
name = "functional-red-black-tree";
packageName = "functional-red-black-tree";
@@ -30896,22 +30347,22 @@ let
sha1 = "cbed2d20a40c1f5679a35908e2b9415733e78db9";
};
};
- "gatsby-core-utils-3.13.0" = {
+ "gatsby-core-utils-3.14.0" = {
name = "gatsby-core-utils";
packageName = "gatsby-core-utils";
- version = "3.13.0";
+ version = "3.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.13.0.tgz";
- sha512 = "uAyy54t9dYAUHjLq38QfX/pxyWxsqDiWN/+Ppg/KXTbE83LUQlD0PctdNxz9jFmJ8CgE1BUbfUKpmemh8BLkjw==";
+ url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.14.0.tgz";
+ sha512 = "JavHwcX5L+ZRoL5FKhYex3JfbwwS0273YTpf8y8SRKsObD8H+bbLOUlbOjASpqy+IU3dW+r76gT1dQdaqeH9Og==";
};
};
- "gatsby-telemetry-3.13.0" = {
+ "gatsby-telemetry-3.14.0" = {
name = "gatsby-telemetry";
packageName = "gatsby-telemetry";
- version = "3.13.0";
+ version = "3.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.13.0.tgz";
- sha512 = "VKwRRw6WVvCmekeeMgb+Ic4pS/3Jn+3LTP2nX/QZ1G3256xFxKZVPMRO4007xLKmuIu4liEAaLrnZpG3ZuprYA==";
+ url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.14.0.tgz";
+ sha512 = "QnlN3nvb+1gYsY6cIQKAuvkhx9uoOg71yuEYB0EFQdgcnyIbWlBVRHId8wOXoQHwRYFmatvxBmcKlVF8FCs61A==";
};
};
"gauge-1.2.7" = {
@@ -31139,15 +30590,6 @@ let
sha1 = "6432796563e28113cd9474dbbd00052985a4999c";
};
};
- "get-package-type-0.1.0" = {
- name = "get-package-type";
- packageName = "get-package-type";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz";
- sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==";
- };
- };
"get-pkg-repo-4.2.1" = {
name = "get-pkg-repo";
packageName = "get-pkg-repo";
@@ -31652,13 +31094,13 @@ let
sha512 = "lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==";
};
};
- "glob-8.0.1" = {
+ "glob-8.0.2" = {
name = "glob";
packageName = "glob";
- version = "8.0.1";
+ version = "8.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-8.0.1.tgz";
- sha512 = "cF7FYZZ47YzmCu7dDy50xSRRfO3ErRfrXuLZcNIuyiJEco0XSrGtuilG19L5xp3NcwTx7Gn+X6Tv3fmsUPTbow==";
+ url = "https://registry.npmjs.org/glob/-/glob-8.0.2.tgz";
+ sha512 = "0jzor6jfIKaDg/2FIN+9L8oDxzHTkI/+vwJimOmOZjaVjFVVZJFojOYbbWC0okXbBVSgYpbcuQ7xy6gDP9f8gw==";
};
};
"glob-base-0.3.0" = {
@@ -31932,13 +31374,13 @@ let
sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==";
};
};
- "globals-13.13.0" = {
+ "globals-13.15.0" = {
name = "globals";
packageName = "globals";
- version = "13.13.0";
+ version = "13.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/globals/-/globals-13.13.0.tgz";
- sha512 = "EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==";
+ url = "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz";
+ sha512 = "bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==";
};
};
"globals-9.18.0" = {
@@ -31950,13 +31392,13 @@ let
sha512 = "S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==";
};
};
- "globalthis-1.0.2" = {
+ "globalthis-1.0.3" = {
name = "globalthis";
packageName = "globalthis";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/globalthis/-/globalthis-1.0.2.tgz";
- sha512 = "ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==";
+ url = "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz";
+ sha512 = "sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==";
};
};
"globby-10.0.2" = {
@@ -32085,15 +31527,6 @@ let
sha512 = "5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==";
};
};
- "glur-1.1.2" = {
- name = "glur";
- packageName = "glur";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/glur/-/glur-1.1.2.tgz";
- sha1 = "f20ea36db103bfc292343921f1f91e83c3467689";
- };
- };
"gm-1.23.1" = {
name = "gm";
packageName = "gm";
@@ -32139,22 +31572,13 @@ let
sha512 = "5Rk7iLNDFhFeBYc3s8l1CqzbEBcdhwR193RlD4vSNFajIcINKI8W8P0JLmBpwymHqqWbX34pJDQu39cSy/6RsA==";
};
};
- "google-closure-compiler-js-20170910.0.1" = {
- name = "google-closure-compiler-js";
- packageName = "google-closure-compiler-js";
- version = "20170910.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/google-closure-compiler-js/-/google-closure-compiler-js-20170910.0.1.tgz";
- sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew==";
- };
- };
- "google-gax-2.30.2" = {
+ "google-gax-2.30.3" = {
name = "google-gax";
packageName = "google-gax";
- version = "2.30.2";
+ version = "2.30.3";
src = fetchurl {
- url = "https://registry.npmjs.org/google-gax/-/google-gax-2.30.2.tgz";
- sha512 = "BCNCT26kb0iC52zj2SosyOZMhI5sVfXuul1h0Aw5uT9nGAbmS5eOvQ49ft53ft6XotDj11sUSDV6XESEiQqCqg==";
+ url = "https://registry.npmjs.org/google-gax/-/google-gax-2.30.3.tgz";
+ sha512 = "Zsd6hbJBMvAcJS3cYpAsmupvfsxygFR2meUZJcGeR7iUqYHCR/1Hf2aQNB9srrlXQMm91pNiUvW0Kz6Qld8QkA==";
};
};
"google-p12-pem-3.1.4" = {
@@ -32328,6 +31752,15 @@ let
sha512 = "mD3E/QxYJYfT8jPxWDxJPszVQteMtPoLHAMvXT1EsjEBvxCbrFVg5U3TKaA6Xgl6fhinBcv2yFT6tWw3h+xJzQ==";
};
};
+ "grammy-1.8.3" = {
+ name = "grammy";
+ packageName = "grammy";
+ version = "1.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/grammy/-/grammy-1.8.3.tgz";
+ sha512 = "3esAETA0HXR9wb8x65uYeAt1AbCQsJC5l6iuxSRXZR2cSxEf+61vIbJ5qUvw7TfMkgPuH71Gi7AHSFGZ+F1eqQ==";
+ };
+ };
"grant-4.7.0" = {
name = "grant";
packageName = "grant";
@@ -32571,13 +32004,13 @@ let
sha512 = "sHkK9+lUm20/BGawNEWNtVAeJzhZeBg21VmvmLoT5NdGVeZWv5PdIhkcayQIAgjSyyQ17WMKmbDijIPG2On+Ag==";
};
};
- "graphql-ws-5.8.1" = {
+ "graphql-ws-5.8.2" = {
name = "graphql-ws";
packageName = "graphql-ws";
- version = "5.8.1";
+ version = "5.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.8.1.tgz";
- sha512 = "UVf/fxlHultC1+12tX9ShTIipqQFNZ96g7N51RFQlk7MFPsDUUMCR3QXVEzHEd5xlTp16rs5vCyfBljvcPN3fA==";
+ url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.8.2.tgz";
+ sha512 = "hYo8kTGzxePFJtMGC7Y4cbypwifMphIJJ7n4TDcVUAfviRwQBnmZAbfZlC+XFwWDUaR7raEDQPxWctpccmE0JQ==";
};
};
"gray-matter-4.0.3" = {
@@ -33858,6 +33291,15 @@ let
sha512 = "DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==";
};
};
+ "html-link-extractor-1.0.5" = {
+ name = "html-link-extractor";
+ packageName = "html-link-extractor";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/html-link-extractor/-/html-link-extractor-1.0.5.tgz";
+ sha512 = "ADd49pudM157uWHwHQPUSX4ssMsvR/yHIswOR5CUfBdK9g9ZYGMhVSE6KZVHJ6kCkR0gH4htsfzU6zECDNVwyw==";
+ };
+ };
"html-loader-1.1.0" = {
name = "html-loader";
packageName = "html-loader";
@@ -34272,13 +33714,13 @@ let
sha512 = "3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==";
};
};
- "http-status-1.5.1" = {
+ "http-status-1.5.2" = {
name = "http-status";
packageName = "http-status";
- version = "1.5.1";
+ version = "1.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/http-status/-/http-status-1.5.1.tgz";
- sha512 = "EP6M4naWmtIrCHL1QfVHz6hsQb8dJLP5rDO1oPn03eAXD3CNVXgUqR5302gr3Gl8B/gVE1zz+Pmws7aJx+VMSw==";
+ url = "https://registry.npmjs.org/http-status/-/http-status-1.5.2.tgz";
+ sha512 = "HzxX+/hV/8US1Gq4V6R6PgUmJ5Pt/DGATs4QhdEOpG8LrdS9/3UG2nnOvkqUpRks04yjVtV5p/NODjO+wvf6vg==";
};
};
"http2-client-1.3.5" = {
@@ -35847,13 +35289,13 @@ let
sha1 = "81ef57fe5d05814cd58c2483632a99c30a0e8087";
};
};
- "ip-1.1.5" = {
+ "ip-1.1.8" = {
name = "ip";
packageName = "ip";
- version = "1.1.5";
+ version = "1.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz";
- sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a";
+ url = "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz";
+ sha512 = "PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==";
};
};
"ip-address-6.1.0" = {
@@ -36756,15 +36198,6 @@ let
sha512 = "CPduJfuGg8h8vW74WOxHtHmtQutyQBzR+3MjQ6iDHIYdbOnm1YC7jv43SqCoU8OPGTJD4nibmiryA4kmogbGrA==";
};
};
- "is-module-1.0.0" = {
- name = "is-module";
- packageName = "is-module";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz";
- sha1 = "3258fb69f78c14d5b815d664336b4cffb6441591";
- };
- };
"is-my-ip-valid-1.0.1" = {
name = "is-my-ip-valid";
packageName = "is-my-ip-valid";
@@ -37152,13 +36585,13 @@ let
sha512 = "eCTBKm9K6nO3H1S3BrJBAqZJIVXKNdwDuGl6KHf1bnf/bn02BvEe+l+MypjsxbqZ7mt5oMhu+bS/mm7G2FRW3A==";
};
};
- "is-reachable-5.1.1" = {
+ "is-reachable-5.2.0" = {
name = "is-reachable";
packageName = "is-reachable";
- version = "5.1.1";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-reachable/-/is-reachable-5.1.1.tgz";
- sha512 = "CIZlnpOha9mgqHjLaodY3OeYEX62ElsuYvtI8HmJz4uJEHfaeQ+vNBCAkUsyfCrYawSbCOSufUHM6lHaP4hG8Q==";
+ url = "https://registry.npmjs.org/is-reachable/-/is-reachable-5.2.0.tgz";
+ sha512 = "x9rn66RltP1CDAdk00y6hG7kgVTTYvQwcIp8s8ug6d4M1EdhvNwi19YmSJwfVfHtlFViMI8anKHX52SgQKJuRQ==";
};
};
"is-redirect-1.0.0" = {
@@ -37170,15 +36603,6 @@ let
sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24";
};
};
- "is-reference-1.2.1" = {
- name = "is-reference";
- packageName = "is-reference";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz";
- sha512 = "U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==";
- };
- };
"is-regex-1.1.4" = {
name = "is-regex";
packageName = "is-regex";
@@ -37782,24 +37206,6 @@ let
sha512 = "0RHjbtw9QXeSYnIEY5Yrp2QZrdtz21xBDV9C/GIlY2POmgoS6a7qjkYS5siRKXScnuAj5/SPv1C3YForNCHTJA==";
};
};
- "istanbul-lib-coverage-3.2.0" = {
- name = "istanbul-lib-coverage";
- packageName = "istanbul-lib-coverage";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz";
- sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==";
- };
- };
- "istanbul-lib-instrument-5.2.0" = {
- name = "istanbul-lib-instrument";
- packageName = "istanbul-lib-instrument";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz";
- sha512 = "6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==";
- };
- };
"isuri-2.0.3" = {
name = "isuri";
packageName = "isuri";
@@ -37872,15 +37278,6 @@ let
sha512 = "R2SE/AQrE4IhlyRbBp7ASIjFO+Wlpfra2Q7GMZkOjQb890MLtKyINPawJ7fr+Z7CPgHoXj2J3BNyebBIbVn8PQ==";
};
};
- "iterm2-version-4.2.0" = {
- name = "iterm2-version";
- packageName = "iterm2-version";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/iterm2-version/-/iterm2-version-4.2.0.tgz";
- sha512 = "IoiNVk4SMPu6uTcK+1nA5QaHNok2BMDLjSl5UomrOixe5g4GkylhPwuiGdw00ysSCrXAKNMfFTu+u/Lk5f6OLQ==";
- };
- };
"jade-0.26.3" = {
name = "jade";
packageName = "jade";
@@ -37944,24 +37341,6 @@ let
sha512 = "Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==";
};
};
- "jest-haste-map-25.5.1" = {
- name = "jest-haste-map";
- packageName = "jest-haste-map";
- version = "25.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-25.5.1.tgz";
- sha512 = "dddgh9UZjV7SCDQUrQ+5t9yy8iEgKc1AKqZR9YDww8xsVOtzPQSMVLDChc21+g29oTRexb9/B0bIlZL+sWmvAQ==";
- };
- };
- "jest-image-snapshot-4.2.0" = {
- name = "jest-image-snapshot";
- packageName = "jest-image-snapshot";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jest-image-snapshot/-/jest-image-snapshot-4.2.0.tgz";
- sha512 = "6aAqv2wtfOgxiJeBayBCqHo1zX+A12SUNNzo7rIxiXh6W6xYVu8QyHWkada8HeRi+QUTHddp0O0Xa6kmQr+xbQ==";
- };
- };
"jest-message-util-27.5.1" = {
name = "jest-message-util";
packageName = "jest-message-util";
@@ -37980,33 +37359,6 @@ let
sha512 = "K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==";
};
};
- "jest-regex-util-25.2.6" = {
- name = "jest-regex-util";
- packageName = "jest-regex-util";
- version = "25.2.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-25.2.6.tgz";
- sha512 = "KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==";
- };
- };
- "jest-serializer-25.5.0" = {
- name = "jest-serializer";
- packageName = "jest-serializer";
- version = "25.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jest-serializer/-/jest-serializer-25.5.0.tgz";
- sha512 = "LxD8fY1lByomEPflwur9o4e2a5twSQ7TaVNLlFUuToIdoJuBt8tzHfCsZ42Ok6LkKXWzFWf3AGmheuLAA7LcCA==";
- };
- };
- "jest-util-25.5.0" = {
- name = "jest-util";
- packageName = "jest-util";
- version = "25.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jest-util/-/jest-util-25.5.0.tgz";
- sha512 = "KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay/e/v+bmaFfrkfx43xD8QTfgobzlEXdIA==";
- };
- };
"jest-util-27.5.1" = {
name = "jest-util";
packageName = "jest-util";
@@ -38016,15 +37368,6 @@ let
sha512 = "Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==";
};
};
- "jest-worker-25.5.0" = {
- name = "jest-worker";
- packageName = "jest-worker";
- version = "25.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jest-worker/-/jest-worker-25.5.0.tgz";
- sha512 = "/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==";
- };
- };
"jest-worker-26.6.2" = {
name = "jest-worker";
packageName = "jest-worker";
@@ -38197,13 +37540,13 @@ let
sha512 = "2VlU59N5P4HaumDK1Z3XEVjSvegFbEOQRgpHUBaB2Ak98Axl3hFhJ6RFcNQNuk9SfL6WxIbuLst8dW/U56NSiA==";
};
};
- "jquery.terminal-2.32.1" = {
+ "jquery.terminal-2.33.1" = {
name = "jquery.terminal";
packageName = "jquery.terminal";
- version = "2.32.1";
+ version = "2.33.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.32.1.tgz";
- sha512 = "AbaZfSuNPQSBpUEP2jqNix5H7wS3fqUQGe+k6D8umBAOA3XxIVJpXTcGitfs1df7AZ52DruOQnV+p5+s+E3QqQ==";
+ url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.33.1.tgz";
+ sha512 = "p5sEs/bvziLrQG+rchL5ceJ7hldlFDxqKh98DxJSU+XSyrGmucrDq1UKgEhuePvTf4dL1cuIUmMLy7H/ihK/Pg==";
};
};
"js-base64-2.6.3" = {
@@ -38539,49 +37882,49 @@ let
sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==";
};
};
- "jsii-1.57.0" = {
+ "jsii-1.58.0" = {
name = "jsii";
packageName = "jsii";
- version = "1.57.0";
+ version = "1.58.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii/-/jsii-1.57.0.tgz";
- sha512 = "r9U1+vAfYlKgJ4FnBmf8Fj/VP+ngx/uSi3FxH9BL2KrCS0PBcHml5YXsH9pBGfCSrDQvOxULlONnw+RqEbI1Lw==";
+ url = "https://registry.npmjs.org/jsii/-/jsii-1.58.0.tgz";
+ sha512 = "xG7z3jU68fJ+4efGeYxhYqbT8MnF9YEIfaaJvtPAaHp0E/knC1Hz2d46FIwriL2yQlsxnYq3BKKcJwwgsHNkhQ==";
};
};
- "jsii-pacmak-1.57.0" = {
+ "jsii-pacmak-1.58.0" = {
name = "jsii-pacmak";
packageName = "jsii-pacmak";
- version = "1.57.0";
+ version = "1.58.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.57.0.tgz";
- sha512 = "yUIuhVqovNEE8Oq0BKVauiv1/5AT1JguhsuKkB4AWTxdkXHxOkv4eVA/w4jiCBaGjbwVg7BjgWR8zuMuNCU98w==";
+ url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.58.0.tgz";
+ sha512 = "BxnpHhUKfccqtIKwgZ4wnRF9qUswDPmTzCRhMxNAUXoyStWKQywYsY7P1R5fs4ZDXjo/Dq92MISFcUr85w+ZSA==";
};
};
- "jsii-reflect-1.57.0" = {
+ "jsii-reflect-1.58.0" = {
name = "jsii-reflect";
packageName = "jsii-reflect";
- version = "1.57.0";
+ version = "1.58.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.57.0.tgz";
- sha512 = "aSmEAxxBjyrdTnzzFx1O0Q+6D8pi1jwIB7LTvdlPQMy8GuLqO8K3nAiZPjfnNpzKBM65iJKFY3I5XNjJf2iIfA==";
+ url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.58.0.tgz";
+ sha512 = "kCc7S0XJpJkWz1EBLkvZZnZqKFlT2JqGL72j0nuZFlVvd2W6Hg698JXrTjFWK+/36nfCBKtrUY9mCpbu/Xy6eQ==";
};
};
- "jsii-rosetta-1.57.0" = {
+ "jsii-rosetta-1.58.0" = {
name = "jsii-rosetta";
packageName = "jsii-rosetta";
- version = "1.57.0";
+ version = "1.58.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.57.0.tgz";
- sha512 = "ey0tBYk6or4CGkgiP+Ox+9Qxf2HD0KZnqr2dN4hpu8aiyZRJYinktaL/ryARM89EqhfpHKrgHAPD11RPDhFo9w==";
+ url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.58.0.tgz";
+ sha512 = "dp4LUkewqR+i4VWutpYsikwL8LqWMyxx6SLFxmSmsTVGZ1/8Y5b/nen44FdAeSA5LhRN1wsQNzUwqLxt6XYcCA==";
};
};
- "jsii-srcmak-0.1.548" = {
+ "jsii-srcmak-0.1.556" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.548";
+ version = "0.1.556";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.548.tgz";
- sha512 = "T04iUa1449ajETALwI0QNiCy+ePrhU21cyGzcVrhF4dRTnfQeNwQkWZkcc6QIoL6rg/m9zuuxJl5wZaHDDXqhA==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.556.tgz";
+ sha512 = "5JA4iwr3UT1S8FUdqrUUTm8I/ZOe5REp6gl2ewMOwRDd4v8AKZlO0qnpzpduwlaDhVT4jT+nqQOwNduO3TfxdA==";
};
};
"json-bigint-1.0.0" = {
@@ -39223,15 +38566,6 @@ let
sha1 = "69ec30ce4518bed5997b38f027648e8c285e92f7";
};
};
- "jszip-2.6.1" = {
- name = "jszip";
- packageName = "jszip";
- version = "2.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jszip/-/jszip-2.6.1.tgz";
- sha1 = "b88f3a7b2e67a2a048152982c7a3756d9c4828f0";
- };
- };
"jszip-3.9.1" = {
name = "jszip";
packageName = "jszip";
@@ -39556,13 +38890,22 @@ let
sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==";
};
};
- "keyv-4.2.2" = {
+ "keyv-4.2.7" = {
name = "keyv";
packageName = "keyv";
- version = "4.2.2";
+ version = "4.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/keyv/-/keyv-4.2.2.tgz";
- sha512 = "uYS0vKTlBIjNCAUqrjlxmruxOEiZxZIHXyp32sdcGmP+ukFrmWUnE//RcPXJH3Vxrni1H2gsQbjHE0bH7MtMQQ==";
+ url = "https://registry.npmjs.org/keyv/-/keyv-4.2.7.tgz";
+ sha512 = "HeOstD8SXvtWoQhMMBCelcUuZsiV7T7MwsADtOXT0KuwYP9nCxrSoMDeLXNDTLN3VFSuRp38JzoGbbTboq3QQw==";
+ };
+ };
+ "keyv-4.2.8" = {
+ name = "keyv";
+ packageName = "keyv";
+ version = "4.2.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/keyv/-/keyv-4.2.8.tgz";
+ sha512 = "IZZo6krhHWPhgsP5mBkEdPopVPN/stgCnBVuqi6dda/Nm5mDTOSVTrFMkWqlJsDum+B0YSe887tNxdjDWkO7aQ==";
};
};
"khroma-1.4.1" = {
@@ -39574,6 +38917,15 @@ let
sha512 = "+GmxKvmiRuCcUYDgR7g5Ngo0JEDeOsGdNONdU2zsiBQaK4z19Y2NvXqfEDE0ZiIrg45GTZyAnPLVsLZZACYm3Q==";
};
};
+ "khroma-2.0.0" = {
+ name = "khroma";
+ packageName = "khroma";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/khroma/-/khroma-2.0.0.tgz";
+ sha512 = "2J8rDNlQWbtiNYThZRvmMv5yt44ZakX+Tz5ZIp/mN1pt4snn+m030Va5Z4v8xA0cQFDXBwO/8i42xL4QPsVk3g==";
+ };
+ };
"killable-1.0.1" = {
name = "killable";
packageName = "killable";
@@ -39700,13 +39052,13 @@ let
sha512 = "sZLUnTqimCkvkgRS+kbPlYW5o8q5w1cu+uIisKpEWkj31I8mx8kNG162DwRav8Zirkva6N5uoFsm9kzK4mUXjw==";
};
};
- "known-css-properties-0.24.0" = {
+ "known-css-properties-0.25.0" = {
name = "known-css-properties";
packageName = "known-css-properties";
- version = "0.24.0";
+ version = "0.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.24.0.tgz";
- sha512 = "RTSoaUAfLvpR357vWzAz/50Q/BmHfmE6ETSWfutT0AJiw10e6CmcdYRQJlLRd95B53D0Y2aD1jSxD3V3ySF+PA==";
+ url = "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.25.0.tgz";
+ sha512 = "b0/9J1O9Jcyik1GC6KC42hJ41jKwdO/Mq8Mdo5sYN+IuRTXs2YFHZC3kZSx6ueusqa95x3wLYe/ytKjbAfGixA==";
};
};
"koa-2.13.4" = {
@@ -40465,6 +39817,15 @@ let
sha512 = "T8NGH6F+t4sajEbC3CT2MbjqGyzTu0fH/X/UnnO8YlKoSUlU3Y9LFkmQDjMyDkxWN+peJmUQt8Em+OZu5XHLaw==";
};
};
+ "lightning-5.15.0" = {
+ name = "lightning";
+ packageName = "lightning";
+ version = "5.15.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lightning/-/lightning-5.15.0.tgz";
+ sha512 = "FeWhHa9O2AuzE2EzkTAVmk+sJIOd9kgiDsA8lXti5bCHW709zwZaq8IP+hQ1ksSh79+ZcOWozot6ONLEbf+w8w==";
+ };
+ };
"lightning-5.8.2" = {
name = "lightning";
packageName = "lightning";
@@ -40672,67 +40033,67 @@ let
sha512 = "gto+BB2uEob8qRiTlOq+R3uX0YNHsX9mjxj9Sbdue/LIKqu6IlZjrsjKeGyOMquc/474GEqFyX2pdytpydp0rQ==";
};
};
- "lmdb-2.3.8" = {
+ "lmdb-2.3.10" = {
name = "lmdb";
packageName = "lmdb";
- version = "2.3.8";
+ version = "2.3.10";
src = fetchurl {
- url = "https://registry.npmjs.org/lmdb/-/lmdb-2.3.8.tgz";
- sha512 = "SoYYrcmJWJgIG4PSkVJiXot3m9035zE0FRUgqhgzZIO6LnikbORzBznxbSrN7SaogR95w9lgTm+LwW+Os4mN5Q==";
+ url = "https://registry.npmjs.org/lmdb/-/lmdb-2.3.10.tgz";
+ sha512 = "GtH+nStn9V59CfYeQ5ddx6YTfuFCmu86UJojIjJAweG+/Fm0PDknuk3ovgYDtY/foMeMdZa8/P7oSljW/d5UPw==";
};
};
- "lmdb-darwin-arm64-2.3.8" = {
+ "lmdb-darwin-arm64-2.3.10" = {
name = "lmdb-darwin-arm64";
packageName = "lmdb-darwin-arm64";
- version = "2.3.8";
+ version = "2.3.10";
src = fetchurl {
- url = "https://registry.npmjs.org/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.8.tgz";
- sha512 = "QFFnLQlQn1WjSyWSKU4pdOQNPLea2/iL8LcR979LGp3y4OKmuC9fNLIiCTqp+t5QBVBOKfJZ8sqFd/5KHmDFYg==";
+ url = "https://registry.npmjs.org/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.3.10.tgz";
+ sha512 = "LVXbH2MYu7/ZuQ8+P9rv+SwNyBKltxo7vHAGJS94HWyfwnCbKEYER9PImBvNBwzvgtaYk6x0RMX3oor6e6KdDQ==";
};
};
- "lmdb-darwin-x64-2.3.8" = {
+ "lmdb-darwin-x64-2.3.10" = {
name = "lmdb-darwin-x64";
packageName = "lmdb-darwin-x64";
- version = "2.3.8";
+ version = "2.3.10";
src = fetchurl {
- url = "https://registry.npmjs.org/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.8.tgz";
- sha512 = "cPVym3ZUXJurjv9YnZ40fsJuszPzn8mvIWjcqZuhXonUXAgSxvGloAwH5HCtFF7oIT6r/iXZejfgVL1MbM97tw==";
+ url = "https://registry.npmjs.org/lmdb-darwin-x64/-/lmdb-darwin-x64-2.3.10.tgz";
+ sha512 = "gAc/1b/FZOb9yVOT+o0huA+hdW82oxLo5r22dFTLoRUFG1JMzxdTjmnW6ONVOHdqC9a5bt3vBCEY3jmXNqV26A==";
};
};
- "lmdb-linux-arm-2.3.8" = {
+ "lmdb-linux-arm-2.3.10" = {
name = "lmdb-linux-arm";
packageName = "lmdb-linux-arm";
- version = "2.3.8";
+ version = "2.3.10";
src = fetchurl {
- url = "https://registry.npmjs.org/lmdb-linux-arm/-/lmdb-linux-arm-2.3.8.tgz";
- sha512 = "jriO1nsPIPEBZjJ4OgshLRmi1br5E6CWnPTwSz3XO1UvDh6GEj87IL/brQxJq6HlpUj01wrQCqpvJMBTMtk+Ew==";
+ url = "https://registry.npmjs.org/lmdb-linux-arm/-/lmdb-linux-arm-2.3.10.tgz";
+ sha512 = "Rb8+4JjsThuEcJ7GLLwFkCFnoiwv/3hAAbELWITz70buQFF+dCZvCWWgEgmDTxwn5r+wIkdUjmFv4dqqiKQFmQ==";
};
};
- "lmdb-linux-arm64-2.3.8" = {
+ "lmdb-linux-arm64-2.3.10" = {
name = "lmdb-linux-arm64";
packageName = "lmdb-linux-arm64";
- version = "2.3.8";
+ version = "2.3.10";
src = fetchurl {
- url = "https://registry.npmjs.org/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.8.tgz";
- sha512 = "9kgNOm7xhGmji2pH4UgeBbojBuH+0KeJ7C51kL7zEBxVXB/xD3IMZV42+MdSFzJJcmgEe3XuIdxt/TFSXhEEIw==";
+ url = "https://registry.npmjs.org/lmdb-linux-arm64/-/lmdb-linux-arm64-2.3.10.tgz";
+ sha512 = "Ihr8mdICTK3jA4GXHxrXGK2oekn0mY6zuDSXQDNtyRSH19j3D2Y04A7SEI9S0EP/t5sjKSudYgZbiHDxRCsI5A==";
};
};
- "lmdb-linux-x64-2.3.8" = {
+ "lmdb-linux-x64-2.3.10" = {
name = "lmdb-linux-x64";
packageName = "lmdb-linux-x64";
- version = "2.3.8";
+ version = "2.3.10";
src = fetchurl {
- url = "https://registry.npmjs.org/lmdb-linux-x64/-/lmdb-linux-x64-2.3.8.tgz";
- sha512 = "qTdGkBKhuROMNxrOsI31YInjBEr3b29tI80XutD3kcO3UgBXE/I1Jy57WOde6ghEdPlfh3pkycme6+Q+tsmhyA==";
+ url = "https://registry.npmjs.org/lmdb-linux-x64/-/lmdb-linux-x64-2.3.10.tgz";
+ sha512 = "E3l3pDiCA9uvnLf+t3qkmBGRO01dp1EHD0x0g0iRnfpAhV7wYbayJGfG93BUt22Tj3fnq4HDo4dQ6ZWaDI1nuw==";
};
};
- "lmdb-win32-x64-2.3.8" = {
+ "lmdb-win32-x64-2.3.10" = {
name = "lmdb-win32-x64";
packageName = "lmdb-win32-x64";
- version = "2.3.8";
+ version = "2.3.10";
src = fetchurl {
- url = "https://registry.npmjs.org/lmdb-win32-x64/-/lmdb-win32-x64-2.3.8.tgz";
- sha512 = "IalYsXztvgjjPmXxFEkmZ3Tio0QmDCOxYBgxQDvAghpqa4RwufbS6unbkxO+aYK6ZWjzEZbsNKFSSb/vVgkn2A==";
+ url = "https://registry.npmjs.org/lmdb-win32-x64/-/lmdb-win32-x64-2.3.10.tgz";
+ sha512 = "gspWk34tDANhjn+brdqZstJMptGiwj4qFNVg0Zey9ds+BUlif+Lgf5szrfOVzZ8gVRkk1Lgbz7i78+V7YK7SCA==";
};
};
"ln-accounting-5.0.6" = {
@@ -40771,6 +40132,15 @@ let
sha512 = "7WHV5uP0BrnXX3me4OsdaFI8J81LMJRENCREbxR/CQuvLW6rvLe0KlZmuLVBxwVAYKcXc0CcfiZPX0js2+8NKA==";
};
};
+ "ln-service-53.16.0" = {
+ name = "ln-service";
+ packageName = "ln-service";
+ version = "53.16.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ln-service/-/ln-service-53.16.0.tgz";
+ sha512 = "xTAiirmYr/ZCDNevGiYsEUUUJDOpd4BlT5s8/P6XjJ0ax0LZTz/Evp7NQ2smegUmjvzPEmMXSrKgg3hlPAgb8g==";
+ };
+ };
"ln-service-53.9.3" = {
name = "ln-service";
packageName = "ln-service";
@@ -40789,13 +40159,13 @@ let
sha512 = "+TFRyMVvUU9jAqRGPiawPY8cGSmfd2bKfofGsH95zTlQ4DeQLYyEPFxzqJZrkmddqdohfuF0XVW9y7+4v4eq5A==";
};
};
- "ln-telegram-3.21.4" = {
+ "ln-telegram-3.21.5" = {
name = "ln-telegram";
packageName = "ln-telegram";
- version = "3.21.4";
+ version = "3.21.5";
src = fetchurl {
- url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.21.4.tgz";
- sha512 = "h3EpnHptvIDF+9H9hvaHGMNHkvYNSnXLLhOL5S6RBfFSl0rcQW0tB/fkxBOHB8//3Ich3AvBJMiISabA6m2ckg==";
+ url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.21.5.tgz";
+ sha512 = "/x9yM8h9LyHMwZL/mjV95rS6zpKZDgATtSiPwYlsh+ZhAswVk3jcitgLckIJHV6I9kzgZb61ZIbPCk6o530MJQ==";
};
};
"load-bmfont-1.4.1" = {
@@ -42697,13 +42067,13 @@ let
sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==";
};
};
- "lru-cache-7.9.0" = {
+ "lru-cache-7.10.1" = {
name = "lru-cache";
packageName = "lru-cache";
- version = "7.9.0";
+ version = "7.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.9.0.tgz";
- sha512 = "lkcNMUKqdJk96TuIXUidxaPuEg5sJo/+ZyVE2BDFnuZGzwXem7d8582eG8vbu4todLfT14snP6iHriCHXXi5Rw==";
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.10.1.tgz";
+ sha512 = "BQuhQxPuRl79J5zSXRP+uNzPOyZw2oFI9JLRQ80XswSvg21KMKNtQza9eF42rfI/3Z40RvzBdXgziEkudzjo8A==";
};
};
"lru-queue-0.1.0" = {
@@ -42968,13 +42338,13 @@ let
sha512 = "s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==";
};
};
- "make-fetch-happen-10.1.2" = {
+ "make-fetch-happen-10.1.3" = {
name = "make-fetch-happen";
packageName = "make-fetch-happen";
- version = "10.1.2";
+ version = "10.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.1.2.tgz";
- sha512 = "GWMGiZsKVeJACQGJ1P3Z+iNec7pLsU6YW1q11eaPn3RR8nRXHppFWfP7Eu0//55JK3hSjrAQRl8sDa5uXpq1Ew==";
+ url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.1.3.tgz";
+ sha512 = "s/UjmGjUHn9m52cctFhN2ITObbT+axoUhgeir8xGrOlPbKDyJsdhQzb8PGncPQQ28uduHybFJ6Iumy2OZnreXw==";
};
};
"make-fetch-happen-8.0.14" = {
@@ -43004,15 +42374,6 @@ let
sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==";
};
};
- "makeerror-1.0.12" = {
- name = "makeerror";
- packageName = "makeerror";
- version = "1.0.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz";
- sha512 = "JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==";
- };
- };
"map-age-cleaner-0.1.3" = {
name = "map-age-cleaner";
packageName = "map-age-cleaner";
@@ -43193,13 +42554,13 @@ let
sha512 = "/V1MnLL/rgJ3jkMWo84UR+K+jF1cxNG1a+KwqeXqTIJ+jtA8aWSHuigx8lTzauiIjBDbwF3NcWQMotd0Dm39jA==";
};
};
- "markdown-it-anchor-8.6.2" = {
+ "markdown-it-anchor-8.6.4" = {
name = "markdown-it-anchor";
packageName = "markdown-it-anchor";
- version = "8.6.2";
+ version = "8.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.2.tgz";
- sha512 = "JNaekTlIwwyYGBN3zifZDxgz4bSL8sbEj58fdTZGmPSMMGXBZapFjcZk2I33Jy79c1fvCKHpF7MA/67FOTjvzA==";
+ url = "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.4.tgz";
+ sha512 = "Ul4YVYZNxMJYALpKtu+ZRdrryYt/GlQ5CK+4l1bp/gWXOG2QWElt6AqF3Mih/wfUKdZbNAZVXGR73/n6U/8img==";
};
};
"markdown-it-deflist-2.1.0" = {
@@ -43310,13 +42671,13 @@ let
sha512 = "UB/IbzjWazwTlNAX0pvWNlJS8NKsOQ4syrXZQ/C72j+jirrsjVRT627lCaylrKJFBQWfRsPmIVQie8x38DEhAQ==";
};
};
- "markdown-link-extractor-2.0.1" = {
+ "markdown-link-extractor-3.0.2" = {
name = "markdown-link-extractor";
packageName = "markdown-link-extractor";
- version = "2.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/markdown-link-extractor/-/markdown-link-extractor-2.0.1.tgz";
- sha512 = "Qy5AcoW7CDfIAB3I6cz2QFGHoLQYSH15lmfEqRgPvC/DEEMhb/EK0yeXmpIk+GSuJveYxLvkpXVFEZhgvubxTw==";
+ url = "https://registry.npmjs.org/markdown-link-extractor/-/markdown-link-extractor-3.0.2.tgz";
+ sha512 = "vmTTAWSa49Lqojr6L4ALGLV0TLz4+1movDb6saDS6c6FLGGbPFSkhjevpXsQTXEYY9lCWYcVQqb7l41WEZsM7Q==";
};
};
"markdown-serve-0.3.3" = {
@@ -43391,13 +42752,13 @@ let
sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg==";
};
};
- "marked-4.0.14" = {
+ "marked-4.0.15" = {
name = "marked";
packageName = "marked";
- version = "4.0.14";
+ version = "4.0.15";
src = fetchurl {
- url = "https://registry.npmjs.org/marked/-/marked-4.0.14.tgz";
- sha512 = "HL5sSPE/LP6U9qKgngIIPTthuxC0jrfxpYMZ3LdGDD3vTnLs59m2Z7r6+LNDR3ToqEQdkKd6YaaEfJhodJmijQ==";
+ url = "https://registry.npmjs.org/marked/-/marked-4.0.15.tgz";
+ sha512 = "esX5lPdTfG4p8LDkv+obbRCyOKzB+820ZZyMOXJZygZBHrH9b3xXR64X4kT3sPe9Nx8qQXbmcz6kFSMt4Nfk6Q==";
};
};
"marked-terminal-3.3.0" = {
@@ -44291,13 +43652,13 @@ let
sha512 = "ITSHjwVaby1Li738sxhF48sLTxcNyUAoWfoqyztL1f7J6JOLpHOuQPNLBb6lxGPUA0u7xP9IRULgvod0dKu35A==";
};
};
- "mermaid-9.0.1" = {
+ "mermaid-9.1.1" = {
name = "mermaid";
packageName = "mermaid";
- version = "9.0.1";
+ version = "9.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mermaid/-/mermaid-9.0.1.tgz";
- sha512 = "TXXffALLhCACez+MUky4cOOcGXEXiJhHwN8eRV7bBqD8F6KdcjssyPZClVgzrC2KQzSGLqQkj7ce8ea7MhWz+Q==";
+ url = "https://registry.npmjs.org/mermaid/-/mermaid-9.1.1.tgz";
+ sha512 = "2RVD+WkzZ4VDyO9gQvQAuQ/ux2gLigJtKDTlbwjYqOR/NwsVzTSfGm/kx648/qWJsg6Sv04tE9BWCO8s6a+pFA==";
};
};
"meros-1.1.4" = {
@@ -44741,13 +44102,13 @@ let
sha512 = "U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==";
};
};
- "micromark-util-events-to-acorn-1.0.6" = {
+ "micromark-util-events-to-acorn-1.1.0" = {
name = "micromark-util-events-to-acorn";
packageName = "micromark-util-events-to-acorn";
- version = "1.0.6";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.0.6.tgz";
- sha512 = "+kUMe2kNGy4mljNVt+YmFfwomSIVqX3NI6ePrk6SIl/0GaR53a6eUIGmhV5DDUkbLPPNWgVFCS6ExOqb0WFgHQ==";
+ url = "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.1.0.tgz";
+ sha512 = "hB8HzidNt/Us5q2BvqXj8eeEm0U9rRfnZxcA9T65JRUMAY4MbfJRAFm7m9fXMAdSHJiVPmajsp8/rp6/FlHL8A==";
};
};
"micromark-util-html-tag-name-1.0.0" = {
@@ -45587,22 +44948,22 @@ let
sha512 = "pHZ/cySF00FVENDWIDzJyoObFahK6Eg4d0papqm6d7yMkxWTZ/S/csqJX1A3PsYy4t5k3z2QnlwuCfMW5lSEwA==";
};
};
- "mobx-react-7.3.0" = {
+ "mobx-react-7.4.0" = {
name = "mobx-react";
packageName = "mobx-react";
- version = "7.3.0";
+ version = "7.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mobx-react/-/mobx-react-7.3.0.tgz";
- sha512 = "RGEcwZokopqyJE5JPwXKB9FWMSqFM9NJVO2QPI+z6laJTJeBHqvPicjnKgY5mvihxTeXB1+72TnooqUePeGV1g==";
+ url = "https://registry.npmjs.org/mobx-react/-/mobx-react-7.4.0.tgz";
+ sha512 = "gbUwaKZK09SiAleTMxNMKs1MYKTpoIEWJLTLRIR/xnALuuHET8wkL8j1nbc1/6cDkOWVyKz/ReftILx0Pdh2PQ==";
};
};
- "mobx-react-lite-3.3.0" = {
+ "mobx-react-lite-3.4.0" = {
name = "mobx-react-lite";
packageName = "mobx-react-lite";
- version = "3.3.0";
+ version = "3.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.3.0.tgz";
- sha512 = "U/kMSFtV/bNVgY01FuiGWpRkaQVHozBq5CEBZltFvPt4FcV111hEWkgwqVg9GPPZSEuEdV438PEz8mk8mKpYlA==";
+ url = "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.4.0.tgz";
+ sha512 = "bRuZp3C0itgLKHu/VNxi66DN/XVkQG7xtoBVWxpvC5FhAqbOCP21+nPhULjnzEqd7xBMybp6KwytdUpZKEgpIQ==";
};
};
"mocha-2.5.3" = {
@@ -45731,13 +45092,13 @@ let
sha512 = "3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg==";
};
};
- "mongodb-4.5.0" = {
+ "mongodb-4.6.0" = {
name = "mongodb";
packageName = "mongodb";
- version = "4.5.0";
+ version = "4.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mongodb/-/mongodb-4.5.0.tgz";
- sha512 = "A2l8MjEpKojnhbCM0MK3+UOGUSGvTNNSv7AkP1fsT7tkambrkkqN/5F2y+PhzsV0Nbv58u04TETpkaSEdI2zKA==";
+ url = "https://registry.npmjs.org/mongodb/-/mongodb-4.6.0.tgz";
+ sha512 = "1gsxVXmjFTPJ+CkMG9olE4bcVsyY8lBJN9m5B5vj+LZ7wkBqq3PO8RVmNX9GwCBOBz1KV0zM00vPviUearSv7A==";
};
};
"mongodb-connection-string-url-2.5.2" = {
@@ -45992,13 +45353,13 @@ let
sha512 = "VoY2AaoowHZLLKyEb5FRzuhdSzXn5quGjcMKJOJHJPxp9baYZx5t6jiHUhp5aNRlqqlt+5GXQGovMLNKsrm1hg==";
};
};
- "msgpackr-1.5.6" = {
+ "msgpackr-1.5.7" = {
name = "msgpackr";
packageName = "msgpackr";
- version = "1.5.6";
+ version = "1.5.7";
src = fetchurl {
- url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.5.6.tgz";
- sha512 = "Y1Ia1AYKcz30JOAUyyC0jCicI7SeP8NK+SVCGZIeLg2oQs28wSwW2GbHXktk4ZZmrq9/v2jU0JAbvbp2d1ewpg==";
+ url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.5.7.tgz";
+ sha512 = "Hsa80i8W4BiObSMHslfnwC+CC1CYHZzoXJZn0+3EvoCEOgt3c5QlXhdcjgFk2aZxMgpV8aUFZqJyQUCIp4UrzA==";
};
};
"msgpackr-extract-1.1.4" = {
@@ -46559,6 +45920,15 @@ let
sha512 = "p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==";
};
};
+ "nanoid-3.3.4" = {
+ name = "nanoid";
+ packageName = "nanoid";
+ version = "3.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz";
+ sha512 = "MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==";
+ };
+ };
"nanoiterator-1.2.1" = {
name = "nanoiterator";
packageName = "nanoiterator";
@@ -46703,6 +46073,15 @@ let
sha512 = "fKiXMQrpP7CYWJQzKkPPx9hPgmq+YLDyxcG9N8RpiE9FoCkCbzD0NyW0YhE3xn3Aupe7nnDeIx4PFzYehpHT9Q==";
};
};
+ "nconf-0.11.4" = {
+ name = "nconf";
+ packageName = "nconf";
+ version = "0.11.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nconf/-/nconf-0.11.4.tgz";
+ sha512 = "YaDR846q11JnG1vTrhJ0QIlhiGY6+W1bgWtReG9SS3vkTl3AoNwFvUItdhG6/ZjGCfWpUVuRTNEBTDAQ3nWhGw==";
+ };
+ };
"nconf-0.6.9" = {
name = "nconf";
packageName = "nconf";
@@ -48306,13 +47685,13 @@ let
sha512 = "L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ==";
};
};
- "npm-packlist-5.0.2" = {
+ "npm-packlist-5.0.3" = {
name = "npm-packlist";
packageName = "npm-packlist";
- version = "5.0.2";
+ version = "5.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.0.2.tgz";
- sha512 = "jLhcNisUgpz6v2KC75qSeEYAM8UBMYjQ2OhlCOJjB4Ovu7XXnD25UqZ6hOQNeGShL/2ju3LL2E/zBbsuzkIQ8w==";
+ url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.0.3.tgz";
+ sha512 = "KuSbzgejxdsAWbNNyEs8EsyDHsO+nJF6k+9WuWzFbSNh5tFHs4lDApXw7kntKpuehfp8lKRzJkMtz0+WmGvTIw==";
};
};
"npm-pick-manifest-6.1.1" = {
@@ -49009,13 +48388,13 @@ let
sha512 = "eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==";
};
};
- "obliterator-2.0.3" = {
+ "obliterator-2.0.4" = {
name = "obliterator";
packageName = "obliterator";
- version = "2.0.3";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/obliterator/-/obliterator-2.0.3.tgz";
- sha512 = "qN5lHhArxl/789Bp3XCpssAYy7cvOdRzxzflmGEJaiipAT2b/USr1XvKjYyssPOwQ/3KjV1e8Ed9po9rie6E6A==";
+ url = "https://registry.npmjs.org/obliterator/-/obliterator-2.0.4.tgz";
+ sha512 = "lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==";
};
};
"observ-0.2.0" = {
@@ -49243,13 +48622,13 @@ let
sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA==";
};
};
- "oo-ascii-tree-1.57.0" = {
+ "oo-ascii-tree-1.58.0" = {
name = "oo-ascii-tree";
packageName = "oo-ascii-tree";
- version = "1.57.0";
+ version = "1.58.0";
src = fetchurl {
- url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.57.0.tgz";
- sha512 = "f0YTN8p0IN/X05R3N8yfENqCx7seBtDdVdJa8yQc2kx/v5OuEz/femhwEerxSsVXlb/OKjo2u4QAXTkjWjbPHA==";
+ url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.58.0.tgz";
+ sha512 = "XxnHnZsIpWoB1fHs0pKQXJpxIjpIcOkSar2tld7w1aVMPVk1RY7M5pi5FTcASvgrUUrA1mYXz0hGjg/Ve3lsYg==";
};
};
"open-0.0.2" = {
@@ -50566,13 +49945,13 @@ let
sha512 = "CdYEl03JDrRO3x18uHjBYA9TyoW8gy+ThVcypcDkxPtKlw76e4ejhYB6i9lJ+/cebbjpqPW/CijjqxwDTts8Ow==";
};
};
- "pacote-13.1.1" = {
+ "pacote-13.3.0" = {
name = "pacote";
packageName = "pacote";
- version = "13.1.1";
+ version = "13.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pacote/-/pacote-13.1.1.tgz";
- sha512 = "MTT3k1OhUo+IpvoHGp25OwsRU0L+kJQM236OCywxvY4OIJ/YfloNW2/Yc3HMASH10BkfZaGMVK/pxybB7fWcLw==";
+ url = "https://registry.npmjs.org/pacote/-/pacote-13.3.0.tgz";
+ sha512 = "auhJAUlfC2TALo6I0s1vFoPvVFgWGx+uz/PnIojTTgkGwlK3Np8sGJ0ghfFhiuzJXTZoTycMLk8uLskdntPbDw==";
};
};
"pad-0.0.5" = {
@@ -50656,15 +50035,6 @@ let
sha512 = "RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==";
};
};
- "paredit.js-0.3.6" = {
- name = "paredit.js";
- packageName = "paredit.js";
- version = "0.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/paredit.js/-/paredit.js-0.3.6.tgz";
- sha512 = "Z97Go1ucly6XzJDWsX8g6aXKIapx610JElNEgAvOQ8DA3A5uTAzEIaPZyn3r/WskHS+HpaO17oALcy2dUsKlQA==";
- };
- };
"parent-module-1.0.1" = {
name = "parent-module";
packageName = "parent-module";
@@ -51520,13 +50890,13 @@ let
sha512 = "gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==";
};
};
- "path-to-regexp-6.2.0" = {
+ "path-to-regexp-6.2.1" = {
name = "path-to-regexp";
packageName = "path-to-regexp";
- version = "6.2.0";
+ version = "6.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.0.tgz";
- sha512 = "f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg==";
+ url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz";
+ sha512 = "JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==";
};
};
"path-type-1.1.0" = {
@@ -51862,15 +51232,6 @@ let
sha512 = "eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==";
};
};
- "pinkie-1.0.0" = {
- name = "pinkie";
- packageName = "pinkie";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pinkie/-/pinkie-1.0.0.tgz";
- sha1 = "5a47f28ba1015d0201bda7bf0f358e47bec8c7e4";
- };
- };
"pinkie-2.0.4" = {
name = "pinkie";
packageName = "pinkie";
@@ -51880,15 +51241,6 @@ let
sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870";
};
};
- "pinkie-promise-1.0.0" = {
- name = "pinkie-promise";
- packageName = "pinkie-promise";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-1.0.0.tgz";
- sha1 = "d1da67f5482563bb7cf57f286ae2822ecfbf3670";
- };
- };
"pinkie-promise-2.0.1" = {
name = "pinkie-promise";
packageName = "pinkie-promise";
@@ -51979,15 +51331,6 @@ let
sha1 = "8f47dcec5011b477b67db03c243bc1f3085e8854";
};
};
- "pixelmatch-5.3.0" = {
- name = "pixelmatch";
- packageName = "pixelmatch";
- version = "5.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pixelmatch/-/pixelmatch-5.3.0.tgz";
- sha512 = "o8mkY4E/+LNUf6LzX96ht6k6CEDi65k9G2rjMtBe9Oo+VPKSvl+0GKHuH/AlG+GA5LPG/i5hrekkxUc3s2HU+Q==";
- };
- };
"pixiv-api-client-0.25.0" = {
name = "pixiv-api-client";
packageName = "pixiv-api-client";
@@ -52339,15 +51682,6 @@ let
sha512 = "40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==";
};
};
- "pngjs-6.0.0" = {
- name = "pngjs";
- packageName = "pngjs";
- version = "6.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz";
- sha512 = "TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==";
- };
- };
"pnp-webpack-plugin-1.7.0" = {
name = "pnp-webpack-plugin";
packageName = "pnp-webpack-plugin";
@@ -52420,16 +51754,6 @@ let
sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
};
};
- "posix-getopt-git+https://github.com/anmonteiro/node-getopt#master" = {
- name = "posix-getopt";
- packageName = "posix-getopt";
- version = "1.2.0";
- src = fetchgit {
- url = "https://github.com/anmonteiro/node-getopt";
- rev = "a3123885e3559c9b70903948d6e5c34852520d74";
- sha256 = "0092766ac49279342f7d17677359880b44b245ad9d32237a11a5ea45cb0d03fa";
- };
- };
"postcss-6.0.1" = {
name = "postcss";
packageName = "postcss";
@@ -55292,13 +54616,13 @@ let
sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7";
};
};
- "pvtsutils-1.2.2" = {
+ "pvtsutils-1.3.2" = {
name = "pvtsutils";
packageName = "pvtsutils";
- version = "1.2.2";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.2.2.tgz";
- sha512 = "OALo5ZEdqiI127i64+CXwkCOyFHUA+tCQgaUO/MvRDFXWPr53f2sx28ECNztUEzuyu5xvuuD1EB/szg9mwJoGA==";
+ url = "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.2.tgz";
+ sha512 = "+Ipe2iNUyrZz+8K/2IOo+kKikdtfhRKzNpQbruF2URmqPtoqAs8g3xS7TJvFF2GcPXjh7DkqMnpVveRFq4PgEQ==";
};
};
"pvutils-1.1.3" = {
@@ -55310,13 +54634,13 @@ let
sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==";
};
};
- "pyright-1.1.243" = {
+ "pyright-1.1.246" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.243";
+ version = "1.1.246";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.243.tgz";
- sha512 = "0PUyHTSr+LyE9Ej0A7tB8tM4pzAr34o1c3rHtfaBdZ2265HPvPE/Kj92ljX2F00Q6uAeZyyLEmzPOTuKh2WC8Q==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.246.tgz";
+ sha512 = "TEbHs4HD0J4/KGpXLqLBauOVT8G+yC7W8FKjyd00AzM9eyB+sx0EpujPnLKf6qI7x6LZJBgNoxpkPVq/6Wcq3A==";
};
};
"q-0.9.7" = {
@@ -56192,13 +55516,13 @@ let
sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==";
};
};
- "react-devtools-core-4.24.4" = {
+ "react-devtools-core-4.24.6" = {
name = "react-devtools-core";
packageName = "react-devtools-core";
- version = "4.24.4";
+ version = "4.24.6";
src = fetchurl {
- url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.24.4.tgz";
- sha512 = "jbX8Yqyq4YvFEobHyXVlGaH0Cs/+EOdb3PL911bxaR5BnzbB5TE4RFHC1iOgT4vRH3VxIIrVQ7lR9vsiFFCYCA==";
+ url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.24.6.tgz";
+ sha512 = "+6y6JAtAo1NUUxaCwCYTb13ViBpc7RjNTlj1HZRlDJmi7UYToj5+BNn8Duzz2YizzAzmRUWZkRM7OtqxnN6TnA==";
};
};
"react-dom-17.0.2" = {
@@ -56327,13 +55651,13 @@ let
sha512 = "2FoTQzRNTncBVtnzxFOk2mCpcfxQpenBMbk5kSVBg5UcPqV9fRbgY2zhb7GTWWOlpFmAxhClBDlIq8Rsubz1yQ==";
};
};
- "react-string-replace-1.0.0" = {
+ "react-string-replace-1.1.0" = {
name = "react-string-replace";
packageName = "react-string-replace";
- version = "1.0.0";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/react-string-replace/-/react-string-replace-1.0.0.tgz";
- sha512 = "+iLsyE4AeSmnfctgswXOf1PmKRgns6wJ4LVb+8ADMU6mDK3jvBE11QzfMQf7CYtPUUiBCDjZ9ZppzXOIYrzCRg==";
+ url = "https://registry.npmjs.org/react-string-replace/-/react-string-replace-1.1.0.tgz";
+ sha512 = "N6RalSDFGbOHs0IJi1H611WbZsvk3ZT47Jl2JEXFbiS3kTwsdCYij70Keo/tWtLy7sfhDsYm7CwNM/WmjXIaMw==";
};
};
"react-tabs-3.2.3" = {
@@ -56840,15 +56164,6 @@ let
sha512 = "r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==";
};
};
- "realpath-native-2.0.0" = {
- name = "realpath-native";
- packageName = "realpath-native";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/realpath-native/-/realpath-native-2.0.0.tgz";
- sha512 = "v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==";
- };
- };
"recast-0.10.43" = {
name = "recast";
packageName = "recast";
@@ -57029,13 +56344,13 @@ let
sha1 = "b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4";
};
};
- "redoc-2.0.0-rc.67" = {
+ "redoc-2.0.0-rc.69" = {
name = "redoc";
packageName = "redoc";
- version = "2.0.0-rc.67";
+ version = "2.0.0-rc.69";
src = fetchurl {
- url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.67.tgz";
- sha512 = "u6rEKB0LylSisN+mFa3flj7zf+prXDB+G02foqC9BOlcXkUYXHFDZM4L3BTBL/DstyGTgjhe2dA9csAjIVti/g==";
+ url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.69.tgz";
+ sha512 = "AFedbb9h0I98z0lBF2hkkn3M09CsF/zXfRCd07vGL0fZg72/VFPAmHN7CyFRGg/whVEstZ2iUhN2jbN6MmTTDQ==";
};
};
"reduce-component-1.0.1" = {
@@ -57416,15 +56731,6 @@ let
sha512 = "ZssAvH9FjGYlJ/PBVKdSmfyPc3Cz4rTWgZLI4iE/SX8Nt5l3o3oEjv3wwG5VD7xOjktzdwp5coac+kJV9l4jgg==";
};
};
- "remark-frontmatter-1.3.3" = {
- name = "remark-frontmatter";
- packageName = "remark-frontmatter";
- version = "1.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-1.3.3.tgz";
- sha512 = "fM5eZPBvu2pVNoq3ZPW22q+5Ativ1oLozq2qYt9I2oNyxiUd/tDl0iLLntEVAegpZIslPWg1brhcP1VsaSVUag==";
- };
- };
"remark-frontmatter-2.0.0" = {
name = "remark-frontmatter";
packageName = "remark-frontmatter";
@@ -57956,15 +57262,6 @@ let
sha512 = "1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==";
};
};
- "remark-parse-5.0.0" = {
- name = "remark-parse";
- packageName = "remark-parse";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-parse/-/remark-parse-5.0.0.tgz";
- sha512 = "b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==";
- };
- };
"remark-parse-8.0.3" = {
name = "remark-parse";
packageName = "remark-parse";
@@ -59081,69 +58378,6 @@ let
sha512 = "ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g==";
};
};
- "rollup-1.32.1" = {
- name = "rollup";
- packageName = "rollup";
- version = "1.32.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz";
- sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==";
- };
- };
- "rollup-plugin-babel-4.4.0" = {
- name = "rollup-plugin-babel";
- packageName = "rollup-plugin-babel";
- version = "4.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz";
- sha512 = "Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==";
- };
- };
- "rollup-plugin-babel-minify-9.1.1" = {
- name = "rollup-plugin-babel-minify";
- packageName = "rollup-plugin-babel-minify";
- version = "9.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/rollup-plugin-babel-minify/-/rollup-plugin-babel-minify-9.1.1.tgz";
- sha512 = "/Jph4PungzuB4h8uPSNKJQ16GjxVTfaRT6f4EwZW5NfD7RU7niFSEMMCZAlM6ezf11MBo1ttQcei+FisyCxicg==";
- };
- };
- "rollup-plugin-commonjs-10.1.0" = {
- name = "rollup-plugin-commonjs";
- packageName = "rollup-plugin-commonjs";
- version = "10.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-10.1.0.tgz";
- sha512 = "jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==";
- };
- };
- "rollup-plugin-node-resolve-5.2.0" = {
- name = "rollup-plugin-node-resolve";
- packageName = "rollup-plugin-node-resolve";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-5.2.0.tgz";
- sha512 = "jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==";
- };
- };
- "rollup-plugin-replace-2.2.0" = {
- name = "rollup-plugin-replace";
- packageName = "rollup-plugin-replace";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/rollup-plugin-replace/-/rollup-plugin-replace-2.2.0.tgz";
- sha512 = "/5bxtUPkDHyBJAKketb4NfaeZjL5yLZdeUihSfbF2PQMz+rSTEb8ARKoOl3UBT4m7/X+QOXJo3sLTcq+yMMYTA==";
- };
- };
- "rollup-pluginutils-2.8.2" = {
- name = "rollup-pluginutils";
- packageName = "rollup-pluginutils";
- version = "2.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz";
- sha512 = "EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==";
- };
- };
"root-check-1.0.0" = {
name = "root-check";
packageName = "root-check";
@@ -59216,15 +58450,6 @@ let
sha512 = "OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==";
};
};
- "rsvp-4.8.5" = {
- name = "rsvp";
- packageName = "rsvp";
- version = "4.8.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz";
- sha512 = "nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==";
- };
- };
"rtcpeerconnection-shim-1.2.15" = {
name = "rtcpeerconnection-shim";
packageName = "rtcpeerconnection-shim";
@@ -59558,15 +58783,6 @@ let
sha512 = "jLYV0DORrzY3xaz/S9ydJL6Iz7essZeAfnAavsJ+zsJGZ1MOnsS52yRjU3uF3pJa/lla7+wisp//fxOwOH8SKQ==";
};
};
- "sane-4.1.0" = {
- name = "sane";
- packageName = "sane";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz";
- sha512 = "hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==";
- };
- };
"sanitize-filename-1.6.3" = {
name = "sanitize-filename";
packageName = "sanitize-filename";
@@ -61880,15 +61096,6 @@ let
sha1 = "17c742ff7cf187e2f59a15df9b81f17a62ce0899";
};
};
- "source-list-map-0.1.8" = {
- name = "source-list-map";
- packageName = "source-list-map";
- version = "0.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz";
- sha1 = "c550b2ab5427f6b3f21f5afead88c4f5587b2106";
- };
- };
"source-list-map-2.0.1" = {
name = "source-list-map";
packageName = "source-list-map";
@@ -62492,13 +61699,13 @@ let
sha512 = "1SdTNo+BVU211Xj1csWa8lV6KM0CtucDwRyA0VHl91wEH1Mgh7RxUpI4rVvG7OhHrzCSGaVyW5g8vKvlrk9DJA==";
};
};
- "sqlite3-5.0.6" = {
+ "sqlite3-5.0.8" = {
name = "sqlite3";
packageName = "sqlite3";
- version = "5.0.6";
+ version = "5.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.6.tgz";
- sha512 = "uT1dC6N3ReF+jchY01zvl1wVFFJ5xO86wSnCpK39uA/zmAHBDm6TiAq1v876QKv8JgiijxQ7/fb5C2LPm7ZAJA==";
+ url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.8.tgz";
+ sha512 = "f2ACsbSyb2D1qFFcqIXPfFscLtPVOWJr5GmUzYxf4W+0qelu5MWrR+FAQE1d5IUArEltBrzSDxDORG8P/IkqyQ==";
};
};
"sqlite3-git+https://github.com/mapbox/node-sqlite3.git#918052b538b0effe6c4a44c74a16b2749c08a0d2" = {
@@ -63015,15 +62222,6 @@ let
sha512 = "YzAzemVrXEf1OeZUpveXLeYUT5VVw/I5gxLeyzq1aMS3pRvFvCeaGliNFjKR3VKtGXRqF9WamqKwYadIG6vStQ==";
};
};
- "ssim.js-3.5.0" = {
- name = "ssim.js";
- packageName = "ssim.js";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ssim.js/-/ssim.js-3.5.0.tgz";
- sha512 = "Aj6Jl2z6oDmgYFFbQqK7fght19bXdOxY7Tj03nF+03M9gCBAjeIiO8/PlEGMfKDwYpw4q6iBqVq2YuREorGg/g==";
- };
- };
"ssri-5.3.0" = {
name = "ssri";
packageName = "ssri";
@@ -63321,6 +62519,15 @@ let
sha512 = "KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==";
};
};
+ "stream-0.0.2" = {
+ name = "stream";
+ packageName = "stream";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream/-/stream-0.0.2.tgz";
+ sha1 = "7f5363f057f6592c5595f00bc80a27f5cec1f0ef";
+ };
+ };
"stream-browserify-2.0.2" = {
name = "stream-browserify";
packageName = "stream-browserify";
@@ -63870,22 +63077,22 @@ let
sha512 = "8lMR2m+U0VJTPp6JjvJTtGyc4FIGq9CdRt7O9p6T0e6K4vjU+OP+SQJpbe/SBmRcCUIvNUnjsbmY6lnMp8MhsQ==";
};
};
- "string.prototype.trimend-1.0.4" = {
+ "string.prototype.trimend-1.0.5" = {
name = "string.prototype.trimend";
packageName = "string.prototype.trimend";
- version = "1.0.4";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz";
- sha512 = "y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==";
+ url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz";
+ sha512 = "I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==";
};
};
- "string.prototype.trimstart-1.0.4" = {
+ "string.prototype.trimstart-1.0.5" = {
name = "string.prototype.trimstart";
packageName = "string.prototype.trimstart";
- version = "1.0.4";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz";
- sha512 = "jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==";
+ url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz";
+ sha512 = "THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==";
};
};
"string2compact-1.3.2" = {
@@ -64923,13 +64130,13 @@ let
sha512 = "8z18eX8G/jbTXYzyNIaobrnD7PSN7yU/YkSasMmajrXtw0FGS64XjrKn5v37d36qmU3o1xLeuYnktshRr7uIFw==";
};
};
- "swagger-ui-dist-4.10.3" = {
+ "swagger-ui-dist-4.11.0" = {
name = "swagger-ui-dist";
packageName = "swagger-ui-dist";
- version = "4.10.3";
+ version = "4.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.10.3.tgz";
- sha512 = "eR4vsd7sYo0Sx7ZKRP5Z04yij7JkNmIlUQfrDQgC+xO5ABYx+waabzN+nDsQTLAJ4Z04bjkRd8xqkJtbxr3G7w==";
+ url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.11.0.tgz";
+ sha512 = "Jo4oq4Nc7LaTYuvyo1VY3z3OWmGZCzZon8s92auKqpIuVCJo3t1Qih+S+Ph8lS5+ZbvF2ugqWvXk83boXQux1w==";
};
};
"swagger2openapi-7.0.8" = {
@@ -65067,13 +64274,13 @@ let
sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==";
};
};
- "systeminformation-5.11.14" = {
+ "systeminformation-5.11.15" = {
name = "systeminformation";
packageName = "systeminformation";
- version = "5.11.14";
+ version = "5.11.15";
src = fetchurl {
- url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.11.14.tgz";
- sha512 = "m8CJx3fIhKohanB0ExTk5q53uI1J0g5B09p77kU+KxnxRVpADVqTAwCg1PFelqKsj4LHd+qmVnumb511Hg4xow==";
+ url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.11.15.tgz";
+ sha512 = "zUbObRjQeZcu84z9NVSm9JTiCPyPQ3MefJ3+76yvp+TeCv9WsO3szijyQLv0fChRrm2/sl2De3y1ewUOYOtz2Q==";
};
};
"sywac-1.3.0" = {
@@ -65518,15 +64725,6 @@ let
sha512 = "ZXwggmsv+mheSNZ0yOtpOBS5kTSosGPVcTeS9didqs2VRW0sIByYr2cLS1N2vlpGAjq5PKqmy6Z3hZEgcCG4Wg==";
};
};
- "term-img-4.1.0" = {
- name = "term-img";
- packageName = "term-img";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/term-img/-/term-img-4.1.0.tgz";
- sha512 = "DFpBhaF5j+2f7kheKFc1ajsAUUDGOaNPpKPtiIMxlbfud6mvfFZuWGnTRpaujUa5J7yl6cIw/h6nyr4mSsENPg==";
- };
- };
"term-size-1.2.0" = {
name = "term-size";
packageName = "term-size";
@@ -65626,15 +64824,6 @@ let
sha512 = "GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==";
};
};
- "test-exclude-6.0.0" = {
- name = "test-exclude";
- packageName = "test-exclude";
- version = "6.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz";
- sha512 = "cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==";
- };
- };
"test-value-2.1.0" = {
name = "test-value";
packageName = "test-value";
@@ -65977,6 +65166,15 @@ let
sha512 = "jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==";
};
};
+ "throughput-1.0.0" = {
+ name = "throughput";
+ packageName = "throughput";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/throughput/-/throughput-1.0.0.tgz";
+ sha512 = "owbJr1scbvJjvHkRONwHyY3Z4zIFTr9s0q9o6fYSnc8ur+2RenH88siGBat9agc4AgarrDiYSCZqEvucL6C+KQ==";
+ };
+ };
"thunkify-2.1.2" = {
name = "thunkify";
packageName = "thunkify";
@@ -66292,15 +65490,6 @@ let
sha512 = "76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==";
};
};
- "tmpl-1.0.5" = {
- name = "tmpl";
- packageName = "tmpl";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz";
- sha512 = "3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==";
- };
- };
"to-absolute-glob-2.0.2" = {
name = "to-absolute-glob";
packageName = "to-absolute-glob";
@@ -66616,13 +65805,13 @@ let
sha1 = "2d17d82cf669ada7f9dfe75db4b31f7034b71e29";
};
};
- "torrent-discovery-9.4.10" = {
+ "torrent-discovery-9.4.12" = {
name = "torrent-discovery";
packageName = "torrent-discovery";
- version = "9.4.10";
+ version = "9.4.12";
src = fetchurl {
- url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.4.10.tgz";
- sha512 = "Sx2BdYYRCWXkxenGlbt3ZRSH6rcrt8ii6O6Aub9vqeS+RzzyNn2w68QVGClpctExoLle3T2eXO9gdlPANckMkA==";
+ url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.4.12.tgz";
+ sha512 = "Des49BZggopAXc/rF8+MqDd4NGe9iwT4g7LGzithHUYocTax5wFFnVXkUh6N5U9sGZN4RZ1dr7bVIkD3xCfxIA==";
};
};
"torrent-piece-1.1.2" = {
@@ -67957,13 +67146,13 @@ let
sha512 = "FAGKF12fWdkpvNJZENacOH0e/83eG6JyVQyanIJaBXCN1J11TUQv1T1/z8S+Z0CG0ZPk1nPcreF/c7lrTd0TEQ==";
};
};
- "uglify-js-3.15.4" = {
+ "uglify-js-3.15.5" = {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.15.4";
+ version = "3.15.5";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.15.4.tgz";
- sha512 = "vMOPGDuvXecPs34V74qDKk4iJ/SN4vL3Ow/23ixafENYvtrNvtbcgUeugTcUGRGsOF/5fU8/NYSL5Hyb3l1OJA==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.15.5.tgz";
+ sha512 = "hNM5q5GbBRB5xB+PMqVRcgYe4c8jbyZ1pzZhS6jbq54/4F2gFK869ZheiE5A8/t+W5jtTNpWef/5Q9zk639FNQ==";
};
};
"uglify-js-3.4.10" = {
@@ -68290,13 +67479,13 @@ let
sha1 = "5e4bda308e4a8a2ae584f9b9a4359a499825cc50";
};
};
- "undici-5.1.0" = {
+ "undici-5.2.0" = {
name = "undici";
packageName = "undici";
- version = "5.1.0";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/undici/-/undici-5.1.0.tgz";
- sha512 = "S+Vy6GGLHmW0uNLyCOpma6qCEoX6Pw/Mga34UFeqNaMnfDMgeJhPdHwb9FDPC/gWnNhLxhE9Lis6yBDHtcJCqw==";
+ url = "https://registry.npmjs.org/undici/-/undici-5.2.0.tgz";
+ sha512 = "XY6+NS3WH9b3TKOHeNz2CjR+qrVz/k4fO9g3etPpLozRvULoQmZ1+dk9JbIz40ehn27xzFk4jYVU2MU3Nle62A==";
};
};
"unherit-1.1.3" = {
@@ -68407,15 +67596,6 @@ let
sha1 = "14bc6cd40d98ffff75b405506bad873ecbbac3ba";
};
};
- "unified-6.2.0" = {
- name = "unified";
- packageName = "unified";
- version = "6.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unified/-/unified-6.2.0.tgz";
- sha512 = "1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==";
- };
- };
"unified-7.1.0" = {
name = "unified";
packageName = "unified";
@@ -68776,15 +67956,6 @@ let
sha512 = "xtoY50b5+7IH8tFbkw64gisG9tMSpxDjhX9TmaJJae/XuxQ9R/Kc8Nv1eOsf43Gt4KV/LkriMy9mptDr7XLcaw==";
};
};
- "unist-util-remove-position-1.1.4" = {
- name = "unist-util-remove-position";
- packageName = "unist-util-remove-position";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.4.tgz";
- sha512 = "tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==";
- };
- };
"unist-util-remove-position-2.0.1" = {
name = "unist-util-remove-position";
packageName = "unist-util-remove-position";
@@ -70505,15 +69676,6 @@ let
sha1 = "c0fd6fa484f8debdb771f68c31ed75d88da97fe7";
};
};
- "vfile-2.3.0" = {
- name = "vfile";
- packageName = "vfile";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vfile/-/vfile-2.3.0.tgz";
- sha512 = "ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==";
- };
- };
"vfile-3.0.1" = {
name = "vfile";
packageName = "vfile";
@@ -70577,15 +69739,6 @@ let
sha512 = "TPE1tYyHrYxewHxi42F8yP45rY5fK78jiPg9WP1xH5TfAbdncxja5NquZyYSSzG1aHpK98AvUOVJrEOoTonW6w==";
};
};
- "vfile-location-2.0.6" = {
- name = "vfile-location";
- packageName = "vfile-location";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.6.tgz";
- sha512 = "sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==";
- };
- };
"vfile-location-3.2.0" = {
name = "vfile-location";
packageName = "vfile-location";
@@ -71090,13 +70243,13 @@ let
sha512 = "owRllqcFTnz5rXxcbmHPFGmpFmLqj9Z1V3Dzrv+s8ejOHLIT62Pyb5Uqzyl2/in2VP22DmzErPgZwrxjLCIKiQ==";
};
};
- "vscode-jsonrpc-8.0.0-next.8" = {
+ "vscode-jsonrpc-8.0.1" = {
name = "vscode-jsonrpc";
packageName = "vscode-jsonrpc";
- version = "8.0.0-next.8";
+ version = "8.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.0-next.8.tgz";
- sha512 = "2eh7v+rzttUG6wg21xnm3U4IaR/i8cU9vHI9ZntRXuBtCcyR3RrPBvl86Ffm91m/Cio45kmn/LskHK3BAKZILA==";
+ url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.1.tgz";
+ sha512 = "N/WKvghIajmEvXpatSzvTvOIz61ZSmOSa4BRA4pTLi+1+jozquQKP/MkaylP9iB68k73Oua1feLQvH3xQuigiQ==";
};
};
"vscode-languageclient-4.0.1" = {
@@ -71198,13 +70351,13 @@ let
sha512 = "/65lxR/CuLJoOdzTjOTYUPWS7k5qzaWese4PObnWc6jwLryUrSa7DslYfaRXigh5/xr1nlaUZCcJwkpgM0wFvw==";
};
};
- "vscode-languageserver-8.0.0-next.14" = {
+ "vscode-languageserver-8.0.1" = {
name = "vscode-languageserver";
packageName = "vscode-languageserver";
- version = "8.0.0-next.14";
+ version = "8.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.0.0-next.14.tgz";
- sha512 = "8CjwnSuKuIs71E9dCtx8MBTCKmH7KvWZHgTf2KN9Pa03IshdNU3zcFs/yfifpDSWpE1EcLeWYCvZwir/1Jt5kA==";
+ url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.0.1.tgz";
+ sha512 = "sn7SjBwWm3OlmLtgg7jbM0wBULppyL60rj8K5HF0ny/MzN+GzPBX1kCvYdybhl7UW63V5V5tRVnyB8iwC73lSQ==";
};
};
"vscode-languageserver-protocol-3.14.1" = {
@@ -71252,15 +70405,6 @@ let
sha512 = "VLRcWKOpCXcx9UrqrS+NSF6pNxV498VGYGW+eyp9a79/F9ElUq3wdG6acXYlEfpWHuIxpm6MXps8FU88wqIgTg==";
};
};
- "vscode-languageserver-protocol-3.17.0-next.20" = {
- name = "vscode-languageserver-protocol";
- packageName = "vscode-languageserver-protocol";
- version = "3.17.0-next.20";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.20.tgz";
- sha512 = "uQSgoKsxFH+74NRwoWGYWr/FwmtN0XGesh+jHqTGhmVsMco9I5Li8kAc5et6zA7yt1RQcUAW3Jqim7Uvb0Npfg==";
- };
- };
"vscode-languageserver-protocol-3.17.0-next.5" = {
name = "vscode-languageserver-protocol";
packageName = "vscode-languageserver-protocol";
@@ -71270,6 +70414,15 @@ let
sha512 = "LFZ6WMB3iPezQAU9OnGoERzcIVKhcs0OLfD/NHcqSj3g1wgxuLUL5kSlZbbjFySQCmhzm6b0yb3hjTSeBtq1+w==";
};
};
+ "vscode-languageserver-protocol-3.17.1" = {
+ name = "vscode-languageserver-protocol";
+ packageName = "vscode-languageserver-protocol";
+ version = "3.17.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.1.tgz";
+ sha512 = "BNlAYgQoYwlSgDLJhSG+DeA8G1JyECqRzM2YO6tMmMji3Ad9Mw6AW7vnZMti90qlAKb0LqAlJfSVGEdqMMNzKg==";
+ };
+ };
"vscode-languageserver-protocol-3.5.1" = {
name = "vscode-languageserver-protocol";
packageName = "vscode-languageserver-protocol";
@@ -71360,15 +70513,6 @@ let
sha512 = "VGzh06oynbYa6JbTKUbxOEZN7CYEtWhN7DK5wfzUpeCJl8X8xZX39g2PVfpqXrIEduu7dcJgK007KgnX9tHNKA==";
};
};
- "vscode-languageserver-types-3.17.0-next.12" = {
- name = "vscode-languageserver-types";
- packageName = "vscode-languageserver-types";
- version = "3.17.0-next.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.12.tgz";
- sha512 = "kaXEKkIrkd8UaQzkwUYSMgG6VVr8lplvng+/UKPb6rPYdOJ5a6JqNd87ohgIIWFE/tDWPiFM8TTGIQ2IJe02eg==";
- };
- };
"vscode-languageserver-types-3.17.0-next.3" = {
name = "vscode-languageserver-types";
packageName = "vscode-languageserver-types";
@@ -71387,6 +70531,15 @@ let
sha512 = "rHYeCotiabJHgvIYzWjV8g0dHCxyOQtcryTv1Xa1horaQ4jx2V+rjLBstc6zMpCyrnZcjorwEcAvGBDCd6wudw==";
};
};
+ "vscode-languageserver-types-3.17.1" = {
+ name = "vscode-languageserver-types";
+ packageName = "vscode-languageserver-types";
+ version = "3.17.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.1.tgz";
+ sha512 = "K3HqVRPElLZVVPtMeKlsyL9aK0GxGQpvtAUTfX4k7+iJ4mc1M+JM+zQwkgGy2LzY0f0IAafe8MKqIkJrxfGGjQ==";
+ };
+ };
"vscode-languageserver-types-3.5.0" = {
name = "vscode-languageserver-types";
packageName = "vscode-languageserver-types";
@@ -71738,15 +70891,6 @@ let
sha512 = "hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==";
};
};
- "walker-1.0.8" = {
- name = "walker";
- packageName = "walker";
- version = "1.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz";
- sha512 = "ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==";
- };
- };
"ware-1.3.0" = {
name = "ware";
packageName = "ware";
@@ -71972,13 +71116,13 @@ let
sha512 = "WkwV9qJLZZm1ygrryt4+6hAKbk4jLSVCpE92RYk/MOtLSpxq/2S1U0JFyKgsASXhYU5hqHQRiXvFBoNQhfCHyg==";
};
};
- "webcrypto-core-1.7.3" = {
+ "webcrypto-core-1.7.5" = {
name = "webcrypto-core";
packageName = "webcrypto-core";
- version = "1.7.3";
+ version = "1.7.5";
src = fetchurl {
- url = "https://registry.npmjs.org/webcrypto-core/-/webcrypto-core-1.7.3.tgz";
- sha512 = "8TnMtwwC/hQOyvElAOJ26lJKGgcErUG02KnKS1+QhjV4mDvQetVWU1EUEeLF8ICOrdc42+GypocyBJKRqo2kQg==";
+ url = "https://registry.npmjs.org/webcrypto-core/-/webcrypto-core-1.7.5.tgz";
+ sha512 = "gaExY2/3EHQlRNNNVSrbG2Cg94Rutl7fAaKILS1w8ZDhGxdFOaw6EbCfHIxPy9vt/xwp5o0VQAx9aySPF6hU1A==";
};
};
"webidl-conversions-2.0.1" = {
@@ -72071,13 +71215,13 @@ let
sha512 = "g4dFT7CFG8LY0iU5G8nBL6VlkT21Z7dcYDpJAEJV5Q1WLb9UwnFbrem1k7K52ILqEmomN7pnzWFxxE6SlDY56A==";
};
};
- "webpack-5.72.0" = {
+ "webpack-5.72.1" = {
name = "webpack";
packageName = "webpack";
- version = "5.72.0";
+ version = "5.72.1";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.72.0.tgz";
- sha512 = "qmSmbspI0Qo5ld49htys8GY9XhS9CGqFoHTsOVAnjBdg0Zn79y135R+k4IR4rKK6+eKaabMhJwiVB7xw0SJu5w==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.72.1.tgz";
+ sha512 = "dXG5zXCLspQR4krZVR6QgajnZOjW2K/djHvdcRaDQvsjV9z9vaW6+ja5dZOYbqBBjF6kGXka/2ZyxNdc+8Jung==";
};
};
"webpack-bundle-analyzer-3.9.0" = {
@@ -72098,15 +71242,6 @@ let
sha512 = "7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==";
};
};
- "webpack-cli-3.3.12" = {
- name = "webpack-cli";
- packageName = "webpack-cli";
- version = "3.3.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz";
- sha512 = "NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==";
- };
- };
"webpack-cli-4.9.2" = {
name = "webpack-cli";
packageName = "webpack-cli";
@@ -72116,15 +71251,6 @@ let
sha512 = "m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==";
};
};
- "webpack-core-0.6.9" = {
- name = "webpack-core";
- packageName = "webpack-core";
- version = "0.6.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.9.tgz";
- sha1 = "fc571588c8558da77be9efb6debdc5a3b172bdc2";
- };
- };
"webpack-dev-middleware-3.7.3" = {
name = "webpack-dev-middleware";
packageName = "webpack-dev-middleware";
@@ -72287,13 +71413,13 @@ let
sha512 = "7iZ+u28Ljw5hCnMiq0BCOeSYf0vCFQe/ORY0HgscTiKjQed8WqugpBUggJ2NTnB9fahn1kEnPRX2jf8Px5PhJw==";
};
};
- "webtorrent-1.8.16" = {
+ "webtorrent-1.8.19" = {
name = "webtorrent";
packageName = "webtorrent";
- version = "1.8.16";
+ version = "1.8.19";
src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.8.16.tgz";
- sha512 = "cRiCUn+B62KHN+BtQLZ8+9eGJ8aPQtrk9OVnLDehudxY1u/1ajwuE+5p/ho1vT3ysmro0UtCRNnEor0+QmNaDA==";
+ url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.8.19.tgz";
+ sha512 = "xwmzXREDid5AGtycjfiAmhfBu+mGq6UmbH/QK1X42EByyjGgu52nVW2wTGAhni4TSKM2avQa9lFM139/+/t/JQ==";
};
};
"webworkify-webpack-2.1.5" = {
@@ -72512,15 +71638,6 @@ let
sha512 = "n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==";
};
};
- "which-promise-1.0.0" = {
- name = "which-promise";
- packageName = "which-promise";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/which-promise/-/which-promise-1.0.0.tgz";
- sha1 = "20b721df05b35b706176ffa10b0909aba4603035";
- };
- };
"which-typed-array-1.1.7" = {
name = "which-typed-array";
packageName = "which-typed-array";
@@ -74034,13 +73151,13 @@ let
sha512 = "WJudfrk81yWFSOkZYpAZx4Nt7V4xp7S/uJkX0CnxovMCt1wCE8LNftPpNuF9X/u9gN5nsD7ycYtRcDf2pL3UiA==";
};
};
- "yargs-17.4.1" = {
+ "yargs-17.5.0" = {
name = "yargs";
packageName = "yargs";
- version = "17.4.1";
+ version = "17.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-17.4.1.tgz";
- sha512 = "WSZD9jgobAg3ZKuCQZSa3g9QOJeCCqLoLAykiWgmXnDo9EPnn4RPf5qVTtzgOx66o6/oqhcA5tHtJXpG8pMt3g==";
+ url = "https://registry.npmjs.org/yargs/-/yargs-17.5.0.tgz";
+ sha512 = "3sLxVhbAB5OC8qvVRebCLWuouhwh/rswsiDYx3WGxajUk/l4G20SKfrKKFeNIHboUFt2JFgv2yfn+5cgOr/t5A==";
};
};
"yargs-3.10.0" = {
@@ -74241,15 +73358,6 @@ let
sha512 = "H0p241BXaH0UN9IeH//RT82tl5PfNraVpSpEoW+ET7lmopNC61eZ+A+IDvU8FM6Go5vx162SncDL8J1ZjRBriQ==";
};
};
- "yarn-1.22.18" = {
- name = "yarn";
- packageName = "yarn";
- version = "1.22.18";
- src = fetchurl {
- url = "https://registry.npmjs.org/yarn/-/yarn-1.22.18.tgz";
- sha512 = "oFffv6Jp2+BTUBItzx1Z0dpikTX+raRdqupfqzeMKnoh7WD6RuPAxcqDkMUy9vafJkrB0YaV708znpuMhEBKGQ==";
- };
- };
"yarn-1.22.4" = {
name = "yarn";
packageName = "yarn";
@@ -74544,15 +73652,15 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "13.3.4";
+ version = "13.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.4.tgz";
- sha512 = "4S5FNjkZgq98zcBVgwkYtMgMRMSVsprCgq7dM8yTxIQh+Np3fYgj5eRJ1+mfFG/kankH2z/TFyuoYiILh2D9Uw==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.5.tgz";
+ sha512 = "FrPg86cfmm0arWZInt55muCTpcQSNlvoViVrIVkyqSN06GoyCAQ2zn6/OYJnx/XAg/XvXTbygL+58c0WXuOaiA==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1303.4"
- sources."@angular-devkit/core-13.3.4"
- sources."@angular-devkit/schematics-13.3.4"
+ sources."@angular-devkit/architect-0.1303.5"
+ sources."@angular-devkit/core-13.3.5"
+ sources."@angular-devkit/schematics-13.3.5"
sources."@gar/promisify-1.1.3"
sources."@npmcli/fs-1.1.1"
sources."@npmcli/git-2.1.0"
@@ -74561,7 +73669,7 @@ in
sources."@npmcli/node-gyp-1.0.3"
sources."@npmcli/promise-spawn-1.3.2"
sources."@npmcli/run-script-2.0.0"
- sources."@schematics/angular-13.3.4"
+ sources."@schematics/angular-13.3.5"
sources."@tootallnate/once-1.1.2"
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-1.1.1"
@@ -74643,7 +73751,7 @@ in
sources."tslib-2.4.0"
];
})
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."is-core-module-2.9.0"
sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -74690,10 +73798,10 @@ in
sources."@tootallnate/once-2.0.0"
sources."brace-expansion-2.0.1"
sources."cacache-16.0.7"
- sources."glob-8.0.1"
+ sources."glob-8.0.2"
sources."http-proxy-agent-5.0.0"
- sources."lru-cache-7.9.0"
- (sources."make-fetch-happen-10.1.2" // {
+ sources."lru-cache-7.10.1"
+ (sources."make-fetch-happen-10.1.3" // {
dependencies = [
sources."minipass-fetch-2.1.0"
];
@@ -74815,7 +73923,7 @@ in
sources."color-name-1.1.3"
sources."colorette-2.0.16"
sources."commander-8.3.0"
- sources."convict-6.2.2"
+ sources."convict-6.2.3"
sources."dateformat-4.6.3"
sources."duplexify-4.1.2"
sources."end-of-stream-1.4.4"
@@ -74931,7 +74039,7 @@ in
sources."colorette-2.0.16"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
- sources."convict-6.2.2"
+ sources."convict-6.2.3"
sources."core-util-is-1.0.3"
sources."crc-32-1.2.2"
sources."dateformat-4.6.3"
@@ -75081,7 +74189,7 @@ in
sources."to-regex-range-5.0.1"
sources."to-through-2.0.0"
sources."type-fest-1.4.0"
- sources."uglify-js-3.15.4"
+ sources."uglify-js-3.15.5"
sources."unc-path-regex-0.1.2"
sources."unique-stream-2.3.1"
sources."unxhr-1.0.1"
@@ -75121,10 +74229,10 @@ in
"@astrojs/language-server" = nodeEnv.buildNodePackage {
name = "_at_astrojs_slash_language-server";
packageName = "@astrojs/language-server";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.16.0.tgz";
- sha512 = "NNXsLGh6LxzcIBPTtwPcS9nrkTCI2afHzxaAsdG3DXUFaztNlJa05PIA/tqnob/BIqZj02cEFS5bX1npLyjqaw==";
+ url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.17.0.tgz";
+ sha512 = "8moxFL54ObrvRLVpeawjP1qy3eBmH0KmemZFHit7EVy7+K9MvMctdbp3bsaF8D+LfeXEJKJVw30UeU0EPNOZ1A==";
};
dependencies = [
sources."@astrojs/svelte-language-integration-0.1.4"
@@ -75151,10 +74259,19 @@ in
sources."vscode-css-languageservice-5.4.2"
sources."vscode-html-languageservice-4.2.5"
sources."vscode-jsonrpc-6.0.0"
- sources."vscode-languageserver-7.0.0"
- sources."vscode-languageserver-protocol-3.16.0"
+ (sources."vscode-languageserver-7.0.0" // {
+ dependencies = [
+ sources."vscode-languageserver-protocol-3.16.0"
+ sources."vscode-languageserver-types-3.16.0"
+ ];
+ })
+ (sources."vscode-languageserver-protocol-3.17.1" // {
+ dependencies = [
+ sources."vscode-jsonrpc-8.0.1"
+ ];
+ })
sources."vscode-languageserver-textdocument-1.0.4"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-nls-5.0.1"
sources."vscode-uri-3.0.3"
];
@@ -75353,7 +74470,7 @@ in
sources."papaparse-5.3.2"
sources."parse5-6.0.1"
sources."parseurl-1.3.3"
- sources."path-to-regexp-6.2.0"
+ sources."path-to-regexp-6.2.1"
sources."pify-3.0.0"
sources."prelude-ls-1.1.2"
sources."process-nextick-args-2.0.1"
@@ -75484,7 +74601,7 @@ in
sources."@tsconfig/node14-1.0.1"
sources."@tsconfig/node16-1.0.2"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."JSONStream-1.3.5"
@@ -75640,7 +74757,7 @@ in
sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yaml-1.10.2"
- (sources."yargs-17.4.1" // {
+ (sources."yargs-17.5.0" // {
dependencies = [
sources."yargs-parser-21.0.1"
];
@@ -75714,7 +74831,7 @@ in
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/normalize-package-data-2.4.1"
sources."@types/responselike-1.0.0"
sources."abort-controller-3.0.0"
@@ -75754,7 +74871,7 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."commander-7.2.0"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
sources."concat-map-0.0.1"
sources."currently-unhandled-0.4.1"
sources."debounce-1.2.1"
@@ -75830,7 +74947,7 @@ in
sources."is-interactive-1.0.0"
sources."is-number-7.0.0"
sources."is-port-reachable-3.1.0"
- sources."is-reachable-5.1.1"
+ sources."is-reachable-5.2.0"
sources."is-stream-2.0.1"
sources."is-unicode-supported-1.2.0"
sources."is-wsl-2.2.0"
@@ -75841,7 +74958,7 @@ in
sources."jsonfile-6.1.0"
sources."jwa-2.0.0"
sources."jws-4.0.0"
- sources."keyv-4.2.2"
+ sources."keyv-4.2.7"
sources."lines-and-columns-1.2.4"
sources."locate-path-6.0.0"
sources."lodash-4.17.21"
@@ -75888,7 +75005,7 @@ in
sources."p-locate-5.0.0"
(sources."p-map-5.3.0" // {
dependencies = [
- sources."aggregate-error-4.0.0"
+ sources."aggregate-error-4.0.1"
sources."clean-stack-4.2.0"
sources."escape-string-regexp-5.0.0"
sources."indent-string-5.0.0"
@@ -76000,8 +75117,8 @@ in
sources."@hyperswarm/discovery-2.0.1"
sources."@hyperswarm/hypersign-2.1.1"
sources."@hyperswarm/network-2.1.0"
- sources."@leichtgewicht/ip-codec-2.0.3"
- sources."@types/node-17.0.31"
+ sources."@leichtgewicht/ip-codec-2.0.4"
+ sources."@types/node-17.0.32"
sources."abstract-extension-3.1.1"
sources."abstract-leveldown-6.2.3"
sources."acorn-8.7.1"
@@ -76397,7 +75514,7 @@ in
sources."@types/markdown-it-12.2.3"
sources."@types/mdurl-1.0.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/tough-cookie-2.3.8"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -76619,9 +75736,9 @@ in
})
sources."fill-range-7.0.1"
sources."find-up-3.0.0"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."for-in-1.0.2"
- sources."foreach-2.0.5"
+ sources."foreach-2.0.6"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."fragment-cache-0.2.1"
@@ -76804,8 +75921,8 @@ in
sources."map-cache-0.2.2"
sources."map-visit-1.0.0"
sources."markdown-it-12.3.2"
- sources."markdown-it-anchor-8.6.2"
- sources."marked-4.0.14"
+ sources."markdown-it-anchor-8.6.4"
+ sources."marked-4.0.15"
sources."md5.js-1.3.5"
sources."mdurl-1.0.1"
(sources."mem-4.3.0" // {
@@ -77201,7 +76318,7 @@ in
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
sources."uc.micro-1.0.6"
- sources."uglify-js-3.15.4"
+ sources."uglify-js-3.15.5"
sources."underscore-1.13.3"
sources."union-value-1.0.1"
(sources."universal-url-2.0.0" // {
@@ -77416,13 +76533,18 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@nestjs/schematics-8.0.10"
- sources."@types/eslint-8.4.1"
+ (sources."@nestjs/schematics-8.0.11" // {
+ dependencies = [
+ sources."@angular-devkit/core-13.3.5"
+ sources."@angular-devkit/schematics-13.3.5"
+ ];
+ })
+ sources."@types/eslint-8.4.2"
sources."@types/eslint-scope-3.7.3"
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
sources."@types/json5-0.0.29"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
@@ -77461,7 +76583,7 @@ in
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.5.3"
@@ -77480,7 +76602,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enhanced-resolve-5.9.3"
@@ -77507,7 +76629,7 @@ in
sources."chalk-4.1.2"
];
})
- sources."fs-extra-10.0.1"
+ sources."fs-extra-10.1.0"
sources."fs-monkey-1.0.3"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
@@ -77768,10 +76890,10 @@ in
"@tailwindcss/forms" = nodeEnv.buildNodePackage {
name = "_at_tailwindcss_slash_forms";
packageName = "@tailwindcss/forms";
- version = "0.5.0";
+ version = "0.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.0.tgz";
- sha512 = "KzWugryEBFkmoaYcBE18rs6gthWCFHHO7cAZm2/hv3hwD67AzwP7udSCa22E7R1+CEJL/FfhYsJWrc0b1aeSzw==";
+ url = "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.1.tgz";
+ sha512 = "QSwsFORnC2BAP0lRzQkz1pw+EzIiiPdk4e27vGQjyXkwJPeC7iLIRVndJzf9CJVbcrrIcirb/TfxF3gRTyFEVA==";
};
dependencies = [
sources."mini-svg-data-uri-1.4.4"
@@ -77870,7 +76992,7 @@ in
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.1125.0" // {
+ (sources."aws-sdk-2.1134.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -78156,7 +77278,7 @@ in
sources."@types/node-10.17.60"
];
})
- sources."@apollographql/apollo-tools-0.5.3"
+ sources."@apollographql/apollo-tools-0.5.4"
sources."@apollographql/graphql-playground-html-1.6.27"
sources."@apollographql/graphql-upload-8-fork-8.1.3"
sources."@babel/code-frame-7.16.7"
@@ -78300,10 +77422,10 @@ in
sources."@hapi/topo-5.1.0"
sources."@josephg/resolvable-1.0.1"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/resolve-uri-3.0.6"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- sources."@jridgewell/trace-mapping-0.3.9"
+ sources."@jridgewell/resolve-uri-3.0.7"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
+ sources."@jridgewell/trace-mapping-0.3.13"
sources."@node-ipc/js-queue-2.0.3"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
@@ -78325,10 +77447,10 @@ in
sources."@types/accepts-1.3.5"
sources."@types/body-parser-1.19.0"
sources."@types/connect-3.4.35"
- sources."@types/content-disposition-0.5.4"
+ sources."@types/content-disposition-0.5.5"
sources."@types/cookies-0.7.7"
sources."@types/cors-2.8.10"
- sources."@types/ejs-3.1.0"
+ sources."@types/ejs-3.1.1"
sources."@types/express-4.17.13"
sources."@types/express-serve-static-core-4.17.28"
sources."@types/fs-capacitor-2.0.0"
@@ -78346,7 +77468,7 @@ in
sources."@types/koa-compose-3.2.5"
sources."@types/long-4.0.2"
sources."@types/mime-1.3.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/normalize-package-data-2.4.1"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -78381,7 +77503,7 @@ in
sources."ansi-styles-4.3.0"
sources."apollo-cache-control-0.14.0"
sources."apollo-datasource-0.9.0"
- sources."apollo-graphql-0.9.6"
+ sources."apollo-graphql-0.9.7"
(sources."apollo-link-1.2.14" // {
dependencies = [
sources."tslib-1.14.1"
@@ -78472,7 +77594,7 @@ in
})
sources."call-bind-1.0.2"
sources."camelcase-6.3.0"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
sources."caw-2.0.1"
sources."chalk-4.1.2"
sources."chardet-0.7.0"
@@ -78525,12 +77647,12 @@ in
sources."cookie-0.5.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- (sources."core-js-compat-3.22.3" // {
+ (sources."core-js-compat-3.22.5" // {
dependencies = [
sources."semver-7.0.0"
];
})
- sources."core-js-pure-3.22.3"
+ sources."core-js-pure-3.22.5"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
(sources."cross-spawn-6.0.5" // {
@@ -78592,15 +77714,15 @@ in
sources."duplexer3-0.1.4"
sources."easy-stack-1.0.1"
sources."ee-first-1.1.1"
- sources."ejs-3.1.7"
- sources."electron-to-chromium-1.4.129"
+ sources."ejs-3.1.8"
+ sources."electron-to-chromium-1.4.137"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
sources."entities-2.2.0"
sources."envinfo-7.8.1"
sources."error-ex-1.3.2"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
@@ -78660,7 +77782,7 @@ in
sources."fd-slicer-1.1.0"
sources."figures-3.2.0"
sources."file-type-8.1.0"
- (sources."filelist-1.0.3" // {
+ (sources."filelist-1.0.4" // {
dependencies = [
sources."brace-expansion-2.0.1"
sources."minimatch-5.0.1"
@@ -78702,7 +77824,7 @@ in
sources."which-2.0.2"
];
})
- sources."flow-parser-0.176.3"
+ sources."flow-parser-0.178.0"
sources."for-each-0.3.3"
sources."for-in-1.0.2"
sources."forwarded-0.2.0"
@@ -78721,6 +77843,8 @@ in
sources."fs.realpath-1.0.0"
sources."fswin-2.17.1227"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
+ sources."functions-have-names-1.2.3"
sources."gensync-1.0.0-beta.2"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
@@ -79040,6 +78164,7 @@ in
sources."regenerator-runtime-0.13.9"
sources."regenerator-transform-0.15.0"
sources."regex-not-1.0.2"
+ sources."regexp.prototype.flags-1.4.3"
sources."regexpu-core-5.0.1"
sources."regjsgen-0.6.0"
(sources."regjsparser-0.8.4" // {
@@ -79166,8 +78291,8 @@ in
sources."streamsearch-0.1.2"
sources."strict-uri-encode-1.1.0"
sources."string-width-4.2.3"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."strip-dirs-2.1.0"
@@ -79449,8 +78574,8 @@ in
sources."@babel/template-7.16.7"
sources."@babel/types-7.17.10"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -79540,7 +78665,7 @@ in
sources."@types/minimist-1.2.2"
sources."@types/ms-0.7.31"
sources."@types/nlcst-1.0.0"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse5-6.0.3"
sources."@types/supports-color-8.1.1"
@@ -79781,7 +78906,7 @@ in
sources."micromark-util-decode-numeric-character-reference-1.0.0"
sources."micromark-util-decode-string-1.0.2"
sources."micromark-util-encode-1.0.1"
- sources."micromark-util-events-to-acorn-1.0.6"
+ sources."micromark-util-events-to-acorn-1.1.0"
sources."micromark-util-html-tag-name-1.0.0"
sources."micromark-util-normalize-identifier-1.0.0"
sources."micromark-util-resolve-all-1.0.0"
@@ -80029,10 +79154,10 @@ in
sources."@babel/traverse-7.17.10"
sources."@babel/types-7.17.10"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/resolve-uri-3.0.6"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- sources."@jridgewell/trace-mapping-0.3.9"
+ sources."@jridgewell/resolve-uri-3.0.7"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
+ sources."@jridgewell/trace-mapping-0.3.13"
sources."@xmldom/xmldom-0.8.2"
sources."JSV-4.0.2"
sources."ansi-styles-3.2.1"
@@ -80041,7 +79166,7 @@ in
sources."balanced-match-1.0.2"
sources."brace-expansion-2.0.1"
sources."browserslist-4.20.3"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -80051,11 +79176,11 @@ in
sources."convert-source-map-1.8.0"
sources."debug-4.3.4"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
- (sources."filelist-1.0.3" // {
+ (sources."filelist-1.0.4" // {
dependencies = [
sources."minimatch-5.0.1"
];
@@ -80204,7 +79329,7 @@ in
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."fresh-0.5.2"
@@ -80224,7 +79349,7 @@ in
sources."http-signature-1.2.0"
sources."humanize-number-0.0.2"
sources."inherits-2.0.4"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."is-fullwidth-code-point-3.0.0"
sources."is-generator-function-1.0.10"
sources."is-typedarray-1.0.0"
@@ -80327,7 +79452,7 @@ in
];
})
sources."y18n-5.0.8"
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
sources."yargs-parser-21.0.1"
sources."ylru-1.3.2"
];
@@ -80352,7 +79477,7 @@ in
dependencies = [
sources."@types/glob-7.2.0"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -80430,15 +79555,15 @@ in
autoprefixer = nodeEnv.buildNodePackage {
name = "autoprefixer";
packageName = "autoprefixer";
- version = "10.4.6";
+ version = "10.4.7";
src = fetchurl {
- url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.6.tgz";
- sha512 = "Rvzel0AZO9tJNm3ydySK80PpkWoEZTGC5bHUh/xbrP8qJCy08NFBwNGPcozy3d3SDIM0b2kNxw2K7jAIYFF01A==";
+ url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.7.tgz";
+ sha512 = "ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==";
};
dependencies = [
sources."browserslist-4.20.3"
- sources."caniuse-lite-1.0.30001334"
- sources."electron-to-chromium-1.4.129"
+ sources."caniuse-lite-1.0.30001340"
+ sources."electron-to-chromium-1.4.137"
sources."escalade-3.1.1"
sources."fraction.js-4.2.0"
sources."node-releases-2.0.4"
@@ -80466,14 +79591,14 @@ in
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/yauzl-2.10.0"
sources."agent-base-6.0.2"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
sources."ast-types-0.13.4"
- (sources."aws-sdk-2.1125.0" // {
+ (sources."aws-sdk-2.1134.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -80559,7 +79684,7 @@ in
sources."inherits-2.0.4"
sources."ini-2.0.0"
sources."inquirer-8.2.4"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."is-fullwidth-code-point-3.0.0"
sources."is-interactive-1.0.0"
sources."is-unicode-supported-0.1.0"
@@ -81093,10 +80218,10 @@ in
balanceofsatoshis = nodeEnv.buildNodePackage {
name = "balanceofsatoshis";
packageName = "balanceofsatoshis";
- version = "12.7.1";
+ version = "12.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-12.7.1.tgz";
- sha512 = "moTdbzn6qXvDWYe4NuzePwTRK4QtlH4VMEkz7YHgOB/H/218vTRugg/qx1B8mAnLG4h7dwpZcribQXVOsM4Jww==";
+ url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-12.8.2.tgz";
+ sha512 = "sM6J3VAYyfw0at5FEJY2slgtntKbXv72EANMyi4h7rovasw+AyUvKR2UVbyZtCBzlQNYnqQCJVrm52R5+7qipQ==";
};
dependencies = [
(sources."@alexbosworth/caporal-1.4.4" // {
@@ -81147,7 +80272,7 @@ in
sources."@types/express-serve-static-core-4.17.28"
sources."@types/long-4.0.2"
sources."@types/mime-1.3.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/request-2.48.8"
@@ -81180,7 +80305,7 @@ in
sources."basic-auth-2.0.1"
sources."bech32-2.0.0"
sources."bessel-1.0.2"
- sources."bip174-2.0.1"
+ sources."bip174-2.1.0"
sources."bip65-1.0.3"
sources."bip66-1.1.5"
sources."bip68-1.0.4"
@@ -81334,7 +80459,7 @@ in
})
sources."got-9.6.0"
sources."graceful-fs-4.2.10"
- (sources."grammy-1.8.2" // {
+ (sources."grammy-1.8.3" // {
dependencies = [
sources."debug-4.3.4"
sources."ms-2.1.2"
@@ -81385,7 +80510,7 @@ in
];
})
sources."invoices-2.0.5"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ipaddr.js-1.9.1"
sources."is-accessor-descriptor-1.0.0"
sources."is-arrayish-0.3.2"
@@ -81478,13 +80603,22 @@ in
sources."type-fest-2.12.0"
];
})
- (sources."ln-service-53.15.0" // {
+ (sources."ln-service-53.16.0" // {
dependencies = [
sources."@grpc/grpc-js-1.6.7"
- sources."@types/node-17.0.25"
+ sources."@grpc/proto-loader-0.6.12"
+ sources."@types/node-17.0.31"
sources."bolt09-0.2.3"
+ sources."cookie-0.5.0"
+ sources."express-4.18.1"
+ sources."finalhandler-1.2.0"
sources."invoices-2.0.6"
- sources."lightning-5.14.0"
+ sources."lightning-5.15.0"
+ sources."ms-2.1.3"
+ sources."safe-buffer-5.2.1"
+ sources."send-0.18.0"
+ sources."serve-static-1.15.0"
+ sources."ws-8.6.0"
];
})
(sources."ln-sync-3.12.0" // {
@@ -81520,7 +80654,19 @@ in
sources."statuses-1.5.0"
];
})
- sources."ln-telegram-3.21.4"
+ (sources."ln-telegram-3.21.5" // {
+ dependencies = [
+ sources."@grpc/grpc-js-1.6.7"
+ sources."@types/node-17.0.25"
+ sources."bolt09-0.2.3"
+ sources."debug-4.3.4"
+ sources."grammy-1.8.2"
+ sources."invoices-2.0.6"
+ sources."lightning-5.14.0"
+ sources."ln-service-53.15.0"
+ sources."ms-2.1.2"
+ ];
+ })
sources."lodash-4.17.21"
sources."lodash.camelcase-4.3.0"
sources."lodash.difference-4.5.0"
@@ -81610,8 +80756,12 @@ in
})
(sources."paid-services-3.16.0" // {
dependencies = [
+ sources."@grpc/grpc-js-1.6.7"
+ sources."@types/node-17.0.25"
sources."bolt09-0.2.3"
sources."invoices-2.0.6"
+ sources."lightning-5.14.0"
+ sources."ln-service-53.15.0"
];
})
sources."parseurl-1.3.3"
@@ -81911,11 +81061,11 @@ in
sources."urijs-1.19.11"
sources."uuid-3.4.0"
sources."verror-1.10.0"
- sources."vscode-jsonrpc-6.0.0"
+ sources."vscode-jsonrpc-8.0.1"
sources."vscode-languageserver-6.1.1"
- sources."vscode-languageserver-protocol-3.16.0"
+ sources."vscode-languageserver-protocol-3.17.1"
sources."vscode-languageserver-textdocument-1.0.4"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."w3c-hr-time-1.0.2"
sources."web-tree-sitter-0.19.4"
sources."webidl-conversions-4.0.2"
@@ -81946,8 +81096,10 @@ in
sha512 = "cwi9b6H7pMWDFcUNsAt2DDStOmd9DCgWUQ5olAe+PHe+dwxqeRJVaCQLMiDwJBOHEPuRhaXh8V/7JEtgQPgoPQ==";
};
dependencies = [
- sources."@textlint/ast-node-types-4.4.3"
- sources."@textlint/markdown-to-ast-6.1.7"
+ sources."@textlint/ast-node-types-12.1.1"
+ sources."@textlint/markdown-to-ast-12.1.1"
+ sources."@types/mdast-3.0.10"
+ sources."@types/unist-2.0.6"
sources."anchor-markdown-header-0.5.7"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
@@ -81959,14 +81111,13 @@ in
sources."readable-stream-3.6.0"
];
})
- sources."boundary-1.0.1"
sources."buffer-5.7.1"
+ sources."ccount-1.1.0"
sources."character-entities-1.2.4"
sources."character-entities-legacy-1.1.4"
sources."character-reference-invalid-1.1.4"
sources."chownr-1.1.4"
sources."code-point-at-1.1.0"
- sources."collapse-white-space-1.0.6"
sources."commander-6.2.1"
sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.3"
@@ -81975,22 +81126,19 @@ in
sources."deep-extend-0.6.0"
sources."delegates-1.0.0"
sources."detect-libc-1.0.3"
- sources."doctoc-2.1.0"
+ sources."doctoc-2.2.0"
(sources."dom-serializer-1.4.1" // {
dependencies = [
- sources."domhandler-4.3.1"
+ sources."entities-2.2.0"
];
})
sources."domelementtype-2.3.0"
- sources."domhandler-3.3.0"
- (sources."domutils-2.8.0" // {
- dependencies = [
- sources."domhandler-4.3.1"
- ];
- })
+ sources."domhandler-4.3.1"
+ sources."domutils-2.8.0"
sources."emoji-regex-6.1.3"
sources."end-of-stream-1.4.4"
- sources."entities-2.2.0"
+ sources."entities-3.0.1"
+ sources."escape-string-regexp-4.0.0"
sources."expand-template-2.0.3"
sources."extend-3.0.2"
sources."fault-1.0.4"
@@ -81999,21 +81147,40 @@ in
sources."gauge-2.7.4"
sources."github-from-package-0.0.0"
sources."has-unicode-2.0.1"
- sources."htmlparser2-4.1.0"
+ sources."htmlparser2-7.2.0"
sources."ieee754-1.2.1"
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."is-alphabetical-1.0.4"
sources."is-alphanumerical-1.0.4"
- sources."is-buffer-1.1.6"
+ sources."is-buffer-2.0.5"
sources."is-decimal-1.0.4"
sources."is-fullwidth-code-point-1.0.0"
sources."is-hexadecimal-1.0.4"
- sources."is-plain-obj-1.1.0"
- sources."is-whitespace-character-1.0.4"
- sources."is-word-character-1.0.4"
+ sources."is-plain-obj-2.1.0"
sources."isarray-1.0.0"
- sources."markdown-escapes-1.0.4"
+ sources."longest-streak-2.0.4"
+ sources."markdown-table-2.0.0"
+ sources."mdast-util-find-and-replace-1.1.1"
+ sources."mdast-util-footnote-0.1.7"
+ sources."mdast-util-from-markdown-0.8.5"
+ sources."mdast-util-frontmatter-0.2.0"
+ sources."mdast-util-gfm-0.1.2"
+ sources."mdast-util-gfm-autolink-literal-0.1.3"
+ sources."mdast-util-gfm-strikethrough-0.2.3"
+ sources."mdast-util-gfm-table-0.1.6"
+ sources."mdast-util-gfm-task-list-item-0.1.6"
+ sources."mdast-util-to-markdown-0.6.5"
+ sources."mdast-util-to-string-2.0.0"
+ sources."micromark-2.11.4"
+ sources."micromark-extension-footnote-0.3.2"
+ sources."micromark-extension-frontmatter-0.2.2"
+ sources."micromark-extension-gfm-0.3.3"
+ sources."micromark-extension-gfm-autolink-literal-0.5.7"
+ sources."micromark-extension-gfm-strikethrough-0.6.5"
+ sources."micromark-extension-gfm-table-0.4.3"
+ sources."micromark-extension-gfm-tagfilter-0.3.0"
+ sources."micromark-extension-gfm-task-list-item-0.3.3"
sources."mimic-response-2.1.0"
sources."minimist-1.2.6"
sources."mkdirp-classic-0.5.3"
@@ -82026,29 +81193,28 @@ in
sources."number-is-nan-1.0.1"
sources."object-assign-4.1.1"
sources."once-1.4.0"
- sources."parse-entities-1.2.2"
+ sources."parse-entities-2.0.0"
sources."prebuild-install-5.3.6"
sources."process-nextick-args-2.0.1"
sources."pump-3.0.0"
sources."rc-1.2.8"
sources."readable-stream-2.3.7"
sources."reflect-metadata-0.1.13"
- sources."remark-frontmatter-1.3.3"
- sources."remark-parse-5.0.0"
+ sources."remark-footnotes-3.0.0"
+ sources."remark-frontmatter-3.0.0"
+ sources."remark-gfm-1.0.0"
+ sources."remark-parse-9.0.0"
sources."repeat-string-1.6.1"
- sources."replace-ext-1.0.0"
sources."safe-buffer-5.1.2"
sources."semver-5.7.1"
sources."set-blocking-2.0.0"
sources."signal-exit-3.0.7"
sources."simple-concat-1.0.1"
sources."simple-get-3.1.1"
- sources."state-toggle-1.0.3"
sources."string-width-1.0.2"
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
sources."strip-json-comments-2.0.1"
- sources."structured-source-3.0.2"
sources."tar-fs-2.1.1"
(sources."tar-stream-2.2.0" // {
dependencies = [
@@ -82058,25 +81224,19 @@ in
sources."traverse-0.6.6"
sources."tree-sitter-0.17.2"
sources."tree-sitter-beancount-1.0.0"
- sources."trim-0.0.1"
- sources."trim-trailing-lines-1.1.4"
sources."trough-1.0.5"
sources."tslib-1.14.1"
sources."tsyringe-4.6.0"
sources."tunnel-agent-0.6.0"
- sources."underscore-1.12.1"
- sources."unherit-1.1.3"
- sources."unified-6.2.0"
- sources."unist-util-is-3.0.0"
- sources."unist-util-remove-position-1.1.4"
- sources."unist-util-stringify-position-1.1.2"
- sources."unist-util-visit-1.4.1"
- sources."unist-util-visit-parents-2.1.2"
+ sources."underscore-1.13.3"
+ sources."unified-9.2.2"
+ sources."unist-util-is-4.1.0"
+ sources."unist-util-stringify-position-2.0.3"
+ sources."unist-util-visit-parents-3.1.1"
sources."update-section-0.3.3"
sources."util-deprecate-1.0.2"
- sources."vfile-2.3.0"
- sources."vfile-location-2.0.6"
- sources."vfile-message-1.1.1"
+ sources."vfile-4.2.1"
+ sources."vfile-message-2.0.4"
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
sources."vscode-languageserver-protocol-3.16.0"
@@ -82087,8 +81247,7 @@ in
sources."which-pm-runs-1.1.0"
sources."wide-align-1.1.5"
sources."wrappy-1.0.2"
- sources."x-is-string-0.1.0"
- sources."xtend-4.0.2"
+ sources."zwitch-1.0.5"
];
buildInputs = globalBuildInputs;
meta = {
@@ -82334,14 +81493,16 @@ in
sources."bn.js-4.12.0"
];
})
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-to-primitive-1.2.1"
sources."events-3.3.0"
sources."evp_bytestokey-1.0.3"
sources."fast-safe-stringify-2.1.1"
- sources."foreach-2.0.5"
+ sources."foreach-2.0.6"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
+ sources."functions-have-names-1.2.3"
sources."get-assigned-identifiers-1.2.0"
sources."get-intrinsic-1.1.1"
sources."get-symbol-description-1.0.0"
@@ -82431,6 +81592,7 @@ in
sources."string_decoder-1.1.1"
];
})
+ sources."regexp.prototype.flags-1.4.3"
sources."resolve-1.22.0"
sources."ripemd160-2.0.2"
sources."safe-buffer-5.2.1"
@@ -82453,8 +81615,8 @@ in
];
})
sources."stream-splicer-2.0.1"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.3.0"
sources."subarg-1.0.0"
sources."supports-preserve-symlinks-flag-1.0.0"
@@ -82503,7 +81665,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."accepts-1.3.8"
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
@@ -82555,7 +81717,7 @@ in
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."engine.io-6.2.0"
- sources."engine.io-client-6.2.1"
+ sources."engine.io-client-6.2.2"
sources."engine.io-parser-5.0.4"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
@@ -82569,7 +81731,7 @@ in
sources."ms-2.0.0"
];
})
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."fresh-0.5.2"
sources."fs-extra-3.0.1"
sources."fsevents-2.3.2"
@@ -82696,7 +81858,7 @@ in
sources."ws-8.2.3"
sources."xmlhttprequest-ssl-2.0.0"
sources."y18n-5.0.8"
- (sources."yargs-17.4.1" // {
+ (sources."yargs-17.5.0" // {
dependencies = [
sources."yargs-parser-21.0.1"
];
@@ -82758,7 +81920,7 @@ in
sources."bech32-2.0.0"
sources."bignumber.js-9.0.2"
sources."bindings-1.5.0"
- sources."bip174-2.0.1"
+ sources."bip174-2.1.0"
sources."bip32-2.0.6"
sources."bip66-1.1.5"
sources."bitcoin-ops-1.4.1"
@@ -82876,8 +82038,9 @@ in
];
})
sources."express-async-handler-1.2.0"
- (sources."express-session-1.17.2" // {
+ (sources."express-session-1.17.3" // {
dependencies = [
+ sources."cookie-0.4.2"
sources."debug-2.6.9"
sources."safe-buffer-5.2.1"
];
@@ -82893,7 +82056,7 @@ in
];
})
sources."find-up-4.1.0"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."forwarded-0.2.0"
@@ -83190,7 +82353,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -83329,7 +82492,7 @@ in
sources."ini-1.1.0"
sources."inquirer-0.8.5"
sources."internal-ip-1.2.0"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ip-set-1.0.2"
sources."ipaddr.js-2.0.1"
sources."is-arrayish-0.2.1"
@@ -84203,12 +83366,12 @@ in
sha512 = "1saDFNPhU3v1GI7KxuIj96oXV3x+QbqF9ZKBS9gRSj61YkZOsQ6L8UsMl1lFBBvKeO2OYc11Kvtrqxss0bIXkQ==";
};
dependencies = [
- sources."@jsii/check-node-1.57.0"
- sources."@jsii/spec-1.57.0"
+ sources."@jsii/check-node-1.58.0"
+ sources."@jsii/spec-1.58.0"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-12.20.50"
+ sources."@types/node-12.20.51"
sources."@xmldom/xmldom-0.8.2"
sources."ajv-8.11.0"
sources."ansi-regex-5.0.1"
@@ -84220,11 +83383,11 @@ in
sources."camelcase-6.3.0"
sources."case-1.6.3"
sources."cdk8s-1.5.86"
- sources."cdk8s-plus-22-1.0.0-beta.218"
+ sources."cdk8s-plus-22-1.0.0-beta.220"
sources."chalk-4.1.2"
sources."cliui-7.0.4"
sources."clone-2.1.2"
- (sources."codemaker-1.57.0" // {
+ (sources."codemaker-1.58.0" // {
dependencies = [
sources."fs-extra-9.1.0"
];
@@ -84233,7 +83396,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.30.0"
- sources."constructs-3.3.283"
+ sources."constructs-3.4.7"
sources."date-format-4.0.9"
sources."debug-4.3.4"
sources."decamelize-5.0.1"
@@ -84244,7 +83407,7 @@ in
sources."dot-case-3.0.4"
sources."emoji-regex-8.0.0"
sources."entities-2.0.3"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-get-iterator-1.1.2"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
@@ -84255,7 +83418,7 @@ in
sources."fill-range-7.0.1"
sources."find-up-4.1.0"
sources."flatted-3.2.5"
- sources."foreach-2.0.5"
+ sources."foreach-2.0.6"
(sources."fs-extra-8.1.0" // {
dependencies = [
sources."jsonfile-4.0.0"
@@ -84263,6 +83426,7 @@ in
];
})
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
sources."functions-have-names-1.2.3"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
@@ -84298,31 +83462,31 @@ in
sources."is-weakref-1.0.2"
sources."is-weakset-2.0.2"
sources."isarray-2.0.5"
- (sources."jsii-1.57.0" // {
+ (sources."jsii-1.58.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-pacmak-1.57.0" // {
+ (sources."jsii-pacmak-1.58.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-reflect-1.57.0" // {
+ (sources."jsii-reflect-1.58.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-rosetta-1.57.0" // {
+ (sources."jsii-rosetta-1.58.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.548" // {
+ (sources."jsii-srcmak-0.1.556" // {
dependencies = [
sources."fs-extra-9.1.0"
];
@@ -84347,7 +83511,7 @@ in
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
- sources."oo-ascii-tree-1.57.0"
+ sources."oo-ascii-tree-1.58.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
@@ -84381,8 +83545,8 @@ in
})
sources."string-width-4.2.3"
sources."string.prototype.repeat-0.2.0"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."strip-ansi-6.0.1"
sources."supports-color-7.2.0"
sources."to-regex-range-5.0.1"
@@ -84425,10 +83589,10 @@ in
cdktf-cli = nodeEnv.buildNodePackage {
name = "cdktf-cli";
packageName = "cdktf-cli";
- version = "0.10.3";
+ version = "0.10.4";
src = fetchurl {
- url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.10.3.tgz";
- sha512 = "gSbwPFofGm0VShMyx3k8SThmabe73Imib2jN7W1F7Lg5MI1Rjyx3+hNGI6YCI0hnT8pqdWghEGO1QHC7Smbl6g==";
+ url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.10.4.tgz";
+ sha512 = "LCUSiQ4boFornAdHB8AocWz0o2y9KcVHUSlgC9rGoO0Pa73U22jCU1CK5obM36rxzBmdBCQ+N0lG5z0EillZ7A==";
};
dependencies = [
sources."@babel/code-frame-7.16.7"
@@ -84438,13 +83602,13 @@ in
sources."@babel/parser-7.17.10"
sources."@babel/template-7.16.7"
sources."@babel/types-7.17.10"
- sources."@cdktf/hcl2cdk-0.10.3"
- sources."@cdktf/hcl2json-0.10.3"
- sources."@cdktf/provider-generator-0.10.3"
+ sources."@cdktf/hcl2cdk-0.10.4"
+ sources."@cdktf/hcl2json-0.10.4"
+ sources."@cdktf/provider-generator-0.10.4"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- (sources."@jsii/check-node-1.57.0" // {
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
+ (sources."@jsii/check-node-1.58.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -84454,11 +83618,11 @@ in
sources."supports-color-7.2.0"
];
})
- sources."@jsii/spec-1.57.0"
+ sources."@jsii/spec-1.58.0"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/node-fetch-2.6.1"
sources."@types/yargs-17.0.10"
sources."@types/yargs-parser-21.0.0"
@@ -84475,7 +83639,7 @@ in
sources."call-bind-1.0.2"
sources."camelcase-6.3.0"
sources."case-1.6.3"
- sources."cdktf-0.10.3"
+ sources."cdktf-0.10.4"
sources."chalk-2.4.2"
sources."cliui-6.0.0"
sources."clone-2.1.2"
@@ -84489,7 +83653,7 @@ in
sources."combined-stream-1.0.8"
sources."commonmark-0.30.0"
sources."concat-map-0.0.1"
- sources."constructs-10.0.130"
+ sources."constructs-10.1.7"
sources."cross-spawn-7.0.3"
sources."date-format-4.0.9"
sources."debug-4.3.4"
@@ -84501,7 +83665,7 @@ in
sources."detect-newline-2.1.0"
sources."emoji-regex-8.0.0"
sources."entities-2.0.3"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-get-iterator-1.1.2"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
@@ -84513,11 +83677,12 @@ in
sources."fill-range-7.0.1"
sources."find-up-4.1.0"
sources."flatted-3.2.5"
- sources."foreach-2.0.5"
+ sources."foreach-2.0.6"
sources."form-data-3.0.1"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
sources."functions-have-names-1.2.3"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
@@ -84567,7 +83732,7 @@ in
sources."isexe-2.0.0"
sources."js-tokens-4.0.0"
sources."jsesc-2.5.2"
- (sources."jsii-1.57.0" // {
+ (sources."jsii-1.58.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -84585,11 +83750,11 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-pacmak-1.57.0" // {
+ (sources."jsii-pacmak-1.58.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."cliui-7.0.4"
- sources."codemaker-1.57.0"
+ sources."codemaker-1.58.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."decamelize-5.0.1"
@@ -84603,7 +83768,7 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-reflect-1.57.0" // {
+ (sources."jsii-reflect-1.58.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -84621,7 +83786,7 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-rosetta-1.57.0" // {
+ (sources."jsii-rosetta-1.58.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."cliui-7.0.4"
@@ -84636,7 +83801,7 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-srcmak-0.1.548" // {
+ (sources."jsii-srcmak-0.1.556" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -84669,9 +83834,9 @@ in
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
- sources."obliterator-2.0.3"
+ sources."obliterator-2.0.4"
sources."once-1.4.0"
- sources."oo-ascii-tree-1.57.0"
+ sources."oo-ascii-tree-1.58.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
@@ -84711,8 +83876,8 @@ in
})
sources."string-width-4.2.3"
sources."string.prototype.repeat-0.2.0"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."strip-ansi-6.0.1"
sources."supports-color-5.5.0"
sources."to-fast-properties-2.0.0"
@@ -84741,7 +83906,7 @@ in
sources."xmlbuilder-15.1.1"
sources."y18n-4.0.3"
sources."yallist-4.0.0"
- (sources."yargs-17.4.1" // {
+ (sources."yargs-17.5.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."cliui-7.0.4"
@@ -85041,10 +84206,10 @@ in
coc-diagnostic = nodeEnv.buildNodePackage {
name = "coc-diagnostic";
packageName = "coc-diagnostic";
- version = "0.23.2";
+ version = "0.23.3";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.23.2.tgz";
- sha512 = "E25+KhDPSUloQifiFPgoWZDIGpDH+MPF6Yi5WCjnNaztExFph5GYLjwsYdO0vV0IYxNgkpzr0YZNPOZt+2AB1g==";
+ url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.23.3.tgz";
+ sha512 = "IJ6Z7wmyhufVD69rzc0NI4g4OH7fw88bJhfhZCeqTikk50IKBfd7D3hikuF8hbilu0M+67Z2RlZkaFFUgrnLhQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -85068,7 +84233,7 @@ in
sources."@emmetio/extract-abbreviation-0.1.6"
sources."jsonc-parser-1.0.3"
sources."vscode-emmet-helper-1.2.17"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -85100,10 +84265,10 @@ in
coc-explorer = nodeEnv.buildNodePackage {
name = "coc-explorer";
packageName = "coc-explorer";
- version = "0.22.9";
+ version = "0.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.22.9.tgz";
- sha512 = "HzIKBNcTpmvqc38grrktkdCTxCZvee2UwZ7qD67Y5xxN2aipDCW9IOeqTATiX56zWCcYeq/iNZjBvvMe3OlNjQ==";
+ url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.23.0.tgz";
+ sha512 = "o7Vsc2G7VZFBNIqEUEvn5EoglRchSQzfsy6D/bsR6iBKLOia1twR5McnkkyW43yFJ7hmY7Ybw2f6gmJcukud0g==";
};
dependencies = [
sources."@sindresorhus/df-3.1.1"
@@ -85241,10 +84406,10 @@ in
coc-haxe = nodeEnv.buildNodePackage {
name = "coc-haxe";
packageName = "coc-haxe";
- version = "0.8.0";
+ version = "0.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-haxe/-/coc-haxe-0.8.0.tgz";
- sha512 = "u8DAHCGDi9C/7xY5xXxmsD4mIry07ujX+piCzkcDg/n6rMQ0R3lmqDk4tBt+C/qfWxqAFgee45q++OD62wsNxg==";
+ url = "https://registry.npmjs.org/coc-haxe/-/coc-haxe-0.11.0.tgz";
+ sha512 = "HF+Sa6NFsVH0tsEV8F6SCnKGU89sIXPeHvYwezzkb19GkTrJByLGmxfSZANN35y32FxqJDGqweTUFEqmr48FQg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -85445,14 +84610,14 @@ in
sources."define-properties-1.1.4"
sources."duplexer2-0.1.4"
sources."end-of-stream-1.4.4"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-to-primitive-1.2.1"
sources."event-lite-0.1.2"
sources."execa-1.0.0"
sources."fast-diff-1.2.0"
sources."fb-watchman-2.0.1"
sources."flatted-3.2.5"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."fp-ts-2.12.1"
sources."fs-extra-10.1.0"
sources."fs-minipass-2.1.0"
@@ -85464,6 +84629,8 @@ in
];
})
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
+ sources."functions-have-names-1.2.3"
sources."get-intrinsic-1.1.1"
sources."get-stream-4.1.0"
sources."get-symbol-description-1.0.0"
@@ -85547,6 +84714,7 @@ in
sources."safe-buffer-5.1.2"
];
})
+ sources."regexp.prototype.flags-1.4.3"
sources."rfc-3986-1.0.1"
sources."rfdc-1.3.0"
sources."rimraf-3.0.2"
@@ -85559,8 +84727,8 @@ in
sources."side-channel-1.0.4"
sources."signal-exit-3.0.7"
sources."streamroller-3.0.8"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
(sources."string_decoder-1.1.1" // {
dependencies = [
sources."safe-buffer-5.1.2"
@@ -85584,7 +84752,7 @@ in
];
})
sources."vscode-languageserver-textdocument-1.0.4"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-uri-2.1.2"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
@@ -85623,10 +84791,10 @@ in
coc-prettier = nodeEnv.buildNodePackage {
name = "coc-prettier";
packageName = "coc-prettier";
- version = "9.2.4";
+ version = "9.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-prettier/-/coc-prettier-9.2.4.tgz";
- sha512 = "QI0SD7lbfDz969h8wgpepbDKZcLAbg3rmdBtzC9OnHUGZr6C6iWfhEfbWzFvdEgqvlkUTCrqt/IkxxKbkzXZDw==";
+ url = "https://registry.npmjs.org/coc-prettier/-/coc-prettier-9.3.0.tgz";
+ sha512 = "ns5+SO7o0ckeGeVo9r9JM1gfpfByASsDouOhwqjgF0mDJurXMZ/q6Dax+h8Sv+EIgR1C/nU0rpmIQXg6KL7G6g==";
};
dependencies = [
sources."prettier-2.6.2"
@@ -85644,13 +84812,13 @@ in
coc-pyright = nodeEnv.buildNodePackage {
name = "coc-pyright";
packageName = "coc-pyright";
- version = "1.1.235";
+ version = "1.1.243";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.235.tgz";
- sha512 = "7hF2rkGFbx4KQrYflu12OlPVV/7lQxaJWyslJMsdElEVOVOpO5C6wmwf2+6Xnzm65i6mFIg5lO7zYAz6nRSMFg==";
+ url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.243.tgz";
+ sha512 = "Jc5YOiN2vBrsD7Mcm21t5qwu0ltvtRhm9KAOWhl8fnABlOlvxiceqdtY5p2rnyW460PI5FD/iFSQTTovQuveWg==";
};
dependencies = [
- sources."pyright-1.1.243"
+ sources."pyright-1.1.246"
];
buildInputs = globalBuildInputs;
meta = {
@@ -85689,10 +84857,10 @@ in
sha512 = "SOsCwIuQeE4eiX/Scgs2nL1WnR0JwFZ2/Edh3dx5ijmZSlEPxdc0PnMUN0hT9y96jK5/ZHAByC3qEperpWqPUA==";
};
dependencies = [
- sources."vscode-jsonrpc-6.0.0"
- sources."vscode-languageserver-protocol-3.16.0"
+ sources."vscode-jsonrpc-8.0.1"
+ sources."vscode-languageserver-protocol-3.17.1"
sources."vscode-languageserver-textdocument-1.0.4"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -85826,14 +84994,14 @@ in
sources."@babel/traverse-7.17.10"
sources."@babel/types-7.17.10"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/resolve-uri-3.0.6"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- sources."@jridgewell/trace-mapping-0.3.9"
+ sources."@jridgewell/resolve-uri-3.0.7"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
+ sources."@jridgewell/trace-mapping-0.3.13"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@stylelint/postcss-css-in-js-0.37.2"
+ sources."@stylelint/postcss-css-in-js-0.37.3"
sources."@stylelint/postcss-markdown-0.36.2"
sources."@types/mdast-3.0.10"
sources."@types/minimist-1.2.2"
@@ -85863,7 +85031,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -85900,7 +85068,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -86118,7 +85286,7 @@ in
];
})
sources."vscode-languageserver-textdocument-1.0.4"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-uri-2.1.2"
sources."which-1.3.1"
sources."wrappy-1.0.2"
@@ -86270,10 +85438,10 @@ in
coc-tsserver = nodeEnv.buildNodePackage {
name = "coc-tsserver";
packageName = "coc-tsserver";
- version = "1.10.1";
+ version = "1.10.3";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.10.1.tgz";
- sha512 = "wkXnt6Ok/VL7/Nx/96mldX/BactXvNmme2mpmk3qk9VdN8Do9esETyBxqzbQqBO71ZVtTUxYGpK+W61gm15Dow==";
+ url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.10.3.tgz";
+ sha512 = "SwjYCJ2JGHKdYo1u9qoZbZMriZuKRiiYFiNme+P7tOwS8P8zDGjfcRk9i2dKbOI+aaw53lBWXHTnEWT+EwHIyw==";
};
dependencies = [
sources."typescript-4.6.4"
@@ -86404,7 +85572,7 @@ in
sources."get-intrinsic-1.1.1"
sources."glob-7.2.0"
sources."glob-parent-5.1.2"
- sources."globals-13.13.0"
+ sources."globals-13.15.0"
sources."has-1.0.3"
sources."has-flag-3.0.0"
sources."has-symbols-1.0.3"
@@ -86815,7 +85983,7 @@ in
sources."colors-1.4.0"
sources."commander-2.20.3"
sources."escape-string-regexp-1.0.5"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."has-flag-3.0.0"
sources."is-fullwidth-code-point-2.0.0"
sources."log-symbols-2.2.0"
@@ -86911,7 +86079,7 @@ in
sources."eventemitter3-4.0.7"
sources."fecha-4.2.3"
sources."fn.name-1.1.0"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."http-proxy-1.18.1"
sources."inherits-2.0.4"
sources."is-arrayish-0.3.2"
@@ -87141,7 +86309,7 @@ in
sources."through2-4.0.2"
sources."trim-newlines-3.0.1"
sources."type-fest-0.18.1"
- sources."uglify-js-3.15.4"
+ sources."uglify-js-3.15.5"
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
sources."validate-npm-package-license-3.0.4"
@@ -87480,7 +86648,7 @@ in
sources."uuid-8.3.2"
];
})
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ipaddr.js-1.9.1"
sources."is-ci-2.0.0"
sources."is-core-module-2.9.0"
@@ -87704,7 +86872,7 @@ in
sources."strip-json-comments-2.0.1"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."systeminformation-5.11.14"
+ sources."systeminformation-5.11.15"
sources."tar-6.1.11"
sources."through-2.3.8"
sources."tmp-0.2.1"
@@ -87801,7 +86969,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/minimist-1.2.2"
sources."@types/normalize-package-data-2.4.1"
- sources."aggregate-error-4.0.0"
+ sources."aggregate-error-4.0.1"
sources."ansi-styles-3.2.1"
sources."arrify-3.0.0"
sources."braces-3.0.2"
@@ -87934,7 +87102,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -87988,7 +87156,7 @@ in
sources."formidable-1.2.6"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
- sources."globalthis-1.0.2"
+ sources."globalthis-1.0.3"
sources."has-1.0.3"
sources."has-ansi-2.0.0"
sources."has-flag-3.0.0"
@@ -88199,10 +87367,10 @@ in
cspell = nodeEnv.buildNodePackage {
name = "cspell";
packageName = "cspell";
- version = "5.19.7";
+ version = "5.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell/-/cspell-5.19.7.tgz";
- sha512 = "7/y+k708tv68+5lpN23Ew1/djx/EnG838zZ8W2ZDWCc6uRHutqRhpxsjMZr/MT3RHN44iKUj2MgT5+sfnhr4eg==";
+ url = "https://registry.npmjs.org/cspell/-/cspell-5.20.0.tgz";
+ sha512 = "lXAS14ZlfJfOI3FgoAAfyl/AlTB8T+ayHmKrHxwuRRUvN4IBT4y8d7tdjWDj7/bsM4u5M5WrlAXg6vXH3Fg5bA==";
};
dependencies = [
sources."@babel/code-frame-7.16.7"
@@ -88217,9 +87385,9 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@cspell/cspell-bundled-dicts-5.19.7"
- sources."@cspell/cspell-pipe-5.19.7"
- sources."@cspell/cspell-types-5.19.7"
+ sources."@cspell/cspell-bundled-dicts-5.20.0"
+ sources."@cspell/cspell-pipe-5.20.0"
+ sources."@cspell/cspell-types-5.20.0"
sources."@cspell/dict-ada-2.0.0"
sources."@cspell/dict-aws-2.0.0"
sources."@cspell/dict-bash-2.0.2"
@@ -88233,10 +87401,10 @@ in
sources."@cspell/dict-dotnet-2.0.1"
sources."@cspell/dict-elixir-2.0.1"
sources."@cspell/dict-en-gb-1.1.33"
- sources."@cspell/dict-en_us-2.2.1"
+ sources."@cspell/dict-en_us-2.2.4"
sources."@cspell/dict-filetypes-2.0.1"
sources."@cspell/dict-fonts-2.0.0"
- sources."@cspell/dict-fullstack-2.0.4"
+ sources."@cspell/dict-fullstack-2.0.5"
sources."@cspell/dict-git-1.0.1"
sources."@cspell/dict-golang-2.0.0"
sources."@cspell/dict-haskell-2.0.0"
@@ -88247,16 +87415,16 @@ in
sources."@cspell/dict-lorem-ipsum-2.0.0"
sources."@cspell/dict-lua-2.0.0"
sources."@cspell/dict-node-2.0.1"
- sources."@cspell/dict-npm-2.0.2"
+ sources."@cspell/dict-npm-2.0.3"
sources."@cspell/dict-php-2.0.0"
sources."@cspell/dict-powershell-2.0.0"
sources."@cspell/dict-public-licenses-1.0.4"
- sources."@cspell/dict-python-2.0.6"
+ sources."@cspell/dict-python-3.0.3"
sources."@cspell/dict-r-1.0.2"
sources."@cspell/dict-ruby-2.0.1"
sources."@cspell/dict-rust-2.0.0"
sources."@cspell/dict-scala-2.0.0"
- sources."@cspell/dict-software-terms-2.1.4"
+ sources."@cspell/dict-software-terms-2.1.5"
sources."@cspell/dict-swift-1.0.2"
sources."@cspell/dict-typescript-2.0.0"
sources."@cspell/dict-vue-2.0.2"
@@ -88279,11 +87447,11 @@ in
sources."core-util-is-1.0.3"
sources."cosmiconfig-7.0.1"
sources."crypto-random-string-2.0.0"
- sources."cspell-gitignore-5.19.7"
- sources."cspell-glob-5.19.7"
- sources."cspell-io-5.19.7"
- sources."cspell-lib-5.19.7"
- sources."cspell-trie-lib-5.19.7"
+ sources."cspell-gitignore-5.20.0"
+ sources."cspell-glob-5.20.0"
+ sources."cspell-io-5.20.0"
+ sources."cspell-lib-5.20.0"
+ sources."cspell-trie-lib-5.20.0"
sources."dot-prop-5.3.0"
sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
@@ -88299,7 +87467,12 @@ in
sources."fs.realpath-1.0.0"
sources."gensequence-3.1.1"
sources."get-stdin-8.0.0"
- sources."glob-7.2.0"
+ (sources."glob-8.0.2" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."minimatch-5.0.1"
+ ];
+ })
sources."global-dirs-0.1.1"
sources."graceful-fs-4.2.10"
sources."has-flag-4.0.0"
@@ -88343,7 +87516,11 @@ in
sources."repeat-string-1.6.1"
sources."resolve-from-5.0.0"
sources."resolve-global-1.0.0"
- sources."rimraf-3.0.2"
+ (sources."rimraf-3.0.2" // {
+ dependencies = [
+ sources."glob-7.2.0"
+ ];
+ })
sources."semver-7.3.7"
sources."signal-exit-3.0.7"
sources."strip-ansi-6.0.1"
@@ -88415,7 +87592,7 @@ in
];
})
sources."@hyperswarm/network-2.1.0"
- sources."@leichtgewicht/ip-codec-2.0.3"
+ sources."@leichtgewicht/ip-codec-2.0.4"
sources."abstract-random-access-1.1.2"
sources."ajv-6.12.6"
sources."ansi-align-2.0.0"
@@ -89144,17 +88321,17 @@ in
sources."@babel/template-7.16.7"
sources."@babel/traverse-7.17.10"
sources."@babel/types-7.17.10"
- sources."@blueprintjs/colors-4.1.1"
+ sources."@blueprintjs/colors-4.1.2"
sources."@blueprintjs/core-3.54.0"
sources."@blueprintjs/icons-3.33.0"
sources."@deltachat/message_parser_wasm-0.3.0"
sources."@electron/get-1.14.1"
sources."@hypnosphi/create-react-context-0.3.1"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/resolve-uri-3.0.6"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- sources."@jridgewell/trace-mapping-0.3.9"
+ sources."@jridgewell/resolve-uri-3.0.7"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
+ sources."@jridgewell/trace-mapping-0.3.13"
sources."@juggle/resize-observer-3.3.1"
sources."@mapbox/extent-0.4.0"
sources."@mapbox/geojson-coords-0.0.2"
@@ -89178,12 +88355,12 @@ in
sources."@types/mapbox-gl-0.54.5"
sources."@types/mime-types-2.1.1"
sources."@types/minimist-1.2.2"
- sources."@types/node-14.18.16"
+ sources."@types/node-14.18.17"
sources."@types/node-fetch-2.6.1"
sources."@types/prop-types-15.7.5"
sources."@types/rc-1.2.1"
- sources."@types/react-16.14.25"
- sources."@types/react-dom-16.9.15"
+ sources."@types/react-16.14.26"
+ sources."@types/react-dom-16.9.16"
sources."@types/react-window-1.8.5"
sources."@types/react-window-infinite-loader-1.0.6"
sources."@types/scheduler-0.16.2"
@@ -89235,7 +88412,7 @@ in
];
})
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
(sources."class-utils-0.3.6" // {
@@ -89276,7 +88453,7 @@ in
];
})
sources."copy-descriptor-0.1.1"
- (sources."core-js-compat-3.22.3" // {
+ (sources."core-js-compat-3.22.5" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -89302,7 +88479,7 @@ in
sources."duplexer3-0.1.4"
sources."earcut-2.2.3"
sources."electron-14.2.9"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
sources."emoji-js-clean-4.0.0"
sources."emoji-mart-3.0.1"
sources."emoji-regex-9.2.2"
@@ -89389,7 +88566,7 @@ in
})
sources."global-tunnel-ng-2.7.1"
sources."globals-11.12.0"
- sources."globalthis-1.0.2"
+ sources."globalthis-1.0.3"
(sources."got-9.6.0" // {
dependencies = [
sources."get-stream-4.1.0"
@@ -89542,7 +88719,7 @@ in
sources."react-popper-1.3.11"
sources."react-qr-reader-2.2.1"
sources."react-qr-svg-2.4.0"
- sources."react-string-replace-1.0.0"
+ sources."react-string-replace-1.1.0"
sources."react-transition-group-2.9.0"
sources."react-virtualized-auto-sizer-1.0.6"
sources."react-window-1.8.7"
@@ -89827,11 +89004,11 @@ in
sources."tslib-1.14.1"
sources."type-fest-0.16.0"
sources."unique-string-2.0.0"
- sources."vscode-jsonrpc-6.0.0"
+ sources."vscode-jsonrpc-8.0.1"
sources."vscode-languageserver-6.1.1"
- sources."vscode-languageserver-protocol-3.16.0"
+ sources."vscode-languageserver-protocol-3.17.1"
sources."vscode-languageserver-textdocument-1.0.4"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-uri-2.1.2"
sources."wrappy-1.0.2"
];
@@ -89848,20 +89025,20 @@ in
dockerfile-language-server-nodejs = nodeEnv.buildNodePackage {
name = "dockerfile-language-server-nodejs";
packageName = "dockerfile-language-server-nodejs";
- version = "0.8.0";
+ version = "0.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.8.0.tgz";
- sha512 = "7oxOu3PWDzsTkLbUIm1O61rgdNiM9j9tAt+T0R5m0TFG0NYypYBM77pfzAYmQFpHGHAstCtOaEYzEnp0IkRCnQ==";
+ url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.9.0.tgz";
+ sha512 = "QPWcUxbbNTaWaRQrJKUBmCXI6iE8l7f81bCVaZizCIkVg4py/4o2mho+AKlLUsZcCml5ss8MkJ257SFV2BZWCg==";
};
dependencies = [
sources."dockerfile-ast-0.4.2"
- sources."dockerfile-language-service-0.8.1"
- sources."dockerfile-utils-0.9.4"
- sources."vscode-jsonrpc-8.0.0-next.8"
- sources."vscode-languageserver-8.0.0-next.14"
- (sources."vscode-languageserver-protocol-3.17.0-next.20" // {
+ sources."dockerfile-language-service-0.9.0"
+ sources."dockerfile-utils-0.10.0"
+ sources."vscode-jsonrpc-8.0.1"
+ sources."vscode-languageserver-8.0.1"
+ (sources."vscode-languageserver-protocol-3.17.1" // {
dependencies = [
- sources."vscode-languageserver-types-3.17.0-next.12"
+ sources."vscode-languageserver-types-3.17.1"
];
})
sources."vscode-languageserver-textdocument-1.0.4"
@@ -89888,7 +89065,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.18.16"
+ sources."@types/node-14.18.17"
sources."JSONStream-1.3.5"
sources."ajv-6.12.6"
sources."asn1-0.2.6"
@@ -89925,7 +89102,7 @@ in
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
sources."http-signature-1.2.0"
- sources."http-status-1.5.1"
+ sources."http-status-1.5.2"
sources."ieee754-1.1.13"
sources."inherits-2.0.4"
sources."ini-2.0.0"
@@ -90097,7 +89274,7 @@ in
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/responselike-1.0.0"
sources."@types/yauzl-2.10.0"
sources."abbrev-1.1.1"
@@ -90164,7 +89341,7 @@ in
sources."combined-stream-1.0.8"
sources."commander-4.1.1"
sources."compare-version-0.1.2"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
sources."concat-map-0.0.1"
sources."config-chain-1.1.13"
sources."console-control-strings-1.1.0"
@@ -90313,7 +89490,7 @@ in
];
})
sources."global-tunnel-ng-2.7.1"
- sources."globalthis-1.0.2"
+ sources."globalthis-1.0.3"
sources."got-11.8.3"
sources."graceful-fs-4.2.10"
sources."graceful-readlink-1.0.1"
@@ -90341,7 +89518,7 @@ in
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."inquirer-8.2.4"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."is-arrayish-0.2.1"
sources."is-core-module-2.9.0"
sources."is-docker-2.2.1"
@@ -90368,7 +89545,7 @@ in
sources."jsonfile-6.1.0"
sources."jsprim-1.4.2"
sources."junk-3.1.0"
- sources."keyv-4.2.2"
+ sources."keyv-4.2.7"
sources."load-json-file-2.0.0"
sources."locate-path-2.0.0"
sources."lodash-4.17.21"
@@ -90596,7 +89773,7 @@ in
sources."xtend-2.1.2"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- (sources."yargs-17.4.1" // {
+ (sources."yargs-17.5.0" // {
dependencies = [
sources."yargs-parser-21.0.1"
];
@@ -90690,10 +89867,10 @@ in
sources."@babel/traverse-7.17.10"
sources."@babel/types-7.17.10"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/resolve-uri-3.0.6"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- sources."@jridgewell/trace-mapping-0.3.9"
+ sources."@jridgewell/resolve-uri-3.0.7"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
+ sources."@jridgewell/trace-mapping-0.3.13"
sources."@types/minimist-1.2.2"
sources."@types/normalize-package-data-2.4.1"
sources."@types/yoga-layout-1.9.2"
@@ -90718,7 +89895,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -90747,7 +89924,7 @@ in
];
})
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -90872,7 +90049,7 @@ in
sources."punycode-2.1.1"
sources."quick-lru-4.0.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.24.4"
+ sources."react-devtools-core-4.24.6"
sources."react-is-16.13.1"
sources."react-reconciler-0.26.2"
(sources."read-pkg-5.2.0" // {
@@ -91016,7 +90193,7 @@ in
sources."@fluentui/foundation-legacy-8.2.6"
sources."@fluentui/keyboard-key-0.4.0"
sources."@fluentui/merge-styles-8.5.1"
- sources."@fluentui/react-8.67.2"
+ sources."@fluentui/react-8.67.4"
sources."@fluentui/react-focus-8.5.7"
sources."@fluentui/react-hooks-8.5.4"
sources."@fluentui/react-window-provider-2.2.0"
@@ -91045,7 +90222,7 @@ in
];
})
sources."@humanwhocodes/object-schema-1.2.1"
- sources."@microsoft/load-themed-styles-1.10.260"
+ sources."@microsoft/load-themed-styles-1.10.263"
sources."@node-rs/crc32-1.5.0"
sources."@node-rs/crc32-android-arm-eabi-1.5.0"
sources."@node-rs/crc32-android-arm64-1.5.0"
@@ -91589,7 +90766,7 @@ in
sources."string_decoder-1.1.1"
];
})
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."for-in-1.0.2"
sources."for-own-1.0.0"
sources."forever-agent-0.6.1"
@@ -91617,7 +90794,7 @@ in
sources."get-stream-4.1.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
- sources."glob-8.0.1"
+ sources."glob-8.0.2"
sources."glob-parent-5.1.2"
(sources."glob-stream-6.1.0" // {
dependencies = [
@@ -91634,7 +90811,7 @@ in
sources."glob-watcher-5.0.5"
sources."global-modules-1.0.0"
sources."global-prefix-1.0.2"
- sources."globals-13.13.0"
+ sources."globals-13.15.0"
sources."globby-11.1.0"
sources."glogg-1.0.2"
sources."got-9.6.0"
@@ -91787,7 +90964,7 @@ in
sources."interpret-1.4.0"
sources."inversify-5.1.1"
sources."invert-kv-1.0.0"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ip-num-1.4.0"
sources."ipaddr.js-1.9.1"
sources."is-absolute-1.0.0"
@@ -91962,7 +91139,7 @@ in
];
})
sources."openapi-types-7.2.3"
- sources."swagger-ui-dist-4.10.3"
+ sources."swagger-ui-dist-4.11.0"
];
})
(sources."mixin-deep-1.3.2" // {
@@ -91971,7 +91148,7 @@ in
];
})
sources."mkdirp-1.0.4"
- sources."mongodb-4.5.0"
+ sources."mongodb-4.6.0"
sources."mongodb-connection-string-url-2.5.2"
(sources."morgan-1.10.0" // {
dependencies = [
@@ -92561,7 +91738,7 @@ in
sources."supports-color-2.0.0"
];
})
- (sources."yargs-17.4.1" // {
+ (sources."yargs-17.5.0" // {
dependencies = [
sources."ansi-regex-5.0.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -92636,14 +91813,14 @@ in
sources."@types/express-serve-static-core-4.17.28"
sources."@types/glob-7.2.0"
sources."@types/hls.js-0.13.3"
- sources."@types/http-proxy-1.17.8"
+ sources."@types/http-proxy-1.17.9"
sources."@types/json-schema-7.0.11"
sources."@types/json-stable-stringify-1.0.33"
sources."@types/lodash-4.14.178"
sources."@types/mime-1.3.2"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
@@ -92958,7 +92135,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
@@ -93199,7 +92376,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -93225,7 +92402,7 @@ in
sources."errno-0.1.8"
sources."error-ex-1.3.2"
sources."error-stack-parser-2.0.7"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-to-primitive-1.2.1"
sources."es6-promise-4.2.8"
sources."escalade-3.1.1"
@@ -93297,7 +92474,7 @@ in
sources."eventemitter2-6.4.5"
sources."eventemitter3-4.0.7"
sources."events-3.3.0"
- sources."eventsource-1.1.0"
+ sources."eventsource-1.1.1"
sources."evp_bytestokey-1.0.3"
sources."execa-1.0.0"
(sources."expand-brackets-2.1.4" // {
@@ -93374,7 +92551,7 @@ in
})
sources."flatted-3.2.5"
sources."flush-write-stream-1.1.1"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."for-in-1.0.2"
sources."forever-agent-0.6.1"
(sources."fork-ts-checker-webpack-plugin-3.1.1" // {
@@ -93411,6 +92588,7 @@ in
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
sources."functional-red-black-tree-1.0.1"
sources."functions-have-names-1.2.3"
sources."get-caller-file-2.0.5"
@@ -93423,7 +92601,7 @@ in
sources."glob-7.2.0"
sources."glob-parent-5.1.2"
sources."glob-to-regexp-0.3.0"
- (sources."globals-13.13.0" // {
+ (sources."globals-13.15.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -93549,7 +92727,7 @@ in
sources."internal-slot-1.0.3"
sources."interpret-1.4.0"
sources."inversify-6.0.1"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ip-regex-2.1.0"
sources."ipaddr.js-1.9.1"
sources."is-absolute-url-2.1.0"
@@ -94196,8 +93374,8 @@ in
sources."stream-shift-1.0.1"
sources."strict-uri-encode-1.1.0"
sources."string-width-4.2.3"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
(sources."string_decoder-1.1.1" // {
dependencies = [
sources."safe-buffer-5.1.2"
@@ -94566,13 +93744,13 @@ in
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";
- version = "8.14.0";
+ version = "8.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-8.14.0.tgz";
- sha512 = "3/CE4aJX7LNEiE3i6FeodHmI/38GZtWCsAtsymScmzYapx8q1nVVb+eLcLSzATmCPXw5pT4TqVs1E0OmxAd9tw==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz";
+ sha512 = "GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==";
};
dependencies = [
- sources."@eslint/eslintrc-1.2.2"
+ sources."@eslint/eslintrc-1.2.3"
sources."@humanwhocodes/config-array-0.9.5"
sources."@humanwhocodes/object-schema-1.2.1"
sources."acorn-8.7.1"
@@ -94600,7 +93778,7 @@ in
];
})
sources."eslint-visitor-keys-3.3.0"
- sources."espree-9.3.1"
+ sources."espree-9.3.2"
sources."esquery-1.4.0"
sources."esrecurse-4.3.0"
sources."estraverse-5.3.0"
@@ -94615,7 +93793,7 @@ in
sources."functional-red-black-tree-1.0.1"
sources."glob-7.2.0"
sources."glob-parent-6.0.2"
- sources."globals-13.13.0"
+ sources."globals-13.15.0"
sources."has-flag-4.0.0"
sources."ignore-5.2.0"
sources."import-fresh-3.3.0"
@@ -94676,7 +93854,7 @@ in
sha512 = "mRttHSO/sC6oxnfdlnLUTfB1sI2ApmbPAHSNx60+8jQmwwvEZjUv4WDmv20g7i9DSBuK8Y5boTyz4ijBAujk0Q==";
};
dependencies = [
- sources."@eslint/eslintrc-1.2.2"
+ sources."@eslint/eslintrc-1.2.3"
sources."@humanwhocodes/config-array-0.9.5"
sources."@humanwhocodes/object-schema-1.2.1"
sources."acorn-8.7.1"
@@ -94702,7 +93880,7 @@ in
sources."deep-is-0.1.4"
sources."doctrine-3.0.0"
sources."escape-string-regexp-4.0.0"
- sources."eslint-8.14.0"
+ sources."eslint-8.15.0"
sources."eslint-scope-7.1.1"
(sources."eslint-utils-3.0.0" // {
dependencies = [
@@ -94710,7 +93888,7 @@ in
];
})
sources."eslint-visitor-keys-3.3.0"
- sources."espree-9.3.1"
+ sources."espree-9.3.2"
sources."esquery-1.4.0"
sources."esrecurse-4.3.0"
sources."estraverse-5.3.0"
@@ -94725,7 +93903,7 @@ in
sources."functional-red-black-tree-1.0.1"
sources."glob-7.2.0"
sources."glob-parent-6.0.2"
- sources."globals-13.13.0"
+ sources."globals-13.15.0"
sources."has-flag-4.0.0"
sources."ignore-5.2.0"
sources."import-fresh-3.3.0"
@@ -94886,7 +94064,7 @@ in
sources."@expo/sdk-runtime-versions-1.0.0"
sources."@expo/spawn-async-1.5.0"
sources."@expo/webpack-config-0.16.23"
- (sources."@expo/xcpretty-4.1.1" // {
+ (sources."@expo/xcpretty-4.1.2" // {
dependencies = [
sources."js-yaml-4.1.0"
];
@@ -94895,8 +94073,8 @@ in
sources."@hapi/hoek-9.3.0"
sources."@hapi/topo-5.1.0"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -95114,7 +94292,7 @@ in
})
sources."camelcase-6.3.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -95195,7 +94373,7 @@ in
sources."commondir-1.0.1"
sources."component-emitter-1.3.0"
sources."component-type-1.2.1"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
sources."compressible-2.0.18"
(sources."compression-1.7.4" // {
dependencies = [
@@ -95373,7 +94551,7 @@ in
sources."duplexer3-0.1.4"
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -95393,7 +94571,7 @@ in
sources."eol-0.9.1"
sources."errno-0.1.8"
sources."error-ex-1.3.2"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
@@ -95409,7 +94587,7 @@ in
sources."etag-1.8.1"
sources."eventemitter3-2.0.3"
sources."events-3.3.0"
- sources."eventsource-1.1.0"
+ sources."eventsource-1.1.1"
sources."evp_bytestokey-1.0.3"
sources."exec-async-2.2.0"
(sources."execa-1.0.0" // {
@@ -95438,7 +94616,7 @@ in
sources."ms-2.0.0"
];
})
- (sources."expo-modules-autolinking-0.7.0" // {
+ (sources."expo-modules-autolinking-0.7.1" // {
dependencies = [
sources."commander-7.2.0"
sources."fs-extra-9.1.0"
@@ -95504,7 +94682,7 @@ in
sources."find-up-5.0.0"
sources."find-yarn-workspace-root-2.0.0"
sources."flush-write-stream-1.1.1"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."for-in-1.0.2"
(sources."fork-ts-checker-webpack-plugin-4.1.6" // {
dependencies = [
@@ -95549,6 +94727,7 @@ in
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
sources."functions-have-names-1.2.3"
sources."gensync-1.0.0-beta.2"
sources."get-caller-file-2.0.5"
@@ -95674,7 +94853,7 @@ in
sources."ini-1.3.8"
sources."internal-ip-4.3.0"
sources."internal-slot-1.0.3"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ip-regex-2.1.0"
sources."ipaddr.js-1.9.1"
sources."is-absolute-url-2.1.0"
@@ -95783,7 +94962,7 @@ in
sources."json5-1.0.1"
sources."jsonfile-6.1.0"
sources."keychain-1.3.0"
- sources."keyv-4.2.2"
+ sources."keyv-4.2.7"
sources."killable-1.0.1"
sources."kind-of-6.0.3"
sources."kleur-3.0.3"
@@ -96489,8 +95668,8 @@ in
})
sources."stream-shift-1.0.1"
sources."string-width-4.2.3"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.1.1"
sources."strip-ansi-6.0.1"
sources."strip-eof-1.0.0"
@@ -96845,7 +96024,7 @@ in
})
(sources."xdl-59.2.36" // {
dependencies = [
- sources."bplist-parser-0.3.1"
+ sources."bplist-parser-0.3.2"
sources."chownr-1.1.4"
sources."fs-minipass-1.2.7"
sources."minimatch-3.0.4"
@@ -96937,12 +96116,12 @@ in
sources."@babel/traverse-7.17.10"
sources."@babel/types-7.17.10"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/resolve-uri-3.0.6"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- sources."@jridgewell/trace-mapping-0.3.9"
+ sources."@jridgewell/resolve-uri-3.0.7"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
+ sources."@jridgewell/trace-mapping-0.3.13"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/normalize-package-data-2.4.1"
sources."@types/yauzl-2.10.0"
sources."@types/yoga-layout-1.9.2"
@@ -96969,7 +96148,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
sources."chalk-2.4.2"
sources."chownr-1.1.4"
sources."ci-info-2.0.0"
@@ -96994,7 +96173,7 @@ in
})
sources."delay-5.0.0"
sources."devtools-protocol-0.0.981744"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
@@ -97091,7 +96270,7 @@ in
})
sources."quick-lru-4.0.1"
sources."react-17.0.2"
- sources."react-devtools-core-4.24.4"
+ sources."react-devtools-core-4.24.6"
sources."react-reconciler-0.26.2"
(sources."read-pkg-5.2.0" // {
dependencies = [
@@ -97571,10 +96750,10 @@ in
firebase-tools = nodeEnv.buildNodePackage {
name = "firebase-tools";
packageName = "firebase-tools";
- version = "10.7.2";
+ version = "10.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-10.7.2.tgz";
- sha512 = "KU6cQ9XPBn2++gMBkR393LYbl4YEbKbHG/KsUR/JnfB2p5rhSPL/X4TntIl59QFs5527+VcLpeeeRRIB4Z9wUw==";
+ url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-10.9.2.tgz";
+ sha512 = "oH5AV7mnoIhVsgFT5QI/HeMh7bfpbr60Siw0tbD5FB4xtaqYyyPC42W6/unbLMxlM6qNH3rHe1+PZmU2z7NeWA==";
};
dependencies = [
(sources."@apidevtools/json-schema-ref-parser-9.0.9" // {
@@ -97589,7 +96768,7 @@ in
sources."@google-cloud/precise-date-2.0.4"
sources."@google-cloud/projectify-2.1.1"
sources."@google-cloud/promisify-2.0.4"
- sources."@google-cloud/pubsub-2.19.3"
+ sources."@google-cloud/pubsub-2.19.4"
sources."@grpc/grpc-js-1.6.7"
sources."@grpc/proto-loader-0.6.9"
sources."@jsdevtools/ono-7.1.3"
@@ -97621,7 +96800,7 @@ in
sources."@types/duplexify-3.6.1"
sources."@types/json-schema-7.0.11"
sources."@types/long-4.0.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
sources."accepts-1.3.8"
@@ -97896,14 +97075,24 @@ in
sources."ms-2.0.0"
];
})
- sources."firebase-frameworks-0.3.0"
+ (sources."firebase-frameworks-0.4.2" // {
+ dependencies = [
+ sources."fs-extra-10.1.0"
+ sources."semver-7.3.7"
+ ];
+ })
sources."fn.name-1.1.0"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
sources."fs-constants-1.0.0"
- sources."fs-extra-5.0.0"
+ (sources."fs-extra-5.0.0" // {
+ dependencies = [
+ sources."jsonfile-4.0.0"
+ sources."universalify-0.1.2"
+ ];
+ })
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
@@ -97929,6 +97118,8 @@ in
(sources."get-uri-3.0.2" // {
dependencies = [
sources."fs-extra-8.1.0"
+ sources."jsonfile-4.0.0"
+ sources."universalify-0.1.2"
];
})
sources."getpass-0.1.7"
@@ -97938,7 +97129,7 @@ in
sources."glob-slasher-1.0.1"
sources."global-dirs-2.1.0"
sources."google-auth-library-7.14.1"
- sources."google-gax-2.30.2"
+ sources."google-gax-2.30.3"
sources."google-p12-pem-3.1.4"
sources."got-9.6.0"
sources."graceful-fs-4.2.10"
@@ -97972,7 +97163,7 @@ in
sources."ini-1.3.7"
sources."inquirer-8.2.4"
sources."install-artifact-from-github-1.3.0"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ip-regex-4.3.0"
sources."ipaddr.js-1.9.1"
sources."is-arrayish-0.3.2"
@@ -98015,7 +97206,8 @@ in
sources."json-schema-0.4.0"
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
- sources."jsonfile-4.0.0"
+ sources."jsonc-parser-3.0.0"
+ sources."jsonfile-6.1.0"
(sources."jsonwebtoken-8.5.1" // {
dependencies = [
sources."jwa-1.4.1"
@@ -98070,7 +97262,7 @@ in
sources."socks-proxy-agent-6.2.0"
];
})
- sources."marked-4.0.14"
+ sources."marked-4.0.15"
(sources."marked-terminal-3.3.0" // {
dependencies = [
sources."ansi-escapes-3.2.0"
@@ -98344,7 +97536,7 @@ in
sources."unique-slug-2.0.2"
sources."unique-string-2.0.0"
sources."universal-analytics-0.5.3"
- sources."universalify-0.1.2"
+ sources."universalify-2.0.0"
sources."unpipe-1.0.0"
(sources."unzipper-0.10.11" // {
dependencies = [
@@ -98484,7 +97676,7 @@ in
})
sources."@types/minimist-1.2.2"
sources."@types/normalize-package-data-2.4.1"
- sources."aggregate-error-4.0.0"
+ sources."aggregate-error-4.0.1"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-6.0.1"
sources."ansi-styles-4.3.0"
@@ -98694,7 +97886,7 @@ in
sources."@types/atob-2.1.2"
sources."@types/bn.js-5.1.0"
sources."@types/inquirer-6.5.0"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/pbkdf2-3.1.0"
sources."@types/secp256k1-4.0.3"
sources."@types/through-0.0.30"
@@ -99027,7 +98219,7 @@ in
sources."dot-prop-4.2.1"
sources."duplexer-0.1.2"
sources."enabled-2.0.0"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-get-iterator-1.1.2"
sources."es-to-primitive-1.2.1"
sources."event-stream-3.3.4"
@@ -99071,13 +98263,14 @@ in
sources."flatiron-0.4.3"
sources."fn.name-1.1.0"
sources."for-in-1.0.2"
- sources."foreach-2.0.5"
+ sources."foreach-2.0.6"
sources."forever-monitor-3.0.3"
sources."fragment-cache-0.2.1"
sources."from-0.1.7"
sources."fs.realpath-1.0.0"
sources."fsevents-1.2.13"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
sources."functions-have-names-1.2.3"
sources."get-intrinsic-1.1.1"
sources."get-symbol-description-1.0.0"
@@ -99307,8 +98500,8 @@ in
];
})
sources."stream-combiner-0.0.4"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.1.1"
sources."strip-json-comments-2.0.1"
sources."text-hex-1.0.0"
@@ -99461,10 +98654,10 @@ in
gatsby-cli = nodeEnv.buildNodePackage {
name = "gatsby-cli";
packageName = "gatsby-cli";
- version = "4.13.0";
+ version = "4.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.13.0.tgz";
- sha512 = "xxO+869h6QmQnkuT9Bk9DFpKFvjPDVMjmhq8+44QbxKqrjTt/3Hz5rqnFvhmxUyhr/JyczRRL2HwaTBOEzixPQ==";
+ url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.14.0.tgz";
+ sha512 = "jmLhrBNguZM8ldKpt1dmxbEZ4j/OtEdE1IpUCHoLGoCIZ7QGtleA2WHhn0R4GnoY0FVP7+pGWcmPpBXo63DBXA==";
};
dependencies = [
sources."@ampproject/remapping-2.2.0"
@@ -99513,10 +98706,10 @@ in
sources."@hapi/hoek-9.3.0"
sources."@hapi/topo-5.1.0"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/resolve-uri-3.0.6"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- sources."@jridgewell/trace-mapping-0.3.9"
+ sources."@jridgewell/resolve-uri-3.0.7"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
+ sources."@jridgewell/trace-mapping-0.3.13"
sources."@sideway/address-4.1.4"
sources."@sideway/formula-3.0.0"
sources."@sideway/pinpoint-2.0.0"
@@ -99530,7 +98723,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/node-fetch-2.6.1"
sources."@types/responselike-1.0.0"
sources."@types/yoga-layout-1.9.2"
@@ -99559,7 +98752,7 @@ in
})
sources."call-bind-1.0.2"
sources."camelcase-6.3.0"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -99592,12 +98785,12 @@ in
sources."color-name-1.1.3"
sources."combined-stream-1.0.8"
sources."common-tags-1.8.2"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
sources."concat-map-0.0.1"
sources."configstore-5.0.1"
sources."convert-hrtime-3.0.0"
sources."convert-source-map-1.8.0"
- sources."create-gatsby-2.13.0"
+ sources."create-gatsby-2.14.0"
(sources."cross-spawn-6.0.5" // {
dependencies = [
sources."semver-5.7.1"
@@ -99624,7 +98817,7 @@ in
sources."domutils-2.8.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."entities-2.2.0"
@@ -99659,8 +98852,8 @@ in
sources."fs-extra-10.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
- sources."gatsby-core-utils-3.13.0"
- (sources."gatsby-telemetry-3.13.0" // {
+ sources."gatsby-core-utils-3.14.0"
+ (sources."gatsby-telemetry-3.14.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."boxen-4.2.0"
@@ -99724,16 +98917,16 @@ in
sources."json-buffer-3.0.1"
sources."json5-2.2.1"
sources."jsonfile-6.1.0"
- sources."keyv-4.2.2"
+ sources."keyv-4.2.7"
sources."kleur-3.0.3"
sources."latest-version-5.1.0"
- sources."lmdb-2.3.8"
- sources."lmdb-darwin-arm64-2.3.8"
- sources."lmdb-darwin-x64-2.3.8"
- sources."lmdb-linux-arm-2.3.8"
- sources."lmdb-linux-arm64-2.3.8"
- sources."lmdb-linux-x64-2.3.8"
- sources."lmdb-win32-x64-2.3.8"
+ sources."lmdb-2.3.10"
+ sources."lmdb-darwin-arm64-2.3.10"
+ sources."lmdb-darwin-x64-2.3.10"
+ sources."lmdb-linux-arm-2.3.10"
+ sources."lmdb-linux-arm64-2.3.10"
+ sources."lmdb-linux-x64-2.3.10"
+ sources."lmdb-win32-x64-2.3.10"
sources."locate-path-5.0.0"
sources."lock-1.1.0"
sources."lodash-4.17.21"
@@ -99753,7 +98946,7 @@ in
sources."minimatch-3.1.2"
sources."minimist-1.2.6"
sources."ms-2.1.2"
- sources."msgpackr-1.5.6"
+ sources."msgpackr-1.5.7"
sources."msgpackr-extract-1.1.4"
sources."msgpackr-extract-darwin-arm64-1.1.0"
sources."msgpackr-extract-darwin-x64-1.1.0"
@@ -100223,7 +99416,7 @@ in
sources."increment-buffer-1.0.1"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."is-canonical-base64-1.1.1"
sources."is-my-ip-valid-1.0.1"
sources."is-my-json-valid-2.20.6"
@@ -100417,7 +99610,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/responselike-1.0.0"
sources."ansi-regex-6.0.1"
sources."ansi-styles-4.3.0"
@@ -100436,7 +99629,7 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."combined-stream-1.0.8"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
sources."decode-uri-component-0.2.0"
(sources."decompress-response-6.0.0" // {
dependencies = [
@@ -100464,7 +99657,7 @@ in
sources."is-interactive-2.0.0"
sources."is-unicode-supported-1.2.0"
sources."json-buffer-3.0.1"
- sources."keyv-4.2.2"
+ sources."keyv-4.2.7"
sources."li-1.3.0"
(sources."log-symbols-5.1.0" // {
dependencies = [
@@ -100671,7 +99864,7 @@ in
];
})
sources."inquirer-autocomplete-prompt-2.0.0"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
sources."is-core-module-2.9.0"
@@ -100878,10 +100071,10 @@ in
glob = nodeEnv.buildNodePackage {
name = "glob";
packageName = "glob";
- version = "8.0.1";
+ version = "8.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-8.0.1.tgz";
- sha512 = "cF7FYZZ47YzmCu7dDy50xSRRfO3ErRfrXuLZcNIuyiJEco0XSrGtuilG19L5xp3NcwTx7Gn+X6Tv3fmsUPTbow==";
+ url = "https://registry.npmjs.org/glob/-/glob-8.0.2.tgz";
+ sha512 = "0jzor6jfIKaDg/2FIN+9L8oDxzHTkI/+vwJimOmOZjaVjFVVZJFojOYbbWC0okXbBVSgYpbcuQ7xy6gDP9f8gw==";
};
dependencies = [
sources."balanced-match-1.0.2"
@@ -100891,7 +100084,6 @@ in
sources."inherits-2.0.4"
sources."minimatch-5.0.1"
sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -101049,7 +100241,7 @@ in
sources."wrappy-1.0.2"
sources."xtend-4.0.2"
sources."y18n-5.0.8"
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
sources."yargs-parser-21.0.1"
sources."yauzl-2.10.0"
];
@@ -101116,10 +100308,10 @@ in
sources."tslib-2.1.0"
];
})
- (sources."@graphql-tools/import-6.6.13" // {
+ (sources."@graphql-tools/import-6.6.14" // {
dependencies = [
- sources."@graphql-tools/utils-8.6.9"
- sources."tslib-2.3.1"
+ sources."@graphql-tools/utils-8.6.10"
+ sources."tslib-2.4.0"
];
})
(sources."@graphql-tools/json-file-loader-6.2.6" // {
@@ -101143,11 +100335,11 @@ in
sources."tslib-2.3.1"
];
})
- (sources."@graphql-tools/schema-8.3.10" // {
+ (sources."@graphql-tools/schema-8.3.11" // {
dependencies = [
- sources."@graphql-tools/merge-8.2.10"
- sources."@graphql-tools/utils-8.6.9"
- sources."tslib-2.3.1"
+ sources."@graphql-tools/merge-8.2.11"
+ sources."@graphql-tools/utils-8.6.10"
+ sources."tslib-2.4.0"
];
})
(sources."@graphql-tools/url-loader-6.10.1" // {
@@ -101177,7 +100369,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -101271,7 +100463,7 @@ in
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-get-iterator-1.1.2"
sources."es-to-primitive-1.2.1"
sources."es6-promise-3.3.1"
@@ -101298,7 +100490,7 @@ in
sources."figures-3.2.0"
sources."fill-range-7.0.1"
sources."filter-obj-2.0.2"
- sources."foreach-2.0.5"
+ sources."foreach-2.0.6"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."form-urlencoded-4.5.1"
@@ -101307,6 +100499,7 @@ in
sources."fs.realpath-1.0.0"
sources."fullname-4.0.1"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
sources."functions-have-names-1.2.3"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
@@ -101475,7 +100668,7 @@ in
sources."oas-linter-3.2.2"
(sources."oas-resolver-2.5.6" // {
dependencies = [
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
];
})
sources."oas-schema-walker-1.1.5"
@@ -101579,8 +100772,8 @@ in
sources."strip-ansi-6.0.1"
];
})
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."strip-ansi-5.2.0"
sources."strip-eof-1.0.0"
sources."strip-json-comments-2.0.1"
@@ -101588,7 +100781,7 @@ in
sources."supports-color-7.2.0"
(sources."swagger2openapi-7.0.8" // {
dependencies = [
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
];
})
sources."symbol-observable-1.2.0"
@@ -101669,61 +100862,21 @@ in
})
sources."@cronvel/get-pixels-3.4.0"
sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2"
- (sources."@graphql-tools/batch-execute-8.4.6" // {
- dependencies = [
- sources."tslib-2.3.1"
- ];
- })
- (sources."@graphql-tools/delegate-8.7.7" // {
- dependencies = [
- sources."tslib-2.3.1"
- ];
- })
- (sources."@graphql-tools/graphql-file-loader-7.3.11" // {
- dependencies = [
- sources."tslib-2.3.1"
- ];
- })
- (sources."@graphql-tools/import-6.6.13" // {
- dependencies = [
- sources."tslib-2.3.1"
- ];
- })
- (sources."@graphql-tools/json-file-loader-7.3.11" // {
- dependencies = [
- sources."tslib-2.3.1"
- ];
- })
- (sources."@graphql-tools/load-7.5.10" // {
- dependencies = [
- sources."tslib-2.3.1"
- ];
- })
- (sources."@graphql-tools/merge-8.2.10" // {
- dependencies = [
- sources."tslib-2.3.1"
- ];
- })
- (sources."@graphql-tools/schema-8.3.10" // {
- dependencies = [
- sources."tslib-2.3.1"
- ];
- })
- (sources."@graphql-tools/url-loader-7.9.17" // {
+ sources."@graphql-tools/batch-execute-8.4.7"
+ sources."@graphql-tools/delegate-8.7.8"
+ sources."@graphql-tools/graphql-file-loader-7.3.12"
+ sources."@graphql-tools/import-6.6.14"
+ sources."@graphql-tools/json-file-loader-7.3.12"
+ sources."@graphql-tools/load-7.5.11"
+ sources."@graphql-tools/merge-8.2.11"
+ sources."@graphql-tools/schema-8.3.11"
+ (sources."@graphql-tools/url-loader-7.9.21" // {
dependencies = [
sources."ws-8.6.0"
];
})
- (sources."@graphql-tools/utils-8.6.9" // {
- dependencies = [
- sources."tslib-2.3.1"
- ];
- })
- (sources."@graphql-tools/wrap-8.4.16" // {
- dependencies = [
- sources."tslib-2.3.1"
- ];
- })
+ sources."@graphql-tools/utils-8.6.10"
+ sources."@graphql-tools/wrap-8.4.17"
sources."@iarna/toml-2.2.5"
sources."@n1ru4l/graphql-live-query-0.9.0"
sources."@nodelib/fs.scandir-2.1.5"
@@ -101759,7 +100912,7 @@ in
})
sources."@oclif/screen-1.0.4"
sources."@types/json-schema-7.0.9"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/parse-json-4.0.0"
sources."@types/ws-8.5.3"
sources."abort-controller-3.0.0"
@@ -101785,6 +100938,7 @@ in
sources."braces-3.0.2"
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
+ sources."busboy-1.6.0"
sources."bytes-3.0.0"
sources."callsites-3.1.0"
sources."cardinal-2.1.1"
@@ -101825,7 +100979,7 @@ in
sources."semver-5.7.1"
];
})
- sources."cross-undici-fetch-0.3.3"
+ sources."cross-undici-fetch-0.4.3"
sources."cwise-compiler-1.1.3"
sources."dataloader-2.1.0"
sources."debug-4.3.4"
@@ -101833,7 +100987,7 @@ in
sources."destroy-1.0.4"
sources."diff-4.0.2"
sources."dir-glob-3.0.1"
- sources."dset-3.1.1"
+ sources."dset-3.1.2"
sources."ee-first-1.1.1"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
@@ -101884,7 +101038,7 @@ in
sources."graphql-language-service-parser-1.10.4"
sources."graphql-language-service-types-1.8.7"
sources."graphql-language-service-utils-2.5.1"
- sources."graphql-ws-5.8.1"
+ sources."graphql-ws-5.8.2"
sources."has-flag-4.0.0"
sources."http-errors-1.6.3"
sources."hyperlinker-1.0.0"
@@ -101993,6 +101147,7 @@ in
sources."source-map-0.6.1"
sources."source-map-support-0.5.21"
sources."statuses-1.4.0"
+ sources."streamsearch-1.1.0"
sources."string-env-interpolation-1.0.1"
sources."string-kit-0.11.10"
sources."string-width-4.2.3"
@@ -102023,7 +101178,7 @@ in
sources."ts-node-9.1.1"
sources."tslib-2.4.0"
sources."type-is-1.6.18"
- sources."undici-5.1.0"
+ sources."undici-5.2.0"
sources."uniq-1.0.1"
sources."universalify-0.1.2"
sources."unixify-1.0.0"
@@ -102031,7 +101186,7 @@ in
sources."utils-merge-1.0.1"
sources."value-or-promise-1.0.11"
sources."vary-1.1.2"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."web-streams-polyfill-3.2.1"
sources."webidl-conversions-3.0.1"
sources."whatwg-fetch-3.6.2"
@@ -102323,7 +101478,7 @@ in
sources."isarray-0.0.1"
sources."lodash-4.17.21"
sources."map-canvas-0.1.5"
- sources."marked-4.0.14"
+ sources."marked-4.0.15"
(sources."marked-terminal-5.1.1" // {
dependencies = [
sources."chalk-5.0.1"
@@ -102354,7 +101509,7 @@ in
sources."supports-color-7.2.0"
];
})
- sources."systeminformation-5.11.14"
+ sources."systeminformation-5.11.15"
sources."term-canvas-0.0.5"
sources."type-fest-1.4.0"
sources."wordwrap-0.0.3"
@@ -103254,7 +102409,7 @@ in
sources."param-case-2.1.1"
sources."relateurl-0.2.7"
sources."source-map-0.6.1"
- sources."uglify-js-3.15.4"
+ sources."uglify-js-3.15.5"
sources."upper-case-1.1.3"
];
buildInputs = globalBuildInputs;
@@ -103333,7 +102488,7 @@ in
sources."corser-2.0.1"
sources."debug-3.2.7"
sources."eventemitter3-4.0.7"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
sources."has-1.0.3"
@@ -103546,7 +102701,7 @@ in
sources."@colors/colors-1.5.0"
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.18.16"
+ sources."@types/node-14.18.17"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -103555,7 +102710,7 @@ in
sources."assert-plus-1.0.0"
sources."async-2.6.4"
sources."asynckit-0.4.0"
- sources."aws-sdk-2.1125.0"
+ sources."aws-sdk-2.1134.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."base64-js-1.5.1"
@@ -103657,7 +102812,7 @@ in
sources."lodash.reject-4.6.0"
sources."lodash.some-4.6.0"
sources."lodash.uniq-4.5.0"
- sources."marked-4.0.14"
+ sources."marked-4.0.15"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."minimist-1.2.6"
@@ -104126,7 +103281,7 @@ in
sources."is-wsl-2.2.0"
sources."isexe-2.0.0"
sources."jquery-3.6.0"
- sources."jquery.terminal-2.32.1"
+ sources."jquery.terminal-2.33.1"
sources."jsonfile-2.4.0"
sources."keyboardevent-key-polyfill-1.1.0"
sources."line-reader-0.4.0"
@@ -104341,12 +103496,12 @@ in
sources."verror-1.10.0"
(sources."vscode-css-languageservice-5.4.2" // {
dependencies = [
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
];
})
(sources."vscode-html-languageservice-4.2.5" // {
dependencies = [
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
];
})
sources."vscode-jsonrpc-6.0.0"
@@ -104510,7 +103665,7 @@ in
sources."restore-cursor-3.1.0"
];
})
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-2.0.0"
sources."is-stream-1.1.0"
@@ -104831,7 +103986,7 @@ in
sources."universalify-2.0.0"
(sources."verda-1.5.0" // {
dependencies = [
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
sources."yargs-parser-21.0.1"
];
})
@@ -104870,7 +104025,7 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."concat-map-0.0.1"
- (sources."filelist-1.0.3" // {
+ (sources."filelist-1.0.4" // {
dependencies = [
sources."minimatch-5.0.1"
];
@@ -104964,7 +104119,7 @@ in
sources."vscode-languageserver-types-3.14.0"
];
})
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-uri-1.0.8"
sources."wrappy-1.0.2"
sources."xorshift-1.2.0"
@@ -105032,16 +104187,16 @@ in
sources."@aws-sdk/abort-controller-3.78.0"
sources."@aws-sdk/chunked-blob-reader-3.55.0"
sources."@aws-sdk/chunked-blob-reader-native-3.58.0"
- sources."@aws-sdk/client-s3-3.81.0"
- sources."@aws-sdk/client-sso-3.81.0"
- sources."@aws-sdk/client-sts-3.81.0"
+ sources."@aws-sdk/client-s3-3.88.0"
+ sources."@aws-sdk/client-sso-3.85.0"
+ sources."@aws-sdk/client-sts-3.87.0"
sources."@aws-sdk/config-resolver-3.80.0"
sources."@aws-sdk/credential-provider-env-3.78.0"
sources."@aws-sdk/credential-provider-imds-3.81.0"
- sources."@aws-sdk/credential-provider-ini-3.81.0"
- sources."@aws-sdk/credential-provider-node-3.81.0"
+ sources."@aws-sdk/credential-provider-ini-3.85.0"
+ sources."@aws-sdk/credential-provider-node-3.87.0"
sources."@aws-sdk/credential-provider-process-3.80.0"
- sources."@aws-sdk/credential-provider-sso-3.81.0"
+ sources."@aws-sdk/credential-provider-sso-3.85.0"
sources."@aws-sdk/credential-provider-web-identity-3.78.0"
sources."@aws-sdk/eventstream-marshaller-3.78.0"
sources."@aws-sdk/eventstream-serde-browser-3.78.0"
@@ -105068,7 +104223,7 @@ in
sources."uuid-8.3.2"
];
})
- sources."@aws-sdk/middleware-sdk-s3-3.78.0"
+ sources."@aws-sdk/middleware-sdk-s3-3.86.0"
sources."@aws-sdk/middleware-sdk-sts-3.78.0"
sources."@aws-sdk/middleware-serde-3.78.0"
sources."@aws-sdk/middleware-signing-3.78.0"
@@ -105076,17 +104231,17 @@ in
sources."@aws-sdk/middleware-stack-3.78.0"
sources."@aws-sdk/middleware-user-agent-3.78.0"
sources."@aws-sdk/node-config-provider-3.80.0"
- sources."@aws-sdk/node-http-handler-3.78.0"
+ sources."@aws-sdk/node-http-handler-3.82.0"
sources."@aws-sdk/property-provider-3.78.0"
sources."@aws-sdk/protocol-http-3.78.0"
sources."@aws-sdk/querystring-builder-3.78.0"
sources."@aws-sdk/querystring-parser-3.78.0"
- sources."@aws-sdk/s3-request-presigner-3.81.0"
+ sources."@aws-sdk/s3-request-presigner-3.88.0"
sources."@aws-sdk/service-error-classification-3.78.0"
sources."@aws-sdk/shared-ini-file-loader-3.80.0"
sources."@aws-sdk/signature-v4-3.78.0"
- sources."@aws-sdk/signature-v4-multi-region-3.78.0"
- sources."@aws-sdk/smithy-client-3.78.0"
+ sources."@aws-sdk/signature-v4-multi-region-3.88.0"
+ sources."@aws-sdk/smithy-client-3.85.0"
sources."@aws-sdk/types-3.78.0"
sources."@aws-sdk/url-parser-3.78.0"
sources."@aws-sdk/util-arn-parser-3.55.0"
@@ -105096,9 +104251,9 @@ in
sources."@aws-sdk/util-body-length-node-3.55.0"
sources."@aws-sdk/util-buffer-from-3.55.0"
sources."@aws-sdk/util-config-provider-3.55.0"
- sources."@aws-sdk/util-create-request-3.78.0"
- sources."@aws-sdk/util-defaults-mode-browser-3.78.0"
- sources."@aws-sdk/util-defaults-mode-node-3.81.0"
+ sources."@aws-sdk/util-create-request-3.85.0"
+ sources."@aws-sdk/util-defaults-mode-browser-3.85.0"
+ sources."@aws-sdk/util-defaults-mode-node-3.85.0"
sources."@aws-sdk/util-format-url-3.78.0"
sources."@aws-sdk/util-hex-encoding-3.58.0"
sources."@aws-sdk/util-locate-window-3.55.0"
@@ -105214,7 +104369,7 @@ in
sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.1125.0" // {
+ (sources."aws-sdk-2.1134.0" // {
dependencies = [
sources."sax-1.2.1"
sources."uuid-3.3.2"
@@ -105241,7 +104396,7 @@ in
sources."braces-3.0.2"
sources."browser-process-hrtime-1.0.0"
sources."buffer-4.9.2"
- sources."builtin-modules-3.2.0"
+ sources."builtin-modules-3.3.0"
(sources."cacache-15.3.0" // {
dependencies = [
sources."chownr-2.0.0"
@@ -105431,7 +104586,7 @@ in
sources."file-type-10.11.0"
sources."fill-range-7.0.1"
sources."find-up-2.1.0"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."font-awesome-filetypes-2.1.0"
sources."for-each-property-0.0.4"
sources."for-each-property-deep-0.0.3"
@@ -105531,7 +104686,7 @@ in
})
sources."internmap-2.0.3"
sources."iota-array-1.0.0"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ip-regex-2.1.0"
sources."is-absolute-0.2.6"
sources."is-arrayish-0.3.2"
@@ -105674,7 +104829,7 @@ in
sources."ms-2.1.2"
sources."multiparty-4.2.3"
sources."mustache-4.2.0"
- sources."nanoid-3.3.3"
+ sources."nanoid-3.3.4"
sources."napi-build-utils-1.0.2"
sources."ndarray-1.0.19"
sources."ndarray-pack-1.2.1"
@@ -105847,7 +105002,7 @@ in
sources."source-map-url-0.4.1"
sources."split-skip-0.0.2"
sources."sprintf-js-1.1.2"
- (sources."sqlite3-5.0.6" // {
+ (sources."sqlite3-5.0.8" // {
dependencies = [
sources."chownr-2.0.0"
sources."fs-minipass-2.1.0"
@@ -106083,8 +105238,8 @@ in
sources."linkify-it-3.0.3"
sources."lodash-4.17.21"
sources."markdown-it-12.3.2"
- sources."markdown-it-anchor-8.6.2"
- sources."marked-4.0.14"
+ sources."markdown-it-anchor-8.6.4"
+ sources."marked-4.0.15"
sources."mdurl-1.0.1"
sources."mkdirp-1.0.4"
sources."requizzle-0.2.3"
@@ -106424,7 +105579,7 @@ in
];
})
sources."ms-2.0.0"
- sources."nanoid-3.3.3"
+ sources."nanoid-3.3.4"
sources."negotiator-0.6.3"
sources."normalize-url-4.5.1"
sources."object-assign-4.1.1"
@@ -106502,7 +105657,7 @@ in
sources."xdg-basedir-4.0.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
sources."yargs-parser-21.0.1"
];
buildInputs = globalBuildInputs;
@@ -107231,7 +106386,7 @@ in
})
sources."fill-range-7.0.1"
sources."find-up-3.0.0"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."form-data-3.0.1"
sources."fs-extra-8.1.0"
sources."function-bind-1.1.1"
@@ -107385,7 +106540,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."accepts-1.3.8"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -107438,7 +106593,7 @@ in
];
})
sources."flatted-3.2.5"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."fs-extra-10.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
@@ -107594,20 +106749,19 @@ in
sources."@babel/traverse-7.17.10"
sources."@babel/types-7.17.10"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/resolve-uri-3.0.6"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- sources."@jridgewell/trace-mapping-0.3.9"
+ sources."@jridgewell/resolve-uri-3.0.7"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
+ sources."@jridgewell/trace-mapping-0.3.13"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
sources."@openpgp/hkp-client-0.0.2"
sources."@openpgp/wkd-client-0.0.3"
- sources."@peculiar/asn1-schema-2.1.0"
+ sources."@peculiar/asn1-schema-2.1.6"
sources."@peculiar/json-schema-1.1.12"
- sources."@peculiar/webcrypto-1.3.3"
+ sources."@peculiar/webcrypto-1.4.0"
sources."@tootallnate/once-1.1.2"
- sources."@types/asn1js-2.0.2"
sources."@xmpp/base64-0.13.1"
sources."@xmpp/client-0.13.1"
sources."@xmpp/client-core-0.13.1"
@@ -107658,7 +106812,7 @@ in
sources."array-flatten-1.1.1"
sources."array-union-2.1.0"
sources."asn1.js-5.4.1"
- sources."asn1js-2.4.0"
+ sources."asn1js-3.0.1"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."axios-0.25.0"
@@ -107685,7 +106839,7 @@ in
sources."buffer-from-1.1.2"
sources."bytes-3.1.2"
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
sources."chalk-2.4.2"
sources."chardet-1.4.0"
sources."chownr-1.1.4"
@@ -107714,7 +106868,7 @@ in
sources."convert-source-map-1.8.0"
sources."cookie-0.5.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.3"
+ sources."core-js-3.22.5"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."create-hash-1.2.0"
@@ -107753,12 +106907,12 @@ in
})
sources."dotenv-8.6.0"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
sources."enquirer-2.3.6"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
@@ -107791,7 +106945,7 @@ in
})
sources."find-cache-dir-2.1.0"
sources."find-up-3.0.0"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."form-data-3.0.1"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
@@ -107810,6 +106964,8 @@ in
sources."fs-readdir-recursive-1.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
+ sources."functions-have-names-1.2.3"
(sources."gauge-2.7.4" // {
dependencies = [
sources."strip-ansi-3.0.1"
@@ -107990,7 +107146,7 @@ in
sources."psl-1.8.0"
sources."pump-3.0.0"
sources."punycode-2.1.1"
- sources."pvtsutils-1.2.2"
+ sources."pvtsutils-1.3.2"
sources."pvutils-1.1.3"
sources."qs-6.10.3"
sources."query-string-6.14.1"
@@ -108001,6 +107157,7 @@ in
sources."rc-1.2.8"
sources."readable-stream-3.6.0"
sources."regenerator-runtime-0.13.9"
+ sources."regexp.prototype.flags-1.4.3"
sources."require-directory-2.1.1"
sources."resolve-1.22.0"
sources."reusify-1.0.4"
@@ -108050,8 +107207,8 @@ in
sources."strip-ansi-3.0.1"
];
})
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
(sources."string_decoder-1.3.0" // {
dependencies = [
sources."safe-buffer-5.2.1"
@@ -108088,7 +107245,7 @@ in
sources."vary-1.1.2"
sources."w3c-hr-time-1.0.2"
sources."w3c-xmlserializer-2.0.0"
- sources."webcrypto-core-1.7.3"
+ sources."webcrypto-core-1.7.5"
sources."webidl-conversions-3.0.1"
sources."whatwg-encoding-1.0.5"
sources."whatwg-mimetype-2.3.0"
@@ -108491,17 +107648,17 @@ in
vsc-leetcode-cli = nodeEnv.buildNodePackage {
name = "vsc-leetcode-cli";
packageName = "vsc-leetcode-cli";
- version = "2.8.0";
+ version = "2.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vsc-leetcode-cli/-/vsc-leetcode-cli-2.8.0.tgz";
- sha512 = "KcFzpk3OZ+wUCoeK1yjBK0hYpJItYd8WFC7pQfE1zxJGjQs4tUvadLI5imKfRjw5NicjNRFnVpVv6N7ig7ik4A==";
+ url = "https://registry.npmjs.org/vsc-leetcode-cli/-/vsc-leetcode-cli-2.8.1.tgz";
+ sha512 = "C5q5wGeedHKJzs53/jrVWEeobRteB/libKrVHmLqE3zraKJBgteUN4LUNEYrAjU9O6yxgj/NPEWOLoEdRhwATw==";
};
dependencies = [
sources."abab-1.0.4"
sources."acorn-2.7.0"
sources."acorn-globals-1.0.9"
sources."ajv-6.12.6"
- sources."ansi-regex-2.1.1"
+ sources."ansi-regex-5.0.1"
sources."ansi-styles-3.2.1"
sources."asn1-0.2.6"
sources."assert-plus-1.0.0"
@@ -108513,15 +107670,14 @@ in
sources."bcrypt-pbkdf-1.0.2"
sources."boolbase-1.0.0"
sources."brace-expansion-1.1.11"
- sources."camelcase-2.1.1"
+ sources."camelcase-5.3.1"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."cheerio-0.20.0"
sources."cli-cursor-2.1.0"
sources."cli-spinners-1.3.1"
- sources."cliui-3.2.0"
+ sources."cliui-7.0.4"
sources."clone-1.0.4"
- sources."code-point-at-1.1.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."colors-1.4.0"
@@ -108546,6 +107702,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
+ sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
sources."escodegen-1.14.3"
sources."esprima-4.0.1"
@@ -108577,9 +107734,8 @@ in
sources."i-0.3.7"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ini-1.3.8"
- sources."invert-kv-1.0.0"
- sources."is-fullwidth-code-point-1.0.0"
+ sources."ini-2.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
sources."is-typedarray-1.0.0"
sources."isarray-0.0.1"
sources."isstream-0.1.2"
@@ -108589,7 +107745,6 @@ in
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
sources."jsprim-1.4.2"
- sources."lcid-1.0.0"
sources."levn-0.3.0"
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
@@ -108602,14 +107757,13 @@ in
sources."mkdirp-1.0.4"
sources."moment-2.29.3"
sources."mute-stream-0.0.8"
- (sources."nconf-0.10.0" // {
+ (sources."nconf-0.11.4" // {
dependencies = [
- sources."yargs-3.32.0"
+ sources."yargs-16.2.0"
];
})
sources."ncp-1.0.1"
sources."nth-check-1.0.2"
- sources."number-is-nan-1.0.1"
sources."nwmatcher-1.4.4"
sources."oauth-sign-0.9.0"
sources."once-1.4.0"
@@ -108621,7 +107775,6 @@ in
sources."strip-ansi-4.0.0"
];
})
- sources."os-locale-1.4.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
@@ -108657,9 +107810,9 @@ in
sources."source-map-0.6.1"
sources."sshpk-1.17.0"
sources."stack-trace-0.0.10"
- sources."string-width-1.0.2"
+ sources."string-width-4.2.3"
sources."string_decoder-0.10.31"
- sources."strip-ansi-3.0.1"
+ sources."strip-ansi-6.0.1"
sources."supports-color-5.5.0"
sources."symbol-tree-3.2.4"
sources."tough-cookie-2.5.0"
@@ -108685,7 +107838,6 @@ in
sources."webidl-conversions-2.0.1"
sources."whatwg-url-compat-0.6.5"
sources."which-module-2.0.0"
- sources."window-size-0.1.4"
(sources."winston-2.1.1" // {
dependencies = [
sources."async-1.0.0"
@@ -108695,29 +107847,28 @@ in
})
sources."word-wrap-1.2.3"
sources."wordwrap-1.0.0"
- sources."wrap-ansi-2.1.0"
+ (sources."wrap-ansi-7.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ ];
+ })
sources."wrappy-1.0.2"
sources."xml-name-validator-2.0.1"
- sources."y18n-3.2.2"
+ sources."y18n-5.0.8"
(sources."yargs-15.4.1" // {
dependencies = [
- sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
sources."cliui-6.0.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."is-fullwidth-code-point-3.0.0"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
sources."wrap-ansi-6.2.0"
sources."y18n-4.0.3"
+ sources."yargs-parser-18.1.3"
];
})
- (sources."yargs-parser-18.1.3" // {
- dependencies = [
- sources."camelcase-5.3.1"
- ];
- })
+ sources."yargs-parser-20.2.9"
];
buildInputs = globalBuildInputs;
meta = {
@@ -109005,7 +108156,7 @@ in
sources."envinfo-7.8.1"
sources."err-code-2.0.3"
sources."error-ex-1.3.2"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -109032,6 +108183,8 @@ in
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
+ sources."functions-have-names-1.2.3"
(sources."gauge-2.7.4" // {
dependencies = [
sources."ansi-regex-2.1.1"
@@ -109114,7 +108267,7 @@ in
})
sources."inquirer-7.3.3"
sources."internal-slot-1.0.3"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."is-arrayish-0.2.1"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
@@ -109354,6 +108507,7 @@ in
sources."readable-stream-3.6.0"
sources."readdir-scoped-modules-1.1.0"
sources."redent-3.0.0"
+ sources."regexp.prototype.flags-1.4.3"
sources."request-2.88.2"
sources."require-directory-2.1.1"
sources."resolve-1.22.0"
@@ -109393,8 +108547,8 @@ in
sources."ssri-8.0.1"
sources."strict-uri-encode-2.0.0"
sources."string-width-4.2.3"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."strip-bom-4.0.0"
@@ -109425,7 +108579,7 @@ in
sources."type-fest-0.4.1"
sources."typedarray-0.0.6"
sources."typedarray-to-buffer-3.1.5"
- sources."uglify-js-3.15.4"
+ sources."uglify-js-3.15.5"
sources."uid-number-0.0.6"
sources."umask-1.1.0"
sources."unbox-primitive-1.0.2"
@@ -110411,1161 +109565,6 @@ in
bypassCache = true;
reconstructLock = true;
};
- "lumo-build-deps-../interpreters/clojurescript/lumo" = nodeEnv.buildNodePackage {
- name = "lumo-build-deps";
- packageName = "lumo-build-deps";
- version = "1.10.1";
- src = ../interpreters/clojurescript/lumo;
- dependencies = [
- sources."@ampproject/remapping-2.2.0"
- sources."@babel/code-frame-7.16.7"
- sources."@babel/compat-data-7.17.10"
- sources."@babel/core-7.17.10"
- sources."@babel/generator-7.17.10"
- sources."@babel/helper-annotate-as-pure-7.16.7"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7"
- sources."@babel/helper-compilation-targets-7.17.10"
- sources."@babel/helper-create-class-features-plugin-7.17.9"
- sources."@babel/helper-create-regexp-features-plugin-7.17.0"
- sources."@babel/helper-define-polyfill-provider-0.3.1"
- sources."@babel/helper-environment-visitor-7.16.7"
- sources."@babel/helper-explode-assignable-expression-7.16.7"
- sources."@babel/helper-function-name-7.17.9"
- sources."@babel/helper-hoist-variables-7.16.7"
- sources."@babel/helper-member-expression-to-functions-7.17.7"
- sources."@babel/helper-module-imports-7.16.7"
- sources."@babel/helper-module-transforms-7.17.7"
- sources."@babel/helper-optimise-call-expression-7.16.7"
- sources."@babel/helper-plugin-utils-7.16.7"
- sources."@babel/helper-remap-async-to-generator-7.16.8"
- sources."@babel/helper-replace-supers-7.16.7"
- sources."@babel/helper-simple-access-7.17.7"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.7"
- sources."@babel/helper-validator-identifier-7.16.7"
- sources."@babel/helper-validator-option-7.16.7"
- sources."@babel/helper-wrap-function-7.16.8"
- sources."@babel/helpers-7.17.9"
- (sources."@babel/highlight-7.17.9" // {
- dependencies = [
- sources."chalk-2.4.2"
- ];
- })
- sources."@babel/parser-7.17.10"
- sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7"
- sources."@babel/plugin-external-helpers-7.8.3"
- sources."@babel/plugin-proposal-async-generator-functions-7.16.8"
- sources."@babel/plugin-proposal-class-properties-7.16.7"
- sources."@babel/plugin-proposal-class-static-block-7.17.6"
- sources."@babel/plugin-proposal-dynamic-import-7.16.7"
- sources."@babel/plugin-proposal-export-namespace-from-7.16.7"
- sources."@babel/plugin-proposal-json-strings-7.16.7"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7"
- sources."@babel/plugin-proposal-numeric-separator-7.16.7"
- sources."@babel/plugin-proposal-object-rest-spread-7.17.3"
- sources."@babel/plugin-proposal-optional-catch-binding-7.16.7"
- sources."@babel/plugin-proposal-optional-chaining-7.16.7"
- sources."@babel/plugin-proposal-private-methods-7.16.11"
- sources."@babel/plugin-proposal-private-property-in-object-7.16.7"
- sources."@babel/plugin-proposal-unicode-property-regex-7.16.7"
- sources."@babel/plugin-syntax-async-generators-7.8.4"
- sources."@babel/plugin-syntax-bigint-7.8.3"
- sources."@babel/plugin-syntax-class-properties-7.12.13"
- sources."@babel/plugin-syntax-class-static-block-7.14.5"
- sources."@babel/plugin-syntax-dynamic-import-7.8.3"
- sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
- sources."@babel/plugin-syntax-import-meta-7.10.4"
- sources."@babel/plugin-syntax-json-strings-7.8.3"
- sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
- sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3"
- sources."@babel/plugin-syntax-numeric-separator-7.10.4"
- sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
- sources."@babel/plugin-syntax-optional-catch-binding-7.8.3"
- sources."@babel/plugin-syntax-optional-chaining-7.8.3"
- sources."@babel/plugin-syntax-private-property-in-object-7.14.5"
- sources."@babel/plugin-syntax-top-level-await-7.14.5"
- sources."@babel/plugin-transform-arrow-functions-7.16.7"
- sources."@babel/plugin-transform-async-to-generator-7.16.8"
- sources."@babel/plugin-transform-block-scoped-functions-7.16.7"
- sources."@babel/plugin-transform-block-scoping-7.16.7"
- sources."@babel/plugin-transform-classes-7.16.7"
- sources."@babel/plugin-transform-computed-properties-7.16.7"
- sources."@babel/plugin-transform-destructuring-7.17.7"
- sources."@babel/plugin-transform-dotall-regex-7.16.7"
- sources."@babel/plugin-transform-duplicate-keys-7.16.7"
- sources."@babel/plugin-transform-exponentiation-operator-7.16.7"
- sources."@babel/plugin-transform-for-of-7.16.7"
- sources."@babel/plugin-transform-function-name-7.16.7"
- sources."@babel/plugin-transform-literals-7.16.7"
- sources."@babel/plugin-transform-member-expression-literals-7.16.7"
- sources."@babel/plugin-transform-modules-amd-7.16.7"
- sources."@babel/plugin-transform-modules-commonjs-7.17.9"
- sources."@babel/plugin-transform-modules-systemjs-7.17.8"
- sources."@babel/plugin-transform-modules-umd-7.16.7"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.10"
- sources."@babel/plugin-transform-new-target-7.16.7"
- sources."@babel/plugin-transform-object-super-7.16.7"
- sources."@babel/plugin-transform-parameters-7.16.7"
- sources."@babel/plugin-transform-property-literals-7.16.7"
- sources."@babel/plugin-transform-regenerator-7.17.9"
- sources."@babel/plugin-transform-reserved-words-7.16.7"
- sources."@babel/plugin-transform-runtime-7.17.10"
- sources."@babel/plugin-transform-shorthand-properties-7.16.7"
- sources."@babel/plugin-transform-spread-7.16.7"
- sources."@babel/plugin-transform-sticky-regex-7.16.7"
- sources."@babel/plugin-transform-template-literals-7.16.7"
- sources."@babel/plugin-transform-typeof-symbol-7.16.7"
- sources."@babel/plugin-transform-unicode-escapes-7.16.7"
- sources."@babel/plugin-transform-unicode-regex-7.16.7"
- sources."@babel/preset-env-7.17.10"
- sources."@babel/preset-modules-0.1.5"
- sources."@babel/preset-stage-2-7.8.3"
- sources."@babel/runtime-7.17.9"
- sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.17.10"
- sources."@babel/types-7.17.10"
- sources."@cnakazawa/watch-1.0.4"
- sources."@comandeer/babel-plugin-banner-5.0.0"
- sources."@istanbuljs/load-nyc-config-1.1.0"
- sources."@istanbuljs/schema-0.1.3"
- sources."@jest/transform-25.5.1"
- sources."@jest/types-25.5.0"
- sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/resolve-uri-3.0.6"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- sources."@jridgewell/trace-mapping-0.3.9"
- sources."@types/babel__core-7.1.19"
- sources."@types/babel__generator-7.6.4"
- sources."@types/babel__template-7.4.1"
- sources."@types/babel__traverse-7.17.1"
- sources."@types/estree-0.0.51"
- sources."@types/graceful-fs-4.1.5"
- sources."@types/istanbul-lib-coverage-2.0.4"
- sources."@types/istanbul-lib-report-3.0.0"
- sources."@types/istanbul-reports-1.1.2"
- sources."@types/json-schema-7.0.11"
- sources."@types/node-17.0.31"
- sources."@types/normalize-package-data-2.4.1"
- sources."@types/resolve-0.0.8"
- sources."@types/yargs-15.0.14"
- sources."@types/yargs-parser-21.0.0"
- sources."@webassemblyjs/ast-1.9.0"
- sources."@webassemblyjs/floating-point-hex-parser-1.9.0"
- sources."@webassemblyjs/helper-api-error-1.9.0"
- sources."@webassemblyjs/helper-buffer-1.9.0"
- sources."@webassemblyjs/helper-code-frame-1.9.0"
- sources."@webassemblyjs/helper-fsm-1.9.0"
- sources."@webassemblyjs/helper-module-context-1.9.0"
- sources."@webassemblyjs/helper-wasm-bytecode-1.9.0"
- sources."@webassemblyjs/helper-wasm-section-1.9.0"
- sources."@webassemblyjs/ieee754-1.9.0"
- sources."@webassemblyjs/leb128-1.9.0"
- sources."@webassemblyjs/utf8-1.9.0"
- sources."@webassemblyjs/wasm-edit-1.9.0"
- sources."@webassemblyjs/wasm-gen-1.9.0"
- sources."@webassemblyjs/wasm-opt-1.9.0"
- sources."@webassemblyjs/wasm-parser-1.9.0"
- sources."@webassemblyjs/wast-parser-1.9.0"
- sources."@webassemblyjs/wast-printer-1.9.0"
- sources."@xtuc/ieee754-1.2.0"
- sources."@xtuc/long-4.2.2"
- sources."JSONStream-1.3.5"
- sources."ace.improved-0.2.1"
- sources."acorn-7.4.1"
- sources."acorn-node-1.8.2"
- sources."acorn-walk-7.2.0"
- sources."ajv-6.12.6"
- sources."ajv-errors-1.0.1"
- sources."ajv-keywords-3.5.2"
- sources."amdefine-1.0.1"
- sources."ansi-regex-4.1.1"
- sources."ansi-styles-3.2.1"
- sources."anymatch-3.1.2"
- sources."aproba-1.2.0"
- sources."argparse-1.0.10"
- sources."arr-diff-4.0.0"
- sources."arr-flatten-1.1.0"
- sources."arr-union-3.1.0"
- sources."array-unique-0.3.2"
- sources."asn1-0.2.6"
- (sources."asn1.js-5.4.1" // {
- dependencies = [
- sources."bn.js-4.12.0"
- ];
- })
- (sources."assert-1.5.0" // {
- dependencies = [
- sources."inherits-2.0.1"
- sources."util-0.10.3"
- ];
- })
- sources."assert-plus-1.0.0"
- sources."assign-symbols-1.0.0"
- sources."async-3.2.3"
- sources."async-each-1.0.3"
- sources."async-retry-1.3.3"
- sources."asynckit-0.4.0"
- sources."atob-2.1.2"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.11.0"
- sources."babel-core-7.0.0-bridge.0"
- sources."babel-eslint-10.0.3"
- sources."babel-helper-evaluate-path-0.5.0"
- sources."babel-helper-flip-expressions-0.4.3"
- sources."babel-helper-is-nodes-equiv-0.0.1"
- sources."babel-helper-is-void-0-0.4.3"
- sources."babel-helper-mark-eval-scopes-0.4.3"
- sources."babel-helper-remove-or-void-0.4.3"
- sources."babel-helper-to-multiple-sequence-expressions-0.5.0"
- sources."babel-jest-25.5.1"
- sources."babel-loader-8.2.5"
- sources."babel-plugin-dynamic-import-node-2.3.3"
- sources."babel-plugin-istanbul-6.1.1"
- sources."babel-plugin-jest-hoist-25.5.0"
- sources."babel-plugin-minify-builtins-0.5.0"
- sources."babel-plugin-minify-constant-folding-0.5.0"
- sources."babel-plugin-minify-dead-code-elimination-0.5.1"
- sources."babel-plugin-minify-flip-comparisons-0.4.3"
- sources."babel-plugin-minify-guarded-expressions-0.4.4"
- sources."babel-plugin-minify-infinity-0.4.3"
- sources."babel-plugin-minify-mangle-names-0.5.0"
- sources."babel-plugin-minify-numeric-literals-0.4.3"
- sources."babel-plugin-minify-replace-0.5.0"
- sources."babel-plugin-minify-simplify-0.5.1"
- sources."babel-plugin-minify-type-constructors-0.4.3"
- sources."babel-plugin-polyfill-corejs2-0.3.1"
- sources."babel-plugin-polyfill-corejs3-0.5.2"
- sources."babel-plugin-polyfill-regenerator-0.3.1"
- sources."babel-plugin-syntax-flow-6.18.0"
- sources."babel-plugin-transform-flow-strip-types-6.22.0"
- sources."babel-plugin-transform-inline-consecutive-adds-0.4.3"
- sources."babel-plugin-transform-member-expression-literals-6.9.4"
- sources."babel-plugin-transform-merge-sibling-variables-6.9.4"
- sources."babel-plugin-transform-minify-booleans-6.9.4"
- sources."babel-plugin-transform-property-literals-6.9.4"
- sources."babel-plugin-transform-regexp-constructors-0.4.3"
- sources."babel-plugin-transform-remove-console-6.9.4"
- sources."babel-plugin-transform-remove-debugger-6.9.4"
- sources."babel-plugin-transform-remove-undefined-0.5.0"
- sources."babel-plugin-transform-simplify-comparison-operators-6.9.4"
- sources."babel-plugin-transform-undefined-to-void-6.9.4"
- sources."babel-preset-current-node-syntax-0.1.4"
- sources."babel-preset-jest-25.5.0"
- sources."babel-preset-minify-0.5.1"
- (sources."babel-runtime-6.26.0" // {
- dependencies = [
- sources."regenerator-runtime-0.11.1"
- ];
- })
- sources."balanced-match-1.0.2"
- (sources."base-0.11.2" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- sources."base64-js-1.5.1"
- sources."bcrypt-pbkdf-1.0.2"
- sources."big.js-5.2.2"
- sources."binary-extensions-2.2.0"
- sources."bindings-1.5.0"
- (sources."bl-4.1.0" // {
- dependencies = [
- sources."buffer-5.7.1"
- sources."readable-stream-3.6.0"
- ];
- })
- sources."bluebird-3.7.2"
- sources."bn.js-5.2.0"
- sources."brace-expansion-1.1.11"
- (sources."braces-2.3.2" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."brorand-1.1.0"
- sources."browser-pack-6.1.0"
- sources."browser-resolve-2.0.0"
- (sources."browserify-16.5.2" // {
- dependencies = [
- sources."punycode-1.4.1"
- ];
- })
- sources."browserify-aes-1.2.0"
- sources."browserify-cipher-1.0.1"
- sources."browserify-des-1.0.2"
- sources."browserify-rsa-4.1.0"
- (sources."browserify-sign-4.2.1" // {
- dependencies = [
- sources."readable-stream-3.6.0"
- sources."safe-buffer-5.2.1"
- ];
- })
- sources."browserify-zlib-0.2.0"
- sources."browserslist-4.20.3"
- sources."bser-2.1.1"
- sources."buffer-5.2.1"
- sources."buffer-from-1.1.2"
- sources."buffer-xor-1.0.3"
- sources."builtin-modules-3.2.0"
- sources."builtin-status-codes-3.0.0"
- (sources."cacache-12.0.4" // {
- dependencies = [
- sources."mkdirp-0.5.6"
- ];
- })
- sources."cache-base-1.0.1"
- sources."cached-path-relative-1.1.0"
- sources."call-bind-1.0.2"
- sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001334"
- sources."capture-exit-2.0.0"
- sources."caseless-0.12.0"
- (sources."chalk-3.0.0" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- sources."has-flag-4.0.0"
- sources."supports-color-7.2.0"
- ];
- })
- (sources."chokidar-3.5.3" // {
- dependencies = [
- sources."braces-3.0.2"
- sources."fill-range-7.0.1"
- sources."is-number-7.0.0"
- sources."to-regex-range-5.0.1"
- ];
- })
- sources."chownr-1.1.4"
- sources."chrome-trace-event-1.0.3"
- sources."ci-info-2.0.0"
- sources."cipher-base-1.0.4"
- (sources."class-utils-0.3.6" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."cliui-5.0.0"
- sources."clone-2.1.2"
- sources."clone-buffer-1.0.0"
- sources."clone-stats-1.0.0"
- sources."cloneable-readable-1.1.3"
- sources."collection-visit-1.0.0"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."colors-1.4.0"
- (sources."combine-source-map-0.8.0" // {
- dependencies = [
- sources."convert-source-map-1.1.3"
- sources."source-map-0.5.7"
- ];
- })
- sources."combined-stream-1.0.8"
- sources."commander-2.20.3"
- sources."commondir-1.0.1"
- sources."component-emitter-1.3.0"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."console-browserify-1.2.0"
- sources."constants-browserify-1.0.0"
- sources."convert-source-map-1.8.0"
- (sources."copy-concurrently-1.0.5" // {
- dependencies = [
- sources."mkdirp-0.5.6"
- ];
- })
- sources."copy-descriptor-0.1.1"
- sources."core-js-2.6.12"
- (sources."core-js-compat-3.22.3" // {
- dependencies = [
- sources."semver-7.0.0"
- ];
- })
- sources."core-util-is-1.0.3"
- (sources."create-ecdh-4.0.4" // {
- dependencies = [
- sources."bn.js-4.12.0"
- ];
- })
- sources."create-hash-1.2.0"
- sources."create-hmac-1.1.7"
- (sources."cross-env-7.0.0" // {
- dependencies = [
- sources."cross-spawn-7.0.3"
- sources."path-key-3.1.1"
- sources."shebang-command-2.0.0"
- sources."shebang-regex-3.0.0"
- ];
- })
- (sources."cross-spawn-6.0.5" // {
- dependencies = [
- sources."semver-5.7.1"
- sources."which-1.3.1"
- ];
- })
- sources."crypto-browserify-3.12.0"
- sources."cyclist-1.0.1"
- sources."dash-ast-1.0.0"
- sources."dashdash-1.14.1"
- sources."death-1.1.0"
- sources."debug-4.3.4"
- sources."decamelize-1.2.0"
- sources."decode-uri-component-0.2.0"
- sources."define-properties-1.1.4"
- sources."define-property-2.0.2"
- sources."defined-1.0.0"
- sources."delayed-stream-1.0.0"
- sources."deps-sort-2.0.1"
- sources."des.js-1.0.1"
- sources."detect-file-1.0.0"
- sources."detective-5.2.0"
- (sources."diffie-hellman-5.0.3" // {
- dependencies = [
- sources."bn.js-4.12.0"
- ];
- })
- sources."domain-browser-1.2.0"
- sources."duplexer2-0.1.4"
- sources."duplexify-3.7.1"
- sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.4.129"
- (sources."elliptic-6.5.4" // {
- dependencies = [
- sources."bn.js-4.12.0"
- ];
- })
- sources."emoji-regex-7.0.3"
- sources."emojis-list-3.0.0"
- sources."end-of-stream-1.4.4"
- (sources."enhanced-resolve-4.5.0" // {
- dependencies = [
- sources."memory-fs-0.5.0"
- ];
- })
- sources."errno-0.1.8"
- sources."error-ex-1.3.2"
- sources."escalade-3.1.1"
- sources."escape-string-regexp-1.0.5"
- sources."eslint-scope-4.0.3"
- sources."eslint-visitor-keys-1.3.0"
- sources."esprima-4.0.1"
- (sources."esrecurse-4.3.0" // {
- dependencies = [
- sources."estraverse-5.3.0"
- ];
- })
- sources."estraverse-4.3.0"
- sources."estree-walker-0.6.1"
- sources."esutils-2.0.3"
- sources."events-2.1.0"
- sources."evp_bytestokey-1.0.3"
- sources."exec-sh-0.3.6"
- sources."execa-1.0.0"
- (sources."expand-brackets-2.1.4" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- sources."ms-2.0.0"
- ];
- })
- sources."expand-tilde-2.0.2"
- sources."extend-3.0.2"
- (sources."extend-shallow-3.0.2" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- (sources."extglob-2.0.4" // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-3.1.3"
- sources."fast-json-stable-stringify-2.1.0"
- sources."fast-safe-stringify-2.1.1"
- sources."fb-watchman-2.0.1"
- sources."figgy-pudding-3.5.2"
- sources."file-uri-to-path-1.0.0"
- (sources."fill-range-4.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."find-cache-dir-3.3.2"
- sources."find-up-4.1.0"
- (sources."findup-sync-3.0.0" // {
- dependencies = [
- sources."micromatch-3.1.10"
- ];
- })
- sources."flow-bin-0.118.0"
- sources."flush-write-stream-1.1.1"
- sources."for-in-1.0.2"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.3"
- sources."fragment-cache-0.2.1"
- sources."from2-2.3.0"
- sources."fs-constants-1.0.0"
- sources."fs-write-stream-atomic-1.0.10"
- sources."fs.realpath-1.0.0"
- sources."fsevents-2.3.2"
- sources."function-bind-1.1.1"
- sources."gensync-1.0.0-beta.2"
- sources."get-assigned-identifiers-1.2.0"
- sources."get-caller-file-2.0.5"
- sources."get-intrinsic-1.1.1"
- sources."get-package-type-0.1.0"
- sources."get-stream-4.1.0"
- sources."get-value-2.0.6"
- sources."getpass-0.1.7"
- sources."glob-7.2.0"
- sources."glob-parent-5.1.2"
- (sources."global-modules-2.0.0" // {
- dependencies = [
- sources."global-prefix-3.0.0"
- sources."which-1.3.1"
- ];
- })
- (sources."global-prefix-1.0.2" // {
- dependencies = [
- sources."which-1.3.1"
- ];
- })
- sources."globals-11.12.0"
- sources."google-closure-compiler-js-20170910.0.1"
- sources."graceful-fs-4.2.10"
- (sources."gunzip-maybe-1.4.2" // {
- dependencies = [
- sources."browserify-zlib-0.1.4"
- sources."pako-0.2.9"
- ];
- })
- sources."har-schema-2.0.0"
- sources."har-validator-5.1.5"
- sources."has-1.0.3"
- sources."has-flag-3.0.0"
- sources."has-property-descriptors-1.0.0"
- sources."has-symbols-1.0.3"
- sources."has-value-1.0.0"
- (sources."has-values-1.0.0" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- (sources."hash-base-3.1.0" // {
- dependencies = [
- sources."readable-stream-3.6.0"
- sources."safe-buffer-5.2.1"
- ];
- })
- sources."hash.js-1.1.7"
- sources."hmac-drbg-1.0.1"
- sources."homedir-polyfill-1.0.3"
- sources."hosted-git-info-2.8.9"
- sources."htmlescape-1.1.1"
- sources."http-signature-1.2.0"
- sources."https-browserify-1.0.0"
- sources."ieee754-1.2.1"
- sources."iferr-0.1.5"
- (sources."import-local-2.0.0" // {
- dependencies = [
- sources."find-up-3.0.0"
- sources."locate-path-3.0.0"
- sources."p-locate-3.0.0"
- sources."path-exists-3.0.0"
- sources."pkg-dir-3.0.0"
- ];
- })
- sources."imurmurhash-0.1.4"
- sources."infer-owner-1.0.4"
- sources."inflight-1.0.6"
- sources."inherits-2.0.4"
- sources."ini-1.3.8"
- (sources."inline-source-map-0.6.2" // {
- dependencies = [
- sources."source-map-0.5.7"
- ];
- })
- sources."insert-module-globals-7.2.1"
- sources."interpret-1.4.0"
- sources."is-accessor-descriptor-1.0.0"
- sources."is-arrayish-0.2.1"
- sources."is-binary-path-2.1.0"
- sources."is-buffer-1.1.6"
- sources."is-ci-2.0.0"
- sources."is-core-module-2.9.0"
- sources."is-data-descriptor-1.0.0"
- sources."is-deflate-1.0.0"
- sources."is-descriptor-1.0.2"
- sources."is-extendable-0.1.1"
- sources."is-extglob-2.1.1"
- sources."is-fullwidth-code-point-2.0.0"
- sources."is-glob-4.0.3"
- sources."is-gzip-1.0.0"
- sources."is-module-1.0.0"
- (sources."is-number-3.0.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-plain-object-2.0.4"
- sources."is-reference-1.2.1"
- sources."is-stream-1.1.0"
- sources."is-typedarray-1.0.0"
- sources."is-windows-1.0.2"
- sources."is-wsl-1.1.0"
- sources."isarray-1.0.0"
- sources."isexe-2.0.0"
- sources."isobject-3.0.1"
- sources."isstream-0.1.2"
- sources."istanbul-lib-coverage-3.2.0"
- sources."istanbul-lib-instrument-5.2.0"
- sources."jest-haste-map-25.5.1"
- sources."jest-regex-util-25.2.6"
- sources."jest-serializer-25.5.0"
- sources."jest-util-25.5.0"
- (sources."jest-worker-25.5.0" // {
- dependencies = [
- sources."has-flag-4.0.0"
- sources."supports-color-7.2.0"
- ];
- })
- sources."js-tokens-4.0.0"
- sources."js-yaml-3.14.1"
- sources."jsbn-0.1.1"
- sources."jsesc-2.5.2"
- sources."json-parse-better-errors-1.0.2"
- sources."json-parse-even-better-errors-2.3.1"
- sources."json-schema-0.4.0"
- sources."json-schema-traverse-0.4.1"
- sources."json-stable-stringify-0.0.1"
- sources."json-stringify-safe-5.0.1"
- sources."json5-2.2.1"
- sources."jsonify-0.0.0"
- sources."jsonparse-1.3.1"
- sources."jsprim-1.4.2"
- sources."jszip-2.6.1"
- sources."kind-of-6.0.3"
- sources."labeled-stream-splicer-2.0.2"
- sources."lines-and-columns-1.2.4"
- sources."loader-runner-2.4.0"
- sources."loader-utils-2.0.2"
- sources."locate-path-5.0.0"
- sources."lodash-4.17.21"
- sources."lodash.debounce-4.0.8"
- sources."lodash.memoize-3.0.4"
- sources."lru-cache-5.1.1"
- sources."magic-string-0.25.9"
- sources."make-dir-3.1.0"
- sources."makeerror-1.0.12"
- sources."map-cache-0.2.2"
- sources."map-visit-1.0.0"
- sources."md5.js-1.3.5"
- sources."memory-fs-0.4.1"
- sources."merge-stream-2.0.0"
- (sources."micromatch-4.0.5" // {
- dependencies = [
- sources."braces-3.0.2"
- sources."fill-range-7.0.1"
- sources."is-number-7.0.0"
- sources."to-regex-range-5.0.1"
- ];
- })
- (sources."miller-rabin-4.0.1" // {
- dependencies = [
- sources."bn.js-4.12.0"
- ];
- })
- sources."mime-db-1.52.0"
- sources."mime-types-2.1.35"
- sources."minimalistic-assert-1.0.1"
- sources."minimalistic-crypto-utils-1.0.1"
- sources."minimatch-3.1.2"
- sources."minimist-1.2.6"
- sources."mississippi-3.0.0"
- (sources."mixin-deep-1.3.2" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- sources."mkdirp-1.0.4"
- sources."mkdirp-classic-0.5.3"
- sources."module-deps-6.2.3"
- (sources."move-concurrently-1.0.1" // {
- dependencies = [
- sources."mkdirp-0.5.6"
- ];
- })
- sources."ms-2.1.2"
- sources."nan-2.15.0"
- sources."nanomatch-1.2.13"
- sources."ncp-2.0.0"
- sources."neo-async-2.6.2"
- sources."nice-try-1.0.5"
- sources."node-fetch-2.6.7"
- sources."node-int64-0.4.0"
- (sources."node-libs-browser-2.2.1" // {
- dependencies = [
- sources."buffer-4.9.2"
- sources."events-3.3.0"
- sources."inherits-2.0.3"
- sources."punycode-1.4.1"
- sources."stream-http-2.8.3"
- sources."timers-browserify-2.0.12"
- sources."tty-browserify-0.0.0"
- sources."util-0.11.1"
- ];
- })
- sources."node-releases-2.0.4"
- (sources."normalize-package-data-2.5.0" // {
- dependencies = [
- sources."semver-5.7.1"
- ];
- })
- sources."normalize-path-3.0.0"
- sources."npm-run-path-2.0.2"
- sources."oauth-sign-0.9.0"
- sources."object-assign-4.1.1"
- (sources."object-copy-0.1.0" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-accessor-descriptor-0.1.6"
- sources."is-data-descriptor-0.1.4"
- (sources."is-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-5.1.0"
- ];
- })
- sources."kind-of-3.2.2"
- ];
- })
- sources."object-keys-1.1.1"
- sources."object-visit-1.0.1"
- sources."object.assign-4.1.2"
- sources."object.pick-1.3.0"
- sources."once-1.4.0"
- sources."os-browserify-0.3.0"
- sources."p-finally-1.0.0"
- sources."p-limit-2.3.0"
- sources."p-locate-4.1.0"
- sources."p-try-2.2.0"
- sources."pako-1.0.11"
- sources."parallel-transform-1.2.0"
- sources."paredit.js-0.3.6"
- sources."parents-1.0.1"
- sources."parse-asn1-5.1.6"
- sources."parse-json-5.2.0"
- sources."parse-passwd-1.0.0"
- sources."pascalcase-0.1.1"
- sources."path-browserify-0.0.1"
- sources."path-dirname-1.0.2"
- sources."path-exists-4.0.0"
- sources."path-is-absolute-1.0.1"
- sources."path-key-2.0.1"
- sources."path-parse-1.0.7"
- sources."path-platform-0.11.15"
- sources."pbkdf2-3.1.2"
- sources."peek-stream-1.1.3"
- sources."performance-now-2.1.0"
- sources."picocolors-1.0.0"
- sources."picomatch-2.3.1"
- sources."pify-4.0.1"
- sources."pinkie-1.0.0"
- sources."pinkie-promise-1.0.0"
- sources."pirates-4.0.5"
- sources."pkg-dir-4.2.0"
- sources."posix-character-classes-0.1.1"
- sources."posix-getopt-git+https://github.com/anmonteiro/node-getopt#master"
- sources."prettier-1.19.1"
- sources."process-0.11.10"
- sources."process-nextick-args-2.0.1"
- sources."progress-2.0.3"
- sources."promise-inflight-1.0.1"
- sources."prr-1.0.1"
- sources."psl-1.8.0"
- (sources."public-encrypt-4.0.3" // {
- dependencies = [
- sources."bn.js-4.12.0"
- ];
- })
- sources."pump-3.0.0"
- (sources."pumpify-1.5.1" // {
- dependencies = [
- sources."pump-2.0.1"
- ];
- })
- sources."punycode-2.1.1"
- sources."qs-6.5.3"
- sources."querystring-0.2.0"
- sources."querystring-es3-0.2.1"
- sources."randombytes-2.1.0"
- sources."randomfill-1.0.4"
- sources."read-only-stream-2.0.0"
- sources."read-pkg-5.2.0"
- (sources."readable-stream-2.3.7" // {
- dependencies = [
- sources."string_decoder-1.1.1"
- ];
- })
- sources."readdirp-3.6.0"
- sources."realpath-native-2.0.0"
- sources."regenerate-1.4.2"
- sources."regenerate-unicode-properties-10.0.1"
- sources."regenerator-runtime-0.13.9"
- sources."regenerator-transform-0.15.0"
- sources."regex-not-1.0.2"
- sources."regexpu-core-5.0.1"
- sources."regjsgen-0.6.0"
- (sources."regjsparser-0.8.4" // {
- dependencies = [
- sources."jsesc-0.5.0"
- ];
- })
- sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.4"
- sources."repeat-string-1.6.1"
- sources."replace-ext-1.0.1"
- sources."request-2.88.2"
- sources."require-directory-2.1.1"
- sources."require-main-filename-2.0.0"
- sources."resolve-1.22.0"
- (sources."resolve-cwd-2.0.0" // {
- dependencies = [
- sources."resolve-from-3.0.0"
- ];
- })
- (sources."resolve-dir-1.0.1" // {
- dependencies = [
- sources."global-modules-1.0.0"
- ];
- })
- sources."resolve-from-5.0.0"
- sources."resolve-url-0.2.1"
- sources."ret-0.1.15"
- sources."retry-0.13.1"
- sources."rimraf-2.7.1"
- sources."ripemd160-2.0.2"
- sources."rollup-1.32.1"
- sources."rollup-plugin-babel-4.4.0"
- sources."rollup-plugin-babel-minify-9.1.1"
- sources."rollup-plugin-commonjs-10.1.0"
- sources."rollup-plugin-node-resolve-5.2.0"
- sources."rollup-plugin-replace-2.2.0"
- sources."rollup-pluginutils-2.8.2"
- sources."rsvp-4.8.5"
- sources."run-queue-1.0.3"
- sources."safe-buffer-5.1.2"
- sources."safe-regex-1.1.0"
- sources."safer-buffer-2.1.2"
- (sources."sane-4.1.0" // {
- dependencies = [
- sources."anymatch-2.0.0"
- sources."micromatch-3.1.10"
- sources."normalize-path-2.1.1"
- ];
- })
- sources."schema-utils-2.7.1"
- sources."semver-6.3.0"
- sources."serialize-javascript-4.0.0"
- sources."set-blocking-2.0.0"
- (sources."set-value-2.0.1" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."setimmediate-1.0.5"
- sources."sha.js-2.4.11"
- sources."shasum-1.0.2"
- sources."shasum-object-1.0.0"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."shell-quote-1.7.3"
- sources."signal-exit-3.0.7"
- sources."simple-concat-1.0.1"
- sources."slash-3.0.0"
- (sources."snapdragon-0.8.2" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- sources."ms-2.0.0"
- sources."source-map-0.5.7"
- ];
- })
- (sources."snapdragon-node-2.1.1" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- (sources."snapdragon-util-3.0.1" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."source-list-map-0.1.8"
- sources."source-map-0.6.1"
- sources."source-map-resolve-0.5.3"
- sources."source-map-support-0.5.21"
- sources."source-map-url-0.4.1"
- sources."sourcemap-codec-1.4.8"
- sources."spdx-correct-3.1.1"
- sources."spdx-exceptions-2.3.0"
- sources."spdx-expression-parse-3.0.1"
- sources."spdx-license-ids-3.0.11"
- sources."split-string-3.1.0"
- sources."sprintf-js-1.0.3"
- sources."sshpk-1.17.0"
- sources."ssri-6.0.2"
- (sources."static-extend-0.1.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."stream-browserify-2.0.2"
- sources."stream-combiner2-1.1.1"
- sources."stream-each-1.2.3"
- (sources."stream-http-3.2.0" // {
- dependencies = [
- sources."readable-stream-3.6.0"
- ];
- })
- sources."stream-shift-1.0.1"
- sources."stream-splicer-2.0.1"
- sources."string-width-3.1.0"
- (sources."string_decoder-1.3.0" // {
- dependencies = [
- sources."safe-buffer-5.2.1"
- ];
- })
- sources."strip-ansi-5.2.0"
- sources."strip-eof-1.0.0"
- sources."subarg-1.0.0"
- sources."supports-color-5.5.0"
- sources."supports-preserve-symlinks-flag-1.0.0"
- sources."syntax-error-1.4.0"
- sources."tapable-1.1.3"
- (sources."tar-stream-2.2.0" // {
- dependencies = [
- sources."readable-stream-3.6.0"
- ];
- })
- sources."terser-4.8.0"
- (sources."terser-webpack-plugin-1.4.5" // {
- dependencies = [
- sources."find-cache-dir-2.1.0"
- sources."find-up-3.0.0"
- sources."locate-path-3.0.0"
- sources."make-dir-2.1.0"
- sources."p-locate-3.0.0"
- sources."path-exists-3.0.0"
- sources."pkg-dir-3.0.0"
- sources."schema-utils-1.0.0"
- sources."semver-5.7.1"
- ];
- })
- sources."test-exclude-6.0.0"
- sources."through-2.3.8"
- sources."through2-2.0.5"
- sources."timers-browserify-1.4.2"
- sources."tmpl-1.0.5"
- sources."to-arraybuffer-1.0.1"
- sources."to-fast-properties-2.0.0"
- (sources."to-object-path-0.3.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."to-regex-3.0.2"
- sources."to-regex-range-2.1.1"
- sources."tough-cookie-2.5.0"
- sources."tr46-0.0.3"
- sources."tty-browserify-0.0.1"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."type-fest-0.6.0"
- sources."typedarray-0.0.6"
- sources."typedarray-to-buffer-3.1.5"
- sources."umd-3.0.3"
- sources."undeclared-identifiers-1.1.3"
- sources."unicode-canonical-property-names-ecmascript-2.0.0"
- sources."unicode-match-property-ecmascript-2.0.0"
- sources."unicode-match-property-value-ecmascript-2.0.0"
- sources."unicode-property-aliases-ecmascript-2.0.0"
- sources."union-value-1.0.1"
- sources."unique-filename-1.1.1"
- sources."unique-slug-2.0.2"
- (sources."unset-value-1.0.0" // {
- dependencies = [
- (sources."has-value-0.3.1" // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- })
- sources."has-values-0.1.4"
- ];
- })
- sources."upath-1.2.0"
- sources."uri-js-4.4.1"
- sources."urix-0.1.0"
- (sources."url-0.11.0" // {
- dependencies = [
- sources."punycode-1.3.2"
- ];
- })
- sources."use-3.1.1"
- (sources."util-0.10.4" // {
- dependencies = [
- sources."inherits-2.0.3"
- ];
- })
- sources."util-deprecate-1.0.2"
- sources."uuid-3.4.0"
- sources."v8-compile-cache-2.3.0"
- sources."validate-npm-package-license-3.0.4"
- (sources."verror-1.10.0" // {
- dependencies = [
- sources."core-util-is-1.0.2"
- ];
- })
- sources."vinyl-2.2.1"
- sources."vm-browserify-1.1.2"
- sources."walker-1.0.8"
- sources."watchpack-1.7.5"
- (sources."watchpack-chokidar2-2.0.1" // {
- dependencies = [
- sources."anymatch-2.0.0"
- sources."binary-extensions-1.13.1"
- sources."chokidar-2.1.8"
- sources."fsevents-1.2.13"
- sources."glob-parent-3.1.0"
- sources."is-binary-path-1.0.1"
- sources."is-glob-3.1.0"
- sources."micromatch-3.1.10"
- sources."normalize-path-2.1.1"
- sources."readdirp-2.2.1"
- ];
- })
- sources."webidl-conversions-3.0.1"
- (sources."webpack-4.46.0" // {
- dependencies = [
- sources."acorn-6.4.2"
- sources."json5-1.0.1"
- sources."loader-utils-1.4.0"
- sources."micromatch-3.1.10"
- sources."mkdirp-0.5.6"
- sources."schema-utils-1.0.0"
- ];
- })
- (sources."webpack-cli-3.3.12" // {
- dependencies = [
- (sources."chalk-2.4.2" // {
- dependencies = [
- sources."supports-color-5.5.0"
- ];
- })
- sources."json5-1.0.1"
- sources."loader-utils-1.4.0"
- sources."supports-color-6.1.0"
- ];
- })
- (sources."webpack-core-0.6.9" // {
- dependencies = [
- sources."source-map-0.4.4"
- ];
- })
- (sources."webpack-sources-1.4.3" // {
- dependencies = [
- sources."source-list-map-2.0.1"
- ];
- })
- sources."whatwg-url-5.0.0"
- sources."which-2.0.2"
- sources."which-module-2.0.0"
- (sources."which-promise-1.0.0" // {
- dependencies = [
- sources."pify-2.3.0"
- sources."which-1.3.1"
- ];
- })
- sources."worker-farm-1.7.0"
- sources."wrap-ansi-5.1.0"
- sources."wrappy-1.0.2"
- sources."write-file-atomic-3.0.3"
- sources."xtend-4.0.2"
- sources."y18n-4.0.3"
- sources."yallist-3.1.1"
- (sources."yargs-13.3.2" // {
- dependencies = [
- sources."find-up-3.0.0"
- sources."locate-path-3.0.0"
- sources."p-locate-3.0.0"
- sources."path-exists-3.0.0"
- ];
- })
- sources."yargs-parser-13.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- };
- production = true;
- bypassCache = true;
- reconstructLock = true;
- };
lua-fmt = nodeEnv.buildNodePackage {
name = "lua-fmt";
packageName = "lua-fmt";
@@ -111578,7 +109577,7 @@ in
sources."@types/commander-2.12.2"
sources."@types/diff-3.5.5"
sources."@types/get-stdin-5.0.1"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."commander-2.20.3"
sources."diff-3.5.0"
sources."get-stdin-5.0.1"
@@ -111924,35 +109923,51 @@ in
markdown-link-check = nodeEnv.buildNodePackage {
name = "markdown-link-check";
packageName = "markdown-link-check";
- version = "3.10.0";
+ version = "3.10.2";
src = fetchurl {
- url = "https://registry.npmjs.org/markdown-link-check/-/markdown-link-check-3.10.0.tgz";
- sha512 = "P2WeISLd669q4yxmX3rU6zoGcmAXdvvRK8paXxLvOlTjtxY6cObpMv0blVtampmJGMeE7QcF4Q/9YT/wfXUNaw==";
+ url = "https://registry.npmjs.org/markdown-link-check/-/markdown-link-check-3.10.2.tgz";
+ sha512 = "5yQEVtjLxAjxWy82+iTgxrekr1tuD4sKGgwXiyLrCep8RERFH3yCdpZdeA12em2S2SEwXGxp6qHI73jVhuScKA==";
};
dependencies = [
sources."ansi-styles-4.3.0"
sources."async-3.2.3"
+ sources."boolbase-1.0.0"
sources."chalk-4.1.2"
+ sources."cheerio-1.0.0-rc.10"
+ sources."cheerio-select-1.6.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."commander-6.2.1"
+ sources."css-select-4.3.0"
+ sources."css-what-6.1.0"
sources."debug-3.2.7"
+ sources."dom-serializer-1.4.1"
+ sources."domelementtype-2.3.0"
+ sources."domhandler-4.3.1"
+ sources."domutils-2.8.0"
+ sources."entities-2.2.0"
sources."has-flag-4.0.0"
+ sources."html-link-extractor-1.0.5"
+ sources."htmlparser2-6.1.0"
sources."iconv-lite-0.6.3"
sources."is-absolute-url-3.0.3"
sources."is-relative-url-3.0.0"
sources."isemail-3.2.0"
sources."link-check-5.1.0"
sources."lodash-4.17.21"
- sources."markdown-link-extractor-2.0.1"
- sources."marked-4.0.14"
+ sources."markdown-link-extractor-3.0.2"
+ sources."marked-4.0.15"
sources."ms-2.1.3"
sources."needle-3.1.0"
+ sources."nth-check-2.0.1"
+ sources."parse5-6.0.1"
+ sources."parse5-htmlparser2-tree-adapter-6.0.1"
sources."progress-2.0.3"
sources."punycode-2.1.1"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
sources."supports-color-7.2.0"
+ sources."tslib-2.4.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -112445,13 +110460,10 @@ in
};
dependencies = [
sources."@braintree/sanitize-url-6.0.0"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/yauzl-2.10.0"
sources."agent-base-6.0.2"
- sources."ansi-escapes-4.3.2"
- sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
- sources."app-path-3.3.0"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
sources."bl-4.1.0"
@@ -112465,17 +110477,6 @@ in
sources."commander-9.2.0"
sources."concat-map-0.0.1"
sources."cross-fetch-3.1.5"
- sources."cross-spawn-6.0.5"
- (sources."cypress-image-snapshot-4.0.1" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."has-flag-3.0.0"
- sources."supports-color-5.5.0"
- ];
- })
sources."d3-7.4.4"
sources."d3-array-3.1.6"
sources."d3-axis-3.0.0"
@@ -112555,25 +110556,14 @@ in
sources."devtools-protocol-0.0.981744"
sources."dompurify-2.3.6"
sources."end-of-stream-1.4.4"
- sources."escape-string-regexp-1.0.5"
- sources."execa-1.0.0"
- (sources."extract-zip-2.0.1" // {
- dependencies = [
- sources."get-stream-5.2.0"
- ];
- })
+ sources."extract-zip-2.0.1"
sources."fd-slicer-1.1.0"
- sources."find-up-3.0.0"
+ sources."find-up-4.1.0"
sources."fs-constants-1.0.0"
- sources."fs-extra-7.0.1"
sources."fs.realpath-1.0.0"
- sources."get-stdin-5.0.1"
- sources."get-stream-4.1.0"
+ sources."get-stream-5.2.0"
sources."glob-7.2.0"
- sources."glur-1.1.2"
- sources."graceful-fs-4.2.10"
sources."graphlib-2.1.8"
- sources."has-ansi-2.0.0"
sources."has-flag-4.0.0"
sources."https-proxy-agent-5.0.1"
sources."iconv-lite-0.6.3"
@@ -112581,91 +110571,46 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."internmap-2.0.3"
- sources."is-stream-1.1.0"
- sources."isexe-2.0.0"
- sources."iterm2-version-4.2.0"
- (sources."jest-image-snapshot-4.2.0" // {
- dependencies = [
- sources."ansi-styles-2.2.1"
- sources."chalk-1.1.3"
- sources."supports-color-2.0.0"
- ];
- })
- sources."jsonfile-4.0.0"
- sources."khroma-1.4.1"
- sources."locate-path-3.0.0"
+ sources."khroma-2.0.0"
+ sources."locate-path-5.0.0"
sources."lodash-4.17.21"
- sources."mermaid-9.0.1"
+ sources."mermaid-9.1.1"
sources."minimatch-3.1.2"
- sources."minimist-1.2.6"
- sources."mkdirp-0.5.6"
sources."mkdirp-classic-0.5.3"
sources."moment-mini-2.24.0"
sources."ms-2.1.2"
- sources."nice-try-1.0.5"
sources."node-fetch-2.6.7"
- sources."npm-run-path-2.0.2"
sources."once-1.4.0"
- sources."p-finally-1.0.0"
sources."p-limit-2.3.0"
- sources."p-locate-3.0.0"
+ sources."p-locate-4.1.0"
sources."p-try-2.2.0"
- sources."path-exists-3.0.0"
+ sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
- sources."path-key-2.0.1"
sources."pend-1.2.0"
- (sources."pixelmatch-5.3.0" // {
- dependencies = [
- sources."pngjs-6.0.0"
- ];
- })
- sources."pkg-dir-3.0.0"
- sources."plist-3.0.5"
- sources."pngjs-3.4.0"
+ sources."pkg-dir-4.2.0"
sources."progress-2.0.3"
sources."proxy-from-env-1.1.0"
sources."pump-3.0.0"
- (sources."puppeteer-13.7.0" // {
- dependencies = [
- sources."find-up-4.1.0"
- sources."locate-path-5.0.0"
- sources."p-locate-4.1.0"
- sources."path-exists-4.0.0"
- sources."pkg-dir-4.2.0"
- sources."rimraf-3.0.2"
- ];
- })
+ sources."puppeteer-13.7.0"
sources."readable-stream-3.6.0"
- sources."rimraf-2.7.1"
+ sources."rimraf-3.0.2"
sources."robust-predicates-3.0.1"
sources."rw-1.3.3"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- sources."semver-5.7.1"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."signal-exit-3.0.7"
- sources."ssim.js-3.5.0"
sources."string_decoder-1.3.0"
- sources."strip-ansi-3.0.1"
- sources."strip-eof-1.0.0"
sources."stylis-4.1.1"
sources."supports-color-7.2.0"
sources."tar-fs-2.1.1"
sources."tar-stream-2.2.0"
- sources."term-img-4.1.0"
sources."through-2.3.8"
sources."tr46-0.0.3"
- sources."type-fest-0.21.3"
sources."unbzip2-stream-1.4.3"
- sources."universalify-0.1.2"
sources."util-deprecate-1.0.2"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
- sources."which-1.3.1"
sources."wrappy-1.0.2"
sources."ws-8.5.0"
- sources."xmlbuilder-9.0.7"
sources."yauzl-2.10.0"
];
buildInputs = globalBuildInputs;
@@ -112995,7 +110940,7 @@ in
sources."@types/istanbul-lib-coverage-2.0.4"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-3.0.1"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/stack-utils-2.0.1"
sources."@types/yargs-16.0.4"
sources."@types/yargs-parser-21.0.0"
@@ -113132,7 +111077,7 @@ in
sources."jest-mock-27.5.1"
(sources."jest-util-27.5.1" // {
dependencies = [
- sources."ci-info-3.3.0"
+ sources."ci-info-3.3.1"
];
})
sources."js-sha256-0.9.0"
@@ -113400,7 +111345,7 @@ in
(sources."cacache-16.0.7" // {
dependencies = [
sources."brace-expansion-2.0.1"
- sources."glob-8.0.1"
+ sources."glob-8.0.2"
sources."minimatch-5.0.1"
];
})
@@ -113432,12 +111377,12 @@ in
sources."infer-owner-1.0.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."is-fullwidth-code-point-3.0.0"
sources."is-lambda-1.0.1"
sources."isexe-2.0.0"
- sources."lru-cache-7.9.0"
- sources."make-fetch-happen-10.1.2"
+ sources."lru-cache-7.10.1"
+ sources."make-fetch-happen-10.1.3"
sources."minimatch-3.1.2"
sources."minipass-3.1.6"
sources."minipass-collect-1.0.2"
@@ -113949,7 +111894,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
@@ -114012,7 +111957,7 @@ in
sources."colors-1.0.3"
sources."combined-stream-1.0.8"
sources."commist-1.1.0"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
sources."concat-map-0.0.1"
(sources."concat-stream-1.6.2" // {
dependencies = [
@@ -114074,7 +112019,7 @@ in
})
sources."fast-deep-equal-3.1.3"
sources."finalhandler-1.1.2"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."form-data-4.0.0"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
@@ -114130,7 +112075,7 @@ in
sources."universalify-2.0.0"
];
})
- sources."keyv-4.2.2"
+ sources."keyv-4.2.8"
sources."leven-2.1.0"
sources."lodash.clonedeep-4.5.0"
sources."lowercase-keys-2.0.0"
@@ -114704,7 +112649,7 @@ in
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-1.0.0"
@@ -114760,7 +112705,7 @@ in
sources."code-point-at-1.1.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
sources."concat-map-0.0.1"
(sources."configstore-5.0.1" // {
dependencies = [
@@ -114908,7 +112853,7 @@ in
sources."js-tokens-4.0.0"
sources."json-buffer-3.0.1"
sources."json-parse-even-better-errors-2.3.1"
- sources."keyv-4.2.2"
+ sources."keyv-4.2.8"
sources."kind-of-6.0.3"
sources."latest-version-5.1.0"
sources."lines-and-columns-1.2.4"
@@ -115199,10 +113144,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "8.8.0";
+ version = "8.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-8.8.0.tgz";
- sha512 = "MDHVaj0zrinLkshylII8pT46VCkAUqQfYRS+pyuuZZtBZRRphH/IG5HC1YbIc77AX5FmLUWGvu23Kah5fscIbw==";
+ url = "https://registry.npmjs.org/npm/-/npm-8.10.0.tgz";
+ sha512 = "6oo65q9Quv9mRPGZJufmSH+C/UFdgelwzRXiglT/2mDB50zdy/lZK5dFY0TJ9fJ/8gHqnxcX1NM206KLjTBMlQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -115256,7 +113201,7 @@ in
sources."builtins-5.0.1"
(sources."cacache-16.0.7" // {
dependencies = [
- sources."glob-8.0.1"
+ sources."glob-8.0.2"
];
})
(sources."cacheable-request-6.1.0" // {
@@ -115345,7 +113290,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."is-ci-2.0.0"
sources."is-core-module-2.9.0"
sources."is-extglob-2.1.1"
@@ -115383,13 +113328,13 @@ in
sources."locate-path-6.0.0"
sources."lodash-4.17.21"
sources."lowercase-keys-1.0.1"
- sources."lru-cache-7.9.0"
+ sources."lru-cache-7.10.1"
(sources."make-dir-3.1.0" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."make-fetch-happen-10.1.2"
+ sources."make-fetch-happen-10.1.3"
sources."merge2-1.4.1"
sources."micromatch-4.0.5"
sources."mimic-response-1.0.1"
@@ -115414,9 +113359,9 @@ in
sources."npm-install-checks-5.0.0"
sources."npm-normalize-package-bin-1.0.1"
sources."npm-package-arg-9.0.2"
- (sources."npm-packlist-5.0.2" // {
+ (sources."npm-packlist-5.0.3" // {
dependencies = [
- sources."glob-8.0.1"
+ sources."glob-8.0.2"
];
})
sources."npm-pick-manifest-7.0.1"
@@ -115433,7 +113378,7 @@ in
sources."semver-6.3.0"
];
})
- sources."pacote-13.1.1"
+ sources."pacote-13.3.0"
sources."parse-github-url-1.0.2"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
@@ -115452,7 +113397,7 @@ in
sources."rc-config-loader-4.1.0"
(sources."read-package-json-5.0.1" // {
dependencies = [
- sources."glob-8.0.1"
+ sources."glob-8.0.2"
];
})
sources."read-package-json-fast-2.0.3"
@@ -115656,7 +113601,7 @@ in
sources."vscode-languageclient-4.0.1"
sources."vscode-languageserver-4.0.0"
sources."vscode-languageserver-protocol-3.6.0"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-uri-1.0.3"
sources."wrappy-1.0.2"
];
@@ -115802,10 +113747,10 @@ in
sources."@babel/types-7.17.10"
sources."@iarna/toml-2.2.5"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/resolve-uri-3.0.6"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- sources."@jridgewell/trace-mapping-0.3.9"
+ sources."@jridgewell/resolve-uri-3.0.7"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
+ sources."@jridgewell/trace-mapping-0.3.13"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
sources."@parcel/fs-1.11.0"
@@ -115926,7 +113871,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -115952,7 +113897,7 @@ in
sources."convert-source-map-1.8.0"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.22.3" // {
+ (sources."core-js-compat-3.22.5" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -116063,7 +114008,7 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -116073,7 +114018,7 @@ in
sources."entities-2.2.0"
sources."envinfo-7.8.1"
sources."error-ex-1.3.2"
- (sources."es-abstract-1.19.5" // {
+ (sources."es-abstract-1.20.0" // {
dependencies = [
sources."object-inspect-1.12.0"
];
@@ -116103,7 +114048,7 @@ in
];
})
sources."extsprintf-1.3.0"
- sources."falafel-2.2.4"
+ sources."falafel-2.2.5"
sources."fast-deep-equal-3.1.3"
sources."fast-glob-2.2.7"
sources."fast-json-stable-stringify-2.1.0"
@@ -116113,7 +114058,6 @@ in
sources."filesize-3.6.1"
sources."fill-range-4.0.0"
sources."for-in-1.0.2"
- sources."foreach-2.0.5"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."fragment-cache-0.2.1"
@@ -116121,6 +114065,8 @@ in
sources."fs.realpath-1.0.0"
sources."fsevents-1.2.13"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
+ sources."functions-have-names-1.2.3"
sources."gensync-1.0.0-beta.2"
sources."get-intrinsic-1.1.1"
sources."get-port-3.2.0"
@@ -116488,6 +114434,7 @@ in
sources."is-extendable-1.0.1"
];
})
+ sources."regexp.prototype.flags-1.4.3"
sources."regexpu-core-5.0.1"
sources."regjsgen-0.6.0"
(sources."regjsparser-0.8.4" // {
@@ -116586,8 +114533,8 @@ in
sources."stealthy-require-1.1.1"
sources."stream-browserify-2.0.2"
sources."stream-http-2.8.3"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.1.1"
sources."strip-ansi-4.0.0"
(sources."stylehacks-4.0.3" // {
@@ -116727,15 +114674,15 @@ in
sources."@parcel/compressor-raw-2.5.0"
sources."@parcel/config-default-2.5.0"
sources."@parcel/core-2.5.0"
- sources."@parcel/css-1.8.2"
- sources."@parcel/css-darwin-arm64-1.8.2"
- sources."@parcel/css-darwin-x64-1.8.2"
- sources."@parcel/css-linux-arm-gnueabihf-1.8.2"
- sources."@parcel/css-linux-arm64-gnu-1.8.2"
- sources."@parcel/css-linux-arm64-musl-1.8.2"
- sources."@parcel/css-linux-x64-gnu-1.8.2"
- sources."@parcel/css-linux-x64-musl-1.8.2"
- sources."@parcel/css-win32-x64-msvc-1.8.2"
+ sources."@parcel/css-1.8.3"
+ sources."@parcel/css-darwin-arm64-1.8.3"
+ sources."@parcel/css-darwin-x64-1.8.3"
+ sources."@parcel/css-linux-arm-gnueabihf-1.8.3"
+ sources."@parcel/css-linux-arm64-gnu-1.8.3"
+ sources."@parcel/css-linux-arm64-musl-1.8.3"
+ sources."@parcel/css-linux-x64-gnu-1.8.3"
+ sources."@parcel/css-linux-x64-musl-1.8.3"
+ sources."@parcel/css-win32-x64-msvc-1.8.3"
sources."@parcel/diagnostic-2.5.0"
sources."@parcel/events-2.5.0"
sources."@parcel/fs-2.5.0"
@@ -116793,7 +114740,7 @@ in
sources."@parcel/utils-2.5.0"
sources."@parcel/watcher-2.0.5"
sources."@parcel/workers-2.5.0"
- sources."@swc/helpers-0.3.9"
+ sources."@swc/helpers-0.3.13"
sources."@trysound/sax-0.2.0"
sources."@types/parse-json-4.0.0"
sources."abortcontroller-polyfill-1.7.3"
@@ -116804,7 +114751,7 @@ in
sources."browserslist-4.20.3"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -116835,13 +114782,13 @@ in
sources."domutils-2.8.0"
sources."dotenv-7.0.0"
sources."dotenv-expand-5.1.0"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
sources."entities-3.0.1"
sources."error-ex-1.3.2"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
sources."get-port-4.2.0"
- sources."globals-13.13.0"
+ sources."globals-13.15.0"
sources."has-flag-3.0.0"
sources."htmlnano-2.0.2"
sources."htmlparser2-7.2.0"
@@ -116855,7 +114802,7 @@ in
sources."lmdb-2.2.4"
sources."lodash.sortby-4.7.0"
sources."mdn-data-2.0.14"
- sources."msgpackr-1.5.6"
+ sources."msgpackr-1.5.7"
sources."msgpackr-extract-1.1.4"
sources."msgpackr-extract-darwin-arm64-1.1.0"
sources."msgpackr-extract-darwin-x64-1.1.0"
@@ -116899,6 +114846,7 @@ in
})
sources."timsort-0.3.0"
sources."tr46-1.0.1"
+ sources."tslib-2.4.0"
sources."type-fest-0.20.2"
sources."utility-types-3.10.0"
sources."v8-compile-cache-2.3.0"
@@ -117171,7 +115119,7 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-is-1.6.18"
- sources."uglify-js-3.15.4"
+ sources."uglify-js-3.15.5"
sources."unix-dgram-2.0.4"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
@@ -117412,7 +115360,7 @@ in
];
})
sources."internal-ip-1.2.0"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ip-set-1.0.2"
sources."ipaddr.js-2.0.1"
sources."is-arguments-1.1.1"
@@ -117767,7 +115715,7 @@ in
sources."indexof-0.0.1"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ip-set-1.0.2"
sources."ipaddr.js-1.9.1"
sources."is-typedarray-1.0.0"
@@ -118274,7 +116222,7 @@ in
sources."fclone-1.0.11"
sources."file-uri-to-path-2.0.0"
sources."fill-range-7.0.1"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
@@ -118295,7 +116243,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."is-binary-path-2.1.0"
sources."is-core-module-2.9.0"
sources."is-extglob-2.1.1"
@@ -118378,7 +116326,7 @@ in
sources."string_decoder-0.10.31"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."systeminformation-5.11.14"
+ sources."systeminformation-5.11.15"
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.1"
sources."tslib-2.4.0"
@@ -118414,10 +116362,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "7.0.0";
+ version = "7.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-7.0.0.tgz";
- sha512 = "5njVSmE/Sz6coyikS6gjwoKWaxxsJ6BY6jL1aqwvnEpNUfFednbHqid3aZ42JszOFaSOz3Qipcfp4ei22G/JEg==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-7.1.0.tgz";
+ sha512 = "iT2Hk2jycfh8NXoEnwpg7oCNMwsMlheSR9QAgkhWtRHvjfAAtp0HsKEOA62ILoAwbvv/ea8Ph5lTQLsGQJRq+w==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -118466,7 +116414,7 @@ in
sha512 = "jtL6eTBrza5MPzy8oJLFuUscHDXTV5KcLlqAWHl5q5WYRfnNRGSmOZmOZ1T6Gy7A99mOZfqungmZMpMmCVJ8ZA==";
};
dependencies = [
- sources."nanoid-3.3.3"
+ sources."nanoid-3.3.4"
sources."picocolors-1.0.0"
sources."source-map-js-1.0.2"
];
@@ -118549,7 +116497,7 @@ in
sources."wrap-ansi-7.0.0"
sources."y18n-5.0.8"
sources."yaml-1.10.2"
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
sources."yargs-parser-21.0.1"
];
buildInputs = globalBuildInputs;
@@ -118724,13 +116672,13 @@ in
prisma = nodeEnv.buildNodePackage {
name = "prisma";
packageName = "prisma";
- version = "3.13.0";
+ version = "3.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/prisma/-/prisma-3.13.0.tgz";
- sha512 = "oO1auBnBtieGdiN+57IgsA9Vr7Sy4HkILi1KSaUG4mpKfEbnkTGnLOxAqjLed+K2nsG/GtE1tJBtB7JxN1a78Q==";
+ url = "https://registry.npmjs.org/prisma/-/prisma-3.14.0.tgz";
+ sha512 = "l9MOgNCn/paDE+i1K2fp9NZ+Du4trzPTJsGkaQHVBufTGqzoYHuNk8JfzXuIn0Gte6/ZjyKj652Jq/Lc1tp2yw==";
};
dependencies = [
- sources."@prisma/engines-3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b"
+ sources."@prisma/engines-3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d4a6a"
];
buildInputs = globalBuildInputs;
meta = {
@@ -118745,13 +116693,13 @@ in
"@prisma/language-server" = nodeEnv.buildNodePackage {
name = "_at_prisma_slash_language-server";
packageName = "@prisma/language-server";
- version = "3.13.0";
+ version = "3.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-3.13.0.tgz";
- sha512 = "0QzP+i+WgbpVsmdx6Xnq7P1b4Zjep6R6TKWjexD88/DeS5aUUdmuA2JXSEFhRyr67Q2BURPtSGfPCgeGCd9Nqg==";
+ url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-3.14.0.tgz";
+ sha512 = "KP562fcqP010ja+Srt6Hi3XOooVQ11SwMAFvY9SxJfdRaLvU/vLxGW3+SnkAjq3tbQ0ij1ZyJTmshMWh/Vwevw==";
};
dependencies = [
- sources."@prisma/prisma-fmt-wasm-3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b"
+ sources."@prisma/prisma-fmt-wasm-3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d4a6a"
sources."@types/js-levenshtein-1.1.1"
sources."js-levenshtein-1.1.6"
sources."klona-2.0.5"
@@ -118815,10 +116763,10 @@ in
pulp = nodeEnv.buildNodePackage {
name = "pulp";
packageName = "pulp";
- version = "16.0.0";
+ version = "16.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/pulp/-/pulp-16.0.0.tgz";
- sha512 = "JrAiw/j2zokiuhNTxQDtOMXaTHZ6hdlyPFD4QtBVt/+bSAwiSm5+4VokCQRmn4+Z7RngO9yEzSot81BE7gKYAQ==";
+ url = "https://registry.npmjs.org/pulp/-/pulp-16.0.1.tgz";
+ sha512 = "cz8q10m3JLqmxOwp5JBNFAdgMx89UGyGlp4hHOp4lImNPcDUmw7e+991x10tQXYxRy77tfQS1HUFsFspV85jvQ==";
};
dependencies = [
sources."JSONStream-1.3.5"
@@ -119094,11 +117042,11 @@ in
sources."isexe-2.0.0"
sources."shell-quote-1.7.3"
sources."uuid-3.4.0"
- sources."vscode-jsonrpc-8.0.0-next.8"
- sources."vscode-languageserver-8.0.0-next.14"
- sources."vscode-languageserver-protocol-3.17.0-next.20"
+ sources."vscode-jsonrpc-8.0.1"
+ sources."vscode-languageserver-8.0.1"
+ sources."vscode-languageserver-protocol-3.17.1"
sources."vscode-languageserver-textdocument-1.0.4"
- sources."vscode-languageserver-types-3.17.0-next.12"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-uri-2.1.2"
sources."which-2.0.2"
];
@@ -119181,7 +117129,7 @@ in
sources."define-lazy-prop-2.0.0"
sources."duplexer3-0.1.4"
sources."end-of-stream-1.4.4"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."fs-extra-10.1.0"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
@@ -119193,7 +117141,7 @@ in
sources."http-cache-semantics-4.1.0"
sources."https-proxy-agent-5.0.1"
sources."ini-1.3.8"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."is-docker-2.2.1"
sources."is-wsl-2.2.0"
sources."js-base64-3.7.2"
@@ -119256,10 +117204,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.243";
+ version = "1.1.246";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.243.tgz";
- sha512 = "0PUyHTSr+LyE9Ej0A7tB8tM4pzAr34o1c3rHtfaBdZ2265HPvPE/Kj92ljX2F00Q6uAeZyyLEmzPOTuKh2WC8Q==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.246.tgz";
+ sha512 = "TEbHs4HD0J4/KGpXLqLBauOVT8G+yC7W8FKjyd00AzM9eyB+sx0EpujPnLKf6qI7x6LZJBgNoxpkPVq/6Wcq3A==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -119318,7 +117266,7 @@ in
sources."estraverse-4.3.0"
sources."esutils-2.0.3"
sources."execa-1.0.0"
- sources."falafel-2.2.4"
+ sources."falafel-2.2.5"
sources."fast-levenshtein-2.0.6"
(sources."find-replace-1.0.3" // {
dependencies = [
@@ -119326,7 +117274,6 @@ in
];
})
sources."find-up-3.0.0"
- sources."foreach-2.0.5"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."get-caller-file-1.0.3"
@@ -119376,7 +117323,6 @@ in
sources."npm-run-path-2.0.2"
sources."number-is-nan-1.0.1"
sources."object-inspect-1.4.1"
- sources."object-keys-1.1.1"
sources."once-1.4.0"
sources."optionator-0.8.3"
sources."os-locale-3.1.0"
@@ -119522,14 +117468,15 @@ in
sources."cycle-1.0.3"
sources."deep-equal-2.0.5"
sources."define-properties-1.1.4"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-get-iterator-1.1.2"
sources."es-to-primitive-1.2.1"
sources."escape-string-regexp-1.0.5"
sources."eyes-0.1.8"
- sources."foreach-2.0.5"
+ sources."foreach-2.0.6"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
sources."functions-have-names-1.2.3"
sources."get-intrinsic-1.1.1"
sources."get-symbol-description-1.0.0"
@@ -119583,8 +117530,8 @@ in
sources."semver-5.7.1"
sources."side-channel-1.0.4"
sources."stack-trace-0.0.10"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."strip-ansi-3.0.1"
sources."supports-color-2.0.0"
sources."unbox-primitive-1.0.2"
@@ -119751,16 +117698,16 @@ in
sources."@babel/traverse-7.17.10"
sources."@babel/types-7.17.10"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/resolve-uri-3.0.6"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
- sources."@jridgewell/trace-mapping-0.3.9"
+ sources."@jridgewell/resolve-uri-3.0.7"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
+ sources."@jridgewell/trace-mapping-0.3.13"
sources."@reach/router-1.3.4"
sources."@sindresorhus/is-0.7.0"
sources."@types/glob-7.2.0"
sources."@types/json-schema-7.0.11"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
sources."@webassemblyjs/ast-1.9.0"
@@ -119952,7 +117899,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -120032,7 +117979,7 @@ in
sources."copy-concurrently-1.0.5"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.22.3" // {
+ (sources."core-js-compat-3.22.5" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -120173,7 +118120,7 @@ in
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -120204,7 +118151,7 @@ in
sources."entities-2.2.0"
sources."errno-0.1.8"
sources."error-ex-1.3.2"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
@@ -120221,7 +118168,7 @@ in
sources."etag-1.8.1"
sources."eventemitter3-4.0.7"
sources."events-3.3.0"
- sources."eventsource-1.1.0"
+ sources."eventsource-1.1.1"
sources."evp_bytestokey-1.0.3"
sources."execa-0.7.0"
(sources."expand-brackets-2.1.4" // {
@@ -120309,7 +118256,7 @@ in
sources."find-cache-dir-2.1.0"
sources."find-up-3.0.0"
sources."flush-write-stream-1.1.1"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."for-in-1.0.2"
sources."forwarded-0.2.0"
sources."fragment-cache-0.2.1"
@@ -120322,6 +118269,7 @@ in
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
sources."functions-have-names-1.2.3"
sources."gensync-1.0.0-beta.2"
sources."get-caller-file-2.0.5"
@@ -120460,7 +118408,7 @@ in
sources."intersection-observer-0.7.0"
sources."into-stream-3.1.0"
sources."invariant-2.2.4"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ip-regex-2.1.0"
sources."ipaddr.js-1.9.1"
sources."is-absolute-url-2.1.0"
@@ -121121,8 +119069,8 @@ in
sources."strip-ansi-4.0.0"
];
})
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.1.1"
(sources."strip-ansi-5.2.0" // {
dependencies = [
@@ -121477,7 +119425,7 @@ in
sources."deep-is-0.1.4"
sources."delayed-stream-1.0.0"
sources."domexception-4.0.0"
- sources."dompurify-2.3.6"
+ sources."dompurify-2.3.7"
sources."emoji-regex-8.0.0"
sources."escalade-3.1.1"
sources."escodegen-2.0.0"
@@ -121527,7 +119475,7 @@ in
sources."xml-name-validator-4.0.0"
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
sources."yargs-parser-21.0.1"
];
buildInputs = globalBuildInputs;
@@ -121543,10 +119491,10 @@ in
redoc-cli = nodeEnv.buildNodePackage {
name = "redoc-cli";
packageName = "redoc-cli";
- version = "0.13.11";
+ version = "0.13.13";
src = fetchurl {
- url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.13.11.tgz";
- sha512 = "6zqf2j+LdsM0SnisPYrAln6nYW7tc/E28+sJMhIiTbI3TtEPGHC7hgRrRsrnhavNChKclU7ln2+dEtRZkzpR+Q==";
+ url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.13.13.tgz";
+ sha512 = "v6Pj/KQNH3Rq/33Dvj9KJ7lZ42K5ugDIuTtbf4ZbzLF0LvuwoTO+Wq6JNxO5Ajcj/uVO9MaOeBwq0KH8FXIJoA==";
};
dependencies = [
sources."@babel/code-frame-7.16.7"
@@ -121570,13 +119518,12 @@ in
sources."@emotion/unitless-0.7.5"
sources."@exodus/schemasafe-1.0.0-rc.6"
sources."@jridgewell/gen-mapping-0.1.1"
- sources."@jridgewell/set-array-1.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.11"
+ sources."@jridgewell/set-array-1.1.1"
+ sources."@jridgewell/sourcemap-codec-1.4.13"
sources."@redocly/ajv-8.6.4"
- sources."@redocly/openapi-core-1.0.0-beta.94"
- sources."@redocly/react-dropdown-aria-2.0.12"
+ sources."@redocly/openapi-core-1.0.0-beta.97"
sources."@types/json-schema-7.0.11"
- sources."@types/node-14.18.16"
+ sources."@types/node-14.18.17"
sources."ansi-regex-5.0.1"
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.2"
@@ -121597,7 +119544,7 @@ in
sources."base64-js-1.5.1"
sources."binary-extensions-2.2.0"
sources."bn.js-5.2.0"
- sources."brace-expansion-1.1.11"
+ sources."brace-expansion-2.0.1"
sources."braces-3.0.2"
sources."brorand-1.1.0"
sources."browserify-aes-1.2.0"
@@ -121629,7 +119576,6 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."colorette-1.4.0"
- sources."concat-map-0.0.1"
sources."console-browserify-1.2.0"
sources."constants-browserify-1.0.0"
sources."core-util-is-1.0.3"
@@ -121652,7 +119598,7 @@ in
];
})
sources."domain-browser-1.2.0"
- sources."dompurify-2.3.6"
+ sources."dompurify-2.3.7"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -121669,7 +119615,7 @@ in
sources."fast-deep-equal-3.1.3"
sources."fast-safe-stringify-2.1.1"
sources."fill-range-7.0.1"
- sources."foreach-2.0.5"
+ sources."foreach-2.0.6"
sources."fsevents-2.3.2"
sources."get-caller-file-2.0.5"
sources."glob-parent-5.1.2"
@@ -121710,7 +119656,7 @@ in
sources."loose-envify-1.4.0"
sources."lunr-2.3.9"
sources."mark.js-8.11.1"
- sources."marked-4.0.14"
+ sources."marked-4.0.15"
sources."md5.js-1.3.5"
(sources."miller-rabin-4.0.1" // {
dependencies = [
@@ -121719,12 +119665,12 @@ in
})
sources."minimalistic-assert-1.0.1"
sources."minimalistic-crypto-utils-1.0.1"
- sources."minimatch-3.1.2"
+ sources."minimatch-5.0.1"
sources."minimist-1.2.6"
sources."mkdirp-1.0.4"
sources."mobx-6.5.0"
- sources."mobx-react-7.3.0"
- sources."mobx-react-lite-3.3.0"
+ sources."mobx-react-7.4.0"
+ sources."mobx-react-lite-3.4.0"
sources."ms-2.1.2"
sources."neo-async-2.6.2"
sources."node-fetch-2.6.7"
@@ -121776,7 +119722,7 @@ in
];
})
sources."readdirp-3.6.0"
- (sources."redoc-2.0.0-rc.67" // {
+ (sources."redoc-2.0.0-rc.69" // {
dependencies = [
sources."path-browserify-1.0.1"
];
@@ -121816,7 +119762,7 @@ in
sources."to-regex-range-5.0.1"
sources."tr46-0.0.3"
sources."tty-browserify-0.0.0"
- sources."uglify-js-3.15.4"
+ sources."uglify-js-3.15.5"
(sources."uri-js-4.4.1" // {
dependencies = [
sources."punycode-2.1.1"
@@ -121849,7 +119795,7 @@ in
sources."y18n-5.0.8"
sources."yaml-1.10.2"
sources."yaml-ast-parser-0.0.43"
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
sources."yargs-parser-21.0.1"
];
buildInputs = globalBuildInputs;
@@ -122347,10 +120293,10 @@ in
rollup = nodeEnv.buildNodePackage {
name = "rollup";
packageName = "rollup";
- version = "2.71.1";
+ version = "2.72.1";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.71.1.tgz";
- sha512 = "lMZk3XfUBGjrrZQpvPSoXcZSfKcJ2Bgn+Z0L1MoW2V8Wh7BVM+LOBJTPo16yul2MwL59cXedzW1ruq3rCjSRgw==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.72.1.tgz";
+ sha512 = "NTc5UGy/NWFGpSqF1lFY8z9Adri6uhyMLI6LvPAXdBKoPRFhIIiBUpt+Qg2awixqO3xvzSijjhnb4+QEZwJmxA==";
};
dependencies = [
sources."fsevents-2.3.2"
@@ -122371,7 +120317,7 @@ in
version = "0.2.975";
src = ../../applications/editors/vscode/extensions/rust-analyzer/build-deps;
dependencies = [
- sources."@eslint/eslintrc-1.2.2"
+ sources."@eslint/eslintrc-1.2.3"
sources."@hpcc-js/wasm-1.12.8"
sources."@humanwhocodes/config-array-0.9.5"
sources."@humanwhocodes/object-schema-1.2.1"
@@ -122382,14 +120328,14 @@ in
sources."@types/json-schema-7.0.11"
sources."@types/node-14.17.34"
sources."@types/vscode-1.63.2"
- sources."@typescript-eslint/eslint-plugin-5.21.0"
- sources."@typescript-eslint/parser-5.21.0"
- sources."@typescript-eslint/scope-manager-5.21.0"
- sources."@typescript-eslint/type-utils-5.21.0"
- sources."@typescript-eslint/types-5.21.0"
- sources."@typescript-eslint/typescript-estree-5.21.0"
- sources."@typescript-eslint/utils-5.21.0"
- sources."@typescript-eslint/visitor-keys-5.21.0"
+ sources."@typescript-eslint/eslint-plugin-5.23.0"
+ sources."@typescript-eslint/parser-5.23.0"
+ sources."@typescript-eslint/scope-manager-5.23.0"
+ sources."@typescript-eslint/type-utils-5.23.0"
+ sources."@typescript-eslint/types-5.23.0"
+ sources."@typescript-eslint/typescript-estree-5.23.0"
+ sources."@typescript-eslint/utils-5.23.0"
+ sources."@typescript-eslint/visitor-keys-5.23.0"
sources."@vscode/test-electron-2.1.3"
sources."acorn-8.7.1"
sources."acorn-jsx-5.3.2"
@@ -122511,7 +120457,7 @@ in
sources."entities-2.2.0"
sources."escalade-3.1.1"
sources."escape-string-regexp-4.0.0"
- (sources."eslint-8.14.0" // {
+ (sources."eslint-8.15.0" // {
dependencies = [
sources."eslint-scope-7.1.1"
sources."estraverse-5.3.0"
@@ -122525,7 +120471,7 @@ in
];
})
sources."eslint-visitor-keys-3.3.0"
- sources."espree-9.3.1"
+ sources."espree-9.3.2"
(sources."esquery-1.4.0" // {
dependencies = [
sources."estraverse-5.3.0"
@@ -122571,7 +120517,7 @@ in
sources."github-from-package-0.0.0"
sources."glob-7.2.0"
sources."glob-parent-5.1.2"
- sources."globals-13.13.0"
+ sources."globals-13.15.0"
sources."globby-11.1.0"
sources."graceful-fs-4.2.10"
sources."has-1.0.3"
@@ -122745,7 +120691,7 @@ in
sources."xmlbuilder-11.0.1"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
sources."yargs-parser-21.0.1"
sources."yauzl-2.10.0"
sources."yazl-2.5.1"
@@ -122768,7 +120714,7 @@ in
dependencies = [
sources."find-up-5.0.0"
sources."locate-path-6.0.0"
- sources."nanoid-3.3.3"
+ sources."nanoid-3.3.4"
sources."p-limit-3.1.0"
sources."p-locate-5.0.0"
sources."path-exists-4.0.0"
@@ -122833,7 +120779,7 @@ in
sources."commander-1.3.2"
];
})
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."formidable-1.0.11"
sources."fresh-0.2.0"
sources."function-bind-1.1.1"
@@ -123067,10 +121013,10 @@ in
serverless = nodeEnv.buildNodePackage {
name = "serverless";
packageName = "serverless";
- version = "3.16.0";
+ version = "3.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/serverless/-/serverless-3.16.0.tgz";
- sha512 = "z/UV32k+Pipii6CVtaCTDka5+rYExUwvF0Kx8808ghr7MstWclfL81x4CGDoXSTixRE/lus2KHLQfdljnunBnA==";
+ url = "https://registry.npmjs.org/serverless/-/serverless-3.17.0.tgz";
+ sha512 = "M3VJc8PW/elxCAU/vQeNYPdjp3m7Ms/WyE+A+s2TTJYOVBVUuQhX2s+4u6GulTkxeBF3s83EvX26eAJ4RdXCTQ==";
};
dependencies = [
sources."2-thenable-1.0.0"
@@ -123086,7 +121032,7 @@ in
sources."js-yaml-3.14.1"
];
})
- (sources."@serverless/utils-6.0.3" // {
+ (sources."@serverless/utils-6.4.0" // {
dependencies = [
sources."jwt-decode-3.1.2"
];
@@ -123099,7 +121045,7 @@ in
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
sources."@types/lodash-4.14.182"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/responselike-1.0.0"
sources."adm-zip-0.5.9"
sources."agent-base-6.0.2"
@@ -123125,7 +121071,7 @@ in
sources."async-3.2.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.1125.0" // {
+ (sources."aws-sdk-2.1134.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -123150,7 +121096,7 @@ in
sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-crc32-0.2.13"
sources."buffer-fill-1.0.0"
- sources."builtin-modules-3.2.0"
+ sources."builtin-modules-3.3.0"
sources."builtins-1.0.3"
sources."cacheable-lookup-5.0.4"
(sources."cacheable-request-7.0.2" // {
@@ -123170,7 +121116,7 @@ in
sources."child-process-ext-2.1.1"
sources."chokidar-3.5.3"
sources."chownr-2.0.0"
- sources."ci-info-3.3.0"
+ sources."ci-info-3.3.1"
sources."cli-color-2.0.2"
sources."cli-cursor-3.1.0"
sources."cli-progress-footer-2.3.1"
@@ -123188,7 +121134,7 @@ in
sources."combined-stream-1.0.8"
sources."commander-2.20.3"
sources."component-emitter-1.3.0"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
(sources."compress-commons-4.1.1" // {
dependencies = [
sources."readable-stream-3.6.0"
@@ -123218,7 +121164,7 @@ in
sources."type-1.2.0"
];
})
- sources."dayjs-1.11.1"
+ sources."dayjs-1.11.2"
sources."debug-4.3.4"
(sources."decompress-4.2.1" // {
dependencies = [
@@ -123300,7 +121246,7 @@ in
sources."fill-range-7.0.1"
sources."find-requires-1.0.0"
sources."flat-5.0.2"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."form-data-2.5.1"
sources."formidable-1.2.6"
sources."fs-constants-1.0.0"
@@ -123367,7 +121313,7 @@ in
sources."jsonfile-6.1.0"
sources."jszip-3.9.1"
sources."jwt-decode-2.2.0"
- sources."keyv-4.2.2"
+ sources."keyv-4.2.8"
sources."lazystream-1.0.1"
sources."lie-3.3.0"
sources."lodash-4.17.21"
@@ -124198,10 +122144,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.915.0";
+ version = "1.928.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.915.0.tgz";
- sha512 = "1b7HkeFdD33hA/yWbAhenPIMJeqxR0w377+HsgIUHqDbbBVMvgEkz93tlZE3WigaiQ1J09R6bA4QA1/ELMnUNA==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.928.0.tgz";
+ sha512 = "5Surqm2iWk6sAC0i0JrBw4qPKBTW2YQ8f3s4YDuuLFUinEaDbit2DNqPgFESIRWUVWp7j+g1OT+K2KA7K3RM7Q==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -124224,7 +122170,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."accepts-1.3.8"
sources."base64id-2.0.0"
sources."component-emitter-1.3.0"
@@ -124418,10 +122364,10 @@ in
sql-formatter = nodeEnv.buildNodePackage {
name = "sql-formatter";
packageName = "sql-formatter";
- version = "4.0.2";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-4.0.2.tgz";
- sha512 = "R6u9GJRiXZLr/lDo8p56L+OyyN2QFJPCDnsyEOsbdIpsnDKL8gubYFo7lNR7Zx7hfdWT80SfkoVS0CMaF/DE2w==";
+ url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-6.1.0.tgz";
+ sha512 = "orheHQZIHz/v51eCIJzTUcmTrF+hZGPcparpM3+A0rdBFj0ppGf+Z7LbcdmytyzLXQqgEQGaERdOThe/NAOD3w==";
};
dependencies = [
sources."argparse-2.0.1"
@@ -124602,7 +122548,7 @@ in
})
sources."epidemic-broadcast-trees-7.0.0"
sources."errno-0.1.8"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
(sources."es-get-iterator-1.1.2" // {
dependencies = [
sources."isarray-2.0.5"
@@ -124667,11 +122613,12 @@ in
sources."for-each-0.3.3"
sources."for-in-1.0.2"
sources."for-own-0.1.5"
- sources."foreach-2.0.5"
+ sources."foreach-2.0.6"
sources."fragment-cache-0.2.1"
sources."fs.realpath-1.0.0"
sources."fsevents-1.2.13"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
sources."functions-have-names-1.2.3"
sources."get-intrinsic-1.1.1"
sources."get-symbol-description-1.0.0"
@@ -124717,7 +122664,7 @@ in
sources."ini-1.3.8"
sources."int53-1.0.0"
sources."internal-slot-1.0.3"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."irregular-plurals-1.4.0"
(sources."is-accessor-descriptor-1.0.0" // {
dependencies = [
@@ -125286,8 +123233,8 @@ in
})
sources."string-width-1.0.2"
sources."string.prototype.trim-1.2.6"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.1.1"
sources."stringify-entities-1.3.2"
sources."strip-ansi-3.0.1"
@@ -125463,7 +123410,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.1125.0" // {
+ (sources."aws-sdk-2.1134.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -125654,7 +123601,7 @@ in
sources."fd-slicer-1.1.0"
sources."finalhandler-1.2.0"
sources."find-up-3.0.0"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.4"
sources."formidable-1.2.6"
@@ -126239,10 +124186,10 @@ in
stylelint = nodeEnv.buildNodePackage {
name = "stylelint";
packageName = "stylelint";
- version = "14.8.1";
+ version = "14.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/stylelint/-/stylelint-14.8.1.tgz";
- sha512 = "0YxTop3wTeEVmQWhS7jjLFaBkvfPmffRiJ6eFIDlK++f3OklaobTYFJu32E5u/cIrFLbcW52pLqrYpihA/y0/w==";
+ url = "https://registry.npmjs.org/stylelint/-/stylelint-14.8.2.tgz";
+ sha512 = "tjDfexCYfoPdl/xcDJ9Fv+Ko9cvzbDnmdiaqEn3ovXHXasi/hbkt5tSjsiReQ+ENqnz0eltaX/AOO+AlzVdcNA==";
};
dependencies = [
sources."@babel/code-frame-7.16.7"
@@ -126340,7 +124287,7 @@ in
sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-traverse-1.0.0"
sources."kind-of-6.0.3"
- sources."known-css-properties-0.24.0"
+ sources."known-css-properties-0.25.0"
sources."lines-and-columns-1.2.4"
sources."locate-path-5.0.0"
sources."lodash.truncate-4.4.2"
@@ -126354,7 +124301,7 @@ in
sources."minimatch-3.1.2"
sources."minimist-options-4.1.0"
sources."ms-2.1.2"
- sources."nanoid-3.3.3"
+ sources."nanoid-3.3.4"
sources."normalize-package-data-3.0.3"
sources."normalize-path-3.0.0"
sources."normalize-selector-0.2.0"
@@ -126602,7 +124549,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/pug-2.0.6"
sources."@types/sass-1.43.1"
sources."anymatch-3.1.2"
@@ -126687,7 +124634,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/pug-2.0.6"
sources."@types/sass-1.43.1"
sources."anymatch-3.1.2"
@@ -127413,7 +125360,7 @@ in
sources."truncate-utf8-bytes-1.0.2"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- sources."uglify-js-3.15.4"
+ sources."uglify-js-3.15.5"
sources."undefsafe-2.0.5"
(sources."union-value-1.0.1" // {
dependencies = [
@@ -127521,7 +125468,7 @@ in
sources."merge2-1.4.1"
sources."micromatch-4.0.5"
sources."minimist-1.2.6"
- sources."nanoid-3.3.3"
+ sources."nanoid-3.3.4"
sources."normalize-path-3.0.0"
sources."object-hash-3.0.0"
sources."path-parse-1.0.7"
@@ -128655,10 +126602,12 @@ in
sources."define-properties-1.1.4"
sources."emoji-regex-6.5.1"
sources."end-with-1.0.2"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-shim-unscopables-1.0.0"
sources."es-to-primitive-1.2.1"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
+ sources."functions-have-names-1.2.3"
sources."get-intrinsic-1.1.1"
sources."get-symbol-description-1.0.0"
sources."has-1.0.3"
@@ -128681,9 +126630,10 @@ in
sources."object-inspect-1.12.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
+ sources."regexp.prototype.flags-1.4.3"
sources."side-channel-1.0.4"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."unbox-primitive-1.0.2"
sources."which-boxed-primitive-1.0.2"
];
@@ -128700,10 +126650,10 @@ in
textlint-rule-stop-words = nodeEnv.buildNodePackage {
name = "textlint-rule-stop-words";
packageName = "textlint-rule-stop-words";
- version = "2.0.9";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/textlint-rule-stop-words/-/textlint-rule-stop-words-2.0.9.tgz";
- sha512 = "UW7nWrqBUHfz/sRLTFo40BNjwXOiXSHg00TJuYY4GVDQtsWRLyAsOnXSBqClP4i6wl7ejMBeYmB5mfllYAYMgA==";
+ url = "https://registry.npmjs.org/textlint-rule-stop-words/-/textlint-rule-stop-words-3.0.1.tgz";
+ sha512 = "gO4N3OnPLvE6+fvJ1Y5m8MzDVrqMEWzW8pTGMXjL8VAXmQkD6YQ9eDMbsVN0/DzEe8tcsBqNgA/iIrQ64oECuQ==";
};
dependencies = [
sources."@types/unist-2.0.6"
@@ -128729,10 +126679,10 @@ in
textlint-rule-terminology = nodeEnv.buildNodePackage {
name = "textlint-rule-terminology";
packageName = "textlint-rule-terminology";
- version = "2.1.5";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/textlint-rule-terminology/-/textlint-rule-terminology-2.1.5.tgz";
- sha512 = "VW+ea4ByLPddSUqoFkVVJF8zWnO8kqKwvC681wGFAjI4CYz9WhjEQH1ikhoEHXnd5AFXNArcjyoa8hoihrXy0w==";
+ url = "https://registry.npmjs.org/textlint-rule-terminology/-/textlint-rule-terminology-3.0.0.tgz";
+ sha512 = "ySHbdLcA9Mdbbbc/Wkts3f8CVvY2Nsy3r21NH4bK785jhdpZozG771WDR7d7L5nNnFBeH7MmS0IcscfMpxMyvQ==";
};
dependencies = [
sources."@types/unist-2.0.6"
@@ -128764,12 +126714,14 @@ in
sha512 = "F1kV06CdonOM2awtXjCSRYUsRJfDfZIujQQo4zEMqNqD6UwpkapxpZOiwcwbeaQz00+17ljbJEoGqIe2XeiU+w==";
};
dependencies = [
- sources."array-includes-3.1.4"
+ sources."array-includes-3.1.5"
sources."call-bind-1.0.2"
sources."define-properties-1.1.4"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-to-primitive-1.2.1"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
+ sources."functions-have-names-1.2.3"
sources."get-intrinsic-1.1.1"
sources."get-symbol-description-1.0.0"
sources."has-1.0.3"
@@ -128793,9 +126745,10 @@ in
sources."object-inspect-1.12.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
+ sources."regexp.prototype.flags-1.4.3"
sources."side-channel-1.0.4"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."unbox-primitive-1.0.2"
sources."which-boxed-primitive-1.0.2"
];
@@ -128865,7 +126818,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -128910,14 +126863,14 @@ in
sources."color-support-1.1.3"
sources."commander-9.0.0"
sources."component-emitter-1.3.0"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
sources."content-disposition-0.5.4"
sources."content-type-1.0.4"
sources."cookie-0.4.2"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.3"
+ sources."core-js-3.22.5"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."css-select-4.3.0"
@@ -128952,7 +126905,7 @@ in
})
sources."engine.io-parser-5.0.4"
sources."entities-2.2.0"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-to-primitive-1.2.1"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
@@ -128965,12 +126918,14 @@ in
sources."filename-reserved-regex-2.0.0"
sources."filenamify-4.3.0"
sources."finalhandler-1.1.2"
- sources."foreach-2.0.5"
+ sources."foreach-2.0.6"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
+ sources."functions-have-names-1.2.3"
sources."gauge-3.0.2"
sources."get-intrinsic-1.1.1"
sources."get-stream-5.2.0"
@@ -129002,7 +126957,7 @@ in
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."internal-slot-1.0.3"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ipaddr.js-1.9.1"
(sources."irc-framework-4.12.1" // {
dependencies = [
@@ -129029,7 +126984,7 @@ in
sources."json-buffer-3.0.1"
sources."jwa-2.0.0"
sources."jws-4.0.0"
- sources."keyv-4.2.2"
+ sources."keyv-4.2.8"
sources."ldap-filter-0.3.3"
sources."ldapjs-2.3.1"
sources."linkify-it-3.0.3"
@@ -129095,6 +127050,7 @@ in
sources."readable-stream-3.6.0"
sources."readable-web-to-node-stream-3.0.2"
sources."regenerator-runtime-0.13.9"
+ sources."regexp.prototype.flags-1.4.3"
sources."registry-auth-token-4.2.1"
sources."registry-url-5.1.0"
sources."resolve-alpn-1.2.1"
@@ -129132,8 +127088,8 @@ in
sources."statuses-1.5.0"
sources."stream-browserify-3.0.0"
sources."string-width-4.2.3"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."strip-json-comments-2.0.1"
@@ -129208,7 +127164,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -129253,14 +127209,14 @@ in
sources."color-support-1.1.3"
sources."commander-9.0.0"
sources."component-emitter-1.3.0"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
sources."content-disposition-0.5.4"
sources."content-type-1.0.4"
sources."cookie-0.4.2"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.3"
+ sources."core-js-3.22.5"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."css-select-4.3.0"
@@ -129295,7 +127251,7 @@ in
})
sources."engine.io-parser-5.0.4"
sources."entities-2.2.0"
- sources."es-abstract-1.19.5"
+ sources."es-abstract-1.20.0"
sources."es-to-primitive-1.2.1"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
@@ -129308,12 +127264,14 @@ in
sources."filename-reserved-regex-2.0.0"
sources."filenamify-4.3.0"
sources."finalhandler-1.1.2"
- sources."foreach-2.0.5"
+ sources."foreach-2.0.6"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
+ sources."functions-have-names-1.2.3"
sources."gauge-3.0.2"
sources."get-intrinsic-1.1.1"
sources."get-stream-5.2.0"
@@ -129345,7 +127303,7 @@ in
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."internal-slot-1.0.3"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ipaddr.js-1.9.1"
(sources."irc-framework-4.12.1" // {
dependencies = [
@@ -129372,7 +127330,7 @@ in
sources."json-buffer-3.0.1"
sources."jwa-2.0.0"
sources."jws-4.0.0"
- sources."keyv-4.2.2"
+ sources."keyv-4.2.8"
sources."ldap-filter-0.3.3"
sources."ldapjs-2.3.1"
sources."linkify-it-3.0.3"
@@ -129438,6 +127396,7 @@ in
sources."readable-stream-3.6.0"
sources."readable-web-to-node-stream-3.0.2"
sources."regenerator-runtime-0.13.9"
+ sources."regexp.prototype.flags-1.4.3"
sources."registry-auth-token-4.2.1"
sources."registry-url-5.1.0"
sources."resolve-alpn-1.2.1"
@@ -129475,8 +127434,8 @@ in
sources."statuses-1.5.0"
sources."stream-browserify-3.0.0"
sources."string-width-4.2.3"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."strip-json-comments-2.0.1"
@@ -129625,7 +127584,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.3"
+ sources."core-js-3.22.5"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -130218,7 +128177,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -130288,7 +128247,7 @@ in
sources."component-bind-1.0.0"
sources."component-emitter-1.2.1"
sources."component-inherit-0.0.3"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
(sources."content-disposition-0.5.3" // {
@@ -130299,7 +128258,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.3"
+ sources."core-js-3.22.5"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -130433,7 +128392,7 @@ in
})
sources."jwa-2.0.0"
sources."jws-4.0.0"
- sources."keyv-4.2.2"
+ sources."keyv-4.2.8"
sources."ldap-filter-0.3.3"
sources."ldapjs-2.1.1"
sources."linkify-it-3.0.2"
@@ -130685,7 +128644,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -130755,7 +128714,7 @@ in
sources."component-bind-1.0.0"
sources."component-emitter-1.2.1"
sources."component-inherit-0.0.3"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
(sources."content-disposition-0.5.3" // {
@@ -130766,7 +128725,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.3"
+ sources."core-js-3.22.5"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -130900,7 +128859,7 @@ in
})
sources."jwa-2.0.0"
sources."jws-4.0.0"
- sources."keyv-4.2.2"
+ sources."keyv-4.2.8"
sources."ldap-filter-0.3.3"
sources."ldapjs-2.1.1"
sources."linkify-it-3.0.2"
@@ -131535,10 +129494,10 @@ in
three = nodeEnv.buildNodePackage {
name = "three";
packageName = "three";
- version = "0.140.0";
+ version = "0.140.2";
src = fetchurl {
- url = "https://registry.npmjs.org/three/-/three-0.140.0.tgz";
- sha512 = "jcHjbnYspPLDdsDQChmzyAoZ5KhJbgFk6pNGlAIc9fQMvsfPGjF5H9glrngqvb2CR/qXcClMyp5PYdF996lldA==";
+ url = "https://registry.npmjs.org/three/-/three-0.140.2.tgz";
+ sha512 = "DdT/AHm/TbZXEhQKQpGt5/iSgBrmXpjU26FNtj1KhllVPTKj1eG4X/ShyD5W2fngE+I1s1wa4ttC4C3oCJt7Ag==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -132034,10 +129993,10 @@ in
typescript-language-server = nodeEnv.buildNodePackage {
name = "typescript-language-server";
packageName = "typescript-language-server";
- version = "0.9.7";
+ version = "0.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.9.7.tgz";
- sha512 = "xjw6C9PctpLSwKEqaavSKfeH1CRmx1sD/DWXjig4xA/e9Y9/Mr70ViOinq5grFzexzDcdqdb7VDdkf7Ke+eZFg==";
+ url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.10.0.tgz";
+ sha512 = "VHCrQT2Znbcb+Bbw+cE1vVN2k9mZCJzjxW/i8b3B8Vhw8PNCNHYkWE3i0SzYshWCktWQk/LepJX/imKHEXw6YA==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.5"
@@ -132105,8 +130064,17 @@ in
sources."unique-string-2.0.0"
sources."universalify-2.0.0"
sources."vscode-jsonrpc-6.0.0"
- sources."vscode-languageserver-7.0.0"
- sources."vscode-languageserver-protocol-3.16.0"
+ (sources."vscode-languageserver-7.0.0" // {
+ dependencies = [
+ sources."vscode-languageserver-protocol-3.16.0"
+ ];
+ })
+ (sources."vscode-languageserver-protocol-3.17.1" // {
+ dependencies = [
+ sources."vscode-jsonrpc-8.0.1"
+ sources."vscode-languageserver-types-3.17.1"
+ ];
+ })
sources."vscode-languageserver-textdocument-1.0.4"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-uri-3.0.3"
@@ -132126,10 +130094,10 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.15.4";
+ version = "3.15.5";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.15.4.tgz";
- sha512 = "vMOPGDuvXecPs34V74qDKk4iJ/SN4vL3Ow/23ixafENYvtrNvtbcgUeugTcUGRGsOF/5fU8/NYSL5Hyb3l1OJA==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.15.5.tgz";
+ sha512 = "hNM5q5GbBRB5xB+PMqVRcgYe4c8jbyZ1pzZhS6jbq54/4F2gFK869ZheiE5A8/t+W5jtTNpWef/5Q9zk639FNQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -132180,7 +130148,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-16.11.33"
+ sources."@types/node-16.11.34"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
@@ -132212,7 +130180,7 @@ in
sources."color-string-1.9.1"
sources."colorspace-1.1.4"
sources."component-emitter-1.3.0"
- sources."compress-brotli-1.3.6"
+ sources."compress-brotli-1.3.8"
sources."concat-map-0.0.1"
sources."content-disposition-0.5.4"
sources."content-type-1.0.4"
@@ -132263,8 +130231,9 @@ in
sources."cookie-0.4.2"
];
})
- (sources."express-session-1.17.2" // {
+ (sources."express-session-1.17.3" // {
dependencies = [
+ sources."cookie-0.4.2"
sources."depd-2.0.0"
];
})
@@ -132305,7 +130274,7 @@ in
sources."jquery-ui-1.13.1"
sources."json-buffer-3.0.1"
sources."just-detect-adblock-1.1.0"
- sources."keyv-4.2.2"
+ sources."keyv-4.2.8"
sources."knockout-3.5.1"
sources."kuler-2.0.0"
sources."latest-version-6.0.0"
@@ -132497,7 +130466,7 @@ in
sources."@types/is-empty-1.2.1"
sources."@types/js-yaml-4.0.5"
sources."@types/ms-0.7.31"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/supports-color-8.1.1"
sources."@types/unist-2.0.6"
sources."ansi-regex-6.0.1"
@@ -132739,7 +130708,7 @@ in
sources."wrappy-1.0.2"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
sources."yargs-parser-21.0.1"
];
buildInputs = globalBuildInputs;
@@ -132802,21 +130771,21 @@ in
vercel = nodeEnv.buildNodePackage {
name = "vercel";
packageName = "vercel";
- version = "24.2.0";
+ version = "24.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vercel/-/vercel-24.2.0.tgz";
- sha512 = "XC0ejLnWJ90hk6K9r3zycClhpzCz3hU4p7vStvbQe73r+kyqzLEdop1CB+vBg5jSy7ApE+6pz0fon7TWA1gNrg==";
+ url = "https://registry.npmjs.org/vercel/-/vercel-24.2.1.tgz";
+ sha512 = "sKVn/Q3WGF6a6bXjBLgfR3oyi9Pb7KQrltHOam6aM5vAWWMyC5uJi4e5mVVZ2KULlO6I6e5GKNxzNFxw1FWYiA==";
};
dependencies = [
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-17.0.31"
- sources."@vercel/build-utils-2.16.0"
- sources."@vercel/go-1.4.0"
- sources."@vercel/node-1.15.0"
+ sources."@types/node-17.0.32"
+ sources."@vercel/build-utils-2.17.0"
+ sources."@vercel/go-1.4.1"
+ sources."@vercel/node-1.15.1"
sources."@vercel/node-bridge-2.2.1"
- sources."@vercel/python-2.3.0"
- sources."@vercel/ruby-1.3.3"
+ sources."@vercel/python-2.3.1"
+ sources."@vercel/ruby-1.3.4"
sources."ansi-align-3.0.1"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -133034,7 +131003,7 @@ in
sources."get-intrinsic-1.1.1"
sources."glob-7.2.0"
sources."glob-parent-5.1.2"
- sources."globals-13.13.0"
+ sources."globals-13.15.0"
sources."has-1.0.3"
sources."has-flag-3.0.0"
sources."has-symbols-1.0.3"
@@ -133152,11 +131121,11 @@ in
};
dependencies = [
sources."vscode-css-languageservice-3.0.13"
- sources."vscode-jsonrpc-6.0.0"
+ sources."vscode-jsonrpc-8.0.1"
sources."vscode-languageserver-4.4.2"
- sources."vscode-languageserver-protocol-3.16.0"
+ sources."vscode-languageserver-protocol-3.17.1"
sources."vscode-languageserver-protocol-foldingprovider-2.0.1"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-nls-4.1.2"
sources."vscode-uri-1.0.8"
];
@@ -133190,11 +131159,11 @@ in
sources."vscode-nls-4.1.2"
];
})
- sources."vscode-jsonrpc-6.0.0"
+ sources."vscode-jsonrpc-8.0.1"
sources."vscode-languageserver-4.4.2"
- sources."vscode-languageserver-protocol-3.16.0"
+ sources."vscode-languageserver-protocol-3.17.1"
sources."vscode-languageserver-protocol-foldingprovider-2.0.1"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-nls-3.2.5"
sources."vscode-uri-1.0.8"
];
@@ -133233,9 +131202,13 @@ in
})
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
- sources."vscode-languageserver-protocol-3.16.0"
+ (sources."vscode-languageserver-protocol-3.16.0" // {
+ dependencies = [
+ sources."vscode-languageserver-types-3.16.0"
+ ];
+ })
sources."vscode-languageserver-textdocument-1.0.4"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-nls-4.1.2"
sources."vscode-uri-3.0.3"
];
@@ -133302,13 +131275,13 @@ in
vscode-langservers-extracted = nodeEnv.buildNodePackage {
name = "vscode-langservers-extracted";
packageName = "vscode-langservers-extracted";
- version = "4.1.0";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-langservers-extracted/-/vscode-langservers-extracted-4.1.0.tgz";
- sha512 = "HZfrlqpVu8N0UkSyjldPsGFpVFByYaDRDMmBvmKwKai2rAsd2vtde2CFnX9rOpmg3pN2vET8j3qtqZvZLzmkjQ==";
+ url = "https://registry.npmjs.org/vscode-langservers-extracted/-/vscode-langservers-extracted-4.2.1.tgz";
+ sha512 = "Un7gzQgvACjGtsT0Yll5QqHgL65a4mTK5ChgMnO4dgTZ3tuwJCaP84oztBqvuFZzN9QxA3C07J4QEQvf1xjcgQ==";
};
dependencies = [
- sources."core-js-3.22.3"
+ sources."core-js-3.22.5"
sources."jsonc-parser-3.0.0"
sources."regenerator-runtime-0.13.9"
sources."request-light-0.5.8"
@@ -133316,18 +131289,13 @@ in
sources."vscode-css-languageservice-5.4.2"
sources."vscode-html-languageservice-4.2.5"
sources."vscode-json-languageservice-4.2.1"
- sources."vscode-jsonrpc-8.0.0-next.8"
- sources."vscode-languageserver-8.0.0-next.14"
- (sources."vscode-languageserver-protocol-3.17.0-next.20" // {
- dependencies = [
- sources."vscode-languageserver-types-3.17.0-next.12"
- ];
- })
+ sources."vscode-jsonrpc-8.0.1"
+ sources."vscode-languageserver-8.0.1"
+ sources."vscode-languageserver-protocol-3.17.1"
sources."vscode-languageserver-textdocument-1.0.4"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-nls-5.0.1"
sources."vscode-uri-3.0.3"
- sources."yarn-1.22.18"
];
buildInputs = globalBuildInputs;
meta = {
@@ -133346,13 +131314,13 @@ in
src = ../../applications/editors/vscode/extensions/vscode-lldb/build-deps;
dependencies = [
sources."@discoveryjs/json-ext-0.5.7"
- sources."@types/eslint-8.4.1"
+ sources."@types/eslint-8.4.2"
sources."@types/eslint-scope-3.7.3"
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
sources."@types/mocha-7.0.2"
sources."@types/node-8.10.66"
- sources."@types/vscode-1.66.0"
+ sources."@types/vscode-1.67.0"
sources."@types/yauzl-2.10.0"
sources."@ungap/promise-all-settled-1.1.2"
sources."@webassemblyjs/ast-1.11.1"
@@ -133397,7 +131365,7 @@ in
sources."buffer-from-1.1.2"
sources."call-bind-1.0.2"
sources."camelcase-6.3.0"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
(sources."chalk-4.1.2" // {
dependencies = [
sources."supports-color-7.2.0"
@@ -133437,7 +131405,7 @@ in
sources."domelementtype-2.3.0"
sources."domhandler-4.3.1"
sources."domutils-2.8.0"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
sources."emoji-regex-8.0.0"
sources."emojis-list-3.0.0"
sources."enhanced-resolve-5.9.3"
@@ -133498,7 +131466,7 @@ in
sources."isobject-3.0.1"
sources."jest-worker-27.5.1"
sources."js-yaml-4.0.0"
- sources."json-parse-better-errors-1.0.2"
+ sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-traverse-0.4.1"
sources."json5-2.2.1"
sources."kind-of-6.0.3"
@@ -133649,7 +131617,7 @@ in
sources."vscode-debugprotocol-1.51.0"
sources."watchpack-2.3.1"
sources."webidl-conversions-4.0.2"
- sources."webpack-5.72.0"
+ sources."webpack-5.72.1"
(sources."webpack-cli-4.9.2" // {
dependencies = [
sources."commander-7.2.0"
@@ -133953,7 +131921,7 @@ in
sources."tslib-1.14.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."uglify-js-3.15.4"
+ sources."uglify-js-3.15.5"
sources."uid-0.0.2"
sources."unbzip2-stream-1.4.3"
sources."unyield-0.0.1"
@@ -134016,7 +131984,7 @@ in
sources."@starptech/rehype-webparser-0.10.0"
sources."@starptech/webparser-0.10.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -134878,11 +132846,11 @@ in
];
})
sources."vscode-emmet-helper-1.2.17"
- sources."vscode-jsonrpc-6.0.0"
+ sources."vscode-jsonrpc-8.0.1"
sources."vscode-languageserver-5.3.0-next.10"
- sources."vscode-languageserver-protocol-3.16.0"
+ sources."vscode-languageserver-protocol-3.17.1"
sources."vscode-languageserver-textdocument-1.0.4"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-nls-5.0.1"
sources."vscode-textbuffer-1.0.0"
sources."vscode-uri-1.0.8"
@@ -134977,7 +132945,7 @@ in
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."core-js-pure-3.22.3"
+ sources."core-js-pure-3.22.5"
sources."cssom-0.4.4"
(sources."cssstyle-2.3.0" // {
dependencies = [
@@ -135118,7 +133086,7 @@ in
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
sources."yargs-parser-21.0.1"
];
buildInputs = globalBuildInputs;
@@ -135157,9 +133125,10 @@ in
sources."@devicefarmer/adbkit-2.11.3"
sources."@devicefarmer/adbkit-logcat-1.1.0"
sources."@devicefarmer/adbkit-monkey-1.0.1"
- (sources."@eslint/eslintrc-1.2.2" // {
+ (sources."@eslint/eslintrc-1.2.3" // {
dependencies = [
sources."debug-4.3.4"
+ sources."espree-9.3.2"
sources."ms-2.1.2"
];
})
@@ -135174,7 +133143,7 @@ in
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/yauzl-2.9.2"
sources."acorn-8.7.1"
sources."acorn-jsx-5.3.2"
@@ -135357,7 +133326,7 @@ in
sources."glob-parent-6.0.2"
sources."glob-to-regexp-0.4.1"
sources."global-dirs-3.0.0"
- sources."globals-13.13.0"
+ sources."globals-13.15.0"
(sources."got-9.6.0" // {
dependencies = [
sources."get-stream-4.1.0"
@@ -135490,7 +133459,7 @@ in
})
sources."mz-2.7.0"
sources."nan-2.15.0"
- sources."nanoid-3.3.3"
+ sources."nanoid-3.3.4"
sources."natural-compare-1.4.0"
sources."ncp-2.0.0"
sources."node-forge-0.10.0"
@@ -135692,17 +133661,17 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "5.72.0";
+ version = "5.72.1";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.72.0.tgz";
- sha512 = "qmSmbspI0Qo5ld49htys8GY9XhS9CGqFoHTsOVAnjBdg0Zn79y135R+k4IR4rKK6+eKaabMhJwiVB7xw0SJu5w==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.72.1.tgz";
+ sha512 = "dXG5zXCLspQR4krZVR6QgajnZOjW2K/djHvdcRaDQvsjV9z9vaW6+ja5dZOYbqBBjF6kGXka/2ZyxNdc+8Jung==";
};
dependencies = [
- sources."@types/eslint-8.4.1"
+ sources."@types/eslint-8.4.2"
sources."@types/eslint-scope-3.7.3"
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -135726,10 +133695,10 @@ in
sources."ajv-keywords-3.5.2"
sources."browserslist-4.20.3"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001334"
+ sources."caniuse-lite-1.0.30001340"
sources."chrome-trace-event-1.0.3"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.4.129"
+ sources."electron-to-chromium-1.4.137"
sources."enhanced-resolve-5.9.3"
sources."es-module-lexer-0.9.3"
sources."escalade-3.1.1"
@@ -135747,7 +133716,7 @@ in
sources."graceful-fs-4.2.10"
sources."has-flag-4.0.0"
sources."jest-worker-27.5.1"
- sources."json-parse-better-errors-1.0.2"
+ sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-traverse-0.4.1"
sources."loader-runner-4.3.0"
sources."lodash.sortby-4.7.0"
@@ -135861,23 +133830,23 @@ in
webpack-dev-server = nodeEnv.buildNodePackage {
name = "webpack-dev-server";
packageName = "webpack-dev-server";
- version = "4.8.1";
+ version = "4.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.8.1.tgz";
- sha512 = "dwld70gkgNJa33czmcj/PlKY/nOy/BimbrgZRaR9vDATBQAYgLzggR0nxDtPLJiLrMgZwbE6RRfJ5vnBBasTyg==";
+ url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.0.tgz";
+ sha512 = "+Nlb39iQSOSsFv0lWUuUTim3jDQO8nhK3E68f//J2r5rIcp4lULHXz2oZ0UVdEeWXEh5lSzYUlzarZhDAeAVQw==";
};
dependencies = [
- sources."@leichtgewicht/ip-codec-2.0.3"
+ sources."@leichtgewicht/ip-codec-2.0.4"
sources."@types/body-parser-1.19.2"
sources."@types/bonjour-3.5.10"
sources."@types/connect-3.4.35"
sources."@types/connect-history-api-fallback-1.3.5"
sources."@types/express-4.17.13"
sources."@types/express-serve-static-core-4.17.28"
- sources."@types/http-proxy-1.17.8"
+ sources."@types/http-proxy-1.17.9"
sources."@types/json-schema-7.0.11"
sources."@types/mime-1.3.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/retry-0.12.0"
@@ -135892,7 +133861,6 @@ in
sources."ansi-html-community-0.0.8"
sources."anymatch-3.1.2"
sources."array-flatten-2.1.2"
- sources."async-2.6.4"
sources."balanced-match-1.0.2"
sources."batch-0.6.1"
sources."binary-extensions-2.2.0"
@@ -135946,7 +133914,7 @@ in
sources."faye-websocket-0.11.4"
sources."fill-range-7.0.1"
sources."finalhandler-1.2.0"
- sources."follow-redirects-1.14.9"
+ sources."follow-redirects-1.15.0"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
sources."fs-monkey-1.0.3"
@@ -135988,7 +133956,6 @@ in
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."json-schema-traverse-1.0.0"
- sources."lodash-4.17.21"
sources."media-typer-0.3.0"
sources."memfs-3.4.1"
sources."merge-descriptors-1.0.1"
@@ -136001,8 +133968,6 @@ in
sources."mimic-fn-2.1.0"
sources."minimalistic-assert-1.0.1"
sources."minimatch-3.1.2"
- sources."minimist-1.2.6"
- sources."mkdirp-0.5.6"
sources."ms-2.0.0"
sources."multicast-dns-7.2.4"
sources."negotiator-0.6.3"
@@ -136022,12 +133987,6 @@ in
sources."path-key-3.1.1"
sources."path-to-regexp-0.1.7"
sources."picomatch-2.3.1"
- (sources."portfinder-1.0.28" // {
- dependencies = [
- sources."debug-3.2.7"
- sources."ms-2.1.3"
- ];
- })
sources."process-nextick-args-2.0.1"
(sources."proxy-addr-2.0.7" // {
dependencies = [
@@ -136188,7 +134147,7 @@ in
sha512 = "uamNZvqmpk1NpK+Vk/L8hppxq/7n8qtD+pQKia9pkXIAGqOGDA65ql9hx6g8rA2tM7cKDNkJhtxxF9ibJsyveQ==";
};
dependencies = [
- sources."@leichtgewicht/ip-codec-2.0.3"
+ sources."@leichtgewicht/ip-codec-2.0.4"
sources."@protobufjs/aspromise-1.1.2"
sources."@protobufjs/base64-1.1.2"
sources."@protobufjs/codegen-2.0.4"
@@ -136200,7 +134159,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@webtorrent/http-node-1.3.0"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.3.0"
@@ -136232,7 +134191,7 @@ in
sources."ms-2.1.2"
];
})
- (sources."bittorrent-tracker-9.18.5" // {
+ (sources."bittorrent-tracker-9.18.6" // {
dependencies = [
sources."debug-4.3.4"
sources."decompress-response-6.0.0"
@@ -136306,6 +134265,7 @@ in
})
sources."ee-first-1.1.1"
sources."elementtree-0.1.7"
+ sources."emitter-component-1.1.1"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."err-code-3.0.1"
@@ -136332,7 +134292,7 @@ in
sources."immediate-chunk-store-2.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ip-set-2.1.0"
sources."ipaddr.js-2.0.1"
sources."is-ascii-1.0.0"
@@ -136459,6 +134419,7 @@ in
sources."speed-limiter-1.0.2"
sources."speedometer-1.1.0"
sources."split-1.0.1"
+ sources."stream-0.0.2"
sources."stream-to-blob-2.0.1"
sources."stream-to-blob-url-3.0.2"
sources."stream-with-known-length-to-buffer-1.0.4"
@@ -136470,10 +134431,11 @@ in
sources."supports-color-7.2.0"
sources."thirty-two-1.0.2"
sources."through-2.3.8"
+ sources."throughput-1.0.0"
sources."thunky-0.1.0"
sources."timeout-refresh-1.0.3"
sources."to-arraybuffer-1.0.1"
- (sources."torrent-discovery-9.4.10" // {
+ (sources."torrent-discovery-9.4.12" // {
dependencies = [
sources."debug-4.3.4"
sources."ms-2.1.2"
@@ -136500,7 +134462,7 @@ in
sources."utp-native-2.5.3"
sources."videostream-3.2.2"
sources."vlc-command-1.2.0"
- (sources."webtorrent-1.8.16" // {
+ (sources."webtorrent-1.8.19" // {
dependencies = [
sources."debug-4.3.4"
sources."decompress-response-6.0.0"
@@ -136517,7 +134479,7 @@ in
sources."xmlbuilder-11.0.1"
sources."xmldom-0.1.31"
sources."y18n-5.0.8"
- sources."yargs-17.4.1"
+ sources."yargs-17.5.0"
sources."yargs-parser-21.0.1"
];
buildInputs = globalBuildInputs;
@@ -136589,9 +134551,13 @@ in
sources."vscode-json-languageservice-4.1.8"
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
- sources."vscode-languageserver-protocol-3.16.0"
+ (sources."vscode-languageserver-protocol-3.16.0" // {
+ dependencies = [
+ sources."vscode-languageserver-types-3.16.0"
+ ];
+ })
sources."vscode-languageserver-textdocument-1.0.4"
- sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-languageserver-types-3.17.1"
sources."vscode-nls-5.0.1"
sources."vscode-uri-3.0.3"
sources."yaml-2.0.0-11"
@@ -136859,7 +134825,7 @@ in
sources."config-chain-1.1.13"
sources."configstore-3.1.5"
sources."console-control-strings-1.1.0"
- sources."core-js-3.22.3"
+ sources."core-js-3.22.5"
sources."core-util-is-1.0.3"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
@@ -136887,7 +134853,7 @@ in
sources."downgrade-root-1.2.2"
sources."duplexer3-0.1.4"
sources."ecc-jsbn-0.1.2"
- sources."ejs-3.1.7"
+ sources."ejs-3.1.8"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
(sources."encoding-0.1.13" // {
@@ -136915,7 +134881,7 @@ in
sources."fast-json-stable-stringify-2.1.0"
sources."fastq-1.13.0"
sources."figures-2.0.0"
- (sources."filelist-1.0.3" // {
+ (sources."filelist-1.0.4" // {
dependencies = [
sources."minimatch-5.0.1"
];
@@ -136939,7 +134905,7 @@ in
sources."get-stdin-4.0.1"
sources."get-stream-4.1.0"
sources."getpass-0.1.7"
- (sources."glob-8.0.1" // {
+ (sources."glob-8.0.2" // {
dependencies = [
sources."minimatch-5.0.1"
];
@@ -136952,7 +134918,7 @@ in
})
sources."global-dirs-0.1.1"
sources."global-tunnel-ng-2.7.1"
- sources."globalthis-1.0.2"
+ sources."globalthis-1.0.3"
sources."globby-11.1.0"
(sources."got-8.3.2" // {
dependencies = [
@@ -137012,7 +134978,7 @@ in
sources."p-is-promise-1.1.0"
];
})
- sources."ip-1.1.5"
+ sources."ip-1.1.8"
sources."ip-regex-2.1.0"
sources."is-arrayish-0.2.1"
sources."is-ci-1.2.1"
@@ -137222,8 +135188,8 @@ in
sources."debug-4.3.4"
sources."http-cache-semantics-4.1.0"
sources."http-proxy-agent-5.0.0"
- sources."lru-cache-7.9.0"
- (sources."make-fetch-happen-10.1.2" // {
+ sources."lru-cache-7.10.1"
+ (sources."make-fetch-happen-10.1.3" // {
dependencies = [
sources."minipass-fetch-2.1.0"
];
@@ -137707,7 +135673,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/fs-extra-9.0.13"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.31"
+ sources."@types/node-17.0.32"
sources."@types/which-2.0.1"
sources."braces-3.0.2"
sources."chalk-5.0.1"
diff --git a/pkgs/development/python-modules/aioimaplib/default.nix b/pkgs/development/python-modules/aioimaplib/default.nix
index a94818aee5c5..7ec2499a9f5b 100644
--- a/pkgs/development/python-modules/aioimaplib/default.nix
+++ b/pkgs/development/python-modules/aioimaplib/default.nix
@@ -1,4 +1,6 @@
{ lib
+, pythonOlder
+, pythonAtLeast
, asynctest
, buildPythonPackage
, docutils
@@ -15,6 +17,11 @@
buildPythonPackage rec {
pname = "aioimaplib";
version = "0.9.0";
+ format = "setuptools";
+
+ # Check https://github.com/bamthomas/aioimaplib/issues/75
+ # for Python 3.10 support
+ disabled = pythonOlder "3.5" || pythonAtLeast "3.10";
src = fetchFromGitHub {
owner = "bamthomas";
diff --git a/pkgs/development/python-modules/argon2_cffi/default.nix b/pkgs/development/python-modules/argon2-cffi/default.nix
similarity index 91%
rename from pkgs/development/python-modules/argon2_cffi/default.nix
rename to pkgs/development/python-modules/argon2-cffi/default.nix
index 4ecf5fbc5f0d..ed79243a6bd1 100644
--- a/pkgs/development/python-modules/argon2_cffi/default.nix
+++ b/pkgs/development/python-modules/argon2-cffi/default.nix
@@ -13,13 +13,12 @@
}:
buildPythonPackage rec {
- pname = "argon2_cffi";
+ pname = "argon2-cffi";
version = "21.3.0";
format = "flit";
src = fetchPypi {
- pname = "argon2-cffi";
- inherit version;
+ inherit pname version;
sha256 = "d384164d944190a7dd7ef22c6aa3ff197da12962bd04b17f64d4e93d934dba5b";
};
diff --git a/pkgs/development/python-modules/autobahn/default.nix b/pkgs/development/python-modules/autobahn/default.nix
index 49f18ebca498..ff866c6364ca 100644
--- a/pkgs/development/python-modules/autobahn/default.nix
+++ b/pkgs/development/python-modules/autobahn/default.nix
@@ -1,25 +1,49 @@
{ lib
-, argon2_cffi
, buildPythonPackage
-, cbor
+, fetchPypi
+, attrs
+, argon2-cffi
+, base58
, cbor2
, cffi
+, click
, cryptography
-, fetchPypi
+, ecdsa
+ # , eth-abi
, flatbuffers
+, jinja2
+, hkdf
+, hyperlink
+, mnemonic
, mock
, msgpack
, passlib
+ # , py-ecc
+ # , py-eth-sig-utils
+, py-multihash
+, py-ubjson
, pynacl
+, pygobject3
+, pyopenssl
+, pyqrcode
, pytest-asyncio
+, python-snappy
, pytestCheckHook
, pythonOlder
+ # , pytrie
+, rlp
+, service-identity
+, spake2
, twisted
-, py-ubjson
, txaio
, ujson
+ # , web3
+ # , wsaccel
+ # , xbr
+, yapf
+ # , zlmdb
, zope_interface
-}:
+}@args:
buildPythonPackage rec {
pname = "autobahn";
@@ -34,27 +58,18 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
- argon2_cffi
- cbor
- cbor2
- cffi
cryptography
- flatbuffers
- msgpack
- passlib
- py-ubjson
+ hyperlink
pynacl
- twisted
txaio
- ujson
- zope_interface
];
checkInputs = [
mock
pytest-asyncio
pytestCheckHook
- ];
+ ] ++ passthru.extras-require.scram
+ ++ passthru.extras-require.serialization;
postPatch = ''
substituteInPlace setup.py \
@@ -74,10 +89,23 @@ buildPythonPackage rec {
"autobahn"
];
+ passthru.extras-require = rec {
+ all = accelerate ++ compress ++ encryption ++ nvx ++ serialization ++ scram ++ twisted ++ ui ++ xbr;
+ accelerate = [ /* wsaccel */ ];
+ compress = [ python-snappy ];
+ encryption = [ pynacl pyopenssl pyqrcode /* pytrie */ service-identity ];
+ nvx = [ cffi ];
+ scram = [ argon2-cffi cffi passlib ];
+ serialization = [ cbor2 flatbuffers msgpack ujson py-ubjson ];
+ twisted = [ attrs args.twisted zope_interface ];
+ ui = [ pygobject3 ];
+ xbr = [ base58 cbor2 click ecdsa /* eth-abi */ jinja2 hkdf mnemonic /* py-ecc py-eth-sig-utils */ py-multihash rlp spake2 twisted /* web3 xbr */ yapf /* zlmdb */ ];
+ };
+
meta = with lib; {
description = "WebSocket and WAMP in Python for Twisted and asyncio";
homepage = "https://crossbar.io/autobahn";
license = licenses.mit;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/django/4.nix b/pkgs/development/python-modules/django/4.nix
index f36c064a6475..924ece59feab 100644
--- a/pkgs/development/python-modules/django/4.nix
+++ b/pkgs/development/python-modules/django/4.nix
@@ -17,7 +17,7 @@
# tests
, aiosmtpd
-, argon2_cffi
+, argon2-cffi
, bcrypt
, docutils
, geoip2
@@ -70,7 +70,7 @@ buildPythonPackage rec {
checkInputs = [
aiosmtpd
- argon2_cffi
+ argon2-cffi
asgiref
bcrypt
docutils
diff --git a/pkgs/development/python-modules/dlinfo/default.nix b/pkgs/development/python-modules/dlinfo/default.nix
new file mode 100644
index 000000000000..a1f3ace78275
--- /dev/null
+++ b/pkgs/development/python-modules/dlinfo/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, stdenv
+, buildPythonPackage
+, fetchPypi
+, setuptools-scm
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "dlinfo";
+ version = "1.2.1";
+
+ format = "setuptools";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "5f6f43b47f3aa5fe12bd347cf536dc8fca6068c61a0a260e408bec7f6eb4bd38";
+ };
+
+ nativeBuildInputs = [
+ setuptools-scm
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [ "dlinfo" ];
+
+ meta = {
+ description = "Python wrapper for libc's dlinfo and dyld_find on Mac";
+ homepage = "https://github.com/cloudflightio/python-dlinfo";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ dotlambda ];
+ broken = stdenv.isDarwin;
+ };
+}
diff --git a/pkgs/development/python-modules/flask-security-too/default.nix b/pkgs/development/python-modules/flask-security-too/default.nix
index 2732ae234658..789060ed2b5e 100644
--- a/pkgs/development/python-modules/flask-security-too/default.nix
+++ b/pkgs/development/python-modules/flask-security-too/default.nix
@@ -32,7 +32,7 @@
, passlib
# tests
-, argon2_cffi
+, argon2-cffi
, flask-mongoengine
, mongoengine
, mongomock
@@ -86,7 +86,7 @@ buildPythonPackage rec {
};
checkInputs = [
- argon2_cffi
+ argon2-cffi
flask-mongoengine
mongoengine
mongomock
diff --git a/pkgs/development/python-modules/jupyter_server/default.nix b/pkgs/development/python-modules/jupyter_server/default.nix
index dd8368676d1b..0001dd5e9373 100644
--- a/pkgs/development/python-modules/jupyter_server/default.nix
+++ b/pkgs/development/python-modules/jupyter_server/default.nix
@@ -6,7 +6,7 @@
, pythonOlder
, pytestCheckHook
, pytest-tornasync
-, argon2_cffi
+, argon2-cffi
, jinja2
, tornado
, pyzmq
@@ -44,7 +44,7 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
- argon2_cffi
+ argon2-cffi
jinja2
tornado
pyzmq
diff --git a/pkgs/development/python-modules/keyrings-cryptfile/default.nix b/pkgs/development/python-modules/keyrings-cryptfile/default.nix
index 7f2cacea6294..23b8b66ea9fa 100644
--- a/pkgs/development/python-modules/keyrings-cryptfile/default.nix
+++ b/pkgs/development/python-modules/keyrings-cryptfile/default.nix
@@ -2,7 +2,7 @@
, buildPythonPackage
, fetchPypi
, fetchpatch
-, argon2_cffi
+, argon2-cffi
, keyring
, pycryptodome
, pytestCheckHook
@@ -32,7 +32,7 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
- argon2_cffi
+ argon2-cffi
keyring
pycryptodome
];
diff --git a/pkgs/development/python-modules/magic-wormhole-mailbox-server/default.nix b/pkgs/development/python-modules/magic-wormhole-mailbox-server/default.nix
index dfd16c04a6f8..77870ed68365 100644
--- a/pkgs/development/python-modules/magic-wormhole-mailbox-server/default.nix
+++ b/pkgs/development/python-modules/magic-wormhole-mailbox-server/default.nix
@@ -1,4 +1,15 @@
-{ lib, buildPythonPackage, fetchPypi, isPy27, six, attrs, twisted, pyopenssl, service-identity, autobahn, treq, mock, pytest }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, six
+, attrs
+, twisted
+, pyopenssl
+, service-identity
+, autobahn
+, treq
+, mock
+}:
buildPythonPackage rec {
version = "0.4.1";
@@ -9,18 +20,27 @@ buildPythonPackage rec {
sha256 = "1af10592909caaf519c00e706eac842c5e77f8d4356215fe9c61c7b2258a88fb";
};
- propagatedBuildInputs = [ six attrs twisted pyopenssl service-identity autobahn ];
+ propagatedBuildInputs = [
+ attrs
+ six
+ twisted
+ autobahn
+ ] ++ autobahn.extras-require.twisted
+ ++ twisted.extras-require.tls;
- # zope.interface import issue
- doCheck = !isPy27;
- checkInputs = [ treq mock pytest ];
+ checkInputs = [
+ treq
+ mock
+ twisted
+ ];
checkPhase = ''
- pytest
+ trial -j$NIX_BUILD_CORES wormhole_mailbox_server
'';
meta = with lib; {
description = "Securely transfer data between computers";
homepage = "https://github.com/warner/magic-wormhole-mailbox-server";
license = licenses.mit;
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/magic-wormhole-transit-relay/default.nix b/pkgs/development/python-modules/magic-wormhole-transit-relay/default.nix
index 2d6a8d969d8b..a618be999c0b 100644
--- a/pkgs/development/python-modules/magic-wormhole-transit-relay/default.nix
+++ b/pkgs/development/python-modules/magic-wormhole-transit-relay/default.nix
@@ -1,4 +1,10 @@
-{ lib, buildPythonPackage, fetchPypi, twisted, mock }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, autobahn
+, mock
+, twisted
+}:
buildPythonPackage rec {
pname = "magic-wormhole-transit-relay";
@@ -9,17 +15,18 @@ buildPythonPackage rec {
sha256 = "0ppsx2s1ysikns1h053x67z2zmficbn3y3kf52bzzslhd2s02j6b";
};
- propagatedBuildInputs = [ twisted ];
+ propagatedBuildInputs = [ autobahn twisted ];
- checkInputs = [ mock ];
+ checkInputs = [ mock twisted ];
checkPhase = ''
- ${twisted}/bin/trial wormhole_transit_relay
+ trial -j$NIX_BUILD_CORES wormhole_transit_relay
'';
meta = with lib; {
description = "Transit Relay server for Magic-Wormhole";
- homepage = "https://github.com/warner/magic-wormhole-transit-relay";
+ homepage = "https://github.com/magic-wormhole/magic-wormhole-transit-relay";
license = licenses.mit;
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/magic-wormhole/default.nix b/pkgs/development/python-modules/magic-wormhole/default.nix
index abb9a04eaa48..c6450c3cecb9 100644
--- a/pkgs/development/python-modules/magic-wormhole/default.nix
+++ b/pkgs/development/python-modules/magic-wormhole/default.nix
@@ -1,7 +1,7 @@
-{ lib, stdenv
+{ lib
+, stdenv
, buildPythonPackage
, fetchPypi
-, isPy27
, spake2
, pynacl
, six
@@ -15,7 +15,6 @@
, humanize
, txtorcon
, nettools
-, glibcLocales
, mock
, magic-wormhole-transit-relay
, magic-wormhole-mailbox-server
@@ -30,9 +29,28 @@ buildPythonPackage rec {
sha256 = "0q41j99718y7m95zg1vaybnsp31lp6lhyqkbv4yqz5ys6jixh3qv";
};
- buildInputs = [ glibcLocales ];
- propagatedBuildInputs = [ spake2 pynacl six attrs twisted autobahn automat hkdf tqdm click humanize txtorcon ];
- checkInputs = [ mock magic-wormhole-transit-relay magic-wormhole-mailbox-server ];
+ propagatedBuildInputs = [
+ spake2
+ pynacl
+ six
+ attrs
+ twisted
+ autobahn
+ automat
+ hkdf
+ tqdm
+ click
+ humanize
+ txtorcon
+ ] ++ autobahn.extras-require.twisted
+ ++ twisted.extras-require.tls;
+
+ checkInputs = [
+ mock
+ magic-wormhole-transit-relay
+ magic-wormhole-mailbox-server
+ twisted
+ ];
postPatch = lib.optionalString stdenv.isLinux ''
sed -i -e "s|'ifconfig'|'${nettools}/bin/ifconfig'|" src/wormhole/ipaddrs.py
@@ -42,9 +60,7 @@ buildPythonPackage rec {
install -Dm644 docs/wormhole.1 $out/share/man/man1/wormhole.1
'';
- # zope.interface issue
- doCheck = !isPy27;
- preCheck = ''
+ checkPhase = ''
export PATH=$out/bin:$PATH
export LANG="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
@@ -52,16 +68,15 @@ buildPythonPackage rec {
--replace 'getProcessOutputAndValue("locale", ["-a"])' 'getProcessOutputAndValue("locale", ["-a"], env=os.environ)' \
--replace 'if (os.path.dirname(os.path.abspath(wormhole))' 'if not os.path.abspath(wormhole).startswith("/nix/store") and (os.path.dirname(os.path.abspath(wormhole))' \
--replace 'locale_env = dict(LC_ALL=locale, LANG=locale)' 'locale_env = dict(LC_ALL=locale, LANG=locale, LOCALE_ARCHIVE=os.getenv("LOCALE_ARCHIVE"))'
+
+ trial -j$NIX_BUILD_CORES wormhole
'';
meta = with lib; {
description = "Securely transfer data between computers";
- homepage = "https://github.com/warner/magic-wormhole";
+ homepage = "https://github.com/magic-wormhole/magic-wormhole";
license = licenses.mit;
- # Currently broken on Python 2.7. See
- # https://github.com/NixOS/nixpkgs/issues/71826
- broken = isPy27;
- maintainers = with maintainers; [ asymmetric ];
+ maintainers = with maintainers; [ asymmetric SuperSandro2000 ];
mainProgram = "wormhole";
};
}
diff --git a/pkgs/development/python-modules/notebook/default.nix b/pkgs/development/python-modules/notebook/default.nix
index 3ead3cf4fe20..d76909efdcfe 100644
--- a/pkgs/development/python-modules/notebook/default.nix
+++ b/pkgs/development/python-modules/notebook/default.nix
@@ -2,7 +2,7 @@
, lib
, buildPythonPackage
, fetchPypi
-, argon2_cffi
+, argon2-cffi
, nose
, nose_warnings_filters
, glibcLocales
@@ -43,7 +43,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
jinja2 tornado ipython_genutils traitlets jupyter_core send2trash
jupyter-client nbformat nbconvert ipykernel terminado requests pexpect
- prometheus-client argon2_cffi
+ prometheus-client argon2-cffi
];
# disable warning_filters
diff --git a/pkgs/development/python-modules/notify-py/default.nix b/pkgs/development/python-modules/notify-py/default.nix
index 497b20d3df8f..6d255424812e 100644
--- a/pkgs/development/python-modules/notify-py/default.nix
+++ b/pkgs/development/python-modules/notify-py/default.nix
@@ -9,7 +9,8 @@
, which
, jeepney
, loguru
-, pytestCheckHook
+, pytest
+, dbus
, coreutils
}:
@@ -41,16 +42,29 @@ buildPythonPackage rec {
})
];
- propagatedBuildInputs = [ loguru ]
- ++ lib.optionals stdenv.isLinux [ jeepney ];
+ propagatedBuildInputs = [
+ loguru
+ ] ++ lib.optionals stdenv.isLinux [
+ jeepney
+ ];
- checkInputs = [ pytestCheckHook ];
+ checkInputs = [
+ pytest
+ ] ++ lib.optionals stdenv.isLinux [
+ dbus
+ ];
- # Tests search for "afplay" binary which is built in to MacOS and not available in nixpkgs
- preCheck = lib.optionalString stdenv.isDarwin ''
+ checkPhase = if stdenv.isDarwin then ''
+ # Tests search for "afplay" binary which is built in to macOS and not available in nixpkgs
mkdir $TMP/bin
ln -s ${coreutils}/bin/true $TMP/bin/afplay
- export PATH="$TMP/bin:$PATH"
+ PATH="$TMP/bin:$PATH" pytest
+ '' else if stdenv.isLinux then ''
+ dbus-run-session \
+ --config-file=${dbus.daemon}/share/dbus-1/session.conf \
+ pytest
+ '' else ''
+ pytest
'';
pythonImportsCheck = [ "notifypy" ];
diff --git a/pkgs/development/python-modules/passlib/default.nix b/pkgs/development/python-modules/passlib/default.nix
index 9e35fb8f76a7..8fd7b177a27c 100644
--- a/pkgs/development/python-modules/passlib/default.nix
+++ b/pkgs/development/python-modules/passlib/default.nix
@@ -1,7 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
-, argon2_cffi
+, argon2-cffi
, bcrypt
, cryptography
, pytestCheckHook
@@ -17,7 +17,7 @@ buildPythonPackage rec {
};
passthru.extras-require = {
- argon2 = [ argon2_cffi ];
+ argon2 = [ argon2-cffi ];
bcrypt = [ bcrypt ];
totp = [ cryptography ];
};
diff --git a/pkgs/development/python-modules/pglast/default.nix b/pkgs/development/python-modules/pglast/default.nix
index a3836570f04b..5c1a4b74a87d 100644
--- a/pkgs/development/python-modules/pglast/default.nix
+++ b/pkgs/development/python-modules/pglast/default.nix
@@ -1,31 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
-, isPy3k
+, pythonOlder
, setuptools
, pytest
}:
buildPythonPackage rec {
pname = "pglast";
- version = "3.9";
+ version = "3.10";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-fwXOfQW+ybhROdgayOAsgaFjf8HHh5jr5xczkBnA40w=";
+ hash = "sha256-rkoCtcBe5LBTTpmd+cj6s80UWXyTpMk74FipyK0t5go=";
};
- disabled = !isPy3k;
-
- # ModuleNotFoundError: No module named 'pkg_resources'
- propagatedBuildInputs = [ setuptools ];
+ propagatedBuildInputs = [
+ setuptools
+ ];
postPatch = ''
substituteInPlace setup.cfg \
--replace "--cov=pglast --cov-report term-missing" ""
'';
- checkInputs = [ pytest ];
+ checkInputs = [
+ pytest
+ ];
# pytestCheckHook doesn't work
# ImportError: cannot import name 'parse_sql' from 'pglast'
@@ -38,6 +42,6 @@ buildPythonPackage rec {
description = "PostgreSQL Languages AST and statements prettifier";
changelog = "https://github.com/lelit/pglast/raw/v${version}/CHANGES.rst";
license = licenses.gpl3Plus;
- maintainers = [ maintainers.marsam ];
+ maintainers = with maintainers; [ marsam ];
};
}
diff --git a/pkgs/development/python-modules/phonemizer/backend-paths.patch b/pkgs/development/python-modules/phonemizer/backend-paths.patch
index 5f828aaaae13..4b9f1fb4a70b 100644
--- a/pkgs/development/python-modules/phonemizer/backend-paths.patch
+++ b/pkgs/development/python-modules/phonemizer/backend-paths.patch
@@ -1,42 +1,18 @@
-diff --git a/phonemizer/backend/espeak.py b/phonemizer/backend/espeak.py
-index b4712bf..5628fd5 100644
---- a/phonemizer/backend/espeak.py
-+++ b/phonemizer/backend/espeak.py
-@@ -82,10 +82,7 @@ class BaseEspeakBackend(BaseBackend):
- if _ESPEAK_DEFAULT_PATH:
- return _ESPEAK_DEFAULT_PATH
+diff --git a/phonemizer/backend/espeak/wrapper.py b/phonemizer/backend/espeak/wrapper.py
+index 84a79f5..8abcae1 100644
+--- a/phonemizer/backend/espeak/wrapper.py
++++ b/phonemizer/backend/espeak/wrapper.py
+@@ -143,12 +143,7 @@ class EspeakWrapper:
+ f'is not a readable file')
+ return library.resolve()
-- espeak = distutils.spawn.find_executable('espeak-ng')
-- if not espeak: # pragma: nocover
-- espeak = distutils.spawn.find_executable('espeak')
-- return espeak
-+ return "@espeak@"
+- library = (
+- ctypes.util.find_library('espeak-ng') or
+- ctypes.util.find_library('espeak'))
+- if not library: # pragma: nocover
+- raise RuntimeError(
+- 'failed to find espeak library')
++ library = '@libespeak@'
+ return library
- @classmethod
- def is_available(cls):
-diff --git a/phonemizer/backend/festival.py b/phonemizer/backend/festival.py
-index 3037be5..684ffff 100644
---- a/phonemizer/backend/festival.py
-+++ b/phonemizer/backend/festival.py
-@@ -80,7 +80,7 @@ class FestivalBackend(BaseBackend):
- if _FESTIVAL_DEFAULT_PATH:
- return _FESTIVAL_DEFAULT_PATH
-
-- return distutils.spawn.find_executable('festival')
-+ return "@festival@"
-
- @classmethod
- def is_available(cls):
-diff --git a/test/test_punctuation.py b/test/test_punctuation.py
-index 6ed642a..08060df 100644
---- a/test/test_punctuation.py
-+++ b/test/test_punctuation.py
-@@ -28,7 +28,7 @@ ESPEAK_143 = (EspeakBackend.version(as_tuple=True) >= (1, 49, 3))
- ESPEAK_150 = (EspeakBackend.version(as_tuple=True) >= (1, 50))
-
- # True if we are using festival>=2.5
--FESTIVAL_25 = (FestivalBackend.version(as_tuple=True) >= (2, 5))
-+FESTIVAL_25 = False
-
-
- @pytest.mark.parametrize(
+ def _fetch_version_and_path(self):
diff --git a/pkgs/development/python-modules/phonemizer/default.nix b/pkgs/development/python-modules/phonemizer/default.nix
index 88bb69e9952f..3d7d21bbb97c 100644
--- a/pkgs/development/python-modules/phonemizer/default.nix
+++ b/pkgs/development/python-modules/phonemizer/default.nix
@@ -1,10 +1,13 @@
{ lib
+, stdenv
, substituteAll
, buildPythonApplication
, fetchPypi
, joblib
, segments
, attrs
+, dlinfo
+, typing-extensions
, espeak-ng
, pytestCheckHook
, pytest-cov
@@ -26,9 +29,8 @@ buildPythonApplication rec {
patches = [
(substituteAll {
src = ./backend-paths.patch;
- espeak = "${lib.getBin espeak-ng}/bin/espeak";
- # override festival path should you try to integrate it
- festival = "";
+ libespeak = "${lib.getLib espeak-ng}/lib/libespeak-ng${stdenv.hostPlatform.extensions.sharedLibrary}";
+ # FIXME package festival
})
./remove-intertwined-festival-test.patch
];
@@ -37,6 +39,8 @@ buildPythonApplication rec {
joblib
segments
attrs
+ dlinfo
+ typing-extensions
];
preCheck = ''
@@ -45,26 +49,26 @@ buildPythonApplication rec {
checkInputs = [
pytestCheckHook
- pytest-cov
];
# We tried to package festvial, but were unable to get the backend running,
# so let's disable related tests.
- pytestFlagsArray = [
- "--ignore=test/test_festival.py"
+ disabledTestPaths = [
+ "test/test_festival.py"
];
disabledTests = [
"test_festival"
- "test_relative"
- "test_absolute"
+ "test_festival_path"
"test_readme_festival_syll"
+ "test_unicode"
];
meta = with lib; {
homepage = "https://github.com/bootphon/phonemizer";
+ changelog = "https://github.com/bootphon/phonemizer/blob/v${version}/CHANGELOG.md";
description = "Simple text to phones converter for multiple languages";
- license = licenses.gpl3;
+ license = licenses.gpl3Plus;
maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/development/python-modules/phonemizer/drop-readme-festival-test.patch b/pkgs/development/python-modules/phonemizer/drop-readme-festival-test.patch
deleted file mode 100644
index a60cdf2645a5..000000000000
--- a/pkgs/development/python-modules/phonemizer/drop-readme-festival-test.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/test/test_main.py b/test/test_main.py
-index 71d605a..d137cd7 100644
---- a/test/test_main.py
-+++ b/test/test_main.py
-@@ -63,7 +63,6 @@ def test_readme():
- _test(u'hello world', u'həloʊ wɜːld ')
- _test(u'hello world', u'həloʊ wɜːld ', '--verbose')
- _test(u'hello world', u'həloʊ wɜːld ', '--quiet')
-- _test(u'hello world', u'hhaxlow werld', '-b festival --strip')
- _test(u'hello world', u'həloʊ wɜːld ', '-l en-us')
- _test(u'bonjour le monde', u'bɔ̃ʒuʁ lə mɔ̃d ', '-l fr-fr')
- _test(u'bonjour le monde', u'b ɔ̃ ʒ u ʁ ;eword l ə ;eword m ɔ̃ d ;eword ',
diff --git a/pkgs/development/python-modules/phonemizer/remove-intertwined-festival-test.patch b/pkgs/development/python-modules/phonemizer/remove-intertwined-festival-test.patch
index d7d605df7f98..a0e0817bb72a 100644
--- a/pkgs/development/python-modules/phonemizer/remove-intertwined-festival-test.patch
+++ b/pkgs/development/python-modules/phonemizer/remove-intertwined-festival-test.patch
@@ -1,15 +1,14 @@
diff --git a/test/test_main.py b/test/test_main.py
-index 71d605a..0ea3c74 100644
+index b8c53e9..8f8c6d2 100644
--- a/test/test_main.py
+++ b/test/test_main.py
-@@ -63,17 +63,12 @@ def test_readme():
- _test(u'hello world', u'həloʊ wɜːld ')
- _test(u'hello world', u'həloʊ wɜːld ', '--verbose')
- _test(u'hello world', u'həloʊ wɜːld ', '--quiet')
-- _test(u'hello world', u'hhaxlow werld', '-b festival --strip')
- _test(u'hello world', u'həloʊ wɜːld ', '-l en-us')
- _test(u'bonjour le monde', u'bɔ̃ʒuʁ lə mɔ̃d ', '-l fr-fr')
- _test(u'bonjour le monde', u'b ɔ̃ ʒ u ʁ ;eword l ə ;eword m ɔ̃ d ;eword ',
+@@ -68,16 +68,11 @@ def test_readme():
+ _test('hello world', 'həloʊ wɜːld ', '--verbose')
+ _test('hello world', 'həloʊ wɜːld ', '--quiet')
+ _test('hello world', 'hello world | həloʊ wɜːld ', '--prepend-text')
+- _test('hello world', 'hhaxlow werld', '-b festival --strip')
+ _test('bonjour le monde', 'bɔ̃ʒuʁ lə mɔ̃d ', '-l fr-fr')
+ _test('bonjour le monde', 'b ɔ̃ ʒ u ʁ ;eword l ə ;eword m ɔ̃ d ;eword ',
'-l fr-fr -p " " -w ";eword "')
@@ -18,5 +17,87 @@ index 71d605a..0ea3c74 100644
- reason='festival-2.1 gives different results than further versions '
- 'for syllable boundaries')
def test_readme_festival_syll():
- _test(u'hello world',
- u'hh ax ;esyll l ow ;esyll ;eword w er l d ;esyll ;eword ',
+ _test('hello world',
+ 'hh ax ;esyll l ow ;esyll ;eword w er l d ;esyll ;eword ',
+diff --git a/test/test_phonemize.py b/test/test_phonemize.py
+index d156c9e..2bbe371 100644
+--- a/test/test_phonemize.py
++++ b/test/test_phonemize.py
+@@ -213,18 +213,6 @@ def test_segments(njobs):
+ ('segments', True, True, False,
+ ['achi acho?', '', 'achi acho'],
+ [u'ʌtʃɪ ʌtʃʊ?', '', u'ʌtʃɪ ʌtʃʊ ']),
+- ('festival', False, False, False,
+- ['hello world!', '', 'goodbye'],
+- ['hhaxlow werld ', 'guhdbay ']),
+- ('festival', False, True, False,
+- ['hello world!', '', 'goodbye'],
+- ['hhaxlow werld!', 'guhdbay ']),
+- ('festival', True, False, False,
+- ['hello world!', '', 'goodbye'],
+- ['hhaxlow werld ', '', 'guhdbay ']),
+- ('festival', True, True, False,
+- ['hello world!', '', 'goodbye'],
+- ['hhaxlow werld!', '', 'guhdbay ']),
+ ('espeak', False, False, True,
+ ['hello world!', '', 'goodbye'],
+ [('hello world!', 'həloʊ wɜːld '), ('goodbye', 'ɡʊdbaɪ ')]),
+@@ -248,19 +236,7 @@ def test_segments(njobs):
+ [('achi acho?', u'ʌtʃɪ ʌtʃʊ '), ('', ''), ('achi acho', u'ʌtʃɪ ʌtʃʊ ')]),
+ ('segments', True, True, True,
+ ['achi acho?', '', 'achi acho'],
+- [('achi acho?', u'ʌtʃɪ ʌtʃʊ?'), ('', ''), ('achi acho', u'ʌtʃɪ ʌtʃʊ ')]),
+- ('festival', False, False, True,
+- ['hello world!', '', 'goodbye'],
+- [('hello world!', 'hhaxlow werld '), ('goodbye', 'guhdbay ')]),
+- ('festival', False, True, True,
+- ['hello world!', '', 'goodbye'],
+- [('hello world!', 'hhaxlow werld!'), ('goodbye', 'guhdbay ')]),
+- ('festival', True, False, True,
+- ['hello world!', '', 'goodbye'],
+- [('hello world!', 'hhaxlow werld '), ('', ''), ('goodbye', 'guhdbay ')]),
+- ('festival', True, True, True,
+- ['hello world!', '', 'goodbye'],
+- [('hello world!', 'hhaxlow werld!'), ('', ''), ('goodbye', 'guhdbay ')])])
++ [('achi acho?', u'ʌtʃɪ ʌtʃʊ?'), ('', ''), ('achi acho', u'ʌtʃɪ ʌtʃʊ ')])])
+ def test_preserve_empty_lines(backend, empty_lines, punctuation, prepend_text, text, expected):
+ language = 'cree' if backend == 'segments' else 'en-us'
+
+@@ -278,11 +254,7 @@ def test_preserve_empty_lines(backend, empty_lines, punctuation, prepend_text, t
+ ('segments', False, False, [''], []),
+ ('segments', False, True, [''], []),
+ ('segments', True, False, [''], ['']),
+- ('segments', True, True, [''], ['']),
+- ('festival', False, False, [''], []),
+- ('festival', False, True, [''], []),
+- ('festival', True, False, [''], ['']),
+- ('festival', True, True, [''], [''])])
++ ('segments', True, True, [''], [''])])
+ def test_empty_input(backend, empty_lines, punctuation, text, expected):
+ language = 'cree' if backend == 'segments' else 'en-us'
+
+diff --git a/test/test_punctuation.py b/test/test_punctuation.py
+index b2206ac..62e31c1 100644
+--- a/test/test_punctuation.py
++++ b/test/test_punctuation.py
+@@ -28,9 +28,6 @@ ESPEAK_150 = (EspeakBackend.version() >= (1, 50))
+ # True if we are using espeak>=1.49.3
+ ESPEAK_143 = (EspeakBackend.version() >= (1, 49, 3))
+
+-# True if we are using festival>=2.5
+-FESTIVAL_25 = (FestivalBackend.version() >= (2, 5))
+-
+
+ @pytest.mark.parametrize(
+ 'inp, out', [
+@@ -179,9 +176,7 @@ def test_issue_54(text):
+ ('espeak', 'default', ['! ?', 'hey!'], ['! ?', 'heɪ!']),
+ ('espeak', '!', ['! ?', 'hey!'], ['! ', 'heɪ!']),
+ ('segments', 'default', ['! ?', 'hey!'], ['! ?', 'heːj!']),
+- ('segments', '!', ['! ?', 'hey!'], ValueError),
+- ('festival', 'default', ['! ?', 'hey!'], ['! ?', 'hhey!']),
+- ('festival', '!', ['! ?', 'hey!'], ['! ', 'hhey!'])])
++ ('segments', '!', ['! ?', 'hey!'], ValueError)])
+ def test_issue55(backend, marks, text, expected):
+ if marks == 'default':
+ marks = Punctuation.default_marks()
diff --git a/pkgs/development/python-modules/pydicom/default.nix b/pkgs/development/python-modules/pydicom/default.nix
index 5c7d5ab92ab4..9310d0cf5553 100644
--- a/pkgs/development/python-modules/pydicom/default.nix
+++ b/pkgs/development/python-modules/pydicom/default.nix
@@ -11,22 +11,22 @@
let
pname = "pydicom";
- version = "2.2.2";
+ version = "2.3.0";
src = fetchFromGitHub {
- owner = "${pname}";
- repo = "${pname}";
+ owner = "pydicom";
+ repo = "pydicom";
rev = "v${version}";
- sha256 = "sha256-p5hJAUsactv6UEvbVaF+zk4iapx98eYkC9Zo+lzFATA=";
+ hash = "sha256-CAQWaBkzecJ1VXQ5BnAUjmBMjh0I8y+gT7I4P4o2gqI=";
};
# Pydicom needs pydicom-data to run some tests. If these files aren't downloaded
# before the package creation, it'll try to download during the checkPhase.
test_data = fetchFromGitHub {
- owner = "${pname}";
- repo = "${pname}-data";
+ owner = "pydicom";
+ repo = "pydicom-data";
rev = "bbb723879690bb77e077a6d57657930998e92bd5";
- sha256 = "sha256-dCI1temvpNWiWJYVfQZKy/YJ4ad5B0e9hEKHJnEeqzk=";
+ hash = "sha256-dCI1temvpNWiWJYVfQZKy/YJ4ad5B0e9hEKHJnEeqzk=";
};
in
@@ -34,6 +34,8 @@ buildPythonPackage {
inherit pname version src;
disabled = pythonOlder "3.6";
+ format = "setuptools";
+
propagatedBuildInputs = [
numpy
pillow
@@ -53,8 +55,8 @@ buildPythonPackage {
ln -s ${test_data}/data_store/data $HOME/.pydicom/data
'';
- # This test try to remove a dicom inside $HOME/.pydicom/data/ and download it again.
disabledTests = [
+ # tries to remove a dicom inside $HOME/.pydicom/data/ and download it again
"test_fetch_data_files"
] ++ lib.optionals stdenv.isAarch64 [
# https://github.com/pydicom/pydicom/issues/1386
diff --git a/pkgs/development/python-modules/pykeepass/default.nix b/pkgs/development/python-modules/pykeepass/default.nix
index cb893c98ac92..27470b66a624 100644
--- a/pkgs/development/python-modules/pykeepass/default.nix
+++ b/pkgs/development/python-modules/pykeepass/default.nix
@@ -1,6 +1,6 @@
{ lib, fetchFromGitHub, buildPythonPackage
, lxml, pycryptodomex, construct
-, argon2_cffi, python-dateutil, future
+, argon2-cffi, python-dateutil, future
, python
}:
@@ -21,10 +21,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [
lxml pycryptodomex construct
- argon2_cffi python-dateutil future
+ argon2-cffi python-dateutil future
];
- propagatedNativeBuildInputs = [ argon2_cffi ];
+ propagatedNativeBuildInputs = [ argon2-cffi ];
checkPhase = ''
${python.interpreter} -m unittest tests.tests
diff --git a/pkgs/development/tools/continuous-integration/hci/default.nix b/pkgs/development/tools/continuous-integration/hci/default.nix
index 5c0c59845ce6..0919a6ec58b1 100644
--- a/pkgs/development/tools/continuous-integration/hci/default.nix
+++ b/pkgs/development/tools/continuous-integration/hci/default.nix
@@ -12,7 +12,7 @@ let
${o.postInstall or ""}
mkdir -p $out/libexec
mv $out/bin/hci $out/libexec
- makeWrapper $out/libexec/hci $out/bin/hci --prefix PATH : ${makeBinPath bundledBins}
+ makeWrapper $out/libexec/hci $out/bin/hci --prefix PATH : ${lib.escapeShellArg (makeBinPath bundledBins)}
'';
})
(addBuildDepends [ makeWrapper ] (justStaticExecutables haskellPackages.hercules-ci-cli));
diff --git a/pkgs/development/tools/continuous-integration/hercules-ci-agent/default.nix b/pkgs/development/tools/continuous-integration/hercules-ci-agent/default.nix
index 00ae501e5348..ec1e6fb93b2e 100644
--- a/pkgs/development/tools/continuous-integration/hercules-ci-agent/default.nix
+++ b/pkgs/development/tools/continuous-integration/hercules-ci-agent/default.nix
@@ -12,7 +12,7 @@ let
${o.postInstall or ""}
mkdir -p $out/libexec
mv $out/bin/hercules-ci-agent $out/libexec
- makeWrapper $out/libexec/hercules-ci-agent $out/bin/hercules-ci-agent --prefix PATH : ${makeBinPath bundledBins}
+ makeWrapper $out/libexec/hercules-ci-agent $out/bin/hercules-ci-agent --prefix PATH : ${lib.escapeShellArg (makeBinPath bundledBins)}
'';
})
(addBuildDepends [ makeWrapper ] (justStaticExecutables haskellPackages.hercules-ci-agent));
diff --git a/pkgs/development/tools/konstraint/default.nix b/pkgs/development/tools/konstraint/default.nix
index 0c36636992a2..945785910034 100644
--- a/pkgs/development/tools/konstraint/default.nix
+++ b/pkgs/development/tools/konstraint/default.nix
@@ -2,15 +2,15 @@
buildGoModule rec {
pname = "konstraint";
- version = "0.19.0";
+ version = "0.19.1";
src = fetchFromGitHub {
owner = "plexsystems";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-BoH/lT+kYiwOtW82mmhhLZY3Xk2pRZHmNrEKJzPiG54=";
+ sha256 = "sha256-MQ9Rb8U1CGbEgNtkOdK879dr8uOro6CAl4wGMbuT+wo=";
};
- vendorSha256 = "sha256-G6WigkkKZj/k+kYlKItSfnoXN8UZ60lFEkZcQaI9J5c=";
+ vendorSha256 = "sha256-gUuceNwOI+ss2YDiIF+zxyOj53iV6kGtVhNCd5KQomo=";
# Exclude go within .github folder
excludedPackages = ".github";
diff --git a/pkgs/development/tools/misc/netcoredbg/default.nix b/pkgs/development/tools/misc/netcoredbg/default.nix
index cb0c1cdc8ec7..c57b421dbef3 100644
--- a/pkgs/development/tools/misc/netcoredbg/default.nix
+++ b/pkgs/development/tools/misc/netcoredbg/default.nix
@@ -1,7 +1,7 @@
{ lib, clangStdenv, stdenvNoCC, cmake, fetchFromGitHub, dotnetCorePackages, buildDotnetModule }:
let
pname = "netcoredbg";
- version = "1.2.0-825";
+ version = "2.0.0-895";
# according to CMakeLists.txt, this should be 3.1 even when building for .NET 5
coreclr-version = "3.1.19";
@@ -12,18 +12,19 @@ let
sha256 = "o1KafmXqNjX9axr6sSxPKrfUX0e+b/4ANiVQt4T2ybw=";
};
- dotnet-sdk = dotnetCorePackages.sdk_5_0;
+ dotnet-sdk = dotnetCorePackages.sdk_6_0;
src = fetchFromGitHub {
owner = "Samsung";
repo = pname;
rev = version;
- sha256 = "JQhDI1+bVbOIFNkXixZnFB/5+dzqCbInR0zJvykcFCg=";
+ sha256 = "sha256-zOfChuNjD6py6KD1AmN5DgCGxD2YNH9gTyageoiN8PU=";
};
unmanaged = clangStdenv.mkDerivation rec {
inherit src pname version;
+ patches = [ ./limits.patch ];
nativeBuildInputs = [ cmake dotnet-sdk ];
hardeningDisable = [ "strictoverflow" ];
diff --git a/pkgs/development/tools/misc/netcoredbg/limits.patch b/pkgs/development/tools/misc/netcoredbg/limits.patch
new file mode 100644
index 000000000000..8a2dcced32c5
--- /dev/null
+++ b/pkgs/development/tools/misc/netcoredbg/limits.patch
@@ -0,0 +1,12 @@
+diff --git a/src/debugger/frames.cpp b/src/debugger/frames.cpp
+index 534936b..21366f9 100644
+--- a/src/debugger/frames.cpp
++++ b/src/debugger/frames.cpp
+@@ -9,6 +9,7 @@
+ #include "utils/platform.h"
+ #include "utils/logger.h"
+ #include "utils/torelease.h"
++#include
+
+ namespace netcoredbg
+ {
diff --git a/pkgs/development/tools/misc/sqitch/default.nix b/pkgs/development/tools/misc/sqitch/default.nix
index 5e3c3bc37c64..f941ab05e288 100644
--- a/pkgs/development/tools/misc/sqitch/default.nix
+++ b/pkgs/development/tools/misc/sqitch/default.nix
@@ -37,7 +37,7 @@ stdenv.mkDerivation {
'';
dontStrip = true;
postFixup = ''
- wrapProgram $out/bin/sqitch --prefix PERL5LIB : ${perlPackages.makeFullPerlPath modules}
+ wrapProgram $out/bin/sqitch --prefix PERL5LIB : ${lib.escapeShellArg (perlPackages.makeFullPerlPath modules)}
'';
meta = {
diff --git a/pkgs/development/web/deno/default.nix b/pkgs/development/web/deno/default.nix
index 455b215bb514..4291af81f405 100644
--- a/pkgs/development/web/deno/default.nix
+++ b/pkgs/development/web/deno/default.nix
@@ -16,15 +16,15 @@
rustPlatform.buildRustPackage rec {
pname = "deno";
- version = "1.21.2";
+ version = "1.21.3";
src = fetchFromGitHub {
owner = "denoland";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-oRlrommD84x4M+Z/F70TjFwWSlvTb26v36zxgaMBifw=";
+ sha256 = "sha256-0LjY5XBtR9uoxLOOFRebbSuH9chSdH1/9rtsY15NdCM=";
};
- cargoSha256 = "sha256-kVNT9B9B3Li9B8aRFkUx5WkGZH7eqSMQO0GRPTC5tgU=";
+ cargoSha256 = "sha256-8YldzUO9Jysu0w2NvGWDIr2eIWcrX9ALUodYwIykt64=";
postPatch = ''
# upstream uses lld on aarch64-darwin for faster builds
diff --git a/pkgs/games/opendungeons/default.nix b/pkgs/games/opendungeons/default.nix
index 734be8e999ae..9afcbd898785 100644
--- a/pkgs/games/opendungeons/default.nix
+++ b/pkgs/games/opendungeons/default.nix
@@ -11,7 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "0xf7gkpy8ll1h59wyaljf0hr8prg7p4ixz80mxqwcnm9cglpgn63";
};
- patches = [ ./cmakepaths.patch ];
+ patches = [
+ ./cmakepaths.patch
+ ./fix_link_date_time.patch
+ ];
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ ogre cegui boost sfml openal ois ];
diff --git a/pkgs/games/opendungeons/fix_link_date_time.patch b/pkgs/games/opendungeons/fix_link_date_time.patch
new file mode 100644
index 000000000000..884aa9901ba7
--- /dev/null
+++ b/pkgs/games/opendungeons/fix_link_date_time.patch
@@ -0,0 +1,13 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index f8ff3c2..689c463 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -538,7 +538,7 @@ endif()
+ #This has to cover the versions not already known by CMake
+ set(Boost_ADDITIONAL_VERSIONS 1.47 1.47.0 1.47.1 1.55.0)
+
+-set(OD_BOOST_COMPONENTS system filesystem locale program_options thread)
++set(OD_BOOST_COMPONENTS system date_time filesystem locale program_options thread)
+
+ if(BUILD_TESTING AND OD_BUILD_TESTING)
+ set(OD_BOOST_COMPONENTS ${OD_BOOST_COMPONENTS} unit_test_framework)
diff --git a/pkgs/os-specific/linux/firmware/linux-firmware/default.nix b/pkgs/os-specific/linux/firmware/linux-firmware/default.nix
index ec05c6594989..bf2156a55707 100644
--- a/pkgs/os-specific/linux/firmware/linux-firmware/default.nix
+++ b/pkgs/os-specific/linux/firmware/linux-firmware/default.nix
@@ -1,12 +1,11 @@
-{ stdenvNoCC, fetchgit, lib }:
+{ stdenvNoCC, fetchzip, lib }:
stdenvNoCC.mkDerivation rec {
pname = "linux-firmware";
version = "20220509";
- src = fetchgit {
- url = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git";
- rev = "refs/tags/${version}";
+ src = fetchzip {
+ url = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-${version}.tar.gz";
sha256 = "sha256-pNuKA4XigrHU9qC5Ch6HLs3/tcv0zIkAzow9VOIVKdQ=";
};
diff --git a/pkgs/pkgs-lib/formats.nix b/pkgs/pkgs-lib/formats.nix
index 6495b024b008..cb46b63dd0c4 100644
--- a/pkgs/pkgs-lib/formats.nix
+++ b/pkgs/pkgs-lib/formats.nix
@@ -135,6 +135,17 @@ rec {
};
+ gitIni = { listsAsDuplicateKeys ? false, ... }@args: {
+
+ type = with lib.types; let
+
+ iniAtom = (ini args).type/*attrsOf*/.functor.wrapped/*attrsOf*/.functor.wrapped;
+
+ in attrsOf (attrsOf (either iniAtom (attrsOf iniAtom)));
+
+ generate = name: value: pkgs.writeText name (lib.generators.toGitINI value);
+ };
+
toml = {}: json {} // {
type = with lib.types; let
valueType = oneOf [
diff --git a/pkgs/servers/mail/public-inbox/0002-msgtime-drop-Date-Parse-for-RFC2822.patch b/pkgs/servers/mail/public-inbox/0002-msgtime-drop-Date-Parse-for-RFC2822.patch
deleted file mode 100644
index ebc9a6f22379..000000000000
--- a/pkgs/servers/mail/public-inbox/0002-msgtime-drop-Date-Parse-for-RFC2822.patch
+++ /dev/null
@@ -1,172 +0,0 @@
-From c9b5164c954cd0de80d971f1c4ced16bf41ea81b Mon Sep 17 00:00:00 2001
-From: Eric Wong
-Date: Fri, 29 Nov 2019 12:25:07 +0000
-Subject: [PATCH 2/2] msgtime: drop Date::Parse for RFC2822
-
-Date::Parse is not optimized for RFC2822 dates and isn't
-packaged on OpenBSD. It's still useful for historical
-email when email clients were less conformant, but is
-less relevant for new emails.
----
- lib/PublicInbox/MsgTime.pm | 115 ++++++++++++++++++++++++++++++++-----
- t/msgtime.t | 6 ++
- 2 files changed, 107 insertions(+), 14 deletions(-)
-
-diff --git a/lib/PublicInbox/MsgTime.pm b/lib/PublicInbox/MsgTime.pm
-index 58e11d72..e9b27a49 100644
---- a/lib/PublicInbox/MsgTime.pm
-+++ b/lib/PublicInbox/MsgTime.pm
-@@ -7,24 +7,114 @@ use strict;
- use warnings;
- use base qw(Exporter);
- our @EXPORT_OK = qw(msg_timestamp msg_datestamp);
--use Date::Parse qw(str2time strptime);
-+use Time::Local qw(timegm);
-+my @MoY = qw(january february march april may june
-+ july august september october november december);
-+my %MoY;
-+@MoY{@MoY} = (0..11);
-+@MoY{map { substr($_, 0, 3) } @MoY} = (0..11);
-+
-+my %OBSOLETE_TZ = ( # RFC2822 4.3 (Obsolete Date and Time)
-+ EST => '-0500', EDT => '-0400',
-+ CST => '-0600', CDT => '-0500',
-+ MST => '-0700', MDT => '-0600',
-+ PST => '-0800', PDT => '-0700',
-+ UT => '+0000', GMT => '+0000', Z => '+0000',
-+
-+ # RFC2822 states:
-+ # The 1 character military time zones were defined in a non-standard
-+ # way in [RFC822] and are therefore unpredictable in their meaning.
-+);
-+my $OBSOLETE_TZ = join('|', keys %OBSOLETE_TZ);
-
- sub str2date_zone ($) {
- my ($date) = @_;
-+ my ($ts, $zone);
-+
-+ # RFC822 is most likely for email, but we can tolerate an extra comma
-+ # or punctuation as long as all the data is there.
-+ # We'll use '\s' since Unicode spaces won't affect our parsing.
-+ # SpamAssassin ignores commas and redundant spaces, too.
-+ if ($date =~ /(?:[A-Za-z]+,?\s+)? # day-of-week
-+ ([0-9]+),?\s+ # dd
-+ ([A-Za-z]+)\s+ # mon
-+ ([0-9]{2,})\s+ # YYYY or YY (or YYY :P)
-+ ([0-9]+)[:\.] # HH:
-+ ((?:[0-9]{2})|(?:\s?[0-9])) # MM
-+ (?:[:\.]((?:[0-9]{2})|(?:\s?[0-9])))? # :SS
-+ \s+ # a TZ offset is required:
-+ ([\+\-])? # TZ sign
-+ [\+\-]* # I've seen extra "-" e.g. "--500"
-+ ([0-9]+|$OBSOLETE_TZ)(?:\s|$) # TZ offset
-+ /xo) {
-+ my ($dd, $m, $yyyy, $hh, $mm, $ss, $sign, $tz) =
-+ ($1, $2, $3, $4, $5, $6, $7, $8);
-+ # don't accept non-English months
-+ defined(my $mon = $MoY{lc($m)}) or return;
-+
-+ if (defined(my $off = $OBSOLETE_TZ{$tz})) {
-+ $sign = substr($off, 0, 1);
-+ $tz = substr($off, 1);
-+ }
-+
-+ # Y2K problems: 3-digit years, follow RFC2822
-+ if (length($yyyy) <= 3) {
-+ $yyyy += 1900;
-+
-+ # and 2-digit years from '09 (2009) (0..49)
-+ $yyyy += 100 if $yyyy < 1950;
-+ }
-+
-+ $ts = timegm($ss // 0, $mm, $hh, $dd, $mon, $yyyy);
-
-- my $ts = str2time($date);
-- return undef unless(defined $ts);
-+ # Compute the time offset from [+-]HHMM
-+ $tz //= 0;
-+ my ($tz_hh, $tz_mm);
-+ if (length($tz) == 1) {
-+ $tz_hh = $tz;
-+ $tz_mm = 0;
-+ } elsif (length($tz) == 2) {
-+ $tz_hh = 0;
-+ $tz_mm = $tz;
-+ } else {
-+ $tz_hh = $tz;
-+ $tz_hh =~ s/([0-9]{2})\z//;
-+ $tz_mm = $1;
-+ }
-+ while ($tz_mm >= 60) {
-+ $tz_mm -= 60;
-+ $tz_hh += 1;
-+ }
-+ $sign //= '+';
-+ my $off = $sign . ($tz_mm * 60 + ($tz_hh * 60 * 60));
-+ $ts -= $off;
-+ $sign = '+' if $off == 0;
-+ $zone = sprintf('%s%02d%02d', $sign, $tz_hh, $tz_mm);
-
-- # off is the time zone offset in seconds from GMT
-- my ($ss,$mm,$hh,$day,$month,$year,$off) = strptime($date);
-- return undef unless(defined $off);
-+ # Time::Zone and Date::Parse are part of the same distibution,
-+ # and we need Time::Zone to deal with tz names like "EDT"
-+ } elsif (eval { require Date::Parse }) {
-+ $ts = Date::Parse::str2time($date);
-+ return undef unless(defined $ts);
-
-- # Compute the time zone from offset
-- my $sign = ($off < 0) ? '-' : '+';
-- my $hour = abs(int($off / 3600));
-- my $min = ($off / 60) % 60;
-- my $zone = sprintf('%s%02d%02d', $sign, $hour, $min);
-+ # off is the time zone offset in seconds from GMT
-+ my ($ss,$mm,$hh,$day,$month,$year,$off) =
-+ Date::Parse::strptime($date);
-+ return undef unless(defined $off);
-+
-+ # Compute the time zone from offset
-+ my $sign = ($off < 0) ? '-' : '+';
-+ my $hour = abs(int($off / 3600));
-+ my $min = ($off / 60) % 60;
-+
-+ $zone = sprintf('%s%02d%02d', $sign, $hour, $min);
-+ } else {
-+ warn "Date::Parse missing for non-RFC822 date: $date\n";
-+ return undef;
-+ }
-
-+ # Note: we've already applied the offset to $ts at this point,
-+ # but we want to keep "git fsck" happy.
- # "-1200" is the furthest westermost zone offset,
- # but git fast-import is liberal so we use "-1400"
- if ($zone >= 1400 || $zone <= -1400) {
-@@ -59,9 +149,6 @@ sub msg_date_only ($) {
- my @date = $hdr->header_raw('Date');
- my ($ts);
- foreach my $d (@date) {
-- # Y2K problems: 3-digit years
-- $d =~ s!([A-Za-z]{3}) ([0-9]{3}) ([0-9]{2}:[0-9]{2}:[0-9]{2})!
-- my $yyyy = $2 + 1900; "$1 $yyyy $3"!e;
- $ts = eval { str2date_zone($d) } and return $ts;
- if ($@) {
- my $mid = $hdr->header_raw('Message-ID');
-diff --git a/t/msgtime.t b/t/msgtime.t
-index 6b396602..d9643b65 100644
---- a/t/msgtime.t
-+++ b/t/msgtime.t
-@@ -84,4 +84,10 @@ is_deeply(datestamp('Fri, 28 Jun 2002 12:54:40 -700'), [1025294080, '-0700']);
- is_deeply(datestamp('Sat, 12 Jan 2002 12:52:57 -200'), [1010847177, '-0200']);
- is_deeply(datestamp('Mon, 05 Nov 2001 10:36:16 -800'), [1004985376, '-0800']);
-
-+# obsolete formats described in RFC2822
-+for (qw(UT GMT Z)) {
-+ is_deeply(datestamp('Fri, 02 Oct 1993 00:00:00 '.$_), [ 749520000, '+0000']);
-+}
-+is_deeply(datestamp('Fri, 02 Oct 1993 00:00:00 EDT'), [ 749534400, '-0400']);
-+
- done_testing();
---
-2.24.1
-
diff --git a/pkgs/servers/mail/public-inbox/default.nix b/pkgs/servers/mail/public-inbox/default.nix
index affcb0e8b237..8ffbab1eac19 100644
--- a/pkgs/servers/mail/public-inbox/default.nix
+++ b/pkgs/servers/mail/public-inbox/default.nix
@@ -1,19 +1,73 @@
-{ buildPerlPackage, lib, fetchurl, fetchpatch, makeWrapper
-, DBDSQLite, EmailMIME, IOSocketSSL, IPCRun, Plack, PlackMiddlewareReverseProxy
-, SearchXapian, TimeDate, URI
-, git, highlight, openssl, xapian
+{ stdenv, lib, fetchurl, makeWrapper, nixosTests
+, buildPerlPackage
+, coreutils
+, curl
+, git
+, gnumake
+, highlight
+, libgit2
+, man
+, openssl
+, pkg-config
+, sqlite
+, xapian
+, AnyURIEscape
+, DBDSQLite
+, DBI
+, EmailAddressXS
+, EmailMIME
+, IOSocketSSL
+, IPCRun
+, Inline
+, InlineC
+, LinuxInotify2
+, MailIMAPClient
+, ParseRecDescent
+, Plack
+, PlackMiddlewareReverseProxy
+, SearchXapian
+, TimeDate
+, URI
}:
let
- # These tests would fail, and produce "Operation not permitted"
- # errors from git, because they use git init --shared. This tries
- # to set the setgid bit, which isn't permitted inside build
- # sandboxes.
- #
- # These tests were indentified with
- # grep -r shared t/
- skippedTests = [ "convert-compact" "search" "v2writable" "www_listing" ];
+ skippedTests = [
+ # These tests would fail, and produce "Operation not permitted"
+ # errors from git, because they use git init --shared. This tries
+ # to set the setgid bit, which isn't permitted inside build
+ # sandboxes.
+ #
+ # These tests were indentified with
+ # grep -r shared t/
+ "convert-compact" "search" "v2writable" "www_listing"
+ # perl5.32.0-public-inbox> t/eml.t ...................... 1/? Cannot parse parameter '=?ISO-8859-1?Q?=20charset=3D=1BOF?=' at t/eml.t line 270.
+ # perl5.32.0-public-inbox> # Failed test 'got wide character by assuming utf-8'
+ # perl5.32.0-public-inbox> # at t/eml.t line 272.
+ # perl5.32.0-public-inbox> Wide character in print at /nix/store/38vxlxrvg3yji3jms44qn94lxdysbj5j-perl-5.32.0/lib/perl5/5.32.0/Test2/Formatter/TAP.pm line 125.
+ "eml"
+ # Failed test 'Makefile OK'
+ # at t/hl_mod.t line 19.
+ # got: 'makefile'
+ # expected: 'make'
+ "hl_mod"
+ # Failed test 'clone + index v1 synced ->created_at'
+ # at t/lei-mirror.t line 175.
+ # got: '1638378723'
+ # expected: undef
+ # Failed test 'clone + index v1 synced ->created_at'
+ # at t/lei-mirror.t line 178.
+ # got: '1638378723'
+ # expected: undef
+ # May be due to the use of $ENV{HOME}.
+ "lei-mirror"
+ # Failed test 'child error (pure-Perl)'
+ # at t/spawn.t line 33.
+ # got: '0'
+ # expected: anything else
+ # waiting for child to reap grandchild...
+ "spawn"
+ ];
testConditions = with lib;
concatMapStringsSep " " (n: "! -name ${escapeShellArg n}.t") skippedTests;
@@ -22,53 +76,86 @@ in
buildPerlPackage rec {
pname = "public-inbox";
- version = "1.2.0";
+ version = "1.8.0";
src = fetchurl {
- url = "https://public-inbox.org/releases/public-inbox-${version}.tar.gz";
- sha256 = "0sa2m4f2x7kfg3mi4im7maxqmqvawafma8f7g92nyfgybid77g6s";
+ url = "https://public-inbox.org/public-inbox.git/snapshot/public-inbox-${version}.tar.gz";
+ sha256 = "sha256-laJOOCk5NecIGWesv4D30cLGfijQHVkeo55eNqNKzew=";
};
- patches = [
- (fetchpatch {
- url = "https://public-inbox.org/meta/20200101032822.GA13063@dcvr/raw";
- sha256 = "0ncxqqkvi5lwi8zaa7lk7l8mf8h278raxsvbvllh3z7jhfb48r3l";
- })
- ./0002-msgtime-drop-Date-Parse-for-RFC2822.patch
- ];
-
outputs = [ "out" "devdoc" "sa_config" ];
postConfigure = ''
substituteInPlace Makefile --replace 'TEST_FILES = t/*.t' \
'TEST_FILES = $(shell find t -name *.t ${testConditions})'
+ substituteInPlace lib/PublicInbox/TestCommon.pm \
+ --replace /bin/cp ${coreutils}/bin/cp
'';
nativeBuildInputs = [ makeWrapper ];
buildInputs = [
- DBDSQLite EmailMIME IOSocketSSL IPCRun Plack PlackMiddlewareReverseProxy
- SearchXapian TimeDate URI highlight
+ AnyURIEscape
+ DBDSQLite
+ DBI
+ EmailAddressXS
+ EmailMIME
+ highlight
+ IOSocketSSL
+ IPCRun
+ Inline
+ InlineC
+ ParseRecDescent
+ Plack
+ PlackMiddlewareReverseProxy
+ SearchXapian
+ TimeDate
+ URI
+ libgit2 # For Gcf2
+ man
];
- checkInputs = [ git openssl xapian ];
+ doCheck = !stdenv.isDarwin;
+ checkInputs = [
+ MailIMAPClient
+ curl
+ git
+ openssl
+ pkg-config
+ sqlite
+ xapian
+ ] ++ lib.optionals stdenv.isLinux [
+ LinuxInotify2
+ ];
preCheck = ''
perl certs/create-certs.perl
+ export TEST_LEI_ERR_LOUD=1
+ export HOME="$NIX_BUILD_TOP"/home
+ mkdir -p "$HOME"/.cache/public-inbox/inline-c
'';
installTargets = [ "install" ];
postInstall = ''
for prog in $out/bin/*; do
- wrapProgram $prog --prefix PATH : ${lib.makeBinPath [ git ]}
+ wrapProgram $prog --prefix PATH : ${lib.makeBinPath [
+ git
+ /* for InlineC */
+ gnumake
+ stdenv.cc.cc
+ ]}
done
mv sa_config $sa_config
'';
+ passthru.tests = {
+ nixos-public-inbox = nixosTests.public-inbox;
+ };
+
meta = with lib; {
homepage = "https://public-inbox.org/";
license = licenses.agpl3Plus;
- maintainers = with maintainers; [ qyliss ];
+ maintainers = with maintainers; [ julm qyliss ];
platforms = platforms.all;
};
}
diff --git a/pkgs/servers/misc/navidrome/default.nix b/pkgs/servers/misc/navidrome/default.nix
index 17e648e59ab1..ea1cae99dd99 100644
--- a/pkgs/servers/misc/navidrome/default.nix
+++ b/pkgs/servers/misc/navidrome/default.nix
@@ -32,9 +32,9 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
- postFixup = ''
+ postFixup = optionalString ffmpegSupport ''
wrapProgram $out/bin/navidrome \
- --prefix PATH : ${makeBinPath (optional ffmpegSupport ffmpeg)}
+ --prefix PATH : ${makeBinPath [ ffmpeg ]}
'';
passthru.tests.navidrome = nixosTests.navidrome;
diff --git a/pkgs/servers/pufferpanel/default.nix b/pkgs/servers/pufferpanel/default.nix
index 1f0395d2fb2f..d89a859b8988 100644
--- a/pkgs/servers/pufferpanel/default.nix
+++ b/pkgs/servers/pufferpanel/default.nix
@@ -47,7 +47,7 @@ buildGoModule rec {
--set PUFFER_PANEL_EMAIL_TEMPLATES $out/share/pufferpanel/templates/emails.json \
--set GIN_MODE release \
--set PUFFER_PANEL_WEB_FILES $out/share/pufferpanel/www \
- --prefix PATH : ${lib.makeBinPath pathDeps}
+ --prefix PATH : ${lib.escapeShellArg (lib.makeBinPath pathDeps)}
'';
meta = with lib; {
diff --git a/pkgs/servers/pulseaudio/0001-Make-gio-2.0-optional-when-gsettings-is-disabled.patch b/pkgs/servers/pulseaudio/0001-Make-gio-2.0-optional-when-gsettings-is-disabled.patch
new file mode 100644
index 000000000000..c087dcd7e7d1
--- /dev/null
+++ b/pkgs/servers/pulseaudio/0001-Make-gio-2.0-optional-when-gsettings-is-disabled.patch
@@ -0,0 +1,26 @@
+From 72f3fe059f031f24c5ad026cb2fc16318f227c09 Mon Sep 17 00:00:00 2001
+From: Andrew Childs
+Date: Tue, 19 Apr 2022 16:29:58 +0900
+Subject: [PATCH 1/8] Make gio-2.0 optional when gsettings is disabled
+
+Derived from https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/654
+---
+ meson.build | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/meson.build b/meson.build
+index d7e468cab..f7adf1413 100644
+--- a/meson.build
++++ b/meson.build
+@@ -614,7 +614,7 @@ if dbus_dep.found()
+ cdata.set('HAVE_DBUS', 1)
+ endif
+
+-gio_dep = dependency('gio-2.0', version : '>= 2.26.0')
++gio_dep = dependency('gio-2.0', version : '>= 2.26.0', required : false)
+ if get_option('gsettings').enabled()
+ assert(gio_dep.found(), 'GSettings support needs glib I/O library (GIO)')
+ cdata.set('HAVE_GSETTINGS', 1)
+--
+2.35.1
+
diff --git a/pkgs/servers/pulseaudio/0002-Ignore-SCM_CREDS-on-macOS.patch b/pkgs/servers/pulseaudio/0002-Ignore-SCM_CREDS-on-macOS.patch
new file mode 100644
index 000000000000..9196e205dc0c
--- /dev/null
+++ b/pkgs/servers/pulseaudio/0002-Ignore-SCM_CREDS-on-macOS.patch
@@ -0,0 +1,27 @@
+From 39bef695f783614e6175477417298ddf37e2ac13 Mon Sep 17 00:00:00 2001
+From: Andrew Childs
+Date: Tue, 19 Apr 2022 16:58:43 +0900
+Subject: [PATCH 2/8] Ignore SCM_CREDS on macOS
+
+It was added for FreeBSD support, but also enables the
+unsupported[citation needed] feature on macOS.
+---
+ src/pulsecore/creds.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/pulsecore/creds.h b/src/pulsecore/creds.h
+index b599b569c..b5b1c9f37 100644
+--- a/src/pulsecore/creds.h
++++ b/src/pulsecore/creds.h
+@@ -34,7 +34,7 @@
+ typedef struct pa_creds pa_creds;
+ typedef struct pa_cmsg_ancil_data pa_cmsg_ancil_data;
+
+-#if defined(SCM_CREDENTIALS) || defined(SCM_CREDS)
++#if defined(SCM_CREDENTIALS) || (defined(SCM_CREDS) && !defined(__APPLE__))
+
+ #define HAVE_CREDS 1
+
+--
+2.35.1
+
diff --git a/pkgs/servers/pulseaudio/0003-Disable-z-nodelete-on-darwin.patch b/pkgs/servers/pulseaudio/0003-Disable-z-nodelete-on-darwin.patch
new file mode 100644
index 000000000000..81b3ab927333
--- /dev/null
+++ b/pkgs/servers/pulseaudio/0003-Disable-z-nodelete-on-darwin.patch
@@ -0,0 +1,26 @@
+From 3f1abb55f4eb985fd0715b2b2ca45dcce3a56824 Mon Sep 17 00:00:00 2001
+From: Andrew Childs
+Date: Tue, 19 Apr 2022 17:06:50 +0900
+Subject: [PATCH 3/8] Disable `-z nodelete` on darwin
+
+Not supported[citation needed].
+---
+ meson.build | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/meson.build b/meson.build
+index f7adf1413..d4bece11a 100644
+--- a/meson.build
++++ b/meson.build
+@@ -404,7 +404,7 @@ cdata.set('MESON_BUILD', 1)
+ # so we request the nodelete flag to be enabled.
+ # On other systems, we don't really know how to do that, but it's welcome if somebody can tell.
+ # Windows doesn't support this flag.
+-if host_machine.system() != 'windows'
++if host_machine.system() != 'windows' and host_machine.system() != 'darwin'
+ nodelete_link_args = ['-Wl,-z,nodelete']
+ else
+ nodelete_link_args = []
+--
+2.35.1
+
diff --git a/pkgs/servers/pulseaudio/0004-Prefer-clock_gettime.patch b/pkgs/servers/pulseaudio/0004-Prefer-clock_gettime.patch
new file mode 100644
index 000000000000..eb7bd1c62708
--- /dev/null
+++ b/pkgs/servers/pulseaudio/0004-Prefer-clock_gettime.patch
@@ -0,0 +1,57 @@
+From 0bd3b613ac3bf16a73b3223fa1b961da3a0db1b2 Mon Sep 17 00:00:00 2001
+From: Andrew Childs
+Date: Tue, 19 Apr 2022 17:12:52 +0900
+Subject: [PATCH 4/8] Prefer clock_gettime
+
+Available in darwin since 10.12 (released in 2016).
+---
+ src/pulsecore/core-rtclock.c | 26 +++++++++++++-------------
+ 1 file changed, 13 insertions(+), 13 deletions(-)
+
+diff --git a/src/pulsecore/core-rtclock.c b/src/pulsecore/core-rtclock.c
+index 2c2e28631..a08d4b391 100644
+--- a/src/pulsecore/core-rtclock.c
++++ b/src/pulsecore/core-rtclock.c
+@@ -65,19 +65,7 @@ pa_usec_t pa_rtclock_age(const struct timeval *tv) {
+
+ struct timeval *pa_rtclock_get(struct timeval *tv) {
+
+-#if defined(OS_IS_DARWIN)
+- uint64_t val, abs_time = mach_absolute_time();
+- Nanoseconds nanos;
+-
+- nanos = AbsoluteToNanoseconds(*(AbsoluteTime *) &abs_time);
+- val = *(uint64_t *) &nanos;
+-
+- tv->tv_sec = val / PA_NSEC_PER_SEC;
+- tv->tv_usec = (val % PA_NSEC_PER_SEC) / PA_NSEC_PER_USEC;
+-
+- return tv;
+-
+-#elif defined(HAVE_CLOCK_GETTIME)
++#if defined(HAVE_CLOCK_GETTIME)
+ struct timespec ts;
+
+ #ifdef CLOCK_MONOTONIC
+@@ -109,6 +97,18 @@ struct timeval *pa_rtclock_get(struct timeval *tv) {
+
+ return tv;
+ }
++#elif defined(OS_IS_DARWIN)
++ uint64_t val, abs_time = mach_absolute_time();
++ Nanoseconds nanos;
++
++ nanos = AbsoluteToNanoseconds(*(AbsoluteTime *) &abs_time);
++ val = *(uint64_t *) &nanos;
++
++ tv->tv_sec = val / PA_NSEC_PER_SEC;
++ tv->tv_usec = (val % PA_NSEC_PER_SEC) / PA_NSEC_PER_USEC;
++
++ return tv;
++
+ #endif /* HAVE_CLOCK_GETTIME */
+
+ return pa_gettimeofday(tv);
+--
+2.35.1
+
diff --git a/pkgs/servers/pulseaudio/0005-Include-poll-posix.c-on-darwin.patch b/pkgs/servers/pulseaudio/0005-Include-poll-posix.c-on-darwin.patch
new file mode 100644
index 000000000000..4779fce2afd6
--- /dev/null
+++ b/pkgs/servers/pulseaudio/0005-Include-poll-posix.c-on-darwin.patch
@@ -0,0 +1,24 @@
+From 8dee473920d3a331b73a415b37e7e0b01f014110 Mon Sep 17 00:00:00 2001
+From: Andrew Childs
+Date: Tue, 19 Apr 2022 17:22:23 +0900
+Subject: [PATCH 5/8] Include poll-posix.c on darwin
+
+---
+ src/meson.build | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/meson.build b/src/meson.build
+index e2860811b..5bd68cb12 100644
+--- a/src/meson.build
++++ b/src/meson.build
+@@ -182,6 +182,7 @@ if host_machine.system() == 'windows'
+ else
+ libpulsecommon_sources += [
+ 'pulsecore/mutex-posix.c',
++ 'pulsecore/poll-posix.c',
+ 'pulsecore/semaphore-posix.c',
+ 'pulsecore/thread-posix.c'
+ ]
+--
+2.35.1
+
diff --git a/pkgs/servers/pulseaudio/0006-Only-use-version-script-on-GNU-ish-linkers.patch b/pkgs/servers/pulseaudio/0006-Only-use-version-script-on-GNU-ish-linkers.patch
new file mode 100644
index 000000000000..8b27b3e5ab77
--- /dev/null
+++ b/pkgs/servers/pulseaudio/0006-Only-use-version-script-on-GNU-ish-linkers.patch
@@ -0,0 +1,29 @@
+From 419258112b9d90d149ebbd5c657a36d8532b78a2 Mon Sep 17 00:00:00 2001
+From: Andrew Childs
+Date: Tue, 19 Apr 2022 17:31:36 +0900
+Subject: [PATCH 6/8] Only use version-script on GNU-ish linkers
+
+---
+ src/pulse/meson.build | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/src/pulse/meson.build b/src/pulse/meson.build
+index c2128e087..a5e47867e 100644
+--- a/src/pulse/meson.build
++++ b/src/pulse/meson.build
+@@ -74,7 +74,11 @@ run_target('update-map-file',
+ command : [ join_paths(meson.source_root(), 'scripts/generate-map-file.sh'), 'map-file',
+ [ libpulse_headers, 'simple.h', join_paths(meson.build_root(), 'src', 'pulse', 'version.h') ] ])
+
+-versioning_link_args = '-Wl,-version-script=' + join_paths(meson.source_root(), 'src', 'pulse', 'map-file')
++if meson.get_compiler('c').get_linker_id().startswith('ld.')
++ versioning_link_args = '-Wl,-version-script=' + join_paths(meson.source_root(), 'src', 'pulse', 'map-file')
++else
++ versioning_link_args = []
++endif
+
+ libpulse = shared_library('pulse',
+ libpulse_sources,
+--
+2.35.1
+
diff --git a/pkgs/servers/pulseaudio/0007-Adapt-undefined-link-args-per-linker.patch b/pkgs/servers/pulseaudio/0007-Adapt-undefined-link-args-per-linker.patch
new file mode 100644
index 000000000000..6893df8a7e29
--- /dev/null
+++ b/pkgs/servers/pulseaudio/0007-Adapt-undefined-link-args-per-linker.patch
@@ -0,0 +1,44 @@
+From 6f132be835d5acb5db4301ea1818601504e47fae Mon Sep 17 00:00:00 2001
+From: Andrew Childs
+Date: Tue, 19 Apr 2022 17:41:34 +0900
+Subject: [PATCH 7/8] Adapt undefined link args per linker
+
+TODO: Why is this required? Isn't it default?
+---
+ src/modules/meson.build | 13 ++++++++++++-
+ 1 file changed, 12 insertions(+), 1 deletion(-)
+
+diff --git a/src/modules/meson.build b/src/modules/meson.build
+index be72c3b9b..0163b583f 100644
+--- a/src/modules/meson.build
++++ b/src/modules/meson.build
+@@ -293,6 +293,17 @@ all_modules += [
+ # FIXME: meson doesn't support multiple RPATH arguments currently
+ rpath_dirs = join_paths(privlibdir) + ':' + join_paths(modlibexecdir)
+
++if meson.get_compiler('c').get_linker_id().startswith('ld.')
++ no_undefined_link_args = [ '-Wl,--no-undefined' ]
++elif meson.get_compiler('c').get_linker_id() == 'ld64'
++ # TODO: is this required? is this not default?
++ no_undefined_link_args = [ '-Wl,-undefined,error' ]
++else
++ # TODO: what platforms is this? what flag do they use?
++ no_undefined_link_args = []
++endif
++
++
+ foreach m : all_modules
+ name = m[0]
+ sources = m[1]
+@@ -310,7 +321,7 @@ foreach m : all_modules
+ install_rpath : rpath_dirs,
+ install_dir : modlibexecdir,
+ dependencies : [thread_dep, libpulse_dep, libpulsecommon_dep, libpulsecore_dep, libintl_dep, platform_dep, platform_socket_dep] + extra_deps,
+- link_args : [nodelete_link_args, '-Wl,--no-undefined' ],
++ link_args : [nodelete_link_args, no_undefined_link_args ],
+ link_with : extra_libs,
+ name_prefix : '',
+ implicit_include_directories : false)
+--
+2.35.1
+
diff --git a/pkgs/servers/pulseaudio/0008-Use-correct-semaphore-on-darwin.patch b/pkgs/servers/pulseaudio/0008-Use-correct-semaphore-on-darwin.patch
new file mode 100644
index 000000000000..274534665628
--- /dev/null
+++ b/pkgs/servers/pulseaudio/0008-Use-correct-semaphore-on-darwin.patch
@@ -0,0 +1,31 @@
+From 1a840b6e517004c902dfbea3d358b344c9588978 Mon Sep 17 00:00:00 2001
+From: Andrew Childs
+Date: Tue, 19 Apr 2022 17:49:08 +0900
+Subject: [PATCH 8/8] Use correct semaphore on darwin
+
+---
+ src/meson.build | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/src/meson.build b/src/meson.build
+index 5bd68cb12..041e2fab4 100644
+--- a/src/meson.build
++++ b/src/meson.build
+@@ -183,9 +183,13 @@ else
+ libpulsecommon_sources += [
+ 'pulsecore/mutex-posix.c',
+ 'pulsecore/poll-posix.c',
+- 'pulsecore/semaphore-posix.c',
+ 'pulsecore/thread-posix.c'
+ ]
++ if host_machine.system() == 'darwin'
++ libpulsecommon_sources += [ 'pulsecore/semaphore-osx.c' ]
++ else
++ libpulsecommon_sources += [ 'pulsecore/semaphore-posix.c' ]
++ endif
+ endif
+ # FIXME: Do SIMD things
+
+--
+2.35.1
+
diff --git a/pkgs/servers/pulseaudio/default.nix b/pkgs/servers/pulseaudio/default.nix
index 9e3075f09b76..deca94fca822 100644
--- a/pkgs/servers/pulseaudio/default.nix
+++ b/pkgs/servers/pulseaudio/default.nix
@@ -5,7 +5,7 @@
, sbc, bluez5, udev, openssl, fftwFloat
, soxr, speexdsp, systemd, webrtc-audio-processing
, gst_all_1
-, check, meson, ninja, m4, wrapGAppsHook
+, check, libintl, meson, ninja, m4, wrapGAppsHook
, x11Support ? false
@@ -45,6 +45,18 @@ stdenv.mkDerivation rec {
# Install sysconfdir files inside of the nix store,
# but use a conventional runtime sysconfdir outside the store
./add-option-for-installation-sysconfdir.patch
+ ] ++ lib.optionals stdenv.isDarwin [
+ # https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/654
+ ./0001-Make-gio-2.0-optional-when-gsettings-is-disabled.patch
+
+ # TODO (not sent upstream)
+ ./0002-Ignore-SCM_CREDS-on-macOS.patch
+ ./0003-Disable-z-nodelete-on-darwin.patch
+ ./0004-Prefer-clock_gettime.patch
+ ./0005-Include-poll-posix.c-on-darwin.patch
+ ./0006-Only-use-version-script-on-GNU-ish-linkers.patch
+ ./0007-Adapt-undefined-link-args-per-linker.patch
+ ./0008-Use-correct-semaphore-on-darwin.patch
];
outputs = [ "out" "dev" ];
@@ -60,7 +72,7 @@ stdenv.mkDerivation rec {
buildInputs =
[ libtool libsndfile soxr speexdsp fftwFloat check ]
++ lib.optionals stdenv.isLinux [ glib dbus ]
- ++ lib.optionals stdenv.isDarwin [ AudioUnit Cocoa CoreServices ]
+ ++ lib.optionals stdenv.isDarwin [ AudioUnit Cocoa CoreServices libintl ]
++ lib.optionals (!libOnly) (
[ libasyncns webrtc-audio-processing ]
++ lib.optional jackaudioSupport libjack2
@@ -86,7 +98,7 @@ stdenv.mkDerivation rec {
"-Ddoxygen=false"
"-Delogind=disabled"
# gsettings does not support cross-compilation
- "-Dgsettings=${if stdenv.buildPlatform == stdenv.hostPlatform then "enabled" else "disabled"}"
+ "-Dgsettings=${if stdenv.isLinux && (stdenv.buildPlatform == stdenv.hostPlatform) then "enabled" else "disabled"}"
"-Dgstreamer=disabled"
"-Dgtk=disabled"
"-Djack=${if jackaudioSupport && !libOnly then "enabled" else "disabled"}"
@@ -105,10 +117,15 @@ stdenv.mkDerivation rec {
"-Dsysconfdir_install=${placeholder "out"}/etc"
"-Dudevrulesdir=${placeholder "out"}/lib/udev/rules.d"
]
- ++ lib.optional (stdenv.isLinux && useSystemd) "-Dsystemduserunitdir=${placeholder "out"}/lib/systemd/user"
- ;
+ ++ lib.optional (stdenv.isLinux && useSystemd) "-Dsystemduserunitdir=${placeholder "out"}/lib/systemd/user"
+ ++ lib.optionals (stdenv.isDarwin) [
+ "-Ddbus=disabled"
+ "-Dglib=disabled"
+ "-Doss-output=disabled"
+ ];
- doCheck = true;
+ # tests fail on Darwin because of timeouts
+ doCheck = !stdenv.isDarwin;
preCheck = ''
export HOME=$(mktemp -d)
'';
diff --git a/pkgs/servers/teleport/default.nix b/pkgs/servers/teleport/default.nix
index 9f1348fff19f..8273e810a221 100644
--- a/pkgs/servers/teleport/default.nix
+++ b/pkgs/servers/teleport/default.nix
@@ -3,11 +3,17 @@
, rustPlatform
, fetchFromGitHub
, makeWrapper
+, symlinkJoin
+, CoreFoundation
+, openssl
+, pkg-config
, protobuf
+, Security
, stdenv
, xdg-utils
, nixosTests
+, withRdpClient ? true
, withRoleTester ? true
}:
let
@@ -16,17 +22,38 @@ let
owner = "gravitational";
repo = "teleport";
rev = "v${version}";
- sha256 = "sha256-ir2NMNIjSpv7l6dVNHczARg6b+doFofinsJy1smEC7o=";
+ sha256 = "sha256-KQfdeMuZ9LJHhEJLMl58Yb0+gxgDT7VcVnK1JxjVZaI=";
+ };
+ version = "9.1.2";
+
+ rdpClient = rustPlatform.buildRustPackage rec {
+ name = "teleport-rdpclient";
+ cargoSha256 = "sha256-Jz7bB/f4HRxBhSevmfELSrIm+IXUVlADIgp2qWQd5PY=";
+ inherit version src;
+
+ buildAndTestSubdir = "lib/srv/desktop/rdp/rdpclient";
+
+ buildInputs = [ openssl ]
+ ++ lib.optionals stdenv.isDarwin [ CoreFoundation Security ];
+ nativeBuildInputs = [ pkg-config ];
+
+ # https://github.com/NixOS/nixpkgs/issues/161570 ,
+ # buildRustPackage sets strictDeps = true;
+ checkInputs = buildInputs;
+
+ OPENSSL_NO_VENDOR = "1";
+
+ postInstall = ''
+ cp -r target $out
+ '';
};
- version = "8.1.3";
roleTester = rustPlatform.buildRustPackage {
name = "teleport-roletester";
- inherit version;
+ inherit version src;
- src = "${src}/lib/datalog";
- cargoSha256 = "sha256-cpW7kel02t/fB2CvDvVqWlzgS3Vg2qLnemF/bW2Ii1A=";
- sourceRoot = "datalog/roletester";
+ cargoSha256 = "sha256-gCm4ETbXy6tGJQVSzUkoAWUmKD3poYgkw133LtziASI=";
+ buildAndTestSubdir = "lib/datalog/roletester";
PROTOC = "${protobuf}/bin/protoc";
PROTOC_INCLUDE = "${protobuf}/include";
@@ -39,20 +66,23 @@ let
webassets = fetchFromGitHub {
owner = "gravitational";
repo = "webassets";
- rev = "ea3c67c941c56cfb6c228612e88100df09fb6f9c";
- sha256 = "sha256-oKvDXkxA73IJOi+ciBFVLkYcmeRUsTC+3rcYf64vDoY=";
+ rev = "67e608db77300d8a6cb17709be67f12c1d3271c3";
+ sha256 = "sha256-o4qjXGaNi5XDSUQrUuU+G77EdRnvJ1WUPWrryZU1CUE=";
};
in
buildGoModule rec {
pname = "teleport";
inherit src version;
- vendorSha256 = null;
+ vendorSha256 = "sha256-UMgWM7KHag99JR4i4mwVHa6yd9aHQ6Dy+pmUijNL4Ew=";
- subPackages = [ "tool/tctl" "tool/teleport" "tool/tsh" ];
- tags = [ "webassets_embed" ] ++
- lib.optional withRoleTester "roletester";
+ subPackages = [ "tool/tbot" "tool/tctl" "tool/teleport" "tool/tsh" ];
+ tags = [ "webassets_embed" ]
+ ++ lib.optional withRdpClient "desktop_access_rdp"
+ ++ lib.optional withRoleTester "roletester";
+ buildInputs = [ openssl ]
+ ++ lib.optionals (stdenv.isDarwin && withRdpClient) [ CoreFoundation Security ];
nativeBuildInputs = [ makeWrapper ];
patches = [
@@ -61,26 +91,31 @@ buildGoModule rec {
# https://github.com/NixOS/nixpkgs/issues/132652
./test.patch
./0001-fix-add-nix-path-to-exec-env.patch
+ ./rdpclient.patch
];
# Reduce closure size for client machines
outputs = [ "out" "client" ];
- preBuild = ''
- mkdir -p build
- echo "making webassets"
- cp -r ${webassets}/* webassets/
- make lib/web/build/webassets
+ preBuild =
+ let rustDeps = symlinkJoin {
+ name = "teleport-rust-deps";
+ paths = lib.optional withRdpClient rdpClient
+ ++ lib.optional withRoleTester roleTester;
+ };
+ in
+ ''
+ mkdir -p build
+ echo "making webassets"
+ cp -r ${webassets}/* webassets/
+ make lib/web/build/webassets
- ${lib.optionalString withRoleTester
- "cp -r ${roleTester}/target lib/datalog/roletester/."}
- '';
+ cp -r ${rustDeps}/. .
+ '';
- doCheck = !stdenv.isDarwin;
-
- preCheck = ''
- export HOME=$(mktemp -d)
- '';
+ # Multiple tests fail in the build sandbox
+ # due to trying to spawn nixbld's shell (/noshell), etc.
+ doCheck = false;
postInstall = ''
install -Dm755 -t $client/bin $out/bin/tsh
@@ -93,6 +128,7 @@ buildGoModule rec {
installCheckPhase = ''
$out/bin/tsh version | grep ${version} > /dev/null
$client/bin/tsh version | grep ${version} > /dev/null
+ $out/bin/tbot version | grep ${version} > /dev/null
$out/bin/tctl version | grep ${version} > /dev/null
$out/bin/teleport version | grep ${version} > /dev/null
'';
diff --git a/pkgs/servers/teleport/rdpclient.patch b/pkgs/servers/teleport/rdpclient.patch
new file mode 100644
index 000000000000..141d85ce42c6
--- /dev/null
+++ b/pkgs/servers/teleport/rdpclient.patch
@@ -0,0 +1,17 @@
+diff --git a/lib/srv/desktop/rdp/rdpclient/client.go b/lib/srv/desktop/rdp/rdpclient/client.go
+index d191c768f..71117a30d 100644
+--- a/lib/srv/desktop/rdp/rdpclient/client.go
++++ b/lib/srv/desktop/rdp/rdpclient/client.go
+@@ -56,10 +56,10 @@ package rdpclient
+ #cgo linux,amd64 LDFLAGS: -L${SRCDIR}/../../../../../target/x86_64-unknown-linux-gnu/release
+ #cgo linux,arm LDFLAGS: -L${SRCDIR}/../../../../../target/arm-unknown-linux-gnueabihf/release
+ #cgo linux,arm64 LDFLAGS: -L${SRCDIR}/../../../../../target/aarch64-unknown-linux-gnu/release
+-#cgo linux LDFLAGS: -l:librdp_client.a -lpthread -ldl -lm
++#cgo linux LDFLAGS: -l:librdp_client.a -lpthread -ldl -lm -lssl -lcrypto
+ #cgo darwin,amd64 LDFLAGS: -L${SRCDIR}/../../../../../target/x86_64-apple-darwin/release
+ #cgo darwin,arm64 LDFLAGS: -L${SRCDIR}/../../../../../target/aarch64-apple-darwin/release
+-#cgo darwin LDFLAGS: -framework CoreFoundation -framework Security -lrdp_client -lpthread -ldl -lm
++#cgo darwin LDFLAGS: -framework CoreFoundation -framework Security -lrdp_client -lpthread -ldl -lm -lssl -lcrypto
+ #include
+ */
+ import "C"
diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/wrapper.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/wrapper.nix
index 56ddf93af45f..e4394028658d 100644
--- a/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/wrapper.nix
+++ b/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/wrapper.nix
@@ -20,7 +20,7 @@ symlinkJoin {
postBuild = ''
for i in bin/emoji-picker libexec/ibus-{setup,engine}-typing-booster; do
wrapProgram "$out/$i" \
- --prefix NIX_HUNSPELL_DIRS : ${hunspellDirs}
+ --prefix NIX_HUNSPELL_DIRS : ${lib.escapeShellArg hunspellDirs}
done
sed -i -e "s,${typing-booster},$out," $out/share/ibus/component/typing-booster.xml
diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix
index 134ae716705e..66d2dfcdb9ae 100644
--- a/pkgs/tools/networking/curl/default.nix
+++ b/pkgs/tools/networking/curl/default.nix
@@ -157,6 +157,7 @@ stdenv.mkDerivation rec {
'' + lib.optionalString stdenv.isDarwin ''
# bad interaction with sandbox if enabled?
rm tests/data/test1453
+ rm tests/data/test1086
'' + lib.optionalString stdenv.hostPlatform.isMusl ''
# different resolving behaviour?
rm tests/data/test1592
diff --git a/pkgs/tools/networking/darkstat/default.nix b/pkgs/tools/networking/darkstat/default.nix
index 04cab3655787..2da581776d29 100644
--- a/pkgs/tools/networking/darkstat/default.nix
+++ b/pkgs/tools/networking/darkstat/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, libpcap, zlib }:
+{ lib, stdenv, fetchpatch, fetchurl, libpcap, zlib }:
stdenv.mkDerivation rec {
version = "3.0.719";
@@ -9,6 +9,15 @@ stdenv.mkDerivation rec {
sha256 = "1mzddlim6dhd7jhr4smh0n2fa511nvyjhlx76b03vx7phnar1bxf";
};
+ patches = [
+ # Avoid multiple definitions of CLOCK_REALTIME on macOS 11,
+ # see https://github.com/emikulic/darkstat/pull/2
+ (fetchpatch {
+ url = "https://github.com/emikulic/darkstat/commit/d2fd232e1167dee6e7a2d88b9ab7acf2a129f697.diff";
+ sha256 = "0z5mpyc0q65qb6cn4xcrxl0vx21d8ibzaam5kjyrcw4icd8yg4jb";
+ })
+ ];
+
buildInputs = [ libpcap zlib ];
enableParallelBuilding = true;
diff --git a/pkgs/tools/security/age-plugin-yubikey/default.nix b/pkgs/tools/security/age-plugin-yubikey/default.nix
index a880f490dc7e..1ca20e13828e 100644
--- a/pkgs/tools/security/age-plugin-yubikey/default.nix
+++ b/pkgs/tools/security/age-plugin-yubikey/default.nix
@@ -5,24 +5,27 @@
, pkg-config
, pcsclite
, PCSC
+, Foundation
}:
rustPlatform.buildRustPackage rec {
pname = "age-plugin-yubikey";
- version = "0.2.0";
+ version = "0.3.0";
src = fetchFromGitHub {
owner = "str4d";
repo = pname;
- rev = "51910edfab4006a068864602469ff7db3766bfbe"; # no tag for this release
- sha256 = "sha256-mMqvBlGFdwe5BaC0bXZg/27BGNmFTTYbLUHWUciqxQ0=";
+ rev = "v${version}";
+ sha256 = "sha256-KXqicTZ9GZlNj1AH3tMmOrC8zjXoEnqo4JJJTBdiI4E=";
};
- cargoSha256 = "sha256-OCbVLSmGx51pJ/EPgPfOyVrYWdloNEbexDV1zMsmEJc=";
+ cargoSha256 = "sha256-m/v4E7KHyLIWZHX0TKpqwBVDDwLjhYpOjYMrKEtx6/4=";
+
+ nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
- nativeBuildInputs = [ pkg-config ];
buildInputs =
if stdenv.isDarwin then [
+ Foundation
PCSC
] else [
pcsclite
diff --git a/pkgs/tools/security/vault/default.nix b/pkgs/tools/security/vault/default.nix
index ba70e99d6469..3d6c34d5bfa4 100644
--- a/pkgs/tools/security/vault/default.nix
+++ b/pkgs/tools/security/vault/default.nix
@@ -6,16 +6,16 @@
buildGoModule rec {
pname = "vault";
- version = "1.10.2";
+ version = "1.10.3";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "vault";
rev = "v${version}";
- sha256 = "sha256-ilyS2M/VRPNz8fW2JFrP09GvX0FlOznqnxJoFvfwUVo=";
+ sha256 = "sha256-12LOYp2ffTC/IOyNyT2PMnkP4FOKT8HROZNRWyTHxhA=";
};
- vendorSha256 = "sha256-ZdxpsfTRscgAjrRTq0tXhHe7pGirDgoZ6vlE71oJS9w=";
+ vendorSha256 = "sha256-w5nUkCNo9xfalbc/U7uYaHZsUdyMV3tKDypQM9MnwE4=";
subPackages = [ "." ];
diff --git a/pkgs/tools/security/vault/vault-bin.nix b/pkgs/tools/security/vault/vault-bin.nix
index d1a26f257249..55192c670e0e 100644
--- a/pkgs/tools/security/vault/vault-bin.nix
+++ b/pkgs/tools/security/vault/vault-bin.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "vault-bin";
- version = "1.10.2";
+ version = "1.10.3";
src =
let
@@ -16,11 +16,11 @@ stdenv.mkDerivation rec {
aarch64-darwin = "darwin_arm64";
};
sha256 = selectSystem {
- x86_64-linux = "sha256-8DF97kpBRqKvRqCi20QdVgE5T4QugM+Hh+2e1qdZAA8=";
- aarch64-linux = "sha256-SZ1+q4um6aFMPoF6t5ycOrG5gQQRDNC7SGFJi/JReBI=";
- i686-linux = "sha256-AatWqF2eDOslpK5J5fyGdrrjkag9GnCJcM0DnYCSZqg=";
- x86_64-darwin = "sha256-pFQLm967yRiAWHm7PcZRknB4H6ZoEahf4rl8CCdh5AA=";
- aarch64-darwin = "sha256-Br6fbJUkuIe7BVJU+bGGB9UOQyn2FV+Xy4ajfdfWCcM=";
+ x86_64-linux = "sha256-hz7u6sW415h/AsGlyghImo3K54gbAS92N6L0dI8vV8Q=";
+ aarch64-linux = "sha256-DIrVgHeVvDNx0vRwXt2gzf3HDYzDeYQ2JVy+7KlrLUo=";
+ i686-linux = "sha256-B0xamHI6GnHrKLjhIBvs89keShJ45fRgyM7M214S9jY=";
+ x86_64-darwin = "sha256-ubPcl/e0nwYYw5SrN2jfrGSwLHbi99jklYMDZuVdf6s=";
+ aarch64-darwin = "sha256-4CKrelIzaXu2GccWo2ZTzGSqCMTM1qmJ0drGD8F3c0k=";
};
in
fetchzip {
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 984834fb16eb..6ec9e9917f09 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -4808,7 +4808,7 @@ with pkgs;
agebox = callPackage ../tools/security/agebox { };
age-plugin-yubikey = callPackage ../tools/security/age-plugin-yubikey {
- inherit (pkgs.darwin.apple_sdk.frameworks) PCSC;
+ inherit (pkgs.darwin.apple_sdk.frameworks) Foundation PCSC;
};
artim-dark = callPackage ../data/themes/artim-dark {};
@@ -8638,6 +8638,11 @@ with pkgs;
inherit (linuxPackages) nvidia_x11;
nvidiaGpuSupport = config.cudaSupport or false;
};
+ nomad_1_3 = callPackage ../applications/networking/cluster/nomad/1.3.nix {
+ buildGoModule = buildGo117Module;
+ inherit (linuxPackages) nvidia_x11;
+ nvidiaGpuSupport = config.cudaSupport or false;
+ };
nomad-autoscaler = callPackage ../applications/networking/cluster/nomad-autoscaler { };
@@ -10758,7 +10763,9 @@ with pkgs;
telegraf = callPackage ../servers/monitoring/telegraf { };
- teleport = callPackage ../servers/teleport {};
+ teleport = callPackage ../servers/teleport {
+ inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
+ };
telepresence = callPackage ../tools/networking/telepresence {
pythonPackages = python3Packages;
@@ -16518,9 +16525,7 @@ with pkgs;
aprutil = callPackage ../development/libraries/apr-util { };
- aravis = callPackage ../development/libraries/aravis {
- inherit (gst_all_1) gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad;
- };
+ aravis = callPackage ../development/libraries/aravis { };
arb = callPackage ../development/libraries/arb {};
diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix
index 07bc50fd84b7..d8e5c19f0c7f 100644
--- a/pkgs/top-level/python-aliases.nix
+++ b/pkgs/top-level/python-aliases.nix
@@ -36,6 +36,7 @@ mapAliases ({
aioh2 = throw "aioh2 has been removed because it is abandoned and broken."; # Added 2022-03-30
ansible-base = throw "ansible-base has been removed, because it is end of life"; # added 2022-03-30
anyjson = throw "anyjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
+ argon2_cffi = argon2-cffi; # added 2022-05-09
asyncio-nats-client = nats-py; # added 2022-02-08
Babel = babel; # added 2022-05-06
bitcoin-price-api = throw "bitcoin-price-api has been removed, it was using setuptools 2to3 translation feautre, which has been removed in setuptools 58"; # added 2022-02-15
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 5b0ff6860806..9cf42ed188fd 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -627,7 +627,7 @@ in {
argh = callPackage ../development/python-modules/argh { };
- argon2_cffi = callPackage ../development/python-modules/argon2_cffi { };
+ argon2-cffi = callPackage ../development/python-modules/argon2-cffi { };
argon2-cffi-bindings = callPackage ../development/python-modules/argon2-cffi-bindings { };
@@ -2432,6 +2432,8 @@ in {
inherit (pkgs) dlib;
};
+ dlinfo = callPackage ../development/python-modules/dlinfo { };
+
dlx = callPackage ../development/python-modules/dlx { };
dmenu-python = callPackage ../development/python-modules/dmenu { };