diff --git a/doc/doc-support/lib-function-locations.nix b/doc/doc-support/lib-function-locations.nix
index ac4da88052da..68edd2709854 100644
--- a/doc/doc-support/lib-function-locations.nix
+++ b/doc/doc-support/lib-function-locations.nix
@@ -38,7 +38,7 @@ let
substr = builtins.substring prefixLen filenameLen filename;
in substr;
- removeNixpkgs = removeFilenamePrefix pkgs.path;
+ removeNixpkgs = removeFilenamePrefix (builtins.toString pkgs.path);
liblocations =
builtins.filter
diff --git a/lib/sources.nix b/lib/sources.nix
index b7fb71bd0b0b..cec395c9bb18 100644
--- a/lib/sources.nix
+++ b/lib/sources.nix
@@ -140,7 +140,7 @@ let
origSrc = if isFiltered then src.origSrc else src;
in lib.cleanSourceWith {
filter = (path: type:
- let relPath = lib.removePrefix (origSrc + "/") (path);
+ let relPath = lib.removePrefix (toString origSrc + "/") (toString path);
in lib.any (re: match re relPath != null) regexes);
inherit src;
};
@@ -175,12 +175,12 @@ let
*/
commitIdFromGitRepo =
let readCommitFromFile = file: path:
- let fileName = path + "/" + file;
- packedRefsName = path + "/packed-refs";
+ let fileName = toString path + "/" + file;
+ packedRefsName = toString path + "/packed-refs";
absolutePath = base: path:
if lib.hasPrefix "/" path
then path
- else /. + "${base}/${path}";
+ else toString (/. + "${base}/${path}");
in if pathIsRegularFile path
# Resolve git worktrees. See gitrepository-layout(5)
then
@@ -226,7 +226,7 @@ let
pathHasContext = builtins.hasContext or (lib.hasPrefix storeDir);
- canCleanSource = src: src ? _isLibCleanSourceWith || !(pathHasContext src);
+ canCleanSource = src: src ? _isLibCleanSourceWith || !(pathHasContext (toString src));
# -------------------------------------------------------------------------- #
# Internal functions
diff --git a/lib/systems/default.nix b/lib/systems/default.nix
index 233174d40831..4af3d612f81b 100644
--- a/lib/systems/default.nix
+++ b/lib/systems/default.nix
@@ -183,14 +183,13 @@ rec {
seccompSupport = false;
hostCpuTargets = [ "${final.qemuArch}-linux-user" ];
};
- wine-name = "wine${toString final.parsed.cpu.bits}";
- wine = (pkgs.winePackagesFor wine-name).minimal;
+ wine = (pkgs.winePackagesFor "wine${toString final.parsed.cpu.bits}").minimal;
in
if final.parsed.kernel.name == pkgs.stdenv.hostPlatform.parsed.kernel.name &&
pkgs.stdenv.hostPlatform.canExecute final
then "${pkgs.runtimeShell} -c '\"$@\"' --"
else if final.isWindows
- then "${wine}/bin/${wine-name}"
+ then "${wine}/bin/wine${lib.optionalString (final.parsed.cpu.bits == 64) "64"}"
else if final.isLinux && pkgs.stdenv.hostPlatform.isLinux
then "${qemu-user}/bin/qemu-${final.qemuArch}"
else if final.isWasi
diff --git a/lib/trivial.nix b/lib/trivial.nix
index 8f2023caaf8e..5d4fad8266bc 100644
--- a/lib/trivial.nix
+++ b/lib/trivial.nix
@@ -213,8 +213,8 @@ rec {
# Default value to return if revision can not be determined
default:
let
- revisionFile = ./.. + "/.git-revision";
- gitRepo = ./.. + "/.git";
+ revisionFile = "${toString ./..}/.git-revision";
+ gitRepo = "${toString ./..}/.git";
in if lib.pathIsGitRepo gitRepo
then lib.commitIdFromGitRepo gitRepo
else if lib.pathExists revisionFile then lib.fileContents revisionFile
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 85dfc9c1f008..59eb26ab4350 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -1655,6 +1655,15 @@
githubId = 214787;
name = "Herwig Hochleitner";
};
+ benesim = {
+ name = "Benjamin Isbarn";
+ email = "benjamin.isbarn@gmail.com";
+ github = "benesim";
+ githubId = 29384538;
+ keys = [{
+ fingerprint = "D35E C9CE E631 638F F1D8 B401 6F0E 410D C3EE D02";
+ }];
+ };
benley = {
email = "benley@gmail.com";
github = "benley";
diff --git a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
index b731b8b72a3d..02cb2dd9ccd1 100644
--- a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
+++ b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
@@ -643,6 +643,15 @@
maintainer to update the package.
+
+
+ ppd files in pkgs.cups-drv-rastertosag-gdi
+ are now gzipped. If you refer to such a ppd file with its path
+ (e.g. via
+ hardware.printers.ensurePrinters)
+ you will need to append .gz to the path.
+
+
xow package removed along with the
diff --git a/nixos/doc/manual/release-notes/rl-2211.section.md b/nixos/doc/manual/release-notes/rl-2211.section.md
index 0f0e3c7a2e55..43abb40b8a04 100644
--- a/nixos/doc/manual/release-notes/rl-2211.section.md
+++ b/nixos/doc/manual/release-notes/rl-2211.section.md
@@ -210,6 +210,8 @@ Available as [services.patroni](options.html#opt-services.patroni.enable).
- riak package removed along with `services.riak` module, due to lack of maintainer to update the package.
+- ppd files in `pkgs.cups-drv-rastertosag-gdi` are now gzipped. If you refer to such a ppd file with its path (e.g. via [hardware.printers.ensurePrinters](options.html#opt-hardware.printers.ensurePrinters)) you will need to append `.gz` to the path.
+
- xow package removed along with the `hardware.xow` module, due to the project being deprecated in favor of `xone`, which is available via the `hardware.xone` module.
- dd-agent package removed along with the `services.dd-agent` module, due to the project being deprecated in favor of `datadog-agent`, which is available via the `services.datadog-agent` module.
diff --git a/nixos/lib/make-options-doc/generateCommonMark.py b/nixos/lib/make-options-doc/generateCommonMark.py
index 404e53b0df9c..bf487bd89c3f 100644
--- a/nixos/lib/make-options-doc/generateCommonMark.py
+++ b/nixos/lib/make-options-doc/generateCommonMark.py
@@ -3,7 +3,7 @@ import sys
options = json.load(sys.stdin)
for (name, value) in options.items():
- print('##', name.replace('<', '\\<').replace('>', '\\>'))
+ print('##', name.replace('<', '<').replace('>', '>'))
print(value['description'])
print()
if 'type' in value:
diff --git a/nixos/modules/services/databases/influxdb2.nix b/nixos/modules/services/databases/influxdb2.nix
index 92c5a5d7a400..e74de66ddc2f 100644
--- a/nixos/modules/services/databases/influxdb2.nix
+++ b/nixos/modules/services/databases/influxdb2.nix
@@ -40,6 +40,7 @@ in
after = [ "network.target" ];
environment = {
INFLUXD_CONFIG_PATH = configFile;
+ ZONEINFO = "${pkgs.tzdata}/share/zoneinfo";
};
serviceConfig = {
ExecStart = "${cfg.package}/bin/influxd --bolt-path \${STATE_DIRECTORY}/influxd.bolt --engine-path \${STATE_DIRECTORY}/engine";
diff --git a/nixos/modules/services/mail/mailman.nix b/nixos/modules/services/mail/mailman.nix
index 7ae0a33332e9..198c2f3280f5 100644
--- a/nixos/modules/services/mail/mailman.nix
+++ b/nixos/modules/services/mail/mailman.nix
@@ -263,6 +263,15 @@ in {
serve = {
enable = mkEnableOption (lib.mdDoc "Automatic nginx and uwsgi setup for mailman-web");
+
+ virtualRoot = mkOption {
+ default = "/";
+ example = lib.literalExpression "/lists";
+ type = types.str;
+ description = lib.mdDoc ''
+ Path to mount the mailman-web django application on.
+ '';
+ };
};
extraPythonPackages = mkOption {
@@ -433,8 +442,8 @@ in {
enable = mkDefault true;
virtualHosts = lib.genAttrs cfg.webHosts (webHost: {
locations = {
- "/".extraConfig = "uwsgi_pass unix:/run/mailman-web.socket;";
- "/static/".alias = webSettings.STATIC_ROOT + "/";
+ ${cfg.serve.virtualRoot}.extraConfig = "uwsgi_pass unix:/run/mailman-web.socket;";
+ "${cfg.serve.virtualRoot}/static/".alias = webSettings.STATIC_ROOT + "/";
};
});
};
@@ -561,7 +570,8 @@ in {
type = "normal";
plugins = ["python3"];
home = webEnv;
- module = "mailman_web.wsgi";
+ manage-script-name = true;
+ mount = "${cfg.serve.virtualRoot}=mailman_web.wsgi:application";
http = "127.0.0.1:18507";
};
uwsgiConfigFile = pkgs.writeText "uwsgi-mailman.json" (builtins.toJSON uwsgiConfig);
diff --git a/nixos/modules/services/misc/synergy.nix b/nixos/modules/services/misc/synergy.nix
index e630992f797b..0cbdc7599c0f 100644
--- a/nixos/modules/services/misc/synergy.nix
+++ b/nixos/modules/services/misc/synergy.nix
@@ -115,7 +115,7 @@ in
description = "Synergy server";
wantedBy = optional cfgS.autoStart "graphical-session.target";
path = [ pkgs.synergy ];
- serviceConfig.ExecStart = ''${pkgs.synergy}/bin/synergys -c ${cfgS.configFile} -f${optionalString (cfgS.address != "") " -a ${cfgS.address}"}${optionalString (cfgS.screenName != "") " -n ${cfgS.screenName}"}${optionalString cfgS.tls.enable " --enable-crypto"}${optionalString (cfgS.tls.cert != null) (" --tls-cert=${cfgS.tls.cert}")}'';
+ serviceConfig.ExecStart = ''${pkgs.synergy}/bin/synergys -c ${cfgS.configFile} -f${optionalString (cfgS.address != "") " -a ${cfgS.address}"}${optionalString (cfgS.screenName != "") " -n ${cfgS.screenName}"}${optionalString cfgS.tls.enable " --enable-crypto"}${optionalString (cfgS.tls.cert != null) (" --tls-cert ${cfgS.tls.cert}")}'';
serviceConfig.Restart = "on-failure";
};
})
diff --git a/nixos/modules/services/monitoring/prometheus/exporters/node.nix b/nixos/modules/services/monitoring/prometheus/exporters/node.nix
index ae69c29d0a51..dd8602e2c63d 100644
--- a/nixos/modules/services/monitoring/prometheus/exporters/node.nix
+++ b/nixos/modules/services/monitoring/prometheus/exporters/node.nix
@@ -4,6 +4,8 @@ with lib;
let
cfg = config.services.prometheus.exporters.node;
+ collectorIsEnabled = final: any (collector: (final == collector)) cfg.enabledCollectors;
+ collectorIsDisabled = final: any (collector: (final == collector)) cfg.disabledCollectors;
in
{
port = 9100;
@@ -35,15 +37,15 @@ in
${concatMapStringsSep " " (x: "--no-collector." + x) cfg.disabledCollectors} \
--web.listen-address ${cfg.listenAddress}:${toString cfg.port} ${concatStringsSep " " cfg.extraFlags}
'';
- RestrictAddressFamilies = optionals (any (collector: (collector == "logind" || collector == "systemd")) cfg.enabledCollectors) [
+ RestrictAddressFamilies = optionals (collectorIsEnabled "logind" || collectorIsEnabled "systemd") [
# needs access to dbus via unix sockets (logind/systemd)
"AF_UNIX"
- ] ++ optionals (any (collector: (collector == "network_route" || collector == "wifi")) cfg.enabledCollectors) [
+ ] ++ optionals (collectorIsEnabled "network_route" || collectorIsEnabled "wifi" || ! collectorIsDisabled "netdev") [
# needs netlink sockets for wireless collector
"AF_NETLINK"
];
# The timex collector needs to access clock APIs
- ProtectClock = any (collector: collector == "timex") cfg.disabledCollectors;
+ ProtectClock = collectorIsDisabled "timex";
# Allow space monitoring under /home
ProtectHome = true;
};
diff --git a/nixos/modules/services/networking/consul.nix b/nixos/modules/services/networking/consul.nix
index 9f3c081e7351..bee41dcf765d 100644
--- a/nixos/modules/services/networking/consul.nix
+++ b/nixos/modules/services/networking/consul.nix
@@ -201,7 +201,7 @@ in
serviceConfig = {
ExecStart = "@${cfg.package}/bin/consul consul agent -config-dir /etc/consul.d"
+ concatMapStrings (n: " -config-file ${n}") configFiles;
- ExecReload = "${cfg.package}/bin/consul reload";
+ ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
PermissionsStartOnly = true;
User = if cfg.dropPrivileges then "consul" else null;
Restart = "on-failure";
diff --git a/nixos/modules/services/web-apps/alps.nix b/nixos/modules/services/web-apps/alps.nix
index b171729fd0a3..b73cb82925d9 100644
--- a/nixos/modules/services/web-apps/alps.nix
+++ b/nixos/modules/services/web-apps/alps.nix
@@ -54,7 +54,7 @@ in {
smtps = {
port = mkOption {
type = types.port;
- default = 445;
+ default = 465;
description = lib.mdDoc ''
The SMTPS server port.
'';
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 380f1a7d27e2..fbbebc2520a3 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -429,6 +429,7 @@ in {
nginx-etag = handleTest ./nginx-etag.nix {};
nginx-http3 = handleTest ./nginx-http3.nix {};
nginx-modsecurity = handleTest ./nginx-modsecurity.nix {};
+ nginx-njs = handleTest ./nginx-njs.nix {};
nginx-pubhtml = handleTest ./nginx-pubhtml.nix {};
nginx-sandbox = handleTestOn ["x86_64-linux"] ./nginx-sandbox.nix {};
nginx-sso = handleTest ./nginx-sso.nix {};
diff --git a/nixos/tests/mysql/common.nix b/nixos/tests/mysql/common.nix
index c0e8f7e3b5d2..7fdf0f33d3f3 100644
--- a/nixos/tests/mysql/common.nix
+++ b/nixos/tests/mysql/common.nix
@@ -1,8 +1,5 @@
{ lib, pkgs }: {
- mariadbPackages = lib.filterAttrs (n: _: lib.hasPrefix "mariadb" n) (pkgs.callPackage ../../../pkgs/servers/sql/mariadb {
- inherit (pkgs.darwin) cctools;
- inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices;
- });
+ mariadbPackages = lib.filterAttrs (n: _: lib.hasPrefix "mariadb" n) (import ../../../pkgs/servers/sql/mariadb pkgs);
mysqlPackages = {
inherit (pkgs) mysql80;
};
diff --git a/nixos/tests/nginx-njs.nix b/nixos/tests/nginx-njs.nix
new file mode 100644
index 000000000000..72be16384f1b
--- /dev/null
+++ b/nixos/tests/nginx-njs.nix
@@ -0,0 +1,27 @@
+import ./make-test-python.nix ({ pkgs, lib, ... }: {
+ name = "nginx-njs";
+
+ nodes.machine = { config, lib, pkgs, ... }: {
+ services.nginx = {
+ enable = true;
+ additionalModules = [ pkgs.nginxModules.njs ];
+ commonHttpConfig = ''
+ js_import http from ${builtins.toFile "http.js" ''
+ function hello(r) {
+ r.return(200, "Hello world!");
+ }
+ export default {hello};
+ ''};
+ '';
+ virtualHosts."localhost".locations."/".extraConfig = ''
+ js_content http.hello;
+ '';
+ };
+ };
+ testScript = ''
+ machine.wait_for_unit("nginx")
+
+ response = machine.wait_until_succeeds("curl -fvvv -s http://127.0.0.1/")
+ assert "Hello world!" == response, f"Expected 'Hello world!', got '{response}'"
+ '';
+})
diff --git a/pkgs/applications/accessibility/squeekboard/default.nix b/pkgs/applications/accessibility/squeekboard/default.nix
index b2586ef76c2b..9cb084a6182b 100644
--- a/pkgs/applications/accessibility/squeekboard/default.nix
+++ b/pkgs/applications/accessibility/squeekboard/default.nix
@@ -20,7 +20,7 @@
stdenv.mkDerivation rec {
pname = "squeekboard";
- version = "1.17.0";
+ version = "1.20.0";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
@@ -28,18 +28,23 @@ stdenv.mkDerivation rec {
owner = "Phosh";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-U46OQ0bXkXv6za8vUZxtbxJKqiF/X/xxJsqQGpnRIpg=";
+ sha256 = "sha256-wx3fKRX/SPYGAFuR9u03JAvVRhtYIPUvW8mAsCdx83I=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
cargoUpdateHook = ''
- cat Cargo.toml.in Cargo.deps > Cargo.toml
+ cat Cargo.toml.in Cargo.deps.newer > Cargo.toml
+ cp Cargo.lock.newer Cargo.lock
'';
name = "${pname}-${version}";
- sha256 = "sha256-4q8MW1n/xu538+R5ZlA+p/hd6pOQPKj7jOFwnuMc7sk=";
+ sha256 = "sha256-BbNkapqnqEW/NglrCse10Tm80SXYVQWWrOC5dTN6oi0=";
};
+ mesonFlags = [
+ "-Dnewer=true"
+ ];
+
nativeBuildInputs = [
meson
ninja
@@ -67,7 +72,7 @@ stdenv.mkDerivation rec {
description = "A virtual keyboard supporting Wayland";
homepage = "https://source.puri.sm/Librem5/squeekboard";
license = licenses.gpl3Plus;
- maintainers = with maintainers; [ artturin ];
+ maintainers = with maintainers; [ artturin tomfitzhenry ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/audio/hivelytracker/default.nix b/pkgs/applications/audio/hivelytracker/default.nix
index 8f9e3809fd2d..b87ad68ceee7 100644
--- a/pkgs/applications/audio/hivelytracker/default.nix
+++ b/pkgs/applications/audio/hivelytracker/default.nix
@@ -2,36 +2,32 @@
, stdenv
, fetchFromGitHub
, pkg-config
-, makeWrapper
, SDL
, SDL_image
, SDL_ttf
-, gtk2
-, glib
+, gtk3
}:
stdenv.mkDerivation rec {
pname = "hivelytracker";
- version = "unstable-2020-08-19";
+ version = "1.9";
src = fetchFromGitHub {
owner = "pete-gordon";
repo = "hivelytracker";
- rev = "c8e3c7a5ee9f4a07cb4a941caecf7e4c4f4d40e0";
- sha256 = "1nqianlf1msir6wqwapi7ys1vbmf6aik58wa54b6cn5v6kwxh75a";
+ rev = "V${lib.replaceStrings ["."] ["_"] version}";
+ sha256 = "148p320sd8phcpmj4m85ns5zly2dawbp8kgx9ryjfdk24pa88xg6";
};
nativeBuildInputs = [
pkg-config
- makeWrapper
];
buildInputs = [
SDL
SDL_image
SDL_ttf
- gtk2
- glib
+ gtk3
];
makeFlags = [
@@ -40,28 +36,12 @@ stdenv.mkDerivation rec {
"PREFIX=$(out)"
];
- # TODO: try to exclude gtk and glib from darwin builds
- NIX_CFLAGS_COMPILE = [
- "-I${SDL}/include/SDL"
- "-I${SDL_image}/include/SDL"
- "-I${SDL_ttf}/include/SDL"
- "-I${gtk2.dev}/include/gtk-2.0"
- "-I${glib.dev}/include/glib-2.0"
- ];
-
# Also build the hvl2wav tool
postBuild = ''
make -C hvl2wav
'';
postInstall = ''
- # https://github.com/pete-gordon/hivelytracker/issues/43
- # Ideally we should patch the sources, but the program can't open
- # files passed as arguments anyway, so this works well enough until the
- # issue is fixed.
- wrapProgram $out/bin/hivelytracker \
- --chdir "$out/share/hivelytracker"
-
# Also install the hvl2wav tool
install -Dm755 hvl2wav/hvl2wav $out/bin/hvl2wav
'';
@@ -86,4 +66,3 @@ stdenv.mkDerivation rec {
broken = stdenv.isDarwin; # TODO: try to use xcbuild
};
}
-
diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix
index ecbdaec7f28a..2c821ec6b4c8 100644
--- a/pkgs/applications/audio/spotify/default.nix
+++ b/pkgs/applications/audio/spotify/default.nix
@@ -2,6 +2,9 @@
, glib, pango, cairo, atk, gdk-pixbuf, gtk3, cups, nspr, nss, libpng, libnotify
, libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg, curlWithGnuTls, zlib, gnome
, at-spi2-atk, at-spi2-core, libpulseaudio, libdrm, mesa, libxkbcommon
+ # High-DPI support: Spotify's --force-device-scale-factor argument
+ # not added if `null`, otherwise, should be a number.
+, deviceScaleFactor ? null
}:
let
@@ -67,7 +70,7 @@ let
in
stdenv.mkDerivation {
- pname = "spotify-unwrapped";
+ pname = "spotify";
inherit version;
# fetch from snapcraft instead of the debian repository most repos fetch from.
@@ -143,6 +146,9 @@ stdenv.mkDerivation {
librarypath="${lib.makeLibraryPath deps}:$libdir"
wrapProgram $out/share/spotify/spotify \
''${gappsWrapperArgs[@]} \
+ ${lib.optionalString (deviceScaleFactor != null) ''
+ --add-flags "--force-device-scale-factor=${toString deviceScaleFactor}" \
+ ''} \
--prefix LD_LIBRARY_PATH : "$librarypath" \
--prefix PATH : "${gnome.zenity}/bin"
diff --git a/pkgs/applications/audio/spotify/wrapper.nix b/pkgs/applications/audio/spotify/wrapper.nix
deleted file mode 100644
index 418ef3cbc03e..000000000000
--- a/pkgs/applications/audio/spotify/wrapper.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ symlinkJoin
-, lib
-, spotify-unwrapped
-, makeWrapper
-
- # High-DPI support: Spotify's --force-device-scale-factor argument; not added
- # if `null`, otherwise, should be a number.
-, deviceScaleFactor ? null
-}:
-
-symlinkJoin {
- name = "spotify-${spotify-unwrapped.version}";
-
- paths = [ spotify-unwrapped.out ];
-
- nativeBuildInputs = [ makeWrapper ];
- preferLocalBuild = true;
- passthru.unwrapped = spotify-unwrapped;
- postBuild = ''
- wrapProgram $out/bin/spotify \
- ${lib.optionalString (deviceScaleFactor != null) ''
- --add-flags ${lib.escapeShellArg "--force-device-scale-factor=${
- builtins.toString deviceScaleFactor
- }"}
- ''}
- '';
-
- meta = spotify-unwrapped.meta // {
- priority = (spotify-unwrapped.meta.priority or 0) - 1;
- };
-}
diff --git a/pkgs/applications/audio/termusic/default.nix b/pkgs/applications/audio/termusic/default.nix
index 5cf216a6e21b..08420191127d 100644
--- a/pkgs/applications/audio/termusic/default.nix
+++ b/pkgs/applications/audio/termusic/default.nix
@@ -7,14 +7,14 @@
rustPlatform.buildRustPackage rec {
pname = "termusic";
- version = "0.7.3";
+ version = "0.7.5";
src = fetchCrate {
inherit pname version;
- sha256 = "sha256-5I9Fu+A5IBfaxaPcYKTzWq3/8ts0BPSOOVeU6D61dbc=";
+ sha256 = "sha256-/wpaxXY0hT7XX44cW1f3JuowE5u46/aLMC2VXgty/jE=";
};
- cargoHash = "sha256-R/hElL0MjeBqboJTQkIREPOh+/YbdKtUAzqPD6BpSPs=";
+ cargoHash = "sha256-TznzZ1dcun57IQ8e2T2FOxSdyqxS6etnuvxOY8n1y14=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ alsa-lib ];
diff --git a/pkgs/applications/blockchains/lighthouse/default.nix b/pkgs/applications/blockchains/lighthouse/default.nix
index fc95295d3d9e..c778ce3f7575 100644
--- a/pkgs/applications/blockchains/lighthouse/default.nix
+++ b/pkgs/applications/blockchains/lighthouse/default.nix
@@ -17,7 +17,7 @@
rustPlatform.buildRustPackage rec {
pname = "lighthouse";
- version = "3.1.2";
+ version = "3.2.1";
# lighthouse/common/deposit_contract/build.rs
depositContractSpecVersion = "0.12.1";
@@ -27,10 +27,10 @@ rustPlatform.buildRustPackage rec {
owner = "sigp";
repo = "lighthouse";
rev = "v${version}";
- hash = "sha256-EJFg6ZjxxijxJNMwKRh0cYeqwujUV3OJgXBvBRsnbVI=";
+ sha256 = "sha256-Aqc3kk1rquhLKNZDlEun4bQpKI4Nsk7+Wr7E2IkJQEs=";
};
- cargoHash = "sha256-iXqRtBqvM9URQsL8qGmpr3CNX2fpbtDOaluibAX/lWo=";
+ cargoSha256 = "sha256-wGEk7OfEmyeRW65kq5stvKCdnCjfssyXUmNWGkGq42M=";
buildFeatures = [ "modern" "gnosis" ];
diff --git a/pkgs/applications/editors/lifeograph/default.nix b/pkgs/applications/editors/lifeograph/default.nix
index 0a999bf993f6..895a9e11d5e8 100644
--- a/pkgs/applications/editors/lifeograph/default.nix
+++ b/pkgs/applications/editors/lifeograph/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchgit, pkg-config, meson, ninja
+{ stdenv, lib, fetchgit, pkg-config, meson, ninja, wrapGAppsHook
, enchant, gtkmm3, libchamplain, libgcrypt, shared-mime-info }:
stdenv.mkDerivation rec {
@@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
ninja
pkg-config
shared-mime-info # for update-mime-database
+ wrapGAppsHook
];
buildInputs = [
diff --git a/pkgs/applications/graphics/foxotron/default.nix b/pkgs/applications/graphics/foxotron/default.nix
index a51edc39556e..a16f408fb135 100644
--- a/pkgs/applications/graphics/foxotron/default.nix
+++ b/pkgs/applications/graphics/foxotron/default.nix
@@ -25,14 +25,14 @@
stdenv.mkDerivation rec {
pname = "foxotron";
- version = "2022-08-06";
+ version = "2022-11-02";
src = fetchFromGitHub {
owner = "Gargaj";
repo = "Foxotron";
rev = version;
fetchSubmodules = true;
- sha256 = "sha256-IGLoiUeHcTlQ+WJTot3o5/Q+jRJcY52I3xHDAT0zuIU=";
+ sha256 = "sha256-WjsVvFhwVCzclHxA+Gu2YtR2yK0Opqhncwlg9FEhOLk=";
};
nativeBuildInputs = [ cmake pkg-config makeWrapper ];
diff --git a/pkgs/applications/misc/1password/default.nix b/pkgs/applications/misc/1password/default.nix
index 1a450be6af63..e744388b8649 100644
--- a/pkgs/applications/misc/1password/default.nix
+++ b/pkgs/applications/misc/1password/default.nix
@@ -12,12 +12,12 @@ let
if extension == "zip" then fetchzip args else fetchurl args;
pname = "1password-cli";
- version = "2.7.2";
+ version = "2.7.3";
sources = rec {
- aarch64-linux = fetch "linux_arm64" "sha256-lYY69zbJqE9KuP1Yihfz444GFazHgR9zHVDq9RzZdTA=" "zip";
- i686-linux = fetch "linux_386" "sha256-IgTusLxgeOS9u4G1M7JqqxJw2D3hy5L9wl77crgfHjM=" "zip";
- x86_64-linux = fetch "linux_amd64" "sha256-OL/URp5eU3K1ObTlC4nXELa7NkrZDW5tFwhgVdrmPdQ=" "zip";
- aarch64-darwin = fetch "apple_universal" "sha256-pL39V9AO2DjCcWlecteTMCcBBZVb3RXmJ8wk5gyFojg=" "pkg";
+ aarch64-linux = fetch "linux_arm64" "sha256-FxApOWyExyfuRFQhxAVBWZGqQNmarBFBRB4jqsreWL0=" "zip";
+ i686-linux = fetch "linux_386" "sha256-Ta6mdmcsKnNRMz9vwEadZ/xXVBran5BIJQngzNz3PUs=" "zip";
+ x86_64-linux = fetch "linux_amd64" "sha256-Lvxnp5KmkIj9jnaWg02a27eRYIx7WTNSLx+RJ04Vt+g=" "zip";
+ aarch64-darwin = fetch "apple_universal" "sha256-6qrNgb5ae+qqlNsNDLbKNeWj0o/SRs+2G/4DfK5Wnhg=" "pkg";
x86_64-darwin = aarch64-darwin;
};
platforms = builtins.attrNames sources;
diff --git a/pkgs/applications/misc/dmenu/wayland.nix b/pkgs/applications/misc/dmenu/wayland.nix
index 8e4a98af1381..2569300ccc32 100644
--- a/pkgs/applications/misc/dmenu/wayland.nix
+++ b/pkgs/applications/misc/dmenu/wayland.nix
@@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
pname = "dmenu-wayland-unstable";
- version = "2020-07-06";
+ version = "2022-11-04";
src = fetchFromGitHub {
owner = "nyyManni";
repo = "dmenu-wayland";
- rev = "304c8e917651ee02b16ebf0b7097a5c53fa2236b";
- sha256 = "0rkpmpk7xkcfbnv9vpg8n65423z5xpgp0hm2vg0rxf9354bjin7k";
+ rev = "b60047236ef7a4e5dcde6c4ac0dcfaa070d90041";
+ sha256 = "sha256-CeJWLBPAzE3JITVuS6f4CQxLz9v09WvfG3O0wErJJS4=";
};
outputs = [ "out" "man" ];
diff --git a/pkgs/applications/misc/junction/default.nix b/pkgs/applications/misc/junction/default.nix
index 34002c547162..c1d3ff263c0d 100644
--- a/pkgs/applications/misc/junction/default.nix
+++ b/pkgs/applications/misc/junction/default.nix
@@ -2,6 +2,7 @@
, stdenv
, fetchFromGitHub
, appstream-glib
+, blueprint-compiler
, desktop-file-utils
, gobject-introspection
, meson
@@ -16,17 +17,19 @@
stdenv.mkDerivation rec {
pname = "junction";
- version = "1.5.0";
+ version = "1.6";
src = fetchFromGitHub {
owner = "sonnyp";
repo = "junction";
rev = "v${version}";
- sha256 = "sha256-jS4SHh1BB8jk/4EP070X44C4n3GjyCz8ozgK8v5lbqc=";
+ sha256 = "sha256-95lKap0VKLxX5Vax2tK0cAcJ/XgQddoN46tXHo+MtYc=";
+ fetchSubmodules = true;
};
nativeBuildInputs = [
appstream-glib
+ blueprint-compiler
desktop-file-utils
gobject-introspection
meson
@@ -42,12 +45,25 @@ stdenv.mkDerivation rec {
libportal-gtk4
];
+ postPatch = ''
+ # gjs uses the invocation name to add gresource files
+ # - https://gitlab.gnome.org/GNOME/gjs/-/blob/6aca7b50785fa1638f144b17060870d721e3f65a/modules/script/package.js#L159
+ # - https://gitlab.gnome.org/GNOME/gjs/-/blob/6aca7b50785fa1638f144b17060870d721e3f65a/modules/script/package.js#L37
+ # To work around this, we manually set the the name as done in foliate
+ # - https://github.com/NixOS/nixpkgs/blob/3bacde6273b09a21a8ccfba15586fb165078fb62/pkgs/applications/office/foliate/default.nix#L23
+ sed -i "1 a imports.package._findEffectiveEntryPointName = () => 're.sonny.Junction';" src/bin.js
+
+ # /usr/bin/env is not accessible in build environment
+ substituteInPlace troll/gjspack/bin/gjspack --replace "/usr/bin/env -S gjs" "${gjs}/bin/gjs"
+ '';
+
postInstall = ''
- # autoPatchShebangs does not like "/usr/bin/env -S gjs"
- substituteInPlace $out/bin/re.sonny.Junction --replace "/usr/bin/env -S gjs" "/usr/bin/gjs"
+ # autoPatchShebangs does not like "/usr/bin/env -S gjs -m"
+ sed -i "1s|.*|#!/usr/bin/gjs -m|" $out/bin/re.sonny.Junction
'';
meta = with lib; {
+ mainProgram = "re.sonny.Junction";
description = "Choose the application to open files and links";
homepage = "https://apps.gnome.org/en/app/re.sonny.Junction/";
license = licenses.gpl3Plus;
diff --git a/pkgs/applications/networking/dnscontrol/default.nix b/pkgs/applications/networking/dnscontrol/default.nix
index 4493871a6ae7..c4a981b68807 100644
--- a/pkgs/applications/networking/dnscontrol/default.nix
+++ b/pkgs/applications/networking/dnscontrol/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "dnscontrol";
- version = "3.20.0";
+ version = "3.21.0";
src = fetchFromGitHub {
owner = "StackExchange";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-jBpapZIQGYC63SEc4kT6pEbNR3H1IQFM7P/wxMlrP8I=";
+ sha256 = "sha256-S07v9SATmE7gqM7+X/eWBG5A+h8lAKJ6mPvU7ImEfN4=";
};
- vendorSha256 = "sha256-iY4Q1P4Mir6idcv88Op5v0kQ7PkoOm85aCBb845xvGs=";
+ vendorSha256 = "sha256-h3UOFs7pxf9gwVAcjih8Kxr0b+68W1DanYoTpmeirg8=";
ldflags = [ "-s" "-w" ];
diff --git a/pkgs/applications/networking/instant-messengers/discord/default.nix b/pkgs/applications/networking/instant-messengers/discord/default.nix
index f78aba44f232..007714644374 100644
--- a/pkgs/applications/networking/instant-messengers/discord/default.nix
+++ b/pkgs/applications/networking/instant-messengers/discord/default.nix
@@ -25,7 +25,11 @@ let
sha256 = "sha256-/EWJC3hFIBqwHa9z4nMWR7CpoaqYY+pvw+1vcq4F0LU=";
};
};
- aarch64-darwin = {
+ x86_64-darwin = {
+ stable = fetchurl {
+ url = "https://dl.discordapp.net/apps/osx/${version}/Discord.dmg";
+ sha256 = "1jvlxmbfqhslsr16prsgbki77kq7i3ipbkbn67pnwlnis40y9s7p";
+ };
ptb = fetchurl {
url = "https://dl-ptb.discordapp.net/apps/osx/${version}/DiscordPTB.dmg";
sha256 = "sha256-LS7KExVXkOv8O/GrisPMbBxg/pwoDXIOo1dK9wk1yB8=";
@@ -35,15 +39,7 @@ let
sha256 = "0mqpk1szp46mih95x42ld32rrspc6jx1j7qdaxf01whzb3d4pi9l";
};
};
- # Stable does not (yet) provide aarch64-darwin support. PTB and Canary, however, do.
- x86_64-darwin =
- aarch64-darwin
- // {
- stable = fetchurl {
- url = "https://dl.discordapp.net/apps/osx/${version}/Discord.dmg";
- sha256 = "1jvlxmbfqhslsr16prsgbki77kq7i3ipbkbn67pnwlnis40y9s7p";
- };
- };
+ aarch64-darwin = x86_64-darwin;
};
src = srcs.${stdenv.hostPlatform.system}.${branch};
@@ -54,8 +50,7 @@ let
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ MP2E devins2518 artturin infinidoge ];
- platforms = [ "x86_64-linux" "x86_64-darwin" ]
- ++ lib.optionals (branch != "stable") [ "aarch64-darwin" ];
+ platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
};
package =
if stdenv.isLinux
diff --git a/pkgs/applications/networking/instant-messengers/element/element-web.nix b/pkgs/applications/networking/instant-messengers/element/element-web.nix
index 3b30abbb3d6c..92130d309902 100644
--- a/pkgs/applications/networking/instant-messengers/element/element-web.nix
+++ b/pkgs/applications/networking/instant-messengers/element/element-web.nix
@@ -9,7 +9,6 @@
, fixup_yarn_lock
, nodejs
, jitsi-meet
-, applyPatches
, conf ? { }
}:
@@ -25,14 +24,11 @@ in stdenv.mkDerivation rec {
pname = "element-web";
inherit (pinData) version;
- src = applyPatches {
- src = fetchFromGitHub {
- owner = "vector-im";
- repo = pname;
- rev = "v${version}";
- sha256 = pinData.webSrcHash;
- };
- patches = [ ./regenerate-element-web-yarn.lock.diff ];
+ src = fetchFromGitHub {
+ owner = "vector-im";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = pinData.webSrcHash;
};
offlineCache = fetchYarnDeps {
diff --git a/pkgs/applications/networking/instant-messengers/element/pin.json b/pkgs/applications/networking/instant-messengers/element/pin.json
index 2ba1fbaf4f8e..9e09fa6acbee 100644
--- a/pkgs/applications/networking/instant-messengers/element/pin.json
+++ b/pkgs/applications/networking/instant-messengers/element/pin.json
@@ -1,7 +1,7 @@
{
- "version": "1.11.12",
- "desktopSrcHash": "85mH9y3/IlThrdZY4Nv6iZQ8SxVGoYcZ1bbkCuAAroU=",
+ "version": "1.11.13",
+ "desktopSrcHash": "E8jpv7cJf8qdR4I3n7id5hUysAiMVvwyqUqHzGnVUJE=",
"desktopYarnHash": "1scp9y2lmah3n20f1kpc9paspd3qgslg129diis7g11cz4h0wyi5",
- "webSrcHash": "MfiPrTw7BFLFPbm6xR5QbQHNPYpaJBtZES6KjISMTeE=",
- "webYarnHash": "sha256-KZNBocVEs3wD5020h6C4n2jgp4shv4IgFENSi87rUFM="
+ "webSrcHash": "985nxLIOZvrUX11AJDXYRMwC76/aP9ruSCqL47c7ZRM=",
+ "webYarnHash": "0bmjg9qhd89bdnh398lp257mxdgdd88wj5g3fmc3cavyd6hmgzbn"
}
diff --git a/pkgs/applications/networking/instant-messengers/element/regenerate-element-web-yarn.lock.diff b/pkgs/applications/networking/instant-messengers/element/regenerate-element-web-yarn.lock.diff
deleted file mode 100644
index 98a39f992470..000000000000
--- a/pkgs/applications/networking/instant-messengers/element/regenerate-element-web-yarn.lock.diff
+++ /dev/null
@@ -1,32 +0,0 @@
-diff --git a/yarn.lock b/yarn.lock
-index 1581f599f..910764c86 100644
---- a/yarn.lock
-+++ b/yarn.lock
-@@ -3150,6 +3150,11 @@ brorand@^1.0.1, brorand@^1.1.0:
- resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
- integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==
-
-+browser-request@^0.3.3:
-+ version "0.3.3"
-+ resolved "https://registry.yarnpkg.com/browser-request/-/browser-request-0.3.3.tgz#9ece5b5aca89a29932242e18bf933def9876cc17"
-+ integrity sha512-YyNI4qJJ+piQG6MMEuo7J3Bzaqssufx04zpEKYfSrl/1Op59HWali9zMtBpXnkmqMcOuWJPZvudrm9wISmnCbg==
-+
- browserify-aes@^1.0.0, browserify-aes@^1.0.4:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
-@@ -8177,7 +8182,6 @@ matrix-js-sdk@21.0.0:
- dependencies:
- "@babel/runtime" "^7.12.5"
- another-json "^0.2.0"
-- browser-request "^0.3.3"
- bs58 "^5.0.0"
- content-type "^1.0.4"
- loglevel "^1.7.1"
-@@ -8208,7 +8212,6 @@ matrix-react-sdk@3.59.0:
- "@types/ua-parser-js" "^0.7.36"
- await-lock "^2.1.0"
- blurhash "^1.1.3"
-- browser-request "^0.3.3"
- cheerio "^1.0.0-rc.9"
- classnames "^2.2.6"
- commonmark "^0.29.3"
diff --git a/pkgs/applications/networking/instant-messengers/gurk-rs/default.nix b/pkgs/applications/networking/instant-messengers/gurk-rs/default.nix
index e518590a9167..15564de27271 100644
--- a/pkgs/applications/networking/instant-messengers/gurk-rs/default.nix
+++ b/pkgs/applications/networking/instant-messengers/gurk-rs/default.nix
@@ -3,30 +3,35 @@
, protobuf
, rustPlatform
, fetchFromGitHub
+, Cocoa
}:
rustPlatform.buildRustPackage rec {
pname = "gurk-rs";
- version = "0.2.5";
+ version = "0.3.0";
src = fetchFromGitHub {
owner = "boxdot";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-CEsnZ0V85eOH+bjtico5yo9kS6eMT7Dx3H6wiDUjQm4=";
+ sha256 = "sha256-uJvi082HkWW9y8jwHTvzuzBAi7uVtjq/4U0bO0EWdVM=";
};
postPatch = ''
rm .cargo/config.toml
'';
- cargoHash = "sha256-z+2G/hD1zYOoJrYFB0eEP6y9MoV2OfdkJVt6je94EkU=";
- buildInputs = [ protobuf ];
+ cargoHash = "sha256-jS6wAswGqgfmpPV6qERhqn1IhpcBSDNh8HDdPo04F0A=";
+
+ nativeBuildInputs = [ protobuf ];
+
+ buildInputs = lib.optionals stdenv.isDarwin [ Cocoa ];
+
+ NIX_LDFLAGS = lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ "-framework" "AppKit" ];
PROTOC = "${protobuf}/bin/protoc";
meta = with lib; {
- broken = stdenv.isDarwin;
description = "Signal Messenger client for terminal";
homepage = "https://github.com/boxdot/gurk-rs";
license = licenses.agpl3Only;
diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
index 10f9ad7697d0..0e76ef4eeafe 100644
--- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
@@ -27,7 +27,7 @@
, range-v3
, tl-expected
, hunspell
-, glibmm
+, glibmm_2_68
, webkitgtk_4_1
, jemalloc
, rnnoise
@@ -74,7 +74,7 @@ let
in
env.mkDerivation rec {
pname = "telegram-desktop";
- version = "4.2.4";
+ version = "4.3.0";
# Note: Update via pkgs/applications/networking/instant-messengers/telegram/tdesktop/update.py
# Telegram-Desktop with submodules
@@ -83,7 +83,7 @@ env.mkDerivation rec {
repo = "tdesktop";
rev = "v${version}";
fetchSubmodules = true;
- sha256 = "sha256-X2ZbjlL3YbPdXSgS+wqZL3FUW2xQ0DhqiOO5MR1QyLY=";
+ sha256 = "1ji9351vcvydkcrdwqx22j1nhl9vysd6ajvghaqxdirvqypiygj0";
};
postPatch = ''
@@ -131,7 +131,7 @@ env.mkDerivation rec {
range-v3
tl-expected
hunspell
- glibmm
+ glibmm_2_68
webkitgtk_4_1
jemalloc
rnnoise
diff --git a/pkgs/applications/video/mpv/scripts/thumbnail.nix b/pkgs/applications/video/mpv/scripts/thumbnail.nix
index 5de9f5b0c6b2..a08bce6699fa 100644
--- a/pkgs/applications/video/mpv/scripts/thumbnail.nix
+++ b/pkgs/applications/video/mpv/scripts/thumbnail.nix
@@ -1,14 +1,14 @@
{ lib, stdenvNoCC, fetchFromGitHub, python3 }:
stdenvNoCC.mkDerivation rec {
- pname = "mpv_thumbnail_script";
- version = "0.4.9";
+ pname = "mpv-thumbnail-script";
+ version = "0.5.1";
src = fetchFromGitHub {
owner = "marzzzello";
- repo = pname;
+ repo = "mpv_thumbnail_script";
rev = version;
- sha256 = "0dgfrb8ypc5vlq35kzn423fm6l6348ivl85vb6j3ccc9a51xprw3";
+ sha256 = "sha256-0nqV8vY3cBOJkLRoQ33Cc+4+vSK45i9yWbhKiQIuVSw=";
};
nativeBuildInputs = [ python3 ];
diff --git a/pkgs/applications/window-managers/i3/default.nix b/pkgs/applications/window-managers/i3/default.nix
index 9a6fc5959548..4ffa04d73bf5 100644
--- a/pkgs/applications/window-managers/i3/default.nix
+++ b/pkgs/applications/window-managers/i3/default.nix
@@ -7,11 +7,11 @@
stdenv.mkDerivation rec {
pname = "i3";
- version = "4.21";
+ version = "4.21.1";
src = fetchurl {
url = "https://i3wm.org/downloads/${pname}-${version}.tar.xz";
- sha256 = "sha256-jcUgXg80Q9WGYeMHg1If2cbUJtHn82Z6sS8qwbLTIHg=";
+ sha256 = "sha256-7f14EoXGVKBdxtsnLOAwDEQo5vvYddmZZOV94ltBvB4=";
};
nativeBuildInputs = [
diff --git a/pkgs/build-support/setup-hooks/patch-ppd-files/default.nix b/pkgs/build-support/setup-hooks/patch-ppd-files/default.nix
new file mode 100644
index 000000000000..b3c7b19f3732
--- /dev/null
+++ b/pkgs/build-support/setup-hooks/patch-ppd-files/default.nix
@@ -0,0 +1,25 @@
+{ lib
+, makeSetupHook
+, which
+, callPackage
+}:
+
+let
+ patchPpdFilesHook = makeSetupHook
+ {
+ name = "patch-ppd-files";
+ substitutions.which = lib.attrsets.getBin which;
+ substitutions.awkscript = ./patch-ppd-lines.awk;
+ }
+ ./patch-ppd-hook.sh;
+in
+
+patchPpdFilesHook.overrideAttrs (
+ lib.trivial.flip
+ lib.attrsets.recursiveUpdate
+ {
+ passthru.tests.test = callPackage ./test.nix {};
+ meta.description = "setup hook to patch executable paths in ppd files";
+ meta.maintainers = [ lib.maintainers.yarny ];
+ }
+)
diff --git a/pkgs/build-support/setup-hooks/patch-ppd-files/patch-ppd-hook.sh b/pkgs/build-support/setup-hooks/patch-ppd-files/patch-ppd-hook.sh
new file mode 100644
index 000000000000..a450ecd7f963
--- /dev/null
+++ b/pkgs/build-support/setup-hooks/patch-ppd-files/patch-ppd-hook.sh
@@ -0,0 +1,183 @@
+fixupOutputHooks+=(_patchPpdFileCommands4fixupOutputHooks)
+
+
+
+# Install a hook for the `fixupPhase`:
+# If the variable `ppdFileCommands` contains a list of
+# executable names, the hook calls `patchPpdFileCommands`
+# on each output's `/share/cups/model` and `/share/ppds`
+# directories in order to replace calls to those executables.
+
+_patchPpdFileCommands4fixupOutputHooks () {
+ [[ -n $ppdFileCommands ]] || return 0
+ if [[ -d $prefix/share/cups/model ]]; then
+ patchPpdFileCommands "$prefix/share/cups/model" $ppdFileCommands
+ fi
+ if [[ -d $prefix/share/ppds ]]; then
+ patchPpdFileCommands "$prefix/share/ppds" $ppdFileCommands
+ fi
+}
+
+
+
+# patchPpdFileCommands PPD-ROOT PROGNAME...
+#
+# Look for ppd files in the directory PPD-ROOT.
+# Descend into subdirectories, even if they are symlinks.
+# However, ignore ppd files that don't belong to the same
+# prefix ($NIX_STORE/$package_name) as PPD-ROOT-DIR does,
+# to avoid stepping into other package's directories.
+# ppd files may be gzipped; if the are,
+# uncompress them, later recompress them.
+# Skip symlinks to ppd files.
+# PPD-ROOT may also be a single ppd file.
+#
+# Look for the PROGNAME executable in outputs and `buildInputs`,
+# then look for PROGNAME invocations in the ppd files,
+# without path or with common paths like `/usr/bin/$PROGNAME`.
+# Replace those invocations with an absolute path to the
+# corresponding executable from the outputs or `buildInputs`.
+# Executables are searched where CUPS would search them,
+# i.e., in `/bin` and `/lib/cups/filter`.
+#
+# As soon as an executable's path is replaced as
+# described above, the package containing the binary
+# is added to the list of propagated build inputs.
+# This ensures the executable's package is still
+# recognized as runtime dependency of the ppd file
+# even if the ppd file is compressed lateron.
+#
+# PROGNAME may not contain spaces or tabs.
+# The function will also likely fail or produce
+# broken results if PROGNAME contains characters that
+# require shell or regex escaping (e.g. a backslash).
+
+patchPpdFileCommands () {
+
+ local bin binnew binold binoldgrep cupspath path ppdroot ppdrootprefix
+
+ # we will store some temporary data here
+ pushd "$(mktemp -d --tmpdir patch-ppd-file-commands.XXXX)"
+
+ # remember the ppd root path
+ [[ "$1" == $NIX_STORE/* ]] # ensure it's a store directory
+ ppdroot=$1
+ shift # now "$@" is the list of binaries
+ ppdrootprefix=${ppdroot%"/${ppdroot#"$NIX_STORE"/*/}"}
+
+ # create `cupspath` (where we should look for binaries),
+ # with these priorities
+ # * outputs of current build before buildInputs
+ # * `/lib/cups/filter' before `/bin`
+ # * add HOST_PATH at end, so we don't miss anything
+ for path in $outputs; do
+ addToSearchPath cupspath "${!path}/lib/cups/filter"
+ addToSearchPath cupspath "${!path}/bin"
+ done
+ for path in ${pkgsHostTarget+"${pkgsHostTarget[@]}"}; do
+ addToSearchPath cupspath "$path/lib/cups/filter"
+ addToSearchPath cupspath "$path/bin"
+ done
+ while read -r -d : path; do
+ addToSearchPath cupspath "$path"
+ done <<< "${HOST_PATH:+"${HOST_PATH}:"}"
+
+ # create list of compressed ppd files
+ # so we can recompress them later
+ find -L "$ppdroot" -type f -iname '*.ppd.gz' '!' -xtype l -print0 > gzipped
+
+ # decompress gzipped ppd files
+ echo "patchPpdFileCommands: decompressing $(grep -cz '^' < gzipped) gzipped ppd file(s) in $ppdroot"
+ xargs -0r -n 64 -P "$NIX_BUILD_CORES" gunzip < gzipped
+
+ # create list of all ppd files to be checked
+ find -L "$ppdroot" -type f -iname '*.ppd' '!' -xtype l -print0 > ppds
+
+ for bin in "$@"; do
+
+ # discover new path
+ binnew=$(PATH=$cupspath '@which@/bin/which' "$bin")
+ echo "patchPpdFileCommands: located binary $binnew"
+
+ # for each binary, we look for the name itself, but
+ # also for a couple of common paths that might be used
+ for binold in {/usr,}/{lib/cups/filter,sbin,bin}/"$bin" "$bin"; do
+
+ # escape regex characters in the old command string
+ binoldgrep=$(sed 's,[]$.*[\^],\\&,g' <<< "$binold")
+ # ...and surround old command with some regex
+ # that singles out shell command invocations
+ # to avoid replacing other strings that might contain the
+ # command name by accident (like "perl" in "perl-script")
+ binoldgrep='\(^\|[;&| '$'\t''"`(]\)'"$binoldgrep"'\($\|[);&| '$'\t''"`<>]\)'
+ # this string is used to *quickly* filter out
+ # unaffected files before the (slower) awk script runs;
+ # note that a similar regex is build in the awk script;
+ # if `binoldgrep` is changed, the awk script should also be checked
+
+ # create list of likely affected files
+ # (might yield exit status != 0 if there are no matches)
+ xargs -0r grep -lZ "$binoldgrep" < ppds > ppds-to-patch || true
+
+ echo "patchPpdFileCommands: $(grep -cz '^' < ppds-to-patch) ppd file(s) contain $binold"
+
+ # actually patch affected ppd files with awk;
+ # this takes some time but can be parallelized;
+ # speed up with LC_ALL=C, https://stackoverflow.com/a/33850386
+ LC_ALL=C xargs -0r -n 64 -P "$NIX_BUILD_CORES" \
+ awk -i inplace -v old="${binold//\\/\\\\}" -v new="${binnew//\\/\\\\}" -f "@awkscript@" \
+ < ppds-to-patch
+
+ done
+
+ # create list of affected files
+ xargs -0r grep -lZF "$binnew" < ppds > patched-ppds || true
+
+ echo "patchPpdFileCommands: $(grep -cz '^' < patched-ppds) ppd file(s) patched with $binnew"
+
+ # if the new command is contained in a file,
+ # remember the new path so we can add it to
+ # the list of propagated dependencies later
+ if [[ -s patched-ppds ]]; then
+ printf '%s\0' "${binnew%"/${binnew#"${NIX_STORE}"/*/}"}" >> dependencies
+ fi
+
+ done
+
+ # recompress ppd files that have been decompressed before
+ echo "patchPpdFileCommands: recompressing $(grep -cz '^' < gzipped) gzipped ppd file(s)"
+ # we can't just hand over the paths of the uncompressed files
+ # to gzip as it would add the lower-cased extension ".gz"
+ # even for files where the original was named ".GZ"
+ xargs -0r -n 1 -P "$NIX_BUILD_CORES" \
+ "$SHELL" -c 'gzip -9nS ".${0##*.}" "${0%.*}"' \
+ < gzipped
+
+ # enlist dependencies for propagation;
+ # this is needed in case ppd files are compressed later
+ # (Nix won't find dependency paths in compressed files)
+ if [[ -s dependencies ]]; then
+
+ # weed out duplicates from the dependency list first
+ sort -zu dependencies > sorted-dependencies
+
+ mkdir -p "$ppdrootprefix/nix-support"
+ while IFS= read -r -d '' path; do
+ printWords "$path" >> "$ppdrootprefix/nix-support/propagated-build-inputs"
+ # stdenv writes it's own `propagated-build-inputs`,
+ # based on the variable `propagatedBuildInputs`,
+ # but only to one output (`outputDev`).
+ # So we also add our dependencies to that variable.
+ # If our file survives as written above, great!
+ # If stdenv overwrits it,
+ # our dependencies will still be added to the file.
+ # The end result might contain too many
+ # propagated dependencies for multi-output packages,
+ # but never a broken package.
+ propagatedBuildInputs+=("$path")
+ done < sorted-dependencies
+ fi
+
+ popd
+
+}
diff --git a/pkgs/build-support/setup-hooks/patch-ppd-files/patch-ppd-lines.awk b/pkgs/build-support/setup-hooks/patch-ppd-files/patch-ppd-lines.awk
new file mode 100644
index 000000000000..ddb9171fff32
--- /dev/null
+++ b/pkgs/build-support/setup-hooks/patch-ppd-files/patch-ppd-lines.awk
@@ -0,0 +1,50 @@
+BEGIN {
+
+ # ppd file keys are separated from their values by a colon,
+ # but "options" may reside between the key name and the colon;
+ # options are separated from the key by spaces
+ # (we also permit tabs to be on the safe side)
+ FS = "[: \t]";
+
+ # escape regex characters in the old and new command strings
+ gsub(/[]\\.^$(){}|*+?[]/, "\\\\&", old);
+ gsub(/\\/, "\\\\&", new);
+ # ...and surround old command with some regex
+ # that singles out shell command invocations
+ # to avoid replacing other strings that might contain the
+ # command name by accident (like "perl" in "perl-script")
+ new = "\\1" new "\\2";
+ old = "(^|[;&| \\t\"`(])" old "($|[);&| \\t\"`<>])";
+ # note that a similar regex is build in the shell script to
+ # filter out unaffected files before this awk script is called;
+ # if the regex here is changed, the shell script should also be checked
+
+ # list of PPD keys that contain executable names or scripts, see
+ # https://refspecs.linuxfoundation.org/LSB_4.0.0/LSB-Printing/LSB-Printing/ppdext.html
+ # https://www.cups.org/doc/spec-ppd.html
+ cmds["*APAutoSetupTool"] = "";
+ cmds["*APPrinterLowInkTool"] = "";
+ cmds["*FoomaticRIPCommandLine"] = "";
+ cmds["*FoomaticRIPPostPipe"] = "";
+ cmds["*cupsFilter"] = "";
+ cmds["*cupsFilter2"] = "";
+ cmds["*cupsPreFilter"] = "";
+
+}
+
+# since comments always start with "*%",
+# this mechanism also properly recognizes (and ignores) them
+
+{
+
+ # if the current line starts a new key,
+ # check if it is a command-containing key;
+ # also reset the `isCmd` flag if a new file begins
+ if ($0 ~ /^\*/ || FNR == 1) { isCmd = ($1 in cmds) }
+
+ # replace commands if the current keys might contain commands
+ if (isCmd) { $0 = gensub(old, new, "g") }
+
+ print
+
+}
diff --git a/pkgs/build-support/setup-hooks/patch-ppd-files/test.nix b/pkgs/build-support/setup-hooks/patch-ppd-files/test.nix
new file mode 100644
index 000000000000..4f2996b23510
--- /dev/null
+++ b/pkgs/build-support/setup-hooks/patch-ppd-files/test.nix
@@ -0,0 +1,40 @@
+{ substituteAll
+, diffutils
+, stdenv
+, patchPpdFilesHook
+}:
+
+let
+ input = substituteAll {
+ src = ./test.ppd;
+ keep = "cmp";
+ patch = "cmp";
+ pathkeep = "/bin/cmp";
+ pathpatch = "/bin/cmp";
+ };
+
+ output = substituteAll {
+ src = ./test.ppd;
+ keep = "cmp";
+ patch = "${diffutils}/bin/cmp";
+ pathkeep = "/bin/cmp";
+ pathpatch = "${diffutils}/bin/cmp";
+ };
+in
+
+stdenv.mkDerivation {
+ name = "${patchPpdFilesHook.name}-test";
+ buildInputs = [ diffutils ];
+ nativeBuildInputs = [ diffutils patchPpdFilesHook ];
+ dontUnpack = true;
+ dontInstall = true;
+ ppdFileCommands = [ "cmp" ];
+ preFixup = ''
+ install -D "${input}" "${placeholder "out"}/share/cups/model/test.ppd"
+ install -D "${input}" "${placeholder "out"}/share/ppds/test.ppd"
+ '';
+ postFixup = ''
+ diff --color --report-identical-files "${output}" "${placeholder "out"}/share/cups/model/test.ppd"
+ diff --color --report-identical-files "${output}" "${placeholder "out"}/share/ppds/test.ppd"
+ '';
+}
diff --git a/pkgs/build-support/setup-hooks/patch-ppd-files/test.ppd b/pkgs/build-support/setup-hooks/patch-ppd-files/test.ppd
new file mode 100644
index 000000000000..d0ca11ccfe6d
--- /dev/null
+++ b/pkgs/build-support/setup-hooks/patch-ppd-files/test.ppd
@@ -0,0 +1,22 @@
+*% This comment: might look like a command @keep@
+*% but it should be left untouched
+*SomeKey: do not replace this @keep@
+*APAutoSetupTool: do replace this @patch@
+*FoomaticRIPCommandLine: "patch also @patch@
+in a multi-line command @patch@
+and another line @patch@
+*SomeKey: "stop patching on new non-command key @keep@
+and remember the key in the next line @keep@"
+*cupsFilter option: recognize keys with options @patch@
+*cupsFilter : handle strange spacing;@patch@
+*cupsFilter : handle tabulator @patch@
+*cupsFilter: patch common paths @pathpatch@
+*cupsFilter: patch quoted commands "@patch@"
+*cupsFilter: patch commands in subshell (@patch@)
+*cupsFilter: patch commands in subshell `@pathpatch@`
+*cupsFilter: keep uncommon paths /fancy/@pathkeep@
+*cupsFilter: keep entangled commands-@keep@
+*cupsFilter: keep entangled commands\@keep@
+*cupsFilter: keep entangled commands @keep@()
+*cupsFilter: keep entangled commands @pathkeep@-cmd
+*%cupsFilter: This comment should also be left as is @pathkeep@
diff --git a/pkgs/data/icons/fluent-icon-theme/default.nix b/pkgs/data/icons/fluent-icon-theme/default.nix
index 8898fb0e186f..d4206ed58b48 100644
--- a/pkgs/data/icons/fluent-icon-theme/default.nix
+++ b/pkgs/data/icons/fluent-icon-theme/default.nix
@@ -16,13 +16,13 @@ lib.checkListOfEnum "${pname}: available color variants" [ "standard" "green" "g
stdenvNoCC.mkDerivation rec {
inherit pname;
- version = "2022-09-20";
+ version = "2022-11-05";
src = fetchFromGitHub {
owner = "vinceliuice";
repo = pname;
rev = version;
- sha256 = "Ce8LTIxKabeqV9QVK68DqUVwtwG5lyxDPDQx0mLIr5o=";
+ sha256 = "kKl/E2L1NL1U7PHbva+wUqQGbcHFbPgZBVhU/OgEuAE=";
};
nativeBuildInputs = [ gtk3 jdupes ];
diff --git a/pkgs/data/icons/numix-icon-theme-square/default.nix b/pkgs/data/icons/numix-icon-theme-square/default.nix
index 0c3435908aa7..4d9b67aec388 100644
--- a/pkgs/data/icons/numix-icon-theme-square/default.nix
+++ b/pkgs/data/icons/numix-icon-theme-square/default.nix
@@ -2,13 +2,13 @@
stdenvNoCC.mkDerivation rec {
pname = "numix-icon-theme-square";
- version = "22.10.31";
+ version = "22.11.05";
src = fetchFromGitHub {
owner = "numixproject";
repo = pname;
rev = version;
- sha256 = "sha256-TtRIVut4VBkQnM0+DM44305+FG3l2tDSU+FfaR7OFZI=";
+ sha256 = "sha256-XHf9YzZ9VY63Jv7HXSL2NAfft1VYeMzcqd9+vz1CBhg=";
};
nativeBuildInputs = [ gtk3 ];
diff --git a/pkgs/development/compilers/hip/default.nix b/pkgs/development/compilers/hip/default.nix
index dce3dab727f4..60400f38bb7d 100644
--- a/pkgs/development/compilers/hip/default.nix
+++ b/pkgs/development/compilers/hip/default.nix
@@ -14,6 +14,7 @@
, numactl
, perl
, python3
+, python3Packages
, rocclr
, rocm-comgr
, rocm-device-libs
@@ -29,13 +30,13 @@
let
hip = stdenv.mkDerivation rec {
pname = "hip";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchFromGitHub {
owner = "ROCm-Developer-Tools";
repo = "HIP";
rev = "rocm-${version}";
- hash = "sha256-UAodlVUiTU4n/EyvTIuQekTGh4izmBjKCRXOHXVKY4M=";
+ hash = "sha256-kmRvrwnT0h2dBMI+H9d1vmeW3TmDBD+qW4YYhaMV2dE=";
};
patches = [
@@ -109,17 +110,17 @@ let
in
stdenv.mkDerivation rec {
pname = "hip";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchFromGitHub {
owner = "ROCm-Developer-Tools";
repo = "hipamd";
rev = "rocm-${version}";
- hash = "sha256-gZGZiDP/HbdmzLQkG9Jq9lyMP9hoD6UzTMiX9cUmQNA=";
+ hash = "sha256-i7hT/j+V0LT6Va2XcQyyKXF1guoIyhcOHvn842wCRx4=";
};
nativeBuildInputs = [ cmake python3 makeWrapper perl ];
- buildInputs = [ libxml2 numactl libglvnd libX11 ];
+ buildInputs = [ libxml2 numactl libglvnd libX11 python3Packages.cppheaderparser ];
propagatedBuildInputs = [
clang
llvm
diff --git a/pkgs/development/compilers/llvm/rocm/default.nix b/pkgs/development/compilers/llvm/rocm/default.nix
index a952615a6c24..cb2ed8a703db 100644
--- a/pkgs/development/compilers/llvm/rocm/default.nix
+++ b/pkgs/development/compilers/llvm/rocm/default.nix
@@ -1,12 +1,12 @@
{ stdenv, lib, buildPackages, fetchFromGitHub, callPackage, wrapCCWith, overrideCC }:
let
- version = "5.3.0";
+ version = "5.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
repo = "llvm-project";
rev = "rocm-${version}";
- hash = "sha256-MN7W4Gl6+a1nCozdn9gMzIXOiBPquoOP87x26boeSCA=";
+ hash = "sha256-IKo7N8wWvh5PBrZ2mh1Vu5s3uUXhanqYtC4qLV/+JBs=";
};
in rec {
clang = wrapCCWith rec {
diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix
index ab2b6af9d5f9..c1753a7668e6 100644
--- a/pkgs/development/interpreters/octave/default.nix
+++ b/pkgs/development/interpreters/octave/default.nix
@@ -111,19 +111,14 @@ let
};
self = mkDerivation rec {
- version = "7.1.0";
+ version = "7.3.0";
pname = "octave";
src = fetchurl {
url = "mirror://gnu/octave/${pname}-${version}.tar.gz";
- sha256 = "sha256-1KnYHz9ntKbgfLeoDcsQrV6RdvzDB2LHCoFYCmS4sLY=";
+ sha256 = "sha256-bhSkZJ1wr0WrZg+Mu/ZFqvHsM/JfiL/aRpfLF+RAxPU=";
};
- patches = [
- # https://savannah.gnu.org/bugs/?func=detailitem&item_id=62436
- ./patches/bug62436.patch
- ];
-
buildInputs = [
readline
ncurses
diff --git a/pkgs/development/libraries/clang-ocl/default.nix b/pkgs/development/libraries/clang-ocl/default.nix
new file mode 100644
index 000000000000..198a2a20af1e
--- /dev/null
+++ b/pkgs/development/libraries/clang-ocl/default.nix
@@ -0,0 +1,44 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, rocm-cmake
+, rocm-device-libs
+, clang
+}:
+
+stdenv.mkDerivation rec {
+ pname = "clang-ocl";
+ rocmVersion = "5.3.1";
+ version = rocmVersion;
+
+ src = fetchFromGitHub {
+ owner = "RadeonOpenCompute";
+ repo = "clang-ocl";
+ rev = "rocm-${rocmVersion}";
+ hash = "sha256-uMSvcVJj+me2E+7FsXZ4l4hTcK6uKEegXpkHGcuist0=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ rocm-cmake
+ clang
+ ];
+
+ buildInputs = [
+ rocm-device-libs
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_C_COMPILER=clang"
+ "-DCMAKE_CXX_COMPILER=clang++"
+ ];
+
+ meta = with lib; {
+ description = "OpenCL compilation with clang compiler";
+ homepage = "https://github.com/RadeonOpenCompute/clang-ocl";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ Madouura ];
+ broken = rocmVersion != clang.version;
+ };
+}
diff --git a/pkgs/development/libraries/composable_kernel/default.nix b/pkgs/development/libraries/composable_kernel/default.nix
new file mode 100644
index 000000000000..9efb60814a8d
--- /dev/null
+++ b/pkgs/development/libraries/composable_kernel/default.nix
@@ -0,0 +1,91 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, rocm-cmake
+, hip
+, openmp
+, gtest ? null
+, buildTests ? false
+, buildExamples ? false
+, gpuTargets ? null # gpuTargets = [ "gfx803" "gfx900" "gfx1030" ... ]
+}:
+
+assert buildTests -> gtest != null;
+
+# Several tests seem to either not compile or have a race condition
+# Undefined reference to symbol '_ZTIN7testing4TestE'
+# Try removing this next update
+assert buildTests == false;
+
+stdenv.mkDerivation rec {
+ pname = "composable_kernel";
+ version = "unstable-2022-11-02";
+
+ outputs = [
+ "out"
+ ] ++ lib.optionals buildTests [
+ "test"
+ ] ++ lib.optionals buildExamples [
+ "example"
+ ];
+
+ src = fetchFromGitHub {
+ owner = "ROCmSoftwarePlatform";
+ repo = "composable_kernel";
+ rev = "79aa3fb1793c265c59d392e916baa851a55521c8";
+ hash = "sha256-vIfMdvRYCTqrjMGSb7gQfodzLw2wf3tGoCAa5jtfbvw=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ rocm-cmake
+ hip
+ ];
+
+ buildInputs = [
+ openmp
+ ] ++ lib.optionals buildTests [
+ gtest
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_C_COMPILER=hipcc"
+ "-DCMAKE_CXX_COMPILER=hipcc"
+ ] ++ lib.optionals (gpuTargets != null) [
+ "-DGPU_TARGETS=${lib.strings.concatStringsSep ";" gpuTargets}"
+ ];
+
+ # No flags to build selectively it seems...
+ postPatch = ''
+ substituteInPlace test/CMakeLists.txt \
+ --replace "include(googletest)" ""
+
+ substituteInPlace CMakeLists.txt \
+ --replace "enable_testing()" ""
+ '' + lib.optionalString (!buildTests) ''
+ substituteInPlace CMakeLists.txt \
+ --replace "add_subdirectory(test)" ""
+ '' + lib.optionalString (!buildExamples) ''
+ substituteInPlace CMakeLists.txt \
+ --replace "add_subdirectory(example)" ""
+ '';
+
+ postInstall = ''
+ mkdir -p $out/bin
+ mv bin/ckProfiler $out/bin
+ '' + lib.optionalString buildTests ''
+ mkdir -p $test/bin
+ mv bin/test_* $test/bin
+ '' + lib.optionalString buildExamples ''
+ mkdir -p $example/bin
+ mv bin/example_* $example/bin
+ '';
+
+ meta = with lib; {
+ description = "Performance portable programming model for machine learning tensor operators";
+ homepage = "https://github.com/ROCmSoftwarePlatform/composable_kernel";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ Madouura ];
+ };
+}
diff --git a/pkgs/development/libraries/hipcub/default.nix b/pkgs/development/libraries/hipcub/default.nix
new file mode 100644
index 000000000000..facb890a3eb7
--- /dev/null
+++ b/pkgs/development/libraries/hipcub/default.nix
@@ -0,0 +1,89 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, rocm-cmake
+, rocm-runtime
+, rocm-device-libs
+, rocm-comgr
+, rocprim
+, hip
+, gtest ? null
+, gbenchmark ? null
+, buildTests ? false
+, buildBenchmarks ? false
+}:
+
+assert buildTests -> gtest != null;
+assert buildBenchmarks -> gbenchmark != null;
+
+# CUB can also be used as a backend instead of rocPRIM.
+stdenv.mkDerivation rec {
+ pname = "hipcub";
+ rocmVersion = "5.3.1";
+ version = "2.12.0-${rocmVersion}";
+
+ outputs = [
+ "out"
+ ] ++ lib.optionals buildTests [
+ "test"
+ ] ++ lib.optionals buildBenchmarks [
+ "benchmark"
+ ];
+
+ src = fetchFromGitHub {
+ owner = "ROCmSoftwarePlatform";
+ repo = "hipCUB";
+ rev = "rocm-${rocmVersion}";
+ hash = "sha256-/GMZKbMD1sZQCM2FulM9jiJQ8ByYZinn0C8d/deFh0g=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ rocm-cmake
+ hip
+ ];
+
+ buildInputs = [
+ rocm-runtime
+ rocm-device-libs
+ rocm-comgr
+ rocprim
+ ] ++ lib.optionals buildTests [
+ gtest
+ ] ++ lib.optionals buildBenchmarks [
+ gbenchmark
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_CXX_COMPILER=hipcc"
+ "-DHIP_ROOT_DIR=${hip}"
+ # Manually define CMAKE_INSTALL_
+ # See: https://github.com/NixOS/nixpkgs/pull/197838
+ "-DCMAKE_INSTALL_BINDIR=bin"
+ "-DCMAKE_INSTALL_LIBDIR=lib"
+ "-DCMAKE_INSTALL_INCLUDEDIR=include"
+ ] ++ lib.optionals buildTests [
+ "-DBUILD_TEST=ON"
+ ] ++ lib.optionals buildBenchmarks [
+ "-DBUILD_BENCHMARK=ON"
+ ];
+
+ postInstall = lib.optionalString buildTests ''
+ mkdir -p $test/bin
+ mv $out/bin/test_* $test/bin
+ '' + lib.optionalString buildBenchmarks ''
+ mkdir -p $benchmark/bin
+ mv $out/bin/benchmark_* $benchmark/bin
+ '' + lib.optionalString (buildTests || buildBenchmarks) ''
+ rmdir $out/bin
+ '';
+
+ meta = with lib; {
+ description = "Thin wrapper library on top of rocPRIM or CUB";
+ homepage = "https://github.com/ROCmSoftwarePlatform/hipCUB";
+ license = with licenses; [ bsd3 ];
+ maintainers = with maintainers; [ Madouura ];
+ broken = rocmVersion != hip.version;
+ };
+}
diff --git a/pkgs/development/libraries/hipsparse/default.nix b/pkgs/development/libraries/hipsparse/default.nix
new file mode 100644
index 000000000000..cf3fab40cef8
--- /dev/null
+++ b/pkgs/development/libraries/hipsparse/default.nix
@@ -0,0 +1,132 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, rocm-cmake
+, rocm-runtime
+, rocm-device-libs
+, rocm-comgr
+, rocsparse
+, hip
+, gfortran
+, git
+, fetchzip ? null
+, gtest ? null
+, buildTests ? false
+}:
+
+assert buildTests -> fetchzip != null;
+assert buildTests -> gtest != null;
+
+# This can also use cuSPARSE as a backend instead of rocSPARSE
+let
+ matrices = lib.optionalAttrs buildTests import ./deps.nix {
+ inherit fetchzip;
+ mirror1 = "https://sparse.tamu.edu/MM";
+ mirror2 = "https://www.cise.ufl.edu/research/sparse/MM";
+ };
+in stdenv.mkDerivation rec {
+ pname = "hipsparse";
+ rocmVersion = "5.3.1";
+ version = "2.3.1-${rocmVersion}";
+
+ outputs = [
+ "out"
+ ] ++ lib.optionals buildTests [
+ "test"
+ ];
+
+ src = fetchFromGitHub {
+ owner = "ROCmSoftwarePlatform";
+ repo = "hipSPARSE";
+ rev = "rocm-${rocmVersion}";
+ hash = "sha256-Phcihat774ZSAe1QetE/GSZzGlnCnvS9GwsHBHCaD4c=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ rocm-cmake
+ hip
+ gfortran
+ ];
+
+ buildInputs = [
+ rocm-runtime
+ rocm-device-libs
+ rocm-comgr
+ rocsparse
+ git
+ ] ++ lib.optionals buildTests [
+ gtest
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_CXX_COMPILER=hipcc"
+ # Manually define CMAKE_INSTALL_
+ # See: https://github.com/NixOS/nixpkgs/pull/197838
+ "-DCMAKE_INSTALL_BINDIR=bin"
+ "-DCMAKE_INSTALL_LIBDIR=lib"
+ "-DCMAKE_INSTALL_INCLUDEDIR=include"
+ ] ++ lib.optionals buildTests [
+ "-DBUILD_CLIENTS_TESTS=ON"
+ ];
+
+ # We have to manually generate the matrices
+ # CMAKE_MATRICES_DIR seems to be reset in clients/tests/CMakeLists.txt
+ postPatch = ''
+ substituteInPlace clients/common/utility.cpp \
+ --replace "#ifdef __cpp_lib_filesystem" " #if true"
+ '' + lib.optionalString buildTests ''
+ mkdir -p matrices
+
+ ln -s ${matrices.matrix-01}/*.mtx matrices
+ ln -s ${matrices.matrix-02}/*.mtx matrices
+ ln -s ${matrices.matrix-03}/*.mtx matrices
+ ln -s ${matrices.matrix-04}/*.mtx matrices
+ ln -s ${matrices.matrix-05}/*.mtx matrices
+ ln -s ${matrices.matrix-06}/*.mtx matrices
+ ln -s ${matrices.matrix-07}/*.mtx matrices
+ ln -s ${matrices.matrix-08}/*.mtx matrices
+ ln -s ${matrices.matrix-09}/*.mtx matrices
+ ln -s ${matrices.matrix-10}/*.mtx matrices
+ ln -s ${matrices.matrix-11}/*.mtx matrices
+ ln -s ${matrices.matrix-12}/*.mtx matrices
+ ln -s ${matrices.matrix-13}/*.mtx matrices
+ ln -s ${matrices.matrix-14}/*.mtx matrices
+ ln -s ${matrices.matrix-15}/*.mtx matrices
+ ln -s ${matrices.matrix-16}/*.mtx matrices
+ ln -s ${matrices.matrix-17}/*.mtx matrices
+ ln -s ${matrices.matrix-18}/*.mtx matrices
+ ln -s ${matrices.matrix-19}/*.mtx matrices
+
+ # Not used by the original cmake, causes an error
+ rm matrices/*_b.mtx
+
+ echo "deps/convert.cpp -> deps/mtx2csr"
+ hipcc deps/convert.cpp -O3 -o deps/mtx2csr
+
+ for mat in $(ls -1 matrices | cut -d "." -f 1); do
+ echo "mtx2csr: $mat.mtx -> $mat.bin"
+ deps/mtx2csr matrices/$mat.mtx matrices/$mat.bin
+ unlink matrices/$mat.mtx
+ done
+
+ substituteInPlace clients/tests/CMakeLists.txt \
+ --replace "\''${PROJECT_BINARY_DIR}/matrices" "/build/source/matrices"
+ '';
+
+ postInstall = lib.optionalString buildTests ''
+ mkdir -p $test/bin
+ mv $out/bin/hipsparse-test $test/bin
+ mv /build/source/matrices $test
+ rmdir $out/bin
+ '';
+
+ meta = with lib; {
+ description = "ROCm SPARSE marshalling library";
+ homepage = "https://github.com/ROCmSoftwarePlatform/hipSPARSE";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ Madouura ];
+ broken = rocmVersion != hip.version;
+ };
+}
diff --git a/pkgs/development/libraries/hipsparse/deps.nix b/pkgs/development/libraries/hipsparse/deps.nix
new file mode 100644
index 000000000000..d70df67e2b78
--- /dev/null
+++ b/pkgs/development/libraries/hipsparse/deps.nix
@@ -0,0 +1,177 @@
+{ fetchzip
+, mirror1
+, mirror2
+}:
+
+{
+ matrix-01 = fetchzip {
+ sha256 = "sha256-AHur5ZIDZTFRrO2GV0ieXrffq4KUiGWiZ59pv0fUtEQ=";
+
+ urls = [
+ "${mirror1}/SNAP/amazon0312.tar.gz"
+ "${mirror2}/SNAP/amazon0312.tar.gz"
+ ];
+ };
+
+ matrix-02 = fetchzip {
+ sha256 = "sha256-0rSxaN4lQcdaCLsvlgicG70FXUxXeERPiEmQ4MzbRdE=";
+
+ urls = [
+ "${mirror1}/Muite/Chebyshev4.tar.gz"
+ "${mirror2}/Muite/Chebyshev4.tar.gz"
+ ];
+ };
+
+ matrix-03 = fetchzip {
+ sha256 = "sha256-hDzDWDUnHEyFedX/tMNq83ZH8uWyM4xtZYUUAD3rizo=";
+
+ urls = [
+ "${mirror1}/FEMLAB/sme3Dc.tar.gz"
+ "${mirror2}/FEMLAB/sme3Dc.tar.gz"
+ ];
+ };
+
+ matrix-04 = fetchzip {
+ sha256 = "sha256-GmN2yOt/MoX01rKe05aTyB3ypUP4YbQGOITZ0BqPmC0=";
+
+ urls = [
+ "${mirror1}/Williams/webbase-1M.tar.gz"
+ "${mirror2}/Williams/webbase-1M.tar.gz"
+ ];
+ };
+
+ matrix-05 = fetchzip {
+ sha256 = "sha256-gQNjfVyWzNM9RwImJGhkhahRmZz74LzDs1oijL7mI7k=";
+
+ urls = [
+ "${mirror1}/Williams/mac_econ_fwd500.tar.gz"
+ "${mirror2}/Williams/mac_econ_fwd500.tar.gz"
+ ];
+ };
+
+ matrix-06 = fetchzip {
+ sha256 = "sha256-87cdZjntNcTuz5BtO59irhcuRbPllWSbhCEX3Td02qc=";
+
+ urls = [
+ "${mirror1}/Williams/mc2depi.tar.gz"
+ "${mirror2}/Williams/mc2depi.tar.gz"
+ ];
+ };
+
+ matrix-07 = fetchzip {
+ sha256 = "sha256-WRamuJX3D8Tm+k0q67RjUDG3DeNAxhKiaPkk5afY5eU=";
+
+ urls = [
+ "${mirror1}/Bova/rma10.tar.gz"
+ "${mirror2}/Bova/rma10.tar.gz"
+ ];
+ };
+
+ matrix-08 = fetchzip {
+ sha256 = "sha256-5dhkm293Mc3lzakKxHy5W5XIn4Rw+gihVh7gyrjEHXo=";
+
+ urls = [
+ "${mirror1}/JGD_BIBD/bibd_22_8.tar.gz"
+ "${mirror2}/JGD_BIBD/bibd_22_8.tar.gz"
+ ];
+ };
+
+ matrix-09 = fetchzip {
+ sha256 = "sha256-czjLWCjXAjZCk5TGYHaEkwSAzQu3TQ3QyB6eNKR4G88=";
+
+ urls = [
+ "${mirror1}/Hamm/scircuit.tar.gz"
+ "${mirror2}/Hamm/scircuit.tar.gz"
+ ];
+ };
+
+ matrix-10 = fetchzip {
+ sha256 = "sha256-bYuLnJViAIcIejAkh69/bsNAVIDU4wfTLtD+nmHd6FM=";
+
+ urls = [
+ "${mirror1}/Sandia/ASIC_320k.tar.gz"
+ "${mirror2}/Sandia/ASIC_320k.tar.gz"
+ ];
+ };
+
+ matrix-11 = fetchzip {
+ sha256 = "sha256-aDwn8P1khYjo2Agbq5m9ZBInJUxf/knJNvyptt0fak0=";
+
+ urls = [
+ "${mirror1}/GHS_psdef/bmwcra_1.tar.gz"
+ "${mirror2}/GHS_psdef/bmwcra_1.tar.gz"
+ ];
+ };
+
+ matrix-12 = fetchzip {
+ sha256 = "sha256-8OJqA/byhlAZd869TPUzZFdsOiwOoRGfKyhM+RMjXoY=";
+
+ urls = [
+ "${mirror1}/HB/nos1.tar.gz"
+ "${mirror2}/HB/nos1.tar.gz"
+ ];
+ };
+
+ matrix-13 = fetchzip {
+ sha256 = "sha256-FS0rKqmg+uHwsM/yGfQLBdd7LH/rUrdutkNGBD/Mh1I=";
+
+ urls = [
+ "${mirror1}/HB/nos2.tar.gz"
+ "${mirror2}/HB/nos2.tar.gz"
+ ];
+ };
+
+ matrix-14 = fetchzip {
+ sha256 = "sha256-DANnlrNJikrI7Pst9vRedtbuxepyHmCIu2yhltc4Qcs=";
+
+ urls = [
+ "${mirror1}/HB/nos3.tar.gz"
+ "${mirror2}/HB/nos3.tar.gz"
+ ];
+ };
+
+ matrix-15 = fetchzip {
+ sha256 = "sha256-21mUgqjWGUfYgiWwSrKh9vH8Vdt3xzcefmqYNYRpxiY=";
+
+ urls = [
+ "${mirror1}/HB/nos4.tar.gz"
+ "${mirror2}/HB/nos4.tar.gz"
+ ];
+ };
+
+ matrix-16 = fetchzip {
+ sha256 = "sha256-FOuXvGqBBFNkVS6cexmkluret54hCfCOdK+DOZllE4c=";
+
+ urls = [
+ "${mirror1}/HB/nos5.tar.gz"
+ "${mirror2}/HB/nos5.tar.gz"
+ ];
+ };
+
+ matrix-17 = fetchzip {
+ sha256 = "sha256-+7NI1rA/qQxYPpjXKHvAaCZ+LSaAJ4xuJvMRMBEUYxg=";
+
+ urls = [
+ "${mirror1}/HB/nos6.tar.gz"
+ "${mirror2}/HB/nos6.tar.gz"
+ ];
+ };
+
+ matrix-18 = fetchzip {
+ sha256 = "sha256-q3NxJjbwGGcFiQ9nhWfUKgZmdVwCfPmgQoqy0AqOsNc=";
+
+ urls = [
+ "${mirror1}/HB/nos7.tar.gz"
+ "${mirror2}/HB/nos7.tar.gz"
+ ];
+ };
+
+ matrix-19 = fetchzip {
+ sha256 = "sha256-0GAN6qmVfD+tprIigzuUUUwm5KVhkN9X65wMEvFltDY=";
+
+ urls = [
+ "${mirror1}/DNVS/shipsec1.tar.gz"
+ "${mirror2}/DNVS/shipsec1.tar.gz"
+ ];
+ };
+}
diff --git a/pkgs/development/libraries/miopengemm/default.nix b/pkgs/development/libraries/miopengemm/default.nix
new file mode 100644
index 000000000000..9330530389e9
--- /dev/null
+++ b/pkgs/development/libraries/miopengemm/default.nix
@@ -0,0 +1,129 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, rocm-cmake
+, rocm-opencl-runtime
+, clang
+, texlive ? null
+, doxygen ? null
+, sphinx ? null
+, python3Packages ? null
+, openblas ? null
+, buildDocs ? false
+, buildTests ? false
+, buildBenchmarks ? false
+}:
+
+assert buildDocs -> texlive != null;
+assert buildDocs -> doxygen != null;
+assert buildDocs -> sphinx != null;
+assert buildDocs -> python3Packages != null;
+assert buildTests -> openblas != null;
+
+let
+ latex = lib.optionalAttrs buildDocs (texlive.combine {
+ inherit (texlive) scheme-small
+ latexmk
+ tex-gyre
+ fncychap
+ wrapfig
+ capt-of
+ framed
+ needspace
+ tabulary
+ varwidth
+ titlesec;
+ });
+in stdenv.mkDerivation rec {
+ pname = "miopengemm";
+ rocmVersion = "5.3.1";
+ version = rocmVersion;
+
+ outputs = [
+ "out"
+ ] ++ lib.optionals buildDocs [
+ "docs"
+ ] ++ lib.optionals buildTests [
+ "test"
+ ] ++ lib.optionals buildBenchmarks [
+ "benchmark"
+ ];
+
+ src = fetchFromGitHub {
+ owner = "ROCmSoftwarePlatform";
+ repo = "MIOpenGEMM";
+ rev = "rocm-${rocmVersion}";
+ hash = "sha256-AiRzOMYRA/0nbQomyq4oOEwNZdkPYWRA2W6QFlctvFc=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ rocm-cmake
+ clang
+ ];
+
+ buildInputs = [
+ rocm-opencl-runtime
+ ] ++ lib.optionals buildDocs [
+ latex
+ doxygen
+ sphinx
+ python3Packages.sphinx_rtd_theme
+ python3Packages.breathe
+ ] ++ lib.optionals buildTests [
+ openblas
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_C_COMPILER=clang"
+ "-DCMAKE_CXX_COMPILER=clang++"
+ # Manually define CMAKE_INSTALL_
+ # See: https://github.com/NixOS/nixpkgs/pull/197838
+ "-DCMAKE_INSTALL_BINDIR=bin"
+ "-DCMAKE_INSTALL_LIBDIR=lib"
+ "-DCMAKE_INSTALL_INCLUDEDIR=include"
+ ] ++ lib.optionals buildTests [
+ "-DOPENBLAS=ON"
+ ] ++ lib.optionals buildBenchmarks [
+ "-DAPI_BENCH_MIOGEMM=ON"
+ # Needs https://github.com/CNugteren/CLBlast
+ # "-DAPI_BENCH_CLBLAST=ON"
+ # Needs https://github.com/openai/triton
+ # "-DAPI_BENCH_ISAAC=ON"
+ ];
+
+ # Unfortunately, it seems like we have to call make on these manually
+ postBuild = lib.optionalString buildDocs ''
+ export HOME=$(mktemp -d)
+ make doc
+ '' + lib.optionalString buildTests ''
+ make check
+ '' + lib.optionalString buildBenchmarks ''
+ make examples
+ '';
+
+ postInstall = lib.optionalString buildTests ''
+ mkdir -p $test/bin
+ find tests -executable -type f -exec mv {} $test/bin \;
+ patchelf --set-rpath ${lib.makeLibraryPath buildInputs}:$out/lib $test/bin/*
+ '' + lib.optionalString buildBenchmarks ''
+ mkdir -p $benchmark/bin
+ find examples -executable -type f -exec mv {} $benchmark/bin \;
+ patchelf --set-rpath ${lib.makeLibraryPath buildInputs}:$out/lib $benchmark/bin/*
+ '';
+
+ postFixup = lib.optionalString buildDocs ''
+ mkdir -p $docs/share/doc/miopengemm
+ mv ../doc/html $docs/share/doc/miopengemm
+ mv ../doc/pdf/miopengemm.pdf $docs/share/doc/miopengemm
+ '';
+
+ meta = with lib; {
+ description = "OpenCL general matrix multiplication API for ROCm";
+ homepage = "https://github.com/ROCmSoftwarePlatform/MIOpenGEMM";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ Madouura ];
+ broken = rocmVersion != clang.version;
+ };
+}
diff --git a/pkgs/development/libraries/rccl/default.nix b/pkgs/development/libraries/rccl/default.nix
new file mode 100644
index 000000000000..440705b2c017
--- /dev/null
+++ b/pkgs/development/libraries/rccl/default.nix
@@ -0,0 +1,84 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, rocm-cmake
+, rocm-runtime
+, rocm-device-libs
+, rocm-comgr
+, rocm-smi
+, hip
+, gtest
+, chrpath ? null
+, buildTests ? false
+}:
+
+assert buildTests -> chrpath != null;
+
+stdenv.mkDerivation rec {
+ pname = "rccl";
+ rocmVersion = "5.3.1";
+ version = "2.12.10-${rocmVersion}";
+
+ outputs = [
+ "out"
+ ] ++ lib.optionals buildTests [
+ "test"
+ ];
+
+ src = fetchFromGitHub {
+ owner = "ROCmSoftwarePlatform";
+ repo = "rccl";
+ rev = "rocm-${rocmVersion}";
+ hash = "sha256-whRXGD8oINDYhFs8+hEWKWoGNqacGlyy7xi8peA8Qsk=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ rocm-cmake
+ hip
+ ];
+
+ buildInputs = [
+ rocm-runtime
+ rocm-device-libs
+ rocm-comgr
+ rocm-smi
+ gtest
+ ] ++ lib.optionals buildTests [
+ chrpath
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_C_COMPILER=hipcc"
+ "-DCMAKE_CXX_COMPILER=hipcc"
+ # Manually define CMAKE_INSTALL_
+ # See: https://github.com/NixOS/nixpkgs/pull/197838
+ "-DCMAKE_INSTALL_BINDIR=bin"
+ "-DCMAKE_INSTALL_LIBDIR=lib"
+ "-DCMAKE_INSTALL_INCLUDEDIR=include"
+ ] ++ lib.optionals buildTests [
+ "-DBUILD_TESTS=ON"
+ ];
+
+ # Replace the manually set parallel jobs to NIX_BUILD_CORES
+ postPatch = ''
+ substituteInPlace CMakeLists.txt \
+ --replace "8 P" "$NIX_BUILD_CORES P" \
+ --replace "8)" "$NIX_BUILD_CORES)"
+ '';
+
+ postInstall = lib.optionalString buildTests ''
+ mkdir -p $test/bin
+ mv $out/bin/* $test/bin
+ rmdir $out/bin
+ '';
+
+ meta = with lib; {
+ description = "ROCm communication collectives library";
+ homepage = "https://github.com/ROCmSoftwarePlatform/rccl";
+ license = with licenses; [ bsd2 bsd3 ];
+ maintainers = with maintainers; [ Madouura ];
+ broken = rocmVersion != hip.version;
+ };
+}
diff --git a/pkgs/development/libraries/rocblas/default.nix b/pkgs/development/libraries/rocblas/default.nix
new file mode 100644
index 000000000000..fd9b895c076c
--- /dev/null
+++ b/pkgs/development/libraries/rocblas/default.nix
@@ -0,0 +1,136 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, fetchpatch
+, cmake
+, rocm-cmake
+, rocm-runtime
+, rocm-device-libs
+, rocm-comgr
+, hip
+, python3
+, tensile ? null
+, msgpack ? null
+, libxml2 ? null
+, llvm ? null
+, python3Packages ? null
+, gtest ? null
+, gfortran ? null
+, buildTensile ? true
+, buildTests ? false
+, buildBenchmarks ? false
+, tensileLogic ? "asm_full"
+, tensileCOVersion ? "V3"
+, tensileSepArch ? true
+, tensileLazyLib ? true
+, tensileLibFormat ? "msgpack"
+, gpuTargets ? [ "all" ]
+}:
+
+assert buildTensile -> tensile != null;
+assert buildTensile -> msgpack != null;
+assert buildTensile -> libxml2 != null;
+assert buildTensile -> llvm != null;
+assert buildTensile -> python3Packages != null;
+assert buildTests -> gtest != null;
+assert buildTests -> gfortran != null;
+
+# Tests and benchmarks are a can of worms that I will tackle in a different PR
+# It involves completely rewriting the amd-blis derivation
+assert buildTests == false;
+assert buildBenchmarks == false;
+
+stdenv.mkDerivation rec {
+ pname = "rocblas";
+ rocmVersion = "5.3.1";
+ version = "2.45.0-${rocmVersion}";
+
+ src = fetchFromGitHub {
+ owner = "ROCmSoftwarePlatform";
+ repo = "rocBLAS";
+ rev = "rocm-${rocmVersion}";
+ hash = "sha256-GeeICEI1dNE6D+nUUlBtUncLkPowAa5n+bsy160EtaU=";
+ };
+
+ # We currently need this patch due to faulty toolchain includes
+ # See: https://github.com/ROCmSoftwarePlatform/rocBLAS/issues/1277
+ patches = [
+ (fetchpatch {
+ name = "only-std_norm-from-rocblas_complex.patch";
+ url = "https://github.com/ROCmSoftwarePlatform/rocBLAS/commit/44b99c6df26002139ca9ec68ee1fc8899c7b001f.patch";
+ hash = "sha256-vSZkVYY951fqfOThKFqnYBasWMblS6peEJZ6sFMCk9k=";
+ })
+ ];
+
+ nativeBuildInputs = [
+ cmake
+ rocm-cmake
+ hip
+ ];
+
+ buildInputs = [
+ rocm-runtime
+ rocm-device-libs
+ rocm-comgr
+ python3
+ ] ++ lib.optionals buildTensile [
+ msgpack
+ libxml2
+ llvm
+ python3Packages.pyyaml
+ python3Packages.msgpack
+ ] ++ lib.optionals buildTests [
+ gtest
+ gfortran
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_C_COMPILER=hipcc"
+ "-DCMAKE_CXX_COMPILER=hipcc"
+ "-Dpython=python3"
+ "-DAMDGPU_TARGETS=${lib.strings.concatStringsSep ";" gpuTargets}"
+ "-DBUILD_WITH_TENSILE=${if buildTensile then "ON" else "OFF"}"
+ # Manually define CMAKE_INSTALL_
+ # See: https://github.com/NixOS/nixpkgs/pull/197838
+ "-DCMAKE_INSTALL_BINDIR=bin"
+ "-DCMAKE_INSTALL_LIBDIR=lib"
+ "-DCMAKE_INSTALL_INCLUDEDIR=include"
+ ] ++ lib.optionals buildTensile [
+ "-DVIRTUALENV_HOME_DIR=/build/source/tensile"
+ "-DTensile_TEST_LOCAL_PATH=/build/source/tensile"
+ "-DTensile_ROOT=/build/source/tensile/lib/python${python3.pythonVersion}/site-packages/Tensile"
+ "-DTensile_LOGIC=${tensileLogic}"
+ "-DTensile_CODE_OBJECT_VERSION=${tensileCOVersion}"
+ "-DTensile_SEPARATE_ARCHITECTURES=${if tensileSepArch then "ON" else "OFF"}"
+ "-DTensile_LAZY_LIBRARY_LOADING=${if tensileLazyLib then "ON" else "OFF"}"
+ "-DTensile_LIBRARY_FORMAT=${tensileLibFormat}"
+ ] ++ lib.optionals buildTests [
+ "-DBUILD_CLIENTS_TESTS=ON"
+ ] ++ lib.optionals buildBenchmarks [
+ "-DBUILD_CLIENTS_BENCHMARKS=ON"
+ ];
+
+ # Tensile REALLY wants to write to the nix directory if we include it normally
+ # We need to manually fixup the path so tensile will generate .co and .dat files
+ postPatch = lib.optionalString buildTensile ''
+ export PATH=${llvm}/bin:$PATH
+ cp -a ${tensile} tensile
+ chmod +w -R tensile
+
+ # Rewrap Tensile
+ substituteInPlace tensile/bin/{.t*,.T*,*} \
+ --replace "${tensile}" "/build/source/tensile"
+
+ substituteInPlace CMakeLists.txt \
+ --replace "include(virtualenv)" "" \
+ --replace "virtualenv_install(\''${Tensile_TEST_LOCAL_PATH})" ""
+ '';
+
+ meta = with lib; {
+ description = "BLAS implementation for ROCm platform";
+ homepage = "https://github.com/ROCmSoftwarePlatform/rocBLAS";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ Madouura ];
+ broken = rocmVersion != hip.version;
+ };
+}
diff --git a/pkgs/development/libraries/rocclr/default.nix b/pkgs/development/libraries/rocclr/default.nix
index a9e254d9d349..325e7a9105fe 100644
--- a/pkgs/development/libraries/rocclr/default.nix
+++ b/pkgs/development/libraries/rocclr/default.nix
@@ -7,13 +7,13 @@
stdenv.mkDerivation rec {
pname = "rocclr";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchFromGitHub {
owner = "ROCm-Developer-Tools";
repo = "ROCclr";
rev = "rocm-${version}";
- hash = "sha256-l14+l8FkiFmGuRZ9dyD/PEYH9nHVRRg1vMXMnVhg3K4=";
+ hash = "sha256-dmL9krI/gHGQdOZ53+bQ7WjKcmJ+fZZP0lzF8ITLT4E=";
};
patches = [
diff --git a/pkgs/development/libraries/rocfft/default.nix b/pkgs/development/libraries/rocfft/default.nix
new file mode 100644
index 000000000000..9dbc5a66fb18
--- /dev/null
+++ b/pkgs/development/libraries/rocfft/default.nix
@@ -0,0 +1,114 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, rocm-cmake
+, rocm-runtime
+, rocm-device-libs
+, rocm-comgr
+, hip
+, sqlite
+, python3
+, gtest ? null
+, boost ? null
+, fftw ? null
+, fftwFloat ? null
+, llvmPackages ? null
+, buildTests ? false
+, buildBenchmarks ? false
+}:
+
+assert buildTests -> gtest != null;
+assert buildBenchmarks -> fftw != null;
+assert buildBenchmarks -> fftwFloat != null;
+assert (buildTests || buildBenchmarks) -> boost != null;
+assert (buildTests || buildBenchmarks) -> llvmPackages != null;
+
+stdenv.mkDerivation rec {
+ pname = "rocfft";
+ rocmVersion = "5.3.1";
+ version = "1.0.18-${rocmVersion}";
+
+ outputs = [
+ "out"
+ ] ++ lib.optionals buildTests [
+ "test"
+ ] ++ lib.optionals buildBenchmarks [
+ "benchmark"
+ ];
+
+ src = fetchFromGitHub {
+ owner = "ROCmSoftwarePlatform";
+ repo = "rocFFT";
+ rev = "rocm-${rocmVersion}";
+ hash = "sha256-jb2F1fRe+YLloYJ/KtzrptUDhmdBDBtddeW/g55owKM=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ rocm-cmake
+ hip
+ ];
+
+ buildInputs = [
+ rocm-runtime
+ rocm-device-libs
+ rocm-comgr
+ sqlite
+ python3
+ ] ++ lib.optionals buildTests [
+ gtest
+ ] ++ lib.optionals (buildTests || buildBenchmarks) [
+ boost
+ fftw
+ fftwFloat
+ llvmPackages.openmp
+ ];
+
+ propogatedBuildInputs = lib.optionals buildTests [
+ fftw
+ fftwFloat
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_C_COMPILER=hipcc"
+ "-DCMAKE_CXX_COMPILER=hipcc"
+ "-DUSE_HIP_CLANG=ON"
+ "-DSQLITE_USE_SYSTEM_PACKAGE=ON"
+ # Manually define CMAKE_INSTALL_
+ # See: https://github.com/NixOS/nixpkgs/pull/197838
+ "-DCMAKE_INSTALL_BINDIR=bin"
+ "-DCMAKE_INSTALL_LIBDIR=lib"
+ "-DCMAKE_INSTALL_INCLUDEDIR=include"
+ ] ++ lib.optionals buildTests [
+ "-DBUILD_CLIENTS_TESTS=ON"
+ ] ++ lib.optionals buildBenchmarks [
+ "-DBUILD_CLIENTS_RIDER=ON"
+ "-DBUILD_CLIENTS_SAMPLES=ON"
+ ];
+
+ postInstall = lib.optionalString buildTests ''
+ mkdir -p $test/{bin,lib/fftw}
+ cp -a $out/bin/* $test/bin
+ ln -s ${fftw}/lib/libfftw*.so $test/lib/fftw
+ ln -s ${fftwFloat}/lib/libfftw*.so $test/lib/fftw
+ rm -r $out/lib/fftw
+ rm $test/bin/{rocfft_rtc_helper,*-rider} || true
+ '' + lib.optionalString buildBenchmarks ''
+ mkdir -p $benchmark/bin
+ cp -a $out/bin/* $benchmark/bin
+ rm $benchmark/bin/{rocfft_rtc_helper,*-test} || true
+ '' + lib.optionalString (buildTests || buildBenchmarks ) ''
+ mv $out/bin/rocfft_rtc_helper $out
+ rm -r $out/bin/*
+ mv $out/rocfft_rtc_helper $out/bin
+ '';
+
+ meta = with lib; {
+ description = "FFT implementation for ROCm ";
+ homepage = "https://github.com/ROCmSoftwarePlatform/rocFFT";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ Madouura ];
+ broken = rocmVersion != hip.version;
+ };
+}
diff --git a/pkgs/development/libraries/rocm-comgr/default.nix b/pkgs/development/libraries/rocm-comgr/default.nix
index e7f07380758b..032584fa2599 100644
--- a/pkgs/development/libraries/rocm-comgr/default.nix
+++ b/pkgs/development/libraries/rocm-comgr/default.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "rocm-comgr";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
diff --git a/pkgs/development/libraries/rocm-device-libs/default.nix b/pkgs/development/libraries/rocm-device-libs/default.nix
index c94e1f2753e0..d9ada30e155d 100644
--- a/pkgs/development/libraries/rocm-device-libs/default.nix
+++ b/pkgs/development/libraries/rocm-device-libs/default.nix
@@ -8,7 +8,7 @@
stdenv.mkDerivation rec {
pname = "rocm-device-libs";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
diff --git a/pkgs/development/libraries/rocm-opencl-runtime/default.nix b/pkgs/development/libraries/rocm-opencl-runtime/default.nix
index fc5f8fba5250..cfbcab461d18 100644
--- a/pkgs/development/libraries/rocm-opencl-runtime/default.nix
+++ b/pkgs/development/libraries/rocm-opencl-runtime/default.nix
@@ -22,7 +22,7 @@
stdenv.mkDerivation rec {
pname = "rocm-opencl-runtime";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
diff --git a/pkgs/development/libraries/rocm-runtime/default.nix b/pkgs/development/libraries/rocm-runtime/default.nix
index 563632b9d7f5..cc08149ce287 100644
--- a/pkgs/development/libraries/rocm-runtime/default.nix
+++ b/pkgs/development/libraries/rocm-runtime/default.nix
@@ -15,7 +15,7 @@
stdenv.mkDerivation rec {
pname = "rocm-runtime";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
diff --git a/pkgs/development/libraries/rocm-thunk/default.nix b/pkgs/development/libraries/rocm-thunk/default.nix
index d7add50386e7..5a7167e61671 100644
--- a/pkgs/development/libraries/rocm-thunk/default.nix
+++ b/pkgs/development/libraries/rocm-thunk/default.nix
@@ -9,7 +9,7 @@
stdenv.mkDerivation rec {
pname = "rocm-thunk";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
diff --git a/pkgs/development/libraries/rocprim/default.nix b/pkgs/development/libraries/rocprim/default.nix
new file mode 100644
index 000000000000..97b8daf8a7b1
--- /dev/null
+++ b/pkgs/development/libraries/rocprim/default.nix
@@ -0,0 +1,85 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, rocm-cmake
+, rocm-runtime
+, rocm-device-libs
+, rocm-comgr
+, hip
+, gtest ? null
+, gbenchmark ? null
+, buildTests ? false
+, buildBenchmarks ? false
+}:
+
+assert buildTests -> gtest != null;
+assert buildBenchmarks -> gbenchmark != null;
+
+stdenv.mkDerivation rec {
+ pname = "rocprim";
+ rocmVersion = "5.3.1";
+ version = "2.11.0-${rocmVersion}";
+
+ outputs = [
+ "out"
+ ] ++ lib.optionals buildTests [
+ "test"
+ ] ++ lib.optionals buildBenchmarks [
+ "benchmark"
+ ];
+
+ src = fetchFromGitHub {
+ owner = "ROCmSoftwarePlatform";
+ repo = "rocPRIM";
+ rev = "rocm-${rocmVersion}";
+ hash = "sha256-aapvj9bwwlg7VJfnH1PVR8DulMcJh1xR6B4rPPGU6Q4=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ rocm-cmake
+ hip
+ ];
+
+ buildInputs = [
+ rocm-runtime
+ rocm-device-libs
+ rocm-comgr
+ ] ++ lib.optionals buildTests [
+ gtest
+ ] ++ lib.optionals buildBenchmarks [
+ gbenchmark
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_CXX_COMPILER=hipcc"
+ # Manually define CMAKE_INSTALL_
+ # See: https://github.com/NixOS/nixpkgs/pull/197838
+ "-DCMAKE_INSTALL_BINDIR=bin"
+ "-DCMAKE_INSTALL_LIBDIR=lib"
+ "-DCMAKE_INSTALL_INCLUDEDIR=include"
+ ] ++ lib.optionals buildTests [
+ "-DBUILD_TEST=ON"
+ ] ++ lib.optionals buildBenchmarks [
+ "-DBUILD_BENCHMARK=ON"
+ ];
+
+ postInstall = lib.optionalString buildTests ''
+ mkdir -p $test/bin
+ mv $out/bin/test_* $test/bin
+ '' + lib.optionalString buildBenchmarks ''
+ mkdir -p $benchmark/bin
+ mv $out/bin/benchmark_* $benchmark/bin
+ '' + lib.optionalString (buildTests || buildBenchmarks) ''
+ rmdir $out/bin
+ '';
+
+ meta = with lib; {
+ description = "ROCm parallel primitives";
+ homepage = "https://github.com/ROCmSoftwarePlatform/rocPRIM";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ Madouura ];
+ broken = rocmVersion != hip.version;
+ };
+}
diff --git a/pkgs/development/libraries/rocsparse/default.nix b/pkgs/development/libraries/rocsparse/default.nix
new file mode 100644
index 000000000000..f6321d4e08a3
--- /dev/null
+++ b/pkgs/development/libraries/rocsparse/default.nix
@@ -0,0 +1,148 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, rocm-cmake
+, rocm-runtime
+, rocm-device-libs
+, rocm-comgr
+, rocprim
+, hip
+, gfortran
+, git
+, fetchzip ? null
+, gtest ? null
+, boost ? null
+, python3Packages ? null
+, buildTests ? false
+, buildBenchmarks ? false # Seems to depend on tests
+}:
+
+assert (buildTests || buildBenchmarks) -> fetchzip != null;
+assert (buildTests || buildBenchmarks) -> gtest != null;
+assert (buildTests || buildBenchmarks) -> boost != null;
+assert (buildTests || buildBenchmarks) -> python3Packages != null;
+
+let
+ matrices = lib.optionalAttrs (buildTests || buildBenchmarks) import ./deps.nix {
+ inherit fetchzip;
+ mirror1 = "https://sparse.tamu.edu/MM";
+ mirror2 = "https://www.cise.ufl.edu/research/sparse/MM";
+ };
+in stdenv.mkDerivation rec {
+ pname = "rocsparse";
+ rocmVersion = "5.3.1";
+ version = "2.3.2-${rocmVersion}";
+
+ outputs = [
+ "out"
+ ] ++ lib.optionals (buildTests || buildBenchmarks) [
+ "test"
+ ] ++ lib.optionals buildBenchmarks [
+ "benchmark"
+ ];
+
+ src = fetchFromGitHub {
+ owner = "ROCmSoftwarePlatform";
+ repo = "rocSPARSE";
+ rev = "rocm-${rocmVersion}";
+ hash = "sha256-1069oBrIpZ4M9CAkzoQ9a5j3WlCXErirTbgTUZuT6b0=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ rocm-cmake
+ hip
+ gfortran
+ ];
+
+ buildInputs = [
+ rocm-runtime
+ rocm-device-libs
+ rocm-comgr
+ rocprim
+ git
+ ] ++ lib.optionals (buildTests || buildBenchmarks) [
+ gtest
+ boost
+ python3Packages.python
+ python3Packages.pyyaml
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_CXX_COMPILER=hipcc"
+ # Manually define CMAKE_INSTALL_
+ # See: https://github.com/NixOS/nixpkgs/pull/197838
+ "-DCMAKE_INSTALL_BINDIR=bin"
+ "-DCMAKE_INSTALL_LIBDIR=lib"
+ "-DCMAKE_INSTALL_INCLUDEDIR=include"
+ ] ++ lib.optionals (buildTests || buildBenchmarks) [
+ "-DBUILD_CLIENTS_TESTS=ON"
+ "-DCMAKE_MATRICES_DIR=/build/source/matrices"
+ "-Dpython=python3"
+ ] ++ lib.optionals buildBenchmarks [
+ "-DBUILD_CLIENTS_BENCHMARKS=ON"
+ ];
+
+ # We have to manually generate the matrices
+ postPatch = lib.optionalString (buildTests || buildBenchmarks) ''
+ mkdir -p matrices
+
+ ln -s ${matrices.matrix-01}/*.mtx matrices
+ ln -s ${matrices.matrix-02}/*.mtx matrices
+ ln -s ${matrices.matrix-03}/*.mtx matrices
+ ln -s ${matrices.matrix-04}/*.mtx matrices
+ ln -s ${matrices.matrix-05}/*.mtx matrices
+ ln -s ${matrices.matrix-06}/*.mtx matrices
+ ln -s ${matrices.matrix-07}/*.mtx matrices
+ ln -s ${matrices.matrix-08}/*.mtx matrices
+ ln -s ${matrices.matrix-09}/*.mtx matrices
+ ln -s ${matrices.matrix-10}/*.mtx matrices
+ ln -s ${matrices.matrix-11}/*.mtx matrices
+ ln -s ${matrices.matrix-12}/*.mtx matrices
+ ln -s ${matrices.matrix-13}/*.mtx matrices
+ ln -s ${matrices.matrix-14}/*.mtx matrices
+ ln -s ${matrices.matrix-15}/*.mtx matrices
+ ln -s ${matrices.matrix-16}/*.mtx matrices
+ ln -s ${matrices.matrix-17}/*.mtx matrices
+ ln -s ${matrices.matrix-18}/*.mtx matrices
+ ln -s ${matrices.matrix-19}/*.mtx matrices
+ ln -s ${matrices.matrix-20}/*.mtx matrices
+ ln -s ${matrices.matrix-21}/*.mtx matrices
+ ln -s ${matrices.matrix-22}/*.mtx matrices
+ ln -s ${matrices.matrix-23}/*.mtx matrices
+ ln -s ${matrices.matrix-24}/*.mtx matrices
+
+ # Not used by the original cmake, causes an error
+ rm matrices/*_b.mtx
+
+ echo "deps/convert.cpp -> deps/mtx2csr"
+ hipcc deps/convert.cpp -O3 -o deps/mtx2csr
+
+ for mat in $(ls -1 matrices | cut -d "." -f 1); do
+ echo "mtx2csr: $mat.mtx -> $mat.csr"
+ deps/mtx2csr matrices/$mat.mtx matrices/$mat.csr
+ unlink matrices/$mat.mtx
+ done
+ '';
+
+ postInstall = lib.optionalString buildBenchmarks ''
+ mkdir -p $benchmark/bin
+ cp -a $out/bin/* $benchmark/bin
+ rm $benchmark/bin/rocsparse-test
+ '' + lib.optionalString (buildTests || buildBenchmarks) ''
+ mkdir -p $test/bin
+ mv $out/bin/* $test/bin
+ rm $test/bin/rocsparse-bench || true
+ mv /build/source/matrices $test
+ rmdir $out/bin
+ '';
+
+ meta = with lib; {
+ description = "ROCm SPARSE implementation";
+ homepage = "https://github.com/ROCmSoftwarePlatform/rocSPARSE";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ Madouura ];
+ broken = rocmVersion != hip.version;
+ };
+}
diff --git a/pkgs/development/libraries/rocsparse/deps.nix b/pkgs/development/libraries/rocsparse/deps.nix
new file mode 100644
index 000000000000..cef880ab3232
--- /dev/null
+++ b/pkgs/development/libraries/rocsparse/deps.nix
@@ -0,0 +1,222 @@
+{ fetchzip
+, mirror1
+, mirror2
+}:
+
+{
+ matrix-01 = fetchzip {
+ sha256 = "sha256-AHur5ZIDZTFRrO2GV0ieXrffq4KUiGWiZ59pv0fUtEQ=";
+
+ urls = [
+ "${mirror1}/SNAP/amazon0312.tar.gz"
+ "${mirror2}/SNAP/amazon0312.tar.gz"
+ ];
+ };
+
+ matrix-02 = fetchzip {
+ sha256 = "sha256-0rSxaN4lQcdaCLsvlgicG70FXUxXeERPiEmQ4MzbRdE=";
+
+ urls = [
+ "${mirror1}/Muite/Chebyshev4.tar.gz"
+ "${mirror2}/Muite/Chebyshev4.tar.gz"
+ ];
+ };
+
+ matrix-03 = fetchzip {
+ sha256 = "sha256-hDzDWDUnHEyFedX/tMNq83ZH8uWyM4xtZYUUAD3rizo=";
+
+ urls = [
+ "${mirror1}/FEMLAB/sme3Dc.tar.gz"
+ "${mirror2}/FEMLAB/sme3Dc.tar.gz"
+ ];
+ };
+
+ matrix-04 = fetchzip {
+ sha256 = "sha256-GmN2yOt/MoX01rKe05aTyB3ypUP4YbQGOITZ0BqPmC0=";
+
+ urls = [
+ "${mirror1}/Williams/webbase-1M.tar.gz"
+ "${mirror2}/Williams/webbase-1M.tar.gz"
+ ];
+ };
+
+ matrix-05 = fetchzip {
+ sha256 = "sha256-gQNjfVyWzNM9RwImJGhkhahRmZz74LzDs1oijL7mI7k=";
+
+ urls = [
+ "${mirror1}/Williams/mac_econ_fwd500.tar.gz"
+ "${mirror2}/Williams/mac_econ_fwd500.tar.gz"
+ ];
+ };
+
+ matrix-06 = fetchzip {
+ sha256 = "sha256-87cdZjntNcTuz5BtO59irhcuRbPllWSbhCEX3Td02qc=";
+
+ urls = [
+ "${mirror1}/Williams/mc2depi.tar.gz"
+ "${mirror2}/Williams/mc2depi.tar.gz"
+ ];
+ };
+
+ matrix-07 = fetchzip {
+ sha256 = "sha256-WRamuJX3D8Tm+k0q67RjUDG3DeNAxhKiaPkk5afY5eU=";
+
+ urls = [
+ "${mirror1}/Bova/rma10.tar.gz"
+ "${mirror2}/Bova/rma10.tar.gz"
+ ];
+ };
+
+ matrix-08 = fetchzip {
+ sha256 = "sha256-5dhkm293Mc3lzakKxHy5W5XIn4Rw+gihVh7gyrjEHXo=";
+
+ urls = [
+ "${mirror1}/JGD_BIBD/bibd_22_8.tar.gz"
+ "${mirror2}/JGD_BIBD/bibd_22_8.tar.gz"
+ ];
+ };
+
+ matrix-09 = fetchzip {
+ sha256 = "sha256-czjLWCjXAjZCk5TGYHaEkwSAzQu3TQ3QyB6eNKR4G88=";
+
+ urls = [
+ "${mirror1}/Hamm/scircuit.tar.gz"
+ "${mirror2}/Hamm/scircuit.tar.gz"
+ ];
+ };
+
+ matrix-10 = fetchzip {
+ sha256 = "sha256-bYuLnJViAIcIejAkh69/bsNAVIDU4wfTLtD+nmHd6FM=";
+
+ urls = [
+ "${mirror1}/Sandia/ASIC_320k.tar.gz"
+ "${mirror2}/Sandia/ASIC_320k.tar.gz"
+ ];
+ };
+
+ matrix-11 = fetchzip {
+ sha256 = "sha256-aDwn8P1khYjo2Agbq5m9ZBInJUxf/knJNvyptt0fak0=";
+
+ urls = [
+ "${mirror1}/GHS_psdef/bmwcra_1.tar.gz"
+ "${mirror2}/GHS_psdef/bmwcra_1.tar.gz"
+ ];
+ };
+
+ matrix-12 = fetchzip {
+ sha256 = "sha256-8OJqA/byhlAZd869TPUzZFdsOiwOoRGfKyhM+RMjXoY=";
+
+ urls = [
+ "${mirror1}/HB/nos1.tar.gz"
+ "${mirror2}/HB/nos1.tar.gz"
+ ];
+ };
+
+ matrix-13 = fetchzip {
+ sha256 = "sha256-FS0rKqmg+uHwsM/yGfQLBdd7LH/rUrdutkNGBD/Mh1I=";
+
+ urls = [
+ "${mirror1}/HB/nos2.tar.gz"
+ "${mirror2}/HB/nos2.tar.gz"
+ ];
+ };
+
+ matrix-14 = fetchzip {
+ sha256 = "sha256-DANnlrNJikrI7Pst9vRedtbuxepyHmCIu2yhltc4Qcs=";
+
+ urls = [
+ "${mirror1}/HB/nos3.tar.gz"
+ "${mirror2}/HB/nos3.tar.gz"
+ ];
+ };
+
+ matrix-15 = fetchzip {
+ sha256 = "sha256-21mUgqjWGUfYgiWwSrKh9vH8Vdt3xzcefmqYNYRpxiY=";
+
+ urls = [
+ "${mirror1}/HB/nos4.tar.gz"
+ "${mirror2}/HB/nos4.tar.gz"
+ ];
+ };
+
+ matrix-16 = fetchzip {
+ sha256 = "sha256-FOuXvGqBBFNkVS6cexmkluret54hCfCOdK+DOZllE4c=";
+
+ urls = [
+ "${mirror1}/HB/nos5.tar.gz"
+ "${mirror2}/HB/nos5.tar.gz"
+ ];
+ };
+
+ matrix-17 = fetchzip {
+ sha256 = "sha256-+7NI1rA/qQxYPpjXKHvAaCZ+LSaAJ4xuJvMRMBEUYxg=";
+
+ urls = [
+ "${mirror1}/HB/nos6.tar.gz"
+ "${mirror2}/HB/nos6.tar.gz"
+ ];
+ };
+
+ matrix-18 = fetchzip {
+ sha256 = "sha256-q3NxJjbwGGcFiQ9nhWfUKgZmdVwCfPmgQoqy0AqOsNc=";
+
+ urls = [
+ "${mirror1}/HB/nos7.tar.gz"
+ "${mirror2}/HB/nos7.tar.gz"
+ ];
+ };
+
+ matrix-19 = fetchzip {
+ sha256 = "sha256-0GAN6qmVfD+tprIigzuUUUwm5KVhkN9X65wMEvFltDY=";
+
+ urls = [
+ "${mirror1}/DNVS/shipsec1.tar.gz"
+ "${mirror2}/DNVS/shipsec1.tar.gz"
+ ];
+ };
+
+ matrix-20 = fetchzip {
+ sha256 = "sha256-f28Du/Urxsiq5NkRmRO10Zz9vvGRjEchquzHzbZpZ7U=";
+
+ urls = [
+ "${mirror1}/Cote/mplate.tar.gz"
+ "${mirror2}/Cote/mplate.tar.gz"
+ ];
+ };
+
+ matrix-21 = fetchzip {
+ sha256 = "sha256-O+Wy0NfCU1hVUOfNR1dJpvDHLBwwa301IRJDrQJnhak=";
+
+ urls = [
+ "${mirror1}/Bai/qc2534.tar.gz"
+ "${mirror2}/Bai/qc2534.tar.gz"
+ ];
+ };
+
+ matrix-22 = fetchzip {
+ sha256 = "sha256-oxMnt8U5Cf1ILWcBdU6W9jdSMMm+U6bIVl8nm3n3+OA=";
+
+ urls = [
+ "${mirror1}/Chevron/Chevron2.tar.gz"
+ "${mirror2}/Chevron/Chevron2.tar.gz"
+ ];
+ };
+
+ matrix-23 = fetchzip {
+ sha256 = "sha256-MFD9BxFI/3IS7yatW121BAI04fbqrXpgYDT5UKjeKcU=";
+
+ urls = [
+ "${mirror1}/Chevron/Chevron3.tar.gz"
+ "${mirror2}/Chevron/Chevron3.tar.gz"
+ ];
+ };
+
+ matrix-24 = fetchzip {
+ sha256 = "sha256-ikS8O51pe1nt3BNyhvfvqCbVL0+bg/da9bqGqeBDkTg=";
+
+ urls = [
+ "${mirror1}/Chevron/Chevron4.tar.gz"
+ "${mirror2}/Chevron/Chevron4.tar.gz"
+ ];
+ };
+}
diff --git a/pkgs/development/libraries/rocthrust/default.nix b/pkgs/development/libraries/rocthrust/default.nix
new file mode 100644
index 000000000000..99e582791769
--- /dev/null
+++ b/pkgs/development/libraries/rocthrust/default.nix
@@ -0,0 +1,91 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, rocm-cmake
+, rocm-runtime
+, rocm-device-libs
+, rocm-comgr
+, rocprim
+, hip
+, gtest ? null
+, buildTests ? false
+, buildBenchmarks ? false
+}:
+
+assert buildTests -> gtest != null;
+
+# Doesn't seem to work, thousands of errors compiling with no clear fix
+# Is this an upstream issue? We don't seem to be missing dependencies
+assert buildTests == false;
+assert buildBenchmarks == false;
+
+stdenv.mkDerivation rec {
+ pname = "rocthrust";
+ rocmVersion = "5.3.1";
+ version = "2.16.0-${rocmVersion}";
+
+ # Comment out these outputs until tests/benchmarks are fixed (upstream?)
+ # outputs = [
+ # "out"
+ # ] ++ lib.optionals buildTests [
+ # "test"
+ # ] ++ lib.optionals buildBenchmarks [
+ # "benchmark"
+ # ];
+
+ src = fetchFromGitHub {
+ owner = "ROCmSoftwarePlatform";
+ repo = "rocThrust";
+ rev = "rocm-${rocmVersion}";
+ hash = "sha256-cT0VyEVz86xR6qubAY2ncTxtCRTwXrNTWcFyf3mV+y0=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ rocm-cmake
+ rocprim
+ hip
+ ];
+
+ buildInputs = [
+ rocm-runtime
+ rocm-device-libs
+ rocm-comgr
+ ] ++ lib.optionals buildTests [
+ gtest
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_CXX_COMPILER=hipcc"
+ "-DHIP_ROOT_DIR=${hip}"
+ # Manually define CMAKE_INSTALL_
+ # See: https://github.com/NixOS/nixpkgs/pull/197838
+ "-DCMAKE_INSTALL_BINDIR=bin"
+ "-DCMAKE_INSTALL_LIBDIR=lib"
+ "-DCMAKE_INSTALL_INCLUDEDIR=include"
+ ] ++ lib.optionals buildTests [
+ "-DBUILD_TEST=ON"
+ ] ++ lib.optionals buildBenchmarks [
+ "-DBUILD_BENCHMARKS=ON"
+ ];
+
+ # Comment out these outputs until tests/benchmarks are fixed (upstream?)
+ # postInstall = lib.optionalString buildTests ''
+ # mkdir -p $test/bin
+ # mv $out/bin/test_* $test/bin
+ # '' + lib.optionalString buildBenchmarks ''
+ # mkdir -p $benchmark/bin
+ # mv $out/bin/benchmark_* $benchmark/bin
+ # '' + lib.optionalString (buildTests || buildBenchmarks) ''
+ # rmdir $out/bin
+ # '';
+
+ meta = with lib; {
+ description = "ROCm parallel algorithm library";
+ homepage = "https://github.com/ROCmSoftwarePlatform/rocThrust";
+ license = with licenses; [ asl20 ];
+ maintainers = with maintainers; [ Madouura ];
+ broken = rocmVersion != hip.version;
+ };
+}
diff --git a/pkgs/development/libraries/s2n-tls/default.nix b/pkgs/development/libraries/s2n-tls/default.nix
index f266261775c5..aa1ad43fbb55 100644
--- a/pkgs/development/libraries/s2n-tls/default.nix
+++ b/pkgs/development/libraries/s2n-tls/default.nix
@@ -8,13 +8,13 @@
stdenv.mkDerivation rec {
pname = "s2n-tls";
- version = "1.3.26";
+ version = "1.3.27";
src = fetchFromGitHub {
owner = "aws";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-eVqiY/AomnKbN83hSB66EIuGD82Ilx+ybQtBMyX57WY=";
+ sha256 = "sha256-y6YlSzLZXNL7GkP0SNXQgt16W2AohGaGjshNq9GoCtA=";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/development/libraries/science/math/or-tools/default.nix b/pkgs/development/libraries/science/math/or-tools/default.nix
index 20978e31cff1..30feab0c9bf6 100644
--- a/pkgs/development/libraries/science/math/or-tools/default.nix
+++ b/pkgs/development/libraries/science/math/or-tools/default.nix
@@ -1,108 +1,99 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, cmake
-, abseil-cpp
+{ abseil-cpp
, bzip2
-, zlib
-, lsb-release
-, which
-, protobuf
, cbc
+, cmake
+, eigen
, ensureNewerSourcesForZipFilesHook
+, fetchFromGitHub
+, fetchpatch
+, glpk
+, lib
+, pkg-config
+, protobuf
, python
+, re2
+, stdenv
, swig4
+, unzip
+, zlib
}:
stdenv.mkDerivation rec {
pname = "or-tools";
- version = "9.1";
- disabled = python.pythonOlder "3.6"; # not supported upstream
+ version = "9.4";
src = fetchFromGitHub {
owner = "google";
repo = "or-tools";
rev = "v${version}";
- sha256 = "sha256-dEYMPWpa3J9EqtCq3kubdUYJivNRTOKUpNDx3UC1IcQ=";
+ sha256 = "sha256-joWonJGuxlgHhXLznRhC1MDltQulXzpo4Do9dec1bLY=";
};
-
- # The original build system uses cmake which does things like pull
- # in dependencies through git and Makefile creation time. We
- # obviously don't want to do this so instead we provide the
- # dependencies straight from nixpkgs and use the make build method.
-
- # Cbc is linked against bzip2 and declares this in its pkgs-config file,
- # but this makefile doesn't use pkgs-config, so we also have to add lbz2
- configurePhase = ''
- substituteInPlace makefiles/Makefile.third_party.unix.mk \
- --replace 'COINUTILS_LNK = $(STATIC_COINUTILS_LNK)' \
- 'COINUTILS_LNK = $(STATIC_COINUTILS_LNK) -lbz2'
-
- cat < Makefile.local
- UNIX_ABSL_DIR=${abseil-cpp}
- UNIX_PROTOBUF_DIR=${protobuf}
- UNIX_CBC_DIR=${cbc}
- USE_SCIP=OFF
- EOF
- '';
-
- # Many of these 'samples' (which are really the tests) require using SCIP, and or-tools 8.1
- # will just crash if SCIP is not found because it doesn't fall back to using one of
- # the available solvers: https://github.com/google/or-tools/blob/b77bd3ac69b7f3bb02f55b7bab6cbb4bab3917f2/ortools/linear_solver/linear_solver.cc#L427
- # We don't compile with SCIP because it does not have an open source license.
- # See https://github.com/google/or-tools/issues/2395
- preBuild = ''
- for file in ortools/linear_solver/samples/*.cc; do
- if grep -q SCIP_MIXED_INTEGER_PROGRAMMING $file; then
- substituteInPlace $file --replace SCIP_MIXED_INTEGER_PROGRAMMING CBC_MIXED_INTEGER_PROGRAMMING
- fi;
- done
-
- substituteInPlace ortools/linear_solver/samples/simple_mip_program.cc \
- --replace 'SCIP' 'CBC'
- '';
- makeFlags = [
- "prefix=${placeholder "out"}"
- "PROTOBUF_PYTHON_DESC=${python.pkgs.protobuf}/${python.sitePackages}/google/protobuf/descriptor_pb2.py"
+ patches = [
+ # Disable test that requires external input: https://github.com/google/or-tools/issues/3429
+ (fetchpatch {
+ url = "https://github.com/google/or-tools/commit/7072ae92ec204afcbfce17d5360a5884c136ce90.patch";
+ hash = "sha256-iWE+atp308q7pC1L1FD6sK8LvWchZ3ofxvXssguozbM=";
+ })
+ # Fix test that broke in parallel builds: https://github.com/google/or-tools/issues/3461
+ (fetchpatch {
+ url = "https://github.com/google/or-tools/commit/a26602f24781e7bfcc39612568aa9f4010bb9736.patch";
+ hash = "sha256-gM0rW0xRXMYaCwltPK0ih5mdo3HtX6mKltJDHe4gbLc=";
+ })
];
- buildFlags = [ "cc" "pypi_archive" ];
-
- doCheck = true;
- checkTarget = "test_cc";
-
- installTargets = [ "install_cc" ];
- # The upstream install_python target installs to $HOME.
- postInstall = ''
- mkdir -p "$python/${python.sitePackages}"
- (cd temp_python/ortools; PYTHONPATH="$python/${python.sitePackages}:$PYTHONPATH" python setup.py install '--prefix=$python')
- '';
-
- # protobuf generation is not thread safe
- enableParallelBuilding = false;
+ cmakeFlags = [
+ "-DBUILD_DEPS=OFF"
+ "-DBUILD_PYTHON=ON"
+ "-DBUILD_pybind11=OFF"
+ "-DFETCH_PYTHON_DEPS=OFF"
+ "-DUSE_GLPK=ON"
+ "-DUSE_SCIP=OFF"
+ ];
nativeBuildInputs = [
cmake
- lsb-release
- swig4
- which
ensureNewerSourcesForZipFilesHook
- python.pkgs.setuptools
- python.pkgs.wheel
+ pkg-config
+ python
+ python.pkgs.pip
+ swig4
+ unzip
];
buildInputs = [
- zlib
bzip2
- python
+ cbc
+ eigen
+ glpk
+ python.pkgs.absl-py
+ python.pkgs.mypy-protobuf
+ python.pkgs.pybind11
+ python.pkgs.setuptools
+ python.pkgs.wheel
+ re2
+ zlib
];
propagatedBuildInputs = [
abseil-cpp
protobuf
-
python.pkgs.protobuf
- python.pkgs.six
- python.pkgs.absl-py
- python.pkgs.mypy-protobuf
+ python.pkgs.numpy
];
+ checkInputs = [
+ python.pkgs.matplotlib
+ python.pkgs.pandas
+ python.pkgs.virtualenv
+ ];
+
+ doCheck = true;
+
+ # This extra configure step prevents the installer from littering
+ # $out/bin with sample programs that only really function as tests,
+ # and disables the upstream installation of a zipped Python egg that
+ # can’t be imported with our Python setup.
+ installPhase = ''
+ cmake . -DBUILD_EXAMPLES=OFF -DBUILD_PYTHON=OFF -DBUILD_SAMPLES=OFF
+ cmake --install .
+ pip install --prefix="$python" python/
+ '';
outputs = [ "out" "python" ];
diff --git a/pkgs/development/libraries/sfml/default.nix b/pkgs/development/libraries/sfml/default.nix
index cc3fa2df97a0..be5db122d244 100644
--- a/pkgs/development/libraries/sfml/default.nix
+++ b/pkgs/development/libraries/sfml/default.nix
@@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
+, fetchpatch
, cmake
, libX11
, freetype
@@ -30,6 +31,14 @@ stdenv.mkDerivation rec {
sha256 = "sha256-Xt2Ct4vV459AsSvJxQfwMsNs6iA5y3epT95pLWJGeSk=";
};
+ patches = [
+ (fetchpatch {
+ url = "https://github.com/macports/macports-ports/raw/4df1fc235a708ff28200ffc0a39120974ed4b6e1/multimedia/sfml/files/patch-apple-silicon.diff";
+ extraPrefix = "";
+ sha256 = "sha256-9dNawJaYtkugR+2NvhQOhgsf6w9ZXHkBgsDRh8yAJc0=";
+ })
+ ];
+
nativeBuildInputs = [ cmake ];
buildInputs = [ freetype libjpeg openal flac libvorbis glew ]
++ lib.optional stdenv.isLinux udev
diff --git a/pkgs/development/libraries/tensile/default.nix b/pkgs/development/libraries/tensile/default.nix
new file mode 100644
index 000000000000..d957ea749441
--- /dev/null
+++ b/pkgs/development/libraries/tensile/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, buildPythonPackage
+, pyyaml
+, msgpack
+, pandas
+}:
+
+buildPythonPackage rec {
+ pname = "tensile";
+ rocmVersion = "5.3.1";
+ version = "4.34.0-${rocmVersion}";
+
+ src = fetchFromGitHub {
+ owner = "ROCmSoftwarePlatform";
+ repo = "Tensile";
+ rev = "rocm-${rocmVersion}";
+ hash = "sha256-QWt/zzBrZKM8h3MTnbLX4vN3p6cCQvo67U1C2yqAQxw=";
+ };
+
+ buildInputs = [
+ pyyaml
+ msgpack
+ pandas
+ ];
+
+ meta = with lib; {
+ description = "GEMMs and tensor contractions";
+ homepage = "https://github.com/ROCmSoftwarePlatform/Tensile";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ Madouura ];
+ };
+}
diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json
index e4cc7e9e29f7..5996cace002b 100644
--- a/pkgs/development/node-packages/node-packages.json
+++ b/pkgs/development/node-packages/node-packages.json
@@ -247,6 +247,7 @@
, "patch-package"
, "peerflix"
, "peerflix-server"
+, {"photoprism-frontend": "../../servers/photoprism"}
, "pkg"
, "pm2"
, "pnpm"
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index a62cf2315fd8..c3f21cdde002 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -148,13 +148,13 @@ let
sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==";
};
};
- "@angular-devkit/architect-0.1402.6" = {
+ "@angular-devkit/architect-0.1402.8" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1402.6";
+ version = "0.1402.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1402.6.tgz";
- sha512 = "qTmPBD7fBXBtlSapGLUEcJvRuL/O556zCFFpH3kSlzPNTYxi2falBjGY+4aG+078RXT1vVZtFsvRTart6VbhAg==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1402.8.tgz";
+ sha512 = "z3HXPBi3h3y+D04NNA/5lVaUCMF+dkE/75bCqg4DG3FqV0i0dh4hozjKtWgX6xuoJ8AJlDfrJSaBCvjsog+Jhg==";
};
};
"@angular-devkit/core-14.2.1" = {
@@ -175,13 +175,13 @@ let
sha512 = "ofDhTmJqoAkmkJP0duwUaCxDBMxPlc+AWYwgs3rKKZeJBb0d+tchEXHXevD5bYbbRfXtnwM+Vye2XYHhA4nWAA==";
};
};
- "@angular-devkit/core-14.2.6" = {
+ "@angular-devkit/core-14.2.8" = {
name = "_at_angular-devkit_slash_core";
packageName = "@angular-devkit/core";
- version = "14.2.6";
+ version = "14.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/core/-/core-14.2.6.tgz";
- sha512 = "qtRSdRm/h7C3ya04PJTDgQXV6mM8Y4RakANX1GTSXetCf9AVSxg74NJX76DWUgiHT4JiPYnJgJU6Hr/L0H6JOQ==";
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-14.2.8.tgz";
+ sha512 = "30nDq2PH91X7T42xXFBlTiXTBG143z0BL8IUgpVCxTFYwxgPbtV4bcXTkiBgh1FL/usZcHa0Bd/64wxmFOpYwA==";
};
};
"@angular-devkit/schematics-14.2.1" = {
@@ -202,13 +202,13 @@ let
sha512 = "90hseNg1yQ2AR+lVr/NByZRHnYAlzCL6hr9p9q1KPHxA3Owo04yX6n6dvR/xf27hCopXInXKPsasR59XCx5ZOQ==";
};
};
- "@angular-devkit/schematics-14.2.6" = {
+ "@angular-devkit/schematics-14.2.8" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
- version = "14.2.6";
+ version = "14.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.2.6.tgz";
- sha512 = "mSFtc4M49mWrYsgJx/P6bA6SzXb8SeZqmppKRMoEQxiXI1bwFdGLNWzAmzEsGvS96h/nPIaOfcX5cKJSp++4FA==";
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.2.8.tgz";
+ sha512 = "L5GEgueZV4vqZy9Ar0zxVJOHK/4ttF1nPjW4Ut1vRFJGxsHFVEpxq5eGBf2JYSiOhqmFYc6GnJOxA6C4xAIHjA==";
};
};
"@angular-devkit/schematics-cli-14.2.2" = {
@@ -220,40 +220,40 @@ let
sha512 = "timCty5tO1A5VOcy8nVJ+jL98i6+ct5/Hg+4rQxc3J6agmmNL9fALboJBEz1ckTt7MewlGtrpohMMy+YGhuWOg==";
};
};
- "@antora/asciidoc-loader-3.1.1" = {
+ "@antora/asciidoc-loader-3.1.2" = {
name = "_at_antora_slash_asciidoc-loader";
packageName = "@antora/asciidoc-loader";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/asciidoc-loader/-/asciidoc-loader-3.1.1.tgz";
- sha512 = "aW3aBVbPE3sXXrelgM392N87UhNT9JpIYcUV7DUegX0/9w8qybzdgkbrQjsaSwMstcR+7KK5muNoBr5dF+J1IQ==";
+ url = "https://registry.npmjs.org/@antora/asciidoc-loader/-/asciidoc-loader-3.1.2.tgz";
+ sha512 = "j5nNo8XastKxu8WYV9muCgRB4iGo88KIePIegcdQ5tcbuPmamOlp2/XuwYzGDAjWmaadqLD+3y9Mu18hA+wUYg==";
};
};
- "@antora/content-aggregator-3.1.1" = {
+ "@antora/content-aggregator-3.1.2" = {
name = "_at_antora_slash_content-aggregator";
packageName = "@antora/content-aggregator";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/content-aggregator/-/content-aggregator-3.1.1.tgz";
- sha512 = "kktMWq9m/IX3X/AyQvFcw4cKEKoJfs9o5tcraA3pZgOPr3hJgf5BEnldeszxWDJ8dc4mzyYIaq6GZC+c8foB0A==";
+ url = "https://registry.npmjs.org/@antora/content-aggregator/-/content-aggregator-3.1.2.tgz";
+ sha512 = "gRseJBYO7DpyCa2vwkRM7e2ZQ8D7813Q91sn9fg94D+8H/Em4SborO057jkOOgsxNAcXsQgiHfX2X8L+S+Vkqg==";
};
};
- "@antora/content-classifier-3.1.1" = {
+ "@antora/content-classifier-3.1.2" = {
name = "_at_antora_slash_content-classifier";
packageName = "@antora/content-classifier";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/content-classifier/-/content-classifier-3.1.1.tgz";
- sha512 = "nhqo8VZpab4OuPwZHPAgjWO8uaNq37IzjipU0p86nKVbKcp6VL1Velj7JI1rpVjg/2FQKQ8x41UguySXN2rImw==";
+ url = "https://registry.npmjs.org/@antora/content-classifier/-/content-classifier-3.1.2.tgz";
+ sha512 = "Kisp/VlnTFiG6YnEMyTCnFqXks1SG6AuYrUADCW+KmDuXI7xZGHrLJjFeTUIDp0+HzuW96TJUhuMB8UL9TDNFA==";
};
};
- "@antora/document-converter-3.1.1" = {
+ "@antora/document-converter-3.1.2" = {
name = "_at_antora_slash_document-converter";
packageName = "@antora/document-converter";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/document-converter/-/document-converter-3.1.1.tgz";
- sha512 = "RNk1p9fI/CjANwwQ7BgLnSrbxxYh8kZV7SscPUptl32V7xUpbTMLebPEKPa3rl2C5qoalvJQNXLKfFRPMCqE7w==";
+ url = "https://registry.npmjs.org/@antora/document-converter/-/document-converter-3.1.2.tgz";
+ sha512 = "zOFMK0wcmL3aZuO2k61MaWDZ86vzuG16YIIqebg/V0QZcSsS06Vvo79fplQz91KL2vPgB0+rl//Roqbr28MfUw==";
};
};
"@antora/expand-path-helper-2.0.0" = {
@@ -265,94 +265,94 @@ let
sha512 = "CSMBGC+tI21VS2kGW3PV7T2kQTM5eT3f2GTPVLttwaNYbNxDve08en/huzszHJfxo11CcEs26Ostr0F2c1QqeA==";
};
};
- "@antora/file-publisher-3.1.1" = {
+ "@antora/file-publisher-3.1.2" = {
name = "_at_antora_slash_file-publisher";
packageName = "@antora/file-publisher";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/file-publisher/-/file-publisher-3.1.1.tgz";
- sha512 = "J8CKp3q24KutImNq9JTyxRK8uq+pnBliW7g6XJ4tQbchbV8DPgz+hzOVkFyehUb8bmUbp5G+mt3LMt1zRQbZJw==";
+ url = "https://registry.npmjs.org/@antora/file-publisher/-/file-publisher-3.1.2.tgz";
+ sha512 = "yWE1E4kg5obAzX9nl/oYou86BlSeKCf9lONiYuWqeqdUdeZPxW5RE2YahJk6i9+9Zwrxgm65oc/oDdvsdwSqYw==";
};
};
- "@antora/logger-3.1.1" = {
+ "@antora/logger-3.1.2" = {
name = "_at_antora_slash_logger";
packageName = "@antora/logger";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/logger/-/logger-3.1.1.tgz";
- sha512 = "V62YLE59z6KDQbCKjzHAv1zE7FHfT9pSwhLsHYJbWa2e8CGbGKflaR8hiDnvKSqs71VFxbdbkcOdbu7hAjGiEw==";
+ url = "https://registry.npmjs.org/@antora/logger/-/logger-3.1.2.tgz";
+ sha512 = "xmKCpchp0IU8SpKUa/AwlLsvOcO7edNjQ3dOzpxm223avCWm/lCnNBtC++lnLYE7jOfOFYjnhveE16JKPj6akA==";
};
};
- "@antora/navigation-builder-3.1.1" = {
+ "@antora/navigation-builder-3.1.2" = {
name = "_at_antora_slash_navigation-builder";
packageName = "@antora/navigation-builder";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/navigation-builder/-/navigation-builder-3.1.1.tgz";
- sha512 = "/0BGQpttXaj0pvbYGdCiLFnOsygNYQBB+qjQsIbsgyGFFVlXJ2hF3zAHcGeVhCDVNa2EspeObP2lW7Mg3glRjw==";
+ url = "https://registry.npmjs.org/@antora/navigation-builder/-/navigation-builder-3.1.2.tgz";
+ sha512 = "gWiFTZDfM31mHgHKs3og6e1/2y4idFFBLwTfXZWbgBlUDKmhWQKeg1CUQUzXR0Ts4SJhiViGlOzptPXQPQURtA==";
};
};
- "@antora/page-composer-3.1.1" = {
+ "@antora/page-composer-3.1.2" = {
name = "_at_antora_slash_page-composer";
packageName = "@antora/page-composer";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/page-composer/-/page-composer-3.1.1.tgz";
- sha512 = "nByVOKnSN+vZnfmIqi1zqQmlDQS0qwQnauGkFq/S67pbeY8AYw2yyaKNrI+8GqVnJNaF3T/fWK7d7no1NY0acA==";
+ url = "https://registry.npmjs.org/@antora/page-composer/-/page-composer-3.1.2.tgz";
+ sha512 = "rwYNEGh4cxQHsm+fEk4R+Wi2silRe5eCeyPvW52caXvfaTcmSK92iOnXMYpsthws5UmBV3D+1eSXbjMfe4xC7w==";
};
};
- "@antora/playbook-builder-3.1.1" = {
+ "@antora/playbook-builder-3.1.2" = {
name = "_at_antora_slash_playbook-builder";
packageName = "@antora/playbook-builder";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/playbook-builder/-/playbook-builder-3.1.1.tgz";
- sha512 = "HQ+E9Zn7upeThKxrGozRzRSymb0wUwUAtqHaHscOfj7IuDWI7kmjHfmS9td10tU3Oe2VdXiInnOeXMPpN/lPYQ==";
+ url = "https://registry.npmjs.org/@antora/playbook-builder/-/playbook-builder-3.1.2.tgz";
+ sha512 = "hfQom+UDFXdfDZVscGLtSBHZzkoi2HL8mt2Iiu+xh/6FFiAwCpU8eAlFzYHz2+yf8OpaMytvVNavvJXe3uo3qw==";
};
};
- "@antora/redirect-producer-3.1.1" = {
+ "@antora/redirect-producer-3.1.2" = {
name = "_at_antora_slash_redirect-producer";
packageName = "@antora/redirect-producer";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/redirect-producer/-/redirect-producer-3.1.1.tgz";
- sha512 = "jK4H/fNu75mEFrZaZRWdRxnlQ+dFTyXIQm6zKS37Sa4UdwwudkOOa8IM3R06z9S8bmGJnr30dOw7mqNTLRycBw==";
+ url = "https://registry.npmjs.org/@antora/redirect-producer/-/redirect-producer-3.1.2.tgz";
+ sha512 = "MUzjYH+2nKgW5oY9afkLzUdRsdSb+aOWF7BEPcvdCcA6/Gkm+fFs1bBATrtjjq70tbsKe6pMpsHEHqxuOz0WIQ==";
};
};
- "@antora/site-generator-3.1.1" = {
+ "@antora/site-generator-3.1.2" = {
name = "_at_antora_slash_site-generator";
packageName = "@antora/site-generator";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/site-generator/-/site-generator-3.1.1.tgz";
- sha512 = "dHhsnsLqBSQiyzUPMVHmpe41XjX/SJor47aMUifCSHmq/i/GhZycyw8azf0KHiQ1Vj9D24ihck61KMOW9qQdog==";
+ url = "https://registry.npmjs.org/@antora/site-generator/-/site-generator-3.1.2.tgz";
+ sha512 = "BpdX3hcWhtPPpq4+lyQe1XLoaxSPd6dcB+AzQTpg5oIb3+mXte8Tie45WXmiCX9F1Dp6Ug9BDImf/2HJFsbG0Q==";
};
};
- "@antora/site-mapper-3.1.1" = {
+ "@antora/site-mapper-3.1.2" = {
name = "_at_antora_slash_site-mapper";
packageName = "@antora/site-mapper";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/site-mapper/-/site-mapper-3.1.1.tgz";
- sha512 = "1ghRHVJ4k5ZdP5q/1SPP6rDyzyXWQs2F5D54sruvs6mNLaDVlb9usjRNfkLZdNko4tjfp5Blg9vDtKERenFQhg==";
+ url = "https://registry.npmjs.org/@antora/site-mapper/-/site-mapper-3.1.2.tgz";
+ sha512 = "WQEYac4KMIjc2H+5GUkzikgkZ1jSe8KXnDz9dzSL0A5zIwjVxlM2mnzAfzG8g1kKtlh1BwU4Famh97BfRzLQKg==";
};
};
- "@antora/site-publisher-3.1.1" = {
+ "@antora/site-publisher-3.1.2" = {
name = "_at_antora_slash_site-publisher";
packageName = "@antora/site-publisher";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/site-publisher/-/site-publisher-3.1.1.tgz";
- sha512 = "08/XRnOvkx5RrUQvsodU3s0j1Pen4LfiyQ0yY2jF996Kweanj8YTJ41Y6hyxnJsNPEb9OcGU9trKDOPpm2F/Sw==";
+ url = "https://registry.npmjs.org/@antora/site-publisher/-/site-publisher-3.1.2.tgz";
+ sha512 = "I/GeYypIVvpRH84amCWK3BUOEUplGpjx2rN+UgaXQ0UvBGVHrex6sfmS0G7R7g0cmK3X5hND44wTFxbaSBPUnw==";
};
};
- "@antora/ui-loader-3.1.1" = {
+ "@antora/ui-loader-3.1.2" = {
name = "_at_antora_slash_ui-loader";
packageName = "@antora/ui-loader";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/ui-loader/-/ui-loader-3.1.1.tgz";
- sha512 = "Lu6IFtjtPPo+MjVTioNwpMzMY5KKMmmVAFjDofpQGt4RSSNc0KtK4g++T86OWhia/vvKVftmAPWzuYEhpwYIsw==";
+ url = "https://registry.npmjs.org/@antora/ui-loader/-/ui-loader-3.1.2.tgz";
+ sha512 = "4tE7FT0pvvQ7PjGBe/NiRhqGdyfvx/8YSZJwcC2RLxFFusrv/8WlGjbgOVU+gGRFy1AKZDFgzbQWtJcyLjsyAQ==";
};
};
"@antora/user-require-helper-2.0.0" = {
@@ -625,13 +625,13 @@ let
sha512 = "Lgu5v/0e/BcrZ5m/IWqzPUf3UYFTy/PpeED+uc9SWUR1iZQL8XXbGQg10UfllwwBryO3hFF5dizK+78aoXC1eA==";
};
};
- "@aws-sdk/abort-controller-3.193.0" = {
+ "@aws-sdk/abort-controller-3.201.0" = {
name = "_at_aws-sdk_slash_abort-controller";
packageName = "@aws-sdk/abort-controller";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.193.0.tgz";
- sha512 = "MYPBm5PWyKP+Tq37mKs5wDbyAyVMocF5iYmx738LYXBSj8A1V4LTFrvfd4U16BRC/sM0DYB9fBFJUQ9ISFRVYw==";
+ url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.201.0.tgz";
+ sha512 = "xJ984k+CKlGjBmvNarzM8Y+b6X4L1Zt0TycQmVBJq7fAr/ju9l13pQIoXR5WlDIW1FkGeVczF5Nu6fN46SCORQ==";
};
};
"@aws-sdk/chunked-blob-reader-3.188.0" = {
@@ -652,508 +652,508 @@ let
sha512 = "WielYjaAHfT/HAOW7Tj6yVeNdaOtts3aUm9Sf/3D+ElbCTGyaaMNfE4x0a+qn6dJZXewf1eAxybOIU5ftIeSGw==";
};
};
- "@aws-sdk/client-s3-3.194.0" = {
+ "@aws-sdk/client-s3-3.202.0" = {
name = "_at_aws-sdk_slash_client-s3";
packageName = "@aws-sdk/client-s3";
- version = "3.194.0";
+ version = "3.202.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.194.0.tgz";
- sha512 = "vrC5Pj15T3jgErEOViNObaLpFBtjWk4YKs/P2HqkcQciXjikyafoUMx8GOb5edJbDlCnZSvdjJxIQT0V21fFUw==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.202.0.tgz";
+ sha512 = "Xo1x3EKajHJpWzx0CNHwTjHaVW32b1Gj6WJ8daOSjpEisyx2qdvqJkMAUxDAMaAMIGolOVTDpe5Pijwn4WjiUg==";
};
};
- "@aws-sdk/client-sso-3.193.0" = {
+ "@aws-sdk/client-sso-3.202.0" = {
name = "_at_aws-sdk_slash_client-sso";
packageName = "@aws-sdk/client-sso";
- version = "3.193.0";
+ version = "3.202.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.193.0.tgz";
- sha512 = "NxDckym95mtimYp9uWRA1lcyJHDyS8OZEaDC+dZ/tt5wGyPoc3ftHZNWDLzZM1PUjzgo+XzjMBVkWMvk/SRSYw==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.202.0.tgz";
+ sha512 = "c0impiZUbJeB5AdyZyER81tsqF9bxxaEz6p2LYkTn62NWVXPWEUo/1CHQRj36MUzorz1xiWKIN0NPgK6GBJkPQ==";
};
};
- "@aws-sdk/client-sts-3.194.0" = {
+ "@aws-sdk/client-sts-3.202.0" = {
name = "_at_aws-sdk_slash_client-sts";
packageName = "@aws-sdk/client-sts";
- version = "3.194.0";
+ version = "3.202.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.194.0.tgz";
- sha512 = "duolI7KLvRLMrL0ZpiVvmhaC5stKcNp5tfJ7gUW24tyf+7ImAmk2odSMIgcq54EWQ3XppTKBhEGCjOJ9th7+Qg==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.202.0.tgz";
+ sha512 = "WGRFzODig8+cZR903q3fa7OAzGigSuzD9AoK+ybefQa7bxSuhT2ous4GNPOJz9WYWvugEPyrJu8vbG35IoF1ZQ==";
};
};
- "@aws-sdk/config-resolver-3.193.0" = {
+ "@aws-sdk/config-resolver-3.201.0" = {
name = "_at_aws-sdk_slash_config-resolver";
packageName = "@aws-sdk/config-resolver";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.193.0.tgz";
- sha512 = "HIjuv2A1glgkXy9g/A8bfsiz3jTFaRbwGZheoHFZod6iEQQEbbeAsBe3u2AZyzOrVLgs8lOvBtgU8XKSJWjDkw==";
+ url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.201.0.tgz";
+ sha512 = "6YLIel7OGMGi+r8XC1A54cQJRIpx/NJ4fBALy44zFpQ+fdJUEmw4daUf1LECmAQiPA2Pr/hD0nBtX+wiiTf5/g==";
};
};
- "@aws-sdk/credential-provider-env-3.193.0" = {
+ "@aws-sdk/credential-provider-env-3.201.0" = {
name = "_at_aws-sdk_slash_credential-provider-env";
packageName = "@aws-sdk/credential-provider-env";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.193.0.tgz";
- sha512 = "pRqZoIaqCdWB4JJdR6DqDn3u+CwKJchwiCPnRtChwC8KXCMkT4njq9J1bWG3imYeTxP/G06O1PDONEuD4pPtNQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.201.0.tgz";
+ sha512 = "g2MJsowzFhSsIOITUjYp7EzWFeHINjEP526Uf+5z2/p2kxQVwYYWZQK7j+tPE2Bk3MEjGOCmVHbbE7IFj0rNHw==";
};
};
- "@aws-sdk/credential-provider-imds-3.193.0" = {
+ "@aws-sdk/credential-provider-imds-3.201.0" = {
name = "_at_aws-sdk_slash_credential-provider-imds";
packageName = "@aws-sdk/credential-provider-imds";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.193.0.tgz";
- sha512 = "jC7uT7uVpO/iitz49toHMGFKXQ2igWQQG2SKirREqDRaz5HSXwEP1V3rcOlNNyGIBPMggDjZnxYgJHqBXSq9Ag==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.201.0.tgz";
+ sha512 = "i8U2k3/L3iUWJJ1GSlwVBMfLQ2OTUT97E8yJi/xz5GavYuPOsUQWQe4fp7WGQivxh+AqybXAGFUCYub6zfUqag==";
};
};
- "@aws-sdk/credential-provider-ini-3.193.0" = {
+ "@aws-sdk/credential-provider-ini-3.202.0" = {
name = "_at_aws-sdk_slash_credential-provider-ini";
packageName = "@aws-sdk/credential-provider-ini";
- version = "3.193.0";
+ version = "3.202.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.193.0.tgz";
- sha512 = "JQ4tyeLjwsa9Jo95yTrLgFFspAP5GwaZDqDJArG98waKDzxhl7FeBs+N32+oux6WB7RKRB0svOK02nnoWnrjVg==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.202.0.tgz";
+ sha512 = "d0kiYMpGzAq3EBXgEJ1SdeoMXVf3lk6NKHDi/Gy8LB03sZqgc5cY4XFCnY3cqE3DNWWZNR26M4j/KiA0LIjAVA==";
};
};
- "@aws-sdk/credential-provider-node-3.193.0" = {
+ "@aws-sdk/credential-provider-node-3.202.0" = {
name = "_at_aws-sdk_slash_credential-provider-node";
packageName = "@aws-sdk/credential-provider-node";
- version = "3.193.0";
+ version = "3.202.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.193.0.tgz";
- sha512 = "2E8yWVw1vLb6IumZxA0w4mes759YSCTHLdfp5nMBpn+d+Otz26mczKSe7xr7AaVONq+/sVPUl2GfTFTWM4B0eA==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.202.0.tgz";
+ sha512 = "/uHNs3c1O3oFpH7z9nnpjyg8NKNyRbNxUDIHkuHkNSUUKXpfBisDX6TMbD4VcflGuNdkbT+8spkw5vsE8ox3ig==";
};
};
- "@aws-sdk/credential-provider-process-3.193.0" = {
+ "@aws-sdk/credential-provider-process-3.201.0" = {
name = "_at_aws-sdk_slash_credential-provider-process";
packageName = "@aws-sdk/credential-provider-process";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.193.0.tgz";
- sha512 = "zpXxtQzQqkaUuFqmHW9dSkh9p/1k+XNKlwEkG8FTwAJNUWmy2ZMJv+8NTVn4s4vaRu7xJ1er9chspYr7mvxHlA==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.201.0.tgz";
+ sha512 = "jTK3HSZgNj/hVrWb0wuF/cPUWSJYoRI/80fnN55o6QLS8WWIgOI8o2PNeVTAT5OrKioSoN4fgKTeUm3DZy3npQ==";
};
};
- "@aws-sdk/credential-provider-sso-3.193.0" = {
+ "@aws-sdk/credential-provider-sso-3.202.0" = {
name = "_at_aws-sdk_slash_credential-provider-sso";
packageName = "@aws-sdk/credential-provider-sso";
- version = "3.193.0";
+ version = "3.202.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.193.0.tgz";
- sha512 = "jBFWreNFZUgnGyCkpxDGf+LrXTuzEfjYkJYti1HnnsUF4vF0PsVZS6/FQi1mDl3pqorrtgknI59ENnAhKVxtBg==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.202.0.tgz";
+ sha512 = "EBUY/qKboJwy3qxPHiD/LAnhzga4xR1p++QMoxg2BKgkgwlvGb23lYGr5DSCNhdtJj5o165YZDbGYH+PKn2NVw==";
};
};
- "@aws-sdk/credential-provider-web-identity-3.193.0" = {
+ "@aws-sdk/credential-provider-web-identity-3.201.0" = {
name = "_at_aws-sdk_slash_credential-provider-web-identity";
packageName = "@aws-sdk/credential-provider-web-identity";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.193.0.tgz";
- sha512 = "MIQY9KwLCBnRyIt7an4EtMrFQZz2HC1E8vQDdKVzmeQBBePhW61fnX9XDP9bfc3Ypg1NggLG00KBPEC88twLFg==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.201.0.tgz";
+ sha512 = "U54bqhYaClPVZfswgknhlICp3BAtKXpOgHQCUF8cko5xUgbL4lVgd1rC3lWviGFMQAaTIF3QOXyEouemxr3VXw==";
};
};
- "@aws-sdk/eventstream-codec-3.193.0" = {
+ "@aws-sdk/eventstream-codec-3.201.0" = {
name = "_at_aws-sdk_slash_eventstream-codec";
packageName = "@aws-sdk/eventstream-codec";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-codec/-/eventstream-codec-3.193.0.tgz";
- sha512 = "K6rPYZAxexCyohR+w/G0hVxfHtY4H8e5QXj945YBmF8jfAmrjSbKDLmgPypqiENebvD1qTisXpraWjqWIABSHg==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-codec/-/eventstream-codec-3.201.0.tgz";
+ sha512 = "lz0FFzOMXvVdy47GnRk+niK+L7MxUZITvK7UUOL6u++JB+54jS+EsD9iLSNhM5qoR9vCiFjabBhkPz9Ml6bdmw==";
};
};
- "@aws-sdk/eventstream-serde-browser-3.193.0" = {
+ "@aws-sdk/eventstream-serde-browser-3.201.0" = {
name = "_at_aws-sdk_slash_eventstream-serde-browser";
packageName = "@aws-sdk/eventstream-serde-browser";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.193.0.tgz";
- sha512 = "V6qTzyaxxcZz5/8A1sV6SWtRZzbjKtdqfrTrh8oM86svpRHOfDcacbwMZqXt+L1tbZsv0ZPEn8j1MDiiv17P9g==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.201.0.tgz";
+ sha512 = "3/rZRBTxikj1Uyo8NDdaXey9zy7Xck/rKjykpBMbUYr4lnvXZDGQ0ie4/EMz+k5UbRsZgP46KdJo2ThgwTBvdw==";
};
};
- "@aws-sdk/eventstream-serde-config-resolver-3.193.0" = {
+ "@aws-sdk/eventstream-serde-config-resolver-3.201.0" = {
name = "_at_aws-sdk_slash_eventstream-serde-config-resolver";
packageName = "@aws-sdk/eventstream-serde-config-resolver";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.193.0.tgz";
- sha512 = "RnnjEcl8NSIEb8+mQL+Zkro+ke3qrXpPmwolB752HIEBu9U0iG1wYuaBeXaxXNk4K+UGe/eNHM5UXh6Uur4ioQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.201.0.tgz";
+ sha512 = "dUpqO5yX1TdAShIuyBuWMiW7DWj9adtoeAzFvqPyQMXRFTPDQcggSelfoaXGcvUQUfcNZDUbCoigU23f+xmk6Q==";
};
};
- "@aws-sdk/eventstream-serde-node-3.193.0" = {
+ "@aws-sdk/eventstream-serde-node-3.201.0" = {
name = "_at_aws-sdk_slash_eventstream-serde-node";
packageName = "@aws-sdk/eventstream-serde-node";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.193.0.tgz";
- sha512 = "hNSVB7kEkgUtOvB1iUF0MYXkScB97++0uqJ/TLAdmFmBFaF/yPcvVJtCwyolcAmgHQRnDtVILpa4URM/Jh8viw==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.201.0.tgz";
+ sha512 = "h7YYPKrPIRjsAq8PnpkAmmwnz2UofHr98BCFtw/eAIFVLZ8lzQbi1kI+dAmwPSlY1L59tgXakmJ6cGvtsDdG5w==";
};
};
- "@aws-sdk/eventstream-serde-universal-3.193.0" = {
+ "@aws-sdk/eventstream-serde-universal-3.201.0" = {
name = "_at_aws-sdk_slash_eventstream-serde-universal";
packageName = "@aws-sdk/eventstream-serde-universal";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.193.0.tgz";
- sha512 = "r+uo+UWPU72BCOQ3DK80OjM6O52ZIo7NT1Fw65tBXHP55AVp15V4OKivyWTcIhLfCtWAeoeJJTbQvq+u8uI4JA==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.201.0.tgz";
+ sha512 = "Iq7sofa2Ns/ToseL8/m0PwIO5PHY800K4fi3i+6P1JA0bpZxmvkA/bfn+WCLvcB7sNluasqETHNxGs6DgNteIA==";
};
};
- "@aws-sdk/fetch-http-handler-3.193.0" = {
+ "@aws-sdk/fetch-http-handler-3.201.0" = {
name = "_at_aws-sdk_slash_fetch-http-handler";
packageName = "@aws-sdk/fetch-http-handler";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.193.0.tgz";
- sha512 = "UhIS2LtCK9hqBzYVon6BI8WebJW1KC0GGIL/Gse5bqzU9iAGgFLAe66qg9k+/h3Jjc5LNAYzqXNVizMwn7689Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.201.0.tgz";
+ sha512 = "uiEoH79j6WOpbp4THcpvD9XmD+vPgy+00oyYXjtZqJnv2PM/9b6tGWKTdI+TJW4P/oPv7HP7JmRlkGaTnkIdXw==";
};
};
- "@aws-sdk/hash-blob-browser-3.193.0" = {
+ "@aws-sdk/hash-blob-browser-3.201.0" = {
name = "_at_aws-sdk_slash_hash-blob-browser";
packageName = "@aws-sdk/hash-blob-browser";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.193.0.tgz";
- sha512 = "jku1nk5mw82t3tZN0ehpG7f/cGXM4MT60OBLVV2eRsaUbZtZyYrP4jy3cKhhsZV0cNfZJUf1/yHDIZKEocr06Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.201.0.tgz";
+ sha512 = "nlmIwoRoCkMveFCbELpysuNtGc5wEdVZLKJGbpgGh4H6JUPtpRKSY5oNBIM8xLtCqPTTmd0l9xPLkITZnFO2cw==";
};
};
- "@aws-sdk/hash-node-3.193.0" = {
+ "@aws-sdk/hash-node-3.201.0" = {
name = "_at_aws-sdk_slash_hash-node";
packageName = "@aws-sdk/hash-node";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.193.0.tgz";
- sha512 = "O2SLPVBjrCUo+4ouAdRUoHBYsyurO9LcjNZNYD7YQOotBTbVFA3cx7kTZu+K4B6kX7FDaGbqbE1C/T1/eg/r+w==";
+ url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.201.0.tgz";
+ sha512 = "WJsMZg5/TMoWnLM+0NuwLwFzHsi89Bi9J1Dt7JdJHXFLoEZV54FEz1PK/Sq5NOldhVljpXQwWOB2dHA2wxFztg==";
};
};
- "@aws-sdk/hash-stream-node-3.193.0" = {
+ "@aws-sdk/hash-stream-node-3.201.0" = {
name = "_at_aws-sdk_slash_hash-stream-node";
packageName = "@aws-sdk/hash-stream-node";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.193.0.tgz";
- sha512 = "lNQwS76zd2RBoIDV0eEd82I8IfTPgAH+/ZLW+TzOx7WoWcvVh7cWEEjJyiq/Pc0Pu6W9lgIcMkjOh8+4ejZeQg==";
+ url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.201.0.tgz";
+ sha512 = "nagsIlflHlFNswa6XQfpH7/G0OkKu8t2BhZ5NnNzPCx56kcY2asztwBTEeRJEGu8FaaHhUXbVuWi746AK6PHSQ==";
};
};
- "@aws-sdk/invalid-dependency-3.193.0" = {
+ "@aws-sdk/invalid-dependency-3.201.0" = {
name = "_at_aws-sdk_slash_invalid-dependency";
packageName = "@aws-sdk/invalid-dependency";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.193.0.tgz";
- sha512 = "54DCknekLwJAI1os76XJ8XCzfAH7BGkBGtlWk5WCNkZTfj3rf5RUiXz4uoKUMWE1rZmyMDoDDS1PBo+yTVKW5w==";
+ url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.201.0.tgz";
+ sha512 = "f/zgntOfIozNyKSaG9dvHjjBaR3y20kYNswMYkSuCM2NIT5LpyHiiq5I11TwaocatUFcDztWpcsv7vHpIgI5Ig==";
};
};
- "@aws-sdk/is-array-buffer-3.188.0" = {
+ "@aws-sdk/is-array-buffer-3.201.0" = {
name = "_at_aws-sdk_slash_is-array-buffer";
packageName = "@aws-sdk/is-array-buffer";
- version = "3.188.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/is-array-buffer/-/is-array-buffer-3.188.0.tgz";
- sha512 = "n69N4zJZCNd87Rf4NzufPzhactUeM877Y0Tp/F3KiHqGeTnVjYUa4Lv1vLBjqtfjYb2HWT3NKlYn5yzrhaEwiQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/is-array-buffer/-/is-array-buffer-3.201.0.tgz";
+ sha512 = "UPez5qLh3dNgt0DYnPD/q0mVJY84rA17QE26hVNOW3fAji8W2wrwrxdacWOxyXvlxWsVRcKmr+lay1MDqpAMfg==";
};
};
- "@aws-sdk/md5-js-3.193.0" = {
+ "@aws-sdk/md5-js-3.201.0" = {
name = "_at_aws-sdk_slash_md5-js";
packageName = "@aws-sdk/md5-js";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.193.0.tgz";
- sha512 = "ifoCUGltLVGd3IN32SbKEYTREjeLBCuPVr+adjSyTrM+dZ2cIUrhnaid5KL0srMO/rgNwktDqVnxLdi90Sa2Uw==";
+ url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.201.0.tgz";
+ sha512 = "dhbBzS3GPcz1uOfhQG6g+XDKpCa45p5myRWUiJsyiUJ8xsrDAQLzF70aCA3KzTrkLOszQdovZ9mtKcJ9rbjkrw==";
};
};
- "@aws-sdk/middleware-bucket-endpoint-3.193.0" = {
+ "@aws-sdk/middleware-bucket-endpoint-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-bucket-endpoint";
packageName = "@aws-sdk/middleware-bucket-endpoint";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.193.0.tgz";
- sha512 = "0wZWsgwSKghPFpE0B8togI64uMcjj7HIZoHGSsFUjuwr1vXMQm1pcR4ScJ7JAGWsuvXmkDtY0382rQOdc58hnA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.201.0.tgz";
+ sha512 = "ZZp3YwkEaPqrdL46WzYOMWdBixaVDG0crCdoyBNw/3cI+4bFcsgFp369mqDDmRj3cuJKV4QNSRjlr2ElTz65dQ==";
};
};
- "@aws-sdk/middleware-content-length-3.193.0" = {
+ "@aws-sdk/middleware-content-length-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-content-length";
packageName = "@aws-sdk/middleware-content-length";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.193.0.tgz";
- sha512 = "em0Sqo7O7DFOcVXU460pbcYuIjblDTZqK2YE62nQ0T+5Nbj+MSjuoite+rRRdRww9VqBkUROGKON45bUNjogtQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.201.0.tgz";
+ sha512 = "p4G9AtdrKO8A3Z4RyZiy0isEYwuge7bQRBS7UzcGkcIOhJONq2pcM+gRZYz+NWvfYYNWUg5uODsFQfU8342yKg==";
};
};
- "@aws-sdk/middleware-endpoint-3.193.0" = {
+ "@aws-sdk/middleware-endpoint-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-endpoint";
packageName = "@aws-sdk/middleware-endpoint";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-endpoint/-/middleware-endpoint-3.193.0.tgz";
- sha512 = "Inbpt7jcHGvzF7UOJOCxx9wih0+eAQYERikokidWJa7M405EJpVYq1mGbeOcQUPANU3uWF1AObmUUFhbkriHQw==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-endpoint/-/middleware-endpoint-3.201.0.tgz";
+ sha512 = "F3JlXo5GusbeZR956hA9VxmDxUeg77Xh6o8fveAE2+G4Bjcb1iq9jPNlw6A14vDj3oTKenv2LLnjL2OIfl6hRA==";
};
};
- "@aws-sdk/middleware-expect-continue-3.193.0" = {
+ "@aws-sdk/middleware-expect-continue-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-expect-continue";
packageName = "@aws-sdk/middleware-expect-continue";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.193.0.tgz";
- sha512 = "9VME6p1SLaXP49SHPsfCAd0m45W2XgAtD13bLPgqW80zWpD6OwcYER2LvqDJch9rm9fX9IB19xRqrpiJx8imfw==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.201.0.tgz";
+ sha512 = "tpNLdHpwgWAvoMicUARld5MwQ2B6iKGW6vN1Z1si9LTJWGtu8ZXAWACuUDLxC+6A1mDkAcbEc7oy4ABjFldUqA==";
};
};
- "@aws-sdk/middleware-flexible-checksums-3.193.0" = {
+ "@aws-sdk/middleware-flexible-checksums-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-flexible-checksums";
packageName = "@aws-sdk/middleware-flexible-checksums";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.193.0.tgz";
- sha512 = "eMnziJ3WCTu07A47Xv7p9ntBv02j3PsB/+ficwDiG9AUA33dZDdoHS1D1JE7WfQJLrK5mFNUKRXGEGlhZGC9Gw==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.201.0.tgz";
+ sha512 = "InmDcMeaBu1QQ9oS+85eq+hJWTZjYUe9QK2f6S035Tka9FBee4kI8eU61ImNit5FsFsw+POcVGmjYukeXsB4QA==";
};
};
- "@aws-sdk/middleware-host-header-3.193.0" = {
+ "@aws-sdk/middleware-host-header-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-host-header";
packageName = "@aws-sdk/middleware-host-header";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.193.0.tgz";
- sha512 = "aegzj5oRWd//lmfmkzRmgG2b4l3140v8Ey4QkqCxcowvAEX5a7rh23yuKaGtmiePwv2RQalCKz+tN6JXCm8g6Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.201.0.tgz";
+ sha512 = "7KNzdV7nFcKAoahvgGAlzsOq9FFDsU5h3w2iPtVdJhz6ZRDH/2v6WFeUCji+UNZip36gFfMPivoO8Y5smb5r/A==";
};
};
- "@aws-sdk/middleware-location-constraint-3.193.0" = {
+ "@aws-sdk/middleware-location-constraint-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-location-constraint";
packageName = "@aws-sdk/middleware-location-constraint";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.193.0.tgz";
- sha512 = "Z084OP+nG95DDaHehk8nYDoQQUaPe02IvQ6U5ZMSAMNTKxwIBn1wRrRAgYfnH1zSpAe3cEz27sF+UPRnafeLjQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.201.0.tgz";
+ sha512 = "3QL6rM/7Qw0rIqRRI7hQJ6YupR1EXbyhrGQC5nMoZSZ/dQkGkYQLQJmwQDc4yadkJEGE8E1k2yQN0dF65PnJDA==";
};
};
- "@aws-sdk/middleware-logger-3.193.0" = {
+ "@aws-sdk/middleware-logger-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-logger";
packageName = "@aws-sdk/middleware-logger";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.193.0.tgz";
- sha512 = "D/h1pU5tAcyJpJ8ZeD1Sta0S9QZPcxERYRBiJdEl8VUrYwfy3Cl1WJedVOmd5nG73ZLRSyHeXHewb/ohge3yKQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.201.0.tgz";
+ sha512 = "kYLsa9x3oUJxYU7V5KOO50Kl7b0kk+I4ltkrdarLvvXcVI7ZXmWHzHLT2dkUhj8S0ceVdi0FYHVPJ3GoE8re4A==";
};
};
- "@aws-sdk/middleware-recursion-detection-3.193.0" = {
+ "@aws-sdk/middleware-recursion-detection-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-recursion-detection";
packageName = "@aws-sdk/middleware-recursion-detection";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.193.0.tgz";
- sha512 = "fMWP76Q1GOb/9OzS1arizm6Dbfo02DPZ6xp7OoAN3PS6ybH3Eb47s/gP3jzgBPAITQacFj4St/4a06YWYrN3NA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.201.0.tgz";
+ sha512 = "NGOr+n559ZcJLdFoJR8LNGdrOJFIp2BTuWEDYeicNdNb0bETTXrkzcfT1BRhV9CWqCDmjFvjdrzbhS0cw/UUGA==";
};
};
- "@aws-sdk/middleware-retry-3.193.0" = {
+ "@aws-sdk/middleware-retry-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-retry";
packageName = "@aws-sdk/middleware-retry";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.193.0.tgz";
- sha512 = "zTQkHLBQBJi6ns655WYcYLyLPc1tgbEYU080Oc8zlveLUqoDn1ogkcmNhG7XMeQuBvWZBYN7J3/wFaXlDzeCKg==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.201.0.tgz";
+ sha512 = "4jQjSKCpSc4oB1X9nNq4FbIAwQrr+mvmUSmg/oe2Llf42Ak1G9gg3rNTtQdfzA/wNMlL4ZFfF5Br+uz06e1hnQ==";
};
};
- "@aws-sdk/middleware-sdk-s3-3.193.0" = {
+ "@aws-sdk/middleware-sdk-s3-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-sdk-s3";
packageName = "@aws-sdk/middleware-sdk-s3";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.193.0.tgz";
- sha512 = "SynIfwLxXhMKEK7cR6xWQ4WuMCZt7CtyN3WMYN5ywwhR3nOTndrYfX/+RjFRStvad17Blj32hZXO74wMArN1vA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.201.0.tgz";
+ sha512 = "IZGFWevHMQnyDnJTK2MponaSuFbHkj7z7MYX964hC0qoJEfED+rYPYIhUIPjZm5RiQq34MDQPWHLkNQLf9HnPg==";
};
};
- "@aws-sdk/middleware-sdk-sts-3.193.0" = {
+ "@aws-sdk/middleware-sdk-sts-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-sdk-sts";
packageName = "@aws-sdk/middleware-sdk-sts";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.193.0.tgz";
- sha512 = "TafiDkeflUsnbNa89TLkDnAiRRp1gAaZLDAjt75AzriRKZnhtFfYUXWb+qAuN50T+CkJ/gZI9LHDZL5ogz/HxQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.201.0.tgz";
+ sha512 = "clZuXcoN0mAP4JH5C6pW5+0tdF25+fpFJqE7GNRjjH/NYNk6ImVI0Kq2espEWwVBuaS0/chTDK3b+pK8YOWdhw==";
};
};
- "@aws-sdk/middleware-serde-3.193.0" = {
+ "@aws-sdk/middleware-serde-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-serde";
packageName = "@aws-sdk/middleware-serde";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.193.0.tgz";
- sha512 = "dH93EJYVztY+ZDPzSMRi9LfAZfKO+luH62raNy49hlNa4jiyE1Tc/+qwlmOEpfGsrtcZ9TgsON1uFF9sgBXXaA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.201.0.tgz";
+ sha512 = "Z7AzIuqEDvsZmp80zeT1oYxsoB8uQZby20Z8kF6/vNoq3sIzaGf/wHeNn0p+Vgo2auGSbZcVUZKoDptQLSLwIQ==";
};
};
- "@aws-sdk/middleware-signing-3.193.0" = {
+ "@aws-sdk/middleware-signing-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-signing";
packageName = "@aws-sdk/middleware-signing";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.193.0.tgz";
- sha512 = "obBoELGPf5ikvHYZwbzllLeuODiokdDfe92Ve2ufeOa/d8+xsmbqNzNdCTLNNTmr1tEIaEE7ngZVTOiHqAVhyw==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.201.0.tgz";
+ sha512 = "08ri5+mB28tva9RjVIXFcUP5lRTx+Pj8C2HYqF2GL5H3uAo+h3RQ++fEG1uwUMLf7tCEFivcw6SHA1KmCnB7+w==";
};
};
- "@aws-sdk/middleware-ssec-3.193.0" = {
+ "@aws-sdk/middleware-ssec-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-ssec";
packageName = "@aws-sdk/middleware-ssec";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.193.0.tgz";
- sha512 = "ZpvD5Zpl3ocLXNFYdkSMxiDW4QyL/6XRwDfeSqXy8iWhVs/WmES2W+KWBRNh6K8mp5/ZDuycwLWeAYFNqZLUaA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.201.0.tgz";
+ sha512 = "o1OUjVhtXeFbNyNijw4NPu/2xcA2SqqGNg0e5TP0j4HKfZ1S/QVKVCenx+9dlwlElW0tAQxL4bsNGNWOar3FTA==";
};
};
- "@aws-sdk/middleware-stack-3.193.0" = {
+ "@aws-sdk/middleware-stack-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-stack";
packageName = "@aws-sdk/middleware-stack";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.193.0.tgz";
- sha512 = "Ix5d7gE6bZwFNIVf0dGnjYuymz1gjitNoAZDPpv1nEZlUMek/jcno5lmzWFzUZXY/azpbIyaPwq/wm/c69au5A==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.201.0.tgz";
+ sha512 = "lqHYSBP5FBxzA5w5XiYYYpfXabFzleXonqRkqZts1tapNJ4sOd+itiKG8JoNP7LDOwJ8qxNW/a33/gQeh3wkwQ==";
};
};
- "@aws-sdk/middleware-user-agent-3.193.0" = {
+ "@aws-sdk/middleware-user-agent-3.201.0" = {
name = "_at_aws-sdk_slash_middleware-user-agent";
packageName = "@aws-sdk/middleware-user-agent";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.193.0.tgz";
- sha512 = "0vT6F9NwYQK7ARUUJeHTUIUPnupsO3IbmjHSi1+clkssFlJm2UfmSGeafiWe4AYH3anATTvZEtcxX5DZT/ExbA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.201.0.tgz";
+ sha512 = "/rYZ93WN1gDJudXis/0382CEoTqRa4qZJA608u2EPWs5aiMocUrm7pjH5XvKm2OYX8K/lyaMSBvL2OTIMzXGaQ==";
};
};
- "@aws-sdk/node-config-provider-3.193.0" = {
+ "@aws-sdk/node-config-provider-3.201.0" = {
name = "_at_aws-sdk_slash_node-config-provider";
packageName = "@aws-sdk/node-config-provider";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.193.0.tgz";
- sha512 = "5RLdjQLH69ISRG8TX9klSLOpEySXxj+z9E9Em39HRvw0/rDcd8poCTADvjYIOqRVvMka0z/hm+elvUTIVn/DRw==";
+ url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.201.0.tgz";
+ sha512 = "JO0K2qPTYn+pPC7g8rWr1oueg9CqGCkYbINuAuz79vjToOLUQnZT9GiFm7QADe6J6RT1oGEKRQabNaJnp8cFpQ==";
};
};
- "@aws-sdk/node-http-handler-3.193.0" = {
+ "@aws-sdk/node-http-handler-3.201.0" = {
name = "_at_aws-sdk_slash_node-http-handler";
packageName = "@aws-sdk/node-http-handler";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.193.0.tgz";
- sha512 = "DP4BmFw64HOShgpAPEEMZedVnRmKKjHOwMEoXcnNlAkMXnYUFHiKvudYq87Q2AnSlT6OHkyMviB61gEvIk73dA==";
+ url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.201.0.tgz";
+ sha512 = "bWjXBd4WCiQcV4PwY+eFnlz9tZ4UiqfiJteav4MDt8YWkVlsVnR8RutmVSm3KZZjO2tJNSrla0ZWBebkNnI/Xg==";
};
};
- "@aws-sdk/property-provider-3.193.0" = {
+ "@aws-sdk/property-provider-3.201.0" = {
name = "_at_aws-sdk_slash_property-provider";
packageName = "@aws-sdk/property-provider";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.193.0.tgz";
- sha512 = "IaDR/PdZjKlAeSq2E/6u6nkPsZF9wvhHZckwH7uumq4ocWsWXFzaT+hKpV4YZPHx9n+K2YV4Gn/bDedpz99W1Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.201.0.tgz";
+ sha512 = "lVMP75VsYHIW04uYbkjA0I8Bb7b+aEj6PBBLdFoA22S0uCeJOD42OSr2Gtg2fToDGO7LQJw/K2D+LMCYKfZ3vQ==";
};
};
- "@aws-sdk/protocol-http-3.193.0" = {
+ "@aws-sdk/protocol-http-3.201.0" = {
name = "_at_aws-sdk_slash_protocol-http";
packageName = "@aws-sdk/protocol-http";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.193.0.tgz";
- sha512 = "r0wbTwFJyXq0uiImI6giqG3g/RO1N/y4wwPA7qr7OC+KXJ0NkyVxIf6e7Vx8h06aM1ATtngbwJaMP59kVCp85A==";
+ url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.201.0.tgz";
+ sha512 = "RdOc1elWFpj8MogxG87nkhtylw0a+OD7W8WFM+Gw4yJMkl7cwW42VIBFfb0+KCGZfIQltIeSLRvfe3WvVPyo7Q==";
};
};
- "@aws-sdk/querystring-builder-3.193.0" = {
+ "@aws-sdk/querystring-builder-3.201.0" = {
name = "_at_aws-sdk_slash_querystring-builder";
packageName = "@aws-sdk/querystring-builder";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.193.0.tgz";
- sha512 = "PRaK6649iw0UO45UjUoiUzFcOKXZb8pMjjFJpqALpEvdZT3twxqhlPXujT7GWPKrSwO4uPLNnyYEtPY82wx2vw==";
+ url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.201.0.tgz";
+ sha512 = "FgQnVHpYR19w/HmHEgWpykCn9tdogW0n45Ins6LBCo2aImDf9kBATD4xgN/F2rtogGuLGgu5LIIMHIOj1Tzs/w==";
};
};
- "@aws-sdk/querystring-parser-3.193.0" = {
+ "@aws-sdk/querystring-parser-3.201.0" = {
name = "_at_aws-sdk_slash_querystring-parser";
packageName = "@aws-sdk/querystring-parser";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.193.0.tgz";
- sha512 = "dGEPCe8SK4/td5dSpiaEI3SvT5eHXrbJWbLGyD4FL3n7WCGMy2xVWAB/yrgzD0GdLDjDa8L5vLVz6yT1P9i+hA==";
+ url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.201.0.tgz";
+ sha512 = "vS9Ljbqrwi0sIKYxgyZYJUN1AcE291hvuqwty9etgD2w/26SbWiMhjIW/fXJUOZjUvGKkYCpbivJYSzAGAuWfQ==";
};
};
- "@aws-sdk/s3-request-presigner-3.194.0" = {
+ "@aws-sdk/s3-request-presigner-3.202.0" = {
name = "_at_aws-sdk_slash_s3-request-presigner";
packageName = "@aws-sdk/s3-request-presigner";
- version = "3.194.0";
+ version = "3.202.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.194.0.tgz";
- sha512 = "WQIiOrNYGXbCKVwbYceyUOk8toPmpaOrWgjT9dkn9MhA3sExJUDPfwgQtqsmgG23TZd2VCcZhDgzSeZNhvqMHg==";
+ url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.202.0.tgz";
+ sha512 = "alI2qNWcnn9/hDwlrUHpyBwsvOAhXQ56izzFXysNYr2SFcyl4ZeiS8zd259snLQWHvFGe64QhFsnoToLPv4a9w==";
};
};
- "@aws-sdk/service-error-classification-3.193.0" = {
+ "@aws-sdk/service-error-classification-3.201.0" = {
name = "_at_aws-sdk_slash_service-error-classification";
packageName = "@aws-sdk/service-error-classification";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.193.0.tgz";
- sha512 = "bPnXVu8ErE1RfWVVQKc2TE7EuoImUi4dSPW9g80fGRzJdQNwXb636C+7OUuWvSDzmFwuBYqZza8GZjVd+rz2zQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.201.0.tgz";
+ sha512 = "Pfcfmurgq8UpM0rXco6FVblcruqN4Mo3TW8/yaXrbctWpmdNT/8v19fffQIIgk94TU8Vf/nPJ7E5DXL7MZr4Fw==";
};
};
- "@aws-sdk/shared-ini-file-loader-3.193.0" = {
+ "@aws-sdk/shared-ini-file-loader-3.201.0" = {
name = "_at_aws-sdk_slash_shared-ini-file-loader";
packageName = "@aws-sdk/shared-ini-file-loader";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.193.0.tgz";
- sha512 = "hnvZup8RSpFXfah7Rrn6+lQJnAOCO+OiDJ2R/iMgZQh475GRQpLbu3cPhCOkjB14vVLygJtW8trK/0+zKq93bQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.201.0.tgz";
+ sha512 = "Pbxk0TXep0yI8MnK7Prly6JuBm5Me9AITav8/zPEgTZ3fMhXhQhhiuQcuTCI9GeosSzoiu8VvK53oPtBZZFnXQ==";
};
};
- "@aws-sdk/signature-v4-3.193.0" = {
+ "@aws-sdk/signature-v4-3.201.0" = {
name = "_at_aws-sdk_slash_signature-v4";
packageName = "@aws-sdk/signature-v4";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.193.0.tgz";
- sha512 = "JEqqOB8wQZz6g1ERNUOIBFDFt8OJtz5G5Uh1CdkS5W66gyWnJEz/dE1hA2VTqqQwHGGEsIEV/hlzruU1lXsvFA==";
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.201.0.tgz";
+ sha512 = "zEHoG1/hzJq169slggkPy1SN9YPWI78Bbe/MvHGYmCmQDspblu60JSBIbAatNqAxAmcWKc2HqpyGKjCkMG94ZA==";
};
};
- "@aws-sdk/signature-v4-crt-3.193.0" = {
+ "@aws-sdk/signature-v4-crt-3.201.0" = {
name = "_at_aws-sdk_slash_signature-v4-crt";
packageName = "@aws-sdk/signature-v4-crt";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.193.0.tgz";
- sha512 = "j9m41p52rt85vGTg/S1X8H90d4LmGixrawFAMYNXXwXe0fVlmkeWIyruCBOQCWwi/scjBl3mC/KVMrn3yH5qjg==";
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.201.0.tgz";
+ sha512 = "msjr54b3/8FuWApGQ8Sk1GLIbcbiTX68ihhJTY7URc+mvnuVOq7Q6bbhxksgTLVoe2naq6lX0H5wPRplAsbuNA==";
};
};
- "@aws-sdk/signature-v4-multi-region-3.193.0" = {
+ "@aws-sdk/signature-v4-multi-region-3.201.0" = {
name = "_at_aws-sdk_slash_signature-v4-multi-region";
packageName = "@aws-sdk/signature-v4-multi-region";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.193.0.tgz";
- sha512 = "NUlTZVu7kB9LWk290ofWhDGK3O2qTx+RtAoCQbifn5mLe2d0FPIe9CibPg+IY4rkbXTyEBbSs2FaxFjcAlW8JA==";
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.201.0.tgz";
+ sha512 = "5lVYYcWDwZd/q0mYPGn4zht08nIeeACYCM8HKYMwF7Qzcrne+RM0F4GU1ZWoId1pxjiX+xQSOUEeskx3A5wUtg==";
};
};
- "@aws-sdk/smithy-client-3.193.0" = {
+ "@aws-sdk/smithy-client-3.201.0" = {
name = "_at_aws-sdk_slash_smithy-client";
packageName = "@aws-sdk/smithy-client";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.193.0.tgz";
- sha512 = "BY0jhfW76vyXr7ODMaKO3eyS98RSrZgOMl6DTQV9sk7eFP/MPVlG7p7nfX/CDIgPBIO1z0A0i2CVIzYur9uGgQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.201.0.tgz";
+ sha512 = "cL87Jgxczee8YFkWGWKQ2Ze0vjn4+eCa1kDvEYMCOQvNujTuFgatXLgije5a7nVkSnL9WLoIP7Y7fsBGrKfMnQ==";
};
};
- "@aws-sdk/types-3.193.0" = {
+ "@aws-sdk/types-3.201.0" = {
name = "_at_aws-sdk_slash_types";
packageName = "@aws-sdk/types";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.193.0.tgz";
- sha512 = "LV/wcPolRZKORrcHwkH59QMCkiDR5sM+9ZtuTxvyUGG2QFW/kjoxs08fUF10OWNJMrotBI+czDc5QJRgN8BlAw==";
+ url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.201.0.tgz";
+ sha512 = "RCQj2pQyHD330Jd4c5CHJ87k2ZqC3Mmtl6nhwH1dy3vbnGUpc3q+3yinOKoTAY934kIa7ia32Y/2EjuyHxaj1A==";
};
};
- "@aws-sdk/url-parser-3.193.0" = {
+ "@aws-sdk/url-parser-3.201.0" = {
name = "_at_aws-sdk_slash_url-parser";
packageName = "@aws-sdk/url-parser";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.193.0.tgz";
- sha512 = "hwD1koJlOu2a6GvaSbNbdo7I6a3tmrsNTZr8bCjAcbqpc5pDThcpnl/Uaz3zHmMPs92U8I6BvWoK6pH8By06qw==";
+ url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.201.0.tgz";
+ sha512 = "V15aqj0tj4Y79VpuIdHUvX4Nvn4hYPB0RAn/qg5CCComIl0doLOirAQtW1MOBOyctdRlD9Uv7d1QdPLzJZMHjQ==";
};
};
- "@aws-sdk/util-arn-parser-3.188.0" = {
+ "@aws-sdk/util-arn-parser-3.201.0" = {
name = "_at_aws-sdk_slash_util-arn-parser";
packageName = "@aws-sdk/util-arn-parser";
- version = "3.188.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.188.0.tgz";
- sha512 = "q4nZzt/g3sRY9a3sj1PaNFwql5bXfKSW4fRy0zLdbZHcYdgq2oQfVsJTIlL9lUNjifkXiIsmk61Q16JExtrLyw==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.201.0.tgz";
+ sha512 = "FNZsr9ofEf3Ybglgj8ElhuXnHnSFCF1ctT/zGPwNc+7XTMROO36uPIxP22J/GTyMpf4Bx48rXs8JTFvu3P3hig==";
};
};
"@aws-sdk/util-base64-browser-3.188.0" = {
@@ -1165,13 +1165,13 @@ let
sha512 = "qlH+5NZBLiyKziL335BEPedYxX6j+p7KFRWXvDQox9S+s+gLCayednpK+fteOhBenCcR9fUZOVuAPScy1I8qCg==";
};
};
- "@aws-sdk/util-base64-node-3.188.0" = {
+ "@aws-sdk/util-base64-node-3.201.0" = {
name = "_at_aws-sdk_slash_util-base64-node";
packageName = "@aws-sdk/util-base64-node";
- version = "3.188.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.188.0.tgz";
- sha512 = "r1dccRsRjKq+OhVRUfqFiW3sGgZBjHbMeHLbrAs9jrOjU2PTQ8PSzAXLvX/9lmp7YjmX17Qvlsg0NCr1tbB9OA==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.201.0.tgz";
+ sha512 = "ydZqNpB3l5kiicInpPDExPb5xHI7uyVIa1vMupnuIrJ412iNb0F2+K8LlFynzw6fSJShVKnqFcWOYRA96z1iIw==";
};
};
"@aws-sdk/util-body-length-browser-3.188.0" = {
@@ -1183,148 +1183,148 @@ let
sha512 = "8VpnwFWXhnZ/iRSl9mTf+VKOX9wDE8QtN4bj9pBfxwf90H1X7E8T6NkiZD3k+HubYf2J94e7DbeHs7fuCPW5Qg==";
};
};
- "@aws-sdk/util-body-length-node-3.188.0" = {
+ "@aws-sdk/util-body-length-node-3.201.0" = {
name = "_at_aws-sdk_slash_util-body-length-node";
packageName = "@aws-sdk/util-body-length-node";
- version = "3.188.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.188.0.tgz";
- sha512 = "XwqP3vxk60MKp4YDdvDeCD6BPOiG2e+/Ou4AofZOy5/toB6NKz2pFNibQIUg2+jc7mPMnGnvOW3MQEgSJ+gu/Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.201.0.tgz";
+ sha512 = "q+gwQoLn/DOwirb2hgZJeEwo1D3vLhoD6FfSV42Ecfvtb4jHnWReWMHguujfCubuDgZCrMEvYQzuocS75HHsbA==";
};
};
- "@aws-sdk/util-buffer-from-3.188.0" = {
+ "@aws-sdk/util-buffer-from-3.201.0" = {
name = "_at_aws-sdk_slash_util-buffer-from";
packageName = "@aws-sdk/util-buffer-from";
- version = "3.188.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.188.0.tgz";
- sha512 = "NX1WXZ8TH20IZb4jPFT2CnLKSqZWddGxtfiWxD9M47YOtq/SSQeR82fhqqVjJn4P8w2F5E28f+Du4ntg/sGcxA==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.201.0.tgz";
+ sha512 = "s6Wjltd9vU+vR3n0pqSPmNDcrrkrVTdV4t7x2zz3nDsFKTI77iVNafDmuaUlOA/bIlpjCJqaWecoVrZmEKeR7A==";
};
};
- "@aws-sdk/util-config-provider-3.188.0" = {
+ "@aws-sdk/util-config-provider-3.201.0" = {
name = "_at_aws-sdk_slash_util-config-provider";
packageName = "@aws-sdk/util-config-provider";
- version = "3.188.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.188.0.tgz";
- sha512 = "LBA7tLbi7v4uvbOJhSnjJrxbcRifKK/1ZVK94JTV2MNSCCyNkFotyEI5UWDl10YKriTIUyf7o5cakpiDZ3O4xg==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.201.0.tgz";
+ sha512 = "cCRJlnRRP8vrLJomzJRBIyiyohsjJKmnIaQ9t0tAhGCywZbyjx6TlpYRZYfVWo+MwdF1Pi8ZScTrFPW0JuBOIQ==";
};
};
- "@aws-sdk/util-create-request-3.193.0" = {
+ "@aws-sdk/util-create-request-3.201.0" = {
name = "_at_aws-sdk_slash_util-create-request";
packageName = "@aws-sdk/util-create-request";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.193.0.tgz";
- sha512 = "cEuWTB47dRvqBrHcaJTC+EV2EUbjKujNoa5uPPDV8R/LBTWi68mzlQSxPzRuhYHDbb7nxmEMMgwgKQBbC32J6Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.201.0.tgz";
+ sha512 = "bzOy/hW/j6lIn5ulXwcOHKfA1BrlqLXOIt95ZdT6TCsi+sXFACAS9ns0mrEUTMPXCLGEQM6lIW0tVmh9a1BMSg==";
};
};
- "@aws-sdk/util-defaults-mode-browser-3.193.0" = {
+ "@aws-sdk/util-defaults-mode-browser-3.201.0" = {
name = "_at_aws-sdk_slash_util-defaults-mode-browser";
packageName = "@aws-sdk/util-defaults-mode-browser";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.193.0.tgz";
- sha512 = "9riQKFrSJcsNAMnPA/3ltpSxNykeO20klE/UKjxEoD7UWjxLwsPK22UJjFwMRaHoAFcZD0LU/SgPxbC0ktCYCg==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.201.0.tgz";
+ sha512 = "skRMAM+xrV/sDvvtHC81ExEKQEiZFaRrRdUT39fBX1SpGnFTo2wpv7XK+rAW2XopGgnLPytXLQD97Kub79o4zA==";
};
};
- "@aws-sdk/util-defaults-mode-node-3.193.0" = {
+ "@aws-sdk/util-defaults-mode-node-3.201.0" = {
name = "_at_aws-sdk_slash_util-defaults-mode-node";
packageName = "@aws-sdk/util-defaults-mode-node";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.193.0.tgz";
- sha512 = "occQmckvPRiM4YQIZnulfKKKjykGKWloa5ByGC5gOEGlyeP9zJpfs4zc/M2kArTAt+d2r3wkBtsKe5yKSlVEhA==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.201.0.tgz";
+ sha512 = "9N5LXRhxigbkbEcjQ4nNXHuQxp0VFlbc2/5wbcuPjIKX/OROiQI4mYQ6nuSKk7eku5sNFb9FtEHeD/RZo8od6Q==";
};
};
- "@aws-sdk/util-endpoints-3.194.0" = {
+ "@aws-sdk/util-endpoints-3.202.0" = {
name = "_at_aws-sdk_slash_util-endpoints";
packageName = "@aws-sdk/util-endpoints";
- version = "3.194.0";
+ version = "3.202.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.194.0.tgz";
- sha512 = "G+DGC3Zx0GnQpt4DpRmVcCfliNxf3nwBtZ3JIdCptkUZgDEpLYzOfjbf3bUyPTQh+oGHeqfnVAF+rFjTnYql3A==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.202.0.tgz";
+ sha512 = "sNees5uDp7nfEbvzaA1DAHqoEvEb9ZOkdNH5gcj/FMBETbr00YtsuXsTZogTHQsX/otRTiudZBE3iH7R4SLSAQ==";
};
};
- "@aws-sdk/util-format-url-3.193.0" = {
+ "@aws-sdk/util-format-url-3.201.0" = {
name = "_at_aws-sdk_slash_util-format-url";
packageName = "@aws-sdk/util-format-url";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.193.0.tgz";
- sha512 = "GSoH093CXU4RKHTWiVzN8LScdmp8U0aQpEvzMBVsbl+BrzKeD2Q7wyO4iJIIx4phlLZHSGEQw4Zr0D3UPGzMwg==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.201.0.tgz";
+ sha512 = "hoGPnhB7qRbTMf0o1vUtG+q1Bu7YTOZEt8yMA9tjC6b4Je3ZWGu4+Tx+d6zUTPt06n37Ek7oDIsU8KG/hcRYew==";
};
};
- "@aws-sdk/util-hex-encoding-3.188.0" = {
+ "@aws-sdk/util-hex-encoding-3.201.0" = {
name = "_at_aws-sdk_slash_util-hex-encoding";
packageName = "@aws-sdk/util-hex-encoding";
- version = "3.188.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.188.0.tgz";
- sha512 = "QyWovTtjQ2RYxqVM+STPh65owSqzuXURnfoof778spyX4iQ4z46wOge1YV2ZtwS8w5LWd9eeVvDrLu5POPYOnA==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.201.0.tgz";
+ sha512 = "7t1vR1pVxKx0motd3X9rI3m/xNp78p3sHtP5yo4NP4ARpxyJ0fokBomY8ScaH2D/B+U5o9ARxldJUdMqyBlJcA==";
};
};
- "@aws-sdk/util-locate-window-3.188.0" = {
+ "@aws-sdk/util-locate-window-3.201.0" = {
name = "_at_aws-sdk_slash_util-locate-window";
packageName = "@aws-sdk/util-locate-window";
- version = "3.188.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.188.0.tgz";
- sha512 = "SxobBVLZkkLSawTCfeQnhVX3Azm9O+C2dngZVe1+BqtF8+retUbVTs7OfYeWBlawVkULKF2e781lTzEHBBjCzw==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.201.0.tgz";
+ sha512 = "hPJgifWh/rADabLAk1C9xXA2B3O4NUmbU58KgBRgC1HksiiHGFVZObB5fkBH8US/XV2jwORkpSf4OhretXQuKg==";
};
};
- "@aws-sdk/util-middleware-3.193.0" = {
+ "@aws-sdk/util-middleware-3.201.0" = {
name = "_at_aws-sdk_slash_util-middleware";
packageName = "@aws-sdk/util-middleware";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.193.0.tgz";
- sha512 = "+aC6pmkcGgpxaMWCH/FXTsGWl2W342oQGs1OYKGi+W8z9UguXrqamWjdkdMqgunvj9qOEG2KBMKz1FWFFZlUyA==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.201.0.tgz";
+ sha512 = "iAitcEZo17IyKn4ku1IBgtomr25esu5OuSRjw5Or4bNOeqXB0w50cItf/9qft8LIhbvBEAUtNAYXvqNzvhTZdQ==";
};
};
- "@aws-sdk/util-stream-browser-3.193.0" = {
+ "@aws-sdk/util-stream-browser-3.201.0" = {
name = "_at_aws-sdk_slash_util-stream-browser";
packageName = "@aws-sdk/util-stream-browser";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.193.0.tgz";
- sha512 = "+KaNWRsRiRodQYlGGuYHgjbEa6Qu4fOTrG3NXEBDYIEGH705OCnlLlkvFRWMcDbTPuJN7c4N4jB89KF3c19hsg==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.201.0.tgz";
+ sha512 = "auCnohsG9inCcpZYk+oNst3oQIHy0lXIz/B/upAzx7IBiY2qtQLk4up3u+I38BRHvcfiSY2ly71OJbBrD/fQbw==";
};
};
- "@aws-sdk/util-stream-node-3.193.0" = {
+ "@aws-sdk/util-stream-node-3.201.0" = {
name = "_at_aws-sdk_slash_util-stream-node";
packageName = "@aws-sdk/util-stream-node";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.193.0.tgz";
- sha512 = "XwcXpa1tYuj/0CLVg3C64YT5JDLykc0NrV23mje0hCwBgteG0w6pu5F5M1zXWofSVNOVYERYtmdmUAvx7XPm5w==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.201.0.tgz";
+ sha512 = "RWU+ZJHKL4lYZBeNIpHo5EuNaYRDkJeytP8cbBQn+wuzDz19mGF2uikK+JaQdNd5HG9lovDP66SJ8gJ0WBnwNw==";
};
};
- "@aws-sdk/util-uri-escape-3.188.0" = {
+ "@aws-sdk/util-uri-escape-3.201.0" = {
name = "_at_aws-sdk_slash_util-uri-escape";
packageName = "@aws-sdk/util-uri-escape";
- version = "3.188.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.188.0.tgz";
- sha512 = "4Y6AYZMT483Tiuq8dxz5WHIiPNdSFPGrl6tRTo2Oi2FcwypwmFhqgEGcqxeXDUJktvaCBxeA08DLr/AemVhPCg==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.201.0.tgz";
+ sha512 = "TeTWbGx4LU2c5rx0obHeDFeO9HvwYwQtMh1yniBz00pQb6Qt6YVOETVQikRZ+XRQwEyCg/dA375UplIpiy54mA==";
};
};
- "@aws-sdk/util-user-agent-browser-3.193.0" = {
+ "@aws-sdk/util-user-agent-browser-3.201.0" = {
name = "_at_aws-sdk_slash_util-user-agent-browser";
packageName = "@aws-sdk/util-user-agent-browser";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.193.0.tgz";
- sha512 = "1EkGYsUtOMEyJG/UBIR4PtmO3lVjKNoUImoMpLtEucoGbWz5RG9zFSwLevjFyFs5roUBFlxkSpTMo8xQ3aRzQg==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.201.0.tgz";
+ sha512 = "iL2gyz7GuUVtZcMZpqvfxdFrl9hc28qpagymmJ/w2yhN86YNPHdK8Sx1Yo6VxNGVDCCWGb7tHXf7VP+U4Yv/Lg==";
};
};
- "@aws-sdk/util-user-agent-node-3.193.0" = {
+ "@aws-sdk/util-user-agent-node-3.201.0" = {
name = "_at_aws-sdk_slash_util-user-agent-node";
packageName = "@aws-sdk/util-user-agent-node";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.193.0.tgz";
- sha512 = "G/2/1cSgsxVtREAm8Eq8Duib5PXzXknFRHuDpAxJ5++lsJMXoYMReS278KgV54cojOkAVfcODDTqmY3Av0WHhQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.201.0.tgz";
+ sha512 = "6lhhvwB3AZSISnYQpDGdlyTrzfYK2P9QYjy7vZEBRd9TSOaggiFICXe03ZvZfVOSeg0EInlMKn1fIHzPUHRuHQ==";
};
};
"@aws-sdk/util-utf8-browser-3.188.0" = {
@@ -1336,31 +1336,31 @@ let
sha512 = "jt627x0+jE+Ydr9NwkFstg3cUvgWh56qdaqAMDsqgRlKD21md/6G226z/Qxl7lb1VEW2LlmCx43ai/37Qwcj2Q==";
};
};
- "@aws-sdk/util-utf8-node-3.188.0" = {
+ "@aws-sdk/util-utf8-node-3.201.0" = {
name = "_at_aws-sdk_slash_util-utf8-node";
packageName = "@aws-sdk/util-utf8-node";
- version = "3.188.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.188.0.tgz";
- sha512 = "hCgP4+C0Lekjpjt2zFJ2R/iHes5sBGljXa5bScOFAEkRUc0Qw0VNgTv7LpEbIOAwGmqyxBoCwBW0YHPW1DfmYQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.201.0.tgz";
+ sha512 = "A+bJFR/1rHYOJg137E69L1sX0I+LH+xf9ZjMXG9BVO0hSo7yDPoJVpHrzTJyOc3tuRITjIGBv9Qi4TKcoOSi1A==";
};
};
- "@aws-sdk/util-waiter-3.193.0" = {
+ "@aws-sdk/util-waiter-3.201.0" = {
name = "_at_aws-sdk_slash_util-waiter";
packageName = "@aws-sdk/util-waiter";
- version = "3.193.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.193.0.tgz";
- sha512 = "CGdTZqvZHzffaQ2lKYTAhNLssts2W0fFM8079zF6/4uuBmwr8oDxpGKtoaMhI5zfyV1MtEp7P4JzEuH+xJ5oQg==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.201.0.tgz";
+ sha512 = "NE8+BkPDXq86oyVr9EKN1s+iN8GID8mhj6DbtEZKZES3fJ36xH7MldRylgCewgv1Qpd1W00M4c/mVvUx3zp7sg==";
};
};
- "@aws-sdk/xml-builder-3.188.0" = {
+ "@aws-sdk/xml-builder-3.201.0" = {
name = "_at_aws-sdk_slash_xml-builder";
packageName = "@aws-sdk/xml-builder";
- version = "3.188.0";
+ version = "3.201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.188.0.tgz";
- sha512 = "/Hah3gAtrBpEaDInX3eSS0nXw/IUeb+rWiGspXxb5O8bh5kyjQqeu8/sVJQlpOtq4aPDbMDmloH4k696qTqgbw==";
+ url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.201.0.tgz";
+ sha512 = "brRdB1wwMgjWEnOQsv7zSUhIQuh7DEicrfslAqHop4S4FtSI3GQAShpQqgOpMTNFYcpaWKmE/Y1MJmNY7xLCnw==";
};
};
"@azu/format-text-1.0.1" = {
@@ -1552,13 +1552,13 @@ let
sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==";
};
};
- "@babel/compat-data-7.19.4" = {
+ "@babel/compat-data-7.20.1" = {
name = "_at_babel_slash_compat-data";
packageName = "@babel/compat-data";
- version = "7.19.4";
+ version = "7.20.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.4.tgz";
- sha512 = "CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==";
+ url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz";
+ sha512 = "EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==";
};
};
"@babel/core-7.0.0" = {
@@ -1588,6 +1588,15 @@ let
sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==";
};
};
+ "@babel/eslint-parser-7.19.1" = {
+ name = "_at_babel_slash_eslint-parser";
+ packageName = "@babel/eslint-parser";
+ version = "7.19.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz";
+ sha512 = "AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==";
+ };
+ };
"@babel/generator-7.18.2" = {
name = "_at_babel_slash_generator";
packageName = "@babel/generator";
@@ -1597,13 +1606,13 @@ let
sha512 = "W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==";
};
};
- "@babel/generator-7.19.6" = {
+ "@babel/generator-7.20.1" = {
name = "_at_babel_slash_generator";
packageName = "@babel/generator";
- version = "7.19.6";
+ version = "7.20.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/generator/-/generator-7.19.6.tgz";
- sha512 = "oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA==";
+ url = "https://registry.npmjs.org/@babel/generator/-/generator-7.20.1.tgz";
+ sha512 = "u1dMdBUmA7Z0rBB97xh8pIhviK7oItYOkjbsCxTWMknyvbQRBwX7/gn4JXurRdirWMFh+ZtYARqkA6ydogVZpg==";
};
};
"@babel/helper-annotate-as-pure-7.18.6" = {
@@ -1624,13 +1633,13 @@ let
sha512 = "yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==";
};
};
- "@babel/helper-compilation-targets-7.19.3" = {
+ "@babel/helper-compilation-targets-7.20.0" = {
name = "_at_babel_slash_helper-compilation-targets";
packageName = "@babel/helper-compilation-targets";
- version = "7.19.3";
+ version = "7.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz";
- sha512 = "65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==";
+ url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz";
+ sha512 = "0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==";
};
};
"@babel/helper-create-class-features-plugin-7.19.0" = {
@@ -1768,13 +1777,13 @@ let
sha512 = "f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==";
};
};
- "@babel/helper-skip-transparent-expression-wrappers-7.18.9" = {
+ "@babel/helper-skip-transparent-expression-wrappers-7.20.0" = {
name = "_at_babel_slash_helper-skip-transparent-expression-wrappers";
packageName = "@babel/helper-skip-transparent-expression-wrappers";
- version = "7.18.9";
+ version = "7.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz";
- sha512 = "imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==";
+ url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz";
+ sha512 = "5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==";
};
};
"@babel/helper-split-export-declaration-7.18.6" = {
@@ -1822,13 +1831,13 @@ let
sha512 = "txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==";
};
};
- "@babel/helpers-7.19.4" = {
+ "@babel/helpers-7.20.1" = {
name = "_at_babel_slash_helpers";
packageName = "@babel/helpers";
- version = "7.19.4";
+ version = "7.20.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.4.tgz";
- sha512 = "G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==";
+ url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz";
+ sha512 = "J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==";
};
};
"@babel/highlight-7.18.6" = {
@@ -1840,13 +1849,13 @@ let
sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==";
};
};
- "@babel/node-7.19.1" = {
+ "@babel/node-7.20.0" = {
name = "_at_babel_slash_node";
packageName = "@babel/node";
- version = "7.19.1";
+ version = "7.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/node/-/node-7.19.1.tgz";
- sha512 = "gfxJNrawPso6kx7SwKfAdX1rEzVc09speJLFKrdxuZXGlve92pjbB3nJVmuwrxNN4+jvytj2zvliNXuW6uaSOw==";
+ url = "https://registry.npmjs.org/@babel/node/-/node-7.20.0.tgz";
+ sha512 = "FEWKq7XC2I4ci05L46B9ghJVZc5mkqx1UKtxed0BUq7jaw+8HbpwjF4nsE7I5A4iolIWlMXycGRal1CcAe0PZA==";
};
};
"@babel/parser-7.18.4" = {
@@ -1858,13 +1867,13 @@ let
sha512 = "FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==";
};
};
- "@babel/parser-7.19.6" = {
+ "@babel/parser-7.20.1" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.19.6";
+ version = "7.20.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.19.6.tgz";
- sha512 = "h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.20.1.tgz";
+ sha512 = "hp0AYxaZJhxULfM1zyp7Wgr+pSUKBcP3M+PHnSzWGdXOzg/kHWIgiUWARvubhUKGOEw3xqY4x+lyZ9ytBVcELw==";
};
};
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" = {
@@ -1885,13 +1894,13 @@ let
sha512 = "AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==";
};
};
- "@babel/plugin-proposal-async-generator-functions-7.19.1" = {
+ "@babel/plugin-proposal-async-generator-functions-7.20.1" = {
name = "_at_babel_slash_plugin-proposal-async-generator-functions";
packageName = "@babel/plugin-proposal-async-generator-functions";
- version = "7.19.1";
+ version = "7.20.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz";
- sha512 = "0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz";
+ sha512 = "Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==";
};
};
"@babel/plugin-proposal-class-properties-7.0.0" = {
@@ -1921,13 +1930,13 @@ let
sha512 = "+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==";
};
};
- "@babel/plugin-proposal-decorators-7.19.6" = {
+ "@babel/plugin-proposal-decorators-7.20.0" = {
name = "_at_babel_slash_plugin-proposal-decorators";
packageName = "@babel/plugin-proposal-decorators";
- version = "7.19.6";
+ version = "7.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.19.6.tgz";
- sha512 = "PKWforYpkVkogpOW0RaPuh7eQ7AoFgBJP+d87tQCRY2LVbvyGtfRM7RtrhCBsNgZb+2EY28SeWB6p2xe1Z5oAw==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.0.tgz";
+ sha512 = "vnuRRS20ygSxclEYikHzVrP9nZDFXaSzvJxGLQNAiBX041TmhS4hOUHWNIpq/q4muENuEP9XPJFXTNFejhemkg==";
};
};
"@babel/plugin-proposal-dynamic-import-7.18.6" = {
@@ -2137,13 +2146,13 @@ let
sha512 = "LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==";
};
};
- "@babel/plugin-syntax-import-assertions-7.18.6" = {
+ "@babel/plugin-syntax-import-assertions-7.20.0" = {
name = "_at_babel_slash_plugin-syntax-import-assertions";
packageName = "@babel/plugin-syntax-import-assertions";
- version = "7.18.6";
+ version = "7.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz";
- sha512 = "/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz";
+ sha512 = "IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==";
};
};
"@babel/plugin-syntax-json-strings-7.8.3" = {
@@ -2236,13 +2245,13 @@ let
sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==";
};
};
- "@babel/plugin-syntax-typescript-7.18.6" = {
+ "@babel/plugin-syntax-typescript-7.20.0" = {
name = "_at_babel_slash_plugin-syntax-typescript";
packageName = "@babel/plugin-syntax-typescript";
- version = "7.18.6";
+ version = "7.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz";
- sha512 = "mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==";
+ url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz";
+ sha512 = "rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==";
};
};
"@babel/plugin-transform-arrow-functions-7.18.6" = {
@@ -2272,13 +2281,13 @@ let
sha512 = "ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==";
};
};
- "@babel/plugin-transform-block-scoping-7.19.4" = {
+ "@babel/plugin-transform-block-scoping-7.20.0" = {
name = "_at_babel_slash_plugin-transform-block-scoping";
packageName = "@babel/plugin-transform-block-scoping";
- version = "7.19.4";
+ version = "7.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.19.4.tgz";
- sha512 = "934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.0.tgz";
+ sha512 = "sXOohbpHZSk7GjxK9b3dKB7CfqUD5DwOH+DggKzOQ7TXYP+RCSbRykfjQmn/zq+rBjycVRtLf9pYhAaEJA786w==";
};
};
"@babel/plugin-transform-classes-7.19.0" = {
@@ -2299,13 +2308,13 @@ let
sha512 = "+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==";
};
};
- "@babel/plugin-transform-destructuring-7.19.4" = {
+ "@babel/plugin-transform-destructuring-7.20.0" = {
name = "_at_babel_slash_plugin-transform-destructuring";
packageName = "@babel/plugin-transform-destructuring";
- version = "7.19.4";
+ version = "7.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.19.4.tgz";
- sha512 = "t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.0.tgz";
+ sha512 = "1dIhvZfkDVx/zn2S1aFwlruspTt4189j7fEkH0Y0VyuDM6bQt7bD6kLcz3l4IlLG+e5OReaBz9ROAbttRtUHqA==";
};
};
"@babel/plugin-transform-dotall-regex-7.18.6" = {
@@ -2443,13 +2452,13 @@ let
sha512 = "uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==";
};
};
- "@babel/plugin-transform-parameters-7.18.8" = {
+ "@babel/plugin-transform-parameters-7.20.1" = {
name = "_at_babel_slash_plugin-transform-parameters";
packageName = "@babel/plugin-transform-parameters";
- version = "7.18.8";
+ version = "7.20.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz";
- sha512 = "ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.1.tgz";
+ sha512 = "nDvKLrAvl+kf6BOy1UJ3MGwzzfTMgppxwiD2Jb4LO3xjYyZq30oQzDNJbCQpMdG9+j2IXHoiMrw5Cm/L6ZoxXQ==";
};
};
"@babel/plugin-transform-property-literals-7.18.6" = {
@@ -2596,13 +2605,13 @@ let
sha512 = "SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==";
};
};
- "@babel/plugin-transform-typescript-7.19.3" = {
+ "@babel/plugin-transform-typescript-7.20.0" = {
name = "_at_babel_slash_plugin-transform-typescript";
packageName = "@babel/plugin-transform-typescript";
- version = "7.19.3";
+ version = "7.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.19.3.tgz";
- sha512 = "z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.0.tgz";
+ sha512 = "xOAsAFaun3t9hCwZ13Qe7gq423UgMZ6zAgmLxeGGapFqlT/X3L5qT2btjiVLlFn7gWtMaVyceS5VxGAuKbgizw==";
};
};
"@babel/plugin-transform-unicode-escapes-7.18.10" = {
@@ -2731,6 +2740,15 @@ let
sha512 = "EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==";
};
};
+ "@babel/runtime-7.20.1" = {
+ name = "_at_babel_slash_runtime";
+ packageName = "@babel/runtime";
+ version = "7.20.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.1.tgz";
+ sha512 = "mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==";
+ };
+ };
"@babel/runtime-7.9.0" = {
name = "_at_babel_slash_runtime";
packageName = "@babel/runtime";
@@ -2749,13 +2767,13 @@ let
sha512 = "Yww0jXgolNtkhcK+Txo5JN+DjBpNmmAtD7G99HOebhEjBzjnACG09Tip9C8lSOF6PrhA56OeJWeOZduNJaKxBA==";
};
};
- "@babel/runtime-corejs3-7.19.6" = {
+ "@babel/runtime-corejs3-7.20.1" = {
name = "_at_babel_slash_runtime-corejs3";
packageName = "@babel/runtime-corejs3";
- version = "7.19.6";
+ version = "7.20.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.6.tgz";
- sha512 = "oWNn1ZlGde7b4i/3tnixpH9qI0bOAACiUs+KEES4UUCnsPjVWFlWdLV/iwJuPC2qp3EowbAqsm+0XqNwnwYhxA==";
+ url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz";
+ sha512 = "CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==";
};
};
"@babel/template-7.0.0" = {
@@ -2776,13 +2794,13 @@ let
sha512 = "TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==";
};
};
- "@babel/traverse-7.19.6" = {
+ "@babel/traverse-7.20.1" = {
name = "_at_babel_slash_traverse";
packageName = "@babel/traverse";
- version = "7.19.6";
+ version = "7.20.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.6.tgz";
- sha512 = "6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ==";
+ url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz";
+ sha512 = "d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==";
};
};
"@babel/types-7.18.4" = {
@@ -2794,40 +2812,40 @@ let
sha512 = "ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==";
};
};
- "@babel/types-7.19.4" = {
+ "@babel/types-7.20.0" = {
name = "_at_babel_slash_types";
packageName = "@babel/types";
- version = "7.19.4";
+ version = "7.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/types/-/types-7.19.4.tgz";
- sha512 = "M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==";
+ url = "https://registry.npmjs.org/@babel/types/-/types-7.20.0.tgz";
+ sha512 = "Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==";
};
};
- "@blueprintjs/colors-4.1.7" = {
+ "@blueprintjs/colors-4.1.8" = {
name = "_at_blueprintjs_slash_colors";
packageName = "@blueprintjs/colors";
- version = "4.1.7";
+ version = "4.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.7.tgz";
- sha512 = "4qmwwNabzJ6TbdWLjfVFqoCz6OPZpPDV6xvSmnEnS6tWSQ+bepi/ybzx3kKOGtNk1lu0tFDU6tnVti7uz23XaQ==";
+ url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.8.tgz";
+ sha512 = "J3N3PIBlmZS7+br+8KkR0yilGp74Fwp8SXfs0Bf4OGgLcqrBixqCqAs+YnpS2iOV0m2D22cZc8YsnPVdx0kH7w==";
};
};
- "@blueprintjs/core-4.11.4" = {
+ "@blueprintjs/core-4.11.6" = {
name = "_at_blueprintjs_slash_core";
packageName = "@blueprintjs/core";
- version = "4.11.4";
+ version = "4.11.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@blueprintjs/core/-/core-4.11.4.tgz";
- sha512 = "YgcOmCaCXapDkKaphXpR6/8qoTwdnxjquVvClcc6uX9vTHfvFdCX0Wm1rCpxkyI9SO+BUPc/MFjWcWhW+5nN4g==";
+ url = "https://registry.npmjs.org/@blueprintjs/core/-/core-4.11.6.tgz";
+ sha512 = "elgJ3BIT1007O5A+5KRM8+tIw6sy64h02tv4bQ1azjB+8DknZoSPakYlGKHLNezsh+h3u5EHPDVcskJQ+zxn7A==";
};
};
- "@blueprintjs/icons-4.8.0" = {
+ "@blueprintjs/icons-4.10.0" = {
name = "_at_blueprintjs_slash_icons";
packageName = "@blueprintjs/icons";
- version = "4.8.0";
+ version = "4.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-4.8.0.tgz";
- sha512 = "odvkqqbryiaRU5w914c42PgqaEVB/XxTRCH1/fieeACuJYnC2KOLSU1IQOathg44L3PrB4xADhg+gZ6YhXR/4Q==";
+ url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-4.10.0.tgz";
+ sha512 = "YMj+Cfd23zJK3aAFWtlIno2ysZi6Zl8HIbXmeouX7TwriB5H48JThWTCYS5trWZ9v57kzOJ/FALONFeZltgPxw==";
};
};
"@bmewburn/js-beautify-1.13.0" = {
@@ -2884,40 +2902,40 @@ let
sha512 = "zr9Qs9KFQiEvMWdZesjcmRJlUck5NR+eKGS1uyKk+oYTWwlYrsoPEi6VmG6/TzBD1hKCGEimrhTgGS6hvn/xIQ==";
};
};
- "@cdktf/hcl2cdk-0.13.1" = {
+ "@cdktf/hcl2cdk-0.13.2" = {
name = "_at_cdktf_slash_hcl2cdk";
packageName = "@cdktf/hcl2cdk";
- version = "0.13.1";
+ version = "0.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.13.1.tgz";
- sha512 = "E/ufc1l1MvR4tCMnUCd0hQW+Z9LY8v5TBXocPahf2xeiQHtYeGIRGoeWaQCmB0ArJPhhcdQ0my+utaf/XYDyew==";
+ url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.13.2.tgz";
+ sha512 = "Takx9DkdOFV7AS0FGhIxgfbuuXkXZaZ5RcGWd8SOrnH6i9BxJRFx+ZGvnsH6Gsk/hjDA6+a00j46avKDVJdlew==";
};
};
- "@cdktf/hcl2json-0.13.1" = {
+ "@cdktf/hcl2json-0.13.2" = {
name = "_at_cdktf_slash_hcl2json";
packageName = "@cdktf/hcl2json";
- version = "0.13.1";
+ version = "0.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.13.1.tgz";
- sha512 = "B32jbmRPizBnHH4z2v9Ip/wNj23X9fhGcl4S/EWzGdpOgIoZRlBIk3qBnuun3b9ObPLnr3z+vIWbxERcXt2BTw==";
+ url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.13.2.tgz";
+ sha512 = "qp1bQ41uVkV9jsk48DsJKfmTKlyVLU59t9OUEaxnRsnXpJw30BCZJklOtzGx7wnRIIf39PP99sUWayE9QiNRIw==";
};
};
- "@cdktf/provider-generator-0.13.1" = {
+ "@cdktf/provider-generator-0.13.2" = {
name = "_at_cdktf_slash_provider-generator";
packageName = "@cdktf/provider-generator";
- version = "0.13.1";
+ version = "0.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.13.1.tgz";
- sha512 = "WuP32OIfVwEszfVKraTn8h5SDN1M1Oj9ErdEZngqfjOViX4w9opxFDcYt/403ujVubQUscxR7mQnjVkdfdMlFQ==";
+ url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.13.2.tgz";
+ sha512 = "Lt8LUXDbz6A4eGIVABQ+wiNxFmE7hNBFOi7fw5jKujvclzsg9pNxOdNeazhho0xdOesIgAOXvXeZstvMHpCBRQ==";
};
};
- "@chemzqm/neovim-5.7.10" = {
+ "@chemzqm/neovim-5.8.0" = {
name = "_at_chemzqm_slash_neovim";
packageName = "@chemzqm/neovim";
- version = "5.7.10";
+ version = "5.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.7.10.tgz";
- sha512 = "GEixIlxl44WTlIJFTGenhhu2HTCBPBk5O7wPrcg7gj2gWNt5Lkm+3p4hzy/Tzywbh+3BT5Mhn4yUXGfFep41RQ==";
+ url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.8.0.tgz";
+ sha512 = "1yn2tQLv7ztw+pTDhmXJWrNPegXq5IUBwev/D7bs3yRBPWm3zCfbNAiI1MFnLh7/Ik2JJEtnC5HV6bkxzTppqA==";
};
};
"@chinachu/aribts-1.3.5-mirakurun.17" = {
@@ -2983,58 +3001,58 @@ let
sha512 = "MZzJv7rBp/r6ZQJDEodoZvdRM0vXu1PfQvMTNWFb8jFraxnISMTnPBWMMjr2G/puoMashwaNM//fl7j8gGV5lA==";
};
};
- "@commitlint/is-ignored-17.1.0" = {
+ "@commitlint/is-ignored-17.2.0" = {
name = "_at_commitlint_slash_is-ignored";
packageName = "@commitlint/is-ignored";
- version = "17.1.0";
+ version = "17.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.1.0.tgz";
- sha512 = "JITWKDMHhIh8IpdIbcbuH9rEQJty1ZWelgjleTFrVRAcEwN/sPzk1aVUXRIZNXMJWbZj8vtXRJnFihrml8uECQ==";
+ url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.2.0.tgz";
+ sha512 = "rgUPUQraHxoMLxiE8GK430HA7/R2vXyLcOT4fQooNrZq9ERutNrP6dw3gdKLkq22Nede3+gEHQYUzL4Wu75ndg==";
};
};
- "@commitlint/lint-17.1.0" = {
+ "@commitlint/lint-17.2.0" = {
name = "_at_commitlint_slash_lint";
packageName = "@commitlint/lint";
- version = "17.1.0";
+ version = "17.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/lint/-/lint-17.1.0.tgz";
- sha512 = "ltpqM2ogt/+SDhUaScFo0MdscncEF96lvQTPMM/VTTWlw7sTGLLWkOOppsee2MN/uLNNWjQ7kqkd4h6JqoM9AQ==";
+ url = "https://registry.npmjs.org/@commitlint/lint/-/lint-17.2.0.tgz";
+ sha512 = "N2oLn4Dj672wKH5qJ4LGO+73UkYXGHO+NTVUusGw83SjEv7GjpqPGKU6KALW2kFQ/GsDefSvOjpSi3CzWHQBDg==";
};
};
- "@commitlint/load-17.1.2" = {
+ "@commitlint/load-17.2.0" = {
name = "_at_commitlint_slash_load";
packageName = "@commitlint/load";
- version = "17.1.2";
+ version = "17.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/load/-/load-17.1.2.tgz";
- sha512 = "sk2p/jFYAWLChIfOIp/MGSIn/WzZ0vkc3afw+l4X8hGEYkvDe4gQUUAVxjl/6xMRn0HgnSLMZ04xXh5pkTsmgg==";
+ url = "https://registry.npmjs.org/@commitlint/load/-/load-17.2.0.tgz";
+ sha512 = "HDD57qSqNrk399R4TIjw31AWBG8dBjNj1MrDKZKmC/wvimtnIFlqzcu1+sxfXIOHj/+M6tcMWDtvknGUd7SU+g==";
};
};
- "@commitlint/message-17.0.0" = {
+ "@commitlint/message-17.2.0" = {
name = "_at_commitlint_slash_message";
packageName = "@commitlint/message";
- version = "17.0.0";
+ version = "17.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/message/-/message-17.0.0.tgz";
- sha512 = "LpcwYtN+lBlfZijHUdVr8aNFTVpHjuHI52BnfoV01TF7iSLnia0jttzpLkrLmI8HNQz6Vhr9UrxDWtKZiMGsBw==";
+ url = "https://registry.npmjs.org/@commitlint/message/-/message-17.2.0.tgz";
+ sha512 = "/4l2KFKxBOuoEn1YAuuNNlAU05Zt7sNsC9H0mPdPm3chOrT4rcX0pOqrQcLtdMrMkJz0gC7b3SF80q2+LtdL9Q==";
};
};
- "@commitlint/parse-17.0.0" = {
+ "@commitlint/parse-17.2.0" = {
name = "_at_commitlint_slash_parse";
packageName = "@commitlint/parse";
- version = "17.0.0";
+ version = "17.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/parse/-/parse-17.0.0.tgz";
- sha512 = "cKcpfTIQYDG1ywTIr5AG0RAiLBr1gudqEsmAGCTtj8ffDChbBRxm6xXs2nv7GvmJN7msOt7vOKleLvcMmRa1+A==";
+ url = "https://registry.npmjs.org/@commitlint/parse/-/parse-17.2.0.tgz";
+ sha512 = "vLzLznK9Y21zQ6F9hf8D6kcIJRb2haAK5T/Vt1uW2CbHYOIfNsR/hJs0XnF/J9ctM20Tfsqv4zBitbYvVw7F6Q==";
};
};
- "@commitlint/read-17.1.0" = {
+ "@commitlint/read-17.2.0" = {
name = "_at_commitlint_slash_read";
packageName = "@commitlint/read";
- version = "17.1.0";
+ version = "17.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/read/-/read-17.1.0.tgz";
- sha512 = "73BoFNBA/3Ozo2JQvGsE0J8SdrJAWGfZQRSHqvKaqgmY042Su4gXQLqvAzgr55S9DI1l9TiU/5WDuh8IE86d/g==";
+ url = "https://registry.npmjs.org/@commitlint/read/-/read-17.2.0.tgz";
+ sha512 = "bbblBhrHkjxra3ptJNm0abxu7yeAaxumQ8ZtD6GIVqzURCETCP7Dm0tlVvGRDyXBuqX6lIJxh3W7oyKqllDsHQ==";
};
};
"@commitlint/resolve-extends-17.1.0" = {
@@ -3046,13 +3064,13 @@ let
sha512 = "jqKm00LJ59T0O8O4bH4oMa4XyJVEOK4GzH8Qye9XKji+Q1FxhZznxMV/bDLyYkzbTodBt9sL0WLql8wMtRTbqQ==";
};
};
- "@commitlint/rules-17.0.0" = {
+ "@commitlint/rules-17.2.0" = {
name = "_at_commitlint_slash_rules";
packageName = "@commitlint/rules";
- version = "17.0.0";
+ version = "17.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/rules/-/rules-17.0.0.tgz";
- sha512 = "45nIy3dERKXWpnwX9HeBzK5SepHwlDxdGBfmedXhL30fmFCkJOdxHyOJsh0+B0RaVsLGT01NELpfzJUmtpDwdQ==";
+ url = "https://registry.npmjs.org/@commitlint/rules/-/rules-17.2.0.tgz";
+ sha512 = "1YynwD4Eh7HXZNpqG8mtUlL2pSX2jBy61EejYJv4ooZPcg50Ak7LPOyD3a9UZnsE76AXWFBz+yo9Hv4MIpAa0Q==";
};
};
"@commitlint/to-lines-17.0.0" = {
@@ -3091,130 +3109,130 @@ let
sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g==";
};
};
- "@cspell/cspell-bundled-dicts-6.12.0" = {
+ "@cspell/cspell-bundled-dicts-6.13.3" = {
name = "_at_cspell_slash_cspell-bundled-dicts";
packageName = "@cspell/cspell-bundled-dicts";
- version = "6.12.0";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.12.0.tgz";
- sha512 = "myfsDwSJcAMjKbztKBG424wIp/YV9/lvxsgHFKxBGPi+nNx1p7TbOjAAO9EWk0mZVHyGKZwCFJS2ohkoqxJWoQ==";
+ url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.13.3.tgz";
+ sha512 = "UU5J0vr8KKyxSWhgDYfPfuCgPfSq7O9bvvuMW7yQ88YKKrnOpDBvoZaHcN7A4is+DqTAwINh/PmT8v5RPQwcJw==";
};
};
- "@cspell/cspell-pipe-6.12.0" = {
+ "@cspell/cspell-pipe-6.13.3" = {
name = "_at_cspell_slash_cspell-pipe";
packageName = "@cspell/cspell-pipe";
- version = "6.12.0";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.12.0.tgz";
- sha512 = "Nkm+tIJ5k+jZPovZCdmZhrWrwRFwnDq+7yCxhov0C7UX3hsSNtTJIpFuaCNEQJ+Whpvxdh1YKflvHiHYygEgTg==";
+ url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.13.3.tgz";
+ sha512 = "tTCRFQCEJcZHvTbO40UuuQOGnRWLR1QNr5ODSefjvHomVzoYKMmhjnJ19BWOtSx2YVlArBuF0jHtqfxyP/jqKw==";
};
};
- "@cspell/cspell-service-bus-6.12.0" = {
+ "@cspell/cspell-service-bus-6.13.3" = {
name = "_at_cspell_slash_cspell-service-bus";
packageName = "@cspell/cspell-service-bus";
- version = "6.12.0";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.12.0.tgz";
- sha512 = "GgvciSeMUekl8z8vP8//cs5/qRQJSLz9IVREf6fxQW4upjw6zXZ1KonwPqOF5uLocIMAr8eCdrJzHKuKvigJIA==";
+ url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.13.3.tgz";
+ sha512 = "tOnAc6XqvEJagUg2S9fg2sxDdASCo9sMxCPpRLzrIo/OZaht14syZlJBkcIGJlqCuPgkoacpaV8ud7+JYlding==";
};
};
- "@cspell/cspell-types-6.12.0" = {
+ "@cspell/cspell-types-6.13.3" = {
name = "_at_cspell_slash_cspell-types";
packageName = "@cspell/cspell-types";
- version = "6.12.0";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.12.0.tgz";
- sha512 = "BcZTt05fNy9SGXfbPgUyxS4FfIaUpcVq8IOJ0noN+jsKsmlbssOUgJOB2ApN1h66FfWcKuFy/uNrjfcrQ7PTqg==";
+ url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.13.3.tgz";
+ sha512 = "SIN78lQvYuAVL0O7OcCMiYnRgQRHBdx2T4TTTTYFtrVF8xpGePh+7YfVo9Lkw6eAk0N5/jCamhoB/0f1pt3n3Q==";
};
};
- "@cspell/dict-ada-2.0.1" = {
+ "@cspell/dict-ada-3.0.0" = {
name = "_at_cspell_slash_dict-ada";
packageName = "@cspell/dict-ada";
- version = "2.0.1";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-2.0.1.tgz";
- sha512 = "vopTJ1oHrrFYV5GU55Sr+AzItR78Uj5YbCaspYABmYKlq4NRrcUAUsr4bWgymDcspMIHO7e7IFcj48OKs1fndA==";
+ url = "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-3.0.0.tgz";
+ sha512 = "jpUVex0JTMGIQC/+T/GglLRpimmvH8HUcpf3gC+bS1ZcVGzyWQo5clevxYbz2MBVoLxSMZiqPoqB5dt/vAOTwQ==";
};
};
- "@cspell/dict-aws-2.0.0" = {
+ "@cspell/dict-aws-3.0.0" = {
name = "_at_cspell_slash_dict-aws";
packageName = "@cspell/dict-aws";
- version = "2.0.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-2.0.0.tgz";
- sha512 = "NKz7pDZ7pwj/b33i3f4WLpC1rOOUMmENwYgftxU+giU2YBeKM2wZbMTSEIzsrel56r0UlQYmdIVlP/B4nnVaoQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-3.0.0.tgz";
+ sha512 = "O1W6nd5y3Z00AMXQMzfiYrIJ1sTd9fB1oLr+xf/UD7b3xeHeMeYE2OtcWbt9uyeHim4tk+vkSTcmYEBKJgS5bQ==";
};
};
- "@cspell/dict-bash-2.0.4" = {
+ "@cspell/dict-bash-3.0.0" = {
name = "_at_cspell_slash_dict-bash";
packageName = "@cspell/dict-bash";
- version = "2.0.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-2.0.4.tgz";
- sha512 = "uK/ehmp5LYrmRH2Gv3nbvdPswpkybJUn34WYKLpeuYHQktmi+pOI1A9uPdBPnSbMDffSvwQlQohIyKawz+X8Ag==";
+ url = "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-3.0.0.tgz";
+ sha512 = "bQl6mk1SrcmrDL+F4XTeZtW2JnqgNJx5pNX6PIfWe5QA+J2blLlYbwDQOvjovpZEirwy8iqQmu//6bKjaDu1ow==";
};
};
- "@cspell/dict-companies-2.0.14" = {
+ "@cspell/dict-companies-3.0.2" = {
name = "_at_cspell_slash_dict-companies";
packageName = "@cspell/dict-companies";
- version = "2.0.14";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-2.0.14.tgz";
- sha512 = "Sq1X29Z05OZ/UNqTwVhf3/WaqvJQy4/S6gS8qYI5AQRX45gVe8CPhNBLmZOTC6z8m716bfQCxa5rRT9YNSdTZg==";
+ url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.2.tgz";
+ sha512 = "C+H3tltzEZrPFEgLjKPM796ZQyFv2wW/FmOrkvoL5iyiwdQFg8Nh3KTPTZT83QJa4nb+yTHw0X/c+6QyEuzODA==";
};
};
- "@cspell/dict-cpp-3.2.1" = {
+ "@cspell/dict-cpp-4.0.0" = {
name = "_at_cspell_slash_dict-cpp";
packageName = "@cspell/dict-cpp";
- version = "3.2.1";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-3.2.1.tgz";
- sha512 = "XcmzrKIghqFfrYLLaHtWKOp9rupiuGdc5ODONk+emsq0W5CIc3Abn27IQHwUzxzF+Cm5IfKAIJ5Kpe6hkzm0HQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-4.0.0.tgz";
+ sha512 = "NrCmer14tTSbPs1TwqyCjFEmWCBw0UFvAn4O3pdWuxktArHxRJ5vUQOoL2Gus2H9s3ihhOJZkcuJ47Kd21E7BQ==";
};
};
- "@cspell/dict-cryptocurrencies-2.0.0" = {
+ "@cspell/dict-cryptocurrencies-3.0.1" = {
name = "_at_cspell_slash_dict-cryptocurrencies";
packageName = "@cspell/dict-cryptocurrencies";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-2.0.0.tgz";
- sha512 = "nREysmmfOp7L2YCRAUufQahwD5/Punzb5AZ6eyg4zUamdRWHgBFphb5/9h2flt1vgdUfhc6hZcML21Ci7iXjaA==";
- };
- };
- "@cspell/dict-csharp-3.0.1" = {
- name = "_at_cspell_slash_dict-csharp";
- packageName = "@cspell/dict-csharp";
version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-3.0.1.tgz";
- sha512 = "xkfQu03F388w4sdVQSSjrVMkxAxpTYB2yW7nw0XYtTjl3L/jBgvTr/j1BTjdFbQhdNf10Lg0Ak1kXOjmHodVqA==";
+ url = "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-3.0.1.tgz";
+ sha512 = "Tdlr0Ahpp5yxtwM0ukC13V6+uYCI0p9fCRGMGZt36rWv8JQZHIuHfehNl7FB/Qc09NCF7p5ep0GXbL+sVTd/+w==";
};
};
- "@cspell/dict-css-2.1.0" = {
+ "@cspell/dict-csharp-4.0.1" = {
+ name = "_at_cspell_slash_dict-csharp";
+ packageName = "@cspell/dict-csharp";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.1.tgz";
+ sha512 = "BkfT6S790FcyWLTWYBwkj9dKxuNz4pHFDrj9GFrmqXd2HWzfSa944S0NJhal42TnW30JJljQY5P1ZYau+s2Pbg==";
+ };
+ };
+ "@cspell/dict-css-3.0.0" = {
name = "_at_cspell_slash_dict-css";
packageName = "@cspell/dict-css";
- version = "2.1.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-2.1.0.tgz";
- sha512 = "glASAELcGhh4Ru0rTQ4G9mTQxSyPwsZOON/5BYflB6Kks8YC8nUvKrtMCoo5W7CPKPfSEa8zUNctFQ1+IUYDHA==";
+ url = "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-3.0.0.tgz";
+ sha512 = "GNg4EMhP+8yVr3AuebBMUxsb/otCz2DS8rTp2M5Fo1179uwpjMfPqLezFxH+YaiA3vgBiwajdrl/0ZGn44qBRw==";
};
};
- "@cspell/dict-dart-1.1.1" = {
+ "@cspell/dict-dart-2.0.0" = {
name = "_at_cspell_slash_dict-dart";
packageName = "@cspell/dict-dart";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-1.1.1.tgz";
- sha512 = "XBOCpezXrgFN18kGEwqMpTUGZdw4BjCoJrNOo6qBdcdZySCrEHLwELraLOkcSba2kM4stmTp0t59FkwtP8TKOA==";
- };
- };
- "@cspell/dict-django-2.0.0" = {
- name = "_at_cspell_slash_dict-django";
- packageName = "@cspell/dict-django";
version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-2.0.0.tgz";
- sha512 = "GkJdJv6cmzrKcmq2/oxTXjKF5uv71r4eTqnFmgPbNBW1t+G4VYpzOf0QrVQrhx2RC4DdW5XfcTf+iS0FxHOTmw==";
+ url = "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.0.0.tgz";
+ sha512 = "p7vHszsu2uJt+F04gvNy1e5okypFfVEYHBWgpOV/Jrvs0F5A+gUzFTG2Ix9b1jkCigAULYKQkIGue+qlhSoK5Q==";
+ };
+ };
+ "@cspell/dict-django-3.0.0" = {
+ name = "_at_cspell_slash_dict-django";
+ packageName = "@cspell/dict-django";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-3.0.0.tgz";
+ sha512 = "Ag6ecPokb12RcAwD9eOvKl5G2l4h5aOQl36mipqINLc+NPtIGVN3qa2FBg3hHeS6OvIDwCZ/LQ/zz5xbBhakhg==";
};
};
"@cspell/dict-docker-1.1.1" = {
@@ -3226,22 +3244,22 @@ let
sha512 = "UEYoeRDm7oUN9yz1mYSozz6D4+2N14S/cd2Re9et6Xzq6yi62s4ky3knF92Of2weelADjnN41UA22VBhRAf7Sw==";
};
};
- "@cspell/dict-dotnet-2.0.1" = {
+ "@cspell/dict-dotnet-3.0.1" = {
name = "_at_cspell_slash_dict-dotnet";
packageName = "@cspell/dict-dotnet";
- version = "2.0.1";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-2.0.1.tgz";
- sha512 = "b1n4crJRW0WZVf9Gp/52j/tDtjYiZ3N81fIyfqPlBrjsh/5AivfA697DYwQ2mr8ngNX7RsqRtYNQjealA1rEnQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-3.0.1.tgz";
+ sha512 = "Flruqsmhwrm1K2+HKsA4I6aywmsM5QnCddFb8FIQLgluyuTss6Hs1Xj380+k3PeU/wAg4xNTD7f6b4xxZLbfjw==";
};
};
- "@cspell/dict-elixir-2.0.1" = {
+ "@cspell/dict-elixir-3.0.0" = {
name = "_at_cspell_slash_dict-elixir";
packageName = "@cspell/dict-elixir";
- version = "2.0.1";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-2.0.1.tgz";
- sha512 = "eTTTxZt1FqGkM780yFDxsGHvTbWqvlK8YISSccK8FyrB6ULW+uflQlNS5AnWg3uWKC48b7pQott+odYCsPJ+Ow==";
+ url = "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-3.0.0.tgz";
+ sha512 = "DJxGMNfcT1ieYupyzq7GNSIJEkdJAnpEoL58R54bf2mxRfC02Uu2sIcKWJO18ozOn3jgOY408TxOCEc8bz39jw==";
};
};
"@cspell/dict-en-gb-1.1.33" = {
@@ -3253,256 +3271,256 @@ let
sha512 = "tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==";
};
};
- "@cspell/dict-en_us-2.3.3" = {
+ "@cspell/dict-en_us-4.0.0" = {
name = "_at_cspell_slash_dict-en_us";
packageName = "@cspell/dict-en_us";
- version = "2.3.3";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.3.3.tgz";
- sha512 = "csyKeaNktfpvMkmE2GOPTwsrQm3wWhLKVaDRaGU0qTcIjDiCvqv/iYgrVrKRkoddA3kdNTZ8YNCcix7lb6VkOg==";
+ url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.0.0.tgz";
+ sha512 = "ZqWPm0cdC/3KdhWWHojti7/gfH5/JIzyGqI2zlmibz/jpR5Z0IzsW71xQCuU3KpNaYU1Frfivk0m34yicm1JFw==";
};
};
- "@cspell/dict-filetypes-2.1.1" = {
+ "@cspell/dict-filetypes-3.0.0" = {
name = "_at_cspell_slash_dict-filetypes";
packageName = "@cspell/dict-filetypes";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-2.1.1.tgz";
- sha512 = "Oo0/mUbFHzsaATqRLdkV1RMoYns3aGzeKFIpVJg415GYtJ8EABXtEArYTXeMwlboyGTPvEk+PR2hBSTSfQTqmg==";
- };
- };
- "@cspell/dict-fonts-2.1.0" = {
- name = "_at_cspell_slash_dict-fonts";
- packageName = "@cspell/dict-fonts";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-2.1.0.tgz";
- sha512 = "hk7xsbfWEUhc136Xj7I2TD7ouKAfWwzCVAQaHBxcVXAsVxu7bDOGj4FvE2jBzlkSUY8A9Ww8qS0GOFvowJshVg==";
- };
- };
- "@cspell/dict-fullstack-2.0.6" = {
- name = "_at_cspell_slash_dict-fullstack";
- packageName = "@cspell/dict-fullstack";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-2.0.6.tgz";
- sha512 = "R2E2xvbHvvRwwurxfpBJDRIJjXBMfEPF5WNV3LTOEMRqkZtoYCeJK9aqc8LHlmJMtAbnN1cx//BCDIyTJ0rO0A==";
- };
- };
- "@cspell/dict-git-1.0.1" = {
- name = "_at_cspell_slash_dict-git";
- packageName = "@cspell/dict-git";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-1.0.1.tgz";
- sha512 = "Rk+eTof/9inF11lvxmkCRK+gODatA3qai8kSASv6OG/JfPvpj7fTHErx/rdgPw/LOTDUafnoTjTYmj7B2MOQXg==";
- };
- };
- "@cspell/dict-golang-3.0.1" = {
- name = "_at_cspell_slash_dict-golang";
- packageName = "@cspell/dict-golang";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-3.0.1.tgz";
- sha512 = "0KNfXTbxHW2l8iVjxeOf+KFv9Qrw3z5cyKnkuYJWlBTSB5KcUBfeKCb4fsds26VdANqiy6U91b4gDx5kNEmBjQ==";
- };
- };
- "@cspell/dict-haskell-2.0.1" = {
- name = "_at_cspell_slash_dict-haskell";
- packageName = "@cspell/dict-haskell";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-2.0.1.tgz";
- sha512 = "ooA23qIG7InOOxlLm67CNH5O2J85QsPHEAzEU9KEqVfYG5ovFs5tx6n9pHekDVk3MpQULpqfNUYDR0KigPLg5g==";
- };
- };
- "@cspell/dict-html-3.3.2" = {
- name = "_at_cspell_slash_dict-html";
- packageName = "@cspell/dict-html";
- version = "3.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-3.3.2.tgz";
- sha512 = "cM5pQSEiqjrdk6cRFLrlLdWNT/J8399f/A6DjwjfYhHrGy0e/Rsjv76HZT0GlE1OqMoq9eG9jdQsfoYYgWTIpQ==";
- };
- };
- "@cspell/dict-html-symbol-entities-3.0.0" = {
- name = "_at_cspell_slash_dict-html-symbol-entities";
- packageName = "@cspell/dict-html-symbol-entities";
version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-3.0.0.tgz";
- sha512 = "04K7cPTcbYXmHICfiob4gZA1yaj4hpfM+Nl5WIJ1EAZsSGHdqmGEF28GuCjyQ8ZeKiJAsPt/vXuLBbjxkHqZyQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-3.0.0.tgz";
+ sha512 = "Fiyp0z5uWaK0d2TfR9GMUGDKmUMAsOhGD5A0kHoqnNGswL2iw0KB0mFBONEquxU65fEnQv4R+jdM2d9oucujuA==";
};
};
- "@cspell/dict-java-3.0.7" = {
+ "@cspell/dict-fonts-3.0.0" = {
+ name = "_at_cspell_slash_dict-fonts";
+ packageName = "@cspell/dict-fonts";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-3.0.0.tgz";
+ sha512 = "zTZni0AbwBVG1MKA0WpwPyIJPVF+gp6neXDQzHcu4RUnuQ4uDu0PVEuZjGHCJWwwFoR5JmkqZxVSg1y3ufJODA==";
+ };
+ };
+ "@cspell/dict-fullstack-3.0.0" = {
+ name = "_at_cspell_slash_dict-fullstack";
+ packageName = "@cspell/dict-fullstack";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.0.0.tgz";
+ sha512 = "BMQRTaeReLufjMwgWqqwPdrXQ7jkVGTv7/YvOLsHFZvcAP3eM7WqX+rvdXckLhJmuuzbceFRDKs5F/9Ig2x/tQ==";
+ };
+ };
+ "@cspell/dict-git-2.0.0" = {
+ name = "_at_cspell_slash_dict-git";
+ packageName = "@cspell/dict-git";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-2.0.0.tgz";
+ sha512 = "n1AxyX5Kgxij/sZFkxFJlzn3K9y/sCcgVPg/vz4WNJ4K9YeTsUmyGLA2OQI7d10GJeiuAo2AP1iZf2A8j9aj2w==";
+ };
+ };
+ "@cspell/dict-golang-4.0.0" = {
+ name = "_at_cspell_slash_dict-golang";
+ packageName = "@cspell/dict-golang";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-4.0.0.tgz";
+ sha512 = "XxKINt3dmpixrmAcxVdP545eh0S6vmaGbddZyzIWzQlwoIE0b98l3AvtcdhCyYxbvcKAcZ+pkf+t2zGTnMvQug==";
+ };
+ };
+ "@cspell/dict-haskell-3.0.0" = {
+ name = "_at_cspell_slash_dict-haskell";
+ packageName = "@cspell/dict-haskell";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-3.0.0.tgz";
+ sha512 = "vVreZvGp9M8UcF/3fJAl/99M3NkcH0ik19xnFTsp4RWhy7+Ar/yCXo8251sSBtwL4TdR+0BHXdXKb2PYZ2UFdQ==";
+ };
+ };
+ "@cspell/dict-html-4.0.0" = {
+ name = "_at_cspell_slash_dict-html";
+ packageName = "@cspell/dict-html";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.0.tgz";
+ sha512 = "UQRolrzTTMS3Ja1qkrdERnqG04qqwqp4vbMV+BLKvR0oiibfH56Dfnx/qz/C5KgFLc48GLGXLALjgCiHtPjPiA==";
+ };
+ };
+ "@cspell/dict-html-symbol-entities-4.0.0" = {
+ name = "_at_cspell_slash_dict-html-symbol-entities";
+ packageName = "@cspell/dict-html-symbol-entities";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.0.tgz";
+ sha512 = "HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw==";
+ };
+ };
+ "@cspell/dict-java-5.0.2" = {
name = "_at_cspell_slash_dict-java";
packageName = "@cspell/dict-java";
- version = "3.0.7";
+ version = "5.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-3.0.7.tgz";
- sha512 = "IL7ubsRvKX6dZSx++TplJCfhiS7kkEGpbTPG0gMEP50DTNAVM4icZS8zmer2UBCU5PTwF85abJjdX7mRADWKVg==";
+ url = "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.2.tgz";
+ sha512 = "HWgdp8plZOdYjOkndwmgHGVxoewylZcl886PqSL6TMcDshyI0+2nePft31nIuALRvt7HL8IX++DM1uk4UfY4kg==";
};
};
- "@cspell/dict-latex-2.0.9" = {
+ "@cspell/dict-latex-3.0.0" = {
name = "_at_cspell_slash_dict-latex";
packageName = "@cspell/dict-latex";
- version = "2.0.9";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-2.0.9.tgz";
- sha512 = "d1kTK6dJb5z6UcfASQWjqQlsjZvnoVOvMWxYtLpGksYf6gM4IgqoPVNMLYYK6xBS4T/uAnLIj975A6YuAeyZpg==";
+ url = "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-3.0.0.tgz";
+ sha512 = "QsRWj+Jll4ueVbce8ofKa743oQ2exmbVNZN70MaMbmu8PSbjW2+Rj3OdExVStesANMj7qc20inS/TgPr8DrInQ==";
};
};
- "@cspell/dict-lorem-ipsum-2.0.1" = {
+ "@cspell/dict-lorem-ipsum-3.0.0" = {
name = "_at_cspell_slash_dict-lorem-ipsum";
packageName = "@cspell/dict-lorem-ipsum";
- version = "2.0.1";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-2.0.1.tgz";
- sha512 = "s7Ft8UiloUJwgz4z8uLeFvCkeTcZ43HQl7mSAlZd76eW+keLSsdeGmLDx2zaciqo+MftPGyzygVCwaJjTGxiew==";
+ url = "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-3.0.0.tgz";
+ sha512 = "msEV24qEpzWZs2kcEicqYlhyBpR0amfDkJOs+iffC07si9ftqtQ+yP3lf1VFLpgqw3SQh1M1vtU7RD4sPrNlcQ==";
};
};
- "@cspell/dict-lua-2.0.0" = {
+ "@cspell/dict-lua-3.0.0" = {
name = "_at_cspell_slash_dict-lua";
packageName = "@cspell/dict-lua";
- version = "2.0.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-2.0.0.tgz";
- sha512 = "7WUEBEspSKtsq104WdIys1+DLqAxpJPzw74Py1TuE3fI5GvlzeSZkRFP2ya54GB2lCO4C3mq4M8EnitpibVDfw==";
+ url = "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-3.0.0.tgz";
+ sha512 = "WOhSCgS5wMxkGQJ8siB90iTB9ElquJB7FeqYSbJqqs6cUwH8G7MM/CEDPL6h7vCo0+v3GuxQ8yKWDSUcUhz9Lg==";
};
};
- "@cspell/dict-node-3.0.1" = {
+ "@cspell/dict-node-4.0.1" = {
name = "_at_cspell_slash_dict-node";
packageName = "@cspell/dict-node";
- version = "3.0.1";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-3.0.1.tgz";
- sha512 = "sK2cpuV0EAc43Amd5xeQXkI9MeRTECMw+yjap06gKSModbgI7BqJUHeKZed+0Hii+LpaJ4TYpLGiRVsO+qSk0w==";
+ url = "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-4.0.1.tgz";
+ sha512 = "4EmT5yZFitdwnG0hYEd+Ek19zzD81Bp+n7w0kglZKldS5AvapwW6GM/SAps5YMQQc5zZMi+bMgV7NIzapREqUg==";
};
};
- "@cspell/dict-npm-3.1.3" = {
+ "@cspell/dict-npm-4.0.1" = {
name = "_at_cspell_slash_dict-npm";
packageName = "@cspell/dict-npm";
- version = "3.1.3";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-3.1.3.tgz";
- sha512 = "xnGp+TMpArdMLBUSG+ZrbEuhvY016rb76Yh35/OPDDEEz4ulENxLSZJxtN2/A0tZ9FJngDNSdFh7eJsOFmciZQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-4.0.1.tgz";
+ sha512 = "jNKImVG5ZX+Pp6PhbSR3TmC9+0ROx09dGhSgUsZyvXV5CGEr+OQGJtNL98TGwU3pP2Xjc++qnHA/XPwB5WvLfA==";
};
};
- "@cspell/dict-php-2.0.0" = {
+ "@cspell/dict-php-3.0.2" = {
name = "_at_cspell_slash_dict-php";
packageName = "@cspell/dict-php";
- version = "2.0.0";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-2.0.0.tgz";
- sha512 = "29WgU77eTO985LvMHwPi1pcpfopfCWfTdffDyqya0JIfOSaFUrlYKzGPkE4mRxcz2G3hXsaM0SRvBNdIRwEdUg==";
+ url = "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-3.0.2.tgz";
+ sha512 = "YIVkqey40oNUem3aNvpyanhlmddUpogSAA51VcQkfB93qbjMzAQTvLBYJ9muPpyZgFF+TLTKdsrlqRLeKGsjow==";
};
};
- "@cspell/dict-powershell-2.0.0" = {
+ "@cspell/dict-powershell-3.0.0" = {
name = "_at_cspell_slash_dict-powershell";
packageName = "@cspell/dict-powershell";
- version = "2.0.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-2.0.0.tgz";
- sha512 = "6uvEhLiGmG3u9TFkM1TYcky6aL9Yk7Sk3KJwoTYBaQJY2KqrprgyQtW6yxIw9oU52VRHlq3KKvSAA9Q26+SIkQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-3.0.0.tgz";
+ sha512 = "pkztY9Ak4oc33q+Qxcn9/CTOKo4N8YIRRE6v67WwQOncA5QIJfcOPUrjfR3Z8SpzElXhu3s9qtWWSqbCy6qmcA==";
};
};
- "@cspell/dict-public-licenses-1.0.6" = {
+ "@cspell/dict-public-licenses-2.0.0" = {
name = "_at_cspell_slash_dict-public-licenses";
packageName = "@cspell/dict-public-licenses";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-1.0.6.tgz";
- sha512 = "Z9IUFPkkOpOsEdgPUfQOJNQ+qU6+iBAZWS/CR5sUqTX+s5VkPNVwQyVC2kdmgmE2U5qwzAPewG6nVKr2MVogwg==";
- };
- };
- "@cspell/dict-python-3.0.6" = {
- name = "_at_cspell_slash_dict-python";
- packageName = "@cspell/dict-python";
- version = "3.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.6.tgz";
- sha512 = "tzxJ4sd9ZGhAUKg/WJJpQGDNtoHvM8Wn+iS2+PnQj2/LTHBW4mnaCogsGsBtYu8C4b2+BEQs+tc5808AeEfLug==";
- };
- };
- "@cspell/dict-r-1.0.3" = {
- name = "_at_cspell_slash_dict-r";
- packageName = "@cspell/dict-r";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-1.0.3.tgz";
- sha512 = "u2qeXd4cx/TvTVcmkvA+sK6f4K1uMAMO6QPMSr1pSvqGElPRP1mIBXmuiSuBzLO3LbsJuUEHw5Cp3/bxIB6rNA==";
- };
- };
- "@cspell/dict-ruby-2.0.2" = {
- name = "_at_cspell_slash_dict-ruby";
- packageName = "@cspell/dict-ruby";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-2.0.2.tgz";
- sha512 = "vVnUpSmGDbPjs7MHq741DsLHhQcoA4CnUCM9wsTorQ9AQRDAkDTbK/LcY8nM19MoXCb3eF8PFku5Jq+gqH0u7w==";
- };
- };
- "@cspell/dict-rust-2.0.1" = {
- name = "_at_cspell_slash_dict-rust";
- packageName = "@cspell/dict-rust";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-2.0.1.tgz";
- sha512 = "ATDpIh0VWpQdUIZa8zqqJY4wQz3q00BTXlQCodeOmObYSb23+L6KWWzJ8mKLgpbc1lqTkogWrqxiCxlrCmqNmg==";
- };
- };
- "@cspell/dict-scala-2.0.0" = {
- name = "_at_cspell_slash_dict-scala";
- packageName = "@cspell/dict-scala";
version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-2.0.0.tgz";
- sha512 = "MUwA2YKpqaQOSR4V1/CVGRNk8Ii5kf6I8Ch+4/BhRZRQXuwWbi21rDRYWPqdQWps7VNzAbbMA+PQDWsD5YY38g==";
+ url = "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.0.tgz";
+ sha512 = "NdMHnS6xiYJKlzVoTV5CBhMiDpXMZ/PDcvXiOpxeR50xkjR18O/XFP4f4eDZpxGiBSUCMFRWf4JjILJ04Rpcfg==";
};
};
- "@cspell/dict-software-terms-2.3.0" = {
+ "@cspell/dict-python-4.0.0" = {
+ name = "_at_cspell_slash_dict-python";
+ packageName = "@cspell/dict-python";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.0.0.tgz";
+ sha512 = "MC6CKbYOly3Ig25ZnhlCzPbE/QozqfQv4VYW6HcoMQ5IbHu33ddf2lzkZ89qTXlxsF5NT5qfZEkQYHYuhuL6AQ==";
+ };
+ };
+ "@cspell/dict-r-2.0.0" = {
+ name = "_at_cspell_slash_dict-r";
+ packageName = "@cspell/dict-r";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-2.0.0.tgz";
+ sha512 = "rdt1cKc3VL2uXJ2X088gRhTFreN/MkJWK1jccW1EWdFHLzDwhKfrlAkoLCp0paD6HvmloLQ+eSR09D58DdsYfA==";
+ };
+ };
+ "@cspell/dict-ruby-3.0.0" = {
+ name = "_at_cspell_slash_dict-ruby";
+ packageName = "@cspell/dict-ruby";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-3.0.0.tgz";
+ sha512 = "sA98T8Y1Pmq3RStVkO14E8vTWkq6JUn8c8PldiMyYgV0yfQgwhQfFAzlSfF3Gg2B0VkIdqt2et2SPN7f9wp7fQ==";
+ };
+ };
+ "@cspell/dict-rust-3.0.0" = {
+ name = "_at_cspell_slash_dict-rust";
+ packageName = "@cspell/dict-rust";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-3.0.0.tgz";
+ sha512 = "L1T1IBsYJZVDmfOGAbVLcpc6arWxRRCSJYvHSwEDBGrNuMyJ4jx/NvBEz5crcKf4vVKgwVlXgzQlJJZ8AVxU9w==";
+ };
+ };
+ "@cspell/dict-scala-3.0.0" = {
+ name = "_at_cspell_slash_dict-scala";
+ packageName = "@cspell/dict-scala";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-3.0.0.tgz";
+ sha512 = "sIiCQDIMMnNns/fzD61z5npbh5pypaKq07Orqe0+eRfdQpika8iRSGUGFHVbtdd1JzB1DyTCV2e8OwdaQiXqJQ==";
+ };
+ };
+ "@cspell/dict-software-terms-3.0.2" = {
name = "_at_cspell_slash_dict-software-terms";
packageName = "@cspell/dict-software-terms";
- version = "2.3.0";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.3.0.tgz";
- sha512 = "rl+quUw68IxjWgeX/QDMgQsImZ1DaKzFyYMSGrCNcNPp4b4SMLwHCKoJ97/uOnUnw0jaBxueXoqp2iyN/QiOVw==";
+ url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.0.2.tgz";
+ sha512 = "TR92ZKyCarEzvLbG/q/HNqSDHSiJOYCU/RiankMU8R8nqY9K9k0k+vWMlgYpl2UXgXNdYjNP6RfZdtUR9jD55w==";
};
};
- "@cspell/dict-sql-1.0.4" = {
+ "@cspell/dict-sql-2.0.0" = {
name = "_at_cspell_slash_dict-sql";
packageName = "@cspell/dict-sql";
- version = "1.0.4";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-1.0.4.tgz";
- sha512 = "+9nMcwsCzdYH0tyv2LeuVvQ+DdecS2C1N+hw6sl0FTHWI5GwULHAGW840RBwcKw0s+dl7sc0WpZhS1EW7b0pXg==";
+ url = "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.0.0.tgz";
+ sha512 = "J3X8VSgWpc/4McQEs138abtBw/SO3Z+vGaYi5X7XV1pKPBxjupHTTNQHSS/HWUDmVWj6fR3OV+ZGptcmvv3Clg==";
};
};
- "@cspell/dict-swift-1.0.3" = {
+ "@cspell/dict-swift-2.0.0" = {
name = "_at_cspell_slash_dict-swift";
packageName = "@cspell/dict-swift";
- version = "1.0.3";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-1.0.3.tgz";
- sha512 = "yOBLSaRD0AnkkkndJ8PuB82Evp6lA2xItf2AWsnPfCCgxp5Ojk6uUBC/WQBSkzkCAOGbXyHsu9D97tsOx2c6cw==";
+ url = "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-2.0.0.tgz";
+ sha512 = "VStJ0fKPPNIXKmxJrbGH6vKNtJCwAnQatfSH0fVj+Unf3QHHlmuLKRG0cN0aVgEIolpRkxNXJcSB3CPbYr0Xhw==";
};
};
- "@cspell/dict-typescript-2.0.2" = {
+ "@cspell/dict-typescript-3.0.1" = {
name = "_at_cspell_slash_dict-typescript";
packageName = "@cspell/dict-typescript";
- version = "2.0.2";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-2.0.2.tgz";
- sha512 = "OIoSJsCw9WHX4eDikoF5/0QbptMPZjElOcMYdYCyV03nqV5n4ot72ysTexW95yW4+fQU6uDPNQvnrUnhXXEkTA==";
+ url = "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.0.1.tgz";
+ sha512 = "nKEtOpj+rJNIUK268/mCFDCIv1MWFdK1efm9YL4q1q3NHT+qCKhkXoA0eG8k4AaDIpsvebB8CgNIYFPxY92r4A==";
};
};
- "@cspell/dict-vue-2.0.2" = {
+ "@cspell/dict-vue-3.0.0" = {
name = "_at_cspell_slash_dict-vue";
packageName = "@cspell/dict-vue";
- version = "2.0.2";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-2.0.2.tgz";
- sha512 = "/MB0RS0Gn01s4pgmjy0FvsLfr3RRMrRphEuvTRserNcM8XVtoIVAtrjig/Gg0DPwDrN8Clm0L1j7iQay6S8D0g==";
+ url = "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-3.0.0.tgz";
+ sha512 = "niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==";
};
};
"@cspotcode/source-map-consumer-0.8.0" = {
@@ -3532,6 +3550,132 @@ let
sha512 = "IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==";
};
};
+ "@csstools/postcss-cascade-layers-1.1.1" = {
+ name = "_at_csstools_slash_postcss-cascade-layers";
+ packageName = "@csstools/postcss-cascade-layers";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz";
+ sha512 = "+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==";
+ };
+ };
+ "@csstools/postcss-color-function-1.1.1" = {
+ name = "_at_csstools_slash_postcss-color-function";
+ packageName = "@csstools/postcss-color-function";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz";
+ sha512 = "Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==";
+ };
+ };
+ "@csstools/postcss-font-format-keywords-1.0.1" = {
+ name = "_at_csstools_slash_postcss-font-format-keywords";
+ packageName = "@csstools/postcss-font-format-keywords";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz";
+ sha512 = "ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==";
+ };
+ };
+ "@csstools/postcss-hwb-function-1.0.2" = {
+ name = "_at_csstools_slash_postcss-hwb-function";
+ packageName = "@csstools/postcss-hwb-function";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz";
+ sha512 = "YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==";
+ };
+ };
+ "@csstools/postcss-ic-unit-1.0.1" = {
+ name = "_at_csstools_slash_postcss-ic-unit";
+ packageName = "@csstools/postcss-ic-unit";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz";
+ sha512 = "Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==";
+ };
+ };
+ "@csstools/postcss-is-pseudo-class-2.0.7" = {
+ name = "_at_csstools_slash_postcss-is-pseudo-class";
+ packageName = "@csstools/postcss-is-pseudo-class";
+ version = "2.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz";
+ sha512 = "7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==";
+ };
+ };
+ "@csstools/postcss-nested-calc-1.0.0" = {
+ name = "_at_csstools_slash_postcss-nested-calc";
+ packageName = "@csstools/postcss-nested-calc";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz";
+ sha512 = "JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==";
+ };
+ };
+ "@csstools/postcss-normalize-display-values-1.0.1" = {
+ name = "_at_csstools_slash_postcss-normalize-display-values";
+ packageName = "@csstools/postcss-normalize-display-values";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz";
+ sha512 = "jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==";
+ };
+ };
+ "@csstools/postcss-oklab-function-1.1.1" = {
+ name = "_at_csstools_slash_postcss-oklab-function";
+ packageName = "@csstools/postcss-oklab-function";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz";
+ sha512 = "nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==";
+ };
+ };
+ "@csstools/postcss-progressive-custom-properties-1.3.0" = {
+ name = "_at_csstools_slash_postcss-progressive-custom-properties";
+ packageName = "@csstools/postcss-progressive-custom-properties";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz";
+ sha512 = "ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==";
+ };
+ };
+ "@csstools/postcss-stepped-value-functions-1.0.1" = {
+ name = "_at_csstools_slash_postcss-stepped-value-functions";
+ packageName = "@csstools/postcss-stepped-value-functions";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz";
+ sha512 = "dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==";
+ };
+ };
+ "@csstools/postcss-text-decoration-shorthand-1.0.0" = {
+ name = "_at_csstools_slash_postcss-text-decoration-shorthand";
+ packageName = "@csstools/postcss-text-decoration-shorthand";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz";
+ sha512 = "c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==";
+ };
+ };
+ "@csstools/postcss-trigonometric-functions-1.0.2" = {
+ name = "_at_csstools_slash_postcss-trigonometric-functions";
+ packageName = "@csstools/postcss-trigonometric-functions";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz";
+ sha512 = "woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==";
+ };
+ };
+ "@csstools/postcss-unset-value-1.0.2" = {
+ name = "_at_csstools_slash_postcss-unset-value";
+ packageName = "@csstools/postcss-unset-value";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz";
+ sha512 = "c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==";
+ };
+ };
"@csstools/selector-specificity-2.0.2" = {
name = "_at_csstools_slash_selector-specificity";
packageName = "@csstools/selector-specificity";
@@ -3676,193 +3820,121 @@ let
sha512 = "dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==";
};
};
- "@edge-runtime/format-1.1.0-beta.34" = {
+ "@edge-runtime/format-1.1.0" = {
name = "_at_edge-runtime_slash_format";
packageName = "@edge-runtime/format";
- version = "1.1.0-beta.34";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@edge-runtime/format/-/format-1.1.0-beta.34.tgz";
- sha512 = "AdV7FlpBDDiwdPxmrCmq2ICMxzJr3Zoq/bUuIMC09jEmx8fpIAepAABVTEqr+X/6vhIiD2ermIog8qvAG4RZMg==";
+ url = "https://registry.npmjs.org/@edge-runtime/format/-/format-1.1.0.tgz";
+ sha512 = "MkLDDtPhXZIMx83NykdFmOpF7gVWIdd6GBHYb8V/E+PKWvD2pK/qWx9B30oN1iDJ2XBm0SGDjz02S8nDHI9lMQ==";
};
};
- "@edge-runtime/primitives-1.1.0-beta.37" = {
+ "@edge-runtime/primitives-2.0.0" = {
name = "_at_edge-runtime_slash_primitives";
packageName = "@edge-runtime/primitives";
- version = "1.1.0-beta.37";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-1.1.0-beta.37.tgz";
- sha512 = "S3aN8X6wXhM7CJI3FRF480CMNkw4mH6grMV/enQz8VWGrvD1U5njQNRh/Zymoe0RHzEI/aIDjSk3V49h+ULt9g==";
+ url = "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-2.0.0.tgz";
+ sha512 = "AXqUq1zruTJAICrllUvZcgciIcEGHdF6KJ3r6FM0n4k8LpFxZ62tPWVIJ9HKm+xt+ncTBUZxwgUaQ73QMUQEKw==";
};
};
- "@edge-runtime/vm-1.1.0-beta.37" = {
+ "@edge-runtime/vm-2.0.0" = {
name = "_at_edge-runtime_slash_vm";
packageName = "@edge-runtime/vm";
- version = "1.1.0-beta.37";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@edge-runtime/vm/-/vm-1.1.0-beta.37.tgz";
- sha512 = "1OrFifIxDFpwb1VyrFD8kwWVppc6D1uN7xh5jQzW7jHaVJ0Dw4C2nSAbLe6YKPYj67o09vW72WLzfUcryeD0Pg==";
+ url = "https://registry.npmjs.org/@edge-runtime/vm/-/vm-2.0.0.tgz";
+ sha512 = "BOLrAX8IWHRXu1siZocwLguKJPEUv7cr+rG8tI4hvHgMdIsBWHJlLeB8EjuUVnIURFrUiM49lVKn8DRrECmngw==";
};
};
- "@electron-forge/async-ora-6.0.0-beta.67" = {
+ "@electron-forge/async-ora-6.0.0" = {
name = "_at_electron-forge_slash_async-ora";
packageName = "@electron-forge/async-ora";
- version = "6.0.0-beta.67";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.67.tgz";
- sha512 = "pqQlxHRnECDAAQhi3U2JgSj60TBv3e3ZLvL9Wv+dIBVv64Oc2QTRrryO5Svd7w2J1t+enVwQue18IrVaYUjw0w==";
+ url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0.tgz";
+ sha512 = "qRbdJRvpxpmSzoNh0YzsYFR7cKsgMwI4hRbaL8qstYHs4bvEzvtmrLLEUpfGM6rh0a3AAZDC67PbOBT0dhGLLw==";
};
};
- "@electron-forge/core-6.0.0-beta.67" = {
+ "@electron-forge/core-6.0.0" = {
name = "_at_electron-forge_slash_core";
packageName = "@electron-forge/core";
- version = "6.0.0-beta.67";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.67.tgz";
- sha512 = "/6s58GPttz8dOZU9ugX3GUSHGAgCljPA16KekmVTubzSxOPJ36CHHmTpcngObjyVUkmjBbqlEeZW/aOTP9WbJA==";
+ url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0.tgz";
+ sha512 = "EIHzle+n7fyOGQQyhL6hlyy6akzrVUVWXcYcYBlF+kI7MdonvJxQvtebiJBItX1gd4E4Fqe2fHi5ufk3ghqhlQ==";
};
};
- "@electron-forge/installer-base-6.0.0-beta.67" = {
- name = "_at_electron-forge_slash_installer-base";
- packageName = "@electron-forge/installer-base";
- version = "6.0.0-beta.67";
+ "@electron-forge/core-utils-6.0.0" = {
+ name = "_at_electron-forge_slash_core-utils";
+ packageName = "@electron-forge/core-utils";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.67.tgz";
- sha512 = "fDcseLUISGVRNn88Rm2NA2K7GY5cXnNW4kLQ90IyfCdeeascPrQplGswBRhVBd4uFJNbG0Pane6/8YhNHkGswg==";
+ url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-6.0.0.tgz";
+ sha512 = "JX9COxf+V7py7V8QjX4aQySDLx2RceujNB1omXKm7fdfwItYVhimKz9QBfDwG8q5+K2nbCRSfpAbIEOuhUBl6Q==";
};
};
- "@electron-forge/installer-darwin-6.0.0-beta.67" = {
- name = "_at_electron-forge_slash_installer-darwin";
- packageName = "@electron-forge/installer-darwin";
- version = "6.0.0-beta.67";
- src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.67.tgz";
- sha512 = "tRV9bw0k2xLkMdSThJ85y9Bfs2MyfAYrWPFLJfi7tTbecJ3FpoZpwlfh8Yj7SnTUNUuiiHe3V5bU0PUAZCD9qA==";
- };
- };
- "@electron-forge/installer-deb-6.0.0-beta.67" = {
- name = "_at_electron-forge_slash_installer-deb";
- packageName = "@electron-forge/installer-deb";
- version = "6.0.0-beta.67";
- src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.67.tgz";
- sha512 = "7ZWTwhqbmKLtezICAkxxIGCxgzmYz0pJKnxVulVyUJ9GmobYL6QubCDzFVnXYcIUOJFMGWhQtWRKXSMT1H+6XA==";
- };
- };
- "@electron-forge/installer-dmg-6.0.0-beta.67" = {
- name = "_at_electron-forge_slash_installer-dmg";
- packageName = "@electron-forge/installer-dmg";
- version = "6.0.0-beta.67";
- src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.67.tgz";
- sha512 = "+zeS3slNdHwABP2TgOcY0abUlO+ToHTy9Ux8lvU2C1TUV8CTAGvMttvJzX+MPMcglYB2llaSp0VsNk3aViup5g==";
- };
- };
- "@electron-forge/installer-exe-6.0.0-beta.67" = {
- name = "_at_electron-forge_slash_installer-exe";
- packageName = "@electron-forge/installer-exe";
- version = "6.0.0-beta.67";
- src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.67.tgz";
- sha512 = "8dViBJPHWUoW7wtm2MAk02H/qS/gmSGWL0BVSK4Ol1n/idakTlCJEvOAYnhTqcYDWkmxIv/6EGpros90cuTlqQ==";
- };
- };
- "@electron-forge/installer-linux-6.0.0-beta.67" = {
- name = "_at_electron-forge_slash_installer-linux";
- packageName = "@electron-forge/installer-linux";
- version = "6.0.0-beta.67";
- src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.67.tgz";
- sha512 = "ZlvAJNih6g0vxBpUxo7z2xPE6m5FTwqChtHv0ysfTSHjNxFOlXPBIuA7xsC/8ezmJC7okhagDnOUYeJuW2dPXQ==";
- };
- };
- "@electron-forge/installer-rpm-6.0.0-beta.67" = {
- name = "_at_electron-forge_slash_installer-rpm";
- packageName = "@electron-forge/installer-rpm";
- version = "6.0.0-beta.67";
- src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.67.tgz";
- sha512 = "1U+ozsXb+0Wq2M5ZE3e0b5LYj516Kx6EmVc8VynBy2OdzXl/u0GRnQfrExQXaYv4KrpdenaZEwLJjDTk0/NFNg==";
- };
- };
- "@electron-forge/installer-zip-6.0.0-beta.67" = {
- name = "_at_electron-forge_slash_installer-zip";
- packageName = "@electron-forge/installer-zip";
- version = "6.0.0-beta.67";
- src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.67.tgz";
- sha512 = "V0+yfvIP03ylkpK7rqD+2wNo+64GW6xJ2fxVOqq6Gp1s3E+Y+ymwMg4Ve5PpzVTmfhJ5qh9o8BEvgqSydT8piw==";
- };
- };
- "@electron-forge/maker-base-6.0.0-beta.67" = {
+ "@electron-forge/maker-base-6.0.0" = {
name = "_at_electron-forge_slash_maker-base";
packageName = "@electron-forge/maker-base";
- version = "6.0.0-beta.67";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.67.tgz";
- sha512 = "WYwY01zEUr1II5lXiaGmGDUZ12swB/MJBOE5JNtGnirh6y/0MlSWhQOjbZxmLG72MrKbnEjvyqOb/8+3Yk4hzg==";
+ url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0.tgz";
+ sha512 = "zT4NQzJ4zjlKwmRtY/HeKcd/eP+R2vtYvpen5z6vuqY12+jubGgRoGyot4VT0nN5p46gcofGW/Y6aPEuND4ORg==";
};
};
- "@electron-forge/plugin-base-6.0.0-beta.67" = {
+ "@electron-forge/plugin-base-6.0.0" = {
name = "_at_electron-forge_slash_plugin-base";
packageName = "@electron-forge/plugin-base";
- version = "6.0.0-beta.67";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.67.tgz";
- sha512 = "XwETxNAFRNsYbslzdDUu/bn1x2LVQ/XIkRQCVjRLQUtKj/On+gHHnLRb/e50LZT/PyDGEb36aX/mrkWqCulbOg==";
+ url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0.tgz";
+ sha512 = "0PVEz0cFL0KKlBfyCaLVKfdOkdaSlJu+vl3oGLZoDVyOw3wNu5Tk2o84gKgkgtZ1jZTH3dmxUhimdWSMYl0QYA==";
};
};
- "@electron-forge/publisher-base-6.0.0-beta.67" = {
+ "@electron-forge/publisher-base-6.0.0" = {
name = "_at_electron-forge_slash_publisher-base";
packageName = "@electron-forge/publisher-base";
- version = "6.0.0-beta.67";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.67.tgz";
- sha512 = "mLo4eCvU4cFG5qH+5NzQYIRfcojAQC7ogHSUB1Tv0HTQqZwozR+pEtuEydMk9OFBEPkphJjA59qY2N3kZrcuOA==";
+ url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0.tgz";
+ sha512 = "Aa6Xf00BQwxlyXpuismOtOt6XezP8CURWRnj1WN2kvSJDkLSzFwJqppHUIdz1htRx65h0H+uyaaCb2WlaWivMg==";
};
};
- "@electron-forge/shared-types-6.0.0-beta.67" = {
+ "@electron-forge/shared-types-6.0.0" = {
name = "_at_electron-forge_slash_shared-types";
packageName = "@electron-forge/shared-types";
- version = "6.0.0-beta.67";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.67.tgz";
- sha512 = "QzL0yINK2d98trUbhrJPnIKhhhQSKOoiUBG0GM44dR0pstdOexNMNdgWX2+48PHiDwiqosgQBB9b47uJCrPR0Q==";
+ url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0.tgz";
+ sha512 = "FN+158+EvSzbL/ZGwsLxeUbYOJm8bhHCLbR7SPAmKwn/X2P8pVj4HuhiROkqdiuU4kUDmrOg/LgObODofyvIKw==";
};
};
- "@electron-forge/template-base-6.0.0-beta.67" = {
+ "@electron-forge/template-base-6.0.0" = {
name = "_at_electron-forge_slash_template-base";
packageName = "@electron-forge/template-base";
- version = "6.0.0-beta.67";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.67.tgz";
- sha512 = "yL4PpE8IBM5dxt7DAKOOVgM1L0cIWXoEvgmdNYKuS599IIxa8qMhOSKf8jfLNEeoI2nL4wNtfCZXAe0/eDX+JA==";
+ url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0.tgz";
+ sha512 = "jFFS7U6T6owLGZ9uB1m7KgAzWrG1QG0cg/0XK2OijpgRJuTy3O/qUzAf7IhdwxT7CARMq2vLq6yMbTYb/0tQ7Q==";
};
};
- "@electron-forge/template-typescript-6.0.0-beta.67" = {
- name = "_at_electron-forge_slash_template-typescript";
- packageName = "@electron-forge/template-typescript";
- version = "6.0.0-beta.67";
- src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.67.tgz";
- sha512 = "tzg06sATQ7G8/5HTSBnW8TyimEQHxa7a3q5JoPDJfOTu6fHcqFJlnjpwiH2qMSX5/S1BZ9Qhr4FIjMvHSoGjBA==";
- };
- };
- "@electron-forge/template-typescript-webpack-6.0.0-beta.67" = {
- name = "_at_electron-forge_slash_template-typescript-webpack";
- packageName = "@electron-forge/template-typescript-webpack";
- version = "6.0.0-beta.67";
- src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.67.tgz";
- sha512 = "N3fz4HGDB4eLgn6ZEaef8qStZQ8bM1HTgHJdFXZDuzg/PFDnGsxkumIh0PVFlwEpfO2SC+KrUewG/ttmf84Jeg==";
- };
- };
- "@electron-forge/template-webpack-6.0.0-beta.67" = {
+ "@electron-forge/template-webpack-6.0.0" = {
name = "_at_electron-forge_slash_template-webpack";
packageName = "@electron-forge/template-webpack";
- version = "6.0.0-beta.67";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.67.tgz";
- sha512 = "tRR8s7uufaZhL9HgPEQ1GA5x+sL/MTvvUAhn55uQ5yEryrYtrFa1MtFlxGnkVnPlYTfAyrPdyzHxX7peXfVTJQ==";
+ url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0.tgz";
+ sha512 = "o7gUO8zdUyvkcQ9nlBd20F9nDErO5Hd75Tk9GCXPQ4nQuEEZnUp+mzd5j+bzmSaidjFfVCfz1hXzwko5fch34g==";
+ };
+ };
+ "@electron-forge/template-webpack-typescript-6.0.0" = {
+ name = "_at_electron-forge_slash_template-webpack-typescript";
+ packageName = "@electron-forge/template-webpack-typescript";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-6.0.0.tgz";
+ sha512 = "lhWZIqLHPt7gffdfTl0mg5YLh6nUgcNxpzW8Osctstc7XM2eF0CK09Gbi6d/E2MPIK911zrTSqsvBkYXWCUprQ==";
};
};
"@electron/asar-3.2.1" = {
@@ -3892,6 +3964,33 @@ let
sha512 = "eFZVFoRXb3GFGd7Ak7W4+6jBl9wBtiZ4AaYOse97ej6mKj5tkyO0dUnUChs1IhJZtx1BENo4/p4WUTXpi6vT+g==";
};
};
+ "@electron/notarize-1.2.3" = {
+ name = "_at_electron_slash_notarize";
+ packageName = "@electron/notarize";
+ version = "1.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@electron/notarize/-/notarize-1.2.3.tgz";
+ sha512 = "9oRzT56rKh5bspk3KpAVF8lPKHYQrBnRwcgiOeR0hdilVEQmszDaAu0IPCPrwwzJN0ugNs0rRboTreHMt/6mBQ==";
+ };
+ };
+ "@electron/osx-sign-1.0.1" = {
+ name = "_at_electron_slash_osx-sign";
+ packageName = "@electron/osx-sign";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.0.1.tgz";
+ sha512 = "WkUcva+qkt809bI6uxxEG/uOWfl8HAw0m8aPijpKmGMIpZ1CWWB808YG6aY3wckUO86xZdmiOsUJTM4keLhY8A==";
+ };
+ };
+ "@electron/rebuild-3.2.10" = {
+ name = "_at_electron_slash_rebuild";
+ packageName = "@electron/rebuild";
+ version = "3.2.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@electron/rebuild/-/rebuild-3.2.10.tgz";
+ sha512 = "SUBM6Mwi3yZaDFQjZzfGKpYTtOp9m60glounwX6tfGeVc/ZOl4jbquktUcyy7gYSLDWFLtKkftkY2xgMJZLQgg==";
+ };
+ };
"@electron/universal-1.3.3" = {
name = "_at_electron_slash_universal";
packageName = "@electron/universal";
@@ -4207,6 +4306,15 @@ let
sha512 = "vnPHFjwOqxQ1VLztktY+fYCfwvLzjqpzKn09rchcQE7Sdf0wtW5fFtIZBEFOOY5wasp8tXSnp627zrAwazPHzg==";
};
};
+ "@expo/code-signing-certificates-0.0.3" = {
+ name = "_at_expo_slash_code-signing-certificates";
+ packageName = "@expo/code-signing-certificates";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.3.tgz";
+ sha512 = "rHOUnsLaceOcdC8wUhkG+SuBJDbj/Nf/7kbBZH6ZbHzn22x92ZII/clIYOxt7C5P0xfeUwYKa7pRuZm6ut5k/g==";
+ };
+ };
"@expo/config-6.0.24" = {
name = "_at_expo_slash_config";
packageName = "@expo/config";
@@ -4225,6 +4333,15 @@ let
sha512 = "4lu0wr45XXJ2MXiLAm2+fmOyy/jjqF3NuDm92fO6nuulRzEEvTP4w3vsibJ690rT81ohtvhpruKhkRs0wSjKWA==";
};
};
+ "@expo/config-7.0.3" = {
+ name = "_at_expo_slash_config";
+ packageName = "@expo/config";
+ version = "7.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@expo/config/-/config-7.0.3.tgz";
+ sha512 = "joVtB5o+NF40Tmsdp65UzryRtbnCuMbXkVO4wJnNJO4aaK0EYLdHCYSewORVqNcDfGN0LphQr8VTG2npbd9CJA==";
+ };
+ };
"@expo/config-plugins-4.1.5" = {
name = "_at_expo_slash_config-plugins";
packageName = "@expo/config-plugins";
@@ -4243,6 +4360,15 @@ let
sha512 = "1OfnsOrfeSkB0VZfT01UjQ5Uq6p+yYbq8yNkj0e99K/6NLHpyvIxj+5tZIV0nQXgkOcqBIABL2uA7lwB8CkaBQ==";
};
};
+ "@expo/config-plugins-5.0.3" = {
+ name = "_at_expo_slash_config-plugins";
+ packageName = "@expo/config-plugins";
+ version = "5.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-5.0.3.tgz";
+ sha512 = "XS7Fn1BFrhZsr52nJaE02waMNgkRUjBA6Y0ithG0ZcwcEQ0YmaIMuIbeD65lqEyCA3lF0KnLTq40PH8Y8t5QWA==";
+ };
+ };
"@expo/config-types-45.0.0" = {
name = "_at_expo_slash_config-types";
packageName = "@expo/config-types";
@@ -4261,6 +4387,15 @@ let
sha512 = "PXkmOgNwRyBfgVT1HmFZhfh3Qm7WKKyV6mk3/5HJ/LzPh1t+Zs2JrWX8U2YncTLV1QzV7nV8tnkyvszzqnZEzQ==";
};
};
+ "@expo/config-types-47.0.0" = {
+ name = "_at_expo_slash_config-types";
+ packageName = "@expo/config-types";
+ version = "47.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@expo/config-types/-/config-types-47.0.0.tgz";
+ sha512 = "r0pWfuhkv7KIcXMUiNACJmJKKwlTBGMw9VZHNdppS8/0Nve8HZMTkNRFQzTHW1uH3pBj8jEXpyw/2vSWDHex9g==";
+ };
+ };
"@expo/dev-server-0.1.115" = {
name = "_at_expo_slash_dev-server";
packageName = "@expo/dev-server";
@@ -4270,13 +4405,13 @@ let
sha512 = "kqr71GAXzBVmjT+qSmqckBKY6Y9lFf4Oy1S4aVygx72CNgyzVTw4CPqT5RsNhcvQEEdACgarczDbPnNkmrm7GQ==";
};
};
- "@expo/dev-server-0.1.120" = {
+ "@expo/dev-server-0.1.122" = {
name = "_at_expo_slash_dev-server";
packageName = "@expo/dev-server";
- version = "0.1.120";
+ version = "0.1.122";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.120.tgz";
- sha512 = "x5/jCv0EOpz6FyehXpI5bgDQTVsGZYvgISkAw7n60RhtG+aid6N2CCR9SDMCH70XaUpFnfTW9qvderpCEj7Puw==";
+ url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.122.tgz";
+ sha512 = "nUx1yFYVLVXVLW7+bOz2O4OWfwdp1WVGpcZpKRC38yPkXkAVCaWrK6p0muWZJJb7Nm0sXfDiMdsudxZFNIKFmQ==";
};
};
"@expo/devcert-1.0.0" = {
@@ -4288,22 +4423,22 @@ let
sha512 = "cahGyQCmpZmHpn2U04NR9KwsOIZy7Rhsw8Fg4q+A6563lIJxbkrgPnxq/O3NQAh3ohEvOXOOnoFx0b4yycCkpQ==";
};
};
- "@expo/eas-build-job-0.2.94" = {
+ "@expo/eas-build-job-0.2.96" = {
name = "_at_expo_slash_eas-build-job";
packageName = "@expo/eas-build-job";
- version = "0.2.94";
+ version = "0.2.96";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-0.2.94.tgz";
- sha512 = "+tig8SczdGfjk2Tma5cVmESkx0bPBmR6dan2Bp5ITai3nhl8JN9mNZfEJPaBPCDlUe37sHvJwosh3GMfcq7QYg==";
+ url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-0.2.96.tgz";
+ sha512 = "Y8jeEEwzU/GfYNSq+5Snbl5NFpXSgqtRCvPIpWUWka0XsPf4qhU9e6iWjOJboi5VbQIAQfZbXMjW/OZByjT/OA==";
};
};
- "@expo/eas-json-2.2.0" = {
+ "@expo/eas-json-2.6.0" = {
name = "_at_expo_slash_eas-json";
packageName = "@expo/eas-json";
- version = "2.2.0";
+ version = "2.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-2.2.0.tgz";
- sha512 = "CwWv6kTTwRghWoKM/+r2hZYChwZqfZBpbC2rYmxKN9oMstPf/ItVKP7jNHtfoWG23qed6o/ZUYNtBseDBovxvw==";
+ url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-2.6.0.tgz";
+ sha512 = "DnamwAlsnWd8a7mPR5a6a6bYUSlKwAm2dw5/5Xl5G69OPjzkAZ1xdIqoJ018KubfoI92DgMKNX3l1ojOAEcvGw==";
};
};
"@expo/image-utils-0.3.20" = {
@@ -4360,6 +4495,15 @@ let
sha512 = "QhOiotuzklalLbbsTMXJ5v4q4jffQ5xXhy1zsosgc2DL/ZzUr/Yhm3xUcOGnPQ2x7UyeY9Tl3njPHBOJJe7CSA==";
};
};
+ "@expo/metro-config-0.5.1" = {
+ name = "_at_expo_slash_metro-config";
+ packageName = "@expo/metro-config";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.5.1.tgz";
+ sha512 = "Rvy4ZFgKNDfXO401z2OQF8fWbPj1lLVDL4GF1aqCIhCDHCKrezbwB0xejpcUyndJRCxBL2BMAM+P24t6cKv9Fw==";
+ };
+ };
"@expo/multipart-body-parser-1.1.0" = {
name = "_at_expo_slash_multipart-body-parser";
packageName = "@expo/multipart-body-parser";
@@ -4405,31 +4549,22 @@ let
sha512 = "+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w==";
};
};
- "@expo/plugin-autocomplete-1.4.0" = {
- name = "_at_expo_slash_plugin-autocomplete";
- packageName = "@expo/plugin-autocomplete";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@expo/plugin-autocomplete/-/plugin-autocomplete-1.4.0.tgz";
- sha512 = "HK+lq5kWXvP2NOg/mME9ZlbCWRzwvslIZmVvYHnoRmIGvPUXku7eoOtlSEpmOk77wM+wu/IoFRAY8kBYeAZEbQ==";
- };
- };
- "@expo/plugin-help-5.3.0" = {
+ "@expo/plugin-help-5.1.16" = {
name = "_at_expo_slash_plugin-help";
packageName = "@expo/plugin-help";
- version = "5.3.0";
+ version = "5.1.16";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/plugin-help/-/plugin-help-5.3.0.tgz";
- sha512 = "dgh5zo2E2hOQ+5vCRWdrPRDp/omnDdTWpMcxFmco5CkCaRX21FRzMFEZdJVhoLlEeavDgX98VyzqWslJxXHn3w==";
+ url = "https://registry.npmjs.org/@expo/plugin-help/-/plugin-help-5.1.16.tgz";
+ sha512 = "4yuVUoLgUz5tbPRu7dxKE5nP+1UHYXb4t9QmeoNg/8kIrdBH6OquW0wxre45T3zUrMq5+YYuTAvoPYuAhF1XWA==";
};
};
- "@expo/plugin-warn-if-update-available-2.3.0" = {
+ "@expo/plugin-warn-if-update-available-2.4.0" = {
name = "_at_expo_slash_plugin-warn-if-update-available";
packageName = "@expo/plugin-warn-if-update-available";
- version = "2.3.0";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.3.0.tgz";
- sha512 = "GBHwvWNt23aOrpFW2kw2RBkInnWKPa3j4h5gp09cxjYawcI3jl2FKyOEokxCiFhE+9QnIFTEm0fWJDceGmBe0w==";
+ url = "https://registry.npmjs.org/@expo/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.4.0.tgz";
+ sha512 = "+tRZJUNeybjy2xnncGk4puZBWbiRIEG1n+RVYPD/SQXpz1YCnZlcXByTT13GB3WABmy0xF87kFeBxoCoYQuIsQ==";
};
};
"@expo/prebuild-config-4.0.3" = {
@@ -4450,6 +4585,15 @@ let
sha512 = "G4j1H3WFjRaiQ+FgFNULrnIm7RsQyjc4xp6lLTP2ydBv79wO3x8wAdeZvaZh7eOkfu9BESpQzACT1uuJTag5jg==";
};
};
+ "@expo/prebuild-config-5.0.6" = {
+ name = "_at_expo_slash_prebuild-config";
+ packageName = "@expo/prebuild-config";
+ version = "5.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-5.0.6.tgz";
+ sha512 = "umHVsle+inPFPt+GMWRjZhkHwNbbaXpiEKbRnWKweInaXEZa9R9qt8gLyzniaREnw+/cEAIgL1znrKmNk4lUfQ==";
+ };
+ };
"@expo/results-1.0.0" = {
name = "_at_expo_slash_results";
packageName = "@expo/results";
@@ -4711,22 +4855,22 @@ let
sha512 = "bHWftN3zTp1bbBfmAEH8YK9UURWj2mffw7b7VaW2Og1qxwv3GMSza1cyv/d3EVqpMJ8AVwFv3mbi9p1ieMN9mw==";
};
};
- "@fluentui/react-8.98.5" = {
+ "@fluentui/react-8.99.2" = {
name = "_at_fluentui_slash_react";
packageName = "@fluentui/react";
- version = "8.98.5";
+ version = "8.99.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react/-/react-8.98.5.tgz";
- sha512 = "nUObXEg2I9rku9uLkvrTvjm+eiwBAQXzrZUAiAaCS425v+DXX8a2kxu86SyemlsZJJ4wiX8gYHoNIVz+a1zESA==";
+ url = "https://registry.npmjs.org/@fluentui/react/-/react-8.99.2.tgz";
+ sha512 = "hmRgAwbiCEJBVWUY+hEyv/E6sdXxWVJ8kclslWIQgLczwSdpLdWyXe1i1IVM0elVc1n7iq8fRySi8DCvtp5VMw==";
};
};
- "@fluentui/react-focus-8.8.7" = {
+ "@fluentui/react-focus-8.8.8" = {
name = "_at_fluentui_slash_react-focus";
packageName = "@fluentui/react-focus";
- version = "8.8.7";
+ version = "8.8.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.7.tgz";
- sha512 = "ezQ9efT08JPYNuAinpWMIM8+hpaUpOOhr8ysl9iYBqC5J76Prs4sGylN0T8uWT7jQnuvSLdKYOr7vd+6ERGFsQ==";
+ url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.8.tgz";
+ sha512 = "N4JmmduWk50tIGTH6kYTDa1HJfJ9qzGztbmo7HEh+gzHLwHDkL0GOV5+VWfwPuBcUqD1eKP4fz/e/gCBswBShg==";
};
};
"@fluentui/react-hooks-8.6.12" = {
@@ -4792,13 +4936,13 @@ let
sha512 = "0AHJBMyYVI7vFChXdPynFf32IYB2y6z4EB5ACzW8UkPFrwkHncbj5pPPE24MCbV7jYR49YrHn9eLY38B+H4iiw==";
};
};
- "@forge/api-2.7.0" = {
+ "@forge/api-2.8.0" = {
name = "_at_forge_slash_api";
packageName = "@forge/api";
- version = "2.7.0";
+ version = "2.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@forge/api/-/api-2.7.0.tgz";
- sha512 = "5divMMwC4PVCUy3r84/CUUUTMWFNyeibtg7gpZGS1xK4OuOILRf+DjIRGWWFwxHHJNP+12YsPqSpdSgldEgU0w==";
+ url = "https://registry.npmjs.org/@forge/api/-/api-2.8.0.tgz";
+ sha512 = "C4ZQWKwn/Hy863gJ2Zjg7TjK0ZPggjin96/fXsTKp5xl3LXvZ5NUkyQ5mfbV7ufGUuC21/9/AS9+co+IIZOBHA==";
};
};
"@forge/auth-0.0.1" = {
@@ -4819,22 +4963,22 @@ let
sha512 = "+GFtFqBhFzwKaKmeEfw1jWQgZJNX4q11CCx1fSPFJB49Fdjb7k3lx74jAyzHlX0UWnm6DMK+/cYT7j5t6G9LfA==";
};
};
- "@forge/bundler-3.1.3" = {
+ "@forge/bundler-4.0.0" = {
name = "_at_forge_slash_bundler";
packageName = "@forge/bundler";
- version = "3.1.3";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@forge/bundler/-/bundler-3.1.3.tgz";
- sha512 = "0gxUAU8bbIeqlmrCHlXuDDxHoUy4425yoTpVgQJH4dRZrTdJ352HyBFtiaUkUgofe+Rli5pZc+vY3TV4H+SxEg==";
+ url = "https://registry.npmjs.org/@forge/bundler/-/bundler-4.0.0.tgz";
+ sha512 = "2hqHE5jR030bjAG5XHfmeGxVTM76qAI3eu0XWKxEBj4rGiIg1p4VOptq3d3OUvU+yq9pKX0sd6tQRayUWLfc2Q==";
};
};
- "@forge/cli-shared-3.2.1" = {
+ "@forge/cli-shared-3.2.2" = {
name = "_at_forge_slash_cli-shared";
packageName = "@forge/cli-shared";
- version = "3.2.1";
+ version = "3.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.2.1.tgz";
- sha512 = "dxo5iAlRLxQoKEJg2tO9uwmE3DhkxZT9Or4HlP2lZqB9ehukl2CkjW+M2sOyUi1807PKygpFi0PBAdnQ2Mu8mw==";
+ url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.2.2.tgz";
+ sha512 = "ij6N9//qE8vV39UbXS1UIliEDgt0AeDTBkBGhUscKwA3xktDEXLl/Rel5BOnBPVLHLR6ztCIe3TROLQKaLdzEA==";
};
};
"@forge/egress-1.1.1" = {
@@ -4846,22 +4990,22 @@ let
sha512 = "ycnIIOKyurzchlocjjvTwqtQNsCF98XRT+YvwVwZWwKZ0OmSzPcXPZImrIFw3dF1qySwRwRL31R0xZ1HYUEs8w==";
};
};
- "@forge/lint-3.2.7" = {
+ "@forge/lint-3.2.8" = {
name = "_at_forge_slash_lint";
packageName = "@forge/lint";
- version = "3.2.7";
+ version = "3.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@forge/lint/-/lint-3.2.7.tgz";
- sha512 = "bjuas6Qav3MB2WYfv69HWR+ALd3srtibe67JSyK+KQC5IbpJBLXPmNoab4kZAxtryLlH+8JGzRf+vKMnJTCOoA==";
+ url = "https://registry.npmjs.org/@forge/lint/-/lint-3.2.8.tgz";
+ sha512 = "CYY6lSOUdTW9Sfp0AclyiGoKP9s5XfiL9yT7nv2UKkA1VxUQSJzGW1oW9MJcH3uFJ9oZWulYBcF7Fft/MAebcQ==";
};
};
- "@forge/manifest-4.4.0" = {
+ "@forge/manifest-4.4.1" = {
name = "_at_forge_slash_manifest";
packageName = "@forge/manifest";
- version = "4.4.0";
+ version = "4.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.4.0.tgz";
- sha512 = "X0JvVhYX8Gfj2DdURrxhzdDlzfb37ZguX732s+BMsETovaYgVrNCQ32f45xAo62+levq0OXOA9N0LjnR/pdHJg==";
+ url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.4.1.tgz";
+ sha512 = "F7uLzYs+aMTHBGHJKoHaIPTeeGIpmOrnpoOKTLLLuzBNO16cXtEOo5veyNUelmQ3z1GuH1tKYOQdKc047o6M9Q==";
};
};
"@forge/storage-1.3.0" = {
@@ -5008,13 +5152,13 @@ let
sha512 = "IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg==";
};
};
- "@graphql-tools/batch-execute-8.5.6" = {
+ "@graphql-tools/batch-execute-8.5.10" = {
name = "_at_graphql-tools_slash_batch-execute";
packageName = "@graphql-tools/batch-execute";
- version = "8.5.6";
+ version = "8.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.6.tgz";
- sha512 = "33vMvVDLBKsNJVNhcySVXF+zkcRL/GRs1Lt+MxygrYCypcAPpFm+amE2y9vOCFufuaKExIX7Lonnmxu19vPzaQ==";
+ url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.10.tgz";
+ sha512 = "f3b/UPvscQ4NaSmSQIeZPNFhpZ9xb3AftKKSn9NzsUp3vxz0d8tymBVn28f51oqiqN9BMDpCH9P8TZrKpH1//Q==";
};
};
"@graphql-tools/delegate-7.1.5" = {
@@ -5026,13 +5170,22 @@ let
sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g==";
};
};
- "@graphql-tools/delegate-9.0.8" = {
+ "@graphql-tools/delegate-9.0.14" = {
name = "_at_graphql-tools_slash_delegate";
packageName = "@graphql-tools/delegate";
- version = "9.0.8";
+ version = "9.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.8.tgz";
- sha512 = "h+Uce0Np0eKj7wILOvlffRQ9jEQ4KelNXfqG8A2w+2sO2P6CbKsR7bJ4ch9lcUdCBbZ4Wg6L/K+1C4NRFfzbNw==";
+ url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.14.tgz";
+ sha512 = "yKwNQl10fOdKxSk5yBoKnSjq1oumf4QYVinV9niD9KVow6j0dONtaiAYvhzaQwN/Xwwi7oADFACmKRtphlhFTw==";
+ };
+ };
+ "@graphql-tools/executor-0.0.6" = {
+ name = "_at_graphql-tools_slash_executor";
+ packageName = "@graphql-tools/executor";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-0.0.6.tgz";
+ sha512 = "2KIj1grRb1Lni97xgX1ryekcjU/WTMC1ZdPpnd0nYrBWs/C4Nv4UMNP7E/Tr8za8zlrsESvEUbpLHsBRiQsGxA==";
};
};
"@graphql-tools/graphql-file-loader-6.2.7" = {
@@ -5044,22 +5197,22 @@ let
sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ==";
};
};
- "@graphql-tools/graphql-file-loader-7.5.5" = {
+ "@graphql-tools/graphql-file-loader-7.5.9" = {
name = "_at_graphql-tools_slash_graphql-file-loader";
packageName = "@graphql-tools/graphql-file-loader";
- version = "7.5.5";
+ version = "7.5.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.5.tgz";
- sha512 = "OL+7qO1S66TpMK7OGz8Ag2WL08HlxKxrObVSDlxzWbSubWuXM5v959XscYAKRf6daYcVpkfNvO37QjflL9mjhg==";
+ url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.9.tgz";
+ sha512 = "hEvWFLOG8JGsguWWdHqaFvj0xqwQu4KhqAKEjmIBq4vipVKLcmcjvOM56S0fv/dtn5pcKp9ZOZAxgncYVJ1hzw==";
};
};
- "@graphql-tools/import-6.7.6" = {
+ "@graphql-tools/import-6.7.10" = {
name = "_at_graphql-tools_slash_import";
packageName = "@graphql-tools/import";
- version = "6.7.6";
+ version = "6.7.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.7.6.tgz";
- sha512 = "WtUyiO2qCaK/H4u81zAw/NbBvCOzwKl4N+Vl+FqrFCzYobscwL6x6roePyoXM1O3+JJIIn3CETv4kg4kwxaBVw==";
+ url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.7.10.tgz";
+ sha512 = "6L19Ep0pP5wWywq9/jwCt2FdCJnEnyrxkmRkSRdYoTEmOFz5xrsfhyUfWl8ibx34gWzVYhCDOX1bN43zsLCbDA==";
};
};
"@graphql-tools/json-file-loader-6.2.6" = {
@@ -5071,13 +5224,13 @@ let
sha512 = "CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA==";
};
};
- "@graphql-tools/json-file-loader-7.4.6" = {
+ "@graphql-tools/json-file-loader-7.4.10" = {
name = "_at_graphql-tools_slash_json-file-loader";
packageName = "@graphql-tools/json-file-loader";
- version = "7.4.6";
+ version = "7.4.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.4.6.tgz";
- sha512 = "34AfjCitO4NtJ5AcXYLcFF3GDsMVTycrljSaBA2t1d7B4bMPtREDphKXLMc/Uf2zW6IW1i1sZZyrcmArPy1Z8A==";
+ url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.4.10.tgz";
+ sha512 = "/njUvIW/zdSr70eWDfDQNDXp2UQLe+YKFRLMZkpuISrw5cdvGaMepwpr0Yz6kFnHGwB6wSYLH25LkRAzpiKz+g==";
};
};
"@graphql-tools/load-6.2.4" = {
@@ -5089,13 +5242,13 @@ let
sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg==";
};
};
- "@graphql-tools/load-7.7.7" = {
+ "@graphql-tools/load-7.8.4" = {
name = "_at_graphql-tools_slash_load";
packageName = "@graphql-tools/load";
- version = "7.7.7";
+ version = "7.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.7.7.tgz";
- sha512 = "IpI2672zcoAX4FLjcH5kvHc7eqjPyLP1svrIcZKQenv0GRS6dW0HI9E5UCBs0y/yy8yW6s+SvpmNsfIlkMj3Kw==";
+ url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.4.tgz";
+ sha512 = "swS3sJx/gVpSw1CfI18zSwLlTFbN6PVlkfaLZJ8VN3d/3C+ESff553LLleXGgzOY9X0H1x3VHZeAR2+HUCrbbw==";
};
};
"@graphql-tools/merge-6.2.17" = {
@@ -5116,22 +5269,22 @@ let
sha512 = "BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg==";
};
};
- "@graphql-tools/merge-8.3.6" = {
+ "@graphql-tools/merge-8.3.10" = {
name = "_at_graphql-tools_slash_merge";
packageName = "@graphql-tools/merge";
- version = "8.3.6";
+ version = "8.3.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.6.tgz";
- sha512 = "uUBokxXi89bj08P+iCvQk3Vew4vcfL5ZM6NTylWi8PIpoq4r5nJ625bRuN8h2uubEdRiH8ntN9M4xkd/j7AybQ==";
+ url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.10.tgz";
+ sha512 = "/hSg69JwqEA+t01wQmMGKPuaJ9VJBSz6uAXhbNNrTBJu8bmXljw305NVXM49pCwDKFVUGtbTqYrBeLcfT3RoYw==";
};
};
- "@graphql-tools/mock-8.7.6" = {
+ "@graphql-tools/mock-8.7.10" = {
name = "_at_graphql-tools_slash_mock";
packageName = "@graphql-tools/mock";
- version = "8.7.6";
+ version = "8.7.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.6.tgz";
- sha512 = "cQGPyY6dF4x28552zjAg9En2WWVury62u1/xzipCNUSCdKRVOsAupTNBcAGdMjsKPLcGzzk1cPA8dP0DUfNqzg==";
+ url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.10.tgz";
+ sha512 = "PuRGfk6TQger7EfE08yO3+QCAcZ6nYo3kyoEmTPc27w4yiqKCwZIyD8vegzl/EQphEourjaOhO149te6qNEUeQ==";
};
};
"@graphql-tools/schema-7.1.5" = {
@@ -5152,13 +5305,13 @@ let
sha512 = "0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg==";
};
};
- "@graphql-tools/schema-9.0.4" = {
+ "@graphql-tools/schema-9.0.8" = {
name = "_at_graphql-tools_slash_schema";
packageName = "@graphql-tools/schema";
- version = "9.0.4";
+ version = "9.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.4.tgz";
- sha512 = "B/b8ukjs18fq+/s7p97P8L1VMrwapYc3N2KvdG/uNThSazRRn8GsBK0Nr+FH+mVKiUfb4Dno79e3SumZVoHuOQ==";
+ url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.8.tgz";
+ sha512 = "PnES7sNkhQ/FdPQhP7cup0OIzwzQh+nfjklilU7YJzE209ACIyEQtxoNCfvPW5eV6hc9bWsBQeI3Jm4mMtwxNA==";
};
};
"@graphql-tools/url-loader-6.10.1" = {
@@ -5170,13 +5323,13 @@ let
sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw==";
};
};
- "@graphql-tools/url-loader-7.16.4" = {
+ "@graphql-tools/url-loader-7.16.10" = {
name = "_at_graphql-tools_slash_url-loader";
packageName = "@graphql-tools/url-loader";
- version = "7.16.4";
+ version = "7.16.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.16.4.tgz";
- sha512 = "7yGrJJNcqVQIplCyVLk7tW2mAgYyZ06FRmCBnzw3B61+aIjFavrm6YlnKkhdqYSYyFmIbVcigdP3vkoYIu23TA==";
+ url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.16.10.tgz";
+ sha512 = "VFf0lKZpPSFtUl3cNycBEWlB8NzJhXFfas0PYsFmzzOmtGcHeY3rY2KMUfBr4wq7chPfBbGpcuAwjiI3x9MZzg==";
};
};
"@graphql-tools/utils-6.2.4" = {
@@ -5206,13 +5359,13 @@ let
sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ==";
};
};
- "@graphql-tools/utils-8.12.0" = {
+ "@graphql-tools/utils-8.13.1" = {
name = "_at_graphql-tools_slash_utils";
packageName = "@graphql-tools/utils";
- version = "8.12.0";
+ version = "8.13.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.12.0.tgz";
- sha512 = "TeO+MJWGXjUTS52qfK4R8HiPoF/R7X+qmgtOYd8DTH0l6b+5Y/tlg5aGeUJefqImRq7nvi93Ms40k/Uz4D5CWw==";
+ url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.13.1.tgz";
+ sha512 = "qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==";
};
};
"@graphql-tools/utils-8.9.0" = {
@@ -5224,6 +5377,15 @@ let
sha512 = "pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg==";
};
};
+ "@graphql-tools/utils-9.0.1" = {
+ name = "_at_graphql-tools_slash_utils";
+ packageName = "@graphql-tools/utils";
+ version = "9.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.0.1.tgz";
+ sha512 = "z6FimVa5E44bHKmqK0/uMp9hHvHo2Tkt9A5rlLb40ReD/8IFKehSXLzM4b2N1vcP7mSsbXIdDK9Aoc8jT/he1Q==";
+ };
+ };
"@graphql-tools/wrap-7.0.8" = {
name = "_at_graphql-tools_slash_wrap";
packageName = "@graphql-tools/wrap";
@@ -5233,13 +5395,13 @@ let
sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg==";
};
};
- "@graphql-tools/wrap-9.2.3" = {
+ "@graphql-tools/wrap-9.2.9" = {
name = "_at_graphql-tools_slash_wrap";
packageName = "@graphql-tools/wrap";
- version = "9.2.3";
+ version = "9.2.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.2.3.tgz";
- sha512 = "aiLjcAuUwcvA1mF25c7KFDPXEdQDpo6bTDyAMCSlFXpF4T01hoxLERmfmbRmsmy/dP80ZB31a+t70aspVdqZSA==";
+ url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.2.9.tgz";
+ sha512 = "GiEMy7VJIKxdgb9E8ZkaAPhePsDbBP5rOj07tr6jzcDY+ZhLcjmD9UuiPGVFgBSu6AzRyoviEJgI0hjksqfl1A==";
};
};
"@graphql-typed-document-node/core-3.1.1" = {
@@ -5269,15 +5431,6 @@ let
sha512 = "JmvQ03OTSpVd9JTlj/K3IWHSz4Gk/JMLUTtW7Zb0KvO1LcOYGATh5cNuRYzCAeDR3O8wq+q8FZe97eO9MBrkUw==";
};
};
- "@grpc/grpc-js-1.6.7" = {
- name = "_at_grpc_slash_grpc-js";
- packageName = "@grpc/grpc-js";
- version = "1.6.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.7.tgz";
- sha512 = "eBM03pu9hd3VqDQG+kHahiG1x80RGkkqqRb1Pchcwqej/KkAH95gAvKs6laqaHCycYaPK+TKuNQnOz9UXYA8qw==";
- };
- };
"@grpc/grpc-js-1.7.0" = {
name = "_at_grpc_slash_grpc-js";
packageName = "@grpc/grpc-js";
@@ -5287,15 +5440,6 @@ let
sha512 = "wvKxal+40Xx11DXO2q5PfY3UiE25iwTb8SOz6A9IJII/V7d19x2ex0he+GJfVW0JZCaBjCPSjUB0yU9Ecm4WCw==";
};
};
- "@grpc/grpc-js-1.7.1" = {
- name = "_at_grpc_slash_grpc-js";
- packageName = "@grpc/grpc-js";
- version = "1.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.7.1.tgz";
- sha512 = "GVtMU4oh/TeKkWGzXUEsyZtyvSUIT1z49RtGH1UnEGeL+sLuxKl8QH3KZTlSB329R1sWJmesm5hQ5CxXdYH9dg==";
- };
- };
"@grpc/grpc-js-1.7.2" = {
name = "_at_grpc_slash_grpc-js";
packageName = "@grpc/grpc-js";
@@ -5314,15 +5458,6 @@ let
sha512 = "H9l79u4kJ2PVSxUNA08HMYAnUBLj9v6KjYQ7SQ71hOZcEXhShE/y5iQCesP8+6/Ik/7i2O0a10bPquIcYfufog==";
};
};
- "@grpc/proto-loader-0.6.12" = {
- name = "_at_grpc_slash_proto-loader";
- packageName = "@grpc/proto-loader";
- version = "0.6.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.12.tgz";
- sha512 = "filTVbETFnxb9CyRX98zN18ilChTuf/C5scZ2xyaOTp0EHGq0/ufX8rjqXUcSb1Gpv7eZq4M2jDvbh9BogKnrg==";
- };
- };
"@grpc/proto-loader-0.7.2" = {
name = "_at_grpc_slash_proto-loader";
packageName = "@grpc/proto-loader";
@@ -5476,13 +5611,13 @@ let
sha512 = "MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==";
};
};
- "@humanwhocodes/config-array-0.11.6" = {
+ "@humanwhocodes/config-array-0.11.7" = {
name = "_at_humanwhocodes_slash_config-array";
packageName = "@humanwhocodes/config-array";
- version = "0.11.6";
+ version = "0.11.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.6.tgz";
- sha512 = "jJr+hPTJYKyDILJfhNSHsjiwXYf26Flsz8DvNndOsHs5pwSnpGUEy8yzF0JYhCEvTDdV2vuOK5tt8BVhwO5/hg==";
+ url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz";
+ sha512 = "kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==";
};
};
"@humanwhocodes/config-array-0.5.0" = {
@@ -6025,6 +6160,15 @@ let
sha512 = "GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==";
};
};
+ "@lcdp/offline-plugin-5.1.1" = {
+ name = "_at_lcdp_slash_offline-plugin";
+ packageName = "@lcdp/offline-plugin";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@lcdp/offline-plugin/-/offline-plugin-5.1.1.tgz";
+ sha512 = "TjLyneaRVHBNyzHHXeDfpejMqNYPZqs/hZqgEwPH5bgqDgh348dId/rOAHWkiGtujgv4ZejWZNM4derv0Mjdqw==";
+ };
+ };
"@ledgerhq/devices-5.51.1" = {
name = "_at_ledgerhq_slash_devices";
packageName = "@ledgerhq/devices";
@@ -6925,6 +7069,15 @@ let
sha512 = "/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg==";
};
};
+ "@mapbox/mapbox-gl-supported-2.0.1" = {
+ name = "_at_mapbox_slash_mapbox-gl-supported";
+ packageName = "@mapbox/mapbox-gl-supported";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-2.0.1.tgz";
+ sha512 = "HP6XvfNIzfoMVfyGjBckjiAOQK9WfX0ywdLubuPMPv+Vqf5fj0uCbgBQYpiqcWZT6cbyyRnTSXDheT1ugvF6UQ==";
+ };
+ };
"@mapbox/node-pre-gyp-1.0.10" = {
name = "_at_mapbox_slash_node-pre-gyp";
packageName = "@mapbox/node-pre-gyp";
@@ -6952,6 +7105,15 @@ let
sha512 = "cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw==";
};
};
+ "@mapbox/tiny-sdf-2.0.5" = {
+ name = "_at_mapbox_slash_tiny-sdf";
+ packageName = "@mapbox/tiny-sdf";
+ version = "2.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.5.tgz";
+ sha512 = "OhXt2lS//WpLdkqrzo/KwB7SRD8AiNTFFzuo9n14IBupzIMa67yGItcK7I2W9D8Ghpa4T04Sw9FWsKCJG50Bxw==";
+ };
+ };
"@mapbox/unitbezier-0.0.0" = {
name = "_at_mapbox_slash_unitbezier";
packageName = "@mapbox/unitbezier";
@@ -6961,6 +7123,15 @@ let
sha512 = "HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA==";
};
};
+ "@mapbox/unitbezier-0.0.1" = {
+ name = "_at_mapbox_slash_unitbezier";
+ packageName = "@mapbox/unitbezier";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz";
+ sha512 = "nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==";
+ };
+ };
"@mapbox/vector-tile-1.3.1" = {
name = "_at_mapbox_slash_vector-tile";
packageName = "@mapbox/vector-tile";
@@ -7483,6 +7654,15 @@ let
sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==";
};
};
+ "@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" = {
+ name = "_at_nicolo-ribaudo_slash_eslint-scope-5-internals";
+ packageName = "@nicolo-ribaudo/eslint-scope-5-internals";
+ version = "5.1.1-v1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz";
+ sha512 = "54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==";
+ };
+ };
"@node-ipc/js-queue-2.0.3" = {
name = "_at_node-ipc_slash_js-queue";
packageName = "@node-ipc/js-queue";
@@ -7933,31 +8113,31 @@ let
sha512 = "7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==";
};
};
- "@nrwl/cli-15.0.1" = {
+ "@nrwl/cli-15.0.6" = {
name = "_at_nrwl_slash_cli";
packageName = "@nrwl/cli";
- version = "15.0.1";
+ version = "15.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@nrwl/cli/-/cli-15.0.1.tgz";
- sha512 = "ZehVNZOajNG7i5qg4vDeIcf88PuyFZhAwNhT9G7yjG6v+23zFwOVUsweQeQbY0GxIGc9d+jXGzEe6hU+UYovPQ==";
+ url = "https://registry.npmjs.org/@nrwl/cli/-/cli-15.0.6.tgz";
+ sha512 = "ckNPeEseK7rdYKYPiVMp368G5lLKp8dYrAg6dcKNqi7+UCPDAfdk5BW9VCVDV5bQw1D5UVQbUaq6AWJFkqC+vQ==";
};
};
- "@nrwl/devkit-15.0.1" = {
+ "@nrwl/devkit-15.0.6" = {
name = "_at_nrwl_slash_devkit";
packageName = "@nrwl/devkit";
- version = "15.0.1";
+ version = "15.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-15.0.1.tgz";
- sha512 = "KdKEENjZX/EA7FuWDBFYOldbVxd4eZT9MHOLUZADg2QQEgFfBNJUb1/R7JWVal8RPseeJSx8ber2iohjQkaN2A==";
+ url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-15.0.6.tgz";
+ sha512 = "8hxmxIvD53J9dxEQ3iYZv8sd1ii78btXUBVCTfKtzaymysmmoFajpznJ0S+YQB8rCx7A5CKY7jMJ0Q4jFBr5ew==";
};
};
- "@nrwl/tao-15.0.1" = {
+ "@nrwl/tao-15.0.6" = {
name = "_at_nrwl_slash_tao";
packageName = "@nrwl/tao";
- version = "15.0.1";
+ version = "15.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@nrwl/tao/-/tao-15.0.1.tgz";
- sha512 = "CytTfL7W6xkl1rW5fwO1nGF0Ft/Tk3ilc7/7I9+1NlNGdu/joFMOWub5YEQFIe488BJt2mxZ9m2n6sFJPVD19Q==";
+ url = "https://registry.npmjs.org/@nrwl/tao/-/tao-15.0.6.tgz";
+ sha512 = "O6Fv1Uq+ul/egO8pGU8R1ei+oemugGfqR3/uGR6lwdyslEo1+CrirjhoHmbmFY7Kc+hZ7wjK8fAfV51tQY8QyQ==";
};
};
"@oclif/command-1.8.0" = {
@@ -7969,13 +8149,13 @@ let
sha512 = "5vwpq6kbvwkQwKqAoOU3L72GZ3Ta8RRrewKj9OJRolx28KLJJ8Dg9Rf7obRwt5jQA9bkYd8gqzMTrI7H3xLfaw==";
};
};
- "@oclif/command-1.8.18" = {
+ "@oclif/command-1.8.19" = {
name = "_at_oclif_slash_command";
packageName = "@oclif/command";
- version = "1.8.18";
+ version = "1.8.19";
src = fetchurl {
- url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.18.tgz";
- sha512 = "qTad+jtiriMMbkw6ArtcUY89cwLwmwDnD4KSGT+OQiZKYtegp3NUCM9JN8lfj/aKC+0kvSitJM4ULzbgiVTKQQ==";
+ url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.19.tgz";
+ sha512 = "4fB3VB877Bbw2eewl7rp4UPV45GtPFUlk9xGtafl28mD95dGiYYXzU+pLgqMkrEdEfn4/py+3YnE3uYu+djfRA==";
};
};
"@oclif/config-1.17.0" = {
@@ -8005,13 +8185,13 @@ let
sha512 = "R6dBedaUVn5jtAh79aaRm7jezx4l3V7Im9NORlLmudz5BL1foMeuXEvnqm+bMiejyexVA+oi9mto6YKZPzo/5Q==";
};
};
- "@oclif/core-1.13.10" = {
+ "@oclif/core-1.19.2" = {
name = "_at_oclif_slash_core";
packageName = "@oclif/core";
- version = "1.13.10";
+ version = "1.19.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@oclif/core/-/core-1.13.10.tgz";
- sha512 = "nwpjXwWscETdvO+/z94V1zd95vnzmCB6VRaobR4BdBllwWU6jHF/eCi1Ud2Tk9RSedChoLneZuDCkKnRCmxyng==";
+ url = "https://registry.npmjs.org/@oclif/core/-/core-1.19.2.tgz";
+ sha512 = "n5ni/NNR6+I0IQXVGoLKdrdw6IS3WH/R/hw6WX8ERfLMZACrNSuJFD9EmBZkztyRkmiQ2L06ULazW5bJn5Shog==";
};
};
"@oclif/errors-1.3.4" = {
@@ -8077,6 +8257,15 @@ let
sha512 = "Afchpdd8FNfx9GaU/1D9IzyfiXvjfGybgzQ6G4GTFvPO0/hLdkXX3YyYq+SnxE6/bCrhg4pleiB+GuJACmmkEA==";
};
};
+ "@oclif/plugin-autocomplete-1.3.4" = {
+ name = "_at_oclif_slash_plugin-autocomplete";
+ packageName = "@oclif/plugin-autocomplete";
+ version = "1.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-1.3.4.tgz";
+ sha512 = "qlD1jlx/5PCGTpF7snKYDEQlLF2pcqr3P2Gw+JWyFnkrjWCLMGDnwaDL4ulruDp3sBxtKNY73sywmKJxQ8F76Q==";
+ };
+ };
"@oclif/plugin-help-1.2.11" = {
name = "_at_oclif_slash_plugin-help";
packageName = "@oclif/plugin-help";
@@ -8113,13 +8302,13 @@ let
sha512 = "60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw==";
};
};
- "@oclif/screen-3.0.2" = {
+ "@oclif/screen-3.0.3" = {
name = "_at_oclif_slash_screen";
packageName = "@oclif/screen";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@oclif/screen/-/screen-3.0.2.tgz";
- sha512 = "S/SF/XYJeevwIgHFmVDAFRUvM3m+OjhvCAYMk78ZJQCYCQ5wS7j+LTt1ZEv2jpEEGg2tx/F6TYYWxddNAYHrFQ==";
+ url = "https://registry.npmjs.org/@oclif/screen/-/screen-3.0.3.tgz";
+ sha512 = "KX8gMYA9ujBPOd1HFsV9e0iEx7Uoj8AG/3YsW4TtWQTg4lJvr82qNm7o/cFQfYRIt+jw7Ew/4oL4A22zOT+IRA==";
};
};
"@octokit/auth-token-2.5.0" = {
@@ -9238,13 +9427,13 @@ let
sha512 = "cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==";
};
};
- "@parcel/watcher-2.0.5" = {
+ "@parcel/watcher-2.0.6" = {
name = "_at_parcel_slash_watcher";
packageName = "@parcel/watcher";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.0.5.tgz";
- sha512 = "x0hUbjv891omnkcHD7ZOhiyyUqUUR6MNjq89JhEI3BxppeKWAm6NPQsqqRrAkCJBogdT/o/My21sXtTI9rJIsw==";
+ url = "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.0.6.tgz";
+ sha512 = "6CaHXp6BNrFY5375OGQLSeaxfO8csgGWbO1U2nUqufDtUks7ZIG5wAyj/wR1zkOxRrhN0EaZWvlgSKYqo7a9lg==";
};
};
"@parcel/workers-1.11.0" = {
@@ -9283,13 +9472,13 @@ let
sha512 = "coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==";
};
};
- "@peculiar/webcrypto-1.4.0" = {
+ "@peculiar/webcrypto-1.4.1" = {
name = "_at_peculiar_slash_webcrypto";
packageName = "@peculiar/webcrypto";
- version = "1.4.0";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.4.0.tgz";
- sha512 = "U58N44b2m3OuTgpmKgf0LPDOmP3bhwNz01vAnj1mBwxBASRhptWYK+M3zG+HBkDqGQM+bFsoIihTW8MdmPXEqg==";
+ url = "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.4.1.tgz";
+ sha512 = "eK4C6WTNYxoI7JOabMoZICiyqRRtJB220bh0Mbj5RwRycleZf9BPyZoxsTvpP0FpmVS2aS13NKOuh5/tN3sIRw==";
};
};
"@phenomnomnominal/tsquery-4.1.1" = {
@@ -9535,6 +9724,15 @@ let
sha512 = "EBw7Ag1hPgFzdznK2PBblc1kdlj5B5Cw3XwI9/oG7tSn85/HKy3X9xHy/8tm/eNXJYHLXHJL/pkwBpFMVVefkw==";
};
};
+ "@redis/bloom-1.1.0" = {
+ name = "_at_redis_slash_bloom";
+ packageName = "@redis/bloom";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@redis/bloom/-/bloom-1.1.0.tgz";
+ sha512 = "9QovlxmpRtvxVbN0UBcv8WfdSMudNZZTFqCsnBszcQXqaZb/TVe30ScgGEO7u1EAIacTPAo7/oCYjYAxiHLanQ==";
+ };
+ };
"@redis/client-1.2.0" = {
name = "_at_redis_slash_client";
packageName = "@redis/client";
@@ -9544,13 +9742,13 @@ let
sha512 = "a8Nlw5fv2EIAFJxTDSSDVUT7yfBGpZO96ybZXzQpgkyLg/dxtQ1uiwTc0EGfzg1mrPjZokeBSEGTbGXekqTNOg==";
};
};
- "@redis/client-1.3.0" = {
+ "@redis/client-1.3.1" = {
name = "_at_redis_slash_client";
packageName = "@redis/client";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@redis/client/-/client-1.3.0.tgz";
- sha512 = "XCFV60nloXAefDsPnYMjHGtvbtHR8fV5Om8cQ0JYqTNbWcQo/4AryzJ2luRj4blveWazRK/j40gES8M7Cp6cfQ==";
+ url = "https://registry.npmjs.org/@redis/client/-/client-1.3.1.tgz";
+ sha512 = "FKEHpOu7Q4+cuM6VWjA54988K5jkqOxvhvj2hEGSx086lvKwXyjzO7Lya7hcirZ0/Db8FLBJN7UXsJuyoNWPJg==";
};
};
"@redis/graph-1.0.1" = {
@@ -9562,6 +9760,15 @@ let
sha512 = "oDE4myMCJOCVKYMygEMWuriBgqlS5FqdWerikMoJxzmmTUErnTRRgmIDa2VcgytACZMFqpAOWDzops4DOlnkfQ==";
};
};
+ "@redis/graph-1.1.0" = {
+ name = "_at_redis_slash_graph";
+ packageName = "@redis/graph";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@redis/graph/-/graph-1.1.0.tgz";
+ sha512 = "16yZWngxyXPd+MJxeSr0dqh2AIOi8j9yXKcKCwVaKDbH3HTuETpDVPcLujhFYVPtYrngSco31BUcSa9TH31Gqg==";
+ };
+ };
"@redis/json-1.0.3" = {
name = "_at_redis_slash_json";
packageName = "@redis/json";
@@ -9616,22 +9823,22 @@ let
sha512 = "9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw==";
};
};
- "@redocly/openapi-core-1.0.0-beta.111" = {
+ "@redocly/openapi-core-1.0.0-beta.112" = {
name = "_at_redocly_slash_openapi-core";
packageName = "@redocly/openapi-core";
- version = "1.0.0-beta.111";
+ version = "1.0.0-beta.112";
src = fetchurl {
- url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.111.tgz";
- sha512 = "t3dwM+IpQWisFyVvcgd7x9LvIv3B2uQOrfyHoQcEIERW3wsouvX98Vh/qhCh+xAXXXpH8Sh+k4Cz2Qn4ei9VAw==";
+ url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.112.tgz";
+ sha512 = "VNJPQwLUvTtgsMrd4CAPnl6zJWvggHE50LCOhnQAReyo4Em7HAGYYo9v920HbIgZ5LCB6Y/f5QUTINrgYPaTkg==";
};
};
- "@rollup/plugin-commonjs-20.0.0" = {
- name = "_at_rollup_slash_plugin-commonjs";
- packageName = "@rollup/plugin-commonjs";
- version = "20.0.0";
+ "@repeaterjs/repeater-3.0.4" = {
+ name = "_at_repeaterjs_slash_repeater";
+ packageName = "@repeaterjs/repeater";
+ version = "3.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-20.0.0.tgz";
- sha512 = "5K0g5W2Ol8hAcTHqcTBHiA7M58tfmYi1o9KxeJuuRNpGaTa5iLjcyemBitCBcKXaHamOBBEH2dGom6v6Unmqjg==";
+ url = "https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.4.tgz";
+ sha512 = "AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==";
};
};
"@rollup/plugin-commonjs-22.0.2" = {
@@ -9688,13 +9895,22 @@ let
sha512 = "Do1VnybxssI5kAg/ti4GoEOhgU7p7R9T9/v9amzDNZMg7rC7C4LVno+x++ERTWv81pzSaSrYKkr2O/MP7OE1hA==";
};
};
- "@schematics/angular-14.2.6" = {
+ "@schematics/angular-14.2.8" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "14.2.6";
+ version = "14.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-14.2.6.tgz";
- sha512 = "oeyMAQr3Q9nvAX+5FRgXcTMX9lqqenElBmAuwfqqdB0qD1jmkJ8TpWRuvYVA/931njpIwhfyLrzmzeNnJb23Sg==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-14.2.8.tgz";
+ sha512 = "SuzeCpWHF9+8jey7WheM1Va0iyJrYAD88O2VT2x0NEF2PXEH63lV7BCBtE7kKurIAmXBbvTCsPyZuFKYJGDHFA==";
+ };
+ };
+ "@segment/ajv-human-errors-2.1.2" = {
+ name = "_at_segment_slash_ajv-human-errors";
+ packageName = "@segment/ajv-human-errors";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@segment/ajv-human-errors/-/ajv-human-errors-2.1.2.tgz";
+ sha512 = "d1uQndRFLRO01+xW1y5m+joxDgHf5SLJ70YCY2ArLoo2FJ50o6AoX2mEbuGvnKz/IdwnvDugm9Ti3mZQkW1OoA==";
};
};
"@segment/loosely-validate-event-2.0.0" = {
@@ -9724,13 +9940,13 @@ let
sha512 = "tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==";
};
};
- "@sentry/core-7.16.0" = {
+ "@sentry/core-7.17.3" = {
name = "_at_sentry_slash_core";
packageName = "@sentry/core";
- version = "7.16.0";
+ version = "7.17.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/core/-/core-7.16.0.tgz";
- sha512 = "vq6H1b/IPTvzDD9coQ3wIudvSjkAYuUlXb1dv69dRlq4v3st9dcKBps1Zf0lQ1i4TVlDLoe1iGMmNFglMF1Q5w==";
+ url = "https://registry.npmjs.org/@sentry/core/-/core-7.17.3.tgz";
+ sha512 = "PSboa9aOVnvZU+C6/shKlHUA7zjAl6z5BKRHF8mEljEYql6bh0HfJJKXtBHMz1sWnmzMa/qABSKLpnP5ZQlJNw==";
};
};
"@sentry/hub-6.19.7" = {
@@ -9742,13 +9958,13 @@ let
sha512 = "y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA==";
};
};
- "@sentry/integrations-7.16.0" = {
+ "@sentry/integrations-7.17.3" = {
name = "_at_sentry_slash_integrations";
packageName = "@sentry/integrations";
- version = "7.16.0";
+ version = "7.17.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.16.0.tgz";
- sha512 = "PJRmFUHOKMf1APOlwxGB7Z6LHzJP4xL6OLSoiwnruRuHaGvdyILA53fr/A6wRMSPyTxJDJpNkcN36cA56mLxYA==";
+ url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.17.3.tgz";
+ sha512 = "KSdWxqePSP9QsPfIw8ZsX/o6uQ3W21yA8MyzKng52KK4zt6qT5KsCrEJSUdGY+osuG7HQ8ONM7kNkqOUDvBzjg==";
};
};
"@sentry/minimal-6.19.7" = {
@@ -9769,13 +9985,13 @@ let
sha512 = "gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg==";
};
};
- "@sentry/node-7.16.0" = {
+ "@sentry/node-7.17.3" = {
name = "_at_sentry_slash_node";
packageName = "@sentry/node";
- version = "7.16.0";
+ version = "7.17.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/node/-/node-7.16.0.tgz";
- sha512 = "OC0TO6UTetv8IsX3zNhdeui7YVIQCnhkbfi+CMrB6YsHaMP2A9qH5gNyu/hKbaY9+4xci7e4rxyRmI65aKS9ow==";
+ url = "https://registry.npmjs.org/@sentry/node/-/node-7.17.3.tgz";
+ sha512 = "kBmj5GiE0BWQ1CqnJN3bOOmaNNvS+HKb9nPic+QloPnH6xDFVUcmx774s3qjtnyLOQTzPpy3vXCA15rYflNJBQ==";
};
};
"@sentry/types-6.19.7" = {
@@ -9787,13 +10003,13 @@ let
sha512 = "jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg==";
};
};
- "@sentry/types-7.16.0" = {
+ "@sentry/types-7.17.3" = {
name = "_at_sentry_slash_types";
packageName = "@sentry/types";
- version = "7.16.0";
+ version = "7.17.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/types/-/types-7.16.0.tgz";
- sha512 = "i6D+OK6d0l/k+VQvRp/Pt21WkDEgVBUIZq+sOkEZJczbcfexVdXKeXXoYTD2vYuFq8Yy28fzlsZaKI+NoH94yQ==";
+ url = "https://registry.npmjs.org/@sentry/types/-/types-7.17.3.tgz";
+ sha512 = "+buEJo/4TKErjwF8Tq3XXKFZx4Utpvqs52e7i7Sur2qfyBNwRgBILceQvdnzw86JNZT2myeYmrfVbsaxAk7ilA==";
};
};
"@sentry/utils-6.19.7" = {
@@ -9805,13 +10021,13 @@ let
sha512 = "z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA==";
};
};
- "@sentry/utils-7.16.0" = {
+ "@sentry/utils-7.17.3" = {
name = "_at_sentry_slash_utils";
packageName = "@sentry/utils";
- version = "7.16.0";
+ version = "7.17.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.16.0.tgz";
- sha512 = "3Zh1txg7IRp4kZAdG27YF7K6lD1IZyuAo9KjoPg1Xzqa4DOZyASJuEkbf+rK2a9T4HrtVHHXJUsNbKg8WM3VHg==";
+ url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.17.3.tgz";
+ sha512 = "Sd7BwVn6IClvaXbZaj/LnEcrMm8yjQtZkTVSrM2Vlv1lLeaH61JxSAFU6QntF+f/cCfZ7wSdNhWOfW3qZJ7t3Q==";
};
};
"@serialport/binding-mock-10.2.2" = {
@@ -9967,13 +10183,13 @@ let
sha512 = "DAa5Z0JAZc6UfrTZLYwqoZxgAponZpFwaqd7WzzMA+loMCkYWyJNwxrAmV6cr2UUJpkko4toPZuJ3vM9Ie+NDA==";
};
};
- "@serverless/utils-6.8.0" = {
+ "@serverless/utils-6.8.2" = {
name = "_at_serverless_slash_utils";
packageName = "@serverless/utils";
- version = "6.8.0";
+ version = "6.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/utils/-/utils-6.8.0.tgz";
- sha512 = "qh1lh1Uo3hBylzqBLqJqJ7qeBcZQd6UIFULBJRz8IdPmDK1iiIO2fMV+bHQ8ZYgAfBnjJCMwwOMdSdV3KzFq1g==";
+ url = "https://registry.npmjs.org/@serverless/utils/-/utils-6.8.2.tgz";
+ sha512 = "FW8zdG8OPoF6qgyutiMhz4m/5SxbQjoQdbaGcW3wU6xe3QzQh41Hif7I3Xuu4J62CvxiWuz19sxNDJz2mTcskw==";
};
};
"@sideway/address-4.1.4" = {
@@ -10093,13 +10309,13 @@ let
sha512 = "ikwHOfJF0umx1eV/JpQDMsFxODvCSdD9zdIQVDEjcTNpfofz7+PZrjfKUFkG3iQ9mSUG3BwODv0XOEvTRNdovw==";
};
};
- "@sinonjs/commons-1.8.3" = {
+ "@sinonjs/commons-1.8.4" = {
name = "_at_sinonjs_slash_commons";
packageName = "@sinonjs/commons";
- version = "1.8.3";
+ version = "1.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz";
- sha512 = "xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==";
+ url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.4.tgz";
+ sha512 = "RpmQdHVo8hCEHDVpO39zToS9jOhR6nw+/lQAzRNq9ErrGV9IeHM71XCn68svVl/euFeVW6BWX4p35gkhbOcSIQ==";
};
};
"@sinonjs/fake-timers-8.1.0" = {
@@ -10273,15 +10489,6 @@ let
sha512 = "0p9uXkuB22qGdNfy3VeEhxkU5uwvp/KrBTAbrLBURv6ilxIVwanKwjMc41lQfIVgPGcOkmLbTolfFrSsueu7zA==";
};
};
- "@stoplight/json-3.17.0" = {
- name = "_at_stoplight_slash_json";
- packageName = "@stoplight/json";
- version = "3.17.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@stoplight/json/-/json-3.17.0.tgz";
- sha512 = "WW0z2bb0D4t8FTl+zNTCu46J8lEOsrUhBPgwEYQ3Ri2Y0MiRE4U1/9ZV8Ki+pIJznZgY9i42bbFwOBxyZn5/6w==";
- };
- };
"@stoplight/json-3.20.1" = {
name = "_at_stoplight_slash_json";
packageName = "@stoplight/json";
@@ -10300,13 +10507,13 @@ let
sha512 = "nty0tHUq2f1IKuFYsLM4CXLZGHdMn+X/IwEUIpeSOXt0QjMUbL0Em57iJUDzz+2MkWG83smIigNZ3fauGjqgdQ==";
};
};
- "@stoplight/json-ref-resolver-3.1.3" = {
+ "@stoplight/json-ref-resolver-3.1.4" = {
name = "_at_stoplight_slash_json-ref-resolver";
packageName = "@stoplight/json-ref-resolver";
- version = "3.1.3";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@stoplight/json-ref-resolver/-/json-ref-resolver-3.1.3.tgz";
- sha512 = "SgoKXwVnlpIZUyAFX4W79eeuTWvXmNlMfICZixL16GZXnkjcW+uZnfmAU0ZIjcnaTgaI4mjfxn8LAP2KR6Cr0A==";
+ url = "https://registry.npmjs.org/@stoplight/json-ref-resolver/-/json-ref-resolver-3.1.4.tgz";
+ sha512 = "842JVmMsi++qpDuIX+JpQvK7YY8FXEZZb+/z4xuRfStOAVEryJT/tbgGOWxniSdxEl9Eni5D/I2afMyy6BuiNw==";
};
};
"@stoplight/ordered-object-literal-1.0.4" = {
@@ -10327,22 +10534,22 @@ let
sha512 = "lyIc6JUlUA8Ve5ELywPC8I2Sdnh1zc1zmbYgVarhXIp9YeAB0ReeqmGEOWNtlHkbP2DAA1AL65Wfn2ncjK/jtQ==";
};
};
- "@stoplight/spectral-cli-6.5.1" = {
+ "@stoplight/spectral-cli-6.6.0" = {
name = "_at_stoplight_slash_spectral-cli";
packageName = "@stoplight/spectral-cli";
- version = "6.5.1";
+ version = "6.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@stoplight/spectral-cli/-/spectral-cli-6.5.1.tgz";
- sha512 = "+qpwsDG2jQ4ULQmegBWonI3UnF6tUh351WDnV1GU8acl8eaeKbS+ZUNBgoP2f9tnMTfITdctVRFEGC3D6P7f9g==";
+ url = "https://registry.npmjs.org/@stoplight/spectral-cli/-/spectral-cli-6.6.0.tgz";
+ sha512 = "z46fnrvraaWMio8Y9RYYkLO+XdmtxOWpy5qNJF3CsmWua0FZ4iOTryb5Cm3GkB0wEtqxNUCBUHvoo4hS6Noyqg==";
};
};
- "@stoplight/spectral-core-1.15.0" = {
+ "@stoplight/spectral-core-1.15.1" = {
name = "_at_stoplight_slash_spectral-core";
packageName = "@stoplight/spectral-core";
- version = "1.15.0";
+ version = "1.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@stoplight/spectral-core/-/spectral-core-1.15.0.tgz";
- sha512 = "+DwK8SmnujMZJaxJeNU11vWY+DFOnt4oQM1TzAuvufdd3Y6Lsno88Jl31OaR1M9Fn7l/u3v1anBB/SSl/fI5rQ==";
+ url = "https://registry.npmjs.org/@stoplight/spectral-core/-/spectral-core-1.15.1.tgz";
+ sha512 = "IZV8L1Hyz9759KdqJIA90W5uvurHplMmaPPIZjQzG2Bq/39kN/sbLA/Js8uOf3xB9cHBbG599t4AB+uGsI8t0g==";
};
};
"@stoplight/spectral-formats-1.4.0" = {
@@ -10372,31 +10579,31 @@ let
sha512 = "ZQXknJ+BM5Re4Opj4cgVlHgG2qyOk/wznKJq3Vf1qsBEg2CNzN0pJmSB0deRqW0kArqm44qpb8c+cz3F2rgMtw==";
};
};
- "@stoplight/spectral-ref-resolver-1.0.1" = {
+ "@stoplight/spectral-ref-resolver-1.0.2" = {
name = "_at_stoplight_slash_spectral-ref-resolver";
packageName = "@stoplight/spectral-ref-resolver";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@stoplight/spectral-ref-resolver/-/spectral-ref-resolver-1.0.1.tgz";
- sha512 = "0tY7nTOccvTsa3c4QbSWfJ8wGfPO1RXvmKnmBjuyLfoTMNuhkHPII9gKhCjygsshzsBLxs2IyRHZYhWYVnEbCA==";
+ url = "https://registry.npmjs.org/@stoplight/spectral-ref-resolver/-/spectral-ref-resolver-1.0.2.tgz";
+ sha512 = "ah6NIB/O1EdEaEu89So3LmtbKRXPVnSElgQ7oBRE9S4/VOedSqyXn+qqMd40tGnO2CsKgZaFUYXdSEHOshpHYw==";
};
};
- "@stoplight/spectral-ruleset-bundler-1.3.3" = {
+ "@stoplight/spectral-ruleset-bundler-1.4.0" = {
name = "_at_stoplight_slash_spectral-ruleset-bundler";
packageName = "@stoplight/spectral-ruleset-bundler";
- version = "1.3.3";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@stoplight/spectral-ruleset-bundler/-/spectral-ruleset-bundler-1.3.3.tgz";
- sha512 = "hfHl7XZeF/wWMpSrsLqLnH2GevRHjSIqtBL2aRjO2SjMCTbO9LVz80p4sYaxrCcu4wQ6K71gMZXsG687+3fAeg==";
+ url = "https://registry.npmjs.org/@stoplight/spectral-ruleset-bundler/-/spectral-ruleset-bundler-1.4.0.tgz";
+ sha512 = "aYDI4a145IXED+6jvRjj9Ha0fnB+s54cr8KbQbPCEyhCHW1cP8UGVeOuwAfk+9C4ZIg40OuYrugN5EhA35oQtA==";
};
};
- "@stoplight/spectral-ruleset-migrator-1.8.0" = {
+ "@stoplight/spectral-ruleset-migrator-1.9.0" = {
name = "_at_stoplight_slash_spectral-ruleset-migrator";
packageName = "@stoplight/spectral-ruleset-migrator";
- version = "1.8.0";
+ version = "1.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@stoplight/spectral-ruleset-migrator/-/spectral-ruleset-migrator-1.8.0.tgz";
- sha512 = "zg6RPF+d8uS7zAp5TzUph3hQG4sgGcG5Fsw8Zx24H1REyuSkjiIfyee2Kf13c3BcIlTXvnFc4csz2rNXpZO7Ug==";
+ url = "https://registry.npmjs.org/@stoplight/spectral-ruleset-migrator/-/spectral-ruleset-migrator-1.9.0.tgz";
+ sha512 = "hPSjgXsTxMQ5UV1hfkVVPknhqRjmjSnCZD5jideM4rRU5NS1fj2Pse1CiXBsRChsuAGi/2s0Ke5uuOmFFsHrxQ==";
};
};
"@stoplight/spectral-rulesets-1.14.1" = {
@@ -10417,15 +10624,6 @@ let
sha512 = "fr5zRceXI+hrl82yAVoME+4GvJie8v3wmOe9tU+ZLRRNonizthy8qDi0Z/z4olE+vGreSDcuDOZ7JjRxFW5kTw==";
};
};
- "@stoplight/types-12.3.0" = {
- name = "_at_stoplight_slash_types";
- packageName = "@stoplight/types";
- version = "12.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@stoplight/types/-/types-12.3.0.tgz";
- sha512 = "hgzUR1z5BlYvIzUeFK5pjs5JXSvEutA9Pww31+dVicBlunsG1iXopDx/cvfBY7rHOrgtZDuvyeK4seqkwAZ6Cg==";
- };
- };
"@stoplight/types-12.5.0" = {
name = "_at_stoplight_slash_types";
packageName = "@stoplight/types";
@@ -10444,13 +10642,13 @@ let
sha512 = "dzyuzvUjv3m1wmhPfq82lCVYGcXG0xUYgqnWfCq3PCVR4BKFhjdkHrnJ+jIDoMKvXb05AZP/ObQF6+NpDo29IQ==";
};
};
- "@stoplight/types-13.7.0" = {
+ "@stoplight/types-13.8.0" = {
name = "_at_stoplight_slash_types";
packageName = "@stoplight/types";
- version = "13.7.0";
+ version = "13.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@stoplight/types/-/types-13.7.0.tgz";
- sha512 = "7ePIccfTxjEhruv8VrkDv5whP5qd9ijRzAWEbjYpUYnDfaqPTfq8/wMMjMCAKIecboxsAVD9LZy/3puXddGsDQ==";
+ url = "https://registry.npmjs.org/@stoplight/types/-/types-13.8.0.tgz";
+ sha512 = "5glKswz7y9aACh+a+JegID+4xX//4TsIdv7iPl29hWnOoWrnlPbg3Gjc4nYUXXgMSaSlSsA15JU/0+rE89fR4A==";
};
};
"@stoplight/yaml-4.2.3" = {
@@ -10525,130 +10723,130 @@ let
sha512 = "PA4p7nC5LwPdEVcQXFxMTpfvizYPeMoB55nIIx+yC3FiLnyPgC2hcpUitPy5h8RRGdCZ/Mvb2ryEcVYS8nI6YA==";
};
};
- "@swc/core-1.3.10" = {
+ "@swc/core-1.3.11" = {
name = "_at_swc_slash_core";
packageName = "@swc/core";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core/-/core-1.3.10.tgz";
- sha512 = "A5YjYFa45ThHOwftKqIQKNbukxJGTsdBQAqoTr+QD1/L6jbRg3xxhU5UDyVdUIULz40PH6YQiulyUVbyrjl1Iw==";
+ url = "https://registry.npmjs.org/@swc/core/-/core-1.3.11.tgz";
+ sha512 = "lnCnnnNCsnbrhW/gwkoN0sAeIqOyoHLS4ZB20xmPJjKVfvTnJrAcNnLSiwlYdcoUSFqT2GYZjUAG6usEzRQASA==";
};
};
- "@swc/core-android-arm-eabi-1.3.10" = {
+ "@swc/core-android-arm-eabi-1.3.11" = {
name = "_at_swc_slash_core-android-arm-eabi";
packageName = "@swc/core-android-arm-eabi";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-android-arm-eabi/-/core-android-arm-eabi-1.3.10.tgz";
- sha512 = "yeW0dvv7SSmb0Y1Hhr9+QceoDjn2uulcaY+LUZ9Zt2UBHl/95c7QVgjDaE2B/lSlTV5En/81/q58lXoT/IqjGw==";
+ url = "https://registry.npmjs.org/@swc/core-android-arm-eabi/-/core-android-arm-eabi-1.3.11.tgz";
+ sha512 = "LC9JlMcdFmTU94KKmQkJKaPSeVmYTfVm2rKGESMiFrgIjopXL/Zeg+XHA97ucnh5iUMkWIpXAMzSOaVRs33K5g==";
};
};
- "@swc/core-android-arm64-1.3.10" = {
+ "@swc/core-android-arm64-1.3.11" = {
name = "_at_swc_slash_core-android-arm64";
packageName = "@swc/core-android-arm64";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-android-arm64/-/core-android-arm64-1.3.10.tgz";
- sha512 = "HXkUXP4Lm3Xc9qfd9J/6/YfxknWk0Esqmu6nFRikXDc691aXHDcDZ2D8SqPlhx2CZT1juuRajphOaUXMTaAP3g==";
+ url = "https://registry.npmjs.org/@swc/core-android-arm64/-/core-android-arm64-1.3.11.tgz";
+ sha512 = "M7FamR3kFpVTyTw73FzKcOZmS7/TWHX75eqtwBTaU9fW4shf0KTLr/h9DnMxNKAnwUMeub/lqlINUe5EKFIKwQ==";
};
};
- "@swc/core-darwin-arm64-1.3.10" = {
+ "@swc/core-darwin-arm64-1.3.11" = {
name = "_at_swc_slash_core-darwin-arm64";
packageName = "@swc/core-darwin-arm64";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.10.tgz";
- sha512 = "X1eM5LDk24W/pbGamwpMRGkQW1BC+1xYNzS38hiK5YCS20TDZwI5LIg2pTEecKl/SRt1WFMwAThUwKbp4m1HIA==";
+ url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.11.tgz";
+ sha512 = "LOoiw3uQDuoKBLW3Mn8p6wIccpYjAoDI3ROdto4MksLQSraHMufXY8bqqncfVuy1750XZmC1qnU39RC3yihPfA==";
};
};
- "@swc/core-darwin-x64-1.3.10" = {
+ "@swc/core-darwin-x64-1.3.11" = {
name = "_at_swc_slash_core-darwin-x64";
packageName = "@swc/core-darwin-x64";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.10.tgz";
- sha512 = "wrsv6upfEzwCGHB7y7IsdrppyywNV7C5TZDXVYv3GCUQZAFlRBar+1yHMojuPxPvyjjfHtTEr68MOhUwq9ti3w==";
+ url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.11.tgz";
+ sha512 = "ycjrEbWmpU8MTDdVLdf76ClxQCSTfNqSoP59hieLzhmXpXUa7Oy4sN/v6WSQgp4I1euGs1Wp5kPU5hH5f7XBJQ==";
};
};
- "@swc/core-freebsd-x64-1.3.10" = {
+ "@swc/core-freebsd-x64-1.3.11" = {
name = "_at_swc_slash_core-freebsd-x64";
packageName = "@swc/core-freebsd-x64";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-freebsd-x64/-/core-freebsd-x64-1.3.10.tgz";
- sha512 = "tJ+ncGIZcueU3RVuQtawLvU0zGza4YKH7aD9unaypFE6e0qx34EX7fzObAhTUi881muEFIU/mDKmVpFqdEi7QQ==";
+ url = "https://registry.npmjs.org/@swc/core-freebsd-x64/-/core-freebsd-x64-1.3.11.tgz";
+ sha512 = "02uqYktPp6WmZfZ2Crc/yIVOcgANtjo8ciHcT7yLHvz7v+S7gx1I2tyNGUFtTX5hcR2IFNGrL8Yj4DvpTABFHg==";
};
};
- "@swc/core-linux-arm-gnueabihf-1.3.10" = {
+ "@swc/core-linux-arm-gnueabihf-1.3.11" = {
name = "_at_swc_slash_core-linux-arm-gnueabihf";
packageName = "@swc/core-linux-arm-gnueabihf";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.10.tgz";
- sha512 = "4IsAIBk1zdzTINZR5+kPE170yyIQMY76R/yKxtHuzMYxhOaErxsObokttyZ9k9ImlZRujTzEn3A5SsZ/EvibUA==";
+ url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.11.tgz";
+ sha512 = "nZ2T/gPFncsIiFGhVeVY9vRCTX0hTdqso8OEvFhSwRfRvcEYOpb/rhMG09are7YoB44GMiku5tSzEiNmvT3GuQ==";
};
};
- "@swc/core-linux-arm64-gnu-1.3.10" = {
+ "@swc/core-linux-arm64-gnu-1.3.11" = {
name = "_at_swc_slash_core-linux-arm64-gnu";
packageName = "@swc/core-linux-arm64-gnu";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.10.tgz";
- sha512 = "OaOd+wFbcTQwOD9Ce5luUp8qYoEvdX3s00Bby+j7hybu1fVZK4W40cqzVRp/EDElriG0I+tAdFvQW7PCcEzsPQ==";
+ url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.11.tgz";
+ sha512 = "EWEd8NnGwhykEDFIet/r4Fcfr6805ecnBniHZWmG8UVYUp5tz7LYEMZesxCxa0+aGVpCmxHL5/Cdk1uEIrVIzg==";
};
};
- "@swc/core-linux-arm64-musl-1.3.10" = {
+ "@swc/core-linux-arm64-musl-1.3.11" = {
name = "_at_swc_slash_core-linux-arm64-musl";
packageName = "@swc/core-linux-arm64-musl";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.10.tgz";
- sha512 = "AUzQ/5T2hoNIgZlnbflDufWDEfJbw+w8FwKoCp7kKyLLAXG8RHgTsx0TazzQ8PVcAQk8lWI2EBrObLL82n91kQ==";
+ url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.11.tgz";
+ sha512 = "ms7CLj2+8sfTM2QnnwqDheYRky9rgPpX2hXmc0KltX+AiSAs7WURjn2JwXWkaICDzXL+djennfswxSspJ53knw==";
};
};
- "@swc/core-linux-x64-gnu-1.3.10" = {
+ "@swc/core-linux-x64-gnu-1.3.11" = {
name = "_at_swc_slash_core-linux-x64-gnu";
packageName = "@swc/core-linux-x64-gnu";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.10.tgz";
- sha512 = "rjAyQVRkHCWvCA0wyk0nhJdVMfown6wLvDztKZ0wyT6NDDFdvekTMgALQXL5MW4Q0MYBvGMSauoysTZCdZW9aA==";
+ url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.11.tgz";
+ sha512 = "Fq5/QEY0IbzpIrqlvQT59aMf+nLk//esL3Aj4nvZdsvF4iZaD2oHtXW+/MBi0i1HV9OBWApGZMygYNVS0uVZkQ==";
};
};
- "@swc/core-linux-x64-musl-1.3.10" = {
+ "@swc/core-linux-x64-musl-1.3.11" = {
name = "_at_swc_slash_core-linux-x64-musl";
packageName = "@swc/core-linux-x64-musl";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.10.tgz";
- sha512 = "X5KFbPTxcXaycGOrKoiPNCBUOjhCf8GpeNFpM7QASEWulWWM7nkMPrNeXKmQgJBlRT2j3iLine4Pkyc2bLPlVg==";
+ url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.11.tgz";
+ sha512 = "S/KoEgRHwGhs7VunHiz4jLrnFOJvqZe391j2MiYN1p2EThoGI3rvwcUoHkoxLCXVuDbi4E91qodOheaMGetWNA==";
};
};
- "@swc/core-win32-arm64-msvc-1.3.10" = {
+ "@swc/core-win32-arm64-msvc-1.3.11" = {
name = "_at_swc_slash_core-win32-arm64-msvc";
packageName = "@swc/core-win32-arm64-msvc";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.10.tgz";
- sha512 = "KcQIERfwGyTAcJOnqGsFbRtU6wSm91xwYFVYjeYy2aNU/SKQ5rtwPTW1UAaUDdwDcS1Y49fNWWj+GPtdaZ+WXQ==";
+ url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.11.tgz";
+ sha512 = "fFby7KOQIxolR6w4Gie8MSkgQ3ee6j3r7A6PX4ekzu+509QsZogLPZnWFTJ8WFo7ui0tx/ocA5X8BV4ZNBVlKQ==";
};
};
- "@swc/core-win32-ia32-msvc-1.3.10" = {
+ "@swc/core-win32-ia32-msvc-1.3.11" = {
name = "_at_swc_slash_core-win32-ia32-msvc";
packageName = "@swc/core-win32-ia32-msvc";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.10.tgz";
- sha512 = "bNpFGZX8tNkwWbQyFRSO+wJ9BgE38ItEodTUXmBsC1xhsHPYLYMlP+6lDKvkO7+jzRMLbyWWUyoWXCEfkvdYWw==";
+ url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.11.tgz";
+ sha512 = "fii7Y33S9Z5oZ/BTsXa8Ou/RZ4T/ZsAOFpG7mMvifpdAP6LVWdhLoNy7SeeEHTEAWGcWNA/FslA6p2WETvEEfA==";
};
};
- "@swc/core-win32-x64-msvc-1.3.10" = {
+ "@swc/core-win32-x64-msvc-1.3.11" = {
name = "_at_swc_slash_core-win32-x64-msvc";
packageName = "@swc/core-win32-x64-msvc";
- version = "1.3.10";
+ version = "1.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.10.tgz";
- sha512 = "40yeeov6XcJHm99anMeEn/NwhDcoM2fhBQHWRVZfCa43QC45AUjJ3kWrD76U6MPGnGy7MsCOXdFyu1mJOAHKEw==";
+ url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.11.tgz";
+ sha512 = "cDF4qBQLf3U0KypnLn3T1HtE12QmEplPGjWs2Xd/hzVkjsPixVR8XIgLlczsj7Pk7Of7VDnUDLIl52aIdgTm8w==";
};
};
"@swc/helpers-0.4.12" = {
@@ -10678,13 +10876,13 @@ let
sha512 = "rNcJsBxS70+pv8YUWwf5fRlWX6JoY/HJc25HD/F8m6Kv7XhJdqPPMhyX6TKkUBPAG7TWlZYoxa+rHAjPy4Cj3Q==";
};
};
- "@swc/wasm-1.3.10" = {
+ "@swc/wasm-1.3.12" = {
name = "_at_swc_slash_wasm";
packageName = "@swc/wasm";
- version = "1.3.10";
+ version = "1.3.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.10.tgz";
- sha512 = "5sIyq54S1a+07OiC/H6rgAoF1FqXuuqJJwZLdnCNsausQ/SZCEJ7pZ3TameKLnic+lhmsWgOR03rl+35CGj+hg==";
+ url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.12.tgz";
+ sha512 = "z6sCeOi7eo475oLFbAgHNGxB3KXVZeI0eOwwxgpKaFBZwf++QxUkN6yKwoGWYrfmOgZkKf/rI4VJlZ3FMr56hg==";
};
};
"@szmarczak/http-timer-1.1.2" = {
@@ -11281,13 +11479,13 @@ let
sha512 = "VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==";
};
};
- "@types/eslint-8.4.7" = {
+ "@types/eslint-8.4.9" = {
name = "_at_types_slash_eslint";
packageName = "@types/eslint";
- version = "8.4.7";
+ version = "8.4.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.7.tgz";
- sha512 = "ehM7cCt2RSFs42mb+lcmhFT9ouIlV92PuaeRGn8N8c98oMjG4Z5pJHA9b1QiCcuqnbPSHcyfiD3mlhqMaHsQIw==";
+ url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.9.tgz";
+ sha512 = "jFCSo4wJzlHQLCpceUhUnXdrPuCNOjGFMQ8Eg6JXxlz3QaCKOb7eGi2cephQdM4XTYsNej69P9JDJ1zqNIbncQ==";
};
};
"@types/eslint-scope-3.7.4" = {
@@ -11677,13 +11875,13 @@ let
sha512 = "0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw==";
};
};
- "@types/lodash-4.14.186" = {
+ "@types/lodash-4.14.187" = {
name = "_at_types_slash_lodash";
packageName = "@types/lodash";
- version = "4.14.186";
+ version = "4.14.187";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.186.tgz";
- sha512 = "eHcVlLXP0c2FlMPm56ITode2AgLMSa6aJ05JTTbYbI+7EMkCEE5qk2E41d5g2lCVTqRe0GnnRFurmlCsDODrPw==";
+ url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.187.tgz";
+ sha512 = "MrO/xLXCaUgZy3y96C/iOsaIqZSeupyTImKClHunL5GrmaiII2VwvWmLBu2hwa0Kp0sV19CsyjtrTc/Fx8rg/A==";
};
};
"@types/long-4.0.2" = {
@@ -11704,6 +11902,24 @@ let
sha512 = "h0MqA7rtP88vuMepODf1oomJLeuRAZfOiYdeGS3NYO4TMQs237TkA+bNehy7V5nfyCjPRuKrb0fnWMjncHak0g==";
};
};
+ "@types/mapbox__point-geometry-0.1.2" = {
+ name = "_at_types_slash_mapbox__point-geometry";
+ packageName = "@types/mapbox__point-geometry";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.2.tgz";
+ sha512 = "D0lgCq+3VWV85ey1MZVkE8ZveyuvW5VAfuahVTQRpXFQTxw03SuIf1/K4UQ87MMIXVKzpFjXFiFMZzLj2kU+iA==";
+ };
+ };
+ "@types/mapbox__vector-tile-1.3.0" = {
+ name = "_at_types_slash_mapbox__vector-tile";
+ packageName = "@types/mapbox__vector-tile";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.0.tgz";
+ sha512 = "kDwVreQO5V4c8yAxzZVQLE5tyWF+IPToAanloQaSnwfXmIcJ7cyOrv8z4Ft4y7PsLYmhWXmON8MBV8RX0Rgr8g==";
+ };
+ };
"@types/markdown-it-12.2.3" = {
name = "_at_types_slash_markdown-it";
packageName = "@types/markdown-it";
@@ -11875,13 +12091,13 @@ let
sha512 = "USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg==";
};
};
- "@types/node-14.18.32" = {
+ "@types/node-14.18.33" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "14.18.32";
+ version = "14.18.33";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-14.18.32.tgz";
- sha512 = "Y6S38pFr04yb13qqHf8uk1nHE3lXgQ30WZbv1mLliV9pt0NjvqdWttLcrOYLnXbOafknVYRHZGoMSpR9UwfYow==";
+ url = "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz";
+ sha512 = "qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==";
};
};
"@types/node-15.14.9" = {
@@ -11902,22 +12118,13 @@ let
sha512 = "ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w==";
};
};
- "@types/node-16.11.68" = {
+ "@types/node-16.18.3" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "16.11.68";
+ version = "16.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.11.68.tgz";
- sha512 = "JkRpuVz3xCNCWaeQ5EHLR/6woMbHZz/jZ7Kmc63AkU+1HxnoUugzSWMck7dsR4DvNYX8jp9wTi9K7WvnxOIQZQ==";
- };
- };
- "@types/node-17.0.38" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "17.0.38";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-17.0.38.tgz";
- sha512 = "5jY9RhV7c0Z4Jy09G+NIDTsCZ5G0L5n+Z+p+Y7t5VJHM30bgwzSjVtlcBxqAj+6L/swIlvtOSzr8rBk/aNyV2g==";
+ url = "https://registry.npmjs.org/@types/node/-/node-16.18.3.tgz";
+ sha512 = "jh6m0QUhIRcZpNv7Z/rpN+ZWXOicUUQbSoWks7Htkbb9IjFQj4kzcX/xFCkjstCj5flMsN8FiSvt+q+Tcs4Llg==";
};
};
"@types/node-17.0.45" = {
@@ -11938,13 +12145,22 @@ let
sha512 = "BWN3M23gLO2jVG8g/XHIRFWiiV4/GckeFIqbU/C4V3xpoBBWSMk4OZomouN0wCkfQFPqgZikyLr7DOYDysIkkw==";
};
};
- "@types/node-18.11.3" = {
+ "@types/node-18.11.7" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "18.11.3";
+ version = "18.11.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-18.11.3.tgz";
- sha512 = "fNjDQzzOsZeKZu5NATgXUPsaFaTxeRgFXoosrHivTl8RGeV733OLawXsGfEk9a8/tySyZUyiZ6E8LcjPFZ2y1A==";
+ url = "https://registry.npmjs.org/@types/node/-/node-18.11.7.tgz";
+ sha512 = "LhFTglglr63mNXUSRYD8A+ZAIu5sFqNJ4Y2fPuY7UlrySJH87rRRlhtVmMHplmfk5WkoJGmDjE9oiTfyX94CpQ==";
+ };
+ };
+ "@types/node-18.11.9" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "18.11.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz";
+ sha512 = "CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==";
};
};
"@types/node-18.7.14" = {
@@ -11956,24 +12172,6 @@ let
sha512 = "6bbDaETVi8oyIARulOE9qF1/Qdi/23z6emrUh0fNJRUmjznqrixD4MpGDdgOFk5Xb0m2H6Xu42JGdvAxaJR/wA==";
};
};
- "@types/node-18.8.1" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "18.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-18.8.1.tgz";
- sha512 = "vuYaNuEIbOYLTLUAJh50ezEbvxrD43iby+lpUA2aa148Nh5kX/AVO/9m1Ahmbux2iU5uxJTNF9g2Y+31uml7RQ==";
- };
- };
- "@types/node-18.8.4" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "18.8.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-18.8.4.tgz";
- sha512 = "WdlVphvfR/GJCLEMbNA8lJ0lhFNBj4SW3O+O5/cEGw9oYrv0al9zTwuQsq+myDUXgNx2jgBynoVgZ2MMJ6pbow==";
- };
- };
"@types/node-6.14.13" = {
name = "_at_types_slash_node";
packageName = "@types/node";
@@ -12028,6 +12226,15 @@ let
sha512 = "SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==";
};
};
+ "@types/pbf-3.0.2" = {
+ name = "_at_types_slash_pbf";
+ packageName = "@types/pbf";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.2.tgz";
+ sha512 = "EDrLIPaPXOZqDjrkzxxbX7UlJSeQVgah3i0aA4pOSzmK9zq3BIh7/MZIQxED7slJByvKM4Gc6Hypyu2lJzh3SQ==";
+ };
+ };
"@types/pbkdf2-3.1.0" = {
name = "_at_types_slash_pbkdf2";
packageName = "@types/pbkdf2";
@@ -12109,40 +12316,40 @@ let
sha512 = "+TRLFmHLnpoV0uw4O/PzqMbPT6bhQM0q2KO0l+R7M3sHYRndPpNL6kv8p7Ee9ZxgQ6noYB18/t+heQi7eijOHA==";
};
};
- "@types/react-17.0.50" = {
+ "@types/react-17.0.52" = {
name = "_at_types_slash_react";
packageName = "@types/react";
- version = "17.0.50";
+ version = "17.0.52";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/react/-/react-17.0.50.tgz";
- sha512 = "ZCBHzpDb5skMnc1zFXAXnL3l1FAdi+xZvwxK+PkglMmBrwjpp9nKaWuEvrGnSifCJmBFGxZOOFuwC6KH/s0NuA==";
+ url = "https://registry.npmjs.org/@types/react/-/react-17.0.52.tgz";
+ sha512 = "vwk8QqVODi0VaZZpDXQCmEmiOuyjEFPY7Ttaw5vjM112LOq37yz1CDJGrRJwA1fYEq4Iitd5rnjd1yWAc/bT+A==";
};
};
- "@types/react-18.0.21" = {
+ "@types/react-18.0.24" = {
name = "_at_types_slash_react";
packageName = "@types/react";
- version = "18.0.21";
+ version = "18.0.24";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/react/-/react-18.0.21.tgz";
- sha512 = "7QUCOxvFgnD5Jk8ZKlUAhVcRj7GuJRjnjjiY/IUBWKgOlnvDvTMLD4RTF7NPyVmbRhNrbomZiOepg7M/2Kj1mA==";
+ url = "https://registry.npmjs.org/@types/react/-/react-18.0.24.tgz";
+ sha512 = "wRJWT6ouziGUy+9uX0aW4YOJxAY0bG6/AOk5AW5QSvZqI7dk6VBIbXvcVgIw/W5Jrl24f77df98GEKTJGOLx7Q==";
};
};
- "@types/react-dom-17.0.17" = {
+ "@types/react-dom-17.0.18" = {
name = "_at_types_slash_react-dom";
packageName = "@types/react-dom";
- version = "17.0.17";
+ version = "17.0.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.17.tgz";
- sha512 = "VjnqEmqGnasQKV0CWLevqMTXBYG9GbwuE6x3VetERLh0cq2LTptFE73MrQi2S7GkKXCf2GgwItB/melLnxfnsg==";
+ url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.18.tgz";
+ sha512 = "rLVtIfbwyur2iFKykP2w0pl/1unw26b5td16d5xMgp7/yjTHomkyxPYChFoCr/FtEX1lN9wY6lFj1qvKdS5kDw==";
};
};
- "@types/react-dom-18.0.6" = {
+ "@types/react-dom-18.0.8" = {
name = "_at_types_slash_react-dom";
packageName = "@types/react-dom";
- version = "18.0.6";
+ version = "18.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.6.tgz";
- sha512 = "/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==";
+ url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.8.tgz";
+ sha512 = "C3GYO0HLaOkk9dDAz3Dl4sbe4AKUGTCfFIZsz3n/82dPNN8Du533HzKatDxeUYWu24wJgMP1xICqkWk1YOLOIw==";
};
};
"@types/react-window-1.8.5" = {
@@ -12235,13 +12442,13 @@ let
sha512 = "Da66lEIFeIz9ltsdMZcpQvmrmmoqrfju8pm1BH8WbYjZSwUgCwXLb9C+9XYogwBITnbsSaMdVPb2ekf7TV+03w==";
};
};
- "@types/semver-7.3.12" = {
+ "@types/semver-7.3.13" = {
name = "_at_types_slash_semver";
packageName = "@types/semver";
- version = "7.3.12";
+ version = "7.3.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/semver/-/semver-7.3.12.tgz";
- sha512 = "WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==";
+ url = "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz";
+ sha512 = "21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==";
};
};
"@types/serve-index-1.9.1" = {
@@ -12640,13 +12847,13 @@ let
sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==";
};
};
- "@typescript-eslint/eslint-plugin-5.40.1" = {
+ "@typescript-eslint/eslint-plugin-5.42.0" = {
name = "_at_typescript-eslint_slash_eslint-plugin";
packageName = "@typescript-eslint/eslint-plugin";
- version = "5.40.1";
+ version = "5.42.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.40.1.tgz";
- sha512 = "FsWboKkWdytGiXT5O1/R9j37YgcjO8MKHSUmWnIEjVaz0krHkplPnYi7mwdb+5+cs0toFNQb0HIrN7zONdIEWg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.42.0.tgz";
+ sha512 = "5TJh2AgL6+wpL8H/GTSjNb4WrjKoR2rqvFxR/DDTqYNk6uXn8BJMEcncLSpMbf/XV1aS0jAjYwn98uvVCiAywQ==";
};
};
"@typescript-eslint/experimental-utils-4.33.0" = {
@@ -12667,13 +12874,13 @@ let
sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==";
};
};
- "@typescript-eslint/parser-5.40.1" = {
+ "@typescript-eslint/parser-5.42.0" = {
name = "_at_typescript-eslint_slash_parser";
packageName = "@typescript-eslint/parser";
- version = "5.40.1";
+ version = "5.42.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.40.1.tgz";
- sha512 = "IK6x55va5w4YvXd4b3VrXQPldV9vQTxi5ov+g4pMANsXPTXOcfjx08CRR1Dfrcc51syPtXHF5bgLlMHYFrvQtg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.42.0.tgz";
+ sha512 = "Ixh9qrOTDRctFg3yIwrLkgf33AHyEIn6lhyf5cCfwwiGtkWhNpVKlEZApi3inGQR/barWnY7qY8FbGKBO7p3JA==";
};
};
"@typescript-eslint/scope-manager-4.33.0" = {
@@ -12685,31 +12892,22 @@ let
sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==";
};
};
- "@typescript-eslint/scope-manager-5.40.1" = {
+ "@typescript-eslint/scope-manager-5.42.0" = {
name = "_at_typescript-eslint_slash_scope-manager";
packageName = "@typescript-eslint/scope-manager";
- version = "5.40.1";
+ version = "5.42.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.40.1.tgz";
- sha512 = "jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.42.0.tgz";
+ sha512 = "l5/3IBHLH0Bv04y+H+zlcLiEMEMjWGaCX6WyHE5Uk2YkSGAMlgdUPsT/ywTSKgu9D1dmmKMYgYZijObfA39Wow==";
};
};
- "@typescript-eslint/type-utils-5.40.1" = {
+ "@typescript-eslint/type-utils-5.42.0" = {
name = "_at_typescript-eslint_slash_type-utils";
packageName = "@typescript-eslint/type-utils";
- version = "5.40.1";
+ version = "5.42.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.40.1.tgz";
- sha512 = "DLAs+AHQOe6n5LRraXiv27IYPhleF0ldEmx6yBqBgBLaNRKTkffhV1RPsjoJBhVup2zHxfaRtan8/YRBgYhU9Q==";
- };
- };
- "@typescript-eslint/types-3.10.1" = {
- name = "_at_typescript-eslint_slash_types";
- packageName = "@typescript-eslint/types";
- version = "3.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz";
- sha512 = "+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==";
+ url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.42.0.tgz";
+ sha512 = "HW14TXC45dFVZxnVW8rnUGnvYyRC0E/vxXShFCthcC9VhVTmjqOmtqj6H5rm9Zxv+ORxKA/1aLGD7vmlLsdlOg==";
};
};
"@typescript-eslint/types-4.33.0" = {
@@ -12721,22 +12919,13 @@ let
sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==";
};
};
- "@typescript-eslint/types-5.40.1" = {
+ "@typescript-eslint/types-5.42.0" = {
name = "_at_typescript-eslint_slash_types";
packageName = "@typescript-eslint/types";
- version = "5.40.1";
+ version = "5.42.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.40.1.tgz";
- sha512 = "Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw==";
- };
- };
- "@typescript-eslint/typescript-estree-3.10.1" = {
- name = "_at_typescript-eslint_slash_typescript-estree";
- packageName = "@typescript-eslint/typescript-estree";
- version = "3.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz";
- sha512 = "QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==";
+ url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.42.0.tgz";
+ sha512 = "t4lzO9ZOAUcHY6bXQYRuu+3SSYdD9TS8ooApZft4WARt4/f2Cj/YpvbTe8A4GuhT4bNW72goDMOy7SW71mZwGw==";
};
};
"@typescript-eslint/typescript-estree-4.33.0" = {
@@ -12748,31 +12937,22 @@ let
sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==";
};
};
- "@typescript-eslint/typescript-estree-5.40.1" = {
+ "@typescript-eslint/typescript-estree-5.42.0" = {
name = "_at_typescript-eslint_slash_typescript-estree";
packageName = "@typescript-eslint/typescript-estree";
- version = "5.40.1";
+ version = "5.42.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.40.1.tgz";
- sha512 = "5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.42.0.tgz";
+ sha512 = "2O3vSq794x3kZGtV7i4SCWZWCwjEtkWfVqX4m5fbUBomOsEOyd6OAD1qU2lbvV5S8tgy/luJnOYluNyYVeOTTg==";
};
};
- "@typescript-eslint/utils-5.40.1" = {
+ "@typescript-eslint/utils-5.42.0" = {
name = "_at_typescript-eslint_slash_utils";
packageName = "@typescript-eslint/utils";
- version = "5.40.1";
+ version = "5.42.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.40.1.tgz";
- sha512 = "a2TAVScoX9fjryNrW6BZRnreDUszxqm9eQ9Esv8n5nXApMW0zeANUYlwh/DED04SC/ifuBvXgZpIK5xeJHQ3aw==";
- };
- };
- "@typescript-eslint/visitor-keys-3.10.1" = {
- name = "_at_typescript-eslint_slash_visitor-keys";
- packageName = "@typescript-eslint/visitor-keys";
- version = "3.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz";
- sha512 = "9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==";
+ url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.42.0.tgz";
+ sha512 = "JZ++3+h1vbeG1NUECXQZE3hg0kias9kOtcQr3+JVQ3whnjvKuMyktJAAIj6743OeNPnGBmjj7KEmiDL7qsdnCQ==";
};
};
"@typescript-eslint/visitor-keys-4.33.0" = {
@@ -12784,13 +12964,13 @@ let
sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==";
};
};
- "@typescript-eslint/visitor-keys-5.40.1" = {
+ "@typescript-eslint/visitor-keys-5.42.0" = {
name = "_at_typescript-eslint_slash_visitor-keys";
packageName = "@typescript-eslint/visitor-keys";
- version = "5.40.1";
+ version = "5.42.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.40.1.tgz";
- sha512 = "A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw==";
+ url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.42.0.tgz";
+ sha512 = "QHbu5Hf/2lOEOwy+IUw0GoSCuAzByTAWWrOTKzTzsotiUnWFpuKnXcAhC9YztAf2EElQ0VvIK+pHJUPkM0q7jg==";
};
};
"@uphold/request-logger-2.0.0" = {
@@ -12811,13 +12991,13 @@ let
sha512 = "PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==";
};
};
- "@urql/core-2.6.1" = {
+ "@urql/core-3.0.5" = {
name = "_at_urql_slash_core";
packageName = "@urql/core";
- version = "2.6.1";
+ version = "3.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@urql/core/-/core-2.6.1.tgz";
- sha512 = "gYrEHy3tViJhwIhauK6MIf2Qp09QTsgNHZRd0n71rS+hF6gdwjspf1oKljl4m25+272cJF7fPjBUGmjaiEr7Kg==";
+ url = "https://registry.npmjs.org/@urql/core/-/core-3.0.5.tgz";
+ sha512 = "6/1HG+WEAcPs+hXSFnxWBTWkNUwa8dj2cHysWokMaFIbAioGtUaSdxp2q9FDMtWAIGdc640NFSt2B8itGLdoAA==";
};
};
"@urql/exchange-retry-0.3.0" = {
@@ -12829,49 +13009,49 @@ let
sha512 = "hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==";
};
};
- "@urql/exchange-retry-0.3.3" = {
+ "@urql/exchange-retry-1.0.0" = {
name = "_at_urql_slash_exchange-retry";
packageName = "@urql/exchange-retry";
- version = "0.3.3";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-0.3.3.tgz";
- sha512 = "CgGy/rs3VlcWglSEi5SitbMjueDlG4Oq8fveHFdvcCVGf2Vj5Oeq0Blbjfd8vfyXBQS0cPgdZD8kalOPeV0URA==";
+ url = "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-1.0.0.tgz";
+ sha512 = "UGyyGAMXzop9C/fIoe7Ij63DkPSy1uMw2jipB5dnB8R3kl80za7LYzVnA1HvBEt2ZPWfMuwez/VGLOQ7XX4bTA==";
};
};
- "@vercel/build-utils-5.5.5" = {
+ "@vercel/build-utils-5.5.7" = {
name = "_at_vercel_slash_build-utils";
packageName = "@vercel/build-utils";
- version = "5.5.5";
+ version = "5.5.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-5.5.5.tgz";
- sha512 = "ZBJpqnqm2OqYyWEqfRn0CYvlmSdOf/igtFy58x0bvSbJdN6Dx2rEw9sNg8SU7O/+zWpKP5rRfWcT6iql/p0sCg==";
+ url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-5.5.7.tgz";
+ sha512 = "F8brek8VcR3CLgcuKyXbb8k8y/KRwqO/yEV5dTUW6OZ0fGxxa+0RnaaY1UbHlCVF1Cnu+/IsMDsmsj9o1RCP5A==";
};
};
- "@vercel/go-2.2.13" = {
+ "@vercel/go-2.2.15" = {
name = "_at_vercel_slash_go";
packageName = "@vercel/go";
- version = "2.2.13";
+ version = "2.2.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/go/-/go-2.2.13.tgz";
- sha512 = "nfeGtp10KnqWDSQlIGyyzHbF02xIPymMHWA6oZ+0G6ygSVR7TwcDcwLbC9Rbre1ayh/RUa4tysOaMx7N3MPFqQ==";
+ url = "https://registry.npmjs.org/@vercel/go/-/go-2.2.15.tgz";
+ sha512 = "GDaG7ajKPQ0G9UT0w9UCWiD31UE27ksPP8gJFVBN3I3UmgypIiSkKadAjHZTZYPVp7mLDUeOqxL9I0A/G3bx+g==";
};
};
- "@vercel/hydrogen-0.0.26" = {
+ "@vercel/hydrogen-0.0.28" = {
name = "_at_vercel_slash_hydrogen";
packageName = "@vercel/hydrogen";
- version = "0.0.26";
+ version = "0.0.28";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.26.tgz";
- sha512 = "RYtb+PDRUkEojIayAZ7loDC3nghjfW8zKArQLch6YdjUdDO87FYXa6lrvEjWnn1Y7ViP0+1ncKZT0Eh8MrUjqQ==";
+ url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.28.tgz";
+ sha512 = "Yfb6/0xtWMlBb96Xqlt1tnOmClcc+Vq3qfSpf8Zd+OiJP7qbmgIzi1bN2s7m5t5p34boDQ4TISlQx1FsVxWH0A==";
};
};
- "@vercel/next-3.2.6" = {
+ "@vercel/next-3.2.8" = {
name = "_at_vercel_slash_next";
packageName = "@vercel/next";
- version = "3.2.6";
+ version = "3.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/next/-/next-3.2.6.tgz";
- sha512 = "x8TqYVvdWHSdyyS8FHOKibIKDB6dgATX8b8t7Plb5RP+eCLfTfjkJe0g3UlfoNPfc1s0+hQolKtIBk3sveoWgA==";
+ url = "https://registry.npmjs.org/@vercel/next/-/next-3.2.8.tgz";
+ sha512 = "LjZ83L1lnMLKJy3Et8jz4FxSAe99QdIpWdb2kHST7uiUveUX+Ke8DA32QZcszd7OObgbRxutFnC791kAqtr4og==";
};
};
"@vercel/nft-0.22.1" = {
@@ -12883,85 +13063,85 @@ let
sha512 = "lYYZIoxRurqDOSoVIdBicGnpUIpfyaS5qVjdPq+EfI285WqtZK3NK/dyCkiyBul+X2U2OEhRyeMdXPCHGJbohw==";
};
};
- "@vercel/node-2.5.26" = {
+ "@vercel/node-2.6.1" = {
name = "_at_vercel_slash_node";
packageName = "@vercel/node";
- version = "2.5.26";
+ version = "2.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/node/-/node-2.5.26.tgz";
- sha512 = "Kj3dXBwpttUB7XG5joXKIBDtkow71678NHhfpp1a7S/50U9n5R2ztsJKMPpQ1m7HgEkMezQt2YO5E+39c2jkug==";
+ url = "https://registry.npmjs.org/@vercel/node/-/node-2.6.1.tgz";
+ sha512 = "8AXrXxx1XKMT5OpSjQ5ghzjw0HYp4Cuv6GUWJ48jPcvzmU9VC5mZvjmhzmbIT4pPHdKjKZLPy8/rHqDjqztuJg==";
};
};
- "@vercel/node-bridge-3.0.0" = {
+ "@vercel/node-bridge-3.1.1" = {
name = "_at_vercel_slash_node-bridge";
packageName = "@vercel/node-bridge";
- version = "3.0.0";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/node-bridge/-/node-bridge-3.0.0.tgz";
- sha512 = "TNQK6cufwrhd8ASDk5YHHenH8Xhp9sY8xUjOTKnQQI37KLk+Sw2HlHhT5rzUFN23ahosUlkY8InwtYUmSNb9kw==";
+ url = "https://registry.npmjs.org/@vercel/node-bridge/-/node-bridge-3.1.1.tgz";
+ sha512 = "sWg2okUTj8IbeWnAaY3IKbDp3Vinj4zdt3Q11S+cRMXO+pAUbqJxmiPD5+MS0RyIVvufoNotooiitRGlgQjA5w==";
};
};
- "@vercel/python-3.1.22" = {
+ "@vercel/python-3.1.24" = {
name = "_at_vercel_slash_python";
packageName = "@vercel/python";
- version = "3.1.22";
+ version = "3.1.24";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/python/-/python-3.1.22.tgz";
- sha512 = "s1/QZ4MJ0KXjvU5RBQpaB1d6pvAbjy+hAKAqx6A4s+q6PC5Q1+WuDeHxjm/UrhUPiu0qy88RlhojZgVT92ysJQ==";
+ url = "https://registry.npmjs.org/@vercel/python/-/python-3.1.24.tgz";
+ sha512 = "rQcmxHkzCAB83BC17RoiXXdEktmR4BAnJvlItpw7UpmVoSEBjHINOvdbu2XnxG5AslcTYBTbtyn1NBPcx6NaDg==";
};
};
- "@vercel/redwood-1.0.31" = {
+ "@vercel/redwood-1.0.33" = {
name = "_at_vercel_slash_redwood";
packageName = "@vercel/redwood";
- version = "1.0.31";
+ version = "1.0.33";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.0.31.tgz";
- sha512 = "cq1CsO8VoeCFtj7o7PFLx4PnbBX3zn1L9BUgxCcWNRnr3EJmpo28W1LXG1Z4U97JADzkDoXhDRz9PReLC15Unw==";
+ url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.0.33.tgz";
+ sha512 = "7qXKa0pTn31YcLDjxBgFXM2rFftgiX6tS1nvvbP3dFrL/1SdwkfcNJLR0K3qFkiPkrWJdYBdeAIZVFnI2kyA1w==";
};
};
- "@vercel/remix-1.0.32" = {
+ "@vercel/remix-1.0.34" = {
name = "_at_vercel_slash_remix";
packageName = "@vercel/remix";
- version = "1.0.32";
+ version = "1.0.34";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/remix/-/remix-1.0.32.tgz";
- sha512 = "6jMgJR9ZqXII7A4sWFv15eZ4Rf6+vwDU4k5rvAxXBC1tHnIzNrI4CE/cBw8fP2l78REPvtYZJLMNyXBAXFXFDg==";
+ url = "https://registry.npmjs.org/@vercel/remix/-/remix-1.0.34.tgz";
+ sha512 = "xcxRitagosqSWgZPfYFgMN//MJD+i5LpPB7zsXfwuOC5La4DJ8DU0ZKJpTWAor4j0kdxQX4D54jjw3vAxap4sQ==";
};
};
- "@vercel/routing-utils-2.0.2" = {
+ "@vercel/routing-utils-2.1.1" = {
name = "_at_vercel_slash_routing-utils";
packageName = "@vercel/routing-utils";
- version = "2.0.2";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.0.2.tgz";
- sha512 = "Ach23n7fjhVVRplBVDmSlJ0E1rJTOxuQdqJfyuC6yGQl5ykmfarCXfjrLFCgeujqmQwAU9q0PR3K6HVOaAmbfg==";
+ url = "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.1.1.tgz";
+ sha512 = "X5mYkJi8Zuc74bvufI6jaUfzLZJSQ/nat7WOoOgBpd4DRqfGNm7umqEe3xe7BKcuc95tnDkzR1yNjcqkkumydg==";
};
};
- "@vercel/ruby-1.3.39" = {
+ "@vercel/ruby-1.3.41" = {
name = "_at_vercel_slash_ruby";
packageName = "@vercel/ruby";
- version = "1.3.39";
+ version = "1.3.41";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.39.tgz";
- sha512 = "rVnuaCgwsnNOyQ9IYJDHE/hDJmaxy7p2LaZH8hAwuvnCrWtZ9KH3g4a2QASV5UTS2JGgHxSOKvrWMAIE6DUQ2g==";
+ url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.41.tgz";
+ sha512 = "Tn+j9g/VRQLVVzn1Sz1DBEvrlKkXHG+7IxuYdJ9K/+t3iKk4EheYI/lBo3aDPEszPbI0eHNsO7Bg7xWRGW0hsQ==";
};
};
- "@vercel/static-build-1.0.32" = {
+ "@vercel/static-build-1.0.34" = {
name = "_at_vercel_slash_static-build";
packageName = "@vercel/static-build";
- version = "1.0.32";
+ version = "1.0.34";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.0.32.tgz";
- sha512 = "pXHMTyW6//NmZRcDu7Z1p3djtsVWrXdWO2A36ZPFgxsyoFLhh0ynM6g+dWZ9vPPTDhUq/WE/IBy5ceIAP3qehQ==";
+ url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.0.34.tgz";
+ sha512 = "nWQGn2NEst9cZAWRRjjuuLhO0x2DyhfYKHcWQYhmqhKeXObTDV4iIgMa6yxMBJVPTx5dwsKfVDIHKtNB69j22A==";
};
};
- "@vercel/static-config-2.0.3" = {
+ "@vercel/static-config-2.0.5" = {
name = "_at_vercel_slash_static-config";
packageName = "@vercel/static-config";
- version = "2.0.3";
+ version = "2.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.3.tgz";
- sha512 = "XfP0z81SigmxvUzzhN6pbURJns86HKYjrLYgetLbBp1d8NUv4O8dqhNkRGpNGYdljTkjBQOfqG0HVT6dSnqvOw==";
+ url = "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.5.tgz";
+ sha512 = "f3wt+vQ3ARRR7hXHteMbrRNjH8iMETmP8f/t2HC8TpOjitjsjUKZg+3YS54AtLDEw/ZZ1s/7EG9nMK2BbU/t6g==";
};
};
"@vscode/emmet-helper-2.8.4" = {
@@ -13189,6 +13369,15 @@ let
sha512 = "Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==";
};
};
+ "@vvo/tzdb-6.75.0" = {
+ name = "_at_vvo_slash_tzdb";
+ packageName = "@vvo/tzdb";
+ version = "6.75.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@vvo/tzdb/-/tzdb-6.75.0.tgz";
+ sha512 = "36hx1wBIJD+ddu2vA3o0JL2xtR6yFbpmLm4hngd59OYtYY/0Mh6BVusUlCdayf9qVZs7UASN07+cwXAanCAuww==";
+ };
+ };
"@webassemblyjs/ast-1.11.1" = {
name = "_at_webassemblyjs_slash_ast";
packageName = "@webassemblyjs/ast";
@@ -13882,13 +14071,13 @@ let
sha512 = "GWZQKroPES4z91Ijx6zsOsb7+USOxjy66s8AoTWg0HiBBdfnbtf9aeh3Uav0MgYn4BL8Q7tVSUpd0gGpngKGEQ==";
};
};
- "@whatwg-node/fetch-0.4.7" = {
+ "@whatwg-node/fetch-0.5.1" = {
name = "_at_whatwg-node_slash_fetch";
packageName = "@whatwg-node/fetch";
- version = "0.4.7";
+ version = "0.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.4.7.tgz";
- sha512 = "+oKDMGtmUJ7H37VDL5U2Vdk+ZxsIypZxO2q6y42ytu6W3PL6OIIUYZGliNqQgWtCdtxOZ9WPQvbIAuiLpnLlUw==";
+ url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.5.1.tgz";
+ sha512 = "RBZS60EU6CbRJ370BVVKW4F9csZuGh0OQNrUDhJ0IaIFLsXsJorFCM2iwaDWZTAPMqxW1TmuVcVKJ3d/H1dV1g==";
};
};
"@withgraphite/graphite-cli-routes-0.22.0" = {
@@ -13918,22 +14107,22 @@ let
sha512 = "veadl+nEIw6zgbtchoAcl3C8469SZm5xyRvlrZTVFJK1kzniAEdTaUNsnRHsvC2HME3a5WdYoIZk/k24wegKvA==";
};
};
- "@xmldom/xmldom-0.7.6" = {
+ "@xmldom/xmldom-0.7.8" = {
name = "_at_xmldom_slash_xmldom";
packageName = "@xmldom/xmldom";
- version = "0.7.6";
+ version = "0.7.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.6.tgz";
- sha512 = "HHXP9hskkFQHy8QxxUXkS7946FFIhYVfGqsk0WLwllmexN9x/+R4UBLvurHEuyXRfVEObVR8APuQehykLviwSQ==";
+ url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.8.tgz";
+ sha512 = "PrJx38EfpitFhwmILRl37jAdBlsww6AZ6rRVK4QS7T7RHLhX7mSs647sTmgr9GIxe3qjXdesmomEgbgaokrVFg==";
};
};
- "@xmldom/xmldom-0.8.3" = {
+ "@xmldom/xmldom-0.8.5" = {
name = "_at_xmldom_slash_xmldom";
packageName = "@xmldom/xmldom";
- version = "0.8.3";
+ version = "0.8.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.3.tgz";
- sha512 = "Lv2vySXypg4nfa51LY1nU8yDAGo/5YwF+EY/rUZgIbfvwVARcd67ttCM8SMsTeJy51YhHYavEq+FS6R0hW9PFQ==";
+ url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.5.tgz";
+ sha512 = "0dpjDLeCXYThL2YhqZcd/spuwoH+dmnFoND9ZxZkAYxp1IJUB2GP16ow2MJRsjVxy8j1Qv8BJRmN5GKnbDKCmQ==";
};
};
"@xmpp/base64-0.13.1" = {
@@ -14224,13 +14413,13 @@ let
sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==";
};
};
- "@yarnpkg/parsers-3.0.0-rc.26" = {
+ "@yarnpkg/parsers-3.0.0-rc.27" = {
name = "_at_yarnpkg_slash_parsers";
packageName = "@yarnpkg/parsers";
- version = "3.0.0-rc.26";
+ version = "3.0.0-rc.27";
src = fetchurl {
- url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.26.tgz";
- sha512 = "F52Zryoi6uSHi43A/htykDD7l1707TQjHeAHTKxNWJBTwvrEKWYvuu1w8bzSHpFVc06ig2KyrpHPfmeiuOip8Q==";
+ url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.27.tgz";
+ sha512 = "qs2wZulOYVjaOS6tYOs3SsR7m/qeHwjPrB5i4JtBJELsgWrEkyL+rJH21RA+fVwttJobAYQqw5Xj5SYLaDK/bQ==";
};
};
"@zeit/schemas-2.21.0" = {
@@ -14566,13 +14755,22 @@ let
sha512 = "Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==";
};
};
- "acorn-8.8.0" = {
+ "acorn-8.8.1" = {
name = "acorn";
packageName = "acorn";
- version = "8.8.0";
+ version = "8.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz";
- sha512 = "QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==";
+ url = "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz";
+ sha512 = "7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==";
+ };
+ };
+ "acorn-class-fields-0.3.7" = {
+ name = "acorn-class-fields";
+ packageName = "acorn-class-fields";
+ version = "0.3.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn-class-fields/-/acorn-class-fields-0.3.7.tgz";
+ sha512 = "jdUWSFce0fuADUljmExz4TWpPkxmRW/ZCPRqeeUzbGf0vFUcpQYbyq52l75qGd0oSwwtAepeL6hgb/naRgvcKQ==";
};
};
"acorn-dynamic-import-3.0.0" = {
@@ -14665,6 +14863,42 @@ let
sha512 = "8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==";
};
};
+ "acorn-private-class-elements-0.2.7" = {
+ name = "acorn-private-class-elements";
+ packageName = "acorn-private-class-elements";
+ version = "0.2.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn-private-class-elements/-/acorn-private-class-elements-0.2.7.tgz";
+ sha512 = "+GZH2wOKNZOBI4OOPmzpo4cs6mW297sn6fgIk1dUI08jGjhAaEwvC39mN2gJAg2lmAQJ1rBkFqKWonL3Zz6PVA==";
+ };
+ };
+ "acorn-private-methods-0.3.3" = {
+ name = "acorn-private-methods";
+ packageName = "acorn-private-methods";
+ version = "0.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn-private-methods/-/acorn-private-methods-0.3.3.tgz";
+ sha512 = "46oeEol3YFvLSah5m9hGMlNpxDBCEkdceJgf01AjqKYTK9r6HexKs2rgSbLK81pYjZZMonhftuUReGMlbbv05w==";
+ };
+ };
+ "acorn-stage3-4.0.0" = {
+ name = "acorn-stage3";
+ packageName = "acorn-stage3";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn-stage3/-/acorn-stage3-4.0.0.tgz";
+ sha512 = "BR+LaADtA6GTB5prkNqWmlmCLYmkyW0whvSxdHhbupTaro2qBJ95fJDEiRLPUmiACGHPaYyeH9xmNJWdGfXRQw==";
+ };
+ };
+ "acorn-static-class-features-0.2.4" = {
+ name = "acorn-static-class-features";
+ packageName = "acorn-static-class-features";
+ version = "0.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn-static-class-features/-/acorn-static-class-features-0.2.4.tgz";
+ sha512 = "5X4mpYq5J3pdndLmIB0+WtFd/mKWnNYpuTlTzj32wUu/PMmEGOiayQ5UrqgwdBNiaZBtDDh5kddpP7Yg2QaQYA==";
+ };
+ };
"acorn-walk-6.2.0" = {
name = "acorn-walk";
packageName = "acorn-walk";
@@ -14791,6 +15025,15 @@ let
sha512 = "B+6bi5D34+fDYENiH5qOlA0cV2rAGKuWZ9LeyUUehbXy8e0VS9e498yO0Jeeh+iM+6KbfudHTFjXw2MmJD4QRA==";
};
};
+ "adjust-sourcemap-loader-4.0.0" = {
+ name = "adjust-sourcemap-loader";
+ packageName = "adjust-sourcemap-loader";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz";
+ sha512 = "OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==";
+ };
+ };
"adm-zip-0.5.9" = {
name = "adm-zip";
packageName = "adm-zip";
@@ -15610,13 +15853,13 @@ let
sha512 = "L3+DdClhLMaRZWVmMbBcwl4Ic77CnEBPXLW53F7hkYhkaZD88ivbCVB1w/x5gunO6ZHrdzhjq0FHmTsBvPo7aQ==";
};
};
- "apollo-server-core-3.10.3" = {
+ "apollo-server-core-3.11.0" = {
name = "apollo-server-core";
packageName = "apollo-server-core";
- version = "3.10.3";
+ version = "3.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.10.3.tgz";
- sha512 = "PiTirlcaszgnJGzSsGui9XWh0KAh0BUW+GvRKN6O0H0qOSXSLmoqqyL83J+u+HaUZGyyiE0+VOkyCcuF+kKbEw==";
+ url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.11.0.tgz";
+ sha512 = "5iRlkbilXpQeY66/F2/t2oNO0YSqb+kFb5lyMUIqK9VLuBfI/hILQDa5H71ar7hhexKwoDzIDfSJRg5ASNmnQw==";
};
};
"apollo-server-env-4.2.1" = {
@@ -15637,31 +15880,40 @@ let
sha512 = "xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA==";
};
};
- "apollo-server-express-3.10.3" = {
+ "apollo-server-express-3.11.0" = {
name = "apollo-server-express";
packageName = "apollo-server-express";
- version = "3.10.3";
+ version = "3.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.10.3.tgz";
- sha512 = "Z8m0r10mX8KlGS3noYeRPcWxWR2hX6NHJicjuwZ62PeTZlrDJF5cwGmXqbUg/sCTPx7Ny//ZEASBTwFFp8DOeQ==";
+ url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.11.0.tgz";
+ sha512 = "tJ00ZH1XVXGpzH+yxDcusZROFypPLO6g3aFAH+iq9VY89cmP7+obF9vkNG1c6HFGM8p1H8b8z3rcFKuGyL1W/w==";
};
};
- "apollo-server-plugin-base-3.6.3" = {
+ "apollo-server-plugin-base-3.7.0" = {
name = "apollo-server-plugin-base";
packageName = "apollo-server-plugin-base";
- version = "3.6.3";
+ version = "3.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-3.6.3.tgz";
- sha512 = "/Q0Zx8N8La97faKV0siGHDzfZ56ygN6ovtUpPbr+1GIbNmUzkte3lWW2YV08HmxiRmC2i2OGN80exNJEvbKvNA==";
+ url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-3.7.0.tgz";
+ sha512 = "YRPjqFHvWK9eM4gN3D4ArrAtPY7Mb1FL+YoXXwq2GxdrsZSolnDYQkqZ6BhK11J8lUmAQpnpunK91IPZshWluA==";
};
};
- "apollo-server-types-3.6.3" = {
+ "apollo-server-types-3.7.0" = {
name = "apollo-server-types";
packageName = "apollo-server-types";
- version = "3.6.3";
+ version = "3.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-3.6.3.tgz";
- sha512 = "+7caNTLdevpWI2dGKSa7CWdyudO3NBuJ3HzcrYxjBei6Bth9YdRUNzPSFmBjlm2baHF0GsrMwLpjO+HStJzm3A==";
+ url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-3.7.0.tgz";
+ sha512 = "Y2wx7eH/dqqYDdzt0KBJRbVKR10bLiup2aT8huoBbp/u3nbCN88jo1yW+FvlETeV+iKuoY3RiZDlHIvcDQ5/lA==";
+ };
+ };
+ "app-module-path-2.2.0" = {
+ name = "app-module-path";
+ packageName = "app-module-path";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/app-module-path/-/app-module-path-2.2.0.tgz";
+ sha512 = "gkco+qxENJV+8vFcDiiFhuoSvRXb2a/QPqpSoWhVz829VNJfOTnELbBmPmNKFxf3xdNnw4DWCkzkDaavcX/1YQ==";
};
};
"app-path-2.2.0" = {
@@ -16501,15 +16753,6 @@ let
sha512 = "BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==";
};
};
- "asar-3.2.0" = {
- name = "asar";
- packageName = "asar";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/asar/-/asar-3.2.0.tgz";
- sha512 = "COdw2ZQvKdFGFxXwX3oYh2/sOsJWJegrdJCGxnN4MZ7IULgRBp9P6665aqj9z1v9VwP4oP1hRBojRDQ//IGgAg==";
- };
- };
"ascii-table-0.0.9" = {
name = "ascii-table";
packageName = "ascii-table";
@@ -16951,6 +17194,15 @@ let
sha512 = "phnXdS3RP7PPcmP6NWWzWMU0sLTeyvtZCxBPpZdkYE3seGLKSQZs9FrmVO/qwypq98FUtWWUEYxziLkdGk5nnA==";
};
};
+ "async-lock-1.4.0" = {
+ name = "async-lock";
+ packageName = "async-lock";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async-lock/-/async-lock-1.4.0.tgz";
+ sha512 = "coglx5yIWuetakm3/1dsX9hxCNox22h7+V80RQOu2XUUMidtArxKoZoOtHUPuR84SycKTXzgGzAUR5hJxujyJQ==";
+ };
+ };
"async-mutex-0.1.4" = {
name = "async-mutex";
packageName = "async-mutex";
@@ -17023,15 +17275,6 @@ let
sha512 = "p4U6HQUw4k/xZKrwEQO7ZuF+8/OkzAQS4iAMhFUBGtSD8p3KkKBaTBuUTEH8TWKB3ArNbrP0401TGE2vIiU7uQ==";
};
};
- "asyncjs-util-1.2.9" = {
- name = "asyncjs-util";
- packageName = "asyncjs-util";
- version = "1.2.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.9.tgz";
- sha512 = "U9imS8ehJA6DPNdBdvoLcIRDFh7yzI9J93CC8/2obk8gUSIy8KKhmCqYe+3NlISJhxLLi8aWmVL1Gkb3dz1xhg==";
- };
- };
"asynckit-0.4.0" = {
name = "asynckit";
packageName = "asynckit";
@@ -17176,6 +17419,15 @@ let
sha512 = "JLrV3ErBNKVkmhi0celM6PJkgYEtztFnXwsNBApjinpVHtIP3g/m2ZZSOvsAe7FoByfJzDhpOXBKFbH3k2UNjw==";
};
};
+ "autoprefixer-10.4.13" = {
+ name = "autoprefixer";
+ packageName = "autoprefixer";
+ version = "10.4.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz";
+ sha512 = "49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==";
+ };
+ };
"autoprefixer-9.8.8" = {
name = "autoprefixer";
packageName = "autoprefixer";
@@ -17230,13 +17482,13 @@ let
sha512 = "545VawhsCQ7yEx9jZKV0hTTW3FS/waycISWMvnNwqRfpU9o4FQ4DSu3je7ekn5yFKM+91dxJC+IfJgtIV8WaUw==";
};
};
- "aws-sdk-2.1238.0" = {
+ "aws-sdk-2.1246.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.1238.0";
+ version = "2.1246.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1238.0.tgz";
- sha512 = "DCXAj98lFW0y2Ickm0MbXnxzbG5IDrhBXs6Wx+vscrYNFRjy7JGau9HACY8aFoesMQz8PzNmJKR82Dg2NsGvDg==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1246.0.tgz";
+ sha512 = "knOW3OsR5G67vc7RsGG7NJiukW2IKBQM5WiQo5SpWCO6PgNcpqnjqbfBEphFIzcwE5WYutHB6Ic1zW0yx27feQ==";
};
};
"aws-sign2-0.6.0" = {
@@ -17266,13 +17518,13 @@ let
sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==";
};
};
- "axe-core-4.4.3" = {
+ "axe-core-4.5.1" = {
name = "axe-core";
packageName = "axe-core";
- version = "4.4.3";
+ version = "4.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz";
- sha512 = "32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==";
+ url = "https://registry.npmjs.org/axe-core/-/axe-core-4.5.1.tgz";
+ sha512 = "1exVbW0X1O/HSr/WMwnaweyqcWOgZgLiVxdLG34pvSQk4NlYQr9OUy0JLwuhFfuVNQzzqgH57eYzkFBCb3bIsQ==";
};
};
"axios-0.19.2" = {
@@ -17365,6 +17617,15 @@ let
sha512 = "zl7zThkh+YLSDUYwDqY1hVPndpDn4ghbB59JVhLIj19X5GJBaIts9+SI82O6D0P2wxz9uXLz+Mwnh1WkNDuXgQ==";
};
};
+ "axios-mock-adapter-1.21.2" = {
+ name = "axios-mock-adapter";
+ packageName = "axios-mock-adapter";
+ version = "1.21.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/axios-mock-adapter/-/axios-mock-adapter-1.21.2.tgz";
+ sha512 = "jzyNxU3JzB2XVhplZboUcF0YDs7xuExzoRSHXPHr+UQajaGmcTqvkkUADgkVI2WkGlpZ1zZlMVdcTMU0ejV8zQ==";
+ };
+ };
"axios-retry-3.2.0" = {
name = "axios-retry";
packageName = "axios-retry";
@@ -17446,6 +17707,15 @@ let
sha512 = "OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==";
};
};
+ "babel-plugin-istanbul-6.1.1" = {
+ name = "babel-plugin-istanbul";
+ packageName = "babel-plugin-istanbul";
+ version = "6.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz";
+ sha512 = "Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==";
+ };
+ };
"babel-plugin-jsx-pragmatic-1.0.2" = {
name = "babel-plugin-jsx-pragmatic";
packageName = "babel-plugin-jsx-pragmatic";
@@ -17500,13 +17770,13 @@ let
sha512 = "NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==";
};
};
- "babel-plugin-react-native-web-0.18.9" = {
+ "babel-plugin-react-native-web-0.18.10" = {
name = "babel-plugin-react-native-web";
packageName = "babel-plugin-react-native-web";
- version = "0.18.9";
+ version = "0.18.10";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.18.9.tgz";
- sha512 = "A9rrSfV98CFRS+ACgZorxaHH8gDrVyK2Nea8OHepY4Sv/Mf+vk8uvQq+tRUEBpHnUvd/qRDKIjFLbygecAt9VA==";
+ url = "https://registry.npmjs.org/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.18.10.tgz";
+ sha512 = "2UiwS6G7XKJvpo0X5OFkzGjHGFuNx9J+DgEG8TEmm+X5S0z6EB59W11RDEZghdKzsQzVbs1jB+2VHBuVgjMTiw==";
};
};
"babel-plugin-react-require-3.0.0" = {
@@ -18805,15 +19075,6 @@ let
sha512 = "XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==";
};
};
- "blueimp-md5-2.18.0" = {
- name = "blueimp-md5";
- packageName = "blueimp-md5";
- version = "2.18.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.18.0.tgz";
- sha512 = "vE52okJvzsVWhcgUHOv+69OG3Mdg151xyn41aVQN/5W5S+S43qZhxECtYLAEHMSFWX6Mv5IZrzj3T5+JqXfj5Q==";
- };
- };
"blueimp-md5-2.19.0" = {
name = "blueimp-md5";
packageName = "blueimp-md5";
@@ -19003,15 +19264,6 @@ let
sha512 = "LhBa/3hqtSY7fBgE4FzoJXNPtE1tzxEfuWc32LQXNAwvgeWJP3tlQtNqhfPwfDFflSIysSe5N/yK/ybgd/oniA==";
};
};
- "bolt07-1.8.1" = {
- name = "bolt07";
- packageName = "bolt07";
- version = "1.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bolt07/-/bolt07-1.8.1.tgz";
- sha512 = "vgh796VOdJBunZZZX0YuW1DmkS9SbW93rCLPOmWPsAHS/mStEs4+5d0KM1bYX6QBHshY9ecg4kgJaB18jrZsIA==";
- };
- };
"bolt07-1.8.2" = {
name = "bolt07";
packageName = "bolt07";
@@ -19030,6 +19282,15 @@ let
sha512 = "xEt5GE6pXB8wMIWHAoyF28k0Yt2rFqIou1LCyIeNadAOQhu/F7GTjZwreFwLl07YYkhOH23avewRt5PD8JnKKg==";
};
};
+ "bolt09-0.2.4" = {
+ name = "bolt09";
+ packageName = "bolt09";
+ version = "0.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.4.tgz";
+ sha512 = "ulNUekEfVhJredkXxP970MrVcrbPbDYyybfagqKFa8J3/4MtkhrX1pR5DjHWeyIujEkFNLbZpo6QF/Og2gXxug==";
+ };
+ };
"bonjour-3.5.0" = {
name = "bonjour";
packageName = "bonjour";
@@ -19174,6 +19435,15 @@ let
sha512 = "AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==";
};
};
+ "bowser-2.9.0" = {
+ name = "bowser";
+ packageName = "bowser";
+ version = "2.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bowser/-/bowser-2.9.0.tgz";
+ sha512 = "2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA==";
+ };
+ };
"boxen-0.6.0" = {
name = "boxen";
packageName = "boxen";
@@ -19805,6 +20075,15 @@ let
sha512 = "TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==";
};
};
+ "buffer-builder-0.2.0" = {
+ name = "buffer-builder";
+ packageName = "buffer-builder";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-builder/-/buffer-builder-0.2.0.tgz";
+ sha512 = "7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==";
+ };
+ };
"buffer-crc32-0.2.1" = {
name = "buffer-crc32";
packageName = "buffer-crc32";
@@ -20111,6 +20390,15 @@ let
sha512 = "GtKwd/4etuk1hNeprXoESBO1RSeRYJMXKf+O0qHmWdUomLT8ysNEfX/4bZFXr3BK6eukpHiEnhY2uMtEHDM2ng==";
};
};
+ "buntis-0.2.1" = {
+ name = "buntis";
+ packageName = "buntis";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buntis/-/buntis-0.2.1.tgz";
+ sha512 = "5wszfQlsqJmZrfxpPkO5yQcEoBAmfUYlXxXU/IM6PhPZ8DMnMMJQ9rvAHfe5WZmnB6E1IoJYylFfTaf1e2FJbQ==";
+ };
+ };
"bunyan-1.5.1" = {
name = "bunyan";
packageName = "bunyan";
@@ -20498,13 +20786,13 @@ let
sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==";
};
};
- "call-me-maybe-1.0.1" = {
+ "call-me-maybe-1.0.2" = {
name = "call-me-maybe";
packageName = "call-me-maybe";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz";
- sha512 = "wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw==";
+ url = "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz";
+ sha512 = "HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==";
};
};
"caller-1.1.0" = {
@@ -20732,6 +21020,15 @@ let
sha512 = "Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==";
};
};
+ "camelize-1.0.0" = {
+ name = "camelize";
+ packageName = "camelize";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz";
+ sha512 = "W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==";
+ };
+ };
"camelize-1.0.1" = {
name = "camelize";
packageName = "camelize";
@@ -20750,22 +21047,22 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001423" = {
+ "caniuse-lite-1.0.30001429" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001423";
+ version = "1.0.30001429";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001423.tgz";
- sha512 = "09iwWGOlifvE1XuHokFMP7eR38a0JnajoyL3/i87c8ZjRWRrdKo1fqjNfugfBD0UDBIOz0U+jtNhJ0EPm1VleQ==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001429.tgz";
+ sha512 = "511ThLu1hF+5RRRt0zYCf2U2yRr9GPF6m5y90SBCWsvSoYoW7yAGlv/elyPaNfvGCkp6kj/KFZWU0BMA69Prsg==";
};
};
- "canvas-2.10.1" = {
+ "canvas-2.10.2" = {
name = "canvas";
packageName = "canvas";
- version = "2.10.1";
+ version = "2.10.2";
src = fetchurl {
- url = "https://registry.npmjs.org/canvas/-/canvas-2.10.1.tgz";
- sha512 = "29pIjn9uwTUsIgJUNd7GXxKk8sg4iyJwLm1wIilNIqX1mVzXSc2nUij9exW1LqNpis1d2ebMYfMqTWcokZ4pdA==";
+ url = "https://registry.npmjs.org/canvas/-/canvas-2.10.2.tgz";
+ sha512 = "FSmlsip0nZ0U4Zcfht0qBJqDhlfGuevTZKE8h+dBOYrJjGvY3iqMGSzzbvkaFhvMXiVxfcMaPHS/kge++T5SKg==";
};
};
"canvg-3.0.7" = {
@@ -20921,31 +21218,31 @@ let
sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==";
};
};
- "cdk8s-2.5.25" = {
+ "cdk8s-2.5.34" = {
name = "cdk8s";
packageName = "cdk8s";
- version = "2.5.25";
+ version = "2.5.34";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.5.25.tgz";
- sha512 = "RFfK9KKykqv3oAtzfEz791Vi+nbvhxgQKCQIaimZ3x0sQMslT+OwmkrHxyGoG6cnZUVJStsyG3W75pG7yrPI3A==";
+ url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.5.34.tgz";
+ sha512 = "aQMdV/Q3UnVCkSMJU6/0Wh2tScXgR2INoDRgD0zH6Qs38BTnFPGD0bSduLMxOUHvbAh9lSdepwN5fnUEkO0YLg==";
};
};
- "cdk8s-plus-25-2.0.0-rc.21" = {
+ "cdk8s-plus-25-2.0.11" = {
name = "cdk8s-plus-25";
packageName = "cdk8s-plus-25";
- version = "2.0.0-rc.21";
+ version = "2.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.0.0-rc.21.tgz";
- sha512 = "9Gtgu9NH34qNgt4468ciVdauLNDkzV/FteV6Lz6Wb0i5MQe9NuINvDssbf0byah+ihHUocodRx21teofIBkf+A==";
+ url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.0.11.tgz";
+ sha512 = "Na7+S/SVvLaGYX44d7BvklwEcXi+aBphw3dYDRB3KC0Qpp2mxd6hWC26pFhWz3BU7D6PIameQ/HKU9gXuuheqA==";
};
};
- "cdktf-0.13.1" = {
+ "cdktf-0.13.2" = {
name = "cdktf";
packageName = "cdktf";
- version = "0.13.1";
+ version = "0.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/cdktf/-/cdktf-0.13.1.tgz";
- sha512 = "exCUk6mzamu0VLZrn3aDlbR2fejPTeyJtz5bssCwnwJN8gNRkiEw7LPWja6zPESNzFXHP0ccHMwpHiJYR7H5qA==";
+ url = "https://registry.npmjs.org/cdktf/-/cdktf-0.13.2.tgz";
+ sha512 = "jImOi2LPalxi6RtoMRTPZ/R/FQQ6B3I5++cbbHWqU2Th4wie2YlMt3IB/Qwaho74QfRHf211nT5oFcWfBj1DyA==";
};
};
"center-align-0.1.3" = {
@@ -21533,6 +21830,15 @@ let
sha512 = "HqsYJgIc8ljJJOqOzLphjAs79EUuWSX3nzZi2LNkzlw3GIzAeZbaSektC8iT/tKvLqZq8yl1GJu5o6doA4TRbg==";
};
};
+ "chrome-finder-1.0.7" = {
+ name = "chrome-finder";
+ packageName = "chrome-finder";
+ version = "1.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chrome-finder/-/chrome-finder-1.0.7.tgz";
+ sha512 = "Cxdl9ns86sXKMU5jIWy7rb0jX0SlWBNVV30/eBvtYCSx+GfLOM+MyODWd6gv72QONFWPbEmere8VL/xVIrTzmA==";
+ };
+ };
"chrome-launcher-0.15.1" = {
name = "chrome-launcher";
packageName = "chrome-launcher";
@@ -22424,6 +22730,15 @@ let
sha512 = "rwHwUfXL40Chm1r08yrhU3qpUvdVlgkKNeyeGPOxnW8/SyVDvgRaed/Uz54AqWNaTCAThlj6QAs3TZcKI0xDEw==";
};
};
+ "cluster-key-slot-1.1.2" = {
+ name = "cluster-key-slot";
+ packageName = "cluster-key-slot";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz";
+ sha512 = "RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==";
+ };
+ };
"cmake-js-6.3.2" = {
name = "cmake-js";
packageName = "cmake-js";
@@ -23216,6 +23531,15 @@ let
sha512 = "zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==";
};
};
+ "compare-semver-1.1.0" = {
+ name = "compare-semver";
+ packageName = "compare-semver";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/compare-semver/-/compare-semver-1.1.0.tgz";
+ sha512 = "AENcdfhxsMCzzl+QRdOwMQeA8tZBEEacAmA4pGPoyco27G9sIaM98WNYkcToC9O0wIx1vE+1ErmaM4t0/fXhMw==";
+ };
+ };
"compare-version-0.1.2" = {
name = "compare-version";
packageName = "compare-version";
@@ -23567,6 +23891,15 @@ let
sha512 = "a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==";
};
};
+ "connect-redis-3.4.2" = {
+ name = "connect-redis";
+ packageName = "connect-redis";
+ version = "3.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect-redis/-/connect-redis-3.4.2.tgz";
+ sha512 = "ozA1Z0GDnsCJECfNyNJOqPuW3Fk43fUbKC65Sa/V9hkCBNtXsFU2xtTOVsQGUsflpywuJMgGOV4xrnKzIPFqvA==";
+ };
+ };
"connect-redis-6.1.3" = {
name = "connect-redis";
packageName = "connect-redis";
@@ -23666,13 +23999,13 @@ let
sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==";
};
};
- "constructs-10.1.137" = {
+ "constructs-10.1.147" = {
name = "constructs";
packageName = "constructs";
- version = "10.1.137";
+ version = "10.1.147";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-10.1.137.tgz";
- sha512 = "jRuNdceHnCB1JRybA1QQL8ZPI704I6jvQmNgyhen3dvQPYfBkhbyNGVabnLPd5IDnnW4Q5y8XkYugLX2hwnLmg==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-10.1.147.tgz";
+ sha512 = "rM2Mc5PJ+zS4h2T2zJeUQTLYYOs4vHaXGCV8a1P+s3aknL8ATmgKui4cOMypa6yJxFW2b74VcgRpt/dhA2eE6g==";
};
};
"consume-http-header-1.0.0" = {
@@ -23729,6 +24062,15 @@ let
sha512 = "FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==";
};
};
+ "content-security-policy-builder-2.1.0" = {
+ name = "content-security-policy-builder";
+ packageName = "content-security-policy-builder";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/content-security-policy-builder/-/content-security-policy-builder-2.1.0.tgz";
+ sha512 = "/MtLWhJVvJNkA9dVLAp6fg9LxD2gfI6R2Fi1hPmfjYXSahJJzcfvoeDOxSyp4NvxMuwWv3WMssE9o31DoULHrQ==";
+ };
+ };
"content-type-1.0.4" = {
name = "content-type";
packageName = "content-type";
@@ -24297,31 +24639,31 @@ let
sha512 = "y1hvKXmPHvm5B7w4ln1S4uc9eV/O5+iFExSRUimnvIph11uaizFR8LFMdONN8hG3P2pipUfX4Y/fR8rAEtcHcQ==";
};
};
- "core-js-3.25.5" = {
+ "core-js-3.26.0" = {
name = "core-js";
packageName = "core-js";
- version = "3.25.5";
+ version = "3.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.25.5.tgz";
- sha512 = "nbm6eZSjm+ZuBQxCUPQKQCoUEfFOXjUZ8dTTyikyKaWrTYmAVbykQfwsKE5dBK88u3QCkCrzsx/PPlKfhsvgpw==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.26.0.tgz";
+ sha512 = "+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==";
};
};
- "core-js-compat-3.25.5" = {
+ "core-js-compat-3.26.0" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.25.5";
+ version = "3.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.5.tgz";
- sha512 = "ovcyhs2DEBUIE0MGEKHP4olCUW/XYte3Vroyxuh38rD1wAO4dHohsovUC4eAOuzFxE6b+RXvBU3UZ9o0YhUTkA==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz";
+ sha512 = "piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==";
};
};
- "core-js-pure-3.25.5" = {
+ "core-js-pure-3.26.0" = {
name = "core-js-pure";
packageName = "core-js-pure";
- version = "3.25.5";
+ version = "3.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.5.tgz";
- sha512 = "oml3M22pHM+igfWHDfdLVq2ShWmjM2V4L+dQEBs0DWVIqEm9WHCwGAlZ6BmyBQGy5sFrJmcx+856D9lVKyGWYg==";
+ url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.0.tgz";
+ sha512 = "LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA==";
};
};
"core-util-is-1.0.2" = {
@@ -24432,13 +24774,13 @@ let
sha512 = "H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==";
};
};
- "cosmiconfig-typescript-loader-4.1.1" = {
+ "cosmiconfig-typescript-loader-4.2.0" = {
name = "cosmiconfig-typescript-loader";
packageName = "cosmiconfig-typescript-loader";
- version = "4.1.1";
+ version = "4.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.1.1.tgz";
- sha512 = "9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==";
+ url = "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.2.0.tgz";
+ sha512 = "NkANeMnaHrlaSSlpKGyvn2R4rqUDeE/9E5YHx+b4nwo0R8dZyAqcih8/gxpCZvqWP9Vf6xuLpMSzSgdVEIM78g==";
};
};
"count-trailing-zeros-1.0.1" = {
@@ -24837,67 +25179,67 @@ let
sha512 = "x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==";
};
};
- "cspell-dictionary-6.12.0" = {
+ "cspell-dictionary-6.13.3" = {
name = "cspell-dictionary";
packageName = "cspell-dictionary";
- version = "6.12.0";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-6.12.0.tgz";
- sha512 = "I2cXSdXndt9H7yXmJzLTjgui/SAPGghXwxFeibTbvF68gyQYD5fUXvOygEIPrOEySKlAIb+aouV77SgoURxMHw==";
+ url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-6.13.3.tgz";
+ sha512 = "7WkXhfbOS/nNmelW9vfujJDauXWS/LTfeSOvsfKXnxAzDIhfW8e3/pb2POxI5R3cwpWAruAvkg3dPUVSTYCsIA==";
};
};
- "cspell-gitignore-6.12.0" = {
+ "cspell-gitignore-6.13.3" = {
name = "cspell-gitignore";
packageName = "cspell-gitignore";
- version = "6.12.0";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.12.0.tgz";
- sha512 = "gtsN2AAvqdE8CHVzpxsQcd/Wn5GAMTjzHpDXX71g/k8IJn743poGU06O0O1WSVAgK0fWTRsfg+V5OegA1TAo7A==";
+ url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.13.3.tgz";
+ sha512 = "3Bk74wS4dN6yKkcJ8k0nHd4ZKJACB+MhAVBGnY8lrzOOlxMi1WxeXryFGffhTVM6YF0znxVxbmSCElO4Gi7d+A==";
};
};
- "cspell-glob-6.12.0" = {
+ "cspell-glob-6.13.3" = {
name = "cspell-glob";
packageName = "cspell-glob";
- version = "6.12.0";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.12.0.tgz";
- sha512 = "Q0rMGTxDyFFPm1LmHYM0ziuxQt2aXgr8Oi1glA2s0dBs0hg1DexlAEoLwLiMDUwSTvibEKIidPzlrmZ1AUDWEg==";
+ url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.13.3.tgz";
+ sha512 = "aeclGfEeJVPjJYA2L2+72ROHqCEHu3unSZm+JRxUYbpGlUbeia4q+Ew1c/1cxz1dM+pTRuShWaC95z1YUbkwxg==";
};
};
- "cspell-grammar-6.12.0" = {
+ "cspell-grammar-6.13.3" = {
name = "cspell-grammar";
packageName = "cspell-grammar";
- version = "6.12.0";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.12.0.tgz";
- sha512 = "WXcDiWJ2pTW0jHY0Bf0DW5s8A9S0a+2tsVZsNxE/0CR5P/8yDSnznE+59uok/JN+GXOKQ6VIaqAZA3/XjDZuuA==";
+ url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.13.3.tgz";
+ sha512 = "bkI4Y/TKpcFvYV15XpZm9DxQYDxGMKCw9q3l03YzzN1lA6ShBYX8dLDY8Qp3I9VHWreW4+LnD13lIUrIKsqurw==";
};
};
- "cspell-io-6.12.0" = {
+ "cspell-io-6.13.3" = {
name = "cspell-io";
packageName = "cspell-io";
- version = "6.12.0";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.12.0.tgz";
- sha512 = "1faxDj2OMgq61w7GaiXZD7ytks6PksJlG484LMl2USv58jDky4i2lujJs1C/+aP97Box9EcdwzydHX9GpnqqCw==";
+ url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.13.3.tgz";
+ sha512 = "YBiFuN/w+7W2qgr/5V+zc/1jpd/EHVmSPP0SeBSGulbZO4dWo5hVjlp2W90vAEJ3NfCNwz8uQkaCtRSKM4eiWA==";
};
};
- "cspell-lib-6.12.0" = {
+ "cspell-lib-6.13.3" = {
name = "cspell-lib";
packageName = "cspell-lib";
- version = "6.12.0";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.12.0.tgz";
- sha512 = "IKd2MzH/zoiXohc26Lqb1b8i+41Y2xGreyAe9ihv/7Z2dscGGVy7F/2taZvZK9kJIhaz33Yatxfx3htT6w0hqg==";
+ url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.13.3.tgz";
+ sha512 = "43X0QkcDm7MCkq07Iitg1nueMu2DOSD5pBCBoLTBWPAHtYerw4XLAIbK/302bTEUBqgI0m2hb4AZ8uzwRlVLTQ==";
};
};
- "cspell-trie-lib-6.12.0" = {
+ "cspell-trie-lib-6.13.3" = {
name = "cspell-trie-lib";
packageName = "cspell-trie-lib";
- version = "6.12.0";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.12.0.tgz";
- sha512 = "SJOdb51Wy3ewaKfttZwc9NYOIXaKlhyr+ykYKBExj3qMfV1J4d4iDLE95FriaRcqnq6X/qEM9jUvZHlvadDk3A==";
+ url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.13.3.tgz";
+ sha512 = "fjCqO3aJdRL1cNjLAhUAusrRdrtP/z/hCxmaxzYJlw0IsXsXA3y11XcsqbFpvGcf136iz+jSo+mhDt8t7n/KsA==";
};
};
"csrf-3.1.0" = {
@@ -24927,6 +25269,15 @@ let
sha512 = "DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==";
};
};
+ "css-blank-pseudo-3.0.3" = {
+ name = "css-blank-pseudo";
+ packageName = "css-blank-pseudo";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz";
+ sha512 = "VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==";
+ };
+ };
"css-color-keywords-1.0.0" = {
name = "css-color-keywords";
packageName = "css-color-keywords";
@@ -24981,6 +25332,15 @@ let
sha512 = "/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==";
};
};
+ "css-has-pseudo-3.0.4" = {
+ name = "css-has-pseudo";
+ packageName = "css-has-pseudo";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz";
+ sha512 = "Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==";
+ };
+ };
"css-loader-2.1.1" = {
name = "css-loader";
packageName = "css-loader";
@@ -24999,6 +25359,15 @@ let
sha512 = "M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==";
};
};
+ "css-loader-6.7.1" = {
+ name = "css-loader";
+ packageName = "css-loader";
+ version = "6.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz";
+ sha512 = "yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==";
+ };
+ };
"css-modules-loader-core-1.1.0" = {
name = "css-modules-loader-core";
packageName = "css-modules-loader-core";
@@ -25017,6 +25386,15 @@ let
sha512 = "UNIFik2RgSbiTwIW1IsFwXWn6vs+bYdq83LKTSOsx7NJR7WII9dxewkHLltfTLVppoUApHV0118a4RZRI9FLwA==";
};
};
+ "css-prefers-color-scheme-6.0.3" = {
+ name = "css-prefers-color-scheme";
+ packageName = "css-prefers-color-scheme";
+ version = "6.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz";
+ sha512 = "4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==";
+ };
+ };
"css-select-1.0.0" = {
name = "css-select";
packageName = "css-select";
@@ -25107,6 +25485,15 @@ let
sha512 = "tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==";
};
};
+ "css-tree-2.2.1" = {
+ name = "css-tree";
+ packageName = "css-tree";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz";
+ sha512 = "OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==";
+ };
+ };
"css-what-1.0.0" = {
name = "css-what";
packageName = "css-what";
@@ -25161,6 +25548,15 @@ let
sha512 = "umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w==";
};
};
+ "cssdb-7.0.2" = {
+ name = "cssdb";
+ packageName = "cssdb";
+ version = "7.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cssdb/-/cssdb-7.0.2.tgz";
+ sha512 = "Vm4b6P/PifADu0a76H0DKRNVWq3Rq9xa/Nx6oEMUBJlwTUuZoZ3dkZxo8Gob3UEL53Cq+Ma1GBgISed6XEBs3w==";
+ };
+ };
"cssesc-3.0.0" = {
name = "cssesc";
packageName = "cssesc";
@@ -25188,13 +25584,13 @@ let
sha512 = "6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==";
};
};
- "cssnano-5.1.13" = {
+ "cssnano-5.1.14" = {
name = "cssnano";
packageName = "cssnano";
- version = "5.1.13";
+ version = "5.1.14";
src = fetchurl {
- url = "https://registry.npmjs.org/cssnano/-/cssnano-5.1.13.tgz";
- sha512 = "S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ==";
+ url = "https://registry.npmjs.org/cssnano/-/cssnano-5.1.14.tgz";
+ sha512 = "Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==";
};
};
"cssnano-preset-default-4.0.8" = {
@@ -25206,13 +25602,13 @@ let
sha512 = "LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==";
};
};
- "cssnano-preset-default-5.2.12" = {
+ "cssnano-preset-default-5.2.13" = {
name = "cssnano-preset-default";
packageName = "cssnano-preset-default";
- version = "5.2.12";
+ version = "5.2.13";
src = fetchurl {
- url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.12.tgz";
- sha512 = "OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==";
+ url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz";
+ sha512 = "PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==";
};
};
"cssnano-util-get-arguments-4.0.0" = {
@@ -25278,6 +25674,15 @@ let
sha512 = "wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==";
};
};
+ "csso-5.0.5" = {
+ name = "csso";
+ packageName = "csso";
+ version = "5.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz";
+ sha512 = "0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==";
+ };
+ };
"cssom-0.3.8" = {
name = "cssom";
packageName = "cssom";
@@ -25422,6 +25827,15 @@ let
sha512 = "xiEMER6E7TlTPnDxrM4eRiC6TRgjNX9xzEZ5U/Se2YJKr7Mq4pJn/2XEHjl3STcSh96GmkHPcBXLES8M29wyyg==";
};
};
+ "cuint-0.2.2" = {
+ name = "cuint";
+ packageName = "cuint";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz";
+ sha512 = "d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==";
+ };
+ };
"culvert-0.1.2" = {
name = "culvert";
packageName = "culvert";
@@ -26304,6 +26718,15 @@ let
sha512 = "NxuWFXR3+HJULO6F6VprWnUQbx0MXgfEuOfz3m+pw8LYZV06SHRjcaBVvVlwH132xJq12mljySVDLcbMcFM7EA==";
};
};
+ "dasherize-2.0.0" = {
+ name = "dasherize";
+ packageName = "dasherize";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dasherize/-/dasherize-2.0.0.tgz";
+ sha512 = "APql/TZ6FdLEpf2z7/X2a2zyqK8juYtqaSVqxw9mYoQ64CXkfU15AeLh8pUszT8+fnYjgm6t0aIYpWKJbnLkuA==";
+ };
+ };
"dat-dns-3.2.1" = {
name = "dat-dns";
packageName = "dat-dns";
@@ -26826,13 +27249,13 @@ let
sha512 = "Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA==";
};
};
- "decamelize-keys-1.1.0" = {
+ "decamelize-keys-1.1.1" = {
name = "decamelize-keys";
packageName = "decamelize-keys";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz";
- sha512 = "ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==";
+ url = "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz";
+ sha512 = "WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==";
};
};
"decimal.js-10.4.2" = {
@@ -27015,13 +27438,13 @@ let
sha512 = "yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==";
};
};
- "deep-equal-2.0.5" = {
+ "deep-equal-2.1.0" = {
name = "deep-equal";
packageName = "deep-equal";
- version = "2.0.5";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/deep-equal/-/deep-equal-2.0.5.tgz";
- sha512 = "nPiRgmbAtm1a3JsnLCf6/SLfXcjyN5v8L1TXzdCmHrXJ4hx+gW/w1YCcn7z8gJtSiDArZCgYtbao3QqLm/N1Sw==";
+ url = "https://registry.npmjs.org/deep-equal/-/deep-equal-2.1.0.tgz";
+ sha512 = "2pxgvWu3Alv1PoWEyVg7HS8YhGlUFUV7N5oOvfL6d+7xAmLSemMwv/c8Zv/i9KFzxV5Kt5CAvQc70fLwVuf4UA==";
};
};
"deep-extend-0.2.11" = {
@@ -27843,13 +28266,13 @@ let
sha512 = "IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==";
};
};
- "diff2html-3.4.19" = {
+ "diff2html-3.4.22" = {
name = "diff2html";
packageName = "diff2html";
- version = "3.4.19";
+ version = "3.4.22";
src = fetchurl {
- url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.19.tgz";
- sha512 = "23tBeyRxcw31p/XlEn9ZGYP9mRQRL3cB25aigrWV29UUUmEnlHnmUpFWGKVSiCJXoize+31SV412BYmdilRqEw==";
+ url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.22.tgz";
+ sha512 = "n7b0cfjqG+NLAmxdlSRMXIGoeoK+OhCNxd/6InjjMxy3v5Gk1L5Ms5r4jziFiRBoNaB6L8lLyZ8KQ8Kv+DOgnw==";
};
};
"diff3-0.0.3" = {
@@ -28464,6 +28887,15 @@ let
sha512 = "z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==";
};
};
+ "dont-sniff-mimetype-1.1.0" = {
+ name = "dont-sniff-mimetype";
+ packageName = "dont-sniff-mimetype";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dont-sniff-mimetype/-/dont-sniff-mimetype-1.1.0.tgz";
+ sha512 = "ZjI4zqTaxveH2/tTlzS1wFp+7ncxNZaIEWYg3lzZRHkKf5zPT/MnEG6WL0BhHMJUabkh8GeU5NL5j+rEUCb7Ug==";
+ };
+ };
"dot-case-3.0.4" = {
name = "dot-case";
packageName = "dot-case";
@@ -28599,6 +29031,15 @@ let
sha512 = "UGGGWfSauusaVJC+8fgV+NVvBXkCTmVv7sk6nojDZZvuOUNGUy0Zk4UpHQD6EDjS0jpBwcACvH4eofvyzBcRDw==";
};
};
+ "double-ended-queue-2.1.0-0" = {
+ name = "double-ended-queue";
+ packageName = "double-ended-queue";
+ version = "2.1.0-0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz";
+ sha512 = "+BNfZ+deCo8hMNpDqDnvT+c0XpJ5cUa6mqYq89bho2Ifze4URTqRkcwR399hWoTrTkbZ/XJYDgP6rc7pRgffEQ==";
+ };
+ };
"downgrade-root-1.2.2" = {
name = "downgrade-root";
packageName = "downgrade-root";
@@ -28851,6 +29292,15 @@ let
sha512 = "wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w==";
};
};
+ "easygettext-2.17.0" = {
+ name = "easygettext";
+ packageName = "easygettext";
+ version = "2.17.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/easygettext/-/easygettext-2.17.0.tgz";
+ sha512 = "QmMWIu6l83SW2QuEFd4GIDrTey0qOn0haTOMt4NdPKPHEBihAqdo9HHYRDHiPg/msZSKaye7qDOLAcqHlmfo+g==";
+ };
+ };
"eazy-logger-3.1.0" = {
name = "eazy-logger";
packageName = "eazy-logger";
@@ -28914,13 +29364,13 @@ let
sha512 = "hDZWhCHZ1wu4P2g2RVsM2MjDmmJzhvcsXr5qHUSBJZXvuhJSunhbVsWoBXdIe0/yTa3RV4UaWpOmFmrVsKr0wA==";
};
};
- "edge-runtime-1.1.0-beta.40" = {
+ "edge-runtime-2.0.0" = {
name = "edge-runtime";
packageName = "edge-runtime";
- version = "1.1.0-beta.40";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/edge-runtime/-/edge-runtime-1.1.0-beta.40.tgz";
- sha512 = "KuoSRsQZUMyec6gtD9YOFA5ohmWtquTXKco+pLv1/1zcHmD0/rXU1QkTkE40BKwq+O02Esk9iPlx9LkHaQr3vg==";
+ url = "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.0.0.tgz";
+ sha512 = "TmRJhKi4mlM1e+zgF4CSzVU5gJ1sWj7ia+XhVgZ8PYyYUxk4PPjJU8qScpSLsAbdSxoBghLxdMuwuCzdYLd1sQ==";
};
};
"editor-1.0.0" = {
@@ -29004,40 +29454,13 @@ let
sha512 = "frkBt8skyo8SmlG4TbByDxZw6/tqttRYYIBaeTBfkoG18OyD59IVwVaXXHO8UYKB5/1C2Rce0Gj6uoxlAHQHzQ==";
};
};
- "electron-notarize-1.2.2" = {
- name = "electron-notarize";
- packageName = "electron-notarize";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.2.2.tgz";
- sha512 = "ZStVWYcWI7g87/PgjPJSIIhwQXOaw4/XeXU+pWqMMktSLHaGMLHdyPPN7Cmao7+Cr7fYufA16npdtMndYciHNw==";
- };
- };
- "electron-osx-sign-0.5.0" = {
- name = "electron-osx-sign";
- packageName = "electron-osx-sign";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.5.0.tgz";
- sha512 = "icoRLHzFz/qxzDh/N4Pi2z4yVHurlsCAYQvsCSG7fCedJ4UJXBS6PoQyGH71IfcqKupcKeK7HX/NkyfG+v6vlQ==";
- };
- };
- "electron-packager-16.0.0" = {
+ "electron-packager-17.1.1" = {
name = "electron-packager";
packageName = "electron-packager";
- version = "16.0.0";
+ version = "17.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-packager/-/electron-packager-16.0.0.tgz";
- sha512 = "7Ey4UUaHg3FYhA7ktsAvCWP8srp9+iPljGdeJBsNaZBakU6HWhvRC+Pc7LWXGCgAVIN5BQsUwR3xrCbFno91VA==";
- };
- };
- "electron-rebuild-3.2.9" = {
- name = "electron-rebuild";
- packageName = "electron-rebuild";
- version = "3.2.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-3.2.9.tgz";
- sha512 = "FkEZNFViUem3P0RLYbZkUjC8LUFIK+wKq09GHoOITSJjfDAVQv964hwaNseTTWt58sITQX3/5fHNYcTefqaCWw==";
+ url = "https://registry.npmjs.org/electron-packager/-/electron-packager-17.1.1.tgz";
+ sha512 = "r1NDtlajsq7gf2EXgjRfblCVPquvD2yeg+6XGErOKblvxOpDi0iulZLVhgYDP4AEF1P5/HgbX/vwjlkEv7PEIQ==";
};
};
"electron-to-chromium-1.4.284" = {
@@ -29745,13 +30168,13 @@ let
sha512 = "0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==";
};
};
- "es-aggregate-error-1.0.8" = {
+ "es-aggregate-error-1.0.9" = {
name = "es-aggregate-error";
packageName = "es-aggregate-error";
- version = "1.0.8";
+ version = "1.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/es-aggregate-error/-/es-aggregate-error-1.0.8.tgz";
- sha512 = "AKUb5MKLWMozPlFRHOKqWD7yta5uaEhH21qwtnf6FlKjNjTJOoqFi0/G14+FfSkIQhhu6X68Af4xgRC6y8qG4A==";
+ url = "https://registry.npmjs.org/es-aggregate-error/-/es-aggregate-error-1.0.9.tgz";
+ sha512 = "fvnX40sb538wdU6r4s35cq4EY6Lr09Upj40BEVem4LEsuW8XgQep9yD5Q1U2KftokNp1rWODFJ2qwZSsAjFpbg==";
};
};
"es-array-method-boxes-properly-1.0.0" = {
@@ -30726,6 +31149,24 @@ let
sha512 = "BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==";
};
};
+ "eslint-config-prettier-8.5.0" = {
+ name = "eslint-config-prettier";
+ packageName = "eslint-config-prettier";
+ version = "8.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz";
+ sha512 = "obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==";
+ };
+ };
+ "eslint-config-standard-17.0.0" = {
+ name = "eslint-config-standard";
+ packageName = "eslint-config-standard";
+ version = "17.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.0.0.tgz";
+ sha512 = "/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==";
+ };
+ };
"eslint-formatter-pretty-4.1.0" = {
name = "eslint-formatter-pretty";
packageName = "eslint-formatter-pretty";
@@ -30762,6 +31203,33 @@ let
sha512 = "j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==";
};
};
+ "eslint-plugin-es-3.0.1" = {
+ name = "eslint-plugin-es";
+ packageName = "eslint-plugin-es";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz";
+ sha512 = "GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==";
+ };
+ };
+ "eslint-plugin-es-4.1.0" = {
+ name = "eslint-plugin-es";
+ packageName = "eslint-plugin-es";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz";
+ sha512 = "GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==";
+ };
+ };
+ "eslint-plugin-html-7.1.0" = {
+ name = "eslint-plugin-html";
+ packageName = "eslint-plugin-html";
+ version = "7.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-html/-/eslint-plugin-html-7.1.0.tgz";
+ sha512 = "fNLRraV/e6j8e3XYOC9xgND4j+U7b1Rq+OygMlLcMg+wI/IpVbF+ubQa3R78EjKB9njT6TQOlcK5rFKBVVtdfg==";
+ };
+ };
"eslint-plugin-import-2.26.0" = {
name = "eslint-plugin-import";
packageName = "eslint-plugin-import";
@@ -30780,6 +31248,15 @@ let
sha512 = "sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==";
};
};
+ "eslint-plugin-n-15.4.0" = {
+ name = "eslint-plugin-n";
+ packageName = "eslint-plugin-n";
+ version = "15.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.4.0.tgz";
+ sha512 = "MkoKy9/lfd52TAXK4fkABgCp0aglk82Q3viy2UOWIEpTVE/Cem5P/UAxMBA4vSw7Gy+2egPqImE9euitLGp5aw==";
+ };
+ };
"eslint-plugin-no-unsanitized-4.0.1" = {
name = "eslint-plugin-no-unsanitized";
packageName = "eslint-plugin-no-unsanitized";
@@ -30789,6 +31266,15 @@ let
sha512 = "y/lAMWnPPC7RYuUdxlEL/XiCL8FehN9h9s3Kjqbp/Kv0i9NZs+IXSC2kS546Fa4Bumwy31HlVS/OdWX0Kxb5Xg==";
};
};
+ "eslint-plugin-node-11.1.0" = {
+ name = "eslint-plugin-node";
+ packageName = "eslint-plugin-node";
+ version = "11.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz";
+ sha512 = "oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==";
+ };
+ };
"eslint-plugin-prettier-3.4.1" = {
name = "eslint-plugin-prettier";
packageName = "eslint-plugin-prettier";
@@ -30798,6 +31284,24 @@ let
sha512 = "htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==";
};
};
+ "eslint-plugin-prettier-vue-4.2.0" = {
+ name = "eslint-plugin-prettier-vue";
+ packageName = "eslint-plugin-prettier-vue";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-prettier-vue/-/eslint-plugin-prettier-vue-4.2.0.tgz";
+ sha512 = "DA2oNRx+pZ6RM/EIHIPME4FQZifnkEROa55OWtTTUFGHpj53tcHomuxVP/kS/2MM+ul46GEK+jymK69STWDWoA==";
+ };
+ };
+ "eslint-plugin-promise-6.1.1" = {
+ name = "eslint-plugin-promise";
+ packageName = "eslint-plugin-promise";
+ version = "6.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz";
+ sha512 = "tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==";
+ };
+ };
"eslint-plugin-react-7.31.10" = {
name = "eslint-plugin-react";
packageName = "eslint-plugin-react";
@@ -30834,6 +31338,15 @@ let
sha512 = "oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw==";
};
};
+ "eslint-plugin-vue-9.7.0" = {
+ name = "eslint-plugin-vue";
+ packageName = "eslint-plugin-vue";
+ version = "9.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.7.0.tgz";
+ sha512 = "DrOO3WZCZEwcLsnd3ohFwqCoipGRSTKTBTnLwdhqAbYZtzWl0o7D+D8ZhlmiZvABKTEl8AFsqH1GHGdybyoQmw==";
+ };
+ };
"eslint-rule-docs-1.1.235" = {
name = "eslint-rule-docs";
packageName = "eslint-rule-docs";
@@ -30933,6 +31446,15 @@ let
sha512 = "mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==";
};
};
+ "eslint-webpack-plugin-3.2.0" = {
+ name = "eslint-webpack-plugin";
+ packageName = "eslint-webpack-plugin";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz";
+ sha512 = "avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==";
+ };
+ };
"esmangle-evaluator-1.0.1" = {
name = "esmangle-evaluator";
packageName = "esmangle-evaluator";
@@ -31455,6 +31977,15 @@ let
sha512 = "IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==";
};
};
+ "eventsource-polyfill-0.9.6" = {
+ name = "eventsource-polyfill";
+ packageName = "eventsource-polyfill";
+ version = "0.9.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eventsource-polyfill/-/eventsource-polyfill-0.9.6.tgz";
+ sha512 = "LyMFp2oPDGhum2lMvkjqKZEwWd2/AoXyt8aoyftTBMWwPHNgU+2tdxhTHPluDxoz+z4gNj0uHAPR9nqevATMbg==";
+ };
+ };
"everyauth-0.4.5" = {
name = "everyauth";
packageName = "everyauth";
@@ -31734,13 +32265,13 @@ let
sha512 = "bFEaFRUdV6aK2iBd+HzkHNPYsyj88EAhaQW5leznmO0qQMJxpAQ3eoUXMey1hfDBh1qgkkHgSyCZ9BIgMAGJ1g==";
};
};
- "expo-asset-8.6.1" = {
+ "expo-asset-8.6.2" = {
name = "expo-asset";
packageName = "expo-asset";
- version = "8.6.1";
+ version = "8.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-asset/-/expo-asset-8.6.1.tgz";
- sha512 = "urbUp1YtwH2J0Qc3inGQJdqTjWKML77SeMNgff+iR9MUE8gDkFqSCDjrBi7i5Oj5DDtq43mmtDg8G8ei6Vchcg==";
+ url = "https://registry.npmjs.org/expo-asset/-/expo-asset-8.6.2.tgz";
+ sha512 = "XqlXjkuUCEiojbHwbHPjQs1oboRz6w3eV96+9NBD+wb3EUqgAAYY2Do+IWyVCAl8UIFbFi3xzMiqk0Xm9+H8uQ==";
};
};
"expo-constants-13.2.4" = {
@@ -31752,6 +32283,15 @@ let
sha512 = "Zobau8EuTk2GgafwkfGnWM6CmSLB7X8qnQXVuXe0nd3v92hfQUmRWGhJwH88uxXj3LrfqctM6PaJ8taG1vxfBw==";
};
};
+ "expo-constants-14.0.2" = {
+ name = "expo-constants";
+ packageName = "expo-constants";
+ version = "14.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expo-constants/-/expo-constants-14.0.2.tgz";
+ sha512 = "wzV3nrzTXTI8yG0tfas3fnqCfKV6YE+1GphEREyVDAShEB6mBInX1b6HgtpHFy2wOtnml+lPVmTCeGtjjLnZhA==";
+ };
+ };
"expo-error-recovery-3.2.0" = {
name = "expo-error-recovery";
packageName = "expo-error-recovery";
@@ -31770,6 +32310,15 @@ let
sha512 = "lJcPGQ8yKXVknVkD5TmcJnR/TpQbEL0JP8hknLejfq3FIqPqI/LBFn31YiP37grxW8lITz1al8pq5T6CSUjAzQ==";
};
};
+ "expo-file-system-15.1.1" = {
+ name = "expo-file-system";
+ packageName = "expo-file-system";
+ version = "15.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expo-file-system/-/expo-file-system-15.1.1.tgz";
+ sha512 = "MYYDKxjLo9VOkvGHqym5EOAUS+ero9O66X5zI+EXJzqNznKvnfScdXeeAaQzShmWtmLkdVDCoYFGOaTvTA1wTQ==";
+ };
+ };
"expo-font-10.2.1" = {
name = "expo-font";
packageName = "expo-font";
@@ -31797,13 +32346,13 @@ let
sha512 = "av9ln2zwUt303g98raX7sDmESgL3SXs1sbbtIjh1rL7R0676XIUacIKgbydR0/4tMbOShWx14Z9fozpk9xIAJA==";
};
};
- "expo-modules-autolinking-0.11.0" = {
+ "expo-modules-autolinking-0.12.0" = {
name = "expo-modules-autolinking";
packageName = "expo-modules-autolinking";
- version = "0.11.0";
+ version = "0.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-0.11.0.tgz";
- sha512 = "yWJ6DZkui/LtN19engSFsSvywDOGu5S7JTCHw7m5ezpVbrhiu5VKP10Uh62PHJn+/InWG4b3Hiv2L+ccQJfcxg==";
+ url = "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-0.12.0.tgz";
+ sha512 = "SfGMzVfAHnIH9tAzkE2sqnp6gD6GkfYZmczBKwN55W8VU4XC4LPoaJN5h6Lv6V/ftFV4+Rwh7Im9DoE053zY5g==";
};
};
"expo-modules-autolinking-0.8.1" = {
@@ -31923,6 +32472,15 @@ let
sha512 = "rCSVtPXRmQSW8rmik/AIb2P0op6l7r1fMW538yyvTMltCO4xQEWMmobfrIxN2V1/mVrgxB8Az3reYF6yUZw37w==";
};
};
+ "express-data-parser-1.2.0" = {
+ name = "express-data-parser";
+ packageName = "express-data-parser";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-data-parser/-/express-data-parser-1.2.0.tgz";
+ sha512 = "9FRXKal5lwI7U+pod88U3THo+a+BTierLeX/Xa9KbH/a/eDHGY5lAGF6qBjcdaf8pOoAthTS0tnoV7+sU4JphQ==";
+ };
+ };
"express-handlebars-3.1.0" = {
name = "express-handlebars";
packageName = "express-handlebars";
@@ -32355,13 +32913,22 @@ let
sha512 = "wdRazMMeM2pl8hq1lFG8fzix8p1VLAJunTTE2RADiFBwbUfZwybUm6IwPrmMS7qTthiayr166NoXeqWe3hfR5w==";
};
};
- "fast-copy-2.1.7" = {
+ "fast-clone-1.5.13" = {
+ name = "fast-clone";
+ packageName = "fast-clone";
+ version = "1.5.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-clone/-/fast-clone-1.5.13.tgz";
+ sha512 = "0ez7coyFBQFjZtId+RJqJ+EQs61w9xARfqjqK0AD9vIUkSxWD4HvPt80+5evebZ1tTnv1GYKrPTipx7kOW5ipA==";
+ };
+ };
+ "fast-copy-3.0.0" = {
name = "fast-copy";
packageName = "fast-copy";
- version = "2.1.7";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-copy/-/fast-copy-2.1.7.tgz";
- sha512 = "ozrGwyuCTAy7YgFCua8rmqmytECYk/JYAMXcswOcm0qvGoE3tPb7ivBeIHTOK2DiapBhDZgacIhzhQIKU5TCfA==";
+ url = "https://registry.npmjs.org/fast-copy/-/fast-copy-3.0.0.tgz";
+ sha512 = "4HzS+9pQ5Yxtv13Lhs1Z1unMXamBdn5nA4bEi1abYpDNSpSp7ODYQ1KPMF6nTatfEzgH6/zPvXKU1zvHiUjWlA==";
};
};
"fast-csv-4.3.6" = {
@@ -32436,15 +33003,6 @@ let
sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==";
};
};
- "fast-glob-3.2.11" = {
- name = "fast-glob";
- packageName = "fast-glob";
- version = "3.2.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz";
- sha512 = "xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==";
- };
- };
"fast-glob-3.2.12" = {
name = "fast-glob";
packageName = "fast-glob";
@@ -32787,6 +33345,15 @@ let
sha512 = "BtE53+jaa7nNHT+gPdfU6cFAXOJUWDs2b5GFox8dtl6zLXmfNf/N6im69b9nqNNwDyl27mpIWX8qR7AafWzSdQ==";
};
};
+ "feature-policy-0.3.0" = {
+ name = "feature-policy";
+ packageName = "feature-policy";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/feature-policy/-/feature-policy-0.3.0.tgz";
+ sha512 = "ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ==";
+ };
+ };
"fecha-4.2.3" = {
name = "fecha";
packageName = "fecha";
@@ -33012,6 +33579,15 @@ let
sha512 = "WhYlIPdaYeE6/Pow1Js4QwRQBVXRoRWCZxPLL/YrzUwsZHT8fZuBxP8zZHawLQ8HxwORumP+CoRVuUxkAJD0dw==";
};
};
+ "file-saver-2.0.5" = {
+ name = "file-saver";
+ packageName = "file-saver";
+ version = "2.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz";
+ sha512 = "P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==";
+ };
+ };
"file-stream-rotator-0.6.1" = {
name = "file-stream-rotator";
packageName = "file-stream-rotator";
@@ -33660,13 +34236,22 @@ let
sha512 = "d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA==";
};
};
- "flow-parser-0.190.1" = {
+ "flow-parser-0.191.0" = {
name = "flow-parser";
packageName = "flow-parser";
- version = "0.190.1";
+ version = "0.191.0";
src = fetchurl {
- url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.190.1.tgz";
- sha512 = "DLZIYLNQpJfGyiKPylFqm1zn5XXNHlP/91Z/TgHlYljUttbnDaKHfCfVJ6SVjCQym1dGNhD/73krh68ICO+p0w==";
+ url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.191.0.tgz";
+ sha512 = "/5Gv9zY+Mg58ubzzwNz4I29uYHDpBFR5F5ohyVsb+SxW2R8S4s1qCBRtgiTAsujsC6qmQlrsOn2DBlK4m7SQTQ==";
+ };
+ };
+ "flow-remove-types-2.191.0" = {
+ name = "flow-remove-types";
+ packageName = "flow-remove-types";
+ version = "2.191.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flow-remove-types/-/flow-remove-types-2.191.0.tgz";
+ sha512 = "4/VdaQ9OnaqZNjvnmTBX032Zt4/1ecq5ffyCTXBWJevtJ/+WmDi3T7JiWHACJBMMgix5ol8BaPWyVdkZqJv64w==";
};
};
"fluent-ffmpeg-2.1.2" = {
@@ -34281,13 +34866,13 @@ let
sha512 = "KhjJmZAs2eqfhCb6PdPx4RcZtheGTz86tpTC5JTvqBn/xda+Nb+0C7dCyjOSN7T76H6a56LvH0SVXQMchLXDRw==";
};
};
- "fs-chunk-store-2.0.5" = {
+ "fs-chunk-store-3.0.1" = {
name = "fs-chunk-store";
packageName = "fs-chunk-store";
- version = "2.0.5";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/fs-chunk-store/-/fs-chunk-store-2.0.5.tgz";
- sha512 = "z3c2BmyaHdQTtIVXJDQOvwZVWN2gNU//0IYKK2LuPr+cZyGoIrgDwI4iDASaTUyQbOBtyg/k6GuDZepB6jQIPw==";
+ url = "https://registry.npmjs.org/fs-chunk-store/-/fs-chunk-store-3.0.1.tgz";
+ sha512 = "YrOFuXtUJQBkOZ2QBXBoIrjLJ/TNTpEaGnxV+TmL1qaW5J4ah6lxMh/X9pb3To+hbaoT/pRuBXLkkqoavQoQFw==";
};
};
"fs-constants-1.0.0" = {
@@ -34857,6 +35442,15 @@ let
sha512 = "nGToKy6p3PAbYQ7p1UlWl6vSPwfwU6TMSWK7TTu+WUY4ZjyZQGniGGt2oNVvyNSpyZYSB43zMXVLcBm08MTMkg==";
};
};
+ "generic-pool-3.9.0" = {
+ name = "generic-pool";
+ packageName = "generic-pool";
+ version = "3.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz";
+ sha512 = "hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==";
+ };
+ };
"gensequence-4.0.2" = {
name = "gensequence";
packageName = "gensequence";
@@ -34875,13 +35469,13 @@ let
sha512 = "3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==";
};
};
- "geojson-flatten-1.0.4" = {
+ "geojson-flatten-1.1.1" = {
name = "geojson-flatten";
packageName = "geojson-flatten";
- version = "1.0.4";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/geojson-flatten/-/geojson-flatten-1.0.4.tgz";
- sha512 = "PpscUXxO6dvvhZxtwuqiI5v+1C/IQYPJRMWoQeaF2oohJgfGYSHKVAe8L+yUqF34PH/hmq9JlwmO+juPw+95/Q==";
+ url = "https://registry.npmjs.org/geojson-flatten/-/geojson-flatten-1.1.1.tgz";
+ sha512 = "k/6BCd0qAt7vdqdM1LkLfAy72EsLDy0laNwX0x2h49vfYCiQkRc4PSra8DNEdJ10EKRpwEvDXMb0dBknTJuWpQ==";
};
};
"geojson-vt-3.2.1" = {
@@ -35073,15 +35667,6 @@ let
sha512 = "jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==";
};
};
- "get-stdin-7.0.0" = {
- name = "get-stdin";
- packageName = "get-stdin";
- version = "7.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-stdin/-/get-stdin-7.0.0.tgz";
- sha512 = "zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==";
- };
- };
"get-stdin-8.0.0" = {
name = "get-stdin";
packageName = "get-stdin";
@@ -35370,13 +35955,13 @@ let
sha512 = "SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==";
};
};
- "github-slugger-1.4.0" = {
+ "github-slugger-1.5.0" = {
name = "github-slugger";
packageName = "github-slugger";
- version = "1.4.0";
+ version = "1.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/github-slugger/-/github-slugger-1.4.0.tgz";
- sha512 = "w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==";
+ url = "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz";
+ sha512 = "wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==";
};
};
"github-url-from-git-1.5.0" = {
@@ -36046,6 +36631,15 @@ let
sha512 = "WPkN4yGtz05WZ5EhtlxNDWPhC4JIic6G8ePitwUWy4l+XPVYec+a0j0Ts47PDtW59y3RwAhUd9/h9ZZ63px6RQ==";
};
};
+ "google-protobuf-3.21.2" = {
+ name = "google-protobuf";
+ packageName = "google-protobuf";
+ version = "3.21.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.2.tgz";
+ sha512 = "3MSOYFO5U9mPGikIYCzK0SaThypfGgS6bHqrUGXG3DPHCrb+txNqeEcns1W0lkGfk0rCyNXm7xB9rMxnCiZOoA==";
+ };
+ };
"googleapis-84.0.0" = {
name = "googleapis";
packageName = "googleapis";
@@ -36073,6 +36667,15 @@ let
sha512 = "+BVVLfxmawAmGVjjJpXzu5LNcFIOfgXgP7kWEyc3qu/xn9RMqbPbNfYDdHBZKfZkDMIO7Q4vD790iNYQAXhoFA==";
};
};
+ "gopd-1.0.1" = {
+ name = "gopd";
+ packageName = "gopd";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz";
+ sha512 = "d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==";
+ };
+ };
"gossip-query-2.0.2" = {
name = "gossip-query";
packageName = "gossip-query";
@@ -36280,13 +36883,13 @@ let
sha512 = "jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==";
};
};
- "graphology-0.25.0" = {
+ "graphology-0.25.1" = {
name = "graphology";
packageName = "graphology";
- version = "0.25.0";
+ version = "0.25.1";
src = fetchurl {
- url = "https://registry.npmjs.org/graphology/-/graphology-0.25.0.tgz";
- sha512 = "z0uwplYrhnQ2iwlqJZyd6CX0Xb9AIVNzK6N0MZouYCQBqMqz36s7YmEqqhuRj0ap7F/LX3dQjeWWRIkTkaGfEA==";
+ url = "https://registry.npmjs.org/graphology/-/graphology-0.25.1.tgz";
+ sha512 = "yYA7BJCcXN2DrKNQQ9Qf22zBHm/yTbyBR71T1MYBbGtywNHsv0QZtk8zaR6zxNcp2hCCZayUkHp9DyMSZCpoxQ==";
};
};
"graphology-types-0.21.2" = {
@@ -36352,15 +36955,6 @@ let
sha512 = "5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==";
};
};
- "graphql-16.5.0" = {
- name = "graphql";
- packageName = "graphql";
- version = "16.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql/-/graphql-16.5.0.tgz";
- sha512 = "qbHgh8Ix+j/qY+a/ZcJnFQ+j8ezakqPiHwPiZhV/3PgGlgf96QMBB5/f2rkiC9sgLoy/xvT6TSiaf2nTHJh5iA==";
- };
- };
"graphql-16.6.0" = {
name = "graphql";
packageName = "graphql";
@@ -37387,6 +37981,15 @@ let
sha512 = "X8xbmTc1cbPXcQV4WkLcRMALuyoxhfpFATmyuCxJPOAvrDS4DNnsTAOmKUxMTOWU6TzrTOkxPKwIx5ZOpJVSrg==";
};
};
+ "hbs-4.2.0" = {
+ name = "hbs";
+ packageName = "hbs";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hbs/-/hbs-4.2.0.tgz";
+ sha512 = "dQwHnrfWlTk5PvG9+a45GYpg0VpX47ryKF8dULVd6DtwOE6TEcYQXQ5QM6nyOx/h7v3bvEQbdn19EDAcfUAgZg==";
+ };
+ };
"hdb-pool-0.1.6" = {
name = "hdb-pool";
packageName = "hdb-pool";
@@ -37459,6 +38062,15 @@ let
sha512 = "n8aSFscI9r3gfhOcAECAtXFaQ1uy4QSke6bnaL+iymYZ/dWs9cqDqHM+rALfsHUwukUbxsdlECZ0pKmJdQ/4OA==";
};
};
+ "helmet-3.23.3" = {
+ name = "helmet";
+ packageName = "helmet";
+ version = "3.23.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/helmet/-/helmet-3.23.3.tgz";
+ sha512 = "U3MeYdzPJQhtvqAVBPntVgAvNSOJyagwZwyKsFdyRa8TV3pOKVFljalPOCxbw5Wwf2kncGhmP0qHjyazIdNdSA==";
+ };
+ };
"helmet-4.6.0" = {
name = "helmet";
packageName = "helmet";
@@ -37468,6 +38080,24 @@ let
sha512 = "HVqALKZlR95ROkrnesdhbbZJFi/rIVSoNq6f3jA/9u6MIbTsPh3xZwihjeI5+DO/2sOV6HMHooXcEOuwskHpTg==";
};
};
+ "helmet-crossdomain-0.4.0" = {
+ name = "helmet-crossdomain";
+ packageName = "helmet-crossdomain";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/helmet-crossdomain/-/helmet-crossdomain-0.4.0.tgz";
+ sha512 = "AB4DTykRw3HCOxovD1nPR16hllrVImeFp5VBV9/twj66lJ2nU75DP8FPL0/Jp4jj79JhTfG+pFI2MD02kWJ+fA==";
+ };
+ };
+ "helmet-csp-2.10.0" = {
+ name = "helmet-csp";
+ packageName = "helmet-csp";
+ version = "2.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/helmet-csp/-/helmet-csp-2.10.0.tgz";
+ sha512 = "Rz953ZNEFk8sT2XvewXkYN0Ho4GEZdjAZy4stjiEQV3eN7GDxg1QKmYggH7otDyIA7uGA6XnUMVSgeJwbR5X+w==";
+ };
+ };
"help-me-3.0.0" = {
name = "help-me";
packageName = "help-me";
@@ -37540,6 +38170,15 @@ let
sha512 = "QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==";
};
};
+ "hide-powered-by-1.1.0" = {
+ name = "hide-powered-by";
+ packageName = "hide-powered-by";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hide-powered-by/-/hide-powered-by-1.1.0.tgz";
+ sha512 = "Io1zA2yOA1YJslkr+AJlWSf2yWFkKjvkcL9Ni1XSUqnGLr/qRQe2UI3Cn/J9MsJht7yEVCe0SscY1HgVMujbgg==";
+ };
+ };
"hidefile-3.0.0" = {
name = "hidefile";
packageName = "hidefile";
@@ -37630,6 +38269,15 @@ let
sha512 = "ujditC4vvBmZd00RRNfNPLgFVlqEeUX4sAFv5lGhBHuql8iAZodOdlZTD3em/1zo7vyjQp12up/lCVqQk8dvxA==";
};
};
+ "hls.js-1.2.4" = {
+ name = "hls.js";
+ packageName = "hls.js";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hls.js/-/hls.js-1.2.4.tgz";
+ sha512 = "yC3K79Kzq1W+OgjT12JxKMDXv9DbfvulppxmPBl7D04SaTyd2IwWk5eNASQV1mUaPlKbjr16yI9292qpSGo0ig==";
+ };
+ };
"hmac-drbg-1.0.1" = {
name = "hmac-drbg";
packageName = "hmac-drbg";
@@ -37738,13 +38386,13 @@ let
sha512 = "kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==";
};
};
- "hosted-git-info-5.1.0" = {
+ "hosted-git-info-5.2.1" = {
name = "hosted-git-info";
packageName = "hosted-git-info";
- version = "5.1.0";
+ version = "5.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-5.1.0.tgz";
- sha512 = "Ek+QmMEqZF8XrbFdwoDjSbm7rT23pCgEMOJmz6GPk/s4yH//RQfNPArhIxbguNxROq/+5lNBwCDHMhA903Kx1Q==";
+ url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-5.2.1.tgz";
+ sha512 = "xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==";
};
};
"hot-formula-parser-4.0.0" = {
@@ -37792,6 +38440,24 @@ let
sha512 = "bgJcBmNTZaJO03xtXOTNfoFEf/3VwoZ/gJ2O4ekTCZu4LSFtfzQFrJ0kjq8ZSS0+IdghXqQIiDUnpp0eUR9IJg==";
};
};
+ "hpagent-1.2.0" = {
+ name = "hpagent";
+ packageName = "hpagent";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hpagent/-/hpagent-1.2.0.tgz";
+ sha512 = "A91dYTeIB6NoXG+PxTQpCCDDnfHsW9kc06Lvpu1TEe9gnd6ZFeiBoRO9JvzEv6xK7EX97/dUE8g/vBMTqTS3CA==";
+ };
+ };
+ "hpkp-2.0.0" = {
+ name = "hpkp";
+ packageName = "hpkp";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hpkp/-/hpkp-2.0.0.tgz";
+ sha512 = "TaZpC6cO/k3DFsjfzz1LnOobbVSq+J+7WpJxrVtN4L+8+BPQj8iBDRB2Dx49613N+e7/+ZSQ9ra+xZm7Blf4wg==";
+ };
+ };
"hs-client-0.0.11" = {
name = "hs-client";
packageName = "hs-client";
@@ -37828,6 +38494,15 @@ let
sha512 = "08iL2VyCRbkQKBySkSh6m8zMUa3sADAxGVWs3Z1aPcUkTJeK0ETG4Fc27tEmQBGUAXZjIsXOZqBvacuVNSC/fQ==";
};
};
+ "hsts-2.2.0" = {
+ name = "hsts";
+ packageName = "hsts";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hsts/-/hsts-2.2.0.tgz";
+ sha512 = "ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ==";
+ };
+ };
"html-encoding-sniffer-1.0.2" = {
name = "html-encoding-sniffer";
packageName = "html-encoding-sniffer";
@@ -38710,6 +39385,15 @@ let
sha512 = "4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==";
};
};
+ "icss-utils-5.1.0" = {
+ name = "icss-utils";
+ packageName = "icss-utils";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz";
+ sha512 = "soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==";
+ };
+ };
"idb-keyval-6.2.0" = {
name = "idb-keyval";
packageName = "idb-keyval";
@@ -39493,6 +40177,15 @@ let
sha512 = "nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==";
};
};
+ "inquirer-8.2.5" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "8.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz";
+ sha512 = "QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==";
+ };
+ };
"inquirer-9.1.4" = {
name = "inquirer";
packageName = "inquirer";
@@ -39736,6 +40429,15 @@ let
sha512 = "Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==";
};
};
+ "interpret-3.1.1" = {
+ name = "interpret";
+ packageName = "interpret";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz";
+ sha512 = "6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==";
+ };
+ };
"intersect-1.0.1" = {
name = "intersect";
packageName = "intersect";
@@ -39826,15 +40528,6 @@ let
sha512 = "CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==";
};
};
- "invoices-2.0.6" = {
- name = "invoices";
- packageName = "invoices";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/invoices/-/invoices-2.0.6.tgz";
- sha512 = "adGV6WmSItMWzuZXmgR2sbaiLKXMg4YTybNgmSc+TsNDCVgTFluJFUWaihyn1ewK483z6/vNZ9VMP2tYw5tMug==";
- };
- };
"invoices-2.2.0" = {
name = "invoices";
packageName = "invoices";
@@ -39862,13 +40555,13 @@ let
sha512 = "3GYo0GJtLqgNXj4YhrisLaNNvWSNwSS2wS4OELGfGxH8I69+XfNdnmV1AyN+ZqMh0i7eX+SWjrwFKDBDgfBC1A==";
};
};
- "ioredis-5.2.3" = {
+ "ioredis-5.2.4" = {
name = "ioredis";
packageName = "ioredis";
- version = "5.2.3";
+ version = "5.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ioredis/-/ioredis-5.2.3.tgz";
- sha512 = "gQNcMF23/NpvjCaa1b5YycUyQJ9rBNH2xP94LWinNpodMWVUPP5Ai/xXANn/SM7gfIvI62B5CCvZxhg5pOgyMw==";
+ url = "https://registry.npmjs.org/ioredis/-/ioredis-5.2.4.tgz";
+ sha512 = "qIpuAEt32lZJQ0XyrloCRdlEdUUNGG9i0UOk6zgzK6igyudNWqEBxfH6OlbnOOoBBvr1WB02mm8fR55CnikRng==";
};
};
"iota-array-1.0.0" = {
@@ -41482,13 +42175,13 @@ let
sha512 = "xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==";
};
};
- "is-typed-array-1.1.9" = {
+ "is-typed-array-1.1.10" = {
name = "is-typed-array";
packageName = "is-typed-array";
- version = "1.1.9";
+ version = "1.1.10";
src = fetchurl {
- url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz";
- sha512 = "kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==";
+ url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz";
+ sha512 = "PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==";
};
};
"is-typedarray-1.0.0" = {
@@ -41761,15 +42454,6 @@ let
sha512 = "xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==";
};
};
- "isbinaryfile-3.0.3" = {
- name = "isbinaryfile";
- packageName = "isbinaryfile";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz";
- sha512 = "8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==";
- };
- };
"isbinaryfile-4.0.10" = {
name = "isbinaryfile";
packageName = "isbinaryfile";
@@ -41851,13 +42535,13 @@ let
sha512 = "qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==";
};
};
- "isomorphic-git-1.19.3" = {
+ "isomorphic-git-1.21.0" = {
name = "isomorphic-git";
packageName = "isomorphic-git";
- version = "1.19.3";
+ version = "1.21.0";
src = fetchurl {
- url = "https://registry.npmjs.org/isomorphic-git/-/isomorphic-git-1.19.3.tgz";
- sha512 = "s48mkkojyH98CpnXXN78vOV21Gl5s/6xVnwxZhP1TiXRkJsoi1kCqzNxFxyID9gQ0WFAPw0pNHRxqyb4DtJUfg==";
+ url = "https://registry.npmjs.org/isomorphic-git/-/isomorphic-git-1.21.0.tgz";
+ sha512 = "ZqCAUM63CYepA3fB8H7NVyPSiOkgzIbQ7T+QPrm9xtYgQypN9JUJ5uLMjB5iTfomdJf3mdm6aSxjZwnT6ubvEA==";
};
};
"isomorphic-textencoder-1.0.1" = {
@@ -41905,6 +42589,15 @@ let
sha512 = "0RHjbtw9QXeSYnIEY5Yrp2QZrdtz21xBDV9C/GIlY2POmgoS6a7qjkYS5siRKXScnuAj5/SPv1C3YForNCHTJA==";
};
};
+ "istanbul-lib-coverage-2.0.5" = {
+ name = "istanbul-lib-coverage";
+ packageName = "istanbul-lib-coverage";
+ version = "2.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz";
+ sha512 = "8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==";
+ };
+ };
"istanbul-lib-coverage-3.2.0" = {
name = "istanbul-lib-coverage";
packageName = "istanbul-lib-coverage";
@@ -41932,6 +42625,15 @@ let
sha512 = "BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==";
};
};
+ "istanbul-lib-instrument-5.2.1" = {
+ name = "istanbul-lib-instrument";
+ packageName = "istanbul-lib-instrument";
+ version = "5.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz";
+ sha512 = "pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==";
+ };
+ };
"istanbul-lib-processinfo-2.0.3" = {
name = "istanbul-lib-processinfo";
packageName = "istanbul-lib-processinfo";
@@ -41950,6 +42652,15 @@ let
sha512 = "wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==";
};
};
+ "istanbul-lib-source-maps-3.0.6" = {
+ name = "istanbul-lib-source-maps";
+ packageName = "istanbul-lib-source-maps";
+ version = "3.0.6";
+ 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==";
+ };
+ };
"istanbul-lib-source-maps-4.0.1" = {
name = "istanbul-lib-source-maps";
packageName = "istanbul-lib-source-maps";
@@ -42139,6 +42850,15 @@ let
sha512 = "7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==";
};
};
+ "jest-worker-28.1.3" = {
+ name = "jest-worker";
+ packageName = "jest-worker";
+ version = "28.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz";
+ sha512 = "CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==";
+ };
+ };
"jimp-compact-0.16.1" = {
name = "jimp-compact";
packageName = "jimp-compact";
@@ -42166,13 +42886,13 @@ let
sha512 = "8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==";
};
};
- "jks-js-1.0.2" = {
+ "jks-js-1.1.0" = {
name = "jks-js";
packageName = "jks-js";
- version = "1.0.2";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jks-js/-/jks-js-1.0.2.tgz";
- sha512 = "OTJ+BKJTUHbnytW4X/py22Adhm9eJdBXzsqFthecsvuup7BnxVv82UEPG6bEr+0A/ZcLtf0F/B5klDOV6ewzjg==";
+ url = "https://registry.npmjs.org/jks-js/-/jks-js-1.1.0.tgz";
+ sha512 = "irWi8S2V029Vic63w0/TYa8NIZwXu9oeMtHQsX51JDIVBo0lrEaOoyM8ALEEh5PVKD6TrA26FixQK6TzT7dHqA==";
};
};
"jmespath-0.16.0" = {
@@ -42202,15 +42922,6 @@ let
sha512 = "b2Zna/wGIyTzi0Gemg27JYUaRyTyBETw5GnqyVQMr71uojOYMrgkD2+Px3bG2ZFi7/zTUXJSDoGoBOhMixq7tg==";
};
};
- "joi-17.6.0" = {
- name = "joi";
- packageName = "joi";
- version = "17.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz";
- sha512 = "OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==";
- };
- };
"joi-17.6.4" = {
name = "joi";
packageName = "joi";
@@ -42220,6 +42931,15 @@ let
sha512 = "tPzkTJHZQjSFCc842QpdVpOZ9LI2txApboNUbW70qgnRB14Lzl+oWQOPdF2N4yqyiY14wBGe8lc7f/2hZxbGmw==";
};
};
+ "joi-17.7.0" = {
+ name = "joi";
+ packageName = "joi";
+ version = "17.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/joi/-/joi-17.7.0.tgz";
+ sha512 = "1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg==";
+ };
+ };
"join-async-iterator-1.1.1" = {
name = "join-async-iterator";
packageName = "join-async-iterator";
@@ -42734,13 +43454,13 @@ let
sha512 = "iLfogMZ7tTP0g6iMGPHZOHCjn5+K4agb6oalFYbN8iUXVgf+DwKCOGTIN0TxNpy3YFvb4YhCWVENdYPDu/5Nvw==";
};
};
- "jsii-srcmak-0.1.711" = {
+ "jsii-srcmak-0.1.721" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.711";
+ version = "0.1.721";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.711.tgz";
- sha512 = "VqIqymndMrvoYdr8ek5ul99Qy5hdzLHEXiMJ7jGEnzvHTTwjOBes0TV+lvGeZIic9Xox0ZmzwcXLK6KfSj+KSg==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.721.tgz";
+ sha512 = "an9j72575NAqANP+wCmHe/q+inewCJqCH1M1+gZtEkFEzXrn3fgZFAEMtqD8/y5jdUUAiUssJufl4ZeR6g2p+w==";
};
};
"json-bigint-1.0.0" = {
@@ -43094,13 +43814,13 @@ let
sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA==";
};
};
- "json2jsii-0.3.160" = {
+ "json2jsii-0.3.170" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.3.160";
+ version = "0.3.170";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.160.tgz";
- sha512 = "QYZ0hGJuxBS9o+6Ojy6hNubimhB2s5CSpRV2Z/Llsn+GnTc/WlhVp2LQo8MxFQaBXv5hgRglSb7K+0amV9SsuQ==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.170.tgz";
+ sha512 = "W/9wkz1Ex0aQba9ZSxc79nrnPnbC4BMtObsm+rDWfwJabj8aeTYEhr93ftX4PTb/HfKUBXM2mncykP/HbcXS2A==";
};
};
"json3-3.2.6" = {
@@ -43697,6 +44417,69 @@ let
sha512 = "fwGvRXWjaSzMed8iQHkZH41wvaoq+3tIhuIbkqBBYFuuJtWoDWqgCYTADGPqLyaLX4Ct8aP5NtAxCaxk4cfcCg==";
};
};
+ "karma-6.4.1" = {
+ name = "karma";
+ packageName = "karma";
+ version = "6.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/karma/-/karma-6.4.1.tgz";
+ sha512 = "Cj57NKOskK7wtFWSlMvZf459iX+kpYIPXmkNUzP2WAFcA7nhr/ALn5R7sw3w+1udFDcpMx/tuB8d5amgm3ijaA==";
+ };
+ };
+ "karma-chrome-launcher-3.1.1" = {
+ name = "karma-chrome-launcher";
+ packageName = "karma-chrome-launcher";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-3.1.1.tgz";
+ sha512 = "hsIglcq1vtboGPAN+DGCISCFOxW+ZVnIqhDQcCMqqCp+4dmJ0Qpq5QAjkbA0X2L9Mi6OBkHi2Srrbmm7pUKkzQ==";
+ };
+ };
+ "karma-coverage-istanbul-reporter-3.0.3" = {
+ name = "karma-coverage-istanbul-reporter";
+ packageName = "karma-coverage-istanbul-reporter";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-3.0.3.tgz";
+ sha512 = "wE4VFhG/QZv2Y4CdAYWDbMmcAHeS926ZIji4z+FkB2aF/EposRb6DP6G5ncT/wXhqUfAb/d7kZrNKPonbvsATw==";
+ };
+ };
+ "karma-htmlfile-reporter-0.3.8" = {
+ name = "karma-htmlfile-reporter";
+ packageName = "karma-htmlfile-reporter";
+ version = "0.3.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/karma-htmlfile-reporter/-/karma-htmlfile-reporter-0.3.8.tgz";
+ sha512 = "Hd4c/vqPXYjdNYXeDJRMMq2DMMxPxqOR+TPeiLz2qbqO0qCCQMeXwFGhNDFr+GsvYhcOyn7maTbWusUFchS/4A==";
+ };
+ };
+ "karma-mocha-2.0.1" = {
+ name = "karma-mocha";
+ packageName = "karma-mocha";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/karma-mocha/-/karma-mocha-2.0.1.tgz";
+ sha512 = "Tzd5HBjm8his2OA4bouAsATYEpZrp9vC7z5E5j4C5Of5Rrs1jY67RAwXNcVmd/Bnk1wgvQRou0zGVLey44G4tQ==";
+ };
+ };
+ "karma-verbose-reporter-0.0.8" = {
+ name = "karma-verbose-reporter";
+ packageName = "karma-verbose-reporter";
+ version = "0.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/karma-verbose-reporter/-/karma-verbose-reporter-0.0.8.tgz";
+ sha512 = "wHgevIcEpfgKwR3CnWd8t1ErzWeVlctO7ZtXkKFR1inb006ogz+7ZKg95eIVOnHCYWL3Gdy1dRMOGjVP0n4MlA==";
+ };
+ };
+ "karma-webpack-5.0.0" = {
+ name = "karma-webpack";
+ packageName = "karma-webpack";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/karma-webpack/-/karma-webpack-5.0.0.tgz";
+ sha512 = "+54i/cd3/piZuP3dr54+NcFeKOPnys5QeM1IY+0SPASwrtHsliXUiCL50iW+K9WWA7RvamC4macvvQ86l3KtaA==";
+ };
+ };
"katex-0.13.24" = {
name = "katex";
packageName = "katex";
@@ -44723,15 +45506,6 @@ let
sha512 = "BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA==";
};
};
- "lightning-5.16.1" = {
- name = "lightning";
- packageName = "lightning";
- version = "5.16.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lightning/-/lightning-5.16.1.tgz";
- sha512 = "7wXInrGwrAPgu+/yOagxsGkYFArby57mpTyHzgVIo6H9U9ajdQPHuS17VrbyGH3cjldp6Aw+rawwaVqqq8GRAg==";
- };
- };
"lightning-5.20.2" = {
name = "lightning";
packageName = "lightning";
@@ -44750,24 +45524,6 @@ let
sha512 = "Rha4U1yZS/SHwW/GJ+IeEaxI6vqJ1bx/upQkY5RIZNCn4YoMvqd4inQUt9GNtuLy/pXus8Bms4DL2B9DkujBKQ==";
};
};
- "lightning-6.2.0" = {
- name = "lightning";
- packageName = "lightning";
- version = "6.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lightning/-/lightning-6.2.0.tgz";
- sha512 = "lgaoBmqZm96R48L46sypPSAUvZhcfr/dYTQVYE+0/Im5+vTodq0elia3gq69P5WV/nwiOG464a5fMnaczu3Pnw==";
- };
- };
- "lightning-6.2.3" = {
- name = "lightning";
- packageName = "lightning";
- version = "6.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/lightning/-/lightning-6.2.3.tgz";
- sha512 = "qJtOofaxb1u6IxL9wXd0jTCwevmL0tMrRO8BBo7stKWIYslENDtaia0DnZJkZM2hh9PYh1736h+oHJWo/QVHTA==";
- };
- };
"lightning-6.2.4" = {
name = "lightning";
packageName = "lightning";
@@ -44777,6 +45533,24 @@ let
sha512 = "cbfuQg3hnEQS3Q43MNH/PJ/oa/znVZTPNN6tIX/aoqwbIS5VU0vbJ3URMdiyYXe1UjMDHU1i4cIbV5orWL8asw==";
};
};
+ "lightning-6.2.5" = {
+ name = "lightning";
+ packageName = "lightning";
+ version = "6.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lightning/-/lightning-6.2.5.tgz";
+ sha512 = "vyG+wBnoDGiL9xMmUBuKJBKrtcnQFi/fv3GK1PBpZQes5LM8IKNwxyxyNn7liILr/dXHhnlT7fCE+N+jvl/4yg==";
+ };
+ };
+ "lightning-6.2.6" = {
+ name = "lightning";
+ packageName = "lightning";
+ version = "6.2.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lightning/-/lightning-6.2.6.tgz";
+ sha512 = "HoUF6sbIi5lIta+3eU5jc81y7TsyTSXVZ5bYQBw+PnuRKYYnS2moa02S2doovXih6asRFPYCnxxz1jYelNb9kQ==";
+ };
+ };
"lightningcss-1.16.0" = {
name = "lightningcss";
packageName = "lightningcss";
@@ -45029,6 +45803,15 @@ let
sha512 = "04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==";
};
};
+ "listr2-5.0.5" = {
+ name = "listr2";
+ packageName = "listr2";
+ version = "5.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/listr2/-/listr2-5.0.5.tgz";
+ sha512 = "DpBel6fczu7oQKTXMekeprc0o3XDgGMkD7JNYyX+X0xbwK+xgrx9dcyKoXKqpLSUvAWfmoePS7kavniOcq3r4w==";
+ };
+ };
"livereload-0.9.3" = {
name = "livereload";
packageName = "livereload";
@@ -45065,22 +45848,13 @@ let
sha512 = "iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==";
};
};
- "ln-accounting-6.0.0" = {
+ "ln-accounting-6.1.0" = {
name = "ln-accounting";
packageName = "ln-accounting";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-6.0.0.tgz";
- sha512 = "BBYwH5Qs1XZmwLS7SmNC9VSMfs2gECFRT2KifFkYgwHj+QylMGkczsHL4CU6F/B8yb0BZUAi916Ns+9bV6KQ/g==";
- };
- };
- "ln-service-53.17.1" = {
- name = "ln-service";
- packageName = "ln-service";
- version = "53.17.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ln-service/-/ln-service-53.17.1.tgz";
- sha512 = "zkOFlFFkTotvBkkXwVaoCczGmJlcKgLW+M+/bOayuNk5yg7csKbWir5bKnjLi39i9dHK+ffjeFpX4yYH17B7tA==";
+ url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-6.1.0.tgz";
+ sha512 = "FjMmDVigqvbBXNHmnqe5unkZEQm9/GHQ78AvdXhPQVbYwhlpbniujFBwXi1H3iixqjTjjR5zVuocq8rNvvrSqA==";
};
};
"ln-service-53.22.0" = {
@@ -45101,24 +45875,6 @@ let
sha512 = "Ds3IzMNEiAgP8auc9AfDbzr6E2Xdy/GTUcLc6m5FM66JtJBM3jM52apzod+VG1vGm9rVyHfCeem/iP4oyaNPYA==";
};
};
- "ln-service-54.2.0" = {
- name = "ln-service";
- packageName = "ln-service";
- version = "54.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ln-service/-/ln-service-54.2.0.tgz";
- sha512 = "wLum4gvNdyg1DFPHPCaDHv43mdr9OZ6hKzE+Og54y16WwnVCQfM9xNzA5fV2u47CJJXAULsu0R0vVE/6aAeXCQ==";
- };
- };
- "ln-service-54.2.2" = {
- name = "ln-service";
- packageName = "ln-service";
- version = "54.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ln-service/-/ln-service-54.2.2.tgz";
- sha512 = "tVsU4r6hnQwT1Rr0EFXvlEmlpcQvdhzp/snKf49kEYwGAt2y6m9pYGPZdPuQQxVSWJMzGf6w+arGZR4nA/WDvA==";
- };
- };
"ln-service-54.2.3" = {
name = "ln-service";
packageName = "ln-service";
@@ -45128,6 +45884,24 @@ let
sha512 = "JEIdi71SJTIQJ2bVq5jYu/NSvEmYkpGVm4w5yORR3CXc2BcVy1aKF8tiemZNOByLQv8j3hZcHao31Bwcz+1G1A==";
};
};
+ "ln-service-54.2.4" = {
+ name = "ln-service";
+ packageName = "ln-service";
+ version = "54.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ln-service/-/ln-service-54.2.4.tgz";
+ sha512 = "n8OWGBQRxAf1Oqk6p77jidkkljENjkwWqElIZtRz4QLfVHpFCxhNoMOCcG5iUTt0t53P8zo3s0xzOXRPUEUT8g==";
+ };
+ };
+ "ln-service-54.2.5" = {
+ name = "ln-service";
+ packageName = "ln-service";
+ version = "54.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ln-service/-/ln-service-54.2.5.tgz";
+ sha512 = "0/5Aqap7Xvoh0Y07moUEL8mwV52QFO6yjt+LNISP2UI+j2IVAoNngZpcLQCC9pFPXSWVL8zucOSvpmvQ9/lbjQ==";
+ };
+ };
"ln-sync-3.14.0" = {
name = "ln-sync";
packageName = "ln-sync";
@@ -45146,13 +45920,13 @@ let
sha512 = "8ZJ239vnF+t3spwLTxVGr+YEq7qXLBsT/J6j2khCazGEiPz+C3O0Jo+vXGlU6+1omNphN+yl6qGkYAwJLioMDA==";
};
};
- "ln-telegram-4.0.0" = {
+ "ln-telegram-4.2.0" = {
name = "ln-telegram";
packageName = "ln-telegram";
- version = "4.0.0";
+ version = "4.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-4.0.0.tgz";
- sha512 = "2hqfnSU+Eqd7BpzG+G9HKBTXv6vt1nlOH8VIwApL1HHo/XGFBHINZ1Rpg9ciLZdhP2RiuKUFKYU7JN31w3K4mg==";
+ url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-4.2.0.tgz";
+ sha512 = "N5sjJj1JrLWB9gA3bp6z9PpJF2EdyIsAhaBK8ZlFOaNZiNybt9hAF51S3aIyVoz3k0o7Wo07i1WyK/lNEftVYA==";
};
};
"load-bmfont-1.4.1" = {
@@ -45326,6 +46100,15 @@ let
sha512 = "THWqIsn8QRnvLl0shHYVBN9syumU8pYWEHPTmkiVGd+7K5eFNVSY6AJhRvgGF70gg1Dz+l/k8WicvFCxdEs60A==";
};
};
+ "loadware-2.0.0" = {
+ name = "loadware";
+ packageName = "loadware";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/loadware/-/loadware-2.0.0.tgz";
+ sha512 = "PD5Yn9VFr7RTJLvIx/CBRALvE+PATUDoEedCcik49Te30LK4qU39DZPV3oxhhF9ql9NKg3kwL+kyf0NqnX9e/g==";
+ };
+ };
"loady-0.0.5" = {
name = "loady";
packageName = "loady";
@@ -46451,15 +47234,6 @@ let
sha512 = "L4/arjjuq4noiUJpt3yS6KIKDtJwNe2fIYgMqyYYKoeIfV1iEqvPwhCx23o+R9dzouGihDAPN1dTIRWa7zk8tw==";
};
};
- "lodash.set-4.3.2" = {
- name = "lodash.set";
- packageName = "lodash.set";
- version = "4.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz";
- sha512 = "4hNPN5jlm/N/HLMCO43v8BXKq9Z7QdAGc/VGrRD61w8gN9g/6jF9A4L1pbUgBLCffi0w9VsXfTOij5x8iTyFvg==";
- };
- };
"lodash.snakecase-4.1.1" = {
name = "lodash.snakecase";
packageName = "lodash.snakecase";
@@ -46649,6 +47423,15 @@ let
sha512 = "C7IOaBBK/0gMORRBd8OETNx3kmOkgIWIPvyDpZSCTwUrpYmgZwJkjZeOD8ww4xbOUOs4/attY+pciKvadNfFbg==";
};
};
+ "log-1.4.0" = {
+ name = "log";
+ packageName = "log";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log/-/log-1.4.0.tgz";
+ sha512 = "NnLhcxIAbhdhuMU0jDG83YjAH8JQj8tXUTy54Ib+4owuXwerrYFI8+OsnK1Ez/cig8O859QK6u6g0aYph/X/zQ==";
+ };
+ };
"log-6.3.1" = {
name = "log";
packageName = "log";
@@ -46748,6 +47531,15 @@ let
sha512 = "ILKe88NeMt4gmDvk/eb615U/IVn7K9KWGkoYbdatQ69Z65nj1ZzjM6fHXfcs0Uge+e+EGnMW7DY4T9yko8vWFg==";
};
};
+ "log-update-4.0.0" = {
+ name = "log-update";
+ packageName = "log-update";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz";
+ sha512 = "9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==";
+ };
+ };
"log-update-5.0.1" = {
name = "log-update";
packageName = "log-update";
@@ -47135,13 +47927,13 @@ let
sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==";
};
};
- "lru-cache-7.14.0" = {
+ "lru-cache-7.14.1" = {
name = "lru-cache";
packageName = "lru-cache";
- version = "7.14.0";
+ version = "7.14.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.14.0.tgz";
- sha512 = "EIRtP1GrSJny0dqb50QXRUNBxHJhcpxHC++M5tD7RYbvLLn5KVWKsbyswSSqDuU15UFi3bgTQIY8nhDMeF6aDQ==";
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.14.1.tgz";
+ sha512 = "ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA==";
};
};
"lru-queue-0.1.0" = {
@@ -47244,6 +48036,15 @@ let
sha512 = "aV48rGUwP/Vydn8HT+5cdr26YYQiUZ42NM6ToMoaGKwYfWbfLeRkEu1wXWMHBZT6+KyLfcbbtVcoQFCbbPjKlw==";
};
};
+ "luxon-3.1.0" = {
+ name = "luxon";
+ packageName = "luxon";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/luxon/-/luxon-3.1.0.tgz";
+ sha512 = "7w6hmKC0/aoWnEsmPCu5Br54BmbmUp5GfcqBxQngRcXJ+q5fdfjEzn7dxmJh2YdDhgW8PccYtlWKSv4tQkrTQg==";
+ };
+ };
"lzma-native-8.0.6" = {
name = "lzma-native";
packageName = "lzma-native";
@@ -47568,6 +48369,15 @@ let
sha512 = "CPjtWygL+f7naL+sGHoC2JQR0DG7u+9ik6WdkjjVmz2uy0kBC2l+aKfdi3ZzUR7VKSQJ6Mc/CeCN+6iVNah+ww==";
};
};
+ "maplibre-gl-2.4.0" = {
+ name = "maplibre-gl";
+ packageName = "maplibre-gl";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-2.4.0.tgz";
+ sha512 = "csNFylzntPmHWidczfgCZpvbTSmhaWvLRj9e1ezUDBEPizGgshgm3ea1T5TCNEEBq0roauu7BPuRZjA3wO4KqA==";
+ };
+ };
"mapnik-reference-8.10.0" = {
name = "mapnik-reference";
packageName = "mapnik-reference";
@@ -47865,13 +48675,13 @@ let
sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg==";
};
};
- "marked-4.1.1" = {
+ "marked-4.2.1" = {
name = "marked";
packageName = "marked";
- version = "4.1.1";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/marked/-/marked-4.1.1.tgz";
- sha512 = "0cNMnTcUJPxbA6uWmCmjWz4NJRe/0Xfk2NhXCUHjew9qJzFN20krFnsUe7QynwqOwa5m1fZ4UDg0ycKFVC0ccw==";
+ url = "https://registry.npmjs.org/marked/-/marked-4.2.1.tgz";
+ sha512 = "VK1/jNtwqDLvPktNpL0Fdg3qoeUZhmRsuiIjPEy/lHwXW4ouLoZfO4XoWd4ClDt+hupV1VLpkZhEovjU0W/kqA==";
};
};
"marked-terminal-5.1.1" = {
@@ -48387,6 +49197,15 @@ let
sha512 = "dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==";
};
};
+ "mdn-data-2.0.28" = {
+ name = "mdn-data";
+ packageName = "mdn-data";
+ version = "2.0.28";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz";
+ sha512 = "aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==";
+ };
+ };
"mdn-data-2.0.4" = {
name = "mdn-data";
packageName = "mdn-data";
@@ -48513,13 +49332,13 @@ let
sha512 = "7p+bBDqsSisO20YIZf2ntYvST27fFJINn7CKE21XdPUQDcLV62b/yB5sTOooQeEoiZ3rldZQ+4RfONgL/gbRoA==";
};
};
- "memfs-3.4.7" = {
+ "memfs-3.4.9" = {
name = "memfs";
packageName = "memfs";
- version = "3.4.7";
+ version = "3.4.9";
src = fetchurl {
- url = "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz";
- sha512 = "ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==";
+ url = "https://registry.npmjs.org/memfs/-/memfs-3.4.9.tgz";
+ sha512 = "3rm8kbrzpUGRyPKSGuk387NZOwQ90O4rI9tsWQkzNW7BLSnKGp23RsEsKK8N8QVCrtJoAMqy3spxHC4os4G6PQ==";
};
};
"memoize-one-5.2.1" = {
@@ -48531,6 +49350,15 @@ let
sha512 = "zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==";
};
};
+ "memoize-one-6.0.0" = {
+ name = "memoize-one";
+ packageName = "memoize-one";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz";
+ sha512 = "rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==";
+ };
+ };
"memoizee-0.4.15" = {
name = "memoizee";
packageName = "memoizee";
@@ -48756,13 +49584,13 @@ let
sha512 = "cylD/HcPXjeSVEPj4menLP0mndi6gvqmTlDq3QF4Vptn1tgc6ilgK7rdcAUA4X3RTkymXRwLuZpNncIfq1q1AA==";
};
};
- "mermaid-9.1.7" = {
+ "mermaid-9.2.0" = {
name = "mermaid";
packageName = "mermaid";
- version = "9.1.7";
+ version = "9.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mermaid/-/mermaid-9.1.7.tgz";
- sha512 = "MRVHXy5FLjnUQUG7YS3UN9jEN6FXCJbFCXVGJQjVIbiR6Vhw0j/6pLIjqsiah9xoHmQU6DEaKOvB3S1g/1nBPA==";
+ url = "https://registry.npmjs.org/mermaid/-/mermaid-9.2.0.tgz";
+ sha512 = "iWKTBjHoPUSs+mJMpZ5+K9xg97KflKjbv91Bu42yK2jjz4wX4Nt1eshi+bmmFWAhn7f2R0X55hlxxbSxdp0QYA==";
};
};
"meros-1.1.4" = {
@@ -49404,6 +50232,15 @@ let
sha512 = "dhNd1uA2u397uQk3Nv5LM4lm93WYDUXFn3Fu291FJerns4jyTudqhIWe4W04YLy7Uk1tm1Ore04NpjRvQp/NPA==";
};
};
+ "mime-2.5.2" = {
+ name = "mime";
+ packageName = "mime";
+ version = "2.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz";
+ sha512 = "tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==";
+ };
+ };
"mime-2.6.0" = {
name = "mime";
packageName = "mime";
@@ -49629,6 +50466,15 @@ let
sha512 = "lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==";
};
};
+ "mini-css-extract-plugin-2.6.1" = {
+ name = "mini-css-extract-plugin";
+ packageName = "mini-css-extract-plugin";
+ version = "2.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz";
+ sha512 = "wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==";
+ };
+ };
"mini-svg-data-uri-1.4.4" = {
name = "mini-svg-data-uri";
packageName = "mini-svg-data-uri";
@@ -50133,6 +50979,15 @@ let
sha512 = "bRuZp3C0itgLKHu/VNxi66DN/XVkQG7xtoBVWxpvC5FhAqbOCP21+nPhULjnzEqd7xBMybp6KwytdUpZKEgpIQ==";
};
};
+ "mocha-10.1.0" = {
+ name = "mocha";
+ packageName = "mocha";
+ version = "10.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mocha/-/mocha-10.1.0.tgz";
+ sha512 = "vUF7IYxEoN7XhQpFLxQAEMtE4W91acW4B6En9l97MwE9stL1A9gusXfoHZCLVHDUJ/7V5+lbCM6yMqzo5vNymg==";
+ };
+ };
"mocha-2.5.3" = {
name = "mocha";
packageName = "mocha";
@@ -50232,13 +51087,13 @@ let
sha512 = "cBMXjSW+fjOb4tyaVHuaVE/A5TqkukDWiOfxxAjY+PEqmmBQlLwn+8OzwPiG3brouXKY5Un4pBjAeB6UToXHaQ==";
};
};
- "moment-mini-2.24.0" = {
+ "moment-mini-2.29.4" = {
name = "moment-mini";
packageName = "moment-mini";
- version = "2.24.0";
+ version = "2.29.4";
src = fetchurl {
- url = "https://registry.npmjs.org/moment-mini/-/moment-mini-2.24.0.tgz";
- sha512 = "9ARkWHBs+6YJIvrIp0Ik5tyTTtP9PoV0Ssu2Ocq5y9v8+NOOpWiRshAp8c4rZVWTOe+157on/5G+zj5pwIQFEQ==";
+ url = "https://registry.npmjs.org/moment-mini/-/moment-mini-2.29.4.tgz";
+ sha512 = "uhXpYwHFeiTbY9KSgPPRoo1nt8OxNVdMVoTBYHfSEKeRkIkwGpO+gERmhuhBtzfaeOyTkykSrm2+noJBgqt3Hg==";
};
};
"moment-timezone-0.5.34" = {
@@ -51168,6 +52023,15 @@ let
sha512 = "OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==";
};
};
+ "natural-compare-lite-1.4.0" = {
+ name = "natural-compare-lite";
+ packageName = "natural-compare-lite";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz";
+ sha512 = "Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==";
+ };
+ };
"natural-orderby-2.0.3" = {
name = "natural-orderby";
packageName = "natural-orderby";
@@ -51718,6 +52582,15 @@ let
sha512 = "oUqnng1vhKLaA4GR+OzVbLuZZ7OOguKCtMHxHMiyP8+9mXidKfoCyc030LbAyNI3xcgCHHyitK3Q8wP+w6DwVQ==";
};
};
+ "nocache-2.1.0" = {
+ name = "nocache";
+ packageName = "nocache";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz";
+ sha512 = "0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==";
+ };
+ };
"node-abi-2.30.1" = {
name = "node-abi";
packageName = "node-abi";
@@ -52114,6 +52987,15 @@ let
sha512 = "QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==";
};
};
+ "node-modules-regexp-1.0.0" = {
+ name = "node-modules-regexp";
+ packageName = "node-modules-regexp";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz";
+ sha512 = "JMaRS9L4wSRIR+6PTVEikTrq/lMGEZR43a48ETeilY0Q0iMwVnccMFrUM1k+tNzmYuIU0Vh710bCUqHX+/+ctQ==";
+ };
+ };
"node-notifier-10.0.1" = {
name = "node-notifier";
packageName = "node-notifier";
@@ -52258,6 +53140,15 @@ let
sha512 = "f+Rbqt92Ful9gX0cGtdYwjTrWAaGURgaK5rZCWOgCNyGWusFYHhbqCCBoFBeat+HKETOU02AyTxNhJV0YZf2jQ==";
};
};
+ "node-sass-7.0.3" = {
+ name = "node-sass";
+ packageName = "node-sass";
+ version = "7.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-sass/-/node-sass-7.0.3.tgz";
+ sha512 = "8MIlsY/4dXUkJDYht9pIWBhMil3uHmE8b/AdJPjmFn1nBx9X9BASzfzmsCy0uCCb8eqI3SYYzVPDswWqSx7gjw==";
+ };
+ };
"node-schedule-2.1.0" = {
name = "node-schedule";
packageName = "node-schedule";
@@ -52303,6 +53194,15 @@ let
sha512 = "1cBMgRxdMWE8KeWCqk2RIOrvUb0XCwYfEsY5/y2NlXyq4Y/RumnOZvTj4Nbr77+Vb2C+kyBoRTdkNOS8L3d/aQ==";
};
};
+ "node-storage-shim-2.0.1" = {
+ name = "node-storage-shim";
+ packageName = "node-storage-shim";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-storage-shim/-/node-storage-shim-2.0.1.tgz";
+ sha512 = "ce8enbToMe8iUHDTMCg4rdP1K0syoJrZRO0Dl9uMLPCwlc5M1HKaapV3Pqlv6/3LQNuDiYXBm4rPlj78MeUSSA==";
+ };
+ };
"node-swt-0.1.1" = {
name = "node-swt";
packageName = "node-swt";
@@ -52411,6 +53311,15 @@ let
sha512 = "5s0JxqhDx9/rksG2BTMVN1enjWSvPidpoSgViZU4ZXULyTe+7jxcCRLB6f42Z0l1xYJpleCBtSyY6Lwg3uu5CQ==";
};
};
+ "non-layered-tidy-tree-layout-2.0.2" = {
+ name = "non-layered-tidy-tree-layout";
+ packageName = "non-layered-tidy-tree-layout";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz";
+ sha512 = "gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==";
+ };
+ };
"non-private-ip-1.4.4" = {
name = "non-private-ip";
packageName = "non-private-ip";
@@ -52888,13 +53797,13 @@ let
sha512 = "263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==";
};
};
- "npm-packlist-7.0.1" = {
+ "npm-packlist-7.0.2" = {
name = "npm-packlist";
packageName = "npm-packlist";
- version = "7.0.1";
+ version = "7.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.1.tgz";
- sha512 = "XddbYutimy7hdmP7S1tHMjFwghn64lvgdnhYG0KLGFBWjEvMt1/jg95OR3vPNNCjkakHS+k4a//3XOO8JOGI2A==";
+ url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.2.tgz";
+ sha512 = "d2+7RMySjVXssww23rV5NuIq1NzGvM04OlI5kwnvtYKfFTAPVs6Zxmxns2HRtJEA1oNj7D/BbFXeVAOLmW3N3Q==";
};
};
"npm-pick-manifest-6.1.1" = {
@@ -53239,13 +54148,13 @@ let
sha512 = "90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==";
};
};
- "nx-15.0.1" = {
+ "nx-15.0.6" = {
name = "nx";
packageName = "nx";
- version = "15.0.1";
+ version = "15.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/nx/-/nx-15.0.1.tgz";
- sha512 = "4pGy6f0SMQpg5kr38I95OkzufgkeMf4n/ui9o2Xk65mFdqXcCzRgRXbKdDhABhdZmhbzV33M+BUPJmMrTw3XDg==";
+ url = "https://registry.npmjs.org/nx/-/nx-15.0.6.tgz";
+ sha512 = "SIHydl0LMM0JvGPp2aPuGGPqx+78lc5AMkZc5mHJdsxRp8+L+YlTNqEI4EuevcdzGQTQrHoW+oksqAZPdyy/tA==";
};
};
"nyc-15.1.0" = {
@@ -55355,15 +56264,6 @@ let
sha512 = "8EKVBxCRSvLnsX1p2LlSFSH3c2/wuhY9/BXXWu8boL78FbVKqn2L5SpURt1x5iw6Gq8PTqJ7MdPoe5nCtX3I+g==";
};
};
- "paid-services-4.0.0" = {
- name = "paid-services";
- packageName = "paid-services";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/paid-services/-/paid-services-4.0.0.tgz";
- sha512 = "wKufqd+pds1xTm74OHeg1o55RStvbTlB37qdNHv5FpMCd+CwzENGWY1pTt1SZ73p/1qu/fBqNxMlkI9XLqw01Q==";
- };
- };
"paid-services-4.0.1" = {
name = "paid-services";
packageName = "paid-services";
@@ -55373,6 +56273,15 @@ let
sha512 = "6nKjcza/tlgZXH6iRzIfypsduOHHk5DQ/zvPc8VqB/5AubnBdEJrdmpr6ZsHWiGVZuHHbgng026+TV3n7ilSVw==";
};
};
+ "paid-services-4.0.4" = {
+ name = "paid-services";
+ packageName = "paid-services";
+ version = "4.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/paid-services/-/paid-services-4.0.4.tgz";
+ sha512 = "JrU1YNxbi+O6hjEdDs9VfdK3yjom2az+Vxu6s2Z1eYpc9sokKYciHKKwb3Nsy6FXlUWkre8kKQ9QdQetMSe1Zg==";
+ };
+ };
"pako-0.2.9" = {
name = "pako";
packageName = "pako";
@@ -56624,6 +57533,15 @@ let
sha512 = "CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==";
};
};
+ "photoswipe-4.1.3" = {
+ name = "photoswipe";
+ packageName = "photoswipe";
+ version = "4.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/photoswipe/-/photoswipe-4.1.3.tgz";
+ sha512 = "89Z43IRUyw7ycTolo+AaiDn3W1EEIfox54hERmm9bI12IB9cvRfHSHez3XhAyU8XW2EAFrC+2sKMhh7SJwn0bA==";
+ };
+ };
"physical-cpu-count-2.0.0" = {
name = "physical-cpu-count";
packageName = "physical-cpu-count";
@@ -56696,13 +57614,13 @@ let
sha512 = "cv3xAQos+pugVX+BfXpHsbyz/dLzX+lr44zNMsYiGxUw+kV5sgQCIcLd1z+0vq+KyC7dJ+/ts2PsfgWfSC3WXA==";
};
};
- "pidusage-3.0.1" = {
+ "pidusage-3.0.2" = {
name = "pidusage";
packageName = "pidusage";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/pidusage/-/pidusage-3.0.1.tgz";
- sha512 = "/UlE6DQIe6yuDvm3v6756U0ErEsj60FLQTRZ4qPQF9b5yZKhf4c0llzD0tZpyE03nn8HQoLniFgKsL0ABB3nCg==";
+ url = "https://registry.npmjs.org/pidusage/-/pidusage-3.0.2.tgz";
+ sha512 = "g0VU+y08pKw5M8EZ2rIGiEBaB8wrQMjYGFfW2QVIfyT8V+fq8YFLkvlz4bz5ljvFDJYNFCWT3PWqcRr2FKO81w==";
};
};
"piece-length-2.0.1" = {
@@ -56768,15 +57686,6 @@ let
sha512 = "0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==";
};
};
- "pino-8.4.2" = {
- name = "pino";
- packageName = "pino";
- version = "8.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pino/-/pino-8.4.2.tgz";
- sha512 = "PlXDeGhJZfAuVay+wtlS02s5j8uisQveZExYdAm9MwwxUQSz9R7Q78XtjM2tTa4sa5KJmygimZjZxXXuHgV6ew==";
- };
- };
"pino-8.6.1" = {
name = "pino";
packageName = "pino";
@@ -56786,6 +57695,15 @@ let
sha512 = "fi+V2K98eMZjQ/uEHHSiMALNrz7HaFdKNYuyA3ZUrbH0f1e8sPFDmeRGzg7ZH2q4QDxGnJPOswmqlEaTAZeDPA==";
};
};
+ "pino-8.7.0" = {
+ name = "pino";
+ packageName = "pino";
+ version = "8.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pino/-/pino-8.7.0.tgz";
+ sha512 = "l9sA5uPxmZzwydhMWUcm1gI0YxNnYl8MfSr2h8cwLvOAzQLBLewzF247h/vqHe3/tt6fgtXeG9wdjjoetdI/vA==";
+ };
+ };
"pino-abstract-transport-1.0.0" = {
name = "pino-abstract-transport";
packageName = "pino-abstract-transport";
@@ -56795,13 +57713,13 @@ let
sha512 = "c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==";
};
};
- "pino-pretty-9.0.1" = {
+ "pino-pretty-9.1.1" = {
name = "pino-pretty";
packageName = "pino-pretty";
- version = "9.0.1";
+ version = "9.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/pino-pretty/-/pino-pretty-9.0.1.tgz";
- sha512 = "5gFIIeDu1niFlL0pBACerwDR8Ts+i4gO0W9S0jRoHVvaQluvGOW4cUaDmC+/dSTCoG4VqfOQhP0dwuDLd0qJ6A==";
+ url = "https://registry.npmjs.org/pino-pretty/-/pino-pretty-9.1.1.tgz";
+ sha512 = "iJrnjgR4FWQIXZkUF48oNgoRI9BpyMhaEmihonHeCnZ6F50ZHAS4YGfGBT/ZVNsPmd+hzkIPGzjKdY08+/yAXw==";
};
};
"pino-std-serializers-6.0.0" = {
@@ -56831,6 +57749,15 @@ let
sha512 = "uYpoo8eO3GG37tTsPmYoM3rHOxjXd57zMr/4RwiPYyb3RyZj02rfO14D8ERFbrpuYBJCzDwPYmT23a7N3N3Cow==";
};
};
+ "pirates-3.0.2" = {
+ name = "pirates";
+ packageName = "pirates";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pirates/-/pirates-3.0.2.tgz";
+ sha512 = "c5CgUJq6H2k6MJz72Ak1F5sN9n9wlSlJyEnwvpm9/y3WB4E3pHBDT2c6PEiS1vyJvq2bUxUAIu0EGf8Cx4Ic7Q==";
+ };
+ };
"pirates-4.0.5" = {
name = "pirates";
packageName = "pirates";
@@ -57245,6 +58172,15 @@ let
sha512 = "2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==";
};
};
+ "pofile-1.1.3" = {
+ name = "pofile";
+ packageName = "pofile";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pofile/-/pofile-1.1.3.tgz";
+ sha512 = "sk96pUvpNwDV6PLrnhr68Uu1S5NohsxqLKz0GuracgrDo40BdF/r1RhHnjakUk6Q4Z0OKIybOQ7GevLKGN1iYw==";
+ };
+ };
"polished-4.2.2" = {
name = "polished";
packageName = "polished";
@@ -57362,6 +58298,15 @@ let
sha512 = "Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==";
};
};
+ "postcss-attribute-case-insensitive-5.0.2" = {
+ name = "postcss-attribute-case-insensitive";
+ packageName = "postcss-attribute-case-insensitive";
+ version = "5.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz";
+ sha512 = "XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==";
+ };
+ };
"postcss-calc-7.0.5" = {
name = "postcss-calc";
packageName = "postcss-calc";
@@ -57380,6 +58325,42 @@ let
sha512 = "SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==";
};
};
+ "postcss-clamp-4.1.0" = {
+ name = "postcss-clamp";
+ packageName = "postcss-clamp";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz";
+ sha512 = "ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==";
+ };
+ };
+ "postcss-color-functional-notation-4.2.4" = {
+ name = "postcss-color-functional-notation";
+ packageName = "postcss-color-functional-notation";
+ version = "4.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz";
+ sha512 = "2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==";
+ };
+ };
+ "postcss-color-hex-alpha-8.0.4" = {
+ name = "postcss-color-hex-alpha";
+ packageName = "postcss-color-hex-alpha";
+ version = "8.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz";
+ sha512 = "nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==";
+ };
+ };
+ "postcss-color-rebeccapurple-7.1.1" = {
+ name = "postcss-color-rebeccapurple";
+ packageName = "postcss-color-rebeccapurple";
+ version = "7.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz";
+ sha512 = "pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==";
+ };
+ };
"postcss-colormin-4.0.3" = {
name = "postcss-colormin";
packageName = "postcss-colormin";
@@ -57407,13 +58388,49 @@ let
sha512 = "Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==";
};
};
- "postcss-convert-values-5.1.2" = {
+ "postcss-convert-values-5.1.3" = {
name = "postcss-convert-values";
packageName = "postcss-convert-values";
- version = "5.1.2";
+ version = "5.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz";
- sha512 = "c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==";
+ url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz";
+ sha512 = "82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==";
+ };
+ };
+ "postcss-custom-media-8.0.2" = {
+ name = "postcss-custom-media";
+ packageName = "postcss-custom-media";
+ version = "8.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz";
+ sha512 = "7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==";
+ };
+ };
+ "postcss-custom-properties-12.1.10" = {
+ name = "postcss-custom-properties";
+ packageName = "postcss-custom-properties";
+ version = "12.1.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.10.tgz";
+ sha512 = "U3BHdgrYhCrwTVcByFHs9EOBoqcKq4Lf3kXwbTi4hhq0qWhl/pDWq2THbv/ICX/Fl9KqeHBb8OVrTf2OaYF07A==";
+ };
+ };
+ "postcss-custom-selectors-6.0.3" = {
+ name = "postcss-custom-selectors";
+ packageName = "postcss-custom-selectors";
+ version = "6.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz";
+ sha512 = "fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==";
+ };
+ };
+ "postcss-dir-pseudo-class-6.0.5" = {
+ name = "postcss-dir-pseudo-class";
+ packageName = "postcss-dir-pseudo-class";
+ version = "6.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz";
+ sha512 = "eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==";
};
};
"postcss-discard-comments-4.0.2" = {
@@ -57488,6 +58505,24 @@ let
sha512 = "21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==";
};
};
+ "postcss-double-position-gradients-3.1.2" = {
+ name = "postcss-double-position-gradients";
+ packageName = "postcss-double-position-gradients";
+ version = "3.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz";
+ sha512 = "GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==";
+ };
+ };
+ "postcss-env-function-4.0.6" = {
+ name = "postcss-env-function";
+ packageName = "postcss-env-function";
+ version = "4.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz";
+ sha512 = "kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==";
+ };
+ };
"postcss-flexbugs-fixes-4.2.1" = {
name = "postcss-flexbugs-fixes";
packageName = "postcss-flexbugs-fixes";
@@ -57497,6 +58532,42 @@ let
sha512 = "9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==";
};
};
+ "postcss-focus-visible-6.0.4" = {
+ name = "postcss-focus-visible";
+ packageName = "postcss-focus-visible";
+ version = "6.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz";
+ sha512 = "QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==";
+ };
+ };
+ "postcss-focus-within-5.0.4" = {
+ name = "postcss-focus-within";
+ packageName = "postcss-focus-within";
+ version = "5.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz";
+ sha512 = "vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==";
+ };
+ };
+ "postcss-font-variant-5.0.0" = {
+ name = "postcss-font-variant";
+ packageName = "postcss-font-variant";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz";
+ sha512 = "1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==";
+ };
+ };
+ "postcss-gap-properties-3.0.5" = {
+ name = "postcss-gap-properties";
+ packageName = "postcss-gap-properties";
+ version = "3.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz";
+ sha512 = "IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==";
+ };
+ };
"postcss-html-0.36.0" = {
name = "postcss-html";
packageName = "postcss-html";
@@ -57506,6 +58577,15 @@ let
sha512 = "HeiOxGcuwID0AFsNAL0ox3mW6MHH5cstWN1Z3Y+n6H+g12ih7LHdYxWwEA/QmrebctLjo79xz9ouK3MroHwOJw==";
};
};
+ "postcss-image-set-function-4.0.7" = {
+ name = "postcss-image-set-function";
+ packageName = "postcss-image-set-function";
+ version = "4.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz";
+ sha512 = "9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==";
+ };
+ };
"postcss-import-14.1.0" = {
name = "postcss-import";
packageName = "postcss-import";
@@ -57515,6 +58595,24 @@ let
sha512 = "flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==";
};
};
+ "postcss-import-15.0.0" = {
+ name = "postcss-import";
+ packageName = "postcss-import";
+ version = "15.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-import/-/postcss-import-15.0.0.tgz";
+ sha512 = "Y20shPQ07RitgBGv2zvkEAu9bqvrD77C9axhj/aA1BQj4czape2MdClCExvB27EwYEJdGgKZBpKanb0t1rK2Kg==";
+ };
+ };
+ "postcss-initial-4.0.1" = {
+ name = "postcss-initial";
+ packageName = "postcss-initial";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz";
+ sha512 = "0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==";
+ };
+ };
"postcss-js-4.0.0" = {
name = "postcss-js";
packageName = "postcss-js";
@@ -57524,6 +58622,15 @@ let
sha512 = "77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==";
};
};
+ "postcss-lab-function-4.2.1" = {
+ name = "postcss-lab-function";
+ packageName = "postcss-lab-function";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz";
+ sha512 = "xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==";
+ };
+ };
"postcss-less-3.1.4" = {
name = "postcss-less";
packageName = "postcss-less";
@@ -57569,6 +58676,33 @@ let
sha512 = "cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==";
};
};
+ "postcss-loader-7.0.1" = {
+ name = "postcss-loader";
+ packageName = "postcss-loader";
+ version = "7.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.0.1.tgz";
+ sha512 = "VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==";
+ };
+ };
+ "postcss-logical-5.0.4" = {
+ name = "postcss-logical";
+ packageName = "postcss-logical";
+ version = "5.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz";
+ sha512 = "RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==";
+ };
+ };
+ "postcss-media-minmax-5.0.0" = {
+ name = "postcss-media-minmax";
+ packageName = "postcss-media-minmax";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz";
+ sha512 = "yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==";
+ };
+ };
"postcss-media-query-parser-0.2.3" = {
name = "postcss-media-query-parser";
packageName = "postcss-media-query-parser";
@@ -57587,13 +58721,13 @@ let
sha512 = "alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==";
};
};
- "postcss-merge-longhand-5.1.6" = {
+ "postcss-merge-longhand-5.1.7" = {
name = "postcss-merge-longhand";
packageName = "postcss-merge-longhand";
- version = "5.1.6";
+ version = "5.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.6.tgz";
- sha512 = "6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==";
+ url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz";
+ sha512 = "YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==";
};
};
"postcss-merge-rules-4.0.3" = {
@@ -57605,13 +58739,13 @@ let
sha512 = "U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==";
};
};
- "postcss-merge-rules-5.1.2" = {
+ "postcss-merge-rules-5.1.3" = {
name = "postcss-merge-rules";
packageName = "postcss-merge-rules";
- version = "5.1.2";
+ version = "5.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz";
- sha512 = "zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==";
+ url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz";
+ sha512 = "LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==";
};
};
"postcss-minify-font-values-4.0.2" = {
@@ -57659,13 +58793,13 @@ let
sha512 = "G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==";
};
};
- "postcss-minify-params-5.1.3" = {
+ "postcss-minify-params-5.1.4" = {
name = "postcss-minify-params";
packageName = "postcss-minify-params";
- version = "5.1.3";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.3.tgz";
- sha512 = "bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==";
+ url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz";
+ sha512 = "+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==";
};
};
"postcss-minify-selectors-4.0.2" = {
@@ -57704,6 +58838,15 @@ let
sha512 = "LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==";
};
};
+ "postcss-modules-extract-imports-3.0.0" = {
+ name = "postcss-modules-extract-imports";
+ packageName = "postcss-modules-extract-imports";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz";
+ sha512 = "bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==";
+ };
+ };
"postcss-modules-local-by-default-1.2.0" = {
name = "postcss-modules-local-by-default";
packageName = "postcss-modules-local-by-default";
@@ -57731,6 +58874,15 @@ let
sha512 = "e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==";
};
};
+ "postcss-modules-local-by-default-4.0.0" = {
+ name = "postcss-modules-local-by-default";
+ packageName = "postcss-modules-local-by-default";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz";
+ sha512 = "sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==";
+ };
+ };
"postcss-modules-scope-1.1.0" = {
name = "postcss-modules-scope";
packageName = "postcss-modules-scope";
@@ -57749,6 +58901,15 @@ let
sha512 = "YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==";
};
};
+ "postcss-modules-scope-3.0.0" = {
+ name = "postcss-modules-scope";
+ packageName = "postcss-modules-scope";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz";
+ sha512 = "hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==";
+ };
+ };
"postcss-modules-values-1.3.0" = {
name = "postcss-modules-values";
packageName = "postcss-modules-values";
@@ -57776,6 +58937,15 @@ let
sha512 = "1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==";
};
};
+ "postcss-modules-values-4.0.0" = {
+ name = "postcss-modules-values";
+ packageName = "postcss-modules-values";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz";
+ sha512 = "RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==";
+ };
+ };
"postcss-nested-6.0.0" = {
name = "postcss-nested";
packageName = "postcss-nested";
@@ -57785,6 +58955,15 @@ let
sha512 = "0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==";
};
};
+ "postcss-nesting-10.2.0" = {
+ name = "postcss-nesting";
+ packageName = "postcss-nesting";
+ version = "10.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz";
+ sha512 = "EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==";
+ };
+ };
"postcss-normalize-charset-4.0.1" = {
name = "postcss-normalize-charset";
packageName = "postcss-normalize-charset";
@@ -57902,13 +59081,13 @@ let
sha512 = "od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==";
};
};
- "postcss-normalize-unicode-5.1.0" = {
+ "postcss-normalize-unicode-5.1.1" = {
name = "postcss-normalize-unicode";
packageName = "postcss-normalize-unicode";
- version = "5.1.0";
+ version = "5.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz";
- sha512 = "J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==";
+ url = "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz";
+ sha512 = "qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==";
};
};
"postcss-normalize-url-4.0.1" = {
@@ -57947,6 +59126,15 @@ let
sha512 = "83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==";
};
};
+ "postcss-opacity-percentage-1.1.2" = {
+ name = "postcss-opacity-percentage";
+ packageName = "postcss-opacity-percentage";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.2.tgz";
+ sha512 = "lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==";
+ };
+ };
"postcss-ordered-values-4.1.2" = {
name = "postcss-ordered-values";
packageName = "postcss-ordered-values";
@@ -57965,6 +59153,51 @@ let
sha512 = "9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==";
};
};
+ "postcss-overflow-shorthand-3.0.4" = {
+ name = "postcss-overflow-shorthand";
+ packageName = "postcss-overflow-shorthand";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz";
+ sha512 = "otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==";
+ };
+ };
+ "postcss-page-break-3.0.4" = {
+ name = "postcss-page-break";
+ packageName = "postcss-page-break";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz";
+ sha512 = "1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==";
+ };
+ };
+ "postcss-place-7.0.5" = {
+ name = "postcss-place";
+ packageName = "postcss-place";
+ version = "7.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz";
+ sha512 = "wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==";
+ };
+ };
+ "postcss-preset-env-7.8.2" = {
+ name = "postcss-preset-env";
+ packageName = "postcss-preset-env";
+ version = "7.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.2.tgz";
+ sha512 = "rSMUEaOCnovKnwc5LvBDHUDzpGP+nrUeWZGWt9M72fBvckCi45JmnJigUr4QG4zZeOHmOCNCZnd2LKDvP++ZuQ==";
+ };
+ };
+ "postcss-pseudo-class-any-link-7.1.6" = {
+ name = "postcss-pseudo-class-any-link";
+ packageName = "postcss-pseudo-class-any-link";
+ version = "7.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz";
+ sha512 = "9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==";
+ };
+ };
"postcss-reduce-initial-4.0.3" = {
name = "postcss-reduce-initial";
packageName = "postcss-reduce-initial";
@@ -57974,13 +59207,13 @@ let
sha512 = "gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==";
};
};
- "postcss-reduce-initial-5.1.0" = {
+ "postcss-reduce-initial-5.1.1" = {
name = "postcss-reduce-initial";
packageName = "postcss-reduce-initial";
- version = "5.1.0";
+ version = "5.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz";
- sha512 = "5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==";
+ url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz";
+ sha512 = "//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==";
};
};
"postcss-reduce-transforms-4.0.2" = {
@@ -58001,6 +59234,15 @@ let
sha512 = "2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==";
};
};
+ "postcss-replace-overflow-wrap-4.0.0" = {
+ name = "postcss-replace-overflow-wrap";
+ packageName = "postcss-replace-overflow-wrap";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz";
+ sha512 = "KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==";
+ };
+ };
"postcss-reporter-7.0.5" = {
name = "postcss-reporter";
packageName = "postcss-reporter";
@@ -58055,6 +59297,15 @@ let
sha512 = "jQmGnj0hSGLd9RscFw9LyuSVAa5Bl1/KBPqG1NQw9w8ND55nY4ZEsdlVuYJvLPpV+y0nwTV5v/4rHPzZRihQbA==";
};
};
+ "postcss-selector-not-6.0.1" = {
+ name = "postcss-selector-not";
+ packageName = "postcss-selector-not";
+ version = "6.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz";
+ sha512 = "1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==";
+ };
+ };
"postcss-selector-parser-3.1.2" = {
name = "postcss-selector-parser";
packageName = "postcss-selector-parser";
@@ -58127,6 +59378,15 @@ let
sha512 = "5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==";
};
};
+ "postcss-url-10.1.3" = {
+ name = "postcss-url";
+ packageName = "postcss-url";
+ version = "10.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss-url/-/postcss-url-10.1.3.tgz";
+ sha512 = "FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==";
+ };
+ };
"postcss-value-parser-3.3.1" = {
name = "postcss-value-parser";
packageName = "postcss-value-parser";
@@ -58892,13 +60152,13 @@ let
sha512 = "99PZ5+RU4gqiTfK5ZDMDkZtn6eL4WlKfFyVJV7lFQvH3iGmQ85DqMTOdxorERO26LHkevR2qsxnHp0x/2UDJPA==";
};
};
- "probing-2.0.6" = {
+ "probing-3.0.0" = {
name = "probing";
packageName = "probing";
- version = "2.0.6";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/probing/-/probing-2.0.6.tgz";
- sha512 = "I6FuG6zTeannw1z4jOIFndmotIsy/4q+jbZU5YOYNHTYYV1n4fxN6CZEaheu67KL0//z9bG+Q4D+F+pyy2svGg==";
+ url = "https://registry.npmjs.org/probing/-/probing-3.0.0.tgz";
+ sha512 = "JqIDSuuqXFQEowER46CWbyeYrsUgl3OjrRcKjoJZyIesrDhjqrCB483Pj1jRZjdpE2j0/e1t+W22xKDyix1BYw==";
};
};
"proc-log-1.0.0" = {
@@ -59090,13 +60350,13 @@ let
sha512 = "nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==";
};
};
- "promise-8.2.0" = {
+ "promise-8.3.0" = {
name = "promise";
packageName = "promise";
- version = "8.2.0";
+ version = "8.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/promise/-/promise-8.2.0.tgz";
- sha512 = "+CMAlLHqwRYwBMXKCP+o8ns7DN+xHDUiI+0nArsiJ9y+kJVPLFxEaSw6Ha9s9H0tftxg2Yzl25wqj9G7m5wLZg==";
+ url = "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz";
+ sha512 = "rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==";
};
};
"promise-all-reject-late-1.0.1" = {
@@ -59549,15 +60809,6 @@ let
sha512 = "0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==";
};
};
- "psbt-2.3.0" = {
- name = "psbt";
- packageName = "psbt";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/psbt/-/psbt-2.3.0.tgz";
- sha512 = "SSolDk4UhgEHyQRbpM5sZyNbQfjnYtm3w0LcFr03UmNXIYUGKqTZFCJJmbELIlwXywQDAn5W5bW1x75SC/9aPQ==";
- };
- };
"psbt-2.7.1" = {
name = "psbt";
packageName = "psbt";
@@ -59603,6 +60854,15 @@ let
sha512 = "zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==";
};
};
+ "pubsub-js-1.9.4" = {
+ name = "pubsub-js";
+ packageName = "pubsub-js";
+ version = "1.9.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pubsub-js/-/pubsub-js-1.9.4.tgz";
+ sha512 = "hJYpaDvPH4w8ZX/0Fdf9ma1AwRgU353GfbaVfPjfJQf1KxZ2iHaHl3fAUw1qlJIR5dr4F3RzjGaWohYUEyoh7A==";
+ };
+ };
"pug-2.0.4" = {
name = "pug";
packageName = "pug";
@@ -60575,13 +61835,13 @@ let
sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==";
};
};
- "pyright-1.1.276" = {
+ "pyright-1.1.278" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.276";
+ version = "1.1.278";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.276.tgz";
- sha512 = "qG98S7X16hoymOlngwleX4bg6CzlE6sxclrqkif8Kqfm0bsaC/jiBxs2lWN+QJY9JL8hpK6j5MchFh4qSaZCEw==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.278.tgz";
+ sha512 = "at3j7c1fFzB6Jl4+bpr9QPRC/+1gH2gAR/M6GIRS312CHE2JMt8FZRflTbuxEB8IfQAtR+l3YoRMoS1vqF28jw==";
};
};
"q-0.9.7" = {
@@ -61241,13 +62501,13 @@ let
sha512 = "PPYLwZ63lXi6Tv2EZ8w3M4FzC0rVqvxivaOVS8pXSp5FMIHFnvi4MWHL3UdFLhwSy50aNtJsgjY0mBC6oFL26Q==";
};
};
- "rate-limiter-flexible-2.4.0" = {
+ "rate-limiter-flexible-2.4.1" = {
name = "rate-limiter-flexible";
packageName = "rate-limiter-flexible";
- version = "2.4.0";
+ version = "2.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/rate-limiter-flexible/-/rate-limiter-flexible-2.4.0.tgz";
- sha512 = "NDRxvXvm+KAjD8wUacJNPxomuu0CpD58DBTDIa8+JaPkMTDbI+DzGdg6vlMRqYySp8A8WsmXY7Qt8h9kYxN5qQ==";
+ url = "https://registry.npmjs.org/rate-limiter-flexible/-/rate-limiter-flexible-2.4.1.tgz";
+ sha512 = "dgH4T44TzKVO9CLArNto62hJOwlWJMLUjVVr/ii0uUzZXEXthDNr7/yefW5z/1vvHAfycc1tnuiYyNJ8CTRB3g==";
};
};
"raven-js-3.27.2" = {
@@ -61358,13 +62618,13 @@ let
sha512 = "bwfUSB37TWkHfP+PPjb/x8BUjChFmmBK44JMfVnU7paisWqZl/o5k7ttCH+EQLnrbn2Aq8Fo1LAsyUiz+WF4CQ==";
};
};
- "rc-config-loader-4.1.0" = {
+ "rc-config-loader-4.1.1" = {
name = "rc-config-loader";
packageName = "rc-config-loader";
- version = "4.1.0";
+ version = "4.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.0.tgz";
- sha512 = "aW+kX4qy0CiM9L4fG4Us3oEOpIrOrXzWykAn+xldD07Y9PXWjTH744oHbv0Kc9ZwWaylw3jMjxaf14RgStrNrA==";
+ url = "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.1.tgz";
+ sha512 = "S10o85x/szboh7FOxUyU+KuED+gr9V7SEnUBOzSn+vd1K8J2MtkP1RCPWg8Sw5kkuZKr7976bFzacCM6QtAApQ==";
};
};
"rc4-0.1.5" = {
@@ -61646,13 +62906,13 @@ let
sha512 = "Mxi6lwOmjwIjC1X4gABXMJcKHsOo0xWl3E3ugOgufB8GJU+MqrtY35aBuvCYv/razQ1Vbp7h1gWJjGjoNN5pmA==";
};
};
- "react-window-1.8.7" = {
+ "react-window-1.8.8" = {
name = "react-window";
packageName = "react-window";
- version = "1.8.7";
+ version = "1.8.8";
src = fetchurl {
- url = "https://registry.npmjs.org/react-window/-/react-window-1.8.7.tgz";
- sha512 = "JHEZbPXBpKMmoNO1bNhoXOOLg/ujhL/BU4IqVU9r8eQPcy5KQnGHIHDRkJ0ns9IM5+Aq5LNwt3j8t3tIrePQzA==";
+ url = "https://registry.npmjs.org/react-window/-/react-window-1.8.8.tgz";
+ sha512 = "D4IiBeRtGXziZ1n0XklnFGu7h9gU684zepqyKzgPNzrsrk7xOCxni+TCckjg2Nr/DiaEEGVVmnhYSlT2rB47dQ==";
};
};
"react-window-infinite-loader-1.0.8" = {
@@ -62159,6 +63419,15 @@ let
sha512 = "/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==";
};
};
+ "rechoir-0.8.0" = {
+ name = "rechoir";
+ packageName = "rechoir";
+ version = "0.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz";
+ sha512 = "/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==";
+ };
+ };
"record-cache-1.2.0" = {
name = "record-cache";
packageName = "record-cache";
@@ -62186,6 +63455,15 @@ let
sha512 = "nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==";
};
};
+ "recursive-readdir-2.2.3" = {
+ name = "recursive-readdir";
+ packageName = "recursive-readdir";
+ version = "2.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz";
+ sha512 = "8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==";
+ };
+ };
"recursive-readdir-sync-1.0.6" = {
name = "recursive-readdir-sync";
packageName = "recursive-readdir-sync";
@@ -62249,6 +63527,15 @@ let
sha512 = "FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==";
};
};
+ "redis-2.8.0" = {
+ name = "redis";
+ packageName = "redis";
+ version = "2.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/redis/-/redis-2.8.0.tgz";
+ sha512 = "M1OkonEQwtRmZv4tEWF2VgpG0JWJ8Fv1PhlgT5+B+uNq2cA3Rt1Yt/ryoR+vQNOQcIEgdCdfH0jr3bDpihAw1A==";
+ };
+ };
"redis-3.1.2" = {
name = "redis";
packageName = "redis";
@@ -62267,13 +63554,13 @@ let
sha512 = "bCR0gKVhIXFg8zCQjXEANzgI01DDixtPZgIUZHBCmwqixnu+MK3Tb2yqGjh+HCLASQVVgApiwhNkv+FoedZOGQ==";
};
};
- "redis-4.3.1" = {
+ "redis-4.4.0" = {
name = "redis";
packageName = "redis";
- version = "4.3.1";
+ version = "4.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/redis/-/redis-4.3.1.tgz";
- sha512 = "cM7yFU5CA6zyCF7N/+SSTcSJQSRMEKN0k0Whhu6J7n9mmXRoXugfWDBo5iOzGwABmsWKSwGPTU5J4Bxbl+0mrA==";
+ url = "https://registry.npmjs.org/redis/-/redis-4.4.0.tgz";
+ sha512 = "tQyFG6O9iewLxxHYRyirJNklhe2QI7M/0o8q0jk7D9Z/Cxh/7oZrQyHKyjWz0TkkCls8ool/xvhL9K8zRnkaYQ==";
};
};
"redis-commands-1.7.0" = {
@@ -62294,6 +63581,15 @@ let
sha512 = "1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==";
};
};
+ "redis-parser-2.6.0" = {
+ name = "redis-parser";
+ packageName = "redis-parser";
+ version = "2.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz";
+ sha512 = "9Hdw19gwXFBJdN8ENUoNVJFRyMDFrE/ZBClPicKYDPwNPJ4ST1TedAHYNSiGKElwh2vrmRGMoJYbVdJd+WQXIw==";
+ };
+ };
"redis-parser-3.0.0" = {
name = "redis-parser";
packageName = "redis-parser";
@@ -62366,6 +63662,15 @@ let
sha512 = "h2OSdAUycdqiwFBp2wB3XEFheWA/U+n/JYnhEi3584JqnCCDXIA3qDIhHH3klIHMNZwrJW+VagpxPGeSf6777Q==";
};
};
+ "referrer-policy-1.2.0" = {
+ name = "referrer-policy";
+ packageName = "referrer-policy";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/referrer-policy/-/referrer-policy-1.2.0.tgz";
+ sha512 = "LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA==";
+ };
+ };
"reflect-metadata-0.1.13" = {
name = "reflect-metadata";
packageName = "reflect-metadata";
@@ -62465,6 +63770,15 @@ let
sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
};
};
+ "regex-parser-2.2.11" = {
+ name = "regex-parser";
+ packageName = "regex-parser";
+ version = "2.2.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz";
+ sha512 = "jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==";
+ };
+ };
"regexp-to-ast-0.3.5" = {
name = "regexp-to-ast";
packageName = "regexp-to-ast";
@@ -63968,6 +65282,15 @@ let
sha512 = "ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==";
};
};
+ "resolve-url-loader-5.0.0" = {
+ name = "resolve-url-loader";
+ packageName = "resolve-url-loader";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz";
+ sha512 = "uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==";
+ };
+ };
"resp-modifier-6.0.2" = {
name = "resp-modifier";
packageName = "resp-modifier";
@@ -63977,6 +65300,15 @@ let
sha512 = "U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==";
};
};
+ "response-time-2.3.2" = {
+ name = "response-time";
+ packageName = "response-time";
+ version = "2.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/response-time/-/response-time-2.3.2.tgz";
+ sha512 = "MUIDaDQf+CVqflfTdQ5yam+aYCkXj1PY8fjlPDQ6ppxJlmgZb864pHtA750mayywNg8tx4rS7qH9JXd/OF+3gw==";
+ };
+ };
"responselike-1.0.2" = {
name = "responselike";
packageName = "responselike";
@@ -64994,6 +66326,87 @@ let
sha512 = "Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A==";
};
};
+ "sass-embedded-1.55.0" = {
+ name = "sass-embedded";
+ packageName = "sass-embedded";
+ version = "1.55.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.55.0.tgz";
+ sha512 = "6AkKEyRjxz37iNwOdTOW94I33j5mxcih9Z604q1w0M1dOTKaZgtyNI67O0zb4akwZ9dVZ2VSJBXqY8/1TZRBIw==";
+ };
+ };
+ "sass-embedded-darwin-arm64-1.55.0" = {
+ name = "sass-embedded-darwin-arm64";
+ packageName = "sass-embedded-darwin-arm64";
+ version = "1.55.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.55.0.tgz";
+ sha512 = "cQ43gYDFo4xWSqG01ZmOhTyTgk/RYK7s1a4R+7VSQPhYTsd4VofAmTNw0MkLR3RzR53ziGgawA6uT/WHTm+yjg==";
+ };
+ };
+ "sass-embedded-darwin-x64-1.55.0" = {
+ name = "sass-embedded-darwin-x64";
+ packageName = "sass-embedded-darwin-x64";
+ version = "1.55.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.55.0.tgz";
+ sha512 = "ra8z++EBey01pkiwCwjWyMbf6G5xm2Uj0dUJzzsS1MI6Fw6XaesrWmYico5pnawm3rOYtKlMxkd2Y6b1Jwxy8A==";
+ };
+ };
+ "sass-embedded-linux-arm-1.55.0" = {
+ name = "sass-embedded-linux-arm";
+ packageName = "sass-embedded-linux-arm";
+ version = "1.55.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.55.0.tgz";
+ sha512 = "UIW7CaRLjHMWm64jH23n5eji/RAv8XIJ2qpFh0Ds8EJeDZmRA+qyIFHcQ805fZ22u6o0mkxq0kE4+j1XmmbBeg==";
+ };
+ };
+ "sass-embedded-linux-arm64-1.55.0" = {
+ name = "sass-embedded-linux-arm64";
+ packageName = "sass-embedded-linux-arm64";
+ version = "1.55.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.55.0.tgz";
+ sha512 = "P4zL4PnujdiSkek/g0RJjyNZcYEqSm6WFr0sSIrxe3byhGg56mWr4WJdxUNwFZ6sxyy2s0PFSjSKGmBtgEfIpw==";
+ };
+ };
+ "sass-embedded-linux-ia32-1.55.0" = {
+ name = "sass-embedded-linux-ia32";
+ packageName = "sass-embedded-linux-ia32";
+ version = "1.55.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sass-embedded-linux-ia32/-/sass-embedded-linux-ia32-1.55.0.tgz";
+ sha512 = "9XJyAl4w5KBjR4LAXckfQKqPv9UYPmOv2HFRBwhHD1k4Dc8gZbfTCzK5wl49z5Z4z1GPvqV9ucIZceXzgJ5e6Q==";
+ };
+ };
+ "sass-embedded-linux-x64-1.55.0" = {
+ name = "sass-embedded-linux-x64";
+ packageName = "sass-embedded-linux-x64";
+ version = "1.55.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.55.0.tgz";
+ sha512 = "vd4/4/L7gZcVyxq03/MY/+rcpGgOI0ihOUpwRJLj+9CmUxvhxCSTF51/QO5CW7Z5oJSYEABA/RYlj8NPm4ZejA==";
+ };
+ };
+ "sass-embedded-win32-ia32-1.55.0" = {
+ name = "sass-embedded-win32-ia32";
+ packageName = "sass-embedded-win32-ia32";
+ version = "1.55.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sass-embedded-win32-ia32/-/sass-embedded-win32-ia32-1.55.0.tgz";
+ sha512 = "4HxK0byJ3iIn5OECIeNVz9GcGBuQcQT6kTvI+3QSHzuKsqgQrlXOPJ3772zKD6PVwZJNFZJFf3o9w8V2VSHbTQ==";
+ };
+ };
+ "sass-embedded-win32-x64-1.55.0" = {
+ name = "sass-embedded-win32-x64";
+ packageName = "sass-embedded-win32-x64";
+ version = "1.55.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.55.0.tgz";
+ sha512 = "LWUp5YpJy0/Q+5AOVcw919jktw+OnPiM4f4j5K6MJAiaodJwrSTqRGwMa2wOWyAUpjIdka8Ygm6j+2h5HNgSNQ==";
+ };
+ };
"sass-formatter-0.7.5" = {
name = "sass-formatter";
packageName = "sass-formatter";
@@ -65012,6 +66425,15 @@ let
sha512 = "VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==";
};
};
+ "sass-graph-4.0.1" = {
+ name = "sass-graph";
+ packageName = "sass-graph";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sass-graph/-/sass-graph-4.0.1.tgz";
+ sha512 = "5YCfmGBmxoIRYHnKK2AKzrAkCoQ8ozO+iumT8K4tXJXRVCPf+7s1/9KxTSW3Rbvf+7Y7b4FR3mWyLnQr3PHocA==";
+ };
+ };
"sass-loader-10.2.0" = {
name = "sass-loader";
packageName = "sass-loader";
@@ -65021,6 +66443,15 @@ let
sha512 = "kUceLzC1gIHz0zNJPpqRsJyisWatGYNFRmv2CKZK2/ngMJgLqxTbXwe/hJ85luyvZkgqU3VlJ33UVF2T/0g6mw==";
};
};
+ "sass-loader-13.1.0" = {
+ name = "sass-loader";
+ packageName = "sass-loader";
+ version = "13.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sass-loader/-/sass-loader-13.1.0.tgz";
+ sha512 = "tZS1RJQ2n2+QNyf3CCAo1H562WjL/5AM6Gi8YcPVVoNxQX8d19mx8E+8fRrMWsyc93ZL6Q8vZDSM0FHVTJaVnQ==";
+ };
+ };
"sax-0.5.8" = {
name = "sax";
packageName = "sax";
@@ -65165,6 +66596,15 @@ let
sha512 = "g3WxHrqSWCZHGHlSrF51VXFdjImhwvH8ZO/pryFH56Qi0cDsZfylQa/t0jCzVQFNbNvM00HfHjkDPEuarKDSWQ==";
};
};
+ "screenfull-5.2.0" = {
+ name = "screenfull";
+ packageName = "screenfull";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/screenfull/-/screenfull-5.2.0.tgz";
+ sha512 = "9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==";
+ };
+ };
"scrypt-js-3.0.1" = {
name = "scrypt-js";
packageName = "scrypt-js";
@@ -65183,6 +66623,15 @@ let
sha512 = "dYE8LhncfBUar6POCxMTm0Ln+erjeczqEvCJib5/7XNkdw1FkUGgwMPY360FY0FgPWQxHWCx29Jl3oejyGLM9Q==";
};
};
+ "scss-tokenizer-0.4.3" = {
+ name = "scss-tokenizer";
+ packageName = "scss-tokenizer";
+ version = "0.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.4.3.tgz";
+ sha512 = "raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw==";
+ };
+ };
"sdp-2.12.0" = {
name = "sdp";
packageName = "sdp";
@@ -65804,6 +67253,15 @@ let
sha512 = "XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==";
};
};
+ "server-1.0.37" = {
+ name = "server";
+ packageName = "server";
+ version = "1.0.37";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/server/-/server-1.0.37.tgz";
+ sha512 = "dpIQ54z2zbhU/mA9rTaOZz/q3yeK+33Iw39xcYIeabjSVCDIxPsYCJTOTp/bqIB3fBvCWrg3SCn4z/N7SMIsPw==";
+ };
+ };
"server-destroy-1.0.1" = {
name = "server-destroy";
packageName = "server-destroy";
@@ -66992,6 +68450,15 @@ let
sha512 = "V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g==";
};
};
+ "sockette-2.0.6" = {
+ name = "sockette";
+ packageName = "sockette";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sockette/-/sockette-2.0.6.tgz";
+ sha512 = "W6iG8RGV6Zife3Cj+FhuyHV447E6fqFM2hKmnaQrTvg3OydINV3Msj3WPFbX76blUlUxvQSMMMdrJxce8NqI5Q==";
+ };
+ };
"sockjs-0.3.20" = {
name = "sockjs";
packageName = "sockjs";
@@ -67965,22 +69432,22 @@ let
sha512 = "8K3qi9fIr6PYQCWWPDTijDThZ89tYRkIKO7xpS/kM8dDuDfx4FsBoMsBkgl8VOV3TB24UnAF0IbcxRBNL5Pf4w==";
};
};
- "ssb-bfe-3.6.1" = {
+ "ssb-bfe-3.7.0" = {
name = "ssb-bfe";
packageName = "ssb-bfe";
- version = "3.6.1";
+ version = "3.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-bfe/-/ssb-bfe-3.6.1.tgz";
- sha512 = "1FHcb2ao3txlomgY0ZSH8tfGnVh40JZRzMVzX7tNNOwWId4uI7Ck2Dpgqk63FXQNaabT1ihdtNd6AEHbi9wqAg==";
+ url = "https://registry.npmjs.org/ssb-bfe/-/ssb-bfe-3.7.0.tgz";
+ sha512 = "uJVMPAQhnm8Vz+5H7mP36kGhu0ZIloiDkNrkiO/xGWcr8gMv+GXX2DyNNPD7j0xZmL7HfFqgTvPXFeuni2w4IQ==";
};
};
- "ssb-bfe-spec-0.7.0" = {
+ "ssb-bfe-spec-0.8.0" = {
name = "ssb-bfe-spec";
packageName = "ssb-bfe-spec";
- version = "0.7.0";
+ version = "0.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-bfe-spec/-/ssb-bfe-spec-0.7.0.tgz";
- sha512 = "7Ab2lsbGXbVD0p8UQpqbekk7ENcioA8rmS+e1iMNhntROrR6ThdxS7TY8Q910UBNdtRKRXtDpqImA7fMN8W8LA==";
+ url = "https://registry.npmjs.org/ssb-bfe-spec/-/ssb-bfe-spec-0.8.0.tgz";
+ sha512 = "0NuyOS0CK1LAoJY+c3d9VmhGFuT1ylFKp+3T7Cttgq7LHhh0zMYZdzeJCUtTYgjsW/grvwRzUuNtYffJSYT0aA==";
};
};
"ssb-blobs-1.2.2" = {
@@ -68307,13 +69774,13 @@ let
sha512 = "HkgRbZeFe3YhBLfv5C6AgJaz1ESlQ5MP7sAdRTpCYwU4wo0U+d/irvVUsnUimPq6FO/Zn6gmW8BiCk+JBv3rGw==";
};
};
- "ssb-uri2-2.3.0" = {
+ "ssb-uri2-2.4.0" = {
name = "ssb-uri2";
packageName = "ssb-uri2";
- version = "2.3.0";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-uri2/-/ssb-uri2-2.3.0.tgz";
- sha512 = "qZLkObiPF0iINeluBMTdxZqmzhxCee14I6JnlG5nZ/oahk6iRp4h/rR1iTVNLlusNjXfqU5JjA9zE/jc1C3nfw==";
+ url = "https://registry.npmjs.org/ssb-uri2/-/ssb-uri2-2.4.0.tgz";
+ sha512 = "xWFdBW3bKMlKUydbm/JzdArWUVxPzOaJ2m3F+ZFULV3uREV6BVOsXxRT9aoLUcdXIDY7YTNMetGaFsbnhcv2ZA==";
};
};
"ssb-validate-4.1.4" = {
@@ -69891,13 +71358,13 @@ let
sha512 = "7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==";
};
};
- "stylehacks-5.1.0" = {
+ "stylehacks-5.1.1" = {
name = "stylehacks";
packageName = "stylehacks";
- version = "5.1.0";
+ version = "5.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.0.tgz";
- sha512 = "SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==";
+ url = "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz";
+ sha512 = "sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==";
};
};
"stylelint-13.13.1" = {
@@ -69927,13 +71394,13 @@ let
sha512 = "TxU0aAscJghF9I3V9q601xcK3Uw1JbXvpsBGj/HULqexKOKlOEzzlIpLFRbKkCK990ccuxfXUqmPbIIo7Fq/cQ==";
};
};
- "stylis-4.1.2" = {
+ "stylis-4.1.3" = {
name = "stylis";
packageName = "stylis";
- version = "4.1.2";
+ version = "4.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/stylis/-/stylis-4.1.2.tgz";
- sha512 = "Nn2CCrG2ZaFziDxaZPN43CXqn+j7tcdjPFCkRBkFue8QYXC2HdEwnw5TCBo4yQZ2WxKYeSi0fdoOrtEqgDrXbA==";
+ url = "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz";
+ sha512 = "GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==";
};
};
"stylis-rule-sheet-0.0.10" = {
@@ -70152,13 +71619,13 @@ let
sha512 = "EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg==";
};
};
- "superstatic-9.0.0" = {
+ "superstatic-8.0.0" = {
name = "superstatic";
packageName = "superstatic";
- version = "9.0.0";
+ version = "8.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/superstatic/-/superstatic-9.0.0.tgz";
- sha512 = "4rvzTZdqBPtCjeo/V4YkbBeDnHxI2+3jP1FHGzvTeDswq+HQFB7l3JTjq31BfyJFTogn8JmbDW9sKOeBUGDAhg==";
+ url = "https://registry.npmjs.org/superstatic/-/superstatic-8.0.0.tgz";
+ sha512 = "PqlA2xuEwOlRZsknl58A/rZEmgCUcfWIFec0bn10wYE5/tbMhEbMXGHCYDppiXLXcuhGHyOp1IimM2hLqkLLuw==";
};
};
"supports-color-0.2.0" = {
@@ -70350,6 +71817,15 @@ let
sha512 = "ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==";
};
};
+ "svg-url-loader-8.0.0" = {
+ name = "svg-url-loader";
+ packageName = "svg-url-loader";
+ version = "8.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/svg-url-loader/-/svg-url-loader-8.0.0.tgz";
+ sha512 = "5doSXvl18hY1fGsRLdhWAU5jgzgxJ06/gc/26cpuDnN0xOz1HmmfhkpL29SSrdIvhtxQ1UwGzmk7wTT/l48mKw==";
+ };
+ };
"svg2img-0.9.4" = {
name = "svg2img";
packageName = "svg2img";
@@ -70476,13 +71952,13 @@ let
sha512 = "8z18eX8G/jbTXYzyNIaobrnD7PSN7yU/YkSasMmajrXtw0FGS64XjrKn5v37d36qmU3o1xLeuYnktshRr7uIFw==";
};
};
- "swagger-ui-dist-4.15.0" = {
+ "swagger-ui-dist-4.15.2" = {
name = "swagger-ui-dist";
packageName = "swagger-ui-dist";
- version = "4.15.0";
+ version = "4.15.2";
src = fetchurl {
- url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.15.0.tgz";
- sha512 = "vAsIdNHraLuBRm1vrxcMaLk/y/PGBTvHLf4lQGQ3LaEXkORtIxw11sBMpYJL3keOLaFJ1OqNXuURd6eShoFLZQ==";
+ url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.15.2.tgz";
+ sha512 = "sanLAioshpa+Q0PpPxD86uo4labSqeIxtjLoC7xoce3HTnECPoQwY7PUVOiGMZ4dnEnROZPLUTloCEM86jZc1Q==";
};
};
"swagger2openapi-7.0.8" = {
@@ -70620,13 +72096,13 @@ let
sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==";
};
};
- "systeminformation-5.12.7" = {
+ "systeminformation-5.12.11" = {
name = "systeminformation";
packageName = "systeminformation";
- version = "5.12.7";
+ version = "5.12.11";
src = fetchurl {
- url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.12.7.tgz";
- sha512 = "Kubdu6YzMWtGEsnGF5ddohvIWsxOlEkV0P/3oKTPl56ADOowDiWBR59RpIRvbijXwEQrnRKeF3MOuH7apdEc/g==";
+ url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.12.11.tgz";
+ sha512 = "4N5nT4BFWqRyadTLO8c/t8/gM6wqgg26/WNjjZCS/UU7VuURuBy/pR6Z6+j0nD3ff+zCpX/sdVfyn+EoIg9saQ==";
};
};
"sywac-1.3.0" = {
@@ -70683,6 +72159,15 @@ let
sha512 = "s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==";
};
};
+ "table-6.8.1" = {
+ name = "table";
+ packageName = "table";
+ version = "6.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/table/-/table-6.8.1.tgz";
+ sha512 = "Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==";
+ };
+ };
"table-layout-0.4.5" = {
name = "table-layout";
packageName = "table-layout";
@@ -70837,6 +72322,15 @@ let
sha512 = "an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==";
};
};
+ "tar-6.1.12" = {
+ name = "tar";
+ packageName = "tar";
+ version = "6.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-6.1.12.tgz";
+ sha512 = "jU4TdemS31uABHd+Lt5WEYJuzn+TJTCBLljvIAHZOz6M9Os5pJ4dD+vRFLxPa/n3T0iEFzpi+0x1UfuDZYbRMw==";
+ };
+ };
"tar-fs-1.16.3" = {
name = "tar-fs";
packageName = "tar-fs";
@@ -70954,13 +72448,13 @@ let
sha512 = "+G0LLgjjo9BZX2MfdvPfH+MKLCrxlXSYec5DaPYP1fe6Iyhf0/fSmJ0bFiZ1F8BT6cGXl2LpltQptzjXKWEkKA==";
};
};
- "tedious-15.1.0" = {
+ "tedious-15.1.1" = {
name = "tedious";
packageName = "tedious";
- version = "15.1.0";
+ version = "15.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/tedious/-/tedious-15.1.0.tgz";
- sha512 = "D96Z8SL4ALE/rS6rOAfzWd/x+RD9vWbnNT3w5KZ0e0Tdh5FX1bKEODS+1oemSQM2ok5SktLHqSJqYQRx4yu3WA==";
+ url = "https://registry.npmjs.org/tedious/-/tedious-15.1.1.tgz";
+ sha512 = "GPnitBfhB7WMVMGuu/FipfOKDL0+r1VKyoTKQeHO/BFDFERkhaqFrcK5705da1Ze2gAvIpd/ep2y4xrvfoXXbw==";
};
};
"telegraf-3.40.0" = {
@@ -71296,13 +72790,13 @@ let
sha512 = "yJmVbmyuUPOndKsxOijpx/G7mwybXXf4M10U2up0BeIZSN+6drUl+aSKAoC+RUHY7bG4ogLwRcmWoNG1lSrRIQ==";
};
};
- "textlint-rule-helper-2.2.1" = {
+ "textlint-rule-helper-2.2.2" = {
name = "textlint-rule-helper";
packageName = "textlint-rule-helper";
- version = "2.2.1";
+ version = "2.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/textlint-rule-helper/-/textlint-rule-helper-2.2.1.tgz";
- sha512 = "pdX3uNbFzQTgINamaBpEHRT/MgROHev5wCnQnUTXRLT5DaRjls0Rmpi5d1MPZG6HT5NKVL++Q2J0FUbh5shi3Q==";
+ url = "https://registry.npmjs.org/textlint-rule-helper/-/textlint-rule-helper-2.2.2.tgz";
+ sha512 = "iwyRBbTQCH6aHUIXxdlK+R6hNQO82QpQ0sduygdW2jqLCJJhvdQESBwZLq7AEbeWS9IdA7k0BQxQxJR06gZXJQ==";
};
};
"textlint-tester-12.2.2" = {
@@ -72835,6 +74329,15 @@ let
sha512 = "d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==";
};
};
+ "tslib-2.4.1" = {
+ name = "tslib";
+ packageName = "tslib";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz";
+ sha512 = "tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==";
+ };
+ };
"tslint-5.20.1" = {
name = "tslint";
packageName = "tslint";
@@ -73222,15 +74725,6 @@ let
sha512 = "yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==";
};
};
- "type-fest-2.13.0" = {
- name = "type-fest";
- packageName = "type-fest";
- version = "2.13.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/type-fest/-/type-fest-2.13.0.tgz";
- sha512 = "lPfAm42MxE4/456+QyIaaVBAwgpJb6xZ8PRu09utnhPdWwcyj9vgy6Sq0Z5yNbJ21EdxB5dRU/Qg8bsyAMtlcw==";
- };
- };
"type-fest-2.19.0" = {
name = "type-fest";
packageName = "type-fest";
@@ -73240,15 +74734,6 @@ let
sha512 = "RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==";
};
};
- "type-fest-3.0.0" = {
- name = "type-fest";
- packageName = "type-fest";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/type-fest/-/type-fest-3.0.0.tgz";
- sha512 = "MINvUN5ug9u+0hJDzSZNSnuKXI8M4F5Yvb6SQZ2CYqe7SgKXKOosEcU5R7tRgo85I6eAVBbkVF7TCvB4AUK2xQ==";
- };
- };
"type-fest-3.1.0" = {
name = "type-fest";
packageName = "type-fest";
@@ -73438,15 +74923,6 @@ let
sha512 = "C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==";
};
};
- "typescript-4.8.3" = {
- name = "typescript";
- packageName = "typescript";
- version = "4.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz";
- sha512 = "goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==";
- };
- };
"typescript-4.8.4" = {
name = "typescript";
packageName = "typescript";
@@ -73609,13 +75085,13 @@ let
sha512 = "uVbFqx9vvLhQg0iBaau9Z75AxWJ8tqM9AV890dIZCLApF4rTcyHwmAvLeEdYRs+BzYWu8Iw81F79ah0EfTXbaw==";
};
};
- "uglify-js-3.17.3" = {
+ "uglify-js-3.17.4" = {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.17.3";
+ version = "3.17.4";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.3.tgz";
- sha512 = "JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz";
+ sha512 = "T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==";
};
};
"uglify-js-3.4.10" = {
@@ -73924,13 +75400,13 @@ let
sha512 = "UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==";
};
};
- "undici-5.11.0" = {
+ "undici-5.12.0" = {
name = "undici";
packageName = "undici";
- version = "5.11.0";
+ version = "5.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/undici/-/undici-5.11.0.tgz";
- sha512 = "oWjWJHzFet0Ow4YZBkyiJwiK5vWqEYoH7BINzJAJOLedZ++JpAlCbUktW2GQ2DS2FpKmxD/JMtWUUWl1BtghGw==";
+ url = "https://registry.npmjs.org/undici/-/undici-5.12.0.tgz";
+ sha512 = "zMLamCG62PGjd9HHMpo05bSLvvwWOZgGeiWlN/vlqu3+lRo3elxktVGEyLMX+IO7c2eflLjcW74AlkhEZm15mg==";
};
};
"undici-5.9.1" = {
@@ -77083,13 +78559,13 @@ let
sha512 = "D4rUfu/oKYdc9Tmec0nEfedj+uXO2tZHR+eoHs9rE9G/QpRyZaHuug8ZUNGTGdO+ALLGgenL6bRpY8y3J9acHg==";
};
};
- "vscode-markdown-languageservice-0.2.0-alpha.3" = {
+ "vscode-markdown-languageservice-0.2.0" = {
name = "vscode-markdown-languageservice";
packageName = "vscode-markdown-languageservice";
- version = "0.2.0-alpha.3";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-markdown-languageservice/-/vscode-markdown-languageservice-0.2.0-alpha.3.tgz";
- sha512 = "3ikmh1Mcr9s5s0wZZsxb7heSzKooudCgtZzL5d8t94WDbg02u9i2cDYF6qufK6Og5pBSC3ajeF12qFAYbRIbgQ==";
+ url = "https://registry.npmjs.org/vscode-markdown-languageservice/-/vscode-markdown-languageservice-0.2.0.tgz";
+ sha512 = "3Jh7/eN6zEPqfkT6cjL+AwGoQ7euL8RtW3FYf24IfPksz4nAZJcRibRtpSdlCaOKpwEoy/f5Axh94cmWPIGBMw==";
};
};
"vscode-nls-2.0.2" = {
@@ -77263,6 +78739,33 @@ let
sha512 = "qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg==";
};
};
+ "vue-eslint-parser-9.1.0" = {
+ name = "vue-eslint-parser";
+ packageName = "vue-eslint-parser";
+ version = "9.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.1.0.tgz";
+ sha512 = "NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==";
+ };
+ };
+ "vue-fullscreen-2.6.1" = {
+ name = "vue-fullscreen";
+ packageName = "vue-fullscreen";
+ version = "2.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vue-fullscreen/-/vue-fullscreen-2.6.1.tgz";
+ sha512 = "bbMJDKj2ZhsAwLcsvh8oV8WJeqAr2zxTHysvf7H8wSqaJTn5CnHXMSMbP9Tz4L/54I7jNQIdyA7VZ+EKAG+svg==";
+ };
+ };
+ "vue-gettext-2.1.12" = {
+ name = "vue-gettext";
+ packageName = "vue-gettext";
+ version = "2.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vue-gettext/-/vue-gettext-2.1.12.tgz";
+ sha512 = "7Kw36xtKvARp8ZafQGPK9WR6EM+dhFUikR5f0+etSkiHuvUM3yf1HsRDLYoLLdJ0AMaXxKwgekumzvCk6KX8rA==";
+ };
+ };
"vue-hot-reload-api-2.3.4" = {
name = "vue-hot-reload-api";
packageName = "vue-hot-reload-api";
@@ -77272,6 +78775,15 @@ let
sha512 = "BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==";
};
};
+ "vue-infinite-scroll-2.0.2" = {
+ name = "vue-infinite-scroll";
+ packageName = "vue-infinite-scroll";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vue-infinite-scroll/-/vue-infinite-scroll-2.0.2.tgz";
+ sha512 = "n+YghR059YmciANGJh9SsNWRi1YZEBVlODtmnb/12zI+4R72QZSWd+EuZ5mW6auEo/yaJXgxzwsuhvALVnm73A==";
+ };
+ };
"vue-loader-15.10.0" = {
name = "vue-loader";
packageName = "vue-loader";
@@ -77281,6 +78793,15 @@ let
sha512 = "VU6tuO8eKajrFeBzMssFUP9SvakEeeSi1BxdTH5o3+1yUyrldp8IERkSdXlMI2t4kxF2sqYUDsQY+WJBxzBmZg==";
};
};
+ "vue-loader-plugin-1.3.0" = {
+ name = "vue-loader-plugin";
+ packageName = "vue-loader-plugin";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vue-loader-plugin/-/vue-loader-plugin-1.3.0.tgz";
+ sha512 = "kzWyVB81zHnkv41tAC2nQtRKDWEA3od791FWjV/JOg9TSaop6Uvt92VWIPQQ84FK2UQYP4Ah99vAaVZXSnIgYA==";
+ };
+ };
"vue-loader-v16-16.8.3" = {
name = "vue-loader-v16";
packageName = "vue-loader-v16";
@@ -77290,6 +78811,15 @@ let
sha512 = "7vKN45IxsKxe5GcVCbc2qFU5aWzyiLrYJyUuMz4BQLKctCj/fmCa0w6fGiiQ2cLFetNcek1ppGJQDCup0c1hpA==";
};
};
+ "vue-luxon-0.10.0" = {
+ name = "vue-luxon";
+ packageName = "vue-luxon";
+ version = "0.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vue-luxon/-/vue-luxon-0.10.0.tgz";
+ sha512 = "edMqK3qfWNze9z7Upbkb6RSI5XFFwaU3LwD6ZPJJPBhinTg1VBH7Rn8qNi5+5GmHMcbp2ybnOWm78m5lTjznFw==";
+ };
+ };
"vue-onsenui-helper-json-1.0.2" = {
name = "vue-onsenui-helper-json";
packageName = "vue-onsenui-helper-json";
@@ -77317,6 +78847,15 @@ let
sha512 = "FUlILrW3DGitS2h+Xaw8aRNvGTwtuaxrRkNSHWTizOfLUie7wuYwezeZ50iflRn8YPV5kxmU2LQuu3nM/b3Zsg==";
};
};
+ "vue-router-3.6.5" = {
+ name = "vue-router";
+ packageName = "vue-router";
+ version = "3.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vue-router/-/vue-router-3.6.5.tgz";
+ sha512 = "VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ==";
+ };
+ };
"vue-style-loader-4.1.3" = {
name = "vue-style-loader";
packageName = "vue-style-loader";
@@ -77353,6 +78892,24 @@ let
sha512 = "4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==";
};
};
+ "vue2-filters-0.14.0" = {
+ name = "vue2-filters";
+ packageName = "vue2-filters";
+ version = "0.14.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vue2-filters/-/vue2-filters-0.14.0.tgz";
+ sha512 = "2tFWC6gx1SVIr+6VXoufkL+bZa8Gn0/P09T/bnGjOEAGH1+eVT05bPm/VF2V/nL/HMyWkLdlvxKh9JNqpfFlyw==";
+ };
+ };
+ "vuetify-1.5.24" = {
+ name = "vuetify";
+ packageName = "vuetify";
+ version = "1.5.24";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vuetify/-/vuetify-1.5.24.tgz";
+ sha512 = "guFOgEgZ8VpSgNXOv1QL2fOliaJBoiyNnf+bBqcXsnIppJGRlW1wyT6Ux7ZlQyphSHs+UK1aJNUjcyAtoOiHWg==";
+ };
+ };
"vuetify-2.5.10" = {
name = "vuetify";
packageName = "vuetify";
@@ -77785,13 +79342,13 @@ let
sha512 = "Ob8amZfCm3rMB1ScjQVlbYYUEJyEjdEtQ92jqiFUYt5VkEeO2v5UMbv49P/gnmCZm3A6yaFQzCBvpZqN4MUsdA==";
};
};
- "webpack-bundle-analyzer-4.6.1" = {
+ "webpack-bundle-analyzer-4.7.0" = {
name = "webpack-bundle-analyzer";
packageName = "webpack-bundle-analyzer";
- version = "4.6.1";
+ version = "4.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.6.1.tgz";
- sha512 = "oKz9Oz9j3rUciLNfpGFjOb49/jEpXNmWdVH8Ls//zNcnLlQdTGXQQMsBbb/gR7Zl8WNLxVCq+0Hqbx3zv6twBw==";
+ url = "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.7.0.tgz";
+ sha512 = "j9b8ynpJS4K+zfO5GGwsAcQX4ZHpWV+yRiHDiL+bE0XHJ8NiPYLTNVQdlFYWxtpg9lfAQNlwJg16J9AJtFSXRg==";
};
};
"webpack-chain-6.5.1" = {
@@ -77875,6 +79432,15 @@ let
sha512 = "mrG3bJGX4jgWbrpY0ghIpPgCmNhZziFMBJBmZfpIe6K/P1rWPkdkbGihbCUIufgQ8ruX4txE5/CKSeFNzDcYOw==";
};
};
+ "webpack-hot-middleware-2.25.2" = {
+ name = "webpack-hot-middleware";
+ packageName = "webpack-hot-middleware";
+ version = "2.25.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.2.tgz";
+ sha512 = "CVgm3NAQyfdIonRvXisRwPTUYuSbyZ6BY7782tMeUzWOO7RmVI2NaBYuCp41qyD4gYCkJyTneAJdK69A13B0+A==";
+ };
+ };
"webpack-log-2.0.0" = {
name = "webpack-log";
packageName = "webpack-log";
@@ -77893,6 +79459,24 @@ let
sha512 = "9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==";
};
};
+ "webpack-manifest-plugin-5.0.0" = {
+ name = "webpack-manifest-plugin";
+ packageName = "webpack-manifest-plugin";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-5.0.0.tgz";
+ sha512 = "8RQfMAdc5Uw3QbCQ/CBV/AXqOR8mt03B6GJmRbhWopE8GzRfEpn+k0ZuWywxW+5QZsffhmFDY1J6ohqJo+eMuw==";
+ };
+ };
+ "webpack-md5-hash-0.0.6" = {
+ name = "webpack-md5-hash";
+ packageName = "webpack-md5-hash";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webpack-md5-hash/-/webpack-md5-hash-0.0.6.tgz";
+ sha512 = "HrQ0AJpeXHRa3IjsgyyEfTx8EqYs5y/4x/WklSYsNDcqBixHzCkrmJV5U+4ks+sx7ycKoIdqWLdyuk913FCS+Q==";
+ };
+ };
"webpack-merge-4.2.2" = {
name = "webpack-merge";
packageName = "webpack-merge";
@@ -77947,6 +79531,15 @@ let
sha512 = "lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==";
};
};
+ "webpack-sources-2.3.1" = {
+ name = "webpack-sources";
+ packageName = "webpack-sources";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz";
+ sha512 = "y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==";
+ };
+ };
"webpack-sources-3.2.3" = {
name = "webpack-sources";
packageName = "webpack-sources";
@@ -78010,13 +79603,13 @@ let
sha512 = "7iZ+u28Ljw5hCnMiq0BCOeSYf0vCFQe/ORY0HgscTiKjQed8WqugpBUggJ2NTnB9fahn1kEnPRX2jf8Px5PhJw==";
};
};
- "webtorrent-1.8.32" = {
+ "webtorrent-1.9.1" = {
name = "webtorrent";
packageName = "webtorrent";
- version = "1.8.32";
+ version = "1.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.8.32.tgz";
- sha512 = "PjtJn3sY4Uqb1PEuxID+Cps4AshUKZpo3EhkT14y1SySmMVHeSX2crwh1rXIGX3fJUeF0zM5iEg+Ic2mN4CFZw==";
+ url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.9.1.tgz";
+ sha512 = "lFVMY1+GmTJlPAzEuWqQKP3/83c4bGFuJGPjI0lFRgYvUeQqxHv2Qwriz1SOK96MKuhMPKS9y4kf1CddZzoBjQ==";
};
};
"webworkify-webpack-2.1.5" = {
@@ -78226,13 +79819,13 @@ let
sha512 = "n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==";
};
};
- "which-typed-array-1.1.8" = {
+ "which-typed-array-1.1.9" = {
name = "which-typed-array";
packageName = "which-typed-array";
- version = "1.1.8";
+ version = "1.1.9";
src = fetchurl {
- url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz";
- sha512 = "Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==";
+ url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz";
+ sha512 = "w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==";
};
};
"wide-align-1.1.5" = {
@@ -78559,6 +80152,15 @@ let
sha512 = "U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==";
};
};
+ "wonka-6.1.1" = {
+ name = "wonka";
+ packageName = "wonka";
+ version = "6.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wonka/-/wonka-6.1.1.tgz";
+ sha512 = "shBtyZ0KFvUadtnDGlTRA4mF4pgcRoyZKikdputKhmShoXWcZDvlg6CUw6Jx9nTL7Ub8QUJoIarPpxdlosg9cw==";
+ };
+ };
"word-wrap-1.2.3" = {
name = "word-wrap";
packageName = "word-wrap";
@@ -78640,6 +80242,15 @@ let
sha512 = "ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==";
};
};
+ "workerpool-6.3.0" = {
+ name = "workerpool";
+ packageName = "workerpool";
+ version = "6.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/workerpool/-/workerpool-6.3.0.tgz";
+ sha512 = "2rVusseHGwxEEESx/szO2SHfi982WQavL2YlWGHsZE2ynZ4gaHT7kmCXph9k9fUivKOwx7PBn6vn4nXUxxdKcw==";
+ };
+ };
"wrap-ansi-2.1.0" = {
name = "wrap-ansi";
packageName = "wrap-ansi";
@@ -78937,6 +80548,15 @@ let
sha512 = "F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==";
};
};
+ "ws-8.10.0" = {
+ name = "ws";
+ packageName = "ws";
+ version = "8.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-8.10.0.tgz";
+ sha512 = "+s49uSmZpvtAsd2h37vIPy1RBusaLawVe8of+GyEPsaJTCMpj/2v8NpeK1SHXjBlQ95lQTmQofOJnFiLoaN3yw==";
+ };
+ };
"ws-8.2.3" = {
name = "ws";
packageName = "ws";
@@ -78955,15 +80575,6 @@ let
sha512 = "BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==";
};
};
- "ws-8.7.0" = {
- name = "ws";
- packageName = "ws";
- version = "8.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-8.7.0.tgz";
- sha512 = "c2gsP0PRwcLFzUiA8Mkr37/MI7ilIlHQxaEAtd0uNMbVMoy8puJyafRlm0bV9MbGSabUPeLrRRaqIBcFcA2Pqg==";
- };
- };
"ws-8.8.1" = {
name = "ws";
packageName = "ws";
@@ -79009,6 +80620,15 @@ let
sha512 = "GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==";
};
};
+ "x-xss-protection-1.3.0" = {
+ name = "x-xss-protection";
+ packageName = "x-xss-protection";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/x-xss-protection/-/x-xss-protection-1.3.0.tgz";
+ sha512 = "kpyBI9TlVipZO4diReZMAHWtS0MMa/7Kgx8hwG/EuZLiA6sg4Ah/4TRdASHhRRN3boobzcYgFRUFSgHRge6Qhg==";
+ };
+ };
"x256-0.0.2" = {
name = "x256";
packageName = "x256";
@@ -79252,6 +80872,15 @@ let
sha512 = "t3QW+VdXvxcy214Wf5Mvb+38RPW6EUG1RpMjjtG+esbAFh+/50PdXz1iGywefNl70DW2ucNWTXBw5buTgzDWyw==";
};
};
+ "xmlbuilder-10.1.1" = {
+ name = "xmlbuilder";
+ packageName = "xmlbuilder";
+ version = "10.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-10.1.1.tgz";
+ sha512 = "OyzrcFLL/nb6fMGHbiRDuPup9ljBycsdCypwuyg5AAHvyWzGfChJpCXMG88AGTIMFhGZ9RccFN1e6lhg3hkwKg==";
+ };
+ };
"xmlbuilder-11.0.1" = {
name = "xmlbuilder";
packageName = "xmlbuilder";
@@ -79514,13 +81143,22 @@ let
sha512 = "/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA==";
};
};
- "xxhash-wasm-1.0.1" = {
+ "xxhash-wasm-1.0.2" = {
name = "xxhash-wasm";
packageName = "xxhash-wasm";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.0.1.tgz";
- sha512 = "Lc9CTvDrH2vRoiaUzz25q7lRaviMhz90pkx6YxR9EPYtF99yOJnv2cB+CQ0hp/TLoqrUsk8z/W2EN31T568Azw==";
+ url = "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.0.2.tgz";
+ sha512 = "ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A==";
+ };
+ };
+ "xxhashjs-0.2.2" = {
+ name = "xxhashjs";
+ packageName = "xxhashjs";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xxhashjs/-/xxhashjs-0.2.2.tgz";
+ sha512 = "AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==";
};
};
"y18n-3.2.2" = {
@@ -79793,6 +81431,15 @@ let
sha512 = "8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==";
};
};
+ "yargs-17.6.1" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "17.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-17.6.1.tgz";
+ sha512 = "leBuCGrL4dAd6ispNOGsJlhd0uZ6Qehkbu/B9KCR+Pxa/NVdNwi+i31lo0buCm6XxhJQFshXCD0/evfV4xfoUg==";
+ };
+ };
"yargs-3.10.0" = {
name = "yargs";
packageName = "yargs";
@@ -80294,15 +81941,15 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "14.2.6";
+ version = "14.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-14.2.6.tgz";
- sha512 = "8tXpe3htfZY8a+Am4nluVcztMFD5wnx4edGEDkkOiqkrUzbCtX4AyEBjUFldsYKZXbRFU46xEfM6jBnLOjxDZQ==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-14.2.8.tgz";
+ sha512 = "yJDLSlTFwQhNJlFoXCw8r8iQWNJn9bIjBSdEL0mM9px5EvSxDYGDXwiJRvionlZAL9P4u0d8XeBy3EPyFkAE5Q==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1402.6"
- sources."@angular-devkit/core-14.2.6"
- sources."@angular-devkit/schematics-14.2.6"
+ sources."@angular-devkit/architect-0.1402.8"
+ sources."@angular-devkit/core-14.2.8"
+ sources."@angular-devkit/schematics-14.2.8"
sources."@gar/promisify-1.1.3"
sources."@npmcli/fs-2.1.2"
sources."@npmcli/git-3.0.2"
@@ -80311,7 +81958,7 @@ in
sources."@npmcli/node-gyp-2.0.0"
sources."@npmcli/promise-spawn-3.0.0"
sources."@npmcli/run-script-4.2.1"
- sources."@schematics/angular-14.2.6"
+ sources."@schematics/angular-14.2.8"
sources."@tootallnate/once-2.0.0"
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-1.1.1"
@@ -80388,7 +82035,7 @@ in
sources."has-1.0.3"
sources."has-flag-4.0.0"
sources."has-unicode-2.0.1"
- sources."hosted-git-info-5.1.0"
+ sources."hosted-git-info-5.2.1"
sources."http-cache-semantics-4.1.0"
sources."http-proxy-agent-5.0.0"
sources."https-proxy-agent-5.0.1"
@@ -80410,7 +82057,7 @@ in
(sources."inquirer-8.2.4" // {
dependencies = [
sources."rxjs-7.5.7"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."ip-2.0.0"
@@ -80432,7 +82079,7 @@ in
sources."jsonparse-1.3.1"
sources."lodash-4.17.21"
sources."log-symbols-4.1.0"
- sources."lru-cache-7.14.0"
+ sources."lru-cache-7.14.1"
sources."magic-string-0.26.2"
sources."make-fetch-happen-10.2.1"
sources."mimic-fn-2.1.0"
@@ -80527,7 +82174,7 @@ in
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."symbol-observable-4.0.0"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."through-2.3.8"
sources."tmp-0.0.33"
sources."to-regex-range-5.0.1"
@@ -80603,10 +82250,10 @@ in
"@antfu/ni" = nodeEnv.buildNodePackage {
name = "_at_antfu_slash_ni";
packageName = "@antfu/ni";
- version = "0.18.2";
+ version = "0.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@antfu/ni/-/ni-0.18.2.tgz";
- sha512 = "OZalxEGupqCd8hKV2wyT5IHQTx1BR5/iXZEbseLpSdgcSn8fLjLOqi+LLhLly0a1XIkCAUeknV5/JXvMbjIstA==";
+ url = "https://registry.npmjs.org/@antfu/ni/-/ni-0.18.3.tgz";
+ sha512 = "Tjn/lApBYvQhFCw0GgJIdENOk1m6LxucvPqBnCfWQRc2tI+uxtAvJljxiSR9s5B/gtMahGBsB6Hs7H8HZIOY6Q==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -80621,15 +82268,15 @@ in
"@antora/cli" = nodeEnv.buildNodePackage {
name = "_at_antora_slash_cli";
packageName = "@antora/cli";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/cli/-/cli-3.1.1.tgz";
- sha512 = "YmwuUgvWQt2Do3zAByMQW+a3GfAPkUs0k2OKVCiuAQD51TUyDoeK4qSE3lYMzpInKf9ps1DardBssSnibDYZXA==";
+ url = "https://registry.npmjs.org/@antora/cli/-/cli-3.1.2.tgz";
+ sha512 = "/0ddoM9ZsY41LPmow8ic6IG+PIiTik82YJTHCM8CHRme2oNHU1ZBaXbH6ClS9yBwwPzVzwt4Bc6A/yQ/5+2XCA==";
};
dependencies = [
sources."@antora/expand-path-helper-2.0.0"
- sources."@antora/logger-3.1.1"
- sources."@antora/playbook-builder-3.1.1"
+ sources."@antora/logger-3.1.2"
+ sources."@antora/playbook-builder-3.1.2"
sources."@antora/user-require-helper-2.0.0"
sources."@iarna/toml-2.2.5"
sources."abort-controller-3.0.0"
@@ -80646,7 +82293,7 @@ in
sources."end-of-stream-1.4.4"
sources."event-target-shim-5.0.1"
sources."events-3.3.0"
- sources."fast-copy-2.1.7"
+ sources."fast-copy-3.0.0"
sources."fast-redact-3.1.2"
sources."fast-safe-stringify-2.1.1"
sources."fs.realpath-1.0.0"
@@ -80667,9 +82314,9 @@ in
sources."minimist-1.2.7"
sources."on-exit-leak-free-2.1.0"
sources."once-1.4.0"
- sources."pino-8.4.2"
+ sources."pino-8.7.0"
sources."pino-abstract-transport-1.0.0"
- sources."pino-pretty-9.0.1"
+ sources."pino-pretty-9.1.1"
sources."pino-std-serializers-6.0.0"
sources."process-0.11.10"
sources."process-warning-2.0.0"
@@ -80702,27 +82349,27 @@ in
"@antora/site-generator-default" = nodeEnv.buildNodePackage {
name = "_at_antora_slash_site-generator-default";
packageName = "@antora/site-generator-default";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/site-generator-default/-/site-generator-default-3.1.1.tgz";
- sha512 = "zCC/gegPqPgPeBkL/hnHwRW4Vl++sDmBWmn8jAgR0Qj7NpNU4vUHAS7ArsqpJvPJB4/6hXhhSqsJPxP1xkTySQ==";
+ url = "https://registry.npmjs.org/@antora/site-generator-default/-/site-generator-default-3.1.2.tgz";
+ sha512 = "zd/7CEYzMo85t4/TVristVG5hMoZqw/bcSnr5+KVEpexBfnl3WtuD10hdo2TL7SSxqEsj0dvDK0PwgHN//l0yg==";
};
dependencies = [
- sources."@antora/asciidoc-loader-3.1.1"
- sources."@antora/content-aggregator-3.1.1"
- sources."@antora/content-classifier-3.1.1"
- sources."@antora/document-converter-3.1.1"
+ sources."@antora/asciidoc-loader-3.1.2"
+ sources."@antora/content-aggregator-3.1.2"
+ sources."@antora/content-classifier-3.1.2"
+ sources."@antora/document-converter-3.1.2"
sources."@antora/expand-path-helper-2.0.0"
- sources."@antora/file-publisher-3.1.1"
- sources."@antora/logger-3.1.1"
- sources."@antora/navigation-builder-3.1.1"
- sources."@antora/page-composer-3.1.1"
- sources."@antora/playbook-builder-3.1.1"
- sources."@antora/redirect-producer-3.1.1"
- sources."@antora/site-generator-3.1.1"
- sources."@antora/site-mapper-3.1.1"
- sources."@antora/site-publisher-3.1.1"
- sources."@antora/ui-loader-3.1.1"
+ sources."@antora/file-publisher-3.1.2"
+ sources."@antora/logger-3.1.2"
+ sources."@antora/navigation-builder-3.1.2"
+ sources."@antora/page-composer-3.1.2"
+ sources."@antora/playbook-builder-3.1.2"
+ sources."@antora/redirect-producer-3.1.2"
+ sources."@antora/site-generator-3.1.2"
+ sources."@antora/site-mapper-3.1.2"
+ sources."@antora/site-publisher-3.1.2"
+ sources."@antora/ui-loader-3.1.2"
sources."@antora/user-require-helper-2.0.0"
sources."@asciidoctor/core-2.2.6"
sources."@iarna/toml-2.2.5"
@@ -80730,7 +82377,7 @@ in
sources."append-buffer-1.0.2"
sources."argparse-2.0.1"
sources."asciidoctor-opal-runtime-0.3.3"
- sources."async-lock-1.3.2"
+ sources."async-lock-1.4.0"
sources."atomic-sleep-1.0.0"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
@@ -80765,7 +82412,7 @@ in
sources."event-target-shim-5.0.1"
sources."events-3.3.0"
sources."extend-3.0.2"
- sources."fast-copy-2.1.7"
+ sources."fast-copy-3.0.0"
sources."fast-redact-3.1.2"
sources."fast-safe-stringify-2.1.1"
sources."fd-slicer-1.1.0"
@@ -80799,7 +82446,7 @@ in
sources."minimatch-5.1.0"
];
})
- sources."hpagent-1.0.0"
+ sources."hpagent-1.1.0"
sources."ieee754-1.2.1"
sources."ignore-5.2.0"
sources."inflight-1.0.6"
@@ -80816,7 +82463,7 @@ in
sources."is-valid-glob-1.0.0"
sources."is-windows-1.0.2"
sources."isarray-1.0.0"
- sources."isomorphic-git-1.19.3"
+ sources."isomorphic-git-1.21.0"
sources."joycon-3.1.1"
sources."js-yaml-4.1.0"
sources."json-stable-stringify-without-jsonify-1.0.1"
@@ -80853,13 +82500,13 @@ in
sources."pend-1.2.0"
sources."picomatch-2.3.1"
sources."pify-4.0.1"
- sources."pino-8.4.2"
+ sources."pino-8.7.0"
(sources."pino-abstract-transport-1.0.0" // {
dependencies = [
sources."readable-stream-4.2.0"
];
})
- (sources."pino-pretty-9.0.1" // {
+ (sources."pino-pretty-9.1.1" // {
dependencies = [
sources."readable-stream-4.2.0"
];
@@ -80905,7 +82552,7 @@ in
sources."to-absolute-glob-2.0.2"
sources."to-regex-range-5.0.1"
sources."to-through-2.0.0"
- sources."uglify-js-3.17.3"
+ sources."uglify-js-3.17.4"
sources."unc-path-regex-0.1.2"
sources."unique-stream-2.3.1"
sources."unxhr-1.0.1"
@@ -80986,7 +82633,7 @@ in
sources."suf-log-2.5.3"
sources."synckit-0.8.4"
sources."tiny-glob-0.2.9"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."vscode-css-languageservice-6.1.1"
sources."vscode-html-languageservice-5.0.2"
sources."vscode-jsonrpc-8.0.2"
@@ -81027,7 +82674,7 @@ in
sources."abab-2.0.6"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -81059,7 +82706,7 @@ in
sources."bytes-3.1.2"
sources."cache-content-type-1.0.1"
sources."call-bind-1.0.2"
- sources."canvas-2.10.1"
+ sources."canvas-2.10.2"
sources."chalk-4.1.2"
sources."chardet-0.7.0"
sources."chownr-2.0.0"
@@ -81277,7 +82924,7 @@ in
sources."run-async-2.4.1"
(sources."rxjs-7.5.7" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."safe-buffer-5.1.2"
@@ -81307,7 +82954,7 @@ in
sources."strip-ansi-6.0.1"
sources."supports-color-7.2.0"
sources."symbol-tree-3.2.4"
- (sources."tar-6.1.11" // {
+ (sources."tar-6.1.12" // {
dependencies = [
sources."mkdirp-1.0.4"
];
@@ -81364,10 +83011,10 @@ in
"@commitlint/cli" = nodeEnv.buildNodePackage {
name = "_at_commitlint_slash_cli";
packageName = "@commitlint/cli";
- version = "17.1.2";
+ version = "17.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.1.2.tgz";
- sha512 = "h/4Hlka3bvCLbnxf0Er2ri5A44VMlbMSkdTRp8Adv2tRiklSTRIoPGs7OEXDv3EoDs2AAzILiPookgM4Gi7LOw==";
+ url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.2.0.tgz";
+ sha512 = "kd1zykcrjIKyDRftWW1E1TJqkgzeosEkv1BiYPCdzkb/g/3BrfgwZUHR1vg+HO3qKUb/0dN+jNXArhGGAHpmaQ==";
};
dependencies = [
sources."@babel/code-frame-7.18.6"
@@ -81386,14 +83033,14 @@ in
sources."@commitlint/ensure-17.0.0"
sources."@commitlint/execute-rule-17.0.0"
sources."@commitlint/format-17.0.0"
- sources."@commitlint/is-ignored-17.1.0"
- sources."@commitlint/lint-17.1.0"
- sources."@commitlint/load-17.1.2"
- sources."@commitlint/message-17.0.0"
- sources."@commitlint/parse-17.0.0"
- sources."@commitlint/read-17.1.0"
+ sources."@commitlint/is-ignored-17.2.0"
+ sources."@commitlint/lint-17.2.0"
+ sources."@commitlint/load-17.2.0"
+ sources."@commitlint/message-17.2.0"
+ sources."@commitlint/parse-17.2.0"
+ sources."@commitlint/read-17.2.0"
sources."@commitlint/resolve-extends-17.1.0"
- sources."@commitlint/rules-17.0.0"
+ sources."@commitlint/rules-17.2.0"
sources."@commitlint/to-lines-17.0.0"
(sources."@commitlint/top-level-17.0.0" // {
dependencies = [
@@ -81408,55 +83055,55 @@ in
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/sourcemap-codec-1.4.14"
sources."@jridgewell/trace-mapping-0.3.9"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- (sources."@swc/core-android-arm64-1.3.10" // {
+ (sources."@swc/core-android-arm64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- (sources."@swc/core-freebsd-x64-1.3.10" // {
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ (sources."@swc/core-freebsd-x64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-linux-arm-gnueabihf-1.3.10" // {
+ (sources."@swc/core-linux-arm-gnueabihf-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- (sources."@swc/core-win32-arm64-msvc-1.3.10" // {
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ (sources."@swc/core-win32-arm64-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-win32-ia32-msvc-1.3.10" // {
+ (sources."@swc/core-win32-ia32-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-win32-x64-msvc-1.3.10"
- sources."@swc/wasm-1.3.10"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
+ sources."@swc/wasm-1.3.12"
sources."@tsconfig/node10-1.0.9"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
sources."@types/minimist-1.2.2"
- sources."@types/node-14.18.32"
+ sources."@types/node-14.18.33"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."JSONStream-1.3.5"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."ajv-8.11.0"
sources."ansi-regex-5.0.1"
@@ -81475,12 +83122,12 @@ in
sources."conventional-changelog-angular-5.0.13"
sources."conventional-commits-parser-3.2.4"
sources."cosmiconfig-7.0.1"
- sources."cosmiconfig-typescript-loader-4.1.1"
+ sources."cosmiconfig-typescript-loader-4.2.0"
sources."create-require-1.1.1"
sources."cross-spawn-7.0.3"
sources."dargs-7.0.0"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -81609,7 +83256,7 @@ in
sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yaml-1.10.2"
- (sources."yargs-17.6.0" // {
+ (sources."yargs-17.6.1" // {
dependencies = [
sources."yargs-parser-21.1.1"
];
@@ -81631,10 +83278,10 @@ in
"@commitlint/config-conventional" = nodeEnv.buildNodePackage {
name = "_at_commitlint_slash_config-conventional";
packageName = "@commitlint/config-conventional";
- version = "17.1.0";
+ version = "17.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.1.0.tgz";
- sha512 = "WU2p0c9/jLi8k2q2YrDV96Y8XVswQOceIQ/wyJvQxawJSCasLdRB3kUIYdNjOCJsxkpoUlV/b90ZPxp1MYZDiA==";
+ url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.2.0.tgz";
+ sha512 = "g5hQqRa80f++SYS233dbDSg16YdyounMTAhVcmqtInNeY/GF3aA4st9SVtJxpeGrGmueMrU4L+BBb+6Vs5wrcg==";
};
dependencies = [
sources."array-ify-1.0.0"
@@ -81678,7 +83325,7 @@ in
sources."strip-ansi-6.0.1"
sources."wrap-ansi-7.0.0"
sources."y18n-5.0.8"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
];
buildInputs = globalBuildInputs;
@@ -81694,10 +83341,10 @@ in
"@forge/cli" = nodeEnv.buildNodePackage {
name = "_at_forge_slash_cli";
packageName = "@forge/cli";
- version = "5.2.1";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@forge/cli/-/cli-5.2.1.tgz";
- sha512 = "4epmmkIITJCT9cyeozMJj0eXTMBCjgvcufGd5o5sOGO57FiNjbf2IFdmPRsieVZg7XpjEQIfBxTxxXW2CBlggQ==";
+ url = "https://registry.npmjs.org/@forge/cli/-/cli-6.0.0.tgz";
+ sha512 = "GWffWsgbgFx/M22je/HMQYr9Pkh+Z0kr/ghxeTLddFkfJyykR55oeoCVzm93D3pxnce+7FXQc+LSKIVSBtY4BQ==";
};
dependencies = [
sources."@ampproject/remapping-2.2.0"
@@ -81708,15 +83355,15 @@ in
];
})
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
sources."@babel/core-7.19.6"
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
- sources."@babel/helper-compilation-targets-7.19.3"
+ sources."@babel/helper-compilation-targets-7.20.0"
sources."@babel/helper-create-class-features-plugin-7.19.0"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
@@ -81728,34 +83375,38 @@ in
sources."@babel/helper-plugin-utils-7.19.0"
sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.19.4"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/plugin-proposal-class-properties-7.18.6"
sources."@babel/plugin-proposal-numeric-separator-7.18.6"
sources."@babel/plugin-proposal-optional-chaining-7.18.9"
sources."@babel/plugin-syntax-jsx-7.18.6"
sources."@babel/plugin-syntax-numeric-separator-7.10.4"
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
- sources."@babel/plugin-syntax-typescript-7.18.6"
+ sources."@babel/plugin-syntax-typescript-7.20.0"
sources."@babel/plugin-transform-react-jsx-7.19.0"
- sources."@babel/plugin-transform-typescript-7.19.3"
+ sources."@babel/plugin-transform-typescript-7.20.0"
sources."@babel/preset-typescript-7.18.6"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@colors/colors-1.5.0"
sources."@discoveryjs/json-ext-0.5.7"
- sources."@forge/api-2.7.0"
- sources."@forge/auth-0.0.1"
+ sources."@forge/api-2.8.0"
+ (sources."@forge/auth-0.0.1" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
sources."@forge/babel-plugin-transform-ui-1.1.0"
- sources."@forge/bundler-3.1.3"
- (sources."@forge/cli-shared-3.2.1" // {
+ sources."@forge/bundler-4.0.0"
+ (sources."@forge/cli-shared-3.2.2" // {
dependencies = [
sources."glob-7.2.3"
];
@@ -81766,8 +83417,8 @@ in
sources."minimatch-5.1.0"
];
})
- sources."@forge/lint-3.2.7"
- sources."@forge/manifest-4.4.0"
+ sources."@forge/lint-3.2.8"
+ sources."@forge/manifest-4.4.1"
sources."@forge/storage-1.3.0"
sources."@forge/util-1.2.0"
sources."@jridgewell/gen-mapping-0.1.1"
@@ -81781,24 +83432,26 @@ in
sources."@jridgewell/sourcemap-codec-1.4.14"
sources."@jridgewell/trace-mapping-0.3.17"
sources."@jsdevtools/ono-7.1.3"
+ sources."@nodelib/fs.scandir-2.1.5"
+ sources."@nodelib/fs.stat-2.0.5"
+ sources."@nodelib/fs.walk-1.2.8"
sources."@polka/url-1.0.0-next.21"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/eslint-8.4.7"
+ sources."@types/eslint-8.4.9"
sources."@types/eslint-scope-3.7.4"
sources."@types/estree-0.0.51"
sources."@types/html-minifier-terser-6.1.0"
sources."@types/json-schema-7.0.11"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/node-fetch-2.6.2"
- sources."@typescript-eslint/types-3.10.1"
- (sources."@typescript-eslint/typescript-estree-3.10.1" // {
+ sources."@typescript-eslint/types-5.42.0"
+ (sources."@typescript-eslint/typescript-estree-5.42.0" // {
dependencies = [
- sources."glob-7.2.3"
sources."semver-7.3.8"
];
})
- sources."@typescript-eslint/visitor-keys-3.10.1"
+ sources."@typescript-eslint/visitor-keys-5.42.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -81819,7 +83472,7 @@ in
sources."@webpack-cli/serve-1.7.0"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-import-assertions-1.8.0"
sources."acorn-walk-8.2.0"
(sources."ajv-6.12.6" // {
@@ -81843,6 +83496,7 @@ in
];
})
sources."argparse-1.0.10"
+ sources."array-union-2.1.0"
sources."array.prototype.flatmap-1.3.0"
(sources."asn1.js-5.4.1" // {
dependencies = [
@@ -81901,13 +83555,9 @@ in
];
})
sources."call-bind-1.0.2"
- sources."call-me-maybe-1.0.1"
- (sources."camel-case-4.1.2" // {
- dependencies = [
- sources."tslib-2.4.0"
- ];
- })
- sources."caniuse-lite-1.0.30001423"
+ sources."call-me-maybe-1.0.2"
+ sources."camel-case-4.1.2"
+ sources."caniuse-lite-1.0.30001429"
sources."case-1.6.3"
sources."chainsaw-0.1.0"
sources."chalk-2.4.2"
@@ -81994,16 +83644,13 @@ in
sources."bn.js-4.12.0"
];
})
+ sources."dir-glob-3.0.1"
sources."dom-converter-0.2.0"
sources."dom-serializer-1.4.1"
sources."domelementtype-2.3.0"
sources."domhandler-4.3.1"
sources."domutils-2.8.0"
- (sources."dot-case-3.0.4" // {
- dependencies = [
- sources."tslib-2.4.0"
- ];
- })
+ sources."dot-case-3.0.4"
sources."dot-prop-5.3.0"
sources."dtrace-provider-0.8.8"
sources."duplexer-0.1.2"
@@ -82042,7 +83689,7 @@ in
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
sources."eslint-scope-5.1.1"
- sources."eslint-visitor-keys-1.3.0"
+ sources."eslint-visitor-keys-3.3.0"
sources."esprima-4.0.1"
(sources."esrecurse-4.3.0" // {
dependencies = [
@@ -82067,8 +83714,10 @@ in
})
sources."extract-files-9.0.0"
sources."fast-deep-equal-2.0.1"
+ sources."fast-glob-3.2.12"
sources."fast-json-stable-stringify-2.1.0"
sources."fastest-levenshtein-1.0.16"
+ sources."fastq-1.13.0"
sources."figures-3.2.0"
sources."fill-range-7.0.1"
sources."find-cache-dir-3.3.2"
@@ -82097,8 +83746,10 @@ in
sources."get-symbol-description-1.0.0"
sources."github-from-package-0.0.0"
sources."glob-6.0.4"
+ sources."glob-parent-5.1.2"
sources."glob-to-regexp-0.4.1"
sources."globals-11.12.0"
+ sources."globby-11.1.0"
(sources."got-9.6.0" // {
dependencies = [
sources."decompress-response-3.3.0"
@@ -82138,6 +83789,7 @@ in
sources."http-cache-semantics-4.1.0"
sources."iconv-lite-0.6.3"
sources."ieee754-1.2.1"
+ sources."ignore-5.2.0"
sources."ignore-walk-3.0.4"
sources."import-local-3.1.0"
sources."imurmurhash-0.1.4"
@@ -82247,19 +83899,16 @@ in
sources."lodash.sortby-4.7.0"
sources."lodash.union-4.6.0"
sources."log-symbols-3.0.0"
- (sources."lower-case-2.0.2" // {
- dependencies = [
- sources."tslib-2.4.0"
- ];
- })
+ sources."lower-case-2.0.2"
sources."lowercase-keys-1.0.1"
sources."lru-cache-6.0.0"
sources."lru-queue-0.1.0"
sources."make-dir-3.1.0"
sources."md5.js-1.3.5"
- sources."memfs-3.4.7"
+ sources."memfs-3.4.9"
sources."memoizee-0.4.15"
sources."merge-stream-2.0.0"
+ sources."merge2-1.4.1"
sources."micromatch-4.0.5"
(sources."miller-rabin-4.0.1" // {
dependencies = [
@@ -82291,11 +83940,7 @@ in
sources."ncp-2.0.0"
sources."neo-async-2.6.2"
sources."next-tick-1.1.0"
- (sources."no-case-3.0.4" // {
- dependencies = [
- sources."tslib-2.4.0"
- ];
- })
+ sources."no-case-3.0.4"
(sources."node-abi-3.28.0" // {
dependencies = [
sources."semver-7.3.8"
@@ -82341,22 +83986,15 @@ in
sources."p-try-2.2.0"
sources."package-json-6.5.0"
sources."pako-1.0.11"
- (sources."param-case-3.0.4" // {
- dependencies = [
- sources."tslib-2.4.0"
- ];
- })
+ sources."param-case-3.0.4"
sources."parse-asn1-5.1.6"
- (sources."pascal-case-3.1.2" // {
- dependencies = [
- sources."tslib-2.4.0"
- ];
- })
+ sources."pascal-case-3.1.2"
sources."path-browserify-1.0.1"
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-type-4.0.0"
sources."pbkdf2-3.1.2"
sources."picocolors-1.0.0"
sources."picomatch-2.3.1"
@@ -82392,6 +84030,7 @@ in
sources."querystring-0.2.0"
sources."querystring-browser-1.0.4"
sources."querystringify-2.2.0"
+ sources."queue-microtask-1.2.3"
sources."randombytes-2.1.0"
sources."randomfill-1.0.4"
sources."rc-1.2.8"
@@ -82407,11 +84046,7 @@ in
];
})
sources."rechoir-0.7.1"
- (sources."recursive-readdir-2.2.2" // {
- dependencies = [
- sources."minimatch-3.0.4"
- ];
- })
+ sources."recursive-readdir-2.2.3"
sources."regexp.prototype.flags-1.4.3"
sources."registry-auth-token-4.2.2"
sources."registry-url-5.1.0"
@@ -82424,10 +84059,16 @@ in
sources."resolve-from-5.0.0"
sources."responselike-1.0.2"
sources."restore-cursor-3.1.0"
+ sources."reusify-1.0.4"
sources."rimraf-2.4.5"
sources."ripemd160-2.0.2"
sources."run-async-2.4.1"
- sources."rxjs-6.6.7"
+ sources."run-parallel-1.2.0"
+ (sources."rxjs-6.6.7" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
sources."safe-buffer-5.2.1"
sources."safe-json-stringify-1.2.0"
sources."safe-regex-test-1.0.0"
@@ -82446,6 +84087,7 @@ in
sources."simple-concat-1.0.1"
sources."simple-get-4.0.1"
sources."sirv-1.0.19"
+ sources."slash-3.0.0"
sources."slide-1.1.6"
sources."source-map-0.6.1"
sources."source-map-support-0.5.21"
@@ -82518,17 +84160,20 @@ in
sources."supports-color-7.2.0"
];
})
- sources."tslib-1.14.1"
- sources."tsutils-3.21.0"
+ sources."tslib-2.4.1"
+ (sources."tsutils-3.21.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
sources."tunnel-agent-0.6.0"
sources."type-1.2.0"
sources."type-fest-0.21.3"
sources."typedarray-to-buffer-3.1.5"
- sources."typescript-3.9.10"
+ sources."typescript-4.8.4"
(sources."typescript-json-schema-0.45.1" // {
dependencies = [
sources."glob-7.2.3"
- sources."typescript-4.8.4"
];
})
sources."unbox-primitive-1.0.2"
@@ -82573,7 +84218,7 @@ in
sources."schema-utils-3.1.1"
];
})
- (sources."webpack-bundle-analyzer-4.6.1" // {
+ (sources."webpack-bundle-analyzer-4.7.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -82645,7 +84290,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
sources."@types/minimatch-3.0.5"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/normalize-package-data-2.4.1"
sources."@types/responselike-1.0.0"
sources."abort-controller-3.0.0"
@@ -82742,7 +84387,7 @@ in
sources."ieee754-1.2.1"
sources."indent-string-4.0.0"
sources."inherits-2.0.4"
- (sources."inquirer-8.2.4" // {
+ (sources."inquirer-8.2.5" // {
dependencies = [
sources."ansi-regex-5.0.1"
sources."emoji-regex-8.0.0"
@@ -82873,11 +84518,7 @@ in
})
sources."readable-stream-3.6.0"
sources."readdirp-3.6.0"
- (sources."recursive-readdir-2.2.2" // {
- dependencies = [
- sources."minimatch-3.0.4"
- ];
- })
+ sources."recursive-readdir-2.2.3"
sources."replace-buffer-1.2.1"
sources."requires-port-1.0.0"
sources."resolve-alpn-1.2.1"
@@ -82916,7 +84557,7 @@ in
sources."type-fest-2.19.0"
];
})
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-fest-0.21.3"
sources."typescript-4.8.4"
sources."universalify-2.0.0"
@@ -82960,7 +84601,7 @@ in
sha512 = "Pl9Q5rqt4hKGVcZ1/iPMj8VXY3US0UgY8JGkgm+XFUtAJ9JntN0Qj1bj1JBfPj5R7YyrZzuuDbEk4eOCd+wI/A==";
};
dependencies = [
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@medable/mdctl-api-1.0.67"
sources."@medable/mdctl-api-driver-1.0.67"
sources."@medable/mdctl-axon-tools-1.0.67"
@@ -82995,7 +84636,7 @@ in
sources."@types/markdown-it-12.2.3"
sources."@types/mdurl-1.0.2"
sources."@types/minimatch-5.1.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/tough-cookie-2.3.8"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -83067,7 +84708,7 @@ in
sources."buffer-from-1.1.0"
sources."buffer-xor-1.0.3"
sources."cache-base-1.0.1"
- sources."call-me-maybe-1.0.1"
+ sources."call-me-maybe-1.0.2"
sources."camelcase-5.3.1"
sources."caseless-0.12.0"
sources."catharsis-0.9.0"
@@ -83412,7 +85053,7 @@ in
sources."map-visit-1.0.0"
sources."markdown-it-12.3.2"
sources."markdown-it-anchor-8.6.5"
- sources."marked-4.1.1"
+ sources."marked-4.2.1"
sources."md5.js-1.3.5"
sources."mdurl-1.0.1"
(sources."mem-4.3.0" // {
@@ -83809,7 +85450,7 @@ in
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
sources."uc.micro-1.0.6"
- sources."uglify-js-3.17.3"
+ sources."uglify-js-3.17.4"
sources."underscore-1.13.6"
sources."union-value-1.0.1"
(sources."universal-url-2.0.0" // {
@@ -83947,7 +85588,7 @@ in
sources."is-plain-object-5.0.0"
sources."is-unicode-supported-0.1.0"
sources."isexe-2.0.0"
- sources."joi-17.6.4"
+ sources."joi-17.7.0"
sources."js-yaml-3.14.1"
sources."jsonfile-6.1.0"
sources."lodash-4.17.21"
@@ -83999,10 +85640,10 @@ in
"@nestjs/cli" = nodeEnv.buildNodePackage {
name = "_at_nestjs_slash_cli";
packageName = "@nestjs/cli";
- version = "9.1.4";
+ version = "9.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@nestjs/cli/-/cli-9.1.4.tgz";
- sha512 = "cvN4DcLzaqFzKRmpU3tOeLmw7+1p4XXsFLyWgteId0Szf6cAk5KJpD5jl2Kw7f39vNw9Pss8yiJ1q1CD/fcbwQ==";
+ url = "https://registry.npmjs.org/@nestjs/cli/-/cli-9.1.5.tgz";
+ sha512 = "rSp26+Nv7PFtYrRSP18Gv5ZK8rRSc2SCCF5wh4SdZaVGgkxShpNq9YEfI+ik/uziN3KC5o74ppYRXGj+aHGVsA==";
};
dependencies = [
sources."@angular-devkit/core-14.2.2"
@@ -84012,7 +85653,7 @@ in
sources."chalk-4.1.2"
sources."inquirer-8.2.4"
sources."rxjs-7.5.7"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."@babel/code-frame-7.18.6"
@@ -84048,11 +85689,11 @@ in
sources."jsonc-parser-3.2.0"
];
})
- sources."@types/eslint-8.4.7"
+ sources."@types/eslint-8.4.9"
sources."@types/eslint-scope-3.7.4"
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
@@ -84071,7 +85712,7 @@ in
sources."@webassemblyjs/wast-printer-1.11.1"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-import-assertions-1.8.0"
sources."ajv-8.11.0"
sources."ajv-formats-2.1.1"
@@ -84096,7 +85737,7 @@ in
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.5.3"
@@ -84200,7 +85841,7 @@ in
sources."lru-cache-6.0.0"
sources."macos-release-2.5.0"
sources."magic-string-0.26.2"
- sources."memfs-3.4.7"
+ sources."memfs-3.4.9"
sources."merge-stream-2.0.0"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
@@ -84293,7 +85934,7 @@ in
})
sources."tslib-1.14.1"
sources."type-fest-0.21.3"
- sources."typescript-4.8.3"
+ sources."typescript-4.8.4"
sources."universalify-2.0.0"
sources."update-browserslist-db-1.0.10"
sources."uri-js-4.4.1"
@@ -84394,50 +86035,50 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- (sources."@swc/core-android-arm64-1.3.10" // {
+ (sources."@swc/core-android-arm64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- (sources."@swc/core-freebsd-x64-1.3.10" // {
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ (sources."@swc/core-freebsd-x64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-linux-arm-gnueabihf-1.3.10" // {
+ (sources."@swc/core-linux-arm-gnueabihf-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- (sources."@swc/core-win32-arm64-msvc-1.3.10" // {
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ (sources."@swc/core-win32-arm64-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-win32-ia32-msvc-1.3.10" // {
+ (sources."@swc/core-win32-ia32-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-win32-x64-msvc-1.3.10"
- sources."@swc/wasm-1.3.10"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
+ sources."@swc/wasm-1.3.12"
sources."@tsconfig/node10-1.0.9"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."acorn-7.4.1"
sources."acorn-node-1.8.2"
sources."acorn-walk-7.2.0"
@@ -84507,7 +86148,7 @@ in
sources."to-regex-range-5.0.1"
(sources."ts-node-10.9.1" // {
dependencies = [
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."arg-4.1.3"
];
@@ -84545,50 +86186,50 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- (sources."@swc/core-android-arm64-1.3.10" // {
+ (sources."@swc/core-android-arm64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- (sources."@swc/core-freebsd-x64-1.3.10" // {
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ (sources."@swc/core-freebsd-x64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-linux-arm-gnueabihf-1.3.10" // {
+ (sources."@swc/core-linux-arm-gnueabihf-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- (sources."@swc/core-win32-arm64-msvc-1.3.10" // {
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ (sources."@swc/core-win32-arm64-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-win32-ia32-msvc-1.3.10" // {
+ (sources."@swc/core-win32-ia32-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-win32-x64-msvc-1.3.10"
- sources."@swc/wasm-1.3.10"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
+ sources."@swc/wasm-1.3.12"
sources."@tsconfig/node10-1.0.9"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."acorn-7.4.1"
sources."acorn-node-1.8.2"
sources."acorn-walk-7.2.0"
@@ -84659,7 +86300,7 @@ in
sources."to-regex-range-5.0.1"
(sources."ts-node-10.9.1" // {
dependencies = [
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."arg-4.1.3"
];
@@ -84715,50 +86356,50 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- (sources."@swc/core-android-arm64-1.3.10" // {
+ (sources."@swc/core-android-arm64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- (sources."@swc/core-freebsd-x64-1.3.10" // {
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ (sources."@swc/core-freebsd-x64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-linux-arm-gnueabihf-1.3.10" // {
+ (sources."@swc/core-linux-arm-gnueabihf-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- (sources."@swc/core-win32-arm64-msvc-1.3.10" // {
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ (sources."@swc/core-win32-arm64-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-win32-ia32-msvc-1.3.10" // {
+ (sources."@swc/core-win32-ia32-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-win32-x64-msvc-1.3.10"
- sources."@swc/wasm-1.3.10"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
+ sources."@swc/wasm-1.3.12"
sources."@tsconfig/node10-1.0.9"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."acorn-7.4.1"
sources."acorn-node-1.8.2"
sources."acorn-walk-7.2.0"
@@ -84828,7 +86469,7 @@ in
sources."to-regex-range-5.0.1"
(sources."ts-node-10.9.1" // {
dependencies = [
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."arg-4.1.3"
];
@@ -84866,50 +86507,50 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- (sources."@swc/core-android-arm64-1.3.10" // {
+ (sources."@swc/core-android-arm64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- (sources."@swc/core-freebsd-x64-1.3.10" // {
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ (sources."@swc/core-freebsd-x64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-linux-arm-gnueabihf-1.3.10" // {
+ (sources."@swc/core-linux-arm-gnueabihf-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- (sources."@swc/core-win32-arm64-msvc-1.3.10" // {
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ (sources."@swc/core-win32-arm64-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-win32-ia32-msvc-1.3.10" // {
+ (sources."@swc/core-win32-ia32-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-win32-x64-msvc-1.3.10"
- sources."@swc/wasm-1.3.10"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
+ sources."@swc/wasm-1.3.12"
sources."@tsconfig/node10-1.0.9"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."acorn-7.4.1"
sources."acorn-node-1.8.2"
sources."acorn-walk-7.2.0"
@@ -84982,7 +86623,7 @@ in
sources."to-regex-range-5.0.1"
(sources."ts-node-10.9.1" // {
dependencies = [
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."arg-4.1.3"
];
@@ -85024,7 +86665,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/responselike-1.0.0"
sources."accepts-1.3.8"
sources."ansi-styles-4.3.0"
@@ -85032,7 +86673,7 @@ in
sources."asynckit-0.4.0"
sources."atob-2.1.2"
sources."available-typed-arrays-1.0.5"
- sources."aws-sdk-2.1238.0"
+ sources."aws-sdk-2.1246.0"
sources."base64-js-1.5.1"
(sources."basic-auth-2.0.1" // {
dependencies = [
@@ -85085,8 +86726,6 @@ in
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
- sources."es-abstract-1.20.4"
- sources."es-to-primitive-1.2.1"
sources."escape-goat-3.0.0"
sources."escape-html-1.0.3"
sources."escape-string-regexp-4.0.0"
@@ -85115,17 +86754,14 @@ in
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
- sources."functions-have-names-1.2.3"
sources."generic-pool-3.8.2"
sources."get-intrinsic-1.1.3"
sources."get-stream-5.2.0"
- sources."get-symbol-description-1.0.0"
+ sources."gopd-1.0.1"
sources."got-11.8.5"
sources."graceful-fs-4.2.10"
sources."grant-4.7.0"
sources."has-1.0.3"
- sources."has-bigints-1.0.2"
sources."has-flag-4.0.0"
sources."has-property-descriptors-1.0.0"
sources."has-symbols-1.0.3"
@@ -85137,24 +86773,13 @@ in
sources."iconv-lite-0.4.24"
sources."ieee754-1.1.13"
sources."inherits-2.0.4"
- sources."internal-slot-1.0.3"
sources."ipaddr.js-2.0.1"
sources."is-arguments-1.1.1"
- sources."is-bigint-1.0.4"
- sources."is-boolean-object-1.1.2"
sources."is-callable-1.2.7"
- sources."is-date-object-1.0.5"
sources."is-generator-function-1.0.10"
sources."is-nan-1.3.2"
- sources."is-negative-zero-2.0.2"
- sources."is-number-object-1.0.7"
- sources."is-regex-1.1.4"
- sources."is-shared-array-buffer-1.0.2"
sources."is-stream-2.0.1"
- sources."is-string-1.0.7"
- sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
- sources."is-weakref-1.0.2"
+ sources."is-typed-array-1.1.10"
sources."isarray-1.0.0"
sources."jmespath-0.16.0"
sources."js-base64-3.7.2"
@@ -85210,7 +86835,6 @@ in
sources."object-assign-4.1.1"
sources."object-inspect-1.12.2"
sources."object-keys-1.1.1"
- sources."object.assign-4.1.4"
sources."on-finished-2.4.1"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -85235,7 +86859,6 @@ in
sources."range-parser-1.2.1"
sources."raw-body-2.5.1"
sources."redis-4.2.0"
- sources."regexp.prototype.flags-1.4.3"
sources."request-compose-1.2.3"
(sources."request-oauth-0.0.3" // {
dependencies = [
@@ -85247,7 +86870,6 @@ in
sources."responselike-2.0.1"
sources."retry-0.12.0"
sources."safe-buffer-5.2.1"
- sources."safe-regex-test-1.0.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.1"
sources."semver-7.3.7"
@@ -85260,15 +86882,12 @@ in
sources."signal-exit-3.0.7"
sources."sorted-array-functions-1.3.0"
sources."statuses-2.0.1"
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
sources."supports-color-7.2.0"
sources."tdigest-0.1.2"
sources."toidentifier-1.0.1"
sources."tus-js-client-3.0.1"
sources."type-is-1.6.18"
sources."uid-safe-2.1.5"
- sources."unbox-primitive-1.0.2"
sources."unpipe-1.0.0"
sources."url-0.10.3"
sources."url-parse-1.5.10"
@@ -85279,8 +86898,7 @@ in
sources."uuid-8.0.0"
sources."validator-13.7.0"
sources."vary-1.1.2"
- sources."which-boxed-primitive-1.0.2"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
sources."wrappy-1.0.2"
sources."ws-8.8.1"
sources."xml2js-0.4.19"
@@ -85317,7 +86935,7 @@ in
sources."@apollo/utils.dropunuseddefinitions-1.1.0"
(sources."@apollo/utils.keyvaluecache-1.0.1" // {
dependencies = [
- sources."lru-cache-7.14.0"
+ sources."lru-cache-7.14.1"
];
})
sources."@apollo/utils.logger-1.0.1"
@@ -85329,20 +86947,20 @@ in
sources."@apollographql/apollo-tools-0.5.4"
sources."@apollographql/graphql-playground-html-1.6.29"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
(sources."@babel/core-7.19.6" // {
dependencies = [
sources."semver-6.3.0"
];
})
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9"
- (sources."@babel/helper-compilation-targets-7.19.3" // {
+ (sources."@babel/helper-compilation-targets-7.20.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -85366,13 +86984,13 @@ in
sources."@babel/helper-remap-async-to-generator-7.18.9"
sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.19.4"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helper-wrap-function-7.19.0"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -85383,10 +87001,10 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9"
- sources."@babel/plugin-proposal-async-generator-functions-7.19.1"
+ sources."@babel/plugin-proposal-async-generator-functions-7.20.1"
sources."@babel/plugin-proposal-class-properties-7.18.6"
sources."@babel/plugin-proposal-class-static-block-7.18.6"
sources."@babel/plugin-proposal-dynamic-import-7.18.6"
@@ -85407,7 +87025,7 @@ in
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
sources."@babel/plugin-syntax-flow-7.18.6"
- sources."@babel/plugin-syntax-import-assertions-7.18.6"
+ sources."@babel/plugin-syntax-import-assertions-7.20.0"
sources."@babel/plugin-syntax-json-strings-7.8.3"
sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3"
@@ -85417,14 +87035,14 @@ in
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
sources."@babel/plugin-syntax-private-property-in-object-7.14.5"
sources."@babel/plugin-syntax-top-level-await-7.14.5"
- sources."@babel/plugin-syntax-typescript-7.18.6"
+ sources."@babel/plugin-syntax-typescript-7.20.0"
sources."@babel/plugin-transform-arrow-functions-7.18.6"
sources."@babel/plugin-transform-async-to-generator-7.18.6"
sources."@babel/plugin-transform-block-scoped-functions-7.18.6"
- sources."@babel/plugin-transform-block-scoping-7.19.4"
+ sources."@babel/plugin-transform-block-scoping-7.20.0"
sources."@babel/plugin-transform-classes-7.19.0"
sources."@babel/plugin-transform-computed-properties-7.18.9"
- sources."@babel/plugin-transform-destructuring-7.19.4"
+ sources."@babel/plugin-transform-destructuring-7.20.0"
sources."@babel/plugin-transform-dotall-regex-7.18.6"
sources."@babel/plugin-transform-duplicate-keys-7.18.9"
sources."@babel/plugin-transform-exponentiation-operator-7.18.6"
@@ -85440,7 +87058,7 @@ in
sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1"
sources."@babel/plugin-transform-new-target-7.18.6"
sources."@babel/plugin-transform-object-super-7.18.6"
- sources."@babel/plugin-transform-parameters-7.18.8"
+ sources."@babel/plugin-transform-parameters-7.20.1"
sources."@babel/plugin-transform-property-literals-7.18.6"
sources."@babel/plugin-transform-regenerator-7.18.6"
sources."@babel/plugin-transform-reserved-words-7.18.6"
@@ -85449,7 +87067,7 @@ in
sources."@babel/plugin-transform-sticky-regex-7.18.6"
sources."@babel/plugin-transform-template-literals-7.18.9"
sources."@babel/plugin-transform-typeof-symbol-7.18.9"
- sources."@babel/plugin-transform-typescript-7.19.3"
+ sources."@babel/plugin-transform-typescript-7.20.0"
sources."@babel/plugin-transform-unicode-escapes-7.18.10"
sources."@babel/plugin-transform-unicode-regex-7.18.6"
(sources."@babel/preset-env-7.19.4" // {
@@ -85467,16 +87085,16 @@ in
sources."semver-5.7.1"
];
})
- sources."@babel/runtime-7.19.4"
+ sources."@babel/runtime-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@graphql-tools/merge-8.3.1"
- (sources."@graphql-tools/mock-8.7.6" // {
+ (sources."@graphql-tools/mock-8.7.10" // {
dependencies = [
- sources."@graphql-tools/merge-8.3.6"
- sources."@graphql-tools/schema-9.0.4"
- sources."@graphql-tools/utils-8.12.0"
+ sources."@graphql-tools/merge-8.3.10"
+ sources."@graphql-tools/schema-9.0.8"
+ sources."@graphql-tools/utils-9.0.1"
];
})
sources."@graphql-tools/schema-8.5.1"
@@ -85523,7 +87141,7 @@ in
})
sources."@types/long-4.0.2"
sources."@types/mime-3.0.1"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/normalize-package-data-2.4.1"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -85553,12 +87171,12 @@ in
sources."ansi-styles-4.3.0"
sources."apollo-datasource-3.3.2"
sources."apollo-reporting-protobuf-3.3.3"
- sources."apollo-server-core-3.10.3"
+ sources."apollo-server-core-3.11.0"
sources."apollo-server-env-4.2.1"
sources."apollo-server-errors-3.3.1"
- sources."apollo-server-express-3.10.3"
- sources."apollo-server-plugin-base-3.6.3"
- sources."apollo-server-types-3.6.3"
+ sources."apollo-server-express-3.11.0"
+ sources."apollo-server-plugin-base-3.7.0"
+ sources."apollo-server-types-3.7.0"
(sources."archive-type-4.0.0" // {
dependencies = [
sources."file-type-4.4.0"
@@ -85627,7 +87245,7 @@ in
})
sources."call-bind-1.0.2"
sources."camelcase-6.3.0"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."caw-2.0.1"
sources."chalk-4.1.2"
sources."chardet-0.7.0"
@@ -85676,7 +87294,7 @@ in
sources."cookie-0.5.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- sources."core-js-compat-3.25.5"
+ sources."core-js-compat-3.26.0"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
(sources."cross-spawn-6.0.5" // {
@@ -85845,7 +87463,7 @@ in
sources."which-2.0.2"
];
})
- sources."flow-parser-0.190.1"
+ sources."flow-parser-0.191.0"
sources."for-in-1.0.2"
sources."forwarded-0.2.0"
sources."fragment-cache-0.2.1"
@@ -85919,7 +87537,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-2.0.0"
- sources."inquirer-8.2.4"
+ sources."inquirer-8.2.5"
sources."into-stream-3.1.0"
sources."ipaddr.js-1.9.1"
sources."is-accessor-descriptor-1.0.0"
@@ -85957,7 +87575,7 @@ in
];
})
sources."javascript-stringify-2.1.0"
- sources."joi-17.6.4"
+ sources."joi-17.7.0"
sources."js-message-1.0.7"
sources."js-tokens-4.0.0"
sources."js-yaml-4.1.0"
@@ -86030,6 +87648,7 @@ in
sources."negotiator-0.6.3"
sources."neo-async-2.6.2"
sources."nice-try-1.0.5"
+ sources."node-abort-controller-3.0.1"
sources."node-dir-0.1.17"
sources."node-fetch-2.6.7"
sources."node-gyp-build-4.5.0"
@@ -86336,7 +87955,7 @@ in
sources."toidentifier-1.0.1"
sources."tr46-0.0.3"
sources."trim-repeated-1.0.0"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."tunnel-agent-0.6.0"
sources."type-fest-0.6.0"
sources."type-is-1.6.18"
@@ -86547,13 +88166,13 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/generator-7.19.6"
+ sources."@babel/generator-7.20.1"
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/types-7.19.4"
+ sources."@babel/types-7.20.0"
sources."@jridgewell/gen-mapping-0.3.2"
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/set-array-1.1.2"
@@ -86653,7 +88272,7 @@ in
sources."@types/parse5-6.0.3"
sources."@types/supports-color-8.1.1"
sources."@types/unist-2.0.6"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-jsx-5.3.2"
sources."ansi-align-3.0.1"
sources."ansi-regex-5.0.1"
@@ -86712,7 +88331,7 @@ in
sources."cuss-2.0.0"
sources."debug-4.3.4"
sources."decamelize-5.0.1"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."decamelize-1.2.0"
sources."map-obj-1.0.1"
@@ -87105,22 +88724,22 @@ in
alloy = nodeEnv.buildNodePackage {
name = "alloy";
packageName = "alloy";
- version = "2.0.1";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/alloy/-/alloy-2.0.1.tgz";
- sha512 = "gglZ9mHhl1y+HRXtJAQxbz48Znn0MtVxBeUEvnchn/q/b81H35TCm708N+Y4nK/DLvfoAxEqDEkVOeueo9InJA==";
+ url = "https://registry.npmjs.org/alloy/-/alloy-2.0.2.tgz";
+ sha512 = "FhZLGIKAewqzsJ50H44NU/PTAW2vt00M8dMkO6BFgCH7Z925+8bfcQ9PCBAufynDQXrAR6h7Kd9Im4YXyizbIA==";
};
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
sources."@babel/core-7.19.6"
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
- sources."@babel/helper-compilation-targets-7.19.3"
+ sources."@babel/helper-compilation-targets-7.20.0"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
sources."@babel/helper-hoist-variables-7.18.6"
@@ -87131,18 +88750,18 @@ in
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/set-array-1.1.2"
sources."@jridgewell/sourcemap-codec-1.4.14"
sources."@jridgewell/trace-mapping-0.3.17"
- sources."@xmldom/xmldom-0.8.3"
+ sources."@xmldom/xmldom-0.8.5"
sources."JSV-4.0.2"
sources."ansi-styles-3.2.1"
sources."array-unique-0.3.2"
@@ -87150,7 +88769,7 @@ in
sources."balanced-match-1.0.2"
sources."brace-expansion-2.0.1"
sources."browserslist-4.21.4"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -87436,7 +89055,7 @@ in
];
})
sources."y18n-5.0.8"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
sources."ylru-1.3.2"
];
@@ -87461,7 +89080,7 @@ in
dependencies = [
sources."@types/glob-7.2.0"
sources."@types/minimatch-5.1.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -87539,14 +89158,14 @@ in
autoprefixer = nodeEnv.buildNodePackage {
name = "autoprefixer";
packageName = "autoprefixer";
- version = "10.4.12";
+ version = "10.4.13";
src = fetchurl {
- url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.12.tgz";
- sha512 = "WrCGV9/b97Pa+jtwf5UGaRjgQIg7OK3D06GnoYoZNcG1Xb8Gt3EfuKjlhh9i/VtT16g6PYjZ69jdJ2g8FxSC4Q==";
+ url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz";
+ sha512 = "49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==";
};
dependencies = [
sources."browserslist-4.21.4"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."electron-to-chromium-1.4.284"
sources."escalade-3.1.1"
sources."fraction.js-4.2.0"
@@ -87591,7 +89210,7 @@ in
sources."semver-7.3.8"
sources."source-map-0.6.1"
sources."tr46-0.0.3"
- sources."uglify-js-3.17.3"
+ sources."uglify-js-3.17.4"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."wordwrap-1.0.0"
@@ -87617,7 +89236,7 @@ in
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/yauzl-2.10.0"
sources."agent-base-6.0.2"
sources."ansi-escapes-4.3.2"
@@ -87625,7 +89244,7 @@ in
sources."ansi-styles-4.3.0"
sources."ast-types-0.13.4"
sources."available-typed-arrays-1.0.5"
- (sources."aws-sdk-2.1238.0" // {
+ (sources."aws-sdk-2.1246.0" // {
dependencies = [
sources."uuid-8.0.0"
];
@@ -87665,7 +89284,6 @@ in
sources."debug-4.3.4"
sources."deep-is-0.1.4"
sources."defaults-1.0.4"
- sources."define-properties-1.1.4"
sources."degenerator-2.2.0"
sources."depd-2.0.0"
sources."devtools-protocol-0.0.901419"
@@ -87676,8 +89294,6 @@ in
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."entities-2.2.0"
- sources."es-abstract-1.20.4"
- sources."es-to-primitive-1.2.1"
sources."escape-string-regexp-1.0.5"
sources."escodegen-1.14.3"
sources."esprima-4.0.1"
@@ -87703,18 +89319,14 @@ in
];
})
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
- sources."functions-have-names-1.2.3"
sources."get-intrinsic-1.1.3"
sources."get-stream-5.2.0"
- sources."get-symbol-description-1.0.0"
sources."get-uri-3.0.2"
sources."glob-7.2.3"
+ sources."gopd-1.0.1"
sources."graceful-fs-4.2.10"
sources."has-1.0.3"
- sources."has-bigints-1.0.2"
sources."has-flag-4.0.0"
- sources."has-property-descriptors-1.0.0"
sources."has-symbols-1.0.3"
sources."has-tostringtag-1.0.0"
sources."htmlparser2-6.1.0"
@@ -87726,26 +89338,15 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-2.0.0"
- sources."inquirer-8.2.4"
- sources."internal-slot-1.0.3"
+ sources."inquirer-8.2.5"
sources."ip-1.1.8"
sources."is-arguments-1.1.1"
- sources."is-bigint-1.0.4"
- sources."is-boolean-object-1.1.2"
sources."is-callable-1.2.7"
- sources."is-date-object-1.0.5"
sources."is-fullwidth-code-point-3.0.0"
sources."is-generator-function-1.0.10"
sources."is-interactive-1.0.0"
- sources."is-negative-zero-2.0.2"
- sources."is-number-object-1.0.7"
- sources."is-regex-1.1.4"
- sources."is-shared-array-buffer-1.0.2"
- sources."is-string-1.0.7"
- sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
+ sources."is-typed-array-1.1.10"
sources."is-unicode-supported-0.1.0"
- sources."is-weakref-1.0.2"
sources."isarray-1.0.0"
sources."jmespath-0.16.0"
sources."jsonfile-4.0.0"
@@ -87764,9 +89365,6 @@ in
sources."node-fetch-2.6.1"
sources."node-gyp-build-4.5.0"
sources."nth-check-2.1.1"
- sources."object-inspect-1.12.2"
- sources."object-keys-1.1.1"
- sources."object.assign-4.1.4"
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."optionator-0.8.3"
@@ -87798,17 +89396,14 @@ in
sources."querystring-0.2.0"
sources."raw-body-2.5.1"
sources."readable-stream-3.6.0"
- sources."regexp.prototype.flags-1.4.3"
sources."restore-cursor-3.1.0"
sources."rimraf-3.0.2"
sources."run-async-2.4.1"
sources."rxjs-7.5.7"
sources."safe-buffer-5.2.1"
- sources."safe-regex-test-1.0.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.1"
sources."setprototypeof-1.2.0"
- sources."side-channel-1.0.4"
sources."signal-exit-3.0.7"
sources."smart-buffer-4.2.0"
(sources."socks-2.7.1" // {
@@ -87820,8 +89415,6 @@ in
sources."source-map-0.6.1"
sources."statuses-2.0.1"
sources."string-width-4.2.3"
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."supports-color-7.2.0"
@@ -87834,10 +89427,9 @@ in
sources."through-2.3.8"
sources."tmp-0.0.33"
sources."toidentifier-1.0.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-check-0.3.2"
sources."type-fest-0.21.3"
- sources."unbox-primitive-1.0.2"
(sources."unbzip2-stream-1.3.3" // {
dependencies = [
sources."buffer-5.7.1"
@@ -87851,8 +89443,7 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-8.3.2"
sources."wcwidth-1.0.1"
- sources."which-boxed-primitive-1.0.2"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
sources."word-wrap-1.2.3"
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
@@ -87876,10 +89467,10 @@ in
aws-cdk = nodeEnv.buildNodePackage {
name = "aws-cdk";
packageName = "aws-cdk";
- version = "2.47.0";
+ version = "2.50.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.47.0.tgz";
- sha512 = "v0S98ddAQ6bbe3uc7UvoxcQGebeIxZBv9tqvfj1f6IpauWpodApgX7s0yJtGbRWIX120Z8eaO8m/M+BeGrpRDQ==";
+ url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.50.0.tgz";
+ sha512 = "55vmKTf2DZRqioumVfXn+S0H9oAbpRK3HFHY8EjZ5ykR5tq2+XiMWEZkYduX2HJhVAeHJJIS6h+Okk3smZjeqw==";
};
dependencies = [
sources."fsevents-2.3.2"
@@ -87974,7 +89565,7 @@ in
sources."crypto-random-string-2.0.0"
sources."debug-4.3.4"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -88005,7 +89596,7 @@ in
sources."function-bind-1.1.1"
sources."get-stream-4.1.0"
sources."git-clone-0.1.0"
- sources."github-slugger-1.4.0"
+ sources."github-slugger-1.5.0"
sources."github-url-to-object-4.0.6"
sources."glob-7.2.3"
sources."glob-option-error-1.0.0"
@@ -88315,10 +89906,10 @@ in
balanceofsatoshis = nodeEnv.buildNodePackage {
name = "balanceofsatoshis";
packageName = "balanceofsatoshis";
- version = "13.1.7";
+ version = "13.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-13.1.7.tgz";
- sha512 = "HyphAJyvY6od+Fxi8MwRiYA2bHDDvE8W9PyKgHLS0WGaGYfyerUhv2k3W5rG8BAoFU1IGbt4lpfb4bNqjf9oDA==";
+ url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-13.3.6.tgz";
+ sha512 = "b+flUpyCxX/fDLDdzrviqGAgBXGFNUBVo3CTN0YOGavYE8NacPcYQz1TGSeHG/58c8mkFpBjHCx1I1F0enlL9w==";
};
dependencies = [
(sources."@alexbosworth/caporal-1.4.4" // {
@@ -88367,7 +89958,7 @@ in
sources."@types/express-serve-static-core-4.17.31"
sources."@types/long-4.0.2"
sources."@types/mime-3.0.1"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/request-2.48.8"
@@ -88604,19 +90195,7 @@ in
sources."ecpair-2.0.1"
];
})
- (sources."ln-accounting-6.0.0" // {
- dependencies = [
- sources."@grpc/grpc-js-1.7.1"
- sources."@grpc/proto-loader-0.7.3"
- sources."@types/express-4.17.14"
- sources."@types/node-18.8.1"
- sources."lightning-6.2.0"
- sources."ln-service-54.2.0"
- sources."type-fest-3.0.0"
- sources."ws-8.9.0"
- ];
- })
- (sources."ln-service-54.2.3" // {
+ (sources."ln-accounting-6.1.0" // {
dependencies = [
sources."@grpc/grpc-js-1.7.2"
sources."@grpc/proto-loader-0.7.3"
@@ -88625,54 +90204,59 @@ in
sources."body-parser-1.20.1"
sources."express-4.18.2"
sources."lightning-6.2.4"
+ sources."ln-service-54.2.3"
sources."qs-6.11.0"
sources."safe-buffer-5.2.1"
sources."type-fest-3.1.0"
sources."ws-8.9.0"
];
})
- sources."ln-sync-4.0.4"
- (sources."ln-telegram-4.0.0" // {
+ (sources."ln-service-54.2.5" // {
dependencies = [
- sources."@grpc/grpc-js-1.7.1"
+ sources."@grpc/grpc-js-1.7.3"
sources."@grpc/proto-loader-0.7.3"
sources."@types/express-4.17.14"
- sources."@types/node-18.8.4"
sources."body-parser-1.20.1"
- sources."ecpair-2.0.1"
+ sources."bolt09-0.2.4"
sources."express-4.18.2"
- sources."lightning-6.2.3"
- sources."ln-service-54.2.2"
- (sources."ln-sync-3.14.0" // {
- dependencies = [
- sources."@grpc/grpc-js-1.6.11"
- sources."@grpc/proto-loader-0.7.2"
- sources."@types/express-4.17.13"
- sources."@types/node-18.7.14"
- sources."body-parser-1.20.0"
- sources."express-4.18.1"
- sources."lightning-5.20.2"
- sources."ln-service-53.22.0"
- sources."qs-6.10.3"
- sources."type-fest-2.19.0"
- sources."ws-8.8.1"
- ];
- })
- (sources."paid-services-4.0.0" // {
- dependencies = [
- sources."@types/node-18.8.1"
- sources."body-parser-1.20.0"
- sources."ecpair-2.1.0"
- sources."express-4.18.1"
- sources."lightning-6.2.0"
- sources."ln-service-54.2.0"
- sources."qs-6.10.3"
- sources."type-fest-3.0.0"
- ];
- })
+ sources."lightning-6.2.6"
sources."qs-6.11.0"
sources."safe-buffer-5.2.1"
sources."type-fest-3.1.0"
+ sources."ws-8.10.0"
+ ];
+ })
+ (sources."ln-sync-4.0.4" // {
+ dependencies = [
+ sources."@grpc/grpc-js-1.7.2"
+ sources."@grpc/proto-loader-0.7.3"
+ sources."@types/express-4.17.14"
+ sources."@types/node-18.11.2"
+ sources."body-parser-1.20.1"
+ sources."express-4.18.2"
+ sources."lightning-6.2.4"
+ sources."ln-service-54.2.3"
+ sources."qs-6.11.0"
+ sources."safe-buffer-5.2.1"
+ sources."type-fest-3.1.0"
+ sources."ws-8.9.0"
+ ];
+ })
+ (sources."ln-telegram-4.2.0" // {
+ dependencies = [
+ sources."@grpc/grpc-js-1.7.2"
+ sources."@grpc/proto-loader-0.7.3"
+ sources."@types/express-4.17.14"
+ sources."@types/node-18.11.2"
+ sources."body-parser-1.20.1"
+ sources."express-4.18.2"
+ sources."lightning-6.2.4"
+ sources."ln-service-54.2.3"
+ sources."paid-services-4.0.1"
+ sources."qs-6.11.0"
+ sources."safe-buffer-5.2.1"
+ sources."table-6.8.0"
+ sources."type-fest-3.1.0"
sources."ws-8.9.0"
];
})
@@ -88742,49 +90326,26 @@ in
sources."os-shim-0.1.3"
sources."os-tmpdir-1.0.2"
sources."p2tr-1.3.2"
- sources."paid-services-4.0.1"
+ sources."paid-services-4.0.4"
sources."parseurl-1.3.3"
sources."path-to-regexp-0.1.7"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
- (sources."probing-2.0.6" // {
+ (sources."probing-3.0.0" // {
dependencies = [
- sources."@grpc/grpc-js-1.6.7"
- sources."@grpc/proto-loader-0.6.12"
- sources."@types/node-17.0.38"
- sources."async-3.2.3"
- sources."asyncjs-util-1.2.9"
- sources."bitcoinjs-lib-6.0.1"
- sources."bn.js-5.2.0"
- sources."ecpair-2.0.1"
- (sources."invoices-2.0.6" // {
- dependencies = [
- sources."bolt07-1.8.1"
- ];
- })
- (sources."lightning-5.16.1" // {
- dependencies = [
- sources."bn.js-5.2.1"
- (sources."bolt07-1.8.1" // {
- dependencies = [
- sources."bn.js-5.2.0"
- ];
- })
- ];
- })
- (sources."ln-service-53.17.1" // {
- dependencies = [
- sources."bolt07-1.8.1"
- ];
- })
- sources."protobufjs-6.11.3"
- (sources."psbt-2.3.0" // {
- dependencies = [
- sources."bn.js-5.2.1"
- ];
- })
- sources."type-fest-2.13.0"
- sources."ws-8.7.0"
+ sources."@grpc/grpc-js-1.7.3"
+ sources."@grpc/proto-loader-0.7.3"
+ sources."@types/express-4.17.14"
+ sources."@types/node-18.11.7"
+ sources."body-parser-1.20.1"
+ sources."bolt09-0.2.4"
+ sources."express-4.18.2"
+ sources."lightning-6.2.5"
+ sources."ln-service-54.2.4"
+ sources."qs-6.11.0"
+ sources."safe-buffer-5.2.1"
+ sources."type-fest-3.1.0"
+ sources."ws-8.10.0"
];
})
sources."process-nextick-args-2.0.1"
@@ -88848,7 +90409,7 @@ in
sources."string_decoder-1.1.1"
sources."strip-ansi-6.0.1"
sources."supports-color-2.0.0"
- sources."table-6.8.0"
+ sources."table-6.8.1"
(sources."tabtab-2.2.2" // {
dependencies = [
sources."ansi-regex-2.1.1"
@@ -88867,7 +90428,7 @@ in
sources."tr46-0.0.3"
sources."triple-beam-1.3.0"
sources."truncate-utf8-bytes-1.0.2"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."tweetnacl-1.0.3"
sources."tweetnacl-util-0.15.1"
sources."type-fest-2.19.0"
@@ -89227,7 +90788,6 @@ in
sources."create-hmac-1.1.7"
sources."crypto-browserify-3.12.0"
sources."dash-ast-1.0.0"
- sources."define-properties-1.1.4"
sources."defined-1.0.1"
sources."deps-sort-2.0.1"
sources."des.js-1.0.1"
@@ -89244,23 +90804,17 @@ in
sources."bn.js-4.12.0"
];
})
- sources."es-abstract-1.20.4"
- sources."es-to-primitive-1.2.1"
sources."events-3.3.0"
sources."evp_bytestokey-1.0.3"
sources."fast-safe-stringify-2.1.1"
sources."for-each-0.3.3"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
- sources."functions-have-names-1.2.3"
sources."get-assigned-identifiers-1.2.0"
sources."get-intrinsic-1.1.3"
- sources."get-symbol-description-1.0.0"
sources."glob-7.2.3"
+ sources."gopd-1.0.1"
sources."has-1.0.3"
- sources."has-bigints-1.0.2"
- sources."has-property-descriptors-1.0.0"
sources."has-symbols-1.0.3"
sources."has-tostringtag-1.0.0"
(sources."hash-base-3.1.0" // {
@@ -89277,23 +90831,12 @@ in
sources."inherits-2.0.4"
sources."inline-source-map-0.6.2"
sources."insert-module-globals-7.2.1"
- sources."internal-slot-1.0.3"
sources."is-arguments-1.1.1"
- sources."is-bigint-1.0.4"
- sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.7"
sources."is-core-module-2.11.0"
- sources."is-date-object-1.0.5"
sources."is-generator-function-1.0.10"
- sources."is-negative-zero-2.0.2"
- sources."is-number-object-1.0.7"
- sources."is-regex-1.1.4"
- sources."is-shared-array-buffer-1.0.2"
- sources."is-string-1.0.7"
- sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
- sources."is-weakref-1.0.2"
+ sources."is-typed-array-1.1.10"
sources."isarray-1.0.0"
sources."jsonparse-1.3.1"
sources."labeled-stream-splicer-2.0.2"
@@ -89311,9 +90854,6 @@ in
sources."mkdirp-classic-0.5.3"
sources."module-deps-6.2.3"
sources."object-assign-4.1.1"
- sources."object-inspect-1.12.2"
- sources."object-keys-1.1.1"
- sources."object.assign-4.1.4"
sources."once-1.4.0"
sources."os-browserify-0.3.0"
sources."pako-1.0.11"
@@ -89343,16 +90883,13 @@ in
sources."string_decoder-1.1.1"
];
})
- sources."regexp.prototype.flags-1.4.3"
sources."resolve-1.22.1"
sources."ripemd160-2.0.2"
sources."safe-buffer-5.2.1"
- sources."safe-regex-test-1.0.0"
sources."safer-buffer-2.1.2"
sources."sha.js-2.4.11"
sources."shasum-object-1.0.0"
sources."shell-quote-1.7.4"
- sources."side-channel-1.0.4"
sources."simple-concat-1.0.1"
sources."source-map-0.5.7"
(sources."stream-browserify-3.0.0" // {
@@ -89367,8 +90904,6 @@ in
];
})
sources."stream-splicer-2.0.1"
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.3.0"
sources."subarg-1.0.0"
sources."supports-preserve-symlinks-flag-1.0.0"
@@ -89379,7 +90914,6 @@ in
sources."tty-browserify-0.0.1"
sources."typedarray-0.0.6"
sources."umd-3.0.3"
- sources."unbox-primitive-1.0.2"
sources."undeclared-identifiers-1.1.3"
(sources."url-0.11.0" // {
dependencies = [
@@ -89389,8 +90923,7 @@ in
sources."util-0.12.5"
sources."util-deprecate-1.0.2"
sources."vm-browserify-1.1.2"
- sources."which-boxed-primitive-1.0.2"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
sources."wrappy-1.0.2"
sources."xtend-4.0.2"
];
@@ -89416,7 +90949,7 @@ in
sources."@socket.io/component-emitter-3.1.0"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."accepts-1.3.8"
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
@@ -89608,7 +91141,7 @@ in
sources."ws-8.2.3"
sources."xmlhttprequest-ssl-2.0.0"
sources."y18n-5.0.8"
- (sources."yargs-17.6.0" // {
+ (sources."yargs-17.6.1" // {
dependencies = [
sources."ansi-regex-5.0.1"
sources."cliui-8.0.1"
@@ -89641,8 +91174,8 @@ in
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/parser-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@kwsites/file-exists-1.1.1"
sources."@kwsites/promise-deferred-1.1.1"
sources."@popperjs/core-2.11.6"
@@ -89758,7 +91291,7 @@ in
];
})
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -90108,7 +91641,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -90578,7 +92111,7 @@ in
sources."buffer-from-1.1.2"
sources."bytes-3.1.2"
sources."cache-base-1.0.1"
- sources."call-me-maybe-1.0.1"
+ sources."call-me-maybe-1.0.2"
sources."camelcase-4.1.0"
sources."camelcase-keys-4.2.0"
sources."capture-stack-trace-1.0.2"
@@ -90632,7 +92165,7 @@ in
sources."date-fns-1.30.1"
sources."debug-2.6.9"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -91204,10 +92737,10 @@ in
cdk8s-cli = nodeEnv.buildNodePackage {
name = "cdk8s-cli";
packageName = "cdk8s-cli";
- version = "2.1.24";
+ version = "2.1.34";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.1.24.tgz";
- sha512 = "MJ8WcIqXGBraAX6umbk0eKQsO8YhVNKco0fA1TzzFi+BTeygRNeMY/wZpFxxpx0JUrKHKPw2gXeg32Y2MRS8wg==";
+ url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.1.34.tgz";
+ sha512 = "Wo/Khjc0BKdGYYnxBdi4He3LJPmwCxgjjGlwh2ik01FFHJQm544Sfj/Unc3W6czwGU637yPRWgnY4NNvFQyxYg==";
};
dependencies = [
sources."@jsii/check-node-1.70.0"
@@ -91215,8 +92748,8 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-14.18.32"
- sources."@xmldom/xmldom-0.8.3"
+ sources."@types/node-14.18.33"
+ sources."@xmldom/xmldom-0.8.5"
sources."ajv-8.11.0"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -91225,8 +92758,8 @@ in
sources."braces-3.0.2"
sources."camelcase-6.3.0"
sources."case-1.6.3"
- sources."cdk8s-2.5.25"
- sources."cdk8s-plus-25-2.0.0-rc.21"
+ sources."cdk8s-2.5.34"
+ sources."cdk8s-plus-25-2.0.11"
sources."chalk-4.1.2"
sources."cliui-7.0.4"
sources."clone-2.1.2"
@@ -91239,7 +92772,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.30.0"
- sources."constructs-10.1.137"
+ sources."constructs-10.1.147"
sources."date-format-4.0.14"
sources."debug-4.3.4"
sources."decamelize-5.0.1"
@@ -91293,14 +92826,14 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.711" // {
+ (sources."jsii-srcmak-0.1.721" // {
dependencies = [
sources."fs-extra-9.1.0"
];
})
sources."json-schema-0.4.0"
sources."json-schema-traverse-1.0.0"
- sources."json2jsii-0.3.160"
+ sources."json2jsii-0.3.170"
sources."jsonfile-6.1.0"
sources."locate-path-5.0.0"
sources."lodash.truncate-4.4.2"
@@ -91345,14 +92878,14 @@ in
sources."string.prototype.repeat-0.2.0"
sources."strip-ansi-6.0.1"
sources."supports-color-7.2.0"
- sources."table-6.8.0"
+ sources."table-6.8.1"
sources."to-regex-range-5.0.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."typescript-3.9.10"
sources."universalify-2.0.0"
sources."uri-js-4.4.1"
sources."which-module-2.0.0"
- sources."workerpool-6.2.1"
+ sources."workerpool-6.3.0"
sources."wrap-ansi-7.0.0"
sources."xmlbuilder-15.1.1"
sources."y18n-5.0.8"
@@ -91382,23 +92915,23 @@ in
cdktf-cli = nodeEnv.buildNodePackage {
name = "cdktf-cli";
packageName = "cdktf-cli";
- version = "0.13.1";
+ version = "0.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.13.1.tgz";
- sha512 = "p8R0FTuCxrOEHC6JB2v8zTlK5YNJQBCGdv9lr+760YkImN1YJ+f9gYicd/1Xr6ZYgUOS2ExWENf+9c7Mz1CsWA==";
+ url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.13.2.tgz";
+ sha512 = "f09na5akCY9XFUEwx96s7ldLkcVje06vqe2E7DQh63nXhZwIk3ltBB/EeXBCtFSjIMQwOH4t1VedxHLrw9JWMA==";
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/generator-7.19.6"
+ sources."@babel/generator-7.20.1"
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/types-7.19.4"
- sources."@cdktf/hcl2cdk-0.13.1"
- sources."@cdktf/hcl2json-0.13.1"
- sources."@cdktf/provider-generator-0.13.1"
+ sources."@babel/types-7.20.0"
+ sources."@cdktf/hcl2cdk-0.13.2"
+ sources."@cdktf/hcl2json-0.13.2"
+ sources."@cdktf/provider-generator-0.13.2"
sources."@jridgewell/gen-mapping-0.3.2"
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/set-array-1.1.2"
@@ -91424,15 +92957,15 @@ in
sources."@sentry/node-6.19.7"
sources."@sentry/types-6.19.7"
sources."@sentry/utils-6.19.7"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/node-fetch-2.6.2"
sources."@types/prop-types-15.7.5"
- sources."@types/react-18.0.21"
+ sources."@types/react-18.0.24"
sources."@types/scheduler-0.16.2"
sources."@types/yargs-17.0.13"
sources."@types/yargs-parser-21.0.0"
sources."@types/yoga-layout-1.9.2"
- sources."@xmldom/xmldom-0.8.3"
+ sources."@xmldom/xmldom-0.8.5"
sources."agent-base-6.0.2"
sources."ajv-8.11.0"
(sources."ansi-escapes-4.3.2" // {
@@ -91453,7 +92986,7 @@ in
sources."bufferutil-4.0.7"
sources."camelcase-6.3.0"
sources."case-1.6.3"
- sources."cdktf-0.13.1"
+ sources."cdktf-0.13.2"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -91475,7 +93008,7 @@ in
sources."combined-stream-1.0.8"
sources."commonmark-0.30.0"
sources."concat-map-0.0.1"
- sources."constructs-10.1.137"
+ sources."constructs-10.1.147"
sources."convert-to-spaces-1.0.2"
sources."cookie-0.4.2"
sources."cross-spawn-7.0.3"
@@ -91511,7 +93044,7 @@ in
})
sources."glob-parent-5.1.2"
sources."graceful-fs-4.2.10"
- (sources."graphology-0.25.0" // {
+ (sources."graphology-0.25.1" // {
dependencies = [
sources."graphology-types-0.24.5"
];
@@ -91607,7 +93140,7 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-srcmak-0.1.711" // {
+ (sources."jsii-srcmak-0.1.721" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -91717,7 +93250,7 @@ in
sources."which-2.0.2"
sources."which-module-2.0.0"
sources."widest-line-3.1.0"
- sources."workerpool-6.2.1"
+ sources."workerpool-6.3.0"
(sources."wrap-ansi-6.2.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -91731,7 +93264,7 @@ in
sources."xmlbuilder-15.1.1"
sources."y18n-4.0.3"
sources."yallist-4.0.0"
- (sources."yargs-17.6.0" // {
+ (sources."yargs-17.6.1" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."cliui-8.0.1"
@@ -91834,7 +93367,7 @@ in
sources."color-name-1.1.3"
sources."cross-spawn-7.0.3"
sources."decamelize-5.0.1"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."decamelize-1.2.0"
sources."map-obj-1.0.1"
@@ -91979,10 +93512,10 @@ in
coc-clangd = nodeEnv.buildNodePackage {
name = "coc-clangd";
packageName = "coc-clangd";
- version = "0.26.1";
+ version = "0.26.2";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.26.1.tgz";
- sha512 = "ibwBUnjsG6mihgJHcx/qy/2m95tgN1QyL8QphcN0fLsmvLS2lNFbS4sGXdyYH4KwyjH8+xR3/0DrYxTlLSbWhQ==";
+ url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.26.2.tgz";
+ sha512 = "d2v66ZdMrEiWd4qBlXOWZ7faHeuWChdr+9J2PksSuJPBC7tSrfSF9KbZHsHQrUrOjCrGUHkYDVkS9D0IkK89uw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -92060,7 +93593,7 @@ in
sources."dockerfile-language-server-nodejs-0.2.2"
sources."dockerfile-language-service-0.1.1"
sources."dockerfile-utils-0.1.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."vscode-jsonrpc-8.0.2"
(sources."vscode-languageserver-7.0.0" // {
dependencies = [
@@ -92125,10 +93658,10 @@ in
coc-explorer = nodeEnv.buildNodePackage {
name = "coc-explorer";
packageName = "coc-explorer";
- version = "0.25.1";
+ version = "0.25.4";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.25.1.tgz";
- sha512 = "OC45CIqKjF7mEbjrF3Py9oQFyCv66TCThNILJpE0eMgnBgBaeDTwn+fIwbY2BYQGY2kA8VQpdZBNz3D2oIAgNg==";
+ url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.25.4.tgz";
+ sha512 = "2Bm+znIZxurdgYKolB93suCVQs2B5NI/6R30EkNxxkvpBFj5KYL+ST9azZmyaL8UmOs1L+Lqq8JLBtTANs428Q==";
};
dependencies = [
sources."@sindresorhus/chunkify-0.2.0"
@@ -92249,7 +93782,7 @@ in
};
dependencies = [
sources."isexe-2.0.0"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."vscode-languageserver-textdocument-1.0.7"
sources."vscode-uri-3.0.6"
sources."which-2.0.2"
@@ -92284,10 +93817,10 @@ in
coc-highlight = nodeEnv.buildNodePackage {
name = "coc-highlight";
packageName = "coc-highlight";
- version = "1.3.0";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-highlight/-/coc-highlight-1.3.0.tgz";
- sha512 = "TBBQiFtYPXN7qWBmDi+FEWcLddON8s4rcEmQXUGE7uOfNysNKZ6yVUBCnJbS+n8S+7m5d3yqUyhoG5RUeHJxCg==";
+ url = "https://registry.npmjs.org/coc-highlight/-/coc-highlight-2.0.4.tgz";
+ sha512 = "X6VGCqpDML0oRcyH77ANoQ0BAxEsQqVMB9OPbfXB/nSdN3xcO8+M1hNSJm4pBekvywxm6VQUsh/zFD4V55nxLw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -92375,10 +93908,10 @@ in
coc-json = nodeEnv.buildNodePackage {
name = "coc-json";
packageName = "coc-json";
- version = "1.6.1";
+ version = "1.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-json/-/coc-json-1.6.1.tgz";
- sha512 = "qRDwaa4PZUb7q0N/oGoUrhKeo+5A9haYggOkUjx3SMPMWh2Pxsck5eftZzyUgLZDh/fabrYP7kBYE9+n7u4gnw==";
+ url = "https://registry.npmjs.org/coc-json/-/coc-json-1.7.0.tgz";
+ sha512 = "3JoOzhzNsECYuxLbFnXtpDMEX6FtEEvZCnFowPrE7z3v1dNj6uumwMveqdLvg4qagAPOVVV/gaddDLDQmkwb3w==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -92410,15 +93943,15 @@ in
coc-ltex = nodeEnv.buildNodePackage {
name = "coc-ltex";
packageName = "coc-ltex";
- version = "13.0.1";
+ version = "13.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/coc-ltex/-/coc-ltex-13.1.0.tgz";
sha512 = "SnwfsF5dnU0T12bSe9sq2rdR/EoAqK4MxVljQM58YXpQKTps/HsCD6kiprk8oK/VMH8KaDwEEcxf2pVXq6yECQ==";
};
buildInputs = globalBuildInputs;
meta = {
- description = "Ltex extension for coc.nvim";
- homepage = "https://valentjn.github.io/ltex/";
+ description = "Grammar/spell checker using LanguageTool with support for LaTeX, Markdown, and others";
+ homepage = "https://valentjn.github.io/ltex";
license = "MPL-2.0";
};
production = true;
@@ -92452,7 +93985,7 @@ in
sha512 = "zFExh1wGAZl4LXSp76NAjWORO9Tyhfw8WtALnhDv741p4tjWjVSEl6GmXTQN0U0tXz8UZ8ln2rL2OaxOdgMCTA==";
};
dependencies = [
- sources."@chemzqm/neovim-5.7.10"
+ sources."@chemzqm/neovim-5.8.0"
sources."@tootallnate/once-1.1.2"
sources."agent-base-6.0.2"
sources."arch-2.2.0"
@@ -92618,10 +94151,10 @@ in
})
sources."strip-eof-1.0.0"
sources."strip-json-comments-2.0.1"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."tr46-0.0.3"
sources."traverse-0.3.9"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."unbox-primitive-1.0.2"
sources."universalify-0.1.2"
sources."unzipper-0.10.11"
@@ -92655,10 +94188,10 @@ in
coc-pairs = nodeEnv.buildNodePackage {
name = "coc-pairs";
packageName = "coc-pairs";
- version = "1.3.2";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-pairs/-/coc-pairs-1.3.2.tgz";
- sha512 = "dinOWxcKvSghIEyRHy0vfjIUturfX1HiRHZ+vyInHXP3lXFq1SQF3B9RzwHj1eXjfmqKMDVsgwjAftAx8j8Rbw==";
+ url = "https://registry.npmjs.org/coc-pairs/-/coc-pairs-1.4.0.tgz";
+ sha512 = "vIFgI26Z/3AdwyiN5m30q7Z4jIkHIelr9p+ywmPpITOpUW+ZIdYxpIIHAUdOCbM3X2jwxA4+kN0Dn3CBOlcQ5Q==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -92700,7 +94233,7 @@ in
sha512 = "yk7c8ELQixTwjXnG24htMTVoWb4C1UXazhs6MiQsUjjJKsuyFntodPtpvkEDyQ3rZKlx8LNCH5g/5N9W7hP8IA==";
};
dependencies = [
- sources."pyright-1.1.276"
+ sources."pyright-1.1.278"
];
buildInputs = globalBuildInputs;
meta = {
@@ -92774,10 +94307,10 @@ in
coc-rust-analyzer = nodeEnv.buildNodePackage {
name = "coc-rust-analyzer";
packageName = "coc-rust-analyzer";
- version = "0.69.1";
+ version = "0.69.4";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.69.1.tgz";
- sha512 = "SHm2LYXvkrKoQjuL0rX8gw2Vqv47G5muXA7r2mR45YySixRsQWlOtdM6SQg1R9LoHQjeSwGs3pxor6soi+eVnA==";
+ url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.69.4.tgz";
+ sha512 = "fdFjzQkQ1jklsBqxx0PhMGh/sSqQuFhQMSMd/bjtJiHfo0J6DmEPR92s8T9TLwZDnS9XDwb24W8Caky/CJnwEA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -92855,7 +94388,7 @@ in
sources."sshpk-1.17.0"
sources."stealthy-require-1.1.1"
sources."tough-cookie-2.5.0"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."tunnel-agent-0.6.0"
sources."turndown-7.1.1"
sources."tweetnacl-0.14.5"
@@ -92943,14 +94476,14 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
sources."@babel/core-7.19.6"
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
- sources."@babel/helper-compilation-targets-7.19.3"
+ sources."@babel/helper-compilation-targets-7.20.0"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
sources."@babel/helper-hoist-variables-7.18.6"
@@ -92961,16 +94494,16 @@ in
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/set-array-1.1.2"
@@ -93009,7 +94542,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -93031,7 +94564,7 @@ in
sources."cssesc-3.0.0"
sources."debug-4.3.4"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -93235,7 +94768,7 @@ in
sources."supports-color-5.5.0"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."svg-tags-1.0.0"
- sources."table-6.8.0"
+ sources."table-6.8.1"
sources."to-fast-properties-2.0.0"
sources."to-regex-range-5.0.1"
sources."trim-newlines-3.0.1"
@@ -93300,10 +94833,10 @@ in
coc-sqlfluff = nodeEnv.buildNodePackage {
name = "coc-sqlfluff";
packageName = "coc-sqlfluff";
- version = "0.10.5";
+ version = "0.10.6";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-sqlfluff/-/coc-sqlfluff-0.10.5.tgz";
- sha512 = "y4cu6CXCCBMWRZ33g0bQuFkbgU4bNk3YxxlI8lgGeNCUZg6Jtv7u8UCwPuZN5/R39Cl4C1A7256WpFCx0Ark8g==";
+ url = "https://registry.npmjs.org/coc-sqlfluff/-/coc-sqlfluff-0.10.6.tgz";
+ sha512 = "bPg2hpTZvsQmu2xObhOmmwxzJIcUig/53hoTHxvXl1g3DyitZEmjhH/4glJOEJdRW/ykFoek2tiK0eMTb2zauw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -93476,10 +95009,10 @@ in
coc-tsserver = nodeEnv.buildNodePackage {
name = "coc-tsserver";
packageName = "coc-tsserver";
- version = "1.11.12";
+ version = "1.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.11.12.tgz";
- sha512 = "pffJc102a8HRp9H7h4nyLUoQE9ZToWvx+lSTrFTbSgO9EKceGrUCdTBOryonbdhA1C7CPq9dDMJERlqH4XHdfQ==";
+ url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.12.0.tgz";
+ sha512 = "/rEwMZu8WJbmTVaupkZY4iXGe+lw30ZofEjx5rCKYlth73dRBWHAbkWFSxQCMFDZJCpv58d0KGCERB5oJc1n/A==";
};
dependencies = [
sources."typescript-4.8.4"
@@ -93497,10 +95030,10 @@ in
coc-ultisnips = nodeEnv.buildNodePackage {
name = "coc-ultisnips";
packageName = "coc-ultisnips";
- version = "1.2.3";
+ version = "1.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-ultisnips/-/coc-ultisnips-1.2.3.tgz";
- sha512 = "gefj80C24vZ9FTnFLWXhNC8aW9VBVQGELH0e80gAAZma/RY5FGOkzWVvtjO9vQqAVHt4TQUErybsf/en5ci82w==";
+ url = "https://registry.npmjs.org/coc-ultisnips/-/coc-ultisnips-1.2.4.tgz";
+ sha512 = "QDl3FYwrv9D4uAQNwS9NsMx757zyu9JSWEoFJi0YUAa3pDc2TrTXa15zmWGeHfn/qDiUTxjVqzJ8GhB8vBo7Ew==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -93675,7 +95208,7 @@ in
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- (sources."table-6.8.0" // {
+ (sources."table-6.8.1" // {
dependencies = [
sources."ajv-8.11.0"
sources."json-schema-traverse-1.0.0"
@@ -93774,10 +95307,10 @@ in
coc-yaml = nodeEnv.buildNodePackage {
name = "coc-yaml";
packageName = "coc-yaml";
- version = "1.8.0";
+ version = "1.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-yaml/-/coc-yaml-1.8.0.tgz";
- sha512 = "ttTi8SSoFPcKOWgY7H7E91zOYcycfsZdvA7jmZJOr+iWYGqR2LdvMvBpWpuV7oWSOF5a88zM/vb8P8aNefE04Q==";
+ url = "https://registry.npmjs.org/coc-yaml/-/coc-yaml-1.9.0.tgz";
+ sha512 = "3O5E/9qSIjxMfilrLTElmRk1drBr1ot2+1KTOKjFIBeQphi4QBvnDbtGtqMCy5odMowe6HbAeo7aIran6e4rGw==";
};
dependencies = [
sources."prettier-2.0.5"
@@ -94079,10 +95612,10 @@ in
sources."strip-ansi-6.0.1"
sources."supports-color-8.1.1"
sources."tree-kill-1.2.2"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."wrap-ansi-7.0.0"
sources."y18n-5.0.8"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
];
buildInputs = globalBuildInputs;
@@ -94206,7 +95739,7 @@ in
sources."dargs-7.0.0"
sources."dateformat-3.0.3"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -94348,7 +95881,7 @@ in
sources."through2-4.0.2"
sources."trim-newlines-3.0.1"
sources."type-fest-0.18.1"
- sources."uglify-js-3.17.3"
+ sources."uglify-js-3.17.4"
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
sources."validate-npm-package-license-3.0.4"
@@ -94913,8 +96446,8 @@ in
sources."strip-json-comments-2.0.1"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."systeminformation-5.12.7"
- sources."tar-6.1.11"
+ sources."systeminformation-5.12.11"
+ sources."tar-6.1.12"
sources."through-2.3.8"
sources."tmp-0.2.1"
sources."to-readable-stream-1.0.0"
@@ -95028,7 +96561,7 @@ in
sources."cp-file-9.1.0"
sources."cpy-9.0.1"
sources."decamelize-5.0.1"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."decamelize-1.2.0"
sources."map-obj-1.0.1"
@@ -95144,7 +96677,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -95409,10 +96942,10 @@ in
cspell = nodeEnv.buildNodePackage {
name = "cspell";
packageName = "cspell";
- version = "6.12.0";
+ version = "6.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell/-/cspell-6.12.0.tgz";
- sha512 = "ny4xVEPYFP2jVf5w71Mnk4HKj6RbPH+CMSzUrOMbYVVNnQUj3GLfzy5DrSFLG0zGa353ZRC4/s9MsEvnAL8mkA==";
+ url = "https://registry.npmjs.org/cspell/-/cspell-6.13.3.tgz";
+ sha512 = "ufhFCH9w/FOTJDYd4jExOFKMbz4fCvYxPOZQii5SMsZA64jDeqxX/HhRpUUjcsdQ27XqEZqwy2ta3voR9Lk4eA==";
};
dependencies = [
sources."@babel/code-frame-7.18.6"
@@ -95427,52 +96960,52 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@cspell/cspell-bundled-dicts-6.12.0"
- sources."@cspell/cspell-pipe-6.12.0"
- sources."@cspell/cspell-service-bus-6.12.0"
- sources."@cspell/cspell-types-6.12.0"
- sources."@cspell/dict-ada-2.0.1"
- sources."@cspell/dict-aws-2.0.0"
- sources."@cspell/dict-bash-2.0.4"
- sources."@cspell/dict-companies-2.0.14"
- sources."@cspell/dict-cpp-3.2.1"
- sources."@cspell/dict-cryptocurrencies-2.0.0"
- sources."@cspell/dict-csharp-3.0.1"
- sources."@cspell/dict-css-2.1.0"
- sources."@cspell/dict-dart-1.1.1"
- sources."@cspell/dict-django-2.0.0"
+ sources."@cspell/cspell-bundled-dicts-6.13.3"
+ sources."@cspell/cspell-pipe-6.13.3"
+ sources."@cspell/cspell-service-bus-6.13.3"
+ sources."@cspell/cspell-types-6.13.3"
+ sources."@cspell/dict-ada-3.0.0"
+ sources."@cspell/dict-aws-3.0.0"
+ sources."@cspell/dict-bash-3.0.0"
+ sources."@cspell/dict-companies-3.0.2"
+ sources."@cspell/dict-cpp-4.0.0"
+ sources."@cspell/dict-cryptocurrencies-3.0.1"
+ sources."@cspell/dict-csharp-4.0.1"
+ sources."@cspell/dict-css-3.0.0"
+ sources."@cspell/dict-dart-2.0.0"
+ sources."@cspell/dict-django-3.0.0"
sources."@cspell/dict-docker-1.1.1"
- sources."@cspell/dict-dotnet-2.0.1"
- sources."@cspell/dict-elixir-2.0.1"
+ sources."@cspell/dict-dotnet-3.0.1"
+ sources."@cspell/dict-elixir-3.0.0"
sources."@cspell/dict-en-gb-1.1.33"
- sources."@cspell/dict-en_us-2.3.3"
- sources."@cspell/dict-filetypes-2.1.1"
- sources."@cspell/dict-fonts-2.1.0"
- sources."@cspell/dict-fullstack-2.0.6"
- sources."@cspell/dict-git-1.0.1"
- sources."@cspell/dict-golang-3.0.1"
- sources."@cspell/dict-haskell-2.0.1"
- sources."@cspell/dict-html-3.3.2"
- sources."@cspell/dict-html-symbol-entities-3.0.0"
- sources."@cspell/dict-java-3.0.7"
- sources."@cspell/dict-latex-2.0.9"
- sources."@cspell/dict-lorem-ipsum-2.0.1"
- sources."@cspell/dict-lua-2.0.0"
- sources."@cspell/dict-node-3.0.1"
- sources."@cspell/dict-npm-3.1.3"
- sources."@cspell/dict-php-2.0.0"
- sources."@cspell/dict-powershell-2.0.0"
- sources."@cspell/dict-public-licenses-1.0.6"
- sources."@cspell/dict-python-3.0.6"
- sources."@cspell/dict-r-1.0.3"
- sources."@cspell/dict-ruby-2.0.2"
- sources."@cspell/dict-rust-2.0.1"
- sources."@cspell/dict-scala-2.0.0"
- sources."@cspell/dict-software-terms-2.3.0"
- sources."@cspell/dict-sql-1.0.4"
- sources."@cspell/dict-swift-1.0.3"
- sources."@cspell/dict-typescript-2.0.2"
- sources."@cspell/dict-vue-2.0.2"
+ sources."@cspell/dict-en_us-4.0.0"
+ sources."@cspell/dict-filetypes-3.0.0"
+ sources."@cspell/dict-fonts-3.0.0"
+ sources."@cspell/dict-fullstack-3.0.0"
+ sources."@cspell/dict-git-2.0.0"
+ sources."@cspell/dict-golang-4.0.0"
+ sources."@cspell/dict-haskell-3.0.0"
+ sources."@cspell/dict-html-4.0.0"
+ sources."@cspell/dict-html-symbol-entities-4.0.0"
+ sources."@cspell/dict-java-5.0.2"
+ sources."@cspell/dict-latex-3.0.0"
+ sources."@cspell/dict-lorem-ipsum-3.0.0"
+ sources."@cspell/dict-lua-3.0.0"
+ sources."@cspell/dict-node-4.0.1"
+ sources."@cspell/dict-npm-4.0.1"
+ sources."@cspell/dict-php-3.0.2"
+ sources."@cspell/dict-powershell-3.0.0"
+ sources."@cspell/dict-public-licenses-2.0.0"
+ sources."@cspell/dict-python-4.0.0"
+ sources."@cspell/dict-r-2.0.0"
+ sources."@cspell/dict-ruby-3.0.0"
+ sources."@cspell/dict-rust-3.0.0"
+ sources."@cspell/dict-scala-3.0.0"
+ sources."@cspell/dict-software-terms-3.0.2"
+ sources."@cspell/dict-sql-2.0.0"
+ sources."@cspell/dict-swift-2.0.0"
+ sources."@cspell/dict-typescript-3.0.1"
+ sources."@cspell/dict-vue-3.0.0"
sources."@types/parse-json-4.0.0"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -95492,13 +97025,13 @@ in
sources."core-util-is-1.0.3"
sources."cosmiconfig-7.0.1"
sources."crypto-random-string-2.0.0"
- sources."cspell-dictionary-6.12.0"
- sources."cspell-gitignore-6.12.0"
- sources."cspell-glob-6.12.0"
- sources."cspell-grammar-6.12.0"
- sources."cspell-io-6.12.0"
- sources."cspell-lib-6.12.0"
- sources."cspell-trie-lib-6.12.0"
+ sources."cspell-dictionary-6.13.3"
+ sources."cspell-gitignore-6.13.3"
+ sources."cspell-glob-6.13.3"
+ sources."cspell-grammar-6.13.3"
+ sources."cspell-io-6.13.3"
+ sources."cspell-lib-6.13.3"
+ sources."cspell-trie-lib-6.13.3"
sources."dot-prop-5.3.0"
sources."encoding-0.1.13"
sources."error-ex-1.3.2"
@@ -95718,7 +97251,7 @@ in
sources."bulk-write-stream-1.1.4"
sources."bytes-3.1.2"
sources."cache-base-1.0.1"
- sources."call-me-maybe-1.0.1"
+ sources."call-me-maybe-1.0.2"
sources."camelcase-4.1.0"
sources."capture-stack-trace-1.0.2"
sources."caseless-0.12.0"
@@ -96271,16 +97804,16 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
sources."@babel/core-7.19.6"
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9"
- sources."@babel/helper-compilation-targets-7.19.3"
+ sources."@babel/helper-compilation-targets-7.20.0"
sources."@babel/helper-create-class-features-plugin-7.19.0"
sources."@babel/helper-create-regexp-features-plugin-7.19.0"
sources."@babel/helper-define-polyfill-provider-0.3.3"
@@ -96296,18 +97829,18 @@ in
sources."@babel/helper-remap-async-to-generator-7.18.9"
sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.19.4"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helper-wrap-function-7.19.0"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9"
- sources."@babel/plugin-proposal-async-generator-functions-7.19.1"
+ sources."@babel/plugin-proposal-async-generator-functions-7.20.1"
sources."@babel/plugin-proposal-class-properties-7.18.6"
sources."@babel/plugin-proposal-class-static-block-7.18.6"
sources."@babel/plugin-proposal-dynamic-import-7.18.6"
@@ -96327,7 +97860,7 @@ in
sources."@babel/plugin-syntax-class-static-block-7.14.5"
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
- sources."@babel/plugin-syntax-import-assertions-7.18.6"
+ sources."@babel/plugin-syntax-import-assertions-7.20.0"
sources."@babel/plugin-syntax-json-strings-7.8.3"
sources."@babel/plugin-syntax-jsx-7.18.6"
sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
@@ -96341,10 +97874,10 @@ in
sources."@babel/plugin-transform-arrow-functions-7.18.6"
sources."@babel/plugin-transform-async-to-generator-7.18.6"
sources."@babel/plugin-transform-block-scoped-functions-7.18.6"
- sources."@babel/plugin-transform-block-scoping-7.19.4"
+ sources."@babel/plugin-transform-block-scoping-7.20.0"
sources."@babel/plugin-transform-classes-7.19.0"
sources."@babel/plugin-transform-computed-properties-7.18.9"
- sources."@babel/plugin-transform-destructuring-7.19.4"
+ sources."@babel/plugin-transform-destructuring-7.20.0"
sources."@babel/plugin-transform-dotall-regex-7.18.6"
sources."@babel/plugin-transform-duplicate-keys-7.18.9"
sources."@babel/plugin-transform-exponentiation-operator-7.18.6"
@@ -96359,7 +97892,7 @@ in
sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1"
sources."@babel/plugin-transform-new-target-7.18.6"
sources."@babel/plugin-transform-object-super-7.18.6"
- sources."@babel/plugin-transform-parameters-7.18.8"
+ sources."@babel/plugin-transform-parameters-7.20.1"
sources."@babel/plugin-transform-property-literals-7.18.6"
sources."@babel/plugin-transform-react-display-name-7.18.6"
sources."@babel/plugin-transform-react-jsx-7.19.0"
@@ -96377,13 +97910,13 @@ in
sources."@babel/preset-env-7.19.4"
sources."@babel/preset-modules-0.1.5"
sources."@babel/preset-react-7.18.6"
- sources."@babel/runtime-7.19.4"
+ sources."@babel/runtime-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
- sources."@blueprintjs/colors-4.1.7"
- sources."@blueprintjs/core-4.11.4"
- sources."@blueprintjs/icons-4.8.0"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
+ sources."@blueprintjs/colors-4.1.8"
+ sources."@blueprintjs/core-4.11.6"
+ sources."@blueprintjs/icons-4.10.0"
sources."@deltachat/message_parser_wasm-0.4.0"
sources."@deltachat/react-qr-reader-4.0.0"
sources."@electron/get-1.14.1"
@@ -96416,11 +97949,11 @@ in
sources."@types/mapbox-gl-0.54.5"
sources."@types/mime-types-2.1.1"
sources."@types/minimist-1.2.2"
- sources."@types/node-14.18.32"
+ sources."@types/node-14.18.33"
sources."@types/prop-types-15.7.5"
sources."@types/rc-1.2.1"
- sources."@types/react-17.0.50"
- sources."@types/react-dom-17.0.17"
+ sources."@types/react-17.0.52"
+ sources."@types/react-dom-17.0.18"
sources."@types/react-window-1.8.5"
sources."@types/react-window-infinite-loader-1.0.6"
sources."@types/scheduler-0.16.2"
@@ -96471,7 +98004,7 @@ in
})
sources."call-bind-1.0.2"
sources."camel-case-4.1.2"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."capital-case-1.0.4"
sources."chalk-2.4.2"
sources."change-case-4.1.2"
@@ -96504,7 +98037,7 @@ in
sources."constant-case-3.0.4"
sources."convert-source-map-1.9.0"
sources."copy-descriptor-0.1.1"
- sources."core-js-compat-3.25.5"
+ sources."core-js-compat-3.26.0"
sources."core-util-is-1.0.3"
sources."csscolorparser-1.0.3"
sources."csstype-3.1.1"
@@ -96526,7 +98059,7 @@ in
sources."earcut-2.2.4"
(sources."electron-18.3.15" // {
dependencies = [
- sources."@types/node-16.11.68"
+ sources."@types/node-16.18.3"
];
})
sources."electron-to-chromium-1.4.284"
@@ -96595,10 +98128,9 @@ in
sources."function-bind-1.1.1"
sources."functions-have-names-1.2.3"
sources."gensync-1.0.0-beta.2"
- sources."geojson-flatten-1.0.4"
+ sources."geojson-flatten-1.1.1"
sources."geojson-vt-3.2.1"
sources."get-intrinsic-1.1.3"
- sources."get-stdin-7.0.0"
sources."get-stream-6.0.1"
sources."get-value-2.0.6"
sources."gl-matrix-3.4.3"
@@ -96771,7 +98303,7 @@ in
sources."react-string-replace-1.1.0"
sources."react-transition-group-4.4.5"
sources."react-virtualized-auto-sizer-1.0.7"
- sources."react-window-1.8.7"
+ sources."react-window-1.8.8"
sources."react-window-infinite-loader-1.0.8"
sources."react-zoom-pan-pinch-2.1.3"
sources."readable-stream-2.3.7"
@@ -97094,15 +98626,15 @@ in
elasticdump = nodeEnv.buildNodePackage {
name = "elasticdump";
packageName = "elasticdump";
- version = "6.92.1";
+ version = "6.94.0";
src = fetchurl {
- url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.92.1.tgz";
- sha512 = "TrPHQ0rHsRbOfl4rWydGJ1vM+0KzZCkHylDpG9rowP9osEq/Q/DXCGCWjJ3u+COpNnGjFhcjXttzk+0hx3beMQ==";
+ url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.94.0.tgz";
+ sha512 = "zrtDTag8MMH0dieW4dsLB0DDIVki9viANxNtMQGKFhr4SudvC0vWe6IdxXbSK0Ynvlz+arz5JNQmLzGKO5BCGQ==";
};
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.18.32"
+ sources."@types/node-14.18.33"
sources."JSONStream-1.3.5"
sources."ajv-6.12.6"
sources."asn1-0.2.6"
@@ -97239,30 +98771,22 @@ in
"@electron-forge/cli" = nodeEnv.buildNodePackage {
name = "_at_electron-forge_slash_cli";
packageName = "@electron-forge/cli";
- version = "6.0.0-beta.67";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.67.tgz";
- sha512 = "kZKRQ/7XjCwX+3MWfHHbxcxhtoXTYTrfJVvkFNbJnw2jJlWK6HB7htfWHELYrCtZgpX0RkJsTE2LKE22eJ4SZA==";
+ url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0.tgz";
+ sha512 = "fdv4V1anQ+CQ9efTLOHoBjrlbT4imaS6czRh7P9LV4U3eDa3B6ofp9NpvLvRE/2Mckl4oDBA5GGRsUSsUwqMkg==";
};
dependencies = [
- sources."@electron-forge/async-ora-6.0.0-beta.67"
- sources."@electron-forge/core-6.0.0-beta.67"
- sources."@electron-forge/installer-base-6.0.0-beta.67"
- sources."@electron-forge/installer-darwin-6.0.0-beta.67"
- sources."@electron-forge/installer-deb-6.0.0-beta.67"
- sources."@electron-forge/installer-dmg-6.0.0-beta.67"
- sources."@electron-forge/installer-exe-6.0.0-beta.67"
- sources."@electron-forge/installer-linux-6.0.0-beta.67"
- sources."@electron-forge/installer-rpm-6.0.0-beta.67"
- sources."@electron-forge/installer-zip-6.0.0-beta.67"
- sources."@electron-forge/maker-base-6.0.0-beta.67"
- sources."@electron-forge/plugin-base-6.0.0-beta.67"
- sources."@electron-forge/publisher-base-6.0.0-beta.67"
- sources."@electron-forge/shared-types-6.0.0-beta.67"
- sources."@electron-forge/template-base-6.0.0-beta.67"
- sources."@electron-forge/template-typescript-6.0.0-beta.67"
- sources."@electron-forge/template-typescript-webpack-6.0.0-beta.67"
- sources."@electron-forge/template-webpack-6.0.0-beta.67"
+ sources."@electron-forge/async-ora-6.0.0"
+ sources."@electron-forge/core-6.0.0"
+ sources."@electron-forge/core-utils-6.0.0"
+ sources."@electron-forge/maker-base-6.0.0"
+ sources."@electron-forge/plugin-base-6.0.0"
+ sources."@electron-forge/publisher-base-6.0.0"
+ sources."@electron-forge/shared-types-6.0.0"
+ sources."@electron-forge/template-base-6.0.0"
+ sources."@electron-forge/template-webpack-6.0.0"
+ sources."@electron-forge/template-webpack-typescript-6.0.0"
(sources."@electron/asar-3.2.1" // {
dependencies = [
sources."commander-5.1.0"
@@ -97276,6 +98800,13 @@ in
sources."universalify-0.1.2"
];
})
+ (sources."@electron/notarize-1.2.3" // {
+ dependencies = [
+ sources."fs-extra-9.1.0"
+ ];
+ })
+ sources."@electron/osx-sign-1.0.1"
+ sources."@electron/rebuild-3.2.10"
(sources."@electron/universal-1.3.3" // {
dependencies = [
sources."@malept/cross-spawn-promise-1.1.1"
@@ -97297,13 +98828,14 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
sources."@types/minimatch-5.1.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/responselike-1.0.0"
sources."@types/yauzl-2.10.0"
sources."abbrev-1.1.1"
sources."agent-base-6.0.2"
sources."agentkeepalive-4.2.1"
sources."aggregate-error-3.1.0"
+ sources."ansi-colors-4.1.3"
(sources."ansi-escapes-4.3.2" // {
dependencies = [
sources."type-fest-0.21.3"
@@ -97313,11 +98845,7 @@ in
sources."ansi-styles-4.3.0"
sources."aproba-2.0.0"
sources."are-we-there-yet-3.0.1"
- (sources."asar-3.2.0" // {
- dependencies = [
- sources."commander-5.1.0"
- ];
- })
+ sources."astral-regex-2.0.0"
sources."at-least-node-1.0.0"
sources."author-regex-1.0.0"
sources."balanced-match-1.0.2"
@@ -97328,11 +98856,8 @@ in
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."buffer-5.7.1"
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-crc32-0.2.13"
sources."buffer-equal-1.0.0"
- sources."buffer-fill-1.0.0"
sources."buffer-from-1.1.2"
(sources."cacache-16.1.3" // {
dependencies = [
@@ -97350,6 +98875,7 @@ in
sources."clean-stack-2.2.0"
sources."cli-cursor-3.1.0"
sources."cli-spinners-2.7.0"
+ sources."cli-truncate-2.1.0"
sources."cli-width-3.0.0"
sources."cliui-8.0.1"
sources."clone-1.0.4"
@@ -97357,6 +98883,7 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."color-support-1.1.3"
+ sources."colorette-2.0.19"
sources."colors-1.0.3"
sources."commander-4.1.1"
sources."compare-version-0.1.2"
@@ -97380,7 +98907,6 @@ in
})
sources."defaults-1.0.4"
sources."defer-to-connect-2.0.1"
- sources."define-lazy-prop-2.0.0"
sources."define-properties-1.1.4"
sources."delegates-1.0.0"
sources."depd-1.1.2"
@@ -97392,21 +98918,11 @@ in
sources."minimatch-3.0.4"
];
})
- (sources."electron-notarize-1.2.2" // {
- dependencies = [
- sources."fs-extra-9.1.0"
- ];
- })
- (sources."electron-osx-sign-0.5.0" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."electron-packager-16.0.0"
- sources."electron-rebuild-3.2.9"
+ sources."electron-packager-17.1.1"
sources."emoji-regex-8.0.0"
sources."encoding-0.1.13"
sources."end-of-stream-1.4.4"
+ sources."enquirer-2.3.6"
sources."env-paths-2.2.1"
sources."err-code-2.0.3"
sources."error-ex-1.3.2"
@@ -97462,7 +98978,6 @@ in
sources."debug-3.2.7"
sources."fs-extra-4.0.3"
sources."jsonfile-4.0.0"
- sources."ms-2.1.3"
sources."universalify-0.1.2"
];
})
@@ -97473,6 +98988,7 @@ in
(sources."get-package-info-1.0.0" // {
dependencies = [
sources."debug-2.6.9"
+ sources."ms-2.0.0"
];
})
sources."get-stream-5.2.0"
@@ -97509,7 +99025,8 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- sources."inquirer-8.2.4"
+ sources."inquirer-8.2.5"
+ sources."interpret-3.1.1"
sources."ip-2.0.0"
sources."is-arrayish-0.2.1"
sources."is-core-module-2.11.0"
@@ -97524,20 +99041,27 @@ in
sources."is-unicode-supported-0.1.0"
sources."is-windows-1.0.2"
sources."is-wsl-2.2.0"
- sources."isbinaryfile-3.0.3"
+ sources."isbinaryfile-4.0.10"
sources."isexe-2.0.0"
sources."json-buffer-3.0.1"
sources."json-stringify-safe-5.0.1"
sources."jsonfile-6.1.0"
sources."junk-3.1.0"
sources."keyv-4.5.0"
+ sources."listr2-5.0.5"
sources."load-json-file-2.0.0"
sources."locate-path-2.0.0"
sources."lodash-4.17.21"
sources."lodash.get-4.4.2"
sources."log-symbols-4.1.0"
+ (sources."log-update-4.0.0" // {
+ dependencies = [
+ sources."slice-ansi-4.0.0"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
sources."lowercase-keys-2.0.0"
- sources."lru-cache-7.14.0"
+ sources."lru-cache-7.14.1"
sources."lzma-native-8.0.6"
sources."make-fetch-happen-10.2.1"
sources."map-age-cleaner-0.1.3"
@@ -97561,7 +99085,7 @@ in
sources."minipass-sized-1.0.3"
sources."minizlib-2.1.2"
sources."mkdirp-1.0.4"
- sources."ms-2.0.0"
+ sources."ms-2.1.3"
sources."mute-stream-0.0.8"
sources."negotiator-0.6.3"
sources."nice-try-1.0.5"
@@ -97587,7 +99111,6 @@ in
sources."object-keys-1.1.1"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."open-8.4.0"
sources."ora-5.4.1"
sources."os-tmpdir-1.0.2"
sources."p-cancelable-2.1.1"
@@ -97636,6 +99159,7 @@ in
];
})
sources."readable-stream-3.6.0"
+ sources."rechoir-0.8.0"
sources."require-directory-2.1.1"
sources."resolve-1.22.1"
sources."resolve-alpn-1.2.1"
@@ -97645,6 +99169,7 @@ in
sources."restore-cursor-3.1.0"
sources."retry-0.12.0"
sources."reusify-1.0.4"
+ sources."rfdc-1.3.0"
sources."rimraf-3.0.2"
sources."roarr-2.15.4"
sources."run-async-2.4.1"
@@ -97663,6 +99188,7 @@ in
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.7"
+ sources."slice-ansi-3.0.0"
sources."smart-buffer-4.2.0"
sources."socks-2.7.1"
sources."socks-proxy-agent-7.0.0"
@@ -97684,13 +99210,13 @@ in
sources."sumchecker-3.0.1"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."through-2.3.8"
sources."tmp-0.0.33"
sources."to-regex-range-5.0.1"
sources."tr46-0.0.3"
sources."trim-repeated-1.0.0"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-fest-0.13.1"
sources."unique-filename-2.0.1"
sources."unique-slug-3.0.0"
@@ -97708,7 +99234,7 @@ in
sources."xmlbuilder-15.1.1"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
(sources."yarn-or-npm-3.0.1" // {
dependencies = [
@@ -97726,7 +99252,7 @@ in
buildInputs = globalBuildInputs;
meta = {
description = "A complete tool for building modern Electron applications";
- homepage = "https://github.com/electron-userland/electron-forge#readme";
+ homepage = "https://github.com/electron/forge#readme";
license = "MIT";
};
production = true;
@@ -97736,10 +99262,10 @@ in
eas-cli = nodeEnv.buildNodePackage {
name = "eas-cli";
packageName = "eas-cli";
- version = "2.4.1";
+ version = "2.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eas-cli/-/eas-cli-2.4.1.tgz";
- sha512 = "WWNjbjrJJ8A0PM5/A/uNIZxm9BGPE14RYp4rCtlnxS/sGMzlTKv0uUtdXkctoX5ssbZF+O9SjKvmEHk6SzHnxQ==";
+ url = "https://registry.npmjs.org/eas-cli/-/eas-cli-2.6.0.tgz";
+ sha512 = "fblslsf7Hz6oSKAXxnXVX9Jckqxee0hlBxo1SoI4eFgDQCK8crxoNGyEg0w1q1f830Sh+CoM0uteiJIiLGiXcQ==";
};
dependencies = [
sources."@babel/code-frame-7.10.4"
@@ -97750,8 +99276,12 @@ in
];
})
sources."@expo/apple-utils-0.0.0-alpha.34"
- sources."@expo/bunyan-4.0.0"
- sources."@expo/code-signing-certificates-0.0.2"
+ (sources."@expo/bunyan-4.0.0" // {
+ dependencies = [
+ sources."uuid-8.3.2"
+ ];
+ })
+ sources."@expo/code-signing-certificates-0.0.3"
(sources."@expo/config-7.0.1" // {
dependencies = [
sources."semver-7.3.2"
@@ -97759,8 +99289,8 @@ in
})
sources."@expo/config-plugins-5.0.1"
sources."@expo/config-types-46.0.2"
- sources."@expo/eas-build-job-0.2.94"
- (sources."@expo/eas-json-2.2.0" // {
+ sources."@expo/eas-build-job-0.2.96"
+ (sources."@expo/eas-json-2.6.0" // {
dependencies = [
sources."@babel/code-frame-7.18.6"
];
@@ -97775,6 +99305,7 @@ in
})
sources."@expo/json-file-8.2.36"
sources."@expo/multipart-body-parser-1.1.0"
+ sources."@expo/osascript-2.0.33"
sources."@expo/package-manager-0.0.56"
sources."@expo/pkcs12-0.0.8"
(sources."@expo/plist-0.0.18" // {
@@ -97782,9 +99313,8 @@ in
sources."xmlbuilder-14.0.0"
];
})
- sources."@expo/plugin-autocomplete-1.4.0"
- sources."@expo/plugin-help-5.3.0"
- sources."@expo/plugin-warn-if-update-available-2.3.0"
+ sources."@expo/plugin-help-5.1.16"
+ sources."@expo/plugin-warn-if-update-available-2.4.0"
(sources."@expo/prebuild-config-5.0.3" // {
dependencies = [
sources."fs-extra-9.1.0"
@@ -97793,7 +99323,11 @@ in
];
})
sources."@expo/results-1.0.0"
- sources."@expo/rudder-sdk-node-1.1.1"
+ (sources."@expo/rudder-sdk-node-1.1.1" // {
+ dependencies = [
+ sources."uuid-8.3.2"
+ ];
+ })
sources."@expo/sdk-runtime-versions-1.0.0"
(sources."@expo/spawn-async-1.7.0" // {
dependencies = [
@@ -97811,7 +99345,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- (sources."@oclif/core-1.13.10" // {
+ (sources."@oclif/core-1.19.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."color-convert-2.0.1"
@@ -97823,17 +99357,25 @@ in
];
})
sources."@oclif/linewrap-1.0.0"
- sources."@oclif/screen-3.0.2"
+ (sources."@oclif/plugin-autocomplete-1.3.4" // {
+ dependencies = [
+ sources."fs-extra-9.1.0"
+ sources."universalify-2.0.0"
+ ];
+ })
+ sources."@oclif/screen-3.0.3"
sources."@react-native/normalize-color-2.0.0"
+ sources."@segment/ajv-human-errors-2.1.2"
sources."@segment/loosely-validate-event-2.0.0"
sources."@sideway/address-4.1.4"
sources."@sideway/formula-3.0.0"
sources."@sideway/pinpoint-2.0.0"
- sources."@urql/core-2.6.1"
- sources."@urql/exchange-retry-0.3.3"
- sources."@xmldom/xmldom-0.7.6"
+ sources."@urql/core-3.0.5"
+ sources."@urql/exchange-retry-1.0.0"
+ sources."@xmldom/xmldom-0.7.8"
sources."agent-base-6.0.2"
- sources."ajv-6.12.6"
+ sources."ajv-8.11.0"
+ sources."ajv-formats-2.1.1"
(sources."ansi-escapes-4.3.2" // {
dependencies = [
sources."type-fest-0.21.3"
@@ -97878,7 +99420,6 @@ in
sources."cli-cursor-3.1.0"
sources."cli-progress-3.11.2"
sources."cli-spinners-2.7.0"
- sources."cli-table3-0.6.2"
sources."clone-1.0.4"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -97902,6 +99443,7 @@ in
sources."dicer-0.3.1"
sources."dir-glob-3.0.1"
sources."domino-2.1.6"
+ sources."dotenv-16.0.3"
sources."ejs-3.1.8"
sources."emoji-regex-8.0.0"
sources."encoding-0.1.13"
@@ -97912,7 +99454,8 @@ in
sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
sources."esprima-4.0.1"
- (sources."expo-modules-autolinking-0.11.0" // {
+ sources."exec-async-2.2.0"
+ (sources."expo-modules-autolinking-0.12.0" // {
dependencies = [
sources."commander-7.2.0"
sources."fs-extra-9.1.0"
@@ -97920,8 +99463,7 @@ in
];
})
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.11"
- sources."fast-json-stable-stringify-2.1.0"
+ sources."fast-glob-3.2.12"
sources."fastq-1.13.0"
sources."fetch-retry-4.1.1"
sources."figures-3.2.0"
@@ -97949,7 +99491,7 @@ in
sources."golden-fleece-1.0.9"
sources."graceful-fs-4.2.10"
sources."gradle-to-js-2.0.1"
- sources."graphql-16.5.0"
+ sources."graphql-16.6.0"
sources."graphql-tag-2.12.6"
sources."has-flag-3.0.0"
sources."hosted-git-info-3.0.8"
@@ -97981,13 +99523,13 @@ in
];
})
sources."jimp-compact-0.16.1"
- sources."jks-js-1.0.2"
- sources."joi-17.6.0"
+ sources."jks-js-1.1.0"
+ sources."joi-17.6.4"
sources."join-component-1.1.0"
sources."js-tokens-4.0.0"
sources."js-yaml-3.14.1"
sources."json-parse-better-errors-1.0.2"
- sources."json-schema-traverse-0.4.1"
+ sources."json-schema-traverse-1.0.0"
sources."json5-1.0.1"
(sources."jsonfile-6.1.0" // {
dependencies = [
@@ -98095,7 +99637,7 @@ in
sources."safe-json-stringify-1.2.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
- sources."semver-7.3.7"
+ sources."semver-7.3.8"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."signal-exit-3.0.7"
@@ -98141,14 +99683,14 @@ in
sources."universalify-1.0.0"
sources."untildify-4.0.0"
sources."uri-js-4.4.1"
- sources."uuid-8.3.2"
+ sources."uuid-9.0.0"
sources."validate-npm-package-name-3.0.0"
sources."wcwidth-1.0.1"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-1.3.1"
sources."widest-line-3.1.0"
- sources."wonka-4.0.15"
+ sources."wonka-6.1.1"
(sources."wrap-ansi-7.0.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -98211,19 +99753,19 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
(sources."@babel/core-7.19.6" // {
dependencies = [
sources."semver-6.3.0"
];
})
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
- (sources."@babel/helper-compilation-targets-7.19.3" // {
+ (sources."@babel/helper-compilation-targets-7.20.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -98239,18 +99781,18 @@ in
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/plugin-proposal-object-rest-spread-7.19.4"
sources."@babel/plugin-syntax-jsx-7.18.6"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
- sources."@babel/plugin-transform-destructuring-7.19.4"
- sources."@babel/plugin-transform-parameters-7.18.8"
+ sources."@babel/plugin-transform-destructuring-7.20.0"
+ sources."@babel/plugin-transform-parameters-7.20.1"
sources."@babel/plugin-transform-react-jsx-7.19.0"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/set-array-1.1.2"
@@ -98259,7 +99801,7 @@ in
sources."@types/minimist-1.2.2"
sources."@types/normalize-package-data-2.4.1"
sources."@types/prop-types-15.7.5"
- sources."@types/react-18.0.21"
+ sources."@types/react-18.0.24"
sources."@types/scheduler-0.16.2"
sources."@types/yoga-layout-1.9.2"
sources."ajv-6.12.6"
@@ -98284,7 +99826,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -98308,7 +99850,7 @@ in
sources."debounce-fn-4.0.0"
sources."debug-4.3.4"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -98620,8 +100162,8 @@ in
sources."@fluentui/foundation-legacy-8.2.22"
sources."@fluentui/keyboard-key-0.4.2"
sources."@fluentui/merge-styles-8.5.3"
- sources."@fluentui/react-8.98.5"
- sources."@fluentui/react-focus-8.8.7"
+ sources."@fluentui/react-8.99.2"
+ sources."@fluentui/react-focus-8.8.8"
sources."@fluentui/react-hooks-8.6.12"
sources."@fluentui/react-portal-compat-context-9.0.3"
sources."@fluentui/react-window-provider-2.2.3"
@@ -98680,13 +100222,13 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@npmcli/fs-1.1.1"
sources."@npmcli/move-file-1.1.2"
- sources."@redis/bloom-1.0.2"
- (sources."@redis/client-1.3.0" // {
+ sources."@redis/bloom-1.1.0"
+ (sources."@redis/client-1.3.1" // {
dependencies = [
- sources."cluster-key-slot-1.1.0"
+ sources."cluster-key-slot-1.1.1"
];
})
- sources."@redis/graph-1.0.1"
+ sources."@redis/graph-1.1.0"
sources."@redis/json-1.0.4"
sources."@redis/search-1.1.0"
sources."@redis/time-series-1.0.3"
@@ -98697,45 +100239,45 @@ in
})
sources."@sindresorhus/is-0.14.0"
sources."@sqltools/formatter-1.2.5"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- (sources."@swc/core-android-arm64-1.3.10" // {
+ (sources."@swc/core-android-arm64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- (sources."@swc/core-freebsd-x64-1.3.10" // {
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ (sources."@swc/core-freebsd-x64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-linux-arm-gnueabihf-1.3.10" // {
+ (sources."@swc/core-linux-arm-gnueabihf-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- (sources."@swc/core-win32-arm64-msvc-1.3.10" // {
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ (sources."@swc/core-win32-arm64-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-win32-ia32-msvc-1.3.10" // {
+ (sources."@swc/core-win32-ia32-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-win32-x64-msvc-1.3.10"
- sources."@swc/wasm-1.3.10"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
+ sources."@swc/wasm-1.3.12"
sources."@szmarczak/http-timer-1.1.2"
sources."@tediousjs/connection-string-0.4.1"
sources."@tokenizer/token-0.3.0"
@@ -98750,7 +100292,7 @@ in
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
sources."@types/es-aggregate-error-1.0.2"
- sources."@types/eslint-8.4.7"
+ sources."@types/eslint-8.4.9"
sources."@types/eslint-scope-3.7.4"
sources."@types/estree-0.0.51"
sources."@types/express-4.17.13"
@@ -98768,8 +100310,8 @@ in
sources."@types/prop-types-15.7.5"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
- sources."@types/react-18.0.21"
- sources."@types/react-dom-18.0.6"
+ sources."@types/react-18.0.24"
+ sources."@types/react-dom-18.0.8"
sources."@types/scheduler-0.16.2"
sources."@types/serve-static-1.15.0"
sources."@types/socket.io-3.0.1"
@@ -98822,7 +100364,7 @@ in
sources."acorn-7.4.1"
(sources."acorn-import-assertions-1.8.0" // {
dependencies = [
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
];
})
sources."acorn-jsx-5.3.2"
@@ -98983,7 +100525,7 @@ in
sources."call-bind-1.0.2"
sources."callsites-3.1.0"
sources."camelcase-3.0.0"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."chalk-4.1.2"
sources."chardet-0.7.0"
(sources."chokidar-2.1.8" // {
@@ -99040,7 +100582,7 @@ in
sources."string_decoder-1.1.1"
];
})
- sources."cluster-key-slot-1.1.1"
+ sources."cluster-key-slot-1.1.2"
sources."code-point-at-1.1.0"
sources."collection-map-1.0.0"
sources."collection-visit-1.0.0"
@@ -99167,7 +100709,7 @@ in
sources."err-code-2.0.3"
sources."error-ex-1.3.2"
sources."es-abstract-1.20.4"
- sources."es-aggregate-error-1.0.8"
+ sources."es-aggregate-error-1.0.9"
sources."es-module-lexer-0.9.3"
sources."es-to-primitive-1.2.1"
sources."es5-ext-0.10.62"
@@ -99325,7 +100867,7 @@ in
sources."functions-have-names-1.2.3"
sources."gauge-3.0.2"
sources."generate-function-2.3.1"
- sources."generic-pool-3.8.2"
+ sources."generic-pool-3.9.0"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.3"
sources."get-stream-4.1.0"
@@ -99516,7 +101058,7 @@ in
sources."interpret-1.4.0"
sources."inversify-5.1.1"
sources."invert-kv-1.0.0"
- (sources."ioredis-5.2.3" // {
+ (sources."ioredis-5.2.4" // {
dependencies = [
sources."debug-4.3.4"
sources."ms-2.1.2"
@@ -99747,7 +101289,7 @@ in
];
})
sources."openapi-types-7.2.3"
- sources."swagger-ui-dist-4.15.0"
+ sources."swagger-ui-dist-4.15.2"
];
})
(sources."mixin-deep-1.3.2" // {
@@ -100040,7 +101582,7 @@ in
];
})
sources."rechoir-0.6.2"
- sources."redis-4.3.1"
+ sources."redis-4.4.0"
sources."redis-errors-1.2.0"
sources."redis-parser-3.0.0"
sources."reflect-metadata-0.1.13"
@@ -100246,10 +101788,10 @@ in
sources."sver-compat-1.5.0"
sources."swagger-schema-official-2.0.0-bab6bed"
sources."swagger-ui-dist-3.52.5"
- sources."table-6.8.0"
+ sources."table-6.8.1"
sources."tail-2.2.4"
sources."tapable-2.2.1"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
(sources."tar-fs-2.1.1" // {
dependencies = [
sources."chownr-1.1.4"
@@ -100257,7 +101799,7 @@ in
})
sources."tar-stream-2.2.0"
sources."tarn-3.0.2"
- (sources."tedious-15.1.0" // {
+ (sources."tedious-15.1.1" // {
dependencies = [
sources."bl-5.1.0"
sources."buffer-6.0.3"
@@ -100268,7 +101810,7 @@ in
})
(sources."terser-5.15.1" // {
dependencies = [
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."commander-2.20.3"
];
})
@@ -100305,10 +101847,10 @@ in
sources."ts-log-2.2.5"
(sources."ts-node-10.4.0" // {
dependencies = [
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
];
})
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
(sources."tsutils-3.21.0" // {
dependencies = [
sources."tslib-1.14.1"
@@ -100395,7 +101937,7 @@ in
sources."webidl-conversions-3.0.1"
(sources."webpack-5.74.0" // {
dependencies = [
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
];
})
sources."webpack-sources-3.2.3"
@@ -100428,7 +101970,7 @@ in
sources."supports-color-2.0.0"
];
})
- (sources."yargs-17.6.0" // {
+ (sources."yargs-17.6.1" // {
dependencies = [
sources."cliui-8.0.1"
sources."yargs-parser-21.1.1"
@@ -100459,7 +102001,7 @@ in
sources."@babel/code-frame-7.18.6"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
(sources."@eslint/eslintrc-0.4.3" // {
dependencies = [
sources."eslint-visitor-keys-1.3.0"
@@ -100518,7 +102060,7 @@ in
sources."@types/mime-3.0.1"
sources."@types/minimatch-5.1.2"
sources."@types/minimist-1.2.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
@@ -100856,7 +102398,7 @@ in
];
})
sources."call-bind-1.0.2"
- sources."call-me-maybe-1.0.1"
+ sources."call-me-maybe-1.0.2"
(sources."caller-callsite-2.0.0" // {
dependencies = [
sources."callsites-2.0.0"
@@ -100869,7 +102411,7 @@ in
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
@@ -101067,7 +102609,7 @@ in
sources."debug-4.3.4"
sources."decache-4.6.1"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -101219,7 +102761,7 @@ in
sources."slice-ansi-4.0.0"
sources."string-width-4.2.3"
sources."supports-color-7.2.0"
- (sources."table-6.8.0" // {
+ (sources."table-6.8.1" // {
dependencies = [
sources."ajv-8.11.0"
];
@@ -101662,7 +103204,7 @@ in
sources."md5.js-1.3.5"
sources."mdn-data-2.0.4"
sources."media-typer-0.3.0"
- sources."memfs-3.4.7"
+ sources."memfs-3.4.9"
sources."memory-fs-0.4.1"
(sources."meow-9.0.0" // {
dependencies = [
@@ -102438,7 +103980,7 @@ in
sources."svgo-1.3.2"
sources."table-5.4.6"
sources."tapable-1.1.3"
- (sources."tar-6.1.11" // {
+ (sources."tar-6.1.12" // {
dependencies = [
sources."chownr-2.0.0"
sources."mkdirp-1.0.4"
@@ -102794,13 +104336,13 @@ in
};
dependencies = [
sources."@eslint/eslintrc-1.3.3"
- sources."@humanwhocodes/config-array-0.11.6"
+ sources."@humanwhocodes/config-array-0.11.7"
sources."@humanwhocodes/module-importer-1.0.1"
sources."@humanwhocodes/object-schema-1.2.1"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-jsx-5.3.2"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
@@ -102914,13 +104456,13 @@ in
};
dependencies = [
sources."@eslint/eslintrc-1.3.3"
- sources."@humanwhocodes/config-array-0.11.6"
+ sources."@humanwhocodes/config-array-0.11.7"
sources."@humanwhocodes/module-importer-1.0.1"
sources."@humanwhocodes/object-schema-1.2.1"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-jsx-5.3.2"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
@@ -103062,17 +104604,17 @@ in
];
})
sources."@babel/code-frame-7.10.4"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
(sources."@babel/core-7.9.0" // {
dependencies = [
sources."json5-2.2.1"
sources."semver-5.7.1"
];
})
- sources."@babel/generator-7.19.6"
+ sources."@babel/generator-7.20.1"
sources."@babel/helper-annotate-as-pure-7.18.6"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9"
- (sources."@babel/helper-compilation-targets-7.19.3" // {
+ (sources."@babel/helper-compilation-targets-7.20.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -103096,19 +104638,19 @@ in
sources."@babel/helper-remap-async-to-generator-7.18.9"
sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.19.4"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helper-wrap-function-7.19.0"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6"
(sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" // {
dependencies = [
@@ -103118,7 +104660,7 @@ in
sources."semver-6.3.0"
];
})
- sources."@babel/plugin-proposal-async-generator-functions-7.19.1"
+ sources."@babel/plugin-proposal-async-generator-functions-7.20.1"
sources."@babel/plugin-proposal-class-properties-7.18.6"
(sources."@babel/plugin-proposal-class-static-block-7.18.6" // {
dependencies = [
@@ -103128,7 +104670,7 @@ in
sources."semver-6.3.0"
];
})
- sources."@babel/plugin-proposal-decorators-7.19.6"
+ sources."@babel/plugin-proposal-decorators-7.20.0"
sources."@babel/plugin-proposal-dynamic-import-7.18.6"
sources."@babel/plugin-proposal-export-default-from-7.18.10"
sources."@babel/plugin-proposal-export-namespace-from-7.18.9"
@@ -103150,7 +104692,7 @@ in
sources."@babel/plugin-syntax-export-default-from-7.18.6"
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
sources."@babel/plugin-syntax-flow-7.18.6"
- sources."@babel/plugin-syntax-import-assertions-7.18.6"
+ sources."@babel/plugin-syntax-import-assertions-7.20.0"
sources."@babel/plugin-syntax-json-strings-7.8.3"
sources."@babel/plugin-syntax-jsx-7.18.6"
sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
@@ -103161,14 +104703,14 @@ in
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
sources."@babel/plugin-syntax-private-property-in-object-7.14.5"
sources."@babel/plugin-syntax-top-level-await-7.14.5"
- sources."@babel/plugin-syntax-typescript-7.18.6"
+ sources."@babel/plugin-syntax-typescript-7.20.0"
sources."@babel/plugin-transform-arrow-functions-7.18.6"
sources."@babel/plugin-transform-async-to-generator-7.18.6"
sources."@babel/plugin-transform-block-scoped-functions-7.18.6"
- sources."@babel/plugin-transform-block-scoping-7.19.4"
+ sources."@babel/plugin-transform-block-scoping-7.20.0"
sources."@babel/plugin-transform-classes-7.19.0"
sources."@babel/plugin-transform-computed-properties-7.18.9"
- sources."@babel/plugin-transform-destructuring-7.19.4"
+ sources."@babel/plugin-transform-destructuring-7.20.0"
sources."@babel/plugin-transform-dotall-regex-7.18.6"
sources."@babel/plugin-transform-duplicate-keys-7.18.9"
sources."@babel/plugin-transform-exponentiation-operator-7.18.6"
@@ -103184,7 +104726,7 @@ in
sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1"
sources."@babel/plugin-transform-new-target-7.18.6"
sources."@babel/plugin-transform-object-super-7.18.6"
- sources."@babel/plugin-transform-parameters-7.18.8"
+ sources."@babel/plugin-transform-parameters-7.20.1"
sources."@babel/plugin-transform-property-literals-7.18.6"
sources."@babel/plugin-transform-react-display-name-7.18.6"
sources."@babel/plugin-transform-react-jsx-7.19.0"
@@ -103202,7 +104744,7 @@ in
sources."@babel/plugin-transform-sticky-regex-7.18.6"
sources."@babel/plugin-transform-template-literals-7.18.9"
sources."@babel/plugin-transform-typeof-symbol-7.18.9"
- sources."@babel/plugin-transform-typescript-7.19.3"
+ sources."@babel/plugin-transform-typescript-7.20.0"
sources."@babel/plugin-transform-unicode-escapes-7.18.10"
sources."@babel/plugin-transform-unicode-regex-7.18.6"
(sources."@babel/preset-env-7.19.4" // {
@@ -103217,44 +104759,51 @@ in
sources."@babel/code-frame-7.18.6"
];
})
- (sources."@babel/traverse-7.19.6" // {
+ (sources."@babel/traverse-7.20.1" // {
dependencies = [
sources."@babel/code-frame-7.18.6"
];
})
- sources."@babel/types-7.19.4"
+ sources."@babel/types-7.20.0"
sources."@colors/colors-1.5.0"
sources."@expo/apple-utils-0.0.0-alpha.31"
sources."@expo/bunyan-4.0.0"
(sources."@expo/cli-0.3.2" // {
dependencies = [
- sources."@babel/runtime-7.19.4"
- (sources."@expo/config-7.0.1" // {
+ sources."@babel/runtime-7.20.1"
+ (sources."@expo/config-7.0.3" // {
dependencies = [
sources."semver-7.3.2"
];
})
- (sources."@expo/config-plugins-5.0.1" // {
+ (sources."@expo/config-plugins-5.0.3" // {
dependencies = [
sources."semver-7.3.8"
];
})
- sources."@expo/config-types-46.0.2"
- (sources."@expo/dev-server-0.1.120" // {
+ sources."@expo/config-types-47.0.0"
+ (sources."@expo/dev-server-0.1.122" // {
dependencies = [
+ sources."@expo/metro-config-0.5.1"
sources."fs-extra-9.0.0"
sources."semver-7.3.2"
];
})
- (sources."@expo/image-utils-0.3.20" // {
+ (sources."@expo/image-utils-0.3.22" // {
dependencies = [
sources."fs-extra-9.0.0"
sources."semver-7.3.2"
sources."tempy-0.3.0"
];
})
- sources."@expo/metro-config-0.4.0"
- (sources."@expo/prebuild-config-5.0.3" // {
+ (sources."@expo/metro-config-0.4.0" // {
+ dependencies = [
+ sources."@expo/config-7.0.1"
+ sources."@expo/config-types-46.0.2"
+ sources."semver-7.3.2"
+ ];
+ })
+ (sources."@expo/prebuild-config-5.0.6" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."semver-7.3.2"
@@ -103377,7 +104926,7 @@ in
sources."@types/json-schema-7.0.11"
sources."@types/keyv-4.2.0"
sources."@types/minimatch-5.1.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/q-1.5.5"
sources."@types/responselike-1.0.0"
sources."@types/retry-0.12.2"
@@ -103420,7 +104969,7 @@ in
sources."@webassemblyjs/wasm-parser-1.9.0"
sources."@webassemblyjs/wast-parser-1.9.0"
sources."@webassemblyjs/wast-printer-1.9.0"
- sources."@xmldom/xmldom-0.7.6"
+ sources."@xmldom/xmldom-0.7.8"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
sources."accepts-1.3.8"
@@ -103494,7 +105043,7 @@ in
})
sources."babel-plugin-polyfill-corejs3-0.6.0"
sources."babel-plugin-polyfill-regenerator-0.4.1"
- sources."babel-plugin-react-native-web-0.18.9"
+ sources."babel-plugin-react-native-web-0.18.10"
sources."babel-preset-expo-9.2.1"
sources."balanced-match-1.0.2"
(sources."base-0.11.2" // {
@@ -103571,12 +105120,12 @@ in
sources."callsites-2.0.0"
(sources."camel-case-4.1.2" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."camelcase-6.3.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -103705,7 +105254,7 @@ in
sources."semver-6.3.0"
];
})
- sources."core-js-compat-3.25.5"
+ sources."core-js-compat-3.26.0"
sources."core-util-is-1.0.3"
sources."cosmiconfig-5.2.1"
(sources."create-ecdh-4.0.4" // {
@@ -103823,7 +105372,7 @@ in
})
(sources."dot-case-3.0.4" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."dot-prop-5.3.0"
@@ -103905,7 +105454,7 @@ in
})
(sources."expo-46.0.16" // {
dependencies = [
- sources."@babel/runtime-7.19.4"
+ sources."@babel/runtime-7.20.1"
sources."commander-7.2.0"
sources."expo-modules-autolinking-0.10.3"
sources."fs-extra-9.1.0"
@@ -103913,12 +105462,22 @@ in
];
})
sources."expo-application-4.2.2"
- sources."expo-asset-8.6.1"
+ (sources."expo-asset-8.6.2" // {
+ dependencies = [
+ sources."@expo/config-7.0.3"
+ sources."@expo/config-plugins-5.0.3"
+ sources."@expo/config-types-47.0.0"
+ sources."expo-constants-14.0.2"
+ sources."expo-file-system-15.1.1"
+ sources."semver-7.3.8"
+ sources."uuid-3.4.0"
+ ];
+ })
(sources."expo-constants-13.2.4" // {
dependencies = [
- sources."@expo/config-7.0.1"
- sources."@expo/config-plugins-5.0.1"
- sources."@expo/config-types-46.0.2"
+ sources."@expo/config-7.0.3"
+ sources."@expo/config-plugins-5.0.3"
+ sources."@expo/config-types-47.0.0"
sources."semver-7.3.8"
sources."uuid-3.4.0"
];
@@ -103926,8 +105485,8 @@ in
sources."expo-error-recovery-3.2.0"
(sources."expo-file-system-14.1.0" // {
dependencies = [
- sources."@expo/config-plugins-5.0.1"
- sources."@expo/config-types-46.0.2"
+ sources."@expo/config-plugins-5.0.3"
+ sources."@expo/config-types-47.0.0"
sources."semver-7.3.8"
sources."uuid-3.4.0"
];
@@ -104078,7 +105637,7 @@ in
sources."graphql-15.8.0"
(sources."graphql-tag-2.12.6" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."gzip-size-5.1.1"
@@ -104262,7 +105821,7 @@ in
];
})
sources."jimp-compact-0.16.1"
- sources."joi-17.6.4"
+ sources."joi-17.7.0"
sources."join-component-1.1.0"
sources."js-tokens-4.0.0"
(sources."js-yaml-3.14.1" // {
@@ -104312,7 +105871,7 @@ in
sources."loose-envify-1.4.0"
(sources."lower-case-2.0.2" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."lowercase-keys-2.0.0"
@@ -104402,7 +105961,7 @@ in
sources."nice-try-1.0.5"
(sources."no-case-3.0.4" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."node-fetch-2.6.7"
@@ -104515,7 +106074,7 @@ in
sources."parallel-transform-1.2.0"
(sources."param-case-3.0.4" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."parse-asn1-5.1.6"
@@ -104525,7 +106084,7 @@ in
sources."parseurl-1.3.3"
(sources."pascal-case-3.1.2" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."pascalcase-0.1.1"
@@ -105061,7 +106620,7 @@ in
];
})
sources."tapable-1.1.3"
- (sources."tar-6.1.11" // {
+ (sources."tar-6.1.12" // {
dependencies = [
sources."mkdirp-1.0.4"
];
@@ -105403,15 +106962,15 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
sources."@babel/core-7.19.6"
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
- sources."@babel/helper-compilation-targets-7.19.3"
+ sources."@babel/helper-compilation-targets-7.20.0"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
sources."@babel/helper-hoist-variables-7.18.6"
@@ -105423,28 +106982,28 @@ in
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/plugin-proposal-object-rest-spread-7.19.4"
sources."@babel/plugin-syntax-jsx-7.18.6"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
- sources."@babel/plugin-transform-destructuring-7.19.4"
- sources."@babel/plugin-transform-parameters-7.18.8"
+ sources."@babel/plugin-transform-destructuring-7.20.0"
+ sources."@babel/plugin-transform-parameters-7.20.1"
sources."@babel/plugin-transform-react-jsx-7.19.0"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/set-array-1.1.2"
sources."@jridgewell/sourcemap-codec-1.4.14"
sources."@jridgewell/trace-mapping-0.3.17"
sources."@types/minimist-1.2.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/normalize-package-data-2.4.1"
sources."@types/prop-types-15.7.5"
- sources."@types/react-18.0.21"
+ sources."@types/react-18.0.24"
sources."@types/scheduler-0.16.2"
sources."@types/yauzl-2.10.0"
sources."@types/yoga-layout-1.9.2"
@@ -105472,7 +107031,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."chalk-2.4.2"
sources."chownr-1.1.4"
sources."ci-info-2.0.0"
@@ -105491,7 +107050,7 @@ in
sources."csstype-3.1.1"
sources."debug-4.3.4"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -105711,7 +107270,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@oclif/command-1.8.18"
+ sources."@oclif/command-1.8.19"
sources."@oclif/config-1.18.5"
sources."@oclif/errors-1.3.6"
(sources."@oclif/help-1.0.3" // {
@@ -105906,7 +107465,7 @@ in
sources."indent-string-4.0.0"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- (sources."inquirer-8.2.4" // {
+ (sources."inquirer-8.2.5" // {
dependencies = [
sources."ansi-escapes-4.3.2"
sources."type-fest-0.21.3"
@@ -105992,7 +107551,7 @@ in
sources."qs-6.5.3"
sources."query-string-5.1.1"
sources."queue-microtask-1.2.3"
- sources."rate-limiter-flexible-2.4.0"
+ sources."rate-limiter-flexible-2.4.1"
(sources."readable-stream-2.3.7" // {
dependencies = [
sources."safe-buffer-5.1.2"
@@ -106043,7 +107602,7 @@ in
sources."tough-cookie-2.5.0"
sources."tr46-0.0.3"
sources."treeify-1.1.0"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
@@ -106081,10 +107640,10 @@ in
firebase-tools = nodeEnv.buildNodePackage {
name = "firebase-tools";
packageName = "firebase-tools";
- version = "11.15.0";
+ version = "11.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.15.0.tgz";
- sha512 = "lxoMYvaBbozwGDZCegou1qyB5078BbNmbdW8cd4dDvCAF5/dCo/2MA69qhaUmC/2DhqQkk5fz3Xl+HSTOtm4eA==";
+ url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.16.0.tgz";
+ sha512 = "fT8yeco/ksIjA3fdpqWoI+v58tUCzH7YXY+WZdBq6DsbJ27EOSgVcO9uUzn7GYfWEP3A0OdsBwoi/i78RMGlkQ==";
};
dependencies = [
(sources."@apidevtools/json-schema-ref-parser-9.0.9" // {
@@ -106092,7 +107651,7 @@ in
sources."js-yaml-4.1.0"
];
})
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@colors/colors-1.5.0"
sources."@dabh/diagnostics-2.0.3"
sources."@esbuild/android-arm-0.15.12"
@@ -106137,11 +107696,11 @@ in
sources."@types/long-4.0.2"
sources."@types/markdown-it-12.2.3"
sources."@types/mdurl-1.0.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
sources."accepts-1.3.8"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-jsx-5.3.2"
sources."acorn-walk-8.2.0"
sources."agent-base-6.0.2"
@@ -106207,9 +107766,10 @@ in
sources."ms-2.0.0"
];
})
- (sources."boxen-5.1.2" // {
+ (sources."boxen-4.2.0" // {
dependencies = [
- sources."type-fest-0.20.2"
+ sources."chalk-3.0.0"
+ sources."type-fest-0.8.1"
];
})
sources."brace-expansion-2.0.1"
@@ -106224,7 +107784,7 @@ in
(sources."cacache-16.1.3" // {
dependencies = [
sources."glob-8.0.3"
- sources."lru-cache-7.14.0"
+ sources."lru-cache-7.14.1"
sources."minimatch-5.1.0"
];
})
@@ -106235,8 +107795,8 @@ in
];
})
sources."call-bind-1.0.2"
- sources."call-me-maybe-1.0.1"
- sources."camelcase-6.3.0"
+ sources."call-me-maybe-1.0.2"
+ sources."camelcase-5.3.1"
sources."cardinal-2.1.1"
sources."caseless-0.12.0"
sources."catharsis-0.9.0"
@@ -106272,6 +107832,7 @@ in
sources."colorspace-1.1.4"
sources."combined-stream-1.0.8"
sources."commander-4.1.1"
+ sources."compare-semver-1.1.0"
sources."compress-commons-4.1.1"
sources."compressible-2.0.18"
(sources."compression-1.7.4" // {
@@ -106481,7 +108042,7 @@ in
sources."glob-parent-5.1.2"
sources."glob-slash-1.0.0"
sources."glob-slasher-1.0.1"
- sources."global-dirs-3.0.0"
+ sources."global-dirs-2.1.0"
(sources."google-auth-library-7.14.1" // {
dependencies = [
sources."gaxios-4.3.3"
@@ -106502,6 +108063,11 @@ in
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
sources."has-1.0.3"
+ (sources."has-ansi-2.0.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ ];
+ })
sources."has-flag-4.0.0"
sources."has-symbols-1.0.3"
sources."has-unicode-2.0.1"
@@ -106521,8 +108087,8 @@ in
sources."infer-owner-1.0.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ini-2.0.0"
- sources."inquirer-8.2.4"
+ sources."ini-1.3.7"
+ sources."inquirer-8.2.5"
sources."install-artifact-from-github-1.3.1"
sources."ip-1.1.8"
sources."ip-regex-4.3.0"
@@ -106533,10 +108099,10 @@ in
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
- sources."is-installed-globally-0.4.0"
+ sources."is-installed-globally-0.3.2"
sources."is-interactive-1.0.0"
sources."is-lambda-1.0.1"
- sources."is-npm-5.0.0"
+ sources."is-npm-4.0.0"
sources."is-number-7.0.0"
sources."is-obj-2.0.0"
sources."is-path-inside-3.0.3"
@@ -106625,13 +108191,13 @@ in
dependencies = [
sources."@tootallnate/once-2.0.0"
sources."http-proxy-agent-5.0.0"
- sources."lru-cache-7.14.0"
+ sources."lru-cache-7.14.1"
sources."socks-proxy-agent-7.0.0"
];
})
sources."markdown-it-12.3.2"
sources."markdown-it-anchor-8.6.5"
- sources."marked-4.1.1"
+ sources."marked-4.2.1"
(sources."marked-terminal-5.1.1" // {
dependencies = [
sources."ansi-escapes-5.0.0"
@@ -106767,7 +108333,6 @@ in
sources."raw-body-2.5.1"
(sources."rc-1.2.8" // {
dependencies = [
- sources."ini-1.3.8"
sources."strip-json-comments-2.0.1"
];
})
@@ -106851,28 +108416,47 @@ in
sources."stream-chain-2.2.5"
sources."stream-json-1.7.4"
sources."stream-shift-1.0.1"
+ (sources."string-length-1.0.1" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
sources."string-width-4.2.3"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."strip-json-comments-3.1.1"
- (sources."superstatic-9.0.0" // {
+ (sources."superstatic-8.0.0" // {
dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."chalk-1.1.3"
sources."commander-9.4.1"
+ sources."escape-string-regexp-1.0.5"
sources."isarray-0.0.1"
- sources."minimatch-5.1.0"
sources."path-to-regexp-1.8.0"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ (sources."update-notifier-4.1.3" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-3.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
];
})
sources."supports-color-7.2.0"
sources."supports-hyperlinks-2.3.0"
sources."taffydb-2.6.2"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."tar-stream-2.2.0"
(sources."tcp-port-used-1.0.2" // {
dependencies = [
sources."debug-4.3.1"
];
})
+ sources."term-size-2.2.1"
sources."text-hex-1.0.0"
sources."through-2.3.8"
sources."tmp-0.2.1"
@@ -106884,7 +108468,7 @@ in
sources."tr46-0.0.3"
sources."traverse-0.3.9"
sources."triple-beam-1.3.0"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
@@ -106892,7 +108476,7 @@ in
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
sources."uc.micro-1.0.6"
- sources."uglify-js-3.17.3"
+ sources."uglify-js-3.17.4"
sources."underscore-1.13.6"
sources."unique-filename-2.0.1"
sources."unique-slug-3.0.0"
@@ -106910,7 +108494,14 @@ in
})
(sources."update-notifier-5.1.0" // {
dependencies = [
+ sources."boxen-5.1.2"
+ sources."camelcase-6.3.0"
+ sources."global-dirs-3.0.0"
+ sources."ini-2.0.0"
+ sources."is-installed-globally-0.4.0"
+ sources."is-npm-5.0.0"
sources."semver-7.3.8"
+ sources."type-fest-0.20.2"
];
})
sources."uri-js-4.4.1"
@@ -107060,7 +108651,7 @@ in
sources."color-name-1.1.4"
sources."cross-spawn-7.0.3"
sources."decamelize-5.0.1"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."decamelize-1.2.0"
sources."map-obj-1.0.1"
@@ -107093,7 +108684,7 @@ in
sources."ieee754-1.2.1"
sources."indent-string-5.0.0"
sources."inherits-2.0.4"
- (sources."inquirer-8.2.4" // {
+ (sources."inquirer-8.2.5" // {
dependencies = [
sources."ansi-regex-5.0.1"
sources."emoji-regex-8.0.0"
@@ -107203,7 +108794,7 @@ in
sources."through-2.3.8"
sources."tmp-0.0.33"
sources."trim-newlines-4.0.2"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-fest-0.21.3"
sources."util-deprecate-1.0.2"
sources."validate-npm-package-license-3.0.4"
@@ -107244,7 +108835,7 @@ in
sources."@types/atob-2.1.2"
sources."@types/bn.js-5.1.1"
sources."@types/inquirer-6.5.0"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/pbkdf2-3.1.0"
sources."@types/secp256k1-4.0.3"
sources."@types/through-0.0.30"
@@ -107571,16 +109162,14 @@ in
sources."cycle-1.0.3"
sources."debug-2.6.9"
sources."decode-uri-component-0.2.0"
- sources."deep-equal-2.0.5"
+ sources."deep-equal-2.1.0"
sources."define-properties-1.1.4"
sources."define-property-2.0.2"
sources."director-1.2.7"
sources."dot-prop-4.2.1"
sources."duplexer-0.1.2"
sources."enabled-2.0.0"
- sources."es-abstract-1.20.4"
sources."es-get-iterator-1.1.2"
- sources."es-to-primitive-1.2.1"
sources."event-stream-3.3.4"
sources."eventemitter2-6.4.4"
(sources."expand-brackets-2.1.4" // {
@@ -107629,10 +109218,8 @@ in
sources."fs.realpath-1.0.0"
sources."fsevents-1.2.13"
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
sources."functions-have-names-1.2.3"
sources."get-intrinsic-1.1.3"
- sources."get-symbol-description-1.0.0"
sources."get-value-2.0.6"
sources."glob-7.2.3"
(sources."glob-parent-3.1.0" // {
@@ -107640,6 +109227,7 @@ in
sources."is-glob-3.1.0"
];
})
+ sources."gopd-1.0.1"
sources."graceful-fs-4.2.10"
sources."has-1.0.3"
sources."has-bigints-1.0.2"
@@ -107657,7 +109245,6 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- sources."internal-slot-1.0.3"
sources."is-accessor-descriptor-1.0.0"
sources."is-arguments-1.1.1"
sources."is-arrayish-0.3.2"
@@ -107673,7 +109260,6 @@ in
sources."is-extglob-2.1.1"
sources."is-glob-4.0.3"
sources."is-map-2.0.2"
- sources."is-negative-zero-2.0.2"
(sources."is-number-3.0.0" // {
dependencies = [
sources."kind-of-3.2.2"
@@ -107684,13 +109270,11 @@ in
sources."is-plain-object-2.0.4"
sources."is-regex-1.1.4"
sources."is-set-2.0.2"
- sources."is-shared-array-buffer-1.0.2"
sources."is-stream-2.0.1"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
+ sources."is-typed-array-1.1.10"
sources."is-weakmap-2.0.1"
- sources."is-weakref-1.0.2"
sources."is-weakset-2.0.2"
sources."is-windows-1.0.2"
sources."isarray-2.0.5"
@@ -107795,7 +109379,6 @@ in
sources."rimraf-2.7.1"
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
- sources."safe-regex-test-1.0.0"
sources."safe-stable-stringify-2.4.1"
(sources."set-value-2.0.1" // {
dependencies = [
@@ -107860,8 +109443,6 @@ in
];
})
sources."stream-combiner-0.0.4"
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.1.1"
sources."strip-json-comments-2.0.1"
sources."text-hex-1.0.0"
@@ -107874,7 +109455,6 @@ in
sources."to-regex-3.0.2"
sources."to-regex-range-2.1.1"
sources."triple-beam-1.3.0"
- sources."unbox-primitive-1.0.2"
(sources."union-value-1.0.1" // {
dependencies = [
sources."is-extendable-0.1.1"
@@ -107903,7 +109483,7 @@ in
})
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.1"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
(sources."winston-3.8.2" // {
dependencies = [
sources."async-3.2.4"
@@ -107967,10 +109547,10 @@ in
ganache = nodeEnv.buildNodePackage {
name = "ganache";
packageName = "ganache";
- version = "7.4.4";
+ version = "7.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ganache/-/ganache-7.4.4.tgz";
- sha512 = "wC5XZB7ttHXc4rYfAq8+ieOZZajlsTdWsWievtQNjiuxcrIkqPqSwAZK6IP5mbooe/HSp3bDGJhXW5EHVd2G9w==";
+ url = "https://registry.npmjs.org/ganache/-/ganache-7.5.0.tgz";
+ sha512 = "afNTJYBEaFrLPRrn7eUxH39TgnrffvHn/4T6THzQrc3rpfe4DOxw2nY2XEQxfsq1t4OqKSXtxomzyo26RZiOzw==";
};
dependencies = [
sources."bufferutil-4.0.5"
@@ -107998,19 +109578,19 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
(sources."@babel/core-7.19.6" // {
dependencies = [
sources."semver-6.3.0"
];
})
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
- (sources."@babel/helper-compilation-targets-7.19.3" // {
+ (sources."@babel/helper-compilation-targets-7.20.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -108030,20 +109610,20 @@ in
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
(sources."@babel/highlight-7.18.6" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.19.6"
- sources."@babel/plugin-syntax-typescript-7.18.6"
- sources."@babel/plugin-transform-typescript-7.19.3"
+ sources."@babel/parser-7.20.1"
+ sources."@babel/plugin-syntax-typescript-7.20.0"
+ sources."@babel/plugin-transform-typescript-7.20.0"
sources."@babel/preset-typescript-7.18.6"
- sources."@babel/runtime-7.19.4"
+ sources."@babel/runtime-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@hapi/hoek-9.3.0"
sources."@hapi/topo-5.1.0"
sources."@jridgewell/gen-mapping-0.1.1"
@@ -108075,7 +109655,7 @@ in
sources."@types/common-tags-1.8.1"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/node-fetch-2.6.2"
sources."@types/responselike-1.0.0"
sources."@types/yoga-layout-1.9.2"
@@ -108102,7 +109682,7 @@ in
];
})
sources."camelcase-6.3.0"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -108256,7 +109836,7 @@ in
sources."is-wsl-2.2.0"
sources."is-yarn-global-0.3.0"
sources."isexe-2.0.0"
- sources."joi-17.6.4"
+ sources."joi-17.7.0"
sources."js-tokens-4.0.0"
sources."jsesc-2.5.2"
sources."json-buffer-3.0.1"
@@ -108463,10 +110043,10 @@ in
generator-code = nodeEnv.buildNodePackage {
name = "generator-code";
packageName = "generator-code";
- version = "1.7.0";
+ version = "1.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/generator-code/-/generator-code-1.7.0.tgz";
- sha512 = "9fikZrfmbtIuruMb+g9GSZ19sFk/aGZ9wHvhAoQ9C34dSd4o7c3g+dxwa+teBsNnWvF9ON1qn8hvKMbmGqGhTQ==";
+ url = "https://registry.npmjs.org/generator-code/-/generator-code-1.7.1.tgz";
+ sha512 = "I+xTH4f1EqKeK+El9RD5tRVPatbfH2AuMVYBKTW+Z0S/CzF0l2R+Glbp1ymNHRbyJe9qYUB0D/G7W/tE0FKcvQ==";
};
dependencies = [
sources."@babel/code-frame-7.18.6"
@@ -108671,7 +110251,7 @@ in
sources."infer-owner-1.0.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."inquirer-8.2.4"
+ sources."inquirer-8.2.5"
sources."interpret-1.4.0"
sources."ip-2.0.0"
sources."is-arrayish-0.2.1"
@@ -108766,7 +110346,7 @@ in
sources."cacache-16.1.3"
sources."glob-8.0.3"
sources."http-proxy-agent-5.0.0"
- sources."lru-cache-7.14.0"
+ sources."lru-cache-7.14.1"
(sources."make-fetch-happen-10.2.1" // {
dependencies = [
sources."minipass-fetch-2.1.2"
@@ -108880,7 +110460,7 @@ in
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."taketalk-1.0.0"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."text-table-0.2.0"
sources."textextensions-5.15.0"
sources."through-2.3.8"
@@ -108889,7 +110469,7 @@ in
sources."tr46-0.0.3"
sources."treeverse-1.0.4"
sources."truncate-utf8-bytes-1.0.2"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-fest-0.8.1"
sources."unique-filename-1.1.1"
sources."unique-slug-2.0.2"
@@ -109204,7 +110784,7 @@ in
sources."ssb-pull-requests-1.0.0"
sources."ssb-ref-2.16.0"
sources."ssb-typescript-2.8.0"
- sources."ssb-uri2-2.3.0"
+ sources."ssb-uri2-2.4.0"
(sources."stream-to-pull-stream-1.7.3" // {
dependencies = [
sources."looper-3.0.0"
@@ -109264,7 +110844,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/responselike-1.0.0"
sources."ansi-regex-6.0.1"
sources."ansi-styles-4.3.0"
@@ -109391,7 +110971,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/minimist-1.2.2"
sources."@types/normalize-package-data-2.4.1"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."agent-base-6.0.2"
sources."ajv-8.11.0"
@@ -109456,7 +111036,7 @@ in
sources."debounce-fn-4.0.0"
sources."debug-4.3.4"
sources."decamelize-5.0.1"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."decamelize-1.2.0"
sources."map-obj-1.0.1"
@@ -109693,7 +111273,7 @@ in
sources."tmp-0.0.33"
sources."toidentifier-1.0.1"
sources."trim-newlines-4.0.2"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-check-0.3.2"
sources."type-fest-3.1.0"
sources."typedarray-to-buffer-3.1.5"
@@ -109905,7 +111485,7 @@ in
sources."wrappy-1.0.2"
sources."xtend-4.0.2"
sources."y18n-5.0.8"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
sources."yauzl-2.10.0"
];
@@ -110039,10 +111619,10 @@ in
sources."tslib-2.1.0"
];
})
- (sources."@graphql-tools/import-6.7.6" // {
+ (sources."@graphql-tools/import-6.7.10" // {
dependencies = [
- sources."@graphql-tools/utils-8.12.0"
- sources."tslib-2.4.0"
+ sources."@graphql-tools/utils-9.0.1"
+ sources."tslib-2.4.1"
];
})
(sources."@graphql-tools/json-file-loader-6.2.6" // {
@@ -110054,7 +111634,7 @@ in
})
(sources."camel-case-4.1.2" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
];
@@ -110070,7 +111650,7 @@ in
dependencies = [
sources."@graphql-tools/merge-8.3.1"
sources."@graphql-tools/utils-8.9.0"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
(sources."@graphql-tools/url-loader-6.10.1" // {
@@ -110100,7 +111680,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -110137,7 +111717,7 @@ in
];
})
sources."call-bind-1.0.2"
- sources."call-me-maybe-1.0.1"
+ sources."call-me-maybe-1.0.2"
sources."callsites-3.1.0"
(sources."camel-case-4.1.1" // {
dependencies = [
@@ -110183,7 +111763,7 @@ in
sources."dataloader-2.0.0"
sources."debug-4.3.4"
sources."decompress-response-3.3.0"
- sources."deep-equal-2.0.5"
+ sources."deep-equal-2.1.0"
sources."deep-extend-0.6.0"
sources."defaults-1.0.4"
sources."defer-to-connect-1.1.3"
@@ -110195,9 +111775,7 @@ in
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
- sources."es-abstract-1.20.4"
sources."es-get-iterator-1.1.2"
- sources."es-to-primitive-1.2.1"
sources."es6-promise-3.3.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -110231,16 +111809,15 @@ in
sources."fs.realpath-1.0.0"
sources."fullname-4.0.1"
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
sources."functions-have-names-1.2.3"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.3"
sources."get-stream-4.1.0"
- sources."get-symbol-description-1.0.0"
sources."getpass-0.1.7"
sources."glob-7.2.3"
sources."glob-parent-5.1.2"
sources."globby-11.0.1"
+ sources."gopd-1.0.1"
(sources."got-9.6.0" // {
dependencies = [
sources."p-cancelable-1.1.0"
@@ -110291,7 +111868,6 @@ in
sources."strip-ansi-6.0.1"
];
})
- sources."internal-slot-1.0.3"
sources."is-arguments-1.1.1"
sources."is-arrayish-0.2.1"
sources."is-bigint-1.0.4"
@@ -110304,21 +111880,18 @@ in
sources."is-glob-4.0.1"
sources."is-interactive-1.0.0"
sources."is-map-2.0.2"
- sources."is-negative-zero-2.0.2"
sources."is-number-7.0.0"
sources."is-number-object-1.0.7"
sources."is-promise-4.0.0"
sources."is-regex-1.1.4"
sources."is-set-2.0.2"
- sources."is-shared-array-buffer-1.0.2"
sources."is-stream-1.1.0"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
+ sources."is-typed-array-1.1.10"
sources."is-typedarray-1.0.0"
sources."is-unicode-supported-0.1.0"
sources."is-weakmap-2.0.1"
- sources."is-weakref-1.0.2"
sources."is-weakset-2.0.2"
sources."is-wsl-2.2.0"
sources."isarray-2.0.5"
@@ -110359,7 +111932,7 @@ in
})
(sources."lower-case-2.0.2" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."lowercase-keys-1.0.1"
@@ -110386,7 +111959,7 @@ in
sources."nice-try-1.0.5"
(sources."no-case-3.0.4" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."node-emoji-1.10.0"
@@ -110401,7 +111974,7 @@ in
sources."oas-linter-3.2.2"
(sources."oas-resolver-2.5.6" // {
dependencies = [
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
];
})
sources."oas-schema-walker-1.1.5"
@@ -110445,7 +112018,7 @@ in
sources."parse-json-5.2.0"
(sources."pascal-case-3.1.2" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."passwd-user-3.0.0"
@@ -110482,7 +112055,6 @@ in
];
})
sources."safe-buffer-5.2.1"
- sources."safe-regex-test-1.0.0"
sources."safer-buffer-2.1.2"
sources."semver-5.7.1"
sources."shebang-command-1.2.0"
@@ -110506,8 +112078,6 @@ in
sources."strip-ansi-6.0.1"
];
})
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
sources."strip-ansi-5.2.0"
sources."strip-eof-1.0.0"
sources."strip-json-comments-2.0.1"
@@ -110515,7 +112085,7 @@ in
sources."supports-color-7.2.0"
(sources."swagger2openapi-7.0.8" // {
dependencies = [
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
];
})
sources."symbol-observable-1.2.0"
@@ -110530,7 +112100,6 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-fest-0.3.1"
- sources."unbox-primitive-1.0.2"
sources."universalify-1.0.0"
sources."unixify-1.0.0"
sources."uri-js-4.4.1"
@@ -110544,7 +112113,7 @@ in
sources."which-1.3.1"
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.1"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
(sources."wrap-ansi-7.0.0" // {
dependencies = [
sources."ansi-regex-5.0.1"
@@ -110590,29 +112159,32 @@ in
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/polyfill-7.12.1"
- sources."@babel/types-7.19.4"
+ sources."@babel/types-7.20.0"
sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2"
- sources."@graphql-tools/batch-execute-8.5.6"
- sources."@graphql-tools/delegate-9.0.8"
- sources."@graphql-tools/graphql-file-loader-7.5.5"
- sources."@graphql-tools/import-6.7.6"
- sources."@graphql-tools/json-file-loader-7.4.6"
- sources."@graphql-tools/load-7.7.7"
- sources."@graphql-tools/merge-8.3.6"
- sources."@graphql-tools/schema-9.0.4"
- sources."@graphql-tools/url-loader-7.16.4"
- sources."@graphql-tools/utils-8.12.0"
- sources."@graphql-tools/wrap-9.2.3"
+ sources."@graphql-tools/batch-execute-8.5.10"
+ sources."@graphql-tools/delegate-9.0.14"
+ sources."@graphql-tools/executor-0.0.6"
+ sources."@graphql-tools/graphql-file-loader-7.5.9"
+ sources."@graphql-tools/import-6.7.10"
+ sources."@graphql-tools/json-file-loader-7.4.10"
+ sources."@graphql-tools/load-7.8.4"
+ sources."@graphql-tools/merge-8.3.10"
+ sources."@graphql-tools/schema-9.0.8"
+ sources."@graphql-tools/url-loader-7.16.10"
+ sources."@graphql-tools/utils-9.0.1"
+ sources."@graphql-tools/wrap-9.2.9"
+ sources."@graphql-typed-document-node/core-3.1.1"
sources."@iarna/toml-2.2.5"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
sources."@peculiar/asn1-schema-2.3.0"
sources."@peculiar/json-schema-1.1.12"
- sources."@peculiar/webcrypto-1.4.0"
- sources."@types/node-18.11.3"
+ sources."@peculiar/webcrypto-1.4.1"
+ sources."@repeaterjs/repeater-3.0.4"
+ sources."@types/node-18.11.9"
sources."@types/parse-json-4.0.0"
sources."@types/ws-8.5.3"
sources."@vue/compiler-core-3.2.41"
@@ -110621,7 +112193,7 @@ in
sources."@vue/compiler-ssr-3.2.41"
sources."@vue/reactivity-transform-3.2.41"
sources."@vue/shared-3.2.41"
- sources."@whatwg-node/fetch-0.4.7"
+ sources."@whatwg-node/fetch-0.5.1"
sources."abort-controller-3.0.0"
sources."ansi-regex-5.0.1"
sources."ansi-styles-3.2.1"
@@ -110674,6 +112246,7 @@ in
sources."graphql-16.6.0"
(sources."graphql-config-4.3.0" // {
dependencies = [
+ sources."@graphql-tools/utils-8.13.1"
sources."minimatch-4.2.1"
];
})
@@ -110747,9 +112320,9 @@ in
sources."to-regex-range-5.0.1"
sources."tr46-0.0.3"
sources."ts-node-9.1.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."typescript-4.8.4"
- sources."undici-5.11.0"
+ sources."undici-5.12.0"
sources."unixify-1.0.0"
sources."utf-8-validate-5.0.10"
sources."value-or-promise-1.0.11"
@@ -110770,7 +112343,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-8.9.0"
+ sources."ws-8.10.0"
sources."y18n-5.0.8"
sources."yaml-1.10.2"
sources."yargs-16.2.0"
@@ -110813,22 +112386,65 @@ in
})
sources."@cronvel/get-pixels-3.4.1"
sources."@cspotcode/source-map-support-0.8.1"
- sources."@graphql-tools/batch-execute-8.5.6"
- sources."@graphql-tools/delegate-9.0.8"
- sources."@graphql-tools/graphql-file-loader-7.5.5"
- sources."@graphql-tools/import-6.7.6"
- sources."@graphql-tools/json-file-loader-7.4.6"
- sources."@graphql-tools/load-7.7.7"
- sources."@graphql-tools/merge-8.3.6"
- sources."@graphql-tools/schema-9.0.4"
- (sources."@graphql-tools/url-loader-7.16.4" // {
+ (sources."@graphql-tools/batch-execute-8.5.10" // {
dependencies = [
- sources."isomorphic-ws-5.0.0"
- sources."ws-8.9.0"
+ sources."@graphql-tools/utils-9.0.1"
];
})
- sources."@graphql-tools/utils-8.12.0"
- sources."@graphql-tools/wrap-9.2.3"
+ (sources."@graphql-tools/delegate-9.0.14" // {
+ dependencies = [
+ sources."@graphql-tools/utils-9.0.1"
+ ];
+ })
+ (sources."@graphql-tools/executor-0.0.6" // {
+ dependencies = [
+ sources."@graphql-tools/utils-9.0.1"
+ ];
+ })
+ (sources."@graphql-tools/graphql-file-loader-7.5.9" // {
+ dependencies = [
+ sources."@graphql-tools/utils-9.0.1"
+ ];
+ })
+ (sources."@graphql-tools/import-6.7.10" // {
+ dependencies = [
+ sources."@graphql-tools/utils-9.0.1"
+ ];
+ })
+ (sources."@graphql-tools/json-file-loader-7.4.10" // {
+ dependencies = [
+ sources."@graphql-tools/utils-9.0.1"
+ ];
+ })
+ (sources."@graphql-tools/load-7.8.4" // {
+ dependencies = [
+ sources."@graphql-tools/utils-9.0.1"
+ ];
+ })
+ (sources."@graphql-tools/merge-8.3.10" // {
+ dependencies = [
+ sources."@graphql-tools/utils-9.0.1"
+ ];
+ })
+ (sources."@graphql-tools/schema-9.0.8" // {
+ dependencies = [
+ sources."@graphql-tools/utils-9.0.1"
+ ];
+ })
+ (sources."@graphql-tools/url-loader-7.16.10" // {
+ dependencies = [
+ sources."@graphql-tools/utils-9.0.1"
+ sources."isomorphic-ws-5.0.0"
+ sources."ws-8.10.0"
+ ];
+ })
+ sources."@graphql-tools/utils-8.13.1"
+ (sources."@graphql-tools/wrap-9.2.9" // {
+ dependencies = [
+ sources."@graphql-tools/utils-9.0.1"
+ ];
+ })
+ sources."@graphql-typed-document-node/core-3.1.1"
sources."@iarna/toml-2.2.5"
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/sourcemap-codec-1.4.14"
@@ -110867,58 +112483,59 @@ in
sources."@oclif/screen-1.0.4"
sources."@peculiar/asn1-schema-2.3.0"
sources."@peculiar/json-schema-1.1.12"
- sources."@peculiar/webcrypto-1.4.0"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@peculiar/webcrypto-1.4.1"
+ sources."@repeaterjs/repeater-3.0.4"
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- (sources."@swc/core-android-arm64-1.3.10" // {
+ (sources."@swc/core-android-arm64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- (sources."@swc/core-freebsd-x64-1.3.10" // {
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ (sources."@swc/core-freebsd-x64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-linux-arm-gnueabihf-1.3.10" // {
+ (sources."@swc/core-linux-arm-gnueabihf-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- (sources."@swc/core-win32-arm64-msvc-1.3.10" // {
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ (sources."@swc/core-win32-arm64-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-win32-ia32-msvc-1.3.10" // {
+ (sources."@swc/core-win32-ia32-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-win32-x64-msvc-1.3.10"
- sources."@swc/wasm-1.3.10"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
+ sources."@swc/wasm-1.3.12"
sources."@tsconfig/node10-1.0.9"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
sources."@types/json-schema-7.0.9"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/parse-json-4.0.0"
sources."@types/ws-8.5.3"
- sources."@whatwg-node/fetch-0.4.7"
+ sources."@whatwg-node/fetch-0.5.1"
sources."abort-controller-3.0.0"
sources."accepts-1.3.8"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-5.0.1"
@@ -110975,7 +112592,7 @@ in
sources."cookie-signature-1.0.6"
sources."cosmiconfig-7.0.1"
sources."cosmiconfig-toml-loader-1.0.0"
- sources."cosmiconfig-typescript-loader-4.1.1"
+ sources."cosmiconfig-typescript-loader-4.2.0"
sources."create-require-1.1.1"
(sources."cross-spawn-6.0.5" // {
dependencies = [
@@ -111190,10 +112807,10 @@ in
sources."tree-kit-0.7.4"
sources."treeify-1.1.0"
sources."ts-node-10.9.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-is-1.6.18"
sources."typescript-4.8.4"
- sources."undici-5.11.0"
+ sources."undici-5.12.0"
sources."uniq-1.0.1"
sources."universalify-0.1.2"
sources."unixify-1.0.0"
@@ -111497,7 +113114,7 @@ in
sources."isarray-0.0.1"
sources."lodash-4.17.21"
sources."map-canvas-0.1.5"
- sources."marked-4.1.1"
+ sources."marked-4.2.1"
(sources."marked-terminal-5.1.1" // {
dependencies = [
sources."chalk-5.1.2"
@@ -111528,7 +113145,7 @@ in
sources."supports-color-7.2.0"
];
})
- sources."systeminformation-5.12.7"
+ sources."systeminformation-5.12.11"
sources."term-canvas-0.0.5"
sources."type-fest-1.4.0"
sources."wordwrap-0.0.3"
@@ -112428,7 +114045,7 @@ in
sources."param-case-2.1.1"
sources."relateurl-0.2.7"
sources."source-map-0.6.1"
- sources."uglify-js-3.17.3"
+ sources."uglify-js-3.17.4"
sources."upper-case-1.1.3"
];
buildInputs = globalBuildInputs;
@@ -112727,7 +114344,7 @@ in
sources."@colors/colors-1.5.0"
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.18.32"
+ sources."@types/node-14.18.33"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -112737,7 +114354,7 @@ in
sources."async-2.6.4"
sources."asynckit-0.4.0"
sources."available-typed-arrays-1.0.5"
- sources."aws-sdk-2.1238.0"
+ sources."aws-sdk-2.1246.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."base64-js-1.5.1"
@@ -112761,7 +114378,6 @@ in
sources."dashdash-1.14.1"
sources."debug-4.3.4"
sources."deep-is-0.1.4"
- sources."define-properties-1.1.4"
sources."delayed-stream-1.0.0"
sources."dom-serializer-0.1.1"
sources."domelementtype-1.3.1"
@@ -112770,8 +114386,6 @@ in
sources."ecc-jsbn-0.1.2"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
- sources."es-abstract-1.20.4"
- sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escodegen-1.14.3"
sources."esprima-4.0.1"
@@ -112789,24 +114403,19 @@ in
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
- sources."functions-have-names-1.2.3"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.3"
- sources."get-symbol-description-1.0.0"
sources."getpass-0.1.7"
+ sources."gopd-1.0.1"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
sources."has-1.0.3"
- sources."has-bigints-1.0.2"
- sources."has-property-descriptors-1.0.0"
sources."has-symbols-1.0.3"
sources."has-tostringtag-1.0.0"
sources."htmlparser2-3.10.1"
sources."http-signature-1.2.0"
sources."ieee754-1.1.13"
sources."inherits-2.0.4"
- sources."internal-slot-1.0.3"
(sources."ip-address-6.1.0" // {
dependencies = [
sources."jsbn-1.1.0"
@@ -112814,21 +114423,11 @@ in
];
})
sources."is-arguments-1.1.1"
- sources."is-bigint-1.0.4"
- sources."is-boolean-object-1.1.2"
sources."is-callable-1.2.7"
- sources."is-date-object-1.0.5"
sources."is-fullwidth-code-point-3.0.0"
sources."is-generator-function-1.0.10"
- sources."is-negative-zero-2.0.2"
- sources."is-number-object-1.0.7"
- sources."is-regex-1.1.4"
- sources."is-shared-array-buffer-1.0.2"
- sources."is-string-1.0.7"
- sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
+ sources."is-typed-array-1.1.10"
sources."is-typedarray-1.0.0"
- sources."is-weakref-1.0.2"
sources."isarray-1.0.0"
sources."isstream-0.1.2"
sources."jmespath-0.16.0"
@@ -112869,7 +114468,7 @@ in
sources."lodash.reject-4.6.0"
sources."lodash.some-4.6.0"
sources."lodash.uniq-4.5.0"
- sources."marked-4.1.1"
+ sources."marked-4.2.1"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."minimist-1.2.7"
@@ -112881,9 +114480,6 @@ in
sources."named-regexp-0.1.1"
sources."nth-check-1.0.2"
sources."oauth-sign-0.9.0"
- sources."object-inspect-1.12.2"
- sources."object-keys-1.1.1"
- sources."object.assign-4.1.4"
sources."optionator-0.8.3"
sources."performance-now-2.1.0"
sources."prelude-ls-1.1.2"
@@ -112899,7 +114495,6 @@ in
sources."read-1.0.7"
sources."readable-stream-3.6.0"
sources."recursive-readdir-sync-1.0.6"
- sources."regexp.prototype.flags-1.4.3"
(sources."request-2.88.2" // {
dependencies = [
sources."uuid-3.4.0"
@@ -112909,11 +114504,9 @@ in
sources."require-directory-2.1.1"
sources."revalidator-0.1.8"
sources."safe-buffer-5.2.1"
- sources."safe-regex-test-1.0.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.1"
sources."semver-5.7.1"
- sources."side-channel-1.0.4"
sources."socks5-client-1.2.8"
sources."socks5-http-client-1.0.4"
sources."source-map-0.6.1"
@@ -112922,8 +114515,6 @@ in
sources."stack-trace-0.0.10"
sources."static-eval-2.0.2"
sources."string-width-4.2.3"
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
(sources."tough-cookie-2.5.0" // {
@@ -112934,7 +114525,6 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
- sources."unbox-primitive-1.0.2"
sources."underscore-1.12.1"
(sources."uri-js-4.4.1" // {
dependencies = [
@@ -112946,8 +114536,7 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-8.0.0"
sources."verror-1.10.1"
- sources."which-boxed-primitive-1.0.2"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
(sources."winston-2.4.6" // {
dependencies = [
sources."async-3.2.4"
@@ -113288,10 +114877,10 @@ in
immich = nodeEnv.buildNodePackage {
name = "immich";
packageName = "immich";
- version = "0.22.0";
+ version = "0.24.0";
src = fetchurl {
- url = "https://registry.npmjs.org/immich/-/immich-0.22.0.tgz";
- sha512 = "FB6jdX2xSaQwXc18Ig68R0fuA3CB09z8V/ljd4fdRMeq0RGVzs4owUYGYjB2ylGADBOfLQTTcBF5E5m5JAbWlw==";
+ url = "https://registry.npmjs.org/immich/-/immich-0.24.0.tgz";
+ sha512 = "ajDbwecJ46/7PzYPjWu49a7qmcskbIBMTB9Oufpb6r0LTbm7wImahFAENZlB+c1gjNdjguW2L9a85IKuamREvQ==";
};
dependencies = [
sources."@ffprobe-installer/darwin-arm64-5.0.1"
@@ -113355,7 +114944,7 @@ in
sources."strip-ansi-6.0.1"
sources."strip-final-newline-2.0.0"
sources."supports-color-5.5.0"
- sources."systeminformation-5.12.7"
+ sources."systeminformation-5.12.11"
sources."util-deprecate-1.0.2"
sources."which-2.0.2"
sources."wrappy-1.0.2"
@@ -113722,7 +115311,7 @@ in
sources."ansi-styles-3.2.1"
(sources."ast-types-0.13.4" // {
dependencies = [
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
})
sources."astral-regex-2.0.0"
@@ -114076,7 +115665,7 @@ in
sources."spiro-3.0.0"
sources."supports-color-7.2.0"
sources."toposort-2.0.2"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."typo-geom-0.12.1"
sources."uuid-8.3.2"
sources."wawoff2-2.0.1"
@@ -114265,100 +115854,100 @@ in
sources."tslib-1.14.1"
];
})
- sources."@aws-sdk/abort-controller-3.193.0"
+ sources."@aws-sdk/abort-controller-3.201.0"
sources."@aws-sdk/chunked-blob-reader-3.188.0"
sources."@aws-sdk/chunked-blob-reader-native-3.188.0"
- (sources."@aws-sdk/client-s3-3.194.0" // {
+ (sources."@aws-sdk/client-s3-3.202.0" // {
dependencies = [
sources."fast-xml-parser-4.0.11"
];
})
- sources."@aws-sdk/client-sso-3.193.0"
- (sources."@aws-sdk/client-sts-3.194.0" // {
+ sources."@aws-sdk/client-sso-3.202.0"
+ (sources."@aws-sdk/client-sts-3.202.0" // {
dependencies = [
sources."fast-xml-parser-4.0.11"
];
})
- sources."@aws-sdk/config-resolver-3.193.0"
- sources."@aws-sdk/credential-provider-env-3.193.0"
- sources."@aws-sdk/credential-provider-imds-3.193.0"
- sources."@aws-sdk/credential-provider-ini-3.193.0"
- sources."@aws-sdk/credential-provider-node-3.193.0"
- sources."@aws-sdk/credential-provider-process-3.193.0"
- sources."@aws-sdk/credential-provider-sso-3.193.0"
- sources."@aws-sdk/credential-provider-web-identity-3.193.0"
- sources."@aws-sdk/eventstream-codec-3.193.0"
- sources."@aws-sdk/eventstream-serde-browser-3.193.0"
- sources."@aws-sdk/eventstream-serde-config-resolver-3.193.0"
- sources."@aws-sdk/eventstream-serde-node-3.193.0"
- sources."@aws-sdk/eventstream-serde-universal-3.193.0"
- sources."@aws-sdk/fetch-http-handler-3.193.0"
- sources."@aws-sdk/hash-blob-browser-3.193.0"
- sources."@aws-sdk/hash-node-3.193.0"
- sources."@aws-sdk/hash-stream-node-3.193.0"
- sources."@aws-sdk/invalid-dependency-3.193.0"
- sources."@aws-sdk/is-array-buffer-3.188.0"
- sources."@aws-sdk/md5-js-3.193.0"
- sources."@aws-sdk/middleware-bucket-endpoint-3.193.0"
- sources."@aws-sdk/middleware-content-length-3.193.0"
- sources."@aws-sdk/middleware-endpoint-3.193.0"
- sources."@aws-sdk/middleware-expect-continue-3.193.0"
- sources."@aws-sdk/middleware-flexible-checksums-3.193.0"
- sources."@aws-sdk/middleware-host-header-3.193.0"
- sources."@aws-sdk/middleware-location-constraint-3.193.0"
- sources."@aws-sdk/middleware-logger-3.193.0"
- sources."@aws-sdk/middleware-recursion-detection-3.193.0"
- (sources."@aws-sdk/middleware-retry-3.193.0" // {
+ sources."@aws-sdk/config-resolver-3.201.0"
+ sources."@aws-sdk/credential-provider-env-3.201.0"
+ sources."@aws-sdk/credential-provider-imds-3.201.0"
+ sources."@aws-sdk/credential-provider-ini-3.202.0"
+ sources."@aws-sdk/credential-provider-node-3.202.0"
+ sources."@aws-sdk/credential-provider-process-3.201.0"
+ sources."@aws-sdk/credential-provider-sso-3.202.0"
+ sources."@aws-sdk/credential-provider-web-identity-3.201.0"
+ sources."@aws-sdk/eventstream-codec-3.201.0"
+ sources."@aws-sdk/eventstream-serde-browser-3.201.0"
+ sources."@aws-sdk/eventstream-serde-config-resolver-3.201.0"
+ sources."@aws-sdk/eventstream-serde-node-3.201.0"
+ sources."@aws-sdk/eventstream-serde-universal-3.201.0"
+ sources."@aws-sdk/fetch-http-handler-3.201.0"
+ sources."@aws-sdk/hash-blob-browser-3.201.0"
+ sources."@aws-sdk/hash-node-3.201.0"
+ sources."@aws-sdk/hash-stream-node-3.201.0"
+ sources."@aws-sdk/invalid-dependency-3.201.0"
+ sources."@aws-sdk/is-array-buffer-3.201.0"
+ sources."@aws-sdk/md5-js-3.201.0"
+ sources."@aws-sdk/middleware-bucket-endpoint-3.201.0"
+ sources."@aws-sdk/middleware-content-length-3.201.0"
+ sources."@aws-sdk/middleware-endpoint-3.201.0"
+ sources."@aws-sdk/middleware-expect-continue-3.201.0"
+ sources."@aws-sdk/middleware-flexible-checksums-3.201.0"
+ sources."@aws-sdk/middleware-host-header-3.201.0"
+ sources."@aws-sdk/middleware-location-constraint-3.201.0"
+ sources."@aws-sdk/middleware-logger-3.201.0"
+ sources."@aws-sdk/middleware-recursion-detection-3.201.0"
+ (sources."@aws-sdk/middleware-retry-3.201.0" // {
dependencies = [
sources."uuid-8.3.2"
];
})
- sources."@aws-sdk/middleware-sdk-s3-3.193.0"
- sources."@aws-sdk/middleware-sdk-sts-3.193.0"
- sources."@aws-sdk/middleware-serde-3.193.0"
- sources."@aws-sdk/middleware-signing-3.193.0"
- sources."@aws-sdk/middleware-ssec-3.193.0"
- sources."@aws-sdk/middleware-stack-3.193.0"
- sources."@aws-sdk/middleware-user-agent-3.193.0"
- sources."@aws-sdk/node-config-provider-3.193.0"
- sources."@aws-sdk/node-http-handler-3.193.0"
- sources."@aws-sdk/property-provider-3.193.0"
- sources."@aws-sdk/protocol-http-3.193.0"
- sources."@aws-sdk/querystring-builder-3.193.0"
- sources."@aws-sdk/querystring-parser-3.193.0"
- sources."@aws-sdk/s3-request-presigner-3.194.0"
- sources."@aws-sdk/service-error-classification-3.193.0"
- sources."@aws-sdk/shared-ini-file-loader-3.193.0"
- sources."@aws-sdk/signature-v4-3.193.0"
- sources."@aws-sdk/signature-v4-crt-3.193.0"
- sources."@aws-sdk/signature-v4-multi-region-3.193.0"
- sources."@aws-sdk/smithy-client-3.193.0"
- sources."@aws-sdk/types-3.193.0"
- sources."@aws-sdk/url-parser-3.193.0"
- sources."@aws-sdk/util-arn-parser-3.188.0"
+ sources."@aws-sdk/middleware-sdk-s3-3.201.0"
+ sources."@aws-sdk/middleware-sdk-sts-3.201.0"
+ sources."@aws-sdk/middleware-serde-3.201.0"
+ sources."@aws-sdk/middleware-signing-3.201.0"
+ sources."@aws-sdk/middleware-ssec-3.201.0"
+ sources."@aws-sdk/middleware-stack-3.201.0"
+ sources."@aws-sdk/middleware-user-agent-3.201.0"
+ sources."@aws-sdk/node-config-provider-3.201.0"
+ sources."@aws-sdk/node-http-handler-3.201.0"
+ sources."@aws-sdk/property-provider-3.201.0"
+ sources."@aws-sdk/protocol-http-3.201.0"
+ sources."@aws-sdk/querystring-builder-3.201.0"
+ sources."@aws-sdk/querystring-parser-3.201.0"
+ sources."@aws-sdk/s3-request-presigner-3.202.0"
+ sources."@aws-sdk/service-error-classification-3.201.0"
+ sources."@aws-sdk/shared-ini-file-loader-3.201.0"
+ sources."@aws-sdk/signature-v4-3.201.0"
+ sources."@aws-sdk/signature-v4-crt-3.201.0"
+ sources."@aws-sdk/signature-v4-multi-region-3.201.0"
+ sources."@aws-sdk/smithy-client-3.201.0"
+ sources."@aws-sdk/types-3.201.0"
+ sources."@aws-sdk/url-parser-3.201.0"
+ sources."@aws-sdk/util-arn-parser-3.201.0"
sources."@aws-sdk/util-base64-browser-3.188.0"
- sources."@aws-sdk/util-base64-node-3.188.0"
+ sources."@aws-sdk/util-base64-node-3.201.0"
sources."@aws-sdk/util-body-length-browser-3.188.0"
- sources."@aws-sdk/util-body-length-node-3.188.0"
- sources."@aws-sdk/util-buffer-from-3.188.0"
- sources."@aws-sdk/util-config-provider-3.188.0"
- sources."@aws-sdk/util-create-request-3.193.0"
- sources."@aws-sdk/util-defaults-mode-browser-3.193.0"
- sources."@aws-sdk/util-defaults-mode-node-3.193.0"
- sources."@aws-sdk/util-endpoints-3.194.0"
- sources."@aws-sdk/util-format-url-3.193.0"
- sources."@aws-sdk/util-hex-encoding-3.188.0"
- sources."@aws-sdk/util-locate-window-3.188.0"
- sources."@aws-sdk/util-middleware-3.193.0"
- sources."@aws-sdk/util-stream-browser-3.193.0"
- sources."@aws-sdk/util-stream-node-3.193.0"
- sources."@aws-sdk/util-uri-escape-3.188.0"
- sources."@aws-sdk/util-user-agent-browser-3.193.0"
- sources."@aws-sdk/util-user-agent-node-3.193.0"
+ sources."@aws-sdk/util-body-length-node-3.201.0"
+ sources."@aws-sdk/util-buffer-from-3.201.0"
+ sources."@aws-sdk/util-config-provider-3.201.0"
+ sources."@aws-sdk/util-create-request-3.201.0"
+ sources."@aws-sdk/util-defaults-mode-browser-3.201.0"
+ sources."@aws-sdk/util-defaults-mode-node-3.201.0"
+ sources."@aws-sdk/util-endpoints-3.202.0"
+ sources."@aws-sdk/util-format-url-3.201.0"
+ sources."@aws-sdk/util-hex-encoding-3.201.0"
+ sources."@aws-sdk/util-locate-window-3.201.0"
+ sources."@aws-sdk/util-middleware-3.201.0"
+ sources."@aws-sdk/util-stream-browser-3.201.0"
+ sources."@aws-sdk/util-stream-node-3.201.0"
+ sources."@aws-sdk/util-uri-escape-3.201.0"
+ sources."@aws-sdk/util-user-agent-browser-3.201.0"
+ sources."@aws-sdk/util-user-agent-node-3.201.0"
sources."@aws-sdk/util-utf8-browser-3.188.0"
- sources."@aws-sdk/util-utf8-node-3.188.0"
- sources."@aws-sdk/util-waiter-3.193.0"
- sources."@aws-sdk/xml-builder-3.188.0"
+ sources."@aws-sdk/util-utf8-node-3.201.0"
+ sources."@aws-sdk/util-waiter-3.201.0"
+ sources."@aws-sdk/xml-builder-3.201.0"
sources."@braintree/sanitize-url-6.0.1"
sources."@cronvel/get-pixels-3.4.1"
sources."@gar/promisify-1.1.3"
@@ -114405,7 +115994,7 @@ in
sources."semver-7.3.8"
sources."string-width-4.2.3"
sources."strip-ansi-6.0.1"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."tr46-0.0.3"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
@@ -114424,7 +116013,7 @@ in
})
sources."@tootallnate/once-1.1.2"
sources."@types/nanoid-3.0.0"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/ws-8.5.3"
sources."abab-2.0.6"
sources."abbrev-1.1.1"
@@ -114469,10 +116058,10 @@ in
(sources."aws-crt-1.14.5" // {
dependencies = [
sources."mkdirp-1.0.4"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
];
})
- (sources."aws-sdk-2.1238.0" // {
+ (sources."aws-sdk-2.1246.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -114514,13 +116103,13 @@ in
dependencies = [
sources."mkdirp-1.0.4"
sources."rimraf-3.0.2"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
];
})
sources."call-bind-1.0.2"
sources."camel-case-3.0.0"
sources."camelcase-2.1.1"
- sources."canvas-2.10.1"
+ sources."canvas-2.10.2"
sources."caseless-0.12.0"
sources."chainsaw-0.1.0"
sources."chalk-4.1.2"
@@ -114658,7 +116247,6 @@ in
sources."deep-extend-0.6.0"
sources."deep-is-0.1.4"
sources."deepmerge-2.2.1"
- sources."define-properties-1.1.4"
sources."delaunator-5.0.0"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
@@ -114701,8 +116289,6 @@ in
sources."entities-2.2.0"
sources."env-paths-2.2.1"
sources."err-code-2.0.3"
- sources."es-abstract-1.20.4"
- sources."es-to-primitive-1.2.1"
sources."es6-promise-pool-2.5.0"
sources."escape-string-regexp-1.0.5"
sources."escodegen-1.14.3"
@@ -114713,6 +116299,7 @@ in
sources."expand-template-2.0.3"
sources."extend-3.0.2"
sources."extsprintf-1.3.0"
+ sources."fast-clone-1.5.13"
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
@@ -114741,17 +116328,15 @@ in
sources."fsevents-2.3.2"
sources."fstream-1.0.12"
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
- sources."functions-have-names-1.2.3"
sources."gauge-1.2.7"
sources."get-intrinsic-1.1.3"
sources."get-prototype-chain-1.0.1"
sources."get-stdin-5.0.1"
- sources."get-symbol-description-1.0.0"
sources."getpass-0.1.7"
sources."github-from-package-0.0.0"
sources."glob-7.2.3"
sources."glob-parent-5.1.2"
+ sources."gopd-1.0.1"
sources."graceful-fs-4.2.10"
sources."graphlib-2.1.8"
sources."growly-1.3.0"
@@ -114759,9 +116344,7 @@ in
sources."har-validator-5.1.5"
sources."has-1.0.3"
sources."has-ansi-2.0.0"
- sources."has-bigints-1.0.2"
sources."has-flag-4.0.0"
- sources."has-property-descriptors-1.0.0"
sources."has-symbols-1.0.3"
sources."has-tostringtag-1.0.0"
sources."has-unicode-2.0.1"
@@ -114772,7 +116355,7 @@ in
];
})
sources."highlight.js-11.1.0"
- sources."hpagent-1.1.0"
+ sources."hpagent-1.2.0"
sources."html-encoding-sniffer-1.0.2"
sources."html-entities-1.4.0"
sources."html-minifier-3.5.21"
@@ -114825,7 +116408,6 @@ in
sources."split-skip-0.0.1"
];
})
- sources."internal-slot-1.0.3"
sources."internmap-2.0.3"
sources."invert-kv-1.0.0"
sources."iota-array-1.0.0"
@@ -114834,12 +116416,9 @@ in
sources."is-absolute-0.2.6"
sources."is-arguments-1.1.1"
sources."is-arrayish-0.3.2"
- sources."is-bigint-1.0.4"
sources."is-binary-path-2.1.0"
- sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.7"
- sources."is-date-object-1.0.5"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-1.0.0"
@@ -114847,20 +116426,13 @@ in
sources."is-glob-4.0.3"
sources."is-iojs-1.1.0"
sources."is-lambda-1.0.1"
- sources."is-negative-zero-2.0.2"
sources."is-number-7.0.0"
- sources."is-number-object-1.0.7"
- sources."is-regex-1.1.4"
sources."is-relative-0.2.1"
- sources."is-shared-array-buffer-1.0.2"
sources."is-stream-1.1.0"
- sources."is-string-1.0.7"
- sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
+ sources."is-typed-array-1.1.10"
sources."is-typedarray-1.0.0"
sources."is-unc-path-0.1.2"
sources."is-url-1.2.4"
- sources."is-weakref-1.0.2"
sources."is-windows-0.2.0"
sources."is-wsl-2.2.0"
(sources."is2-0.0.9" // {
@@ -114956,7 +116528,11 @@ in
sources."string_decoder-0.10.31"
];
})
- sources."mermaid-9.1.7"
+ (sources."mermaid-9.2.0" // {
+ dependencies = [
+ sources."uuid-9.0.0"
+ ];
+ })
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."mimer-2.0.2"
@@ -114973,7 +116549,7 @@ in
sources."mkdirp-0.5.6"
sources."mkdirp-classic-0.5.3"
sources."moment-2.29.4"
- sources."moment-mini-2.24.0"
+ sources."moment-mini-2.29.4"
(sources."mqtt-4.3.7" // {
dependencies = [
sources."duplexify-4.1.2"
@@ -115015,7 +116591,7 @@ in
sources."semver-7.3.8"
sources."string-width-4.2.3"
sources."strip-ansi-6.0.1"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."which-2.0.2"
];
})
@@ -115029,6 +116605,7 @@ in
})
sources."node-persist-2.1.0"
sources."node-rsa-1.1.1"
+ sources."non-layered-tidy-tree-layout-2.0.2"
sources."nopt-5.0.0"
sources."normalize-path-3.0.0"
sources."npmlog-1.2.1"
@@ -115037,15 +116614,12 @@ in
sources."nwsapi-2.2.2"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.12.2"
- sources."object-keys-1.1.1"
(sources."object-to-arguments-0.0.8" // {
dependencies = [
sources."inspect-parameters-declaration-0.0.10"
sources."magicli-0.0.5"
];
})
- sources."object.assign-4.1.4"
sources."omggif-1.0.10"
sources."once-1.4.0"
sources."open-7.4.2"
@@ -115103,7 +116677,6 @@ in
sources."readdirp-3.6.0"
sources."reduce-flatten-1.0.1"
sources."redux-3.7.2"
- sources."regexp.prototype.flags-1.4.3"
sources."reinterval-1.1.0"
sources."relateurl-0.2.7"
sources."relative-3.0.2"
@@ -115128,7 +116701,6 @@ in
sources."robust-predicates-3.0.1"
sources."rw-1.3.3"
sources."safe-buffer-5.2.1"
- sources."safe-regex-test-1.0.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
sources."saxes-3.1.11"
@@ -115165,7 +116737,6 @@ in
];
})
sources."shellwords-0.1.1"
- sources."side-channel-1.0.4"
sources."signal-exit-3.0.7"
sources."simple-concat-1.0.1"
sources."simple-get-3.1.1"
@@ -115192,7 +116763,7 @@ in
(sources."sqlite3-5.1.2" // {
dependencies = [
sources."mkdirp-1.0.4"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
];
})
sources."sshpk-1.17.0"
@@ -115209,8 +116780,6 @@ in
sources."strip-ansi-3.0.1"
];
})
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
(sources."string_decoder-1.1.1" // {
dependencies = [
sources."safe-buffer-5.1.2"
@@ -115228,7 +116797,7 @@ in
})
sources."strip-json-comments-2.0.1"
sources."strnum-1.0.5"
- sources."stylis-4.1.2"
+ sources."stylis-4.1.3"
sources."supports-color-7.2.0"
sources."symbol-observable-1.2.0"
sources."symbol-tree-3.2.4"
@@ -115277,7 +116846,7 @@ in
sources."tr46-1.0.1"
sources."traverse-0.3.9"
sources."tree-kit-0.7.4"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
@@ -115291,7 +116860,6 @@ in
})
sources."uglifycss-0.0.29"
sources."uid-safe-2.1.5"
- sources."unbox-primitive-1.0.2"
sources."unc-path-regex-0.1.2"
sources."uniq-1.0.1"
sources."unique-filename-1.1.1"
@@ -115334,8 +116902,7 @@ in
sources."whatwg-mimetype-2.3.0"
sources."whatwg-url-7.1.0"
sources."which-1.3.1"
- sources."which-boxed-primitive-1.0.2"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
sources."wide-align-1.1.5"
sources."window-size-0.1.4"
sources."word-wrap-1.2.3"
@@ -115346,7 +116913,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-8.9.0"
+ sources."ws-8.10.0"
sources."xml-name-validator-3.0.0"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
@@ -115442,7 +117009,7 @@ in
sha512 = "8UCU0TYeIYD9KeLzEcAu2q8N/mx9O3phAGl32nmHlE0LpaJL71mMkP4d+QE5zWfNt50qheHtOZ0qoxVrsX5TUg==";
};
dependencies = [
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@types/linkify-it-3.0.2"
sources."@types/markdown-it-12.2.3"
sources."@types/mdurl-1.0.2"
@@ -115458,7 +117025,7 @@ in
sources."lodash-4.17.21"
sources."markdown-it-12.3.2"
sources."markdown-it-anchor-8.6.5"
- sources."marked-4.1.1"
+ sources."marked-4.2.1"
sources."mdurl-1.0.1"
sources."mkdirp-1.0.4"
sources."requizzle-0.2.3"
@@ -115554,10 +117121,10 @@ in
json-diff = nodeEnv.buildNodePackage {
name = "json-diff";
packageName = "json-diff";
- version = "0.9.0";
+ version = "0.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/json-diff/-/json-diff-0.9.0.tgz";
- sha512 = "cVnggDrVkAAA3OvFfHpFEhOnmcsUpleEKq4d4O8sQWWSH40MBrWstKigVB1kGrgLWzuom+7rRdaCsnBD6VyObQ==";
+ url = "https://registry.npmjs.org/json-diff/-/json-diff-0.9.1.tgz";
+ sha512 = "Z3eMg6kbVTBr3g/IpmF6z28yL2sqi4kkIlJWDQSt0auQW2y0QFu3RmSKizvj880E/EUyNanvWY3oi/T5Z7ZA1g==";
};
dependencies = [
sources."cli-color-2.0.3"
@@ -115889,7 +117456,7 @@ in
sources."xdg-basedir-4.0.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
];
buildInputs = globalBuildInputs;
@@ -116520,7 +118087,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@oclif/command-1.8.18"
+ sources."@oclif/command-1.8.19"
sources."@oclif/config-1.18.5"
sources."@oclif/errors-1.3.6"
(sources."@oclif/help-1.0.3" // {
@@ -116718,7 +118285,7 @@ in
sources."through-2.3.8"
sources."tmp-0.0.33"
sources."to-regex-range-5.0.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-2.7.2"
sources."type-fest-0.21.3"
sources."typedarray-to-buffer-3.1.5"
@@ -116776,7 +118343,7 @@ in
sources."@socket.io/component-emitter-3.1.0"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."accepts-1.3.8"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -116953,19 +118520,19 @@ in
sources."@ampproject/remapping-2.2.0"
sources."@babel/cli-7.19.3"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
(sources."@babel/core-7.19.6" // {
dependencies = [
sources."semver-6.3.0"
];
})
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
- (sources."@babel/helper-compilation-targets-7.19.3" // {
+ (sources."@babel/helper-compilation-targets-7.20.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -116981,16 +118548,16 @@ in
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/node-7.19.1"
- sources."@babel/parser-7.19.6"
+ sources."@babel/node-7.20.0"
+ sources."@babel/parser-7.20.1"
sources."@babel/plugin-syntax-jsx-7.18.6"
sources."@babel/plugin-transform-react-jsx-7.19.0"
sources."@babel/register-7.18.9"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/set-array-1.1.2"
@@ -117013,7 +118580,7 @@ in
sources."@openpgp/wkd-client-0.0.3"
sources."@peculiar/asn1-schema-2.3.0"
sources."@peculiar/json-schema-1.1.12"
- sources."@peculiar/webcrypto-1.4.0"
+ sources."@peculiar/webcrypto-1.4.1"
sources."@tootallnate/once-1.1.2"
sources."@xmpp/base64-0.13.1"
sources."@xmpp/client-0.13.1"
@@ -117045,7 +118612,7 @@ in
sources."abab-2.0.6"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -117091,8 +118658,8 @@ in
sources."bufferutil-4.0.7"
sources."bytes-3.1.2"
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001423"
- sources."canvas-2.10.1"
+ sources."caniuse-lite-1.0.30001429"
+ sources."canvas-2.10.2"
sources."chalk-2.4.2"
sources."chardet-1.5.0"
sources."chownr-2.0.0"
@@ -117113,7 +118680,7 @@ in
sources."convert-source-map-1.9.0"
sources."cookie-0.5.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.25.5"
+ sources."core-js-3.26.0"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."create-hash-1.2.0"
@@ -117491,7 +119058,7 @@ in
sources."supports-color-5.5.0"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."symbol-tree-3.2.4"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
(sources."tar-fs-2.1.1" // {
dependencies = [
sources."chownr-1.1.4"
@@ -117503,7 +119070,7 @@ in
sources."toidentifier-1.0.1"
sources."tough-cookie-4.1.2"
sources."tr46-0.0.3"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."tunnel-agent-0.6.0"
sources."type-check-0.3.2"
sources."type-is-1.6.18"
@@ -117543,7 +119110,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-8.9.0"
+ sources."ws-8.10.0"
sources."xml-name-validator-3.0.0"
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
@@ -118309,8 +119876,8 @@ in
(sources."@npmcli/arborist-5.3.0" // {
dependencies = [
sources."builtins-5.0.1"
- sources."hosted-git-info-5.1.0"
- sources."lru-cache-7.14.0"
+ sources."hosted-git-info-5.2.1"
+ sources."lru-cache-7.14.1"
sources."nopt-5.0.0"
sources."npm-package-arg-9.1.2"
sources."validate-npm-package-name-4.0.0"
@@ -118319,7 +119886,7 @@ in
sources."@npmcli/fs-2.1.2"
(sources."@npmcli/git-3.0.2" // {
dependencies = [
- sources."lru-cache-7.14.0"
+ sources."lru-cache-7.14.1"
];
})
sources."@npmcli/installed-package-contents-1.0.7"
@@ -118337,13 +119904,13 @@ in
sources."@npmcli/package-json-2.0.0"
sources."@npmcli/promise-spawn-3.0.0"
sources."@npmcli/run-script-4.2.1"
- sources."@nrwl/cli-15.0.1"
- (sources."@nrwl/devkit-15.0.1" // {
+ sources."@nrwl/cli-15.0.6"
+ (sources."@nrwl/devkit-15.0.6" // {
dependencies = [
sources."semver-7.3.4"
];
})
- sources."@nrwl/tao-15.0.1"
+ sources."@nrwl/tao-15.0.6"
sources."@octokit/auth-token-3.0.2"
sources."@octokit/core-4.1.0"
(sources."@octokit/endpoint-7.0.3" // {
@@ -118370,24 +119937,24 @@ in
sources."@swc-node/core-1.9.1"
sources."@swc-node/register-1.5.4"
sources."@swc-node/sourcemap-support-0.2.2"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- sources."@swc/core-android-arm64-1.3.10"
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- sources."@swc/core-freebsd-x64-1.3.10"
- sources."@swc/core-linux-arm-gnueabihf-1.3.10"
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- sources."@swc/core-win32-arm64-msvc-1.3.10"
- sources."@swc/core-win32-ia32-msvc-1.3.10"
- sources."@swc/core-win32-x64-msvc-1.3.10"
+ sources."@swc/core-android-arm64-1.3.11"
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ sources."@swc/core-freebsd-x64-1.3.11"
+ sources."@swc/core-linux-arm-gnueabihf-1.3.11"
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ sources."@swc/core-win32-arm64-msvc-1.3.11"
+ sources."@swc/core-win32-ia32-msvc-1.3.11"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
sources."@swc/wasm-1.2.130"
sources."@tootallnate/once-2.0.0"
sources."@types/json5-0.0.29"
@@ -118396,7 +119963,7 @@ in
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@yarnpkg/lockfile-1.1.0"
- (sources."@yarnpkg/parsers-3.0.0-rc.26" // {
+ (sources."@yarnpkg/parsers-3.0.0-rc.27" // {
dependencies = [
sources."argparse-1.0.10"
sources."js-yaml-3.14.1"
@@ -118451,7 +120018,7 @@ in
dependencies = [
sources."brace-expansion-2.0.1"
sources."glob-8.0.3"
- sources."lru-cache-7.14.0"
+ sources."lru-cache-7.14.1"
sources."minimatch-5.1.0"
];
})
@@ -118511,7 +120078,7 @@ in
sources."debug-4.3.4"
sources."debuglog-1.0.1"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -118636,13 +120203,13 @@ in
(sources."init-package-json-3.0.2" // {
dependencies = [
sources."builtins-5.0.1"
- sources."hosted-git-info-5.1.0"
- sources."lru-cache-7.14.0"
+ sources."hosted-git-info-5.2.1"
+ sources."lru-cache-7.14.1"
sources."npm-package-arg-9.1.2"
sources."validate-npm-package-name-4.0.0"
];
})
- sources."inquirer-8.2.4"
+ sources."inquirer-8.2.5"
sources."ip-2.0.0"
sources."is-arrayish-0.2.1"
sources."is-binary-path-2.1.0"
@@ -118684,8 +120251,8 @@ in
(sources."libnpmaccess-6.0.4" // {
dependencies = [
sources."builtins-5.0.1"
- sources."hosted-git-info-5.1.0"
- sources."lru-cache-7.14.0"
+ sources."hosted-git-info-5.2.1"
+ sources."lru-cache-7.14.1"
sources."npm-package-arg-9.1.2"
sources."validate-npm-package-name-4.0.0"
];
@@ -118693,8 +120260,8 @@ in
(sources."libnpmpublish-6.0.5" // {
dependencies = [
sources."builtins-5.0.1"
- sources."hosted-git-info-5.1.0"
- sources."lru-cache-7.14.0"
+ sources."hosted-git-info-5.2.1"
+ sources."lru-cache-7.14.1"
sources."npm-package-arg-9.1.2"
sources."validate-npm-package-name-4.0.0"
];
@@ -118718,7 +120285,7 @@ in
})
(sources."make-fetch-happen-10.2.1" // {
dependencies = [
- sources."lru-cache-7.14.0"
+ sources."lru-cache-7.14.1"
];
})
sources."map-obj-4.3.0"
@@ -118779,8 +120346,8 @@ in
sources."nopt-6.0.0"
(sources."normalize-package-data-4.0.1" // {
dependencies = [
- sources."hosted-git-info-5.1.0"
- sources."lru-cache-7.14.0"
+ sources."hosted-git-info-5.2.1"
+ sources."lru-cache-7.14.1"
];
})
sources."normalize-path-3.0.0"
@@ -118800,8 +120367,8 @@ in
(sources."npm-pick-manifest-7.0.2" // {
dependencies = [
sources."builtins-5.0.1"
- sources."hosted-git-info-5.1.0"
- sources."lru-cache-7.14.0"
+ sources."hosted-git-info-5.2.1"
+ sources."lru-cache-7.14.1"
sources."npm-normalize-package-bin-2.0.0"
sources."npm-package-arg-9.1.2"
sources."validate-npm-package-name-4.0.0"
@@ -118810,15 +120377,15 @@ in
(sources."npm-registry-fetch-13.3.1" // {
dependencies = [
sources."builtins-5.0.1"
- sources."hosted-git-info-5.1.0"
- sources."lru-cache-7.14.0"
+ sources."hosted-git-info-5.2.1"
+ sources."lru-cache-7.14.1"
sources."npm-package-arg-9.1.2"
sources."validate-npm-package-name-4.0.0"
];
})
sources."npm-run-path-4.0.1"
sources."npmlog-6.0.2"
- (sources."nx-15.0.1" // {
+ (sources."nx-15.0.6" // {
dependencies = [
sources."chalk-4.1.0"
sources."cli-spinners-2.6.1"
@@ -118828,7 +120395,7 @@ in
sources."minimatch-3.0.5"
sources."semver-7.3.4"
sources."tmp-0.2.1"
- (sources."yargs-17.6.0" // {
+ (sources."yargs-17.6.1" // {
dependencies = [
sources."cliui-8.0.1"
];
@@ -118855,8 +120422,8 @@ in
(sources."pacote-13.6.2" // {
dependencies = [
sources."builtins-5.0.1"
- sources."hosted-git-info-5.1.0"
- sources."lru-cache-7.14.0"
+ sources."hosted-git-info-5.2.1"
+ sources."lru-cache-7.14.1"
sources."npm-package-arg-9.1.2"
sources."validate-npm-package-name-4.0.0"
];
@@ -118968,7 +120535,7 @@ in
sources."strong-log-transformer-2.1.0"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."tar-stream-2.2.0"
sources."temp-dir-1.0.0"
sources."text-extensions-1.9.0"
@@ -118984,12 +120551,12 @@ in
sources."strip-bom-3.0.0"
];
})
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-fest-0.4.1"
sources."typedarray-0.0.6"
sources."typedarray-to-buffer-3.1.5"
sources."typescript-4.8.4"
- sources."uglify-js-3.17.3"
+ sources."uglify-js-3.17.4"
sources."unique-filename-2.0.1"
sources."unique-slug-3.0.0"
sources."universal-user-agent-6.0.0"
@@ -119060,7 +120627,7 @@ in
sources."sax-1.2.4"
sources."semver-5.7.1"
sources."source-map-0.6.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -119577,7 +121144,7 @@ in
sources."get-intrinsic-1.1.3"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
- sources."github-slugger-1.4.0"
+ sources."github-slugger-1.5.0"
sources."glob-base-0.3.0"
sources."glob-parent-2.0.0"
sources."graceful-fs-4.2.10"
@@ -119976,7 +121543,7 @@ in
sources."@types/commander-2.12.2"
sources."@types/diff-3.5.5"
sources."@types/get-stdin-5.0.1"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."commander-2.20.3"
sources."diff-3.5.0"
sources."get-stdin-5.0.1"
@@ -120373,7 +121940,7 @@ in
sources."link-check-5.2.0"
sources."lodash-4.17.21"
sources."markdown-link-extractor-3.1.0"
- sources."marked-4.1.1"
+ sources."marked-4.2.1"
sources."ms-2.1.3"
sources."needle-3.1.0"
sources."nth-check-2.1.1"
@@ -120402,16 +121969,16 @@ in
src = ../../applications/editors/vim/plugins/markdown-preview-nvim;
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
(sources."@babel/core-7.0.0" // {
dependencies = [
sources."debug-3.2.7"
];
})
- sources."@babel/generator-7.19.6"
+ sources."@babel/generator-7.20.1"
sources."@babel/helper-annotate-as-pure-7.18.6"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9"
- (sources."@babel/helper-compilation-targets-7.19.3" // {
+ (sources."@babel/helper-compilation-targets-7.20.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -120437,7 +122004,7 @@ in
sources."@babel/helper-remap-async-to-generator-7.18.9"
sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.19.4"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
@@ -120447,14 +122014,14 @@ in
sources."@babel/template-7.18.10"
];
})
- (sources."@babel/helpers-7.19.4" // {
+ (sources."@babel/helpers-7.20.1" // {
dependencies = [
sources."@babel/template-7.18.10"
];
})
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
- sources."@babel/plugin-proposal-async-generator-functions-7.19.1"
+ sources."@babel/parser-7.20.1"
+ sources."@babel/plugin-proposal-async-generator-functions-7.20.1"
sources."@babel/plugin-proposal-class-properties-7.0.0"
sources."@babel/plugin-proposal-json-strings-7.18.6"
sources."@babel/plugin-proposal-object-rest-spread-7.0.0"
@@ -120470,10 +122037,10 @@ in
sources."@babel/plugin-transform-arrow-functions-7.18.6"
sources."@babel/plugin-transform-async-to-generator-7.18.6"
sources."@babel/plugin-transform-block-scoped-functions-7.18.6"
- sources."@babel/plugin-transform-block-scoping-7.19.4"
+ sources."@babel/plugin-transform-block-scoping-7.20.0"
sources."@babel/plugin-transform-classes-7.19.0"
sources."@babel/plugin-transform-computed-properties-7.18.9"
- sources."@babel/plugin-transform-destructuring-7.19.4"
+ sources."@babel/plugin-transform-destructuring-7.20.0"
sources."@babel/plugin-transform-dotall-regex-7.18.6"
sources."@babel/plugin-transform-duplicate-keys-7.18.9"
sources."@babel/plugin-transform-exponentiation-operator-7.18.6"
@@ -120486,7 +122053,7 @@ in
sources."@babel/plugin-transform-modules-umd-7.18.6"
sources."@babel/plugin-transform-new-target-7.18.6"
sources."@babel/plugin-transform-object-super-7.18.6"
- sources."@babel/plugin-transform-parameters-7.18.8"
+ sources."@babel/plugin-transform-parameters-7.20.1"
sources."@babel/plugin-transform-react-display-name-7.18.6"
sources."@babel/plugin-transform-react-jsx-7.19.0"
sources."@babel/plugin-transform-react-jsx-self-7.18.6"
@@ -120516,9 +122083,9 @@ in
];
})
sources."@babel/template-7.0.0"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
- sources."@chemzqm/neovim-5.7.10"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
+ sources."@chemzqm/neovim-5.8.0"
sources."@jridgewell/gen-mapping-0.3.2"
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/set-array-1.1.2"
@@ -120658,7 +122225,7 @@ in
})
sources."cache-base-1.0.1"
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."case-sensitive-paths-webpack-plugin-2.1.2"
sources."chalk-2.4.2"
sources."chart.js-2.9.4"
@@ -121163,7 +122730,7 @@ in
sources."regenerator-runtime-0.13.10"
(sources."regenerator-transform-0.15.0" // {
dependencies = [
- sources."@babel/runtime-7.19.4"
+ sources."@babel/runtime-7.20.1"
];
})
sources."regex-not-1.0.2"
@@ -121849,7 +123416,7 @@ in
sha512 = "m7sAmOHhG6bmY1IEy+rSvyrQrKA/XIM6PFWP7w+3uW/C+uanPrIt0ieLL2NJfvfzLMkvEin1ClYE+pA6Y7Jwnw==";
};
dependencies = [
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/yauzl-2.10.0"
sources."agent-base-6.0.2"
sources."balanced-match-1.0.2"
@@ -122245,13 +123812,13 @@ in
sources."@ledgerhq/logs-6.10.1"
sources."@segment/loosely-validate-event-2.0.0"
sources."@sindresorhus/is-0.14.0"
- sources."@sinonjs/commons-1.8.3"
+ sources."@sinonjs/commons-1.8.4"
sources."@sinonjs/fake-timers-8.1.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/istanbul-lib-coverage-2.0.4"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-3.0.1"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/stack-utils-2.0.1"
sources."@types/yargs-16.0.4"
sources."@types/yargs-parser-21.0.0"
@@ -122715,7 +124282,7 @@ in
sources."is-fullwidth-code-point-3.0.0"
sources."is-lambda-1.0.1"
sources."isexe-2.0.0"
- sources."lru-cache-7.14.0"
+ sources."lru-cache-7.14.1"
sources."make-fetch-happen-10.2.1"
sources."minimatch-3.1.2"
sources."minipass-3.3.5"
@@ -122754,7 +124321,7 @@ in
sources."string-width-4.2.3"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."unique-filename-2.0.1"
sources."unique-slug-3.0.0"
sources."util-deprecate-1.0.2"
@@ -123202,7 +124769,7 @@ in
sha512 = "B6q576kLw96eKOiqNpNJsUiwl5vRipc46T0w/LUI7O3fPAVxwu5zklIBhE6Iefj8FV1IdbLwXULESqMWlwjlGQ==";
};
dependencies = [
- sources."@babel/runtime-7.19.4"
+ sources."@babel/runtime-7.20.1"
sources."@mapbox/node-pre-gyp-1.0.10"
sources."@node-red/editor-api-3.0.2"
sources."@node-red/editor-client-3.0.2"
@@ -123221,7 +124788,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
@@ -123560,7 +125127,7 @@ in
sources."toidentifier-1.0.1"
sources."tough-cookie-4.0.0"
sources."tr46-0.0.3"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
sources."uglify-js-3.16.3"
@@ -123749,7 +125316,7 @@ in
})
sources."strip-ansi-3.0.1"
sources."supports-preserve-symlinks-flag-1.0.0"
- (sources."tar-6.1.11" // {
+ (sources."tar-6.1.12" // {
dependencies = [
sources."mkdirp-1.0.4"
];
@@ -123881,7 +125448,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
sources."@types/minimist-1.2.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-3.0.0"
@@ -123952,7 +125519,7 @@ in
sources."crypto-random-string-2.0.0"
sources."date-fns-1.30.1"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -124397,10 +125964,10 @@ in
npm-check-updates = nodeEnv.buildNodePackage {
name = "npm-check-updates";
packageName = "npm-check-updates";
- version = "16.3.15";
+ version = "16.3.16";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.3.15.tgz";
- sha512 = "gRjApPUQxcdZuwIMTvWxPrB1mBWTml0Xj4t50vxdsItXUaNryYGrGve3ouZGxbowcs46Tji1tSbw7+9lnGT0sA==";
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.3.16.tgz";
+ sha512 = "OJRfwc2+p0ZnDvZQ4FOou9ev4kI6c0Lmu+uEJjijCNUSXnf5AEpyB6+kX31HsmkDzQ10ApA4CvM1TE+rXP+R8g==";
};
dependencies = [
sources."@gar/promisify-1.1.3"
@@ -124522,14 +126089,18 @@ in
];
})
sources."glob-parent-5.1.2"
- sources."global-dirs-3.0.0"
+ (sources."global-dirs-3.0.0" // {
+ dependencies = [
+ sources."ini-2.0.0"
+ ];
+ })
sources."globby-11.1.0"
sources."got-12.5.2"
sources."graceful-fs-4.2.10"
sources."has-1.0.3"
sources."has-unicode-2.0.1"
sources."has-yarn-3.0.0"
- sources."hosted-git-info-5.1.0"
+ sources."hosted-git-info-5.2.1"
sources."http-cache-semantics-4.1.0"
sources."http-proxy-agent-5.0.0"
sources."http2-wrapper-2.1.11"
@@ -124544,7 +126115,7 @@ in
sources."infer-owner-1.0.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ini-2.0.0"
+ sources."ini-3.0.1"
sources."ip-2.0.0"
sources."is-ci-3.0.1"
sources."is-core-module-2.11.0"
@@ -124574,7 +126145,7 @@ in
sources."locate-path-6.0.0"
sources."lodash-4.17.21"
sources."lowercase-keys-3.0.0"
- sources."lru-cache-7.14.0"
+ sources."lru-cache-7.14.1"
(sources."make-fetch-happen-10.2.1" // {
dependencies = [
sources."cacache-16.1.3"
@@ -124605,7 +126176,7 @@ in
sources."npm-install-checks-5.0.0"
sources."npm-normalize-package-bin-1.0.1"
sources."npm-package-arg-9.1.2"
- sources."npm-packlist-7.0.1"
+ sources."npm-packlist-7.0.2"
(sources."npm-pick-manifest-7.0.2" // {
dependencies = [
sources."npm-normalize-package-bin-2.0.0"
@@ -124640,7 +126211,7 @@ in
sources."ini-1.3.8"
];
})
- sources."rc-config-loader-4.1.0"
+ sources."rc-config-loader-4.1.1"
(sources."read-package-json-5.0.2" // {
dependencies = [
sources."glob-8.0.3"
@@ -124694,7 +126265,7 @@ in
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."strip-json-comments-2.0.1"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."to-regex-range-5.0.1"
sources."type-fest-2.19.0"
sources."typedarray-to-buffer-3.1.5"
@@ -124902,7 +126473,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@rollup/plugin-commonjs-20.0.0"
+ sources."@rollup/plugin-commonjs-22.0.2"
(sources."@rollup/pluginutils-3.1.0" // {
dependencies = [
sources."estree-walker-1.0.1"
@@ -124915,21 +126486,15 @@ in
sources."tslib-1.14.1"
];
})
- (sources."@stoplight/json-ref-resolver-3.1.3" // {
- dependencies = [
- sources."@stoplight/types-12.5.0"
- ];
- })
+ sources."@stoplight/json-ref-resolver-3.1.4"
sources."@stoplight/ordered-object-literal-1.0.4"
sources."@stoplight/path-1.3.2"
- (sources."@stoplight/spectral-cli-6.5.1" // {
+ (sources."@stoplight/spectral-cli-6.6.0" // {
dependencies = [
- sources."@stoplight/json-3.17.0"
- sources."@stoplight/types-12.3.0"
sources."fast-glob-3.2.7"
];
})
- (sources."@stoplight/spectral-core-1.15.0" // {
+ (sources."@stoplight/spectral-core-1.15.1" // {
dependencies = [
sources."@stoplight/types-13.6.0"
];
@@ -124937,30 +126502,26 @@ in
sources."@stoplight/spectral-formats-1.4.0"
sources."@stoplight/spectral-functions-1.7.1"
sources."@stoplight/spectral-parsers-1.0.2"
- sources."@stoplight/spectral-ref-resolver-1.0.1"
- (sources."@stoplight/spectral-ruleset-bundler-1.3.3" // {
- dependencies = [
- sources."@rollup/plugin-commonjs-22.0.2"
- ];
- })
- sources."@stoplight/spectral-ruleset-migrator-1.8.0"
+ sources."@stoplight/spectral-ref-resolver-1.0.2"
+ sources."@stoplight/spectral-ruleset-bundler-1.4.0"
+ sources."@stoplight/spectral-ruleset-migrator-1.9.0"
sources."@stoplight/spectral-rulesets-1.14.1"
(sources."@stoplight/spectral-runtime-1.1.2" // {
dependencies = [
sources."@stoplight/types-12.5.0"
];
})
- sources."@stoplight/types-13.7.0"
+ sources."@stoplight/types-13.8.0"
sources."@stoplight/yaml-4.2.3"
sources."@stoplight/yaml-ast-parser-0.0.48"
sources."@tootallnate/once-1.1.2"
sources."@types/es-aggregate-error-1.0.2"
sources."@types/estree-0.0.39"
sources."@types/json-schema-7.0.11"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/urijs-1.19.19"
sources."abort-controller-3.0.0"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."agent-base-6.0.2"
sources."ajv-8.11.0"
@@ -124986,7 +126547,6 @@ in
sources."string_decoder-1.3.0"
];
})
- sources."blueimp-md5-2.18.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."buffer-5.7.1"
@@ -124994,7 +126554,7 @@ in
sources."bytes-3.1.2"
sources."cac-6.7.14"
sources."call-bind-1.0.2"
- sources."call-me-maybe-1.0.1"
+ sources."call-me-maybe-1.0.2"
sources."chalk-4.1.2"
sources."chardet-0.7.0"
sources."chokidar-3.5.3"
@@ -125030,7 +126590,7 @@ in
sources."encoding-0.1.13"
sources."eol-0.9.1"
sources."es-abstract-1.20.4"
- sources."es-aggregate-error-1.0.8"
+ sources."es-aggregate-error-1.0.9"
sources."es-to-primitive-1.2.1"
sources."es6-promise-3.3.1"
sources."esbuild-0.15.12"
@@ -125133,7 +126693,7 @@ in
sources."immer-9.0.16"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."inquirer-8.2.4"
+ sources."inquirer-8.2.5"
sources."internal-slot-1.0.3"
sources."ip-1.1.8"
sources."is-bigint-1.0.4"
@@ -125180,7 +126740,6 @@ in
sources."lodash.get-4.4.2"
sources."lodash.omit-4.5.0"
sources."lodash.omitby-4.6.0"
- sources."lodash.set-4.3.2"
sources."lodash.topath-4.5.2"
sources."lodash.uniq-4.5.0"
sources."lodash.uniqby-4.7.0"
@@ -125326,7 +126885,7 @@ in
sources."toidentifier-1.0.1"
sources."tr46-0.0.3"
sources."tsconfck-2.0.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-check-0.3.2"
sources."type-fest-0.21.3"
sources."typescript-4.8.4"
@@ -125384,21 +126943,21 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
(sources."@babel/core-7.19.6" // {
dependencies = [
sources."json5-2.2.1"
sources."semver-6.3.0"
];
})
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9"
- (sources."@babel/helper-compilation-targets-7.19.3" // {
+ (sources."@babel/helper-compilation-targets-7.20.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -125422,18 +126981,18 @@ in
sources."@babel/helper-remap-async-to-generator-7.18.9"
sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.19.4"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helper-wrap-function-7.19.0"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9"
- sources."@babel/plugin-proposal-async-generator-functions-7.19.1"
+ sources."@babel/plugin-proposal-async-generator-functions-7.20.1"
sources."@babel/plugin-proposal-class-properties-7.18.6"
sources."@babel/plugin-proposal-class-static-block-7.18.6"
sources."@babel/plugin-proposal-dynamic-import-7.18.6"
@@ -125454,7 +127013,7 @@ in
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
sources."@babel/plugin-syntax-flow-7.18.6"
- sources."@babel/plugin-syntax-import-assertions-7.18.6"
+ sources."@babel/plugin-syntax-import-assertions-7.20.0"
sources."@babel/plugin-syntax-json-strings-7.8.3"
sources."@babel/plugin-syntax-jsx-7.18.6"
sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
@@ -125468,10 +127027,10 @@ in
sources."@babel/plugin-transform-arrow-functions-7.18.6"
sources."@babel/plugin-transform-async-to-generator-7.18.6"
sources."@babel/plugin-transform-block-scoped-functions-7.18.6"
- sources."@babel/plugin-transform-block-scoping-7.19.4"
+ sources."@babel/plugin-transform-block-scoping-7.20.0"
sources."@babel/plugin-transform-classes-7.19.0"
sources."@babel/plugin-transform-computed-properties-7.18.9"
- sources."@babel/plugin-transform-destructuring-7.19.4"
+ sources."@babel/plugin-transform-destructuring-7.20.0"
sources."@babel/plugin-transform-dotall-regex-7.18.6"
sources."@babel/plugin-transform-duplicate-keys-7.18.9"
sources."@babel/plugin-transform-exponentiation-operator-7.18.6"
@@ -125487,7 +127046,7 @@ in
sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1"
sources."@babel/plugin-transform-new-target-7.18.6"
sources."@babel/plugin-transform-object-super-7.18.6"
- sources."@babel/plugin-transform-parameters-7.18.8"
+ sources."@babel/plugin-transform-parameters-7.20.1"
sources."@babel/plugin-transform-property-literals-7.18.6"
sources."@babel/plugin-transform-react-jsx-7.19.0"
sources."@babel/plugin-transform-regenerator-7.18.6"
@@ -125505,10 +127064,10 @@ in
];
})
sources."@babel/preset-modules-0.1.5"
- sources."@babel/runtime-7.19.4"
+ sources."@babel/runtime-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@iarna/toml-2.2.5"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
@@ -125635,12 +127194,12 @@ in
sources."builtin-status-codes-3.0.0"
sources."cache-base-1.0.1"
sources."call-bind-1.0.2"
- sources."call-me-maybe-1.0.1"
+ sources."call-me-maybe-1.0.2"
sources."caller-callsite-2.0.0"
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -125666,7 +127225,7 @@ in
sources."convert-source-map-1.9.0"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- sources."core-js-compat-3.25.5"
+ sources."core-js-compat-3.26.0"
sources."core-util-is-1.0.3"
sources."cosmiconfig-5.2.1"
(sources."create-ecdh-4.0.4" // {
@@ -125883,7 +127442,7 @@ in
sources."html-tags-1.2.0"
(sources."htmlnano-0.2.9" // {
dependencies = [
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."posthtml-0.15.2"
sources."posthtml-parser-0.7.2"
sources."terser-5.15.1"
@@ -126515,7 +128074,7 @@ in
})
sources."@parcel/types-2.7.0"
sources."@parcel/utils-2.7.0"
- (sources."@parcel/watcher-2.0.5" // {
+ (sources."@parcel/watcher-2.0.6" // {
dependencies = [
sources."node-addon-api-3.2.1"
];
@@ -126526,7 +128085,7 @@ in
sources."@types/parse-json-4.0.0"
sources."abab-2.0.6"
sources."abortcontroller-polyfill-1.7.5"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
(sources."acorn-globals-4.3.4" // {
dependencies = [
sources."acorn-6.4.2"
@@ -126552,7 +128111,7 @@ in
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."caseless-0.12.0"
(sources."chalk-4.1.2" // {
dependencies = [
@@ -126578,8 +128137,8 @@ in
sources."css-tree-1.1.3"
sources."css-what-6.1.0"
sources."cssesc-3.0.0"
- sources."cssnano-5.1.13"
- sources."cssnano-preset-default-5.2.12"
+ sources."cssnano-5.1.14"
+ sources."cssnano-preset-default-5.2.13"
sources."cssnano-utils-3.1.0"
sources."csso-4.2.0"
sources."cssom-0.3.8"
@@ -126701,16 +128260,16 @@ in
sources."postcss-8.4.18"
sources."postcss-calc-8.2.4"
sources."postcss-colormin-5.3.0"
- sources."postcss-convert-values-5.1.2"
+ sources."postcss-convert-values-5.1.3"
sources."postcss-discard-comments-5.1.2"
sources."postcss-discard-duplicates-5.1.0"
sources."postcss-discard-empty-5.1.1"
sources."postcss-discard-overridden-5.1.0"
- sources."postcss-merge-longhand-5.1.6"
- sources."postcss-merge-rules-5.1.2"
+ sources."postcss-merge-longhand-5.1.7"
+ sources."postcss-merge-rules-5.1.3"
sources."postcss-minify-font-values-5.1.0"
sources."postcss-minify-gradients-5.1.1"
- sources."postcss-minify-params-5.1.3"
+ sources."postcss-minify-params-5.1.4"
sources."postcss-minify-selectors-5.2.1"
sources."postcss-normalize-charset-5.1.0"
sources."postcss-normalize-display-values-5.1.0"
@@ -126718,11 +128277,11 @@ in
sources."postcss-normalize-repeat-style-5.1.1"
sources."postcss-normalize-string-5.1.0"
sources."postcss-normalize-timing-functions-5.1.0"
- sources."postcss-normalize-unicode-5.1.0"
+ sources."postcss-normalize-unicode-5.1.1"
sources."postcss-normalize-url-5.1.0"
sources."postcss-normalize-whitespace-5.1.1"
sources."postcss-ordered-values-5.1.3"
- sources."postcss-reduce-initial-5.1.0"
+ sources."postcss-reduce-initial-5.1.1"
sources."postcss-reduce-transforms-5.1.0"
sources."postcss-selector-parser-6.0.10"
sources."postcss-svgo-5.1.0"
@@ -126759,7 +128318,7 @@ in
sources."sshpk-1.17.0"
sources."stable-0.1.8"
sources."stealthy-require-1.1.1"
- sources."stylehacks-5.1.0"
+ sources."stylehacks-5.1.1"
sources."supports-color-5.5.0"
sources."svgo-2.8.0"
sources."symbol-tree-3.2.4"
@@ -126772,7 +128331,7 @@ in
sources."timsort-0.3.0"
sources."tough-cookie-2.5.0"
sources."tr46-1.0.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
@@ -127006,7 +128565,7 @@ in
sources."prfun-2.1.5"
sources."process-nextick-args-2.0.1"
sources."prom-client-11.5.3"
- sources."promise-8.2.0"
+ sources."promise-8.3.0"
sources."proxy-addr-2.0.7"
sources."prr-1.0.1"
sources."psl-1.9.0"
@@ -127071,7 +128630,7 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-is-1.6.18"
- sources."uglify-js-3.17.3"
+ sources."uglify-js-3.17.4"
sources."unix-dgram-2.0.6"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
@@ -127114,31 +128673,30 @@ in
patch-package = nodeEnv.buildNodePackage {
name = "patch-package";
packageName = "patch-package";
- version = "6.4.7";
+ version = "6.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/patch-package/-/patch-package-6.4.7.tgz";
- sha512 = "S0vh/ZEafZ17hbhgqdnpunKDfzHQibQizx9g8yEf5dcVk3KOflOfdufRXQX8CSEkyOQwuM/bNz1GwKvFj54kaQ==";
+ url = "https://registry.npmjs.org/patch-package/-/patch-package-6.5.0.tgz";
+ sha512 = "tC3EqJmo74yKqfsMzELaFwxOAu6FH6t+FzFOsnWAuARm7/n2xB5AOeOueE221eM9gtMuIKMKpF9tBy/X2mNP0Q==";
};
dependencies = [
sources."@yarnpkg/lockfile-1.1.0"
- sources."ansi-styles-3.2.1"
+ sources."ansi-styles-4.3.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."chalk-2.4.2"
+ sources."chalk-4.1.2"
sources."ci-info-2.0.0"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
sources."concat-map-0.0.1"
sources."cross-spawn-6.0.5"
- sources."escape-string-regexp-1.0.5"
sources."fill-range-7.0.1"
sources."find-yarn-workspace-root-2.0.0"
sources."fs-extra-7.0.1"
sources."fs.realpath-1.0.0"
sources."glob-7.2.3"
sources."graceful-fs-4.2.10"
- sources."has-flag-3.0.0"
+ sources."has-flag-4.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-ci-2.0.0"
@@ -127163,12 +128721,13 @@ in
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."slash-2.0.0"
- sources."supports-color-5.5.0"
+ sources."supports-color-7.2.0"
sources."tmp-0.0.33"
sources."to-regex-range-5.0.1"
sources."universalify-0.1.2"
sources."which-1.3.1"
sources."wrappy-1.0.2"
+ sources."yaml-1.10.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -127894,6 +129453,1755 @@ in
bypassCache = true;
reconstructLock = true;
};
+ "photoprism-frontend-../../servers/photoprism" = nodeEnv.buildNodePackage {
+ name = "photoprism";
+ packageName = "photoprism";
+ version = "1.0.0";
+ src = ../../servers/photoprism;
+ dependencies = [
+ sources."@ampproject/remapping-2.2.0"
+ sources."@babel/cli-7.19.3"
+ sources."@babel/code-frame-7.18.6"
+ sources."@babel/compat-data-7.20.1"
+ (sources."@babel/core-7.19.6" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ (sources."@babel/eslint-parser-7.19.1" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ (sources."@babel/generator-7.20.1" // {
+ dependencies = [
+ sources."@jridgewell/gen-mapping-0.3.2"
+ ];
+ })
+ sources."@babel/helper-annotate-as-pure-7.18.6"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9"
+ (sources."@babel/helper-compilation-targets-7.20.0" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."@babel/helper-create-class-features-plugin-7.19.0"
+ sources."@babel/helper-create-regexp-features-plugin-7.19.0"
+ (sources."@babel/helper-define-polyfill-provider-0.3.3" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."@babel/helper-environment-visitor-7.18.9"
+ sources."@babel/helper-explode-assignable-expression-7.18.6"
+ sources."@babel/helper-function-name-7.19.0"
+ sources."@babel/helper-hoist-variables-7.18.6"
+ sources."@babel/helper-member-expression-to-functions-7.18.9"
+ sources."@babel/helper-module-imports-7.18.6"
+ sources."@babel/helper-module-transforms-7.19.6"
+ sources."@babel/helper-optimise-call-expression-7.18.6"
+ sources."@babel/helper-plugin-utils-7.19.0"
+ sources."@babel/helper-remap-async-to-generator-7.18.9"
+ sources."@babel/helper-replace-supers-7.19.1"
+ sources."@babel/helper-simple-access-7.19.4"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0"
+ sources."@babel/helper-split-export-declaration-7.18.6"
+ sources."@babel/helper-string-parser-7.19.4"
+ sources."@babel/helper-validator-identifier-7.19.1"
+ sources."@babel/helper-validator-option-7.18.6"
+ sources."@babel/helper-wrap-function-7.19.0"
+ sources."@babel/helpers-7.20.1"
+ sources."@babel/highlight-7.18.6"
+ sources."@babel/parser-7.20.1"
+ sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9"
+ sources."@babel/plugin-proposal-async-generator-functions-7.20.1"
+ sources."@babel/plugin-proposal-class-properties-7.18.6"
+ sources."@babel/plugin-proposal-class-static-block-7.18.6"
+ sources."@babel/plugin-proposal-dynamic-import-7.18.6"
+ sources."@babel/plugin-proposal-export-namespace-from-7.18.9"
+ sources."@babel/plugin-proposal-json-strings-7.18.6"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.18.9"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6"
+ sources."@babel/plugin-proposal-numeric-separator-7.18.6"
+ sources."@babel/plugin-proposal-object-rest-spread-7.19.4"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.18.6"
+ sources."@babel/plugin-proposal-optional-chaining-7.18.9"
+ sources."@babel/plugin-proposal-private-methods-7.18.6"
+ sources."@babel/plugin-proposal-private-property-in-object-7.18.6"
+ sources."@babel/plugin-proposal-unicode-property-regex-7.18.6"
+ sources."@babel/plugin-syntax-async-generators-7.8.4"
+ sources."@babel/plugin-syntax-class-properties-7.12.13"
+ sources."@babel/plugin-syntax-class-static-block-7.14.5"
+ sources."@babel/plugin-syntax-dynamic-import-7.8.3"
+ sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
+ sources."@babel/plugin-syntax-import-assertions-7.20.0"
+ sources."@babel/plugin-syntax-json-strings-7.8.3"
+ sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
+ sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3"
+ sources."@babel/plugin-syntax-numeric-separator-7.10.4"
+ sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
+ sources."@babel/plugin-syntax-optional-catch-binding-7.8.3"
+ sources."@babel/plugin-syntax-optional-chaining-7.8.3"
+ sources."@babel/plugin-syntax-private-property-in-object-7.14.5"
+ sources."@babel/plugin-syntax-top-level-await-7.14.5"
+ sources."@babel/plugin-transform-arrow-functions-7.18.6"
+ sources."@babel/plugin-transform-async-to-generator-7.18.6"
+ sources."@babel/plugin-transform-block-scoped-functions-7.18.6"
+ sources."@babel/plugin-transform-block-scoping-7.20.0"
+ sources."@babel/plugin-transform-classes-7.19.0"
+ sources."@babel/plugin-transform-computed-properties-7.18.9"
+ sources."@babel/plugin-transform-destructuring-7.20.0"
+ sources."@babel/plugin-transform-dotall-regex-7.18.6"
+ sources."@babel/plugin-transform-duplicate-keys-7.18.9"
+ sources."@babel/plugin-transform-exponentiation-operator-7.18.6"
+ sources."@babel/plugin-transform-for-of-7.18.8"
+ sources."@babel/plugin-transform-function-name-7.18.9"
+ sources."@babel/plugin-transform-literals-7.18.9"
+ sources."@babel/plugin-transform-member-expression-literals-7.18.6"
+ sources."@babel/plugin-transform-modules-amd-7.19.6"
+ sources."@babel/plugin-transform-modules-commonjs-7.19.6"
+ sources."@babel/plugin-transform-modules-systemjs-7.19.6"
+ sources."@babel/plugin-transform-modules-umd-7.18.6"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1"
+ sources."@babel/plugin-transform-new-target-7.18.6"
+ sources."@babel/plugin-transform-object-super-7.18.6"
+ sources."@babel/plugin-transform-parameters-7.20.1"
+ sources."@babel/plugin-transform-property-literals-7.18.6"
+ sources."@babel/plugin-transform-regenerator-7.18.6"
+ sources."@babel/plugin-transform-reserved-words-7.18.6"
+ (sources."@babel/plugin-transform-runtime-7.19.6" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."@babel/plugin-transform-shorthand-properties-7.18.6"
+ sources."@babel/plugin-transform-spread-7.19.0"
+ sources."@babel/plugin-transform-sticky-regex-7.18.6"
+ sources."@babel/plugin-transform-template-literals-7.18.9"
+ sources."@babel/plugin-transform-typeof-symbol-7.18.9"
+ sources."@babel/plugin-transform-unicode-escapes-7.18.10"
+ sources."@babel/plugin-transform-unicode-regex-7.18.6"
+ (sources."@babel/preset-env-7.19.4" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."@babel/preset-modules-0.1.5"
+ sources."@babel/register-7.18.9"
+ sources."@babel/runtime-7.20.1"
+ sources."@babel/template-7.18.10"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
+ sources."@colors/colors-1.5.0"
+ sources."@csstools/postcss-cascade-layers-1.1.1"
+ sources."@csstools/postcss-color-function-1.1.1"
+ sources."@csstools/postcss-font-format-keywords-1.0.1"
+ sources."@csstools/postcss-hwb-function-1.0.2"
+ sources."@csstools/postcss-ic-unit-1.0.1"
+ sources."@csstools/postcss-is-pseudo-class-2.0.7"
+ sources."@csstools/postcss-nested-calc-1.0.0"
+ sources."@csstools/postcss-normalize-display-values-1.0.1"
+ sources."@csstools/postcss-oklab-function-1.1.1"
+ sources."@csstools/postcss-progressive-custom-properties-1.3.0"
+ sources."@csstools/postcss-stepped-value-functions-1.0.1"
+ sources."@csstools/postcss-text-decoration-shorthand-1.0.0"
+ sources."@csstools/postcss-trigonometric-functions-1.0.2"
+ sources."@csstools/postcss-unset-value-1.0.2"
+ sources."@csstools/selector-specificity-2.0.2"
+ sources."@discoveryjs/json-ext-0.5.7"
+ (sources."@eslint/eslintrc-1.3.3" // {
+ dependencies = [
+ sources."argparse-2.0.1"
+ sources."globals-13.17.0"
+ sources."js-yaml-4.1.0"
+ ];
+ })
+ sources."@gar/promisify-1.1.3"
+ sources."@humanwhocodes/config-array-0.11.7"
+ sources."@humanwhocodes/module-importer-1.0.1"
+ sources."@humanwhocodes/object-schema-1.2.1"
+ (sources."@istanbuljs/load-nyc-config-1.1.0" // {
+ dependencies = [
+ sources."find-up-4.1.0"
+ sources."locate-path-5.0.0"
+ sources."p-locate-4.1.0"
+ sources."path-exists-4.0.0"
+ ];
+ })
+ sources."@istanbuljs/schema-0.1.3"
+ sources."@jridgewell/gen-mapping-0.1.1"
+ sources."@jridgewell/resolve-uri-3.1.0"
+ sources."@jridgewell/set-array-1.1.2"
+ (sources."@jridgewell/source-map-0.3.2" // {
+ dependencies = [
+ sources."@jridgewell/gen-mapping-0.3.2"
+ ];
+ })
+ sources."@jridgewell/sourcemap-codec-1.4.14"
+ sources."@jridgewell/trace-mapping-0.3.17"
+ (sources."@lcdp/offline-plugin-5.1.1" // {
+ dependencies = [
+ sources."slash-1.0.0"
+ ];
+ })
+ sources."@mapbox/geojson-rewind-0.5.2"
+ sources."@mapbox/jsonlint-lines-primitives-2.0.2"
+ sources."@mapbox/mapbox-gl-supported-2.0.1"
+ sources."@mapbox/point-geometry-0.1.0"
+ sources."@mapbox/tiny-sdf-2.0.5"
+ sources."@mapbox/unitbezier-0.0.1"
+ sources."@mapbox/vector-tile-1.3.1"
+ sources."@mapbox/whoots-js-3.1.0"
+ sources."@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1"
+ sources."@nodelib/fs.scandir-2.1.5"
+ sources."@nodelib/fs.stat-2.0.5"
+ sources."@nodelib/fs.walk-1.2.8"
+ (sources."@npmcli/fs-1.1.1" // {
+ dependencies = [
+ sources."semver-7.3.8"
+ ];
+ })
+ (sources."@npmcli/move-file-1.1.2" // {
+ dependencies = [
+ sources."mkdirp-1.0.4"
+ ];
+ })
+ sources."@polka/url-1.0.0-next.21"
+ sources."@socket.io/component-emitter-3.1.0"
+ sources."@tootallnate/once-1.1.2"
+ sources."@trysound/sax-0.2.0"
+ sources."@types/cookie-0.4.1"
+ sources."@types/cors-2.8.12"
+ sources."@types/eslint-7.29.0"
+ sources."@types/eslint-scope-3.7.4"
+ sources."@types/estree-1.0.0"
+ sources."@types/geojson-7946.0.10"
+ sources."@types/json-schema-7.0.11"
+ sources."@types/json5-0.0.29"
+ sources."@types/mapbox__point-geometry-0.1.2"
+ sources."@types/mapbox__vector-tile-1.3.0"
+ sources."@types/minimist-1.2.2"
+ sources."@types/node-18.11.9"
+ sources."@types/normalize-package-data-2.4.1"
+ sources."@types/parse-json-4.0.0"
+ sources."@types/pbf-3.0.2"
+ sources."@vue/compiler-core-3.2.41"
+ sources."@vue/compiler-dom-3.2.41"
+ sources."@vue/compiler-sfc-3.2.41"
+ sources."@vue/compiler-ssr-3.2.41"
+ (sources."@vue/component-compiler-utils-3.3.0" // {
+ dependencies = [
+ sources."lru-cache-4.1.5"
+ sources."picocolors-0.2.1"
+ sources."postcss-7.0.39"
+ sources."yallist-2.1.2"
+ ];
+ })
+ sources."@vue/reactivity-transform-3.2.41"
+ sources."@vue/shared-3.2.41"
+ sources."@vvo/tzdb-6.75.0"
+ sources."@webassemblyjs/ast-1.11.1"
+ sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
+ sources."@webassemblyjs/helper-api-error-1.11.1"
+ sources."@webassemblyjs/helper-buffer-1.11.1"
+ sources."@webassemblyjs/helper-numbers-1.11.1"
+ sources."@webassemblyjs/helper-wasm-bytecode-1.11.1"
+ sources."@webassemblyjs/helper-wasm-section-1.11.1"
+ sources."@webassemblyjs/ieee754-1.11.1"
+ sources."@webassemblyjs/leb128-1.11.1"
+ sources."@webassemblyjs/utf8-1.11.1"
+ sources."@webassemblyjs/wasm-edit-1.11.1"
+ sources."@webassemblyjs/wasm-gen-1.11.1"
+ sources."@webassemblyjs/wasm-opt-1.11.1"
+ sources."@webassemblyjs/wasm-parser-1.11.1"
+ sources."@webassemblyjs/wast-printer-1.11.1"
+ sources."@webpack-cli/configtest-1.2.0"
+ sources."@webpack-cli/info-1.5.0"
+ sources."@webpack-cli/serve-1.7.0"
+ sources."@xtuc/ieee754-1.2.0"
+ sources."@xtuc/long-4.2.2"
+ sources."abbrev-1.1.1"
+ sources."accepts-1.3.8"
+ sources."acorn-7.4.1"
+ sources."acorn-class-fields-0.3.7"
+ (sources."acorn-import-assertions-1.8.0" // {
+ dependencies = [
+ sources."acorn-8.8.1"
+ ];
+ })
+ sources."acorn-jsx-5.3.2"
+ sources."acorn-private-class-elements-0.2.7"
+ sources."acorn-private-methods-0.3.3"
+ sources."acorn-stage3-4.0.0"
+ sources."acorn-static-class-features-0.2.4"
+ sources."acorn-walk-8.2.0"
+ (sources."adjust-sourcemap-loader-4.0.0" // {
+ dependencies = [
+ sources."big.js-5.2.2"
+ sources."emojis-list-3.0.0"
+ sources."loader-utils-2.0.3"
+ ];
+ })
+ sources."after-0.8.2"
+ sources."agent-base-6.0.2"
+ (sources."agentkeepalive-4.2.1" // {
+ dependencies = [
+ sources."depd-1.1.2"
+ ];
+ })
+ sources."aggregate-error-3.1.0"
+ sources."ajv-6.12.6"
+ (sources."ajv-formats-2.1.1" // {
+ dependencies = [
+ sources."ajv-8.11.0"
+ sources."json-schema-traverse-1.0.0"
+ ];
+ })
+ sources."ajv-keywords-3.5.2"
+ sources."ansi-colors-4.1.1"
+ (sources."ansi-escapes-4.3.2" // {
+ dependencies = [
+ sources."type-fest-0.21.3"
+ ];
+ })
+ sources."ansi-html-community-0.0.8"
+ sources."ansi-regex-5.0.1"
+ sources."ansi-styles-3.2.1"
+ sources."any-promise-1.3.0"
+ sources."anymatch-3.1.2"
+ sources."app-module-path-2.2.0"
+ sources."aproba-2.0.0"
+ sources."are-we-there-yet-3.0.1"
+ sources."argparse-1.0.10"
+ sources."array-flatten-1.1.1"
+ sources."array-includes-3.1.5"
+ sources."array.prototype.flat-1.3.0"
+ sources."arraybuffer.slice-0.0.7"
+ sources."arrify-1.0.1"
+ sources."asap-2.0.6"
+ sources."asn1-0.2.6"
+ sources."assert-never-1.2.1"
+ sources."assert-plus-1.0.0"
+ sources."assertion-error-1.1.0"
+ sources."async-3.2.4"
+ sources."async-foreach-0.1.3"
+ sources."asynckit-0.4.0"
+ sources."autoprefixer-10.4.13"
+ sources."available-typed-arrays-1.0.5"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.11.0"
+ sources."axios-0.27.2"
+ sources."axios-mock-adapter-1.21.2"
+ (sources."babel-loader-8.2.5" // {
+ dependencies = [
+ sources."big.js-5.2.2"
+ sources."emojis-list-3.0.0"
+ sources."find-cache-dir-3.3.2"
+ sources."find-up-4.1.0"
+ sources."loader-utils-2.0.3"
+ sources."locate-path-5.0.0"
+ sources."make-dir-3.1.0"
+ sources."p-locate-4.1.0"
+ sources."path-exists-4.0.0"
+ sources."pkg-dir-4.2.0"
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."babel-plugin-istanbul-6.1.1"
+ (sources."babel-plugin-polyfill-corejs2-0.3.3" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."babel-plugin-polyfill-corejs3-0.6.0"
+ sources."babel-plugin-polyfill-regenerator-0.4.1"
+ sources."babel-walk-3.0.0-canary-5"
+ sources."backo2-1.0.2"
+ sources."balanced-match-1.0.2"
+ sources."base64-arraybuffer-0.1.4"
+ sources."base64id-2.0.0"
+ sources."batch-0.6.1"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."big.js-3.2.0"
+ sources."binary-extensions-2.2.0"
+ sources."blob-0.0.5"
+ sources."bluebird-3.7.2"
+ (sources."body-parser-1.20.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."boolbase-1.0.0"
+ sources."bowser-2.9.0"
+ sources."brace-expansion-1.1.11"
+ sources."braces-3.0.2"
+ sources."browser-stdout-1.3.1"
+ sources."browserslist-4.21.4"
+ sources."buffer-builder-0.2.0"
+ sources."buffer-from-1.1.2"
+ sources."bufferutil-4.0.7"
+ (sources."builtins-5.0.1" // {
+ dependencies = [
+ sources."semver-7.3.8"
+ ];
+ })
+ sources."buntis-0.2.1"
+ sources."bytes-3.1.2"
+ (sources."cacache-15.3.0" // {
+ dependencies = [
+ sources."mkdirp-1.0.4"
+ ];
+ })
+ sources."call-bind-1.0.2"
+ sources."callsites-3.1.0"
+ sources."camelcase-5.3.1"
+ sources."camelcase-keys-6.2.2"
+ sources."camelize-1.0.0"
+ sources."caniuse-api-3.0.0"
+ sources."caniuse-lite-1.0.30001429"
+ sources."caseless-0.12.0"
+ sources."chai-4.3.6"
+ sources."chalk-2.4.2"
+ sources."character-parser-2.2.0"
+ sources."charenc-0.0.2"
+ sources."check-error-1.0.2"
+ sources."cheerio-1.0.0-rc.10"
+ sources."cheerio-select-1.6.0"
+ (sources."chokidar-3.5.3" // {
+ dependencies = [
+ sources."glob-parent-5.1.2"
+ ];
+ })
+ sources."chownr-2.0.0"
+ sources."chrome-finder-1.0.7"
+ sources."chrome-trace-event-1.0.3"
+ sources."clean-stack-2.2.0"
+ sources."cliui-7.0.4"
+ sources."clone-deep-4.0.1"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."color-support-1.1.3"
+ sources."colord-2.9.3"
+ sources."colorette-2.0.19"
+ sources."colors-1.4.0"
+ sources."combined-stream-1.0.8"
+ sources."commander-4.1.1"
+ sources."commondir-1.0.1"
+ sources."component-bind-1.0.0"
+ sources."component-emitter-1.3.0"
+ sources."component-inherit-0.0.3"
+ sources."compressible-2.0.18"
+ (sources."compression-1.7.4" // {
+ dependencies = [
+ sources."bytes-3.0.0"
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ sources."concat-map-0.0.1"
+ (sources."connect-3.7.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."connect-redis-3.4.2"
+ sources."console-control-strings-1.1.0"
+ sources."consolidate-0.15.1"
+ sources."constantinople-4.0.1"
+ sources."content-disposition-0.5.4"
+ sources."content-security-policy-builder-2.1.0"
+ sources."content-type-1.0.4"
+ sources."convert-source-map-1.9.0"
+ sources."cookie-0.4.2"
+ (sources."cookie-parser-1.4.6" // {
+ dependencies = [
+ sources."cookie-0.4.1"
+ ];
+ })
+ sources."cookie-signature-1.0.6"
+ sources."core-js-3.26.0"
+ sources."core-js-compat-3.26.0"
+ sources."core-util-is-1.0.2"
+ sources."cors-2.8.5"
+ sources."cosmiconfig-7.0.1"
+ sources."cross-env-7.0.3"
+ sources."cross-spawn-7.0.3"
+ sources."crypt-0.0.2"
+ sources."csrf-3.1.0"
+ sources."css-blank-pseudo-3.0.3"
+ sources."css-declaration-sorter-6.3.1"
+ sources."css-has-pseudo-3.0.4"
+ (sources."css-loader-6.7.1" // {
+ dependencies = [
+ sources."semver-7.3.8"
+ ];
+ })
+ sources."css-prefers-color-scheme-6.0.3"
+ sources."css-select-4.3.0"
+ sources."css-tree-1.1.3"
+ sources."css-what-6.1.0"
+ sources."csscolorparser-1.0.3"
+ sources."cssdb-7.0.2"
+ sources."cssesc-3.0.0"
+ sources."cssnano-5.1.14"
+ sources."cssnano-preset-default-5.2.13"
+ sources."cssnano-utils-3.1.0"
+ sources."csso-4.2.0"
+ sources."csstype-3.1.1"
+ (sources."csurf-1.11.0" // {
+ dependencies = [
+ sources."cookie-0.4.0"
+ sources."depd-1.1.2"
+ sources."http-errors-1.7.3"
+ sources."setprototypeof-1.1.1"
+ sources."statuses-1.5.0"
+ sources."toidentifier-1.0.0"
+ ];
+ })
+ sources."cuint-0.2.2"
+ sources."custom-event-1.0.1"
+ sources."dashdash-1.14.1"
+ sources."dasherize-2.0.0"
+ sources."date-format-4.0.14"
+ sources."de-indent-1.0.2"
+ sources."debug-4.3.4"
+ sources."decamelize-4.0.0"
+ (sources."decamelize-keys-1.1.1" // {
+ dependencies = [
+ sources."decamelize-1.2.0"
+ sources."map-obj-1.0.1"
+ ];
+ })
+ sources."deep-eql-3.0.1"
+ sources."deep-extend-0.5.1"
+ sources."deep-is-0.1.4"
+ sources."define-properties-1.1.4"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."depd-2.0.0"
+ sources."destroy-1.2.0"
+ sources."detect-libc-1.0.3"
+ sources."di-0.0.1"
+ sources."diff-5.0.0"
+ sources."doctrine-3.0.0"
+ sources."doctypes-1.1.0"
+ (sources."dom-serialize-2.2.1" // {
+ dependencies = [
+ sources."void-elements-2.0.1"
+ ];
+ })
+ sources."dom-serializer-1.4.1"
+ sources."domelementtype-2.3.0"
+ sources."domhandler-4.3.1"
+ sources."domutils-2.8.0"
+ sources."dont-sniff-mimetype-1.1.0"
+ sources."dotenv-8.6.0"
+ sources."double-ended-queue-2.1.0-0"
+ sources."duplexer-0.1.2"
+ sources."earcut-2.2.4"
+ sources."easygettext-2.17.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."ee-first-1.1.1"
+ sources."ejs-3.1.8"
+ sources."electron-to-chromium-1.4.284"
+ sources."emoji-regex-8.0.0"
+ sources."emojis-list-2.1.0"
+ sources."encodeurl-1.0.2"
+ (sources."encoding-0.1.13" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
+ sources."engine.io-6.2.0"
+ (sources."engine.io-client-3.5.3" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."engine.io-parser-2.2.1"
+ sources."ms-2.0.0"
+ sources."ws-7.4.6"
+ ];
+ })
+ sources."engine.io-parser-5.0.4"
+ sources."enhanced-resolve-5.10.0"
+ sources."ent-2.2.0"
+ sources."entities-2.2.0"
+ sources."env-paths-2.2.1"
+ sources."envinfo-7.8.1"
+ sources."err-code-2.0.3"
+ sources."error-ex-1.3.2"
+ sources."es-abstract-1.20.4"
+ sources."es-module-lexer-0.9.3"
+ sources."es-shim-unscopables-1.0.0"
+ sources."es-to-primitive-1.2.1"
+ sources."escalade-3.1.1"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ (sources."eslint-8.26.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."argparse-2.0.1"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."escape-string-regexp-4.0.0"
+ sources."eslint-scope-7.1.1"
+ sources."eslint-visitor-keys-3.3.0"
+ sources."estraverse-5.3.0"
+ sources."find-up-5.0.0"
+ sources."globals-13.17.0"
+ sources."has-flag-4.0.0"
+ sources."js-yaml-4.1.0"
+ sources."locate-path-6.0.0"
+ sources."p-limit-3.1.0"
+ sources."p-locate-5.0.0"
+ sources."path-exists-4.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ sources."eslint-config-prettier-8.5.0"
+ sources."eslint-config-standard-17.0.0"
+ (sources."eslint-formatter-pretty-4.1.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ (sources."eslint-import-resolver-node-0.3.6" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ ];
+ })
+ (sources."eslint-module-utils-2.7.4" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ ];
+ })
+ (sources."eslint-plugin-es-4.1.0" // {
+ dependencies = [
+ sources."eslint-utils-2.1.0"
+ sources."eslint-visitor-keys-1.3.0"
+ ];
+ })
+ (sources."eslint-plugin-html-7.1.0" // {
+ dependencies = [
+ sources."dom-serializer-2.0.0"
+ sources."domhandler-5.0.3"
+ sources."domutils-3.0.1"
+ sources."entities-4.4.0"
+ sources."htmlparser2-8.0.1"
+ ];
+ })
+ (sources."eslint-plugin-import-2.26.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."doctrine-2.1.0"
+ sources."ms-2.0.0"
+ ];
+ })
+ (sources."eslint-plugin-n-15.4.0" // {
+ dependencies = [
+ sources."semver-7.3.8"
+ ];
+ })
+ (sources."eslint-plugin-node-11.1.0" // {
+ dependencies = [
+ sources."eslint-plugin-es-3.0.1"
+ sources."eslint-utils-2.1.0"
+ sources."eslint-visitor-keys-1.3.0"
+ sources."semver-6.3.0"
+ ];
+ })
+ (sources."eslint-plugin-prettier-vue-4.2.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ sources."eslint-plugin-promise-6.1.1"
+ (sources."eslint-plugin-vue-9.7.0" // {
+ dependencies = [
+ sources."semver-7.3.8"
+ ];
+ })
+ sources."eslint-rule-docs-1.1.235"
+ sources."eslint-scope-5.1.1"
+ sources."eslint-utils-3.0.0"
+ sources."eslint-visitor-keys-2.1.0"
+ (sources."eslint-webpack-plugin-3.2.0" // {
+ dependencies = [
+ sources."ajv-8.11.0"
+ sources."ajv-keywords-5.1.0"
+ sources."json-schema-traverse-1.0.0"
+ sources."schema-utils-4.0.0"
+ ];
+ })
+ (sources."espree-9.4.0" // {
+ dependencies = [
+ sources."acorn-8.8.1"
+ sources."eslint-visitor-keys-3.3.0"
+ ];
+ })
+ sources."esprima-4.0.1"
+ (sources."esquery-1.4.0" // {
+ dependencies = [
+ sources."estraverse-5.3.0"
+ ];
+ })
+ (sources."esrecurse-4.3.0" // {
+ dependencies = [
+ sources."estraverse-5.3.0"
+ ];
+ })
+ sources."estraverse-4.3.0"
+ sources."estree-walker-2.0.2"
+ sources."esutils-2.0.3"
+ sources."etag-1.8.1"
+ sources."eventemitter3-4.0.7"
+ sources."events-3.3.0"
+ sources."eventsource-polyfill-0.9.6"
+ (sources."express-4.18.2" // {
+ dependencies = [
+ sources."cookie-0.5.0"
+ sources."debug-2.6.9"
+ sources."finalhandler-1.2.0"
+ sources."ms-2.0.0"
+ sources."path-to-regexp-0.1.7"
+ ];
+ })
+ sources."express-data-parser-1.2.0"
+ (sources."express-session-1.17.3" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-3.1.3"
+ sources."fast-diff-1.2.0"
+ sources."fast-json-stable-stringify-2.1.0"
+ sources."fast-levenshtein-2.0.6"
+ sources."fastest-levenshtein-1.0.16"
+ sources."fastq-1.13.0"
+ sources."feature-policy-0.3.0"
+ sources."fibers-5.0.3"
+ sources."file-entry-cache-6.0.1"
+ (sources."file-loader-6.2.0" // {
+ dependencies = [
+ sources."big.js-5.2.2"
+ sources."emojis-list-3.0.0"
+ sources."loader-utils-2.0.3"
+ sources."schema-utils-3.1.1"
+ ];
+ })
+ sources."file-saver-2.0.5"
+ (sources."filelist-1.0.4" // {
+ dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."minimatch-5.1.0"
+ ];
+ })
+ sources."fill-range-7.0.1"
+ (sources."finalhandler-1.1.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ sources."on-finished-2.3.0"
+ sources."statuses-1.5.0"
+ ];
+ })
+ sources."find-cache-dir-2.1.0"
+ sources."find-up-3.0.0"
+ sources."flat-5.0.2"
+ sources."flat-cache-3.0.4"
+ sources."flatted-3.2.7"
+ sources."flow-parser-0.191.0"
+ (sources."flow-remove-types-2.191.0" // {
+ dependencies = [
+ sources."pirates-3.0.2"
+ ];
+ })
+ sources."follow-redirects-1.15.2"
+ sources."for-each-0.3.3"
+ sources."foreachasync-3.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-4.0.0"
+ sources."formidable-1.2.6"
+ sources."forwarded-0.2.0"
+ sources."fraction.js-4.2.0"
+ sources."fresh-0.5.2"
+ sources."fs-extra-8.1.0"
+ sources."fs-minipass-2.1.0"
+ sources."fs-readdir-recursive-1.1.0"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-2.3.2"
+ sources."function-bind-1.1.1"
+ sources."function.prototype.name-1.1.5"
+ sources."functions-have-names-1.2.3"
+ sources."gauge-4.0.4"
+ sources."gaze-1.1.3"
+ sources."gensync-1.0.0-beta.2"
+ sources."geojson-vt-3.2.1"
+ sources."get-caller-file-2.0.5"
+ sources."get-func-name-2.0.0"
+ sources."get-intrinsic-1.1.3"
+ sources."get-package-type-0.1.0"
+ sources."get-stdin-4.0.1"
+ sources."get-stream-6.0.1"
+ sources."get-symbol-description-1.0.0"
+ sources."getpass-0.1.7"
+ sources."gl-matrix-3.4.3"
+ sources."glob-7.2.3"
+ sources."glob-parent-6.0.2"
+ sources."glob-to-regexp-0.4.1"
+ (sources."global-prefix-3.0.0" // {
+ dependencies = [
+ sources."which-1.3.1"
+ ];
+ })
+ sources."globals-11.12.0"
+ (sources."globule-1.3.4" // {
+ dependencies = [
+ sources."glob-7.1.7"
+ sources."minimatch-3.0.8"
+ ];
+ })
+ sources."google-protobuf-3.21.2"
+ sources."gopd-1.0.1"
+ sources."graceful-fs-4.2.10"
+ sources."grapheme-splitter-1.0.4"
+ sources."gzip-size-6.0.0"
+ sources."handlebars-4.7.7"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.5"
+ sources."hard-rejection-2.1.0"
+ sources."has-1.0.3"
+ sources."has-bigints-1.0.2"
+ (sources."has-binary2-1.0.3" // {
+ dependencies = [
+ sources."isarray-2.0.1"
+ ];
+ })
+ sources."has-cors-1.1.0"
+ sources."has-flag-3.0.0"
+ sources."has-property-descriptors-1.0.0"
+ sources."has-symbols-1.0.3"
+ sources."has-tostringtag-1.0.0"
+ sources."has-unicode-2.0.1"
+ sources."hash-sum-1.0.2"
+ sources."hbs-4.2.0"
+ sources."he-1.2.0"
+ sources."helmet-3.23.3"
+ sources."helmet-crossdomain-0.4.0"
+ sources."helmet-csp-2.10.0"
+ sources."hide-powered-by-1.1.0"
+ sources."hls.js-1.2.4"
+ sources."hosted-git-info-4.1.0"
+ sources."hpkp-2.0.0"
+ sources."hsts-2.2.0"
+ sources."html-entities-2.3.3"
+ sources."html-escaper-2.0.2"
+ sources."htmlparser2-6.1.0"
+ sources."http-cache-semantics-4.1.0"
+ sources."http-errors-2.0.0"
+ sources."http-proxy-1.18.1"
+ sources."http-proxy-agent-4.0.1"
+ sources."http-signature-1.2.0"
+ sources."https-proxy-agent-5.0.1"
+ sources."humanize-ms-1.2.1"
+ sources."i-0.3.7"
+ sources."iconv-lite-0.4.24"
+ sources."icss-utils-5.1.0"
+ sources."ieee754-1.2.1"
+ sources."ignore-5.2.0"
+ sources."immutable-4.1.0"
+ (sources."import-fresh-3.3.0" // {
+ dependencies = [
+ sources."resolve-from-4.0.0"
+ ];
+ })
+ (sources."import-local-3.1.0" // {
+ dependencies = [
+ sources."find-up-4.1.0"
+ sources."locate-path-5.0.0"
+ sources."p-locate-4.1.0"
+ sources."path-exists-4.0.0"
+ sources."pkg-dir-4.2.0"
+ ];
+ })
+ sources."imurmurhash-0.1.4"
+ sources."indent-string-4.0.0"
+ sources."indexof-0.0.1"
+ sources."infer-owner-1.0.4"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
+ sources."ini-1.3.8"
+ sources."internal-slot-1.0.3"
+ sources."interpret-2.2.0"
+ sources."ip-2.0.0"
+ sources."ipaddr.js-1.9.1"
+ sources."irregular-plurals-3.3.0"
+ sources."is-arguments-1.1.1"
+ sources."is-arrayish-0.2.1"
+ sources."is-bigint-1.0.4"
+ sources."is-binary-path-2.1.0"
+ sources."is-boolean-object-1.1.2"
+ sources."is-buffer-2.0.5"
+ sources."is-callable-1.2.7"
+ sources."is-core-module-2.11.0"
+ sources."is-date-object-1.0.5"
+ sources."is-expression-4.0.0"
+ sources."is-extglob-2.1.1"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."is-generator-function-1.0.10"
+ sources."is-glob-4.0.3"
+ sources."is-lambda-1.0.1"
+ sources."is-negative-zero-2.0.2"
+ sources."is-number-7.0.0"
+ sources."is-number-object-1.0.7"
+ sources."is-path-inside-3.0.3"
+ sources."is-plain-obj-2.1.0"
+ sources."is-plain-object-2.0.4"
+ sources."is-promise-2.2.2"
+ sources."is-regex-1.1.4"
+ sources."is-shared-array-buffer-1.0.2"
+ sources."is-string-1.0.7"
+ sources."is-symbol-1.0.4"
+ sources."is-typed-array-1.1.10"
+ sources."is-typedarray-1.0.0"
+ sources."is-unicode-supported-0.1.0"
+ sources."is-weakref-1.0.2"
+ sources."isarray-1.0.0"
+ sources."isbinaryfile-4.0.10"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."isstream-0.1.2"
+ sources."istanbul-lib-coverage-3.2.0"
+ (sources."istanbul-lib-instrument-5.2.1" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ (sources."istanbul-lib-report-3.0.0" // {
+ dependencies = [
+ sources."has-flag-4.0.0"
+ sources."make-dir-3.1.0"
+ sources."semver-6.3.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ (sources."istanbul-lib-source-maps-3.0.6" // {
+ dependencies = [
+ sources."istanbul-lib-coverage-2.0.5"
+ sources."rimraf-2.7.1"
+ ];
+ })
+ sources."istanbul-reports-3.1.5"
+ (sources."jake-10.8.5" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ (sources."jest-worker-28.1.3" // {
+ dependencies = [
+ sources."has-flag-4.0.0"
+ sources."supports-color-8.1.1"
+ ];
+ })
+ sources."js-base64-2.6.4"
+ sources."js-sdsl-4.1.5"
+ sources."js-stringify-1.0.2"
+ sources."js-tokens-4.0.0"
+ sources."js-yaml-3.14.1"
+ sources."jsbn-0.1.1"
+ sources."jsesc-2.5.2"
+ sources."json-parse-even-better-errors-2.3.1"
+ sources."json-schema-0.4.0"
+ 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.1"
+ sources."jsonfile-4.0.0"
+ sources."jsprim-1.4.2"
+ sources."jstransformer-1.0.0"
+ sources."karma-6.4.1"
+ (sources."karma-chrome-launcher-3.1.1" // {
+ dependencies = [
+ sources."which-1.3.1"
+ ];
+ })
+ sources."karma-coverage-istanbul-reporter-3.0.3"
+ sources."karma-htmlfile-reporter-0.3.8"
+ sources."karma-mocha-2.0.1"
+ sources."karma-verbose-reporter-0.0.8"
+ (sources."karma-webpack-5.0.0" // {
+ dependencies = [
+ sources."webpack-merge-4.2.2"
+ ];
+ })
+ sources."kdbush-3.0.0"
+ sources."kind-of-6.0.3"
+ sources."klona-2.0.5"
+ sources."levn-0.4.1"
+ sources."lilconfig-2.0.6"
+ sources."lines-and-columns-1.2.4"
+ sources."loader-runner-4.3.0"
+ (sources."loader-utils-0.2.17" // {
+ dependencies = [
+ sources."json5-0.5.1"
+ ];
+ })
+ sources."loadware-2.0.0"
+ sources."locate-path-3.0.0"
+ sources."lodash-4.17.21"
+ sources."lodash.debounce-4.0.8"
+ sources."lodash.memoize-4.1.2"
+ sources."lodash.merge-4.6.2"
+ sources."lodash.uniq-4.5.0"
+ sources."log-1.4.0"
+ (sources."log-symbols-4.1.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ sources."log4js-6.7.0"
+ sources."loupe-2.3.4"
+ sources."lru-cache-6.0.0"
+ sources."luxon-3.1.0"
+ sources."magic-string-0.25.9"
+ sources."make-dir-2.1.0"
+ sources."make-fetch-happen-9.1.0"
+ sources."map-obj-4.3.0"
+ sources."maplibre-gl-2.4.0"
+ (sources."md5-2.3.0" // {
+ dependencies = [
+ sources."is-buffer-1.1.6"
+ ];
+ })
+ sources."mdn-data-2.0.14"
+ sources."media-typer-0.3.0"
+ sources."memoize-one-6.0.0"
+ (sources."meow-9.0.0" // {
+ dependencies = [
+ sources."decamelize-1.2.0"
+ sources."type-fest-0.18.1"
+ ];
+ })
+ sources."merge-descriptors-1.0.1"
+ sources."merge-source-map-1.1.0"
+ sources."merge-stream-2.0.0"
+ (sources."method-override-3.0.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."methods-1.1.2"
+ sources."micromatch-4.0.5"
+ sources."mime-2.6.0"
+ sources."mime-db-1.52.0"
+ sources."mime-types-2.1.35"
+ sources."min-indent-1.0.1"
+ (sources."mini-css-extract-plugin-2.6.1" // {
+ dependencies = [
+ sources."ajv-8.11.0"
+ sources."ajv-keywords-5.1.0"
+ sources."json-schema-traverse-1.0.0"
+ sources."schema-utils-4.0.0"
+ ];
+ })
+ sources."minimatch-3.1.2"
+ sources."minimist-1.2.7"
+ (sources."minimist-options-4.1.0" // {
+ dependencies = [
+ sources."is-plain-obj-1.1.0"
+ ];
+ })
+ sources."minipass-3.3.5"
+ sources."minipass-collect-1.0.2"
+ sources."minipass-fetch-1.4.1"
+ sources."minipass-flush-1.0.5"
+ sources."minipass-pipeline-1.2.4"
+ sources."minipass-sized-1.0.3"
+ sources."minizlib-2.1.2"
+ sources."mkdirp-0.5.6"
+ (sources."mocha-10.1.0" // {
+ dependencies = [
+ sources."argparse-2.0.1"
+ sources."brace-expansion-2.0.1"
+ sources."escape-string-regexp-4.0.0"
+ sources."find-up-5.0.0"
+ (sources."glob-7.2.0" // {
+ dependencies = [
+ sources."minimatch-3.1.2"
+ ];
+ })
+ sources."has-flag-4.0.0"
+ sources."js-yaml-4.1.0"
+ sources."locate-path-6.0.0"
+ sources."minimatch-5.0.1"
+ sources."ms-2.1.3"
+ sources."p-limit-3.1.0"
+ sources."p-locate-5.0.0"
+ sources."path-exists-4.0.0"
+ sources."supports-color-8.1.1"
+ sources."yargs-parser-20.2.4"
+ ];
+ })
+ sources."mrmime-1.0.1"
+ sources."ms-2.1.2"
+ sources."murmurhash-js-1.0.0"
+ sources."mz-2.7.0"
+ sources."nan-2.17.0"
+ sources."nanoid-3.3.3"
+ sources."natural-compare-1.4.0"
+ sources."negotiator-0.6.3"
+ sources."neo-async-2.6.2"
+ sources."nocache-2.1.0"
+ (sources."node-gyp-8.4.1" // {
+ dependencies = [
+ sources."npmlog-6.0.2"
+ sources."semver-7.3.8"
+ ];
+ })
+ sources."node-gyp-build-4.5.0"
+ sources."node-modules-regexp-1.0.0"
+ sources."node-releases-2.0.6"
+ (sources."node-sass-7.0.3" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ sources."node-storage-shim-2.0.1"
+ sources."nopt-5.0.0"
+ (sources."normalize-package-data-3.0.3" // {
+ dependencies = [
+ sources."semver-7.3.8"
+ ];
+ })
+ sources."normalize-path-3.0.0"
+ sources."normalize-range-0.1.2"
+ sources."normalize-url-6.1.0"
+ (sources."npmlog-5.0.1" // {
+ dependencies = [
+ sources."are-we-there-yet-2.0.0"
+ sources."gauge-3.0.2"
+ ];
+ })
+ sources."nth-check-2.1.1"
+ sources."oauth-sign-0.9.0"
+ sources."object-assign-4.1.1"
+ sources."object-inspect-1.12.2"
+ sources."object-keys-1.1.1"
+ sources."object.assign-4.1.4"
+ sources."object.values-1.1.5"
+ sources."on-finished-2.4.1"
+ sources."on-headers-1.0.2"
+ sources."once-1.4.0"
+ sources."opener-1.5.2"
+ sources."optionator-0.9.1"
+ sources."p-limit-2.3.0"
+ sources."p-locate-3.0.0"
+ sources."p-map-4.0.0"
+ sources."p-try-2.2.0"
+ sources."parent-module-1.0.1"
+ sources."parse-json-5.2.0"
+ sources."parse5-6.0.1"
+ sources."parse5-htmlparser2-tree-adapter-6.0.1"
+ sources."parseqs-0.0.6"
+ sources."parseuri-0.0.6"
+ sources."parseurl-1.3.3"
+ sources."path-exists-3.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-6.2.1"
+ sources."path-type-4.0.0"
+ sources."pathval-1.1.1"
+ sources."pbf-3.2.1"
+ sources."performance-now-2.1.0"
+ sources."photoswipe-4.1.3"
+ sources."picocolors-1.0.0"
+ sources."picomatch-2.3.1"
+ sources."pify-4.0.1"
+ sources."pirates-4.0.5"
+ sources."pkg-dir-3.0.0"
+ sources."plur-4.0.0"
+ sources."pofile-1.1.3"
+ (sources."postcss-8.4.18" // {
+ dependencies = [
+ sources."nanoid-3.3.4"
+ ];
+ })
+ sources."postcss-attribute-case-insensitive-5.0.2"
+ sources."postcss-calc-8.2.4"
+ sources."postcss-clamp-4.1.0"
+ sources."postcss-color-functional-notation-4.2.4"
+ sources."postcss-color-hex-alpha-8.0.4"
+ sources."postcss-color-rebeccapurple-7.1.1"
+ sources."postcss-colormin-5.3.0"
+ sources."postcss-convert-values-5.1.3"
+ sources."postcss-custom-media-8.0.2"
+ sources."postcss-custom-properties-12.1.10"
+ sources."postcss-custom-selectors-6.0.3"
+ sources."postcss-dir-pseudo-class-6.0.5"
+ sources."postcss-discard-comments-5.1.2"
+ sources."postcss-discard-duplicates-5.1.0"
+ sources."postcss-discard-empty-5.1.1"
+ sources."postcss-discard-overridden-5.1.0"
+ sources."postcss-double-position-gradients-3.1.2"
+ sources."postcss-env-function-4.0.6"
+ sources."postcss-focus-visible-6.0.4"
+ sources."postcss-focus-within-5.0.4"
+ sources."postcss-font-variant-5.0.0"
+ sources."postcss-gap-properties-3.0.5"
+ sources."postcss-image-set-function-4.0.7"
+ sources."postcss-import-15.0.0"
+ sources."postcss-initial-4.0.1"
+ sources."postcss-lab-function-4.2.1"
+ (sources."postcss-loader-7.0.1" // {
+ dependencies = [
+ sources."semver-7.3.8"
+ ];
+ })
+ sources."postcss-logical-5.0.4"
+ sources."postcss-media-minmax-5.0.0"
+ sources."postcss-merge-longhand-5.1.7"
+ sources."postcss-merge-rules-5.1.3"
+ sources."postcss-minify-font-values-5.1.0"
+ sources."postcss-minify-gradients-5.1.1"
+ sources."postcss-minify-params-5.1.4"
+ sources."postcss-minify-selectors-5.2.1"
+ sources."postcss-modules-extract-imports-3.0.0"
+ sources."postcss-modules-local-by-default-4.0.0"
+ sources."postcss-modules-scope-3.0.0"
+ sources."postcss-modules-values-4.0.0"
+ sources."postcss-nesting-10.2.0"
+ sources."postcss-normalize-charset-5.1.0"
+ sources."postcss-normalize-display-values-5.1.0"
+ sources."postcss-normalize-positions-5.1.1"
+ sources."postcss-normalize-repeat-style-5.1.1"
+ sources."postcss-normalize-string-5.1.0"
+ sources."postcss-normalize-timing-functions-5.1.0"
+ sources."postcss-normalize-unicode-5.1.1"
+ sources."postcss-normalize-url-5.1.0"
+ sources."postcss-normalize-whitespace-5.1.1"
+ sources."postcss-opacity-percentage-1.1.2"
+ sources."postcss-ordered-values-5.1.3"
+ sources."postcss-overflow-shorthand-3.0.4"
+ sources."postcss-page-break-3.0.4"
+ sources."postcss-place-7.0.5"
+ sources."postcss-preset-env-7.8.2"
+ sources."postcss-pseudo-class-any-link-7.1.6"
+ sources."postcss-reduce-initial-5.1.1"
+ sources."postcss-reduce-transforms-5.1.0"
+ sources."postcss-replace-overflow-wrap-4.0.0"
+ sources."postcss-reporter-7.0.5"
+ sources."postcss-selector-not-6.0.1"
+ sources."postcss-selector-parser-6.0.10"
+ sources."postcss-svgo-5.1.0"
+ sources."postcss-unique-selectors-5.1.1"
+ (sources."postcss-url-10.1.3" // {
+ dependencies = [
+ sources."make-dir-3.1.0"
+ sources."mime-2.5.2"
+ sources."minimatch-3.0.8"
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."postcss-value-parser-4.2.0"
+ sources."potpack-1.0.2"
+ sources."prelude-ls-1.2.1"
+ sources."prettier-2.7.1"
+ sources."prettier-linter-helpers-1.0.0"
+ sources."process-nextick-args-2.0.1"
+ sources."promise-7.3.1"
+ sources."promise-inflight-1.0.1"
+ sources."promise-retry-2.0.1"
+ sources."protocol-buffers-schema-3.6.0"
+ sources."proxy-addr-2.0.7"
+ sources."pseudomap-1.0.2"
+ sources."psl-1.9.0"
+ sources."pubsub-js-1.9.4"
+ sources."pug-3.0.2"
+ sources."pug-attrs-3.0.0"
+ sources."pug-code-gen-3.0.2"
+ sources."pug-error-2.0.0"
+ sources."pug-filters-4.0.0"
+ sources."pug-lexer-5.0.1"
+ sources."pug-linker-4.0.0"
+ sources."pug-load-3.0.0"
+ sources."pug-parser-6.0.0"
+ sources."pug-runtime-3.0.1"
+ sources."pug-strip-comments-2.0.0"
+ sources."pug-walk-2.0.0"
+ sources."punycode-2.1.1"
+ sources."qjobs-1.2.0"
+ sources."qs-6.11.0"
+ sources."queue-microtask-1.2.3"
+ sources."quick-lru-4.0.1"
+ sources."quickselect-2.0.0"
+ sources."random-bytes-1.0.0"
+ sources."randombytes-2.1.0"
+ sources."range-parser-1.2.1"
+ sources."raw-body-2.5.1"
+ (sources."read-cache-1.0.0" // {
+ dependencies = [
+ sources."pify-2.3.0"
+ ];
+ })
+ (sources."read-pkg-5.2.0" // {
+ dependencies = [
+ sources."hosted-git-info-2.8.9"
+ sources."normalize-package-data-2.5.0"
+ sources."type-fest-0.6.0"
+ ];
+ })
+ (sources."read-pkg-up-7.0.1" // {
+ dependencies = [
+ sources."find-up-4.1.0"
+ sources."locate-path-5.0.0"
+ sources."p-locate-4.1.0"
+ sources."path-exists-4.0.0"
+ sources."type-fest-0.8.1"
+ ];
+ })
+ sources."readable-stream-3.6.0"
+ sources."readdirp-3.6.0"
+ sources."rechoir-0.7.1"
+ sources."redent-3.0.0"
+ sources."redis-2.8.0"
+ sources."redis-commands-1.7.0"
+ sources."redis-parser-2.6.0"
+ sources."referrer-policy-1.2.0"
+ sources."regenerate-1.4.2"
+ sources."regenerate-unicode-properties-10.1.0"
+ sources."regenerator-runtime-0.13.10"
+ sources."regenerator-transform-0.15.0"
+ sources."regex-parser-2.2.11"
+ sources."regexp.prototype.flags-1.4.3"
+ sources."regexpp-3.2.0"
+ sources."regexpu-core-5.2.1"
+ sources."regjsgen-0.7.1"
+ (sources."regjsparser-0.9.1" // {
+ dependencies = [
+ sources."jsesc-0.5.0"
+ ];
+ })
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."form-data-2.3.3"
+ sources."qs-6.5.3"
+ ];
+ })
+ sources."require-directory-2.1.1"
+ sources."require-from-string-2.0.2"
+ sources."requires-port-1.0.0"
+ sources."resolve-1.22.1"
+ sources."resolve-cwd-3.0.0"
+ sources."resolve-from-5.0.0"
+ sources."resolve-protobuf-schema-2.1.0"
+ (sources."resolve-url-loader-5.0.0" // {
+ dependencies = [
+ sources."big.js-5.2.2"
+ sources."emojis-list-3.0.0"
+ sources."loader-utils-2.0.3"
+ ];
+ })
+ (sources."response-time-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.2"
+ ];
+ })
+ sources."retry-0.12.0"
+ sources."reusify-1.0.4"
+ sources."rfdc-1.3.0"
+ sources."rimraf-3.0.2"
+ sources."rndm-1.2.0"
+ sources."run-parallel-1.2.0"
+ sources."rxjs-7.5.7"
+ sources."safe-buffer-5.2.1"
+ sources."safe-regex-test-1.0.0"
+ sources."safer-buffer-2.1.2"
+ sources."sass-1.55.0"
+ (sources."sass-embedded-1.55.0" // {
+ dependencies = [
+ sources."has-flag-4.0.0"
+ sources."supports-color-8.1.1"
+ ];
+ })
+ sources."sass-embedded-darwin-arm64-1.55.0"
+ sources."sass-embedded-darwin-x64-1.55.0"
+ sources."sass-embedded-linux-arm-1.55.0"
+ sources."sass-embedded-linux-arm64-1.55.0"
+ sources."sass-embedded-linux-ia32-1.55.0"
+ sources."sass-embedded-linux-x64-1.55.0"
+ sources."sass-embedded-win32-ia32-1.55.0"
+ sources."sass-embedded-win32-x64-1.55.0"
+ (sources."sass-graph-4.0.1" // {
+ dependencies = [
+ sources."cliui-8.0.1"
+ sources."yargs-17.6.1"
+ sources."yargs-parser-21.1.1"
+ ];
+ })
+ sources."sass-loader-13.1.0"
+ sources."schema-utils-2.7.1"
+ sources."screenfull-5.2.0"
+ (sources."scss-tokenizer-0.4.3" // {
+ dependencies = [
+ sources."source-map-0.7.4"
+ ];
+ })
+ sources."semver-5.7.1"
+ (sources."send-0.18.0" // {
+ dependencies = [
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."mime-1.6.0"
+ sources."ms-2.1.3"
+ ];
+ })
+ sources."serialize-javascript-6.0.0"
+ (sources."serve-favicon-2.5.0" // {
+ dependencies = [
+ sources."ms-2.1.1"
+ sources."safe-buffer-5.1.1"
+ ];
+ })
+ (sources."serve-index-1.9.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."depd-1.1.2"
+ sources."http-errors-1.6.3"
+ sources."inherits-2.0.3"
+ sources."ms-2.0.0"
+ sources."setprototypeof-1.1.0"
+ sources."statuses-1.5.0"
+ ];
+ })
+ sources."serve-static-1.15.0"
+ (sources."server-1.0.37" // {
+ dependencies = [
+ sources."component-emitter-1.2.1"
+ sources."debug-4.1.1"
+ sources."engine.io-3.6.0"
+ sources."engine.io-parser-2.2.1"
+ sources."isarray-2.0.1"
+ sources."socket.io-2.5.0"
+ sources."socket.io-adapter-1.1.2"
+ sources."socket.io-parser-3.4.1"
+ sources."ws-7.4.6"
+ ];
+ })
+ sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.2.0"
+ sources."shallow-clone-3.0.1"
+ sources."shebang-command-2.0.0"
+ sources."shebang-regex-3.0.0"
+ sources."side-channel-1.0.4"
+ sources."signal-exit-3.0.7"
+ sources."sirv-1.0.19"
+ sources."slash-2.0.0"
+ sources."smart-buffer-4.2.0"
+ sources."socket.io-4.5.3"
+ sources."socket.io-adapter-2.4.0"
+ (sources."socket.io-client-2.5.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."isarray-2.0.1"
+ sources."ms-2.0.0"
+ sources."socket.io-parser-3.3.2"
+ ];
+ })
+ sources."socket.io-parser-4.2.1"
+ sources."sockette-2.0.6"
+ sources."socks-2.7.1"
+ sources."socks-proxy-agent-6.2.1"
+ sources."source-list-map-2.0.1"
+ sources."source-map-0.6.1"
+ sources."source-map-js-1.0.2"
+ sources."source-map-support-0.5.21"
+ sources."sourcemap-codec-1.4.8"
+ sources."spdx-correct-3.1.1"
+ sources."spdx-exceptions-2.3.0"
+ sources."spdx-expression-parse-3.0.1"
+ sources."spdx-license-ids-3.0.12"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.17.0"
+ sources."ssri-8.0.1"
+ sources."stable-0.1.8"
+ sources."statuses-2.0.1"
+ (sources."stdout-stream-1.4.1" // {
+ dependencies = [
+ sources."readable-stream-2.3.7"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."streamroller-3.1.3"
+ sources."string-width-4.2.3"
+ sources."string.prototype.trimend-1.0.5"
+ sources."string.prototype.trimstart-1.0.5"
+ sources."string_decoder-1.3.0"
+ sources."strip-ansi-6.0.1"
+ sources."strip-bom-3.0.0"
+ sources."strip-indent-3.0.0"
+ sources."strip-json-comments-3.1.1"
+ sources."style-loader-3.3.1"
+ sources."stylehacks-5.1.1"
+ sources."supercluster-7.1.5"
+ sources."supports-color-5.5.0"
+ (sources."supports-hyperlinks-2.3.0" // {
+ dependencies = [
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
+ sources."supports-preserve-symlinks-flag-1.0.0"
+ sources."svg-url-loader-8.0.0"
+ (sources."svgo-2.8.0" // {
+ dependencies = [
+ sources."commander-7.2.0"
+ ];
+ })
+ sources."tapable-2.2.1"
+ (sources."tar-6.1.12" // {
+ dependencies = [
+ sources."mkdirp-1.0.4"
+ ];
+ })
+ (sources."terser-5.15.1" // {
+ dependencies = [
+ sources."acorn-8.8.1"
+ sources."commander-2.20.3"
+ ];
+ })
+ (sources."terser-webpack-plugin-5.3.6" // {
+ dependencies = [
+ sources."has-flag-4.0.0"
+ sources."jest-worker-27.5.1"
+ sources."schema-utils-3.1.1"
+ sources."supports-color-8.1.1"
+ ];
+ })
+ sources."test-exclude-6.0.0"
+ sources."text-table-0.2.0"
+ sources."thenby-1.3.4"
+ sources."thenify-3.3.1"
+ sources."thenify-all-1.6.0"
+ sources."tinyqueue-2.0.3"
+ sources."tmp-0.2.1"
+ sources."to-array-0.1.4"
+ sources."to-fast-properties-2.0.0"
+ sources."to-regex-range-5.0.1"
+ sources."toidentifier-1.0.1"
+ sources."token-stream-1.0.0"
+ sources."totalist-1.1.0"
+ sources."tough-cookie-2.5.0"
+ sources."trim-newlines-3.0.1"
+ sources."true-case-path-1.0.3"
+ (sources."tsconfig-paths-3.14.1" // {
+ dependencies = [
+ sources."json5-1.0.1"
+ ];
+ })
+ sources."tslib-2.4.1"
+ sources."tsscmp-1.0.6"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-check-0.4.0"
+ sources."type-detect-4.0.8"
+ sources."type-fest-0.20.2"
+ sources."type-is-1.6.18"
+ sources."ua-parser-js-0.7.32"
+ sources."uglify-js-3.17.4"
+ sources."uid-safe-2.1.5"
+ sources."unbox-primitive-1.0.2"
+ sources."unicode-canonical-property-names-ecmascript-2.0.0"
+ sources."unicode-match-property-ecmascript-2.0.0"
+ sources."unicode-match-property-value-ecmascript-2.0.0"
+ sources."unicode-property-aliases-ecmascript-2.1.0"
+ sources."unique-filename-1.1.1"
+ sources."unique-slug-2.0.2"
+ sources."universalify-0.1.2"
+ sources."unpipe-1.0.0"
+ sources."update-browserslist-db-1.0.10"
+ sources."uri-js-4.4.1"
+ (sources."url-loader-4.1.1" // {
+ dependencies = [
+ sources."big.js-5.2.2"
+ sources."emojis-list-3.0.0"
+ sources."loader-utils-2.0.3"
+ sources."schema-utils-3.1.1"
+ ];
+ })
+ sources."utf-8-validate-5.0.10"
+ sources."util-0.12.5"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.4.0"
+ sources."validate-npm-package-license-3.0.4"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."vlq-0.2.3"
+ sources."void-elements-3.1.0"
+ sources."vt-pbf-3.1.3"
+ (sources."vue-2.7.13" // {
+ dependencies = [
+ sources."@vue/compiler-sfc-2.7.13"
+ ];
+ })
+ (sources."vue-eslint-parser-9.1.0" // {
+ dependencies = [
+ sources."eslint-scope-7.1.1"
+ sources."eslint-visitor-keys-3.3.0"
+ sources."estraverse-5.3.0"
+ sources."semver-7.3.8"
+ ];
+ })
+ sources."vue-fullscreen-2.6.1"
+ sources."vue-gettext-2.1.12"
+ sources."vue-hot-reload-api-2.3.4"
+ sources."vue-infinite-scroll-2.0.2"
+ (sources."vue-loader-15.10.0" // {
+ dependencies = [
+ sources."big.js-5.2.2"
+ sources."emojis-list-3.0.0"
+ sources."json5-1.0.1"
+ sources."loader-utils-1.4.0"
+ ];
+ })
+ sources."vue-loader-plugin-1.3.0"
+ (sources."vue-luxon-0.10.0" // {
+ dependencies = [
+ sources."luxon-1.28.0"
+ ];
+ })
+ sources."vue-router-3.6.5"
+ (sources."vue-style-loader-4.1.3" // {
+ dependencies = [
+ sources."big.js-5.2.2"
+ sources."emojis-list-3.0.0"
+ sources."json5-1.0.1"
+ sources."loader-utils-1.4.0"
+ ];
+ })
+ sources."vue-template-compiler-2.7.13"
+ sources."vue-template-es2015-compiler-1.9.1"
+ sources."vue2-filters-0.14.0"
+ sources."vuetify-1.5.24"
+ sources."walk-2.3.15"
+ sources."watchpack-2.4.0"
+ (sources."webpack-5.74.0" // {
+ dependencies = [
+ sources."@types/estree-0.0.51"
+ sources."acorn-8.8.1"
+ sources."schema-utils-3.1.1"
+ ];
+ })
+ (sources."webpack-bundle-analyzer-4.7.0" // {
+ dependencies = [
+ sources."acorn-8.8.1"
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."commander-7.2.0"
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.2.0"
+ sources."ws-7.5.9"
+ ];
+ })
+ (sources."webpack-cli-4.10.0" // {
+ dependencies = [
+ sources."commander-7.2.0"
+ ];
+ })
+ sources."webpack-hot-middleware-2.25.2"
+ (sources."webpack-manifest-plugin-5.0.0" // {
+ dependencies = [
+ sources."webpack-sources-2.3.1"
+ ];
+ })
+ sources."webpack-md5-hash-0.0.6"
+ sources."webpack-merge-5.8.0"
+ sources."webpack-sources-3.2.3"
+ sources."which-2.0.2"
+ sources."which-boxed-primitive-1.0.2"
+ sources."which-typed-array-1.1.9"
+ sources."wide-align-1.1.5"
+ sources."wildcard-2.0.0"
+ sources."with-7.0.2"
+ sources."word-wrap-1.2.3"
+ sources."wordwrap-1.0.0"
+ sources."workerpool-6.2.1"
+ (sources."wrap-ansi-7.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ ];
+ })
+ sources."wrappy-1.0.2"
+ sources."ws-8.2.3"
+ sources."x-xss-protection-1.3.0"
+ sources."xml-name-validator-4.0.0"
+ sources."xmlbuilder-10.1.1"
+ sources."xmlhttprequest-ssl-1.6.3"
+ sources."xxhashjs-0.2.2"
+ sources."y18n-5.0.8"
+ sources."yallist-4.0.0"
+ sources."yaml-1.10.2"
+ sources."yargs-16.2.0"
+ sources."yargs-parser-20.2.9"
+ (sources."yargs-unparser-2.0.0" // {
+ dependencies = [
+ sources."camelcase-6.3.0"
+ ];
+ })
+ sources."yeast-0.1.2"
+ sources."yocto-queue-0.1.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "AI-Powered Photos App";
+ license = "AGPL-3.0";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
pkg = nodeEnv.buildNodePackage {
name = "pkg";
packageName = "pkg";
@@ -128123,7 +131431,7 @@ in
})
sources."@pm2/pm2-version-check-1.0.4"
sources."@tootallnate/once-1.1.2"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."agent-base-6.0.2"
sources."amp-0.3.1"
@@ -128246,7 +131554,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-parse-1.0.7"
sources."picomatch-2.3.1"
- sources."pidusage-3.0.1"
+ sources."pidusage-3.0.2"
sources."pm2-axon-4.0.1"
sources."pm2-axon-rpc-0.7.1"
sources."pm2-deploy-1.0.2"
@@ -128293,10 +131601,10 @@ in
sources."string_decoder-0.10.31"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."systeminformation-5.12.7"
+ sources."systeminformation-5.12.11"
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."tv4-1.3.0"
sources."tx2-1.0.5"
sources."type-check-0.3.2"
@@ -128330,10 +131638,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "7.14.0";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-7.14.0.tgz";
- sha512 = "yUKSckJLBIw8ByqMKJF9497kzwrevuQhdL6o2eYbky7woAictxoGX9veBdQYCdBemuC239X2FJq/LGTpCjQ55w==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-7.14.2.tgz";
+ sha512 = "NSxrIaRW07jFQQ1fPFFOA8eMfuogsMeygOKd3zaFgyJBdo1oh61jl2JjWc+w0XNzWIMG7/v9HK7nP8RTL5NO3g==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -128412,51 +131720,51 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- (sources."@swc/core-android-arm64-1.3.10" // {
+ (sources."@swc/core-android-arm64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- (sources."@swc/core-freebsd-x64-1.3.10" // {
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ (sources."@swc/core-freebsd-x64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-linux-arm-gnueabihf-1.3.10" // {
+ (sources."@swc/core-linux-arm-gnueabihf-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- (sources."@swc/core-win32-arm64-msvc-1.3.10" // {
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ (sources."@swc/core-win32-arm64-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-win32-ia32-msvc-1.3.10" // {
+ (sources."@swc/core-win32-ia32-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-win32-x64-msvc-1.3.10"
- sources."@swc/wasm-1.3.10"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
+ sources."@swc/wasm-1.3.12"
sources."@tsconfig/node10-1.0.9"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
- sources."@types/node-18.11.3"
- sources."acorn-8.8.0"
+ sources."@types/node-18.11.9"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -128524,7 +131832,7 @@ in
sources."wrap-ansi-7.0.0"
sources."y18n-5.0.8"
sources."yaml-2.1.3"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
sources."yn-3.1.1"
];
@@ -128701,14 +132009,14 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
sources."@babel/core-7.19.6"
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
- sources."@babel/helper-compilation-targets-7.19.3"
+ sources."@babel/helper-compilation-targets-7.20.0"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
sources."@babel/helper-hoist-variables-7.18.6"
@@ -128719,12 +132027,12 @@ in
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@istanbuljs/load-nyc-config-1.1.0"
sources."@istanbuljs/schema-0.1.3"
sources."@jridgewell/gen-mapping-0.1.1"
@@ -128745,7 +132053,7 @@ in
sources."browserslist-4.21.4"
sources."caching-transform-4.0.0"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."chalk-2.4.2"
sources."clean-stack-2.2.0"
sources."cliui-6.0.0"
@@ -129200,10 +132508,10 @@ in
purescript-language-server = nodeEnv.buildNodePackage {
name = "purescript-language-server";
packageName = "purescript-language-server";
- version = "0.17.0";
+ version = "0.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.17.0.tgz";
- sha512 = "qvcRtfRBvkVIM8R32xSugKimVNmYh1XDiztf9nRx3cR7ryR4GLRINh2Qkw/iu9vv1MaFqZJ9F1YmrnAdaRjlDw==";
+ url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.17.1.tgz";
+ sha512 = "o/YpvFMOXp5/UqfFjed8+pwZwttg1QpI3iqkHlMB16AW8MRYGVwTAw1zV8MGqazFFat5j3+IJEUHhaeFON0EfA==";
};
dependencies = [
sources."isexe-2.0.0"
@@ -129389,10 +132697,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.276";
+ version = "1.1.278";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.276.tgz";
- sha512 = "qG98S7X16hoymOlngwleX4bg6CzlE6sxclrqkif8Kqfm0bsaC/jiBxs2lWN+QJY9JL8hpK6j5MchFh4qSaZCEw==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.278.tgz";
+ sha512 = "at3j7c1fFzB6Jl4+bpr9QPRC/+1gH2gAR/M6GIRS312CHE2JMt8FZRflTbuxEB8IfQAtR+l3YoRMoS1vqF28jw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -129651,21 +132959,18 @@ in
sources."colors-0.6.2"
sources."concat-map-0.0.1"
sources."cycle-1.0.3"
- sources."deep-equal-2.0.5"
+ sources."deep-equal-2.1.0"
sources."define-properties-1.1.4"
- sources."es-abstract-1.20.4"
sources."es-get-iterator-1.1.2"
- sources."es-to-primitive-1.2.1"
sources."escape-string-regexp-1.0.5"
sources."eyes-0.1.8"
sources."for-each-0.3.3"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
sources."functions-have-names-1.2.3"
sources."get-intrinsic-1.1.3"
- sources."get-symbol-description-1.0.0"
sources."glob-7.2.3"
+ sources."gopd-1.0.1"
sources."has-1.0.3"
sources."has-ansi-2.0.0"
sources."has-bigints-1.0.2"
@@ -129675,23 +132980,19 @@ in
sources."i-0.3.7"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."internal-slot-1.0.3"
sources."is-arguments-1.1.1"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
sources."is-callable-1.2.7"
sources."is-date-object-1.0.5"
sources."is-map-2.0.2"
- sources."is-negative-zero-2.0.2"
sources."is-number-object-1.0.7"
sources."is-regex-1.1.4"
sources."is-set-2.0.2"
- sources."is-shared-array-buffer-1.0.2"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
+ sources."is-typed-array-1.1.10"
sources."is-weakmap-2.0.1"
- sources."is-weakref-1.0.2"
sources."is-weakset-2.0.2"
sources."isarray-2.0.5"
sources."isstream-0.1.2"
@@ -129712,19 +133013,15 @@ in
sources."regexp.prototype.flags-1.4.3"
sources."revalidator-0.1.8"
sources."rimraf-2.7.1"
- sources."safe-regex-test-1.0.0"
sources."semver-5.7.1"
sources."side-channel-1.0.4"
sources."stack-trace-0.0.10"
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
sources."strip-ansi-3.0.1"
sources."supports-color-2.0.0"
- sources."unbox-primitive-1.0.2"
sources."utile-0.2.1"
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.1"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
(sources."winston-0.8.3" // {
dependencies = [
sources."pkginfo-0.3.1"
@@ -129754,20 +133051,20 @@ in
sources."@ampproject/remapping-2.2.0"
sources."@babel/cli-7.19.3"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
(sources."@babel/core-7.19.6" // {
dependencies = [
sources."semver-6.3.0"
];
})
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
sources."@babel/helper-annotate-as-pure-7.18.6"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9"
- (sources."@babel/helper-compilation-targets-7.19.3" // {
+ (sources."@babel/helper-compilation-targets-7.20.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -129791,18 +133088,18 @@ in
sources."@babel/helper-remap-async-to-generator-7.18.9"
sources."@babel/helper-replace-supers-7.19.1"
sources."@babel/helper-simple-access-7.19.4"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0"
sources."@babel/helper-split-export-declaration-7.18.6"
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
sources."@babel/helper-wrap-function-7.19.0"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9"
- sources."@babel/plugin-proposal-async-generator-functions-7.19.1"
+ sources."@babel/plugin-proposal-async-generator-functions-7.20.1"
sources."@babel/plugin-proposal-class-properties-7.18.6"
sources."@babel/plugin-proposal-class-static-block-7.18.6"
sources."@babel/plugin-proposal-dynamic-import-7.18.6"
@@ -129824,7 +133121,7 @@ in
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
sources."@babel/plugin-syntax-export-default-from-7.18.6"
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
- sources."@babel/plugin-syntax-import-assertions-7.18.6"
+ sources."@babel/plugin-syntax-import-assertions-7.20.0"
sources."@babel/plugin-syntax-json-strings-7.8.3"
sources."@babel/plugin-syntax-jsx-7.18.6"
sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
@@ -129838,10 +133135,10 @@ in
sources."@babel/plugin-transform-arrow-functions-7.18.6"
sources."@babel/plugin-transform-async-to-generator-7.18.6"
sources."@babel/plugin-transform-block-scoped-functions-7.18.6"
- sources."@babel/plugin-transform-block-scoping-7.19.4"
+ sources."@babel/plugin-transform-block-scoping-7.20.0"
sources."@babel/plugin-transform-classes-7.19.0"
sources."@babel/plugin-transform-computed-properties-7.18.9"
- sources."@babel/plugin-transform-destructuring-7.19.4"
+ sources."@babel/plugin-transform-destructuring-7.20.0"
sources."@babel/plugin-transform-dotall-regex-7.18.6"
sources."@babel/plugin-transform-duplicate-keys-7.18.9"
sources."@babel/plugin-transform-exponentiation-operator-7.18.6"
@@ -129856,7 +133153,7 @@ in
sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1"
sources."@babel/plugin-transform-new-target-7.18.6"
sources."@babel/plugin-transform-object-super-7.18.6"
- sources."@babel/plugin-transform-parameters-7.18.8"
+ sources."@babel/plugin-transform-parameters-7.20.1"
sources."@babel/plugin-transform-property-literals-7.18.6"
sources."@babel/plugin-transform-react-display-name-7.18.6"
sources."@babel/plugin-transform-react-jsx-7.19.0"
@@ -129885,10 +133182,10 @@ in
sources."@babel/preset-react-7.18.6"
sources."@babel/preset-stage-0-7.8.3"
sources."@babel/register-7.18.9"
- sources."@babel/runtime-7.19.4"
+ sources."@babel/runtime-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/set-array-1.1.2"
@@ -129899,11 +133196,11 @@ in
sources."@types/glob-7.2.0"
sources."@types/json-schema-7.0.11"
sources."@types/minimatch-5.1.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/parse-json-4.0.0"
sources."@types/prop-types-15.7.5"
sources."@types/q-1.5.5"
- sources."@types/react-17.0.50"
+ sources."@types/react-17.0.52"
sources."@types/scheduler-0.16.2"
sources."@webassemblyjs/ast-1.9.0"
sources."@webassemblyjs/floating-point-hex-parser-1.9.0"
@@ -130094,7 +133391,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -130171,7 +133468,7 @@ in
sources."copy-concurrently-1.0.5"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- sources."core-js-compat-3.25.5"
+ sources."core-js-compat-3.26.0"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."cosmiconfig-6.0.0"
@@ -131599,10 +134896,10 @@ in
readability-cli = nodeEnv.buildNodePackage {
name = "readability-cli";
packageName = "readability-cli";
- version = "2.4.1";
+ version = "2.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/readability-cli/-/readability-cli-2.4.1.tgz";
- sha512 = "0l9A33szQytGEwLjSCA1CL0LKMMY7zGtH4MZRd+7vRuyH8/YHuIBnY4rs0zrE6gPjGNWkwPULs+UTZplLZomww==";
+ url = "https://registry.npmjs.org/readability-cli/-/readability-cli-2.4.2.tgz";
+ sha512 = "dQ0EuULmLd65pa9H27xreYuQiNFerDQxI3weqPRHcuiFQnK0b4YNhcZHZw7w3a0YYpXVlcP6bKK/BaiUUuqBoQ==";
};
dependencies = [
sources."@mapbox/node-pre-gyp-1.0.10"
@@ -131610,7 +134907,7 @@ in
sources."@tootallnate/once-2.0.0"
sources."abab-2.0.6"
sources."abbrev-1.1.1"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -131627,7 +134924,7 @@ in
sources."brace-expansion-1.1.11"
sources."browser-process-hrtime-1.0.0"
sources."bufferutil-4.0.7"
- sources."canvas-2.10.1"
+ sources."canvas-2.10.2"
sources."chownr-2.0.0"
sources."cliui-8.0.1"
sources."color-convert-2.0.1"
@@ -131733,7 +135030,7 @@ in
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."symbol-tree-3.2.4"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."tough-cookie-4.1.2"
sources."tr46-3.0.0"
sources."type-check-0.3.2"
@@ -131751,12 +135048,12 @@ in
sources."word-wrap-1.2.3"
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
- sources."ws-8.9.0"
+ sources."ws-8.10.0"
sources."xml-name-validator-4.0.0"
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
];
buildInputs = globalBuildInputs;
@@ -131779,7 +135076,7 @@ in
};
dependencies = [
sources."@babel/code-frame-7.18.6"
- sources."@babel/generator-7.19.6"
+ sources."@babel/generator-7.20.1"
sources."@babel/helper-annotate-as-pure-7.18.6"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
@@ -131789,11 +135086,11 @@ in
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
- sources."@babel/runtime-7.19.4"
+ sources."@babel/parser-7.20.1"
+ sources."@babel/runtime-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
sources."@emotion/is-prop-valid-1.2.0"
sources."@emotion/memoize-0.8.0"
sources."@emotion/stylis-0.8.5"
@@ -131806,14 +135103,14 @@ in
sources."@jridgewell/sourcemap-codec-1.4.14"
sources."@jridgewell/trace-mapping-0.3.17"
sources."@redocly/ajv-8.11.0"
- sources."@redocly/openapi-core-1.0.0-beta.111"
+ sources."@redocly/openapi-core-1.0.0-beta.112"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/eslint-8.4.7"
+ sources."@types/eslint-8.4.9"
sources."@types/eslint-scope-3.7.4"
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
- sources."@types/node-14.18.32"
+ sources."@types/node-14.18.33"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -131831,7 +135128,7 @@ in
sources."@webassemblyjs/wast-printer-1.11.1"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-import-assertions-1.8.0"
(sources."ajv-6.12.6" // {
dependencies = [
@@ -131898,10 +135195,10 @@ in
sources."lowercase-keys-2.0.0"
];
})
- sources."call-me-maybe-1.0.1"
+ sources."call-me-maybe-1.0.2"
sources."camelcase-6.3.0"
sources."camelize-1.0.1"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
(sources."chalk-2.4.2" // {
dependencies = [
sources."has-flag-3.0.0"
@@ -131924,7 +135221,7 @@ in
sources."configstore-5.0.1"
sources."console-browserify-1.2.0"
sources."constants-browserify-1.0.0"
- sources."core-js-3.25.5"
+ sources."core-js-3.26.0"
sources."core-util-is-1.0.3"
(sources."create-ecdh-4.0.4" // {
dependencies = [
@@ -132054,7 +135351,7 @@ in
];
})
sources."mark.js-8.11.1"
- sources."marked-4.1.1"
+ sources."marked-4.2.1"
sources."md5.js-1.3.5"
sources."merge-stream-2.0.0"
(sources."miller-rabin-4.0.1" // {
@@ -132207,7 +135504,7 @@ in
sources."tty-browserify-0.0.0"
sources."type-fest-0.20.2"
sources."typedarray-to-buffer-3.1.5"
- sources."uglify-js-3.17.3"
+ sources."uglify-js-3.17.4"
sources."unique-string-2.0.0"
sources."update-browserslist-db-1.0.10"
(sources."update-notifier-5.1.0" // {
@@ -132260,7 +135557,7 @@ in
sources."yallist-4.0.0"
sources."yaml-1.10.2"
sources."yaml-ast-parser-0.0.43"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
];
buildInputs = globalBuildInputs;
@@ -132283,7 +135580,7 @@ in
};
dependencies = [
sources."@types/prop-types-15.7.5"
- sources."@types/react-18.0.21"
+ sources."@types/react-18.0.24"
sources."@types/scheduler-0.16.2"
sources."@types/yoga-layout-1.9.2"
sources."ansi-escapes-4.3.2"
@@ -132304,7 +135601,7 @@ in
sources."csstype-3.1.1"
sources."currently-unhandled-0.4.1"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -132778,10 +136075,10 @@ in
rollup = nodeEnv.buildNodePackage {
name = "rollup";
packageName = "rollup";
- version = "3.2.3";
+ version = "3.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-3.2.3.tgz";
- sha512 = "qfadtkY5kl0F5e4dXVdj2D+GtOdifasXHFMiL1SMf9ADQDv5Eti6xReef9FKj+iQPR2pvtqWna57s/PjARY4fg==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-3.2.5.tgz";
+ sha512 = "/Ha7HhVVofduy+RKWOQJrxe4Qb3xyZo+chcpYiD8SoQa4AG7llhupUtyfKSSrdBM2mWJjhM8wZwmbY23NmlIYw==";
};
dependencies = [
sources."fsevents-2.3.2"
@@ -132804,7 +136101,7 @@ in
dependencies = [
sources."@eslint/eslintrc-1.3.3"
sources."@hpcc-js/wasm-1.16.1"
- sources."@humanwhocodes/config-array-0.11.6"
+ sources."@humanwhocodes/config-array-0.11.7"
sources."@humanwhocodes/module-importer-1.0.1"
sources."@humanwhocodes/object-schema-1.2.1"
sources."@nodelib/fs.scandir-2.1.5"
@@ -132813,18 +136110,18 @@ in
sources."@tootallnate/once-1.1.2"
sources."@types/json-schema-7.0.11"
sources."@types/node-14.17.34"
- sources."@types/semver-7.3.12"
+ sources."@types/semver-7.3.13"
sources."@types/vscode-1.66.0"
- sources."@typescript-eslint/eslint-plugin-5.40.1"
- sources."@typescript-eslint/parser-5.40.1"
- sources."@typescript-eslint/scope-manager-5.40.1"
- sources."@typescript-eslint/type-utils-5.40.1"
- sources."@typescript-eslint/types-5.40.1"
- sources."@typescript-eslint/typescript-estree-5.40.1"
- sources."@typescript-eslint/utils-5.40.1"
- sources."@typescript-eslint/visitor-keys-5.40.1"
+ sources."@typescript-eslint/eslint-plugin-5.42.0"
+ sources."@typescript-eslint/parser-5.42.0"
+ sources."@typescript-eslint/scope-manager-5.42.0"
+ sources."@typescript-eslint/type-utils-5.42.0"
+ sources."@typescript-eslint/types-5.42.0"
+ sources."@typescript-eslint/typescript-estree-5.42.0"
+ sources."@typescript-eslint/utils-5.42.0"
+ sources."@typescript-eslint/visitor-keys-5.42.0"
sources."@vscode/test-electron-2.2.0"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-jsx-5.3.2"
sources."agent-base-6.0.2"
sources."ajv-6.12.6"
@@ -133049,6 +136346,7 @@ in
sources."mute-stream-0.0.8"
sources."napi-build-utils-1.0.2"
sources."natural-compare-1.4.0"
+ sources."natural-compare-lite-1.4.0"
sources."node-abi-3.28.0"
sources."node-addon-api-4.3.0"
sources."nth-check-2.1.1"
@@ -133121,7 +136419,7 @@ in
sources."tmp-0.2.1"
sources."to-regex-range-5.0.1"
sources."traverse-0.3.9"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
(sources."tsutils-3.21.0" // {
dependencies = [
sources."tslib-1.14.1"
@@ -133515,7 +136813,7 @@ in
sources."js-yaml-3.14.1"
];
})
- (sources."@serverless/utils-6.8.0" // {
+ (sources."@serverless/utils-6.8.2" // {
dependencies = [
sources."jwt-decode-3.1.2"
sources."uuid-8.3.2"
@@ -133527,8 +136825,8 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
- sources."@types/lodash-4.14.186"
- sources."@types/node-18.11.3"
+ sources."@types/lodash-4.14.187"
+ sources."@types/node-18.11.9"
sources."@types/responselike-1.0.0"
sources."adm-zip-0.5.9"
sources."agent-base-6.0.2"
@@ -133556,7 +136854,7 @@ in
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."available-typed-arrays-1.0.5"
- (sources."aws-sdk-2.1238.0" // {
+ (sources."aws-sdk-2.1246.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -133692,7 +136990,6 @@ in
sources."defer-to-connect-2.0.1"
sources."deferred-0.7.11"
sources."define-lazy-prop-2.0.0"
- sources."define-properties-1.1.4"
sources."delayed-stream-1.0.0"
sources."dezalgo-1.0.3"
sources."dir-glob-3.0.1"
@@ -133706,8 +137003,6 @@ in
];
})
sources."end-of-stream-1.4.4"
- sources."es-abstract-1.20.4"
- sources."es-to-primitive-1.2.1"
sources."es5-ext-0.10.62"
sources."es6-iterator-2.0.3"
sources."es6-set-0.1.6"
@@ -133752,22 +137047,18 @@ in
sources."fs2-0.3.9"
sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
- sources."functions-have-names-1.2.3"
sources."get-intrinsic-1.1.3"
sources."get-stdin-8.0.0"
sources."get-stream-6.0.1"
- sources."get-symbol-description-1.0.0"
sources."glob-7.2.3"
sources."glob-parent-5.1.2"
sources."globby-11.1.0"
+ sources."gopd-1.0.1"
sources."got-11.8.5"
sources."graceful-fs-4.2.10"
sources."graphlib-2.1.8"
sources."has-1.0.3"
- sources."has-bigints-1.0.2"
sources."has-flag-3.0.0"
- sources."has-property-descriptors-1.0.0"
sources."has-symbols-1.0.3"
sources."has-tostringtag-1.0.0"
sources."hexoid-1.0.0"
@@ -133781,14 +137072,10 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."inquirer-8.2.4"
- sources."internal-slot-1.0.3"
+ sources."inquirer-8.2.5"
sources."is-arguments-1.1.1"
- sources."is-bigint-1.0.4"
sources."is-binary-path-2.1.0"
- sources."is-boolean-object-1.1.2"
sources."is-callable-1.2.7"
- sources."is-date-object-1.0.5"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -133796,19 +137083,12 @@ in
sources."is-glob-4.0.3"
sources."is-interactive-1.0.0"
sources."is-natural-number-4.0.1"
- sources."is-negative-zero-2.0.2"
sources."is-number-7.0.0"
- sources."is-number-object-1.0.7"
sources."is-plain-obj-1.1.0"
sources."is-promise-2.2.2"
- sources."is-regex-1.1.4"
- sources."is-shared-array-buffer-1.0.2"
sources."is-stream-1.1.0"
- sources."is-string-1.0.7"
- sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
+ sources."is-typed-array-1.1.10"
sources."is-unicode-supported-0.1.0"
- sources."is-weakref-1.0.2"
sources."is-wsl-2.2.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
@@ -133879,8 +137159,6 @@ in
sources."object-assign-4.1.1"
sources."object-hash-3.0.0"
sources."object-inspect-1.12.2"
- sources."object-keys-1.1.1"
- sources."object.assign-4.1.4"
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."open-8.4.0"
@@ -133924,7 +137202,6 @@ in
];
})
sources."readdirp-3.6.0"
- sources."regexp.prototype.flags-1.4.3"
sources."require-from-string-2.0.2"
sources."resolve-alpn-1.2.1"
sources."responselike-2.0.1"
@@ -133935,7 +137212,6 @@ in
sources."run-parallel-limit-1.1.0"
sources."rxjs-7.5.7"
sources."safe-buffer-5.1.2"
- sources."safe-regex-test-1.0.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.1"
sources."seek-bzip-1.0.6"
@@ -133958,8 +137234,6 @@ in
sources."sprintf-kit-2.0.1"
sources."stream-promise-3.2.0"
sources."string-width-4.2.3"
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.1.1"
sources."strip-ansi-6.0.1"
sources."strip-dirs-2.1.0"
@@ -133975,7 +137249,7 @@ in
sources."has-flag-4.0.0"
];
})
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
(sources."tar-stream-2.2.0" // {
dependencies = [
sources."readable-stream-3.6.0"
@@ -133991,10 +137265,9 @@ in
sources."tr46-0.0.3"
sources."traverse-0.6.7"
sources."trim-repeated-1.0.0"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-2.7.2"
sources."type-fest-0.21.3"
- sources."unbox-primitive-1.0.2"
sources."unbzip2-stream-1.4.3"
sources."uni-global-1.0.0"
sources."universalify-2.0.0"
@@ -134015,8 +137288,7 @@ in
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-1.3.1"
- sources."which-boxed-primitive-1.0.2"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
sources."write-file-atomic-4.0.2"
@@ -134679,10 +137951,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.1040.0";
+ version = "1.1049.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.1040.0.tgz";
- sha512 = "wgq/tB3/hbuLmp3/ZYVHaPE6MbnPEmzABrLkSrZmi39T0ozz40Q8dsSxrZMo+LRyUnAs0CHFJpitfk6XV1jE+w==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.1049.0.tgz";
+ sha512 = "Z4qaJJGXB1HF1QrLrmjWeRZDeS3glPuIVCivAr0N1LE5etWwe5BFrwE2h2mGO4T9RYy+TJa7CCMsYznMH8zuzQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -134705,7 +137977,7 @@ in
sources."@socket.io/component-emitter-3.1.0"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."accepts-1.3.8"
sources."base64id-2.0.0"
sources."bufferutil-4.0.7"
@@ -134777,7 +138049,7 @@ in
sources."color-name-1.1.4"
sources."debug-3.1.0"
sources."decamelize-5.0.1"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."decamelize-1.2.0"
sources."map-obj-1.0.1"
@@ -135131,7 +138403,7 @@ in
sources."flumeview-level-3.0.14"
(sources."flumeview-links-1.0.1" // {
dependencies = [
- sources."deep-equal-2.0.5"
+ sources."deep-equal-2.1.0"
sources."isarray-2.0.5"
sources."map-filter-reduce-3.2.2"
];
@@ -135172,6 +138444,7 @@ in
sources."glob-base-0.3.0"
sources."glob-parent-2.0.0"
sources."globby-4.1.0"
+ sources."gopd-1.0.1"
sources."gossip-query-2.0.2"
sources."graceful-fs-4.2.10"
sources."has-1.0.3"
@@ -135262,7 +138535,7 @@ in
sources."is-shared-array-buffer-1.0.2"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
+ sources."is-typed-array-1.1.10"
sources."is-typedarray-1.0.0"
sources."is-valid-domain-0.0.20"
sources."is-weakmap-2.0.1"
@@ -135680,14 +138953,14 @@ in
dependencies = [
(sources."ssb-keys-8.5.0" // {
dependencies = [
- sources."ssb-uri2-2.3.0"
+ sources."ssb-uri2-2.4.0"
];
})
sources."ssb-uri2-1.9.0"
];
})
- sources."ssb-bfe-3.6.1"
- sources."ssb-bfe-spec-0.7.0"
+ sources."ssb-bfe-3.7.0"
+ sources."ssb-bfe-spec-0.8.0"
sources."ssb-blobs-1.2.2"
sources."ssb-caps-1.1.0"
sources."ssb-client-4.9.0"
@@ -135714,7 +138987,7 @@ in
(sources."ssb-keys-8.5.0" // {
dependencies = [
sources."mkdirp-0.5.6"
- sources."ssb-uri2-2.3.0"
+ sources."ssb-uri2-2.4.0"
];
})
sources."ssb-uri2-1.9.0"
@@ -135755,7 +139028,7 @@ in
sources."ssb-replicate-1.3.3"
sources."ssb-typescript-2.8.0"
sources."ssb-unix-socket-1.0.0"
- sources."ssb-uri2-2.3.0"
+ sources."ssb-uri2-2.4.0"
(sources."ssb-validate-4.1.4" // {
dependencies = [
sources."ssb-keys-8.5.0"
@@ -135863,7 +139136,7 @@ in
sources."which-1.3.1"
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.1"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
sources."word-wrap-1.2.3"
sources."wrap-fn-0.1.5"
sources."wrappy-1.0.2"
@@ -135968,7 +139241,7 @@ in
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
sources."available-typed-arrays-1.0.5"
- (sources."aws-sdk-2.1238.0" // {
+ (sources."aws-sdk-2.1246.0" // {
dependencies = [
sources."uuid-8.0.0"
];
@@ -136090,7 +139363,6 @@ in
})
sources."decamelize-1.2.0"
sources."deep-extend-0.4.2"
- sources."define-properties-1.1.4"
sources."delayed-stream-1.0.0"
sources."depd-2.0.0"
sources."deref-0.6.4"
@@ -136130,8 +139402,6 @@ in
})
sources."engine.io-parser-2.2.1"
sources."error-ex-1.3.2"
- sources."es-abstract-1.20.4"
- sources."es-to-primitive-1.2.1"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
sources."esprima-2.0.0"
@@ -136177,14 +139447,11 @@ in
sources."fresh-0.5.2"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
- sources."functions-have-names-1.2.3"
sources."generate-function-2.3.1"
sources."generate-object-property-1.2.0"
sources."get-caller-file-1.0.3"
sources."get-intrinsic-1.1.3"
sources."get-stream-4.1.0"
- sources."get-symbol-description-1.0.0"
(sources."getpass-0.1.7" // {
dependencies = [
sources."assert-plus-1.0.0"
@@ -136196,20 +139463,19 @@ in
sources."debug-3.2.7"
];
})
+ sources."gopd-1.0.1"
sources."graceful-fs-4.2.10"
sources."graphlib-2.1.8"
sources."har-schema-2.0.0"
sources."har-validator-2.0.6"
sources."has-1.0.3"
sources."has-ansi-2.0.0"
- sources."has-bigints-1.0.2"
(sources."has-binary2-1.0.3" // {
dependencies = [
sources."isarray-2.0.1"
];
})
sources."has-cors-1.1.0"
- sources."has-property-descriptors-1.0.0"
sources."has-symbols-1.0.3"
sources."has-tostringtag-1.0.0"
sources."hawk-3.1.3"
@@ -136236,17 +139502,13 @@ in
sources."indexof-0.0.1"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."internal-slot-1.0.3"
sources."invert-kv-2.0.0"
sources."ipaddr.js-1.9.1"
sources."is-arguments-1.1.1"
sources."is-arrayish-0.2.1"
- sources."is-bigint-1.0.4"
- sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.7"
sources."is-core-module-2.11.0"
- sources."is-date-object-1.0.5"
(sources."is-expression-3.0.0" // {
dependencies = [
sources."acorn-4.0.13"
@@ -136256,19 +139518,13 @@ in
sources."is-generator-function-1.0.10"
sources."is-my-ip-valid-1.0.1"
sources."is-my-json-valid-2.20.6"
- sources."is-negative-zero-2.0.2"
- sources."is-number-object-1.0.7"
sources."is-promise-2.2.2"
sources."is-property-1.0.2"
sources."is-regex-1.1.4"
- sources."is-shared-array-buffer-1.0.2"
sources."is-stream-1.1.0"
- sources."is-string-1.0.7"
- sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
+ sources."is-typed-array-1.1.10"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
- sources."is-weakref-1.0.2"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isstream-0.1.2"
@@ -136389,8 +139645,6 @@ in
sources."object-assign-4.1.1"
sources."object-hash-0.3.0"
sources."object-inspect-1.12.2"
- sources."object-keys-1.1.1"
- sources."object.assign-4.1.4"
sources."on-finished-2.4.1"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -136483,7 +139737,6 @@ in
];
})
sources."regenerator-runtime-0.11.1"
- sources."regexp.prototype.flags-1.4.3"
sources."repeat-string-1.6.1"
(sources."request-2.88.2" // {
dependencies = [
@@ -136518,7 +139771,6 @@ in
})
sources."safe-buffer-5.1.2"
sources."safe-json-stringify-1.2.0"
- sources."safe-regex-test-1.0.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.1"
sources."semver-5.7.1"
@@ -136591,8 +139843,6 @@ in
sources."strip-ansi-4.0.0"
];
})
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-0.10.31"
sources."stringstream-0.0.6"
sources."strip-ansi-3.0.1"
@@ -136676,7 +139926,6 @@ in
sources."uid-safe-2.1.5"
sources."uid2-0.0.4"
sources."ultron-1.0.2"
- sources."unbox-primitive-1.0.2"
sources."unpipe-1.0.0"
(sources."uri-js-4.4.1" // {
dependencies = [
@@ -136710,9 +139959,8 @@ in
})
sources."void-elements-2.0.1"
sources."which-1.3.1"
- sources."which-boxed-primitive-1.0.2"
sources."which-module-2.0.0"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
sources."window-size-0.1.0"
(sources."winston-2.4.6" // {
dependencies = [
@@ -136838,7 +140086,7 @@ in
sources."cssesc-3.0.0"
sources."debug-4.3.4"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -136980,7 +140228,7 @@ in
})
sources."supports-preserve-symlinks-flag-1.0.0"
sources."svg-tags-1.0.0"
- sources."table-6.8.0"
+ sources."table-6.8.1"
sources."to-regex-range-5.0.1"
sources."trim-newlines-3.0.1"
sources."type-fest-0.18.1"
@@ -137153,14 +140401,14 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
sources."@babel/core-7.19.6"
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
- sources."@babel/helper-compilation-targets-7.19.3"
+ sources."@babel/helper-compilation-targets-7.20.0"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
sources."@babel/helper-hoist-variables-7.18.6"
@@ -137171,12 +140419,12 @@ in
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
(sources."@cspotcode/source-map-support-0.8.1" // {
dependencies = [
sources."@jridgewell/trace-mapping-0.3.9"
@@ -137190,53 +140438,53 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- (sources."@swc/core-android-arm64-1.3.10" // {
+ (sources."@swc/core-android-arm64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- (sources."@swc/core-freebsd-x64-1.3.10" // {
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ (sources."@swc/core-freebsd-x64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-linux-arm-gnueabihf-1.3.10" // {
+ (sources."@swc/core-linux-arm-gnueabihf-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- (sources."@swc/core-win32-arm64-msvc-1.3.10" // {
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ (sources."@swc/core-win32-arm64-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-win32-ia32-msvc-1.3.10" // {
+ (sources."@swc/core-win32-ia32-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-win32-x64-msvc-1.3.10"
- sources."@swc/wasm-1.3.10"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
+ sources."@swc/wasm-1.3.12"
sources."@tsconfig/node10-1.0.9"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/pug-2.0.6"
sources."@types/sass-1.43.1"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.2"
@@ -137253,7 +140501,7 @@ in
sources."buffer-crc32-0.2.13"
sources."call-bind-1.0.2"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."chalk-2.4.2"
sources."character-parser-2.2.0"
sources."chokidar-3.5.3"
@@ -137408,7 +140656,7 @@ in
sources."to-regex-range-5.0.1"
sources."token-stream-1.0.0"
sources."ts-node-10.9.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."typescript-4.8.4"
sources."update-browserslist-db-1.0.10"
sources."v8-compile-cache-lib-3.0.1"
@@ -137439,14 +140687,14 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.18.6"
- sources."@babel/compat-data-7.19.4"
+ sources."@babel/compat-data-7.20.1"
sources."@babel/core-7.19.6"
- (sources."@babel/generator-7.19.6" // {
+ (sources."@babel/generator-7.20.1" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.2"
];
})
- sources."@babel/helper-compilation-targets-7.19.3"
+ sources."@babel/helper-compilation-targets-7.20.0"
sources."@babel/helper-environment-visitor-7.18.9"
sources."@babel/helper-function-name-7.19.0"
sources."@babel/helper-hoist-variables-7.18.6"
@@ -137457,12 +140705,12 @@ in
sources."@babel/helper-string-parser-7.19.4"
sources."@babel/helper-validator-identifier-7.19.1"
sources."@babel/helper-validator-option-7.18.6"
- sources."@babel/helpers-7.19.4"
+ sources."@babel/helpers-7.20.1"
sources."@babel/highlight-7.18.6"
- sources."@babel/parser-7.19.6"
+ sources."@babel/parser-7.20.1"
sources."@babel/template-7.18.10"
- sources."@babel/traverse-7.19.6"
- sources."@babel/types-7.19.4"
+ sources."@babel/traverse-7.20.1"
+ sources."@babel/types-7.20.0"
(sources."@cspotcode/source-map-support-0.8.1" // {
dependencies = [
sources."@jridgewell/trace-mapping-0.3.9"
@@ -137479,53 +140727,53 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- (sources."@swc/core-android-arm64-1.3.10" // {
+ (sources."@swc/core-android-arm64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- (sources."@swc/core-freebsd-x64-1.3.10" // {
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ (sources."@swc/core-freebsd-x64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-linux-arm-gnueabihf-1.3.10" // {
+ (sources."@swc/core-linux-arm-gnueabihf-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- (sources."@swc/core-win32-arm64-msvc-1.3.10" // {
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ (sources."@swc/core-win32-arm64-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-win32-ia32-msvc-1.3.10" // {
+ (sources."@swc/core-win32-ia32-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-win32-x64-msvc-1.3.10"
- sources."@swc/wasm-1.3.10"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
+ sources."@swc/wasm-1.3.12"
sources."@tsconfig/node10-1.0.9"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/pug-2.0.6"
sources."@types/sass-1.43.1"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.2"
@@ -137541,7 +140789,7 @@ in
sources."browserslist-4.21.4"
sources."buffer-crc32-0.2.13"
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."chalk-2.4.2"
sources."character-parser-2.2.0"
sources."chokidar-3.5.3"
@@ -137702,7 +140950,7 @@ in
sources."to-regex-range-5.0.1"
sources."token-stream-1.0.0"
sources."ts-node-10.9.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."typescript-4.8.4"
sources."update-browserslist-db-1.0.10"
sources."v8-compile-cache-lib-3.0.1"
@@ -137748,29 +140996,28 @@ in
svgo = nodeEnv.buildNodePackage {
name = "svgo";
packageName = "svgo";
- version = "2.8.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz";
- sha512 = "+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==";
+ url = "https://registry.npmjs.org/svgo/-/svgo-3.0.0.tgz";
+ sha512 = "mSqPn6RDeNqJvCeqHERlfWJjd4crP/2PgFelil9WpTwC4D3okAUopPsH3lnEyl7ONXfDVyISOihDjO0uK8YVAA==";
};
dependencies = [
sources."@trysound/sax-0.2.0"
sources."boolbase-1.0.0"
sources."commander-7.2.0"
- sources."css-select-4.3.0"
- sources."css-tree-1.1.3"
+ sources."css-select-5.1.0"
+ sources."css-tree-2.2.1"
sources."css-what-6.1.0"
- sources."csso-4.2.0"
- sources."dom-serializer-1.4.1"
+ sources."csso-5.0.5"
+ sources."dom-serializer-2.0.0"
sources."domelementtype-2.3.0"
- sources."domhandler-4.3.1"
- sources."domutils-2.8.0"
- sources."entities-2.2.0"
- sources."mdn-data-2.0.14"
+ sources."domhandler-5.0.3"
+ sources."domutils-3.0.1"
+ sources."entities-4.4.0"
+ sources."mdn-data-2.0.28"
sources."nth-check-2.1.1"
sources."picocolors-1.0.0"
- sources."source-map-0.6.1"
- sources."stable-0.1.8"
+ sources."source-map-js-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -138384,7 +141631,7 @@ in
sources."truncate-utf8-bytes-1.0.2"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- sources."uglify-js-3.17.3"
+ sources."uglify-js-3.17.4"
sources."undefsafe-2.0.5"
(sources."union-value-1.0.1" // {
dependencies = [
@@ -138457,50 +141704,50 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- (sources."@swc/core-android-arm64-1.3.10" // {
+ (sources."@swc/core-android-arm64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- (sources."@swc/core-freebsd-x64-1.3.10" // {
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ (sources."@swc/core-freebsd-x64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-linux-arm-gnueabihf-1.3.10" // {
+ (sources."@swc/core-linux-arm-gnueabihf-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- (sources."@swc/core-win32-arm64-msvc-1.3.10" // {
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ (sources."@swc/core-win32-arm64-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-win32-ia32-msvc-1.3.10" // {
+ (sources."@swc/core-win32-ia32-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-win32-x64-msvc-1.3.10"
- sources."@swc/wasm-1.3.10"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
+ sources."@swc/wasm-1.3.12"
sources."@tsconfig/node10-1.0.9"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."acorn-7.4.1"
sources."acorn-node-1.8.2"
sources."acorn-walk-7.2.0"
@@ -138569,7 +141816,7 @@ in
sources."to-regex-range-5.0.1"
(sources."ts-node-10.9.1" // {
dependencies = [
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."arg-4.1.3"
];
@@ -138931,7 +142178,7 @@ in
sources."@jridgewell/source-map-0.3.2"
sources."@jridgewell/sourcemap-codec-1.4.14"
sources."@jridgewell/trace-mapping-0.3.17"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."buffer-from-1.1.2"
sources."commander-2.20.3"
sources."source-map-0.6.1"
@@ -139136,7 +142383,7 @@ in
sources."structured-source-3.0.2"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."table-6.8.0"
+ sources."table-6.8.1"
sources."text-table-0.2.0"
sources."traverse-0.6.7"
sources."trough-1.0.5"
@@ -139300,7 +142547,7 @@ in
sources."cuss-1.21.0"
sources."debug-4.3.4"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -139537,7 +142784,7 @@ in
sources."supports-color-5.5.0"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."term-size-2.2.1"
- sources."textlint-rule-helper-2.2.1"
+ sources."textlint-rule-helper-2.2.2"
sources."through-2.3.8"
(sources."through2-2.0.0" // {
dependencies = [
@@ -139897,7 +143144,7 @@ in
sources."structured-source-3.0.2"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."table-6.8.0"
+ sources."table-6.8.1"
sources."text-table-0.2.0"
(sources."textlint-12.2.2" // {
dependencies = [
@@ -140025,7 +143272,7 @@ in
sources."sentence-splitter-3.2.2"
sources."string_decoder-1.3.0"
sources."structured-source-3.0.2"
- (sources."textlint-rule-helper-2.2.1" // {
+ (sources."textlint-rule-helper-2.2.2" // {
dependencies = [
sources."@textlint/ast-node-types-12.2.2"
];
@@ -140084,7 +143331,7 @@ in
sources."lodash-4.17.21"
sources."split-lines-2.1.0"
sources."structured-source-3.0.2"
- sources."textlint-rule-helper-2.2.1"
+ sources."textlint-rule-helper-2.2.2"
sources."unist-util-is-4.1.0"
sources."unist-util-visit-2.0.3"
sources."unist-util-visit-parents-3.1.1"
@@ -140115,7 +143362,7 @@ in
sources."lodash-4.17.21"
sources."strip-json-comments-3.1.1"
sources."structured-source-3.0.2"
- sources."textlint-rule-helper-2.2.1"
+ sources."textlint-rule-helper-2.2.2"
sources."unist-util-is-4.1.0"
sources."unist-util-visit-2.0.3"
sources."unist-util-visit-parents-3.1.1"
@@ -140197,15 +143444,15 @@ in
sha512 = "yvOJavJD+PgyUzvsoLDDzDtgCVBva/HNhEvsFnYVugrWz0qy2hr+/4B4wkzjro4wfPbwz20GQe5h13N4DeUEeA==";
};
dependencies = [
- sources."@babel/runtime-7.19.4"
- sources."@babel/runtime-corejs3-7.19.6"
+ sources."@babel/runtime-7.20.1"
+ sources."@babel/runtime-corejs3-7.20.1"
(sources."@eslint/eslintrc-1.3.3" // {
dependencies = [
sources."debug-4.3.4"
sources."ms-2.1.2"
];
})
- (sources."@humanwhocodes/config-array-0.11.6" // {
+ (sources."@humanwhocodes/config-array-0.11.7" // {
dependencies = [
sources."debug-4.3.4"
sources."ms-2.1.2"
@@ -140220,7 +143467,7 @@ in
sources."@textlint/types-12.2.2"
sources."@types/json5-0.0.29"
sources."@types/unist-2.0.6"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-jsx-5.3.2"
sources."adverb-where-0.2.5"
sources."ajv-6.12.6"
@@ -140232,7 +143479,7 @@ in
sources."array.prototype.flat-1.3.0"
sources."array.prototype.flatmap-1.3.0"
sources."ast-types-flow-0.0.7"
- sources."axe-core-4.4.3"
+ sources."axe-core-4.5.1"
sources."axobject-query-2.2.0"
sources."balanced-match-1.0.2"
sources."boundary-1.0.1"
@@ -140244,7 +143491,7 @@ in
sources."color-name-1.1.4"
sources."commander-2.20.3"
sources."concat-map-0.0.1"
- sources."core-js-pure-3.25.5"
+ sources."core-js-pure-3.26.0"
sources."cross-spawn-7.0.3"
sources."damerau-levenshtein-1.0.8"
sources."debug-2.6.9"
@@ -140406,7 +143653,7 @@ in
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."text-table-0.2.0"
- sources."textlint-rule-helper-2.2.1"
+ sources."textlint-rule-helper-2.2.2"
sources."too-wordy-0.3.4"
sources."tsconfig-paths-3.14.1"
sources."type-check-0.4.0"
@@ -140454,7 +143701,7 @@ in
sources."@types/cors-2.8.12"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -140514,7 +143761,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.2"
sources."cookie-signature-1.0.6"
- sources."core-js-3.25.5"
+ sources."core-js-3.26.0"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."css-select-4.3.0"
@@ -140528,7 +143775,6 @@ in
})
sources."deep-extend-0.6.0"
sources."defer-to-connect-2.0.1"
- sources."define-properties-1.1.4"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."depd-1.1.2"
@@ -140558,8 +143804,6 @@ in
sources."engine.io-parser-5.0.4"
sources."entities-2.2.0"
sources."env-paths-2.2.1"
- sources."es-abstract-1.20.4"
- sources."es-to-primitive-1.2.1"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
sources."etag-1.8.1"
@@ -140582,23 +143826,19 @@ in
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
- sources."functions-have-names-1.2.3"
sources."gauge-3.0.2"
sources."get-intrinsic-1.1.3"
sources."get-stream-5.2.0"
- sources."get-symbol-description-1.0.0"
sources."getpass-0.1.7"
sources."glob-7.2.3"
+ sources."gopd-1.0.1"
sources."got-11.8.3"
sources."graceful-fs-4.2.10"
sources."grapheme-splitter-1.0.4"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
sources."has-1.0.3"
- sources."has-bigints-1.0.2"
sources."has-flag-4.0.0"
- sources."has-property-descriptors-1.0.0"
sources."has-symbols-1.0.3"
sources."has-tostringtag-1.0.0"
sources."has-unicode-2.0.1"
@@ -140619,7 +143859,6 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- sources."internal-slot-1.0.3"
sources."ip-2.0.0"
sources."ipaddr.js-1.9.1"
(sources."irc-framework-4.12.1" // {
@@ -140628,22 +143867,12 @@ in
];
})
sources."is-arguments-1.1.1"
- sources."is-bigint-1.0.4"
- sources."is-boolean-object-1.1.2"
sources."is-callable-1.2.7"
- sources."is-date-object-1.0.5"
sources."is-fullwidth-code-point-3.0.0"
sources."is-generator-function-1.0.10"
- sources."is-negative-zero-2.0.2"
- sources."is-number-object-1.0.7"
- sources."is-regex-1.1.4"
- sources."is-shared-array-buffer-1.0.2"
- sources."is-string-1.0.7"
- sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
+ sources."is-typed-array-1.1.10"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
- sources."is-weakref-1.0.2"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isomorphic-textencoder-1.0.1"
@@ -140716,9 +143945,6 @@ in
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.12.2"
- sources."object-keys-1.1.1"
- sources."object.assign-4.1.4"
sources."on-finished-2.3.0"
sources."once-1.4.0"
sources."p-cancelable-2.1.1"
@@ -140749,7 +143975,6 @@ in
sources."readable-stream-3.6.0"
sources."readable-web-to-node-stream-3.0.2"
sources."regenerator-runtime-0.13.10"
- sources."regexp.prototype.flags-1.4.3"
sources."registry-auth-token-4.2.2"
sources."registry-url-5.1.0"
(sources."request-2.88.2" // {
@@ -140762,7 +143987,6 @@ in
sources."responselike-2.0.1"
sources."rimraf-3.0.2"
sources."safe-buffer-5.2.1"
- sources."safe-regex-test-1.0.0"
sources."safer-buffer-2.1.2"
sources."semver-7.3.5"
(sources."send-0.17.2" // {
@@ -140773,7 +143997,6 @@ in
sources."serve-static-1.14.2"
sources."set-blocking-2.0.0"
sources."setprototypeof-1.2.0"
- sources."side-channel-1.0.4"
sources."signal-exit-3.0.7"
sources."smart-buffer-4.2.0"
(sources."socket.io-4.4.1" // {
@@ -140795,15 +144018,13 @@ in
sources."statuses-1.5.0"
sources."stream-browserify-3.0.0"
sources."string-width-4.2.3"
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."strip-json-comments-2.0.1"
sources."strip-outer-1.0.1"
sources."strtok3-6.3.0"
sources."supports-color-7.2.0"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."text-decoding-1.0.0"
sources."tlds-1.228.0"
sources."toidentifier-1.0.1"
@@ -140811,13 +144032,12 @@ in
sources."tough-cookie-2.5.0"
sources."tr46-0.0.3"
sources."trim-repeated-1.0.0"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-is-1.6.18"
sources."ua-parser-js-1.0.2"
sources."uc.micro-1.0.6"
- sources."unbox-primitive-1.0.2"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
sources."urlsafe-base64-1.0.0"
@@ -140837,8 +144057,7 @@ in
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-2.0.2"
- sources."which-boxed-primitive-1.0.2"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
sources."wide-align-1.1.5"
sources."with-open-file-0.1.7"
sources."wrappy-1.0.2"
@@ -140876,7 +144095,7 @@ in
sources."@types/cors-2.8.12"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -140936,7 +144155,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.2"
sources."cookie-signature-1.0.6"
- sources."core-js-3.25.5"
+ sources."core-js-3.26.0"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."css-select-4.3.0"
@@ -140950,7 +144169,6 @@ in
})
sources."deep-extend-0.6.0"
sources."defer-to-connect-2.0.1"
- sources."define-properties-1.1.4"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."depd-1.1.2"
@@ -140980,8 +144198,6 @@ in
sources."engine.io-parser-5.0.4"
sources."entities-2.2.0"
sources."env-paths-2.2.1"
- sources."es-abstract-1.20.4"
- sources."es-to-primitive-1.2.1"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
sources."etag-1.8.1"
@@ -141004,23 +144220,19 @@ in
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
- sources."functions-have-names-1.2.3"
sources."gauge-3.0.2"
sources."get-intrinsic-1.1.3"
sources."get-stream-5.2.0"
- sources."get-symbol-description-1.0.0"
sources."getpass-0.1.7"
sources."glob-7.2.3"
+ sources."gopd-1.0.1"
sources."got-11.8.3"
sources."graceful-fs-4.2.10"
sources."grapheme-splitter-1.0.4"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
sources."has-1.0.3"
- sources."has-bigints-1.0.2"
sources."has-flag-4.0.0"
- sources."has-property-descriptors-1.0.0"
sources."has-symbols-1.0.3"
sources."has-tostringtag-1.0.0"
sources."has-unicode-2.0.1"
@@ -141041,7 +144253,6 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- sources."internal-slot-1.0.3"
sources."ip-2.0.0"
sources."ipaddr.js-1.9.1"
(sources."irc-framework-4.12.1" // {
@@ -141050,22 +144261,12 @@ in
];
})
sources."is-arguments-1.1.1"
- sources."is-bigint-1.0.4"
- sources."is-boolean-object-1.1.2"
sources."is-callable-1.2.7"
- sources."is-date-object-1.0.5"
sources."is-fullwidth-code-point-3.0.0"
sources."is-generator-function-1.0.10"
- sources."is-negative-zero-2.0.2"
- sources."is-number-object-1.0.7"
- sources."is-regex-1.1.4"
- sources."is-shared-array-buffer-1.0.2"
- sources."is-string-1.0.7"
- sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
+ sources."is-typed-array-1.1.10"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
- sources."is-weakref-1.0.2"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isomorphic-textencoder-1.0.1"
@@ -141138,9 +144339,6 @@ in
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.12.2"
- sources."object-keys-1.1.1"
- sources."object.assign-4.1.4"
sources."on-finished-2.3.0"
sources."once-1.4.0"
sources."p-cancelable-2.1.1"
@@ -141171,7 +144369,6 @@ in
sources."readable-stream-3.6.0"
sources."readable-web-to-node-stream-3.0.2"
sources."regenerator-runtime-0.13.10"
- sources."regexp.prototype.flags-1.4.3"
sources."registry-auth-token-4.2.2"
sources."registry-url-5.1.0"
(sources."request-2.88.2" // {
@@ -141184,7 +144381,6 @@ in
sources."responselike-2.0.1"
sources."rimraf-3.0.2"
sources."safe-buffer-5.2.1"
- sources."safe-regex-test-1.0.0"
sources."safer-buffer-2.1.2"
sources."semver-7.3.5"
(sources."send-0.17.2" // {
@@ -141195,7 +144391,6 @@ in
sources."serve-static-1.14.2"
sources."set-blocking-2.0.0"
sources."setprototypeof-1.2.0"
- sources."side-channel-1.0.4"
sources."signal-exit-3.0.7"
sources."smart-buffer-4.2.0"
(sources."socket.io-4.4.1" // {
@@ -141217,15 +144412,13 @@ in
sources."statuses-1.5.0"
sources."stream-browserify-3.0.0"
sources."string-width-4.2.3"
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
sources."strip-json-comments-2.0.1"
sources."strip-outer-1.0.1"
sources."strtok3-6.3.0"
sources."supports-color-7.2.0"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."text-decoding-1.0.0"
sources."thelounge-4.3.1"
sources."tlds-1.228.0"
@@ -141234,13 +144427,12 @@ in
sources."tough-cookie-2.5.0"
sources."tr46-0.0.3"
sources."trim-repeated-1.0.0"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-is-1.6.18"
sources."ua-parser-js-1.0.2"
sources."uc.micro-1.0.6"
- sources."unbox-primitive-1.0.2"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
sources."urlsafe-base64-1.0.0"
@@ -141260,8 +144452,7 @@ in
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-2.0.2"
- sources."which-boxed-primitive-1.0.2"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
sources."wide-align-1.1.5"
sources."with-open-file-0.1.7"
sources."wrappy-1.0.2"
@@ -141374,7 +144565,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.25.5"
+ sources."core-js-3.26.0"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -141938,10 +145129,10 @@ in
thelounge-theme-dracula-official = nodeEnv.buildNodePackage {
name = "thelounge-theme-dracula-official";
packageName = "thelounge-theme-dracula-official";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/thelounge-theme-dracula-official/-/thelounge-theme-dracula-official-1.0.3.tgz";
- sha512 = "Dar4BLNVkmiKXZeZZ3IukVm3QHYAeYMn7tj0+6VBuASl4q18h9b5QExiVLM2kEsIoS47LkgqeMsrUQW0FDKKZA==";
+ url = "https://registry.npmjs.org/thelounge-theme-dracula-official/-/thelounge-theme-dracula-official-1.0.4.tgz";
+ sha512 = "JrnsvHIOcDBNHI4uJDoy3+H34hvfXivFWuUjIlyYd9pzUBWSny8YCiUstm+fem45kwgbPSMTgUdh5LS6OZNoFA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -141968,7 +145159,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -142049,7 +145240,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.25.5"
+ sources."core-js-3.26.0"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -142436,7 +145627,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -142517,7 +145708,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.25.5"
+ sources."core-js-3.26.0"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -143288,10 +146479,10 @@ in
three = nodeEnv.buildNodePackage {
name = "three";
packageName = "three";
- version = "0.145.0";
+ version = "0.146.0";
src = fetchurl {
- url = "https://registry.npmjs.org/three/-/three-0.145.0.tgz";
- sha512 = "EKoHQEtEJ4CB6b2BGMBgLZrfwLjXcSUfoI/MiIXUuRpeYsfK5aPWbYhdtIVWOH+x6X0TouldHKHBuc/LAiFzAw==";
+ url = "https://registry.npmjs.org/three/-/three-0.146.0.tgz";
+ sha512 = "1lvNfLezN6OJ9NaFAhfX4sm5e9YCzHtaRgZ1+B4C+Hv6TibRMsuBAM5/wVKzxjpYIlMymvgsHEFrrigEfXnb2A==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -143335,9 +146526,9 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-4.2.0"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/responselike-1.0.0"
- sources."@xmldom/xmldom-0.8.3"
+ sources."@xmldom/xmldom-0.8.5"
sources."ajv-6.12.6"
sources."asn1-0.2.6"
sources."assert-plus-1.0.0"
@@ -143740,51 +146931,51 @@ in
sources."@jridgewell/resolve-uri-3.1.0"
sources."@jridgewell/sourcemap-codec-1.4.14"
sources."@jridgewell/trace-mapping-0.3.9"
- sources."@swc/core-1.3.10"
- (sources."@swc/core-android-arm-eabi-1.3.10" // {
+ sources."@swc/core-1.3.11"
+ (sources."@swc/core-android-arm-eabi-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.122"
];
})
- (sources."@swc/core-android-arm64-1.3.10" // {
+ (sources."@swc/core-android-arm64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-darwin-arm64-1.3.10"
- sources."@swc/core-darwin-x64-1.3.10"
- (sources."@swc/core-freebsd-x64-1.3.10" // {
+ sources."@swc/core-darwin-arm64-1.3.11"
+ sources."@swc/core-darwin-x64-1.3.11"
+ (sources."@swc/core-freebsd-x64-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-linux-arm-gnueabihf-1.3.10" // {
+ (sources."@swc/core-linux-arm-gnueabihf-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-linux-arm64-gnu-1.3.10"
- sources."@swc/core-linux-arm64-musl-1.3.10"
- sources."@swc/core-linux-x64-gnu-1.3.10"
- sources."@swc/core-linux-x64-musl-1.3.10"
- (sources."@swc/core-win32-arm64-msvc-1.3.10" // {
+ sources."@swc/core-linux-arm64-gnu-1.3.11"
+ sources."@swc/core-linux-arm64-musl-1.3.11"
+ sources."@swc/core-linux-x64-gnu-1.3.11"
+ sources."@swc/core-linux-x64-musl-1.3.11"
+ (sources."@swc/core-win32-arm64-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- (sources."@swc/core-win32-ia32-msvc-1.3.10" // {
+ (sources."@swc/core-win32-ia32-msvc-1.3.11" // {
dependencies = [
sources."@swc/wasm-1.2.130"
];
})
- sources."@swc/core-win32-x64-msvc-1.3.10"
- sources."@swc/wasm-1.3.10"
+ sources."@swc/core-win32-x64-msvc-1.3.11"
+ sources."@swc/wasm-1.3.12"
sources."@tsconfig/node10-1.0.9"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.3"
- sources."@types/node-18.11.3"
- sources."acorn-8.8.0"
+ sources."@types/node-18.11.9"
+ sources."acorn-8.8.1"
sources."acorn-walk-8.2.0"
sources."arg-4.1.3"
sources."create-require-1.1.1"
@@ -143900,10 +147091,10 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.17.3";
+ version = "3.17.4";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.3.tgz";
- sha512 = "JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz";
+ sha512 = "T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -143953,7 +147144,7 @@ in
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
sources."@types/http-cache-semantics-4.0.1"
- sources."@types/node-16.11.68"
+ sources."@types/node-16.18.3"
sources."JSONStream-1.3.5"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
@@ -144059,7 +147250,6 @@ in
sources."deep-extend-0.6.0"
sources."defer-to-connect-2.0.1"
sources."define-lazy-prop-2.0.0"
- sources."define-properties-1.1.4"
sources."defined-1.0.1"
sources."depd-2.0.0"
sources."deps-sort-2.0.1"
@@ -144067,7 +147257,7 @@ in
sources."destroy-1.2.0"
sources."detective-5.2.1"
sources."diff-5.1.0"
- sources."diff2html-3.4.19"
+ sources."diff2html-3.4.22"
(sources."diffie-hellman-5.0.3" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -144093,8 +147283,6 @@ in
})
sources."engine.io-parser-5.0.4"
sources."error-ex-1.3.2"
- sources."es-abstract-1.20.4"
- sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
@@ -144121,20 +147309,16 @@ in
sources."fresh-0.5.2"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
- sources."function.prototype.name-1.1.5"
- sources."functions-have-names-1.2.3"
sources."get-assigned-identifiers-1.2.0"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.3"
sources."get-stream-6.0.1"
- sources."get-symbol-description-1.0.0"
sources."getmac-5.20.0"
sources."glob-7.2.3"
+ sources."gopd-1.0.1"
sources."got-12.5.2"
sources."graceful-fs-4.2.10"
sources."has-1.0.3"
- sources."has-bigints-1.0.2"
- sources."has-property-descriptors-1.0.0"
sources."has-symbols-1.0.3"
sources."has-tostringtag-1.0.0"
(sources."hash-base-3.1.0" // {
@@ -144163,29 +147347,18 @@ in
sources."ini-1.3.8"
sources."inline-source-map-0.6.2"
sources."insert-module-globals-7.2.1"
- sources."internal-slot-1.0.3"
sources."ipaddr.js-1.9.1"
sources."is-arguments-1.1.1"
sources."is-arrayish-0.2.1"
- sources."is-bigint-1.0.4"
- sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.7"
sources."is-core-module-2.11.0"
- sources."is-date-object-1.0.5"
sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-generator-function-1.0.10"
- sources."is-negative-zero-2.0.2"
- sources."is-number-object-1.0.7"
- sources."is-regex-1.1.4"
- sources."is-shared-array-buffer-1.0.2"
sources."is-stream-2.0.1"
- sources."is-string-1.0.7"
- sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.9"
+ sources."is-typed-array-1.1.10"
sources."is-utf8-0.2.1"
- sources."is-weakref-1.0.2"
sources."is-wsl-2.2.0"
sources."isarray-1.0.0"
sources."jquery-3.6.1"
@@ -144244,8 +147417,6 @@ in
sources."nprogress-0.2.0"
sources."object-assign-4.1.1"
sources."object-inspect-1.12.2"
- sources."object-keys-1.1.1"
- sources."object.assign-4.1.4"
sources."on-finished-2.4.1"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -144298,7 +147469,6 @@ in
sources."safe-buffer-5.1.2"
];
})
- sources."regexp.prototype.flags-1.4.3"
sources."registry-auth-token-5.0.1"
sources."registry-url-6.0.1"
sources."require-directory-2.1.1"
@@ -144308,7 +147478,6 @@ in
sources."rimraf-3.0.2"
sources."ripemd160-2.0.2"
sources."safe-buffer-5.2.1"
- sources."safe-regex-test-1.0.0"
sources."safe-stable-stringify-2.4.1"
sources."safer-buffer-2.1.2"
(sources."semver-7.3.8" // {
@@ -144365,8 +147534,6 @@ in
})
sources."stream-splicer-2.0.1"
sources."string-width-4.2.3"
- sources."string.prototype.trimend-1.0.5"
- sources."string.prototype.trimstart-1.0.5"
(sources."string_decoder-1.1.1" // {
dependencies = [
sources."safe-buffer-5.1.2"
@@ -144402,7 +147569,6 @@ in
sources."typescript-4.7.4"
sources."uid-safe-2.1.5"
sources."umd-3.0.3"
- sources."unbox-primitive-1.0.2"
sources."undeclared-identifiers-1.1.3"
sources."unpipe-1.0.0"
(sources."url-0.11.0" // {
@@ -144416,8 +147582,7 @@ in
sources."utils-merge-1.0.1"
sources."vary-1.1.2"
sources."vm-browserify-1.1.2"
- sources."which-boxed-primitive-1.0.2"
- sources."which-typed-array-1.1.8"
+ sources."which-typed-array-1.1.9"
(sources."winston-3.8.2" // {
dependencies = [
sources."readable-stream-3.6.0"
@@ -144467,7 +147632,7 @@ in
sources."@types/debug-4.1.7"
sources."@types/is-empty-1.2.1"
sources."@types/ms-0.7.31"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/supports-color-8.1.1"
sources."@types/unist-2.0.6"
sources."abbrev-1.1.1"
@@ -144584,7 +147749,7 @@ in
sources."are-we-there-yet-2.0.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."canvas-2.10.1"
+ sources."canvas-2.10.2"
sources."chownr-2.0.0"
sources."cliui-8.0.1"
sources."color-convert-2.0.1"
@@ -144665,7 +147830,7 @@ in
sources."string-width-4.2.3"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
(sources."topojson-client-3.1.0" // {
dependencies = [
sources."commander-2.20.3"
@@ -144714,7 +147879,7 @@ in
sources."wrappy-1.0.2"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
];
buildInputs = globalBuildInputs;
@@ -144787,7 +147952,7 @@ in
];
})
sources."tr46-0.0.3"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."vega-5.22.1"
sources."vega-canvas-1.2.6"
sources."vega-crossfilter-4.1.0"
@@ -144826,7 +147991,7 @@ in
sources."whatwg-url-5.0.0"
sources."wrap-ansi-7.0.0"
sources."y18n-5.0.8"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
];
buildInputs = globalBuildInputs;
@@ -144842,15 +148007,15 @@ in
vercel = nodeEnv.buildNodePackage {
name = "vercel";
packageName = "vercel";
- version = "28.4.12";
+ version = "28.4.14";
src = fetchurl {
- url = "https://registry.npmjs.org/vercel/-/vercel-28.4.12.tgz";
- sha512 = "I+0E+mCjqnKxVkyJ6OqXQrqZJ91y8FRKEWOghygvzGvJ10uOVi9sM/w+rXiqSASNupR0JFlMc0cU8BltoBvc/Q==";
+ url = "https://registry.npmjs.org/vercel/-/vercel-28.4.14.tgz";
+ sha512 = "Jjtz6RAPhAHGKSnN+vUSlxOqfMESeex7XW9tKZwMlapSy/lI/fIzPJCWq/oNdDTU/0GEs0p/c7FASavR0XqsRQ==";
};
dependencies = [
- sources."@edge-runtime/format-1.1.0-beta.34"
- sources."@edge-runtime/primitives-1.1.0-beta.37"
- sources."@edge-runtime/vm-1.1.0-beta.37"
+ sources."@edge-runtime/format-1.1.0"
+ sources."@edge-runtime/primitives-2.0.0"
+ sources."@edge-runtime/vm-2.0.0"
(sources."@mapbox/node-pre-gyp-1.0.10" // {
dependencies = [
sources."semver-7.3.8"
@@ -144863,28 +148028,28 @@ in
sources."@szmarczak/http-timer-1.1.2"
sources."@ts-morph/common-0.11.1"
sources."@types/json-schema-7.0.11"
- sources."@types/node-18.11.3"
- sources."@vercel/build-utils-5.5.5"
- sources."@vercel/go-2.2.13"
- sources."@vercel/hydrogen-0.0.26"
- sources."@vercel/next-3.2.6"
+ sources."@types/node-18.11.9"
+ sources."@vercel/build-utils-5.5.7"
+ sources."@vercel/go-2.2.15"
+ sources."@vercel/hydrogen-0.0.28"
+ sources."@vercel/next-3.2.8"
sources."@vercel/nft-0.22.1"
- sources."@vercel/node-2.5.26"
- sources."@vercel/node-bridge-3.0.0"
- sources."@vercel/python-3.1.22"
- sources."@vercel/redwood-1.0.31"
- sources."@vercel/remix-1.0.32"
- (sources."@vercel/routing-utils-2.0.2" // {
+ sources."@vercel/node-2.6.1"
+ sources."@vercel/node-bridge-3.1.1"
+ sources."@vercel/python-3.1.24"
+ sources."@vercel/redwood-1.0.33"
+ sources."@vercel/remix-1.0.34"
+ (sources."@vercel/routing-utils-2.1.1" // {
dependencies = [
sources."ajv-6.12.6"
sources."json-schema-traverse-0.4.1"
];
})
- sources."@vercel/ruby-1.3.39"
- sources."@vercel/static-build-1.0.32"
- sources."@vercel/static-config-2.0.3"
+ sources."@vercel/ruby-1.3.41"
+ sources."@vercel/static-build-1.0.34"
+ sources."@vercel/static-config-2.0.5"
sources."abbrev-1.1.1"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."agent-base-6.0.2"
sources."ajv-8.6.3"
sources."ansi-align-3.0.1"
@@ -144930,7 +148095,7 @@ in
sources."diff-4.0.2"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.5"
- sources."edge-runtime-1.1.0-beta.40"
+ sources."edge-runtime-2.0.0"
sources."emoji-regex-8.0.0"
sources."encoding-0.1.13"
sources."end-of-stream-1.4.4"
@@ -145077,7 +148242,7 @@ in
sources."strip-ansi-6.0.1"
sources."strip-json-comments-2.0.1"
sources."supports-color-7.2.0"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
sources."time-span-4.0.0"
sources."to-readable-stream-1.0.0"
sources."to-regex-range-5.0.1"
@@ -145139,10 +148304,10 @@ in
vls = nodeEnv.buildNodePackage {
name = "vls";
packageName = "vls";
- version = "0.8.1";
+ version = "0.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/vls/-/vls-0.8.1.tgz";
- sha512 = "Oja3mdxnFxrnSWu3igDyq/vuaeLPd1tU+ZSgVNYvnXcAHwjw2El4iUxhSwJqf6synDl0P8cX41xbiutb0OUoHg==";
+ url = "https://registry.npmjs.org/vls/-/vls-0.8.2.tgz";
+ sha512 = "esrJmf7yRY5rlG7d5Jmucp7P2ZeWHOi7p1aADwxbPiN69SgNUq1Tp24YJ0vUXiEU8mgOW0tf0dL4f6LlSu6K/g==";
};
dependencies = [
sources."@babel/code-frame-7.12.11"
@@ -145299,7 +148464,7 @@ in
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- (sources."table-6.8.0" // {
+ (sources."table-6.8.1" // {
dependencies = [
sources."ajv-8.11.0"
sources."json-schema-traverse-1.0.0"
@@ -145512,7 +148677,7 @@ in
sha512 = "r8+ZWDHRAnUPQMyZQa2eZzZyYE8wGia3SCL9ZtVjl6S2MLA5l6NVg3z8Atz4nDQ9JPih858bj0vnthGsjhNLjg==";
};
dependencies = [
- sources."core-js-3.25.5"
+ sources."core-js-3.26.0"
sources."jsonc-parser-3.2.0"
sources."picomatch-2.3.1"
sources."regenerator-runtime-0.13.10"
@@ -145526,7 +148691,7 @@ in
sources."vscode-languageserver-protocol-3.17.3-next.1"
sources."vscode-languageserver-textdocument-1.0.7"
sources."vscode-languageserver-types-3.17.2"
- sources."vscode-markdown-languageservice-0.2.0-alpha.3"
+ sources."vscode-markdown-languageservice-0.2.0"
sources."vscode-nls-5.2.0"
sources."vscode-uri-3.0.6"
];
@@ -145784,7 +148949,7 @@ in
sources."tslib-1.14.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."uglify-js-3.17.3"
+ sources."uglify-js-3.17.4"
sources."uid-0.0.2"
sources."unbzip2-stream-1.4.3"
sources."unzip-response-2.0.1"
@@ -145847,7 +149012,7 @@ in
sources."@starptech/rehype-webparser-0.10.0"
sources."@starptech/webparser-0.10.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -145933,7 +149098,7 @@ in
sources."lowercase-keys-2.0.0"
];
})
- sources."call-me-maybe-1.0.1"
+ sources."call-me-maybe-1.0.2"
(sources."caller-path-0.1.0" // {
dependencies = [
sources."callsites-0.2.0"
@@ -146016,7 +149181,7 @@ in
sources."currently-unhandled-0.4.1"
sources."debug-3.2.7"
sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
+ (sources."decamelize-keys-1.1.1" // {
dependencies = [
sources."map-obj-1.0.1"
];
@@ -146803,13 +149968,13 @@ in
sha512 = "slGcIXCA/j5d2uzQ7flA4/veF0P0eE+Om/Bw7uEO2LC9a3mVNdB+2bSR1CILMjvgyFy9Q9D6eseomQgp7UW5Dg==";
};
dependencies = [
- sources."@babel/runtime-corejs3-7.19.6"
+ sources."@babel/runtime-corejs3-7.20.1"
sources."@mapbox/node-pre-gyp-1.0.10"
sources."@tootallnate/once-1.1.2"
sources."@types/raf-3.4.0"
sources."abab-2.0.6"
sources."abbrev-1.1.1"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -146829,7 +149994,7 @@ in
sources."browser-process-hrtime-1.0.0"
sources."btoa-1.2.1"
sources."bufferutil-4.0.7"
- sources."canvas-2.10.1"
+ sources."canvas-2.10.2"
sources."canvg-3.0.7"
sources."chownr-2.0.0"
sources."cliui-8.0.1"
@@ -146839,7 +150004,7 @@ in
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."core-js-pure-3.25.5"
+ sources."core-js-pure-3.26.0"
sources."cssom-0.4.4"
(sources."cssstyle-2.3.0" // {
dependencies = [
@@ -146957,7 +150122,7 @@ in
sources."svg-pathdata-5.0.5"
sources."svg2img-0.9.4"
sources."symbol-tree-3.2.4"
- sources."tar-6.1.11"
+ sources."tar-6.1.12"
(sources."tough-cookie-4.1.2" // {
dependencies = [
sources."universalify-0.2.0"
@@ -146990,7 +150155,7 @@ in
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
];
buildInputs = globalBuildInputs;
@@ -147049,11 +150214,11 @@ in
sources."@szmarczak/http-timer-5.0.1"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/minimatch-3.0.5"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/yauzl-2.10.0"
sources."abort-controller-3.0.0"
sources."accepts-1.3.8"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-jsx-5.3.2"
sources."addons-linter-5.18.0"
sources."addons-moz-compare-1.2.0"
@@ -147738,11 +150903,11 @@ in
sources."@jridgewell/source-map-0.3.2"
sources."@jridgewell/sourcemap-codec-1.4.14"
sources."@jridgewell/trace-mapping-0.3.17"
- sources."@types/eslint-8.4.7"
+ sources."@types/eslint-8.4.9"
sources."@types/eslint-scope-3.7.4"
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -147760,13 +150925,13 @@ in
sources."@webassemblyjs/wast-printer-1.11.1"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-import-assertions-1.8.0"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
sources."browserslist-4.21.4"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."chrome-trace-event-1.0.3"
sources."commander-2.20.3"
sources."electron-to-chromium-1.4.284"
@@ -147839,11 +151004,11 @@ in
sources."@jridgewell/source-map-0.3.2"
sources."@jridgewell/sourcemap-codec-1.4.14"
sources."@jridgewell/trace-mapping-0.3.17"
- sources."@types/eslint-8.4.7"
+ sources."@types/eslint-8.4.9"
sources."@types/eslint-scope-3.7.4"
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -147864,13 +151029,13 @@ in
sources."@webpack-cli/serve-1.7.0"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-import-assertions-1.8.0"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
sources."browserslist-4.21.4"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."chrome-trace-event-1.0.3"
sources."clone-deep-4.0.1"
sources."colorette-2.0.19"
@@ -147986,7 +151151,7 @@ in
sources."@types/bonjour-3.5.10"
sources."@types/connect-3.4.35"
sources."@types/connect-history-api-fallback-1.3.5"
- sources."@types/eslint-8.4.7"
+ sources."@types/eslint-8.4.9"
sources."@types/eslint-scope-3.7.4"
sources."@types/estree-0.0.51"
sources."@types/express-4.17.14"
@@ -147994,7 +151159,7 @@ in
sources."@types/http-proxy-1.17.9"
sources."@types/json-schema-7.0.11"
sources."@types/mime-3.0.1"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/retry-0.12.0"
@@ -148020,7 +151185,7 @@ in
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
sources."accepts-1.3.8"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-import-assertions-1.8.0"
sources."ajv-8.11.0"
sources."ajv-formats-2.1.1"
@@ -148044,7 +151209,7 @@ in
sources."bufferutil-4.0.7"
sources."bytes-3.0.0"
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."chokidar-3.5.3"
sources."chrome-trace-event-1.0.3"
sources."colorette-2.0.19"
@@ -148148,7 +151313,7 @@ in
sources."json-schema-traverse-1.0.0"
sources."loader-runner-4.3.0"
sources."media-typer-0.3.0"
- sources."memfs-3.4.7"
+ sources."memfs-3.4.9"
sources."merge-descriptors-1.0.1"
sources."merge-stream-2.0.0"
sources."methods-1.1.2"
@@ -148286,7 +151451,7 @@ in
sources."websocket-extensions-0.1.4"
sources."which-2.0.2"
sources."wrappy-1.0.2"
- sources."ws-8.9.0"
+ sources."ws-8.10.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -148316,11 +151481,11 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/eslint-8.4.7"
+ sources."@types/eslint-8.4.9"
sources."@types/eslint-scope-3.7.4"
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -148338,7 +151503,7 @@ in
sources."@webassemblyjs/wast-printer-1.11.1"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-import-assertions-1.8.0"
sources."ajv-8.11.0"
sources."ajv-formats-2.1.1"
@@ -148346,7 +151511,7 @@ in
sources."braces-3.0.2"
sources."browserslist-4.21.4"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001423"
+ sources."caniuse-lite-1.0.30001429"
sources."chrome-trace-event-1.0.3"
sources."commander-2.20.3"
sources."dir-glob-3.0.1"
@@ -148463,7 +151628,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@webtorrent/http-node-1.3.0"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.3.0"
@@ -148471,7 +151636,6 @@ in
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
sources."b4a-1.6.1"
- sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
sources."bencode-2.0.3"
sources."bep53-range-1.1.1"
@@ -148510,7 +151674,6 @@ in
sources."blob-to-buffer-1.2.9"
sources."block-stream2-2.1.0"
sources."bn.js-5.2.1"
- sources."brace-expansion-1.1.11"
sources."browserify-package-json-1.0.1"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
@@ -148548,7 +151711,6 @@ in
sources."color-name-1.1.4"
sources."common-tags-1.8.2"
sources."compact2string-1.4.1"
- sources."concat-map-0.0.1"
(sources."concat-stream-1.6.2" // {
dependencies = [
sources."readable-stream-2.3.7"
@@ -148590,25 +151752,22 @@ in
sources."fast-readable-async-iterator-1.1.1"
sources."figures-3.2.0"
sources."freelist-1.0.3"
- (sources."fs-chunk-store-2.0.5" // {
+ (sources."fs-chunk-store-3.0.1" // {
dependencies = [
sources."thunky-1.1.0"
];
})
- sources."fs.realpath-1.0.0"
sources."get-browser-rtc-1.1.0"
sources."get-caller-file-2.0.5"
sources."get-stdin-8.0.0"
- sources."glob-7.2.3"
sources."has-flag-4.0.0"
sources."he-1.2.0"
sources."http-parser-js-0.4.13"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."immediate-chunk-store-2.2.0"
- sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."inquirer-8.2.4"
+ sources."inquirer-8.2.5"
sources."ip-1.1.8"
sources."ip-set-2.1.0"
sources."ipaddr.js-2.0.1"
@@ -148652,7 +151811,6 @@ in
sources."mime-3.0.0"
sources."mimic-fn-2.1.0"
sources."mimic-response-1.0.1"
- sources."minimatch-3.1.2"
sources."minimist-1.2.7"
sources."mkdirp-classic-0.5.3"
sources."moment-2.29.4"
@@ -148686,7 +151844,6 @@ in
sources."simple-get-4.0.1"
];
})
- sources."path-is-absolute-1.0.1"
sources."piece-length-2.0.1"
(sources."plist-with-patches-0.5.1" // {
dependencies = [
@@ -148717,7 +151874,6 @@ in
})
sources."require-directory-2.1.1"
sources."restore-cursor-3.1.0"
- sources."rimraf-3.0.2"
sources."run-async-2.4.1"
sources."run-parallel-1.2.0"
sources."run-parallel-limit-1.1.0"
@@ -148777,7 +151933,7 @@ in
];
})
sources."torrent-piece-2.0.1"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-fest-0.21.3"
sources."typedarray-0.0.6"
sources."uint64be-2.0.2"
@@ -148799,7 +151955,7 @@ in
sources."videostream-3.2.2"
sources."vlc-command-1.2.0"
sources."wcwidth-1.0.1"
- (sources."webtorrent-1.8.32" // {
+ (sources."webtorrent-1.9.1" // {
dependencies = [
sources."debug-4.3.4"
sources."decompress-response-6.0.0"
@@ -148816,7 +151972,7 @@ in
sources."xmlbuilder-11.0.1"
sources."xmldom-0.1.31"
sources."y18n-5.0.8"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
];
buildInputs = globalBuildInputs;
@@ -148895,7 +152051,7 @@ in
sources."wrappy-1.0.2"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
];
buildInputs = globalBuildInputs;
@@ -148911,10 +152067,10 @@ in
wrangler = nodeEnv.buildNodePackage {
name = "wrangler";
packageName = "wrangler";
- version = "2.1.13";
+ version = "2.1.15";
src = fetchurl {
- url = "https://registry.npmjs.org/wrangler/-/wrangler-2.1.13.tgz";
- sha512 = "FWarJ9pBaXOU/wj3BoLo1Azi4VvadD0PfDIYfvY9hoKVyPMSr4dpPNUGgtMhsVuDp7K9mdixnmGEJxR7pbs3kQ==";
+ url = "https://registry.npmjs.org/wrangler/-/wrangler-2.1.15.tgz";
+ sha512 = "5iqtFNo+zbu1FTnQQU/1Y+WWxIEuPIy71fe0uvqqFl0pSlkAtZJ+ufw8UYVxf2Mprw4ia4mSDdhV+hHpZO1sLQ==";
};
dependencies = [
sources."@cloudflare/kv-asset-handler-0.2.0"
@@ -148941,7 +152097,7 @@ in
sources."@miniflare/watcher-2.10.0"
sources."@miniflare/web-sockets-2.10.0"
sources."@types/better-sqlite3-7.6.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/stack-trace-0.0.29"
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
@@ -148952,7 +152108,7 @@ in
sources."builtins-5.0.1"
sources."busboy-1.6.0"
sources."chokidar-3.5.3"
- sources."cluster-key-slot-1.1.1"
+ sources."cluster-key-slot-1.1.2"
sources."cookie-0.4.2"
sources."cron-schedule-3.0.6"
sources."cross-spawn-7.0.3"
@@ -149056,8 +152212,8 @@ in
sources."utf-8-validate-5.0.10"
sources."validate-npm-package-name-4.0.0"
sources."which-2.0.2"
- sources."ws-8.9.0"
- sources."xxhash-wasm-1.0.1"
+ sources."ws-8.10.0"
+ sources."xxhash-wasm-1.0.2"
sources."yallist-4.0.0"
sources."youch-2.2.2"
];
@@ -149098,15 +152254,15 @@ in
sha512 = "P1Ct7+DNrOcr2JAxDZ3Q5i5sx2LSveu7iLaoUL0A+YiG0GKf0l5+9j3rwMeyh6JeTL1+HfQV1rnwEvzhNIvpFw==";
};
dependencies = [
- sources."@babel/runtime-7.19.4"
- sources."@babel/runtime-corejs3-7.19.6"
+ sources."@babel/runtime-7.20.1"
+ sources."@babel/runtime-corejs3-7.20.1"
(sources."@eslint/eslintrc-1.3.3" // {
dependencies = [
sources."debug-4.3.4"
sources."ms-2.1.2"
];
})
- (sources."@humanwhocodes/config-array-0.11.6" // {
+ (sources."@humanwhocodes/config-array-0.11.7" // {
dependencies = [
sources."debug-4.3.4"
sources."ms-2.1.2"
@@ -149118,7 +152274,7 @@ in
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
sources."@types/json5-0.0.29"
- sources."acorn-8.8.0"
+ sources."acorn-8.8.1"
sources."acorn-jsx-5.3.2"
sources."adverb-where-0.2.5"
sources."ajv-6.12.6"
@@ -149130,7 +152286,7 @@ in
sources."array.prototype.flat-1.3.0"
sources."array.prototype.flatmap-1.3.0"
sources."ast-types-flow-0.0.7"
- sources."axe-core-4.4.3"
+ sources."axe-core-4.5.1"
sources."axobject-query-2.2.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
@@ -149141,7 +152297,7 @@ in
sources."color-name-1.1.4"
sources."commander-2.20.3"
sources."concat-map-0.0.1"
- sources."core-js-pure-3.25.5"
+ sources."core-js-pure-3.26.0"
sources."cross-spawn-7.0.3"
sources."damerau-levenshtein-1.0.8"
sources."debug-2.6.9"
@@ -149470,7 +152626,7 @@ in
sha512 = "0V5CpR62BY1EOevIxXq5BL84YJeIunEzRsFlqb00tc7D77I51/0bvgdGRZhEwhNI2rFxKZ1i77eoisT56gfMTQ==";
};
dependencies = [
- sources."@babel/runtime-7.19.4"
+ sources."@babel/runtime-7.20.1"
sources."@gar/promisify-1.1.3"
sources."@isaacs/string-locale-compare-1.1.0"
sources."@nodelib/fs.scandir-2.1.5"
@@ -149637,7 +152793,7 @@ in
sources."config-chain-1.1.13"
sources."configstore-3.1.5"
sources."console-control-strings-1.1.0"
- sources."core-js-3.25.5"
+ sources."core-js-3.26.0"
sources."core-util-is-1.0.3"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
@@ -150004,7 +153160,7 @@ in
sources."debug-4.3.4"
sources."http-cache-semantics-4.1.0"
sources."http-proxy-agent-5.0.0"
- sources."lru-cache-7.14.0"
+ sources."lru-cache-7.14.1"
(sources."make-fetch-happen-10.2.1" // {
dependencies = [
sources."minipass-fetch-2.1.2"
@@ -150297,7 +153453,7 @@ in
];
})
sources."taketalk-1.0.0"
- (sources."tar-6.1.11" // {
+ (sources."tar-6.1.12" // {
dependencies = [
sources."mkdirp-1.0.4"
];
@@ -150416,7 +153572,7 @@ in
sources."gauge-3.0.2"
sources."get-stream-6.0.1"
sources."has-flag-4.0.0"
- sources."inquirer-8.2.4"
+ sources."inquirer-8.2.5"
sources."is-fullwidth-code-point-3.0.0"
sources."is-stream-2.0.1"
sources."locate-path-6.0.0"
@@ -150439,7 +153595,7 @@ in
sources."string-width-4.2.3"
sources."strip-ansi-6.0.1"
sources."supports-color-7.2.0"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."type-fest-0.21.3"
sources."which-2.0.2"
];
@@ -150477,10 +153633,10 @@ in
"@zwave-js/server" = nodeEnv.buildNodePackage {
name = "_at_zwave-js_slash_server";
packageName = "@zwave-js/server";
- version = "1.24.0";
+ version = "1.24.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@zwave-js/server/-/server-1.24.0.tgz";
- sha512 = "ZLuzqjdaPEyoNd2mCJkKK+AQMDyl1PRImLFWp8kYSDYTtPRduSQw4nJOTW743DLOByLyxENER7F4C/zZXbhaeA==";
+ url = "https://registry.npmjs.org/@zwave-js/server/-/server-1.24.1.tgz";
+ sha512 = "QRBETwKH0V8jTyRXyvko/gdhGck8cXEK/8rnoGAtWjpch/tr83HXNJMdZZhD6KLO9iDl5avWeA+w1m226lwTGg==";
};
dependencies = [
sources."@alcalzone/jsonl-db-2.5.3"
@@ -150502,23 +153658,23 @@ in
sources."@esm2cjs/p-timeout-5.1.0"
sources."@esm2cjs/responselike-3.0.0"
sources."@homebridge/ciao-1.1.5"
- (sources."@sentry/core-7.16.0" // {
+ (sources."@sentry/core-7.17.3" // {
dependencies = [
sources."tslib-1.14.1"
];
})
- (sources."@sentry/integrations-7.16.0" // {
+ (sources."@sentry/integrations-7.17.3" // {
dependencies = [
sources."tslib-1.14.1"
];
})
- (sources."@sentry/node-7.16.0" // {
+ (sources."@sentry/node-7.17.3" // {
dependencies = [
sources."tslib-1.14.1"
];
})
- sources."@sentry/types-7.16.0"
- (sources."@sentry/utils-7.16.0" // {
+ sources."@sentry/types-7.17.3"
+ (sources."@sentry/utils-7.17.3" // {
dependencies = [
sources."tslib-1.14.1"
];
@@ -150647,7 +153803,7 @@ in
sources."strip-final-newline-2.0.0"
sources."text-hex-1.0.0"
sources."triple-beam-1.3.0"
- sources."tslib-2.4.0"
+ sources."tslib-2.4.1"
sources."universalify-2.0.0"
sources."utf-8-validate-5.0.10"
sources."util-deprecate-1.0.2"
@@ -150656,11 +153812,11 @@ in
sources."winston-daily-rotate-file-4.7.1"
sources."winston-transport-4.5.0"
sources."wrap-ansi-7.0.0"
- sources."ws-8.9.0"
+ sources."ws-8.10.0"
sources."xstate-4.29.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.6.0"
+ sources."yargs-17.6.1"
sources."yargs-parser-21.1.1"
sources."zwave-js-10.3.0"
];
@@ -150688,7 +153844,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/fs-extra-9.0.13"
sources."@types/minimist-1.2.2"
- sources."@types/node-18.11.3"
+ sources."@types/node-18.11.9"
sources."@types/ps-tree-1.1.2"
sources."@types/which-2.0.1"
sources."braces-3.0.2"
diff --git a/pkgs/development/node-packages/overrides.nix b/pkgs/development/node-packages/overrides.nix
index 29050e61c39b..407879af045c 100644
--- a/pkgs/development/node-packages/overrides.nix
+++ b/pkgs/development/node-packages/overrides.nix
@@ -364,6 +364,10 @@ final: prev: {
'';
};
+ photoprism-frontend = prev."photoprism-frontend-../../servers/photoprism".override {
+ meta.broken = true; # use the top-level package instead
+ };
+
pnpm = prev.pnpm.override {
nativeBuildInputs = [ pkgs.buildPackages.makeWrapper ];
diff --git a/pkgs/development/ocaml-modules/eqaf/default.nix b/pkgs/development/ocaml-modules/eqaf/default.nix
index ba2274e9c326..d3e29be3c688 100644
--- a/pkgs/development/ocaml-modules/eqaf/default.nix
+++ b/pkgs/development/ocaml-modules/eqaf/default.nix
@@ -1,17 +1,16 @@
-{ lib, fetchurl, buildDunePackage, cstruct, bigarray-compat }:
+{ lib, fetchurl, buildDunePackage, cstruct }:
buildDunePackage rec {
- minimumOCamlVersion = "4.03";
+ minimalOCamlVersion = "4.07";
pname = "eqaf";
- version = "0.8";
- useDune2 = true;
+ version = "0.9";
src = fetchurl {
- url = "https://github.com/mirage/eqaf/releases/download/v${version}/eqaf-v${version}.tbz";
- sha256 = "sha256-EUWhYBB0N9eUPgLkht9r0jPTk37BpZfX+jntuUcc+HU=";
+ url = "https://github.com/mirage/eqaf/releases/download/v${version}/eqaf-${version}.tbz";
+ sha256 = "sha256-7A4oqUasaBf5XVhU8FqZYa46hAi7YQ55z60BubJV3+A=";
};
- propagatedBuildInputs = [ cstruct bigarray-compat ];
+ propagatedBuildInputs = [ cstruct ];
meta = {
description = "Constant time equal function to avoid timing attacks in OCaml";
diff --git a/pkgs/development/ocaml-modules/janestreet/0.15.nix b/pkgs/development/ocaml-modules/janestreet/0.15.nix
index 1ef9f72bb746..3a4a20822c80 100644
--- a/pkgs/development/ocaml-modules/janestreet/0.15.nix
+++ b/pkgs/development/ocaml-modules/janestreet/0.15.nix
@@ -165,7 +165,8 @@ with self;
base = janePackage {
pname = "base";
- hash = "1qyycqqr4dijvxm4hhy79c964wd91kpsfvb89kna1qwgllg0hrpj";
+ version = "0.15.1";
+ hash = "sha256-CDKQVF+hAvJTo5QmRvyOfQNrdRgz6m+64q9UzNHlJEA=";
minimumOCamlVersion = "4.10";
meta.description = "Full standard library replacement for OCaml";
buildInputs = [ dune-configurator ];
@@ -912,7 +913,8 @@ with self;
sexplib0 = janePackage {
pname = "sexplib0";
- hash = "0jag0bz2173b0n7hx013fhghydhh92arqjlrcnf5x025bw8nz66v";
+ version = "0.15.1";
+ hash = "sha256-6K0yrCbVFcUalN4cQuDI1TvWvNDjfXXRDhJKUskbqRY=";
minimumOCamlVersion = "4.04.2";
meta.description = "Library containing the definition of S-expressions and some base converters";
};
diff --git a/pkgs/development/ocaml-modules/lablgtk3/default.nix b/pkgs/development/ocaml-modules/lablgtk3/default.nix
index 81fb51d1f1e2..bd820e8042a7 100644
--- a/pkgs/development/ocaml-modules/lablgtk3/default.nix
+++ b/pkgs/development/ocaml-modules/lablgtk3/default.nix
@@ -1,27 +1,23 @@
-{ lib, fetchFromGitHub, fetchpatch, pkg-config, buildDunePackage, dune-configurator, gtk3, cairo2 }:
+{ lib, fetchFromGitHub, pkg-config, buildDunePackage, dune-configurator
+, gtk3, cairo2
+, camlp-streams
+}:
buildDunePackage rec {
- version = "3.1.2";
+ version = "3.1.3";
pname = "lablgtk3";
- useDune2 = true;
-
minimalOCamlVersion = "4.05";
src = fetchFromGitHub {
owner = "garrigue";
repo = "lablgtk";
rev = version;
- sha256 = "sha256:0b17w9qb1f02h3313cm62mrqlhwxficppzm72n7sf8mmwrylxbm7";
+ sha256 = "sha256-1kXJP+tKudP3qfosTgZAQueNK46H9aLevEj6wxPKDWY=";
};
- patches = [ (fetchpatch {
- name = "dune-project.patch";
- url = "https://raw.githubusercontent.com/ocaml/opam-repository/10a48cb9fab88f67f6cb70280e0fec035c32d41c/packages/lablgtk3/lablgtk3.3.1.2/files/dune-project.patch";
- sha256 = "03jf5hclqdq7iq84djaqcnfnnnd7z3hb48rr8n1gyxzjyx86b3fh";
- }) ];
nativeBuildInputs = [ pkg-config ];
- buildInputs = [ dune-configurator ];
+ buildInputs = [ dune-configurator camlp-streams ];
propagatedBuildInputs = [ gtk3 cairo2 ];
meta = {
diff --git a/pkgs/development/ocaml-modules/lablgtk3/gtkspell3.nix b/pkgs/development/ocaml-modules/lablgtk3/gtkspell3.nix
index b037f7d989f4..be57c7e7146f 100644
--- a/pkgs/development/ocaml-modules/lablgtk3/gtkspell3.nix
+++ b/pkgs/development/ocaml-modules/lablgtk3/gtkspell3.nix
@@ -4,5 +4,5 @@ buildDunePackage {
pname = "lablgtk3-gtkspell3";
buildInputs = [ gtkspell3 ] ++ lablgtk3.buildInputs;
propagatedBuildInputs = [ lablgtk3 ];
- inherit (lablgtk3) src version useDune2 meta nativeBuildInputs;
+ inherit (lablgtk3) src version meta nativeBuildInputs;
}
diff --git a/pkgs/development/ocaml-modules/lablgtk3/sourceview3.nix b/pkgs/development/ocaml-modules/lablgtk3/sourceview3.nix
index a0560029880d..0e8ba3ef3ffe 100644
--- a/pkgs/development/ocaml-modules/lablgtk3/sourceview3.nix
+++ b/pkgs/development/ocaml-modules/lablgtk3/sourceview3.nix
@@ -4,5 +4,5 @@ buildDunePackage {
pname = "lablgtk3-sourceview3";
buildInputs = lablgtk3.buildInputs ++ [ gtksourceview ];
propagatedBuildInputs = [ lablgtk3 ];
- inherit (lablgtk3) src version useDune2 meta nativeBuildInputs;
+ inherit (lablgtk3) src version meta nativeBuildInputs;
}
diff --git a/pkgs/development/python-modules/aioesphomeapi/default.nix b/pkgs/development/python-modules/aioesphomeapi/default.nix
index 4999d6282d54..c1fd962a41f3 100644
--- a/pkgs/development/python-modules/aioesphomeapi/default.nix
+++ b/pkgs/development/python-modules/aioesphomeapi/default.nix
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "aioesphomeapi";
- version = "11.4.2";
+ version = "11.4.3";
format = "setuptools";
disabled = pythonOlder "3.9";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "esphome";
repo = pname;
rev = "refs/tags/v${version}";
- hash = "sha256-dYogEs9cU+h6oPu9PImHTLvyaJ3kNAOgKNdN44HeqWY=";
+ hash = "sha256-g901qWU6aiaV0kLmtWJffXZrOsKjvOGI0TOgQFzuuPA=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/aiohomekit/default.nix b/pkgs/development/python-modules/aiohomekit/default.nix
index 794879d4b472..d36f8910dbb0 100644
--- a/pkgs/development/python-modules/aiohomekit/default.nix
+++ b/pkgs/development/python-modules/aiohomekit/default.nix
@@ -18,7 +18,7 @@
buildPythonPackage rec {
pname = "aiohomekit";
- version = "2.2.14";
+ version = "2.2.17";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
owner = "Jc2k";
repo = pname;
rev = "refs/tags/${version}";
- hash = "sha256-0O8fax25vabItFnUD9N7C4gyMSKPHqHSgzJXJjp5dGw=";
+ hash = "sha256-eqLWHa7qUZ6UzNr9onwF2xmntKwdbNMWt2KvwG3kQjc=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/bluetooth-adapters/default.nix b/pkgs/development/python-modules/bluetooth-adapters/default.nix
index 3d541bfa7bc0..1ad12fffd505 100644
--- a/pkgs/development/python-modules/bluetooth-adapters/default.nix
+++ b/pkgs/development/python-modules/bluetooth-adapters/default.nix
@@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "bluetooth-adapters";
- version = "0.6.0";
+ version = "0.7.0";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "refs/tags/v${version}";
- hash = "sha256-26w7513h5WWGqKz4OqHob42O0bk1yW8ePPKB2V9+AHs=";
+ hash = "sha256-c6blw0WD1V4bNZ5YaVjLbeCIug8l7PeKlrv+kzncK/s=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/bthome-ble/default.nix b/pkgs/development/python-modules/bthome-ble/default.nix
index 9f0014c16feb..be18b892a2e2 100644
--- a/pkgs/development/python-modules/bthome-ble/default.nix
+++ b/pkgs/development/python-modules/bthome-ble/default.nix
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "bthome-ble";
- version = "2.1.0";
+ version = "2.2.0";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "v${version}";
- hash = "sha256-4vk9uaG/9n3lNEWAergW9kFN2/Ta/KSax0rK9tVxAfw=";
+ hash = "sha256-jjFYJ6EF4G43EOKCdkE1KQqaV2aGD+HMh1tOxHWUn8k=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/btrees/default.nix b/pkgs/development/python-modules/btrees/default.nix
index 5741f4f673c1..9f91541599c9 100644
--- a/pkgs/development/python-modules/btrees/default.nix
+++ b/pkgs/development/python-modules/btrees/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "btrees";
- version = "4.10.1";
+ version = "4.11.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "BTrees";
inherit version;
- hash = "sha256-QOPUFrOwMajIYzRQfRIbadnJ3pB+ESNE3lJrVFHZA8U=";
+ hash = "sha256-AFwDtIAp1noojnYIeYw3rCSfLAabb1GDZAqUmdzY+qM=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/cairocffi/default.nix b/pkgs/development/python-modules/cairocffi/default.nix
index cc4e19d6beb7..87c56b40e9e3 100644
--- a/pkgs/development/python-modules/cairocffi/default.nix
+++ b/pkgs/development/python-modules/cairocffi/default.nix
@@ -7,6 +7,7 @@
, substituteAll
, makeFontsConf
, freefont_ttf
+, pikepdf
, pytest
, glibcLocales
, cairo
@@ -21,42 +22,15 @@
buildPythonPackage rec {
pname = "cairocffi";
- version = "1.3.0";
+ version = "1.4.0";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-EIo6fLCeIDvdhQHZuq2R14bSBFYb1x6TZOizSJfEe5E=";
+ sha256 = "sha256-UJM5syzNjXsAwiBMMnNs3njbU6MuahYtMSR40lYmzZo=";
};
- LC_ALL = "en_US.UTF-8";
-
- # checkPhase require at least one 'normal' font and one 'monospace',
- # otherwise glyph tests fails
- FONTCONFIG_FILE = makeFontsConf {
- fontDirectories = [ freefont_ttf ];
- };
-
- propagatedBuildInputs = [ cairo cffi ] ++ lib.optional withXcffib xcffib;
- propagatedNativeBuildInputs = [ cffi ];
-
- # pytestCheckHook does not work
- checkInputs = [ numpy pytest glibcLocales ];
-
- postPatch = ''
- substituteInPlace setup.cfg \
- --replace "pytest-runner" "" \
- --replace "pytest-cov" "" \
- --replace "pytest-flake8" "" \
- --replace "pytest-isort" "" \
- --replace "--flake8 --isort" ""
- '';
-
- checkPhase = ''
- py.test $out/${python.sitePackages}
- '';
-
patches = [
# OSError: dlopen() failed to load a library: gdk-pixbuf-2.0 / gdk-pixbuf-2.0-0
(substituteAll {
@@ -69,6 +43,35 @@ buildPythonPackage rec {
./fix_test_scaled_font.patch
];
+ postPatch = ''
+ substituteInPlace setup.cfg \
+ --replace "pytest-runner" "" \
+ --replace "pytest-cov" "" \
+ --replace "pytest-flake8" "" \
+ --replace "pytest-isort" "" \
+ --replace "--flake8 --isort" ""
+ '';
+
+ LC_ALL = "en_US.UTF-8";
+
+ # checkPhase require at least one 'normal' font and one 'monospace',
+ # otherwise glyph tests fails
+ FONTCONFIG_FILE = makeFontsConf {
+ fontDirectories = [ freefont_ttf ];
+ };
+
+ propagatedNativeBuildInputs = [ cffi ];
+
+ propagatedBuildInputs = [ cairo cffi ]
+ ++ lib.optional withXcffib xcffib;
+
+ # pytestCheckHook does not work
+ checkInputs = [ numpy pikepdf pytest glibcLocales ];
+
+ checkPhase = ''
+ py.test $out/${python.sitePackages}
+ '';
+
meta = with lib; {
homepage = "https://github.com/SimonSapin/cairocffi";
license = licenses.bsd3;
diff --git a/pkgs/development/python-modules/cometblue-lite/default.nix b/pkgs/development/python-modules/cometblue-lite/default.nix
index 564e1969461a..eea0b8dac04d 100644
--- a/pkgs/development/python-modules/cometblue-lite/default.nix
+++ b/pkgs/development/python-modules/cometblue-lite/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "cometblue-lite";
- version = "0.5.2";
+ version = "0.5.3";
format = "setuptools";
disabled = pythonOlder "3.8";
@@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "neffs";
repo = "python-cometblue_lite";
rev = version;
- hash = "sha256-23HspTZ0kN3+geDnqdH6Vj5NfmmbVku2vPTdsy0XvRU=";
+ hash = "sha256-KRWS2nqMFlF+IcBSmnQH3ptp6yxRQjAFY6aY0D7eZBs=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/dask-glm/default.nix b/pkgs/development/python-modules/dask-glm/default.nix
index bd9b468064dd..d0c7b128bc09 100644
--- a/pkgs/development/python-modules/dask-glm/default.nix
+++ b/pkgs/development/python-modules/dask-glm/default.nix
@@ -54,6 +54,11 @@ buildPythonPackage rec {
"dask_glm/tests/test_utils.py"
];
+ disabledTests = [
+ # missing fixture with distributed>=2022.8.0
+ "test_determinism_distributed"
+ ];
+
meta = with lib; {
description = "Generalized Linear Models with Dask";
homepage = "https://github.com/dask/dask-glm/";
diff --git a/pkgs/development/python-modules/dask/default.nix b/pkgs/development/python-modules/dask/default.nix
index 8502c01956ec..e8682d020669 100644
--- a/pkgs/development/python-modules/dask/default.nix
+++ b/pkgs/development/python-modules/dask/default.nix
@@ -2,6 +2,7 @@
, stdenv
, bokeh
, buildPythonPackage
+, click
, cloudpickle
, distributed
, fastparquet
@@ -26,19 +27,28 @@
buildPythonPackage rec {
pname = "dask";
- version = "2022.9.1";
+ version = "2022.10.2";
format = "setuptools";
- disabled = pythonOlder "3.7";
+ disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "dask";
repo = pname;
rev = version;
- hash = "sha256-4Tok9eYhi2FF+8bpKnwKT3KIRGHIMtxczTkZ6qD8x7g=";
+ hash = "sha256-zHJR2WjHigUMWtRJW25+gk1fKGKedU53BBjwx5zaodA=";
};
+ patches = [
+ (fetchpatch {
+ # Fix test_repartition_npartitions on platforms other than x86-64
+ url = "https://github.com/dask/dask/commit/65f40ad461c57065f981e6213e33b1d13cc9bc8f.patch";
+ hash = "sha256-KyTSms4ik1kYtL+I/huAxD+zK2AAuPkwmHA9FYk601Y=";
+ })
+ ];
+
propagatedBuildInputs = [
+ click
cloudpickle
fsspec
packaging
@@ -109,6 +119,8 @@ buildPythonPackage rec {
"test_read_dir_nometa"
] ++ [
"test_chunksize_files"
+ # TypeError: 'ArrowStringArray' with dtype string does not support reduction 'min'
+ "test_set_index_string"
];
__darwinAllowLocalNetworking = true;
diff --git a/pkgs/development/python-modules/dbus-fast/default.nix b/pkgs/development/python-modules/dbus-fast/default.nix
index 3fabcd6a1135..b8b6f8119948 100644
--- a/pkgs/development/python-modules/dbus-fast/default.nix
+++ b/pkgs/development/python-modules/dbus-fast/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "dbus-fast";
- version = "1.64.0";
+ version = "1.72.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "v${version}";
- hash = "sha256-y/H4TYCicn6Gvv+F4ogqhNWK2mZxEVNGCY4pJAfjq9s=";
+ hash = "sha256-7KsikrHfk0EGtLOzO8qGyU8ZzqNshijDJgnDLn16Eis=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/distributed/default.nix b/pkgs/development/python-modules/distributed/default.nix
index 0b9236feeb00..6b7f535e5152 100644
--- a/pkgs/development/python-modules/distributed/default.nix
+++ b/pkgs/development/python-modules/distributed/default.nix
@@ -21,14 +21,14 @@
buildPythonPackage rec {
pname = "distributed";
- version = "2022.9.1";
+ version = "2022.10.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-upj1TipRhhvulyuhX4bfbQSWar9m7Xu3mIsi48G+ewE=";
+ hash = "sha256-U/Clv276uaWrM0XNkT9tPz1OpETuLtvqMxx/75b9Z9A=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/django-oauth-toolkit/default.nix b/pkgs/development/python-modules/django-oauth-toolkit/default.nix
index 7905c1c985fe..e98ff368a5bc 100644
--- a/pkgs/development/python-modules/django-oauth-toolkit/default.nix
+++ b/pkgs/development/python-modules/django-oauth-toolkit/default.nix
@@ -19,14 +19,14 @@
buildPythonPackage rec {
pname = "django-oauth-toolkit";
- version = "2.1.0";
+ version = "2.2.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "jazzband";
repo = pname;
rev = "refs/tags/${version}";
- sha256 = "sha256-c78QYlU/gB4Lt04TlQFjtsS6pyjDm/fURBMa9hXLpLI=";
+ sha256 = "sha256-mynchdvrfBGKMeFFb2oDaANhtSCxq85Nibx7GfSY2nQ=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/django-rest-polymorphic/default.nix b/pkgs/development/python-modules/django-rest-polymorphic/default.nix
index c53fd183db91..20a4f85a95f6 100644
--- a/pkgs/development/python-modules/django-rest-polymorphic/default.nix
+++ b/pkgs/development/python-modules/django-rest-polymorphic/default.nix
@@ -12,13 +12,14 @@
buildPythonPackage rec {
pname = "django-rest-polymorphic";
- version = "0.1.9";
+ version = "0.1.10";
src = fetchFromGitHub {
owner = "apirobot";
repo = "django-rest-polymorphic";
- rev = "v${version}";
- sha256 = "sha256-p3ew2NONSyiGzDzxGTy/cx3fcQhhvnzqopJzgqhXadY=";
+ # https://github.com/denisorehovsky/django-rest-polymorphic/issues/42
+ rev = "9d920eb91ef13144094426f9ebc0ca80247c0fe3";
+ sha256 = "sha256-k7Cl2QYkaGOZaTo8v5Wg9Wqh8x0WC5i9Sggqj8eeECY=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/djangorestframework/default.nix b/pkgs/development/python-modules/djangorestframework/default.nix
index ca81d7bd57bb..1fb8fd9f4b0a 100644
--- a/pkgs/development/python-modules/djangorestframework/default.nix
+++ b/pkgs/development/python-modules/djangorestframework/default.nix
@@ -1,7 +1,6 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
-, fetchpatch
, coreapi
, django
, django-guardian
@@ -15,26 +14,16 @@
buildPythonPackage rec {
pname = "djangorestframework";
- version = "3.13.1";
+ version = "3.14.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "encode";
repo = "django-rest-framework";
rev = version;
- sha256 = "sha256-XmX6DZBZYzVCe72GERplAWt5jIjV/cYercZGb0pYjoc=";
+ sha256 = "sha256-Fnj0n3NS3SetOlwSmGkLE979vNJnYE6i6xwVBslpNz4=";
};
- patches = [
- # See https://github.com/encode/django-rest-framework/issues/8608
- # and https://github.com/encode/django-rest-framework/pull/8591/
- (fetchpatch {
- name = "fix-django-collect-static.patch";
- url = "https://github.com/encode/django-rest-framework/pull/8591/commits/65943bb58deba6ee1a89fe4504f270ab1806fce6.patch";
- sha256 = "sha256-wI7EzX9tlyyXAPrJEr+/2uTg7dVY98IKgh7Cc/NZo5k=";
- })
- ];
-
propagatedBuildInputs = [
django
pytz
diff --git a/pkgs/development/python-modules/drf-spectacular-sidecar/default.nix b/pkgs/development/python-modules/drf-spectacular-sidecar/default.nix
index e2413df85d42..311f272e4b51 100644
--- a/pkgs/development/python-modules/drf-spectacular-sidecar/default.nix
+++ b/pkgs/development/python-modules/drf-spectacular-sidecar/default.nix
@@ -6,13 +6,13 @@
buildPythonPackage rec {
pname = "drf-spectacular-sidecar";
- version = "2022.6.1";
+ version = "2022.11.1";
src = fetchFromGitHub {
owner = "tfranzel";
repo = "drf-spectacular-sidecar";
rev = version;
- sha256 = "sha256-SKMAA8tcvWUF7EARq9vN8C0DWcQFRX5j/tfgHF5TUWs=";
+ sha256 = "sha256-ztUdV+Bhi3zx5UiwnpiQM/RglUH1n9J48Beuq2GPWdg=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/drf-spectacular/default.nix b/pkgs/development/python-modules/drf-spectacular/default.nix
index 8e41d24c9e1b..0941c2ab309c 100644
--- a/pkgs/development/python-modules/drf-spectacular/default.nix
+++ b/pkgs/development/python-modules/drf-spectacular/default.nix
@@ -28,13 +28,13 @@
buildPythonPackage rec {
pname = "drf-spectacular";
- version = "0.22.1";
+ version = "0.24.2";
src = fetchFromGitHub {
owner = "tfranzel";
repo = "drf-spectacular";
rev = version;
- sha256 = "sha256-SgzyIzgFBXsNHfY2OfCq0LhJyi/ZCOSA8QveKNduIBc=";
+ sha256 = "sha256-WE+iOD3OjDByisHI9GgvjUUSpvOz+IYi/3Y8AmR7Eps=";
};
propagatedBuildInputs = [
@@ -66,6 +66,11 @@ buildPythonPackage rec {
pytestCheckHook
];
+ disabledTests = [
+ # requires django with gdal
+ "test_rest_framework_gis"
+ ];
+
pythonImportsCheck = [ "drf_spectacular" ];
meta = with lib; {
diff --git a/pkgs/development/python-modules/duckdb/default.nix b/pkgs/development/python-modules/duckdb/default.nix
index d7878bd6a44d..c61dfc9f4da4 100644
--- a/pkgs/development/python-modules/duckdb/default.nix
+++ b/pkgs/development/python-modules/duckdb/default.nix
@@ -19,6 +19,7 @@ buildPythonPackage rec {
preConfigure = ''
cd tools/pythonpkg
+ substituteInPlace setup.py --replace "multiprocessing.cpu_count()" "$NIX_BUILD_CORES"
'';
SETUPTOOLS_SCM_PRETEND_VERSION = version;
diff --git a/pkgs/development/python-modules/gcal-sync/default.nix b/pkgs/development/python-modules/gcal-sync/default.nix
index e9afe6ef1b49..74a460b41c22 100644
--- a/pkgs/development/python-modules/gcal-sync/default.nix
+++ b/pkgs/development/python-modules/gcal-sync/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "gcal-sync";
- version = "3.0.0";
+ version = "4.0.0";
format = "setuptools";
disabled = pythonOlder "3.9";
@@ -22,7 +22,7 @@ buildPythonPackage rec {
owner = "allenporter";
repo = "gcal_sync";
rev = "refs/tags/${version}";
- hash = "sha256-xRmNV06gMdPPHcvgJTvxPZBUi1BbFTnwZpzXLBluBYo=";
+ hash = "sha256-HHRBH/cEQEyl5AV6RguItdm5AjBwkZ0RqispeWll7VI=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/google-api-core/default.nix b/pkgs/development/python-modules/google-api-core/default.nix
index 89139485ca37..c92eb490df0e 100644
--- a/pkgs/development/python-modules/google-api-core/default.nix
+++ b/pkgs/development/python-modules/google-api-core/default.nix
@@ -16,14 +16,14 @@
buildPythonPackage rec {
pname = "google-api-core";
- version = "2.10.1";
+ version = "2.10.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-4WwVoReJvFo0V6+ygYo1QKA/NB5ucQ1/m79s3i70p8g=";
+ sha256 = "sha256-EMBvdzn+V3gfh1Izdejho6RnS/Y5LNYTGjIiGCuXEyA=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/google-auth-oauthlib/default.nix b/pkgs/development/python-modules/google-auth-oauthlib/default.nix
index d5e7848b3e46..9f70702883a0 100644
--- a/pkgs/development/python-modules/google-auth-oauthlib/default.nix
+++ b/pkgs/development/python-modules/google-auth-oauthlib/default.nix
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "google-auth-oauthlib";
- version = "0.5.2";
+ version = "0.7.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-1emKcSAzMGmfkqJrwIhHqS6MOxuNgqAh8a80Fk2xQ64=";
+ sha256 = "sha256-2xG85LPv/Jm1GOwiopA0cOCFPAySvldpTjaE5zjSJRM=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/google-auth/default.nix b/pkgs/development/python-modules/google-auth/default.nix
index 8a4c8474adc2..2a411783fff3 100644
--- a/pkgs/development/python-modules/google-auth/default.nix
+++ b/pkgs/development/python-modules/google-auth/default.nix
@@ -27,11 +27,11 @@
buildPythonPackage rec {
pname = "google-auth";
- version = "2.11.0";
+ version = "2.14.0";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-7WXs+faBgyKY4pMo4e8KNnbjcysuVvQVMtRfcKIt4Ps=";
+ sha256 = "sha256-zySBeFXYdO3i79BxqiISVEX1Vd4Whbc5qXgvz0CMKj0=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/google-cloud-kms/default.nix b/pkgs/development/python-modules/google-cloud-kms/default.nix
index 8569e78818fe..0173f38c184c 100644
--- a/pkgs/development/python-modules/google-cloud-kms/default.nix
+++ b/pkgs/development/python-modules/google-cloud-kms/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "google-cloud-kms";
- version = "2.12.1";
+ version = "2.12.3";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-A1sIdkNdK4L6gb3VBApuKJ71J5N2Jq43kcD8DpHU99E=";
+ sha256 = "sha256-ooWxYH4B8HY9ybWj0GQqUnfiFXzLCqyXGGZsocV9Od0=";
};
propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ];
diff --git a/pkgs/development/python-modules/google-crc32c/default.nix b/pkgs/development/python-modules/google-crc32c/default.nix
index d3cc01e45380..2fd5dc315e5d 100644
--- a/pkgs/development/python-modules/google-crc32c/default.nix
+++ b/pkgs/development/python-modules/google-crc32c/default.nix
@@ -2,13 +2,13 @@
buildPythonPackage rec {
pname = "google-crc32c";
- version = "1.3.0";
+ version = "1.5.0";
src = fetchFromGitHub {
owner = "googleapis";
repo = "python-crc32c";
rev = "v${version}";
- sha256 = "005ra4pfv71rq53198k7q6k63f529q3g6hkbxbwfcf82jr77hxga";
+ sha256 = "sha256-Tx7UBIwKzSBbpuqdqGiXTbmBE+1MDRknVe3Zee0UHKQ=";
};
buildInputs = [ crc32c ];
diff --git a/pkgs/development/python-modules/google-resumable-media/default.nix b/pkgs/development/python-modules/google-resumable-media/default.nix
index 41b41be8fbb4..0820ac217f19 100644
--- a/pkgs/development/python-modules/google-resumable-media/default.nix
+++ b/pkgs/development/python-modules/google-resumable-media/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "google-resumable-media";
- version = "2.3.3";
+ version = "2.4.0";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-J8UmIL02TRyBFuqsTqKvy/uBrpE5+zGZZS/KwXJL+2w=";
+ sha256 = "sha256-jVUYUC+SuezISsRneb1PCWlOyzujij58pzeobRXLyh8=";
};
propagatedBuildInputs = [ google-auth google-crc32c requests ];
diff --git a/pkgs/development/python-modules/hexbytes/default.nix b/pkgs/development/python-modules/hexbytes/default.nix
index 79fc42ae3d02..563035f50df4 100644
--- a/pkgs/development/python-modules/hexbytes/default.nix
+++ b/pkgs/development/python-modules/hexbytes/default.nix
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "hexbytes";
- version = "0.2.2";
+ version = "0.3.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "ethereum";
repo = "hexbytes";
rev = "v${version}";
- sha256 = "sha256-SZscM6ze9yY+iRDx/5F4XbrLXIbp6QkFnzxN7zvP9CQ=";
+ sha256 = "sha256-EDFE5MUc+XMwe8BaXkz/DRchAZbS86X+AcShi5rx83M=";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/hg-git/default.nix b/pkgs/development/python-modules/hg-git/default.nix
index 6ccde29313b7..0be08bedff7a 100644
--- a/pkgs/development/python-modules/hg-git/default.nix
+++ b/pkgs/development/python-modules/hg-git/default.nix
@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "hg-git";
- version = "1.0.0";
+ version = "1.0.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- hash = "sha256-ORGDOWLrnImca+qPtJZmyC8hGxJNCEC+tq2V4jpGIbY=";
+ hash = "sha256-P3Ng9bD16AX7DJac/Y168GSWLTIAD3I1aLblYIDQiyk=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/ical/default.nix b/pkgs/development/python-modules/ical/default.nix
index d5ac5f4196ed..c472048d38e5 100644
--- a/pkgs/development/python-modules/ical/default.nix
+++ b/pkgs/development/python-modules/ical/default.nix
@@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "ical";
- version = "4.1.0";
+ version = "4.1.1";
format = "setuptools";
disabled = pythonOlder "3.9";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "allenporter";
repo = pname;
rev = "refs/tags/${version}";
- hash = "sha256-pZtjGWmEVcHSCgiVTKoEaRvec02cz3x93W+UXx3J8gE=";
+ hash = "sha256-yPFFOhAscLvhKo7sgXtH1HwcDYq8kWKHzrr3ep857Io=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/json-schema-for-humans/default.nix b/pkgs/development/python-modules/json-schema-for-humans/default.nix
index da52d12ef08e..f420aefd7df9 100644
--- a/pkgs/development/python-modules/json-schema-for-humans/default.nix
+++ b/pkgs/development/python-modules/json-schema-for-humans/default.nix
@@ -18,7 +18,7 @@
buildPythonPackage rec {
pname = "json-schema-for-humans";
- version = "0.41.8";
+ version = "0.42.1";
format = "pyproject";
disabled = pythonOlder "3.7";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
owner = "coveooss";
repo = pname;
rev = "v${version}";
- hash = "sha256-lz08+T8ITsCI0qjcd/JcgXG4o87UjoP1NQa01FJ7fO0=";
+ hash = "sha256-WVLIx85ivHz5b6C1AfgMAApngeFCuWwWhaBWNcfOvXA=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/openstackdocstheme/default.nix b/pkgs/development/python-modules/openstackdocstheme/default.nix
index b2d1a028b955..79d1a50996b3 100644
--- a/pkgs/development/python-modules/openstackdocstheme/default.nix
+++ b/pkgs/development/python-modules/openstackdocstheme/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "openstackdocstheme";
- version = "3.0.0";
+ version = "3.0.1";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-csbU+am2OXp4xJ60P4Cp2i7TCz+PnRg3BCcc9+PyPM8=";
+ sha256 = "sha256-yB1CdOqWV7hEfUYdtqQ/fd4sNfy7Sp7YJbRQhK5egLk=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/oralb-ble/default.nix b/pkgs/development/python-modules/oralb-ble/default.nix
index 8905529f6dec..cae423cf5a95 100644
--- a/pkgs/development/python-modules/oralb-ble/default.nix
+++ b/pkgs/development/python-modules/oralb-ble/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "oralb-ble";
- version = "0.10.1";
+ version = "0.14.0";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "refs/tags/v${version}";
- hash = "sha256-Iuu44H8fCbJysoSJLBtlJ1XE5Ad2caWihj3UZytWK3o=";
+ hash = "sha256-7EHU/UqKy576FZ1E5bOHHOvH38yoyU+55wC/YO3yt4Y=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/oslo-log/default.nix b/pkgs/development/python-modules/oslo-log/default.nix
index 4b9920c577d3..0e5850da05ae 100644
--- a/pkgs/development/python-modules/oslo-log/default.nix
+++ b/pkgs/development/python-modules/oslo-log/default.nix
@@ -2,6 +2,7 @@
, stdenv
, buildPythonPackage
, fetchPypi
+, eventlet
, oslo-config
, oslo-context
, oslo-serialization
@@ -16,7 +17,7 @@
buildPythonPackage rec {
pname = "oslo-log";
- version = "5.0.0";
+ version = "5.0.1";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -24,7 +25,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "oslo.log";
inherit version;
- hash = "sha256-c6tyNKii1QvfUmyHTfocsrEIO6+a2VvC64r1YkidTQE=";
+ hash = "sha256-+2Xy+dJEI/pt1urY7NIfZlxi4P2fkL8xHkwVO1+Kt+o=";
};
propagatedBuildInputs = [
@@ -39,6 +40,7 @@ buildPythonPackage rec {
];
checkInputs = [
+ eventlet
oslotest
pytestCheckHook
];
diff --git a/pkgs/development/python-modules/peaqevcore/default.nix b/pkgs/development/python-modules/peaqevcore/default.nix
index 26662c7e6f01..0bc838839e6c 100644
--- a/pkgs/development/python-modules/peaqevcore/default.nix
+++ b/pkgs/development/python-modules/peaqevcore/default.nix
@@ -6,14 +6,14 @@
buildPythonPackage rec {
pname = "peaqevcore";
- version = "7.3.1";
+ version = "7.3.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-G2ujLjN8LEHY9gd0SWBpOSkV6fQAZ8pojR0+bMi6TUw=";
+ hash = "sha256-+DihyuSzqFoQvDnlYUyvdyjravxMcU8PgYEq2FY2o9g=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/plugwise/default.nix b/pkgs/development/python-modules/plugwise/default.nix
index 55874b166546..303c43697453 100644
--- a/pkgs/development/python-modules/plugwise/default.nix
+++ b/pkgs/development/python-modules/plugwise/default.nix
@@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "plugwise";
- version = "0.25.6";
+ version = "0.26.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -30,7 +30,7 @@ buildPythonPackage rec {
owner = pname;
repo = "python-plugwise";
rev = "refs/tags/v${version}";
- sha256 = "sha256-n7+cEJC/RIbA4e5b19HncFOhzWhUZ8etxYsiER7zd8E=";
+ sha256 = "sha256-WDjZZFl64tYZ7cy7xcLEX2/87TJSOw71QSro6cgE98s=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/pulp/default.nix b/pkgs/development/python-modules/pulp/default.nix
index 65a179f59d6a..60fa54438f9c 100644
--- a/pkgs/development/python-modules/pulp/default.nix
+++ b/pkgs/development/python-modules/pulp/default.nix
@@ -1,29 +1,49 @@
{ lib
-, fetchPypi
-, buildPythonPackage
-, pyparsing
, amply
+, buildPythonPackage
+, fetchFromGitHub
+, pyparsing
+, pythonOlder
+, pytestCheckHook
}:
buildPythonPackage rec {
- pname = "PuLP";
- version = "2.6.0";
+ pname = "pulp";
+ version = "2.7.0";
+ format = "setuptools";
- src = fetchPypi {
- inherit pname version;
- sha256 = "4b4f7e1e954453e1b233720be23aea2f10ff068a835ac10c090a93d8e2eb2e8d";
+ disabled = pythonOlder "3.7";
+
+ src = fetchFromGitHub {
+ owner = "coin-or";
+ repo = pname;
+ rev = "refs/tags/${version}";
+ hash = "sha256-j0f6OiscJyTqPNyLp0qWRjCGLWuT3HdU1S/sxpnsiMo=";
};
- propagatedBuildInputs = [ pyparsing amply ];
+ propagatedBuildInputs = [
+ amply
+ pyparsing
+ ];
- # only one test that requires an extra
- doCheck = false;
- pythonImportsCheck = [ "pulp" ];
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [
+ "pulp"
+ ];
+
+ disabledTests = [
+ # The solver is not available
+ "PULP_CBC_CMDTest"
+ "test_examples"
+ ];
meta = with lib; {
+ description = "Module to generate generate MPS or LP files";
homepage = "https://github.com/coin-or/pulp";
- description = "PuLP is an LP modeler written in python";
- maintainers = with maintainers; [ teto ];
license = licenses.mit;
+ maintainers = with maintainers; [ teto ];
};
}
diff --git a/pkgs/development/python-modules/pyatmo/default.nix b/pkgs/development/python-modules/pyatmo/default.nix
index afa5f0c378b1..f448942ae01d 100644
--- a/pkgs/development/python-modules/pyatmo/default.nix
+++ b/pkgs/development/python-modules/pyatmo/default.nix
@@ -16,7 +16,7 @@
buildPythonPackage rec {
pname = "pyatmo";
- version = "7.3.0";
+ version = "7.4.0";
format = "pyproject";
disabled = pythonOlder "3.8";
@@ -25,7 +25,7 @@ buildPythonPackage rec {
owner = "jabesq";
repo = "pyatmo";
rev = "refs/tags/v${version}";
- sha256 = "sha256-3NgAsXMdt4FsE30oxeTfunpP2e+iqLFZkhMJbc5jVGw=";
+ sha256 = "sha256-0AgmH0cxXPUBzC30HyX68WsSyYsDcPaVQHLOIsZbHzI=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
diff --git a/pkgs/development/python-modules/pylint-venv/default.nix b/pkgs/development/python-modules/pylint-venv/default.nix
new file mode 100644
index 000000000000..ea361ed88ef3
--- /dev/null
+++ b/pkgs/development/python-modules/pylint-venv/default.nix
@@ -0,0 +1,39 @@
+ { lib
+, buildPythonPackage
+, fetchFromGitHub
+, poetry-core
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+ pname = "pylint-venv";
+ version = "2.3.0";
+ format = "pyproject";
+
+ disabled = pythonOlder "3.7";
+
+ src = fetchFromGitHub {
+ owner = "jgosmann";
+ repo = pname;
+ rev = "refs/tags/v${version}";
+ hash = "sha256-x36OsTRzrN3NWrMpJ34ZHRsw4cQlo49AnJNr5kP8/aQ=";
+ };
+
+ nativeBuildInputs = [
+ poetry-core
+ ];
+
+ # Module has no tests
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "pylint_venv"
+ ];
+
+ meta = with lib; {
+ description = "Module to make pylint respect virtual environments";
+ homepage = "https://github.com/jgosmann/pylint-venv/";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/pyoverkiz/default.nix b/pkgs/development/python-modules/pyoverkiz/default.nix
index 5378e007e792..be3548fad0b9 100644
--- a/pkgs/development/python-modules/pyoverkiz/default.nix
+++ b/pkgs/development/python-modules/pyoverkiz/default.nix
@@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "pyoverkiz";
- version = "1.5.6";
+ version = "1.6.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "iMicknl";
repo = "python-overkiz-api";
rev = "refs/tags/v${version}";
- hash = "sha256-8Xzrnt5W3kQf+kHHiAWimyw4uHc3UL9BsZePcAYKHNk=";
+ hash = "sha256-TWX/8O57gNqkm1ZqreZfy1AQ6UcgP4FODDpXteqO5q8=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/python-lsp-server/default.nix b/pkgs/development/python-modules/python-lsp-server/default.nix
index 72bfed33cdb3..f9bddb009dc8 100644
--- a/pkgs/development/python-modules/python-lsp-server/default.nix
+++ b/pkgs/development/python-modules/python-lsp-server/default.nix
@@ -2,6 +2,7 @@
, stdenv
, autopep8
, buildPythonPackage
+, docstring-to-markdown
, fetchFromGitHub
, flake8
, flaky
@@ -30,7 +31,7 @@
buildPythonPackage rec {
pname = "python-lsp-server";
- version = "1.5.0";
+ version = "1.6.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@@ -39,30 +40,32 @@ buildPythonPackage rec {
owner = "python-lsp";
repo = pname;
rev = "refs/tags/v${version}";
- sha256 = "sha256-tW2w94HI6iy8vcDb5pIL79bAO6BJp9q6SMAXgiVobm0=";
+ sha256 = "sha256-1LV8FcwQqUg+FIkrorBYlxMl4F1PkrrOWjD5M0JSp3Q=";
};
+ SETUPTOOLS_SCM_PRETEND_VERSION = version;
+
postPatch = ''
substituteInPlace pyproject.toml \
--replace "--cov-report html --cov-report term --junitxml=pytest.xml" "" \
--replace "--cov pylsp --cov test" "" \
--replace "autopep8>=1.6.0,<1.7.0" "autopep8" \
- --replace "flake8>=4.0.0,<4.1.0" "flake8" \
- --replace "mccabe>=0.6.0,<0.7.0" "mccabe" \
- --replace "pycodestyle>=2.8.0,<2.9.0" "pycodestyle" \
- --replace "pyflakes>=2.4.0,<2.5.0" "pyflakes"
+ --replace "flake8>=5.0.0,<5.1.0" "flake8" \
+ --replace "mccabe>=0.7.0,<0.8.0" "mccabe" \
+ --replace "pycodestyle>=2.9.0,<2.10.0" "pycodestyle" \
+ --replace "pyflakes>=2.5.0,<2.6.0" "pyflakes"
'';
- preBuild = ''
- export SETUPTOOLS_SCM_PRETEND_VERSION=${version}
- '';
+ nativeBuildInputs = [
+ setuptools
+ setuptools-scm
+ ];
propagatedBuildInputs = [
+ docstring-to-markdown
jedi
pluggy
python-lsp-jsonrpc
- setuptools
- setuptools-scm
ujson
];
diff --git a/pkgs/development/python-modules/pywebview/default.nix b/pkgs/development/python-modules/pywebview/default.nix
index eaf4ae64a653..b80c85d8e13b 100644
--- a/pkgs/development/python-modules/pywebview/default.nix
+++ b/pkgs/development/python-modules/pywebview/default.nix
@@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "pywebview";
- version = "3.6.3";
+ version = "3.7";
format = "setuptools";
disabled = pythonOlder "3.5";
@@ -23,8 +23,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "r0x0r";
repo = "pywebview";
- rev = version;
- hash = "sha256-qOLK4MHdpmcCazCNfojncD8XH7OJB2H/pIW5XAJAlDo=";
+ rev = "refs/tags/${version}";
+ hash = "sha256-RRq6b0hqAzig/WwFK0VsrhHO6ar8HhMdAEIosPPNUQg=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/qstylizer/default.nix b/pkgs/development/python-modules/qstylizer/default.nix
index 768e5f7d007e..835437da0011 100644
--- a/pkgs/development/python-modules/qstylizer/default.nix
+++ b/pkgs/development/python-modules/qstylizer/default.nix
@@ -1,25 +1,30 @@
{ lib
, buildPythonPackage
-, pythonOlder
, fetchFromGitHub
, inflection
, pbr
-, tinycss2
-, pytestCheckHook
, pytest-mock
+, pytestCheckHook
+, pythonOlder
+, tinycss2
}:
buildPythonPackage rec {
pname = "qstylizer";
- version = "0.2.1";
+ version = "0.2.2";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "blambright";
repo = pname;
rev = version;
- sha256 = "sha256-iEMxBpS9gOPubd9O8zpVmR5B7+UZJFkPuOtikO1a9v0=";
+ hash = "sha256-QJ4xhaAoVO4/VncXKzI8Q5f/rPfctJ8CvfedkQVgZgQ=";
};
+ PBR_VERSION = version;
+
nativeBuildInputs = [
pbr
];
@@ -34,12 +39,12 @@ buildPythonPackage rec {
pytest-mock
];
- preBuild = ''
- export PBR_VERSION=${version}
- '';
+ pythonImportsCheck = [
+ "qstylizer"
+ ];
meta = with lib; {
- description = "Qt stylesheet generation utility for PyQt/PySide ";
+ description = "Qt stylesheet generation utility for PyQt/PySide";
homepage = "https://github.com/blambright/qstylizer";
license = licenses.mit;
maintainers = with maintainers; [ drewrisinger ];
diff --git a/pkgs/development/python-modules/qtawesome/default.nix b/pkgs/development/python-modules/qtawesome/default.nix
index 4bb3303af467..b4e02e77b229 100644
--- a/pkgs/development/python-modules/qtawesome/default.nix
+++ b/pkgs/development/python-modules/qtawesome/default.nix
@@ -1,29 +1,47 @@
-{ lib, buildPythonPackage, fetchPypi, qtpy, six, pyqt5, pytest }:
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pyqt5
+, pytestCheckHook
+, pythonOlder
+, qtpy
+}:
buildPythonPackage rec {
- pname = "QtAwesome";
- version = "1.1.1";
+ pname = "qtawesome";
+ version = "1.2.1";
+ format = "setuptools";
- src = fetchPypi {
- inherit pname version;
- sha256 = "ec02e200231fa68a146a93845890aa0432a7edcba14bf811ff6975cf9acdab5d";
+ disabled = pythonOlder "3.7";
+
+ src = fetchFromGitHub {
+ owner = "spyder-ide";
+ repo = pname;
+ rev = "refs/tags/v${version}";
+ hash = "sha256-KcYCXrTP8ED5j/VTLTw7a8zotDSqIu9ultmwp8Ip5nM=";
};
- propagatedBuildInputs = [ qtpy six ];
+ propagatedBuildInputs = [
+ pyqt5
+ qtpy
+ ];
- checkInputs = [ pyqt5 pytest ];
+ checkInputs = [
+ pytestCheckHook
+ ];
- checkPhase = ''
- py.test
- '';
-
- # Requires https://github.com/boylea/qtbot
+ # Requires https://github.com/boylea/qtbot which is unmaintained
doCheck = false;
+ pythonImportsCheck = [
+ "qtawesome"
+ ];
+
meta = with lib; {
description = "Iconic fonts in PyQt and PySide applications";
homepage = "https://github.com/spyder-ide/qtawesome";
license = licenses.mit;
+ maintainers = with maintainers; [ ];
platforms = platforms.linux; # fails on Darwin
};
}
diff --git a/pkgs/development/python-modules/qtconsole/default.nix b/pkgs/development/python-modules/qtconsole/default.nix
index aae38c944958..5c618b418931 100644
--- a/pkgs/development/python-modules/qtconsole/default.nix
+++ b/pkgs/development/python-modules/qtconsole/default.nix
@@ -1,38 +1,57 @@
{ lib
, buildPythonPackage
, fetchPypi
-, nose
-, isPy27
-, mock
-, traitlets
+, ipykernel
, jupyter_core
, jupyter-client
, pygments
-, ipykernel
, pyqt5
+, pytestCheckHook
+, pythonOlder
+, pyzmq
, qtpy
+, traitlets
}:
buildPythonPackage rec {
pname = "qtconsole";
- version = "5.3.2";
+ version = "5.4.0";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-jq3wEug6sBgpWAPCR8arfqzT1aseHYig83/c/auSlaM=";
+ hash = "sha256-V3SOov0mMgoLd626IBMc+7E4GMfJbYP6/LEQ/1X1izU=";
};
- checkInputs = [ nose ] ++ lib.optionals isPy27 [mock];
- propagatedBuildInputs = [traitlets jupyter_core jupyter-client pygments ipykernel pyqt5 qtpy];
+ propagatedBuildInputs = [
+ ipykernel
+ jupyter_core
+ jupyter-client
+ pygments
+ pyqt5
+ pyzmq
+ qtpy
+ traitlets
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ ];
# : cannot connect to X server
doCheck = false;
- meta = {
+ pythonImportsCheck = [
+ "qtconsole"
+ ];
+
+ meta = with lib; {
description = "Jupyter Qt console";
- homepage = "https://jupyter.org/";
- license = lib.licenses.bsd3;
- platforms = lib.platforms.unix;
- maintainers = with lib.maintainers; [ fridh ];
+ homepage = "https://qtconsole.readthedocs.io/";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ fridh ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/development/python-modules/sensor-state-data/default.nix b/pkgs/development/python-modules/sensor-state-data/default.nix
index 20bd058fdf5a..1ef15fee0af3 100644
--- a/pkgs/development/python-modules/sensor-state-data/default.nix
+++ b/pkgs/development/python-modules/sensor-state-data/default.nix
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "sensor-state-data";
- version = "2.10.1";
+ version = "2.11.0";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "refs/tags/v${version}";
- hash = "sha256-pCo9CMX+CQBFuK5rbMHsxQEdBHvp1EZA7A9Ykm68NCw=";
+ hash = "sha256-znDEdXCWYmzk5xG1sSUyXRUhLGxtoBv46JcSnysu1A4=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/spidev/default.nix b/pkgs/development/python-modules/spidev/default.nix
index 90ca839bc1e0..2676563430b1 100644
--- a/pkgs/development/python-modules/spidev/default.nix
+++ b/pkgs/development/python-modules/spidev/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "spidev";
- version = "3.5";
+ version = "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "03cicc9kpi5khhq0bl4dcy8cjcl2j488mylp8sna47hnkwl5qzwa";
+ sha256 = "sha256-FNvDdZSkqu+FQDq2F5hdPD70ZNYrybdp71UttTcBEVs=";
};
# package does not include tests
diff --git a/pkgs/development/python-modules/spyder-kernels/default.nix b/pkgs/development/python-modules/spyder-kernels/default.nix
index 743be37b5130..f39b03763c81 100644
--- a/pkgs/development/python-modules/spyder-kernels/default.nix
+++ b/pkgs/development/python-modules/spyder-kernels/default.nix
@@ -1,30 +1,53 @@
-{ lib, buildPythonPackage, fetchPypi, cloudpickle, ipykernel, wurlitzer,
- jupyter-client, pyzmq }:
+{ lib
+, buildPythonPackage
+, cloudpickle
+, fetchPypi
+, ipykernel
+, ipython
+, jupyter-client
+, packaging
+, pythonOlder
+, pyxdg
+, pyzmq
+, wurlitzer
+}:
buildPythonPackage rec {
pname = "spyder-kernels";
- version = "2.3.3";
+ version = "2.4.0";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-7luJo7S/n88jDJRhJx1WuF5jhmeRHrrdxinbBbXuRxc=";
+ hash = "sha256-O9MvvjChUKucztvVvrbd04veHZqHeNpS9+30ILv7jlE=";
};
propagatedBuildInputs = [
cloudpickle
ipykernel
- wurlitzer
+ ipython
jupyter-client
+ packaging
+ pyxdg
pyzmq
+ wurlitzer
];
postPatch = ''
- substituteInPlace setup.py --replace "ipython>=7.31.1,<8" "ipython"
+ substituteInPlace setup.py \
+ --replace "ipykernel>=6.16.1,<7" "ipykernel" \
+ --replace "ipython>=7.31.1,<8" "ipython"
'';
# No tests
doCheck = false;
+ pythonImportsCheck = [
+ "spyder_kernels"
+ ];
+
meta = with lib; {
description = "Jupyter kernels for Spyder's console";
homepage = "https://docs.spyder-ide.org/current/ipythonconsole.html";
diff --git a/pkgs/development/python-modules/spyder/default.nix b/pkgs/development/python-modules/spyder/default.nix
index a5e11ebc6f00..bb744b2abab4 100644
--- a/pkgs/development/python-modules/spyder/default.nix
+++ b/pkgs/development/python-modules/spyder/default.nix
@@ -21,6 +21,7 @@
, psutil
, pygments
, pylint
+, pylint-venv
, pyls-spyder
, pyopengl
, pyqtwebengine
@@ -45,14 +46,14 @@
buildPythonPackage rec {
pname = "spyder";
- version = "5.3.3";
+ version = "5.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-vWhwn07zgHX7/7uAz0ekNwnAiKLECCBzBq47TtTaHfE=";
+ hash = "sha256-nZ+rw5qALSdu+nbaAtGA7PLW6XjcjeZvuPd4a5WtZkw=";
};
nativeBuildInputs = [
@@ -75,6 +76,7 @@ buildPythonPackage rec {
numpydoc
psutil
pygments
+ pylint-venv
pyls-spyder
pyopengl
pyqtwebengine
diff --git a/pkgs/development/python-modules/stestr/default.nix b/pkgs/development/python-modules/stestr/default.nix
index bb6dc7e54b20..29fa7497f627 100644
--- a/pkgs/development/python-modules/stestr/default.nix
+++ b/pkgs/development/python-modules/stestr/default.nix
@@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "stestr";
- version = "4.0.0";
+ version = "4.0.1";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-A2Y+q62KcxaoRJFo78WCVmpdOvnHf8QALX3IPnf28q0=";
+ sha256 = "sha256-wsHHO/x8/KORJxWeP7x0GTrr8s0C2KBCfy5YZI42zyY=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/stestr/tests.nix b/pkgs/development/python-modules/stestr/tests.nix
index 35fd1ce71a20..36935839e6ff 100644
--- a/pkgs/development/python-modules/stestr/tests.nix
+++ b/pkgs/development/python-modules/stestr/tests.nix
@@ -16,6 +16,9 @@ buildPythonPackage rec {
dontBuild = true;
dontInstall = true;
+ preConfigure = ''
+ pythonOutputDistPhase() { touch $dist; }
+ '';
checkInputs = [
stestr
diff --git a/pkgs/development/python-modules/threadpoolctl/default.nix b/pkgs/development/python-modules/threadpoolctl/default.nix
index c55bb1085309..5316c90c5d15 100644
--- a/pkgs/development/python-modules/threadpoolctl/default.nix
+++ b/pkgs/development/python-modules/threadpoolctl/default.nix
@@ -33,10 +33,14 @@ buildPythonPackage rec {
# developers' hardware
"test_architecture"
# https://github.com/joblib/threadpoolctl/issues/128
- "test_threadpool_limits_by_prefix"
- "test_controller_info_actualized"
"test_command_line_command_flag"
"test_command_line_import_flag"
+ "test_controller_info_actualized"
+ "test_set_threadpool_limits_by_api"
+ "test_set_threadpool_limits_no_limit"
+ "test_threadpool_limits_by_prefix"
+ "test_threadpool_limits_function_with_side_effect"
+ "test_threadpool_limits_manual_restore"
];
pythonImportsCheck = [
diff --git a/pkgs/development/python-modules/tox/default.nix b/pkgs/development/python-modules/tox/default.nix
index ea14b92abf5c..99df0fd57b4f 100644
--- a/pkgs/development/python-modules/tox/default.nix
+++ b/pkgs/development/python-modules/tox/default.nix
@@ -8,7 +8,9 @@
, virtualenv
, setuptools-scm
, toml
+, tomli
, filelock
+, pythonOlder
}:
buildPythonPackage rec {
@@ -16,7 +18,8 @@ buildPythonPackage rec {
version = "3.26.0";
buildInputs = [ setuptools-scm ];
- propagatedBuildInputs = [ packaging pluggy py six virtualenv toml filelock ];
+ propagatedBuildInputs = [ packaging pluggy py six virtualenv filelock ]
+ ++ lib.optional (pythonOlder "3.11") tomli;
doCheck = false;
diff --git a/pkgs/development/python-modules/types-typed-ast/default.nix b/pkgs/development/python-modules/types-typed-ast/default.nix
index 485c6b0d5af1..f9bc60a8b92c 100644
--- a/pkgs/development/python-modules/types-typed-ast/default.nix
+++ b/pkgs/development/python-modules/types-typed-ast/default.nix
@@ -5,12 +5,12 @@
buildPythonPackage rec {
pname = "types-typed-ast";
- version = "1.5.8";
+ version = "1.5.8.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
- hash = "sha256-FW+6ypA+hXH+cLsLVi/7qSp8vbe6yacTNRyifYgYO6c=";
+ hash = "sha256-9kwV7ATAkRgZrEwP0AUnlRMgAfv16iPR1+T+rX3km/w=";
};
# Module doesn't have tests
diff --git a/pkgs/development/python-modules/zamg/default.nix b/pkgs/development/python-modules/zamg/default.nix
index 474907593a6c..11066aa26332 100644
--- a/pkgs/development/python-modules/zamg/default.nix
+++ b/pkgs/development/python-modules/zamg/default.nix
@@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "zamg";
- version = "0.1.1";
+ version = "0.1.2";
format = "pyproject";
disabled = pythonOlder "3.8";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = "killer0071234";
repo = "python-zamg";
rev = "refs/tags/v${version}";
- hash = "sha256-mVJ1zuh3v803XgynQiUvt6whTmXxGS7SEtr6IDm4kz4=";
+ hash = "sha256-R3byV8llg7X+KYuYTsEtdLSFfLsPD4tyqAaU0CifDks=";
};
postPatch = ''
diff --git a/pkgs/development/tools/build-managers/rocm-cmake/default.nix b/pkgs/development/tools/build-managers/rocm-cmake/default.nix
index efd2e3a05e53..0c61324beebd 100644
--- a/pkgs/development/tools/build-managers/rocm-cmake/default.nix
+++ b/pkgs/development/tools/build-managers/rocm-cmake/default.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "rocm-cmake";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix
index f8d23d3fcec0..e73587ece3c9 100644
--- a/pkgs/development/tools/continuous-integration/jenkins/default.nix
+++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
pname = "jenkins";
- version = "2.361.2";
+ version = "2.361.3";
src = fetchurl {
url = "https://get.jenkins.io/war-stable/${version}/jenkins.war";
- hash = "sha256-QRp5x+DVCCdFBx4mEIE0aqTKJ/ZJ/rBBdW0dJ6mD2/Y=";
+ hash = "sha256-85y40J/RfHLcCWURzlDyRfwwBNECKqr2BCGlNvdAybk=";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/development/tools/doctl/default.nix b/pkgs/development/tools/doctl/default.nix
index 22b60c5e8e6c..ab83d20b5a79 100644
--- a/pkgs/development/tools/doctl/default.nix
+++ b/pkgs/development/tools/doctl/default.nix
@@ -2,7 +2,7 @@
buildGoModule rec {
pname = "doctl";
- version = "1.84.1";
+ version = "1.85.0";
vendorSha256 = null;
@@ -31,7 +31,7 @@ buildGoModule rec {
owner = "digitalocean";
repo = "doctl";
rev = "v${version}";
- sha256 = "sha256-F1vavqdBeKVWKWQTrgqT6NIGduAcFc42rl0rG8SEdLs=";
+ sha256 = "sha256-zA+9RpGGiRlu/xQoKjkI5zg6d2fPR7WKW0Sj2ggSypA=";
};
meta = with lib; {
diff --git a/pkgs/development/tools/just/default.nix b/pkgs/development/tools/just/default.nix
index c332cc61b43a..a03586c48166 100644
--- a/pkgs/development/tools/just/default.nix
+++ b/pkgs/development/tools/just/default.nix
@@ -10,16 +10,16 @@
rustPlatform.buildRustPackage rec {
pname = "just";
- version = "1.7.0";
+ version = "1.8.0";
src = fetchFromGitHub {
owner = "casey";
repo = pname;
rev = version;
- hash = "sha256-W8ko9hzZmgF8XEqzbPtCJp5J38m0pAz5wTp3VRUmZOQ=";
+ hash = "sha256-mzVwdvMYpThSPGvM3hpuKzeHZW5HOwkEfONIN/aziXY=";
};
- cargoSha256 = "sha256-rC+PcLQHjnaGSEELod6IF9NTCl0tnXvOOkHF0z77Lao=";
+ cargoSha256 = "sha256-dDaXmJ4wFJaE59qR5Bxvoz/Jrwt6hhWhJI8wLRXCLcU=";
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
diff --git a/pkgs/development/tools/karate/default.nix b/pkgs/development/tools/karate/default.nix
index 2dd409674019..cda508c9df36 100644
--- a/pkgs/development/tools/karate/default.nix
+++ b/pkgs/development/tools/karate/default.nix
@@ -2,11 +2,11 @@
stdenvNoCC.mkDerivation rec {
pname = "karate";
- version = "1.2.0";
+ version = "1.3.0";
src = fetchurl {
url = "https://github.com/karatelabs/karate/releases/download/v${version}/karate-${version}.jar";
- sha256 = "69b9ba1cd9563cbad802471e7250dd46828df7ad176706577389dfe6e604e5ec";
+ sha256 = "sha256-uQHE8Mf70t7gtALdxO1tltUkwEKx0emWWliZEzwGW+Q=";
};
dontUnpack = true;
diff --git a/pkgs/development/tools/misc/universal-ctags/000-nixos-specific.patch b/pkgs/development/tools/misc/universal-ctags/000-nixos-specific.patch
new file mode 100644
index 000000000000..8445b36b204a
--- /dev/null
+++ b/pkgs/development/tools/misc/universal-ctags/000-nixos-specific.patch
@@ -0,0 +1,14 @@
+This small Nix-specific patch removes a source of impurity from source code,
+namely the date and time of compilation.
+
+diff -Naur uctags-old/main/options.c uctags-new/main/options.c
+--- uctags-old/main/options.c 1969-12-31 21:00:01.000000000 -0300
++++ uctags-new/main/options.c 2022-11-06 11:43:00.028550121 -0300
+@@ -1609,7 +1609,6 @@
+ printf ("Universal Ctags is derived from Exuberant Ctags.\n");
+ printf ("Exuberant Ctags 5.8, Copyright (C) 1996-2009 Darren Hiebert\n");
+
+- printf (" Compiled: %s, %s\n", __DATE__, __TIME__);
+ printf (" URL: %s\n", PROGRAM_URL);
+
+ printFeatureList ();
diff --git a/pkgs/development/tools/misc/universal-ctags/default.nix b/pkgs/development/tools/misc/universal-ctags/default.nix
index f91b5e8b967a..362c1cbcb9d0 100644
--- a/pkgs/development/tools/misc/universal-ctags/default.nix
+++ b/pkgs/development/tools/misc/universal-ctags/default.nix
@@ -1,55 +1,83 @@
-{ lib, stdenv, buildPackages, fetchFromGitHub, autoreconfHook, coreutils, pkg-config, perl, python3Packages, libiconv, jansson }:
+{ lib
+, stdenv
+, autoreconfHook
+, buildPackages
+, coreutils
+, fetchFromGitHub
+, jansson
+, libiconv
+, perl
+, pkg-config
+, python3
+, libseccomp
+, libyaml
+, pcre2
+, libxml2
+}:
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
pname = "universal-ctags";
- version = "5.9.20220814.0";
+ version = "5.9.20221106.0";
src = fetchFromGitHub {
owner = "universal-ctags";
repo = "ctags";
- rev = "p${version}";
- sha256 = "sha256-U1PjmBb99v7N+Dd7n2r1Xx09yflf0OxRlb4f1Sg0UvI=";
+ rev = "p${finalAttrs.version}";
+ hash = "sha256-6piWdofvlX+ysXmRPnQc7PlZuHSyVqdVxOztY2+Pcss=";
};
- depsBuildBuild = [ buildPackages.stdenv.cc ];
- nativeBuildInputs = [ autoreconfHook pkg-config python3Packages.docutils ];
- buildInputs = [ jansson ] ++ lib.optional stdenv.isDarwin libiconv;
+ depsBuildBuild = [
+ buildPackages.stdenv.cc
+ ];
- # to generate makefile.in
- autoreconfPhase = ''
- ./autogen.sh
- '';
+ nativeBuildInputs = [
+ autoreconfHook
+ perl
+ pkg-config
+ (python3.withPackages (p: [ p.docutils ]))
+ ];
+
+ buildInputs = [
+ libseccomp
+ libyaml
+ pcre2
+ libxml2
+ jansson
+ ]
+ ++ lib.optional stdenv.isDarwin libiconv;
configureFlags = [ "--enable-tmpdir=/tmp" ];
- postPatch = ''
- # Remove source of non-determinism
- substituteInPlace main/options.c \
- --replace "printf (\" Compiled: %s, %s\n\", __DATE__, __TIME__);" ""
+ patches = [
+ ./000-nixos-specific.patch
+ ];
+ postPatch = ''
substituteInPlace Tmain/utils.sh \
--replace /bin/echo ${coreutils}/bin/echo
- # Remove git-related housekeeping from check phase
- substituteInPlace makefiles/testing.mak \
- --replace "check: tmain units tlib man-test check-genfile" \
- "check: tmain units tlib man-test"
- '';
-
- postConfigure = ''
- sed -i 's|/usr/bin/env perl|${perl}/bin/perl|' misc/optlib2c
+ patchShebangs misc/*
'';
doCheck = true;
+ checkFlags = [
+ "man-test" "tlib" "tmain" "tutil" "units"
+ ];
+
meta = with lib; {
+ homepage = "https://docs.ctags.io/en/latest/";
description = "A maintained ctags implementation";
- homepage = "https://ctags.io/";
+ longDescription = ''
+ Universal Ctags (abbreviated as u-ctags) is a maintained implementation of
+ ctags. ctags generates an index (or tag) file of language objects found in
+ source files for programming languages. This index makes it easy for text
+ editors and other tools to locate the indexed items.
+ '';
license = licenses.gpl2Plus;
+ maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.unix;
- # universal-ctags is preferred over emacs's ctags
- priority = 1;
mainProgram = "ctags";
- maintainers = [ maintainers.mimame ];
+ priority = 1; # over the emacs implementation
};
-}
+})
diff --git a/pkgs/development/tools/misc/universal-ctags/sed-test.patch b/pkgs/development/tools/misc/universal-ctags/sed-test.patch
deleted file mode 100644
index 7c44d699d79a..000000000000
--- a/pkgs/development/tools/misc/universal-ctags/sed-test.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/Tmain/sorted-help-message.d/run.sh 2017-01-10 11:20:51.515093465 +0100
-+++ b/Tmain/sorted-help-message.d/run.sh 2017-01-10 11:17:56.639213720 +0100
-@@ -27,7 +27,7 @@
- extract_long_options()
- {
- sed -n '/Usage:/,$p' | \
-- sed -n 's/\(^ --[:alnum:][<>[:alnum:]_-]*\).*/\1/p'
-+ sed -n 's/\(^ --[[:alnum:]][<>[:alnum:]_-]*\).*/\1/p'
- }
-
- extract_debug_options()
-
diff --git a/pkgs/development/tools/mold/default.nix b/pkgs/development/tools/mold/default.nix
index 40fb37f9d870..16ba7a95ea29 100644
--- a/pkgs/development/tools/mold/default.nix
+++ b/pkgs/development/tools/mold/default.nix
@@ -48,7 +48,5 @@ stdenv.mkDerivation rec {
license = licenses.agpl3Plus;
maintainers = with maintainers; [ azahi nitsky ];
platforms = platforms.unix;
- # https://github.com/NixOS/nixpkgs/pull/189712#issuecomment-1237791234
- broken = (stdenv.isLinux && stdenv.isAarch64);
};
}
diff --git a/pkgs/development/tools/rocminfo/default.nix b/pkgs/development/tools/rocminfo/default.nix
index 1761227045b7..078c4aa71d91 100644
--- a/pkgs/development/tools/rocminfo/default.nix
+++ b/pkgs/development/tools/rocminfo/default.nix
@@ -7,7 +7,7 @@
# compilers to determine the desired target.
, defaultTargets ? []}:
stdenv.mkDerivation rec {
- version = "5.3.0";
+ version = "5.3.1";
pname = "rocminfo";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
diff --git a/pkgs/development/tools/ruff/default.nix b/pkgs/development/tools/ruff/default.nix
index 5ff02a25d3d3..8ba76af4f1e2 100644
--- a/pkgs/development/tools/ruff/default.nix
+++ b/pkgs/development/tools/ruff/default.nix
@@ -8,16 +8,16 @@
rustPlatform.buildRustPackage rec {
pname = "ruff";
- version = "0.0.100";
+ version = "0.0.102";
src = fetchFromGitHub {
owner = "charliermarsh";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-kFWYSaRKx63X6Nfxd1knkusiJRKVRTNdd1jOQXBCRFQ=";
+ sha256 = "sha256-vYN73RcVwu2gwa+09wPqeIvqAx/SHnpe5m6fuXrK1ts=";
};
- cargoSha256 = "sha256-eew1ZTCm/C3qY/eZvWYkcLprgM/cRaTb6e2O66SNwk8=";
+ cargoSha256 = "sha256-6CBadq+VuUhUvzjgTo+qRy5RsoLotEWuR4+lyf9YFjU=";
buildInputs = lib.optionals stdenv.isDarwin [
CoreServices
diff --git a/pkgs/development/tools/rust/svd2rust/default.nix b/pkgs/development/tools/rust/svd2rust/default.nix
index 6bc79e163fb8..e05057a629a6 100644
--- a/pkgs/development/tools/rust/svd2rust/default.nix
+++ b/pkgs/development/tools/rust/svd2rust/default.nix
@@ -2,14 +2,14 @@
rustPlatform.buildRustPackage rec {
pname = "svd2rust";
- version = "0.27.1";
+ version = "0.27.2";
src = fetchCrate {
inherit pname version;
- sha256 = "sha256-Tnow5NjeDyz4oMY+UMs2TDquLTioElhSNzbC6eEYpTs=";
+ sha256 = "sha256-6HcJ9NPUPcVLZT8zpYxIPJ4UkqwaqPNWva8/wnaUrt8=";
};
- cargoSha256 = "sha256-sN3uJTU9h9Ls2fygz6My3hao77lQFdNkA0gkUevV7Jc=";
+ cargoSha256 = "sha256-fsLRpRvdiZyOsxnfAc5xt63rLW5lwwQt+lxmZT7XIAc=";
meta = with lib; {
description = "Generate Rust register maps (`struct`s) from SVD files";
diff --git a/pkgs/games/classicube/default.nix b/pkgs/games/classicube/default.nix
index 84ce22a51a01..05a5fa11931a 100644
--- a/pkgs/games/classicube/default.nix
+++ b/pkgs/games/classicube/default.nix
@@ -12,13 +12,13 @@
stdenv.mkDerivation rec {
pname = "ClassiCube";
- version = "1.3.3";
+ version = "1.3.4";
src = fetchFromGitHub {
owner = "UnknownShadow200";
repo = "ClassiCube";
rev = version;
- sha256 = "a31e95a7f49e58aaf4271015dd60730fc74d9776dfac425a8f14eb64cdcd9944";
+ sha256 = "sha256-m7pg9OL2RuCVKgFD3hMtIeY0XdJ1YviXBFVJH8/T5gI=";
};
nativeBuildInputs = [ dos2unix makeWrapper ];
diff --git a/pkgs/games/warzone2100/default.nix b/pkgs/games/warzone2100/default.nix
index 2df306d686f2..4adb079ebaa0 100644
--- a/pkgs/games/warzone2100/default.nix
+++ b/pkgs/games/warzone2100/default.nix
@@ -11,6 +11,7 @@
, SDL2
, libtheora
, libvorbis
+, libopus
, openal
, openalSoft
, physfs
@@ -42,17 +43,18 @@ in
stdenv.mkDerivation rec {
inherit pname;
- version = "4.2.7";
+ version = "4.3.1";
src = fetchurl {
url = "mirror://sourceforge/${pname}/releases/${version}/${pname}_src.tar.xz";
- sha256 = "sha256-f1J84A7aRAmbGn48MD7eJ2+DX21q2UWwYAoXXdq7ALA=";
+ sha256 = "sha256-GdHe8DskEd0G1E388z8GGOtjTqHTMBpFSxf1MNATGN0=";
};
buildInputs = [
SDL2
libtheora
libvorbis
+ libopus
openal
openalSoft
physfs
diff --git a/pkgs/misc/cups/drivers/cups-drv-rastertosag-gdi/default.nix b/pkgs/misc/cups/drivers/cups-drv-rastertosag-gdi/default.nix
index d49143655459..4f1ad6c9911e 100644
--- a/pkgs/misc/cups/drivers/cups-drv-rastertosag-gdi/default.nix
+++ b/pkgs/misc/cups/drivers/cups-drv-rastertosag-gdi/default.nix
@@ -3,6 +3,7 @@
, fetchpatch
, cups
, python3Packages
+, patchPpdFilesHook
}:
python3Packages.buildPythonApplication rec {
@@ -20,9 +21,9 @@ python3Packages.buildPythonApplication rec {
})
];
format = "other";
- nativeBuildInputs = [ (lib.getBin cups) ];
+ nativeBuildInputs = [ (lib.getBin cups) patchPpdFilesHook ];
# The source image also brings pre-built ppd files,
- # be we prefer to generate from source where possible, so
+ # but we prefer to generate from source where possible, so
# the following line generates ppd files from the drv file.
postBuild = ''
ppdc -v -d . -I "${cups}/share/cups/ppdc" rastertosag-gdi.drv
@@ -35,6 +36,10 @@ python3Packages.buildPythonApplication rec {
ln -vst "${placeholder "out"}/lib/cups/filter/" "${placeholder "out"}/bin/rastertosag-gdi"
runHook postInstall
'';
+ ppdFileCommands = [ "rastertosag-gdi" ];
+ postFixup = ''
+ gzip -9nv "${placeholder "out"}/share/cups/model/rastertosag-gdi"/*.ppd
+ '';
meta = {
description = "CUPS driver for Ricoh Aficio SP 1000S and SP 1100S printers";
downloadPage = "https://www.openprinting.org/download/printing/rastertosag-gdi/";
diff --git a/pkgs/misc/cups/drivers/foomatic-db-engine/default.nix b/pkgs/misc/cups/drivers/foomatic-db-engine/default.nix
new file mode 100644
index 000000000000..b5e107ebf37f
--- /dev/null
+++ b/pkgs/misc/cups/drivers/foomatic-db-engine/default.nix
@@ -0,0 +1,94 @@
+{ lib
+, perlPackages
+, fetchFromGitHub
+, withCupsAccess ? false # needed to access local cups server
+, cups
+, cups-filters
+, curl
+, withSocketAccess ? false # needed to access network printers
+, netcat-gnu
+, withSMBAccess ? false # needed to access SMB-connected printers
+, samba
+, autoconf
+, automake
+, file
+, makeWrapper
+}:
+
+perlPackages.buildPerlPackage {
+ pname = "foomatic-db-engine";
+ version = "unstable-2022-05-03";
+
+ src = fetchFromGitHub {
+ # there is also a daily snapshot at the `downloadPage`,
+ # but it gets deleted quickly and would provoke 404 errors
+ owner = "OpenPrinting";
+ repo = "foomatic-db-engine";
+ rev = "2e6f14b54748fa121a4d2e3d480010e10b070c5a";
+ hash = "sha256-m7FQTxWmawbtm24h8UqznGKXgX41JhOtyyFMRwEhm5k=";
+ };
+
+ outputs = [ "out" ];
+
+ propagatedBuildInputs = [
+ perlPackages.Clone
+ perlPackages.DBI
+ perlPackages.XMLLibXML
+ ];
+
+ buildInputs =
+ # provide some "cups-*" commands to `foomatic-{configure,printjob}`
+ # so that they can manage a local cups server (add queues, add jobs...)
+ lib.optionals withCupsAccess [ cups cups-filters curl ]
+ # the commands `foomatic-{configure,getpjloptions}` need
+ # netcat if they are used to query or alter a network
+ # printer via AppSocket/HP JetDirect protocol
+ ++ lib.optional withSocketAccess netcat-gnu
+ # `foomatic-configure` can be used to access printers that are
+ # shared via the SMB protocol, but it needs the `smbclient` binary
+ ++ lib.optional withSMBAccess samba
+ ;
+
+ nativeBuildInputs = [ autoconf automake file makeWrapper ];
+
+ # sed-substitute indirection is more robust against
+ # characters in paths that might need escaping
+ prePatch = ''
+ sed -Ei 's|^(S?BINSEARCHPATH=).+$|\1"@PATH@"|g' configure.ac
+ substituteInPlace configure.ac --subst-var PATH
+ touch Makefile.PL # `buildPerlPackage` fails unless this exists
+ '';
+
+ preConfigure = ''
+ ./make_configure
+ '';
+
+ configureFlags = [
+ "--sysconfdir=${placeholder "out"}/etc"
+ "LIBDIR=${placeholder "out"}/share/foomatic"
+ "PERLPREFIX=${placeholder "out"}"
+ ];
+
+ postFixup = ''
+ for bin in "${placeholder "out"}/bin"/*; do
+ test '!' -L "$bin" || continue # skip symlink
+ wrapProgram "$bin" --set PERL5LIB "$PERL5LIB"
+ done
+ '';
+
+ doCheck = false; # no tests, would fail
+
+ meta = {
+ description = "OpenPrinting printer support database engine";
+ downloadPage = "https://www.openprinting.org/download/foomatic/";
+ homepage = "https://openprinting.github.io/projects/02-foomatic/";
+ license = lib.licenses.gpl2Only;
+ maintainers = [ lib.maintainers.yarny ];
+ longDescription = ''
+ Foomatic's database engine generates PPD files
+ from the data in Foomatic's XML database.
+ It also contains scripts to directly
+ generate print queues and handle jobs.
+ '';
+ };
+}
diff --git a/pkgs/misc/cups/drivers/foomatic-db-nonfree/default.nix b/pkgs/misc/cups/drivers/foomatic-db-nonfree/default.nix
new file mode 100644
index 000000000000..1c38ae38b98a
--- /dev/null
+++ b/pkgs/misc/cups/drivers/foomatic-db-nonfree/default.nix
@@ -0,0 +1,86 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoconf
+, automake
+, perl
+}:
+
+stdenv.mkDerivation {
+ pname = "foomatic-db-nonfree";
+ version = "unstable-2015-06-05";
+
+ src = fetchFromGitHub {
+ # there is also a daily snapshot at the `downloadPage`,
+ # but it gets deleted quickly and would provoke 404 errors
+ owner = "OpenPrinting";
+ repo = "foomatic-db-nonfree";
+ rev = "6ddae02ac89240c019f8b5026cfe70e30fd2b3db";
+ hash = "sha256-cRZH0CXg03FEqUJdxaNnPVXjf8+ct86PjhL59WQbw60=";
+ };
+
+ nativeBuildInputs = [ autoconf automake perl ];
+
+ # sed-substitute indirection is more robust against
+ # characters in paths that might need escaping
+ postPatch = ''
+ sed -Ei -e 's|^(S?BINSEARCHPATH=).+$|\1"@PATH@"|g' \
+ -e 's|^(DATASEARCHPATH=).+$|\1"@DATA@"|g' configure.ac
+ substituteInPlace configure.ac \
+ --subst-var PATH \
+ --subst-var-by DATA "${placeholder "out"}/share"
+ '';
+
+ preConfigure = ''
+ mkdir -p "${placeholder "out"}/share/foomatic/db/source"
+ ./make_configure
+ '';
+
+ # make ppd files available to cups,
+ # use a package-specific subdirectory to avoid
+ # conflicts with other ppd-containing packages
+ postInstall = ''
+ if ! [[ -d "${placeholder "out"}/share/foomatic/db/source/PPD" ]]; then
+ echo "failed to create share/foomatic/db/source/PPD"
+ exit 1
+ fi
+ mkdir -p "${placeholder "out"}/share/cups/model"
+ ln -s "${placeholder "out"}/share/foomatic/db/source/PPD" \
+ "${placeholder "out"}/share/cups/model/foomatic-db-nonfree"
+ '';
+
+ # we might patch ppd file commands with `patchPpdFilesHook`,
+ # but the only command "rastertophaser6100" isn't packaged yet
+
+ # compress ppd files
+ postFixup = ''
+ echo 'compressing ppd files'
+ find -H "${placeholder "out"}/share/cups/model/foomatic-db-nonfree" -type f -iname '*.ppd' -print0 \
+ | xargs -0r -n 64 -P "$NIX_BUILD_CORES" gzip -9n
+ '';
+
+ meta = {
+ description = "OpenPrinting printer support database (unfree content)";
+ downloadPage = "https://www.openprinting.org/download/foomatic/";
+ homepage = "https://openprinting.github.io/projects/02-foomatic/";
+ license = lib.licenses.unfree;
+ maintainers = [ lib.maintainers.yarny ];
+ # list printer manufacturers here so people
+ # searching for ppd files can find this package
+ longDescription = ''
+ The collected knowledge about printers,
+ drivers, and driver options in XML files,
+ used by `foomatic-db-engine` to generate PPD files.
+ This is a package of PPD and Foomatic XML files
+ that may have restrictions that keep them
+ from being used on a variety of machines
+ for licensing and other non-technical reasons.
+ The XML files in this package enable `foomatic-db-ppds`
+ to create about 120 additional PPD files, for printer from
+ Dell, Genicom, Lexmark, Oce, Tektronix and Xerox.
+ Besides the XML files, this package contains
+ about 130 PPD files, for printers from
+ Dell, Genicom, Lexmark, Oce and Xerox.
+ '';
+ };
+}
diff --git a/pkgs/misc/cups/drivers/foomatic-db-ppds/default.nix b/pkgs/misc/cups/drivers/foomatic-db-ppds/default.nix
new file mode 100644
index 000000000000..bdc1e0a9b5fe
--- /dev/null
+++ b/pkgs/misc/cups/drivers/foomatic-db-ppds/default.nix
@@ -0,0 +1,122 @@
+{ lib
+, foomatic-db
+, foomatic-db-nonfree
+, buildEnv
+, foomatic-db-engine
+, stdenv
+, cups-filters
+, ghostscript
+, netpbm
+, perl
+, psutils
+, patchPpdFilesHook
+, withNonfreeDb ? false # include foomatic-db-nonfree ppd files
+}:
+
+let
+ foomatic-db-packages = [ foomatic-db ] ++
+ lib.lists.optional withNonfreeDb foomatic-db-nonfree;
+
+ foomatic-db-combined = buildEnv {
+ name = "foomatic-db-combined";
+ paths = foomatic-db-packages;
+ pathsToLink = [ "/share/foomatic" ];
+ # `foomatic-db-combined` is a nativeBuildInput of `foomatic-db-ppds`.
+ # The setup hook defined here helps scripts in
+ # `foomatic-db-engine` to find the database.
+ postBuild = ''
+ mkdir -p "${placeholder "out"}"/{etc/cups,nix-support}
+ cat >> "${placeholder "out"}/nix-support/setup-hook" << eof
+ export FOOMATICDB="${placeholder "out"}/share/foomatic"
+ eof
+ '';
+ };
+
+ # the effective license is `free` if all database
+ # packages have free licenses, `unfree` otherwise
+ isFree = lib.trivial.pipe foomatic-db-packages [
+ (lib.lists.map (lib.attrsets.attrByPath [ "meta" "license" ] lib.licenses.unfree))
+ (lib.lists.all (lib.attrsets.attrByPath [ "free" ] true))
+ ];
+in
+
+stdenv.mkDerivation {
+ pname = "foomatic-db-ppds";
+ # the effective version is simply the
+ # highest version of all database packages
+ version = lib.trivial.pipe foomatic-db-packages [
+ (lib.lists.map (lib.attrsets.getAttr "version"))
+ (lib.lists.sort lib.strings.versionOlder)
+ lib.lists.reverseList
+ lib.lists.head
+ ];
+
+ buildInputs = [
+ cups-filters
+ ghostscript
+ netpbm
+ perl
+ psutils
+ ];
+
+ nativeBuildInputs = [
+ foomatic-db-combined
+ foomatic-db-engine
+ patchPpdFilesHook
+ ];
+
+ dontUnpack = true;
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p "${placeholder "out"}/share/cups/model"
+ foomatic-compiledb -j "$NIX_BUILD_CORES" -d "${placeholder "out"}/share/cups/model/foomatic-db-ppds"
+ runHook postInstall
+ '';
+
+ # Comments indicate the respective
+ # package the command is contained in.
+ ppdFileCommands = [
+ "cat" "echo" # coreutils
+ "foomatic-rip" # cups-filters or foomatic-filters
+ "gs" # ghostscript
+ "pnmflip" "pnmgamma" "pnmnoraw" # netpbm
+ "perl" # perl
+ "psresize" # psutils
+ # These commands aren't packaged yet.
+ # ppd files using these likely won't work.
+ #"c2050" "c2070" "cjet" "lm1100"
+ #"pbm2l2030" "pbm2lwxl" "rastertophaser6100"
+ ];
+
+ # compress ppd files
+ postFixup = ''
+ echo 'compressing ppd files'
+ find -H "${placeholder "out"}/share/cups/model/foomatic-db-ppds" -type f -iname '*.ppd' -print0 \
+ | xargs -0r -n 64 -P "$NIX_BUILD_CORES" gzip -9n
+ '';
+
+ meta = {
+ description = "OpenPrinting ppd files";
+ homepage = "https://openprinting.github.io/projects/02-foomatic/";
+ license = if isFree then lib.licenses.free else lib.licenses.unfree;
+ maintainers = [ lib.maintainers.yarny ];
+ # list printer manufacturers here so people
+ # searching for ppd files can find this package
+ longDescription = ''
+ All PPD files available in
+ OpenPrinting's Foomatic database.
+ This package contains about 8,800 PPD files,
+ for printers from
+ Alps, Anitech, Apollo, Apple, Avery, Brother, Canon,
+ Citizen, CItoh, Compaq, DEC, Dell, Dymo-CoStar, Epson,
+ Fujitsu, FujiXerox, Generic, Genicom, Gestetner,
+ Heidelberg, Hitachi, HP, IBM, Imagen, Imagistics,
+ InfoPrint, Infotec, Kodak, KONICAMINOLTA, Kyocera, Lanier,
+ Lexmark, Minolta, MinoltaQMS, Mitsubishi, NEC, NRG, Oce,
+ Oki, Olivetti, Panasonic, PCPI, Pentax, QMS, Raven, Ricoh,
+ Samsung, Savin, Seiko, Sharp, SiPix, Sony, Star, Tally,
+ Tektronix, TexasInstruments, Toshiba, Xante and Xerox.
+ '';
+ };
+}
diff --git a/pkgs/misc/cups/drivers/foomatic-db/default.nix b/pkgs/misc/cups/drivers/foomatic-db/default.nix
new file mode 100644
index 000000000000..dd76fb1ee05b
--- /dev/null
+++ b/pkgs/misc/cups/drivers/foomatic-db/default.nix
@@ -0,0 +1,102 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cups
+, cups-filters
+, ghostscript
+, gnused
+, perl
+, autoconf
+, automake
+, patchPpdFilesHook
+}:
+
+stdenv.mkDerivation {
+ pname = "foomatic-db";
+ version = "unstable-2022-10-03";
+
+ src = fetchFromGitHub {
+ # there is also a daily snapshot at the `downloadPage`,
+ # but it gets deleted quickly and would provoke 404 errors
+ owner = "OpenPrinting";
+ repo = "foomatic-db";
+ rev = "2a3c4d1bf7eadc42f936ce8989c1dd2973ea9669";
+ hash = "sha256-in0/j1nAQvM0NowBIBx3jj5WVMPIfZAeAk1SkuA3tjA=";
+ };
+
+ buildInputs = [ cups cups-filters ghostscript gnused perl ];
+
+ nativeBuildInputs = [ autoconf automake patchPpdFilesHook perl ];
+
+ # sed-substitute indirection is more robust
+ # against characters in paths that might need escaping
+ postPatch = ''
+ sed -Ei -e 's|^(S?BINSEARCHPATH=).+$|\1"@PATH@"|g' \
+ -e 's|^(DATASEARCHPATH=).+$|\1"@DATA@"|g' configure.ac
+ substituteInPlace configure.ac \
+ --subst-var PATH \
+ --subst-var-by DATA "${placeholder "out"}/share"
+ '';
+
+ preConfigure = ''
+ mkdir -p "${placeholder "out"}/share/foomatic/db/source"
+ ./make_configure
+ '';
+
+ # don't let the intaller gzip ppd files as we would
+ # have to unzip them later in order to patch them
+ configureFlags = [ "--disable-gzip-ppds" ];
+
+ # make ppd files available to cups,
+ # use a package-specific subdirectory to avoid
+ # conflicts with other ppd-containing packages
+ postInstall = ''
+ if ! [[ -d "${placeholder "out"}/share/foomatic/db/source/PPD" ]]; then
+ echo "failed to create share/foomatic/db/source/PPD"
+ exit 1
+ fi
+ mkdir -p "${placeholder "out"}/share/cups/model"
+ ln -s "${placeholder "out"}/share/foomatic/db/source/PPD" \
+ "${placeholder "out"}/share/cups/model/foomatic-db"
+ '';
+
+ # Comments indicate the respective
+ # package the command is contained in.
+ ppdFileCommands = [
+ "cat" "date" "printf" # coreutils
+ "rastertohp" # cups
+ "foomatic-rip" # cups-filters or foomatic-filters
+ "gs" # ghostscript
+ "sed" # gnused
+ "perl" # perl
+ ];
+
+ # compress ppd files
+ postFixup = ''
+ echo 'compressing ppd files'
+ find -H "${placeholder "out"}/share/cups/model/foomatic-db" -type f -iname '*.ppd' -print0 \
+ | xargs -0r -n 64 -P "$NIX_BUILD_CORES" gzip -9n
+ '';
+
+ meta = {
+ description = "OpenPrinting printer support database (free content)";
+ downloadPage = "https://www.openprinting.org/download/foomatic/";
+ homepage = "https://openprinting.github.io/projects/02-foomatic/";
+ license = lib.licenses.free; # mostly GPL and MIT, see README in source dir
+ maintainers = [ lib.maintainers.yarny ];
+ # list printer manufacturers here so people
+ # searching for ppd files can find this package
+ longDescription = ''
+ The collected knowledge about printers,
+ drivers, and driver options in XML files,
+ used by `foomatic-db-engine` to generate PPD files.
+ PPD files generated from the XML files in this package
+ are contained in the package 'foomatic-db-ppds'.
+ Besides the XML files, this package contains
+ about 6,600 PPD files, for printers from
+ Brother, Canon, Epson, Gestetner, HP, InfoPrint,
+ Infotec, KONICA_MINOLTA, Kyocera, Lanier, Lexmark, NRG,
+ Oce, Oki, Ricoh, Samsung, Savin, Sharp, Toshiba and Utax.
+ '';
+ };
+}
diff --git a/pkgs/misc/cups/drivers/kyocera/default.nix b/pkgs/misc/cups/drivers/kyocera/default.nix
index 28b2a1281761..0a560e3188f6 100644
--- a/pkgs/misc/cups/drivers/kyocera/default.nix
+++ b/pkgs/misc/cups/drivers/kyocera/default.nix
@@ -1,4 +1,9 @@
-{ stdenv, lib, fetchzip, cups }:
+{ lib
+, stdenv
+, cups
+, fetchzip
+, patchPpdFilesHook
+}:
let
platform =
@@ -23,7 +28,11 @@ stdenv.mkDerivation {
sha256 = "0z1pbgidkibv4j21z0ys8cq1lafc6687syqa07qij2qd8zp15wiz";
};
+ nativeBuildInputs = [ patchPpdFilesHook ];
+
installPhase = ''
+ runHook preInstall
+
tar -xvf ${platform}/Global/English.tar.gz
install -Dm755 English/rastertokpsl $out/lib/cups/filter/rastertokpsl
patchelf \
@@ -33,13 +42,13 @@ stdenv.mkDerivation {
mkdir -p $out/share/cups/model/Kyocera
cd English
- for i in *.ppd; do
- sed -i $i -e \
- "s,/usr/lib/cups/filter/rastertokpsl,$out/lib/cups/filter/rastertokpsl,g"
- cp $i $out/share/cups/model/Kyocera
- done;
+ cp *.ppd $out/share/cups/model/Kyocera
+
+ runHook postInstall
'';
+ ppdFileCommands = [ "rastertokpsl" ];
+
meta = with lib; {
description = "CUPS drivers for several Kyocera FS-{1020,1025,1040,1060,1120,1125} printers";
homepage = "https://www.kyoceradocumentsolutions.ru/index/service_support/download_center.false.driver.FS1040._.EN.html#";
diff --git a/pkgs/misc/cups/drivers/samsung/1.00.36/default.nix b/pkgs/misc/cups/drivers/samsung/1.00.36/default.nix
index fac3dfccba62..47700265231f 100644
--- a/pkgs/misc/cups/drivers/samsung/1.00.36/default.nix
+++ b/pkgs/misc/cups/drivers/samsung/1.00.36/default.nix
@@ -23,6 +23,7 @@ in stdenv.mkDerivation rec {
];
installPhase = ''
+ runHook preInstall
mkdir -p $out/bin
cp -R ${arch}/{gettext,pstosecps,rastertospl,smfpnetdiscovery,usbresetter} $out/bin
@@ -82,6 +83,8 @@ in stdenv.mkDerivation rec {
cd $out/share/cups
ln -s ../ppd .
ln -s ppd model
+
+ runHook postInstall
'';
preFixup = ''
diff --git a/pkgs/misc/cups/drivers/samsung/1.00.37.nix b/pkgs/misc/cups/drivers/samsung/1.00.37.nix
index 0aab52eac5da..59a210e6f534 100644
--- a/pkgs/misc/cups/drivers/samsung/1.00.37.nix
+++ b/pkgs/misc/cups/drivers/samsung/1.00.37.nix
@@ -22,6 +22,7 @@ in stdenv.mkDerivation rec {
];
installPhase = ''
+ runHook preInstall
mkdir -p $out/bin
cp -R ${arch}/{gettext,pstosecps,rastertospl,smfpnetdiscovery,usbresetter} $out/bin
@@ -65,6 +66,8 @@ in stdenv.mkDerivation rec {
cd $out/share/cups
ln -s ../ppd .
ln -s ppd model
+
+ runHook postInstall
'';
preFixup = ''
diff --git a/pkgs/misc/cups/drivers/samsung/4.01.17.nix b/pkgs/misc/cups/drivers/samsung/4.01.17.nix
index 12cfcde82f76..334703017478 100644
--- a/pkgs/misc/cups/drivers/samsung/4.01.17.nix
+++ b/pkgs/misc/cups/drivers/samsung/4.01.17.nix
@@ -11,7 +11,13 @@
# }
# (This advice was tested on the 1st November 2016.)
-{ lib, stdenv, fetchurl, cups, libusb-compat-0_1 }:
+{ lib
+, stdenv
+, cups
+, libusb-compat-0_1
+, fetchurl
+, patchPpdFilesHook
+}:
# Do not bump lightly! Visit
# to see what will break when upgrading. Consider a new versioned attribute.
@@ -28,10 +34,14 @@ in stdenv.mkDerivation rec {
sha256 = "1vv3pzvqpg1dq3xjr8161x2yp3v7ca75vil56ranhw5pkjwq66x0";
};
+ nativeBuildInputs = [ patchPpdFilesHook ];
+
dontPatchELF = true;
dontStrip = true;
installPhase = ''
+ runHook preInstall
+
cd Linux/${installationPath}
mkdir -p $out/lib/cups/{backend,filter}
install -Dm755 mfp $out/lib/cups/backend/
@@ -63,15 +73,18 @@ in stdenv.mkDerivation rec {
mkdir -p $out/share/cups/model/samsung
cd -
cd ../noarch/at_opt/share/ppd
- for i in *.ppd; do
- sed -i $i -e \
- "s,pstosecps,$out/lib/cups/filter/pstosecps,g; \
- s,pstospl,$out/lib/cups/filter/pstospl,g; \
- s,rastertospl,$out/lib/cups/filter/rastertospl,g"
- done;
cp -r ./* $out/share/cups/model/samsung
+
+ runHook postInstall
'';
+ ppdFileCommands = [
+ "pstosecps"
+ "pstospl"
+ "pstosplc"
+ "rastertospl"
+ ];
+
meta = with lib; {
description = "Samsung's Linux printing drivers; includes binaries without source code";
homepage = "http://www.samsung.com/";
diff --git a/pkgs/misc/fastly/default.nix b/pkgs/misc/fastly/default.nix
index 64e39319b2f2..1c653327e717 100644
--- a/pkgs/misc/fastly/default.nix
+++ b/pkgs/misc/fastly/default.nix
@@ -1,14 +1,14 @@
-{ lib, fetchFromGitHub, installShellFiles, buildGoModule, go }:
+{ lib, fetchurl, fetchFromGitHub, installShellFiles, buildGoModule, go }:
buildGoModule rec {
pname = "fastly";
- version = "3.2.4";
+ version = "4.3.0";
src = fetchFromGitHub {
owner = "fastly";
repo = "cli";
rev = "v${version}";
- sha256 = "sha256-eIqdDBU4NWNMyRs+h30ufg4QwEEGid+wCjATZYXDGm8=";
+ sha256 = "sha256-TxN0DQ4OKfHn+u4ixpCgcyRRTs52IZRjgcbJuqajeVo=";
# The git commit is part of the `fastly version` original output;
# leave that output the same in nixpkgs. Use the `.git` directory
# to retrieve the commit SHA, and remove the directory afterwards,
@@ -23,7 +23,7 @@ buildGoModule rec {
subPackages = [ "cmd/fastly" ];
- vendorSha256 = "sha256-glztVmAAdkEccJEFIHGWjNzz/+MjExSX18GDX66sdxA=";
+ vendorSha256 = "sha256-7EtyQYPe+oJmQ7uECbjkBjLnM9T03g6gFwUwebKuccc=";
nativeBuildInputs = [ installShellFiles ];
@@ -37,7 +37,13 @@ buildGoModule rec {
"-X github.com/fastly/cli/pkg/revision.GoHostOS=${go.GOHOSTOS}"
"-X github.com/fastly/cli/pkg/revision.GoHostArch=${go.GOHOSTARCH}"
];
- preBuild = ''
+ preBuild = let
+ cliConfigToml = fetchurl {
+ url = "https://web.archive.org/web/20221104122906/https://developer.fastly.com/api/internal/cli-config";
+ sha256 = "sha256-BHsUWrMp//X95gcB+WbD/nfyduZUkH8jHXk3CfOBAhg=";
+ };
+ in ''
+ cp ${cliConfigToml} ./pkg/config/config.toml
ldflags+=" -X github.com/fastly/cli/pkg/revision.GitCommit=$(cat COMMIT)"
'';
diff --git a/pkgs/os-specific/linux/nftables/default.nix b/pkgs/os-specific/linux/nftables/default.nix
index 12c5b40ea4a5..abbb3d04a068 100644
--- a/pkgs/os-specific/linux/nftables/default.nix
+++ b/pkgs/os-specific/linux/nftables/default.nix
@@ -43,5 +43,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = with maintainers; [ izorkin ajs124 ];
+ mainProgram = "nft";
};
}
diff --git a/pkgs/servers/http/nginx/modules.nix b/pkgs/servers/http/nginx/modules.nix
index 09f58becbab4..7d8a6716bc97 100644
--- a/pkgs/servers/http/nginx/modules.nix
+++ b/pkgs/servers/http/nginx/modules.nix
@@ -1,4 +1,4 @@
-{ fetchFromGitHub, fetchFromGitLab, lib, pkgs }:
+{ fetchFromGitHub, fetchFromGitLab, fetchhg, lib, pkgs }:
let
@@ -290,6 +290,28 @@ in
} + "/naxsi_src";
};
+ njs = rec {
+ src = fetchhg {
+ url = "https://hg.nginx.org/njs";
+ rev = "0.7.8";
+ sha256 = "sha256-jsR8EOeW8tAo2utKznuUaCG4hK0oU0ZJSnnGmI5HUDk=";
+ name = "nginx-njs";
+ };
+
+ # njs module sources have to be writable during nginx build, so we copy them
+ # to a temporary directory and change the module path in the configureFlags
+ preConfigure = ''
+ NJS_SOURCE_DIR=$(readlink -m "$TMPDIR/${src}")
+ mkdir -p "$(dirname "$NJS_SOURCE_DIR")"
+ cp --recursive "${src}" "$NJS_SOURCE_DIR"
+ chmod -R u+rwX,go+rX "$NJS_SOURCE_DIR"
+ export configureFlags="''${configureFlags/"${src}"/"$NJS_SOURCE_DIR/nginx"}"
+ unset NJS_SOURCE_DIR
+ '';
+
+ inputs = [ pkgs.which ];
+ };
+
opentracing = {
src =
let src' = fetchFromGitHub {
diff --git a/pkgs/servers/photoprism/backend.nix b/pkgs/servers/photoprism/backend.nix
new file mode 100644
index 000000000000..23f39890bd37
--- /dev/null
+++ b/pkgs/servers/photoprism/backend.nix
@@ -0,0 +1,38 @@
+{ lib, buildGoModule, coreutils, libtensorflow, src, version, ... }:
+
+buildGoModule rec {
+ inherit src version;
+ pname = "photoprism-backend";
+
+ buildInputs = [
+ coreutils
+ libtensorflow
+ ];
+
+ ldflags = [
+ "-s"
+ "-w"
+ "-X main.version=${version}"
+ ];
+
+ postPatch = ''
+ substituteInPlace internal/commands/passwd.go --replace '/bin/stty' "${coreutils}/bin/stty"
+ '';
+
+ vendorSha256 = "sha256-x1WfBxjGg4HKnzN0xEY43hgwdS6yf1AFo3GlW8e7nrM=";
+
+ subPackages = [ "cmd/photoprism" ];
+
+ # https://github.com/mattn/go-sqlite3/issues/822
+ CGO_CFLAGS = "-Wno-return-local-addr";
+
+ # https://github.com/tensorflow/tensorflow/issues/43847
+ CGO_LDFLAGS = "-fuse-ld=gold";
+
+ meta = with lib; {
+ homepage = "https://photoprism.app";
+ description = "Photoprism's backend";
+ license = licenses.agpl3Only;
+ maintainers = with maintainers; [ benesim ];
+ };
+}
diff --git a/pkgs/servers/photoprism/default.nix b/pkgs/servers/photoprism/default.nix
new file mode 100644
index 000000000000..4c5fb08c30df
--- /dev/null
+++ b/pkgs/servers/photoprism/default.nix
@@ -0,0 +1,86 @@
+{ pkgs, lib, stdenv, fetchFromGitHub, fetchzip, darktable, rawtherapee, ffmpeg, libheif, exiftool, nixosTests, makeWrapper }:
+
+let
+ version = "221102-905925b4d";
+ pname = "photoprism";
+
+ src = fetchFromGitHub {
+ owner = pname;
+ repo = pname;
+ rev = version;
+ sha256 = "sha256-xyyV16yYlKIMINmVDtiQJmnbEQ12wjzn6p90f4+GpWk=";
+ };
+
+ libtensorflow = pkgs.callPackage ./libtensorflow.nix { };
+ backend = pkgs.callPackage ./backend.nix { inherit libtensorflow src version; };
+ frontend = pkgs.callPackage ./frontend.nix { inherit src version; };
+
+ fetchModel = { name, sha256 }:
+ fetchzip {
+ inherit sha256;
+ url = "https://dl.photoprism.org/tensorflow/${name}.zip";
+ stripRoot = false;
+ };
+
+ facenet = fetchModel {
+ name = "facenet";
+ sha256 = "sha256-aS5kkNhxOLSLTH/ipxg7NAa1w9X8iiG78jmloR1hpRo=";
+ };
+
+ nasnet = fetchModel {
+ name = "nasnet";
+ sha256 = "sha256-bF25jPmZLyeSWy/CGXZE/VE2UupEG2q9Jmr0+1rUYWE=";
+ };
+
+ nsfw = fetchModel {
+ name = "nsfw";
+ sha256 = "sha256-zy/HcmgaHOY7FfJUY6I/yjjsMPHR2Ote9ppwqemBlfg=";
+ };
+
+ assets_path = "$out/share/${pname}";
+in
+stdenv.mkDerivation {
+ inherit pname version;
+
+ buildInputs = [
+ makeWrapper
+ ];
+
+ dontUnpack = true;
+ dontBuild = true;
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out/bin ${assets_path}
+
+ # install backend
+ ln -s ${backend}/bin/photoprism $out/bin/photoprism
+ wrapProgram $out/bin/photoprism \
+ --set PHOTOPRISM_ASSETS_PATH ${assets_path} \
+ --set PHOTOPRISM_DARKTABLE_BIN ${darktable}/bin/darktable-cli \
+ --set PHOTOPRISM_RAWTHERAPEE_BIN ${rawtherapee}/bin/rawtherapee-cli \
+ --set PHOTOPRISM_HEIFCONVERT_BIN ${libheif}/bin/heif-convert \
+ --set PHOTOPRISM_FFMPEG_BIN ${ffmpeg}/bin/ffmpeg \
+ --set PHOTOPRISM_EXIFTOOL_BIN ${exiftool}/bin/exiftool
+
+ # install frontend
+ ln -s ${frontend}/assets/* ${assets_path}
+ # install tensorflow models
+ ln -s ${nasnet}/nasnet ${assets_path}
+ ln -s ${nsfw}/nsfw ${assets_path}
+ ln -s ${facenet}/facenet ${assets_path}
+
+ runHook postInstall
+ '';
+
+ passthru.tests.photoprism = nixosTests.photoprism;
+
+ meta = with lib; {
+ homepage = "https://photoprism.app";
+ description = "Personal Photo Management powered by Go and Google TensorFlow";
+ inherit (libtensorflow.meta) platforms;
+ license = licenses.agpl3Only;
+ maintainers = with maintainers; [ benesim ];
+ };
+}
diff --git a/pkgs/servers/photoprism/frontend.nix b/pkgs/servers/photoprism/frontend.nix
new file mode 100644
index 000000000000..0eb5731e2224
--- /dev/null
+++ b/pkgs/servers/photoprism/frontend.nix
@@ -0,0 +1,47 @@
+{ lib, nodePackages, nodejs-14_x, stdenv, src, version, ... }:
+
+let
+ nodeDependencies = nodePackages.photoprism-frontend.override {
+ inherit version;
+ name = "photoprism-frontend-dependencies";
+
+ # Workaround for lack of sourceRoot option in buildNodePackage.
+ src = "${src}/frontend";
+
+ meta.broken = false;
+ };
+in
+stdenv.mkDerivation {
+ inherit src version;
+ pname = "photoprism-frontend";
+
+ buildInputs = [ nodejs-14_x ];
+
+ buildPhase = ''
+ runHook preBuild
+
+ pushd frontend
+ ln -s ${nodeDependencies}/lib/node_modules/photoprism/node_modules ./node_modules
+ export PATH="${nodeDependencies}/lib/node_modules/photoprism/node_modules/.bin:$PATH"
+ NODE_ENV=production npm run build
+ popd
+
+ runHook postBuild
+ '';
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir $out
+ cp -r assets $out/
+
+ runHook postInstall
+ '';
+
+ meta = with lib; {
+ homepage = "https://photoprism.app";
+ description = "Photoprism's frontend";
+ license = licenses.agpl3Only;
+ maintainers = with maintainers; [ benesim ];
+ };
+}
diff --git a/pkgs/servers/photoprism/libtensorflow.nix b/pkgs/servers/photoprism/libtensorflow.nix
new file mode 100644
index 000000000000..869f9fc8da1c
--- /dev/null
+++ b/pkgs/servers/photoprism/libtensorflow.nix
@@ -0,0 +1,85 @@
+{ lib, stdenv, fetchurl, ... }:
+let
+ inherit (stdenv.hostPlatform) system;
+in
+stdenv.mkDerivation rec {
+ pname = "libtensorflow-photoprism";
+ version = "1.15.2";
+
+ srcs = [
+ # Photoprism-packaged libtensorflow tarball (with pre-built libs for both arm64 and amd64)
+ # We need this specific version because of https://github.com/photoprism/photoprism/issues/222
+ (fetchurl {
+ sha256 = {
+ x86_64-linux = "sha256-bZAC3PJxqcjuGM4RcNtzYtkg3FD3SrO5beDsPoKenzc=";
+ aarch64-linux = "sha256-qnj4vhSWgrk8SIjzIH1/4waMxMsxMUvqdYZPaSaUJRk=";
+ }.${system};
+
+ url = let
+ systemName = {
+ x86_64-linux = "amd64";
+ aarch64-linux = "arm64";
+ }.${system};
+ in "https://dl.photoprism.app/tensorflow/${systemName}/libtensorflow-${systemName}-${version}.tar.gz";
+ })
+ # Upstream tensorflow tarball (with .h's photoprism's tarball is missing)
+ (fetchurl {
+ url = "https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-1.15.0.tar.gz";
+ sha256 = "sha256-3sv9WnCeztNSP1XM+iOTN6h+GrPgAO/aNhfbeeEDTe0=";
+ })
+ ];
+
+ sourceRoot = ".";
+
+ unpackPhase = ''
+ sources=($srcs)
+
+ mkdir downstream upstream
+ tar xf ''${sources[0]} --directory downstream
+ tar xf ''${sources[1]} --directory upstream
+
+ mv downstream/lib .
+ mv upstream/{include,LICENSE,THIRD_PARTY_TF_C_LICENSES} .
+ rm -r downstream upstream
+
+ cd lib
+ ln -sT libtensorflow.so{,.1}
+ ln -sT libtensorflow_framework.so{,.1}
+ cd ..
+ '';
+
+ # Patch library to use our libc, libstdc++ and others
+ patchPhase = let
+ rpath = lib.makeLibraryPath [ stdenv.cc.libc stdenv.cc.cc.lib ];
+ in ''
+ chmod -R +w lib
+ patchelf --set-rpath "${rpath}:$out/lib" lib/libtensorflow.so
+ patchelf --set-rpath "${rpath}" lib/libtensorflow_framework.so
+ '';
+
+ buildPhase = ''
+ # Write pkg-config file.
+ mkdir lib/pkgconfig
+ cat > lib/pkgconfig/tensorflow.pc << EOF
+ Name: TensorFlow
+ Version: ${version}
+ Description: Library for computation using data flow graphs for scalable machine learning
+ Requires:
+ Libs: -L$out/lib -ltensorflow
+ Cflags: -I$out/include/tensorflow
+ EOF
+ '';
+
+ installPhase = ''
+ mkdir -p $out
+ cp -r LICENSE THIRD_PARTY_TF_C_LICENSES lib include $out
+ '';
+
+ meta = with lib; {
+ homepage = "https://dl.photoprism.app/tensorflow/";
+ description = "Libtensorflow version for usage with photoprism backend";
+ platforms = [ "x86_64-linux" "aarch64-linux" ];
+ license = licenses.asl20;
+ maintainers = with maintainers; [ benesim ];
+ };
+}
diff --git a/pkgs/servers/photoprism/package.json b/pkgs/servers/photoprism/package.json
new file mode 100644
index 000000000000..97a0b80c226a
--- /dev/null
+++ b/pkgs/servers/photoprism/package.json
@@ -0,0 +1,123 @@
+{
+ "name": "photoprism",
+ "version": "1.0.0",
+ "description": "AI-Powered Photos App",
+ "author": "PhotoPrism UG",
+ "license": "AGPL-3.0",
+ "private": true,
+ "scripts": {
+ "watch": "webpack --watch",
+ "build": "webpack --node-env=production",
+ "trace": "webpack --stats-children",
+ "debug": "webpack --stats-error-details",
+ "lint": "eslint --cache src/ *.js",
+ "fmt": "eslint --cache --fix src/ *.js .eslintrc.js",
+ "test": "karma start",
+ "upgrade": "npm --depth 10 update && npm audit fix",
+ "testcafe": "testcafe",
+ "acceptance-local": "testcafe chromium --selector-timeout 5000 -S -s tests/acceptance/screenshots tests/acceptance",
+ "gettext-extract": "gettext-extract --output src/locales/translations.pot $(find ${SRC:-src} -type f \\( -iname \\*.vue -o -iname \\*.js \\) -not -path src/common/vm.js)",
+ "gettext-compile": "gettext-compile --output src/locales/translations.json src/locales/*.po"
+ },
+ "dependencies": {
+ "@babel/cli": "^7.19.3",
+ "@babel/core": "^7.19.3",
+ "@babel/eslint-parser": "^7.19.1",
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
+ "@babel/plugin-proposal-object-rest-spread": "^7.19.4",
+ "@babel/plugin-transform-runtime": "^7.19.1",
+ "@babel/preset-env": "^7.19.4",
+ "@babel/register": "^7.18.9",
+ "@babel/runtime": "^7.19.4",
+ "@lcdp/offline-plugin": "^5.1.1",
+ "@vvo/tzdb": "^6.71.0",
+ "axios": "^0.27.2",
+ "axios-mock-adapter": "^1.21.2",
+ "babel-loader": "^8.2.5",
+ "babel-plugin-istanbul": "^6.1.1",
+ "browserslist": "^4.21.4",
+ "chai": "^4.3.6",
+ "cheerio": "1.0.0-rc.10",
+ "chrome-finder": "^1.0.7",
+ "core-js": "^3.25.5",
+ "cross-env": "^7.0.3",
+ "css-loader": "^6.7.1",
+ "cssnano": "^5.1.13",
+ "easygettext": "^2.17.0",
+ "eslint": "^8.25.0",
+ "eslint-config-prettier": "^8.5.0",
+ "eslint-config-standard": "^17.0.0",
+ "eslint-formatter-pretty": "^4.1.0",
+ "eslint-plugin-html": "^7.1.0",
+ "eslint-plugin-import": "^2.26.0",
+ "eslint-plugin-node": "^11.1.0",
+ "eslint-plugin-prettier-vue": "^4.2.0",
+ "eslint-plugin-promise": "^6.1.0",
+ "eslint-plugin-vue": "^9.6.0",
+ "eslint-webpack-plugin": "^3.2.0",
+ "eventsource-polyfill": "^0.9.6",
+ "file-loader": "^6.2.0",
+ "file-saver": "^2.0.5",
+ "hls.js": "^1.2.4",
+ "i": "^0.3.7",
+ "karma": "^6.4.1",
+ "karma-chrome-launcher": "^3.1.1",
+ "karma-coverage-istanbul-reporter": "^3.0.3",
+ "karma-htmlfile-reporter": "^0.3.8",
+ "karma-mocha": "^2.0.1",
+ "karma-verbose-reporter": "^0.0.8",
+ "karma-webpack": "^5.0.0",
+ "luxon": "^3.0.4",
+ "maplibre-gl": "^2.4.0",
+ "memoize-one": "^6.0.0",
+ "mini-css-extract-plugin": "^2.6.1",
+ "minimist": ">=1.2.5",
+ "mocha": "^10.1.0",
+ "node-storage-shim": "^2.0.1",
+ "photoswipe": "^4.1.3",
+ "postcss": "^8.4.18",
+ "postcss-import": "^15.0.0",
+ "postcss-loader": "^7.0.1",
+ "postcss-preset-env": "^7.8.2",
+ "postcss-reporter": "^7.0.5",
+ "postcss-url": "^10.1.3",
+ "prettier": "^2.7.1",
+ "pubsub-js": "^1.9.4",
+ "regenerator-runtime": "^0.13.10",
+ "resolve-url-loader": "^5.0.0",
+ "sass": "^1.55.0",
+ "sass-loader": "^13.1.0",
+ "server": "^1.0.37",
+ "sockette": "^2.0.6",
+ "style-loader": "^3.3.1",
+ "svg-url-loader": "^8.0.0",
+ "tar": "^6.1.11",
+ "url-loader": "^4.1.1",
+ "util": "^0.12.5",
+ "vue": "^2.6.14",
+ "vue-fullscreen": "^2.5.2",
+ "vue-gettext": "^2.1.12",
+ "vue-infinite-scroll": "^2.0.2",
+ "vue-loader": "^15.9.8",
+ "vue-loader-plugin": "^1.3.0",
+ "vue-luxon": "^0.10.0",
+ "vue-router": "^3.5.2",
+ "vue-style-loader": "^4.1.3",
+ "vue-template-compiler": "^2.7.10",
+ "vue2-filters": "^0.14.0",
+ "vuetify": "^1.5.24",
+ "webpack": "^5.74.0",
+ "webpack-bundle-analyzer": "^4.6.1",
+ "webpack-cli": "^4.10.0",
+ "webpack-hot-middleware": "^2.25.2",
+ "webpack-manifest-plugin": "^5.0.0",
+ "webpack-md5-hash": "^0.0.6",
+ "webpack-merge": "^5.8.0"
+ },
+ "engines": {
+ "node": ">= 16.0.0",
+ "npm": ">= 8.0.0",
+ "yarn": "please use npm"
+ },
+ "browserslist": ">0.25% and last 2 years"
+}
diff --git a/pkgs/servers/trezord/default.nix b/pkgs/servers/trezord/default.nix
index 29cd2766bd8b..a6f3bba51c95 100644
--- a/pkgs/servers/trezord/default.nix
+++ b/pkgs/servers/trezord/default.nix
@@ -8,20 +8,27 @@
buildGoModule rec {
pname = "trezord-go";
- version = "2.0.31";
+ version = "2.0.32";
+ commit = "9aa6576";
src = fetchFromGitHub {
owner = "trezor";
repo = "trezord-go";
rev = "v${version}";
- sha256 = "130nhk1pnr3xx9qkcij81mm3jxrl5zvvdqhvrgvrikqg3zlb6v5b";
+ fetchSubmodules = true;
+ sha256 = "sha256-T7YoHi2sA22nfNbgX2WB5NIFIwxBkxn0CsSXyQTxgJc=";
};
- vendorSha256 = "0wb959xzyvr5zzjvkfqc422frmf97q5nr460f02wwx0pj6ch0y61";
+ vendorSha256 = "sha256-wXgAmZEXdM4FcMCQbAs+ydXshCAMu7nl/yVv/3sqaXE=";
propagatedBuildInputs = lib.optionals stdenv.isLinux [ trezor-udev-rules ]
++ lib.optionals stdenv.isDarwin [ AppKit ];
+ ldflags = [
+ "-s" "-w"
+ "-X main.githash=${commit}"
+ ];
+
meta = with lib; {
description = "Trezor Communication Daemon aka Trezor Bridge";
homepage = "https://trezor.io";
diff --git a/pkgs/servers/web-apps/snipe-it/default.nix b/pkgs/servers/web-apps/snipe-it/default.nix
index f87f9e43b15e..cd42372c75c7 100644
--- a/pkgs/servers/web-apps/snipe-it/default.nix
+++ b/pkgs/servers/web-apps/snipe-it/default.nix
@@ -27,13 +27,13 @@ let
in package.override rec {
pname = "snipe-it";
- version = "6.0.12";
+ version = "6.0.13";
src = fetchFromGitHub {
owner = "snipe";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-1/v2kCXedhtiqyO6d7kpmAnWGidXM1djlpbBr7/AyQI=";
+ sha256 = "sha256-QwPl3JXB8gZS1/VyPBCc3PIQa+qtUNpuANSx4+oxWYg=";
};
meta = with lib; {
diff --git a/pkgs/shells/oil/default.nix b/pkgs/shells/oil/default.nix
index 1b8f38ab1bd4..49d8517eeca0 100644
--- a/pkgs/shells/oil/default.nix
+++ b/pkgs/shells/oil/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "oil";
- version = "0.12.6";
+ version = "0.12.7";
src = fetchurl {
url = "https://www.oilshell.org/download/oil-${version}.tar.xz";
- hash = "sha256-jlNmrpze02g4FL4EFlKoZC7X/YOr3xhJWnMTPga3Bas=";
+ hash = "sha256-WEbEcG4B+MqDVPXHjpp5lkJxT8AS+NivtJGfrnrcBys=";
};
postPatch = ''
diff --git a/pkgs/tools/admin/pulumi/data.nix b/pkgs/tools/admin/pulumi/data.nix
index da597137f013..99b949ce0629 100644
--- a/pkgs/tools/admin/pulumi/data.nix
+++ b/pkgs/tools/admin/pulumi/data.nix
@@ -1,20 +1,20 @@
# DO NOT EDIT! This file is generated automatically by update.sh
{ }:
{
- version = "3.44.3";
+ version = "3.46.0";
pulumiPkgs = {
x86_64-linux = [
{
- url = "https://get.pulumi.com/releases/sdk/pulumi-v3.44.3-linux-x64.tar.gz";
- sha256 = "0mykgk7gkb0369i3a52jjcnwm87a8c8vfr92k9mca6hr6z79d9kp";
+ url = "https://get.pulumi.com/releases/sdk/pulumi-v3.46.0-linux-x64.tar.gz";
+ sha256 = "1q80kp680ilvj9w51m90v6lzj11p3xvzvihf2g5c9lr5r0f4zkaz";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v5.4.0-linux-amd64.tar.gz";
sha256 = "0g3s60yscxrwzbq40zii0mnh2z9yggz0wc2kg9yrfzybrmsmx8z3";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v3.1.0-linux-amd64.tar.gz";
- sha256 = "1fak0izpaq13jsnab7y1c0vk95lja6w767gk0rp3mp76h6r0mxc8";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v3.1.1-linux-amd64.tar.gz";
+ sha256 = "0yprg3mgb7zik6s2hhh1jj7kyic9ihipr698vspgdjxa3ya4nvij";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-alicloud-v3.28.0-linux-amd64.tar.gz";
@@ -163,16 +163,16 @@
];
x86_64-darwin = [
{
- url = "https://get.pulumi.com/releases/sdk/pulumi-v3.44.3-darwin-x64.tar.gz";
- sha256 = "0jjz3xwlqw62g8vzmc3pjpad9h6i81vfskxlwr88n1sgwsr6z6ml";
+ url = "https://get.pulumi.com/releases/sdk/pulumi-v3.46.0-darwin-x64.tar.gz";
+ sha256 = "076bf9pj5k9n0gvyvms59x13dwdf9s0sqfmjrv3f3pq52676bycr";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v5.4.0-darwin-amd64.tar.gz";
sha256 = "0f62xfma1d299625ydj3f95anz47l41dyasq9vpvsi1cqii6h4a1";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v3.1.0-darwin-amd64.tar.gz";
- sha256 = "0zkg8iqd9n8hfaai0l5vcl6vgi1mh3ggs9bsszrcl7kyzkf3zyyy";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v3.1.1-darwin-amd64.tar.gz";
+ sha256 = "08d4d4rnqdx2c18ji6lm5bflskxfh7r918hickpyg3bvswgmg7kg";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-alicloud-v3.28.0-darwin-amd64.tar.gz";
@@ -321,16 +321,16 @@
];
aarch64-linux = [
{
- url = "https://get.pulumi.com/releases/sdk/pulumi-v3.44.3-linux-arm64.tar.gz";
- sha256 = "1nqsvpms3l5vbcjcn8yhwia4li1v9hgnbc2mmb1ywmv2za7nbq2h";
+ url = "https://get.pulumi.com/releases/sdk/pulumi-v3.46.0-linux-arm64.tar.gz";
+ sha256 = "137ngy26ag04yw1k3hzhmadqphw7ipfz1dcg2aal0vq8rk0xrfnb";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v5.4.0-linux-arm64.tar.gz";
sha256 = "10gmwqfhvz1yp0ld69w01fmjnfw907pa0pmzjndm3p9fwqjrr2nd";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v3.1.0-linux-arm64.tar.gz";
- sha256 = "1qf8v5qysxxlamz36z1pnjy5mqjn8dbf6aps52rbhyk2mi6v3k7c";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v3.1.1-linux-arm64.tar.gz";
+ sha256 = "014rlaw7acyz2rsmnv2mq9as6z9c9aa4s03qbfkk95sqyf6xvlqc";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-alicloud-v3.28.0-linux-arm64.tar.gz";
@@ -479,16 +479,16 @@
];
aarch64-darwin = [
{
- url = "https://get.pulumi.com/releases/sdk/pulumi-v3.44.3-darwin-arm64.tar.gz";
- sha256 = "1nwgf0mg82vlc93adplw9c3x3fa3277ql8zbc8jqxbvm4l1hr4h2";
+ url = "https://get.pulumi.com/releases/sdk/pulumi-v3.46.0-darwin-arm64.tar.gz";
+ sha256 = "1id3l0dycqf8rwxzf2nx11xg2qcvzgpp3373l4qfab68251cw15d";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v5.4.0-darwin-arm64.tar.gz";
sha256 = "1v6dwsjbqmg9qnlhf5jl98r5c171xnsp3fnyfkg2h8874scg2gpp";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v3.1.0-darwin-arm64.tar.gz";
- sha256 = "0a9lzmkc3c7pc6axbymnq7s9b9qwmrjndg6hspx705d1fx4vs28g";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v3.1.1-darwin-arm64.tar.gz";
+ sha256 = "19l5b3grxf0ckxpmjn7x8158bkzv8329adj7m4gi09d9sx6wwsxw";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-alicloud-v3.28.0-darwin-arm64.tar.gz";
diff --git a/pkgs/tools/admin/pulumi/update.sh b/pkgs/tools/admin/pulumi/update.sh
index 9e21d1c116af..1379d0ceaed8 100755
--- a/pkgs/tools/admin/pulumi/update.sh
+++ b/pkgs/tools/admin/pulumi/update.sh
@@ -12,7 +12,7 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
# Version of Pulumi from
# https://www.pulumi.com/docs/get-started/install/versions/
-VERSION="3.44.3"
+VERSION="3.46.0"
# An array of plugin names. The respective repository inside Pulumi's
# Github organization is called pulumi-$name by convention.
diff --git a/pkgs/tools/audio/vgmtools/default.nix b/pkgs/tools/audio/vgmtools/default.nix
index f48553025950..862b8a80bc93 100644
--- a/pkgs/tools/audio/vgmtools/default.nix
+++ b/pkgs/tools/audio/vgmtools/default.nix
@@ -8,13 +8,13 @@
stdenv.mkDerivation rec {
pname = "vgmtools";
- version = "unstable-2022-08-03";
+ version = "unstable-2022-10-31";
src = fetchFromGitHub {
owner = "vgmrips";
repo = "vgmtools";
- rev = "a33c7b9d7c7608a3cfebbee4467c6909b42077d6";
- sha256 = "oVasSToGp2APfaD/xCt/3SwvGq7JtpP8VVDRPznYDH4=";
+ rev = "9d7a9f4b1c40d26949fa730987f6c3eb9cf3e3ec";
+ sha256 = "Joxlu+k8xaF90u+ydHhu6NpqGQAKL8r5u4qAsfVfOz8=";
};
nativeBuildInputs = [
diff --git a/pkgs/tools/backup/bacula/default.nix b/pkgs/tools/backup/bacula/default.nix
index 35c5a36a8c9f..1bd9cbd68555 100644
--- a/pkgs/tools/backup/bacula/default.nix
+++ b/pkgs/tools/backup/bacula/default.nix
@@ -11,6 +11,12 @@ stdenv.mkDerivation rec {
sha256 = "sha256-AZWgi81PV4rkqc4Nkff4ZzHGNNVrgQU0ci1yGyqe7Lc=";
};
+ # libtool.m4 only matches macOS 10.*
+ postPatch = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) ''
+ substituteInPlace configure \
+ --replace "10.*)" "*)"
+ '';
+
buildInputs = [ postgresql sqlite zlib ncurses openssl readline ]
++ lib.optionals stdenv.hostPlatform.isDarwin [
CoreFoundation
diff --git a/pkgs/tools/filesystems/gcsfuse/default.nix b/pkgs/tools/filesystems/gcsfuse/default.nix
index 3086a8c0a6ee..16d0ae0be8c8 100644
--- a/pkgs/tools/filesystems/gcsfuse/default.nix
+++ b/pkgs/tools/filesystems/gcsfuse/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "gcsfuse";
- version = "0.41.7";
+ version = "0.41.8";
src = fetchFromGitHub {
owner = "googlecloudplatform";
repo = "gcsfuse";
rev = "v${version}";
- sha256 = "sha256-hqT1X78g1Mg7xWHrVTwN41P+wgkrjfYrX2vHmwxZoCQ=";
+ sha256 = "sha256-9Y6phVYWI5xhqJf2LL9WbaG8vyfNcGUcnaHjKA4krjA=";
};
vendorSha256 = null;
@@ -17,6 +17,16 @@ buildGoModule rec {
ldflags = [ "-s" "-w" "-X main.gcsfuseVersion=${version}" ];
+ preCheck =
+ let skippedTests = [
+ "Test_Main"
+ "TestFlags"
+ ]; in
+ ''
+ # Disable flaky tests
+ buildFlagsArray+=("-run" "[^(${builtins.concatStringsSep "|" skippedTests})]")
+ '';
+
postInstall = ''
ln -s $out/bin/mount_gcsfuse $out/bin/mount.gcsfuse
ln -s $out/bin/mount_gcsfuse $out/bin/mount.fuse.gcsfuse
diff --git a/pkgs/tools/misc/android-tools/default.nix b/pkgs/tools/misc/android-tools/default.nix
index 4d5eff546cc0..bb56d4fa9f8a 100644
--- a/pkgs/tools/misc/android-tools/default.nix
+++ b/pkgs/tools/misc/android-tools/default.nix
@@ -1,6 +1,6 @@
{ lib, stdenv, fetchurl, fetchpatch
, cmake, perl, go, python3
-, protobuf, zlib, gtest, brotli, lz4, zstd, libusb1, pcre2, fmt_7
+, protobuf, zlib, gtest, brotli, lz4, zstd, libusb1, pcre2
}:
let
@@ -9,22 +9,14 @@ in
stdenv.mkDerivation rec {
pname = "android-tools";
- version = "31.0.3p1";
+ version = "33.0.3";
src = fetchurl {
url = "https://github.com/nmeum/android-tools/releases/download/${version}/android-tools-${version}.tar.xz";
- sha256 = "1f2svy381r798hjinrc2xiwz13gkkqxfill343zvv8jqkn8rzxhf";
+ hash = "sha256-jOF02reB1d69Ke0PllciMfd3vuGbjvPBZ+M9PqdnC8U=";
};
patches = [
- # fmt 8 breaks the build but we can use fmt 7 from Nixpkgs:
- (fetchpatch {
- # Vendor google's version of fmtlib
- url = "https://github.com/nmeum/android-tools/commit/21061c1dfb006c22304053c1f6f9e48ae4cbe25a.patch";
- sha256 = "17mcsgfc3i8xq4hck0ppnzafh15aljxy7j2q4djcmwnvrkv9kx3s";
- revert = true;
- excludes = [ "vendor/fmtlib" ];
- })
./android-tools-kernel-headers-6.0.diff
];
@@ -37,7 +29,7 @@ stdenv.mkDerivation rec {
'';
nativeBuildInputs = [ cmake perl go ];
- buildInputs = [ protobuf zlib gtest brotli lz4 zstd libusb1 pcre2 fmt_7 ];
+ buildInputs = [ protobuf zlib gtest brotli lz4 zstd libusb1 pcre2 ];
propagatedBuildInputs = [ pythonEnv ];
# Don't try to fetch any Go modules via the network:
diff --git a/pkgs/tools/misc/barman/default.nix b/pkgs/tools/misc/barman/default.nix
index 281a2ce1c17a..70d8e98b8f7a 100644
--- a/pkgs/tools/misc/barman/default.nix
+++ b/pkgs/tools/misc/barman/default.nix
@@ -1,5 +1,6 @@
{ fetchFromGitHub
, lib
+, stdenv
, python3Packages
}:
python3Packages.buildPythonApplication rec {
@@ -36,6 +37,9 @@ python3Packages.buildPythonApplication rec {
disabledTests = [
# Assertion error
"test_help_output"
+ ] ++ lib.optionals stdenv.isDarwin [
+ # FsOperationFailed
+ "test_get_file_mode"
];
meta = with lib; {
diff --git a/pkgs/tools/misc/bat-extras/default.nix b/pkgs/tools/misc/bat-extras/default.nix
index 76e2906a9421..d076cd1026f1 100644
--- a/pkgs/tools/misc/bat-extras/default.nix
+++ b/pkgs/tools/misc/bat-extras/default.nix
@@ -3,6 +3,10 @@
, coreutils
, getconf
, less
+# tests
+, bash
+, zsh
+, fish
# batgrep
, ripgrep
# prettybat
@@ -51,7 +55,7 @@ let
# Run the library tests as they don't have external dependencies
doCheck = true;
- checkInputs = lib.optionals stdenv.isDarwin [ getconf ];
+ checkInputs = [ bash fish zsh ] ++ (lib.optionals stdenv.isDarwin [ getconf ]);
checkPhase = ''
runHook preCheck
# test list repeats suites. Unique them
@@ -59,12 +63,12 @@ let
while read -r action arg _; do
[[ "$action" == "test_suite" && "$arg" == lib_* ]] &&
test_suites+=(["$arg"]=1)
- done <<<"$(bash ./test.sh --compiled --list --porcelain)"
+ done <<<"$(./test.sh --compiled --list --porcelain)"
(( ''${#test_suites[@]} != 0 )) || {
echo "Couldn't find any library test suites"
exit 1
}
- bash ./test.sh --compiled $(printf -- "--suite %q\n" "''${!test_suites[@]}")
+ ./test.sh --compiled $(printf -- "--suite %q\n" "''${!test_suites[@]}")
runHook postCheck
'';
@@ -108,7 +112,7 @@ let
dontBuild = true; # we've already built
doCheck = true;
- checkInputs = lib.optionals stdenv.isDarwin [ getconf ];
+ checkInputs = [ bash fish zsh ] ++ (lib.optionals stdenv.isDarwin [ getconf ]);
checkPhase = ''
runHook preCheck
bash ./test.sh --compiled --suite ${name}
@@ -139,6 +143,7 @@ in
batdiff = script "batdiff" ([ less coreutils gitMinimal ] ++ optionalDep withDelta delta);
batgrep = script "batgrep" [ less coreutils ripgrep ];
batman = script "batman" [ util-linux ];
+ batpipe = script "batpipe" [ less ];
batwatch = script "batwatch" ([ less coreutils ] ++ optionalDep withEntr entr);
prettybat = script "prettybat" ([]
++ optionalDep withShFmt shfmt
diff --git a/pkgs/tools/misc/plantuml-server/default.nix b/pkgs/tools/misc/plantuml-server/default.nix
index cf04887f743c..a7cd57e3c006 100644
--- a/pkgs/tools/misc/plantuml-server/default.nix
+++ b/pkgs/tools/misc/plantuml-server/default.nix
@@ -1,14 +1,14 @@
{ lib, stdenv, fetchurl }:
let
- version = "1.2022.7";
+ version = "1.2022.12";
in
stdenv.mkDerivation rec {
pname = "plantuml-server";
inherit version;
src = fetchurl {
url = "https://github.com/plantuml/plantuml-server/releases/download/v${version}/plantuml-v${version}.war";
- sha256 = "sha256-QX4eZStNXBHy44hKV1GnTDpumq65OsGYR0VmXyF7DVg=";
+ sha256 = "sha256-H05/1Em9aTRLhI5vo119JLnuKJlK6/ZLu0v/wU0fPLQ=";
};
dontUnpack = true;
diff --git a/pkgs/tools/misc/pspg/default.nix b/pkgs/tools/misc/pspg/default.nix
index 3fdca1c58919..a231775c5839 100644
--- a/pkgs/tools/misc/pspg/default.nix
+++ b/pkgs/tools/misc/pspg/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "pspg";
- version = "5.5.8";
+ version = "5.5.9";
src = fetchFromGitHub {
owner = "okbob";
repo = pname;
rev = version;
- sha256 = "sha256-D7aQXP95ax1m4Tmm6ipOLen4WnFcyn4HU0BkTEPCcj4=";
+ sha256 = "sha256-/tzv5/UvIkIUbFAlbNUDSd90DvpjGPcMh5ooDfZal80=";
};
nativeBuildInputs = [ pkg-config installShellFiles ];
diff --git a/pkgs/tools/misc/ripdrag/default.nix b/pkgs/tools/misc/ripdrag/default.nix
index a995cf1e7567..d9eca0f1b649 100644
--- a/pkgs/tools/misc/ripdrag/default.nix
+++ b/pkgs/tools/misc/ripdrag/default.nix
@@ -2,14 +2,14 @@
rustPlatform.buildRustPackage rec {
pname = "ripdrag";
- version = "0.2.0";
+ version = "0.2.1";
src = fetchCrate {
inherit pname version;
- sha256 = "sha256-bXyJcSJfKHkcwTayEbX9sZZEBeP9qoH36QqBIDnmKQM=";
+ sha256 = "sha256-/TF9dWZQVEVM3lHp4ubxYkDW+ZDL9puT6mUT6Q3hUsw=";
};
- cargoSha256 = "sha256-PqoIJ0mbpaE4UX+kz3pFiqmTS1Vp+jF2OT5+3K2A0MQ=";
+ cargoSha256 = "sha256-mIsT93XRU0mR5s5w3Sng2DTW2LyO9HT1w/1932vptIE=";
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/tools/networking/cjdns/default.nix b/pkgs/tools/networking/cjdns/default.nix
index e8dc5e370bea..d46d8bd2c576 100644
--- a/pkgs/tools/networking/cjdns/default.nix
+++ b/pkgs/tools/networking/cjdns/default.nix
@@ -1,20 +1,40 @@
-{ lib, stdenv, fetchFromGitHub, nodejs, which, python3, util-linux, nixosTests }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, rustPlatform
+, nodejs
+, which
+, python39
+, libuv
+, util-linux
+, nixosTests
+}:
-stdenv.mkDerivation rec {
+rustPlatform.buildRustPackage rec {
pname = "cjdns";
- version = "21.1";
+ version = "21.4";
src = fetchFromGitHub {
owner = "cjdelisle";
repo = "cjdns";
rev = "cjdns-v${version}";
- sha256 = "NOmk+vMZ8i0E2MjrUzksk+tkJ9XVVNEXlE5OOTNa+Y0=";
+ sha256 = "sha256-vI3uHZwmbFqxGasKqgCl0PLEEO8RNEhwkn5ZA8K7bxU=";
};
- buildInputs = [ which python3 nodejs ] ++
+ cargoSha256 = "sha256-x3LxGOhGXrheqdke0eYiQVo/IqgWgcDrDNupdLjRPjA=";
+
+ nativeBuildInputs = [
+ which
+ python39
+ nodejs
+ ] ++
# for flock
lib.optional stdenv.isLinux util-linux;
+ buildInputs = [
+ libuv
+ ];
+
NIX_CFLAGS_COMPILE = [
"-O2"
"-Wno-error=array-bounds"
@@ -24,15 +44,6 @@ stdenv.mkDerivation rec {
"-Wno-error=stringop-overread"
];
- buildPhase =
- lib.optionalString stdenv.isAarch32 "Seccomp_NO=1 "
- + "bash do";
- installPhase = ''
- install -Dt "$out/bin/" cjdroute makekeys privatetopublic publictoip6
- mkdir -p $out/share/cjdns
- cp -R tools node_build node_modules $out/share/cjdns/
- '';
-
passthru.tests.basic = nixosTests.cjdns;
meta = with lib; {
diff --git a/pkgs/tools/networking/dnsmonster/default.nix b/pkgs/tools/networking/dnsmonster/default.nix
index 201e31f9845b..eac3f61f30cc 100644
--- a/pkgs/tools/networking/dnsmonster/default.nix
+++ b/pkgs/tools/networking/dnsmonster/default.nix
@@ -7,16 +7,16 @@
buildGoModule rec {
pname = "dnsmonster";
- version = "0.9.5";
+ version = "0.9.6";
src = fetchFromGitHub {
owner = "mosajjal";
repo = pname;
rev = "v${version}";
- hash = "sha256-csYJ8jdk84Uf0Sti5wGK27NH9FFHzUHFJXV8r4FWO68=";
+ hash = "sha256-MiFwGVvaShy7dEKixIXdRCBmRc2YnxX49/7R8JugXng=";
};
- vendorSha256 = "sha256-+Wpn9VhFDx5NPk7lbp/iP3kdn3bvR+AL5nfivu8944I=";
+ vendorSha256 = "sha256-ZCtxKMD9hESERcsptdhxdV51nxyvrdj+guTodn/Sqao=";
buildInputs = [
libpcap
diff --git a/pkgs/tools/networking/ifwifi/default.nix b/pkgs/tools/networking/ifwifi/default.nix
new file mode 100644
index 000000000000..795731db5a67
--- /dev/null
+++ b/pkgs/tools/networking/ifwifi/default.nix
@@ -0,0 +1,49 @@
+{ lib, stdenv, fetchFromGitHub, rustPlatform, makeWrapper, darwin, networkmanager, iw, Security }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "ifwifi";
+ version = "1.0.3";
+
+ src = fetchFromGitHub {
+ owner = "araujobsd";
+ repo = "ifwifi";
+ rev = "${version}";
+ sha256 = "sha256-RYxBlqG8yV7ZhqTkWbzrGI/ZJRF55JN+kUlqFj/Bs7s=";
+ };
+
+ cargoSha256 = "sha256-ys4tXP46pTXj9LSVISBRX+9xj7ijJddS86YzHHzK+jQ=";
+
+ nativeBuildInputs = [ makeWrapper ];
+ buildInputs = lib.optional stdenv.isDarwin Security;
+
+ postInstall = ''
+ wrapProgram "$out/bin/ifwifi" \
+ --prefix PATH : "${lib.makeBinPath (
+ # `ifwifi` runtime dep
+ [ networkmanager ]
+ # `wifiscanner` crate's runtime deps
+ ++ (lib.optional stdenv.isLinux iw)
+ # ++ (lib.optional stdenv.isDarwin airport) # airport isn't packaged
+ )}"
+ '';
+
+ doCheck = true;
+
+ meta = with lib; {
+ description = "A simple wrapper over nmcli using wifiscanner made in rust";
+ longDescription = ''
+ In the author's words:
+
+ I felt bothered because I never remember the long and tedious command
+ line to setup my wifi interface. So, I wanted to develop something
+ using rust to simplify the usage of nmcli, and I met the wifiscanner
+ project that gave me almost everything I wanted to create this tool.
+ '';
+ homepage = "https://github.com/araujobsd/ifwifi";
+ license = with licenses; [ bsd2 ];
+ maintainers = with maintainers; [ blaggacao ];
+ # networkmanager doesn't work on darwin
+ # even though the `wifiscanner` crate would work
+ platforms = with platforms; linux; # ++ darwin;
+ };
+}
diff --git a/pkgs/tools/networking/openvpn/default.nix b/pkgs/tools/networking/openvpn/default.nix
index f6d4590e3185..d13ea566910b 100644
--- a/pkgs/tools/networking/openvpn/default.nix
+++ b/pkgs/tools/networking/openvpn/default.nix
@@ -81,8 +81,8 @@ in
};
openvpn = generic {
- version = "2.5.6";
- sha256 = "0gdd88rcan9vfiwkzsqn6fxxdim7kb1bsxrcra59c5xksprpwfik";
+ version = "2.5.8";
+ sha256 = "1cixqm4gn2d1v8qkbww75j30fzvxz13gc7whcmz54i0x4fvibwx6";
extraBuildInputs = [ openssl ];
};
}
diff --git a/pkgs/tools/system/kanata/default.nix b/pkgs/tools/system/kanata/default.nix
index e83542071e73..aced99ece95b 100644
--- a/pkgs/tools/system/kanata/default.nix
+++ b/pkgs/tools/system/kanata/default.nix
@@ -6,16 +6,16 @@
rustPlatform.buildRustPackage rec {
pname = "kanata";
- version = "1.0.7";
+ version = "1.0.8";
src = fetchFromGitHub {
owner = "jtroo";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-2gGFAz0zXea+27T4ayDj6KdoI0ThwXV7U0CspHduTiQ=";
+ sha256 = "sha256-9x0ELoYCwfE0N7CuxZYMPBmX8A5Vh4pAtbcY6X6S9eQ=";
};
- cargoHash = "sha256-0NvZATdPABIboL5xvmBmDbqPPWvO4mM6wVB3FrOVHIQ=";
+ cargoHash = "sha256-e7yftR1mLMllBe0OIU5QWmGtQm+h30CbTInB6ojQk7M=";
buildFeatures = lib.optional withCmd "cmd";
diff --git a/pkgs/tools/system/rocm-smi/default.nix b/pkgs/tools/system/rocm-smi/default.nix
index 7f3f1ef03531..9015f231bab0 100644
--- a/pkgs/tools/system/rocm-smi/default.nix
+++ b/pkgs/tools/system/rocm-smi/default.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "rocm-smi";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
diff --git a/pkgs/tools/typesetting/sile/default.nix b/pkgs/tools/typesetting/sile/default.nix
index e883ac46005a..92baf044d3cc 100644
--- a/pkgs/tools/typesetting/sile/default.nix
+++ b/pkgs/tools/typesetting/sile/default.nix
@@ -43,11 +43,11 @@ in
stdenv.mkDerivation rec {
pname = "sile";
- version = "0.14.3";
+ version = "0.14.4";
src = fetchurl {
url = "https://github.com/sile-typesetter/sile/releases/download/v${version}/${pname}-${version}.tar.xz";
- sha256 = "1n7nlrvhdp6ilpx6agb5w6flss5vbflbldv0495h19fy5fxkb5vz";
+ sha256 = "091sy3k29q15ksqr650qmf9lz8j9lqbabfph4cf63plg4dnf9m98";
};
configureFlags = [
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index 5813052acd69..0783e9bba8da 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -1393,6 +1393,7 @@ mapAliases ({
# spidermonkey is not ABI upwards-compatible, so only allow this for nix-shell
spidermonkey = spidermonkey_78; # Added 2020-10-09
split2flac = throw "split2flac has been removed. Consider using the shnsplit command from shntool package or help packaging unflac."; # added 2022-01-13
+ spotify-unwrapped = spotify; # added 2022-11-06
spring-boot = spring-boot-cli; # added 2020-04-24
sqlite3_analyzer = throw "'sqlite3_analyzer' has been renamed to/replaced by 'sqlite-analyzer'"; # Converted to throw 2022-02-22
sqliteInteractive = throw "'sqliteInteractive' has been renamed to/replaced by 'sqlite-interactive'"; # Converted to throw 2022-02-22
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f133f74cbc67..1dc0cf58e15f 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1076,6 +1076,8 @@ with pkgs;
{ name = "validate-pkg-config"; deps = [ findutils pkg-config ]; }
../build-support/setup-hooks/validate-pkg-config.sh;
+ patchPpdFilesHook = callPackage ../build-support/setup-hooks/patch-ppd-files {};
+
#package writers
writers = callPackage ../build-support/writers {};
@@ -1357,7 +1359,7 @@ with pkgs;
kanata = callPackage ../tools/system/kanata { };
- kanata-with-cmd = callPackage ../tools/system/kanata { withCmd = true; };
+ kanata-with-cmd = kanata.override { withCmd = true; };
ksmbd-tools = callPackage ../os-specific/linux/ksmbd-tools { };
@@ -4738,6 +4740,8 @@ with pkgs;
photon = callPackage ../tools/networking/photon { };
+ photoprism = callPackage ../servers/photoprism { };
+
piglit = callPackage ../tools/graphics/piglit { };
pika = callPackage ../applications/graphics/pika { };
@@ -7936,6 +7940,10 @@ with pkgs;
iftop = callPackage ../tools/networking/iftop { };
+ ifwifi = callPackage ../tools/networking/ifwifi {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ };
+
ifuse = callPackage ../tools/filesystems/ifuse { };
ideviceinstaller = callPackage ../tools/misc/ideviceinstaller { };
idevicerestore = callPackage ../tools/misc/idevicerestore { };
@@ -14843,6 +14851,14 @@ with pkgs;
rgbds = callPackage ../development/compilers/rgbds { };
+ composable_kernel = callPackage ../development/libraries/composable_kernel {
+ inherit (llvmPackages) openmp;
+ };
+
+ clang-ocl = callPackage ../development/libraries/clang-ocl {
+ inherit (llvmPackages_rocm) clang;
+ };
+
rgxg = callPackage ../tools/text/rgxg { };
rocclr = callPackage ../development/libraries/rocclr { };
@@ -14851,6 +14867,12 @@ with pkgs;
inherit (llvmPackages_rocm) clang llvm;
};
+ hipcub = callPackage ../development/libraries/hipcub { };
+
+ hipsparse = callPackage ../development/libraries/hipsparse { };
+
+ rccl = callPackage ../development/libraries/rccl { };
+
rocm-cmake = callPackage ../development/tools/build-managers/rocm-cmake { };
rocm-comgr = callPackage ../development/libraries/rocm-comgr {
@@ -14879,6 +14901,24 @@ with pkgs;
rocmlir = callPackage ../development/libraries/rocmlir { };
+ rocprim = callPackage ../development/libraries/rocprim { };
+
+ rocsparse = callPackage ../development/libraries/rocsparse { };
+
+ rocfft = callPackage ../development/libraries/rocfft { };
+
+ tensile = python3Packages.callPackage ../development/libraries/tensile { };
+
+ rocblas = callPackage ../development/libraries/rocblas {
+ inherit (llvmPackages_rocm) llvm;
+ };
+
+ miopengemm = callPackage ../development/libraries/miopengemm {
+ inherit (llvmPackages_rocm) clang;
+ };
+
+ rocthrust = callPackage ../development/libraries/rocthrust { };
+
rtags = callPackage ../development/tools/rtags {
inherit (darwin) apple_sdk;
};
@@ -17302,7 +17342,10 @@ with pkgs;
modd = callPackage ../development/tools/modd { };
mold = callPackage ../development/tools/mold {
- inherit (llvmPackages) stdenv;
+ # C++20 is required, aarch64-linux has gcc 9 by default
+ stdenv = if stdenv.isLinux && stdenv.isAarch64
+ then llvmPackages_12.libcxxStdenv
+ else llvmPackages.stdenv;
};
msgpack-tools = callPackage ../development/tools/msgpack-tools { };
@@ -28499,7 +28542,9 @@ with pkgs;
fftw = fftwSinglePrec;
};
- gurk-rs = callPackage ../applications/networking/instant-messengers/gurk-rs { };
+ gurk-rs = callPackage ../applications/networking/instant-messengers/gurk-rs {
+ inherit (darwin.apple_sdk.frameworks) Cocoa;
+ };
gjay = callPackage ../applications/audio/gjay { };
@@ -31937,9 +31982,7 @@ with pkgs;
autoreconfHook = buildPackages.autoreconfHook269;
};
- spotify-unwrapped = callPackage ../applications/audio/spotify { };
-
- spotify = callPackage ../applications/audio/spotify/wrapper.nix { };
+ spotify = callPackage ../applications/audio/spotify { };
spotifywm = callPackage ../applications/audio/spotifywm { };
@@ -35454,11 +35497,11 @@ with pkgs;
or-tools = callPackage ../development/libraries/science/math/or-tools {
python = python3;
- # or-tools builds with -std=c++17, so abseil-cpp must
+ # or-tools builds with -std=c++20, so abseil-cpp must
# also be built that way
- abseil-cpp = abseil-cpp.override {
+ abseil-cpp = abseil-cpp_202111.override {
static = true;
- cxxStandard = "17";
+ cxxStandard = "20";
};
};
@@ -36058,7 +36101,7 @@ with pkgs;
msieve = callPackage ../applications/science/math/msieve { };
- weka = callPackage ../applications/science/math/weka { };
+ weka = callPackage ../applications/science/math/weka { jre = openjdk11; };
yad = callPackage ../tools/misc/yad { };
@@ -36321,6 +36364,12 @@ with pkgs;
epson-workforce-635-nx625-series = callPackage ../misc/drivers/epson-workforce-635-nx625-series { };
+ foomatic-db = callPackage ../misc/cups/drivers/foomatic-db {};
+ foomatic-db-engine = callPackage ../misc/cups/drivers/foomatic-db-engine {};
+ foomatic-db-nonfree = callPackage ../misc/cups/drivers/foomatic-db-nonfree {};
+ foomatic-db-ppds = callPackage ../misc/cups/drivers/foomatic-db-ppds {};
+ foomatic-db-ppds-withNonfreeDb = callPackage ../misc/cups/drivers/foomatic-db-ppds { withNonfreeDb = true; };
+
gutenprint = callPackage ../misc/drivers/gutenprint { };
gutenprintBin = callPackage ../misc/drivers/gutenprint/bin.nix { };
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index ae46e21fd2e1..daac25d200fc 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -8004,16 +8004,18 @@ self: super: with self; {
pylink-square = callPackage ../development/python-modules/pylink-square { };
+ pylint = callPackage ../development/python-modules/pylint { };
+
pylint-celery = callPackage ../development/python-modules/pylint-celery { };
pylint-django = callPackage ../development/python-modules/pylint-django { };
pylint-flask = callPackage ../development/python-modules/pylint-flask { };
- pylint = callPackage ../development/python-modules/pylint { };
-
pylint-plugin-utils = callPackage ../development/python-modules/pylint-plugin-utils { };
+ pylint-venv = callPackage ../development/python-modules/pylint-venv { };
+
pylitterbot = callPackage ../development/python-modules/pylitterbot { };
py-libzfs = callPackage ../development/python-modules/py-libzfs { };