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 6c8d881b15fc..99af050d7baf 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
@@ -229,6 +229,13 @@
services.prometheus.exporters.pve.
+
+
+ netbox,
+ infrastructure resource modeling (IRM) tool. Available as
+ services.netbox.
+
+
tetrd, share your
@@ -1018,8 +1025,8 @@
pkgs.pgadmin now refers to
- pkgs.pgadmin4. If you still need pgadmin3,
- use pkgs.pgadmin3.
+ pkgs.pgadmin4. pgadmin3
+ has been removed.
diff --git a/nixos/doc/manual/man-pages.xml b/nixos/doc/manual/man-pages.xml
index 49acfe7330b6..58f73521e94f 100644
--- a/nixos/doc/manual/man-pages.xml
+++ b/nixos/doc/manual/man-pages.xml
@@ -3,10 +3,15 @@
xmlns:xi="http://www.w3.org/2001/XInclude">
NixOS Reference Pages
- EelcoDolstra
+
+ EelcoDolstra
Author
- 2007-2020Eelco Dolstra
+
+ The Nixpkgs/NixOS contributors
+ Author
+
+ 2007-2022Eelco Dolstra and the Nixpkgs/NixOS contributors
diff --git a/nixos/doc/manual/release-notes/rl-2205.section.md b/nixos/doc/manual/release-notes/rl-2205.section.md
index 9aba688cb9b1..3e883625664e 100644
--- a/nixos/doc/manual/release-notes/rl-2205.section.md
+++ b/nixos/doc/manual/release-notes/rl-2205.section.md
@@ -67,6 +67,8 @@ In addition to numerous new and upgraded packages, this release has the followin
- [prometheus-pve-exporter](https://github.com/prometheus-pve/prometheus-pve-exporter), a tool that exposes information from the Proxmox VE API for use by Prometheus. Available as [services.prometheus.exporters.pve](options.html#opt-services.prometheus.exporters.pve).
+- [netbox](https://github.com/netbox-community/netbox), infrastructure resource modeling (IRM) tool. Available as [services.netbox](options.html#opt-services.netbox.enable).
+
- [tetrd](https://tetrd.app), share your internet connection from your device to your PC and vice versa through a USB cable. Available at [services.tetrd](#opt-services.tetrd.enable).
- [agate](https://github.com/mbrubeck/agate), a very simple server for the Gemini hypertext protocol. Available as [services.agate](options.html#opt-services.agate.enable).
@@ -375,8 +377,7 @@ In addition to numerous new and upgraded packages, this release has the followin
you should change the package you refer to. If you don't need them update your
commands from `otelcontribcol` to `otelcorecol` and enjoy a 7x smaller binary.
-- `pkgs.pgadmin` now refers to `pkgs.pgadmin4`.
- If you still need pgadmin3, use `pkgs.pgadmin3`.
+- `pkgs.pgadmin` now refers to `pkgs.pgadmin4`. `pgadmin3` has been removed.
- `pkgs.noto-fonts-cjk` is now deprecated in favor of `pkgs.noto-fonts-cjk-sans`
and `pkgs.noto-fonts-cjk-serif` because they each have different release
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index adeddbf139a3..a9ed8f251283 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -1048,6 +1048,7 @@
./services/web-apps/mediawiki.nix
./services/web-apps/miniflux.nix
./services/web-apps/moodle.nix
+ ./services/web-apps/netbox.nix
./services/web-apps/nextcloud.nix
./services/web-apps/nexus.nix
./services/web-apps/node-red.nix
diff --git a/nixos/modules/services/web-apps/netbox.nix b/nixos/modules/services/web-apps/netbox.nix
new file mode 100644
index 000000000000..a7d8bede74b4
--- /dev/null
+++ b/nixos/modules/services/web-apps/netbox.nix
@@ -0,0 +1,265 @@
+{ config, lib, pkgs, buildEnv, ... }:
+
+with lib;
+
+let
+ cfg = config.services.netbox;
+ staticDir = cfg.dataDir + "/static";
+ configFile = pkgs.writeTextFile {
+ name = "configuration.py";
+ text = ''
+ STATIC_ROOT = '${staticDir}'
+ ALLOWED_HOSTS = ['*']
+ DATABASE = {
+ 'NAME': 'netbox',
+ 'USER': 'netbox',
+ 'HOST': '/run/postgresql',
+ }
+
+ # Redis database settings. Redis is used for caching and for queuing background tasks such as webhook events. A separate
+ # configuration exists for each. Full connection details are required in both sections, and it is strongly recommended
+ # to use two separate database IDs.
+ REDIS = {
+ 'tasks': {
+ 'URL': 'unix://${config.services.redis.servers.netbox.unixSocket}?db=0',
+ 'SSL': False,
+ },
+ 'caching': {
+ 'URL': 'unix://${config.services.redis.servers.netbox.unixSocket}?db=1',
+ 'SSL': False,
+ }
+ }
+
+ with open("${cfg.secretKeyFile}", "r") as file:
+ SECRET_KEY = file.readline()
+
+ ${optionalString cfg.enableLdap "REMOTE_AUTH_BACKEND = 'netbox.authentication.LDAPBackend'"}
+
+ ${cfg.extraConfig}
+ '';
+ };
+ pkg = (pkgs.netbox.overrideAttrs (old: {
+ installPhase = old.installPhase + ''
+ ln -s ${configFile} $out/opt/netbox/netbox/netbox/configuration.py
+ '' + optionalString cfg.enableLdap ''
+ ln -s ${ldapConfigPath} $out/opt/netbox/netbox/netbox/ldap_config.py
+ '';
+ })).override {
+ plugins = ps: ((cfg.plugins ps)
+ ++ optional cfg.enableLdap [ ps.django-auth-ldap ]);
+ };
+ netboxManageScript = with pkgs; (writeScriptBin "netbox-manage" ''
+ #!${stdenv.shell}
+ export PYTHONPATH=${pkg.pythonPath}
+ sudo -u netbox ${pkg}/bin/netbox "$@"
+ '');
+
+in {
+ options.services.netbox = {
+ enable = mkOption {
+ type = lib.types.bool;
+ default = false;
+ description = ''
+ Enable Netbox.
+
+ This module requires a reverse proxy that serves /static separately.
+ See this example on how to configure this.
+ '';
+ };
+
+ listenAddress = mkOption {
+ type = types.str;
+ default = "[::1]";
+ description = ''
+ Address the server will listen on.
+ '';
+ };
+
+ port = mkOption {
+ type = types.port;
+ default = 8001;
+ description = ''
+ Port the server will listen on.
+ '';
+ };
+
+ plugins = mkOption {
+ type = types.functionTo (types.listOf types.package);
+ default = _: [];
+ defaultText = literalExpression ''
+ python3Packages: with python3Packages; [];
+ '';
+ description = ''
+ List of plugin packages to install.
+ '';
+ };
+
+ dataDir = mkOption {
+ type = types.str;
+ default = "/var/lib/netbox";
+ description = ''
+ Storage path of netbox.
+ '';
+ };
+
+ secretKeyFile = mkOption {
+ type = types.path;
+ description = ''
+ Path to a file containing the secret key.
+ '';
+ };
+
+ extraConfig = mkOption {
+ type = types.lines;
+ default = "";
+ description = ''
+ Additional lines of configuration appended to the configuration.py.
+ See the documentation for more possible options.
+ '';
+ };
+
+ enableLdap = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Enable LDAP-Authentication for Netbox.
+
+ This requires a configuration file being pass through ldapConfigPath.
+ '';
+ };
+
+ ldapConfigPath = mkOption {
+ type = types.path;
+ default = "";
+ description = ''
+ Path to the Configuration-File for LDAP-Authentification, will be loaded as ldap_config.py.
+ See the documentation for possible options.
+ '';
+ };
+ };
+
+ config = mkIf cfg.enable {
+ services.redis.servers.netbox.enable = true;
+
+ services.postgresql = {
+ enable = true;
+ ensureDatabases = [ "netbox" ];
+ ensureUsers = [
+ {
+ name = "netbox";
+ ensurePermissions = {
+ "DATABASE netbox" = "ALL PRIVILEGES";
+ };
+ }
+ ];
+ };
+
+ environment.systemPackages = [ netboxManageScript ];
+
+ systemd.targets.netbox = {
+ description = "Target for all NetBox services";
+ wantedBy = [ "multi-user.target" ];
+ after = [ "network-online.target" "redis-netbox.service" ];
+ };
+
+ systemd.services = let
+ defaultServiceConfig = {
+ WorkingDirectory = "${cfg.dataDir}";
+ User = "netbox";
+ Group = "netbox";
+ StateDirectory = "netbox";
+ StateDirectoryMode = "0750";
+ Restart = "on-failure";
+ };
+ in {
+ netbox-migration = {
+ description = "NetBox migrations";
+ wantedBy = [ "netbox.target" ];
+
+ environment = {
+ PYTHONPATH = pkg.pythonPath;
+ };
+
+ serviceConfig = defaultServiceConfig // {
+ Type = "oneshot";
+ ExecStart = ''
+ ${pkg}/bin/netbox migrate
+ '';
+ };
+ };
+
+ netbox = {
+ description = "NetBox WSGI Service";
+ wantedBy = [ "netbox.target" ];
+ after = [ "netbox-migration.service" ];
+
+ preStart = ''
+ ${pkg}/bin/netbox trace_paths --no-input
+ ${pkg}/bin/netbox collectstatic --no-input
+ ${pkg}/bin/netbox remove_stale_contenttypes --no-input
+ '';
+
+ environment = {
+ PYTHONPATH = pkg.pythonPath;
+ };
+
+ serviceConfig = defaultServiceConfig // {
+ ExecStart = ''
+ ${pkgs.python3Packages.gunicorn}/bin/gunicorn netbox.wsgi \
+ --bind ${cfg.listenAddress}:${toString cfg.port} \
+ --pythonpath ${pkg}/opt/netbox/netbox
+ '';
+ };
+ };
+
+ netbox-rq = {
+ description = "NetBox Request Queue Worker";
+ wantedBy = [ "netbox.target" ];
+ after = [ "netbox.service" ];
+
+ environment = {
+ PYTHONPATH = pkg.pythonPath;
+ };
+
+ serviceConfig = defaultServiceConfig // {
+ ExecStart = ''
+ ${pkg}/bin/netbox rqworker high default low
+ '';
+ };
+ };
+
+ netbox-housekeeping = {
+ description = "NetBox housekeeping job";
+ after = [ "netbox.service" ];
+
+ environment = {
+ PYTHONPATH = pkg.pythonPath;
+ };
+
+ serviceConfig = defaultServiceConfig // {
+ Type = "oneshot";
+ ExecStart = ''
+ ${pkg}/bin/netbox housekeeping
+ '';
+ };
+ };
+ };
+
+ systemd.timers.netbox-housekeeping = {
+ description = "Run NetBox housekeeping job";
+ wantedBy = [ "timers.target" ];
+
+ timerConfig = {
+ OnCalendar = "daily";
+ };
+ };
+
+ users.users.netbox = {
+ home = "${cfg.dataDir}";
+ isSystemUser = true;
+ group = "netbox";
+ };
+ users.groups.netbox = {};
+ users.groups."${config.services.redis.servers.netbox.user}".members = [ "netbox" ];
+ };
+}
diff --git a/nixos/modules/system/boot/stage-2-init.sh b/nixos/modules/system/boot/stage-2-init.sh
index a90f58042d2d..9a9d35c08db9 100755
--- a/nixos/modules/system/boot/stage-2-init.sh
+++ b/nixos/modules/system/boot/stage-2-init.sh
@@ -167,10 +167,6 @@ exec 1>&$logOutFd 2>&$logErrFd
exec {logOutFd}>&- {logErrFd}>&-
-# Start systemd.
+# Start systemd in a clean environment.
echo "starting systemd..."
-
-PATH=/run/current-system/systemd/lib/systemd:@fsPackagesPath@ \
- LOCALE_ARCHIVE=/run/current-system/sw/lib/locale/locale-archive @systemdUnitPathEnvVar@ \
- TZDIR=/etc/zoneinfo \
- exec @systemdExecutable@
+exec env - @systemdExecutable@ "$@"
diff --git a/nixos/modules/system/boot/stage-2.nix b/nixos/modules/system/boot/stage-2.nix
index fa2bf938df4f..f6461daf3116 100644
--- a/nixos/modules/system/boot/stage-2.nix
+++ b/nixos/modules/system/boot/stage-2.nix
@@ -19,11 +19,6 @@ let
pkgs.coreutils
pkgs.util-linux
] ++ lib.optional useHostResolvConf pkgs.openresolv);
- fsPackagesPath = lib.makeBinPath config.system.fsPackages;
- systemdUnitPathEnvVar = lib.optionalString (config.boot.extraSystemdUnitPaths != [])
- ("SYSTEMD_UNIT_PATH="
- + builtins.concatStringsSep ":" config.boot.extraSystemdUnitPaths
- + ":"); # If SYSTEMD_UNIT_PATH ends with an empty component (":"), the usual unit load path will be appended to the contents of the variable
postBootCommands = pkgs.writeText "local-cmds"
''
${config.boot.postBootCommands}
@@ -48,12 +43,10 @@ in
};
systemdExecutable = mkOption {
- default = "systemd";
+ default = "/run/current-system/systemd/lib/systemd/systemd";
type = types.str;
description = ''
- The program to execute to start systemd. Typically
- systemd, which will find systemd in the
- PATH.
+ The program to execute to start systemd.
'';
};
diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix
index 057474c607ac..297a80d4681b 100644
--- a/nixos/modules/system/boot/systemd.nix
+++ b/nixos/modules/system/boot/systemd.nix
@@ -302,6 +302,16 @@ in
'';
};
+ systemd.managerEnvironment = mkOption {
+ type = with types; attrsOf (nullOr (oneOf [ str path package ]));
+ default = {};
+ example = { SYSTEMD_LOG_LEVEL = "debug"; };
+ description = ''
+ Environment variables of PID 1. These variables are
+ not passed to started units.
+ '';
+ };
+
systemd.enableCgroupAccounting = mkOption {
default = true;
type = types.bool;
@@ -470,11 +480,13 @@ in
enabledUpstreamSystemUnits = filter (n: ! elem n cfg.suppressedSystemUnits) upstreamSystemUnits;
enabledUnits = filterAttrs (n: v: ! elem n cfg.suppressedSystemUnits) cfg.units;
+
in ({
"systemd/system".source = generateUnits "system" enabledUnits enabledUpstreamSystemUnits upstreamSystemWants;
"systemd/system.conf".text = ''
[Manager]
+ ManagerEnvironment=${lib.concatStringsSep " " (lib.mapAttrsToList (n: v: "${n}=${lib.escapeShellArg v}") cfg.managerEnvironment)}
${optionalString config.systemd.enableCgroupAccounting ''
DefaultCPUAccounting=yes
DefaultIOAccounting=yes
@@ -542,6 +554,17 @@ in
(v: let n = escapeSystemdPath v.where;
in nameValuePair "${n}.automount" (automountToUnit n v)) cfg.automounts);
+ # Environment of PID 1
+ systemd.managerEnvironment = {
+ # Doesn't contain systemd itself - everything works so it seems to use the compiled-in value for its tools
+ PATH = lib.makeBinPath config.system.fsPackages;
+ LOCALE_ARCHIVE = "/run/current-system/sw/lib/locale/locale-archive";
+ TZDIR = "/etc/zoneinfo";
+ # If SYSTEMD_UNIT_PATH ends with an empty component (":"), the usual unit load path will be appended to the contents of the variable
+ SYSTEMD_UNIT_PATH = lib.mkIf (config.boot.extraSystemdUnitPaths != []) "${builtins.concatStringsSep ":" config.boot.extraSystemdUnitPaths}:";
+ };
+
+
system.requiredKernelConfig = map config.lib.kernelConfig.isEnabled
[ "DEVTMPFS" "CGROUPS" "INOTIFY_USER" "SIGNALFD" "TIMERFD" "EPOLL" "NET"
"SYSFS" "PROC_FS" "FHANDLE" "CRYPTO_USER_API_HASH" "CRYPTO_HMAC"
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index cb6089983f8c..ffccb6b44660 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -341,6 +341,7 @@ in
networking.networkd = handleTest ./networking.nix { networkd = true; };
networking.scripted = handleTest ./networking.nix { networkd = false; };
specialisation = handleTest ./specialisation.nix {};
+ netbox = handleTest ./web-apps/netbox.nix {};
# TODO: put in networking.nix after the test becomes more complete
networkingProxy = handleTest ./networking-proxy.nix {};
nextcloud = handleTest ./nextcloud {};
diff --git a/nixos/tests/botamusique.nix b/nixos/tests/botamusique.nix
index ccb105dc142f..ecb79cb69867 100644
--- a/nixos/tests/botamusique.nix
+++ b/nixos/tests/botamusique.nix
@@ -6,6 +6,10 @@ import ./make-test-python.nix ({ pkgs, lib, ...} :
nodes = {
machine = { config, ... }: {
+ networking.extraHosts = ''
+ 127.0.0.1 all.api.radio-browser.info
+ '';
+
services.murmur = {
enable = true;
registerName = "NixOS tests";
diff --git a/nixos/tests/systemd.nix b/nixos/tests/systemd.nix
index f86daa5eea97..94805ee5781a 100644
--- a/nixos/tests/systemd.nix
+++ b/nixos/tests/systemd.nix
@@ -192,5 +192,9 @@ import ./make-test-python.nix ({ pkgs, ... }: {
with subtest("systemd per-unit accounting works"):
assert "IP traffic received: 84B" in output_ping
assert "IP traffic sent: 84B" in output_ping
+
+ with subtest("systemd environment is properly set"):
+ machine.systemctl("daemon-reexec") # Rewrites /proc/1/environ
+ machine.succeed("grep -q TZDIR=/etc/zoneinfo /proc/1/environ")
'';
})
diff --git a/nixos/tests/web-apps/netbox.nix b/nixos/tests/web-apps/netbox.nix
new file mode 100644
index 000000000000..95f24029ec92
--- /dev/null
+++ b/nixos/tests/web-apps/netbox.nix
@@ -0,0 +1,30 @@
+import ../make-test-python.nix ({ lib, pkgs, ... }: {
+ name = "netbox";
+
+ meta = with lib.maintainers; {
+ maintainers = [ n0emis ];
+ };
+
+ machine = { ... }: {
+ services.netbox = {
+ enable = true;
+ secretKeyFile = pkgs.writeText "secret" ''
+ abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
+ '';
+ };
+ };
+
+ testScript = ''
+ machine.start()
+ machine.wait_for_unit("netbox.target")
+ machine.wait_until_succeeds("journalctl --since -1m --unit netbox --grep Listening")
+
+ with subtest("Home screen loads"):
+ machine.succeed(
+ "curl -sSfL http://[::1]:8001 | grep 'Home | NetBox'"
+ )
+
+ with subtest("Staticfiles are generated"):
+ machine.succeed("test -e /var/lib/netbox/static/netbox.js")
+ '';
+})
diff --git a/pkgs/applications/misc/fuzzel/default.nix b/pkgs/applications/misc/fuzzel/default.nix
index 5668006dfd3f..d697e8412adc 100644
--- a/pkgs/applications/misc/fuzzel/default.nix
+++ b/pkgs/applications/misc/fuzzel/default.nix
@@ -60,6 +60,8 @@ stdenv.mkDerivation rec {
"-Dsvg-backend=${withSVGBackend}"
];
+ CFLAGS = "-Wno-error=comment"; # https://gitlab.gnome.org/GNOME/librsvg/-/issues/856
+
meta = with lib; {
description = "Wayland-native application launcher, similar to rofi’s drun mode";
homepage = "https://codeberg.org/dnkl/fuzzel";
diff --git a/pkgs/applications/networking/instant-messengers/profanity/default.nix b/pkgs/applications/networking/instant-messengers/profanity/default.nix
index 42671f5d974b..2034f1761f2e 100644
--- a/pkgs/applications/networking/instant-messengers/profanity/default.nix
+++ b/pkgs/applications/networking/instant-messengers/profanity/default.nix
@@ -1,7 +1,6 @@
{ lib
, stdenv
, fetchFromGitHub
-, fetchpatch
, autoconf-archive
, autoreconfHook
, cmocka
@@ -10,7 +9,7 @@
, expect
, glib
, glibcLocales
-, libmesode
+, libstrophe
, libmicrohttpd
, libotr
, libuuid
@@ -36,34 +35,17 @@ assert omemoSupport -> libsignal-protocol-c != null && libgcrypt != null;
stdenv.mkDerivation rec {
pname = "profanity";
- version = "0.11.1";
+ version = "0.12.0";
src = fetchFromGitHub {
owner = "profanity-im";
repo = "profanity";
rev = version;
- hash = "sha256-8WGHOy0fSW8o7vMCYZqqpvDsn81JZefM6wGfjQ5iKbU=";
+ hash = "sha256-kmixWp9Q2tMVp+tk5kbTdBfgRNghKk3+48L582hqlm8=";
};
patches = [
./patches/packages-osx.patch
-
- # pullupstream fixes for ncurses-6.3
- (fetchpatch {
- name = "ncurses-6.3-p1.patch";
- url = "https://github.com/profanity-im/profanity/commit/e5b6258c997d4faf36e2ffb8a47b386c5629b4eb.patch";
- sha256 = "sha256-4rwpvsgfIQ60GcLS0O7Hyn7ZidREjYT+dVND54z0zrw=";
- })
- (fetchpatch {
- name = "ncurses-6.3-p2.patch";
- url = "https://github.com/profanity-im/profanity/commit/fd9ccec8dc604902bbb1d444dba4223ccee0a092.patch";
- sha256 = "sha256-4gZaXoDNulBIR+e6y/9bJKXVactCHWS8H8lPJaJwVwE=";
- })
- (fetchpatch {
- name = "ncurses-6.3-p3.patch";
- url = "https://github.com/profanity-im/profanity/commit/242696f09a49c8446ba6aef8bdad65fb58a77715.patch";
- sha256 = "sha256-BOYHkae9aIA7HaVM23Yu25TTK9e3SuV+u0FEi7Sn62I=";
- })
];
enableParallelBuilding = true;
@@ -81,7 +63,7 @@ stdenv.mkDerivation rec {
expat
expect
glib
- libmesode
+ libstrophe
libmicrohttpd
libotr
libuuid
diff --git a/pkgs/applications/science/misc/rink/default.nix b/pkgs/applications/science/misc/rink/default.nix
index d319dbe3e704..18b1e46fde2e 100644
--- a/pkgs/applications/science/misc/rink/default.nix
+++ b/pkgs/applications/science/misc/rink/default.nix
@@ -2,17 +2,17 @@
, libiconv, Security }:
rustPlatform.buildRustPackage rec {
- version = "0.6.2";
+ version = "0.6.3";
pname = "rink";
src = fetchFromGitHub {
owner = "tiffany352";
repo = "rink-rs";
rev = "v${version}";
- sha256 = "sha256-l2Rj15zaJm94EHwvOssfvYQNOoWj45Nq9M85n+A0vo4=";
+ sha256 = "sha256-AhC3c6CpV0tlD6d/hFWt7hGj2UsXsOCeujkRSDlpvCM=";
};
- cargoSha256 = "sha256-GhuvwVkDRFjC6BghaNMFZZG9hResTN1u0AuvIXlFmig=";
+ cargoSha256 = "sha256-Xo5iYwL4Db+GWMl5UXbPmj0Y0PJYR4Q0aUGnYCd+NB8=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ ncurses ]
diff --git a/pkgs/applications/version-management/git-and-tools/gh/default.nix b/pkgs/applications/version-management/git-and-tools/gh/default.nix
index 36b813f547e0..3a66a4d8af7d 100644
--- a/pkgs/applications/version-management/git-and-tools/gh/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/gh/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "gh";
- version = "2.6.0";
+ version = "2.7.0";
src = fetchFromGitHub {
owner = "cli";
repo = "cli";
rev = "v${version}";
- sha256 = "sha256-NvVm/deO4LSIl5TSziqsrGt9atCXjt4UZ/VJfmX3i4c=";
+ sha256 = "sha256-edlGJD+80k1ySpyNcKc5c2O0MX+S4fQgH5mwHQUxXM8=";
};
- vendorSha256 = "sha256-pBjg6WyD61+Bl3ttcpl/b9XoWBCi7cDvE8NPaZGu7Aw=";
+ vendorSha256 = "sha256-YLkNua0Pz0gVIYnWOzOlV5RuLBaoZ4l7l1Pf4QIfUVQ=";
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/desktops/gnome/apps/gnome-books/default.nix b/pkgs/desktops/gnome/apps/gnome-books/default.nix
index 0e8b322cf5ed..ec99e915fab1 100644
--- a/pkgs/desktops/gnome/apps/gnome-books/default.nix
+++ b/pkgs/desktops/gnome/apps/gnome-books/default.nix
@@ -1,8 +1,10 @@
-{ lib, stdenv
+{ stdenv
+, lib
, meson
, ninja
, gettext
, fetchurl
+, fetchpatch
, evince
, gjs
, pkg-config
@@ -35,6 +37,15 @@ stdenv.mkDerivation rec {
sha256 = "0c41l8m2di8h39bmk2fnhpwglwp6qhljmwqqbihzp4ay9976zrc5";
};
+ patches = [
+ # Fix build with meson 0.61
+ # https://gitlab.gnome.org/GNOME/gnome-books/-/merge_requests/62
+ (fetchpatch {
+ url = "https://gitlab.gnome.org/GNOME/gnome-books/-/commit/2663dcdaaaa71f067a4c2d0005eecc0fdf940bf5.patch";
+ sha256 = "v2mLzrxSWrkJ0N6seR8jNXX14FsneEPuE9ELLVUe6+E=";
+ })
+ ];
+
nativeBuildInputs = [
meson
ninja
diff --git a/pkgs/desktops/gnome/core/gnome-screenshot/default.nix b/pkgs/desktops/gnome/core/gnome-screenshot/default.nix
index ba6d05b3cbf8..3904f1443f7d 100644
--- a/pkgs/desktops/gnome/core/gnome-screenshot/default.nix
+++ b/pkgs/desktops/gnome/core/gnome-screenshot/default.nix
@@ -1,18 +1,63 @@
-{ lib, stdenv, gettext, libxml2, libhandy, fetchurl, pkg-config, libcanberra-gtk3
-, gtk3, glib, meson, ninja, python3, wrapGAppsHook, appstream-glib, desktop-file-utils
-, gnome, gsettings-desktop-schemas }:
+{ stdenv
+, lib
+, gettext
+, libxml2
+, libhandy
+, fetchurl
+, fetchpatch
+, pkg-config
+, libcanberra-gtk3
+, gtk3
+, glib
+, meson
+, ninja
+, python3
+, wrapGAppsHook
+, appstream-glib
+, desktop-file-utils
+, gnome
+, gsettings-desktop-schemas
+}:
-let
+stdenv.mkDerivation rec {
pname = "gnome-screenshot";
version = "41.0";
-in stdenv.mkDerivation rec {
- name = "${pname}-${version}";
src = fetchurl {
- url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${name}.tar.xz";
+ url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "Stt97JJkKPdCY9V5ZnPPFC5HILbnaPVGio0JM/mMlZc=";
};
+ patches = [
+ # Fix build with meson 0.61
+ # https://gitlab.gnome.org/GNOME/gnome-screenshot/-/issues/186
+ (fetchpatch {
+ url = "https://gitlab.gnome.org/GNOME/gnome-screenshot/-/commit/b60dad3c2536c17bd201f74ad8e40eb74385ed9f.patch";
+ sha256 = "Js83h/3xxcw2hsgjzGa5lAYFXVrt6MPhXOTh5dZTx/w=";
+ })
+ ];
+
+ nativeBuildInputs = [
+ meson
+ ninja
+ pkg-config
+ gettext
+ appstream-glib
+ libxml2
+ desktop-file-utils
+ python3
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ gtk3
+ glib
+ libcanberra-gtk3
+ libhandy
+ gnome.adwaita-icon-theme
+ gsettings-desktop-schemas
+ ];
+
doCheck = true;
postPatch = ''
@@ -20,12 +65,6 @@ in stdenv.mkDerivation rec {
patchShebangs build-aux/postinstall.py
'';
- nativeBuildInputs = [ meson ninja pkg-config gettext appstream-glib libxml2 desktop-file-utils python3 wrapGAppsHook ];
- buildInputs = [
- gtk3 glib libcanberra-gtk3 libhandy gnome.adwaita-icon-theme
- gsettings-desktop-schemas
- ];
-
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
@@ -34,10 +73,10 @@ in stdenv.mkDerivation rec {
};
meta = with lib; {
- homepage = "https://en.wikipedia.org/wiki/GNOME_Screenshot";
+ homepage = "https://gitlab.gnome.org/GNOME/gnome-screenshot";
description = "Utility used in the GNOME desktop environment for taking screenshots";
maintainers = teams.gnome.members;
- license = licenses.gpl2;
+ license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}
diff --git a/pkgs/desktops/gnome/devtools/devhelp/default.nix b/pkgs/desktops/gnome/devtools/devhelp/default.nix
index 2ad3c3ff39ad..4a024f6ff413 100644
--- a/pkgs/desktops/gnome/devtools/devhelp/default.nix
+++ b/pkgs/desktops/gnome/devtools/devhelp/default.nix
@@ -1,5 +1,7 @@
-{ lib, stdenv
+{ stdenv
+, lib
, fetchurl
+, fetchpatch
, meson
, ninja
, pkg-config
@@ -29,6 +31,15 @@ stdenv.mkDerivation rec {
sha256 = "7KqQsPTaqPsgMPbcaQv1M/+Zp3NDf+Dhis/oLZl/YNI=";
};
+ patches = [
+ # Fix build with meson 0.61
+ # https://gitlab.gnome.org/GNOME/devhelp/-/issues/59
+ (fetchpatch {
+ url = "https://gitlab.gnome.org/GNOME/devhelp/-/commit/281bade14c1925cf9e7329fa8e9cf2d82512c66f.patch";
+ sha256 = "LmHoeQ0zJwOhuasAUYy8FfpDnEO+UNfEb293uKttYKo=";
+ })
+ ];
+
nativeBuildInputs = [
meson
ninja
diff --git a/pkgs/desktops/gnome/games/gnome-2048/default.nix b/pkgs/desktops/gnome/games/gnome-2048/default.nix
index 90bd99e4a7bf..137521c8bba3 100644
--- a/pkgs/desktops/gnome/games/gnome-2048/default.nix
+++ b/pkgs/desktops/gnome/games/gnome-2048/default.nix
@@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchurl
+, fetchpatch
, wrapGAppsHook
, meson
, vala
@@ -23,6 +24,15 @@ stdenv.mkDerivation rec {
sha256 = "0s5fg4z5in1h39fcr69j1qc5ynmg7a8mfprk3mc3c0csq3snfwz2";
};
+ patches = [
+ # Fix build with meson 0.61
+ # https://gitlab.gnome.org/GNOME/gnome-2048/-/merge_requests/21
+ (fetchpatch {
+ url = "https://gitlab.gnome.org/GNOME/gnome-2048/-/commit/194e22699f7166a016cd39ba26dd719aeecfc868.patch";
+ sha256 = "Qpn/OJJwblRm5Pi453aU2HwbrNjsf+ftmSnns/5qZ9E=";
+ })
+ ];
+
nativeBuildInputs = [
itstool
meson
diff --git a/pkgs/development/python-modules/dash/default.nix b/pkgs/development/python-modules/dash/default.nix
index dc0813acefa6..dfae5ea249d2 100644
--- a/pkgs/development/python-modules/dash/default.nix
+++ b/pkgs/development/python-modules/dash/default.nix
@@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "dash";
- version = "2.3.0";
+ version = "2.3.1";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "plotly";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-iH56c2PO1G/NlLmYC+6sdAMZ+kXvUkpkqxfnl9EmDsQ=";
+ sha256 = "sha256-gsP/WbALUkO3AB0uuX/ByhzaeIDSUUE1Cb8Cnh4GEh0=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/desktop-notifier/default.nix b/pkgs/development/python-modules/desktop-notifier/default.nix
index e0463a6c30c8..6a2d3bacb12e 100644
--- a/pkgs/development/python-modules/desktop-notifier/default.nix
+++ b/pkgs/development/python-modules/desktop-notifier/default.nix
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "desktop-notifier";
- version = "3.3.5";
+ version = "3.4.0";
format = "pyproject";
disabled = pythonOlder "3.6";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = "SamSchott";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-tXvA1EddTrOcTupQqZrX58jXiAqB5gMJP+OE3fZxGJI=";
+ sha256 = "sha256-lOXoiWY6gyWBL4RLrvslqcMmwtjMTOaHJZzsDO+C/F4=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/dm-haiku/default.nix b/pkgs/development/python-modules/dm-haiku/default.nix
index 14ceebf0a19b..55a91006b06a 100644
--- a/pkgs/development/python-modules/dm-haiku/default.nix
+++ b/pkgs/development/python-modules/dm-haiku/default.nix
@@ -7,6 +7,7 @@
, jaxlib
, jmp
, lib
+, pytest-xdist
, pytestCheckHook
, tabulate
, tensorflow
@@ -33,9 +34,11 @@ buildPythonPackage rec {
cloudpickle
dm-tree
jaxlib
+ pytest-xdist
pytestCheckHook
tensorflow
];
+ pytestFlagsArray = [ "-n $NIX_BUILD_CORES" ];
pythonImportsCheck = [
"haiku"
diff --git a/pkgs/development/python-modules/flax/default.nix b/pkgs/development/python-modules/flax/default.nix
index 3ac8166bbbdd..1f1622dc1aea 100644
--- a/pkgs/development/python-modules/flax/default.nix
+++ b/pkgs/development/python-modules/flax/default.nix
@@ -7,6 +7,7 @@
, msgpack
, numpy
, optax
+, pytest-xdist
, pytestCheckHook
, tensorflow
}:
@@ -37,9 +38,11 @@ buildPythonPackage rec {
checkInputs = [
keras
+ pytest-xdist
pytestCheckHook
tensorflow
];
+ pytestFlagsArray = [ "-n $NIX_BUILD_CORES" ];
disabledTestPaths = [
# Docs test, needs extra deps + we're not interested in it.
diff --git a/pkgs/development/python-modules/huawei-lte-api/default.nix b/pkgs/development/python-modules/huawei-lte-api/default.nix
index b62ab4f0e77a..df7616175497 100644
--- a/pkgs/development/python-modules/huawei-lte-api/default.nix
+++ b/pkgs/development/python-modules/huawei-lte-api/default.nix
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "huawei-lte-api";
- version = "1.5.4";
+ version = "1.6";
disabled = pythonOlder "3.4";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = "Salamek";
repo = "huawei-lte-api";
rev = version;
- hash = "sha256-aTxP2lVrGr2B+ELz7fnVZVB0nm9HHAb15wDafV44h7M=";
+ hash = "sha256-dJWGs5ZFVYp8/3U24eVRMtA7Marpd88GeW8uX+n6nhY=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/libcloud/default.nix b/pkgs/development/python-modules/libcloud/default.nix
index d46e86ca106b..375c99faf7c4 100644
--- a/pkgs/development/python-modules/libcloud/default.nix
+++ b/pkgs/development/python-modules/libcloud/default.nix
@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "apache-libcloud";
- version = "3.5.0";
+ version = "3.5.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-Bz8QSSl2+qODoisTuCwkmCfP6QoIPHFiDoMW6BWm2zs=";
+ sha256 = "sha256-7JLDlHj+kKJ+PP6IbEPLy5iaRZPCOf+fLB3XdSCGPPI=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/optax/default.nix b/pkgs/development/python-modules/optax/default.nix
index 6a3b6a9d3e67..ae8cfdbbc282 100644
--- a/pkgs/development/python-modules/optax/default.nix
+++ b/pkgs/development/python-modules/optax/default.nix
@@ -6,6 +6,7 @@
, jaxlib
, lib
, numpy
+, pytest-xdist
, pytestCheckHook
}:
@@ -32,8 +33,10 @@ buildPythonPackage rec {
checkInputs = [
dm-haiku
+ pytest-xdist
pytestCheckHook
];
+ pytestFlagsArray = [ "-n $NIX_BUILD_CORES" ];
pythonImportsCheck = [
"optax"
diff --git a/pkgs/development/python-modules/social-auth-app-django/default.nix b/pkgs/development/python-modules/social-auth-app-django/default.nix
new file mode 100644
index 000000000000..bd38ef3a5a24
--- /dev/null
+++ b/pkgs/development/python-modules/social-auth-app-django/default.nix
@@ -0,0 +1,34 @@
+{ lib, buildPythonPackage, fetchFromGitHub, social-auth-core, django, python }:
+
+buildPythonPackage rec {
+ pname = "social-auth-app-django";
+ version = "5.0.0";
+
+ src = fetchFromGitHub {
+ owner = "python-social-auth";
+ repo = "social-app-django";
+ rev = version;
+ sha256 = "sha256-ONhdXxclHRpVtijpKEZlmGDhjid/jnTaPq6LQtjxCC4=";
+ };
+
+ propagatedBuildInputs = [
+ social-auth-core
+ ];
+
+ pythonImportsCheck = [ "social_django" ];
+
+ checkInputs = [
+ django
+ ];
+
+ checkPhase = ''
+ ${python.interpreter} -m django test --settings="tests.settings"
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/python-social-auth/social-app-django";
+ description = "Python Social Auth - Application - Django";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ n0emis ];
+ };
+}
diff --git a/pkgs/development/python-modules/social-auth-core/default.nix b/pkgs/development/python-modules/social-auth-core/default.nix
new file mode 100644
index 000000000000..ede138218e01
--- /dev/null
+++ b/pkgs/development/python-modules/social-auth-core/default.nix
@@ -0,0 +1,63 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, requests
+, oauthlib
+, requests_oauthlib
+, pyjwt
+, cryptography
+, defusedxml
+, python3-openid
+, python-jose
+, python3-saml
+, pytestCheckHook
+, httpretty
+}:
+
+buildPythonPackage rec {
+ pname = "social-auth-core";
+ version = "4.2.0";
+
+ src = fetchFromGitHub {
+ owner = "python-social-auth";
+ repo = "social-core";
+ rev = version;
+ sha256 = "sha256-kaL6sfAyQlzxszCEbhW7sns/mcOv0U+QgplmUd6oegQ=";
+ };
+
+ # Disable checking the code coverage
+ prePatch = ''
+ substituteInPlace social_core/tests/requirements.txt \
+ --replace "coverage>=3.6" "" \
+ --replace "pytest-cov>=2.7.1" ""
+
+ substituteInPlace tox.ini \
+ --replace "{posargs:-v --cov=social_core}" "{posargs:-v}"
+ '';
+
+ propagatedBuildInputs = [
+ requests
+ oauthlib
+ requests_oauthlib
+ pyjwt
+ cryptography
+ defusedxml
+ python3-openid
+ python-jose
+ python3-saml
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ httpretty
+ ];
+
+ pythonImportsCheck = [ "social_core" ];
+
+ meta = with lib; {
+ homepage = "https://github.com/python-social-auth/social-core";
+ description = "Python Social Auth - Core";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ n0emis ];
+ };
+}
diff --git a/pkgs/development/python-modules/tensorflow-datasets/default.nix b/pkgs/development/python-modules/tensorflow-datasets/default.nix
index 98e38bba56ad..b97461394d13 100644
--- a/pkgs/development/python-modules/tensorflow-datasets/default.nix
+++ b/pkgs/development/python-modules/tensorflow-datasets/default.nix
@@ -24,6 +24,7 @@
, protobuf
, pycocotools
, pydub
+, pytest-xdist
, pytestCheckHook
, requests
, scikitimage
@@ -88,12 +89,14 @@ buildPythonPackage rec {
pillow
pycocotools
pydub
+ pytest-xdist
pytestCheckHook
scikitimage
scipy
tensorflow
tifffile
];
+ pytestFlagsArray = [ "-n $NIX_BUILD_CORES" ];
disabledTestPaths = [
# Sandbox violations: network access, filesystem write attempts outside of build dir, ...
diff --git a/pkgs/development/tools/wp-cli/default.nix b/pkgs/development/tools/wp-cli/default.nix
index 0d828eb8b9ed..a4ac97c9264f 100644
--- a/pkgs/development/tools/wp-cli/default.nix
+++ b/pkgs/development/tools/wp-cli/default.nix
@@ -54,5 +54,6 @@ stdenv.mkDerivation rec {
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.all;
+ mainProgram = "wp";
};
}
diff --git a/pkgs/os-specific/linux/rdma-core/default.nix b/pkgs/os-specific/linux/rdma-core/default.nix
index f7543291deda..d9f6196d931d 100644
--- a/pkgs/os-specific/linux/rdma-core/default.nix
+++ b/pkgs/os-specific/linux/rdma-core/default.nix
@@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
pname = "rdma-core";
- version = "39.0";
+ version = "39.1";
src = fetchFromGitHub {
owner = "linux-rdma";
repo = "rdma-core";
rev = "v${version}";
- sha256 = "sha256-7Z06bdCtv/gdZKzKfcU+JrWl4+b6b/cdKp8pMLCZZo0=";
+ sha256 = "19jfrb0jv050abxswzh34nx2zr8if3rb2k5a7n5ydvi3x9r8827w";
};
strictDeps = true;
@@ -23,6 +23,12 @@ stdenv.mkDerivation rec {
"-DCMAKE_INSTALL_SHAREDSTATEDIR=/var/lib"
];
+ patches = [
+ # this has been fixed in master. As soon as it gets into a release, this
+ # patch won't apply anymore and can be removed.
+ ./pkg-config-template.patch
+ ];
+
postPatch = ''
substituteInPlace srp_daemon/srp_daemon.sh.in \
--replace /bin/rm rm
diff --git a/pkgs/os-specific/linux/rdma-core/pkg-config-template.patch b/pkgs/os-specific/linux/rdma-core/pkg-config-template.patch
new file mode 100644
index 000000000000..22898bc75282
--- /dev/null
+++ b/pkgs/os-specific/linux/rdma-core/pkg-config-template.patch
@@ -0,0 +1,14 @@
+diff -ru source/buildlib/template.pc.in source-fixed/buildlib/template.pc.in
+--- source/buildlib/template.pc.in 1970-01-01 01:00:01.000000000 +0100
++++ source-fixed/buildlib/template.pc.in 2022-03-30 22:29:12.988625941 +0200
+@@ -1,7 +1,6 @@
+-prefix=@CMAKE_INSTALL_PREFIX@
+-exec_prefix=${prefix}
+-libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@
+-includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@
++exec_prefix=@CMAKE_INSTALL_PREFIX@
++libdir=@CMAKE_INSTALL_LIBDIR@
++includedir=@CMAKE_INSTALL_INCLUDEDIR@
+
+ Name: lib@PC_LIB_NAME@
+ Description: RDMA Core Userspace Library
diff --git a/pkgs/servers/matrix-synapse/matrix-appservice-irc/node-packages.nix b/pkgs/servers/matrix-synapse/matrix-appservice-irc/node-packages.nix
index af405451e58b..92885cee8775 100644
--- a/pkgs/servers/matrix-synapse/matrix-appservice-irc/node-packages.nix
+++ b/pkgs/servers/matrix-synapse/matrix-appservice-irc/node-packages.nix
@@ -4,121 +4,229 @@
let
sources = {
- "@babel/code-frame-7.12.11" = {
- name = "_at_babel_slash_code-frame";
- packageName = "@babel/code-frame";
- version = "7.12.11";
+ "@alloc/quick-lru-5.2.0" = {
+ name = "_at_alloc_slash_quick-lru";
+ packageName = "@alloc/quick-lru";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz";
- sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==";
+ url = "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz";
+ sha512 = "UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==";
};
};
- "@babel/code-frame-7.12.13" = {
- name = "_at_babel_slash_code-frame";
- packageName = "@babel/code-frame";
- version = "7.12.13";
+ "@ampproject/remapping-2.1.2" = {
+ name = "_at_ampproject_slash_remapping";
+ packageName = "@ampproject/remapping";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz";
- sha512 = "HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==";
+ url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz";
+ sha512 = "hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==";
};
};
- "@babel/generator-7.14.3" = {
+ "@babel/code-frame-7.16.7" = {
+ name = "_at_babel_slash_code-frame";
+ packageName = "@babel/code-frame";
+ version = "7.16.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz";
+ sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==";
+ };
+ };
+ "@babel/compat-data-7.17.0" = {
+ name = "_at_babel_slash_compat-data";
+ packageName = "@babel/compat-data";
+ version = "7.17.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.0.tgz";
+ sha512 = "392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==";
+ };
+ };
+ "@babel/core-7.17.4" = {
+ name = "_at_babel_slash_core";
+ packageName = "@babel/core";
+ version = "7.17.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/core/-/core-7.17.4.tgz";
+ sha512 = "R9x5r4t4+hBqZTmioSnkrW+I6NmbojwjGT8p4G2Gw1thWbXIHGDnmGdLdFw0/7ljucdIrNRp7Npgb4CyBYzzJg==";
+ };
+ };
+ "@babel/generator-7.17.3" = {
name = "_at_babel_slash_generator";
packageName = "@babel/generator";
- version = "7.14.3";
+ version = "7.17.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/generator/-/generator-7.14.3.tgz";
- sha512 = "bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==";
+ url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.3.tgz";
+ sha512 = "+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg==";
};
};
- "@babel/helper-function-name-7.14.2" = {
+ "@babel/helper-compilation-targets-7.16.7" = {
+ name = "_at_babel_slash_helper-compilation-targets";
+ packageName = "@babel/helper-compilation-targets";
+ version = "7.16.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz";
+ sha512 = "mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==";
+ };
+ };
+ "@babel/helper-environment-visitor-7.16.7" = {
+ name = "_at_babel_slash_helper-environment-visitor";
+ packageName = "@babel/helper-environment-visitor";
+ version = "7.16.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz";
+ sha512 = "SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==";
+ };
+ };
+ "@babel/helper-function-name-7.16.7" = {
name = "_at_babel_slash_helper-function-name";
packageName = "@babel/helper-function-name";
- version = "7.14.2";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz";
- sha512 = "NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==";
+ url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz";
+ sha512 = "QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==";
};
};
- "@babel/helper-get-function-arity-7.12.13" = {
+ "@babel/helper-get-function-arity-7.16.7" = {
name = "_at_babel_slash_helper-get-function-arity";
packageName = "@babel/helper-get-function-arity";
- version = "7.12.13";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz";
- sha512 = "DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==";
+ url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz";
+ sha512 = "flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==";
};
};
- "@babel/helper-split-export-declaration-7.12.13" = {
+ "@babel/helper-hoist-variables-7.16.7" = {
+ name = "_at_babel_slash_helper-hoist-variables";
+ packageName = "@babel/helper-hoist-variables";
+ version = "7.16.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz";
+ sha512 = "m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==";
+ };
+ };
+ "@babel/helper-module-imports-7.16.7" = {
+ name = "_at_babel_slash_helper-module-imports";
+ packageName = "@babel/helper-module-imports";
+ version = "7.16.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz";
+ sha512 = "LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==";
+ };
+ };
+ "@babel/helper-module-transforms-7.16.7" = {
+ name = "_at_babel_slash_helper-module-transforms";
+ packageName = "@babel/helper-module-transforms";
+ version = "7.16.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz";
+ sha512 = "gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==";
+ };
+ };
+ "@babel/helper-simple-access-7.16.7" = {
+ name = "_at_babel_slash_helper-simple-access";
+ packageName = "@babel/helper-simple-access";
+ version = "7.16.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz";
+ sha512 = "ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==";
+ };
+ };
+ "@babel/helper-split-export-declaration-7.16.7" = {
name = "_at_babel_slash_helper-split-export-declaration";
packageName = "@babel/helper-split-export-declaration";
- version = "7.12.13";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz";
- sha512 = "tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==";
+ url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz";
+ sha512 = "xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==";
};
};
- "@babel/helper-validator-identifier-7.14.0" = {
+ "@babel/helper-validator-identifier-7.16.7" = {
name = "_at_babel_slash_helper-validator-identifier";
packageName = "@babel/helper-validator-identifier";
- version = "7.14.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz";
- sha512 = "V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==";
+ url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz";
+ sha512 = "hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==";
};
};
- "@babel/highlight-7.14.0" = {
+ "@babel/helper-validator-option-7.16.7" = {
+ name = "_at_babel_slash_helper-validator-option";
+ packageName = "@babel/helper-validator-option";
+ version = "7.16.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz";
+ sha512 = "TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==";
+ };
+ };
+ "@babel/helpers-7.17.2" = {
+ name = "_at_babel_slash_helpers";
+ packageName = "@babel/helpers";
+ version = "7.17.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.2.tgz";
+ sha512 = "0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ==";
+ };
+ };
+ "@babel/highlight-7.16.10" = {
name = "_at_babel_slash_highlight";
packageName = "@babel/highlight";
- version = "7.14.0";
+ version = "7.16.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz";
- sha512 = "YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==";
+ url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz";
+ sha512 = "5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==";
};
};
- "@babel/parser-7.14.3" = {
+ "@babel/parser-7.17.3" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.14.3";
+ version = "7.17.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.14.3.tgz";
- sha512 = "7MpZDIfI7sUC5zWo2+foJ50CSI5lcqDehZ0lVgIhSi4bFEk94fLAKlF3Q0nzSQQ+ca0lm+O6G9ztKVBeu8PMRQ==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.3.tgz";
+ sha512 = "7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==";
};
};
- "@babel/runtime-7.14.0" = {
+ "@babel/runtime-7.17.2" = {
name = "_at_babel_slash_runtime";
packageName = "@babel/runtime";
- version = "7.14.0";
+ version = "7.17.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz";
- sha512 = "JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==";
+ url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.2.tgz";
+ sha512 = "hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==";
};
};
- "@babel/template-7.12.13" = {
+ "@babel/template-7.16.7" = {
name = "_at_babel_slash_template";
packageName = "@babel/template";
- version = "7.12.13";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz";
- sha512 = "/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==";
+ url = "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz";
+ sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==";
};
};
- "@babel/traverse-7.14.2" = {
+ "@babel/traverse-7.17.3" = {
name = "_at_babel_slash_traverse";
packageName = "@babel/traverse";
- version = "7.14.2";
+ version = "7.17.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.2.tgz";
- sha512 = "TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==";
+ url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz";
+ sha512 = "5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==";
};
};
- "@babel/types-7.14.2" = {
+ "@babel/types-7.17.0" = {
name = "_at_babel_slash_types";
packageName = "@babel/types";
- version = "7.14.2";
+ version = "7.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/types/-/types-7.14.2.tgz";
- sha512 = "SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw==";
+ url = "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz";
+ sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==";
+ };
+ };
+ "@colors/colors-1.5.0" = {
+ name = "_at_colors_slash_colors";
+ packageName = "@colors/colors";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz";
+ sha512 = "ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==";
};
};
"@dabh/diagnostics-2.0.2" = {
@@ -130,13 +238,76 @@ let
sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q==";
};
};
- "@eslint/eslintrc-0.4.1" = {
+ "@eslint/eslintrc-1.1.0" = {
name = "_at_eslint_slash_eslintrc";
packageName = "@eslint/eslintrc";
- version = "0.4.1";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.1.tgz";
- sha512 = "5v7TDE9plVhvxQeWLXDTvFvJBdH6pEsdnl2g/dAptmuFEPedQ4Erq5rsDsX+mvAM610IhNaO2W5V1dOOnDKxkQ==";
+ url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.1.0.tgz";
+ sha512 = "C1DfL7XX4nPqGd6jcP01W9pVM1HYCuUkFk1432D7F0v3JSlUIeOYn9oCoi3eoLZ+iwBSb29BMFxxny0YrrEZqg==";
+ };
+ };
+ "@humanwhocodes/config-array-0.9.3" = {
+ name = "_at_humanwhocodes_slash_config-array";
+ packageName = "@humanwhocodes/config-array";
+ version = "0.9.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.3.tgz";
+ sha512 = "3xSMlXHh03hCcCmFc0rbKp3Ivt2PFEJnQUJDDMTJQ2wkECZWdq4GePs2ctc5H8zV+cHPaq8k2vU8mrQjA6iHdQ==";
+ };
+ };
+ "@humanwhocodes/object-schema-1.2.1" = {
+ name = "_at_humanwhocodes_slash_object-schema";
+ packageName = "@humanwhocodes/object-schema";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz";
+ sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==";
+ };
+ };
+ "@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==";
+ };
+ };
+ "@jridgewell/resolve-uri-3.0.5" = {
+ name = "_at_jridgewell_slash_resolve-uri";
+ packageName = "@jridgewell/resolve-uri";
+ version = "3.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz";
+ sha512 = "VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==";
+ };
+ };
+ "@jridgewell/sourcemap-codec-1.4.11" = {
+ name = "_at_jridgewell_slash_sourcemap-codec";
+ packageName = "@jridgewell/sourcemap-codec";
+ version = "1.4.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz";
+ sha512 = "Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==";
+ };
+ };
+ "@jridgewell/trace-mapping-0.3.4" = {
+ name = "_at_jridgewell_slash_trace-mapping";
+ packageName = "@jridgewell/trace-mapping";
+ version = "0.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz";
+ sha512 = "vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==";
};
};
"@matrix-org/olm-https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.4.tgz" = {
@@ -176,94 +347,85 @@ let
sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==";
};
};
- "@sentry/core-5.27.1" = {
+ "@sentry/core-6.17.9" = {
name = "_at_sentry_slash_core";
packageName = "@sentry/core";
- version = "5.27.1";
+ version = "6.17.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/core/-/core-5.27.1.tgz";
- sha512 = "n5CxzMbOAT6HZK4U4cOUAAikkRnnHhMNhInrjfZh7BoiuX1k63Hru2H5xk5WDuEaTTr5RaBA/fqPl7wxHySlwQ==";
+ url = "https://registry.npmjs.org/@sentry/core/-/core-6.17.9.tgz";
+ sha512 = "14KalmTholGUtgdh9TklO+jUpyQ/D3OGkhlH1rnGQGoJgFy2eYm+s+MnUEMxFdGIUCz5kOteuNqYZxaDmFagpQ==";
};
};
- "@sentry/hub-5.27.1" = {
+ "@sentry/hub-6.17.9" = {
name = "_at_sentry_slash_hub";
packageName = "@sentry/hub";
- version = "5.27.1";
+ version = "6.17.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/hub/-/hub-5.27.1.tgz";
- sha512 = "RBHo3T92s6s4Ian1pZcPlmNtFqB+HAP6xitU+ZNA48bYUK+R1vvqEcI8Xs83FyNaRGCgclp9erDFQYyAuxY4vw==";
+ url = "https://registry.npmjs.org/@sentry/hub/-/hub-6.17.9.tgz";
+ sha512 = "34EdrweWDbBV9EzEFIXcO+JeoyQmKzQVJxpTKZoJA6PUwf2NrndaUdjlkDEtBEzjuLUTxhLxtOzEsYs1O6RVcg==";
};
};
- "@sentry/minimal-5.27.1" = {
+ "@sentry/minimal-6.17.9" = {
name = "_at_sentry_slash_minimal";
packageName = "@sentry/minimal";
- version = "5.27.1";
+ version = "6.17.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/minimal/-/minimal-5.27.1.tgz";
- sha512 = "MHXCeJdA1NAvaJuippcM8nrWScul8iTN0Q5nnFkGctGIGmmiZHTXAYkObqJk7H3AK+CP7r1jqN2aQj5Nd9CtyA==";
+ url = "https://registry.npmjs.org/@sentry/minimal/-/minimal-6.17.9.tgz";
+ sha512 = "T3PMCHcKk6lkZq6zKgANrYJJxXBXKOe+ousV1Fas1rVBMv7dtKfsa4itqQHszcW9shusPDiaQKIJ4zRLE5LKmg==";
};
};
- "@sentry/node-5.27.1" = {
+ "@sentry/node-6.17.9" = {
name = "_at_sentry_slash_node";
packageName = "@sentry/node";
- version = "5.27.1";
+ version = "6.17.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/node/-/node-5.27.1.tgz";
- sha512 = "OJCpUK6bbWlDCqiTZVP4ybQQDSly2EafbvvO7hoQ5ktr87WkRCgLpTNI7Doa5ANGuLNnVUvRNIsIH1DJqLZLNg==";
+ url = "https://registry.npmjs.org/@sentry/node/-/node-6.17.9.tgz";
+ sha512 = "jbn+q7qPGOh6D7nYoYGaAlmuvMDpQmyMwBtUVYybuZp2AALe43O3Z4LtoJ+1+F31XowpsIPZx1mwNs4ZrILskA==";
};
};
- "@sentry/tracing-5.27.1" = {
+ "@sentry/tracing-6.17.9" = {
name = "_at_sentry_slash_tracing";
packageName = "@sentry/tracing";
- version = "5.27.1";
+ version = "6.17.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/tracing/-/tracing-5.27.1.tgz";
- sha512 = "GBmdR8Ky/nv4KOa6+DEnOSBkFOFhM+asR8Y/gw2qSUWCwzKuWHh9BEnDwxtSI8CMvgUwOIZ5wiiqJGc1unYfCw==";
+ url = "https://registry.npmjs.org/@sentry/tracing/-/tracing-6.17.9.tgz";
+ sha512 = "5Rb/OS4ryNJLvz2nv6wyjwhifjy6veqaF9ffLrwFYij/WDy7m62ASBblxgeiI3fbPLX0aBRFWIJAq1vko26+AQ==";
};
};
- "@sentry/types-5.27.1" = {
+ "@sentry/types-6.17.9" = {
name = "_at_sentry_slash_types";
packageName = "@sentry/types";
- version = "5.27.1";
+ version = "6.17.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/types/-/types-5.27.1.tgz";
- sha512 = "g1aX0V0fz5BTo0mjgSVY9XmPLGZ6p+8OEzq3ubKzDUf59VHl+Vt8viZ8VXw/vsNtfAjBHn7BzSuzJo7cXJJBtA==";
+ url = "https://registry.npmjs.org/@sentry/types/-/types-6.17.9.tgz";
+ sha512 = "xuulX6qUCL14ayEOh/h6FUIvZtsi1Bx34dSOaWDrjXUOJHJAM7214uiqW1GZxPJ13YuaUIubjTSfDmSQ9CBzTw==";
};
};
- "@sentry/utils-5.27.1" = {
+ "@sentry/utils-6.17.9" = {
name = "_at_sentry_slash_utils";
packageName = "@sentry/utils";
- version = "5.27.1";
+ version = "6.17.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/utils/-/utils-5.27.1.tgz";
- sha512 = "VIzK8utuvFO9EogZcKJPgmLnlJtYbaPQ0jCw7od9HRw1ckrSBc84sA0uuuY6pB6KSM+7k6EjJ5IdIBaCz5ep/A==";
+ url = "https://registry.npmjs.org/@sentry/utils/-/utils-6.17.9.tgz";
+ sha512 = "4eo9Z3JlJCGlGrQRbtZWL+L9NnlUXgTbfK3Lk7oO8D1ev8R5b5+iE6tZHTvU5rQRcq6zu+POT+tK5u9oxc/rnQ==";
};
};
- "@sindresorhus/is-0.14.0" = {
- name = "_at_sindresorhus_slash_is";
- packageName = "@sindresorhus/is";
- version = "0.14.0";
+ "@tsconfig/node14-1.0.1" = {
+ name = "_at_tsconfig_slash_node14";
+ packageName = "@tsconfig/node14";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz";
- sha512 = "9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==";
+ url = "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.1.tgz";
+ sha512 = "509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==";
};
};
- "@szmarczak/http-timer-1.1.2" = {
- name = "_at_szmarczak_slash_http-timer";
- packageName = "@szmarczak/http-timer";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz";
- sha512 = "XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==";
- };
- };
- "@types/bluebird-3.5.32" = {
+ "@types/bluebird-3.5.36" = {
name = "_at_types_slash_bluebird";
packageName = "@types/bluebird";
- version = "3.5.32";
+ version = "3.5.36";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.32.tgz";
- sha512 = "dIOxFfI0C+jz89g6lQ+TqhGgPQ0MxSnh/E4xuC0blhFtyW269+mPG5QeLgbdwst/LvdP8o1y0o/Gz5EHXLec/g==";
+ url = "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.36.tgz";
+ sha512 = "HBNx4lhkxN7bx6P0++W8E289foSu8kO8GCk2unhuVggO+cE7rh9DhZUyPhUxNRG9m+5B5BTKxZQ5ZP92x/mx9Q==";
};
};
"@types/body-parser-1.19.0" = {
@@ -284,22 +446,13 @@ let
sha512 = "ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ==";
};
};
- "@types/diff-5.0.1" = {
+ "@types/diff-5.0.2" = {
name = "_at_types_slash_diff";
packageName = "@types/diff";
- version = "5.0.1";
+ version = "5.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/diff/-/diff-5.0.1.tgz";
- sha512 = "XIpxU6Qdvp1ZE6Kr3yrkv1qgUab0fyf4mHYvW8N3Bx3PCsbN6or1q9/q72cv5jIFWolaGH08U9XyYoLLIykyKQ==";
- };
- };
- "@types/express-4.17.11" = {
- name = "_at_types_slash_express";
- packageName = "@types/express";
- version = "4.17.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/express/-/express-4.17.11.tgz";
- sha512 = "no+R6rW60JEc59977wIxreQVsIEOAYwgCqldrA/vkpCnbD7MqTefO97lmoBe4WE0F156bC4uLSP1XHDOySnChg==";
+ url = "https://registry.npmjs.org/@types/diff/-/diff-5.0.2.tgz";
+ sha512 = "uw8eYMIReOwstQ0QKF0sICefSy8cNO/v7gOTiIy9SbwuHyEecJUm7qlgueOO5S1udZ5I/irVydHVwMchgzbKTg==";
};
};
"@types/express-4.17.13" = {
@@ -311,13 +464,13 @@ let
sha512 = "6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==";
};
};
- "@types/express-serve-static-core-4.17.19" = {
+ "@types/express-serve-static-core-4.17.28" = {
name = "_at_types_slash_express-serve-static-core";
packageName = "@types/express-serve-static-core";
- version = "4.17.19";
+ version = "4.17.28";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.19.tgz";
- sha512 = "DJOSHzX7pCiSElWaGR8kCprwibCB/3yW6vcT8VG3P0SJjnv19gnWG/AZMfM60Xj/YJIp/YCaDHyvzsFVeniARA==";
+ url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz";
+ sha512 = "P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==";
};
};
"@types/extend-3.0.1" = {
@@ -329,13 +482,13 @@ let
sha512 = "R1g/VyKFFI2HLC1QGAeTtCBWCo6n75l41OnsVYNbmKG+kempOESaodf6BeJyUM3Q0rKa/NQcTHbB2+66lNnxLw==";
};
};
- "@types/he-1.1.1" = {
+ "@types/he-1.1.2" = {
name = "_at_types_slash_he";
packageName = "@types/he";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/he/-/he-1.1.1.tgz";
- sha512 = "jpzrsR1ns0n3kyWt92QfOUQhIuJGQ9+QGa7M62rO6toe98woQjnsnzjdMtsQXCdvjjmqjS2ZBCC7xKw0cdzU+Q==";
+ url = "https://registry.npmjs.org/@types/he/-/he-1.1.2.tgz";
+ sha512 = "kSJPcLO1x+oolc0R89pUl2kozldQ/fVQ1C1p5mp8fPoLdF/ZcBvckaTC2M8xXh3GYendXvCpy5m/a2eSbfgNgw==";
};
};
"@types/json-schema-7.0.9" = {
@@ -356,13 +509,13 @@ let
sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==";
};
};
- "@types/nedb-1.8.11" = {
+ "@types/nedb-1.8.12" = {
name = "_at_types_slash_nedb";
packageName = "@types/nedb";
- version = "1.8.11";
+ version = "1.8.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/nedb/-/nedb-1.8.11.tgz";
- sha512 = "qHQRLZ0e6l/XK/2Qb2v5N1ujmdttYkUvnRI4nPIifMy6vYwoAnER10xhX13isWjjQtNsrjNLinZgDDguzPmEKw==";
+ url = "https://registry.npmjs.org/@types/nedb/-/nedb-1.8.12.tgz";
+ sha512 = "ICDoQMORMjOSqfNFXT4ENXfwwCir1BPblXNm0SPH7C4Q10ou+pvVagcFAJ+rrzf3A47tGU4K/KbzKu7wO9j45Q==";
};
};
"@types/node-14.17.19" = {
@@ -383,13 +536,13 @@ let
sha1 = "f19df3db4c97ee1459a2740028320a71d70964ce";
};
};
- "@types/pg-8.6.0" = {
+ "@types/pg-8.6.4" = {
name = "_at_types_slash_pg";
packageName = "@types/pg";
- version = "8.6.0";
+ version = "8.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/pg/-/pg-8.6.0.tgz";
- sha512 = "3JXFrsl8COoqVB1+2Pqelx6soaiFVXzkT3fkuSNe7GB40ysfT0FHphZFPiqIXpMyTHSFRdLTyZzrFBrJRPAArA==";
+ url = "https://registry.npmjs.org/@types/pg/-/pg-8.6.4.tgz";
+ sha512 = "uYA7UMVzDFpJobCrqwW/iWkFmvizy6knIUgr0Quaw7K1Le3ZnF7hI3bKqFoxPZ+fju1Sc7zdTvOl9YfFZPcmeA==";
};
};
"@types/qs-6.9.6" = {
@@ -410,13 +563,22 @@ let
sha512 = "ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==";
};
};
- "@types/sanitize-html-2.3.1" = {
+ "@types/retry-0.12.1" = {
+ name = "_at_types_slash_retry";
+ packageName = "@types/retry";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz";
+ sha512 = "xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==";
+ };
+ };
+ "@types/sanitize-html-2.6.2" = {
name = "_at_types_slash_sanitize-html";
packageName = "@types/sanitize-html";
- version = "2.3.1";
+ version = "2.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/sanitize-html/-/sanitize-html-2.3.1.tgz";
- sha512 = "+UT/XRluJuCunRftwO6OzG6WOBgJ+J3sROIoSJWX+7PB2FtTJTEJLrHCcNwzCQc0r60bej3WAbaigK+VZtZCGw==";
+ url = "https://registry.npmjs.org/@types/sanitize-html/-/sanitize-html-2.6.2.tgz";
+ sha512 = "7Lu2zMQnmHHQGKXVvCOhSziQMpa+R2hMHFefzbYoYMHeaXR0uXqNeOc3JeQQQ8/6Xa2Br/P1IQTLzV09xxAiUQ==";
};
};
"@types/serve-static-1.13.9" = {
@@ -428,67 +590,76 @@ let
sha512 = "ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA==";
};
};
- "@typescript-eslint/eslint-plugin-4.33.0" = {
+ "@typescript-eslint/eslint-plugin-5.12.0" = {
name = "_at_typescript-eslint_slash_eslint-plugin";
packageName = "@typescript-eslint/eslint-plugin";
- version = "4.33.0";
+ version = "5.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz";
- sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.12.0.tgz";
+ sha512 = "fwCMkDimwHVeIOKeBHiZhRUfJXU8n6xW1FL9diDxAyGAFvKcH4csy0v7twivOQdQdA0KC8TDr7GGRd3L4Lv0rQ==";
};
};
- "@typescript-eslint/experimental-utils-4.33.0" = {
- name = "_at_typescript-eslint_slash_experimental-utils";
- packageName = "@typescript-eslint/experimental-utils";
- version = "4.33.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz";
- sha512 = "zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==";
- };
- };
- "@typescript-eslint/parser-4.33.0" = {
+ "@typescript-eslint/parser-5.12.0" = {
name = "_at_typescript-eslint_slash_parser";
packageName = "@typescript-eslint/parser";
- version = "4.33.0";
+ version = "5.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz";
- sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.12.0.tgz";
+ sha512 = "MfSwg9JMBojMUoGjUmX+D2stoQj1CBYTCP0qnnVtu9A+YQXVKNtLjasYh+jozOcrb/wau8TCfWOkQTiOAruBog==";
};
};
- "@typescript-eslint/scope-manager-4.33.0" = {
+ "@typescript-eslint/scope-manager-5.12.0" = {
name = "_at_typescript-eslint_slash_scope-manager";
packageName = "@typescript-eslint/scope-manager";
- version = "4.33.0";
+ version = "5.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz";
- sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==";
+ url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.12.0.tgz";
+ sha512 = "GAMobtIJI8FGf1sLlUWNUm2IOkIjvn7laFWyRx7CLrv6nLBI7su+B7lbStqVlK5NdLvHRFiJo2HhiDF7Ki01WQ==";
};
};
- "@typescript-eslint/types-4.33.0" = {
+ "@typescript-eslint/type-utils-5.12.0" = {
+ name = "_at_typescript-eslint_slash_type-utils";
+ packageName = "@typescript-eslint/type-utils";
+ version = "5.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.12.0.tgz";
+ sha512 = "9j9rli3zEBV+ae7rlbBOotJcI6zfc6SHFMdKI9M3Nc0sy458LJ79Os+TPWeBBL96J9/e36rdJOfCuyRSgFAA0Q==";
+ };
+ };
+ "@typescript-eslint/types-5.12.0" = {
name = "_at_typescript-eslint_slash_types";
packageName = "@typescript-eslint/types";
- version = "4.33.0";
+ version = "5.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz";
- sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==";
+ url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.12.0.tgz";
+ sha512 = "JowqbwPf93nvf8fZn5XrPGFBdIK8+yx5UEGs2QFAYFI8IWYfrzz+6zqlurGr2ctShMaJxqwsqmra3WXWjH1nRQ==";
};
};
- "@typescript-eslint/typescript-estree-4.33.0" = {
+ "@typescript-eslint/typescript-estree-5.12.0" = {
name = "_at_typescript-eslint_slash_typescript-estree";
packageName = "@typescript-eslint/typescript-estree";
- version = "4.33.0";
+ version = "5.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz";
- sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.12.0.tgz";
+ sha512 = "Dd9gVeOqt38QHR0BEA8oRaT65WYqPYbIc5tRFQPkfLquVEFPD1HAtbZT98TLBkEcCkvwDYOAvuSvAD9DnQhMfQ==";
};
};
- "@typescript-eslint/visitor-keys-4.33.0" = {
+ "@typescript-eslint/utils-5.12.0" = {
+ name = "_at_typescript-eslint_slash_utils";
+ packageName = "@typescript-eslint/utils";
+ version = "5.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.12.0.tgz";
+ sha512 = "k4J2WovnMPGI4PzKgDtQdNrCnmBHpMUFy21qjX2CoPdoBcSBIMvVBr9P2YDP8jOqZOeK3ThOL6VO/sy6jtnvzw==";
+ };
+ };
+ "@typescript-eslint/visitor-keys-5.12.0" = {
name = "_at_typescript-eslint_slash_visitor-keys";
packageName = "@typescript-eslint/visitor-keys";
- version = "4.33.0";
+ version = "5.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz";
- sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.12.0.tgz";
+ sha512 = "cFwTlgnMV6TgezQynx2c/4/tx9Tufbuo9LPzmWqyRC3QC4qTGkAG1C6pBr0/4I10PAI/FlYunI3vJjIcu+ZHMg==";
};
};
"abbrev-1.1.1" = {
@@ -509,22 +680,22 @@ let
sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==";
};
};
- "acorn-7.4.1" = {
+ "acorn-8.7.0" = {
name = "acorn";
packageName = "acorn";
- version = "7.4.1";
+ version = "8.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz";
- sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==";
+ url = "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz";
+ sha512 = "V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==";
};
};
- "acorn-jsx-5.3.1" = {
+ "acorn-jsx-5.3.2" = {
name = "acorn-jsx";
packageName = "acorn-jsx";
- version = "5.3.1";
+ version = "5.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz";
- sha512 = "K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==";
+ url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz";
+ sha512 = "rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==";
};
};
"agent-base-6.0.2" = {
@@ -536,6 +707,15 @@ let
sha512 = "RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==";
};
};
+ "aggregate-error-3.1.0" = {
+ name = "aggregate-error";
+ packageName = "aggregate-error";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz";
+ sha512 = "4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==";
+ };
+ };
"ajv-6.12.6" = {
name = "ajv";
packageName = "ajv";
@@ -545,15 +725,6 @@ let
sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==";
};
};
- "ajv-8.4.0" = {
- name = "ajv";
- packageName = "ajv";
- version = "8.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-8.4.0.tgz";
- sha512 = "7QD2l6+KBSLwf+7MuYocbWvRPdOu63/trReTLu2KFwkgctnub1auoF+Y1WYcm09CTM7quuscrzqmASaLHC/K4Q==";
- };
- };
"another-json-0.2.0" = {
name = "another-json";
packageName = "another-json";
@@ -563,24 +734,6 @@ let
sha1 = "b5f4019c973b6dd5c6506a2d93469cb6d32aeedc";
};
};
- "ansi-align-3.0.1" = {
- name = "ansi-align";
- packageName = "ansi-align";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz";
- sha512 = "IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==";
- };
- };
- "ansi-colors-4.1.1" = {
- name = "ansi-colors";
- packageName = "ansi-colors";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz";
- sha512 = "JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==";
- };
- };
"ansi-regex-2.1.1" = {
name = "ansi-regex";
packageName = "ansi-regex";
@@ -599,15 +752,6 @@ let
sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
};
};
- "ansi-regex-4.1.0" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz";
- sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==";
- };
- };
"ansi-regex-5.0.1" = {
name = "ansi-regex";
packageName = "ansi-regex";
@@ -635,22 +779,13 @@ let
sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==";
};
};
- "anymatch-3.1.2" = {
- name = "anymatch";
- packageName = "anymatch";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz";
- sha512 = "P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==";
- };
- };
- "append-transform-1.0.0" = {
+ "append-transform-2.0.0" = {
name = "append-transform";
packageName = "append-transform";
- version = "1.0.0";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/append-transform/-/append-transform-1.0.0.tgz";
- sha512 = "P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw==";
+ url = "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz";
+ sha512 = "7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==";
};
};
"aproba-1.2.0" = {
@@ -734,15 +869,6 @@ let
sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
};
};
- "astral-regex-2.0.0" = {
- name = "astral-regex";
- packageName = "astral-regex";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz";
- sha512 = "Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==";
- };
- };
"async-0.2.10" = {
name = "async";
packageName = "async";
@@ -752,13 +878,13 @@ let
sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1";
};
};
- "async-3.2.0" = {
+ "async-3.2.3" = {
name = "async";
packageName = "async";
- version = "3.2.0";
+ version = "3.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-3.2.0.tgz";
- sha512 = "TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==";
+ url = "https://registry.npmjs.org/async/-/async-3.2.3.tgz";
+ sha512 = "spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==";
};
};
"asynckit-0.4.0" = {
@@ -797,13 +923,13 @@ let
sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==";
};
};
- "base-x-3.0.8" = {
+ "base-x-3.0.9" = {
name = "base-x";
packageName = "base-x";
- version = "3.0.8";
+ version = "3.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz";
- sha512 = "Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==";
+ url = "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz";
+ sha512 = "H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==";
};
};
"base64-js-1.5.1" = {
@@ -842,15 +968,6 @@ let
sha512 = "07bKjClZg/f4KMVRkzWtoIvazVPcF1gsvVKVIXlxwleC2DxuIhnra3KCMlUT1rFeRYXXckot2a46UciF2d9KLw==";
};
};
- "binary-extensions-2.2.0" = {
- name = "binary-extensions";
- packageName = "binary-extensions";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz";
- sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==";
- };
- };
"binary-search-tree-0.2.5" = {
name = "binary-search-tree";
packageName = "binary-search-tree";
@@ -905,15 +1022,6 @@ let
sha512 = "dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==";
};
};
- "boxen-4.2.0" = {
- name = "boxen";
- packageName = "boxen";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz";
- sha512 = "eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==";
- };
- };
"brace-expansion-1.1.11" = {
name = "brace-expansion";
packageName = "brace-expansion";
@@ -941,6 +1049,15 @@ let
sha1 = "9ece5b5aca89a29932242e18bf933def9876cc17";
};
};
+ "browserslist-4.19.1" = {
+ name = "browserslist";
+ packageName = "browserslist";
+ version = "4.19.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz";
+ sha512 = "u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==";
+ };
+ };
"bs58-4.0.1" = {
name = "bs58";
packageName = "bs58";
@@ -977,22 +1094,13 @@ let
sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==";
};
};
- "cacheable-request-6.1.0" = {
- name = "cacheable-request";
- packageName = "cacheable-request";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz";
- sha512 = "Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==";
- };
- };
- "caching-transform-3.0.2" = {
+ "caching-transform-4.0.0" = {
name = "caching-transform";
packageName = "caching-transform";
- version = "3.0.2";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/caching-transform/-/caching-transform-3.0.2.tgz";
- sha512 = "Mtgcv3lh3U0zRii/6qVgQODdPA4G3zhG+jtbCWj39RXuUFTMzH0vcdMtaJS1jPowd+It2Pqr6y3NJMQqOqCE2w==";
+ url = "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz";
+ sha512 = "kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==";
};
};
"call-bind-1.0.2" = {
@@ -1022,6 +1130,15 @@ let
sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==";
};
};
+ "caniuse-lite-1.0.30001312" = {
+ name = "caniuse-lite";
+ packageName = "caniuse-lite";
+ version = "1.0.30001312";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001312.tgz";
+ sha512 = "Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==";
+ };
+ };
"caseless-0.12.0" = {
name = "caseless";
packageName = "caseless";
@@ -1040,22 +1157,13 @@ let
sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==";
};
};
- "chalk-3.0.0" = {
+ "chalk-4.1.2" = {
name = "chalk";
packageName = "chalk";
- version = "3.0.0";
+ version = "4.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz";
- sha512 = "4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==";
- };
- };
- "chalk-4.1.1" = {
- name = "chalk";
- packageName = "chalk";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz";
- sha512 = "diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==";
+ url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz";
+ sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==";
};
};
"chardet-1.3.0" = {
@@ -1067,15 +1175,6 @@ let
sha512 = "cyTQGGptIjIT+CMGT5J/0l9c6Fb+565GCFjjeUTKxUO7w3oR+FcNCMEKTn5xtVKaLFmladN7QF68IiQsv5Fbdw==";
};
};
- "chokidar-3.5.1" = {
- name = "chokidar";
- packageName = "chokidar";
- version = "3.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz";
- sha512 = "9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==";
- };
- };
"chownr-1.1.4" = {
name = "chownr";
packageName = "chownr";
@@ -1094,40 +1193,22 @@ let
sha512 = "bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==";
};
};
- "ci-info-2.0.0" = {
- name = "ci-info";
- packageName = "ci-info";
- version = "2.0.0";
+ "clean-stack-2.2.0" = {
+ name = "clean-stack";
+ packageName = "clean-stack";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz";
- sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==";
+ url = "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz";
+ sha512 = "4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==";
};
};
- "cli-boxes-2.2.1" = {
- name = "cli-boxes";
- packageName = "cli-boxes";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz";
- sha512 = "y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==";
- };
- };
- "cliui-5.0.0" = {
+ "cliui-6.0.0" = {
name = "cliui";
packageName = "cliui";
- version = "5.0.0";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz";
- sha512 = "PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==";
- };
- };
- "clone-response-1.0.2" = {
- name = "clone-response";
- packageName = "clone-response";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz";
- sha1 = "d1dc973920314df67fbeb94223b4ee350239e96b";
+ url = "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz";
+ sha512 = "t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==";
};
};
"code-point-at-1.1.0" = {
@@ -1193,24 +1274,6 @@ let
sha512 = "jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==";
};
};
- "colorette-1.2.2" = {
- name = "colorette";
- packageName = "colorette";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz";
- sha512 = "MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==";
- };
- };
- "colors-1.4.0" = {
- name = "colors";
- packageName = "colors";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz";
- sha512 = "a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==";
- };
- };
"colorspace-1.1.2" = {
name = "colorspace";
packageName = "colorspace";
@@ -1247,15 +1310,6 @@ let
sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
};
};
- "configstore-5.0.1" = {
- name = "configstore";
- packageName = "configstore";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz";
- sha512 = "aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==";
- };
- };
"console-control-strings-1.1.0" = {
name = "console-control-strings";
packageName = "console-control-strings";
@@ -1328,24 +1382,6 @@ let
sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
};
};
- "cp-file-6.2.0" = {
- name = "cp-file";
- packageName = "cp-file";
- version = "6.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cp-file/-/cp-file-6.2.0.tgz";
- sha512 = "fmvV4caBnofhPe8kOcitBwSn2f39QLjnAnGq3gO9dfd75mUytzKNZB1hde6QHunW2Rt+OwuBOMc3i1tNElbszA==";
- };
- };
- "cross-spawn-4.0.2" = {
- name = "cross-spawn";
- packageName = "cross-spawn";
- version = "4.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz";
- sha1 = "7b9247621c23adfdd3856004a823cbe397424d41";
- };
- };
"cross-spawn-7.0.3" = {
name = "cross-spawn";
packageName = "cross-spawn";
@@ -1355,15 +1391,6 @@ let
sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==";
};
};
- "crypto-random-string-2.0.0" = {
- name = "crypto-random-string";
- packageName = "crypto-random-string";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz";
- sha512 = "v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==";
- };
- };
"dashdash-1.14.1" = {
name = "dashdash";
packageName = "dashdash";
@@ -1382,22 +1409,13 @@ let
sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==";
};
};
- "debug-3.2.7" = {
+ "debug-4.3.3" = {
name = "debug";
packageName = "debug";
- version = "3.2.7";
+ version = "4.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz";
- sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==";
- };
- };
- "debug-4.3.1" = {
- name = "debug";
- packageName = "debug";
- version = "4.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz";
- sha512 = "doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==";
+ url = "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz";
+ sha512 = "/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==";
};
};
"decamelize-1.2.0" = {
@@ -1409,15 +1427,6 @@ let
sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
};
};
- "decompress-response-3.3.0" = {
- name = "decompress-response";
- packageName = "decompress-response";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz";
- sha1 = "80a4dd323748384bfa248083622aedec982adff3";
- };
- };
"decompress-response-4.2.1" = {
name = "decompress-response";
packageName = "decompress-response";
@@ -1436,13 +1445,13 @@ let
sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==";
};
};
- "deep-is-0.1.3" = {
+ "deep-is-0.1.4" = {
name = "deep-is";
packageName = "deep-is";
- version = "0.1.3";
+ version = "0.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz";
- sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34";
+ url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz";
+ sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==";
};
};
"deepmerge-4.2.2" = {
@@ -1454,22 +1463,13 @@ let
sha512 = "FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==";
};
};
- "default-require-extensions-2.0.0" = {
+ "default-require-extensions-3.0.0" = {
name = "default-require-extensions";
packageName = "default-require-extensions";
- version = "2.0.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-2.0.0.tgz";
- sha1 = "f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7";
- };
- };
- "defer-to-connect-1.1.3" = {
- name = "defer-to-connect";
- packageName = "defer-to-connect";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz";
- sha512 = "0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==";
+ url = "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.0.tgz";
+ sha512 = "ek6DpXq/SCpvjhpFsLFRVtIxJCRw6fUR42lYMVZuUMK7n8eMz4Uh5clckdBjEpLhn/gEBZo7hDJnJcwdKLKQjg==";
};
};
"delayed-stream-1.0.0" = {
@@ -1598,24 +1598,6 @@ let
sha512 = "y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA==";
};
};
- "dot-prop-5.3.0" = {
- name = "dot-prop";
- packageName = "dot-prop";
- version = "5.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz";
- sha512 = "QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==";
- };
- };
- "duplexer3-0.1.4" = {
- name = "duplexer3";
- packageName = "duplexer3";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz";
- sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2";
- };
- };
"ecc-jsbn-0.1.2" = {
name = "ecc-jsbn";
packageName = "ecc-jsbn";
@@ -1634,13 +1616,13 @@ let
sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d";
};
};
- "emoji-regex-7.0.3" = {
- name = "emoji-regex";
- packageName = "emoji-regex";
- version = "7.0.3";
+ "electron-to-chromium-1.4.71" = {
+ name = "electron-to-chromium";
+ packageName = "electron-to-chromium";
+ version = "1.4.71";
src = fetchurl {
- url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz";
- sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.71.tgz";
+ sha512 = "Hk61vXXKRb2cd3znPE9F+2pLWdIOmP7GjiTj45y6L3W/lO+hSnUSUhq+6lEaERWBdZOHbk2s3YV5c9xVl3boVw==";
};
};
"emoji-regex-8.0.0" = {
@@ -1679,15 +1661,6 @@ let
sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==";
};
};
- "enquirer-2.3.6" = {
- name = "enquirer";
- packageName = "enquirer";
- version = "2.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz";
- sha512 = "yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==";
- };
- };
"entities-2.2.0" = {
name = "entities";
packageName = "entities";
@@ -1697,15 +1670,6 @@ let
sha512 = "p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==";
};
};
- "error-ex-1.3.2" = {
- name = "error-ex";
- packageName = "error-ex";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz";
- sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==";
- };
- };
"es6-error-4.1.1" = {
name = "es6-error";
packageName = "es6-error";
@@ -1715,13 +1679,13 @@ let
sha512 = "Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==";
};
};
- "escape-goat-2.1.1" = {
- name = "escape-goat";
- packageName = "escape-goat";
- version = "2.1.1";
+ "escalade-3.1.1" = {
+ name = "escalade";
+ packageName = "escalade";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz";
- sha512 = "8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==";
+ url = "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz";
+ sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==";
};
};
"escape-html-1.0.3" = {
@@ -1751,13 +1715,13 @@ let
sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==";
};
};
- "eslint-7.21.0" = {
+ "eslint-8.9.0" = {
name = "eslint";
packageName = "eslint";
- version = "7.21.0";
+ version = "8.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-7.21.0.tgz";
- sha512 = "W2aJbXpMNofUp0ztQaF40fveSsJBjlSCSWpy//gzfTvwC+USs/nceBrKmlJOiM8r1bLwP2EuYkCqArn/6QTIgg==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-8.9.0.tgz";
+ sha512 = "PB09IGwv4F4b0/atrbcMFboF/giawbBLVC7fyDamk5Wtey4Jh2K+rYaBhCAbUyEI4QzB1ly09Uglc9iCtFaG2Q==";
};
};
"eslint-scope-5.1.1" = {
@@ -1769,13 +1733,13 @@ let
sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==";
};
};
- "eslint-utils-2.1.0" = {
- name = "eslint-utils";
- packageName = "eslint-utils";
- version = "2.1.0";
+ "eslint-scope-7.1.1" = {
+ name = "eslint-scope";
+ packageName = "eslint-scope";
+ version = "7.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz";
- sha512 = "w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==";
+ url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz";
+ sha512 = "QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==";
};
};
"eslint-utils-3.0.0" = {
@@ -1787,15 +1751,6 @@ let
sha512 = "uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==";
};
};
- "eslint-visitor-keys-1.3.0" = {
- name = "eslint-visitor-keys";
- packageName = "eslint-visitor-keys";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz";
- sha512 = "6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==";
- };
- };
"eslint-visitor-keys-2.1.0" = {
name = "eslint-visitor-keys";
packageName = "eslint-visitor-keys";
@@ -1805,13 +1760,22 @@ let
sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==";
};
};
- "espree-7.3.1" = {
+ "eslint-visitor-keys-3.3.0" = {
+ name = "eslint-visitor-keys";
+ packageName = "eslint-visitor-keys";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz";
+ sha512 = "mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==";
+ };
+ };
+ "espree-9.3.1" = {
name = "espree";
packageName = "espree";
- version = "7.3.1";
+ version = "9.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz";
- sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==";
+ url = "https://registry.npmjs.org/espree/-/espree-9.3.1.tgz";
+ sha512 = "bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==";
};
};
"esprima-4.0.1" = {
@@ -1850,13 +1814,13 @@ let
sha512 = "39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==";
};
};
- "estraverse-5.2.0" = {
+ "estraverse-5.3.0" = {
name = "estraverse";
packageName = "estraverse";
- version = "5.2.0";
+ version = "5.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz";
- sha512 = "BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==";
+ url = "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz";
+ sha512 = "MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==";
};
};
"esutils-2.0.3" = {
@@ -1922,22 +1886,22 @@ let
sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
};
};
- "fast-deep-equal-3.1.1" = {
+ "fast-deep-equal-3.1.3" = {
name = "fast-deep-equal";
packageName = "fast-deep-equal";
- version = "3.1.1";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz";
- sha512 = "8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==";
+ url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz";
+ sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==";
};
};
- "fast-glob-3.2.7" = {
+ "fast-glob-3.2.11" = {
name = "fast-glob";
packageName = "fast-glob";
- version = "3.2.7";
+ version = "3.2.11";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz";
- sha512 = "rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==";
+ url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz";
+ sha512 = "xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==";
};
};
"fast-json-stable-stringify-2.1.0" = {
@@ -1958,15 +1922,6 @@ let
sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917";
};
};
- "fast-safe-stringify-2.0.7" = {
- name = "fast-safe-stringify";
- packageName = "fast-safe-stringify";
- version = "2.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz";
- sha512 = "Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==";
- };
- };
"fastq-1.13.0" = {
name = "fastq";
packageName = "fastq";
@@ -1994,13 +1949,13 @@ let
sha512 = "7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==";
};
};
- "file-stream-rotator-0.5.7" = {
+ "file-stream-rotator-0.6.1" = {
name = "file-stream-rotator";
packageName = "file-stream-rotator";
- version = "0.5.7";
+ version = "0.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/file-stream-rotator/-/file-stream-rotator-0.5.7.tgz";
- sha512 = "VYb3HZ/GiAGUCrfeakO8Mp54YGswNUHvL7P09WQcXAJNSj3iQ5QraYSp3cIn1MUyw6uzfgN/EFOarCNa4JvUHQ==";
+ url = "https://registry.npmjs.org/file-stream-rotator/-/file-stream-rotator-0.6.1.tgz";
+ sha512 = "u+dBid4PvZw17PmDeRcNOtCP9CCK/9lRN2w+r1xIS7yOL9JFrIBKTvrYsxT4P0pGtThYTn++QS5ChHaUov3+zQ==";
};
};
"file-uri-to-path-1.0.0" = {
@@ -2039,22 +1994,22 @@ let
sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==";
};
};
- "find-cache-dir-2.1.0" = {
+ "find-cache-dir-3.3.2" = {
name = "find-cache-dir";
packageName = "find-cache-dir";
- version = "2.1.0";
+ version = "3.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz";
- sha512 = "Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==";
+ url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz";
+ sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==";
};
};
- "find-up-3.0.0" = {
+ "find-up-4.1.0" = {
name = "find-up";
packageName = "find-up";
- version = "3.0.0";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz";
- sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==";
+ url = "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz";
+ sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==";
};
};
"flat-cache-3.0.4" = {
@@ -2066,13 +2021,13 @@ let
sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==";
};
};
- "flatted-3.1.1" = {
+ "flatted-3.2.5" = {
name = "flatted";
packageName = "flatted";
- version = "3.1.1";
+ version = "3.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz";
- sha512 = "zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==";
+ url = "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz";
+ sha512 = "WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==";
};
};
"fn.name-1.1.0" = {
@@ -2084,13 +2039,13 @@ let
sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==";
};
};
- "foreground-child-1.5.6" = {
+ "foreground-child-2.0.0" = {
name = "foreground-child";
packageName = "foreground-child";
- version = "1.5.6";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/foreground-child/-/foreground-child-1.5.6.tgz";
- sha1 = "4fd71ad2dfde96789b980a5c0a295937cb2f5ce9";
+ url = "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz";
+ sha512 = "dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==";
};
};
"forever-agent-0.6.1" = {
@@ -2129,6 +2084,15 @@ let
sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7";
};
};
+ "fromentries-1.3.2" = {
+ name = "fromentries";
+ packageName = "fromentries";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz";
+ sha512 = "cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==";
+ };
+ };
"fs-constants-1.0.0" = {
name = "fs-constants";
packageName = "fs-constants";
@@ -2156,15 +2120,6 @@ let
sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
};
};
- "fsevents-2.3.2" = {
- name = "fsevents";
- packageName = "fsevents";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz";
- sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==";
- };
- };
"function-bind-1.1.1" = {
name = "function-bind";
packageName = "function-bind";
@@ -2210,6 +2165,15 @@ let
sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0";
};
};
+ "gensync-1.0.0-beta.2" = {
+ name = "gensync";
+ packageName = "gensync";
+ version = "1.0.0-beta.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz";
+ sha512 = "3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==";
+ };
+ };
"get-caller-file-2.0.5" = {
name = "get-caller-file";
packageName = "get-caller-file";
@@ -2228,22 +2192,13 @@ let
sha512 = "kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==";
};
};
- "get-stream-4.1.0" = {
- name = "get-stream";
- packageName = "get-stream";
- version = "4.1.0";
+ "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-stream/-/get-stream-4.1.0.tgz";
- sha512 = "GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==";
- };
- };
- "get-stream-5.2.0" = {
- name = "get-stream";
- packageName = "get-stream";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz";
- sha512 = "nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==";
+ url = "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz";
+ sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==";
};
};
"getpass-0.1.7" = {
@@ -2282,6 +2237,15 @@ let
sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==";
};
};
+ "glob-parent-6.0.2" = {
+ name = "glob-parent";
+ packageName = "glob-parent";
+ version = "6.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz";
+ sha512 = "XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==";
+ };
+ };
"glob-to-regexp-0.4.1" = {
name = "glob-to-regexp";
packageName = "glob-to-regexp";
@@ -2291,15 +2255,6 @@ let
sha512 = "lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==";
};
};
- "global-dirs-2.1.0" = {
- name = "global-dirs";
- packageName = "global-dirs";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/global-dirs/-/global-dirs-2.1.0.tgz";
- sha512 = "MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ==";
- };
- };
"globals-11.12.0" = {
name = "globals";
packageName = "globals";
@@ -2309,31 +2264,22 @@ let
sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==";
};
};
- "globals-12.4.0" = {
+ "globals-13.12.1" = {
name = "globals";
packageName = "globals";
- version = "12.4.0";
+ version = "13.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz";
- sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==";
+ url = "https://registry.npmjs.org/globals/-/globals-13.12.1.tgz";
+ sha512 = "317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==";
};
};
- "globby-11.0.4" = {
+ "globby-11.1.0" = {
name = "globby";
packageName = "globby";
- version = "11.0.4";
+ version = "11.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz";
- sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==";
- };
- };
- "got-9.6.0" = {
- name = "got";
- packageName = "got";
- version = "9.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/got/-/got-9.6.0.tgz";
- sha512 = "R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==";
+ url = "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz";
+ sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==";
};
};
"graceful-fs-4.2.3" = {
@@ -2408,15 +2354,6 @@ let
sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
};
};
- "has-yarn-2.1.0" = {
- name = "has-yarn";
- packageName = "has-yarn";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz";
- sha512 = "UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==";
- };
- };
"hash.js-1.1.7" = {
name = "hash.js";
packageName = "hash.js";
@@ -2426,13 +2363,13 @@ let
sha512 = "taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==";
};
};
- "hasha-3.0.0" = {
+ "hasha-5.2.2" = {
name = "hasha";
packageName = "hasha";
- version = "3.0.0";
+ version = "5.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/hasha/-/hasha-3.0.0.tgz";
- sha1 = "52a32fab8569d41ca69a61ff1a214f8eb7c8bd39";
+ url = "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz";
+ sha512 = "Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==";
};
};
"he-1.2.0" = {
@@ -2444,15 +2381,6 @@ let
sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==";
};
};
- "hosted-git-info-2.8.9" = {
- name = "hosted-git-info";
- packageName = "hosted-git-info";
- version = "2.8.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz";
- sha512 = "mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==";
- };
- };
"html-escaper-2.0.2" = {
name = "html-escaper";
packageName = "html-escaper";
@@ -2498,15 +2426,6 @@ let
sha512 = "gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==";
};
};
- "http-cache-semantics-4.1.0" = {
- name = "http-cache-semantics";
- packageName = "http-cache-semantics";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz";
- sha512 = "carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==";
- };
- };
"http-errors-1.7.2" = {
name = "http-errors";
packageName = "http-errors";
@@ -2570,22 +2489,13 @@ let
sha512 = "cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==";
};
};
- "ignore-5.1.8" = {
+ "ignore-5.2.0" = {
name = "ignore";
packageName = "ignore";
- version = "5.1.8";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz";
- sha512 = "BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==";
- };
- };
- "ignore-by-default-1.0.1" = {
- name = "ignore-by-default";
- packageName = "ignore-by-default";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz";
- sha1 = "48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09";
+ url = "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz";
+ sha512 = "CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==";
};
};
"immediate-3.0.6" = {
@@ -2606,15 +2516,6 @@ let
sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==";
};
};
- "import-lazy-2.1.0" = {
- name = "import-lazy";
- packageName = "import-lazy";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz";
- sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43";
- };
- };
"imurmurhash-0.1.4" = {
name = "imurmurhash";
packageName = "imurmurhash";
@@ -2624,6 +2525,15 @@ let
sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
};
};
+ "indent-string-4.0.0" = {
+ name = "indent-string";
+ packageName = "indent-string";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz";
+ sha512 = "EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==";
+ };
+ };
"inflight-1.0.6" = {
name = "inflight";
packageName = "inflight";
@@ -2678,15 +2588,6 @@ let
sha512 = "HtszKchBQTcqw1DC09uD7i7vvMayHGM1OCo6AHt5pkgZEyo99ClhHTMJdf+Ezc9ovuNNxcH89QfyclGthjZJOw==";
};
};
- "is-arrayish-0.2.1" = {
- name = "is-arrayish";
- packageName = "is-arrayish";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz";
- sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d";
- };
- };
"is-arrayish-0.3.2" = {
name = "is-arrayish";
packageName = "is-arrayish";
@@ -2696,24 +2597,6 @@ let
sha512 = "eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==";
};
};
- "is-binary-path-2.1.0" = {
- name = "is-binary-path";
- packageName = "is-binary-path";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz";
- sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==";
- };
- };
- "is-ci-2.0.0" = {
- name = "is-ci";
- packageName = "is-ci";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz";
- sha512 = "YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==";
- };
- };
"is-core-module-2.4.0" = {
name = "is-core-module";
packageName = "is-core-module";
@@ -2759,22 +2642,13 @@ let
sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==";
};
};
- "is-glob-4.0.1" = {
+ "is-glob-4.0.3" = {
name = "is-glob";
packageName = "is-glob";
- version = "4.0.1";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz";
- sha512 = "5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==";
- };
- };
- "is-installed-globally-0.3.2" = {
- name = "is-installed-globally";
- packageName = "is-installed-globally";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz";
- sha512 = "wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==";
+ url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz";
+ sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==";
};
};
"is-my-ip-valid-1.0.0" = {
@@ -2795,15 +2669,6 @@ let
sha512 = "VTPuvvGQtxvCeghwspQu1rBgjYUT6FGxPlvFKbYuFtgc4ADsX3U5ihZOYN0qyU6u+d4X9xXb0IT5O6QpXKt87A==";
};
};
- "is-npm-4.0.0" = {
- name = "is-npm";
- packageName = "is-npm";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-npm/-/is-npm-4.0.0.tgz";
- sha512 = "96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==";
- };
- };
"is-number-7.0.0" = {
name = "is-number";
packageName = "is-number";
@@ -2813,15 +2678,6 @@ let
sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==";
};
};
- "is-obj-2.0.0" = {
- name = "is-obj";
- packageName = "is-obj";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz";
- sha512 = "drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==";
- };
- };
"is-object-1.0.2" = {
name = "is-object";
packageName = "is-object";
@@ -2831,15 +2687,6 @@ let
sha512 = "2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==";
};
};
- "is-path-inside-3.0.3" = {
- name = "is-path-inside";
- packageName = "is-path-inside";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz";
- sha512 = "Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==";
- };
- };
"is-plain-object-5.0.0" = {
name = "is-plain-object";
packageName = "is-plain-object";
@@ -2867,15 +2714,6 @@ let
sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84";
};
};
- "is-stream-1.1.0" = {
- name = "is-stream";
- packageName = "is-stream";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz";
- sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
- };
- };
"is-stream-2.0.0" = {
name = "is-stream";
packageName = "is-stream";
@@ -2894,13 +2732,13 @@ let
sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
};
};
- "is-yarn-global-0.3.0" = {
- name = "is-yarn-global";
- packageName = "is-yarn-global";
- version = "0.3.0";
+ "is-windows-1.0.2" = {
+ name = "is-windows";
+ packageName = "is-windows";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz";
- sha512 = "VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==";
+ url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz";
+ sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==";
};
};
"isarray-1.0.0" = {
@@ -2930,76 +2768,85 @@ let
sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
};
};
- "istanbul-lib-coverage-2.0.5" = {
+ "istanbul-lib-coverage-3.2.0" = {
name = "istanbul-lib-coverage";
packageName = "istanbul-lib-coverage";
- version = "2.0.5";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz";
- sha512 = "8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==";
+ url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz";
+ sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==";
};
};
- "istanbul-lib-hook-2.0.7" = {
+ "istanbul-lib-hook-3.0.0" = {
name = "istanbul-lib-hook";
packageName = "istanbul-lib-hook";
- version = "2.0.7";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-2.0.7.tgz";
- sha512 = "vrRztU9VRRFDyC+aklfLoeXyNdTfga2EI3udDGn4cZ6fpSXpHLV9X6CHvfoMCPtggg8zvDDmC4b9xfu0z6/llA==";
+ url = "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz";
+ sha512 = "Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==";
};
};
- "istanbul-lib-instrument-3.3.0" = {
+ "istanbul-lib-instrument-4.0.3" = {
name = "istanbul-lib-instrument";
packageName = "istanbul-lib-instrument";
- version = "3.3.0";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz";
- sha512 = "5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==";
+ url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz";
+ sha512 = "BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==";
};
};
- "istanbul-lib-report-2.0.8" = {
+ "istanbul-lib-processinfo-2.0.2" = {
+ name = "istanbul-lib-processinfo";
+ packageName = "istanbul-lib-processinfo";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.2.tgz";
+ sha512 = "kOwpa7z9hme+IBPZMzQ5vdQj8srYgAtaRqeI48NGmAQ+/5yKiHLV0QbYqQpxsdEF0+w14SoB8YbnHKcXE2KnYw==";
+ };
+ };
+ "istanbul-lib-report-3.0.0" = {
name = "istanbul-lib-report";
packageName = "istanbul-lib-report";
- version = "2.0.8";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz";
- sha512 = "fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==";
+ url = "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz";
+ sha512 = "wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==";
};
};
- "istanbul-lib-source-maps-3.0.6" = {
+ "istanbul-lib-source-maps-4.0.1" = {
name = "istanbul-lib-source-maps";
packageName = "istanbul-lib-source-maps";
- version = "3.0.6";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz";
- sha512 = "R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==";
+ url = "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz";
+ sha512 = "n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==";
};
};
- "istanbul-reports-2.2.7" = {
+ "istanbul-reports-3.1.4" = {
name = "istanbul-reports";
packageName = "istanbul-reports";
- version = "2.2.7";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.7.tgz";
- sha512 = "uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==";
+ url = "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz";
+ sha512 = "r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==";
};
};
- "jasmine-3.6.2" = {
+ "jasmine-3.99.0" = {
name = "jasmine";
packageName = "jasmine";
- version = "3.6.2";
+ version = "3.99.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jasmine/-/jasmine-3.6.2.tgz";
- sha512 = "Uc0o2MRnC8TS1MjDrB8jE1umKEo2mflzGvdg0Ncs+yuLtOJ+uz/Wz8VmGsNGtuASr8+E0LDgPkOpvdoC76m5WQ==";
+ url = "https://registry.npmjs.org/jasmine/-/jasmine-3.99.0.tgz";
+ sha512 = "YIThBuHzaIIcjxeuLmPD40SjxkEcc8i//sGMDKCgkRMVgIwRJf5qyExtlJpQeh7pkeoBSOe6lQEdg+/9uKg9mw==";
};
};
- "jasmine-core-3.6.0" = {
+ "jasmine-core-3.99.0" = {
name = "jasmine-core";
packageName = "jasmine-core";
- version = "3.6.0";
+ version = "3.99.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jasmine-core/-/jasmine-core-3.6.0.tgz";
- sha512 = "8uQYa7zJN8hq9z+g8z1bqCfdC8eoDAeVnM5sfqs7KHv9/ifoJ500m018fpFc7RDaO6SWCLCXwo/wPSNcdYTgcw==";
+ url = "https://registry.npmjs.org/jasmine-core/-/jasmine-core-3.99.0.tgz";
+ sha512 = "+ZDaJlEfRopINQqgE+hvzRyDIQDeKfqqTvF8RzXsvU1yE3pBDRud2+Qfh9WvGgRpuzqxyQJVI6Amy5XQ11r/3w==";
};
};
"js-tokens-4.0.0" = {
@@ -3011,13 +2858,13 @@ let
sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==";
};
};
- "js-yaml-3.14.0" = {
+ "js-yaml-3.14.1" = {
name = "js-yaml";
packageName = "js-yaml";
- version = "3.14.0";
+ version = "3.14.1";
src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz";
- sha512 = "/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==";
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz";
+ sha512 = "okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==";
};
};
"js-yaml-4.1.0" = {
@@ -3047,24 +2894,6 @@ let
sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==";
};
};
- "json-buffer-3.0.0" = {
- name = "json-buffer";
- packageName = "json-buffer";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz";
- sha1 = "5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898";
- };
- };
- "json-parse-better-errors-1.0.2" = {
- name = "json-parse-better-errors";
- packageName = "json-parse-better-errors";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
- sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==";
- };
- };
"json-schema-0.2.3" = {
name = "json-schema";
packageName = "json-schema";
@@ -3083,15 +2912,6 @@ let
sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==";
};
};
- "json-schema-traverse-1.0.0" = {
- name = "json-schema-traverse";
- packageName = "json-schema-traverse";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz";
- sha512 = "NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==";
- };
- };
"json-stable-stringify-without-jsonify-1.0.1" = {
name = "json-stable-stringify-without-jsonify";
packageName = "json-stable-stringify-without-jsonify";
@@ -3110,6 +2930,15 @@ let
sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
};
};
+ "json5-2.2.0" = {
+ name = "json5";
+ packageName = "json5";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz";
+ sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==";
+ };
+ };
"jsonpointer-4.1.0" = {
name = "jsonpointer";
packageName = "jsonpointer";
@@ -3128,24 +2957,6 @@ let
sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
};
};
- "keyv-3.1.0" = {
- name = "keyv";
- packageName = "keyv";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz";
- sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==";
- };
- };
- "klona-2.0.4" = {
- name = "klona";
- packageName = "klona";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz";
- sha512 = "ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==";
- };
- };
"kuler-2.0.0" = {
name = "kuler";
packageName = "kuler";
@@ -3155,15 +2966,6 @@ let
sha512 = "Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==";
};
};
- "latest-version-5.1.0" = {
- name = "latest-version";
- packageName = "latest-version";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz";
- sha512 = "weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==";
- };
- };
"levn-0.4.1" = {
name = "levn";
packageName = "levn";
@@ -3182,15 +2984,6 @@ let
sha1 = "9a436b2cc7746ca59de7a41fa469b3efb76bd87e";
};
};
- "load-json-file-4.0.0" = {
- name = "load-json-file";
- packageName = "load-json-file";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz";
- sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b";
- };
- };
"localforage-1.9.0" = {
name = "localforage";
packageName = "localforage";
@@ -3200,13 +2993,13 @@ let
sha512 = "rR1oyNrKulpe+VM9cYmcFn6tsHuokyVHFaCM3+osEmxaHTbEk8oQu6eGDfS6DQLWi/N67XRmB8ECG37OES368g==";
};
};
- "locate-path-3.0.0" = {
+ "locate-path-5.0.0" = {
name = "locate-path";
packageName = "locate-path";
- version = "3.0.0";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz";
- sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==";
+ url = "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz";
+ sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==";
};
};
"lodash-4.17.21" = {
@@ -3218,15 +3011,6 @@ let
sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==";
};
};
- "lodash.clonedeep-4.5.0" = {
- name = "lodash.clonedeep";
- packageName = "lodash.clonedeep";
- version = "4.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz";
- sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef";
- };
- };
"lodash.flattendeep-4.4.0" = {
name = "lodash.flattendeep";
packageName = "lodash.flattendeep";
@@ -3236,31 +3020,31 @@ let
sha1 = "fb030917f86a3134e5bc9bec0d69e0013ddfedb2";
};
};
- "lodash.truncate-4.4.2" = {
- name = "lodash.truncate";
- packageName = "lodash.truncate";
- version = "4.4.2";
+ "lodash.merge-4.6.2" = {
+ name = "lodash.merge";
+ packageName = "lodash.merge";
+ version = "4.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz";
- sha1 = "5a350da0b1113b837ecfffd5812cbe58d6eae193";
+ url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz";
+ sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==";
};
};
- "logform-2.2.0" = {
+ "logform-2.4.0" = {
name = "logform";
packageName = "logform";
- version = "2.2.0";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/logform/-/logform-2.2.0.tgz";
- sha512 = "N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg==";
+ url = "https://registry.npmjs.org/logform/-/logform-2.4.0.tgz";
+ sha512 = "CPSJw4ftjf517EhXZGGvTHHkYobo7ZCc0kvwUoOYcjfR2UVrI66RHj8MCrfAdEitdmFqbu2BYdYs8FHHZSb6iw==";
};
};
- "loglevel-1.7.1" = {
+ "loglevel-1.8.0" = {
name = "loglevel";
packageName = "loglevel";
- version = "1.7.1";
+ version = "1.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz";
- sha512 = "Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==";
+ url = "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz";
+ sha512 = "G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==";
};
};
"lowdb-1.0.0" = {
@@ -3272,33 +3056,6 @@ let
sha512 = "2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==";
};
};
- "lowercase-keys-1.0.1" = {
- name = "lowercase-keys";
- packageName = "lowercase-keys";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz";
- sha512 = "G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==";
- };
- };
- "lowercase-keys-2.0.0" = {
- name = "lowercase-keys";
- packageName = "lowercase-keys";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz";
- sha512 = "tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==";
- };
- };
- "lru-cache-4.1.5" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "4.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz";
- sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==";
- };
- };
"lru-cache-6.0.0" = {
name = "lru-cache";
packageName = "lru-cache";
@@ -3317,15 +3074,6 @@ let
sha1 = "b5c8351b9464cbd750335a79650a0ec0e56118dd";
};
};
- "make-dir-2.1.0" = {
- name = "make-dir";
- packageName = "make-dir";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz";
- sha512 = "LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==";
- };
- };
"make-dir-3.1.0" = {
name = "make-dir";
packageName = "make-dir";
@@ -3335,22 +3083,31 @@ let
sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==";
};
};
- "matrix-appservice-0.8.0" = {
+ "matrix-appservice-0.10.0" = {
name = "matrix-appservice";
packageName = "matrix-appservice";
- version = "0.8.0";
+ version = "0.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/matrix-appservice/-/matrix-appservice-0.8.0.tgz";
- sha512 = "mfgMpmV3dWLtzrd4V/3XtqUD0P44I/mTgsRreW5jMhSaUnnRGZbpptBw2q4/axbLjw2FarlWtOVgertDGMtccA==";
+ url = "https://registry.npmjs.org/matrix-appservice/-/matrix-appservice-0.10.0.tgz";
+ sha512 = "bxkvPaFXzuuRfqSQgIBbA6M+nKXeRJEeZlJfzjhP0RBBMl62HQTXqNLSVHhLRCdzKbr1OayrbDKL+BnmoghDDA==";
};
};
- "matrix-appservice-bridge-3.1.2" = {
+ "matrix-appservice-bridge-3.2.0" = {
name = "matrix-appservice-bridge";
packageName = "matrix-appservice-bridge";
- version = "3.1.2";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/matrix-appservice-bridge/-/matrix-appservice-bridge-3.1.2.tgz";
- sha512 = "1VjKSalKS/9/MknrcAkAEFcoeOduzqBWr3LHmuwc4+T94vtCrA3WX+SciurxW8jfs0D8sLdnNjH1sMVAPfA2Gw==";
+ url = "https://registry.npmjs.org/matrix-appservice-bridge/-/matrix-appservice-bridge-3.2.0.tgz";
+ sha512 = "fkVarDN2vLwgr/j2gOAT58AOVK+ualZghOI5oIOCImwut4U7gXBig2sjJ9f+NYjE2ljlWOas4UPSRLsly16EvQ==";
+ };
+ };
+ "matrix-bot-sdk-0.5.19" = {
+ name = "matrix-bot-sdk";
+ packageName = "matrix-bot-sdk";
+ version = "0.5.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/matrix-bot-sdk/-/matrix-bot-sdk-0.5.19.tgz";
+ sha512 = "RIPyvQPkOVp2yTKeDgp5rcn6z/DiKdHb6E8c69K+utai8ypRGtfDRj0PGqP+1XzqC9Wb1OFrESCUB5t0ffdC9g==";
};
};
"matrix-bot-sdk-0.6.0-beta.2" = {
@@ -3362,13 +3119,13 @@ let
sha512 = "D9aQ2++1bJIzka2uIz22HkaeyT058QGOh96xdxiDOaezyzLY5BN7ehYg+P0xRzDYDFKx9DbqDYCt97IkfahtPw==";
};
};
- "matrix-js-sdk-9.11.0" = {
+ "matrix-js-sdk-12.5.0" = {
name = "matrix-js-sdk";
packageName = "matrix-js-sdk";
- version = "9.11.0";
+ version = "12.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/matrix-js-sdk/-/matrix-js-sdk-9.11.0.tgz";
- sha512 = "wP28ybOxyQ7lbC48QddRORYr8atEwbTqDOsu8H6u9jTTgB2qqczI/bkSoXHtutODuSeLY5x0UuwLcxVCy4yxVQ==";
+ url = "https://registry.npmjs.org/matrix-js-sdk/-/matrix-js-sdk-12.5.0.tgz";
+ sha512 = "HnEXoEhqpNp9/W9Ep7ZNZAubFlUssFyVpjgKfMOxxg+dYbBk5NWToHmAPQxlRUgrZ/rIMLVyMJROSCIthDbo2A==";
};
};
"matrix-org-irc-1.2.0" = {
@@ -3398,15 +3155,6 @@ let
sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61";
};
};
- "merge-source-map-1.1.0" = {
- name = "merge-source-map";
- packageName = "merge-source-map";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz";
- sha512 = "Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==";
- };
- };
"merge2-1.4.1" = {
name = "merge2";
packageName = "merge2";
@@ -3461,15 +3209,6 @@ let
sha512 = "crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==";
};
};
- "mimic-response-1.0.1" = {
- name = "mimic-response";
- packageName = "mimic-response";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz";
- sha512 = "j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==";
- };
- };
"mimic-response-2.1.0" = {
name = "mimic-response";
packageName = "mimic-response";
@@ -3605,13 +3344,13 @@ let
sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==";
};
};
- "nanoid-3.1.23" = {
+ "nanoid-3.3.0" = {
name = "nanoid";
packageName = "nanoid";
- version = "3.1.23";
+ version = "3.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz";
- sha512 = "FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==";
+ url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.0.tgz";
+ sha512 = "JzxqqT5u/x+/KOFSd7JP15DOo9nOoHpx6DYatqIHUW2+flybkm+mdcraotSQR5WcnZr+qhGVh8Ted0KdfSMxlg==";
};
};
"napi-build-utils-1.0.2" = {
@@ -3650,15 +3389,6 @@ let
sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==";
};
};
- "nested-error-stacks-2.1.0" = {
- name = "nested-error-stacks";
- packageName = "nested-error-stacks";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz";
- sha512 = "AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==";
- };
- };
"node-abi-2.30.1" = {
name = "node-abi";
packageName = "node-abi";
@@ -3677,22 +3407,22 @@ let
sha512 = "MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg==";
};
};
- "nodemon-2.0.7" = {
- name = "nodemon";
- packageName = "nodemon";
- version = "2.0.7";
+ "node-preload-0.2.1" = {
+ name = "node-preload";
+ packageName = "node-preload";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.7.tgz";
- sha512 = "XHzK69Awgnec9UzHr1kc8EomQh4sjTQ8oRf8TsGrSmHDx9/UmiGG9E/mM3BuTfNeFwdNBvrqQq/RHL0xIeyFOA==";
+ url = "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz";
+ sha512 = "RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==";
};
};
- "nopt-1.0.10" = {
- name = "nopt";
- packageName = "nopt";
- version = "1.0.10";
+ "node-releases-2.0.2" = {
+ name = "node-releases";
+ packageName = "node-releases";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz";
- sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
+ url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz";
+ sha512 = "XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==";
};
};
"nopt-3.0.6" = {
@@ -3713,33 +3443,6 @@ let
sha512 = "Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==";
};
};
- "normalize-package-data-2.5.0" = {
- name = "normalize-package-data";
- packageName = "normalize-package-data";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz";
- sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==";
- };
- };
- "normalize-path-3.0.0" = {
- name = "normalize-path";
- packageName = "normalize-path";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz";
- sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==";
- };
- };
- "normalize-url-4.5.1" = {
- name = "normalize-url";
- packageName = "normalize-url";
- version = "4.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz";
- sha512 = "9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==";
- };
- };
"npmlog-4.1.2" = {
name = "npmlog";
packageName = "npmlog";
@@ -3758,13 +3461,13 @@ let
sha1 = "097b602b53422a522c1afb8790318336941a011d";
};
};
- "nyc-14.1.1" = {
+ "nyc-15.1.0" = {
name = "nyc";
packageName = "nyc";
- version = "14.1.1";
+ version = "15.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/nyc/-/nyc-14.1.1.tgz";
- sha512 = "OI0vm6ZGUnoGZv/tLdZ2esSVzDwUC88SNs+6JoSOMVxA+gKMB8Tk7jBwgemLx4O40lhhvZCVw1C+OYLOBOPXWw==";
+ url = "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz";
+ sha512 = "jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==";
};
};
"oauth-sign-0.9.0" = {
@@ -3794,13 +3497,13 @@ let
sha512 = "gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==";
};
};
- "object-inspect-1.10.3" = {
+ "object-inspect-1.12.0" = {
name = "object-inspect";
packageName = "object-inspect";
- version = "1.10.3";
+ version = "1.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz";
- sha512 = "e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==";
+ url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz";
+ sha512 = "Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==";
};
};
"on-finished-2.3.0" = {
@@ -3848,24 +3551,6 @@ let
sha512 = "74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==";
};
};
- "os-homedir-1.0.2" = {
- name = "os-homedir";
- packageName = "os-homedir";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
- sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
- };
- };
- "p-cancelable-1.1.0" = {
- name = "p-cancelable";
- packageName = "p-cancelable";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz";
- sha512 = "s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==";
- };
- };
"p-finally-1.0.0" = {
name = "p-finally";
packageName = "p-finally";
@@ -3884,13 +3569,22 @@ let
sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==";
};
};
- "p-locate-3.0.0" = {
+ "p-locate-4.1.0" = {
name = "p-locate";
packageName = "p-locate";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz";
+ sha512 = "R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==";
+ };
+ };
+ "p-map-3.0.0" = {
+ name = "p-map";
+ packageName = "p-map";
version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz";
- sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==";
+ url = "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz";
+ sha512 = "d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==";
};
};
"p-queue-6.6.2" = {
@@ -3902,6 +3596,15 @@ let
sha512 = "RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==";
};
};
+ "p-retry-4.6.1" = {
+ name = "p-retry";
+ packageName = "p-retry";
+ version = "4.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz";
+ sha512 = "e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==";
+ };
+ };
"p-timeout-3.2.0" = {
name = "p-timeout";
packageName = "p-timeout";
@@ -3920,22 +3623,13 @@ let
sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==";
};
};
- "package-hash-3.0.0" = {
+ "package-hash-4.0.0" = {
name = "package-hash";
packageName = "package-hash";
- version = "3.0.0";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/package-hash/-/package-hash-3.0.0.tgz";
- sha512 = "lOtmukMDVvtkL84rJHI7dpTYq+0rli8N2wlnqUcBuDWCfVhRUfOmnR9SsoHFMLpACvEV60dX7rd0rFaYDZI+FA==";
- };
- };
- "package-json-6.5.0" = {
- name = "package-json";
- packageName = "package-json";
- version = "6.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz";
- sha512 = "k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==";
+ url = "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz";
+ sha512 = "whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==";
};
};
"packet-reader-1.0.0" = {
@@ -3956,15 +3650,6 @@ let
sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==";
};
};
- "parse-json-4.0.0" = {
- name = "parse-json";
- packageName = "parse-json";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz";
- sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
- };
- };
"parse-srcset-1.0.2" = {
name = "parse-srcset";
packageName = "parse-srcset";
@@ -3983,13 +3668,13 @@ let
sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==";
};
};
- "path-exists-3.0.0" = {
+ "path-exists-4.0.0" = {
name = "path-exists";
packageName = "path-exists";
- version = "3.0.0";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz";
- sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
+ url = "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz";
+ sha512 = "ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==";
};
};
"path-is-absolute-1.0.1" = {
@@ -4028,15 +3713,6 @@ let
sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c";
};
};
- "path-type-3.0.0" = {
- name = "path-type";
- packageName = "path-type";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz";
- sha512 = "T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==";
- };
- };
"path-type-4.0.0" = {
name = "path-type";
packageName = "path-type";
@@ -4055,13 +3731,13 @@ let
sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
};
};
- "pg-8.6.0" = {
+ "pg-8.7.3" = {
name = "pg";
packageName = "pg";
- version = "8.6.0";
+ version = "8.7.3";
src = fetchurl {
- url = "https://registry.npmjs.org/pg/-/pg-8.6.0.tgz";
- sha512 = "qNS9u61lqljTDFvmk/N66EeGq3n6Ujzj0FFyNMGQr6XuEv4tgNTXvJQTfJdcvGit5p5/DWPu+wj920hAJFI+QQ==";
+ url = "https://registry.npmjs.org/pg/-/pg-8.7.3.tgz";
+ sha512 = "HPmH4GH4H3AOprDJOazoIcpI49XFsHCe8xlrjHkWiapdbHK+HLtbm/GQzXYAZwmPju/kzKhjaSfMACG+8cgJcw==";
};
};
"pg-connection-string-2.5.0" = {
@@ -4082,13 +3758,13 @@ let
sha512 = "WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==";
};
};
- "pg-pool-3.3.0" = {
+ "pg-pool-3.5.1" = {
name = "pg-pool";
packageName = "pg-pool";
- version = "3.3.0";
+ version = "3.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.3.0.tgz";
- sha512 = "0O5huCql8/D6PIRFAlmccjphLYWC+JIzvUhSzXSpGaf+tjTZc4nn+Lr7mLXBbFJfvwbP0ywDv73EiaBsxn7zdg==";
+ url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.5.1.tgz";
+ sha512 = "6iCR0wVrro6OOHFsyavV+i6KYL4lVNyYAB9RD18w66xSzN+d8b66HiwuP30Gp1SH5O9T82fckkzsRjlrhD0ioQ==";
};
};
"pg-protocol-1.5.0" = {
@@ -4118,6 +3794,15 @@ let
sha512 = "YmuA56alyBq7M59vxVBfPJrGSozru8QAdoNlWuW3cz8l+UX3cWge0vTvjKhsSHSJpo3Bom8/Mm6hf0TR5GY0+w==";
};
};
+ "picocolors-1.0.0" = {
+ name = "picocolors";
+ packageName = "picocolors";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz";
+ sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==";
+ };
+ };
"picomatch-2.3.0" = {
name = "picomatch";
packageName = "picomatch";
@@ -4136,31 +3821,22 @@ let
sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
};
};
- "pify-4.0.1" = {
- name = "pify";
- packageName = "pify";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz";
- sha512 = "uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==";
- };
- };
- "pkg-dir-3.0.0" = {
+ "pkg-dir-4.2.0" = {
name = "pkg-dir";
packageName = "pkg-dir";
- version = "3.0.0";
+ version = "4.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz";
- sha512 = "/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==";
+ url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz";
+ sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==";
};
};
- "postcss-8.3.0" = {
+ "postcss-8.4.6" = {
name = "postcss";
packageName = "postcss";
- version = "8.3.0";
+ version = "8.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss/-/postcss-8.3.0.tgz";
- sha512 = "+ogXpdAjWGa+fdYY5BQ96V/6tAo+TdSSIMP5huJBIygdWwKtVoB5JWZ7yUd4xZ8r+8Kvvx4nyg/PQ071H4UtcQ==";
+ url = "https://registry.npmjs.org/postcss/-/postcss-8.4.6.tgz";
+ sha512 = "OovjwIzs9Te46vlEx7+uXB0PLijpwjXGKXjVGGPIGubGpq7uh5Xgf6D6FiJ/SzJMBosHDp6a2hiXOS97iBXcaA==";
};
};
"postgres-array-2.0.0" = {
@@ -4217,15 +3893,6 @@ let
sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==";
};
};
- "prepend-http-2.0.0" = {
- name = "prepend-http";
- packageName = "prepend-http";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz";
- sha1 = "e92434bfa5ea8c19f41cdfd401d741a3c819d897";
- };
- };
"process-nextick-args-2.0.1" = {
name = "process-nextick-args";
packageName = "process-nextick-args";
@@ -4235,22 +3902,22 @@ let
sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==";
};
};
- "progress-2.0.3" = {
- name = "progress";
- packageName = "progress";
- version = "2.0.3";
+ "process-on-spawn-1.0.0" = {
+ name = "process-on-spawn";
+ packageName = "process-on-spawn";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz";
- sha512 = "7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==";
+ url = "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz";
+ sha512 = "1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==";
};
};
- "prom-client-13.1.0" = {
+ "prom-client-14.0.1" = {
name = "prom-client";
packageName = "prom-client";
- version = "13.1.0";
+ version = "14.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/prom-client/-/prom-client-13.1.0.tgz";
- sha512 = "jT9VccZCWrJWXdyEtQddCDszYsiuWj5T0ekrPszi/WEegj3IZy6Mm09iOOVM86A4IKMWq8hZkT2dD9MaSe+sng==";
+ url = "https://registry.npmjs.org/prom-client/-/prom-client-14.0.1.tgz";
+ sha512 = "HxTArb6fkOntQHoRGvv4qd/BkorjliiuO2uSWC2KC17MUTKYttWdDoXX/vxOhQdkoECEM9BBH0pj2l8G8kev6w==";
};
};
"proxy-addr-2.0.6" = {
@@ -4262,22 +3929,13 @@ let
sha512 = "dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==";
};
};
- "proxyquire-1.8.0" = {
+ "proxyquire-2.1.3" = {
name = "proxyquire";
packageName = "proxyquire";
- version = "1.8.0";
+ version = "2.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/proxyquire/-/proxyquire-1.8.0.tgz";
- sha1 = "02d514a5bed986f04cbb2093af16741535f79edc";
- };
- };
- "pseudomap-1.0.2" = {
- name = "pseudomap";
- packageName = "pseudomap";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz";
- sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
+ url = "https://registry.npmjs.org/proxyquire/-/proxyquire-2.1.3.tgz";
+ sha512 = "BQWfCqYM+QINd+yawJz23tbBM40VIGXOdDw3X344KcclI/gtBbdWF6SlQ4nK/bYhF9d27KYug9WzljHC6B9Ysg==";
};
};
"psl-1.8.0" = {
@@ -4289,15 +3947,6 @@ let
sha512 = "RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==";
};
};
- "pstree.remy-1.1.8" = {
- name = "pstree.remy";
- packageName = "pstree.remy";
- version = "1.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz";
- sha512 = "77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==";
- };
- };
"pump-3.0.0" = {
name = "pump";
packageName = "pump";
@@ -4316,22 +3965,13 @@ let
sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==";
};
};
- "pupa-2.1.1" = {
- name = "pupa";
- packageName = "pupa";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz";
- sha512 = "l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==";
- };
- };
- "qs-6.10.1" = {
+ "qs-6.10.3" = {
name = "qs";
packageName = "qs";
- version = "6.10.1";
+ version = "6.10.3";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz";
- sha512 = "M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==";
+ url = "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz";
+ sha512 = "wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==";
};
};
"qs-6.5.2" = {
@@ -4361,13 +4001,13 @@ let
sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==";
};
};
- "quick-lru-4.0.1" = {
+ "quick-lru-5.1.1" = {
name = "quick-lru";
packageName = "quick-lru";
- version = "4.0.1";
+ version = "5.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz";
- sha512 = "ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==";
+ url = "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz";
+ sha512 = "WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==";
};
};
"range-parser-1.2.1" = {
@@ -4397,24 +4037,6 @@ let
sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==";
};
};
- "read-pkg-3.0.0" = {
- name = "read-pkg";
- packageName = "read-pkg";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz";
- sha1 = "9cbc686978fee65d16c00e2b19c237fcf6e38389";
- };
- };
- "read-pkg-up-4.0.0" = {
- name = "read-pkg-up";
- packageName = "read-pkg-up";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz";
- sha512 = "6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==";
- };
- };
"readable-stream-2.3.7" = {
name = "readable-stream";
packageName = "readable-stream";
@@ -4433,49 +4055,22 @@ let
sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==";
};
};
- "readdirp-3.5.0" = {
- name = "readdirp";
- packageName = "readdirp";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz";
- sha512 = "cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==";
- };
- };
- "regenerator-runtime-0.13.7" = {
+ "regenerator-runtime-0.13.9" = {
name = "regenerator-runtime";
packageName = "regenerator-runtime";
- version = "0.13.7";
+ version = "0.13.9";
src = fetchurl {
- url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz";
- sha512 = "a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==";
+ url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz";
+ sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==";
};
};
- "regexpp-3.1.0" = {
+ "regexpp-3.2.0" = {
name = "regexpp";
packageName = "regexpp";
- version = "3.1.0";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz";
- sha512 = "ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==";
- };
- };
- "registry-auth-token-4.2.1" = {
- name = "registry-auth-token";
- packageName = "registry-auth-token";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz";
- sha512 = "6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==";
- };
- };
- "registry-url-5.1.0" = {
- name = "registry-url";
- packageName = "registry-url";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz";
- sha512 = "8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==";
+ url = "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz";
+ sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==";
};
};
"release-zalgo-1.0.0" = {
@@ -4532,15 +4127,6 @@ let
sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
};
};
- "require-from-string-2.0.2" = {
- name = "require-from-string";
- packageName = "require-from-string";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz";
- sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==";
- };
- };
"require-main-filename-2.0.0" = {
name = "require-main-filename";
packageName = "require-main-filename";
@@ -4550,15 +4136,6 @@ let
sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==";
};
};
- "resolve-1.1.7" = {
- name = "resolve";
- packageName = "resolve";
- version = "1.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz";
- sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b";
- };
- };
"resolve-1.20.0" = {
name = "resolve";
packageName = "resolve";
@@ -4577,13 +4154,22 @@ let
sha512 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==";
};
};
- "responselike-1.0.2" = {
- name = "responselike";
- packageName = "responselike";
- version = "1.0.2";
+ "resolve-from-5.0.0" = {
+ name = "resolve-from";
+ packageName = "resolve-from";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz";
- sha1 = "918720ef3b631c5642be068f15ade5a46f4ba1e7";
+ url = "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz";
+ sha512 = "qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==";
+ };
+ };
+ "retry-0.13.1" = {
+ name = "retry";
+ packageName = "retry";
+ version = "0.13.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz";
+ sha512 = "XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==";
};
};
"reusify-1.0.4" = {
@@ -4595,15 +4181,6 @@ let
sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==";
};
};
- "rimraf-2.7.1" = {
- name = "rimraf";
- packageName = "rimraf";
- version = "2.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz";
- sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==";
- };
- };
"rimraf-3.0.2" = {
name = "rimraf";
packageName = "rimraf";
@@ -4640,6 +4217,15 @@ let
sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==";
};
};
+ "safe-stable-stringify-2.3.1" = {
+ name = "safe-stable-stringify";
+ packageName = "safe-stable-stringify";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz";
+ sha512 = "kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg==";
+ };
+ };
"safer-buffer-2.1.2" = {
name = "safer-buffer";
packageName = "safer-buffer";
@@ -4649,13 +4235,13 @@ let
sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
};
};
- "sanitize-html-2.4.0" = {
+ "sanitize-html-2.7.0" = {
name = "sanitize-html";
packageName = "sanitize-html";
- version = "2.4.0";
+ version = "2.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.4.0.tgz";
- sha512 = "Y1OgkUiTPMqwZNRLPERSEi39iOebn2XJLbeiGOBhaJD/yLqtLGu6GE5w7evx177LeGgSE+4p4e107LMiydOf6A==";
+ url = "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.7.0.tgz";
+ sha512 = "jfQelabOn5voO7FAfnQF7v+jsA6z9zC/O4ec0z3E35XPEtHYJT/OdUziVWlKW4irCr2kXaQAyXTXDHWAibg1tA==";
};
};
"semver-5.7.1" = {
@@ -4685,15 +4271,6 @@ let
sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==";
};
};
- "semver-diff-3.1.1" = {
- name = "semver-diff";
- packageName = "semver-diff";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz";
- sha512 = "GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==";
- };
- };
"send-0.17.1" = {
name = "send";
packageName = "send";
@@ -4802,15 +4379,6 @@ let
sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==";
};
};
- "slice-ansi-4.0.0" = {
- name = "slice-ansi";
- packageName = "slice-ansi";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz";
- sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==";
- };
- };
"source-map-0.5.7" = {
name = "source-map";
packageName = "source-map";
@@ -4829,58 +4397,22 @@ let
sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==";
};
};
- "source-map-js-0.6.2" = {
+ "source-map-js-1.0.2" = {
name = "source-map-js";
packageName = "source-map-js";
- version = "0.6.2";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz";
- sha512 = "/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==";
+ url = "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz";
+ sha512 = "R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==";
};
};
- "spawn-wrap-1.4.3" = {
+ "spawn-wrap-2.0.0" = {
name = "spawn-wrap";
packageName = "spawn-wrap";
- version = "1.4.3";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-1.4.3.tgz";
- sha512 = "IgB8md0QW/+tWqcavuFgKYR/qIRvJkRLPJDFaoXtLLUaVcCDK0+HeFTkmQHj3eprcYhc+gOl0aEA1w7qZlYezw==";
- };
- };
- "spdx-correct-3.1.1" = {
- name = "spdx-correct";
- packageName = "spdx-correct";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz";
- sha512 = "cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==";
- };
- };
- "spdx-exceptions-2.3.0" = {
- name = "spdx-exceptions";
- packageName = "spdx-exceptions";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz";
- sha512 = "/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==";
- };
- };
- "spdx-expression-parse-3.0.1" = {
- name = "spdx-expression-parse";
- packageName = "spdx-expression-parse";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz";
- sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==";
- };
- };
- "spdx-license-ids-3.0.8" = {
- name = "spdx-license-ids";
- packageName = "spdx-license-ids";
- version = "3.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.8.tgz";
- sha512 = "NDgA96EnaLSvtbM7trJj+t1LUR3pirkDCcz9nOUlPb5DMBGsH7oES6C3hs3j7R9oHEa1EMvReS/BUAIT5Tcr0g==";
+ url = "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz";
+ sha512 = "EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==";
};
};
"split2-3.2.2" = {
@@ -4964,24 +4496,6 @@ let
sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==";
};
};
- "string-width-3.1.0" = {
- name = "string-width";
- packageName = "string-width";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz";
- sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==";
- };
- };
- "string-width-4.2.2" = {
- name = "string-width";
- packageName = "string-width";
- version = "4.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz";
- sha512 = "XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==";
- };
- };
"string-width-4.2.3" = {
name = "string-width";
packageName = "string-width";
@@ -5027,24 +4541,6 @@ let
sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
};
};
- "strip-ansi-5.2.0" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz";
- sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==";
- };
- };
- "strip-ansi-6.0.0" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
- version = "6.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz";
- sha512 = "AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==";
- };
- };
"strip-ansi-6.0.1" = {
name = "strip-ansi";
packageName = "strip-ansi";
@@ -5054,13 +4550,13 @@ let
sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==";
};
};
- "strip-bom-3.0.0" = {
+ "strip-bom-4.0.0" = {
name = "strip-bom";
packageName = "strip-bom";
- version = "3.0.0";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz";
- sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3";
+ url = "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz";
+ sha512 = "3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==";
};
};
"strip-json-comments-2.0.1" = {
@@ -5090,15 +4586,6 @@ let
sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==";
};
};
- "supports-color-6.1.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz";
- sha512 = "qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==";
- };
- };
"supports-color-7.2.0" = {
name = "supports-color";
packageName = "supports-color";
@@ -5108,15 +4595,6 @@ let
sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==";
};
};
- "table-6.7.1" = {
- name = "table";
- packageName = "table";
- version = "6.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/table/-/table-6.7.1.tgz";
- sha512 = "ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==";
- };
- };
"tar-6.1.11" = {
name = "tar";
packageName = "tar";
@@ -5153,22 +4631,13 @@ let
sha1 = "2e3cb2c39ea449e55d1e6cd91117accca4588021";
};
};
- "term-size-2.2.1" = {
- name = "term-size";
- packageName = "term-size";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz";
- sha512 = "wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==";
- };
- };
- "test-exclude-5.2.3" = {
+ "test-exclude-6.0.0" = {
name = "test-exclude";
packageName = "test-exclude";
- version = "5.2.3";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz";
- sha512 = "M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==";
+ url = "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz";
+ sha512 = "cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==";
};
};
"text-hex-1.0.0" = {
@@ -5198,15 +4667,6 @@ let
sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e";
};
};
- "to-readable-stream-1.0.0" = {
- name = "to-readable-stream";
- packageName = "to-readable-stream";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz";
- sha512 = "Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==";
- };
- };
"to-regex-range-5.0.1" = {
name = "to-regex-range";
packageName = "to-regex-range";
@@ -5225,15 +4685,6 @@ let
sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==";
};
};
- "touch-3.1.0" = {
- name = "touch";
- packageName = "touch";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz";
- sha512 = "WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==";
- };
- };
"tough-cookie-2.5.0" = {
name = "tough-cookie";
packageName = "tough-cookie";
@@ -5297,6 +4748,15 @@ let
sha512 = "XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==";
};
};
+ "type-fest-0.20.2" = {
+ name = "type-fest";
+ packageName = "type-fest";
+ version = "0.20.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz";
+ sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==";
+ };
+ };
"type-fest-0.8.1" = {
name = "type-fest";
packageName = "type-fest";
@@ -5324,22 +4784,13 @@ let
sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==";
};
};
- "typescript-4.4.3" = {
+ "typescript-4.5.5" = {
name = "typescript";
packageName = "typescript";
- version = "4.4.3";
+ version = "4.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-4.4.3.tgz";
- sha512 = "4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==";
- };
- };
- "undefsafe-2.0.3" = {
- name = "undefsafe";
- packageName = "undefsafe";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.3.tgz";
- sha512 = "nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz";
+ sha512 = "TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==";
};
};
"underscore-1.4.4" = {
@@ -5360,15 +4811,6 @@ let
sha512 = "7uvcWI3hWshSADBu4JpnyYbTVc7YlhF5GDW/oPD5AxIxl34k4wXR3WDkPnzLxkN32LiTCTKMQLtKVZiwki3zGg==";
};
};
- "unique-string-2.0.0" = {
- name = "unique-string";
- packageName = "unique-string";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz";
- sha512 = "uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==";
- };
- };
"unpipe-1.0.0" = {
name = "unpipe";
packageName = "unpipe";
@@ -5378,15 +4820,6 @@ let
sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec";
};
};
- "update-notifier-4.1.3" = {
- name = "update-notifier";
- packageName = "update-notifier";
- version = "4.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/update-notifier/-/update-notifier-4.1.3.tgz";
- sha512 = "Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A==";
- };
- };
"uri-js-4.2.2" = {
name = "uri-js";
packageName = "uri-js";
@@ -5396,15 +4829,6 @@ let
sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==";
};
};
- "url-parse-lax-3.0.0" = {
- name = "url-parse-lax";
- packageName = "url-parse-lax";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz";
- sha1 = "16b5cafc07dbe3676c1b1999177823d6503acb0c";
- };
- };
"utf-8-validate-5.0.5" = {
name = "utf-8-validate";
packageName = "utf-8-validate";
@@ -5450,15 +4874,6 @@ let
sha512 = "l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==";
};
};
- "validate-npm-package-license-3.0.4" = {
- name = "validate-npm-package-license";
- packageName = "validate-npm-package-license";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz";
- sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==";
- };
- };
"vary-1.1.2" = {
name = "vary";
packageName = "vary";
@@ -5477,15 +4892,6 @@ let
sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
};
};
- "which-1.3.1" = {
- name = "which";
- packageName = "which";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz";
- sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==";
- };
- };
"which-2.0.2" = {
name = "which";
packageName = "which";
@@ -5513,40 +4919,31 @@ let
sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==";
};
};
- "widest-line-3.1.0" = {
- name = "widest-line";
- packageName = "widest-line";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz";
- sha512 = "NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==";
- };
- };
- "winston-3.3.3" = {
+ "winston-3.6.0" = {
name = "winston";
packageName = "winston";
- version = "3.3.3";
+ version = "3.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/winston/-/winston-3.3.3.tgz";
- sha512 = "oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw==";
+ url = "https://registry.npmjs.org/winston/-/winston-3.6.0.tgz";
+ sha512 = "9j8T75p+bcN6D00sF/zjFVmPp+t8KMPB1MzbbzYjeN9VWxdsYnTB40TkbNUEXAmILEfChMvAMgidlX64OG3p6w==";
};
};
- "winston-daily-rotate-file-4.5.5" = {
+ "winston-daily-rotate-file-4.6.1" = {
name = "winston-daily-rotate-file";
packageName = "winston-daily-rotate-file";
- version = "4.5.5";
+ version = "4.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/winston-daily-rotate-file/-/winston-daily-rotate-file-4.5.5.tgz";
- sha512 = "ds0WahIjiDhKCiMXmY799pDBW+58ByqIBtUcsqr4oDoXrAI3Zn+hbgFdUxzMfqA93OG0mPLYVMiotqTgE/WeWQ==";
+ url = "https://registry.npmjs.org/winston-daily-rotate-file/-/winston-daily-rotate-file-4.6.1.tgz";
+ sha512 = "Ycch4LZmTycbhgiI2eQXBKI1pKcEQgAqmBjyq7/dC6Dk77nasdxvhLKraqTdCw7wNDSs8/M0jXaLATHquG7xYg==";
};
};
- "winston-transport-4.4.0" = {
+ "winston-transport-4.5.0" = {
name = "winston-transport";
packageName = "winston-transport";
- version = "4.4.0";
+ version = "4.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.0.tgz";
- sha512 = "Lc7/p3GtqtqPBYYtS6KCN3c77/2QCev51DvcJKbkFPQNoj1sinkGwLGFDxkXY9J6p9+EPnYs+D90uwbnaiURTw==";
+ url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz";
+ sha512 = "YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==";
};
};
"word-wrap-1.2.3" = {
@@ -5558,13 +4955,13 @@ let
sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==";
};
};
- "wrap-ansi-5.1.0" = {
+ "wrap-ansi-6.2.0" = {
name = "wrap-ansi";
packageName = "wrap-ansi";
- version = "5.1.0";
+ version = "6.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz";
- sha512 = "QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==";
+ url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz";
+ sha512 = "r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==";
};
};
"wrappy-1.0.2" = {
@@ -5576,15 +4973,6 @@ let
sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
};
};
- "write-file-atomic-2.4.3" = {
- name = "write-file-atomic";
- packageName = "write-file-atomic";
- version = "2.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz";
- sha512 = "GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==";
- };
- };
"write-file-atomic-3.0.3" = {
name = "write-file-atomic";
packageName = "write-file-atomic";
@@ -5594,15 +4982,6 @@ let
sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==";
};
};
- "xdg-basedir-4.0.0" = {
- name = "xdg-basedir";
- packageName = "xdg-basedir";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz";
- sha512 = "PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==";
- };
- };
"xtend-4.0.2" = {
name = "xtend";
packageName = "xtend";
@@ -5621,15 +5000,6 @@ let
sha512 = "JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==";
};
};
- "yallist-2.1.2" = {
- name = "yallist";
- packageName = "yallist";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
- sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
- };
- };
"yallist-4.0.0" = {
name = "yallist";
packageName = "yallist";
@@ -5639,144 +5009,153 @@ let
sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==";
};
};
- "yargs-13.3.2" = {
+ "yargs-15.4.1" = {
name = "yargs";
packageName = "yargs";
- version = "13.3.2";
+ version = "15.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz";
- sha512 = "AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==";
+ url = "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz";
+ sha512 = "aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==";
};
};
- "yargs-parser-13.1.2" = {
+ "yargs-parser-18.1.3" = {
name = "yargs-parser";
packageName = "yargs-parser";
- version = "13.1.2";
+ version = "18.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz";
- sha512 = "3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==";
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz";
+ sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==";
};
};
};
args = {
name = "matrix-appservice-irc";
packageName = "matrix-appservice-irc";
- version = "0.32.1";
+ version = "0.33.1";
src = ./.;
dependencies = [
- sources."@babel/code-frame-7.12.11"
- (sources."@babel/generator-7.14.3" // {
+ sources."@alloc/quick-lru-5.2.0"
+ sources."@ampproject/remapping-2.1.2"
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/compat-data-7.17.0"
+ sources."@babel/core-7.17.4"
+ sources."@babel/generator-7.17.3"
+ sources."@babel/helper-compilation-targets-7.16.7"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
+ 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/helpers-7.17.2"
+ (sources."@babel/highlight-7.16.10" // {
dependencies = [
- sources."source-map-0.5.7"
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."supports-color-5.5.0"
];
})
- sources."@babel/helper-function-name-7.14.2"
- sources."@babel/helper-get-function-arity-7.12.13"
- sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.14.0"
- sources."@babel/highlight-7.14.0"
- sources."@babel/parser-7.14.3"
- sources."@babel/runtime-7.14.0"
- (sources."@babel/template-7.12.13" // {
+ sources."@babel/parser-7.17.3"
+ sources."@babel/runtime-7.17.2"
+ sources."@babel/template-7.16.7"
+ (sources."@babel/traverse-7.17.3" // {
dependencies = [
- sources."@babel/code-frame-7.12.13"
- ];
- })
- (sources."@babel/traverse-7.14.2" // {
- dependencies = [
- sources."@babel/code-frame-7.12.13"
sources."globals-11.12.0"
];
})
- sources."@babel/types-7.14.2"
+ sources."@babel/types-7.17.0"
+ sources."@colors/colors-1.5.0"
sources."@dabh/diagnostics-2.0.2"
- (sources."@eslint/eslintrc-0.4.1" // {
+ (sources."@eslint/eslintrc-1.1.0" // {
dependencies = [
sources."ignore-4.0.6"
];
})
+ sources."@humanwhocodes/config-array-0.9.3"
+ sources."@humanwhocodes/object-schema-1.2.1"
+ (sources."@istanbuljs/load-nyc-config-1.1.0" // {
+ dependencies = [
+ sources."argparse-1.0.10"
+ sources."js-yaml-3.14.1"
+ sources."resolve-from-5.0.0"
+ ];
+ })
+ sources."@istanbuljs/schema-0.1.3"
+ sources."@jridgewell/resolve-uri-3.0.5"
+ sources."@jridgewell/sourcemap-codec-1.4.11"
+ sources."@jridgewell/trace-mapping-0.3.4"
sources."@matrix-org/olm-https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.4.tgz"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@sentry/core-5.27.1"
- sources."@sentry/hub-5.27.1"
- sources."@sentry/minimal-5.27.1"
- sources."@sentry/node-5.27.1"
- sources."@sentry/tracing-5.27.1"
- sources."@sentry/types-5.27.1"
- sources."@sentry/utils-5.27.1"
- sources."@sindresorhus/is-0.14.0"
- sources."@szmarczak/http-timer-1.1.2"
- sources."@types/bluebird-3.5.32"
+ sources."@sentry/core-6.17.9"
+ sources."@sentry/hub-6.17.9"
+ sources."@sentry/minimal-6.17.9"
+ sources."@sentry/node-6.17.9"
+ sources."@sentry/tracing-6.17.9"
+ sources."@sentry/types-6.17.9"
+ sources."@sentry/utils-6.17.9"
+ sources."@tsconfig/node14-1.0.1"
+ sources."@types/bluebird-3.5.36"
sources."@types/body-parser-1.19.0"
sources."@types/connect-3.4.34"
- sources."@types/diff-5.0.1"
- sources."@types/express-4.17.11"
- sources."@types/express-serve-static-core-4.17.19"
+ sources."@types/diff-5.0.2"
+ sources."@types/express-4.17.13"
+ sources."@types/express-serve-static-core-4.17.28"
sources."@types/extend-3.0.1"
- sources."@types/he-1.1.1"
+ sources."@types/he-1.1.2"
sources."@types/json-schema-7.0.9"
sources."@types/mime-1.3.2"
- sources."@types/nedb-1.8.11"
+ sources."@types/nedb-1.8.12"
sources."@types/node-14.17.19"
sources."@types/nopt-3.0.29"
- sources."@types/pg-8.6.0"
+ sources."@types/pg-8.6.4"
sources."@types/qs-6.9.6"
sources."@types/range-parser-1.2.3"
- (sources."@types/sanitize-html-2.3.1" // {
+ sources."@types/retry-0.12.1"
+ (sources."@types/sanitize-html-2.6.2" // {
dependencies = [
sources."domhandler-4.2.0"
sources."htmlparser2-6.1.0"
];
})
sources."@types/serve-static-1.13.9"
- (sources."@typescript-eslint/eslint-plugin-4.33.0" // {
+ (sources."@typescript-eslint/eslint-plugin-5.12.0" // {
dependencies = [
- sources."lru-cache-6.0.0"
sources."semver-7.3.5"
- sources."yallist-4.0.0"
];
})
- (sources."@typescript-eslint/experimental-utils-4.33.0" // {
+ sources."@typescript-eslint/parser-5.12.0"
+ sources."@typescript-eslint/scope-manager-5.12.0"
+ sources."@typescript-eslint/type-utils-5.12.0"
+ sources."@typescript-eslint/types-5.12.0"
+ (sources."@typescript-eslint/typescript-estree-5.12.0" // {
dependencies = [
- sources."eslint-utils-3.0.0"
- ];
- })
- sources."@typescript-eslint/parser-4.33.0"
- sources."@typescript-eslint/scope-manager-4.33.0"
- sources."@typescript-eslint/types-4.33.0"
- (sources."@typescript-eslint/typescript-estree-4.33.0" // {
- dependencies = [
- sources."lru-cache-6.0.0"
sources."semver-7.3.5"
- sources."yallist-4.0.0"
];
})
- sources."@typescript-eslint/visitor-keys-4.33.0"
+ sources."@typescript-eslint/utils-5.12.0"
+ sources."@typescript-eslint/visitor-keys-5.12.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
- sources."acorn-7.4.1"
- sources."acorn-jsx-5.3.1"
+ sources."acorn-8.7.0"
+ sources."acorn-jsx-5.3.2"
sources."agent-base-6.0.2"
+ sources."aggregate-error-3.1.0"
sources."ajv-6.12.6"
sources."another-json-0.2.0"
- (sources."ansi-align-3.0.1" // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- sources."string-width-4.2.3"
- sources."strip-ansi-6.0.1"
- ];
- })
- sources."ansi-colors-4.1.1"
- sources."ansi-regex-4.1.0"
+ sources."ansi-regex-5.0.1"
(sources."ansi-styles-4.3.0" // {
dependencies = [
sources."color-convert-2.0.1"
];
})
- sources."anymatch-3.1.2"
- sources."append-transform-1.0.0"
+ sources."append-transform-2.0.0"
sources."aproba-1.2.0"
sources."archy-1.0.0"
(sources."are-we-there-yet-1.1.7" // {
@@ -5785,23 +5164,21 @@ let
sources."string_decoder-1.1.1"
];
})
- sources."argparse-1.0.10"
+ sources."argparse-2.0.1"
sources."array-flatten-1.1.1"
sources."array-union-2.1.0"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
- sources."astral-regex-2.0.0"
sources."async-0.2.10"
sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."balanced-match-1.0.2"
- sources."base-x-3.0.8"
+ sources."base-x-3.0.9"
sources."base64-js-1.5.1"
sources."basic-auth-2.0.1"
sources."bcrypt-pbkdf-1.0.2"
sources."better-sqlite3-7.4.3"
- sources."binary-extensions-2.2.0"
sources."binary-search-tree-0.2.5"
sources."bindings-1.5.0"
sources."bintrees-1.0.1"
@@ -5814,48 +5191,25 @@ let
sources."ms-2.0.0"
];
})
- (sources."boxen-4.2.0" // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- sources."chalk-3.0.0"
- sources."has-flag-4.0.0"
- sources."string-width-4.2.2"
- sources."strip-ansi-6.0.0"
- sources."supports-color-7.2.0"
- ];
- })
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."browser-request-0.3.3"
+ sources."browserslist-4.19.1"
sources."bs58-4.0.1"
sources."buffer-5.7.1"
sources."buffer-writer-2.0.0"
sources."bytes-3.1.0"
- (sources."cacheable-request-6.1.0" // {
- dependencies = [
- sources."get-stream-5.2.0"
- sources."lowercase-keys-2.0.0"
- ];
- })
- sources."caching-transform-3.0.2"
+ sources."caching-transform-4.0.0"
sources."call-bind-1.0.2"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
+ sources."caniuse-lite-1.0.30001312"
sources."caseless-0.12.0"
- (sources."chalk-2.4.2" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."supports-color-5.5.0"
- ];
- })
+ sources."chalk-4.1.2"
sources."chardet-1.3.0"
- sources."chokidar-3.5.1"
sources."chownr-2.0.0"
- sources."ci-info-2.0.0"
- sources."cli-boxes-2.2.1"
- sources."cliui-5.0.0"
- sources."clone-response-1.0.2"
+ sources."clean-stack-2.2.0"
+ sources."cliui-6.0.0"
sources."code-point-at-1.1.0"
sources."color-3.0.0"
(sources."color-convert-1.9.3" // {
@@ -5865,18 +5219,10 @@ let
})
sources."color-name-1.1.4"
sources."color-string-1.5.5"
- sources."colorette-1.2.2"
- sources."colors-1.4.0"
sources."colorspace-1.1.2"
sources."combined-stream-1.0.8"
sources."commondir-1.0.1"
sources."concat-map-0.0.1"
- (sources."configstore-5.0.1" // {
- dependencies = [
- sources."make-dir-3.1.0"
- sources."write-file-atomic-3.0.3"
- ];
- })
sources."console-control-strings-1.1.0"
sources."content-disposition-0.5.3"
sources."content-type-1.0.4"
@@ -5884,22 +5230,14 @@ let
sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."core-util-is-1.0.2"
- (sources."cp-file-6.2.0" // {
- dependencies = [
- sources."pify-4.0.1"
- ];
- })
sources."cross-spawn-7.0.3"
- sources."crypto-random-string-2.0.0"
sources."dashdash-1.14.1"
- sources."debug-4.3.1"
+ sources."debug-4.3.3"
sources."decamelize-1.2.0"
- sources."decompress-response-3.3.0"
sources."deep-extend-0.6.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."deepmerge-4.2.2"
- sources."default-require-extensions-2.0.0"
- sources."defer-to-connect-1.1.3"
+ sources."default-require-extensions-3.0.0"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."depd-1.1.2"
@@ -5920,59 +5258,42 @@ let
sources."domhandler-4.2.0"
];
})
- sources."dot-prop-5.3.0"
- sources."duplexer3-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
+ sources."electron-to-chromium-1.4.71"
sources."emoji-regex-8.0.0"
sources."enabled-2.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
- sources."enquirer-2.3.6"
sources."entities-2.2.0"
- (sources."error-ex-1.3.2" // {
- dependencies = [
- sources."is-arrayish-0.2.1"
- ];
- })
sources."es6-error-4.1.1"
- sources."escape-goat-2.1.1"
+ sources."escalade-3.1.1"
sources."escape-html-1.0.3"
sources."escape-string-regexp-4.0.0"
- (sources."eslint-7.21.0" // {
+ (sources."eslint-8.9.0" // {
dependencies = [
- sources."ansi-regex-5.0.1"
- sources."chalk-4.1.1"
- sources."has-flag-4.0.0"
- sources."ignore-4.0.6"
- sources."lru-cache-6.0.0"
- sources."semver-7.3.5"
- sources."strip-ansi-6.0.0"
- sources."supports-color-7.2.0"
- sources."yallist-4.0.0"
+ sources."eslint-scope-7.1.1"
+ sources."estraverse-5.3.0"
+ sources."glob-parent-6.0.2"
];
})
sources."eslint-scope-5.1.1"
- (sources."eslint-utils-2.1.0" // {
+ (sources."eslint-utils-3.0.0" // {
dependencies = [
- sources."eslint-visitor-keys-1.3.0"
- ];
- })
- sources."eslint-visitor-keys-2.1.0"
- (sources."espree-7.3.1" // {
- dependencies = [
- sources."eslint-visitor-keys-1.3.0"
+ sources."eslint-visitor-keys-2.1.0"
];
})
+ sources."eslint-visitor-keys-3.3.0"
+ sources."espree-9.3.1"
sources."esprima-4.0.1"
(sources."esquery-1.4.0" // {
dependencies = [
- sources."estraverse-5.2.0"
+ sources."estraverse-5.3.0"
];
})
(sources."esrecurse-4.3.0" // {
dependencies = [
- sources."estraverse-5.2.0"
+ sources."estraverse-5.3.0"
];
})
sources."estraverse-4.3.0"
@@ -5989,15 +5310,14 @@ let
})
sources."extend-3.0.2"
sources."extsprintf-1.3.0"
- sources."fast-deep-equal-3.1.1"
- sources."fast-glob-3.2.7"
+ sources."fast-deep-equal-3.1.3"
+ sources."fast-glob-3.2.11"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
- sources."fast-safe-stringify-2.0.7"
sources."fastq-1.13.0"
sources."fecha-4.2.1"
sources."file-entry-cache-6.0.1"
- sources."file-stream-rotator-0.5.7"
+ sources."file-stream-rotator-0.6.1"
sources."file-uri-to-path-1.0.0"
sources."fill-keys-1.0.2"
sources."fill-range-7.0.1"
@@ -6007,27 +5327,20 @@ let
sources."ms-2.0.0"
];
})
- sources."find-cache-dir-2.1.0"
- sources."find-up-3.0.0"
+ sources."find-cache-dir-3.3.2"
+ sources."find-up-4.1.0"
sources."flat-cache-3.0.4"
- sources."flatted-3.1.1"
+ sources."flatted-3.2.5"
sources."fn.name-1.1.0"
- (sources."foreground-child-1.5.6" // {
- dependencies = [
- sources."cross-spawn-4.0.2"
- sources."lru-cache-4.1.5"
- sources."which-1.3.1"
- sources."yallist-2.1.2"
- ];
- })
+ sources."foreground-child-2.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."forwarded-0.1.2"
sources."fresh-0.5.2"
+ sources."fromentries-1.3.2"
sources."fs-constants-1.0.0"
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
- sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
sources."functional-red-black-tree-1.0.1"
(sources."gauge-2.7.4" // {
@@ -6040,18 +5353,21 @@ let
})
sources."generate-function-2.3.1"
sources."generate-object-property-1.2.0"
+ sources."gensync-1.0.0-beta.2"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
- sources."get-stream-4.1.0"
+ sources."get-package-type-0.1.0"
sources."getpass-0.1.7"
sources."github-from-package-0.0.0"
sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."glob-to-regexp-0.4.1"
- sources."global-dirs-2.1.0"
- sources."globals-12.4.0"
- sources."globby-11.0.4"
- sources."got-9.6.0"
+ (sources."globals-13.12.1" // {
+ dependencies = [
+ sources."type-fest-0.20.2"
+ ];
+ })
+ sources."globby-11.1.0"
sources."graceful-fs-4.2.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
@@ -6059,20 +5375,13 @@ let
sources."has-flag-3.0.0"
sources."has-symbols-1.0.2"
sources."has-unicode-2.0.1"
- sources."has-yarn-2.1.0"
sources."hash.js-1.1.7"
- (sources."hasha-3.0.0" // {
- dependencies = [
- sources."is-stream-1.1.0"
- ];
- })
+ sources."hasha-5.2.2"
sources."he-1.2.0"
- sources."hosted-git-info-2.8.9"
sources."html-escaper-2.0.2"
sources."html-to-text-6.0.0"
sources."htmlencode-0.0.4"
sources."htmlparser2-4.1.0"
- sources."http-cache-semantics-4.1.0"
(sources."http-errors-1.7.2" // {
dependencies = [
sources."inherits-2.0.3"
@@ -6082,134 +5391,104 @@ let
sources."https-proxy-agent-5.0.0"
sources."iconv-lite-0.6.3"
sources."ieee754-1.2.1"
- sources."ignore-5.1.8"
- sources."ignore-by-default-1.0.1"
+ sources."ignore-5.2.0"
sources."immediate-3.0.6"
sources."import-fresh-3.3.0"
- sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
+ sources."indent-string-4.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.7"
sources."ipaddr.js-1.9.1"
sources."irc-colors-1.5.0"
sources."is-arrayish-0.3.2"
- sources."is-binary-path-2.1.0"
- sources."is-ci-2.0.0"
sources."is-core-module-2.4.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
- sources."is-glob-4.0.1"
- sources."is-installed-globally-0.3.2"
+ sources."is-glob-4.0.3"
sources."is-my-ip-valid-1.0.0"
sources."is-my-json-valid-2.20.5"
- sources."is-npm-4.0.0"
sources."is-number-7.0.0"
- sources."is-obj-2.0.0"
sources."is-object-1.0.2"
- sources."is-path-inside-3.0.3"
sources."is-plain-object-5.0.0"
sources."is-promise-2.2.2"
sources."is-property-1.0.2"
sources."is-stream-2.0.0"
sources."is-typedarray-1.0.0"
- sources."is-yarn-global-0.3.0"
+ sources."is-windows-1.0.2"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isstream-0.1.2"
- sources."istanbul-lib-coverage-2.0.5"
- sources."istanbul-lib-hook-2.0.7"
- sources."istanbul-lib-instrument-3.3.0"
- sources."istanbul-lib-report-2.0.8"
- (sources."istanbul-lib-source-maps-3.0.6" // {
+ sources."istanbul-lib-coverage-3.2.0"
+ sources."istanbul-lib-hook-3.0.0"
+ sources."istanbul-lib-instrument-4.0.3"
+ sources."istanbul-lib-processinfo-2.0.2"
+ sources."istanbul-lib-report-3.0.0"
+ (sources."istanbul-lib-source-maps-4.0.1" // {
dependencies = [
- sources."rimraf-2.7.1"
+ sources."source-map-0.6.1"
];
})
- sources."istanbul-reports-2.2.7"
- sources."jasmine-3.6.2"
- sources."jasmine-core-3.6.0"
+ sources."istanbul-reports-3.1.4"
+ sources."jasmine-3.99.0"
+ sources."jasmine-core-3.99.0"
sources."js-tokens-4.0.0"
- sources."js-yaml-3.14.0"
+ sources."js-yaml-4.1.0"
sources."jsbn-0.1.1"
sources."jsesc-2.5.2"
- sources."json-buffer-3.0.0"
- sources."json-parse-better-errors-1.0.2"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.4.1"
sources."json-stable-stringify-without-jsonify-1.0.1"
sources."json-stringify-safe-5.0.1"
+ sources."json5-2.2.0"
sources."jsonpointer-4.1.0"
sources."jsprim-1.4.1"
- sources."keyv-3.1.0"
- sources."klona-2.0.4"
sources."kuler-2.0.0"
- sources."latest-version-5.1.0"
sources."levn-0.4.1"
sources."lie-3.1.1"
- sources."load-json-file-4.0.0"
sources."localforage-1.9.0"
- sources."locate-path-3.0.0"
+ sources."locate-path-5.0.0"
sources."lodash-4.17.21"
- sources."lodash.clonedeep-4.5.0"
sources."lodash.flattendeep-4.4.0"
- sources."lodash.truncate-4.4.2"
- sources."logform-2.2.0"
- sources."loglevel-1.7.1"
+ sources."lodash.merge-4.6.2"
+ sources."logform-2.4.0"
+ sources."loglevel-1.8.0"
sources."lowdb-1.0.0"
- sources."lowercase-keys-1.0.1"
+ sources."lru-cache-6.0.0"
sources."lru_map-0.3.3"
- (sources."make-dir-2.1.0" // {
+ sources."make-dir-3.1.0"
+ sources."matrix-appservice-0.10.0"
+ (sources."matrix-appservice-bridge-3.2.0" // {
dependencies = [
- sources."pify-4.0.1"
- sources."semver-5.7.1"
- ];
- })
- sources."matrix-appservice-0.8.0"
- (sources."matrix-appservice-bridge-3.1.2" // {
- dependencies = [
- sources."@types/express-4.17.13"
- sources."argparse-2.0.1"
- sources."chalk-4.1.1"
- sources."has-flag-4.0.0"
- sources."js-yaml-4.1.0"
- sources."lru-cache-6.0.0"
sources."matrix-bot-sdk-0.6.0-beta.2"
sources."mkdirp-1.0.4"
sources."nopt-5.0.0"
- sources."supports-color-7.2.0"
- sources."yallist-4.0.0"
];
})
- (sources."matrix-js-sdk-9.11.0" // {
+ (sources."matrix-bot-sdk-0.5.19" // {
dependencies = [
- sources."qs-6.10.1"
+ sources."mkdirp-1.0.4"
+ ];
+ })
+ (sources."matrix-js-sdk-12.5.0" // {
+ dependencies = [
+ sources."qs-6.10.3"
];
})
sources."matrix-org-irc-1.2.0"
sources."media-typer-0.3.0"
sources."merge-descriptors-1.0.1"
- sources."merge-source-map-1.1.0"
sources."merge2-1.4.1"
sources."methods-1.1.2"
sources."micromatch-4.0.4"
sources."mime-1.6.0"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
- sources."mimic-response-1.0.1"
sources."minimalistic-assert-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- (sources."minipass-3.1.5" // {
- dependencies = [
- sources."yallist-4.0.0"
- ];
- })
- (sources."minizlib-2.1.2" // {
- dependencies = [
- sources."yallist-4.0.0"
- ];
- })
+ sources."minipass-3.1.5"
+ sources."minizlib-2.1.2"
sources."mkdirp-0.5.5"
sources."mkdirp-classic-0.5.3"
sources."module-not-found-error-1.0.1"
@@ -6222,107 +5501,85 @@ let
];
})
sources."ms-2.1.2"
- sources."nanoid-3.1.23"
+ sources."nanoid-3.3.0"
sources."napi-build-utils-1.0.2"
sources."natural-compare-1.4.0"
sources."nedb-1.8.0"
sources."negotiator-0.6.2"
- sources."nested-error-stacks-2.1.0"
(sources."node-abi-2.30.1" // {
dependencies = [
sources."semver-5.7.1"
];
})
sources."node-gyp-build-4.2.3"
- (sources."nodemon-2.0.7" // {
- dependencies = [
- sources."debug-3.2.7"
- sources."semver-5.7.1"
- sources."supports-color-5.5.0"
- ];
- })
+ sources."node-preload-0.2.1"
+ sources."node-releases-2.0.2"
sources."nopt-3.0.6"
- (sources."normalize-package-data-2.5.0" // {
- dependencies = [
- sources."semver-5.7.1"
- ];
- })
- sources."normalize-path-3.0.0"
- sources."normalize-url-4.5.1"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
- (sources."nyc-14.1.1" // {
+ (sources."nyc-15.1.0" // {
dependencies = [
- sources."rimraf-2.7.1"
+ sources."resolve-from-5.0.0"
];
})
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
sources."object-hash-2.2.0"
- sources."object-inspect-1.10.3"
+ sources."object-inspect-1.12.0"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
sources."one-time-1.0.0"
sources."optionator-0.9.1"
- sources."os-homedir-1.0.2"
- sources."p-cancelable-1.1.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-map-3.0.0"
sources."p-queue-6.6.2"
+ sources."p-retry-4.6.1"
sources."p-timeout-3.2.0"
sources."p-try-2.2.0"
- sources."package-hash-3.0.0"
- sources."package-json-6.5.0"
+ sources."package-hash-4.0.0"
sources."packet-reader-1.0.0"
sources."parent-module-1.0.1"
- sources."parse-json-4.0.0"
sources."parse-srcset-1.0.2"
sources."parseurl-1.3.3"
- sources."path-exists-3.0.0"
+ sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."path-to-regexp-0.1.7"
sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."pg-8.6.0"
+ sources."pg-8.7.3"
sources."pg-connection-string-2.5.0"
sources."pg-int8-1.0.1"
- sources."pg-pool-3.3.0"
+ sources."pg-pool-3.5.1"
sources."pg-protocol-1.5.0"
sources."pg-types-2.2.0"
sources."pgpass-1.0.4"
+ sources."picocolors-1.0.0"
sources."picomatch-2.3.0"
sources."pify-3.0.0"
- sources."pkg-dir-3.0.0"
- sources."postcss-8.3.0"
+ sources."pkg-dir-4.2.0"
+ sources."postcss-8.4.6"
sources."postgres-array-2.0.0"
sources."postgres-bytea-1.0.0"
sources."postgres-date-1.0.7"
sources."postgres-interval-1.2.0"
sources."prebuild-install-6.1.4"
sources."prelude-ls-1.2.1"
- sources."prepend-http-2.0.0"
sources."process-nextick-args-2.0.1"
- sources."progress-2.0.3"
- sources."prom-client-13.1.0"
+ sources."process-on-spawn-1.0.0"
+ sources."prom-client-14.0.1"
sources."proxy-addr-2.0.6"
- (sources."proxyquire-1.8.0" // {
- dependencies = [
- sources."resolve-1.1.7"
- ];
- })
- sources."pseudomap-1.0.2"
+ sources."proxyquire-2.1.3"
sources."psl-1.8.0"
- sources."pstree.remy-1.1.8"
sources."pump-3.0.0"
sources."punycode-2.1.1"
- sources."pupa-2.1.1"
sources."qs-6.7.0"
sources."queue-microtask-1.2.3"
- sources."quick-lru-4.0.1"
+ sources."quick-lru-5.1.1"
sources."range-parser-1.2.1"
(sources."raw-body-2.4.0" // {
dependencies = [
@@ -6334,18 +5591,9 @@ let
sources."strip-json-comments-2.0.1"
];
})
- (sources."read-pkg-3.0.0" // {
- dependencies = [
- sources."path-type-3.0.0"
- ];
- })
- sources."read-pkg-up-4.0.0"
sources."readable-stream-3.6.0"
- sources."readdirp-3.5.0"
- sources."regenerator-runtime-0.13.7"
- sources."regexpp-3.1.0"
- sources."registry-auth-token-4.2.1"
- sources."registry-url-5.1.0"
+ sources."regenerator-runtime-0.13.9"
+ sources."regexpp-3.2.0"
sources."release-zalgo-1.0.0"
(sources."request-2.88.2" // {
dependencies = [
@@ -6356,24 +5604,23 @@ let
sources."request-promise-core-1.1.4"
sources."request-promise-native-1.0.9"
sources."require-directory-2.1.1"
- sources."require-from-string-2.0.2"
sources."require-main-filename-2.0.0"
sources."resolve-1.20.0"
sources."resolve-from-4.0.0"
- sources."responselike-1.0.2"
+ sources."retry-0.13.1"
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
sources."run-parallel-1.2.0"
sources."safe-buffer-5.1.2"
+ sources."safe-stable-stringify-2.3.1"
sources."safer-buffer-2.1.2"
- (sources."sanitize-html-2.4.0" // {
+ (sources."sanitize-html-2.7.0" // {
dependencies = [
sources."domhandler-4.2.0"
sources."htmlparser2-6.1.0"
];
})
sources."semver-6.3.0"
- sources."semver-diff-3.1.1"
(sources."send-0.17.1" // {
dependencies = [
(sources."debug-2.6.9" // {
@@ -6400,19 +5647,9 @@ let
})
sources."simple-swizzle-0.2.2"
sources."slash-3.0.0"
- sources."slice-ansi-4.0.0"
- sources."source-map-0.6.1"
- sources."source-map-js-0.6.2"
- (sources."spawn-wrap-1.4.3" // {
- dependencies = [
- sources."rimraf-2.7.1"
- sources."which-1.3.1"
- ];
- })
- 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.8"
+ sources."source-map-0.5.7"
+ sources."source-map-js-1.0.2"
+ sources."spawn-wrap-2.0.0"
sources."split2-3.2.2"
sources."sprintf-js-1.0.3"
sources."sshpk-1.16.1"
@@ -6420,34 +5657,23 @@ let
sources."statuses-1.5.0"
sources."stealthy-require-1.1.1"
sources."steno-0.4.4"
- (sources."string-width-3.1.0" // {
- dependencies = [
- sources."emoji-regex-7.0.3"
- sources."is-fullwidth-code-point-2.0.0"
- ];
- })
+ sources."string-width-4.2.3"
(sources."string_decoder-1.3.0" // {
dependencies = [
sources."safe-buffer-5.2.1"
];
})
- sources."strip-ansi-5.2.0"
- sources."strip-bom-3.0.0"
+ sources."strip-ansi-6.0.1"
+ sources."strip-bom-4.0.0"
sources."strip-json-comments-3.1.1"
- sources."supports-color-6.1.0"
- (sources."table-6.7.1" // {
+ (sources."supports-color-7.2.0" // {
dependencies = [
- sources."ajv-8.4.0"
- sources."ansi-regex-5.0.1"
- sources."json-schema-traverse-1.0.0"
- sources."string-width-4.2.2"
- sources."strip-ansi-6.0.0"
+ sources."has-flag-4.0.0"
];
})
(sources."tar-6.1.11" // {
dependencies = [
sources."mkdirp-1.0.4"
- sources."yallist-4.0.0"
];
})
(sources."tar-fs-2.1.1" // {
@@ -6457,19 +5683,12 @@ let
})
sources."tar-stream-2.2.0"
sources."tdigest-0.1.1"
- sources."term-size-2.2.1"
- sources."test-exclude-5.2.3"
+ sources."test-exclude-6.0.0"
sources."text-hex-1.0.0"
sources."text-table-0.2.0"
sources."to-fast-properties-2.0.0"
- sources."to-readable-stream-1.0.0"
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.0"
- (sources."touch-3.1.0" // {
- dependencies = [
- sources."nopt-1.0.10"
- ];
- })
sources."tough-cookie-2.5.0"
sources."triple-beam-1.3.0"
sources."tslib-1.11.1"
@@ -6480,32 +5699,16 @@ let
sources."type-fest-0.8.1"
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
- sources."typescript-4.4.3"
- (sources."undefsafe-2.0.3" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- })
+ sources."typescript-4.5.5"
sources."underscore-1.4.4"
sources."unhomoglyph-1.0.6"
- sources."unique-string-2.0.0"
sources."unpipe-1.0.0"
- (sources."update-notifier-4.1.3" // {
- dependencies = [
- sources."chalk-3.0.0"
- sources."has-flag-4.0.0"
- sources."supports-color-7.2.0"
- ];
- })
sources."uri-js-4.2.2"
- sources."url-parse-lax-3.0.0"
sources."utf-8-validate-5.0.5"
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
sources."uuid-3.4.0"
sources."v8-compile-cache-2.3.0"
- sources."validate-npm-package-license-3.0.4"
sources."vary-1.1.2"
sources."verror-1.10.0"
sources."which-2.0.2"
@@ -6518,38 +5721,22 @@ let
sources."strip-ansi-4.0.0"
];
})
- (sources."widest-line-3.1.0" // {
+ (sources."winston-3.6.0" // {
dependencies = [
- sources."ansi-regex-5.0.1"
- sources."string-width-4.2.2"
- sources."strip-ansi-6.0.0"
- ];
- })
- (sources."winston-3.3.3" // {
- dependencies = [
- sources."async-3.2.0"
- ];
- })
- sources."winston-daily-rotate-file-4.5.5"
- (sources."winston-transport-4.4.0" // {
- dependencies = [
- sources."readable-stream-2.3.7"
- sources."string_decoder-1.1.1"
+ sources."async-3.2.3"
];
})
+ sources."winston-daily-rotate-file-4.6.1"
+ sources."winston-transport-4.5.0"
sources."word-wrap-1.2.3"
- (sources."wrap-ansi-5.1.0" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- ];
- })
+ sources."wrap-ansi-6.2.0"
sources."wrappy-1.0.2"
- sources."write-file-atomic-2.4.3"
- sources."xdg-basedir-4.0.0"
+ sources."write-file-atomic-3.0.3"
sources."xtend-4.0.2"
sources."y18n-4.0.3"
- sources."yargs-13.3.2"
- sources."yargs-parser-13.1.2"
+ sources."yallist-4.0.0"
+ sources."yargs-15.4.1"
+ sources."yargs-parser-18.1.3"
];
buildInputs = globalBuildInputs;
meta = {
diff --git a/pkgs/servers/matrix-synapse/matrix-appservice-irc/package.json b/pkgs/servers/matrix-synapse/matrix-appservice-irc/package.json
index afbafc9b5e96..f94cfc996ba7 100644
--- a/pkgs/servers/matrix-synapse/matrix-appservice-irc/package.json
+++ b/pkgs/servers/matrix-synapse/matrix-appservice-irc/package.json
@@ -1,11 +1,11 @@
{
"name": "matrix-appservice-irc",
- "version": "0.32.1",
+ "version": "0.33.1",
"description": "An IRC Bridge for Matrix",
"main": "app.js",
"bin": "./bin/matrix-appservice-irc",
"engines": {
- "node": ">=12"
+ "node": ">=14"
},
"scripts": {
"prepare": "npm run build",
@@ -26,46 +26,45 @@
"url": "https://github.com/matrix-org/matrix-appservice-irc/issues"
},
"dependencies": {
- "@sentry/node": "^5.27.1",
+ "@sentry/node": "^6.17.9",
"bluebird": "^3.7.2",
"diff": "^5.0.0",
"escape-string-regexp": "^4.0.0",
"extend": "^3.0.2",
"he": "^1.2.0",
- "logform": "^2.2.0",
- "matrix-appservice-bridge": "^3.1.2",
+ "logform": "^2.4.0",
+ "matrix-appservice-bridge": "^3.2.0",
"matrix-org-irc": "^1.2.0",
- "nedb": "^1.1.2",
- "nodemon": "^2.0.7",
+ "matrix-bot-sdk": "0.5.19",
"nopt": "^3.0.1",
"p-queue": "^6.6.2",
- "pg": "^8.6.0",
- "quick-lru": "^4.0.1",
+ "pg": "^8.7.3",
+ "quick-lru": "^5.1.1",
"request": "^2.54.0",
- "request-promise-native": "^1.0.9",
- "sanitize-html": "^2.4.0",
- "winston": "^3.3.3",
- "winston-daily-rotate-file": "^4.5.5"
+ "sanitize-html": "^2.7.0",
+ "winston": "^3.6.0",
+ "winston-daily-rotate-file": "^4.6.1"
},
"devDependencies": {
- "@types/bluebird": "^3.5.32",
- "@types/diff": "^5.0.1",
+ "@tsconfig/node14": "^1.0.1",
+ "@types/bluebird": "^3.5.36",
+ "@types/diff": "^5.0.2",
+ "@types/express": "4.17.13",
+ "@types/express-serve-static-core": "4.17.28",
"@types/extend": "^3.0.1",
- "@types/he": "^1.1.1",
- "@types/nedb": "^1.8.11",
+ "@types/he": "^1.1.2",
+ "@types/nedb": "^1.8.12",
"@types/node": "^14",
"@types/nopt": "^3.0.29",
- "@types/pg": "^8.6.0",
- "@types/sanitize-html": "^2.3.1",
- "@types/express": "4.17.11",
- "@types/express-serve-static-core": "4.17.19",
- "@typescript-eslint/eslint-plugin": "^4.33.0",
- "@typescript-eslint/parser": "^4.33.0",
- "eslint": "^7.21.0",
- "jasmine": "^3.6.2",
- "nyc": "^14.1.1",
- "prom-client": "13.1.0",
- "proxyquire": "^1.4.0",
- "typescript": "^4.4.3"
+ "@types/pg": "^8.6.4",
+ "@types/sanitize-html": "^2.6.2",
+ "@typescript-eslint/eslint-plugin": "^5.12.0",
+ "@typescript-eslint/parser": "^5.12.0",
+ "eslint": "^8.9.0",
+ "jasmine": "^3.99.0",
+ "proxyquire": "^2.1.3",
+ "nyc": "^15.1.0",
+ "request-promise-native": "^1.0.9",
+ "typescript": "^4.5.5"
}
}
diff --git a/pkgs/servers/matrix-synapse/matrix-appservice-irc/src.json b/pkgs/servers/matrix-synapse/matrix-appservice-irc/src.json
index 14eb6c69d6df..35bea461b9fd 100644
--- a/pkgs/servers/matrix-synapse/matrix-appservice-irc/src.json
+++ b/pkgs/servers/matrix-synapse/matrix-appservice-irc/src.json
@@ -1,9 +1,10 @@
{
"url": "https://github.com/matrix-org/matrix-appservice-irc",
- "rev": "6d5795ce9544c8d73f4846f1bd7190d352dddead",
- "date": "2021-10-25T12:54:49+02:00",
- "path": "/nix/store/by3iwfs5yayyv576qvfl650dgjw7jy5k-matrix-appservice-irc",
- "sha256": "06v5ihn03vidfa8aq8q9yil5s0hdgz09hzsm75fk5v8d8bi3d7d4",
+ "rev": "00c8e7afb057021126c5e8ea9a46f2f8a55ea0bc",
+ "date": "2022-03-30T14:29:04+01:00",
+ "path": "/nix/store/9cm14kvicwc83irmbb8zsr8rc4893l22-matrix-appservice-irc",
+ "sha256": "1zhcihji9cwrdajx5dfnd4w38xsnqnqmwccngfiwrh8mwra7phfi",
+ "fetchLFS": false,
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
diff --git a/pkgs/servers/matrix-synapse/matrix-appservice-irc/update.sh b/pkgs/servers/matrix-synapse/matrix-appservice-irc/update.sh
index 4ed109cc352f..5c49576075d6 100755
--- a/pkgs/servers/matrix-synapse/matrix-appservice-irc/update.sh
+++ b/pkgs/servers/matrix-synapse/matrix-appservice-irc/update.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env nix-shell
-#! nix-shell -i bash -p nodePackages.node2nix nodejs-12_x curl jq nix nix-prefetch-git
+#! nix-shell -i bash -p nodePackages.node2nix curl jq nix nix-prefetch-git
set -euo pipefail
# cd to the folder containing this script
diff --git a/pkgs/servers/web-apps/netbox/config.patch b/pkgs/servers/web-apps/netbox/config.patch
new file mode 100644
index 000000000000..1adc0b537a4e
--- /dev/null
+++ b/pkgs/servers/web-apps/netbox/config.patch
@@ -0,0 +1,50 @@
+diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py
+index d5a7bfaec..68754a8c5 100644
+--- a/netbox/netbox/settings.py
++++ b/netbox/netbox/settings.py
+@@ -222,6 +222,7 @@ TASKS_REDIS_PASSWORD = TASKS_REDIS.get('PASSWORD', '')
+ TASKS_REDIS_DATABASE = TASKS_REDIS.get('DATABASE', 0)
+ TASKS_REDIS_SSL = TASKS_REDIS.get('SSL', False)
+ TASKS_REDIS_SKIP_TLS_VERIFY = TASKS_REDIS.get('INSECURE_SKIP_TLS_VERIFY', False)
++TASKS_REDIS_URL = TASKS_REDIS.get('URL')
+
+ # Caching
+ if 'caching' not in REDIS:
+@@ -236,11 +237,12 @@ CACHING_REDIS_SENTINELS = REDIS['caching'].get('SENTINELS', [])
+ CACHING_REDIS_SENTINEL_SERVICE = REDIS['caching'].get('SENTINEL_SERVICE', 'default')
+ CACHING_REDIS_PROTO = 'rediss' if REDIS['caching'].get('SSL', False) else 'redis'
+ CACHING_REDIS_SKIP_TLS_VERIFY = REDIS['caching'].get('INSECURE_SKIP_TLS_VERIFY', False)
++CACHING_REDIS_URL = REDIS['caching'].get('URL', f'{CACHING_REDIS_PROTO}://{CACHING_REDIS_HOST}:{CACHING_REDIS_PORT}/{CACHING_REDIS_DATABASE}')
+
+ CACHES = {
+ 'default': {
+ 'BACKEND': 'django_redis.cache.RedisCache',
+- 'LOCATION': f'{CACHING_REDIS_PROTO}://{CACHING_REDIS_HOST}:{CACHING_REDIS_PORT}/{CACHING_REDIS_DATABASE}',
++ 'LOCATION': CACHING_REDIS_URL,
+ 'OPTIONS': {
+ 'CLIENT_CLASS': 'django_redis.client.DefaultClient',
+ 'PASSWORD': CACHING_REDIS_PASSWORD,
+@@ -383,7 +385,7 @@ USE_X_FORWARDED_HOST = True
+ X_FRAME_OPTIONS = 'SAMEORIGIN'
+
+ # Static files (CSS, JavaScript, Images)
+-STATIC_ROOT = BASE_DIR + '/static'
++STATIC_ROOT = getattr(configuration, 'STATIC_ROOT', os.path.join(BASE_DIR, 'static')).rstrip('/')
+ STATIC_URL = f'/{BASE_PATH}static/'
+ STATICFILES_DIRS = (
+ os.path.join(BASE_DIR, 'project-static', 'dist'),
+@@ -562,6 +564,14 @@ if TASKS_REDIS_USING_SENTINEL:
+ 'socket_connect_timeout': TASKS_REDIS_SENTINEL_TIMEOUT
+ },
+ }
++elif TASKS_REDIS_URL:
++ RQ_PARAMS = {
++ 'URL': TASKS_REDIS_URL,
++ 'PASSWORD': TASKS_REDIS_PASSWORD,
++ 'SSL': TASKS_REDIS_SSL,
++ 'SSL_CERT_REQS': None if TASKS_REDIS_SKIP_TLS_VERIFY else 'required',
++ 'DEFAULT_TIMEOUT': RQ_DEFAULT_TIMEOUT,
++ }
+ else:
+ RQ_PARAMS = {
+ 'HOST': TASKS_REDIS_HOST,
diff --git a/pkgs/servers/web-apps/netbox/default.nix b/pkgs/servers/web-apps/netbox/default.nix
new file mode 100644
index 000000000000..a8abcf9d8573
--- /dev/null
+++ b/pkgs/servers/web-apps/netbox/default.nix
@@ -0,0 +1,117 @@
+{ lib
+, pkgs
+, fetchFromGitHub
+, nixosTests
+, python3
+
+, plugins ? ps: [] }:
+
+let
+ py = python3.override {
+ packageOverrides = self: super: {
+ django = super.django_3;
+ graphql-core = super.graphql-core.overridePythonAttrs (old: rec {
+ version = "3.1.7";
+ src = fetchFromGitHub {
+ owner = "graphql-python";
+ repo = old.pname;
+ rev = "v${version}";
+ sha256 = "1mwwh55qd5bcpvgy6pyliwn8jkmj4yk4d2pqb6mdkgqhdic2081l";
+ };
+ });
+ jsonschema = super.jsonschema.overridePythonAttrs (old: rec {
+ version = "3.2.0";
+ src = self.fetchPypi {
+ pname = old.pname;
+ inherit version;
+ sha256 = "c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a";
+ };
+ });
+ lxml = super.lxml.overridePythonAttrs (old: rec {
+ pname = "lxml";
+ version = "4.6.5";
+
+ src = self.fetchPypi {
+ inherit pname version;
+ sha256 = "6e84edecc3a82f90d44ddee2ee2a2630d4994b8471816e226d2b771cda7ac4ca";
+ };
+ });
+ };
+ };
+
+ extraBuildInputs = plugins py.pkgs;
+in
+py.pkgs.buildPythonApplication rec {
+ pname = "netbox";
+ version = "3.1.10";
+
+ src = fetchFromGitHub {
+ owner = "netbox-community";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "sha256-qREq4FJHHTA9Vm6f9kSfiYqur2omFmdsoZ4OdaPFcpU=";
+ };
+
+ format = "other";
+
+ patches = [
+ # Allow setting the STATIC_ROOT from within the configuration and setting a custom redis URL
+ ./config.patch
+ ];
+
+ propagatedBuildInputs = with py.pkgs; [
+ django_3
+ django-cors-headers
+ django-debug-toolbar
+ django-filter
+ django-graphiql-debug-toolbar
+ django-mptt
+ django-pglocks
+ django-prometheus
+ django-redis
+ django-rq
+ django-tables2
+ django-taggit
+ django-timezone-field
+ djangorestframework
+ drf-yasg
+ graphene-django
+ jinja2
+ markdown
+ markdown-include
+ mkdocs-material
+ netaddr
+ pillow
+ psycopg2
+ pyyaml
+ social-auth-core
+ social-auth-app-django
+ svgwrite
+ tablib
+ jsonschema
+ ] ++ extraBuildInputs;
+
+ installPhase = ''
+ mkdir -p $out/opt/netbox
+ cp -r . $out/opt/netbox
+ chmod +x $out/opt/netbox/netbox/manage.py
+ makeWrapper $out/opt/netbox/netbox/manage.py $out/bin/netbox \
+ --prefix PYTHONPATH : "$PYTHONPATH"
+ '';
+
+ passthru = {
+ # PYTHONPATH of all dependencies used by the package
+ pythonPath = python3.pkgs.makePythonPath propagatedBuildInputs;
+
+ tests = {
+ inherit (nixosTests) netbox;
+ };
+ };
+
+ meta = with lib; {
+ homepage = "https://github.com/netbox-community/netbox";
+ description = "IP address management (IPAM) and data center infrastructure management (DCIM) tool";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ n0emis raitobezarius ];
+ };
+ }
diff --git a/pkgs/shells/oil/default.nix b/pkgs/shells/oil/default.nix
index 516d4c43f6fa..2b82d4882789 100644
--- a/pkgs/shells/oil/default.nix
+++ b/pkgs/shells/oil/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "oil";
- version = "0.9.8";
+ version = "0.9.9";
src = fetchurl {
url = "https://www.oilshell.org/download/oil-${version}.tar.xz";
- sha256 = "sha256-OsrxfJ5dF9Anpg1r6Hj+aD194l99X9Yh4vIZ+R+aH8E=";
+ sha256 = "sha256-b2tMS5z4oejh3C/3vznIWhG4cd3anp5RuffhoORrKCQ=";
};
postPatch = ''
diff --git a/pkgs/tools/admin/pgadmin/3.nix b/pkgs/tools/admin/pgadmin/3.nix
deleted file mode 100644
index 4e9d674d0cf6..000000000000
--- a/pkgs/tools/admin/pgadmin/3.nix
+++ /dev/null
@@ -1,63 +0,0 @@
-{ lib, stdenv, fetchurl, fetchpatch, postgresql, wxGTK, libxml2, libxslt, openssl, zlib, makeDesktopItem }:
-
-stdenv.mkDerivation rec {
- pname = "pgadmin3";
- version = "1.22.2";
-
- src = fetchurl {
- url = "https://ftp.postgresql.org/pub/pgadmin/pgadmin3/v${version}/src/pgadmin3-${version}.tar.gz";
- sha256 = "1b24b356h8z188nci30xrb57l7kxjqjnh6dq9ws638phsgiv0s4v";
- };
-
- enableParallelBuilding = true;
-
- buildInputs = [ postgresql wxGTK openssl zlib ];
-
- patches = [
- (fetchpatch {
- sha256 = "09hp7s3zjz80rpx2j3xyznwswwfxzi70z7c05dzrdk74mqjjpkfk";
- name = "843344.patch";
- url = "https://sources.debian.net/data/main/p/pgadmin3/1.22.2-1/debian/patches/843344";
- })
- ];
-
- preConfigure = ''
- substituteInPlace pgadmin/ver_svn.sh --replace "bin/bash" "$shell"
- '';
-
- configureFlags = [
- "--with-pgsql=${postgresql}"
- "--with-libxml2=${libxml2.dev}"
- "--with-libxslt=${libxslt.dev}"
- ];
-
- # starting with C++11 narrowing became an error
- # and not just a warning. With the current c++ compiler
- # pgadmin3 will fail with several "narrowing" errors.
- # see https://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Dialect-Options.html#index-Wno-narrowing
- makeFlags = "CXXFLAGS=-Wno-narrowing" ;
-
- meta = with lib; {
- description = "PostgreSQL administration GUI tool";
- homepage = "https://www.pgadmin.org";
- license = licenses.gpl2;
- maintainers = with maintainers; [ domenkozar wmertens ];
- platforms = platforms.unix;
- };
-
- postFixup = let
- desktopItem = makeDesktopItem {
- name = "pgAdmin";
- desktopName = "pgAdmin III";
- genericName = "SQL Administration";
- exec = "pgadmin3";
- icon = "pgAdmin3";
- categories = [ "Development" ];
- mimeTypes = [ "text/html" ];
- };
- in ''
- mkdir -p $out/share/pixmaps;
- cp pgadmin/include/images/pgAdmin3.png $out/share/pixmaps/;
- cp -rv ${desktopItem}/share/applications $out/share/
- '';
-}
diff --git a/pkgs/tools/admin/stripe-cli/default.nix b/pkgs/tools/admin/stripe-cli/default.nix
index 053446554c79..da39ebfac739 100644
--- a/pkgs/tools/admin/stripe-cli/default.nix
+++ b/pkgs/tools/admin/stripe-cli/default.nix
@@ -22,5 +22,6 @@ buildGoModule rec {
description = "A command-line tool for Stripe";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ RaghavSood ];
+ mainProgram = "stripe";
};
}
diff --git a/pkgs/tools/audio/botamusique/default.nix b/pkgs/tools/audio/botamusique/default.nix
index a1c78768f6ab..249e9629a6f1 100644
--- a/pkgs/tools/audio/botamusique/default.nix
+++ b/pkgs/tools/audio/botamusique/default.nix
@@ -15,7 +15,7 @@
, nodePackages
}:
let
- nodejs = pkgs.nodejs-12_x;
+ nodejs = pkgs.nodejs-14_x;
nodeEnv = import ../../../development/node-packages/node-env.nix {
inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
inherit pkgs nodejs;
diff --git a/pkgs/tools/backup/ddar/default.nix b/pkgs/tools/backup/ddar/default.nix
deleted file mode 100644
index 4c8d1a28c27c..000000000000
--- a/pkgs/tools/backup/ddar/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ lib, python2, fetchFromGitHub, roundup, ncurses }:
-
-python2.pkgs.buildPythonApplication rec {
- pname = "ddar";
- version = "1.0";
-
- src = fetchFromGitHub {
- owner = "basak";
- repo = pname;
- rev = "v${version}";
- sha256 = "158jdy5261k9yw540g48hddy5zyqrr81ir9fjlcy4jnrwfkg7ynm";
- };
-
- prePatch = ''
- substituteInPlace t/local-functions \
- --replace 'PATH="$ddar_src:$PATH"' 'PATH="$out/bin:$PATH"'
- # Test requires additional software and compilation of some C programs
- substituteInPlace t/basic-test.sh \
- --replace it_stores_and_extracts_corpus0 dont_test
- '';
-
- preBuild = ''
- make -f Makefile.prep synctus/ddar_pb2.py
- '';
-
- nativeBuildInputs = with python2.pkgs; [ protobuf.protobuf ];
- propagatedBuildInputs = with python2.pkgs; [ protobuf ];
-
- checkInputs = [ roundup ncurses ];
-
- checkPhase = ''
- roundup t/basic-test.sh
- '';
-
- meta = with lib; {
- description = "Unix de-duplicating archiver";
- license = licenses.gpl3;
- homepage = src.meta.homepage;
- };
-}
diff --git a/pkgs/tools/misc/disper/default.nix b/pkgs/tools/misc/disper/default.nix
deleted file mode 100644
index 3e78bc977324..000000000000
--- a/pkgs/tools/misc/disper/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, python2, xorg, makeWrapper }:
-
-stdenv.mkDerivation rec {
- pname = "disper";
- version = "0.3.1.1";
-
- src = fetchFromGitHub {
- owner = "apeyser";
- repo = pname;
- rev = "${pname}-${version}";
- sha256 = "1kl4py26n95q0690npy5mc95cv1cyfvh6kxn8rvk62gb8scwg9zn";
- };
-
- nativeBuildInputs = [ makeWrapper ];
-
- strictDeps = true;
-
- buildInputs = [ python2 ];
-
- preConfigure = ''
- export makeFlags="PREFIX=$out"
- '';
-
- postInstall = ''
- wrapProgram $out/bin/disper \
- --prefix "LD_LIBRARY_PATH" : "${lib.makeLibraryPath [ xorg.libXrandr xorg.libX11 ]}"
- '';
-
- meta = {
- description = "On-the-fly display switch utility";
- homepage = "https://willem.engen.nl/projects/disper/";
- platforms = lib.platforms.unix;
- license = lib.licenses.gpl3;
- };
-
-}
diff --git a/pkgs/tools/misc/esphome/default.nix b/pkgs/tools/misc/esphome/default.nix
index 23df784a78ef..de39a6e7f380 100644
--- a/pkgs/tools/misc/esphome/default.nix
+++ b/pkgs/tools/misc/esphome/default.nix
@@ -15,14 +15,14 @@ let
in
with python.pkgs; buildPythonApplication rec {
pname = "esphome";
- version = "2022.3.1";
+ version = "2022.3.2";
format = "setuptools";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
- sha256 = "sha256-x2gdRUBpyhk6iKvuW6ZKSpokaHfYz1ugclBjP15rJsk=";
+ sha256 = "sha256-s5NisPUoppROM/p7qm1da4lStpAWZvk18zkUEsOn0Pg=";
};
postPatch = ''
diff --git a/pkgs/tools/misc/somafm-cli/default.nix b/pkgs/tools/misc/somafm-cli/default.nix
index abead39d3485..45f79e5bddff 100644
--- a/pkgs/tools/misc/somafm-cli/default.nix
+++ b/pkgs/tools/misc/somafm-cli/default.nix
@@ -30,5 +30,6 @@ stdenv.mkDerivation rec {
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ SuperSandro2000 ];
+ mainProgram = "somafm";
};
}
diff --git a/pkgs/tools/wayland/wl-mirror/default.nix b/pkgs/tools/wayland/wl-mirror/default.nix
index 4476c5be93c7..02c63c55a764 100644
--- a/pkgs/tools/wayland/wl-mirror/default.nix
+++ b/pkgs/tools/wayland/wl-mirror/default.nix
@@ -26,13 +26,13 @@ in
stdenv.mkDerivation rec {
pname = "wl-mirror";
- version = "0.8.1";
+ version = "0.9.2";
src = fetchFromGitHub {
owner = "Ferdi265";
repo = "wl-mirror";
rev = "v${version}";
- hash = "sha256-P5rvZPpIStlOSGj3PaiXAMPWqgWpkC+4IrixEMwoGJU=";
+ hash = "sha256-W/8DApyd7KtrOrP7Qj6oPKXxLrVzHDuIMOdg+k5ngr4=";
};
patchPhase = ''
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index 1b3810baaf3e..dc86887cba15 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -230,6 +230,7 @@ mapAliases ({
dbus_libs = throw "'dbus_libs' has been renamed to/replaced by 'dbus'"; # Converted to throw 2022-02-22
dbus_tools = throw "'dbus_tools' has been renamed to/replaced by 'dbus.out'"; # Converted to throw 2022-02-22
dbvisualizer = throw "dbvisualizer has been removed from nixpkgs, as it's unmaintained"; # Added 2020-09-20
+ ddar = throw "ddar has been removed: abandoned by upstream"; # Added 2022-03-18
deadbeef-mpris2-plugin = throw "'deadbeef-mpris2-plugin' has been renamed to/replaced by 'deadbeefPlugins.mpris2'"; # Converted to throw 2022-02-22
deadpixi-sam = deadpixi-sam-unstable;
@@ -255,6 +256,7 @@ mapAliases ({
devicemapper = throw "'devicemapper' has been renamed to/replaced by 'lvm2'"; # Converted to throw 2022-02-22
dhall-text = throw "'dhall-text' has been deprecated in favor of the 'dhall text' command from 'dhall'"; # Added 2022-03-26
digikam5 = throw "'digikam5' has been renamed to/replaced by 'digikam'"; # Converted to throw 2022-02-22
+ disper = throw "disper has been removed: abandoned by upstream"; # Added 2022-03-18
displaycal = throw "displaycal has been removed from nixpkgs, as it hasn't migrated to python3"; # Added 2022-01-12
dmtx = throw "'dmtx' has been renamed to/replaced by 'dmtx-utils'"; # Converted to throw 2022-02-22
dnnl = oneDNN; # Added 2020-04-22
@@ -847,6 +849,7 @@ mapAliases ({
perlXMLParser = throw "'perlXMLParser' has been renamed to/replaced by 'perlPackages.XMLParser'"; # Converted to throw 2022-02-22
perlArchiveCpio = throw "'perlArchiveCpio' has been renamed to/replaced by 'perlPackages.ArchiveCpio'"; # Converted to throw 2022-02-22
pgadmin = pgadmin4;
+ pgadmin3 = throw "pgadmin3 was removed for being unmaintained, use pgadmin4 instead."; # Added 2022-03-30
pgp-tools = throw "'pgp-tools' has been renamed to/replaced by 'signing-party'"; # Converted to throw 2022-02-22
pg_tmp = throw "'pg_tmp' has been renamed to/replaced by 'ephemeralpg'"; # Converted to throw 2022-02-22
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 33c961448916..93919a053be8 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -2884,8 +2884,6 @@ with pkgs;
dcw-gmt = callPackage ../applications/gis/gmt/dcw.nix { };
- ddar = callPackage ../tools/backup/ddar { };
-
ddate = callPackage ../tools/misc/ddate { };
ddosify = callPackage ../development/tools/ddosify { };
@@ -4899,8 +4897,6 @@ with pkgs;
dirvish = callPackage ../tools/backup/dirvish { };
- disper = callPackage ../tools/misc/disper { };
-
dleyna-connector-dbus = callPackage ../development/libraries/dleyna-connector-dbus { };
dleyna-core = callPackage ../development/libraries/dleyna-core { };
@@ -8266,6 +8262,8 @@ with pkgs;
netbootxyz-efi = callPackage ../tools/misc/netbootxyz-efi { };
+ netbox = callPackage ../servers/web-apps/netbox { };
+
netcat = libressl.nc;
netcat-gnu = callPackage ../tools/networking/netcat { };
@@ -34021,10 +34019,6 @@ with pkgs;
pgadmin4 = callPackage ../tools/admin/pgadmin { };
- pgadmin3 = callPackage ../tools/admin/pgadmin/3.nix {
- openssl = openssl_1_0_2;
- };
-
pgmodeler = libsForQt5.callPackage ../applications/misc/pgmodeler { };
pgf = pgf2;
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 57a1e39a5ac2..84dd3512e9de 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -9379,6 +9379,10 @@ in {
socketio-client = callPackage ../development/python-modules/socketio-client { };
+ social-auth-app-django = callPackage ../development/python-modules/social-auth-app-django { };
+
+ social-auth-core = callPackage ../development/python-modules/social-auth-core { };
+
socialscan = callPackage ../development/python-modules/socialscan { };
socid-extractor = callPackage ../development/python-modules/socid-extractor { };