diff --git a/doc/release-notes.xml b/doc/release-notes.xml
deleted file mode 100644
index a15f54667290..000000000000
--- a/doc/release-notes.xml
+++ /dev/null
@@ -1,650 +0,0 @@
-
-
- Nixpkgs Release Notes
-
- Release 0.14 (June 4, 2012)
-
-
- In preparation for the switch from Subversion to Git, this release is mainly the prevent the Nixpkgs version number from going backwards. (This would happen because prerelease version numbers produced for the Git repository are lower than those for the Subversion repository.)
-
-
-
- Since the last release, there have been thousands of changes and new packages by numerous contributors. For details, see the commit logs.
-
-
-
- Release 0.13 (February 5, 2010)
-
-
- As always, there are many changes. Some of the most important updates are:
-
-
-
- Glibc 2.9.
-
-
-
-
- GCC 4.3.3.
-
-
-
-
- Linux 2.6.32.
-
-
-
-
- X.org 7.5.
-
-
-
-
- KDE 4.3.4.
-
-
-
-
-
-
- Release 0.12 (April 24, 2009)
-
-
- There are way too many additions to Nixpkgs since the last release to list here: for example, the number of packages on Linux has increased from 1002 to 2159. However, some specific improvements are worth listing:
-
-
-
- Nixpkgs now has a manual. In particular, it describes the standard build environment in detail.
-
-
-
-
- Major new packages:
-
-
-
- KDE 4.
-
-
-
-
- TeXLive.
-
-
-
-
- VirtualBox.
-
-
-
- … and many others.
-
-
-
-
- Important updates:
-
-
-
- Glibc 2.7.
-
-
-
-
- GCC 4.2.4.
-
-
-
-
- Linux 2.6.25 — 2.6.28.
-
-
-
-
- Firefox 3.
-
-
-
-
- X.org 7.3.
-
-
-
-
-
-
-
- Support for building derivations in a virtual machine, including RPM and Debian builds in automatically generated VM images. See pkgs/build-support/vm/default.nix for details.
-
-
-
-
- Improved support for building Haskell packages.
-
-
-
-
-
-
- The following people contributed to this release: Andres Löh, Arie Middelkoop, Armijn Hemel, Eelco Dolstra, Lluís Batlle, Ludovic Courtès, Marc Weber, Mart Kolthof, Martin Bravenboer, Michael Raskin, Nicolas Pierron, Peter Simons, Pjotr Prins, Rob Vermaas, Sander van der Burg, Tobias Hammerschmidt, Valentin David, Wouter den Breejen and Yury G. Kudryashov. In addition, several people contributed patches on the nix-dev mailing list.
-
-
-
- Release 0.11 (September 11, 2007)
-
-
- This release has the following improvements:
-
-
-
- The standard build environment (stdenv) is now pure on the x86_64-linux and powerpc-linux platforms, just as on i686-linux. (Purity means that building and using the standard environment has no dependencies outside of the Nix store. For instance, it doesn’t require an external C compiler such as /usr/bin/gcc.) Also, the statically linked binaries used in the bootstrap process are now automatically reproducible, making it easy to update the bootstrap tools and to add support for other Linux platforms. See pkgs/stdenv/linux/make-bootstrap-tools.nix for details.
-
-
-
-
- Hook variables in the generic builder are now executed using the eval shell command. This has a major advantage: you can write hooks directly in Nix expressions. For instance, rather than writing a builder like this:
-
-source $stdenv/setup
-
-postInstall=postInstall
-postInstall() {
- ln -sf gzip $out/bin/gunzip
- ln -sf gzip $out/bin/zcat
-}
-
-genericBuild
- (the gzip builder), you can just add this attribute to the derivation:
-
-postInstall = "ln -sf gzip $out/bin/gunzip; ln -sf gzip $out/bin/zcat";
- and so a separate build script becomes unnecessary. This should allow us to get rid of most builders in Nixpkgs.
-
-
-
-
- It is now possible to have the generic builder pass arguments to configure and make that contain whitespace. Previously, for example, you could say in a builder,
-
-configureFlags="CFLAGS=-O0"
- but not
-
-configureFlags="CFLAGS=-O0 -g"
- since the -g would be interpreted as a separate argument to configure. Now you can say
-
-configureFlagsArray=("CFLAGS=-O0 -g")
- or similarly
-
-configureFlagsArray=("CFLAGS=-O0 -g" "LDFLAGS=-L/foo -L/bar")
- which does the right thing. Idem for makeFlags, installFlags, checkFlags and distFlags.
-
-
- Unfortunately you can't pass arrays to Bash through the environment, so you can't put the array above in a Nix expression, e.g.,
-
-configureFlagsArray = ["CFLAGS=-O0 -g"];
- since it would just be flattened to a since string. However, you can use the inline hooks described above:
-
-preConfigure = "configureFlagsArray=(\"CFLAGS=-O0 -g\")";
-
-
-
-
- The function fetchurl now has support for two different kinds of mirroring of files. First, it has support for content-addressable mirrors. For example, given the fetchurl call
-
-fetchurl {
- url = "http://releases.mozilla.org/.../firefox-2.0.0.6-source.tar.bz2";
- sha1 = "eb72f55e4a8bf08e8c6ef227c0ade3d068ba1082";
-}
- fetchurl will first try to download this file from . If that file doesn’t exist, it will try the original URL. In general, the “content-addressed” location is mirror/hash-type/hash. There is currently only one content-addressable mirror (), but more can be specified in the hashedMirrors attribute in pkgs/build-support/fetchurl/mirrors.nix, or by setting the NIX_HASHED_MIRRORS environment variable to a whitespace-separated list of URLs.
-
-
- Second, fetchurl has support for widely-mirrored distribution sites such as SourceForge or the Linux kernel archives. Given a URL of the form mirror://site/path, it will try to download path from a configurable list of mirrors for site. (This idea was borrowed from Gentoo Linux.) Example:
-
-fetchurl {
- url = mirror://gnu/gcc/gcc-4.2.0/gcc-core-4.2.0.tar.bz2;
- sha256 = "0ykhzxhr8857dr97z0j9wyybfz1kjr71xk457cfapfw5fjas4ny1";
-}
- Currently site can be sourceforge, gnu and kernel. The list of mirrors is defined in pkgs/build-support/fetchurl/mirrors.nix. You can override the list of mirrors for a particular site by setting the environment variable NIX_MIRRORS_site, e.g.
-
-export NIX_MIRRORS_sourceforge=http://osdn.dl.sourceforge.net/sourceforge/
-
-
-
-
- Important updates:
-
-
-
- Glibc 2.5.
-
-
-
-
- GCC 4.1.2.
-
-
-
-
- Gnome 2.16.3.
-
-
-
-
- X11R7.2.
-
-
-
-
- Linux 2.6.21.7 and 2.6.22.6.
-
-
-
-
- Emacs 22.1.
-
-
-
-
-
-
-
- Major new packages:
-
-
-
- KDE 3.5.6 Base.
-
-
-
-
- Wine 0.9.43.
-
-
-
-
- OpenOffice 2.2.1.
-
-
-
-
- Many Linux system packages to support NixOS.
-
-
-
-
-
-
-
-
-
- The following people contributed to this release: Andres Löh, Arie Middelkoop, Armijn Hemel, Eelco Dolstra, Marc Weber, Mart Kolthof, Martin Bravenboer, Michael Raskin, Wouter den Breejen and Yury G. Kudryashov.
-
-
-
- Release 0.10 (October 12, 2006)
-
-
-
- This release of Nixpkgs requires Nix 0.10 or higher.
-
-
-
-
- This release has the following improvements:
-
-
-
-
-
- pkgs/system/all-packages-generic.nix is gone, we now just have pkgs/top-level/all-packages.nix that contains all available packages. This should cause much less confusion with users. all-packages.nix is a function that by default returns packages for the current platform, but you can override this by specifying a different system argument.
-
-
-
-
- Certain packages in Nixpkgs are now user-configurable through a configuration file, i.e., without having to edit the Nix expressions in Nixpkgs. For instance, the Firefox provided in the Nixpkgs channel is built without the RealPlayer plugin (for legal reasons). Previously, you could easily enable RealPlayer support by editing the call to the Firefox function in all-packages.nix, but such changes are not respected when Firefox is subsequently updated through the Nixpkgs channel.
-
-
- The Nixpkgs configuration file (found in ~/.nixpkgs/config.nix or through the NIXPKGS_CONFIG environment variable) is an attribute set that contains configuration options that all-packages.nix reads and uses for certain packages. For instance, the following configuration file:
-
-{
- firefox = {
- enableRealPlayer = true;
- };
-}
- persistently enables RealPlayer support in the Firefox build.
-
-
- (Actually, firefox.enableRealPlayer is the only configuration option currently available, but more are sure to be added.)
-
-
-
-
- Support for new platforms:
-
-
-
- i686-cygwin, i.e., Windows (using Cygwin). The standard environment on i686-cygwin by default builds binaries for the Cygwin environment (i.e., it uses Cygwin tools and produces executables that use the Cygwin library). However, there is also a standard environment that produces binaries that use MinGW. You can use it by calling all-package.nix with the stdenvType argument set to "i686-mingw".
-
-
-
-
- i686-darwin, i.e., Mac OS X on Intel CPUs.
-
-
-
-
- powerpc-linux.
-
-
-
-
- x86_64-linux, i.e., Linux on 64-bit AMD/Intel CPUs. Unlike i686-linux, this platform doesn’t have a pure stdenv yet.
-
-
-
-
-
-
-
- The default compiler is now GCC 4.1.1.
-
-
-
-
- X11 updated to X.org’s X11R7.1.
-
-
-
-
- Notable new packages:
-
-
-
- Opera.
-
-
-
-
- Microsoft Visual C++ 2005 Express Edition and the Windows SDK.
-
-
-
- In total there are now around 809 packages in Nixpkgs.
-
-
-
-
- It is now much easier to override the default C compiler and other tools in stdenv for specific packages. all-packages.nix provides two utility functions for this purpose: overrideGCC and overrideInStdenv. Both take a stdenv and return an augmented stdenv; the formed changes the C compiler, and the latter adds additional packages to the front of stdenv’s initial PATH, allowing tools to be overridden.
-
-
- For instance, the package strategoxt doesn’t build with the GNU Make in stdenv (version 3.81), so we call it with an augmented stdenv that uses GNU Make 3.80:
-
-strategoxt = (import ../development/compilers/strategoxt) {
- inherit fetchurl pkgconfig sdf aterm;
- stdenv = overrideInStdenv stdenv [gnumake380];
-};
-
-gnumake380 = ...;
- Likewise, there are many packages that don’t compile with the default GCC (4.1.1), but that’s easily fixed:
-
-exult = import ../games/exult {
- inherit fetchurl SDL SDL_mixer zlib libpng unzip;
- stdenv = overrideGCC stdenv gcc34;
-};
-
-
-
-
- It has also become much easier to experiment with changes to the stdenv setup script (which notably contains the generic builder). Since edits to pkgs/stdenv/generic/setup.sh trigger a rebuild of everything, this was formerly quite painful. But now stdenv contains a function to “regenerate” stdenv with a different setup script, allowing the use of a different setup script for specific packages:
-
-pkg = import ... {
- stdenv = stdenv.regenerate ./my-setup.sh;
- ...
-}
-
-
-
-
- Packages can now have a human-readable description field. Package descriptions are shown by nix-env -qa --description. In addition, they’re shown on the Nixpkgs release page. A description can be added to a package as follows:
-
-stdenv.mkDerivation {
- name = "exult-1.2";
- ...
- meta = {
- description = "A reimplementation of the Ultima VII game engine";
- };
-}
- The meta attribute is not passed to the builder, so changes to the description do not trigger a rebuild. Additional meta attributes may be defined in the future (such as the URL of the package’s homepage, the license, etc.).
-
-
-
-
-
- The following people contributed to this release: Andres Löh, Armijn Hemel, Christof Douma, Eelco Dolstra, Eelco Visser, Mart Kolthof, Martin Bravenboer, Merijn de Jonge, Rob Vermaas and Roy van den Broek.
-
-
-
- Release 0.9 (January 31, 2006)
-
-
- There have been zillions of changes since the last release of Nixpkgs. Many packages have been added or updated. The following are some of the more notable changes:
-
-
-
-
-
- Distribution files have been moved to .
-
-
-
-
- The C library on Linux, Glibc, has been updated to version 2.3.6.
-
-
-
-
- The default compiler is now GCC 3.4.5. GCC 4.0.2 is also available.
-
-
-
-
- The old, unofficial Xlibs has been replaced by the official modularised X11 distribution from X.org, i.e., X11R7.0. X11R7.0 consists of 287 (!) packages, all of which are in Nixpkgs though not all have been tested. It is now possible to build a working X server (previously we only had X client libraries). We use a fully Nixified X server on NixOS.
-
-
-
-
- The Sun JDK 5 has been purified, i.e., it doesn’t require any non-Nix components such as /lib/ld-linux.so.2. This means that Java applications such as Eclipse and Azureus can run on NixOS.
-
-
-
-
- Hardware-accelerated OpenGL support, used by games like Quake 3 (which is now built from source).
-
-
-
-
- Improved support for FreeBSD on x86.
-
-
-
-
- Improved Haskell support; e.g., the GHC build is now pure.
-
-
-
-
- Some support for cross-compilation: cross-compiling builds of GCC and Binutils, and cross-compiled builds of the C library uClibc.
-
-
-
-
- Notable new packages:
-
-
-
- teTeX, including support for building LaTeX documents using Nix (with automatic dependency determination).
-
-
-
-
- Ruby.
-
-
-
-
- System-level packages to support NixOS, e.g. Grub, GNU parted and so on.
-
-
-
-
- ecj, the Eclipse Compiler for Java, so we finally have a freely distributable compiler that supports Java 5.0.
-
-
-
-
- php.
-
-
-
-
- The GIMP.
-
-
-
-
- Inkscape.
-
-
-
-
- GAIM.
-
-
-
-
- kdelibs. This allows us to add KDE-based packages (such as kcachegrind).
-
-
-
-
-
-
-
-
- The following people contributed to this release: Andres Löh, Armijn Hemel, Bogdan Dumitriu, Christof Douma, Eelco Dolstra, Eelco Visser, Mart Kolthof, Martin Bravenboer, Rob Vermaas and Roy van den Broek.
-
-
-
- Release 0.8 (April 11, 2005)
-
-
- This release is mostly to remain synchronised with the changed hashing scheme in Nix 0.8.
-
-
-
- Notable updates:
-
-
-
- Adobe Reader 7.0
-
-
-
-
- Various security updates (zlib 1.2.2, etc.)
-
-
-
-
-
-
- Release 0.7 (March 14, 2005)
-
-
-
-
- The bootstrap process for the standard build environment on Linux (stdenv-linux) has been improved. It is no longer dependent in its initial bootstrap stages on the system Glibc, GCC, and other tools. Rather, Nixpkgs contains a statically linked bash and curl, and uses that to download other statically linked tools. These are then used to build a Glibc and dynamically linked versions of all other tools.
-
-
- This change also makes the bootstrap process faster. For instance, GCC is built only once instead of three times.
-
-
- (Contributed by Armijn Hemel.)
-
-
-
-
- Tarballs used by Nixpkgs are now obtained from the same server that hosts Nixpkgs (). This reduces the risk of packages being unbuildable due to moved or deleted files on various servers.
-
-
-
-
- There now is a generic mechanism for building Perl modules. See the various Perl modules defined in pkgs/system/all-packages-generic.nix.
-
-
-
-
- Notable new packages:
-
-
-
- Qt 3
-
-
-
-
- MySQL
-
-
-
-
- MythTV
-
-
-
-
- Mono
-
-
-
-
- MonoDevelop (alpha)
-
-
-
-
- Xine
-
-
-
-
-
-
-
- Notable updates:
-
-
-
- GCC 3.4.3
-
-
-
-
- Glibc 2.3.4
-
-
-
-
- GTK 2.6
-
-
-
-
-
-
-
-
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index e6c8a4c55362..534405fdfc8d 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -11858,6 +11858,12 @@
github = "simarra";
githubId = 14372987;
};
+ simoneruffini = {
+ email = "simone.ruffini@tutanota.com";
+ github = "simoneruffini";
+ githubId = 50401154;
+ name = "Simone Ruffini";
+ };
simonchatts = {
email = "code@chatts.net";
github = "simonchatts";
diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix
index 934bdfcf046a..744e9c16faf2 100644
--- a/pkgs/applications/editors/vim/plugins/overrides.nix
+++ b/pkgs/applications/editors/vim/plugins/overrides.nix
@@ -52,9 +52,6 @@
, xorg
, zsh
-# test dependencies
-, neovim-unwrapped
-
# command-t dependencies
, rake
, ruby
@@ -236,6 +233,12 @@ self: super: {
dependencies = with self; [ nvim-cmp zsh ];
});
+ coc-nginx = buildVimPluginFrom2Nix {
+ pname = "coc-nginx";
+ inherit (nodePackages."@yaegassy/coc-nginx") version meta;
+ src = "${nodePackages."@yaegassy/coc-nginx"}/lib/node_modules/@yaegassy/coc-nginx";
+ };
+
command-t = super.command-t.overrideAttrs (old: {
buildInputs = [ ruby rake ];
buildPhase = ''
@@ -1254,6 +1257,7 @@ self: super: {
"coc-cmake"
"coc-css"
"coc-diagnostic"
+ "coc-docker"
"coc-emmet"
"coc-eslint"
"coc-explorer"
@@ -1277,12 +1281,16 @@ self: super: {
"coc-r-lsp"
"coc-rls"
"coc-rust-analyzer"
+ "coc-sh"
"coc-smartf"
"coc-snippets"
"coc-solargraph"
"coc-stylelint"
+ "coc-sumneko-lua"
+ "coc-sqlfluff"
"coc-tabnine"
"coc-texlab"
+ "coc-toml"
"coc-tslint"
"coc-tslint-plugin"
"coc-tsserver"
diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix
index aae268df3f54..abd8419c49ba 100644
--- a/pkgs/applications/editors/vscode/extensions/default.nix
+++ b/pkgs/applications/editors/vscode/extensions/default.nix
@@ -1703,6 +1703,23 @@ let
};
};
+ njpwerner.autodocstring = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "autodocstring";
+ publisher = "njpwerner";
+ version = "0.6.1";
+ sha256 = "sha256-NI0cbjsZPW8n6qRTRKoqznSDhLZRUguP7Sa/d0feeoc=";
+ };
+ meta = with lib; {
+ changelog = "https://marketplace.visualstudio.com/items/njpwerner.autodocstring/changelog";
+ description = "Generates python docstrings automatically";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=njpwerner.autodocstring";
+ homepage = "https://github.com/NilsJPWerner/autoDocstring";
+ license = licenses.mit;
+ maintainers = with maintainers; [ kamadorueda ];
+ };
+ };
+
octref.vetur = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vetur";
diff --git a/pkgs/applications/graphics/qosmic/default.nix b/pkgs/applications/graphics/qosmic/default.nix
index 96823441b6e1..9e2248f896de 100644
--- a/pkgs/applications/graphics/qosmic/default.nix
+++ b/pkgs/applications/graphics/qosmic/default.nix
@@ -1,4 +1,4 @@
-{ mkDerivation
+{ stdenv
, fetchFromGitHub
, fetchpatch
, qmake
@@ -13,7 +13,7 @@
, lib
}:
-mkDerivation rec {
+stdenv.mkDerivation rec {
pname = "qosmic";
version = "1.6.0";
@@ -42,6 +42,13 @@ mkDerivation rec {
})
];
+ postPatch = lib.optionalString stdenv.isDarwin ''
+ substituteInPlace qosmic.pro \
+ --replace "/share" "/Applications/qosmic.app/Contents/Resources" \
+ --replace "/qosmic/scripts" "/scripts" \
+ --replace "install_icons install_desktop" ""
+ '';
+
nativeBuildInputs = [ qmake wrapQtAppsHook pkg-config ];
buildInputs = [
@@ -55,16 +62,19 @@ mkDerivation rec {
qmakeFlags = [
# Use pkg-config to correctly locate library paths
- "-config" "link_pkgconfig"
+ "CONFIG+=link_pkgconfig"
];
+ preInstall = lib.optionalString stdenv.isDarwin ''
+ mkdir -p $out/Applications
+ mv qosmic.app $out/Applications
+ '';
+
meta = with lib; {
description = "A cosmic recursive flame fractal editor";
homepage = "https://github.com/bitsed/qosmic";
license = licenses.gpl3Plus;
maintainers = [ maintainers.raboof ];
- # It might be possible to make it work on OSX,
- # but this has not been tested.
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix
index 4aceeeb9e355..1fcb3da8ae89 100644
--- a/pkgs/applications/misc/blender/default.nix
+++ b/pkgs/applications/misc/blender/default.nix
@@ -27,11 +27,11 @@ let
in
stdenv.mkDerivation rec {
pname = "blender";
- version = "3.1.0";
+ version = "3.2.0";
src = fetchurl {
url = "https://download.blender.org/source/${pname}-${version}.tar.xz";
- sha256 = "1d0476bzcz86lwdnyjn7hyzkmhfiqh47ls5h09jlbm7v7k9x69hw";
+ hash = "sha256-k78LL1urcQWxnF1lSoSi3CH3Ylhzo2Bk2Yvq5zbTYEo=";
};
patches = lib.optional stdenv.isDarwin ./darwin.patch;
diff --git a/pkgs/applications/networking/cluster/terraform-providers/default.nix b/pkgs/applications/networking/cluster/terraform-providers/default.nix
index 5e3eb4dfe195..94b8bc23a772 100644
--- a/pkgs/applications/networking/cluster/terraform-providers/default.nix
+++ b/pkgs/applications/networking/cluster/terraform-providers/default.nix
@@ -73,6 +73,7 @@ let
removed = name: date: throw "the ${name} terraform provider removed from nixpkgs on ${date}";
in
lib.optionalAttrs config.allowAliases {
+ b2 = removed "b2" "2022/06";
opc = archived "opc" "2022/05";
oraclepaas = archived "oraclepaas" "2022/05";
template = archived "template" "2022/05";
diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json
index d298f42829ce..45bc2ad8be22 100644
--- a/pkgs/applications/networking/cluster/terraform-providers/providers.json
+++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json
@@ -135,15 +135,6 @@
"vendorSha256": null,
"version": "0.10.0"
},
- "b2": {
- "owner": "Backblaze",
- "provider-source-address": "registry.terraform.io/Backblaze/b2",
- "repo": "terraform-provider-b2",
- "rev": "v0.8.0",
- "sha256": "sha256-2yyAKrDO7X5yujfrHhYuvXbuKk3yY1sCXRZ8U/9OnrM=",
- "vendorSha256": "sha256-f5bvk0p7AU1i/xeapxyVRXIUARju6mNQokejaDnT/GI=",
- "version": "0.8.0"
- },
"baiducloud": {
"deleteVendor": true,
"owner": "baidubce",
diff --git a/pkgs/applications/networking/instant-messengers/stride/default.nix b/pkgs/applications/networking/instant-messengers/stride/default.nix
deleted file mode 100644
index 026dc5b64056..000000000000
--- a/pkgs/applications/networking/instant-messengers/stride/default.nix
+++ /dev/null
@@ -1,68 +0,0 @@
-{ lib, stdenv, fetchurl, dpkg, alsa-lib, atk, cairo, cups, dbus, expat, fontconfig
-, freetype, gdk-pixbuf, glib, gnome2, gtk2, nspr, nss, pango, udev, xorg }:
-let
- fullPath = lib.makeLibraryPath [
- alsa-lib
- atk
- cairo
- cups
- dbus
- expat
- fontconfig
- freetype
- gdk-pixbuf
- glib
- gnome2.GConf
- gtk2
- nspr
- nss
- pango
- udev
- xorg.libX11
- xorg.libXScrnSaver
- xorg.libXcomposite
- xorg.libXcursor
- xorg.libXdamage
- xorg.libXext
- xorg.libXfixes
- xorg.libXi
- xorg.libXrandr
- xorg.libXrender
- xorg.libXtst
- xorg.libxcb
- ] + ":${stdenv.cc.cc.lib}/lib64";
-in
-stdenv.mkDerivation rec {
- version = "1.17.82";
- pname = "stride";
-
- src = fetchurl {
- url = "https://packages.atlassian.com/stride-apt-client/pool/stride_${version}_amd64.deb";
- sha256 = "0lx61gdhw0kv4f9fwbfg69yq52dsp4db7c4li25d6wn11qanzqhy";
- };
-
- dontBuild = true;
- dontFixup = true;
-
- buildInputs = [ dpkg ];
-
- unpackPhase = ''
- dpkg-deb -x ${src} ./
- '';
-
- installPhase =''
- mkdir "$out"
- mv usr/* "$out/"
- patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- --set-rpath "${fullPath}:\$ORIGIN" \
- "$out/bin/stride"
- '';
-
- meta = with lib; {
- description = "Desktop client for Atlassian Stride";
- homepage = "https://www.stride.com/";
- license = licenses.unfree;
- platforms = [ "x86_64-linux" ];
- maintainers = with maintainers; [ puffnfresh ];
- };
-}
diff --git a/pkgs/applications/system/glances/default.nix b/pkgs/applications/system/glances/default.nix
index b7e4cad122d7..dae9d5cd5195 100644
--- a/pkgs/applications/system/glances/default.nix
+++ b/pkgs/applications/system/glances/default.nix
@@ -9,14 +9,14 @@
buildPythonApplication rec {
pname = "glances";
- version = "3.2.5";
+ version = "3.2.6.4";
disabled = isPyPy;
src = fetchFromGitHub {
owner = "nicolargo";
repo = "glances";
rev = "v${version}";
- sha256 = "sha256-kTnUP7WvmEw4VazjLrGb0FhSdz+/OadzgwDXs1SA02o=";
+ sha256 = "sha256-i88bz6AwfDbqC+7yvr7uDofAqBwQmnfoKbt3iJz4Ft8=";
};
# Some tests fail in the sandbox (they e.g. require access to /sys/class/power_supply):
diff --git a/pkgs/applications/version-management/git-lfs/default.nix b/pkgs/applications/version-management/git-lfs/default.nix
index b4f5a9e5287b..6740cb713f86 100644
--- a/pkgs/applications/version-management/git-lfs/default.nix
+++ b/pkgs/applications/version-management/git-lfs/default.nix
@@ -25,7 +25,7 @@ buildGoModule rec {
subPackages = [ "." ];
preBuild = ''
- go generate ./commands
+ GOARCH= go generate ./commands
'';
postBuild = ''
diff --git a/pkgs/applications/video/hypnotix/default.nix b/pkgs/applications/video/hypnotix/default.nix
index 129322809067..582060920ea4 100644
--- a/pkgs/applications/video/hypnotix/default.nix
+++ b/pkgs/applications/video/hypnotix/default.nix
@@ -12,13 +12,13 @@
stdenv.mkDerivation rec {
pname = "hypnotix";
- version = "2.6";
+ version = "2.7";
src = fetchFromGitHub {
owner = "linuxmint";
repo = "hypnotix";
rev = version;
- hash = "sha256-9HWr8zjUuhj/GZdrt1WwpwYNLEl34S9IJ7ikGZBSw3s=";
+ hash = "sha256-Mfj10CPYAI2QObgjbkhEPJ2nx6hsR5BHpmNofmdSz1k=";
};
patches = [
@@ -79,6 +79,7 @@ stdenv.mkDerivation rec {
meta = {
description = "IPTV streaming application";
homepage = "https://github.com/linuxmint/hypnotix";
+ changelog = "https://github.com/linuxmint/hypnotix/blob/${src.rev}/debian/changelog";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ dotlambda ];
platforms = lib.platforms.linux;
diff --git a/pkgs/applications/window-managers/e16/default.nix b/pkgs/applications/window-managers/e16/default.nix
index 37a4f7c94361..053b01cb2258 100644
--- a/pkgs/applications/window-managers/e16/default.nix
+++ b/pkgs/applications/window-managers/e16/default.nix
@@ -16,15 +16,16 @@
, libsndfile
, pango
, perl
+, gitUpdater
}:
stdenv.mkDerivation rec {
pname = "e16";
- version = "1.0.24";
+ version = "1.0.25";
src = fetchurl {
url = "mirror://sourceforge/enlightenment/e16-${version}.tar.xz";
- sha256 = "1anmwfjyynwl0ylkyksa7bnsqzf58l1yccjzp3kbwq6nw1gs7dbv";
+ hash = "sha256-rUtDaBa4vvC3gO7QSkFrphWuVOmbtkH+pRujQDaUOek=";
};
nativeBuildInputs = [
@@ -52,6 +53,12 @@ stdenv.mkDerivation rec {
substituteInPlace scripts/e_gen_menu --replace "/usr/local:" "/run/current-system/sw:/usr/local:"
'';
+ passthru.updateScript = gitUpdater {
+ inherit pname version;
+ url = "https://git.enlightenment.org/e16/e16";
+ rev-prefix = "v";
+ };
+
meta = with lib; {
homepage = "https://www.enlightenment.org/e16";
description = "Enlightenment DR16 window manager";
diff --git a/pkgs/build-support/prefer-remote-fetch/default.nix b/pkgs/build-support/prefer-remote-fetch/default.nix
index 2e55e3707421..a1f2d0c56cff 100644
--- a/pkgs/build-support/prefer-remote-fetch/default.nix
+++ b/pkgs/build-support/prefer-remote-fetch/default.nix
@@ -11,9 +11,9 @@
# $ echo 'self: super: super.prefer-remote-fetch self super' > ~/.config/nixpkgs/overlays/prefer-remote-fetch.nix
#
self: super: {
- fetchurl = args: super.fetchurl (args // { preferLocalBuild = false; });
- fetchgit = args: super.fetchgit (args // { preferLocalBuild = false; });
- fetchhg = args: super.fetchhg (args // { preferLocalBuild = false; });
- fetchsvn = args: super.fetchsvn (args // { preferLocalBuild = false; });
- fetchipfs = args: super.fetchipfs (args // { preferLocalBuild = false; });
+ fetchurl = args: super.fetchurl ({ preferLocalBuild = false; } // args);
+ fetchgit = args: super.fetchgit ({ preferLocalBuild = false; } // args);
+ fetchhg = args: super.fetchhg ({ preferLocalBuild = false; } // args);
+ fetchsvn = args: super.fetchsvn ({ preferLocalBuild = false; } // args);
+ fetchipfs = args: super.fetchipfs ({ preferLocalBuild = false; } // args);
}
diff --git a/pkgs/desktops/gnome/apps/gnome-todo/default.nix b/pkgs/desktops/gnome/apps/gnome-todo/default.nix
index e9331c08993c..582a0772a680 100644
--- a/pkgs/desktops/gnome/apps/gnome-todo/default.nix
+++ b/pkgs/desktops/gnome/apps/gnome-todo/default.nix
@@ -27,14 +27,14 @@
stdenv.mkDerivation rec {
pname = "gnome-todo";
- version = "unstable-2022-05-23";
+ version = "unstable-2022-06-12";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = "gnome-todo";
- rev = "ac1d540de63e2540b4eb8a642054862b5793b40a";
- sha256 = "7fJOXQpapQ8RqJq5tJEWjOxnY9qExz5SbYMWFDREQlY=";
+ rev = "ad4e15f0b58860caf8c6d497795b83b594a9c3e5";
+ sha256 = "HRufLoZou9ssQ/qoDG8anhOAtl8IYvFpyjq/XJlsotQ=";
};
patches = [
diff --git a/pkgs/desktops/pantheon/apps/elementary-tasks/default.nix b/pkgs/desktops/pantheon/apps/elementary-tasks/default.nix
index c101e57e1ace..7efd7e99da28 100644
--- a/pkgs/desktops/pantheon/apps/elementary-tasks/default.nix
+++ b/pkgs/desktops/pantheon/apps/elementary-tasks/default.nix
@@ -2,8 +2,6 @@
, stdenv
, fetchFromGitHub
, nix-update-script
-, appstream
-, desktop-file-utils
, meson
, ninja
, pkg-config
@@ -25,18 +23,16 @@
stdenv.mkDerivation rec {
pname = "elementary-tasks";
- version = "6.2.0";
+ version = "6.3.0";
src = fetchFromGitHub {
owner = "elementary";
repo = "tasks";
rev = version;
- sha256 = "sha256-eHaWXntLkk5G+cR5uFwWsIvbSPsbrvpglYBh91ta/M0=";
+ sha256 = "sha256-kW36bKA0uzW98Xl2bjbTkcfLm4SeQR8VB2FyKOqfPnM=";
};
nativeBuildInputs = [
- appstream
- desktop-file-utils
meson
ninja
pkg-config
diff --git a/pkgs/desktops/pantheon/apps/switchboard/default.nix b/pkgs/desktops/pantheon/apps/switchboard/default.nix
index cc719e65dfa9..7d030050f9d4 100644
--- a/pkgs/desktops/pantheon/apps/switchboard/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard/default.nix
@@ -11,23 +11,21 @@
, libgee
, libhandy
, granite
-, gettext
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "switchboard";
- version = "6.0.1";
+ version = "6.0.2";
src = fetchFromGitHub {
owner = "elementary";
repo = pname;
rev = version;
- sha256 = "sha256-QMh9m6Xc0BeprZHrOgcmSireWb8Ja7Td0COYMgYw+5M=";
+ sha256 = "sha256-2c+anQ17lrdFy+cbjoYY94EFxYUcS+4mZrwbrLohfUg=";
};
nativeBuildInputs = [
- gettext
meson
ninja
pkg-config
diff --git a/pkgs/desktops/pantheon/services/elementary-notifications/default.nix b/pkgs/desktops/pantheon/services/elementary-notifications/default.nix
index afde58c5f509..98fda866d6ca 100644
--- a/pkgs/desktops/pantheon/services/elementary-notifications/default.nix
+++ b/pkgs/desktops/pantheon/services/elementary-notifications/default.nix
@@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
+, nix-update-script
, meson
, ninja
, pkg-config
@@ -50,6 +51,12 @@ stdenv.mkDerivation rec {
patchShebangs meson/post_install.py
'';
+ passthru = {
+ updateScript = nix-update-script {
+ attrPath = "pantheon.${pname}";
+ };
+ };
+
meta = with lib; {
description = "GTK notification server for Pantheon";
homepage = "https://github.com/elementary/notifications";
diff --git a/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix b/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix
index a57d14d2f40c..04dc119c52e9 100644
--- a/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix
+++ b/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix
@@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
+, nix-update-script
, meson
, ninja
, pkg-config
@@ -57,6 +58,12 @@ stdenv.mkDerivation rec {
patchShebangs meson/post_install.py
'';
+ passthru = {
+ updateScript = nix-update-script {
+ attrPath = "pantheon.${pname}";
+ };
+ };
+
meta = with lib; {
description = "Settings daemon for Pantheon";
homepage = "https://github.com/elementary/settings-daemon";
diff --git a/pkgs/development/compilers/graalvm/community-edition/default.nix b/pkgs/development/compilers/graalvm/community-edition/default.nix
index 6badaa3b4c8a..724800898ace 100644
--- a/pkgs/development/compilers/graalvm/community-edition/default.nix
+++ b/pkgs/development/compilers/graalvm/community-edition/default.nix
@@ -1,4 +1,4 @@
-{ callPackage, Foundation }:
+{ callPackage, fetchpatch, zlib, Foundation }:
/*
Add new graal versions and products here and then see update.nix on how to
generate the sources.
@@ -7,6 +7,15 @@
let
mkGraal = opts: callPackage (import ./mkGraal.nix opts) {
inherit Foundation;
+ # remove this once zlib 1.2.13 is released
+ zlib = zlib.overrideAttrs (oldAttrs: {
+ patches = (oldAttrs.patches or [ ]) ++ [
+ (fetchpatch {
+ url = "https://github.com/madler/zlib/commit/ec3df00224d4b396e2ac6586ab5d25f673caa4c2.patch";
+ sha256 = "sha256-jSa3OCigBdpWFDllCWC2rgE9GxCNR0yjsc+bpwPDBEA=";
+ })
+ ];
+ });
};
/*
diff --git a/pkgs/development/embedded/arduino/arduino-core/default.nix b/pkgs/development/embedded/arduino/arduino-core/default.nix
index 34f427d4fa71..91c2792f9be1 100644
--- a/pkgs/development/embedded/arduino/arduino-core/default.nix
+++ b/pkgs/development/embedded/arduino/arduino-core/default.nix
@@ -244,7 +244,10 @@ stdenv.mkDerivation rec {
description = "Open-source electronics prototyping platform";
homepage = "https://www.arduino.cc/";
license = if withTeensyduino then licenses.unfreeRedistributable else licenses.gpl2;
- sourceProvenance = with sourceTypes; [ binaryBytecode ];
+ sourceProvenance = with sourceTypes; [
+ binaryBytecode
+ binaryNativeCode
+ ];
platforms = platforms.linux;
maintainers = with maintainers; [ antono auntie robberer bjornfor bergey ];
};
diff --git a/pkgs/development/interpreters/python/cpython/default.nix b/pkgs/development/interpreters/python/cpython/default.nix
index 72fd4df385d2..009d0f45f97e 100644
--- a/pkgs/development/interpreters/python/cpython/default.nix
+++ b/pkgs/development/interpreters/python/cpython/default.nix
@@ -82,7 +82,7 @@ let
passthru = let
# When we override the interpreter we also need to override the spliced versions of the interpreter
- inputs' = lib.filterAttrs (_: v: ! lib.isDerivation v) inputs;
+ inputs' = lib.filterAttrs (n: v: ! lib.isDerivation v && n != "passthruFun") inputs;
override = attr: let python = attr.override (inputs' // { self = python; }); in python;
in passthruFun rec {
inherit self sourceVersion packageOverrides;
diff --git a/pkgs/development/libraries/libsciter/default.nix b/pkgs/development/libraries/libsciter/default.nix
index 6f3016ce47a4..034ccc4208f8 100644
--- a/pkgs/development/libraries/libsciter/default.nix
+++ b/pkgs/development/libraries/libsciter/default.nix
@@ -40,6 +40,7 @@ stdenv.mkDerivation rec {
description = "Embeddable HTML/CSS/JavaScript engine for modern UI development";
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ leixb ];
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
};
}
diff --git a/pkgs/development/libraries/live555/default.nix b/pkgs/development/libraries/live555/default.nix
index 851f52fe4ab2..f212adb03beb 100644
--- a/pkgs/development/libraries/live555/default.nix
+++ b/pkgs/development/libraries/live555/default.nix
@@ -10,7 +10,7 @@
stdenv.mkDerivation rec {
pname = "live555";
- version = "2022.02.07";
+ version = "2022.06.16";
src = fetchurl {
urls = [
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
"https://download.videolan.org/contrib/live555/live.${version}.tar.gz"
"mirror://sourceforge/slackbuildsdirectlinks/live.${version}.tar.gz"
];
- sha256 = "sha256-bwwfinHOtQa8v5abArSww2l7ThXa623LqYcsh0XOksY=";
+ sha256 = "sha256-84OUQw++RNqH3sAY4S6yXRJXZY+5T0VdTIUqELuVdV0=";
};
nativeBuildInputs = lib.optional stdenv.isDarwin darwin.cctools;
@@ -42,27 +42,21 @@ stdenv.mkDerivation rec {
configurePhase = ''
runHook preConfigure
- ./genMakefiles ${{
- x86_64-darwin = "macosx-catalina";
- i686-linux = "linux";
- x86_64-linux = "linux-64bit";
- aarch64-linux = "linux-64bit";
- }.${stdenv.hostPlatform.system} or (throw "Unsupported platform ${stdenv.hostPlatform.system}")}
+ ./genMakefiles ${
+ if stdenv.isLinux then
+ "linux"
+ else if stdenv.isDarwin then
+ "macosx-catalina"
+ else
+ throw "Unsupported platform ${stdenv.hostPlatform.system}"}
runHook postConfigure
'';
- installPhase = ''
- runHook preInstall
-
- for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
- install -dm755 $out/{bin,lib,include/$dir}
- install -m644 $dir/*.a "$out/lib"
- install -m644 $dir/include/*.h* "$out/include/$dir"
- done
-
- runHook postInstall
- '';
+ makeFlags = [
+ "DESTDIR=${placeholder "out"}"
+ "PREFIX="
+ ];
enableParallelBuilding = true;
@@ -77,6 +71,5 @@ stdenv.mkDerivation rec {
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix;
- broken = stdenv.hostPlatform.isAarch64;
};
}
diff --git a/pkgs/development/libraries/psol/generic.nix b/pkgs/development/libraries/psol/generic.nix
index aa2522a5dad1..8f312fe9dbc8 100644
--- a/pkgs/development/libraries/psol/generic.nix
+++ b/pkgs/development/libraries/psol/generic.nix
@@ -9,6 +9,7 @@
description = "PageSpeed Optimization Libraries";
homepage = "https://developers.google.com/speed/pagespeed/psol";
license = lib.licenses.asl20;
+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
# WARNING: This only works with Linux because the pre-built PSOL binary is only supplied for Linux.
# TODO: Build PSOL from source to support more platforms.
platforms = lib.platforms.linux;
diff --git a/pkgs/development/libraries/science/math/mkl/default.nix b/pkgs/development/libraries/science/math/mkl/default.nix
index 1f60f4d95388..dc68abe38c36 100644
--- a/pkgs/development/libraries/science/math/mkl/default.nix
+++ b/pkgs/development/libraries/science/math/mkl/default.nix
@@ -189,6 +189,7 @@ in stdenvNoCC.mkDerivation ({
threading models.
'';
homepage = "https://software.intel.com/en-us/mkl";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.issl;
platforms = [ "x86_64-linux" "x86_64-darwin" ];
maintainers = with maintainers; [ bhipple ];
diff --git a/pkgs/development/libraries/science/math/tensorflow/bin.nix b/pkgs/development/libraries/science/math/tensorflow/bin.nix
index e084fce9e9ec..1b769f44eeb1 100644
--- a/pkgs/development/libraries/science/math/tensorflow/bin.nix
+++ b/pkgs/development/libraries/science/math/tensorflow/bin.nix
@@ -68,6 +68,7 @@ in stdenv.mkDerivation rec {
meta = {
description = "C API for TensorFlow";
homepage = "https://www.tensorflow.org/install/lang_c";
+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = licenses.asl20;
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
diff --git a/pkgs/development/libraries/science/robotics/edgetpu-compiler/default.nix b/pkgs/development/libraries/science/robotics/edgetpu-compiler/default.nix
index adf8bdd54b72..5e02398d1b4e 100644
--- a/pkgs/development/libraries/science/robotics/edgetpu-compiler/default.nix
+++ b/pkgs/development/libraries/science/robotics/edgetpu-compiler/default.nix
@@ -51,6 +51,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A command line tool that compiles a TensorFlow Lite model into an Edge TPU compatible file.";
homepage = "https://coral.ai/docs/edgetpu/compiler";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.asl20;
maintainers = with maintainers; [ cpcloud ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/development/libraries/unixODBCDrivers/default.nix b/pkgs/development/libraries/unixODBCDrivers/default.nix
index 0f702b228244..1e5149683d4c 100644
--- a/pkgs/development/libraries/unixODBCDrivers/default.nix
+++ b/pkgs/development/libraries/unixODBCDrivers/default.nix
@@ -173,6 +173,7 @@
broken = stdenv.isDarwin;
description = "ODBC Driver 17 for SQL Server";
homepage = "https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-2017";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with maintainers; [ spencerjanssen ];
@@ -217,6 +218,7 @@
broken = stdenv.isDarwin;
description = "Amazon Redshift ODBC driver";
homepage = "https://docs.aws.amazon.com/redshift/latest/mgmt/configure-odbc-connection.html";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with maintainers; [ sir4ur0n ];
diff --git a/pkgs/development/mobile/checkra1n/default.nix b/pkgs/development/mobile/checkra1n/default.nix
index 110bb187f61c..a44a6d8b2b8d 100644
--- a/pkgs/development/mobile/checkra1n/default.nix
+++ b/pkgs/development/mobile/checkra1n/default.nix
@@ -19,6 +19,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Jailbreak for iPhone 5s though iPhone X, iOS 12.0 and up";
homepage = "https://checkra.in/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ onny ];
platforms = platforms.linux;
diff --git a/pkgs/development/mobile/genymotion/default.nix b/pkgs/development/mobile/genymotion/default.nix
index 2b94ed14aa9c..d8413117a30b 100644
--- a/pkgs/development/mobile/genymotion/default.nix
+++ b/pkgs/development/mobile/genymotion/default.nix
@@ -89,6 +89,7 @@ stdenv.mkDerivation rec {
suitable for application testing.
'';
homepage = "https://www.genymotion.com/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = ["x86_64-linux"];
maintainers = [ maintainers.puffnfresh ];
diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json
index 00b6d44b1900..b7d8419eec49 100644
--- a/pkgs/development/node-packages/node-packages.json
+++ b/pkgs/development/node-packages/node-packages.json
@@ -52,6 +52,7 @@
, "coc-cmake"
, "coc-css"
, "coc-diagnostic"
+, "coc-docker"
, "coc-emmet"
, "coc-eslint"
, "coc-explorer"
@@ -75,12 +76,16 @@
, "coc-r-lsp"
, "coc-rls"
, "coc-rust-analyzer"
+, "coc-sh"
, "coc-smartf"
, "coc-snippets"
, "coc-solargraph"
, "coc-stylelint"
+, "coc-sumneko-lua"
+, "coc-sqlfluff"
, "coc-tabnine"
, "coc-texlab"
+, "coc-toml"
, "coc-tslint"
, "coc-tslint-plugin"
, "coc-tsserver"
@@ -380,6 +385,7 @@
, "webtorrent-cli"
, "wring"
, "write-good"
+, "@yaegassy/coc-nginx"
, "yaml-language-server"
, "yalc"
, "yarn"
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index 824e2e060fba..9c6889ae8880 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -58,6 +58,15 @@ let
sha512 = "gouPoWdQ6NyIqsISkx526taLlnPB13SPJji4qRZ+MWf8Z60Bn6lF0xmoIEn+hpkTrSH+k9P9HvC2ENqfhq1YdQ==";
};
};
+ "@alexbosworth/fiat-1.0.3" = {
+ name = "_at_alexbosworth_slash_fiat";
+ packageName = "@alexbosworth/fiat";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@alexbosworth/fiat/-/fiat-1.0.3.tgz";
+ sha512 = "M1OE/iyK+H77lrOEZz93f9QIi7B4RaD66O3ICRv24ECDbZogddwPWwG9HK9QDJvdGPlni67PYu8krpzEsTvFPg==";
+ };
+ };
"@alexbosworth/html2unicode-1.1.5" = {
name = "_at_alexbosworth_slash_html2unicode";
packageName = "@alexbosworth/html2unicode";
@@ -103,13 +112,13 @@ let
sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==";
};
};
- "@angular-devkit/architect-0.1400.1" = {
+ "@angular-devkit/architect-0.1400.2" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1400.1";
+ version = "0.1400.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1400.1.tgz";
- sha512 = "GJ4hWLIJmhCq4nKNN9c4xocKtCt28muJxN88Wna292SOIaNQuNY5MP9860/4IWRGCJTeJH7LyCc4j/3V0zWrSQ==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1400.2.tgz";
+ sha512 = "L+QIaN17M2APAJ4v3eVOSohqhnqTloDjT4omdaPA9XZpob+WQ6+ALCvMuEczCRrGBskXiOsBgXeyMjGBtq1+pw==";
};
};
"@angular-devkit/core-13.3.5" = {
@@ -121,13 +130,13 @@ let
sha512 = "w7vzK4VoYP9rLgxJ2SwEfrkpKybdD+QgQZlsDBzT0C6Ebp7b4gkNcNVFo8EiZvfDl6Yplw2IAP7g7fs3STn0hQ==";
};
};
- "@angular-devkit/core-14.0.1" = {
+ "@angular-devkit/core-14.0.2" = {
name = "_at_angular-devkit_slash_core";
packageName = "@angular-devkit/core";
- version = "14.0.1";
+ version = "14.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/core/-/core-14.0.1.tgz";
- sha512 = "yiduPSPRp4s4yYKc3BOvbL5gOzaOPvRCMcJ3jeQbitLIXD/xwSHO8OmmsLsN/PnM1RzA8vVHsK7lN4v1JvhqPA==";
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-14.0.2.tgz";
+ sha512 = "lT875LhgO+23HvjUmuCZomH/0ivetzo8xsaT+7YM8SeUpmjsNTpTA/xNAQ4uD4JGscsJeCKsGT/zJIwPAAe6vQ==";
};
};
"@angular-devkit/schematics-13.3.5" = {
@@ -139,13 +148,13 @@ let
sha512 = "0N/kL/Vfx0yVAEwa3HYxNx9wYb+G9r1JrLjJQQzDp+z9LtcojNf7j3oey6NXrDUs1WjVZOa/AIdRl3/DuaoG5w==";
};
};
- "@angular-devkit/schematics-14.0.1" = {
+ "@angular-devkit/schematics-14.0.2" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
- version = "14.0.1";
+ version = "14.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.0.1.tgz";
- sha512 = "Ub9W2SIgmYs9+SWCW117/N+wSThOWWDo1j+JiZlh9jML7ZRc9HCTEzo8Yic+6/ZuouVcKExCUO90z0InVkOB7g==";
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.0.2.tgz";
+ sha512 = "NCAYwvQBL71MbAzeF8XOM9LXYfZbUK7THYCW8UteKDY4Df6EdVOGhBdWY2LstAkZeVCaQWSJU7FcVRS9Ulvg0A==";
};
};
"@angular-devkit/schematics-cli-13.3.5" = {
@@ -454,13 +463,13 @@ let
sha512 = "JJmFFwvbm08lULw4Nm5QOLg8+lAQeC8aCXK5xrtxntYzYXCGfHwUJ4Is3770Q7HmICsXthGQ+ZsDL7C2uH3yBQ==";
};
};
- "@aws-sdk/abort-controller-3.78.0" = {
+ "@aws-sdk/abort-controller-3.110.0" = {
name = "_at_aws-sdk_slash_abort-controller";
packageName = "@aws-sdk/abort-controller";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.78.0.tgz";
- sha512 = "iz1YLwM2feJUj/y97yO4XmDeTxs+yZ1XJwQgoawKuc8IDBKUutnJNCHL5jL04WUKU7Nrlq+Hr2fCTScFh2z9zg==";
+ url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.110.0.tgz";
+ sha512 = "zok/WEVuK7Jh6V9YeA56pNZtxUASon9LTkS7vE65A4UFmNkPGNBCNgoiBcbhWfxwrZ8wtXcQk6rtUut39831mA==";
};
};
"@aws-sdk/chunked-blob-reader-3.55.0" = {
@@ -472,202 +481,202 @@ let
sha512 = "o/xjMCq81opAjSBjt7YdHJwIJcGVG5XIV9+C2KXcY5QwVimkOKPybWTv0mXPvSwSilSx+EhpLNhkcJuXdzhw4w==";
};
};
- "@aws-sdk/chunked-blob-reader-native-3.58.0" = {
+ "@aws-sdk/chunked-blob-reader-native-3.109.0" = {
name = "_at_aws-sdk_slash_chunked-blob-reader-native";
packageName = "@aws-sdk/chunked-blob-reader-native";
- version = "3.58.0";
+ version = "3.109.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.58.0.tgz";
- sha512 = "+D3xnPD5985iphgAqgUerBDs371a2WzzoEVi7eHJUMMsP/gEnSTdSH0HNxsqhYv6CW4EdKtvDAQdAwA1VtCf2A==";
+ url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.109.0.tgz";
+ sha512 = "Ybn3vDZ3CqGyprL2qdF6QZqoqlx8lA3qOJepobjuKKDRw+KgGxjUY4NvWe0R2MdRoduyaDj6uvhIay0S1MOSJQ==";
};
};
- "@aws-sdk/client-s3-3.107.0" = {
+ "@aws-sdk/client-s3-3.110.0" = {
name = "_at_aws-sdk_slash_client-s3";
packageName = "@aws-sdk/client-s3";
- version = "3.107.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.107.0.tgz";
- sha512 = "2wWlr4lnfr/3NCKjven0umTRNxpMwrrt1fm8ZN0DucFhD4B3jee7qZQtpTnQxkGJkzyzKeE7qlzsHYeMi2HL1Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.110.0.tgz";
+ sha512 = "Hi/ovI9ffTv0p9phuO96TgbKYPJp9jB2atUVtxCtWBNeJ6+PgXPzEl5KltlO7m4++l+/bzgc8E4l9OWiorc7HA==";
};
};
- "@aws-sdk/client-sso-3.105.0" = {
+ "@aws-sdk/client-sso-3.110.0" = {
name = "_at_aws-sdk_slash_client-sso";
packageName = "@aws-sdk/client-sso";
- version = "3.105.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.105.0.tgz";
- sha512 = "Lp92m3ayckXpAElpgZ8E6JEGB7B5sBsjCkTmYeZq3uVXF8uCVMQFmFo4v2yndLQ3NFCEE8qN2PE8obLDOAsNIA==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.110.0.tgz";
+ sha512 = "Mzj8bfHaB+Ajghf0iMDdbpzL6jY+GbRDKATpmUOAswBDy72JifoBq7qUAV+NwhjUdF+jUzXkdCAAIaai2kglrg==";
};
};
- "@aws-sdk/client-sts-3.105.0" = {
+ "@aws-sdk/client-sts-3.110.0" = {
name = "_at_aws-sdk_slash_client-sts";
packageName = "@aws-sdk/client-sts";
- version = "3.105.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.105.0.tgz";
- sha512 = "ZZyw5hu0Ip/jHc9umpWTnWNUHV270fS25LB7fecUwQeC/cok+EvaG5QGBVI5t0GSUynEIC0sNlG9SDc1wLTZPA==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.110.0.tgz";
+ sha512 = "BJD0fxCoqqL7eA/tRRj7z5n4/P8tIZZgOOWJqd6euf6t90uPssz/MJw01bFJBljMl4BtMGvLXHKkyzWtVezI0w==";
};
};
- "@aws-sdk/config-resolver-3.80.0" = {
+ "@aws-sdk/config-resolver-3.110.0" = {
name = "_at_aws-sdk_slash_config-resolver";
packageName = "@aws-sdk/config-resolver";
- version = "3.80.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.80.0.tgz";
- sha512 = "vFruNKlmhsaC8yjnHmasi1WW/7EELlEuFTj4mqcqNqR4dfraf0maVvpqF1VSR8EstpFMsGYI5dmoWAnnG4PcLQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.110.0.tgz";
+ sha512 = "7VvtKy4CL63BAktQ2vgsjhWDSXpkXO5YdiI56LQnHztrvSuJBBaxJ7R1p/k0b2tEUhYKUziAIW8EKE/7EGPR4g==";
};
};
- "@aws-sdk/credential-provider-env-3.78.0" = {
+ "@aws-sdk/credential-provider-env-3.110.0" = {
name = "_at_aws-sdk_slash_credential-provider-env";
packageName = "@aws-sdk/credential-provider-env";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.78.0.tgz";
- sha512 = "K41VTIzVHm2RyIwtBER8Hte3huUBXdV1WKO+i7olYVgLFmaqcZUNrlyoGDRqZcQ/u4AbxTzBU9jeMIbIfzMOWg==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.110.0.tgz";
+ sha512 = "oFU3IYk/Bl5tdsz1qigtm3I25a9cvXPqlE8VjYjxVDdLujF5zd/4HLbhP4GQWhpEwZmM1ijcSNfLcyywVevTZg==";
};
};
- "@aws-sdk/credential-provider-imds-3.81.0" = {
+ "@aws-sdk/credential-provider-imds-3.110.0" = {
name = "_at_aws-sdk_slash_credential-provider-imds";
packageName = "@aws-sdk/credential-provider-imds";
- version = "3.81.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.81.0.tgz";
- sha512 = "BHopP+gaovTYj+4tSrwCk8NNCR48gE9CWmpIOLkP9ell0gOL81Qh7aCEiIK0BZBZkccv1s16cYq1MSZZGS7PEQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.110.0.tgz";
+ sha512 = "atl+7/dAB+8fG9XI2fYyCgXKYDbOzot65VAwis+14bOEUCVp7PCJifBEZ/L8GEq564p+Fa2p1IpV0wuQXxqFUQ==";
};
};
- "@aws-sdk/credential-provider-ini-3.105.0" = {
+ "@aws-sdk/credential-provider-ini-3.110.0" = {
name = "_at_aws-sdk_slash_credential-provider-ini";
packageName = "@aws-sdk/credential-provider-ini";
- version = "3.105.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.105.0.tgz";
- sha512 = "qYEUciSpeIBkIDt3ljWkVphG7OUIvQOMklYjtEYjYGFjHX7GuyNbV0NI0T6W/edV0aU/a/KpBi0uKd93Gi43Lg==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.110.0.tgz";
+ sha512 = "DVbCWGnvXBvxdf0XGB0nVQjZNwEJc7OhhBFUfF/bP2LXwyZX7n2w4NGNpi2fLnwrgbySoPNbBpp8X3NhVvK14g==";
};
};
- "@aws-sdk/credential-provider-node-3.105.0" = {
+ "@aws-sdk/credential-provider-node-3.110.0" = {
name = "_at_aws-sdk_slash_credential-provider-node";
packageName = "@aws-sdk/credential-provider-node";
- version = "3.105.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.105.0.tgz";
- sha512 = "A781wWAcghqw21Vddj2jZo1BeKDyqqMcBYIuXJxjwK4fq+IBxlnI6De1vzv3H7QxosDyDS4mKWGW2FqUQI8ofg==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.110.0.tgz";
+ sha512 = "6AE97H6KDwOYTRjzP7dIyEg4jUd33ZLehgmtaBbJ1GhchtU3L8W0+Mh7ICpwKX/cYMJcKJKzT27BwYVWtOtCDA==";
};
};
- "@aws-sdk/credential-provider-process-3.80.0" = {
+ "@aws-sdk/credential-provider-process-3.110.0" = {
name = "_at_aws-sdk_slash_credential-provider-process";
packageName = "@aws-sdk/credential-provider-process";
- version = "3.80.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.80.0.tgz";
- sha512 = "3Ro+kMMyLUJHefOhGc5pOO/ibGcJi8bkj0z/Jtqd5I2Sm1qi7avoztST67/k48KMW1OqPnD/FUqxz5T8B2d+FQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.110.0.tgz";
+ sha512 = "JJcZePvRTfQHYj/+EEY13yItnZH/e8exlARFUjN0L13UrgHpOJtDQBa+YBHXo6MbTFQh+re25z2kzc+zOYSMNQ==";
};
};
- "@aws-sdk/credential-provider-sso-3.105.0" = {
+ "@aws-sdk/credential-provider-sso-3.110.0" = {
name = "_at_aws-sdk_slash_credential-provider-sso";
packageName = "@aws-sdk/credential-provider-sso";
- version = "3.105.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.105.0.tgz";
- sha512 = "oHvMZ0uHfOzFkepX29GPXUrI7HTQklQl01laVxEdCNtgZGfos9gjz+xPUDBCaoiEzM+xF9uu4wtaQ15c1bCclQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.110.0.tgz";
+ sha512 = "fXV9mc/2U2M5pP5E61uBSFdQXIMgNO4yebitkqNiseI3lg5dJVkYGfiWlvw6qGo6BNxKiEmvJD5Mu6/laYIvbw==";
};
};
- "@aws-sdk/credential-provider-web-identity-3.78.0" = {
+ "@aws-sdk/credential-provider-web-identity-3.110.0" = {
name = "_at_aws-sdk_slash_credential-provider-web-identity";
packageName = "@aws-sdk/credential-provider-web-identity";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.78.0.tgz";
- sha512 = "9/IvqHdJaVqMEABA8xZE3t5YF1S2PepfckVu0Ws9YUglj6oO+2QyVX6aRgMF1xph6781+Yc31TDh8/3eaDja7w==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.110.0.tgz";
+ sha512 = "e4e5u7v3fsUFZsMcFMhMy1NdJBQpunYcLwpYlszm3OEICwTTekQ+hVvnVRd134doHvzepE4yp9sAop0Cj+IRVQ==";
};
};
- "@aws-sdk/eventstream-marshaller-3.78.0" = {
+ "@aws-sdk/eventstream-marshaller-3.110.0" = {
name = "_at_aws-sdk_slash_eventstream-marshaller";
packageName = "@aws-sdk/eventstream-marshaller";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-marshaller/-/eventstream-marshaller-3.78.0.tgz";
- sha512 = "BMbRvLe6wNWQ+NO1pdPw3kGXXEdYV94BxEr3rTkKwr5yHpl8sUb/Va9sJJufUjzggpgE4vYu5nVsrT8ByMYXuA==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-marshaller/-/eventstream-marshaller-3.110.0.tgz";
+ sha512 = "ZVJI2iCmjxigtLKfc9v48NHY34Qos5l9wgxzB1lU+RwaBppbmjogvIpPlKewEuAFsLTrErUK4ONBWGGsvLYlBQ==";
};
};
- "@aws-sdk/eventstream-serde-browser-3.78.0" = {
+ "@aws-sdk/eventstream-serde-browser-3.110.0" = {
name = "_at_aws-sdk_slash_eventstream-serde-browser";
packageName = "@aws-sdk/eventstream-serde-browser";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.78.0.tgz";
- sha512 = "ehQI2iLsj8MMskDRbrPB7SibIdJq6LleBP6ojT+cgrLJRbVXUOxK+3MPHDZVdGYx4ukVg48E1fA2DzVfAp7Emw==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.110.0.tgz";
+ sha512 = "zeZpKO9Ccsg6seB9oYf9rEQkYfM4nWnyQJtfGvpj/BlkJ7i3UhpbVca8q6aC61WLb3fcO/JROqNfDK1Vis8RgA==";
};
};
- "@aws-sdk/eventstream-serde-config-resolver-3.78.0" = {
+ "@aws-sdk/eventstream-serde-config-resolver-3.110.0" = {
name = "_at_aws-sdk_slash_eventstream-serde-config-resolver";
packageName = "@aws-sdk/eventstream-serde-config-resolver";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.78.0.tgz";
- sha512 = "iUG0wtZH/L7d6XfipwbhgjBHip0uTm9S27EasCn+g0CunbW6w7rXd7rfMqA+gSLVXPTBYjTMPIwRxrTCdRprwA==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.110.0.tgz";
+ sha512 = "0kyKUU5/46OGe6rgIqbNRJEQhNYwxLdgcJXlBl6q6CdgyQApz6jsAgG0C5xhSLSi4iJijDRriJTowAhkq4AlWQ==";
};
};
- "@aws-sdk/eventstream-serde-node-3.78.0" = {
+ "@aws-sdk/eventstream-serde-node-3.110.0" = {
name = "_at_aws-sdk_slash_eventstream-serde-node";
packageName = "@aws-sdk/eventstream-serde-node";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.78.0.tgz";
- sha512 = "H78LLoZEngZBSdk3lRQkAaR3cGsy/3UIjq9AFPeqoPVQtHkzBob1jVfE/5VSVAMhKLxWn8iqhRPS37AvyBGOwQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.110.0.tgz";
+ sha512 = "Bd7d57BANdy1RBnZ6EBxEaDzC4DidR40EMEk08Ho3+md6CW/vmW63n9wAhKjdoq9a+Hp6aDWP4huVKhyT/d6PA==";
};
};
- "@aws-sdk/eventstream-serde-universal-3.78.0" = {
+ "@aws-sdk/eventstream-serde-universal-3.110.0" = {
name = "_at_aws-sdk_slash_eventstream-serde-universal";
packageName = "@aws-sdk/eventstream-serde-universal";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.78.0.tgz";
- sha512 = "PZTLdyF923/1GJuMNtq9VMGd2vEx33HhsGInXvYtulKDSD5SgaTGj+Dz5wYepqL1gUEuXqZjBD71uZgrY/JgRg==";
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.110.0.tgz";
+ sha512 = "VjzOxDaHCzPlZs+9UqqQABP47gCWf97kqwhuoPUsCzV8leEHnLfAX3BvIZ58kNr4Fycua5AgK7Ww6uFfXVeW8w==";
};
};
- "@aws-sdk/fetch-http-handler-3.78.0" = {
+ "@aws-sdk/fetch-http-handler-3.110.0" = {
name = "_at_aws-sdk_slash_fetch-http-handler";
packageName = "@aws-sdk/fetch-http-handler";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.78.0.tgz";
- sha512 = "cR6r2h2kJ1DNEZSXC6GknQB7OKmy+s9ZNV+g3AsNqkrUmNNOaHpFoSn+m6SC3qaclcGd0eQBpqzSu/TDn23Ihw==";
+ url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.110.0.tgz";
+ sha512 = "vk+K4GeCZL2J2rtvKO+T0Q7i3MDpEGZBMg5K2tj9sMcEQwty0BF0aFnP7Eu2l4/Zif2z1mWuUFM2WcZI6DVnbw==";
};
};
- "@aws-sdk/hash-blob-browser-3.78.0" = {
+ "@aws-sdk/hash-blob-browser-3.110.0" = {
name = "_at_aws-sdk_slash_hash-blob-browser";
packageName = "@aws-sdk/hash-blob-browser";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.78.0.tgz";
- sha512 = "IEkA+t6qJEtEYEZgsqFRRITeZJ3mirw7IHJVHxwb86lpeufTVcbILI59B8/rhbqG+9dk0kWTjYSjC/ZdM+rgHA==";
+ url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.110.0.tgz";
+ sha512 = "NkTosjlYwP2dcBXY6yzhNafAK+W2nceheffvWdyGA29+E9YdRjDminXvKc/WAkZUMOW0CaCbD90otOiimAAYyQ==";
};
};
- "@aws-sdk/hash-node-3.78.0" = {
+ "@aws-sdk/hash-node-3.110.0" = {
name = "_at_aws-sdk_slash_hash-node";
packageName = "@aws-sdk/hash-node";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.78.0.tgz";
- sha512 = "ev48yXaqZVtMeuKy52LUZPHCyKvkKQ9uiUebqkA+zFxIk+eN8SMPFHmsififIHWuS6ZkXBUSctjH9wmLebH60A==";
+ url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.110.0.tgz";
+ sha512 = "wakl+kP2O8wTGYiQ3InZy+CVfGrIpFfq9fo4zif9PZac0BbUbguUU1dkY34uZiaf+4o2/9MoDYrHU2HYeXKxWw==";
};
};
- "@aws-sdk/hash-stream-node-3.78.0" = {
+ "@aws-sdk/hash-stream-node-3.110.0" = {
name = "_at_aws-sdk_slash_hash-stream-node";
packageName = "@aws-sdk/hash-stream-node";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.78.0.tgz";
- sha512 = "y42Pm0Nk6zf/MI6acLFVFAMya0Ncvy6F6Xu5aYAmwIMIoMI0ctNeyuL/Dikgt8+oyxC+kORw+W9jtzgWj2zY/w==";
+ url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.110.0.tgz";
+ sha512 = "srlStn+dCnBlQy4oWBz3oFS8vT5Xgxhra91rt9U+vHruCyQ0L1es0J87X4uwy2HRlnIw3daPtVLtxekahEXzKQ==";
};
};
- "@aws-sdk/invalid-dependency-3.78.0" = {
+ "@aws-sdk/invalid-dependency-3.110.0" = {
name = "_at_aws-sdk_slash_invalid-dependency";
packageName = "@aws-sdk/invalid-dependency";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.78.0.tgz";
- sha512 = "zUo+PbeRMN/Mzj6y+6p9qqk/znuFetT1gmpOcZGL9Rp2T+b9WJWd+daq5ktsL10sVCzIt2UvneJRz6b+aU+bfw==";
+ url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.110.0.tgz";
+ sha512 = "O8J1InmtJkoiUMbQDtxBfOzgigBp9iSVsNXQrhs2qHh3826cJOfE7NGT3u+NMw73Pk5j2cfmOh1+7k/76IqxOg==";
};
};
"@aws-sdk/is-array-buffer-3.55.0" = {
@@ -679,292 +688,292 @@ let
sha512 = "NbiPHVYuPxdqdFd6FxzzN3H1BQn/iWA3ri3Ry7AyLeP/tGs1yzEWMwf8BN8TSMALI0GXT6Sh0GDWy3Ok5xB6DA==";
};
};
- "@aws-sdk/md5-js-3.78.0" = {
+ "@aws-sdk/md5-js-3.110.0" = {
name = "_at_aws-sdk_slash_md5-js";
packageName = "@aws-sdk/md5-js";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.78.0.tgz";
- sha512 = "vKOXJWJvv6QH6rnqMYEWzwAnMr4hfcmY8+t6BAuTcDpcEVF77e3bwUcaajXi2U0JMuNvnLwuJF3h6kL6aX4l6g==";
+ url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.110.0.tgz";
+ sha512 = "66gV6CH8O7ymTZMIbGjdUI71K7ErDfudhtN/ULb97kD2TYX4NlFtxNZxx3+iZH1G0H636lWm9hJcU5ELG9B+bw==";
};
};
- "@aws-sdk/middleware-bucket-endpoint-3.80.0" = {
+ "@aws-sdk/middleware-bucket-endpoint-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-bucket-endpoint";
packageName = "@aws-sdk/middleware-bucket-endpoint";
- version = "3.80.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.80.0.tgz";
- sha512 = "FSSx6IgT7xftSlpjxoPKv8XI9nv7EK+OCODo2s3CmElMW1kBRdmQ/ImVuTwvqhdxJEVUeUdgupmC7cqyqgt04w==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.110.0.tgz";
+ sha512 = "l1q0KzMRFyGSSc7LZGEh2xhCha1933C8uJE5g23b7dZdklEU5I62l4daELo+TBANcxFzDiRXd6g5mly/T+ZTSg==";
};
};
- "@aws-sdk/middleware-content-length-3.78.0" = {
+ "@aws-sdk/middleware-content-length-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-content-length";
packageName = "@aws-sdk/middleware-content-length";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.78.0.tgz";
- sha512 = "5MpKt6lB9TdFy25/AGrpOjPY0iDHZAKpEHc+jSOJBXLl6xunXA7qHdiYaVqkWodLxy70nIckGNHqQ3drabidkA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.110.0.tgz";
+ sha512 = "hKU+zdqfAJQg22LXMVu/z35nNIHrVAKpVKPe9+WYVdL/Z7JKUPK7QymqKGOyDuDbzW6OxyulC1zKGEX12zGmdA==";
};
};
- "@aws-sdk/middleware-expect-continue-3.78.0" = {
+ "@aws-sdk/middleware-expect-continue-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-expect-continue";
packageName = "@aws-sdk/middleware-expect-continue";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.78.0.tgz";
- sha512 = "IXfcSugFV3uNk50VQsN/Cm80iCsUSwcYJ5RzEwy7wXbZ+KM03xWXlbXzqkeTDnS74wLWSw09nKF3rkp1eyfDfg==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.110.0.tgz";
+ sha512 = "agRV/Z2C6St0oVB/giKTDdq46xw2bPY2xwvd44PfPMi6KkPW1Ri2ZPrzwBevLFUpbzDcRj8Je9mgdl706HFIig==";
};
};
- "@aws-sdk/middleware-flexible-checksums-3.78.0" = {
+ "@aws-sdk/middleware-flexible-checksums-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-flexible-checksums";
packageName = "@aws-sdk/middleware-flexible-checksums";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.78.0.tgz";
- sha512 = "1jjxHcB3Le/2Z7BzugXzZnIwKGlUluNm0d1lB4fF2QVq3GHlA6e8uv0rCtqe/3wSsrzV6YzJ8vjioymKSNIjKQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.110.0.tgz";
+ sha512 = "Z/v1Da+e1McxrVr1s4jUykp2EXsOHpTxZ4M0X8vNkXCIVSuaMp4UI0P+LQawbDA+j3FaecqqBfWMZ2sHQ8bpoA==";
};
};
- "@aws-sdk/middleware-header-default-3.78.0" = {
+ "@aws-sdk/middleware-header-default-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-header-default";
packageName = "@aws-sdk/middleware-header-default";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-header-default/-/middleware-header-default-3.78.0.tgz";
- sha512 = "USyOIF7ObBVMKbV/8lOBLDNwMAGdOtujd+RO/9dX6OQLceUTKIS1dOfJoYYwRHgengn7ikpDxoyROyspPYYDZQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-header-default/-/middleware-header-default-3.110.0.tgz";
+ sha512 = "aezdkU/O8eWDNL9XEs9DG1MTS4EVaUEyz25+TrPPRBzCFccMnGf5tUHDG62I59NLtWjtipxQ7QOqyA3jF5WTFQ==";
};
};
- "@aws-sdk/middleware-host-header-3.78.0" = {
+ "@aws-sdk/middleware-host-header-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-host-header";
packageName = "@aws-sdk/middleware-host-header";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.78.0.tgz";
- sha512 = "1zL8uaDWGmH50c8B8jjz75e0ePj6/3QeZEhjJgTgL6DTdiqvRt32p3t+XWHW+yDI14fZZUYeTklAaLVxqFrHqQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.110.0.tgz";
+ sha512 = "/Cknn1vL2LTlclI0MX2RzmtdPlCJ5palCRXxm/mod1oHwg4oNTKRlUX3LUD+L8g7JuJ4h053Ch9KS/A0vanE5Q==";
};
};
- "@aws-sdk/middleware-location-constraint-3.78.0" = {
+ "@aws-sdk/middleware-location-constraint-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-location-constraint";
packageName = "@aws-sdk/middleware-location-constraint";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.78.0.tgz";
- sha512 = "m626H1WwXYJtwHEkV/2DsLlu1ckWq3j57NzsexZki3qS0nU8HEiDl6YYi+k84vDD4Qpba6EI9AdhzwnvZLXtGw==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.110.0.tgz";
+ sha512 = "8ZSo9sqrTMcSp0xEJQ3ypmQpeSMQl1NXXv72khJPweZqDoO0eAbfytwyH4JH4sP0VwVVmuDHdwPXyDZX7I0iQg==";
};
};
- "@aws-sdk/middleware-logger-3.78.0" = {
+ "@aws-sdk/middleware-logger-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-logger";
packageName = "@aws-sdk/middleware-logger";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.78.0.tgz";
- sha512 = "GBhwxNjhCJUIeQQDaGasX/C23Jay77al2vRyGwmxf8no0DdFsa4J1Ik6/2hhIqkqko+WM4SpCnpZrY4MtnxNvA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.110.0.tgz";
+ sha512 = "+pz+a+8dfTnzLj79nHrv3aONMp/N36/erMd+7JXeR84QEosVLrFBUwKA8x5x6O3s1iBbQzRKMYEIuja9xn1BPA==";
};
};
- "@aws-sdk/middleware-recursion-detection-3.105.0" = {
+ "@aws-sdk/middleware-recursion-detection-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-recursion-detection";
packageName = "@aws-sdk/middleware-recursion-detection";
- version = "3.105.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.105.0.tgz";
- sha512 = "KksW6cBQ3BWTNlN+4eMW8//oqsuKLYJsSUsdSLQb7MFBHnw+6r8GS9WXMYN0IBswlhdYi9fv83zlKDTV21ZL+g==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.110.0.tgz";
+ sha512 = "Wav782zd7bcd1e6txRob76CDOdVOaUQ8HXoywiIm/uFrEEUZvhs2mgnXjVUVCMBUehdNgnL99z420aS13JeL/Q==";
};
};
- "@aws-sdk/middleware-retry-3.80.0" = {
+ "@aws-sdk/middleware-retry-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-retry";
packageName = "@aws-sdk/middleware-retry";
- version = "3.80.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.80.0.tgz";
- sha512 = "CTk+tA4+WMUNOcUfR6UQrkhwvPYFpnMsQ1vuHlpLFOGG3nCqywA2hueLMRQmVcDXzP0sGeygce6dzRI9dJB/GA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.110.0.tgz";
+ sha512 = "lwLAQQveCiUqymQvVYjCee6QOXw3Zqbc9yq+pxYdXbs1Cv1XMA6PeJeUU5r5KEVuSceBLyyrnl6E0R1l1om1MQ==";
};
};
- "@aws-sdk/middleware-sdk-s3-3.105.0" = {
+ "@aws-sdk/middleware-sdk-s3-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-sdk-s3";
packageName = "@aws-sdk/middleware-sdk-s3";
- version = "3.105.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.105.0.tgz";
- sha512 = "GI2vYiboOc3GNpjNUtGyBVi9R6hwLhjId2PPqchyiRntlzz9CfF4F2qMjH/Vv0kE383hT8TN+5kGmaVSmeJqmg==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.110.0.tgz";
+ sha512 = "/PpZU11dkGldD6yeAccPxFd5nzofLOA3+j25RdIwz2jlJMLl9TeznYRtFH5JhHonP3lsK+IPEnFPwuL6gkBxIQ==";
};
};
- "@aws-sdk/middleware-sdk-sts-3.78.0" = {
+ "@aws-sdk/middleware-sdk-sts-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-sdk-sts";
packageName = "@aws-sdk/middleware-sdk-sts";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.78.0.tgz";
- sha512 = "Lu/kN0J0/Kt0ON1hvwNel+y8yvf35licfIgtedHbBCa/ju8qQ9j+uL9Lla6Y5Tqu29yVaye1JxhiIDhscSwrLA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.110.0.tgz";
+ sha512 = "EjY/YFdlr5jECde6qIrTIyGBbn/34CKcQGKvmvRd31+3qaClIJLAwNuHfcVzWvCUGbAslsfvdbOpLju33pSQRA==";
};
};
- "@aws-sdk/middleware-serde-3.78.0" = {
+ "@aws-sdk/middleware-serde-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-serde";
packageName = "@aws-sdk/middleware-serde";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.78.0.tgz";
- sha512 = "4DPsNOxsl1bxRzfo1WXEZjmD7OEi7qGNpxrDWucVe96Fqj2dH08jR8wxvBIVV1e6bAad07IwdPuCGmivNvwRuQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.110.0.tgz";
+ sha512 = "brVupxgEAmcZ9cZvdHEH8zncjvGKIiud8pOe4fiimp5NpHmjBLew4jUbnOKNZNAjaidcKUtz//cxtutD6yXEww==";
};
};
- "@aws-sdk/middleware-signing-3.78.0" = {
+ "@aws-sdk/middleware-signing-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-signing";
packageName = "@aws-sdk/middleware-signing";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.78.0.tgz";
- sha512 = "OEjJJCNhHHSOprLZ9CzjHIXEKFtPHWP/bG9pMhkV3/6Bmscsgcf8gWHcOnmIrjqX+hT1VALDNpl/RIh0J6/eQw==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.110.0.tgz";
+ sha512 = "y6ZKrGYfgDlFMzWhZmoq5J1UctBgZOUvMmnU9sSeZ020IlEPiOxFMvR0Zu6TcYThp8uy3P0wyjQtGYeTl9Z/kA==";
};
};
- "@aws-sdk/middleware-ssec-3.78.0" = {
+ "@aws-sdk/middleware-ssec-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-ssec";
packageName = "@aws-sdk/middleware-ssec";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.78.0.tgz";
- sha512 = "3z+UOd95rxvj+iO6WxMjuRNNUMlO6xhXZdBHvQmoiyS+9nMDcNieTu6gfQyLAilVeCh8xU9a0IenJuIYVdJ96g==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.110.0.tgz";
+ sha512 = "Zrm+h+C+MXv2Q+mh8O/zwK2hUYM4kq4I1vx72RPpvyfIk4/F5ZzeA3LSVluISyAW+iNqS8XFvGFrzl2gB8zWsg==";
};
};
- "@aws-sdk/middleware-stack-3.78.0" = {
+ "@aws-sdk/middleware-stack-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-stack";
packageName = "@aws-sdk/middleware-stack";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.78.0.tgz";
- sha512 = "UoNfRh6eAJN3BJHlG1eb+KeuSe+zARTC2cglroJRyHc2j7GxH2i9FD3IJbj5wvzopJEnQzuY/VCs6STFkqWL1g==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.110.0.tgz";
+ sha512 = "iaLHw6ctOuGa9UxNueU01Xes+15dR+mqioRpUOUZ9Zx+vhXVpD7C8lnNqhRnYeFXs10/rNIzASgsIrAHTlnlIQ==";
};
};
- "@aws-sdk/middleware-user-agent-3.78.0" = {
+ "@aws-sdk/middleware-user-agent-3.110.0" = {
name = "_at_aws-sdk_slash_middleware-user-agent";
packageName = "@aws-sdk/middleware-user-agent";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.78.0.tgz";
- sha512 = "wdN5uoq8RxxhLhj0EPeuDSRFuXfUwKeEqRzCKMsYAOC0cAm+PryaP2leo0oTGJ9LUK8REK7zyfFcmtC4oOzlkA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.110.0.tgz";
+ sha512 = "Y6FgiZr99DilYq6AjeaaWcNwVlSQpNGKrILzvV4Tmz03OaBIspe4KL+8EZ2YA/sAu5Lpw80vItdezqDOwGAlnQ==";
};
};
- "@aws-sdk/node-config-provider-3.80.0" = {
+ "@aws-sdk/node-config-provider-3.110.0" = {
name = "_at_aws-sdk_slash_node-config-provider";
packageName = "@aws-sdk/node-config-provider";
- version = "3.80.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.80.0.tgz";
- sha512 = "vyTOMK04huB7n10ZUv0thd2TE6KlY8livOuLqFTMtj99AJ6vyeB5XBNwKnQtJIt/P7CijYgp8KcFvI9fndOmKg==";
+ url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.110.0.tgz";
+ sha512 = "46p4dCPGYctuybTQTwLpjenA1QFHeyJw/OyggGbtUJUy+833+ldnAwcPVML2aXJKUKv3APGI8vq1kaloyNku3Q==";
};
};
- "@aws-sdk/node-http-handler-3.94.0" = {
+ "@aws-sdk/node-http-handler-3.110.0" = {
name = "_at_aws-sdk_slash_node-http-handler";
packageName = "@aws-sdk/node-http-handler";
- version = "3.94.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.94.0.tgz";
- sha512 = "g9q6k+PS+BrtOzt8jrBWr9D543uB3ZoYZ2JCriwuCwnP4uIHlMf9wAOGcOgqgykfUAPBOLvz2rTwVs3Xl8GUmQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.110.0.tgz";
+ sha512 = "/rP+hY516DpP8fZhwFW5xM/ElH0w6lxw/15VvZCoY5EnOLAF5XIsJdzscWPSEW2FHCylBM4SNrKhGar14BDXhA==";
};
};
- "@aws-sdk/property-provider-3.78.0" = {
+ "@aws-sdk/property-provider-3.110.0" = {
name = "_at_aws-sdk_slash_property-provider";
packageName = "@aws-sdk/property-provider";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.78.0.tgz";
- sha512 = "PZpLvV0hF6lqg3CSN9YmphrB/t5LVJVWGJLB9d9qm7sJs5ksjTYBb5bY91OQ3zit0F4cqBMU8xt2GQ9J6d4DvQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.110.0.tgz";
+ sha512 = "7NkpmYeOkK3mhWBNU+/zSDqwzeaSPH1qrq4L//WV7WS/weYyE/jusQeZoOxVsuZQnQEXHt5O2hKVeUwShl12xA==";
};
};
- "@aws-sdk/protocol-http-3.78.0" = {
+ "@aws-sdk/protocol-http-3.110.0" = {
name = "_at_aws-sdk_slash_protocol-http";
packageName = "@aws-sdk/protocol-http";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.78.0.tgz";
- sha512 = "SQB26MhEK96yDxyXd3UAaxLz1Y/ZvgE4pzv7V3wZiokdEedM0kawHKEn1UQJlqJLEZcQI9QYyysh3rTvHZ3fyg==";
+ url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.110.0.tgz";
+ sha512 = "qdi2gCbJiyPyLn+afebPNp/5nVCRh1X7t7IRIFl3FHVEC+o54u/ojay/MLZ4M/+X9Fa4Zxsb0Wpp3T0xAHVDBg==";
};
};
- "@aws-sdk/querystring-builder-3.78.0" = {
+ "@aws-sdk/querystring-builder-3.110.0" = {
name = "_at_aws-sdk_slash_querystring-builder";
packageName = "@aws-sdk/querystring-builder";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.78.0.tgz";
- sha512 = "aib6RW1WAaTQDqVgRU1Ku9idkhm90gJKbCxVaGId+as6QHNUqMChEfK2v+0afuKiPNOs5uWmqvOXI9+Gt+UGDg==";
+ url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.110.0.tgz";
+ sha512 = "7V3CDXj519izmbBn9ZE68ymASwGriA+Aq+cb/yHSVtffnvXjPtvONNw7G/5iVblisGLSCUe2hSvpYtcaXozbHw==";
};
};
- "@aws-sdk/querystring-parser-3.78.0" = {
+ "@aws-sdk/querystring-parser-3.110.0" = {
name = "_at_aws-sdk_slash_querystring-parser";
packageName = "@aws-sdk/querystring-parser";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.78.0.tgz";
- sha512 = "csaH8YTyN+KMNczeK6fBS8l7iJaqcQcKOIbpQFg5upX4Ly5A56HJn4sVQhY1LSgfSk4xRsNfMy5mu6BlsIiaXA==";
+ url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.110.0.tgz";
+ sha512 = "//pJHH7hrhdDMZGBPKXKymmC/tJM7gFT0w/qbu/yd3Wm4W2fMB+8gkmj6EZctx7jrsWlfRQuvFejKqEfapur/g==";
};
};
- "@aws-sdk/s3-request-presigner-3.107.0" = {
+ "@aws-sdk/s3-request-presigner-3.110.0" = {
name = "_at_aws-sdk_slash_s3-request-presigner";
packageName = "@aws-sdk/s3-request-presigner";
- version = "3.107.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.107.0.tgz";
- sha512 = "sQLnUf+7moyZBMGZLGV5nZWoIY78K3MRz8IYi+2rZIZHyo29kVr+KUPqDo+nDQDCNTnjvnNNK/DmAVlcnPhqmw==";
+ url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.110.0.tgz";
+ sha512 = "YaRu9Qtaooe/VEUeel2gmet7G9picDYoVIl5/xLHdc5jHQ0Uh9RDv1NVzg/EXkMiFPMHuPlFSgo4l6BwiGixDA==";
};
};
- "@aws-sdk/service-error-classification-3.78.0" = {
+ "@aws-sdk/service-error-classification-3.110.0" = {
name = "_at_aws-sdk_slash_service-error-classification";
packageName = "@aws-sdk/service-error-classification";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.78.0.tgz";
- sha512 = "x7Lx8KWctJa01q4Q72Zb4ol9L/era3vy2daASu8l2paHHxsAPBE0PThkvLdUSLZSzlHSVdh3YHESIsT++VsK4w==";
+ url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.110.0.tgz";
+ sha512 = "ccgCE0pU/4RmXR6CP3fLAdhPAve7bK/yXBbGzpSHGAQOXqNxYzOsAvQ30Jg6X+qjLHsI/HR2pLIE65z4k6tynw==";
};
};
- "@aws-sdk/shared-ini-file-loader-3.80.0" = {
+ "@aws-sdk/shared-ini-file-loader-3.110.0" = {
name = "_at_aws-sdk_slash_shared-ini-file-loader";
packageName = "@aws-sdk/shared-ini-file-loader";
- version = "3.80.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.80.0.tgz";
- sha512 = "3d5EBJjnWWkjLK9skqLLHYbagtFaZZy+3jUTlbTuOKhlOwe8jF7CUM3j6I4JA6yXNcB3w0exDKKHa8w+l+05aA==";
+ url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.110.0.tgz";
+ sha512 = "E1ERoqEoG206XNBYWCKLgHkzCbTxdpDEGbsLET2DnvjFsT0s9p2dPvVux3bYl7JVAhyGduE+qcqWk7MzhFCBNQ==";
};
};
- "@aws-sdk/signature-v4-3.78.0" = {
+ "@aws-sdk/signature-v4-3.110.0" = {
name = "_at_aws-sdk_slash_signature-v4";
packageName = "@aws-sdk/signature-v4";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.78.0.tgz";
- sha512 = "eePjRYuzKoi3VMr/lgrUEF1ytLeH4fA/NMCykr/uR6NMo4bSJA59KrFLYSM7SlWLRIyB0UvJqygVEvSxFluyDw==";
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.110.0.tgz";
+ sha512 = "utxxdllOnmQDhbpipnFAbuQ4c2pwefZ+2hi48jKvQRULQ2PO4nxLmdZm6B0FXaTijbKsyO7GrMik+EZ6mi3ARQ==";
};
};
- "@aws-sdk/signature-v4-multi-region-3.88.0" = {
+ "@aws-sdk/signature-v4-multi-region-3.110.0" = {
name = "_at_aws-sdk_slash_signature-v4-multi-region";
packageName = "@aws-sdk/signature-v4-multi-region";
- version = "3.88.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.88.0.tgz";
- sha512 = "RBbyQRpohlIQiuZc5qAvwbXO0Bob9XhHFS/kuLh+DcyeaBp+m+Bt291FX1Ksz2A0Q3ETNM34LFt7kTOBtMvjIQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.110.0.tgz";
+ sha512 = "D5nlq6em9fU9EMmpjQtLItr2d6MmfM9yofOaeNQcgY8wFJEOCc2ADccq8dCO0F4twakAvjuUIkBAWMBviiuC7Q==";
};
};
- "@aws-sdk/smithy-client-3.99.0" = {
+ "@aws-sdk/smithy-client-3.110.0" = {
name = "_at_aws-sdk_slash_smithy-client";
packageName = "@aws-sdk/smithy-client";
- version = "3.99.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.99.0.tgz";
- sha512 = "N9xgCcwbOBZ4/WuROzlErExXV6+vFrFkNJzeBT31/avvrHXjxgxwQlMoXoQCfM8PyRuDuVSfZeoh1iIRfoxidA==";
+ url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.110.0.tgz";
+ sha512 = "gNLYrmdAe/1hVF2Nv2LF4OkL1A0a1o708pEMZHzql9xP164omRDaLrGDhz9tH7tsJEgLz+Bf4E8nTuISeDwvGg==";
};
};
- "@aws-sdk/types-3.78.0" = {
+ "@aws-sdk/types-3.110.0" = {
name = "_at_aws-sdk_slash_types";
packageName = "@aws-sdk/types";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.78.0.tgz";
- sha512 = "I9PTlVNSbwhIgMfmDM5as1tqRIkVZunjVmfogb2WVVPp4CaX0Ll01S0FSMSLL9k6tcQLXqh45pFRjrxCl9WKdQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.110.0.tgz";
+ sha512 = "dLVoqODU3laaqNFPyN1QLtlQnwX4gNPMXptEBIt/iJpuZf66IYJe6WCzVZGt4Zfa1CnUmrlA428AzdcA/KCr2A==";
};
};
- "@aws-sdk/url-parser-3.78.0" = {
+ "@aws-sdk/url-parser-3.110.0" = {
name = "_at_aws-sdk_slash_url-parser";
packageName = "@aws-sdk/url-parser";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.78.0.tgz";
- sha512 = "iQn2AjECUoJE0Ae9XtgHtGGKvUkvE8hhbktGopdj+zsPBe4WrBN2DgVxlKPPrBonG/YlcL1D7a5EXaujWSlUUw==";
+ url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.110.0.tgz";
+ sha512 = "tILFB8/Q73yzgO0dErJNnELmmBszd0E6FucwAnG3hfDefjqCBe09Q/1yhu2aARXyRmZa4AKp0sWcdwIWHc8dnA==";
};
};
"@aws-sdk/util-arn-parser-3.55.0" = {
@@ -976,13 +985,13 @@ let
sha512 = "76KJxp4MRWufHYWys7DFl64znr5yeJ3AIQNAPCKKw1sP0hzO7p6Kx0PaJnw9x+CPSzOrT4NbuApL6/srYhKDGg==";
};
};
- "@aws-sdk/util-base64-browser-3.58.0" = {
+ "@aws-sdk/util-base64-browser-3.109.0" = {
name = "_at_aws-sdk_slash_util-base64-browser";
packageName = "@aws-sdk/util-base64-browser";
- version = "3.58.0";
+ version = "3.109.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.58.0.tgz";
- sha512 = "0ebsXIZNpu/fup9OgsFPnRKfCFbuuI9PPRzvP6twzLxUB0c/aix6Co7LGHFKcRKHZdaykoJMXArf8eHj2Nzv1Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.109.0.tgz";
+ sha512 = "lAZ6fyDGiRLaIsKT9qh7P9FGuNyZ4gAbr1YOSQk/5mHtaTuUvxlPptZuInNM/0MPQm6lpcot00D8IWTucn4PbA==";
};
};
"@aws-sdk/util-base64-node-3.55.0" = {
@@ -1021,58 +1030,58 @@ let
sha512 = "uVzKG1UgvnV7XX2FPTylBujYMKBPBaq/qFBxfl0LVNfrty7YjpfieQxAe6yRLD+T0Kir/WDQwGvYC+tOYG3IGA==";
};
};
- "@aws-sdk/util-config-provider-3.55.0" = {
+ "@aws-sdk/util-config-provider-3.109.0" = {
name = "_at_aws-sdk_slash_util-config-provider";
packageName = "@aws-sdk/util-config-provider";
- version = "3.55.0";
+ version = "3.109.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.55.0.tgz";
- sha512 = "30dzofQQfx6tp1jVZkZ0DGRsT0wwC15nEysKRiAcjncM64A0Cm6sra77d0os3vbKiKoPCI/lMsFr4o3533+qvQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.109.0.tgz";
+ sha512 = "GrAZl/aBv0A28LkyNyq8SPJ5fmViCwz80fWLMeWx/6q5AbivuILogjlWwEZSvZ9zrlHOcFC0+AnCa5pQrjaslw==";
};
};
- "@aws-sdk/util-create-request-3.99.0" = {
+ "@aws-sdk/util-create-request-3.110.0" = {
name = "_at_aws-sdk_slash_util-create-request";
packageName = "@aws-sdk/util-create-request";
- version = "3.99.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.99.0.tgz";
- sha512 = "7+jM8xe2u5FW7ufRqHTmvJa7nH9f8uZXuWpHcmITKm8IRnkst1ib1DUctEZE+go9lnonzy4TttSNMt5NqFCgOA==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.110.0.tgz";
+ sha512 = "8u+6WjzVNUdG4181y/zafIlGJ80qdSIKo09utlY7kvSZhYeufjkgMLhJtthb9uEEmXNn/UlKGJNRbGChjSL4Xw==";
};
};
- "@aws-sdk/util-defaults-mode-browser-3.99.0" = {
+ "@aws-sdk/util-defaults-mode-browser-3.110.0" = {
name = "_at_aws-sdk_slash_util-defaults-mode-browser";
packageName = "@aws-sdk/util-defaults-mode-browser";
- version = "3.99.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.99.0.tgz";
- sha512 = "qSYjUGuN8n7Q/zAi0tzU4BrU389jQosXtjp7eHpLATl0pKGpaHx6rJNwbiNhvBhBEfmSgqsJ09b4gZUpUezHEw==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.110.0.tgz";
+ sha512 = "Y2dcOOD20S3bv/IjUqpdKIiDt6995SXNG5Pu/LeSdXNyLCOIm9rX4gHTxl9fC1KK5M/gR9fGJ362f67WwqEEqw==";
};
};
- "@aws-sdk/util-defaults-mode-node-3.99.0" = {
+ "@aws-sdk/util-defaults-mode-node-3.110.0" = {
name = "_at_aws-sdk_slash_util-defaults-mode-node";
packageName = "@aws-sdk/util-defaults-mode-node";
- version = "3.99.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.99.0.tgz";
- sha512 = "8TUO0kEnQcgT1gAW9y9oO6a5gKhfEGEUeKidEgbTczEUrjr3aCXIC+p0DI5FJfImwPrTKXra8A22utDM92phWw==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.110.0.tgz";
+ sha512 = "Cr3Z5nyrw1KowjbW76xp8hkT/zJtYjAVZ9PS4l84KxIicbVvDOBpxG3yNddkuQcavmlH6G4wH9uM5DcnpKDncg==";
};
};
- "@aws-sdk/util-format-url-3.78.0" = {
+ "@aws-sdk/util-format-url-3.110.0" = {
name = "_at_aws-sdk_slash_util-format-url";
packageName = "@aws-sdk/util-format-url";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.78.0.tgz";
- sha512 = "wdjt8ZAMyBrH/02QrQtB+S9cwtsBJ6bXRJ3XwL6z7L75nwTflKkzOQUS5Ie7HBf3j3JH0KhlqlEbf2nnM9jsPQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.110.0.tgz";
+ sha512 = "NES/Kf92stj6bMl3WyaKFlA5yKbYlb357buoXKv51MnjcLL6NAgIWm0lMQv6UgzLVTxKdbw4BxErpSiKM+10Xg==";
};
};
- "@aws-sdk/util-hex-encoding-3.58.0" = {
+ "@aws-sdk/util-hex-encoding-3.109.0" = {
name = "_at_aws-sdk_slash_util-hex-encoding";
packageName = "@aws-sdk/util-hex-encoding";
- version = "3.58.0";
+ version = "3.109.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.58.0.tgz";
- sha512 = "Rl+jXUzk/FJkOLYfUVYPhKa2aUmTpeobRP31l8IatQltSzDgLyRHO35f6UEs7Ztn5s1jbu/POatLAZ2WjbgVyg==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.109.0.tgz";
+ sha512 = "s8CgTNrn3cLkrdiohfxLuOYPCanzvHn/aH5RW6DaMoeQiG5Hl9QUiP/WtdQ9QQx3xvpQFpmvxIaSBwSgFNLQxA==";
};
};
"@aws-sdk/util-locate-window-3.55.0" = {
@@ -1084,31 +1093,31 @@ let
sha512 = "0sPmK2JaJE2BbTcnvybzob/VrFKCXKfN4CUKcvn0yGg/me7Bz+vtzQRB3Xp+YSx+7OtWxzv63wsvHoAnXvgxgg==";
};
};
- "@aws-sdk/util-middleware-3.78.0" = {
+ "@aws-sdk/util-middleware-3.110.0" = {
name = "_at_aws-sdk_slash_util-middleware";
packageName = "@aws-sdk/util-middleware";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.78.0.tgz";
- sha512 = "Hi3wv2b0VogO4mzyeEaeU5KgIt4qeo0LXU5gS6oRrG0T7s2FyKbMBkJW3YDh/Y8fNwqArZ+/QQFujpP0PIKwkA==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-middleware/-/util-middleware-3.110.0.tgz";
+ sha512 = "PTVWrI5fA9d5hHJs6RzX2dIS2jRQ3uW073Fm0BePpQeDdZrEk+S5KNwRhUtpN6sdSV45vm6S9rrjZUG51qwGmA==";
};
};
- "@aws-sdk/util-stream-browser-3.78.0" = {
+ "@aws-sdk/util-stream-browser-3.110.0" = {
name = "_at_aws-sdk_slash_util-stream-browser";
packageName = "@aws-sdk/util-stream-browser";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.78.0.tgz";
- sha512 = "EcThf/sJoD4NYTUNO/nehR57lqkOuL6btRoVnm4LGUR8XgQcJ/WMYYgxOMY8E81xXzRFX2ukRHRxL2xmQsbHDw==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.110.0.tgz";
+ sha512 = "kAMrHtgrhr6ODRnzt/V+LSDVDvejcbdUp19n4My2vrPwKw3lM65vT+FAPIlGeDQBtOOhmlTbrYM3G3KKnlnHyg==";
};
};
- "@aws-sdk/util-stream-node-3.78.0" = {
+ "@aws-sdk/util-stream-node-3.110.0" = {
name = "_at_aws-sdk_slash_util-stream-node";
packageName = "@aws-sdk/util-stream-node";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.78.0.tgz";
- sha512 = "CHfX37ioUyamAnlS2p4Nq+4BBjCSlZolFkVyxtVJwzPBBksdvjW67nKG+SShR48RBPJ5LEzbgAaEXNRktCSf6w==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.110.0.tgz";
+ sha512 = "jgkO7aLRpE3EUqU5XUdo0FmlyBVCFHKyHd/jdEN8h9+XMa44rl2QMdOSFQtwaNI4NC8J+OC66u2dQ+8QQnOLig==";
};
};
"@aws-sdk/util-uri-escape-3.55.0" = {
@@ -1120,58 +1129,58 @@ let
sha512 = "mmdDLUpFCN2nkfwlLdOM54lTD528GiGSPN1qb8XtGLgZsJUmg3uJSFIN2lPeSbEwJB3NFjVas/rnQC48i7mV8w==";
};
};
- "@aws-sdk/util-user-agent-browser-3.78.0" = {
+ "@aws-sdk/util-user-agent-browser-3.110.0" = {
name = "_at_aws-sdk_slash_util-user-agent-browser";
packageName = "@aws-sdk/util-user-agent-browser";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.78.0.tgz";
- sha512 = "diGO/Bf4ggBOEnfD7lrrXaaXOwOXGz0bAJ0HhpizwEMlBld5zfDlWXjNpslh+8+u3EHRjPJQ16KGT6mp/Dm+aw==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.110.0.tgz";
+ sha512 = "rNdhmHDMV5dNJctqlBWimkZLJRB+x03DB+61pm+SKSFk6gPIVIvc1WNXqDFphkiswT4vA13ZUkGHzt+N4+noQQ==";
};
};
- "@aws-sdk/util-user-agent-node-3.80.0" = {
+ "@aws-sdk/util-user-agent-node-3.110.0" = {
name = "_at_aws-sdk_slash_util-user-agent-node";
packageName = "@aws-sdk/util-user-agent-node";
- version = "3.80.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.80.0.tgz";
- sha512 = "QV26qIXws1m6sZXg65NS+XrQ5NhAzbDVQLtEVE4nC39UN8fuieP6Uet/gZm9mlLI9hllwvcV7EfgBM3GSC7pZg==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.110.0.tgz";
+ sha512 = "OQ915TPCCBwZWz5Np8zkNWn7U6KvrTZfFoCOy/VIemK3dUqmnBZ7HqGpuZx8SwJ2R9JE1x+j0niYSJ5fWJZZKA==";
};
};
- "@aws-sdk/util-utf8-browser-3.55.0" = {
+ "@aws-sdk/util-utf8-browser-3.109.0" = {
name = "_at_aws-sdk_slash_util-utf8-browser";
packageName = "@aws-sdk/util-utf8-browser";
- version = "3.55.0";
+ version = "3.109.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.55.0.tgz";
- sha512 = "ljzqJcyjfJpEVSIAxwtIS8xMRUly84BdjlBXyp6cu4G8TUufgjNS31LWdhyGhgmW5vYBNr+LTz0Kwf6J+ou7Ug==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.109.0.tgz";
+ sha512 = "FmcGSz0v7Bqpl1SE8G1Gc0CtDpug+rvqNCG/szn86JApD/f5x8oByjbEiAyTU2ZH2VevUntx6EW68ulHyH+x+w==";
};
};
- "@aws-sdk/util-utf8-node-3.55.0" = {
+ "@aws-sdk/util-utf8-node-3.109.0" = {
name = "_at_aws-sdk_slash_util-utf8-node";
packageName = "@aws-sdk/util-utf8-node";
- version = "3.55.0";
+ version = "3.109.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.55.0.tgz";
- sha512 = "FsFm7GFaC7j0tlPEm/ri8bU2QCwFW5WKjxUg8lm1oWaxplCpKGUsmcfPJ4sw58GIoyoGu4QXBK60oCWosZYYdQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.109.0.tgz";
+ sha512 = "Ti/ZBdvz2eSTElsucjzNmzpyg2MwfD1rXmxD0hZuIF8bPON/0+sZYnWd5CbDw9kgmhy28dmKue086tbZ1G0iLQ==";
};
};
- "@aws-sdk/util-waiter-3.78.0" = {
+ "@aws-sdk/util-waiter-3.110.0" = {
name = "_at_aws-sdk_slash_util-waiter";
packageName = "@aws-sdk/util-waiter";
- version = "3.78.0";
+ version = "3.110.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.78.0.tgz";
- sha512 = "8pWd0XiNOS8AkWQyac8VNEI+gz/cGWlC2TAE2CJp0rOK5XhvlcNBINai4D6TxQ+9foyJXLOI1b8nuXemekoG8A==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.110.0.tgz";
+ sha512 = "8dE6W6XYfjk1gx/aeb8NeLfMMLkLFhlV1lmKpFSBJhY8msajU8aQahTuykq5JW8QT/wCGbqbu7dH35SdX7kO+A==";
};
};
- "@aws-sdk/xml-builder-3.55.0" = {
+ "@aws-sdk/xml-builder-3.109.0" = {
name = "_at_aws-sdk_slash_xml-builder";
packageName = "@aws-sdk/xml-builder";
- version = "3.55.0";
+ version = "3.109.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.55.0.tgz";
- sha512 = "BH+i5S2FLprmfSeIuGy3UbNtEoJPVjh8arl5+LV3i2KY/+TmrS4yT8JtztDlDxHF0cMtNLZNO0KEPtsACS6SOg==";
+ url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.109.0.tgz";
+ sha512 = "+aAXynnrqya1Eukz4Gxch4xIXCZolIMWGD4Ll/Q5yXT5uAjGh2HQWd9J0LWE+gYChpWetZbAVYZ3cEJ6F+SpZA==";
};
};
"@azu/format-text-1.0.1" = {
@@ -1228,22 +1237,22 @@ let
sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==";
};
};
- "@babel/compat-data-7.17.10" = {
+ "@babel/compat-data-7.18.5" = {
name = "_at_babel_slash_compat-data";
packageName = "@babel/compat-data";
- version = "7.17.10";
+ version = "7.18.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.10.tgz";
- sha512 = "GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==";
+ url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.5.tgz";
+ sha512 = "BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg==";
};
};
- "@babel/core-7.18.2" = {
+ "@babel/core-7.18.5" = {
name = "_at_babel_slash_core";
packageName = "@babel/core";
- version = "7.18.2";
+ version = "7.18.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/core/-/core-7.18.2.tgz";
- sha512 = "A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==";
+ url = "https://registry.npmjs.org/@babel/core/-/core-7.18.5.tgz";
+ sha512 = "MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ==";
};
};
"@babel/core-7.9.0" = {
@@ -1489,13 +1498,13 @@ let
sha512 = "7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==";
};
};
- "@babel/node-7.17.10" = {
+ "@babel/node-7.18.5" = {
name = "_at_babel_slash_node";
packageName = "@babel/node";
- version = "7.17.10";
+ version = "7.18.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/node/-/node-7.17.10.tgz";
- sha512 = "sFFMyvw23U8QOcTnLJnw2/Myr01e4+iLVy7rHAHrNSnXAfnwS3j2NqihpmZm7TotyNKKf/y8cJ96T5asY46eyw==";
+ url = "https://registry.npmjs.org/@babel/node/-/node-7.18.5.tgz";
+ sha512 = "zv94ESipS2/YKAOJ+/WAfVEzsl9M8UmPZ7Hwx5qVPgytdrgwUPxfi700iR9KO/w5ZhIHyFyvoZtCTSEcQJF8vQ==";
};
};
"@babel/parser-7.17.10" = {
@@ -1507,13 +1516,13 @@ let
sha512 = "n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ==";
};
};
- "@babel/parser-7.18.4" = {
+ "@babel/parser-7.18.5" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.18.4";
+ version = "7.18.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.4.tgz";
- sha512 = "FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.5.tgz";
+ sha512 = "YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==";
};
};
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12" = {
@@ -2002,13 +2011,13 @@ let
sha512 = "f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==";
};
};
- "@babel/plugin-transform-modules-systemjs-7.18.4" = {
+ "@babel/plugin-transform-modules-systemjs-7.18.5" = {
name = "_at_babel_slash_plugin-transform-modules-systemjs";
packageName = "@babel/plugin-transform-modules-systemjs";
- version = "7.18.4";
+ version = "7.18.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.4.tgz";
- sha512 = "lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.5.tgz";
+ sha512 = "SEewrhPpcqMF1V7DhnEbhVJLrC+nnYfe1E0piZMZXBpxi9WvZqWGwpsk7JYP7wPWeqaBh4gyKlBhHJu3uz5g4Q==";
};
};
"@babel/plugin-transform-modules-umd-7.18.0" = {
@@ -2029,13 +2038,13 @@ let
sha512 = "vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==";
};
};
- "@babel/plugin-transform-new-target-7.17.12" = {
+ "@babel/plugin-transform-new-target-7.18.5" = {
name = "_at_babel_slash_plugin-transform-new-target";
packageName = "@babel/plugin-transform-new-target";
- version = "7.17.12";
+ version = "7.18.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.17.12.tgz";
- sha512 = "CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.5.tgz";
+ sha512 = "TuRL5uGW4KXU6OsRj+mLp9BM7pO8e7SGNTEokQRRxHFkXYMFiy2jlKSZPFtI/mKORDzciH+hneskcSOp0gU8hg==";
};
};
"@babel/plugin-transform-object-super-7.16.7" = {
@@ -2119,13 +2128,13 @@ let
sha512 = "1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==";
};
};
- "@babel/plugin-transform-runtime-7.18.2" = {
+ "@babel/plugin-transform-runtime-7.18.5" = {
name = "_at_babel_slash_plugin-transform-runtime";
packageName = "@babel/plugin-transform-runtime";
- version = "7.18.2";
+ version = "7.18.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.2.tgz";
- sha512 = "mr1ufuRMfS52ttq+1G1PD8OJNqgcTFjq3hwn8SZ5n1x1pBhi0E36rYMdTK0TsKtApJ4lDEdfXJwtGobQMHSMPg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.5.tgz";
+ sha512 = "Q17hHxXr2fplrE+5BSC1j1Fo5cOA8YeP8XW3/1paI8MzF/faZGh0MaH1KC4jLAvqLPamQWHB5/B7KqSLY1kuHA==";
};
};
"@babel/plugin-transform-shorthand-properties-7.16.7" = {
@@ -2308,13 +2317,13 @@ let
sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==";
};
};
- "@babel/traverse-7.18.2" = {
+ "@babel/traverse-7.18.5" = {
name = "_at_babel_slash_traverse";
packageName = "@babel/traverse";
- version = "7.18.2";
+ version = "7.18.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.2.tgz";
- sha512 = "9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==";
+ url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.5.tgz";
+ sha512 = "aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==";
};
};
"@babel/types-7.17.10" = {
@@ -2344,13 +2353,13 @@ let
sha512 = "ANRQZT5h9+zC8B/y0S9B+SqEpicL0XRT4drAhiPFHBrOStRZWzOh3bPrwNSPqr7tdShxYtMyxbH+fkHMetZaxg==";
};
};
- "@blueprintjs/core-4.5.0" = {
+ "@blueprintjs/core-4.5.1" = {
name = "_at_blueprintjs_slash_core";
packageName = "@blueprintjs/core";
- version = "4.5.0";
+ version = "4.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@blueprintjs/core/-/core-4.5.0.tgz";
- sha512 = "lTymPTV/yKMCLq6Ra3LKHLDUpPdpnRN0jHKqB0dcAMLvo7ID/ZeEAxt1VJeqhufqzQewXUjOYlKl2/BfAlh9dg==";
+ url = "https://registry.npmjs.org/@blueprintjs/core/-/core-4.5.1.tgz";
+ sha512 = "CrMkeuvVo+GD/hv6T9W6GNWvTJ7TGpzs2r3v0zO1lMfAYj4v2gaisSXQQ2HziT7zO/kYDyu9aRpbGv0KSvryQA==";
};
};
"@blueprintjs/icons-4.3.0" = {
@@ -2749,13 +2758,13 @@ let
sha512 = "GkJdJv6cmzrKcmq2/oxTXjKF5uv71r4eTqnFmgPbNBW1t+G4VYpzOf0QrVQrhx2RC4DdW5XfcTf+iS0FxHOTmw==";
};
};
- "@cspell/dict-docker-1.1.0" = {
+ "@cspell/dict-docker-1.1.1" = {
name = "_at_cspell_slash_dict-docker";
packageName = "@cspell/dict-docker";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.0.tgz";
- sha512 = "2OI5srKxeoiOnAD34jGK2pDGbgeQDnBCuE64bM04Uct7QxPjIv1RDpWLa3VMWhFIzeoyNSNWwDB+x5ufVc6VXA==";
+ url = "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.1.tgz";
+ sha512 = "UEYoeRDm7oUN9yz1mYSozz6D4+2N14S/cd2Re9et6Xzq6yi62s4ky3knF92Of2weelADjnN41UA22VBhRAf7Sw==";
};
};
"@cspell/dict-dotnet-2.0.1" = {
@@ -2785,22 +2794,22 @@ let
sha512 = "tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==";
};
};
- "@cspell/dict-en_us-2.2.5" = {
+ "@cspell/dict-en_us-2.2.6" = {
name = "_at_cspell_slash_dict-en_us";
packageName = "@cspell/dict-en_us";
- version = "2.2.5";
+ version = "2.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.2.5.tgz";
- sha512 = "gRHem02ZY83AQUTYBxtiVNmtM6gWFCJKumRoAKLj7vWYelmNLcCBsMA3BOOOJ7cZNKCI04lDEdh0u2f2akKZtQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.2.6.tgz";
+ sha512 = "TJ4edLus8TV6Tr7ceOxHG5ZV2MhKJioteNT9jhdcSTdySsfQJjDAx6AIGiVVeRu5s9yR61oL5In7UyMCA80RWQ==";
};
};
- "@cspell/dict-filetypes-2.0.1" = {
+ "@cspell/dict-filetypes-2.0.2" = {
name = "_at_cspell_slash_dict-filetypes";
packageName = "@cspell/dict-filetypes";
- version = "2.0.1";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-2.0.1.tgz";
- sha512 = "bQ7K3U/3hKO2lpQjObf0veNP/n50qk5CVezSwApMBckf/sAVvDTR1RGAvYdr+vdQnkdQrk6wYmhbshXi0sLDVg==";
+ url = "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-2.0.2.tgz";
+ sha512 = "do7/Iwxjx+FHybe6UTocsWNRF1ar4cwhQoV2K2YzYTm73CoU5LMEwi2LY0Mwp/mn90TKbpPPQGCJ0sRpvaZ4AA==";
};
};
"@cspell/dict-fonts-2.0.0" = {
@@ -2848,13 +2857,13 @@ let
sha512 = "cjX1Br+gSWqtcmJD/IMHz1UoP3pUaKIIKy/JfhEs7ANtRt6hhfEKe9dl2kQzDkkKt4pXol+YgdYxL/sVc/nLgQ==";
};
};
- "@cspell/dict-html-3.0.1" = {
+ "@cspell/dict-html-3.0.2" = {
name = "_at_cspell_slash_dict-html";
packageName = "@cspell/dict-html";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-3.0.1.tgz";
- sha512 = "sbuFd+nSjgbrGf5eYwSddFhm1eLLePKWyH6Zn8Zb0OODrBK5e4vGn1/scI/MOH5a2IvNs8W9wp84uMBFJcQZtw==";
+ url = "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-3.0.2.tgz";
+ sha512 = "ugMVQHZTvpYA/w8/E2dbSx2hdfFU9y91Omx40VUC6cNyF7jx00VKueK6gcRF3QZoB1PUhjla2YzxqRxuXI908A==";
};
};
"@cspell/dict-html-symbol-entities-3.0.0" = {
@@ -2866,22 +2875,22 @@ let
sha512 = "04K7cPTcbYXmHICfiob4gZA1yaj4hpfM+Nl5WIJ1EAZsSGHdqmGEF28GuCjyQ8ZeKiJAsPt/vXuLBbjxkHqZyQ==";
};
};
- "@cspell/dict-java-3.0.2" = {
+ "@cspell/dict-java-3.0.3" = {
name = "_at_cspell_slash_dict-java";
packageName = "@cspell/dict-java";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-3.0.2.tgz";
- sha512 = "OUhtLruqN+ztDEViEQDw22L883xaignSZHyl7CnD8rTwcuhcaumdAhu4c3mygIDnFGtk/a+pk4ZaXk1ZINvK7g==";
+ url = "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-3.0.3.tgz";
+ sha512 = "aARF22BmO03YgV0robADNVf32KnvF/wMMoByYQk4IaQWh8kJ1s///S44aY/4n/Cg2tX/1kNa60VMkdCNFD7FPw==";
};
};
- "@cspell/dict-latex-2.0.5" = {
+ "@cspell/dict-latex-2.0.6" = {
name = "_at_cspell_slash_dict-latex";
packageName = "@cspell/dict-latex";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-2.0.5.tgz";
- sha512 = "r6aOaLWzvH3lZteVo/TiS6Ee2vng2qDwtvHLEHrzsq/SaIeHb6FoKJxnMpaNE1H85G/LMkG0LA1tMtl0C3JxsQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-2.0.6.tgz";
+ sha512 = "DCe/YlUMnY+/BaaHLIs2LYPgpWF4to5V9lggEkJy4CsHyD0WPqV4JpoaOMrcsK/jbUrD39T91NruwlcPJoo7xQ==";
};
};
"@cspell/dict-lorem-ipsum-2.0.0" = {
@@ -2974,13 +2983,13 @@ let
sha512 = "qGqhYfFeoBOashv/l0Kj5o4ilyvfq0s+t+r32juPOkOnbHz+hzxnJo2tMMg/L/UdjVV7Y8ovg4LDBC/seVrMYQ==";
};
};
- "@cspell/dict-rust-2.0.0" = {
+ "@cspell/dict-rust-2.0.1" = {
name = "_at_cspell_slash_dict-rust";
packageName = "@cspell/dict-rust";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-2.0.0.tgz";
- sha512 = "EWlQivTKXMU3TTcq/Pi6KPKTQADknasQ700UrxRPzxhwQ4sKVZ88GDu6VZJlsbFUz8Vko289KS6wjiox/7WpmQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-2.0.1.tgz";
+ sha512 = "ATDpIh0VWpQdUIZa8zqqJY4wQz3q00BTXlQCodeOmObYSb23+L6KWWzJ8mKLgpbc1lqTkogWrqxiCxlrCmqNmg==";
};
};
"@cspell/dict-scala-2.0.0" = {
@@ -3397,13 +3406,13 @@ let
sha512 = "8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA==";
};
};
- "@emotion/is-prop-valid-1.1.2" = {
+ "@emotion/is-prop-valid-1.1.3" = {
name = "_at_emotion_slash_is-prop-valid";
packageName = "@emotion/is-prop-valid";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.1.2.tgz";
- sha512 = "3QnhqeL+WW88YjYbQL5gUIkthuMw7a0NGbZ7wfFVk2kg/CK5w8w5FFa0RzWjyY1+sujN0NWbtSHH6OJmWHtJpQ==";
+ url = "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.1.3.tgz";
+ sha512 = "RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA==";
};
};
"@emotion/memoize-0.7.5" = {
@@ -3739,13 +3748,13 @@ let
sha512 = "ax8izl48JJuymEuvJzvNH22GHmpPEWLP+h4doyFZ/9IhR9AEycNc2rGBthZ5FiuktnFgusNag1AHr/WCj5pttw==";
};
};
- "@fluentui/react-8.73.0" = {
+ "@fluentui/react-8.76.0" = {
name = "_at_fluentui_slash_react";
packageName = "@fluentui/react";
- version = "8.73.0";
+ version = "8.76.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react/-/react-8.73.0.tgz";
- sha512 = "uecXu17rAwqZ8dMbWI351gYecj9wA0DegHsHts7ZhUfcein5SjNDztuGrp/C+2FJoA8KicVumXLVVAvWho6TVQ==";
+ url = "https://registry.npmjs.org/@fluentui/react/-/react-8.76.0.tgz";
+ sha512 = "ZrMVmg08TyMc1oQmsZDpopgaqY8ouX9o1jIHoYvFI59J7LemXw5QfOsxO8K0rz2Pv+olhOLEaPOCptGpaOA4Ug==";
};
};
"@fluentui/react-focus-8.7.0" = {
@@ -3757,13 +3766,13 @@ let
sha512 = "HuV3zcoe5FRDXCDqVzqj+6mhWzz19hQA4MgQQ42x/0bCdjWMN7fFMuU78cwhxenjG/vWlNgO2Yo+eEZ8j8/CEA==";
};
};
- "@fluentui/react-hooks-8.5.5" = {
+ "@fluentui/react-hooks-8.6.0" = {
name = "_at_fluentui_slash_react-hooks";
packageName = "@fluentui/react-hooks";
- version = "8.5.5";
+ version = "8.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.5.5.tgz";
- sha512 = "jtEBOi6iubsdyBfW3Z034t2TrF7uncXvx6/yYZn9zD5YBpPMMJKcUmxjbpcApRdMUA6BarKq+MqyvkbxCpcsWw==";
+ url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.0.tgz";
+ sha512 = "mo5dqMDcXoY+Utnq65WzDKdHT8zgLxR4ZEwen884dyisN7g/+wjfy4JZmhi8Cm9gnD7anNJvSKP9pPJGwCt26Q==";
};
};
"@fluentui/react-portal-compat-context-9.0.0-rc.2" = {
@@ -3856,13 +3865,13 @@ let
sha512 = "5IVzv1gO626qaC7CEV7LUG68IHgEjWovIHXQsbI9MraxhrI9eSV5/l/81Povv7tJlni7u8OnARPU7bmxlXlx7g==";
};
};
- "@google-cloud/paginator-3.0.7" = {
+ "@google-cloud/paginator-4.0.0" = {
name = "_at_google-cloud_slash_paginator";
packageName = "@google-cloud/paginator";
- version = "3.0.7";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@google-cloud/paginator/-/paginator-3.0.7.tgz";
- sha512 = "jJNutk0arIQhmpUUQJPJErsojqo834KcyB6X7a1mxuic8i1tKXxde8E69IZxNZawRIlZdIK2QY4WALvlK5MzYQ==";
+ url = "https://registry.npmjs.org/@google-cloud/paginator/-/paginator-4.0.0.tgz";
+ sha512 = "wNmCZl+2G2DmgT/VlF+AROf80SoaC/CwS8trwmjNaq26VRNK8yPbU5F/Vy+R9oDAGKWQU2k8+Op5H4kFJVXFaQ==";
};
};
"@google-cloud/precise-date-2.0.4" = {
@@ -3892,13 +3901,13 @@ let
sha512 = "j8yRSSqswWi1QqUGKVEKOG03Q7qOoZP6/h2zN2YO+F5h2+DHU0bSrHCK9Y7lo2DI9fBd8qGAw795sf+3Jva4yA==";
};
};
- "@google-cloud/pubsub-2.19.4" = {
+ "@google-cloud/pubsub-3.0.1" = {
name = "_at_google-cloud_slash_pubsub";
packageName = "@google-cloud/pubsub";
- version = "2.19.4";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.19.4.tgz";
- sha512 = "+aZxq6N5XGarQS3xGXjKSRFy4TB+3PMpI0CBmSrcC59g3TB5nmwps3pv/KkdLa0Cd+CPHDdfrEW1uSrGBMLICw==";
+ url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-3.0.1.tgz";
+ sha512 = "dznNbRd/Y8J0C0xvdvCPi3B1msK/dj/Nya+NQZ2doUOLT6eoa261tBwk9umOQs5L5GKcdlqQKbBjrNjDYVbzQA==";
};
};
"@grammyjs/types-2.7.2" = {
@@ -4135,33 +4144,6 @@ let
sha512 = "qzlrOg9ddaA+30OdG8NU/zDPV2sbJ4Rvool+Zf0nLVRqkAUP/1uxXTQBLgEJKO1xxTlhJ+27FCJ42lG6JG9ZrA==";
};
};
- "@grpc/grpc-js-1.6.1" = {
- name = "_at_grpc_slash_grpc-js";
- packageName = "@grpc/grpc-js";
- version = "1.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.1.tgz";
- sha512 = "ix3rQS64rKL1s6CfIaRgnts+RNYZZ2NaYyTK7iimai6an/0GGDbukzy990hJ5vtKHjhaqJxJMB6Qq7BMZ0zZSQ==";
- };
- };
- "@grpc/grpc-js-1.6.2" = {
- name = "_at_grpc_slash_grpc-js";
- packageName = "@grpc/grpc-js";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.2.tgz";
- sha512 = "9+89Ne1K8F9u86T+l1yIV2DS+dWHYVK61SsDZN4MFTFehOOaJ4rHxa1cW8Lwdn2/6tOx7N3+SY/vfcjztOHopA==";
- };
- };
- "@grpc/grpc-js-1.6.4" = {
- name = "_at_grpc_slash_grpc-js";
- packageName = "@grpc/grpc-js";
- version = "1.6.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.4.tgz";
- sha512 = "Jqq8t3ylPLPK4XXnYPj2uuESirRCAaQ0//GxRLPK6Xq2TBHb2DlmSzJUh15a6R4uUIjBwA8wI69JuKleZXz4jQ==";
- };
- };
"@grpc/grpc-js-1.6.7" = {
name = "_at_grpc_slash_grpc-js";
packageName = "@grpc/grpc-js";
@@ -4189,15 +4171,6 @@ let
sha512 = "FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g==";
};
};
- "@grpc/proto-loader-0.6.9" = {
- name = "_at_grpc_slash_proto-loader";
- packageName = "@grpc/proto-loader";
- version = "0.6.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.9.tgz";
- sha512 = "UlcCS8VbsU9d3XTXGiEVFonN7hXk+oMXZtoHHG2oSA1/GcDP1q6OUgs20PzHDGizzyi8ufGSUDlk3O2NyY7leg==";
- };
- };
"@gulp-sourcemaps/identity-map-2.0.1" = {
name = "_at_gulp-sourcemaps_slash_identity-map";
packageName = "@gulp-sourcemaps/identity-map";
@@ -4927,544 +4900,544 @@ let
sha512 = "Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==";
};
};
- "@lerna/add-5.1.1" = {
+ "@lerna/add-5.1.4" = {
name = "_at_lerna_slash_add";
packageName = "@lerna/add";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/add/-/add-5.1.1.tgz";
- sha512 = "0tUT/ohLLxpz1TYuRBXdsYDIZAgAHPpoF+MOcscADdH9+nIzA+TLr6B4fD/D/7i+IrspXkZEo29+yq31HpPHTQ==";
+ url = "https://registry.npmjs.org/@lerna/add/-/add-5.1.4.tgz";
+ sha512 = "kysQaV0+6aFtT0rkbaeuP6qb0vYDwo7TiC+Og4STyXxv2mHXi3F8r6Z9xXNUn8LPi29gaCmB8DLmbEGlTBM4xg==";
};
};
- "@lerna/bootstrap-5.1.1" = {
+ "@lerna/bootstrap-5.1.4" = {
name = "_at_lerna_slash_bootstrap";
packageName = "@lerna/bootstrap";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-5.1.1.tgz";
- sha512 = "V9SjAsQtmDJExQPwVlVVnTDHfA1xW0zThjbvFZ25D/HpyQ+P1HttYUcE7Xsm0enU7xRKy+T2SXzQauIEWL7Nzg==";
+ url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-5.1.4.tgz";
+ sha512 = "uCP0WdxGCGAGkwcuhv2nLqLByq9WJ5yr+93A8T15xZJfQsXLtYjjlivIe35MjS77eR+krwl5uY6WmGPJ33+afg==";
};
};
- "@lerna/changed-5.1.1" = {
+ "@lerna/changed-5.1.4" = {
name = "_at_lerna_slash_changed";
packageName = "@lerna/changed";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/changed/-/changed-5.1.1.tgz";
- sha512 = "YUSAdwwL66b7KGDo5oPsRSDofv+UczA/FvjYlW+s1PhhHoKbFR4/os5Rm0hlRJcG86kKzB0X1jeFBM8/GtMkVg==";
+ url = "https://registry.npmjs.org/@lerna/changed/-/changed-5.1.4.tgz";
+ sha512 = "XwA3+pw5keO2CyjobLN8dU7mvGbzB3FD+LtLPI/zk7UbNIbl7V6uaIkoPJIdTWwP1e6S1BnGCVsAMtwQ980gTA==";
};
};
- "@lerna/check-working-tree-5.1.1" = {
+ "@lerna/check-working-tree-5.1.4" = {
name = "_at_lerna_slash_check-working-tree";
packageName = "@lerna/check-working-tree";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-5.1.1.tgz";
- sha512 = "rGXNuPIUjPuzwIOYDLio4Il0tLiIqDpd981peKnuCjbocUGJaXncfUf1isazl3LNojsb5dKBoG/O3eJhGoaO4w==";
+ url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-5.1.4.tgz";
+ sha512 = "yFkRmZd25viwxyyOHZd3g7k2Od2Mk0Sf15fol3h/a7P0rUMf6UaMoGo2qlyo+DS51sz+eNalMmFKLpRrDXcSSw==";
};
};
- "@lerna/child-process-5.1.1" = {
+ "@lerna/child-process-5.1.4" = {
name = "_at_lerna_slash_child-process";
packageName = "@lerna/child-process";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-5.1.1.tgz";
- sha512 = "hPBDbqZws2d3GehCuYZ0vZwd/SRthwDIPWGkd74xevdoLxka3Y/y5IdogZz3V9cc6p6bdP6ZHbBSumEX+VIhxA==";
+ url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-5.1.4.tgz";
+ sha512 = "F7xP+bEdkE3JTyKz0t33QA5v2meXZrQQ0JmHa7/AlEg6D2r7gQ8UHSHuSUiNfX4drjpePe/9XaZylj01KLcx/w==";
};
};
- "@lerna/clean-5.1.1" = {
+ "@lerna/clean-5.1.4" = {
name = "_at_lerna_slash_clean";
packageName = "@lerna/clean";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/clean/-/clean-5.1.1.tgz";
- sha512 = "3hI6CG/pxVmbU1xZoDLtORTivAky/AdYt5biafxXGUbcMBbHekYkSf+bUojVkSLZ4hn43aiLzbMCKhHYd+vdIA==";
+ url = "https://registry.npmjs.org/@lerna/clean/-/clean-5.1.4.tgz";
+ sha512 = "4Du/r8iYSYFpo1t5J1BYivmj84n9mGebt89isVsyqMmrCqd5B2ix/Z8PYPQFMwm7k9YYbV+sZGSpRvtXkn8kIw==";
};
};
- "@lerna/cli-5.1.1" = {
+ "@lerna/cli-5.1.4" = {
name = "_at_lerna_slash_cli";
packageName = "@lerna/cli";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/cli/-/cli-5.1.1.tgz";
- sha512 = "0smc8pA12D0DUhXI32DES1F/TRleLyN+xkqOqvKGdbD2IA33O1eYVI93vAOmTmEc3ATqKiBwvxoZulqS/ybMFg==";
+ url = "https://registry.npmjs.org/@lerna/cli/-/cli-5.1.4.tgz";
+ sha512 = "ckLSNJBY4iVmu6nBhHb8UchpWGm49z9pjsAEJQ4F/VNkT6zKsmOCfv2ahkvudQ77gc0K/dH+MTvoOHsH85bpow==";
};
};
- "@lerna/collect-uncommitted-5.1.1" = {
+ "@lerna/collect-uncommitted-5.1.4" = {
name = "_at_lerna_slash_collect-uncommitted";
packageName = "@lerna/collect-uncommitted";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-5.1.1.tgz";
- sha512 = "u6cYLZhBvZEwoFbYMDwlB3ZB0RJ7ny5fXOCW3SkP0HIGKwzAciL8SPZ++9bsc4+ud6ds60FRyHH79UQLtEiPLg==";
+ url = "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-5.1.4.tgz";
+ sha512 = "CI9PXYQuewqA4ZBMRycDUSVRJmAxUeP8HEZ3aKNvAwlLxLlGCueh8qOHXZHxgkmF6eQtcEjblsReiDt8bFJZpA==";
};
};
- "@lerna/collect-updates-5.1.1" = {
+ "@lerna/collect-updates-5.1.4" = {
name = "_at_lerna_slash_collect-updates";
packageName = "@lerna/collect-updates";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-5.1.1.tgz";
- sha512 = "JBxE5vP9HT2EXd/eggu9nmLSAgSnYFXviz25XjaDqSqljnEW0u1NRAcsETIWAllJ0TaTctsqA+jRDXLWhfEtfQ==";
+ url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-5.1.4.tgz";
+ sha512 = "P1zlaZ0QkKIjbU3o7hjd4zcxzti1ndS4+eQNmlxZP3IcmlJ4+Ne+VxGeaACsjzPPBqSBWX1xcyMFLALH/Jo2CA==";
};
};
- "@lerna/command-5.1.1" = {
+ "@lerna/command-5.1.4" = {
name = "_at_lerna_slash_command";
packageName = "@lerna/command";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/command/-/command-5.1.1.tgz";
- sha512 = "q59dISdpE6a4/iQn6DGhqVefqkgs2gRcf7ehfJ6Yg41CugqAS0n6CdeTboqFIf2/O9naPKd71t0QBd3/4HXd4A==";
+ url = "https://registry.npmjs.org/@lerna/command/-/command-5.1.4.tgz";
+ sha512 = "S/3oIagN9/ntuGtljSxHu4liB9e9YFWsq/xZOR8YoqROJENv5G5zyAmHjXq90AR/tGmLvufzFliBfEIG9CywFA==";
};
};
- "@lerna/conventional-commits-5.1.1" = {
+ "@lerna/conventional-commits-5.1.4" = {
name = "_at_lerna_slash_conventional-commits";
packageName = "@lerna/conventional-commits";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-5.1.1.tgz";
- sha512 = "VL2ppoKA5XKrCwF6U7nhnGWM9PNFrXWjetC7Okd7sjpDt33GaTsida1n7owXMTJrVolHZweHHWypROzy+LUTtw==";
+ url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-5.1.4.tgz";
+ sha512 = "0v0exYOH9cJTNpKggqAw7vHVLlPjqO6Y20PUg44F3GOEjd54VIGDqu+MkVhflqvUftzZjmcUHDUGHVP+8dFBNw==";
};
};
- "@lerna/create-5.1.1" = {
+ "@lerna/create-5.1.4" = {
name = "_at_lerna_slash_create";
packageName = "@lerna/create";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/create/-/create-5.1.1.tgz";
- sha512 = "nGtFCd16xswCupIxP+3ecHeU3O2+hkh0ghYMBZZWxC1mU/LFWKNa5Ofc2tWFiXhFqADgLCxaBuqaxW/sYq4JAA==";
+ url = "https://registry.npmjs.org/@lerna/create/-/create-5.1.4.tgz";
+ sha512 = "UPR5EnFg0WzXiRIKl+MGHH3hBB6s1xkLDJNLGzac5Ztry/ibLDhl47wYoYcToiQ3/y3/3751WLJErF+A52mCyw==";
};
};
- "@lerna/create-symlink-5.1.1" = {
+ "@lerna/create-symlink-5.1.4" = {
name = "_at_lerna_slash_create-symlink";
packageName = "@lerna/create-symlink";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-5.1.1.tgz";
- sha512 = "QyLlXDx0AuN/INXhJxfOHX+a0RaJwCuKbcWv7rqXoVSofDYBYE5EXEx2kn1d4BZg2ozQtfqhNzzKKHU2IyPAKw==";
+ url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-5.1.4.tgz";
+ sha512 = "VTTuCgM5gXk0frAFxfVQqfX9QxXKz6TKpKsHcC39BAR3aiSUW8vqRImbLvaFtKpnEMW0HshDfuzp6rRkaiyWYw==";
};
};
- "@lerna/describe-ref-5.1.1" = {
+ "@lerna/describe-ref-5.1.4" = {
name = "_at_lerna_slash_describe-ref";
packageName = "@lerna/describe-ref";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-5.1.1.tgz";
- sha512 = "bxNZiH2JK4uCnuUmJUcLdZFAR8NEXPCf3oxHpGzSGjr1gSE43ZPsZs5Hz9/46CEvSA+z4p1MeQs2KRTR1Wa0oQ==";
+ url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-5.1.4.tgz";
+ sha512 = "ztLWLIyrHPxVhs8yfVpCDIw2st5c246KfoTqjEX8N6s8v0dLs3vfCKCM70ej6lBNkwqBXSilgHrd3AkGq3kq6Q==";
};
};
- "@lerna/diff-5.1.1" = {
+ "@lerna/diff-5.1.4" = {
name = "_at_lerna_slash_diff";
packageName = "@lerna/diff";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/diff/-/diff-5.1.1.tgz";
- sha512 = "pwc5hAk6l3Z+nfpRLnijbTl5gN0hdCWM9YRWRxnjum05GoRwFveqMJRSeznDYl05JI7kYBtI/l3lj/5Hf1TzCw==";
+ url = "https://registry.npmjs.org/@lerna/diff/-/diff-5.1.4.tgz";
+ sha512 = "o5chvMHcKQS4zkdGX7LCaMgNn0flrG9OEiGt8DCIzRUa6aWJAlE2oZyOj+VsiUxzaZJxm2oV+GkISQYRJPlPug==";
};
};
- "@lerna/exec-5.1.1" = {
+ "@lerna/exec-5.1.4" = {
name = "_at_lerna_slash_exec";
packageName = "@lerna/exec";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/exec/-/exec-5.1.1.tgz";
- sha512 = "kTKquC0BfFmxXKmkwCq2uYh2ZK0QRa7bQeIRJH8MON8T82D+mU9FHH8UUObx6Aa6sl9lwg04TVnEoUbOJjZxvg==";
+ url = "https://registry.npmjs.org/@lerna/exec/-/exec-5.1.4.tgz";
+ sha512 = "6vn1UCxJZTTt90WlWItI05yj4xaNOShgIl5Yi9mx1Ex6nVS32mmTOqHI/+Cn4M+P0C4u1hFymd2aIEfWnmdUsA==";
};
};
- "@lerna/filter-options-5.1.1" = {
+ "@lerna/filter-options-5.1.4" = {
name = "_at_lerna_slash_filter-options";
packageName = "@lerna/filter-options";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-5.1.1.tgz";
- sha512 = "yFidZ2dJF5CNjnGfXFfcvvfqE2z6hPAk5cxwukPPvoJrQ3O4ebymgGNlRSziCM/D7N+Xm9byj5P0ogaIHCZ9iw==";
+ url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-5.1.4.tgz";
+ sha512 = "a6hLVZOb7awjI9Tk5hx90BB6GZz59npBRQN0kSG6drV1H+vi+wU7ee6OZ5EMHQgnzdZ6OjZQRHlWCCTXyNdKgQ==";
};
};
- "@lerna/filter-packages-5.1.1" = {
+ "@lerna/filter-packages-5.1.4" = {
name = "_at_lerna_slash_filter-packages";
packageName = "@lerna/filter-packages";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-5.1.1.tgz";
- sha512 = "AekgZk72hPiOBg+xVx3OJK+6wdHINBJSkQxOQ9DjVzIAdXDkFREE6JvF6fmCzX0QbyFaqvTXJ+Yl9TXoav+R4g==";
+ url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-5.1.4.tgz";
+ sha512 = "a+ThrgYyGrTfBZUMfi/WvcqX3Ce6JaMZjTYoNAmKpHYNZFRqdmgOT1fFLLF+/y62XGqCf0wo50xRYNg0hIAf3Q==";
};
};
- "@lerna/get-npm-exec-opts-5.1.1" = {
+ "@lerna/get-npm-exec-opts-5.1.4" = {
name = "_at_lerna_slash_get-npm-exec-opts";
packageName = "@lerna/get-npm-exec-opts";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-5.1.1.tgz";
- sha512 = "c2DpM4ONDJ54AQ/caONF832APkDJf/VgRjlt9/fTNxn9CB4+bsB631MiV7F+qisHFk2KNAssuWn73B7rVkNDGQ==";
+ url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-5.1.4.tgz";
+ sha512 = "A+cNgTWWQOcNGWz9wj40/NWK46v8TtTAmXuEPfzDruv6VdmXEVIuq7SCeUPj9+aRxMQXVCil0/Vyo2z6R9TDLw==";
};
};
- "@lerna/get-packed-5.1.1" = {
+ "@lerna/get-packed-5.1.4" = {
name = "_at_lerna_slash_get-packed";
packageName = "@lerna/get-packed";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-5.1.1.tgz";
- sha512 = "QWeOAoB5GGWnDkXtIcme8X1bHhkxOXw42UNp4h+wpXc8JzKiBdWcUVcLhKvS4fCmsRtq202UB6hPR+lYvCDz8w==";
+ url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-5.1.4.tgz";
+ sha512 = "JD9U4Sp7Dpt3nUdXAo5f9SIXK2QsBaguChCZ8VTAl3eb7j0o7nrHYoh1eAa8rDT2L9+AxcUFDMi/wDdCotlJmA==";
};
};
- "@lerna/github-client-5.1.1" = {
+ "@lerna/github-client-5.1.4" = {
name = "_at_lerna_slash_github-client";
packageName = "@lerna/github-client";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-5.1.1.tgz";
- sha512 = "1kU/S9B/AleUetbRFQr+8xQNVXsOQp4ya/L2R7/3ALRmWfCDAtAKzGdtn0YtcPGEvWPb0xNgx9TeGQOj5nwDjw==";
+ url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-5.1.4.tgz";
+ sha512 = "VAaH9ycnGVsaGWM5uRKvd0oXlOERHOEOwxXLaCnR1mA7k5490B5jTlwhSWYdA4s40CF9AOdIVNgBhP+T7MlcPw==";
};
};
- "@lerna/gitlab-client-5.1.1" = {
+ "@lerna/gitlab-client-5.1.4" = {
name = "_at_lerna_slash_gitlab-client";
packageName = "@lerna/gitlab-client";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/gitlab-client/-/gitlab-client-5.1.1.tgz";
- sha512 = "tuy81UW2JhG/wnjiTV20kI8q3RlCHkOrYyiynnd4RPOX5i6DwG3/BGwt5FJ2avFvi9+AkalU1vIKPSqwwj9xTA==";
+ url = "https://registry.npmjs.org/@lerna/gitlab-client/-/gitlab-client-5.1.4.tgz";
+ sha512 = "F0Pa6Cv6TE0gbhuHR2gVVwdzstqePMZhTNcVY5So3YJrb1ppuUH/4cVXhRcEOj16QuWJ6yysxb7mj8tY4Zv0Bw==";
};
};
- "@lerna/global-options-5.1.1" = {
+ "@lerna/global-options-5.1.4" = {
name = "_at_lerna_slash_global-options";
packageName = "@lerna/global-options";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-5.1.1.tgz";
- sha512 = "jKLqwiS3EwNbmMu5HbWciModK6/5FyxeSwENVIqPLplWIkAMbSNWjXa9BxNDzvsSU0G6TPpQmfgZ3ZS1bMamyA==";
+ url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-5.1.4.tgz";
+ sha512 = "gs6y97tomIuyYdDr9uKQ5B5AR9m6wVft6lrxWlGlLo0prz39tx7fJ9wT2IpJ9iALCadkQW6g7XFtddwfm5VRhg==";
};
};
- "@lerna/has-npm-version-5.1.1" = {
+ "@lerna/has-npm-version-5.1.4" = {
name = "_at_lerna_slash_has-npm-version";
packageName = "@lerna/has-npm-version";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-5.1.1.tgz";
- sha512 = "MkDhYbdNugXUE7bEY8j2DGE1RUg/SJR613b1HPUTdEWpPg13PupsTKqiKOzoURAzUWN6tZoOR7OAxbvR3w8jnw==";
+ url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-5.1.4.tgz";
+ sha512 = "U81b1nvqwF8PGyHib8/AWeGbaNipGdqXZsRO5g3ob9A5X57GXJ86cQVLejLi+znY4SmQcHladC4TotJkpNF1Ag==";
};
};
- "@lerna/import-5.1.1" = {
+ "@lerna/import-5.1.4" = {
name = "_at_lerna_slash_import";
packageName = "@lerna/import";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/import/-/import-5.1.1.tgz";
- sha512 = "VUgZn7QdsAYy8Joe6ZT8hKANxizzU0aUH93Pfg2YfjohxvyTlmx5TCSgnZ39P2jwmL2hHyI+Bs3t+9NOYPfoWg==";
+ url = "https://registry.npmjs.org/@lerna/import/-/import-5.1.4.tgz";
+ sha512 = "Kswe1NKJDUDlO/gbkFcurzaYlaj/fXlapHTaih9LmQDiVPOE9GphD5qnABCV0c4CqeSnCzRujT5BUjjL5z7viA==";
};
};
- "@lerna/info-5.1.1" = {
+ "@lerna/info-5.1.4" = {
name = "_at_lerna_slash_info";
packageName = "@lerna/info";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/info/-/info-5.1.1.tgz";
- sha512 = "w2g369KYpPOKFkqZ5p2I76VnQMmOnMnAfWfy7YhNIaomYN0sUZQYA7QPu8bcEj2qKFieddx/UW497m7hY6CXsg==";
+ url = "https://registry.npmjs.org/@lerna/info/-/info-5.1.4.tgz";
+ sha512 = "9OMdNtmDMKLwfX+aZk9nHLfksYXuU7IcIiVJ9dR7gYx1PoKjXvTpd/+hd7t/tmElM21kmPVxQBu02L3KmXw+hQ==";
};
};
- "@lerna/init-5.1.1" = {
+ "@lerna/init-5.1.4" = {
name = "_at_lerna_slash_init";
packageName = "@lerna/init";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/init/-/init-5.1.1.tgz";
- sha512 = "j7qgWV2zmYL+LPZ4Tqc9PO0qHUS/ZugHqVPzrnEBhlQz0ye4kPqWg2QCWId8Xmoiu6U5nGuOJINME7T8rySrDQ==";
+ url = "https://registry.npmjs.org/@lerna/init/-/init-5.1.4.tgz";
+ sha512 = "OdI5iWYT1JcB6f5mjmCjgpkOrpDdSSDzmSi34kp/NP1FkbskDoMffVBTQiV8/h6zAg3jk1+aLQYLMuR5E6nIwA==";
};
};
- "@lerna/link-5.1.1" = {
+ "@lerna/link-5.1.4" = {
name = "_at_lerna_slash_link";
packageName = "@lerna/link";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/link/-/link-5.1.1.tgz";
- sha512 = "31qGweCG51ZAp8u2+o4fkqGWS2pFFDmzISjkE2tkrrgb2ypjuIDQOxF38+2gdBLbWBYdZxwcBePp5/fk20cStg==";
+ url = "https://registry.npmjs.org/@lerna/link/-/link-5.1.4.tgz";
+ sha512 = "j73MW+vam6e8XdwyQGeHR9X7TUmgvLG0wV1vDLjSyrhk/Q5oFo0RTRgfDJqR4tCtRnv0vujvw5oDXfSbBmg67g==";
};
};
- "@lerna/list-5.1.1" = {
+ "@lerna/list-5.1.4" = {
name = "_at_lerna_slash_list";
packageName = "@lerna/list";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/list/-/list-5.1.1.tgz";
- sha512 = "iCinA5RuG85CY/6SCsUXAcFCDD1uauh/8Bb96qDo/Q3TZyoQSW6Gu/O6luuUXlhWGLzqlNcP+cr4uykJpGvlkQ==";
+ url = "https://registry.npmjs.org/@lerna/list/-/list-5.1.4.tgz";
+ sha512 = "D7FAUik18s5FtHnBoPzodR8LUvH5b0a/ziV8ICaKWZ98H4w9qpNsQtBe0O+7DwUuqLKYpycst5tY5WVGnNwuNA==";
};
};
- "@lerna/listable-5.1.1" = {
+ "@lerna/listable-5.1.4" = {
name = "_at_lerna_slash_listable";
packageName = "@lerna/listable";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/listable/-/listable-5.1.1.tgz";
- sha512 = "BpzYhM/9kPx13hsLdJOgNrcW1E2/WeADB0zDO1zt1ffSKWEQnsupvVd+isax7O0sAFV/ZJLXiEDEjPeg8TVvJQ==";
+ url = "https://registry.npmjs.org/@lerna/listable/-/listable-5.1.4.tgz";
+ sha512 = "grGLrffBNX38l5mzZgkv4xE9UcAAKBi1s+LgloI3rusgTdE/B8gvCOYMqLf9V08iojs7Ke2xPf0whJmbEeK/qA==";
};
};
- "@lerna/log-packed-5.1.1" = {
+ "@lerna/log-packed-5.1.4" = {
name = "_at_lerna_slash_log-packed";
packageName = "@lerna/log-packed";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-5.1.1.tgz";
- sha512 = "wGDcal05EZh6/JCnIiPEHJmZuwizqUn5ReC5wN8hEdGc17A59JXiqYSG7h+Hj52evN2ZgDCdLj8n59paEvYhlQ==";
+ url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-5.1.4.tgz";
+ sha512 = "qJlWMVjc/uM1I7AWqrOPeBLVZy9YExi/QqUyvmkb8mmsPXnW7rxIJQdYgRifS5aFNTbX/MtG8Q65Rr4syiVnSA==";
};
};
- "@lerna/npm-conf-5.1.1" = {
+ "@lerna/npm-conf-5.1.4" = {
name = "_at_lerna_slash_npm-conf";
packageName = "@lerna/npm-conf";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-5.1.1.tgz";
- sha512 = "cHc26cTvXAFJj5Y6ScBYzVpJHbYxcIA0rE+bh8VfqR4UeJMll2BiFmCycIZYUnL7p27sVN05/eifkUTG6tAORg==";
+ url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-5.1.4.tgz";
+ sha512 = "kNbw2jO0HD9P4+nS8RIFub549BiQYG/sdFUuNWu7cCjErB+g/5ayfE6Mn5HyiRPMYXVw73iR8IzvkCCDWEOB7Q==";
};
};
- "@lerna/npm-dist-tag-5.1.1" = {
+ "@lerna/npm-dist-tag-5.1.4" = {
name = "_at_lerna_slash_npm-dist-tag";
packageName = "@lerna/npm-dist-tag";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-5.1.1.tgz";
- sha512 = "kmGS0uH1YZ4XDj52HKxDj863Vim7CNUy1R92/rpKyv97fkALR+DDA9XyWDl/YOf4JYyVrnQqA53CKWKuZO3jMg==";
+ url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-5.1.4.tgz";
+ sha512 = "9q5N3iy8KGFBsyRBmNEftj8ACeCXNh2JUBqk/wYGiB0WH0oVf0UY/uo6VUy8dZjyJ9Q0eZa1ONtFHIg3QrzGDA==";
};
};
- "@lerna/npm-install-5.1.1" = {
+ "@lerna/npm-install-5.1.4" = {
name = "_at_lerna_slash_npm-install";
packageName = "@lerna/npm-install";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-5.1.1.tgz";
- sha512 = "HXyODWaes0Wvt6Ni8Cpjvgj7VAbUEWv+MAwCZixDwKWFY6LCjY0uG4DYmMfRM5miCfP5LRdK4fDcwrF3+9bzcg==";
+ url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-5.1.4.tgz";
+ sha512 = "DbbUK2Zy7ZBpkHimlFKf7XbGzBsoPfqzf0i9hIYBHmND9YWSgIgVFJcyRH7E6UKpr4wRChW4h6xEV81jKykB7w==";
};
};
- "@lerna/npm-publish-5.1.1" = {
+ "@lerna/npm-publish-5.1.4" = {
name = "_at_lerna_slash_npm-publish";
packageName = "@lerna/npm-publish";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-5.1.1.tgz";
- sha512 = "zt+g+/Gkr8OlF8vjRd8y1UuoA4qNeZNi/JDzL3OsbiRja2SX85hU8veTGoEcJOeJowl/x+L+ENfp6E+FTZiToQ==";
+ url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-5.1.4.tgz";
+ sha512 = "MXtd2cFN+oJMxj9m1fXYAo+KE2BzO84Ukt3uAhQb1cXU01ZCwqGl/lQRWw5vI88emrKs0akx3d6E77PFpX9rpw==";
};
};
- "@lerna/npm-run-script-5.1.1" = {
+ "@lerna/npm-run-script-5.1.4" = {
name = "_at_lerna_slash_npm-run-script";
packageName = "@lerna/npm-run-script";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-5.1.1.tgz";
- sha512 = "g36mFksO+5gh3xGh3N+Ni92rWBJ8bI177bhs//ot3rivyHgUKauBvR6XbWEyOYCdmnPWvMt9dlYSuzTdn2vCxg==";
+ url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-5.1.4.tgz";
+ sha512 = "vw2G69lFmFzdX553GidE66QgCZ3cGyxoOvnpCdvZ1n9AS5ZwZSiL8Ms6N3Vj+AOhESFZmFZkzIVhtpX5/xNzLg==";
};
};
- "@lerna/otplease-5.1.1" = {
+ "@lerna/otplease-5.1.4" = {
name = "_at_lerna_slash_otplease";
packageName = "@lerna/otplease";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/otplease/-/otplease-5.1.1.tgz";
- sha512 = "xCGGmB6iInFecvl+/n0Yf164rrEa8nHdbbcmcl5coe9ngu878SQKaUGSuI7J15cxy3z/yYrPjw0eSAcFCOzAbw==";
+ url = "https://registry.npmjs.org/@lerna/otplease/-/otplease-5.1.4.tgz";
+ sha512 = "t3qKC55D7rCacNTsqQwn25XxDRQXgRHYWS0gqn2ch+dTwXOI61Uto9okVhgn2ZfZVydJ3sjnktOsPeSXhQRQew==";
};
};
- "@lerna/output-5.1.1" = {
+ "@lerna/output-5.1.4" = {
name = "_at_lerna_slash_output";
packageName = "@lerna/output";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/output/-/output-5.1.1.tgz";
- sha512 = "QHWk9l2SAtWFyImcNrcdy5m3Ojmwvt27G3YTGT1tmMnJCNHwCDl4HKO8PBnOAxYbglujpFlXzseNHc46JSJ6xQ==";
+ url = "https://registry.npmjs.org/@lerna/output/-/output-5.1.4.tgz";
+ sha512 = "E9nLEcV5GJbTKJd/d+cvU54CIzQqoU2rJAeXeyHTufbjgCTPk4I8uDNHmG7uJ+aPrif6PPBt1IIw+w5UnStfdw==";
};
};
- "@lerna/pack-directory-5.1.1" = {
+ "@lerna/pack-directory-5.1.4" = {
name = "_at_lerna_slash_pack-directory";
packageName = "@lerna/pack-directory";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-5.1.1.tgz";
- sha512 = "kMz9AQJyl9tz2RNWeUR04O2oGirS+1l3tBVV0RDdpC2wOYAOSlFp3eDgbOsKdw1vwau+J7JgfBpmiYnPwIUF9w==";
+ url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-5.1.4.tgz";
+ sha512 = "TsltQrbwC/bPwQbL5i7WCMNM4Chl8+iqzawRZbILfjYpt3UK9xSV2tWfc9QtbmRBETvcFz/UMKQQDz+LMWN9jw==";
};
};
- "@lerna/package-5.1.1" = {
+ "@lerna/package-5.1.4" = {
name = "_at_lerna_slash_package";
packageName = "@lerna/package";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/package/-/package-5.1.1.tgz";
- sha512 = "1Re5wMPux4kTzuCI4WSSXaN9zERdhFoU/hHOoyDYjAnNsWy8ee9qkLEEGl8p1IVW8YSJTDDHS0RA9rg35Vd8lA==";
+ url = "https://registry.npmjs.org/@lerna/package/-/package-5.1.4.tgz";
+ sha512 = "L0zsxslJZ+swkG/KLU3TQHmWPR0hf0eLIdOROyA9Nxvuo8C/702ddYZcuEYcz9t/jOuSgSB2s90iK2oTIncNbw==";
};
};
- "@lerna/package-graph-5.1.1" = {
+ "@lerna/package-graph-5.1.4" = {
name = "_at_lerna_slash_package-graph";
packageName = "@lerna/package-graph";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-5.1.1.tgz";
- sha512 = "2/CFYmiDbHjYPsQcT3yG8S0lG19FPIh8BqOy+cuOKNU0LZDEfI4xhQpGaZ1N6pxUjDz3CyaslwKWv/Ef5ZO8MA==";
+ url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-5.1.4.tgz";
+ sha512 = "dP1gLcrqou5/8zef7u5ne4GTslNXULjpi3dDiljohKNR4XelsC4lkkF9m1Uzn9E1nAphHRhWXrRq40kqxmdYXg==";
};
};
- "@lerna/prerelease-id-from-version-5.1.1" = {
+ "@lerna/prerelease-id-from-version-5.1.4" = {
name = "_at_lerna_slash_prerelease-id-from-version";
packageName = "@lerna/prerelease-id-from-version";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-5.1.1.tgz";
- sha512 = "z4h1oP5PeuZV7+b4BSxm43DeUeE1DCZ7pPhTlHRAZRma2TBOfy2zzfEltWQZhOrrvkO67MR16W8x0xvwZV5odA==";
+ url = "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-5.1.4.tgz";
+ sha512 = "kDcXKKFD6Ww/FinLEvsY1P3aIiuVLyonkttvfKJTJvm3ymz7/fBKz8GotFXuONVC1xSIK9Nrk3jGYs6ZGoha+w==";
};
};
- "@lerna/profiler-5.1.1" = {
+ "@lerna/profiler-5.1.4" = {
name = "_at_lerna_slash_profiler";
packageName = "@lerna/profiler";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/profiler/-/profiler-5.1.1.tgz";
- sha512 = "K93NXEvGIQNGcA1DGcB7W+Ff4GUzXkG5JlNRCDl/WUoaePL43Y5BXOO9yC/Qod7HR9joJkvC4nF9BTN68EL0lw==";
+ url = "https://registry.npmjs.org/@lerna/profiler/-/profiler-5.1.4.tgz";
+ sha512 = "JLkS90+CSmi85v3SlJc5Wjk73MHmIviqtL3fM/Z6clBLbsRPkbBBfSwXKp7O281knF6E2UNTrWOtEG7b6wG3TQ==";
};
};
- "@lerna/project-5.1.1" = {
+ "@lerna/project-5.1.4" = {
name = "_at_lerna_slash_project";
packageName = "@lerna/project";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/project/-/project-5.1.1.tgz";
- sha512 = "3WkJUOMWNquYshA7wFW9vMHJK8DaIOFmS7fs/XYnWGXWKEt6Mrc/+BqVDweUDK4gi/mT2nuwSH4GEB/TGNuSBg==";
+ url = "https://registry.npmjs.org/@lerna/project/-/project-5.1.4.tgz";
+ sha512 = "k0z3w45t746uAUkN+jY/jF+/BqHodGFYaUfM0DTDOGUWC8tXzxuqk3bchShp6Wct2gwNQWbtWHl50Jhhw5PC5g==";
};
};
- "@lerna/prompt-5.1.1" = {
+ "@lerna/prompt-5.1.4" = {
name = "_at_lerna_slash_prompt";
packageName = "@lerna/prompt";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-5.1.1.tgz";
- sha512 = "+T0zgPTPCeFT81f8IGhyEH6M8y0zrgTBN+GyT0doKXPYYvL2d+zgJMv2BAerg1Iw1q0QAQhkTAGDem+SgF4bRA==";
+ url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-5.1.4.tgz";
+ sha512 = "AiE8NIzh+x2+F0t96M+rfwLtKzBNXjQEWXtBfEcA1eRqanMWUr6ejfmdkoEzXVrMzyY/ugPdWQYbGCI00iF7Tg==";
};
};
- "@lerna/publish-5.1.1" = {
+ "@lerna/publish-5.1.4" = {
name = "_at_lerna_slash_publish";
packageName = "@lerna/publish";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/publish/-/publish-5.1.1.tgz";
- sha512 = "3HGQuXWjLKr6mpjsbRrftDhlMHS8IeAA8RMW7shSPWVKl28R9HEXBoI6IRYUfAb8shtS47NFeTX+hxPUDF2cbg==";
+ url = "https://registry.npmjs.org/@lerna/publish/-/publish-5.1.4.tgz";
+ sha512 = "hbFAwOlyUR4AUBd7qTQXXVKgaxTS4Mz4Kkjxz8g7jtqo+T0KvU3JbfwDqxOiCwcDk+qkrBbkwbvc27jcObSwkw==";
};
};
- "@lerna/pulse-till-done-5.1.1" = {
+ "@lerna/pulse-till-done-5.1.4" = {
name = "_at_lerna_slash_pulse-till-done";
packageName = "@lerna/pulse-till-done";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-5.1.1.tgz";
- sha512 = "Q/efE5vkUhdKYJTH5QV3uSdZwUEIrbSa6H/wDJu+v9KqR1vdXecYK3HNjo7iQnddqJV3EsLSE9CEKEkEboRUdQ==";
+ url = "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-5.1.4.tgz";
+ sha512 = "zFPzv6cY0OcqtcR91ueZqd+ulTLE4vPk9l6iPAfefgqh6w0E6hSmG6J9RmYE3gaMHSFJdvYHb/yyTPLF32J9lg==";
};
};
- "@lerna/query-graph-5.1.1" = {
+ "@lerna/query-graph-5.1.4" = {
name = "_at_lerna_slash_query-graph";
packageName = "@lerna/query-graph";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-5.1.1.tgz";
- sha512 = "g1BWC6ckx0Prs5h54hfD7/dyALE1icE7Zi2aUkJDbUhsZoWjk+Vb9Pir6GU4HF8kzBuracz3nwq7B7GV1OY0Zg==";
+ url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-5.1.4.tgz";
+ sha512 = "G8DYNqp5ISbbMjEJhGst1GHk59zO18IG9oaVSK14M7iF3qCLtg0iJ1Do4LDNpda3EF8PrLOx2mrNM5MBcGMjEg==";
};
};
- "@lerna/resolve-symlink-5.1.1" = {
+ "@lerna/resolve-symlink-5.1.4" = {
name = "_at_lerna_slash_resolve-symlink";
packageName = "@lerna/resolve-symlink";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-5.1.1.tgz";
- sha512 = "a6ZV8ysdP1ePiUG8sfcrTOrMbM9EbHO9terFVMxop7m7pekLDeOmMfWl9iGdqT36xS7S9Dlg9r+/2UsWIqH+aA==";
+ url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-5.1.4.tgz";
+ sha512 = "hpnaX5tznAtbQXlyc92kJiywdTnnbCf6wihSZwDiVnVgXuHJ3LvmjN677h9A0jobY6KdTT+wIoAHpJuZHj60vQ==";
};
};
- "@lerna/rimraf-dir-5.1.1" = {
+ "@lerna/rimraf-dir-5.1.4" = {
name = "_at_lerna_slash_rimraf-dir";
packageName = "@lerna/rimraf-dir";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-5.1.1.tgz";
- sha512 = "9DtL728viAQnthKjSC/lmY/bgIDlZnBc+YHFy+f+8DEJaMP+2W8PaYsoEKPLAE/JRCmmaRi9rDQ7du373evJcg==";
+ url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-5.1.4.tgz";
+ sha512 = "WvHm4gE1/HWbI4gCjJw3clPT+FRq2Ob9I9EDbfw4c307MNT4kW4bJU2mt0nyv/uwYhUkTG+GQVrlt+Dtcif77g==";
};
};
- "@lerna/run-5.1.1" = {
+ "@lerna/run-5.1.4" = {
name = "_at_lerna_slash_run";
packageName = "@lerna/run";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/run/-/run-5.1.1.tgz";
- sha512 = "d/N8/XzDab5JnNCNJW444AArtZ9/43NZHrAnhzbs6jHajmVx2lA1WV5tD93khd2Z2NnIBY2i7m9X/SIkyksfbA==";
+ url = "https://registry.npmjs.org/@lerna/run/-/run-5.1.4.tgz";
+ sha512 = "iaTioOF66z02Y9ml/Ba0ePpXOwZ+BkODcNXrJbyW8WhraL0fSjyno0FspO1Eu0nG4JMtgCsoEzHNphsk7Wg+7A==";
};
};
- "@lerna/run-lifecycle-5.1.1" = {
+ "@lerna/run-lifecycle-5.1.4" = {
name = "_at_lerna_slash_run-lifecycle";
packageName = "@lerna/run-lifecycle";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-5.1.1.tgz";
- sha512 = "IZkd0U6uXysPrmPJrEtxAlGj3ytDRpSLNATVd5GCAKHdGQJ8ipQLDSIlNX5Jwlnvvkc/WpCg8FWgFK9z3piopw==";
+ url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-5.1.4.tgz";
+ sha512 = "ubmqi1ixebBHSTYS0oK8MoqBoJE7UDrXWTWsv84UrXiPutTffLR8ZQJKlMEcetQVzX9qbjpKbzc+jQWXPWid2A==";
};
};
- "@lerna/run-topologically-5.1.1" = {
+ "@lerna/run-topologically-5.1.4" = {
name = "_at_lerna_slash_run-topologically";
packageName = "@lerna/run-topologically";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-5.1.1.tgz";
- sha512 = "BQCjuKDB264dFakIpNT+FQPzRhrkMhyVgyeK55vZEXrJK/bPDx3XJ4ES5e54gvDpHEwr1MvA6J25ce8OVYJEIQ==";
+ url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-5.1.4.tgz";
+ sha512 = "MckWfLu/xuRtaThdUgrJC2naumv2LOIiMoJfxCdYpiCrIgq5YrwqOxjQ0awHqQhkvFZ5G91ucBcBEIMsOou1iw==";
};
};
- "@lerna/symlink-binary-5.1.1" = {
+ "@lerna/symlink-binary-5.1.4" = {
name = "_at_lerna_slash_symlink-binary";
packageName = "@lerna/symlink-binary";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-5.1.1.tgz";
- sha512 = "GrLj9zhA1e811o9F2pLKXDuhcdx1j3HCh/mmibyHMM9ZpCiwdKUqXDZdH1lVmbGa0sxzytjdsNSvJqRd+dyJRA==";
+ url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-5.1.4.tgz";
+ sha512 = "SNjHxCNTCD0Xfj3CNBTG+3ut4aDAVaq+SrB2ckFNmZ5Z9yFdnX6aP+PBzLD/0q5hj18lGlaJ8iZjD/ubbrgFCA==";
};
};
- "@lerna/symlink-dependencies-5.1.1" = {
+ "@lerna/symlink-dependencies-5.1.4" = {
name = "_at_lerna_slash_symlink-dependencies";
packageName = "@lerna/symlink-dependencies";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-5.1.1.tgz";
- sha512 = "IoECQdh0J2JkkEa0ozg7TO3+uTX6jSEoVLoQ9sBW1Qr8rm14jcjjg8LiuV9XPEXdonVU9SJmo2G3U+6bSx1SXA==";
+ url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-5.1.4.tgz";
+ sha512 = "SuzylyNs1R5bVRqSCwfbQLdDP83RX8ncQxOy2SSSrScwkzdBCDqDPh4haeADsq2+RoOQBItn1PDfzUCNAWomDA==";
};
};
- "@lerna/temp-write-5.1.0" = {
+ "@lerna/temp-write-5.1.4" = {
name = "_at_lerna_slash_temp-write";
packageName = "@lerna/temp-write";
- version = "5.1.0";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/temp-write/-/temp-write-5.1.0.tgz";
- sha512 = "IvtYcrnWISEe9nBjhvq+o1mfn85Kup6rd+/PHb3jFmxx7E6ON4BnuqGPOOjmEjboMIRaopWQrkuCoIVotP+sDw==";
+ url = "https://registry.npmjs.org/@lerna/temp-write/-/temp-write-5.1.4.tgz";
+ sha512 = "f+6+ud87pyitM9zAq7GBhB7uoHTcgLJvR3YGv5sNja4jIl3+zdKPDcyxzVyQb38knuRSkGM8NjYOWi4zwcMaGw==";
};
};
- "@lerna/timer-5.1.1" = {
+ "@lerna/timer-5.1.4" = {
name = "_at_lerna_slash_timer";
packageName = "@lerna/timer";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/timer/-/timer-5.1.1.tgz";
- sha512 = "c+v2xoxVpKcgjJEtiEw/J3lrBCsVxhQL9lrE1+emoV/GcxOxk6rWQKIJ6WQOhuaR/BsoHBEKF8C+xRlX/qt29g==";
+ url = "https://registry.npmjs.org/@lerna/timer/-/timer-5.1.4.tgz";
+ sha512 = "fhQtqkLxNexPWzhI1WAxZnHIBM8VhChvUJu503u1Rmp2JxhXbTE4Txnu1gPvqlDjdoE6ck0vN5icmfMVRwKc8g==";
};
};
- "@lerna/validation-error-5.1.1" = {
+ "@lerna/validation-error-5.1.4" = {
name = "_at_lerna_slash_validation-error";
packageName = "@lerna/validation-error";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-5.1.1.tgz";
- sha512 = "6mwvlaMxu03ydKCvKeK8XvbCDCHM0UURvJpgtVo/0ghu8kQOICHo3qwkJNf7lzbUIPojTLrdfWNCZ5M4CT43Dg==";
+ url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-5.1.4.tgz";
+ sha512 = "wys9Fv/bUy7sYXOK9t+V3XSyEHK5tUXwY22nfIDYu416WcSkkE4DI8Q2nTv4nYYOmG2Y7IOhaSenbsPLQ0VqtQ==";
};
};
- "@lerna/version-5.1.1" = {
+ "@lerna/version-5.1.4" = {
name = "_at_lerna_slash_version";
packageName = "@lerna/version";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/version/-/version-5.1.1.tgz";
- sha512 = "kUsqFYGKNKYWXfMu+q6EJhWhxvk41ihQbxpZhC4pPWwy30xetjNc2i+0O+QTlEaaFabtAUOCLYWG1V1RoL5N4A==";
+ url = "https://registry.npmjs.org/@lerna/version/-/version-5.1.4.tgz";
+ sha512 = "cYgm1SNdiK129JoWI8WMwjsxaIyeAC1gCaToWk36Tw+BCF3PbkdoTKdneDmJ+7qbX1QrzxsgHTcjwIt4lZPEqQ==";
};
};
- "@lerna/write-log-file-5.1.1" = {
+ "@lerna/write-log-file-5.1.4" = {
name = "_at_lerna_slash_write-log-file";
packageName = "@lerna/write-log-file";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-5.1.1.tgz";
- sha512 = "cOfGlnZlFhP/5PZABJ98bI9UgCIHNJtlKyO8T24Uz647XZMoX/fwD+E/DVVuVyxjv7vYDvCrrX1tPYFq8ePfNA==";
+ url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-5.1.4.tgz";
+ sha512 = "ISJbkjaSKhJ4d7V90RFvuwDQFq9ZH/KN475KFJr+TBFZTwMiXuBahlq+j8/a+nItejNnuPD4/xlWuzCOuGJORQ==";
};
};
"@lezer/common-0.15.12" = {
@@ -6592,13 +6565,13 @@ let
sha512 = "0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==";
};
};
- "@octokit/openapi-types-11.2.0" = {
+ "@octokit/openapi-types-12.1.0" = {
name = "_at_octokit_slash_openapi-types";
packageName = "@octokit/openapi-types";
- version = "11.2.0";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-11.2.0.tgz";
- sha512 = "PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==";
+ url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-12.1.0.tgz";
+ sha512 = "kQzJh3ZUv3lDpi6M+uekMRHULvf9DlWoI1XgKN6nPeGDzkSgtkhVq1MMz3bFKQ6H6GbdC3ZqG/a6VzKhIx0VeA==";
};
};
"@octokit/plugin-enterprise-rest-6.0.1" = {
@@ -6610,13 +6583,13 @@ let
sha512 = "93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==";
};
};
- "@octokit/plugin-paginate-rest-2.17.0" = {
+ "@octokit/plugin-paginate-rest-2.18.0" = {
name = "_at_octokit_slash_plugin-paginate-rest";
packageName = "@octokit/plugin-paginate-rest";
- version = "2.17.0";
+ version = "2.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.17.0.tgz";
- sha512 = "tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==";
+ url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.18.0.tgz";
+ sha512 = "n5/AzIoy5Wzp85gqzSbR+dWQDHlyHZrGijnDfLh452547Ynu0hCvszH7EfRE0eqM5ZjfkplO0k+q+P8AAIIJEA==";
};
};
"@octokit/plugin-request-log-1.0.4" = {
@@ -6628,13 +6601,13 @@ let
sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==";
};
};
- "@octokit/plugin-rest-endpoint-methods-5.13.0" = {
+ "@octokit/plugin-rest-endpoint-methods-5.14.0" = {
name = "_at_octokit_slash_plugin-rest-endpoint-methods";
packageName = "@octokit/plugin-rest-endpoint-methods";
- version = "5.13.0";
+ version = "5.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.13.0.tgz";
- sha512 = "uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==";
+ url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.14.0.tgz";
+ sha512 = "MRnMs4Dcm1OSaz/g/RLr4YY9otgysS7vN5SUkHGd7t+R8323cHsHFoEWHYPSmgUC0BieHRhvnCRWb4i3Pl+Lgg==";
};
};
"@octokit/plugin-retry-3.0.9" = {
@@ -6682,13 +6655,13 @@ let
sha512 = "gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==";
};
};
- "@octokit/types-6.34.0" = {
+ "@octokit/types-6.35.0" = {
name = "_at_octokit_slash_types";
packageName = "@octokit/types";
- version = "6.34.0";
+ version = "6.35.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/types/-/types-6.34.0.tgz";
- sha512 = "s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==";
+ url = "https://registry.npmjs.org/@octokit/types/-/types-6.35.0.tgz";
+ sha512 = "DhLfdUuv3H37u6jBDfkwamypx3HflHg29b26nbA6iVFYkAlZ5cMEtu/9pQoihGnQE5M7jJFnNo25Rr1UwQNF8Q==";
};
};
"@opencensus/core-0.0.8" = {
@@ -7132,85 +7105,85 @@ let
sha512 = "8OOWbPuxpFydpwNyKoz6d3e3O4DmxNYmMw4DXwrPSj/jyg7oa+SDtMT0/VXEhujE0HYkQPCHt4npRajkSuf99A==";
};
};
- "@parcel/css-1.9.0" = {
+ "@parcel/css-1.10.0" = {
name = "_at_parcel_slash_css";
packageName = "@parcel/css";
- version = "1.9.0";
+ version = "1.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css/-/css-1.9.0.tgz";
- sha512 = "egCetUQ1H6pgYxOIxVQ8X/YT5e8G0R8eq6aVaUHrqnZ7A8cc6FYgknl9XRmoy2Xxo9h1htrbzdaEShQ5gROwvw==";
+ url = "https://registry.npmjs.org/@parcel/css/-/css-1.10.0.tgz";
+ sha512 = "YvlUqJ3kg/HxsVvq02bTCGruQKjwPEMWEqdyhgfR3aagt+1ibmafy3m8CGYHXvhaQeNYSkMvy1D9bcddFuYTUg==";
};
};
- "@parcel/css-darwin-arm64-1.9.0" = {
+ "@parcel/css-darwin-arm64-1.10.0" = {
name = "_at_parcel_slash_css-darwin-arm64";
packageName = "@parcel/css-darwin-arm64";
- version = "1.9.0";
+ version = "1.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-darwin-arm64/-/css-darwin-arm64-1.9.0.tgz";
- sha512 = "f/guZseS2tNKtKw94LgpNTItZqdVA0mnznqPsmQaR5lSB+cM3IPrSV8cgOOpAS7Vwo9ggxuJartToxBBN+dWSw==";
+ url = "https://registry.npmjs.org/@parcel/css-darwin-arm64/-/css-darwin-arm64-1.10.0.tgz";
+ sha512 = "WMAbjUyCBrXwv3OofNk90K+G0DqZgCFRtKCg+udLXLZCiCe6yrI87ye9SC6KAVwqWp5WT27TPZTrqWJ032e3FA==";
};
};
- "@parcel/css-darwin-x64-1.9.0" = {
+ "@parcel/css-darwin-x64-1.10.0" = {
name = "_at_parcel_slash_css-darwin-x64";
packageName = "@parcel/css-darwin-x64";
- version = "1.9.0";
+ version = "1.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.9.0.tgz";
- sha512 = "4SpuwiM/4ayOgKflqSLd87XT7YwyC3wd2QuzOOkasjbe38UU+tot/87l2lQYEB538YinLdfwFQuFLDY0x9MxgA==";
+ url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.10.0.tgz";
+ sha512 = "p1JJVHOOxrhcSQMq9qlrU88Sl+VJGu8HXBpWDHRzh8aOIkqsiRx1qx9Vl3zGX7Sxnjv/xlPUknLKia8Zy1369A==";
};
};
- "@parcel/css-linux-arm-gnueabihf-1.9.0" = {
+ "@parcel/css-linux-arm-gnueabihf-1.10.0" = {
name = "_at_parcel_slash_css-linux-arm-gnueabihf";
packageName = "@parcel/css-linux-arm-gnueabihf";
- version = "1.9.0";
+ version = "1.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-linux-arm-gnueabihf/-/css-linux-arm-gnueabihf-1.9.0.tgz";
- sha512 = "KxCyX5fFvX5636Y8LSXwCxXMtIncgP7Lkw8nLsqd24C5YqMokmuOtAcHb/vQ9zQG6YiUWTv0MybqDuL7dBDfVw==";
+ url = "https://registry.npmjs.org/@parcel/css-linux-arm-gnueabihf/-/css-linux-arm-gnueabihf-1.10.0.tgz";
+ sha512 = "cUvDN+nNEdoEzZLhOqPAcjICIyEGcFCc0+zJhGKdnA9MC010aeun9ggtToFazIHzMmoF4qyxCY5IyHja8iVkmA==";
};
};
- "@parcel/css-linux-arm64-gnu-1.9.0" = {
+ "@parcel/css-linux-arm64-gnu-1.10.0" = {
name = "_at_parcel_slash_css-linux-arm64-gnu";
packageName = "@parcel/css-linux-arm64-gnu";
- version = "1.9.0";
+ version = "1.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-linux-arm64-gnu/-/css-linux-arm64-gnu-1.9.0.tgz";
- sha512 = "wZ6Gsn6l+lSuvRdfWoyr7TdY24l29eGCD8QhXcqA1ALnFI7+KOTMBJ6aV3tjWUjMw3sg5qkosMHVqlWZzvrgXw==";
+ url = "https://registry.npmjs.org/@parcel/css-linux-arm64-gnu/-/css-linux-arm64-gnu-1.10.0.tgz";
+ sha512 = "x8XEtJxgJlstAwbg1BLeYuXhUXEOxGg/BeBFPZr8Zk8dNQ1j1jR7LBk12IKgZrvr+Px1WOFY65lwabgCyFqxnQ==";
};
};
- "@parcel/css-linux-arm64-musl-1.9.0" = {
+ "@parcel/css-linux-arm64-musl-1.10.0" = {
name = "_at_parcel_slash_css-linux-arm64-musl";
packageName = "@parcel/css-linux-arm64-musl";
- version = "1.9.0";
+ version = "1.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.9.0.tgz";
- sha512 = "N6n5HhMzcNR5oXWr0Md91gKYtuDhqDlp+aGDb3VT21uSCNLOvijOUz248v/VaPoRno1BPFYlMxn0fYYTTReB3A==";
+ url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.10.0.tgz";
+ sha512 = "caBaOM+zhFYlaMB2GL327NeOkF5lbHte5XLrGByagLWanlnRRlFpapIXpuuGIGSF5uBHN2uAz/84ej5mNcdHwg==";
};
};
- "@parcel/css-linux-x64-gnu-1.9.0" = {
+ "@parcel/css-linux-x64-gnu-1.10.0" = {
name = "_at_parcel_slash_css-linux-x64-gnu";
packageName = "@parcel/css-linux-x64-gnu";
- version = "1.9.0";
+ version = "1.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-linux-x64-gnu/-/css-linux-x64-gnu-1.9.0.tgz";
- sha512 = "QufawDkaiOjsh6jcZk/dgDBPMqBtIs+LGTOgcJDM6XL4mcbDNxO6VkDANssRUgPnbG66YYy419CUWFta9aeVOg==";
+ url = "https://registry.npmjs.org/@parcel/css-linux-x64-gnu/-/css-linux-x64-gnu-1.10.0.tgz";
+ sha512 = "9JZUMB1v+Zh95K2BJdoC20vZcObqF3mPA10gM51/a44f3rhRsv/EHjzLsSqxSYtC+L7wLvW9M3SNZ2KTo0J2/A==";
};
};
- "@parcel/css-linux-x64-musl-1.9.0" = {
+ "@parcel/css-linux-x64-musl-1.10.0" = {
name = "_at_parcel_slash_css-linux-x64-musl";
packageName = "@parcel/css-linux-x64-musl";
- version = "1.9.0";
+ version = "1.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.9.0.tgz";
- sha512 = "s528buicSd83/5M5DN31JqwefZ8tqx4Jm97srkLDVBCZg+XEe9P0bO7q1Ngz5ZVFqfwvv8OYLPOtAtBmEppG3g==";
+ url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.10.0.tgz";
+ sha512 = "U702L0HlZUN5Fxb6jbDetYeA7eOgLHkXo4vZ9/XHJyPy6jD+n+9HO8bEcLdSAadJcb4Ndcn89THyfwKiOHukVQ==";
};
};
- "@parcel/css-win32-x64-msvc-1.9.0" = {
+ "@parcel/css-win32-x64-msvc-1.10.0" = {
name = "_at_parcel_slash_css-win32-x64-msvc";
packageName = "@parcel/css-win32-x64-msvc";
- version = "1.9.0";
+ version = "1.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.9.0.tgz";
- sha512 = "L4s84iK4PXnO/SzZyTsazAuzadtEYLGHgi1dyKYxMMGCjToCDjuwsn5K8bykeewZxjoL7RaunQGqCBRt5dfB5Q==";
+ url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.10.0.tgz";
+ sha512 = "44GtojxQBRf8yTetsNdjYSa2KL4/UpSbEeaOYcO+PKBGHcCyQX2Lex5r1X2pXkpNxvu142+dSTLeXhBSFG4C0g==";
};
};
"@parcel/diagnostic-2.6.0" = {
@@ -7663,13 +7636,13 @@ let
sha512 = "3tcI2LF5fd/WZtSnSjyWdDE+G+FitdNrRgSObzSp+axHKMAM23sO0z7KY8s2SYCF40msdYbFUW8eI6JlYNJoWQ==";
};
};
- "@peculiar/asn1-schema-2.1.8" = {
+ "@peculiar/asn1-schema-2.1.9" = {
name = "_at_peculiar_slash_asn1-schema";
packageName = "@peculiar/asn1-schema";
- version = "2.1.8";
+ version = "2.1.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.1.8.tgz";
- sha512 = "u34H/bpqCdDuqrCVZvH0vpwFBT/dNEdNY+eE8u4IuC26yYnhDkXF4+Hliqca88Avbb7hyN2EF/eokyDdyS7G/A==";
+ url = "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.1.9.tgz";
+ sha512 = "Ipio+pXGpL/Vb0qB4GnOgFMgc1RAhKHOVy24rQYLvmOAVp9z/aFb+VdIiQH09NjgvGVmaWOUqSWd9vRHk3xbrg==";
};
};
"@peculiar/json-schema-1.1.12" = {
@@ -7978,13 +7951,13 @@ let
sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==";
};
};
- "@schematics/angular-14.0.1" = {
+ "@schematics/angular-14.0.2" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "14.0.1";
+ version = "14.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-14.0.1.tgz";
- sha512 = "K4y3/Zbtc38M66J5KJ5oXeGSkDrAJXdhtY9ksU6NHXQ0uUiXNzyG05+v8aFrQ5CinyuLZK3v/mqmS/cBQmdT9Q==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-14.0.2.tgz";
+ sha512 = "DmLD0s4zUGuX+hjkIkW/aZi+JZZFZfhBxhumG9nftWPYT9/AjX3C2YZCarRWJ83jy/K3N9y4cnva0NVqKxTa3A==";
};
};
"@segment/loosely-validate-event-2.0.0" = {
@@ -8419,6 +8392,15 @@ let
sha512 = "4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==";
};
};
+ "@taplo/lsp-0.2.4" = {
+ name = "_at_taplo_slash_lsp";
+ packageName = "@taplo/lsp";
+ version = "0.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@taplo/lsp/-/lsp-0.2.4.tgz";
+ sha512 = "/FcGQVvXAslhiC9aMG5gxKXJctg8N7XLZrP+wYrFTFccWEPZd/Xon5y7jUXpKOVSOFEA1MOKZKbPuK4ET5/T8Q==";
+ };
+ };
"@textlint/ast-node-types-12.1.1" = {
name = "_at_textlint_slash_ast-node-types";
packageName = "@textlint/ast-node-types";
@@ -9049,13 +9031,13 @@ let
sha512 = "6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==";
};
};
- "@types/express-serve-static-core-4.17.28" = {
+ "@types/express-serve-static-core-4.17.29" = {
name = "_at_types_slash_express-serve-static-core";
packageName = "@types/express-serve-static-core";
- version = "4.17.28";
+ version = "4.17.29";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz";
- sha512 = "P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==";
+ url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.29.tgz";
+ sha512 = "uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==";
};
};
"@types/file-type-10.9.1" = {
@@ -9616,13 +9598,13 @@ let
sha512 = "qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==";
};
};
- "@types/node-16.11.39" = {
+ "@types/node-16.11.41" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "16.11.39";
+ version = "16.11.41";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.11.39.tgz";
- sha512 = "K0MsdV42vPwm9L6UwhIxMAOmcvH/1OoVkZyCgEtVu4Wx7sElGloy/W7kMBNe/oJ7V/jW9BVt1F6RahH6e7tPXw==";
+ url = "https://registry.npmjs.org/@types/node/-/node-16.11.41.tgz";
+ sha512 = "mqoYK2TnVjdkGk8qXAVGc/x9nSaTpSrFaGFm43BUH3IdoBV0nta6hYaGmdOvIMlbHJbUEVen3gvwpwovAZKNdQ==";
};
};
"@types/node-16.11.6" = {
@@ -9634,24 +9616,6 @@ let
sha512 = "ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w==";
};
};
- "@types/node-17.0.23" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "17.0.23";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz";
- sha512 = "UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==";
- };
- };
- "@types/node-17.0.25" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "17.0.25";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-17.0.25.tgz";
- sha512 = "wANk6fBrUwdpY4isjWrKTufkrXdu1D2YHCot2fD/DfWxF5sMrVSA+KN7ydckvaTCh0HiqX9IVl0L5/ZoXg5M7w==";
- };
- };
"@types/node-17.0.33" = {
name = "_at_types_slash_node";
packageName = "@types/node";
@@ -9679,13 +9643,22 @@ let
sha512 = "xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw==";
};
};
- "@types/node-17.0.42" = {
+ "@types/node-17.0.45" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "17.0.42";
+ version = "17.0.45";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-17.0.42.tgz";
- sha512 = "Q5BPGyGKcvQgAMbsr7qEGN/kIPN6zZecYYABeTDBizOsau+2NMdSVTar9UQw21A2+JyA2KRNDYaYrPB0Rpk2oQ==";
+ url = "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz";
+ sha512 = "w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==";
+ };
+ };
+ "@types/node-18.0.0" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "18.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-18.0.0.tgz";
+ sha512 = "cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==";
};
};
"@types/node-6.14.13" = {
@@ -9715,13 +9688,13 @@ let
sha512 = "/aKAdg5c8n468cYLy2eQrcR5k6chlbNwZNGUj3TboyPa2hcO2QAJcfymlqPzMiRj8B6nYKXjzQz36minFE0RwQ==";
};
};
- "@types/node-fetch-2.6.1" = {
+ "@types/node-fetch-2.6.2" = {
name = "_at_types_slash_node-fetch";
packageName = "@types/node-fetch";
- version = "2.6.1";
+ version = "2.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.1.tgz";
- sha512 = "oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA==";
+ url = "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.2.tgz";
+ sha512 = "DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==";
};
};
"@types/normalize-package-data-2.4.1" = {
@@ -10354,13 +10327,13 @@ let
sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==";
};
};
- "@typescript-eslint/eslint-plugin-5.27.1" = {
+ "@typescript-eslint/eslint-plugin-5.28.0" = {
name = "_at_typescript-eslint_slash_eslint-plugin";
packageName = "@typescript-eslint/eslint-plugin";
- version = "5.27.1";
+ version = "5.28.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.27.1.tgz";
- sha512 = "6dM5NKT57ZduNnJfpY81Phe9nc9wolnMCnknb1im6brWi1RYv84nbMS3olJa27B6+irUVV1X/Wb+Am0FjJdGFw==";
+ url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.28.0.tgz";
+ sha512 = "DXVU6Cg29H2M6EybqSg2A+x8DgO9TCUBRp4QEXQHJceLS7ogVDP0g3Lkg/SZCqcvkAP/RruuQqK0gdlkgmhSUA==";
};
};
"@typescript-eslint/experimental-utils-4.33.0" = {
@@ -10381,13 +10354,13 @@ let
sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==";
};
};
- "@typescript-eslint/parser-5.27.1" = {
+ "@typescript-eslint/parser-5.28.0" = {
name = "_at_typescript-eslint_slash_parser";
packageName = "@typescript-eslint/parser";
- version = "5.27.1";
+ version = "5.28.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.27.1.tgz";
- sha512 = "7Va2ZOkHi5NP+AZwb5ReLgNF6nWLGTeUJfxdkVUAPPSaAdbWNnFZzLZ4EGGmmiCTg+AwlbE1KyUYTBglosSLHQ==";
+ url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.28.0.tgz";
+ sha512 = "ekqoNRNK1lAcKhZESN/PdpVsWbP9jtiNqzFWkp/yAUdZvJalw2heCYuqRmM5eUJSIYEkgq5sGOjq+ZqsLMjtRA==";
};
};
"@typescript-eslint/scope-manager-4.33.0" = {
@@ -10399,22 +10372,22 @@ let
sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==";
};
};
- "@typescript-eslint/scope-manager-5.27.1" = {
+ "@typescript-eslint/scope-manager-5.28.0" = {
name = "_at_typescript-eslint_slash_scope-manager";
packageName = "@typescript-eslint/scope-manager";
- version = "5.27.1";
+ version = "5.28.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.27.1.tgz";
- sha512 = "fQEOSa/QroWE6fAEg+bJxtRZJTH8NTskggybogHt4H9Da8zd4cJji76gA5SBlR0MgtwF7rebxTbDKB49YUCpAg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.28.0.tgz";
+ sha512 = "LeBLTqF/he1Z+boRhSqnso6YrzcKMTQ8bO/YKEe+6+O/JGof9M0g3IJlIsqfrK/6K03MlFIlycbf1uQR1IjE+w==";
};
};
- "@typescript-eslint/type-utils-5.27.1" = {
+ "@typescript-eslint/type-utils-5.28.0" = {
name = "_at_typescript-eslint_slash_type-utils";
packageName = "@typescript-eslint/type-utils";
- version = "5.27.1";
+ version = "5.28.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.27.1.tgz";
- sha512 = "+UC1vVUWaDHRnC2cQrCJ4QtVjpjjCgjNFpg8b03nERmkHv9JV9X5M19D7UFMd+/G7T/sgFwX2pGmWK38rqyvXw==";
+ url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.28.0.tgz";
+ sha512 = "SyKjKh4CXPglueyC6ceAFytjYWMoPHMswPQae236zqe1YbhvCVQyIawesYywGiu98L9DwrxsBN69vGIVxJ4mQQ==";
};
};
"@typescript-eslint/types-4.33.0" = {
@@ -10426,13 +10399,13 @@ let
sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==";
};
};
- "@typescript-eslint/types-5.27.1" = {
+ "@typescript-eslint/types-5.28.0" = {
name = "_at_typescript-eslint_slash_types";
packageName = "@typescript-eslint/types";
- version = "5.27.1";
+ version = "5.28.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.27.1.tgz";
- sha512 = "LgogNVkBhCTZU/m8XgEYIWICD6m4dmEDbKXESCbqOXfKZxRKeqpiJXQIErv66sdopRKZPo5l32ymNqibYEH/xg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.28.0.tgz";
+ sha512 = "2OOm8ZTOQxqkPbf+DAo8oc16sDlVR5owgJfKheBkxBKg1vAfw2JsSofH9+16VPlN9PWtv8Wzhklkqw3k/zCVxA==";
};
};
"@typescript-eslint/typescript-estree-4.33.0" = {
@@ -10444,22 +10417,22 @@ let
sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==";
};
};
- "@typescript-eslint/typescript-estree-5.27.1" = {
+ "@typescript-eslint/typescript-estree-5.28.0" = {
name = "_at_typescript-eslint_slash_typescript-estree";
packageName = "@typescript-eslint/typescript-estree";
- version = "5.27.1";
+ version = "5.28.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.27.1.tgz";
- sha512 = "DnZvvq3TAJ5ke+hk0LklvxwYsnXpRdqUY5gaVS0D4raKtbznPz71UJGnPTHEFo0GDxqLOLdMkkmVZjSpET1hFw==";
+ url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.28.0.tgz";
+ sha512 = "9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA==";
};
};
- "@typescript-eslint/utils-5.27.1" = {
+ "@typescript-eslint/utils-5.28.0" = {
name = "_at_typescript-eslint_slash_utils";
packageName = "@typescript-eslint/utils";
- version = "5.27.1";
+ version = "5.28.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.27.1.tgz";
- sha512 = "mZ9WEn1ZLDaVrhRaYgzbkXBkTPghPFsup8zDbbsYTxC5OmqrFE7skkKS/sraVsLP3TcT3Ki5CSyEFBRkLH/H/w==";
+ url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.28.0.tgz";
+ sha512 = "E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g==";
};
};
"@typescript-eslint/visitor-keys-4.33.0" = {
@@ -10471,13 +10444,13 @@ let
sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==";
};
};
- "@typescript-eslint/visitor-keys-5.27.1" = {
+ "@typescript-eslint/visitor-keys-5.28.0" = {
name = "_at_typescript-eslint_slash_visitor-keys";
packageName = "@typescript-eslint/visitor-keys";
- version = "5.27.1";
+ version = "5.28.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.27.1.tgz";
- sha512 = "xYs6ffo01nhdJgPieyk7HAOpjhTsx7r/oB9LWEhwAXgwn33tkr+W8DI2ChboqhZlC4q3TC6geDYPoiX8ROqyOQ==";
+ url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.28.0.tgz";
+ sha512 = "BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA==";
};
};
"@ungap/promise-all-settled-1.1.2" = {
@@ -11371,31 +11344,31 @@ let
sha512 = "2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==";
};
};
- "@webpack-cli/configtest-1.1.1" = {
+ "@webpack-cli/configtest-1.2.0" = {
name = "_at_webpack-cli_slash_configtest";
packageName = "@webpack-cli/configtest";
- version = "1.1.1";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.1.tgz";
- sha512 = "1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==";
+ url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz";
+ sha512 = "4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==";
};
};
- "@webpack-cli/info-1.4.1" = {
+ "@webpack-cli/info-1.5.0" = {
name = "_at_webpack-cli_slash_info";
packageName = "@webpack-cli/info";
- version = "1.4.1";
+ version = "1.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.1.tgz";
- sha512 = "PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA==";
+ url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz";
+ sha512 = "e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==";
};
};
- "@webpack-cli/serve-1.6.1" = {
+ "@webpack-cli/serve-1.7.0" = {
name = "_at_webpack-cli_slash_serve";
packageName = "@webpack-cli/serve";
- version = "1.6.1";
+ version = "1.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.1.tgz";
- sha512 = "gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==";
+ url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz";
+ sha512 = "oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==";
};
};
"@webtorrent/http-node-1.3.0" = {
@@ -12565,7 +12538,7 @@ let
version = "0.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/ansi-color/-/ansi-color-0.2.1.tgz";
- sha1 = "3e75c037475217544ed763a8db5709fa9ae5bf9a";
+ sha512 = "bF6xLaZBLpOQzgYUtYEhJx090nPSZk1BQ/q2oyBK9aMMcJHzx9uXGCjI2Y+LebsN4Jwoykr0V9whbPiogdyHoQ==";
};
};
"ansi-colors-1.1.0" = {
@@ -14404,13 +14377,13 @@ let
sha512 = "eKEYj1+jDgQ15jazjmelcPGXO77pa5epzlyXyEQcwwLtnACtBTCrxaW+96uXF2j4rzIikmUtVlzXwejx6iIhWw==";
};
};
- "asyncjs-util-1.2.8" = {
+ "asyncjs-util-1.2.10" = {
name = "asyncjs-util";
packageName = "asyncjs-util";
- version = "1.2.8";
+ version = "1.2.10";
src = fetchurl {
- url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.8.tgz";
- sha512 = "wUcEKoAxBWWNE1wXkoIvIyM1vVDfvItYXANYTgwemeRL8FgV6z70XdLGLBMty0WiQSub0fBuKIyF+Hz3DCahOg==";
+ url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.10.tgz";
+ sha512 = "p4U6HQUw4k/xZKrwEQO7ZuF+8/OkzAQS4iAMhFUBGtSD8p3KkKBaTBuUTEH8TWKB3ArNbrP0401TGE2vIiU7uQ==";
};
};
"asyncjs-util-1.2.9" = {
@@ -14602,13 +14575,13 @@ let
sha512 = "545VawhsCQ7yEx9jZKV0hTTW3FS/waycISWMvnNwqRfpU9o4FQ4DSu3je7ekn5yFKM+91dxJC+IfJgtIV8WaUw==";
};
};
- "aws-sdk-2.1152.0" = {
+ "aws-sdk-2.1155.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.1152.0";
+ version = "2.1155.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1152.0.tgz";
- sha512 = "Lqwk0bDhm3vzpYb3AAM9VgGHeDpbB8+o7UJnP9R+CO23kJfi/XRpKihAcbyKDD/AUQ+O1LJaUVpvaJYLS9Am7w==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1155.0.tgz";
+ sha512 = "H2QircO+R3/tx7DhRKYsGuj0YJcIY2N53U2gDExAmy34/oNAGUcS1eKB8DwTbpNPrnQgZzYDGBgHMTFWtN2XZA==";
};
};
"aws-sign2-0.6.0" = {
@@ -15169,6 +15142,15 @@ let
sha512 = "ZNB4525U7BxT6v9C8LEtywyCgB4Pjnm7/bh+ru/Z9Ecxvg3fDjaJ6z305z9a61orQdbB1zqYHh5JbUqx4s4K0g==";
};
};
+ "bash-language-server-3.0.3" = {
+ name = "bash-language-server";
+ packageName = "bash-language-server";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-3.0.3.tgz";
+ sha512 = "UhYd0YYaXjYn0M3dVeL6jv1X9L2VR8dJp3fUCcdyHTgzJOvmntpUrkjcoKASV0qqZt0u8DSPT4xE+HjegQoEvQ==";
+ };
+ };
"basic-auth-1.1.0" = {
name = "basic-auth";
packageName = "basic-auth";
@@ -16276,15 +16258,6 @@ let
sha512 = "LhBa/3hqtSY7fBgE4FzoJXNPtE1tzxEfuWc32LQXNAwvgeWJP3tlQtNqhfPwfDFflSIysSe5N/yK/ybgd/oniA==";
};
};
- "bolt07-1.8.0" = {
- name = "bolt07";
- packageName = "bolt07";
- version = "1.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bolt07/-/bolt07-1.8.0.tgz";
- sha512 = "UJq+p94UK9QsU3P1npJyWF3r8TuJd6kv6P4m656VQK/m5ifw0bWCkYF0ngcHbFGq3j8u3gP8/tkGtB8WwPPRbQ==";
- };
- };
"bolt07-1.8.1" = {
name = "bolt07";
packageName = "bolt07";
@@ -16303,24 +16276,6 @@ let
sha512 = "jq1b/ZdMambhh+yi+pm+1PJBAnlYvQYljaBgSajvVAINHrHg32ovCBra8d0ADE3BAoj6G/tK7OSV4t/yT9A+/g==";
};
};
- "bolt09-0.2.1" = {
- name = "bolt09";
- packageName = "bolt09";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.1.tgz";
- sha512 = "ON1CY0awM/VsOxcmCtz7WggxjGRH+G5rSEAdWp1UoU43BHiGw1T6eEt1t4gFvLi8eUSV0hB7vF1QOba65k/7FA==";
- };
- };
- "bolt09-0.2.2" = {
- name = "bolt09";
- packageName = "bolt09";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.2.tgz";
- sha512 = "m533YWZ/R/p1buxEK/19v94Ay1vS1PJNwfP30BCVj6l96NGpOa9t40HYuMpoX+xFYwOx8kZs+GGTb9TbJund0w==";
- };
- };
"bolt09-0.2.3" = {
name = "bolt09";
packageName = "bolt09";
@@ -17987,13 +17942,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001352" = {
+ "caniuse-lite-1.0.30001354" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001352";
+ version = "1.0.30001354";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001352.tgz";
- sha512 = "GUgH8w6YergqPQDGWhJGt8GDRnY0L/iJVQcU3eJ46GYf52R8tk0Wxp0PymuFVZboJYXGiCqwozAYZNRjVj6IcA==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001354.tgz";
+ sha512 = "mImKeCkyGDAHNywYFA4bqnLAzTUvVkqPvhY4DV47X+Gl2c5Z8c3KNETnXp14GQt11LvxE8AwjzGxJ+rsikiOzg==";
};
};
"canvas-2.9.1" = {
@@ -18149,22 +18104,22 @@ let
sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==";
};
};
- "cdk8s-2.3.23" = {
+ "cdk8s-2.3.28" = {
name = "cdk8s";
packageName = "cdk8s";
- version = "2.3.23";
+ version = "2.3.28";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.3.23.tgz";
- sha512 = "GtBz/CnDdVOWsMD/tNbolHNrs2EWke7ORFn3tv9KbeGCcWT/nfmtZE6djHddgQewW2FrYNHtTCqPKPHMxpMMVQ==";
+ url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.3.28.tgz";
+ sha512 = "gfvPeDejnWs8gzhifV/g0i0TRR1sny58aIXFk2QSpR4WCBTxHgFZKNA2aGFhX5gbTaKALbtCrYo63tewV+0jwA==";
};
};
- "cdk8s-plus-22-2.0.0-rc.15" = {
+ "cdk8s-plus-22-2.0.0-rc.19" = {
name = "cdk8s-plus-22";
packageName = "cdk8s-plus-22";
- version = "2.0.0-rc.15";
+ version = "2.0.0-rc.19";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-2.0.0-rc.15.tgz";
- sha512 = "CCwc8mAi7a5k5VnDz+syCoE0uHWMI0dTlwJwADWIq1Ay+ZUScFIGTYlzDqK5zqqNcN+fV+l3Jl/n7A8xIV4RLA==";
+ url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-2.0.0-rc.19.tgz";
+ sha512 = "bskUwRrbCZc4Cb8lmONCaanzbdQJo1KJDmKpkT2wbQjZbzhFhlwo9LfFa6VeqLgHYDvob1CiyQ75AB/8YBLcGQ==";
};
};
"cdktf-0.11.2" = {
@@ -18833,13 +18788,13 @@ let
sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==";
};
};
- "ci-info-3.3.1" = {
+ "ci-info-3.3.2" = {
name = "ci-info";
packageName = "ci-info";
- version = "3.3.1";
+ version = "3.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ci-info/-/ci-info-3.3.1.tgz";
- sha512 = "SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==";
+ url = "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz";
+ sha512 = "xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==";
};
};
"cint-8.2.1" = {
@@ -19913,6 +19868,15 @@ let
sha512 = "hJo+3Bkn0NCHybn9Tu35fIeoOKGOk5OCC32y4Hz2It+qlCO2Q3DeQ1hRn/tDDMQKRYUEzqsl7jbF6dYKjlE60g==";
};
};
+ "colorette-2.0.19" = {
+ name = "colorette";
+ packageName = "colorette";
+ version = "2.0.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz";
+ sha512 = "3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==";
+ };
+ };
"colors-0.6.2" = {
name = "colors";
packageName = "colors";
@@ -20813,13 +20777,13 @@ let
sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==";
};
};
- "constructs-10.1.35" = {
+ "constructs-10.1.41" = {
name = "constructs";
packageName = "constructs";
- version = "10.1.35";
+ version = "10.1.41";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-10.1.35.tgz";
- sha512 = "ak/ml4xdnsLiaKAUFnYQiwGMA1yOgdcnNr7KlfhAbhM9Sq1rvb/TPzF6Jdgi9wivjJVtnUuNRgbZ7+JJJrK2cw==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-10.1.41.tgz";
+ sha512 = "9fvkjvMHHLYgUpB/zFCpaUysokdTM7hwIvkfBJwXJsxl4Hwwt9z0otHM/hotkqEteR3LdYmmVpJCze+V4MvGhQ==";
};
};
"consume-http-header-1.0.0" = {
@@ -21444,22 +21408,31 @@ let
sha512 = "UoGQ/cfzGYIuiq6Z7vWL1HfkE9U9IZ4Ub+0XSiJTCzvbZzgPA69oDF2f+lgJ6dFFLEdjW5O6svvoKzXX23xFkA==";
};
};
- "core-js-compat-3.22.8" = {
- name = "core-js-compat";
- packageName = "core-js-compat";
- version = "3.22.8";
+ "core-js-3.23.1" = {
+ name = "core-js";
+ packageName = "core-js";
+ version = "3.23.1";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.8.tgz";
- sha512 = "pQnwg4xtuvc2Bs/5zYQPaEYYSuTxsF7LBWF0SvnVhthZo/Qe+rJpcEekrdNK5DWwDJ0gv0oI9NNX5Mppdy0ctg==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.23.1.tgz";
+ sha512 = "wfMYHWi1WQjpgZNC9kAlN4ut04TM9fUTdi7CqIoTVM7yaiOUQTklOzfb+oWH3r9edQcT3F887swuVmxrV+CC8w==";
};
};
- "core-js-pure-3.22.8" = {
+ "core-js-compat-3.23.1" = {
+ name = "core-js-compat";
+ packageName = "core-js-compat";
+ version = "3.23.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.1.tgz";
+ sha512 = "KeYrEc8t6FJsKYB2qnDwRHWaC0cJNaqlHfCpMe5q3j/W1nje3moib/txNklddLPCtGb+etcBIyJ8zuMa/LN5/A==";
+ };
+ };
+ "core-js-pure-3.23.1" = {
name = "core-js-pure";
packageName = "core-js-pure";
- version = "3.22.8";
+ version = "3.23.1";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.8.tgz";
- sha512 = "bOxbZIy9S5n4OVH63XaLVXZ49QKicjowDx/UELyJ68vxfCRpYsbyh/WNZNfEfAk+ekA8vSjt+gCDpvh672bc3w==";
+ url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.1.tgz";
+ sha512 = "3qNgf6TqI3U1uhuSYRzJZGfFd4T+YlbyVPl+jgRiKjdZopvG4keZQwWZDAWpu1UH9nCgTpUzIV3GFawC7cJsqg==";
};
};
"core-util-is-1.0.2" = {
@@ -22470,6 +22443,15 @@ let
sha512 = "JL+Q6YEikT2uoe57InjFFa6VejhSv0tDwOxeQ1bVQKeUC/NCnLAAZ8n3PzowPQQLuZ37fysDYZipB2UJkH9C6A==";
};
};
+ "csv-parse-5.2.0" = {
+ name = "csv-parse";
+ packageName = "csv-parse";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csv-parse/-/csv-parse-5.2.0.tgz";
+ sha512 = "ZuLjTp3Qx2gycoB7FKS9q11KgDL3f0wQszTlNOajS3fHa0jypN/zgjmkam+rczX5dXw5z7+KrDW2hWkM4542Ug==";
+ };
+ };
"csv-stream-0.2.0" = {
name = "csv-stream";
packageName = "csv-stream";
@@ -24810,6 +24792,15 @@ let
sha512 = "0cuGS8+jhR67Fy7qG3i3Pc7Aw494sb9yG9QgpG97SFVWwolgYjlhJg7n+UaHxOQT30d1TYu/EYe9k01ivLErIg==";
};
};
+ "dezalgo-1.0.3" = {
+ name = "dezalgo";
+ packageName = "dezalgo";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz";
+ sha512 = "K7i4zNfT2kgQz3GylDw40ot9GAE47sFZ9EXHFSPP6zONLgH6kWXE0KWJchkbQJLBkRazq4APwZ4OwiFFlT95OQ==";
+ };
+ };
"dezalgo-1.0.4" = {
name = "dezalgo";
packageName = "dezalgo";
@@ -25152,13 +25143,13 @@ let
sha512 = "BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==";
};
};
- "dns-packet-5.3.1" = {
+ "dns-packet-5.4.0" = {
name = "dns-packet";
packageName = "dns-packet";
- version = "5.3.1";
+ version = "5.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dns-packet/-/dns-packet-5.3.1.tgz";
- sha512 = "spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==";
+ url = "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz";
+ sha512 = "EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==";
};
};
"dns-txt-2.0.2" = {
@@ -25179,6 +25170,15 @@ let
sha512 = "2FFKzmLGOnD+Y378bRKH+gTjRMuSpH7OKgPy31KjjfCoKZx7tU8Dmqfd/3fhG2d/4bppuN8/KtWMUZBAcUCRnQ==";
};
};
+ "dockerfile-ast-0.1.0" = {
+ name = "dockerfile-ast";
+ packageName = "dockerfile-ast";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dockerfile-ast/-/dockerfile-ast-0.1.0.tgz";
+ sha512 = "qKftHMVoMliYBaYLkgttm+NXhRISVNkIMfAL4ecmXjiWRElfdfY+xNgITiehG0LpUEDbFUa/UDCByYq/2UZIpQ==";
+ };
+ };
"dockerfile-ast-0.4.2" = {
name = "dockerfile-ast";
packageName = "dockerfile-ast";
@@ -25188,6 +25188,24 @@ let
sha512 = "k770mVWaCm3KbyOSPFizP6WB2ucZjfAv8aun4UsKl+IivowK7ItwBixNbziBjN05yNpvCL1/IxBdZiSz6KQIvA==";
};
};
+ "dockerfile-language-server-nodejs-0.2.2" = {
+ name = "dockerfile-language-server-nodejs";
+ packageName = "dockerfile-language-server-nodejs";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.2.2.tgz";
+ sha512 = "PdDtFhzVywa2bZK6OFQhIPMSNPNJQa03Ri3ONxBJpxtOwtAaDSnh95iGj/bdPqQLJGoj1Y/yTheDTxLOTTe5JA==";
+ };
+ };
+ "dockerfile-language-service-0.1.1" = {
+ name = "dockerfile-language-service";
+ packageName = "dockerfile-language-service";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.1.1.tgz";
+ sha512 = "Lw4QlxJoy9F1559wxX+0xe5iSNK95Fbzx/YhdmAzfwgbPvdPzvFouIuuMyMPj/Q5JyFH1QAr7VeagOe24w0cqg==";
+ };
+ };
"dockerfile-language-service-0.9.0" = {
name = "dockerfile-language-service";
packageName = "dockerfile-language-service";
@@ -25197,6 +25215,15 @@ let
sha512 = "sDUkTR4LUimEAWXDIbUTEx2CytCBlx+XlJkg4B2Ptvak9HkwPD4JpXesaWxXPpp6YHCzxqwsTDY7Gf79ic340g==";
};
};
+ "dockerfile-utils-0.1.1" = {
+ name = "dockerfile-utils";
+ packageName = "dockerfile-utils";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.1.1.tgz";
+ sha512 = "ddAA8PCAcT4pBQ1AFRnPjetJ31/7BqNKLHQkZebNE0hBAiOr8SzrnIWvJUcBDHrVbASCVl1Ye37hbaTsUmYHsw==";
+ };
+ };
"dockerfile-utils-0.10.0" = {
name = "dockerfile-utils";
packageName = "dockerfile-utils";
@@ -25485,15 +25512,6 @@ let
sha512 = "kD+f8qEaa42+mjdOpKeztu9Mfx5bv9gVLO6K9jRx4uGvh6Wv06Srn4jr1wPNY2OOUGGSKHNFN+A8MA3v0E0QAQ==";
};
};
- "dompurify-2.3.6" = {
- name = "dompurify";
- packageName = "dompurify";
- version = "2.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/dompurify/-/dompurify-2.3.6.tgz";
- sha512 = "OFP2u/3T1R5CEgWCEONuJ1a5+MFKnOYpkywpUSxv/dj1LeBT1erK+JwM7zK0ROy2BRhqVCf0LRw/kHqKuMkVGg==";
- };
- };
"dompurify-2.3.8" = {
name = "dompurify";
packageName = "dompurify";
@@ -26043,13 +26061,13 @@ let
sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==";
};
};
- "electron-18.3.3" = {
+ "electron-18.3.4" = {
name = "electron";
packageName = "electron";
- version = "18.3.3";
+ version = "18.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/electron/-/electron-18.3.3.tgz";
- sha512 = "LYxf3uCDc/r0klu7LL0eZLxkseoGIY/vrCfS0Qj4YTU3M7LLjOaIqrajI7icKwaI2dgxiuJJH3n4eqALFpJAFg==";
+ url = "https://registry.npmjs.org/electron/-/electron-18.3.4.tgz";
+ sha512 = "MIxQnaQR7NzWZOuAhRbJAf+pPyoXXGNge9E6pz7nGLXE/DxeN6BUbKb0iWVCCMkxIpqdIhXdc5sViUCX74dvsw==";
};
};
"electron-notarize-1.2.1" = {
@@ -26088,13 +26106,13 @@ let
sha512 = "WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw==";
};
};
- "electron-to-chromium-1.4.152" = {
+ "electron-to-chromium-1.4.157" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.4.152";
+ version = "1.4.157";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.152.tgz";
- sha512 = "jk4Ju5SGZAQQJ1iI4Rgru7dDlvkQPLpNPWH9gIZmwCD4YteA5Bbk1xPcPDUf5jUYs3e1e80RXdi8XgKQZaigeg==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.157.tgz";
+ sha512 = "gteFnXPKsDAdm1U5vVuyrLnKOaR/x/SY+HjUQoHypLUYWJt4RaWU3PaiTBEkRDJh8/Zd8KC/EFjV+uPaHsjKFA==";
};
};
"electrum-client-git+https://github.com/janoside/electrum-client" = {
@@ -27593,13 +27611,13 @@ let
sha512 = "MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==";
};
};
- "estree-util-is-identifier-name-2.0.0" = {
+ "estree-util-is-identifier-name-2.0.1" = {
name = "estree-util-is-identifier-name";
packageName = "estree-util-is-identifier-name";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.0.tgz";
- sha512 = "aXXZFVMnBBDRP81vS4YtAYJ0hUkgEsXea7lNKWCOeaAquGb1Jm2rcONPB5fpzwgbNxulTvrWuKnp9UElUGAKeQ==";
+ url = "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.1.tgz";
+ sha512 = "rxZj1GkQhY4x1j/CSnybK9cGuMFQYFPLq0iNyopqf14aOVLFtMv7Esika+ObJWPWiOHuMOAHz3YkWoLYYRnzWQ==";
};
};
"estree-util-visit-1.1.0" = {
@@ -28079,15 +28097,6 @@ let
sha512 = "Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==";
};
};
- "exit-code-1.0.2" = {
- name = "exit-code";
- packageName = "exit-code";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/exit-code/-/exit-code-1.0.2.tgz";
- sha512 = "U80QYrKun5np62yRqG6geNRP5TZKU2HF73Bb6IE3XjDHXKlserAdP14tIaP3W9J6ezv84DwbpbRTAtu4FsKcgw==";
- };
- };
"exit-hook-1.1.1" = {
name = "exit-hook";
packageName = "exit-hook";
@@ -29006,13 +29015,13 @@ let
sha512 = "WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==";
};
};
- "faunadb-4.5.4" = {
+ "faunadb-4.6.0" = {
name = "faunadb";
packageName = "faunadb";
- version = "4.5.4";
+ version = "4.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/faunadb/-/faunadb-4.5.4.tgz";
- sha512 = "v0e1aXPhitIGMtuC7NFtp//hyr0d2NtHFcGqsEJgWx49rRJoonZQl6hLQ3lBjhA/LPg26U4R/BAlmDFE2pzsUA==";
+ url = "https://registry.npmjs.org/faunadb/-/faunadb-4.6.0.tgz";
+ sha512 = "lBCS9wOLIdoeQmhzFvNAXM9B4T3Ptv2HUf0RrPsC2LA1zPtTQFBtdhH7fvTlwRyUawIKDjs1wn5pk2o8g0Cylg==";
};
};
"faye-websocket-0.10.0" = {
@@ -30284,13 +30293,13 @@ let
sha512 = "wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==";
};
};
- "formdata-node-4.3.2" = {
+ "formdata-node-4.3.3" = {
name = "formdata-node";
packageName = "formdata-node";
- version = "4.3.2";
+ version = "4.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/formdata-node/-/formdata-node-4.3.2.tgz";
- sha512 = "k7lYJyzDOSL6h917favP8j1L0/wNyylzU+x+1w4p5haGVHNlP58dbpdJhiCUsDbWsa9HwEtLp89obQgXl2e0qg==";
+ url = "https://registry.npmjs.org/formdata-node/-/formdata-node-4.3.3.tgz";
+ sha512 = "coTew7WODO2vF+XhpUdmYz4UBvlsiTMSNaFYZlrXIqYbFd4W7bMwnoALNLE6uvNgzTg2j1JDF0ZImEfF06VPAA==";
};
};
"formdata-polyfill-4.0.10" = {
@@ -30329,6 +30338,15 @@ let
sha512 = "KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==";
};
};
+ "formidable-2.0.1" = {
+ name = "formidable";
+ packageName = "formidable";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/formidable/-/formidable-2.0.1.tgz";
+ sha512 = "rjTMNbp2BpfQShhFbR3Ruk3qk2y9jKpvMW78nJgx8QKtxjDVrwbZG+wvDOmVbifHyOUOQJXxqEy6r0faRrPzTQ==";
+ };
+ };
"forwarded-0.1.2" = {
name = "forwarded";
packageName = "forwarded";
@@ -30968,6 +30986,15 @@ let
sha512 = "gSaYYIO1Y3wUtdfHmjDUZ8LWaxJQpiavzbF5Kq53akSzvmVg0RfyOcFDbO1KJ/KCGRFz2qG+lS81F0nkr7cRJA==";
};
};
+ "gaxios-5.0.0" = {
+ name = "gaxios";
+ packageName = "gaxios";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gaxios/-/gaxios-5.0.0.tgz";
+ sha512 = "VD/yc5ln6XU8Ch1hyYY6kRMBE0Yc2np3fPyeJeYHhrPs1i8rgnsApPMWyrugkl7LLoSqpOJVBWlQIa87OAvt8Q==";
+ };
+ };
"gaze-1.1.3" = {
name = "gaze";
packageName = "gaze";
@@ -30995,6 +31022,15 @@ let
sha512 = "x850LS5N7V1F3UcV7PoupzGsyD6iVwTVvsh3tbXfkctZnBnjW5yu5z1/3k3SehF7TyoTIe78rJs02GMMy+LF+A==";
};
};
+ "gcp-metadata-5.0.0" = {
+ name = "gcp-metadata";
+ packageName = "gcp-metadata";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-5.0.0.tgz";
+ sha512 = "gfwuX3yA3nNsHSWUL4KG90UulNiq922Ukj3wLTrcnX33BB7PwB1o0ubR8KVvXu9nJH+P5w1j2SQSNNqto+H0DA==";
+ };
+ };
"gelf-stream-1.1.1" = {
name = "gelf-stream";
packageName = "gelf-stream";
@@ -32004,13 +32040,13 @@ let
sha512 = "wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==";
};
};
- "globby-13.1.1" = {
+ "globby-13.1.2" = {
name = "globby";
packageName = "globby";
- version = "13.1.1";
+ version = "13.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/globby/-/globby-13.1.1.tgz";
- sha512 = "XMzoDZbGZ37tufiv7g0N4F/zp3zkwdFtVbV3EHsVl1KQr4RPLfNoT068/97RPshz2J5xYNEjLKKBKaGHifBd3Q==";
+ url = "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz";
+ sha512 = "LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==";
};
};
"globby-4.1.0" = {
@@ -32094,15 +32130,6 @@ let
sha512 = "wYGVAa8/sh9ggF5qWoOs6eArcAgwEPkDNvf637jHRHkMUznvs7m/Q2vrc0KLN6B8px3nnRJqJcXK4mTK6lLFmg==";
};
};
- "goldengate-11.2.1" = {
- name = "goldengate";
- packageName = "goldengate";
- version = "11.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/goldengate/-/goldengate-11.2.1.tgz";
- sha512 = "v0REhYrm8fUJMvDAGzYhymB3R9BqTEulUcD740zNEsH2umNc9Jv+RI4sXGygIXUtUi9FSlBrO4udVerBoRMBLQ==";
- };
- };
"goldengate-11.2.2" = {
name = "goldengate";
packageName = "goldengate";
@@ -32112,6 +32139,15 @@ let
sha512 = "/KNzppPCD5wjIeGPfoCsehgF9bArdssaQ0TVBy/rt8aYUuuuvFNmi1+0GsTKYBDRohFtlbv/1h3RG7OqEzY8XQ==";
};
};
+ "goldengate-11.2.3" = {
+ name = "goldengate";
+ packageName = "goldengate";
+ version = "11.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/goldengate/-/goldengate-11.2.3.tgz";
+ sha512 = "V09p/DRD2q51vK3HJgPjWRTw3FFhMkb2E2flizWaE9oZmetFpXrxcp8be1pVbzWZrDykj2FMc68K0GeerO6KsQ==";
+ };
+ };
"gonzales-pe-4.3.0" = {
name = "gonzales-pe";
packageName = "gonzales-pe";
@@ -32130,13 +32166,22 @@ let
sha512 = "5Rk7iLNDFhFeBYc3s8l1CqzbEBcdhwR193RlD4vSNFajIcINKI8W8P0JLmBpwymHqqWbX34pJDQu39cSy/6RsA==";
};
};
- "google-gax-2.30.3" = {
+ "google-auth-library-8.0.2" = {
+ name = "google-auth-library";
+ packageName = "google-auth-library";
+ version = "8.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-8.0.2.tgz";
+ sha512 = "HoG+nWFAThLovKpvcbYzxgn+nBJPTfAwtq0GxPN821nOO+21+8oP7MoEHfd1sbDulUFFGfcjJr2CnJ4YssHcyg==";
+ };
+ };
+ "google-gax-3.1.1" = {
name = "google-gax";
packageName = "google-gax";
- version = "2.30.3";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/google-gax/-/google-gax-2.30.3.tgz";
- sha512 = "Zsd6hbJBMvAcJS3cYpAsmupvfsxygFR2meUZJcGeR7iUqYHCR/1Hf2aQNB9srrlXQMm91pNiUvW0Kz6Qld8QkA==";
+ url = "https://registry.npmjs.org/google-gax/-/google-gax-3.1.1.tgz";
+ sha512 = "lLiv6s3Ax5i0Iqy/crHrIZuaU1AYZvTj/F8DCcdJvmDWDsFSVSh+KkCEkKGd7PHck3dVB58NnbC4FIiRpTq4WQ==";
};
};
"google-p12-pem-3.1.4" = {
@@ -32463,13 +32508,13 @@ let
sha512 = "bVddVO8YFJPwuACn+3pgmrEg6I8iBuYLuwvxiE+lcQQ7POotVZxm2rgGw0PvVYmWWf3DT7nTVDZ5ROh/ALp8mA==";
};
};
- "graphql-language-service-5.0.5" = {
+ "graphql-language-service-5.0.6" = {
name = "graphql-language-service";
packageName = "graphql-language-service";
- version = "5.0.5";
+ version = "5.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-language-service/-/graphql-language-service-5.0.5.tgz";
- sha512 = "hekBLI73r6ghShWrIMJ7Pe4Z+yJrda/U+kLenNJLNswuCrR0XfFOv5pNtnSXLcjFZkQfY1bwGV0D8IVKZEOW5Q==";
+ url = "https://registry.npmjs.org/graphql-language-service/-/graphql-language-service-5.0.6.tgz";
+ sha512 = "FjE23aTy45Lr5metxCv3ZgSKEZOzN7ERR+OFC1isV5mHxI0Ob8XxayLTYjQKrs8b3kOpvgTYmSmu6AyXOzYslg==";
};
};
"graphql-language-service-interface-2.10.2" = {
@@ -32490,13 +32535,13 @@ let
sha512 = "duDE+0aeKLFVrb9Kf28U84ZEHhHcvTjWIT6dJbIAQJWBaDoht0D4BK9EIhd94I3DtKRc1JCJb2+70y1lvP/hiA==";
};
};
- "graphql-language-service-server-2.7.26" = {
+ "graphql-language-service-server-2.7.27" = {
name = "graphql-language-service-server";
packageName = "graphql-language-service-server";
- version = "2.7.26";
+ version = "2.7.27";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-language-service-server/-/graphql-language-service-server-2.7.26.tgz";
- sha512 = "D+3H3/U/rZGyWVKff9b5plxNNwuBFeeZyONDPHSHYtuYAgdr9lN8AMH4QoLX9kWkkLiQ5dws9b2BKx5xRM4J3g==";
+ url = "https://registry.npmjs.org/graphql-language-service-server/-/graphql-language-service-server-2.7.27.tgz";
+ sha512 = "ogHYC4xrOx6cTmJ7M0e/JbNljjP5kRGzof8aIzGrnOxPA53qG9XqUJEu8kKiEhiVh+AkUt2/mpr733xJcjP5kw==";
};
};
"graphql-language-service-types-1.8.7" = {
@@ -33561,6 +33606,15 @@ let
sha512 = "dyrPC8KzBzUJ19QTIo1gXNqIISRXQ0NwteW6OeQHRN4ZuZeHkdODfj0zHBdOlHbRY8GqbqK57C9oWSvQZizFsg==";
};
};
+ "hexoid-1.0.0" = {
+ name = "hexoid";
+ packageName = "hexoid";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hexoid/-/hexoid-1.0.0.tgz";
+ sha512 = "QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==";
+ };
+ };
"highlight.js-10.7.3" = {
name = "highlight.js";
packageName = "highlight.js";
@@ -35667,13 +35721,13 @@ let
sha512 = "MAQUJuIo7Xqk8EVNP+6d3CKq9c80hi4tjIbIAT6lmGW9W6WzlHiu9PS8uSuUYU+Do+j1baiFp3H25XEVxDIG2g==";
};
};
- "install-artifact-from-github-1.3.0" = {
+ "install-artifact-from-github-1.3.1" = {
name = "install-artifact-from-github";
packageName = "install-artifact-from-github";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/install-artifact-from-github/-/install-artifact-from-github-1.3.0.tgz";
- sha512 = "iT8v1GwOAX0pPXifF/5ihnMhHOCo3OeK7z3TQa4CtSNCIg8k0UxqBEk9jRwz8OP68hHXvJ2gxRa89KYHtBkqGA==";
+ url = "https://registry.npmjs.org/install-artifact-from-github/-/install-artifact-from-github-1.3.1.tgz";
+ sha512 = "3l3Bymg2eKDsN5wQuMfgGEj2x6l5MCAv0zPL6rxHESufFVlEAKW/6oY9F1aGgvY/EgWm5+eWGRjINveL4X7Hgg==";
};
};
"int53-1.0.0" = {
@@ -35856,24 +35910,6 @@ let
sha512 = "CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==";
};
};
- "invoices-2.0.4" = {
- name = "invoices";
- packageName = "invoices";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/invoices/-/invoices-2.0.4.tgz";
- sha512 = "+Np4KWjNSlYm7Qp12zkRN5eu9tkA7FAFIP60bmpbMbwQbgz5gV9go3bkY8CpGj+Z1zifw5N8U+pH+wko/XSjpw==";
- };
- };
- "invoices-2.0.5" = {
- name = "invoices";
- packageName = "invoices";
- version = "2.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/invoices/-/invoices-2.0.5.tgz";
- sha512 = "097isfZK3qaDJXQOEqTr3IfnrFZnGCAsbyqWNHAESdG12vBC39dprZWFwPLtnv7I8exhJG6WFFlaC51qaJan/w==";
- };
- };
"invoices-2.0.6" = {
name = "invoices";
packageName = "invoices";
@@ -37089,13 +37125,13 @@ let
sha512 = "gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==";
};
};
- "is-plain-obj-4.0.0" = {
+ "is-plain-obj-4.1.0" = {
name = "is-plain-obj";
packageName = "is-plain-obj";
- version = "4.0.0";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.0.0.tgz";
- sha512 = "NXRbBtUdBioI73y/HmOhogw/U5msYPC9DAtGkJXeFcFWSFZw0mCUsPxk/snTuJHzNKA8kLBK4rH97RMB1BfCXw==";
+ url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz";
+ sha512 = "+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==";
};
};
"is-plain-object-2.0.4" = {
@@ -37197,13 +37233,13 @@ let
sha512 = "eCTBKm9K6nO3H1S3BrJBAqZJIVXKNdwDuGl6KHf1bnf/bn02BvEe+l+MypjsxbqZ7mt5oMhu+bS/mm7G2FRW3A==";
};
};
- "is-reachable-5.2.0" = {
+ "is-reachable-5.2.1" = {
name = "is-reachable";
packageName = "is-reachable";
- version = "5.2.0";
+ version = "5.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-reachable/-/is-reachable-5.2.0.tgz";
- sha512 = "x9rn66RltP1CDAdk00y6hG7kgVTTYvQwcIp8s8ug6d4M1EdhvNwi19YmSJwfVfHtlFViMI8anKHX52SgQKJuRQ==";
+ url = "https://registry.npmjs.org/is-reachable/-/is-reachable-5.2.1.tgz";
+ sha512 = "ViPrrlmt9FTTclYbz6mL/PFyF1TXSpJ9y/zw9QMVJxbhU/7DFkvk/5cTv7S0sXtqbJj32zZ+jKpNAjrYTUZBPQ==";
};
};
"is-redirect-1.0.0" = {
@@ -38521,13 +38557,13 @@ let
sha512 = "HZbQXv1vkAfKQhOK22E6EoBmHD1aJGqRoAEhO7X1gnl0oDx83/on8GcLIJ/GW5YEWa4sTKgX2CsMKmbmMFJufA==";
};
};
- "jsii-srcmak-0.1.587" = {
+ "jsii-srcmak-0.1.591" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.587";
+ version = "0.1.591";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.587.tgz";
- sha512 = "DFNMOqvy+pwpl55X3DxfmBjlZAFFO3Xm2E03QW3m8a/3sBwjnnNgBIKvALrafYs8fhaAIc28cY3XP3QoCTWroQ==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.591.tgz";
+ sha512 = "7IbPeDYUBH6qK9OQDjKdidXR3w7X0kprFQ1IdKYPxgWVjpOrPlOkFnZs9jEOZhsUEaWjCGQXvvNm21kOT2ZYcg==";
};
};
"json-bigint-1.0.0" = {
@@ -38818,13 +38854,13 @@ let
sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA==";
};
};
- "json2jsii-0.3.37" = {
+ "json2jsii-0.3.41" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.3.37";
+ version = "0.3.41";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.37.tgz";
- sha512 = "AZoF1fmXK6CF1nxFYh17RwjgNxXPlwAwFP7eJI6JQlP6ZMiEBTooqN8a+ObR/gK5B3RdLtxQY984O4MNldjUrQ==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.41.tgz";
+ sha512 = "rx/Gi+qjLJOjHO76V85W8ZfWV65SrjY8Eg4ZsUUakn9+5A0z4Z6zSCF90OaVkyf7/+QrP5czJOyzWKdsaG8Y8Q==";
};
};
"json3-3.2.6" = {
@@ -40339,24 +40375,6 @@ let
sha512 = "BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA==";
};
};
- "lightning-5.10.1" = {
- name = "lightning";
- packageName = "lightning";
- version = "5.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lightning/-/lightning-5.10.1.tgz";
- sha512 = "dIrN4vPzmzq9DaMD6c+9DqQwJCMl1lOleWrhIrv+HIpzq6rdNJvUXaVJOFz1OV8P3zy2Q3+s9VxnzeN70ee+ow==";
- };
- };
- "lightning-5.14.0" = {
- name = "lightning";
- packageName = "lightning";
- version = "5.14.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lightning/-/lightning-5.14.0.tgz";
- sha512 = "T8NGH6F+t4sajEbC3CT2MbjqGyzTu0fH/X/UnnO8YlKoSUlU3Y9LFkmQDjMyDkxWN+peJmUQt8Em+OZu5XHLaw==";
- };
- };
"lightning-5.16.0" = {
name = "lightning";
packageName = "lightning";
@@ -40375,15 +40393,6 @@ let
sha512 = "7wXInrGwrAPgu+/yOagxsGkYFArby57mpTyHzgVIo6H9U9ajdQPHuS17VrbyGH3cjldp6Aw+rawwaVqqq8GRAg==";
};
};
- "lightning-5.16.2" = {
- name = "lightning";
- packageName = "lightning";
- version = "5.16.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lightning/-/lightning-5.16.2.tgz";
- sha512 = "qKbf39l3k4xoY8ia0uDOvUkw8Zm3hlfiSrZasVdELlo4TJvrfZmHF5YadlWHdYFz9zFEeF4jINL3KQKGcYwliQ==";
- };
- };
"lightning-5.16.3" = {
name = "lightning";
packageName = "lightning";
@@ -40393,15 +40402,6 @@ let
sha512 = "ghban3KbqkbzahwIp4NAtuhc8xIurVcCXAd7tV6qGkFYKZAy9loIvFrhZqoWF4A4jnaKbRnJPCaxzJ8JwPl3EA==";
};
};
- "lightning-5.9.0" = {
- name = "lightning";
- packageName = "lightning";
- version = "5.9.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lightning/-/lightning-5.9.0.tgz";
- sha512 = "o084Z7QAUaxR7+nLgr+DlL2XiMJGHDq/SRhKcanP10qR0irTK1oSHDyaFmrwz33y5V/d6Tla+5yjdD217LMWAA==";
- };
- };
"lilconfig-2.0.5" = {
name = "lilconfig";
packageName = "lilconfig";
@@ -40654,33 +40654,6 @@ let
sha512 = "yO8stbm3Ewd/EfO56a1FnV4pR4bjvwHG8ZilDryQMpHFSBu6ChLZ+r5wUe4uvH9gb963fQcy+N6vdeZPloYJsQ==";
};
};
- "ln-service-53.10.0" = {
- name = "ln-service";
- packageName = "ln-service";
- version = "53.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ln-service/-/ln-service-53.10.0.tgz";
- sha512 = "YXpywZVf/oSWiuntp5v6IRPYNCCMlsGkWkFsX4eygnXqZnKDOaBSgvBHYJ871C0SJuyQD4oN0wazTYD+PhQUGA==";
- };
- };
- "ln-service-53.11.0" = {
- name = "ln-service";
- packageName = "ln-service";
- version = "53.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ln-service/-/ln-service-53.11.0.tgz";
- sha512 = "qdsgLRFGdn8+zfSDgbGw584fS2QQromxp4VRXzj9nk3qveTD6IwBjaEhC1xtY73MQCHQ3ALkWVn3aYMoy5erFw==";
- };
- };
- "ln-service-53.15.0" = {
- name = "ln-service";
- packageName = "ln-service";
- version = "53.15.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ln-service/-/ln-service-53.15.0.tgz";
- sha512 = "7WHV5uP0BrnXX3me4OsdaFI8J81LMJRENCREbxR/CQuvLW6rvLe0KlZmuLVBxwVAYKcXc0CcfiZPX0js2+8NKA==";
- };
- };
"ln-service-53.17.0" = {
name = "ln-service";
packageName = "ln-service";
@@ -40699,15 +40672,6 @@ let
sha512 = "zkOFlFFkTotvBkkXwVaoCczGmJlcKgLW+M+/bOayuNk5yg7csKbWir5bKnjLi39i9dHK+ffjeFpX4yYH17B7tA==";
};
};
- "ln-service-53.17.2" = {
- name = "ln-service";
- packageName = "ln-service";
- version = "53.17.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ln-service/-/ln-service-53.17.2.tgz";
- sha512 = "cmPDZUENkwB3Wvef16qvpYgpyEFE8eSpdkf00eMIWgUWqMcw4YYxMYrHlMvq0mELcyzQRmYld5yXUAQdQ43VAw==";
- };
- };
"ln-service-53.17.3" = {
name = "ln-service";
packageName = "ln-service";
@@ -40717,15 +40681,6 @@ let
sha512 = "Ulk35FIMF1E+iKgImlYVESWlf9eznhd/ZYw6qycQlcjp686QccKi6Otng8H49JSfc1/kj/ObOuFipP9mtil3Wg==";
};
};
- "ln-sync-3.12.0" = {
- name = "ln-sync";
- packageName = "ln-sync";
- version = "3.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.12.0.tgz";
- sha512 = "+TFRyMVvUU9jAqRGPiawPY8cGSmfd2bKfofGsH95zTlQ4DeQLYyEPFxzqJZrkmddqdohfuF0XVW9y7+4v4eq5A==";
- };
- };
"ln-sync-3.12.1" = {
name = "ln-sync";
packageName = "ln-sync";
@@ -40735,13 +40690,31 @@ let
sha512 = "Wr1g/H0Vi322P7oLmSksNJxSgDbmyIAuVwSwHbo+tVpDRdJUSw/RxhRquLdFz/8ienXm2S9ylcaI8e21Xh6xJA==";
};
};
- "ln-telegram-3.22.1" = {
+ "ln-sync-3.12.2" = {
+ name = "ln-sync";
+ packageName = "ln-sync";
+ version = "3.12.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.12.2.tgz";
+ sha512 = "Ae6SGG1ItbARuZuUevCp3S/1HiFep7G5UNuSkjsG8ohA4d6VN6RajcEbjsU1SdEtE7oQHJt0p52ye/R3SONDIg==";
+ };
+ };
+ "ln-sync-3.13.0" = {
+ name = "ln-sync";
+ packageName = "ln-sync";
+ version = "3.13.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.13.0.tgz";
+ sha512 = "f5s60wyijcp67gN86VuVSax1xtoc7djwiDLYWIsJPU7uro4F3n8sU76HI1xZxwNL8Q7mMbWEMm/SIeA7ds9yEw==";
+ };
+ };
+ "ln-telegram-3.22.2" = {
name = "ln-telegram";
packageName = "ln-telegram";
- version = "3.22.1";
+ version = "3.22.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.22.1.tgz";
- sha512 = "chYAssyd0UN97gCIoN1WDm4Ymlhs1xGIIsl9F5QHYV/ogpSZPsWHWyDPnQPMNhC3ik27H+LD5R7YjmQj8fEPlA==";
+ url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.22.2.tgz";
+ sha512 = "Vqnx7Pmgbn6ENX5b13P7pK02k29LcFFyOznFsbbI9WFjfmVHskJ6ymIuA7GX+oEy6XgyMA9/nDYh1BQhnPNcgA==";
};
};
"load-bmfont-1.4.1" = {
@@ -43346,13 +43319,13 @@ let
sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg==";
};
};
- "marked-4.0.16" = {
+ "marked-4.0.17" = {
name = "marked";
packageName = "marked";
- version = "4.0.16";
+ version = "4.0.17";
src = fetchurl {
- url = "https://registry.npmjs.org/marked/-/marked-4.0.16.tgz";
- sha512 = "wahonIQ5Jnyatt2fn8KqF/nIqZM8mh3oRu2+l5EANGMhu6RFjiSG52QNE2eWzFMI94HqYSgN184NurgNG6CztA==";
+ url = "https://registry.npmjs.org/marked/-/marked-4.0.17.tgz";
+ sha512 = "Wfk0ATOK5iPxM4ptrORkFemqroz0ZDxp5MWfYA7H/F+wO17NRWV5Ypxi6p3g2Xmw2bKeiYOl6oVnLHKxBA0VhA==";
};
};
"marked-terminal-5.1.1" = {
@@ -44237,13 +44210,13 @@ let
sha512 = "ITSHjwVaby1Li738sxhF48sLTxcNyUAoWfoqyztL1f7J6JOLpHOuQPNLBb6lxGPUA0u7xP9IRULgvod0dKu35A==";
};
};
- "mermaid-9.1.1" = {
+ "mermaid-9.1.2" = {
name = "mermaid";
packageName = "mermaid";
- version = "9.1.1";
+ version = "9.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/mermaid/-/mermaid-9.1.1.tgz";
- sha512 = "2RVD+WkzZ4VDyO9gQvQAuQ/ux2gLigJtKDTlbwjYqOR/NwsVzTSfGm/kx648/qWJsg6Sv04tE9BWCO8s6a+pFA==";
+ url = "https://registry.npmjs.org/mermaid/-/mermaid-9.1.2.tgz";
+ sha512 = "RVf3hBKqiMfyORHboCaEjOAK1TomLO50hYRPvlTrZCXlCniM5pRpe8UlkHBjjpaLtioZnbdYv/vEVj7iKnwkJQ==";
};
};
"meros-1.1.4" = {
@@ -47433,6 +47406,15 @@ let
sha512 = "olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==";
};
};
+ "node-gyp-9.0.0" = {
+ name = "node-gyp";
+ packageName = "node-gyp";
+ version = "9.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-9.0.0.tgz";
+ sha512 = "Ma6p4s+XCTPxCuAMrOA/IJRmVy16R8Sdhtwl4PrCr7IBlj4cPawF0vg/l7nOT1jPbuNS7lIRJpBSvVsXwEZuzw==";
+ };
+ };
"node-gyp-build-4.1.1" = {
name = "node-gyp-build";
packageName = "node-gyp-build";
@@ -50485,15 +50467,6 @@ let
sha512 = "8EKVBxCRSvLnsX1p2LlSFSH3c2/wuhY9/BXXWu8boL78FbVKqn2L5SpURt1x5iw6Gq8PTqJ7MdPoe5nCtX3I+g==";
};
};
- "paid-services-3.16.0" = {
- name = "paid-services";
- packageName = "paid-services";
- version = "3.16.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/paid-services/-/paid-services-3.16.0.tgz";
- sha512 = "1NJojLf8qLulTuhO//XqpQWsK/cE/kMrM0hmX6ggToOWJQC+5wSiqwjlaAKRARLwX/uAMOpCTlm3n/EoBrEuQA==";
- };
- };
"paid-services-3.16.2" = {
name = "paid-services";
packageName = "paid-services";
@@ -51349,13 +51322,13 @@ let
sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==";
};
};
- "path-loader-1.0.10" = {
+ "path-loader-1.0.12" = {
name = "path-loader";
packageName = "path-loader";
- version = "1.0.10";
+ version = "1.0.12";
src = fetchurl {
- url = "https://registry.npmjs.org/path-loader/-/path-loader-1.0.10.tgz";
- sha512 = "CMP0v6S6z8PHeJ6NFVyVJm6WyJjIwFvyz2b0n2/4bKdS/0uZa/9sKUlYZzubrn3zuDRU0zIuEDX9DZYQ2ZI8TA==";
+ url = "https://registry.npmjs.org/path-loader/-/path-loader-1.0.12.tgz";
+ sha512 = "n7oDG8B+k/p818uweWrOixY9/Dsr89o2TkCm6tOTex3fpdo2+BFDgR+KpB37mGKBRsBAlR8CIJMFN0OEy/7hIQ==";
};
};
"path-parse-1.0.7" = {
@@ -53365,13 +53338,13 @@ let
sha512 = "vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==";
};
};
- "prettier-2.6.2" = {
+ "prettier-2.7.0" = {
name = "prettier";
packageName = "prettier";
- version = "2.6.2";
+ version = "2.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz";
- sha512 = "PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==";
+ url = "https://registry.npmjs.org/prettier/-/prettier-2.7.0.tgz";
+ sha512 = "nwoX4GMFgxoPC6diHvSwmK/4yU8FFH3V8XWtLQrbj4IBsK2pkYhG4kf/ljF/haaZ/aii+wNJqISrCDPgxGWDVQ==";
};
};
"prettier-bytes-1.0.4" = {
@@ -54013,13 +53986,13 @@ let
sha512 = "vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==";
};
};
- "proto3-json-serializer-0.1.9" = {
+ "proto3-json-serializer-1.0.2" = {
name = "proto3-json-serializer";
packageName = "proto3-json-serializer";
- version = "0.1.9";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-0.1.9.tgz";
- sha512 = "A60IisqvnuI45qNRygJjrnNjX2TMdQGMY+57tR3nul3ZgO2zXkR9OGR8AXxJhkqx84g0FTnrfi3D5fWMSdANdQ==";
+ url = "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-1.0.2.tgz";
+ sha512 = "wHxf8jYZ/LUP3M7XmULDKnbxBn+Bvk6SM+tDCPVTp9vraIzUi9hHsOBb1n2Y0VV0ukx4zBN/2vzMQYs4KWwRpg==";
};
};
"protobufjs-3.8.2" = {
@@ -54040,15 +54013,6 @@ let
sha512 = "yvAslS0hNdBhlSKckI4R1l7wunVilX66uvrjzE4MimiAt7/qw1nLpMhZrn/ObuUTM/c3Xnfl01LYMdcSJe6dwg==";
};
};
- "protobufjs-6.11.2" = {
- name = "protobufjs";
- packageName = "protobufjs";
- version = "6.11.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.2.tgz";
- sha512 = "4BQJoPooKJl2G9j3XftkIXjoC9C0Av2NOrWmbLWT1vH32GcSUHjM0Arra6UfTsVyfMAuFzaLucXn1sadxJydAw==";
- };
- };
"protobufjs-6.11.3" = {
name = "protobufjs";
packageName = "protobufjs";
@@ -54184,15 +54148,6 @@ let
sha512 = "0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==";
};
};
- "psbt-2.0.0" = {
- name = "psbt";
- packageName = "psbt";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/psbt/-/psbt-2.0.0.tgz";
- sha512 = "V3RueLeXhP/WZETCtUxFn9aaEjHKdJIp2jir1rgK3iU0fV4hC0f45wDRDrrtcFHIUyvudgzhg6Bcgr8cGaWXlA==";
- };
- };
"psbt-2.0.1" = {
name = "psbt";
packageName = "psbt";
@@ -55138,13 +55093,13 @@ let
sha512 = "U1uufzBjz3+PkpCxFrWzh4OrMIdIb2ztzCu0YEPfRHjHswcSwHZswnK+WdsOQJsRV8WeTg3jLhJR4D867+fjsA==";
};
};
- "puppeteer-14.3.0" = {
+ "puppeteer-14.4.0" = {
name = "puppeteer";
packageName = "puppeteer";
- version = "14.3.0";
+ version = "14.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/puppeteer/-/puppeteer-14.3.0.tgz";
- sha512 = "pDtg1+vyw1UPIhUjh2/VW1HUdQnaZJHfMacrJciR3AVm+PBiqdCEcFeFb3UJ/CDEQlHOClm3/WFa7IjY25zIGg==";
+ url = "https://registry.npmjs.org/puppeteer/-/puppeteer-14.4.0.tgz";
+ sha512 = "hAXoJX7IAmnRBwf4VrowoRdrS8hqWZsGuQ1Dg5R0AwDK5juaxnNO/obySo9+ytyF7pp9/VsmIA9yFE1GLSouCQ==";
};
};
"purest-3.1.0" = {
@@ -55219,13 +55174,13 @@ let
sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==";
};
};
- "pyright-1.1.253" = {
+ "pyright-1.1.254" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.253";
+ version = "1.1.254";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.253.tgz";
- sha512 = "z5Ou+Gj5V6TE0ysukdAeujUuKleIwoy32SrtcxWgVcVm+2i8HqPq3AZcLvnKmzK5mL4NC/hP/3uWTmZDrxs6iA==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.254.tgz";
+ sha512 = "YDbIqr55EkwRCFSVjWxj8KOwBTMVK1U3HLLdqp+W3n+88S31YbRERrCni9izmtt5i4wnuhf7oRI/9K8KwLxmgQ==";
};
};
"q-0.9.7" = {
@@ -55435,6 +55390,15 @@ let
sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==";
};
};
+ "qs-6.9.3" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.9.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-6.9.3.tgz";
+ sha512 = "EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw==";
+ };
+ };
"qs-6.9.6" = {
name = "qs";
packageName = "qs";
@@ -56056,13 +56020,13 @@ let
sha512 = "wuygyq8TXUlSdVXv2kigXxQNOgdb9m7LbIjwfTNGSpaY1riLd5e+VeQjlQMyUtrk0oiyhi1AqIVynworl3qxHA==";
};
};
- "re2-1.17.4" = {
+ "re2-1.17.7" = {
name = "re2";
packageName = "re2";
- version = "1.17.4";
+ version = "1.17.7";
src = fetchurl {
- url = "https://registry.npmjs.org/re2/-/re2-1.17.4.tgz";
- sha512 = "xyZ4h5PqE8I9tAxTh3G0UttcK5ufrcUxReFjGzfX61vtanNbS1XZHjnwRSyPcLgChI4KLxVgOT/ioZXnUAdoTA==";
+ url = "https://registry.npmjs.org/re2/-/re2-1.17.7.tgz";
+ sha512 = "X8GSuiBoVWwcjuppqSjsIkRxNUKDdjhkO9SBekQbZ2ksqWUReCy7DQPWOVpoTnpdtdz5PIpTTxTFzvJv5UMfjA==";
};
};
"reachdown-1.1.0" = {
@@ -56632,6 +56596,15 @@ let
sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==";
};
};
+ "readable-stream-4.0.0" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-4.0.0.tgz";
+ sha512 = "Mf7ilWBP6AV3tF3MjtBrHMH3roso7wIrpgzCwt9ybvqiJQVWIEBMnp/W+S//yvYSsUUi2cJIwD7q7m57l0AqZw==";
+ };
+ };
"readable-web-to-node-stream-2.0.0" = {
name = "readable-web-to-node-stream";
packageName = "readable-web-to-node-stream";
@@ -58720,13 +58693,13 @@ let
sha512 = "bkzdIZ5Xyim12j0jq6CQAHpfdsa2VqieWF6eN8vT2MXxCxLAZhgVUyu5EEMevJyXML+XWTxVbZ7mLaKx5F/DZw==";
};
};
- "retry-request-4.2.2" = {
+ "retry-request-5.0.1" = {
name = "retry-request";
packageName = "retry-request";
- version = "4.2.2";
+ version = "5.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/retry-request/-/retry-request-4.2.2.tgz";
- sha512 = "xA93uxUD/rogV7BV59agW/JHPGXeREMWiZc9jhcwY4YdZ7QOtC7qbomYg0n4wyk2lJhggjvKvhNX8wln/Aldhg==";
+ url = "https://registry.npmjs.org/retry-request/-/retry-request-5.0.1.tgz";
+ sha512 = "lxFKrlBt0OZzCWh/V0uPEN0vlr3OhdeXnpeY5OES+ckslm791Cb1D5P7lJUSnY7J5hiCjcyaUGmzCnIGDCUBig==";
};
};
"reusify-1.0.4" = {
@@ -62318,7 +62291,7 @@ let
src = fetchgit {
url = "https://github.com/mapbox/node-sqlite3.git";
rev = "918052b538b0effe6c4a44c74a16b2749c08a0d2";
- sha256 = "6950459a4c59b28b1126d52e67e722a5d1150fbacfeedb7a9dfa46778a168a04";
+ sha256 = "79cf7a499a735eb60c3c95619569910162018df8698ff5c43b37386634e8075f";
};
};
"sqlstring-2.3.1" = {
@@ -64391,6 +64364,15 @@ let
sha512 = "FT3QLMasz0YyCd4uIi5HNe+3t/onxMyEho7C3PSqmti3Twgy2rXT4fmkTz6wRL6bTF4uzPcfkUCa8u4JWHw8Ag==";
};
};
+ "superagent-7.1.6" = {
+ name = "superagent";
+ packageName = "superagent";
+ version = "7.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/superagent/-/superagent-7.1.6.tgz";
+ sha512 = "gZkVCQR1gy/oUXr+kxJMLDjla434KmSOKbx5iGD30Ql+AkJQ/YlPKECJy2nhqOsHLjGHzoDTXNSjhnvWhzKk7g==";
+ };
+ };
"superagent-proxy-2.1.0" = {
name = "superagent-proxy";
packageName = "superagent-proxy";
@@ -64877,13 +64859,13 @@ let
sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==";
};
};
- "systeminformation-5.11.16" = {
+ "systeminformation-5.11.20" = {
name = "systeminformation";
packageName = "systeminformation";
- version = "5.11.16";
+ version = "5.11.20";
src = fetchurl {
- url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.11.16.tgz";
- sha512 = "/a1VfP9WELKLT330yhAHJ4lWCXRYynel1kMMHKc/qdzCgDt3BIcMlo+3tKcTiRHFefjV3fz4AvqMx7dGO/72zw==";
+ url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.11.20.tgz";
+ sha512 = "7PTbNtcTBKIdUJ8zY7KeHH0lUArh5IgkJhunWYtaVPQXU1N+9Pk4Ko2Adb3w4qgB6Zmm70SvX6zxnnzca+0j4A==";
};
};
"sywac-1.3.0" = {
@@ -65940,15 +65922,6 @@ let
sha512 = "FmqJZGduTyvsr2cF3375fqGHUovSwDi/QytexX1Se4BPuPZpTE5Ftp5fg+EFSuEf3lhZqgCRjEG3ydUQ/aNiwA==";
};
};
- "tiny-secp256k1-2.2.0" = {
- name = "tiny-secp256k1";
- packageName = "tiny-secp256k1";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tiny-secp256k1/-/tiny-secp256k1-2.2.0.tgz";
- sha512 = "2hPuUGCroLrxh6xxwoe+1RgPpOOK1w2uTnhgiHBpvoutBR+krNuT4hOXQyOaaYnZgoXBB6hBYkuAJHxyeBOPzQ==";
- };
- };
"tiny-secp256k1-2.2.1" = {
name = "tiny-secp256k1";
packageName = "tiny-secp256k1";
@@ -67164,15 +67137,6 @@ let
sha512 = "RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==";
};
};
- "tweetsodium-0.0.5" = {
- name = "tweetsodium";
- packageName = "tweetsodium";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/tweetsodium/-/tweetsodium-0.0.5.tgz";
- sha512 = "T3aXZtx7KqQbutTtBfn+P5By3HdBuB1eCoGviIrRJV2sXeToxv2X2cv5RvYqgG26PSnN5m3fYixds22Gkfd11w==";
- };
- };
"twig-1.15.4" = {
name = "twig";
packageName = "twig";
@@ -67389,6 +67353,15 @@ let
sha512 = "lPfAm42MxE4/456+QyIaaVBAwgpJb6xZ8PRu09utnhPdWwcyj9vgy6Sq0Z5yNbJ21EdxB5dRU/Qg8bsyAMtlcw==";
};
};
+ "type-fest-2.13.1" = {
+ name = "type-fest";
+ packageName = "type-fest";
+ version = "2.13.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-fest/-/type-fest-2.13.1.tgz";
+ sha512 = "hXYyrPFwETT2swFLHeoKtJrvSF/ftG/sA15/8nGaLuaDGfVAaq8DYFpu4yOyV4tzp082WqnTEoMsm3flKMI2FQ==";
+ };
+ };
"type-is-1.6.18" = {
name = "type-is";
packageName = "type-is";
@@ -67821,15 +67794,6 @@ let
sha512 = "mliiCSrsE29aNBI7O9W5gGv6WmA9kBR8PtTt6Apaxns076IRdYrrtFhXHEWMj5CSum3U7cv7/pi4xmi4XsIOqg==";
};
};
- "uint8array-tools-0.0.6" = {
- name = "uint8array-tools";
- packageName = "uint8array-tools";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/uint8array-tools/-/uint8array-tools-0.0.6.tgz";
- sha512 = "aIvEHNRX1AlOYAr6qSUjQBn4mCduxx6MtC967aRDTb2UUBPj0Ix2ZFQDcmXUUO/UxRPHcw1f5a5nVbCSKDSOqA==";
- };
- };
"uint8array-tools-0.0.7" = {
name = "uint8array-tools";
packageName = "uint8array-tools";
@@ -68028,13 +67992,13 @@ let
sha512 = "UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==";
};
};
- "undici-5.4.0" = {
+ "undici-5.5.1" = {
name = "undici";
packageName = "undici";
- version = "5.4.0";
+ version = "5.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/undici/-/undici-5.4.0.tgz";
- sha512 = "A1SRXysDg7J+mVP46jF+9cKANw0kptqSFZ8tGyL+HBiv0K1spjxPX8Z4EGu+Eu6pjClJUBdnUPlxrOafR668/g==";
+ url = "https://registry.npmjs.org/undici/-/undici-5.5.1.tgz";
+ sha512 = "MEvryPLf18HvlCbLSzCW0U00IMftKGI5udnjrQbC5D4P0Hodwffhv+iGfWuJwg16Y/TK11ZFK8i+BPVW2z/eAw==";
};
};
"unherit-1.1.3" = {
@@ -69384,7 +69348,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
- sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
+ sha512 = "EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==";
};
};
"util.promisify-1.0.0" = {
@@ -69456,7 +69420,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz";
- sha1 = "9f95710f50a267947b2ccc124741c1028427e713";
+ sha512 = "pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==";
};
};
"utp-0.0.7" = {
@@ -69465,7 +69429,7 @@ let
version = "0.0.7";
src = fetchurl {
url = "https://registry.npmjs.org/utp/-/utp-0.0.7.tgz";
- sha1 = "ae43eb7745f5fe63dcc2f277cb4164ad27087f30";
+ sha512 = "2ZLjisH0HQkpqZTg2m7TK0Yn7TETTg7DxM0EpCKIIIV2ky9w9nSxW5a7gzdk4nH2h+pomrrGw0uywrUJfsm2eA==";
};
};
"utp-native-2.5.3" = {
@@ -69654,7 +69618,7 @@ let
version = "1.0.9";
src = fetchurl {
url = "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz";
- sha1 = "1c14479b40f1397a75782f115e4086447433a200";
+ sha512 = "QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==";
};
};
"validate-glob-opts-1.0.2" = {
@@ -69681,7 +69645,7 @@ let
version = "3.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz";
- sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
+ sha512 = "M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==";
};
};
"validate-npm-package-name-4.0.0" = {
@@ -69735,7 +69699,7 @@ let
version = "3.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz";
- sha1 = "1c243a50b595c1be54a754bfece8563b9ff8d813";
+ sha512 = "jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==";
};
};
"value-or-promise-1.0.11" = {
@@ -69762,7 +69726,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/variable-diff/-/variable-diff-1.1.0.tgz";
- sha1 = "d2bd5c66db76c13879d96e6a306edc989df978da";
+ sha512 = "0Jk/MsCNtL/fCuVIbsLxwXpABGZCzN57btcPbSsjOOAwkdHJ3Y58fo8BoUfG7jghnvglbwo+5Hk1KOJ2W2Ormw==";
};
};
"varint-4.0.1" = {
@@ -69771,7 +69735,7 @@ let
version = "4.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/varint/-/varint-4.0.1.tgz";
- sha1 = "490829b942d248463b2b35097995c3bf737198e9";
+ sha512 = "vu4cpCqZHA4u77jWdOZlXtXHJofIIyq51DtzstbrvI9e1I1ELseAJLxYr47N/DdLPFGfYMLY1HqAURSTKKJ6ww==";
};
};
"varint-5.0.0" = {
@@ -69780,7 +69744,7 @@ let
version = "5.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/varint/-/varint-5.0.0.tgz";
- sha1 = "d826b89f7490732fabc0c0ed693ed475dcb29ebf";
+ sha512 = "gC13b/bWrqQoKY2EmROCZ+AR0jitc6DnDGaQ6Ls9QpKmuSgJB1eQ7H3KETtQm7qSdMWMKCmsshyCmUwMLh3OAA==";
};
};
"varint-5.0.2" = {
@@ -69807,7 +69771,7 @@ let
version = "1.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz";
- sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc";
+ sha512 = "BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==";
};
};
"vasync-1.4.3" = {
@@ -69816,7 +69780,7 @@ let
version = "1.4.3";
src = fetchurl {
url = "https://registry.npmjs.org/vasync/-/vasync-1.4.3.tgz";
- sha1 = "c86d52e2b71613d29eedf159f3135dbe749cee37";
+ sha512 = "GHLh6i4OfvQgc3KeznwMtw45I+fTyYYCyD1fOngn9Q5wURmwKuX95C8VunSn267KAX8Pg200hkgZPgTwBwMLyQ==";
};
};
"vasync-1.6.2" = {
@@ -69825,7 +69789,7 @@ let
version = "1.6.2";
src = fetchurl {
url = "https://registry.npmjs.org/vasync/-/vasync-1.6.2.tgz";
- sha1 = "568edcf40b2b5c35b1cc048cad085de4739703fb";
+ sha512 = "wRXkN7O5REJ3vlYYb3DKD+yRrNdXG3LEsxUgZCJEz/uguoq26jzcqt+7cozBC8GSCAxj56YtHuualN5Rz+Hi3g==";
};
};
"vasync-1.6.3" = {
@@ -69834,7 +69798,7 @@ let
version = "1.6.3";
src = fetchurl {
url = "https://registry.npmjs.org/vasync/-/vasync-1.6.3.tgz";
- sha1 = "4a69d7052a47f4ce85503d7641df1cbf40432a94";
+ sha512 = "yeYyCFquU8aXjAZwKfgMpkwW1Wj9Ea/G/SG5dUTN07WNu8chJ4dAkYFXqOylIlpHNt/EobdQpiQNDNMzq1/EQw==";
};
};
"vasync-1.6.4" = {
@@ -69843,7 +69807,7 @@ let
version = "1.6.4";
src = fetchurl {
url = "https://registry.npmjs.org/vasync/-/vasync-1.6.4.tgz";
- sha1 = "dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f";
+ sha512 = "3oQMomVgQgHzNe5iKuT8PGOhMCQcg1wfh00Nh/Kl39ERdTlw/uNS7kbrhEraDMDKWHdDdc0iBFahPEd/Ft2b+A==";
};
};
"vasync-2.2.1" = {
@@ -70149,7 +70113,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/verror/-/verror-1.1.0.tgz";
- sha1 = "2a4b4eb14a207051e75a6f94ee51315bf173a1b0";
+ sha512 = "5X/HjC1yBdrpYrQvjUC55HB1CuRPyk1b+Fz0Rpp60fhQR9aE4hcjnRwFfPNF7SNwoCb5fMrjGHr7Gla0zUerXA==";
};
};
"verror-1.10.0" = {
@@ -70158,7 +70122,7 @@ let
version = "1.10.0";
src = fetchurl {
url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
- sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
+ sha512 = "ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==";
};
};
"verror-1.10.1" = {
@@ -70176,7 +70140,7 @@ let
version = "1.3.3";
src = fetchurl {
url = "https://registry.npmjs.org/verror/-/verror-1.3.3.tgz";
- sha1 = "8a6a4ac3a8c774b6f687fece49bdffd78552e2cd";
+ sha512 = "FRyhVjZX8Hy5Mlmvo4YbbN3V8KaagA6W6Xc3kNOtIQqd3DohGqQzqie1NDVfZbZuWZjCTF0E5PNUqQZ5BVqdew==";
};
};
"verror-1.3.6" = {
@@ -70185,7 +70149,7 @@ let
version = "1.3.6";
src = fetchurl {
url = "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz";
- sha1 = "cff5df12946d297d2baaefaa2689e25be01c005c";
+ sha512 = "i8GFYwImt5D5B8CPpi2jrDTy/faq4OEW+NkOTLSKcIdPfdYJvWv3VZddDKl0ByvBe6cJ2s5Mm2XDtv5c2pj/Eg==";
};
};
"verror-1.6.0" = {
@@ -70194,7 +70158,7 @@ let
version = "1.6.0";
src = fetchurl {
url = "https://registry.npmjs.org/verror/-/verror-1.6.0.tgz";
- sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5";
+ sha512 = "bIOaZx4+Bf6a7sIORfmYnyKLDLk/lhVym6rjYlq+vkitYKnhFmUpmPpDTCltWFrUTlGKs6sCeoDWfMA0oOOneA==";
};
};
"vfile-1.4.0" = {
@@ -70203,7 +70167,7 @@ let
version = "1.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/vfile/-/vfile-1.4.0.tgz";
- sha1 = "c0fd6fa484f8debdb771f68c31ed75d88da97fe7";
+ sha512 = "7Fz639rwERslMqQCuf1/0H4Tqe2q484Xl6X/jsKqrP7IjFcDODFURhv0GekMnImpbj9pTOojtqL7r39LJJkjGA==";
};
};
"vfile-3.0.1" = {
@@ -70224,13 +70188,13 @@ let
sha512 = "O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==";
};
};
- "vfile-5.3.3" = {
+ "vfile-5.3.4" = {
name = "vfile";
packageName = "vfile";
- version = "5.3.3";
+ version = "5.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/vfile/-/vfile-5.3.3.tgz";
- sha512 = "xwALvwUKmXzHOri5dGXqXNN8JDEvxPhf8avC+E+pJEl32e4/grLdRdsgx23HpK7QI0cwgR4+QfaM8D5KUnki3g==";
+ url = "https://registry.npmjs.org/vfile/-/vfile-5.3.4.tgz";
+ sha512 = "KI+7cnst03KbEyN1+JE504zF5bJBZa+J+CrevLeyIMq0aPU681I2rQ5p4PlnQ6exFtWiUrg26QUdFMnAKR6PIw==";
};
};
"vfile-find-down-1.0.0" = {
@@ -70239,7 +70203,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/vfile-find-down/-/vfile-find-down-1.0.0.tgz";
- sha1 = "84a4d66d03513f6140a84e0776ef0848d4f0ad95";
+ sha512 = "AOXiJrVKizToYfRosXd1p9Fq8b0u0qchvSwVF1/ue3JE7o7KuQ/UH24bNAPLDUG/RIM1DZ6zWtDsiLShcma4WA==";
};
};
"vfile-find-up-1.0.0" = {
@@ -70248,7 +70212,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/vfile-find-up/-/vfile-find-up-1.0.0.tgz";
- sha1 = "5604da6fe453b34350637984eb5fe4909e280390";
+ sha512 = "t97P/jQswvX0n//+RB74Wj43VOg3tel2InzaJYryaBewd4uN4pNXuoH/F00PkI3U1fBp+w/SIyrTjzIzPwDODg==";
};
};
"vfile-find-up-5.0.1" = {
@@ -70320,7 +70284,7 @@ let
version = "1.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/vfile-reporter/-/vfile-reporter-1.5.0.tgz";
- sha1 = "21a7009bfe55e24df8ff432aa5bf6f6efa74e418";
+ sha512 = "VFF1LK0O8/nLmrPcc+5VMEnyP21BTzdVoq1rbxTaVt6cmSVk5MQs1POhkfY/cctndmZheNgirTcAMoiKj3aJYA==";
};
};
"vfile-reporter-5.1.2" = {
@@ -70365,7 +70329,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/vfile-sort/-/vfile-sort-1.0.0.tgz";
- sha1 = "17ee491ba43e8951bb22913fcff32a7dc4d234d4";
+ sha512 = "6qIalNEKUt2YyVFzyJptdEo9sm/pMrSKvOJ35lH4us9YeW08zRs3E9VbdJ0O0n2Thxc1TWINP5QVhucy/YiGPA==";
};
};
"vfile-sort-2.2.2" = {
@@ -70437,7 +70401,7 @@ let
version = "0.5.3";
src = fetchurl {
url = "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz";
- sha1 = "b0455b38fc5e0cf30d4325132e461970c2091cde";
+ sha512 = "P5zdf3WB9uzr7IFoVQ2wZTmUwHL8cMZWJGzLBNCHNZ3NB6HTMsYABtt7z8tAGIINLXyAob9B9a1yzVGMFOYKEA==";
};
};
"vinyl-2.2.1" = {
@@ -70455,7 +70419,7 @@ let
version = "3.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/vinyl-file/-/vinyl-file-3.0.0.tgz";
- sha1 = "b104d9e4409ffa325faadd520642d0a3b488b365";
+ sha512 = "BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==";
};
};
"vinyl-fs-3.0.3" = {
@@ -70473,7 +70437,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz";
- sha1 = "92a800593a38703a8cdb11d8b300ad4be63b3e16";
+ sha512 = "NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==";
};
};
"vizion-2.2.1" = {
@@ -70545,7 +70509,7 @@ let
version = "2.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz";
- sha1 = "c066afb582bb1cb4128d60ea92392e94d5e9dbec";
+ sha512 = "qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==";
};
};
"void-elements-3.1.0" = {
@@ -70554,7 +70518,7 @@ let
version = "3.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz";
- sha1 = "614f7fbf8d801f0bb5f0661f5b2f5785750e4f09";
+ sha512 = "Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==";
};
};
"vsce-1.88.0" = {
@@ -70725,7 +70689,7 @@ let
version = "3.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.5.0.tgz";
- sha1 = "87239d9e166b2d7352245b8a813597804c1d63aa";
+ sha512 = "LeE9LS1IOIRDZy5Xugrbk2tKeMa64vkRODrXPZbwyn2l/Q0e/jyYq8ze/Lo96sjOFiRe3HHbTVN39Ta8KN2RpA==";
};
};
"vscode-jsonrpc-3.6.0" = {
@@ -71103,7 +71067,7 @@ let
version = "3.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.5.0.tgz";
- sha1 = "e48d79962f0b8e02de955e3f524908e2b19c0374";
+ sha512 = "D4rUfu/oKYdc9Tmec0nEfedj+uXO2tZHR+eoHs9rE9G/QpRyZaHuug8ZUNGTGdO+ALLGgenL6bRpY8y3J9acHg==";
};
};
"vscode-nls-2.0.2" = {
@@ -71112,7 +71076,7 @@ let
version = "2.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/vscode-nls/-/vscode-nls-2.0.2.tgz";
- sha1 = "808522380844b8ad153499af5c3b03921aea02da";
+ sha512 = "xK4p7Wksahb1imTwJZeA7+OSobDlRkWYWBuz9eR6LyJRLLG4LBxvLvZF8GO1ZY1tUWHITjZn2BtA8nRufKdHSg==";
};
};
"vscode-nls-3.2.5" = {
@@ -71157,7 +71121,7 @@ let
version = "1.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.3.tgz";
- sha1 = "631bdbf716dccab0e65291a8dc25c23232085a52";
+ sha512 = "UU2mUJfedXt88AuhOj8vSkyWYiusf+zVdaFTme1C6l4k3ja8teTYpRt7C6wToIq7Jnph1fGYYmsaLQuqI+B46g==";
};
};
"vscode-uri-1.0.8" = {
@@ -71193,7 +71157,7 @@ let
version = "0.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/vstream/-/vstream-0.1.0.tgz";
- sha1 = "13587190f34e72ba7a07ebbaa7e70ac147b1fb7d";
+ sha512 = "WHV31NZp7EP0JHFPWzhuHuo4+MaHcrTyZZucsCW+wFuF3OQ3mJsOBSfJTqkG53ZN1jdjkfxitbOFLy8pNyKyDA==";
};
};
"vt-pbf-3.1.3" = {
@@ -71382,7 +71346,7 @@ let
version = "1.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/vuvuzela/-/vuvuzela-1.0.3.tgz";
- sha1 = "3be145e58271c73ca55279dd851f12a682114b0b";
+ sha512 = "Tm7jR1xTzBbPW+6y1tknKiEhz04Wf/1iZkcTJjSFcpNko43+dFW6+OOeQe9taJIug3NdfUAjFKgUSyQrIKaDvQ==";
};
};
"w3c-hr-time-1.0.2" = {
@@ -71454,7 +71418,7 @@ let
version = "1.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/ware/-/ware-1.3.0.tgz";
- sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4";
+ sha512 = "Y2HUDMktriUm+SR2gZWxlrszcgtXExlhQYZ8QJNYbl22jum00KIUcHJ/h/sdAXhWTJcbSkiMYN9Z2tWbWYSrrw==";
};
};
"warning-4.0.3" = {
@@ -71508,7 +71472,7 @@ let
version = "0.3.4";
src = fetchurl {
url = "https://registry.npmjs.org/watershed/-/watershed-0.3.4.tgz";
- sha1 = "79331f666366b3b1c6ab02ceb04bad8dd2eebb0c";
+ sha512 = "/lRBpLn2TvEwrIW5i35ZCpb+SIq4VWq4c1yxN311we+E4eXRW7EB5nybrv4fJEuBmgqyqVkT2gtQ6Zqu+u66mA==";
};
};
"wavedrom-2.9.1" = {
@@ -71544,7 +71508,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz";
- sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8";
+ sha512 = "XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==";
};
};
"weak-lru-cache-1.2.2" = {
@@ -71562,7 +71526,7 @@ let
version = "0.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/weasel-words/-/weasel-words-0.1.1.tgz";
- sha1 = "7137946585c73fe44882013853bd000c5d687a4e";
+ sha512 = "rWkTAGqs4TN6qreS06+irmFUMrQVx5KoFjD8CxMHUsAwmxw/upDcfleaEYOLsonUbornahg+VJ9xrWxp4udyJA==";
};
};
"web-encoding-1.1.5" = {
@@ -71679,7 +71643,7 @@ let
version = "2.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-2.0.1.tgz";
- sha1 = "3bf8258f7d318c7443c36f2e169402a1a6703506";
+ sha512 = "OZ7I/f0sM+T28T2/OXinNGfmvjm3KKptdyQy8NPRZyLfYBn+9vt72Bfr+uQaE9OvWyxJjQ5kHFygH2wOTUb76g==";
};
};
"webidl-conversions-3.0.1" = {
@@ -71688,7 +71652,7 @@ let
version = "3.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz";
- sha1 = "24534275e2a7bc6be7bc86611cc16ae0a5654871";
+ sha512 = "2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==";
};
};
"webidl-conversions-4.0.2" = {
@@ -71790,13 +71754,13 @@ let
sha512 = "7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==";
};
};
- "webpack-cli-4.9.2" = {
+ "webpack-cli-4.10.0" = {
name = "webpack-cli";
packageName = "webpack-cli";
- version = "4.9.2";
+ version = "4.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.2.tgz";
- sha512 = "m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==";
+ url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz";
+ sha512 = "NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==";
};
};
"webpack-dev-middleware-3.7.3" = {
@@ -71931,7 +71895,7 @@ let
version = "0.6.5";
src = fetchurl {
url = "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz";
- sha1 = "5cb2556ceb85f4373c6d8238aa691c8454e13a36";
+ sha512 = "oBx6ZM1Gs5q2jwZuSN/Qxyy/fbgomV8+vqsmipaPKB/74hjHlKuM07jNmRhn4qa2AdUwsgxrltq+gaPsHgcl0Q==";
};
};
"websocket-driver-0.7.4" = {
@@ -72048,7 +72012,7 @@ let
version = "5.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz";
- sha1 = "966454e8765462e37644d3626f6742ce8b70965d";
+ sha512 = "saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==";
};
};
"whatwg-url-7.1.0" = {
@@ -72075,7 +72039,7 @@ let
version = "0.6.5";
src = fetchurl {
url = "https://registry.npmjs.org/whatwg-url-compat/-/whatwg-url-compat-0.6.5.tgz";
- sha1 = "00898111af689bb097541cd5a45ca6c8798445bf";
+ sha512 = "vbg5+JVNwGtHRI3GheZGWrcUlxF9BXHbA80dLa+2XqJjlV/BK6upoi2j8dIRW9FGPUUyaMm7Hf1pTexHnsk85g==";
};
};
"when-3.7.7" = {
@@ -72084,7 +72048,7 @@ let
version = "3.7.7";
src = fetchurl {
url = "https://registry.npmjs.org/when/-/when-3.7.7.tgz";
- sha1 = "aba03fc3bb736d6c88b091d013d8a8e590d84718";
+ sha512 = "9lFZp/KHoqH6bPKjbWqa+3Dg/K/r2v0X/3/G2x4DBGchVS2QX2VXL3cZV994WQVnTM1/PD71Az25nAzryEUugw==";
};
};
"whet.extend-0.9.9" = {
@@ -72093,7 +72057,7 @@ let
version = "0.9.9";
src = fetchurl {
url = "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz";
- sha1 = "f877d5bf648c97e5aa542fadc16d6a259b9c11a1";
+ sha512 = "mmIPAft2vTgEILgPeZFqE/wWh24SEsR/k+N9fJ3Jxrz44iDFy9aemCxdksfURSHYFCLmvs/d/7Iso5XjPpNfrA==";
};
};
"which-1.2.4" = {
@@ -72102,7 +72066,7 @@ let
version = "1.2.4";
src = fetchurl {
url = "https://registry.npmjs.org/which/-/which-1.2.4.tgz";
- sha1 = "1557f96080604e5b11b3599eb9f45b50a9efd722";
+ sha512 = "zDRAqDSBudazdfM9zpiI30Fu9ve47htYXcGi3ln0wfKu2a7SmrT6F3VDoYONu//48V8Vz4TdCRNPjtvyRO3yBA==";
};
};
"which-1.3.1" = {
@@ -72147,7 +72111,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz";
- sha1 = "bba63ca861948994ff307736089e3b96026c2a4f";
+ sha512 = "F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==";
};
};
"which-module-2.0.0" = {
@@ -72156,7 +72120,7 @@ let
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz";
- sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a";
+ sha512 = "B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==";
};
};
"which-pm-2.0.0" = {
@@ -72210,7 +72174,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/widest-line/-/widest-line-1.0.0.tgz";
- sha1 = "0c09c85c2a94683d0d7eaf8ee097d564bf0e105c";
+ sha512 = "r5vvGtqsHUHn98V0jURY4Ts86xJf6+SzK9rpWdV8/73nURB3WFPIHd67aOvPw2fSuunIyHjAUqiJ2TY0x4E5gw==";
};
};
"widest-line-2.0.1" = {
@@ -72237,7 +72201,7 @@ let
version = "2.0.6";
src = fetchurl {
url = "https://registry.npmjs.org/wif/-/wif-2.0.6.tgz";
- sha1 = "08d3f52056c66679299726fade0d432ae74b4704";
+ sha512 = "HIanZn1zmduSF+BQhkE+YXIbEiH0xPr1012QbFEGB0xsKqJii0/SqJjyn8dFv6y36kOznMgMB+LGcbZTJ1xACQ==";
};
};
"wikimedia-kad-fork-1.3.6" = {
@@ -72282,7 +72246,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/win-detect-browsers/-/win-detect-browsers-1.0.2.tgz";
- sha1 = "f45f10d141086c5d94ae14c03b2098440a7e71b0";
+ sha512 = "tmRmirrEutoOzN44OsAO9So8X/JpMrHtzxYHfcpSNTCIAf1VVcUdYvPPZY+J0hqRUnvlAr8xNYzDqTlVP8HCug==";
};
};
"window-size-0.1.0" = {
@@ -72291,7 +72255,7 @@ let
version = "0.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz";
- sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d";
+ sha512 = "1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg==";
};
};
"window-size-0.1.4" = {
@@ -72300,7 +72264,7 @@ let
version = "0.1.4";
src = fetchurl {
url = "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz";
- sha1 = "f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876";
+ sha512 = "2thx4pB0cV3h+Bw7QmMXcEbdmOzv9t0HFplJH/Lz6yu60hXYy5RT8rUu+wlIreVxWsGN20mo+MHeCSfUpQBwPw==";
};
};
"window-size-0.2.0" = {
@@ -72309,7 +72273,7 @@ let
version = "0.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz";
- sha1 = "b4315bb4214a3d7058ebeee892e13fa24d98b075";
+ sha512 = "UD7d8HFA2+PZsbKyaOCEy8gMh1oDtHgJh1LfgjQ4zVXmYjAT/kvz3PueITKuqDiIXQe7yzpPnxX3lNc+AhQMyw==";
};
};
"window-size-1.1.1" = {
@@ -72327,7 +72291,7 @@ let
version = "0.0.6";
src = fetchurl {
url = "https://registry.npmjs.org/windows-no-runnable/-/windows-no-runnable-0.0.6.tgz";
- sha1 = "91e5129088330a0fe248520cee12d1ad6bb4ddfb";
+ sha512 = "THEnZzMKBYonb45BEffK8eE5fA4LaSw3Cog/pvwjdKP8kqOZov8Fqr1RZZuSn15dyd5rHMLA0+s8q7NsPypspQ==";
};
};
"windows-release-3.3.3" = {
@@ -72354,7 +72318,7 @@ let
version = "0.0.12";
src = fetchurl {
url = "https://registry.npmjs.org/winreg/-/winreg-0.0.12.tgz";
- sha1 = "07105554ba1a9d08979251d129475bffae3006b7";
+ sha512 = "typ/+JRmi7RqP1NanzFULK36vczznSNN8kWVA9vIqXyv8GhghUlwhGp1Xj3Nms1FsPcNnsQrJOR10N58/nQ9hQ==";
};
};
"winreg-1.2.4" = {
@@ -72363,7 +72327,7 @@ let
version = "1.2.4";
src = fetchurl {
url = "https://registry.npmjs.org/winreg/-/winreg-1.2.4.tgz";
- sha1 = "ba065629b7a925130e15779108cf540990e98d1b";
+ sha512 = "IHpzORub7kYlb8A43Iig3reOvlcBJGX9gZ0WycHhghHtA65X0LYnMRuJs+aH1abVnMJztQkvQNlltnbPi5aGIA==";
};
};
"winston-0.6.2" = {
@@ -72372,7 +72336,7 @@ let
version = "0.6.2";
src = fetchurl {
url = "https://registry.npmjs.org/winston/-/winston-0.6.2.tgz";
- sha1 = "4144fe2586cdc19a612bf8c035590132c9064bd2";
+ sha512 = "BzHNq8X415XGFkGPT+ACKTj95ghSAbR4eThAtKg4OC4PYVn5FLIdTETYUv76f4QxUcG1ps6yqnbO1K/81hGIzQ==";
};
};
"winston-0.8.0" = {
@@ -72381,7 +72345,7 @@ let
version = "0.8.0";
src = fetchurl {
url = "https://registry.npmjs.org/winston/-/winston-0.8.0.tgz";
- sha1 = "61d0830fa699706212206b0a2b5ca69a93043668";
+ sha512 = "BoFzn3FEOWlq+1rDbDrbD093E3IRqukS8DYiqtY4vblIFR+5MSGUstAU228MGJa0vodiqm/iU2c8OGw6Iorx1g==";
};
};
"winston-0.8.3" = {
@@ -72390,7 +72354,7 @@ let
version = "0.8.3";
src = fetchurl {
url = "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz";
- sha1 = "64b6abf4cd01adcaefd5009393b1d8e8bec19db0";
+ sha512 = "fPoamsHq8leJ62D1M9V/f15mjQ1UHe4+7j1wpAT3fqgA5JqhJkk4aIfPEjfMTI9x6ZTjaLOpMAjluLtmgO5b6g==";
};
};
"winston-1.0.2" = {
@@ -72399,7 +72363,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/winston/-/winston-1.0.2.tgz";
- sha1 = "351c58e2323f8a4ca29a45195aa9aa3b4c35d76f";
+ sha512 = "BLxJH3KCgJ2paj2xKYTQLpxdKr9URPDDDLJnRVcbud7izT+m8Xzt5Rod6mnNgEcfT0fRvhEy2Cj3cEnnQpa6qA==";
};
};
"winston-2.1.1" = {
@@ -72408,7 +72372,7 @@ let
version = "2.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz";
- sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e";
+ sha512 = "CPXrr+LD3DBeCEAnhPYS7DYbdq8kwhnkrVY7Px0vEROil9iZWaz0VHZHg41pNcUJc+1/PDm2obR1Lb2QGto1ZQ==";
};
};
"winston-2.4.5" = {
@@ -72480,7 +72444,7 @@ let
version = "5.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/with/-/with-5.1.1.tgz";
- sha1 = "fa4daa92daf32c4ea94ed453c81f04686b575dfe";
+ sha512 = "uAnSsFGfSpF6DNhBXStvlZILfHJfJu4eUkfbRGk94kGO1Ta7bg6FwfvoOhhyHAJuFbCw+0xk4uJ3u57jLvlCJg==";
};
};
"with-7.0.2" = {
@@ -72516,7 +72480,7 @@ let
version = "0.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz";
- sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f";
+ sha512 = "xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q==";
};
};
"wordwrap-0.0.3" = {
@@ -72525,7 +72489,7 @@ let
version = "0.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz";
- sha1 = "a3d5da6cd5c0bc0008d37234bbaf1bed63059107";
+ sha512 = "1tMA907+V4QmxV7dbRvb4/8MaRALK6q9Abid3ndMYnbyo8piisCmeONVqVSXqQA3KaP4SLt5b7ud6E2sqP8TFw==";
};
};
"wordwrap-1.0.0" = {
@@ -72534,7 +72498,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz";
- sha1 = "27584810891456a4171c8d0226441ade90cbcaeb";
+ sha512 = "gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==";
};
};
"wordwrapjs-3.0.0" = {
@@ -72588,7 +72552,7 @@ let
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz";
- sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85";
+ sha512 = "vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==";
};
};
"wrap-ansi-3.0.1" = {
@@ -72597,7 +72561,7 @@ let
version = "3.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz";
- sha1 = "288a04d87eda5c286e060dfe8f135ce8d007f8ba";
+ sha512 = "iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==";
};
};
"wrap-ansi-4.0.0" = {
@@ -72651,7 +72615,7 @@ let
version = "0.1.5";
src = fetchurl {
url = "https://registry.npmjs.org/wrap-fn/-/wrap-fn-0.1.5.tgz";
- sha1 = "f21b6e41016ff4a7e31720dbc63a09016bdf9845";
+ sha512 = "xDLdGx0M8JQw9QDAC9s5NUxtg9MI09F6Vbxa2LYoSoCvzJnx2n81YMIfykmXEGsUvuLaxnblJTzhSOjUOX37ag==";
};
};
"wrapped-1.0.1" = {
@@ -72660,7 +72624,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/wrapped/-/wrapped-1.0.1.tgz";
- sha1 = "c783d9d807b273e9b01e851680a938c87c907242";
+ sha512 = "ZTKuqiTu3WXtL72UKCCnQLRax2IScKH7oQ+mvjbpvNE+NJxIWIemDqqM2GxNr4N16NCjOYpIgpin5pStM7kM5g==";
};
};
"wrappy-1.0.2" = {
@@ -72669,7 +72633,7 @@ let
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
- sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
+ sha512 = "l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==";
};
};
"write-0.2.1" = {
@@ -72678,7 +72642,7 @@ let
version = "0.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/write/-/write-0.2.1.tgz";
- sha1 = "5fc03828e264cea3fe91455476f7a3c566cb0757";
+ sha512 = "CJ17OoULEKXpA5pef3qLj5AxTJ6mSt7g84he2WIskKwqFO4T97d5V7Tadl0DYDk7qyUOQD5WlUlOMChaYrhxeA==";
};
};
"write-1.0.3" = {
@@ -72696,7 +72660,7 @@ let
version = "1.3.4";
src = fetchurl {
url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz";
- sha1 = "f807a4f0b1d9e913ae7a48112e6cc3af1991b45f";
+ sha512 = "SdrHoC/yVBPpV0Xq/mUZQIpW2sWXAShb/V4pomcJXh92RuaO+f3UTWItiR3Px+pLnV2PvC2/bfn5cwr5X6Vfxw==";
};
};
"write-file-atomic-2.4.3" = {
@@ -72768,7 +72732,7 @@ let
version = "0.4.31";
src = fetchurl {
url = "https://registry.npmjs.org/ws/-/ws-0.4.31.tgz";
- sha1 = "5a4849e7a9ccd1ed5a81aeb4847c9fedf3122927";
+ sha512 = "mWiVQ9qZGPXvLxQ4xGy58Ix5Bw0L99SB+hDT8L59bty4fbnQczaGl4YEWR7AzLQGbvPn/30r9/o41dPiSuUmYw==";
};
};
"ws-1.1.5" = {
@@ -72786,7 +72750,7 @@ let
version = "2.3.1";
src = fetchurl {
url = "https://registry.npmjs.org/ws/-/ws-2.3.1.tgz";
- sha1 = "6b94b3e447cb6a363f785eaf94af6359e8e81c80";
+ sha512 = "61a+9LgtYZxTq1hAonhX8Xwpo2riK4IOR/BIVxioFbCfc3QFKmpE4x9dLExfLHKtUfVZigYa36tThVhO57erEw==";
};
};
"ws-3.3.3" = {
@@ -72930,7 +72894,7 @@ let
version = "0.3.1";
src = fetchurl {
url = "https://registry.npmjs.org/x-default-browser/-/x-default-browser-0.3.1.tgz";
- sha1 = "7f6194154fd1786cf261e68b5488c47127a04977";
+ sha512 = "oIUX3Ck1NqMOHLOT46cZG+CuYN30BNR1QyVYWmcGWKrkSo91ftWSg8P2IIU9Hf7n7StYerI+BzGbKLsnLalwuQ==";
};
};
"x-is-array-0.1.0" = {
@@ -72939,7 +72903,7 @@ let
version = "0.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/x-is-array/-/x-is-array-0.1.0.tgz";
- sha1 = "de520171d47b3f416f5587d629b89d26b12dc29d";
+ sha512 = "goHPif61oNrr0jJgsXRfc8oqtYzvfiMJpTqwE7Z4y9uH+T3UozkGqQ4d2nX9mB9khvA8U2o/UbPOFjgC7hLWIA==";
};
};
"x-is-string-0.1.0" = {
@@ -72948,7 +72912,7 @@ let
version = "0.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz";
- sha1 = "474b50865af3a49a9c4657f05acd145458f77d82";
+ sha512 = "GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==";
};
};
"x256-0.0.2" = {
@@ -72957,7 +72921,7 @@ let
version = "0.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/x256/-/x256-0.0.2.tgz";
- sha1 = "c9af18876f7a175801d564fe70ad9e8317784934";
+ sha512 = "ZsIH+sheoF8YG9YG+QKEEIdtqpHRA9FYuD7MqhfyB1kayXU43RUNBFSxBEnF8ywSUxdg+8no4+bPr5qLbyxKgA==";
};
};
"xcase-2.0.1" = {
@@ -72966,7 +72930,7 @@ let
version = "2.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/xcase/-/xcase-2.0.1.tgz";
- sha1 = "c7fa72caa0f440db78fd5673432038ac984450b9";
+ sha512 = "UmFXIPU+9Eg3E9m/728Bii0lAIuoc+6nbrNUKaRPJOFp91ih44qqGlWtxMB6kXFrRD6po+86ksHM5XHCfk6iPw==";
};
};
"xcode-3.0.1" = {
@@ -72984,7 +72948,7 @@ let
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-2.0.0.tgz";
- sha1 = "edbc903cc385fc04523d966a335504b5504d1bd2";
+ sha512 = "NF1pPn594TaRSUO/HARoB4jK8I+rWgcpVlpQCK6/6o5PHyLUt2CSiDrpUZbQ6rROck+W2EwF8mBJcTs+W98J9w==";
};
};
"xdg-basedir-3.0.0" = {
@@ -72993,7 +72957,7 @@ let
version = "3.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz";
- sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4";
+ sha512 = "1Dly4xqlulvPD3fZUQJLY+FUIeqN3N2MM3uqe4rCJftAvOjFa3jFGfctOgluGx4ahPbUCsZkmJILiP0Vi4T6lQ==";
};
};
"xdg-basedir-4.0.0" = {
@@ -73029,7 +72993,7 @@ let
version = "0.5.1";
src = fetchurl {
url = "https://registry.npmjs.org/xenvar/-/xenvar-0.5.1.tgz";
- sha1 = "f82d2fedee63af76687b70115ce6274dc71310e9";
+ sha512 = "6f9NN4sqsq4Zu1/fFQQysuYKymdCor3fhyyhjxk6it6LXlP4vocjyFtFP5YAH8MeLI4Aozwfosrx1NsdmKy+DQ==";
};
};
"xhr-2.6.0" = {
@@ -73047,7 +73011,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz";
- sha1 = "78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5";
+ sha512 = "huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==";
};
};
"xml-crypto-0.8.5" = {
@@ -73056,7 +73020,7 @@ let
version = "0.8.5";
src = fetchurl {
url = "https://registry.npmjs.org/xml-crypto/-/xml-crypto-0.8.5.tgz";
- sha1 = "2bbcfb3eb33f3a82a218b822bf672b6b1c20e538";
+ sha512 = "bmO0+G7iSf8dldIehyokvLps0ZZpGMe3gQNa+MPOrdBZbpzUG/Ass4njwWmPKCtR4pN+N921uH4M+Uskc7g/IA==";
};
};
"xml-encryption-0.7.4" = {
@@ -73065,7 +73029,7 @@ let
version = "0.7.4";
src = fetchurl {
url = "https://registry.npmjs.org/xml-encryption/-/xml-encryption-0.7.4.tgz";
- sha1 = "42791ec64d556d2455dcb9da0a54123665ac65c7";
+ sha512 = "gwwKa9TwNT8S4dimixE+k4wsOOxK6Rt7ctxGRtuZyT7bWPvJwMTbYLLDKu7WG19vKwDMqMqGkVjbLQquKDY7pw==";
};
};
"xml-escape-1.1.0" = {
@@ -73074,7 +73038,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/xml-escape/-/xml-escape-1.1.0.tgz";
- sha1 = "3904c143fa8eb3a0030ec646d2902a2f1b706c44";
+ sha512 = "B/T4sDK8Z6aUh/qNr7mjKAwwncIljFuUP+DO/D5hloYFj+90O88z8Wf7oSucZTHxBAsC1/CTP4rtx/x1Uf72Mg==";
};
};
"xml-js-1.6.11" = {
@@ -73092,7 +73056,7 @@ let
version = "2.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-2.0.1.tgz";
- sha1 = "4d8b8f1eccd3419aa362061becef515e1e559635";
+ sha512 = "jRKe/iQYMyVJpzPH+3HL97Lgu5HrCfii+qSo+TfjKHtOnvbnvdVfMYrn9Q34YV81M2e5sviJlI6Ko9y+nByzvA==";
};
};
"xml-name-validator-3.0.0" = {
@@ -73119,7 +73083,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz";
- sha1 = "a9029e929d3dbcded169f3c6e28238d95a5d5a28";
+ sha512 = "ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==";
};
};
"xml2js-0.2.4" = {
@@ -73128,7 +73092,7 @@ let
version = "0.2.4";
src = fetchurl {
url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.4.tgz";
- sha1 = "9a5b577fa1e6cdf8923d5e1372f7a3188436e44d";
+ sha512 = "pvB3Cyt544R+GPIOuICuRkeW8J5w/D33c80t0i25Q7Y2agbKY3LM6W7b5ZE14C2wPDWtKWf2j7tbKrP6/6oPNQ==";
};
};
"xml2js-0.2.8" = {
@@ -73137,7 +73101,7 @@ let
version = "0.2.8";
src = fetchurl {
url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.8.tgz";
- sha1 = "9b81690931631ff09d1957549faf54f4f980b3c2";
+ sha512 = "ZHZBIAO55GHCn2jBYByVPHvHS+o3j8/a/qmpEe6kxO3cTnTCWC3Htq9RYJ5G4XMwMMClD2QkXA9SNdPadLyn3Q==";
};
};
"xml2js-0.4.19" = {
@@ -73164,7 +73128,7 @@ let
version = "0.0.5";
src = fetchurl {
url = "https://registry.npmjs.org/xml2tss/-/xml2tss-0.0.5.tgz";
- sha1 = "d76a310d6b8a7ba9e4825bb3d43f5427e9fe8f6e";
+ sha512 = "TOhoxozyWBTpRtNf5aS4lRbFJ/VdC/YuiOUJOJFYheifww9Wvt29MiO7Dpo09LYXxaTYHhiBVNA5S7ZVnwYDaw==";
};
};
"xmlbuilder-0.4.2" = {
@@ -73173,7 +73137,7 @@ let
version = "0.4.2";
src = fetchurl {
url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.2.tgz";
- sha1 = "1776d65f3fdbad470a08d8604cdeb1c4e540ff83";
+ sha512 = "h/+ncQQSU/iYycmI2wTN25t7RYN7O2oq9uvI+2+UObi4KcmQh/jUS4N31g5vJttQt7MODsnmBtbcll3YbNyvfw==";
};
};
"xmlbuilder-0.4.3" = {
@@ -73182,7 +73146,7 @@ let
version = "0.4.3";
src = fetchurl {
url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.3.tgz";
- sha1 = "c4614ba74e0ad196e609c9272cd9e1ddb28a8a58";
+ sha512 = "t3QW+VdXvxcy214Wf5Mvb+38RPW6EUG1RpMjjtG+esbAFh+/50PdXz1iGywefNl70DW2ucNWTXBw5buTgzDWyw==";
};
};
"xmlbuilder-11.0.1" = {
@@ -73218,7 +73182,7 @@ let
version = "2.5.2";
src = fetchurl {
url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-2.5.2.tgz";
- sha1 = "5ab88fc508ab2ff14873010b56163d3f92b19325";
+ sha512 = "KjolMh3rfQaytYw7jMYzYUbfdcW3bV3Jm4QEws72e7fo/MuEMLImppWh4Zn2QqNhEKbKW8yOwfDlVO3+lUEspA==";
};
};
"xmlbuilder-4.0.0" = {
@@ -73227,7 +73191,7 @@ let
version = "4.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.0.0.tgz";
- sha1 = "98b8f651ca30aa624036f127d11cc66dc7b907a3";
+ sha512 = "wrG9gc6hCFDd5STt+6fsjP2aGSkjkNSewH+1K6s0KVOd94vXAUyTwlxWVnMFVtLdMf+q0QRZN1z9hTOKgoEdMg==";
};
};
"xmlbuilder-9.0.7" = {
@@ -73236,7 +73200,7 @@ let
version = "9.0.7";
src = fetchurl {
url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz";
- sha1 = "132ee63d2ec5565c557e20f4c22df9aca686b10d";
+ sha512 = "7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==";
};
};
"xmlchars-2.2.0" = {
@@ -73263,7 +73227,7 @@ let
version = "0.1.19";
src = fetchurl {
url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz";
- sha1 = "631fc07776efd84118bf25171b37ed4d075a0abc";
+ sha512 = "pDyxjQSFQgNHkU+yjvoF+GXVGJU7e9EnOg/KcGMDihBIKjTsOeDYaECwC/O9bsUWKY+Sd9izfE43JXC46EOHKA==";
};
};
"xmldom-0.1.31" = {
@@ -73300,7 +73264,7 @@ let
version = "1.5.5";
src = fetchurl {
url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz";
- sha1 = "c2876b06168aadc40e57d97e81191ac8f4398b3e";
+ sha512 = "/bFPLUgJrfGUL10AIv4Y7/CUt6so9CLtB/oFxQSHseSDNNCdC6vwwKEqwLN6wNPBg9YWXAiMu8jkf6RPRS/75Q==";
};
};
"xmlhttprequest-ssl-1.6.3" = {
@@ -73345,7 +73309,7 @@ let
version = "0.0.23";
src = fetchurl {
url = "https://registry.npmjs.org/xpath/-/xpath-0.0.23.tgz";
- sha1 = "f5e8fdc6bdc7e72885b3234f40cba2669580aafa";
+ sha512 = "WHBD7+PebdFl+vGmhl/TnFLHDCTytivkerph52SF+2IUtil+lbOEK0BHHAoL+z4JOHIaF5R7Dh9VgrpnzVOFRA==";
};
};
"xpath-0.0.32" = {
@@ -73363,7 +73327,7 @@ let
version = "0.0.5";
src = fetchurl {
url = "https://registry.npmjs.org/xpath/-/xpath-0.0.5.tgz";
- sha1 = "454036f6ef0f3df5af5d4ba4a119fb75674b3e6c";
+ sha512 = "Y1Oyy8lyIDwWpmKIWBF0RZrQOP1fzE12G0ekSB1yzKPtbAdCI5sBCqBU/CAZUkKk81OXuq9tul/5lyNS+22iKg==";
};
};
"xpath.js-1.1.0" = {
@@ -73381,7 +73345,7 @@ let
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz";
- sha1 = "52a63e56ca0b84a7f3a5f3d61872f126ad7a5943";
+ sha512 = "xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==";
};
};
"xsalsa20-1.2.0" = {
@@ -73408,7 +73372,7 @@ let
version = "0.3.1";
src = fetchurl {
url = "https://registry.npmjs.org/xspfr/-/xspfr-0.3.1.tgz";
- sha1 = "f164263325ae671f53836fb210c7ddbcfda46598";
+ sha512 = "LF2/GULgkPijLxuwnLifHEXYfwRNchpUM9yvE7qBWc9XYpH/z+akAxdGwmGrydShN26xJLXtEsK6Jgg5wZxI9g==";
};
};
"xss-1.0.13" = {
@@ -73435,7 +73399,7 @@ let
version = "2.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz";
- sha1 = "6efecc2a4dad8e6962c4901b337ce7ba87b5d28b";
+ sha512 = "vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ==";
};
};
"xtend-4.0.2" = {
@@ -73489,7 +73453,7 @@ let
version = "2.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
- sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
+ sha512 = "ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==";
};
};
"yallist-3.1.1" = {
@@ -73570,7 +73534,7 @@ let
version = "0.0.8";
src = fetchurl {
url = "https://registry.npmjs.org/yaml-js/-/yaml-js-0.0.8.tgz";
- sha1 = "87cfa5a9613f48e26005420d6a8ee0da6fe8daec";
+ sha512 = "XCqDFUhDO3yhT+Rb/inT3uiC8ekx2lXHDgDeXY8V0Lgkx4yEhzhxraYQxtuajydIrx8L8KmF9OeKCDlyCjvnMQ==";
};
};
"yamljs-0.3.0" = {
@@ -73597,7 +73561,7 @@ let
version = "1.3.3";
src = fetchurl {
url = "https://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz";
- sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a";
+ sha512 = "7OGt4xXoWJQh5ulgZ78rKaqY7dNWbjfK+UKxGcIlaM2j7C4fqGchyv8CPvEWdRPrHp6Ula/YU8yGRpYGOHrI+g==";
};
};
"yargs-11.1.1" = {
@@ -73723,7 +73687,7 @@ let
version = "3.10.0";
src = fetchurl {
url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz";
- sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
+ sha512 = "QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A==";
};
};
"yargs-3.32.0" = {
@@ -73732,7 +73696,7 @@ let
version = "3.32.0";
src = fetchurl {
url = "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz";
- sha1 = "03088e9ebf9e756b69751611d2a5ef591482c995";
+ sha512 = "ONJZiimStfZzhKamYvR/xvmgW3uEkAUFSP91y2caTEPhzF6uP2JfPiVZcq66b/YR0C3uitxSV7+T1x8p5bkmMg==";
};
};
"yargs-4.7.1" = {
@@ -73741,7 +73705,7 @@ let
version = "4.7.1";
src = fetchurl {
url = "https://registry.npmjs.org/yargs/-/yargs-4.7.1.tgz";
- sha1 = "e60432658a3387ff269c028eacde4a512e438dff";
+ sha512 = "T8W8Q04y0uWmRmnbBfLTFNTpn2NdYs+pJd1G7ziRjyRFqSJhMRzIznjafyLFTcK4DIGVPVs1zyH0OoSjN/k/jw==";
};
};
"yargs-4.8.1" = {
@@ -73750,7 +73714,7 @@ let
version = "4.8.1";
src = fetchurl {
url = "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz";
- sha1 = "c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0";
+ sha512 = "LqodLrnIDM3IFT+Hf/5sxBnEGECrfdC1uIbgZeJmESCSo4HoCAaKEus8MylXHAkdacGc0ye+Qa+dpkuom8uVYA==";
};
};
"yargs-6.6.0" = {
@@ -73759,7 +73723,7 @@ let
version = "6.6.0";
src = fetchurl {
url = "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz";
- sha1 = "782ec21ef403345f830a808ca3d513af56065208";
+ sha512 = "6/QWTdisjnu5UHUzQGst+UOEuEVwIzFVGBjq3jMTFNs5WJQsH/X6nMURSaScIdF5txylr1Ao9bvbWiKi2yXbwA==";
};
};
"yargs-7.1.2" = {
@@ -73822,7 +73786,7 @@ let
version = "2.4.1";
src = fetchurl {
url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz";
- sha1 = "85568de3cf150ff49fa51825f03a8c880ddcc5c4";
+ sha512 = "9pIKIJhnI5tonzG6OnCFlz/yln8xHYcGl+pn3xR0Vzff0vzN1PbNRaelgfgRUwZ3s4i3jvxT9WhmUGL4whnasA==";
};
};
"yargs-parser-20.2.4" = {
@@ -73858,7 +73822,7 @@ let
version = "4.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz";
- sha1 = "29cceac0dc4f03c6c87b4a9f217dd18c9f74871c";
+ sha512 = "+QQWqC2xeL0N5/TE+TY6OGEqyNRM+g2/r712PDNYgiCdXYCApXf1vzfmDSLBxfGRwV+moTq/V8FnMI24JCm2Yg==";
};
};
"yargs-parser-5.0.1" = {
@@ -73876,7 +73840,7 @@ let
version = "7.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz";
- sha1 = "8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9";
+ sha512 = "WhzC+xgstid9MbVUktco/bf+KJG+Uu6vMX0LN1sLJvwmbCQVxb4D8LzogobonKycNasCZLdOzTAk1SK7+K7swg==";
};
};
"yargs-parser-9.0.2" = {
@@ -73885,7 +73849,7 @@ let
version = "9.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-9.0.2.tgz";
- sha1 = "9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077";
+ sha512 = "CswCfdOgCr4MMsT1GzbEJ7Z2uYudWyrGX8Bgh/0eyCzj/DXWdKq6a/ADufkzI1WAOIW6jYaXJvRyLhDO0kfqBw==";
};
};
"yargs-unparser-2.0.0" = {
@@ -73939,7 +73903,7 @@ let
version = "2.10.0";
src = fetchurl {
url = "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz";
- sha1 = "c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9";
+ sha512 = "p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==";
};
};
"yazl-2.5.1" = {
@@ -73957,7 +73921,7 @@ let
version = "0.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz";
- sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419";
+ sha512 = "8HFIh676uyGYP6wP13R/j6OJ/1HwJ46snpvzE7aHAN3Ryqh2yX6Xox2B4CUmTwwOIzlG3Bs7ocsP5dZH/R1Qbg==";
};
};
"yeoman-character-1.1.0" = {
@@ -73966,7 +73930,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/yeoman-character/-/yeoman-character-1.1.0.tgz";
- sha1 = "90d4b5beaf92759086177015b2fdfa2e0684d7c7";
+ sha512 = "oxzeZugaEkVJC+IHwcb+DZDb8IdbZ3f4rHax4+wtJstCx+9BAaMX+Inmp3wmGmTWftJ7n5cPqQRbo1FaV/vNXQ==";
};
};
"yeoman-doctor-5.0.0" = {
@@ -74128,7 +74092,7 @@ let
version = "1.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/zerr/-/zerr-1.0.4.tgz";
- sha1 = "62814dd799eff8361f2a228f41f705c5e19de4c9";
+ sha512 = "u3WW9JA9xNmhy3cK6iSi3uWe4XmuqPCZ+jOrngEIwYz//ZUhY6bexVFrWLcxrIDUbJeXnyJORqVYPi2YU6gA+A==";
};
};
"zip-dir-2.0.0" = {
@@ -74164,7 +74128,7 @@ let
version = "2.15.3";
src = fetchurl {
url = "https://registry.npmjs.org/zmq/-/zmq-2.15.3.tgz";
- sha1 = "66c6de82cc36b09734b820703776490a6fbbe624";
+ sha512 = "IKkS1Vn3kCLSxKtxG8xI85Xf2skxEXpBjvO/S9cF+7a8gSY+iQJXoG8HX6NM5JkjrK/awpD4nWDC/+6kIia7Og==";
};
};
"zod-1.11.17" = {
@@ -74200,7 +74164,7 @@ let
version = "4.4.2";
src = fetchurl {
url = "https://registry.npmjs.org/zxcvbn/-/zxcvbn-4.4.2.tgz";
- sha1 = "28ec17cf09743edcab056ddd8b1b06262cc73c30";
+ sha512 = "Bq0B+ixT/DMyG8kgX2xWcI5jUvCwqrMxSFam7m0lAf78nf04hv6lNCsyLYdyYTrCVMqNDY/206K7eExYCeSyUQ==";
};
};
};
@@ -74209,15 +74173,15 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "14.0.1";
+ version = "14.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-14.0.1.tgz";
- sha512 = "5NUfpHlIQ+BipsHIMHImP2bXu5nJcyr4sbs8Otf5ReCcqculJGfKwX0gYYgLfExbw1r4JtCTDggYanUcVgqkdw==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-14.0.2.tgz";
+ sha512 = "cCQr5KMLlr7JER8CtrYLBTQUT4g22CTh3f0D9cdSjpBOhmEq62ZXApbmHNgPoHrTNub+7+FwANleIuqyN7nojg==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1400.1"
- sources."@angular-devkit/core-14.0.1"
- sources."@angular-devkit/schematics-14.0.1"
+ sources."@angular-devkit/architect-0.1400.2"
+ sources."@angular-devkit/core-14.0.2"
+ sources."@angular-devkit/schematics-14.0.2"
sources."@gar/promisify-1.1.3"
sources."@npmcli/fs-1.1.1"
sources."@npmcli/git-3.0.1"
@@ -74226,7 +74190,7 @@ in
sources."@npmcli/node-gyp-2.0.0"
sources."@npmcli/promise-spawn-3.0.0"
sources."@npmcli/run-script-3.0.3"
- sources."@schematics/angular-14.0.1"
+ sources."@schematics/angular-14.0.2"
sources."@tootallnate/once-1.1.2"
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-1.1.1"
@@ -74518,7 +74482,7 @@ in
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-2.0.17"
+ sources."colorette-2.0.19"
sources."commander-8.3.0"
sources."convict-6.2.3"
sources."dateformat-4.6.3"
@@ -74633,7 +74597,7 @@ in
})
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-2.0.17"
+ sources."colorette-2.0.19"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
sources."convict-6.2.3"
@@ -74834,7 +74798,7 @@ in
dependencies = [
sources."@astrojs/svelte-language-integration-0.1.6"
sources."@astrojs/vue-language-integration-0.1.1"
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@emmetio/abbreviation-2.2.3"
sources."@emmetio/css-abbreviation-2.1.4"
sources."@emmetio/scanner-1.0.0"
@@ -75216,7 +75180,7 @@ in
sources."@tsconfig/node14-1.0.2"
sources."@tsconfig/node16-1.0.3"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."JSONStream-1.3.5"
@@ -75446,7 +75410,7 @@ in
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/normalize-package-data-2.4.1"
sources."@types/responselike-1.0.0"
sources."abort-controller-3.0.0"
@@ -75562,7 +75526,7 @@ in
sources."is-interactive-1.0.0"
sources."is-number-7.0.0"
sources."is-port-reachable-3.1.0"
- sources."is-reachable-5.2.0"
+ sources."is-reachable-5.2.1"
sources."is-stream-2.0.1"
sources."is-unicode-supported-1.2.0"
sources."is-wsl-2.2.0"
@@ -75684,7 +75648,7 @@ in
sources."tr46-0.0.3"
(sources."ts2gas-4.2.0" // {
dependencies = [
- sources."type-fest-2.13.0"
+ sources."type-fest-2.13.1"
];
})
sources."tslib-2.4.0"
@@ -75733,7 +75697,7 @@ in
sources."@hyperswarm/hypersign-2.1.1"
sources."@hyperswarm/network-2.1.0"
sources."@leichtgewicht/ip-codec-2.0.4"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."abstract-extension-3.1.1"
sources."abstract-leveldown-6.2.3"
sources."acorn-8.7.1"
@@ -75811,7 +75775,7 @@ in
sources."pump-1.0.3"
];
})
- sources."dns-packet-5.3.1"
+ sources."dns-packet-5.4.0"
sources."duplexify-3.7.1"
sources."emoji-regex-8.0.0"
sources."encoding-down-6.3.0"
@@ -76094,7 +76058,7 @@ in
sha512 = "hV1PG20mLFmYbSJvV+JIGVLUT3zzDt2snR9T7tKMBAVvGQBAfzodylbTZe+b20hNz3Max2Z4zsKVksRu71x1+A==";
};
dependencies = [
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@medable/mdctl-api-1.0.66"
sources."@medable/mdctl-api-driver-1.0.66"
sources."@medable/mdctl-axon-tools-1.0.66"
@@ -76129,7 +76093,7 @@ in
sources."@types/markdown-it-12.2.3"
sources."@types/mdurl-1.0.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/tough-cookie-2.3.8"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -76537,7 +76501,7 @@ in
sources."map-visit-1.0.0"
sources."markdown-it-12.3.2"
sources."markdown-it-anchor-8.6.4"
- sources."marked-4.0.16"
+ sources."marked-4.0.17"
sources."md5.js-1.3.5"
sources."mdurl-1.0.1"
(sources."mem-4.3.0" // {
@@ -77024,16 +76988,16 @@ in
sources."@octokit/core-3.6.0"
sources."@octokit/endpoint-6.0.12"
sources."@octokit/graphql-4.8.0"
- sources."@octokit/openapi-types-11.2.0"
- sources."@octokit/plugin-paginate-rest-2.17.0"
+ sources."@octokit/openapi-types-12.1.0"
+ sources."@octokit/plugin-paginate-rest-2.18.0"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.13.0"
+ sources."@octokit/plugin-rest-endpoint-methods-5.14.0"
sources."@octokit/plugin-retry-3.0.9"
sources."@octokit/plugin-throttling-3.6.2"
sources."@octokit/request-5.6.3"
sources."@octokit/request-error-2.1.0"
sources."@octokit/rest-18.12.0"
- sources."@octokit/types-6.34.0"
+ sources."@octokit/types-6.35.0"
sources."@sideway/address-4.1.4"
sources."@sideway/formula-3.0.0"
sources."@sideway/pinpoint-2.0.0"
@@ -77160,7 +77124,7 @@ in
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
sources."@types/json5-0.0.29"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
@@ -77199,7 +77163,7 @@ in
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.5.3"
@@ -77217,7 +77181,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enhanced-resolve-5.9.3"
@@ -77597,7 +77561,7 @@ in
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.1152.0" // {
+ (sources."aws-sdk-2.1155.0" // {
dependencies = [
sources."uuid-8.0.0"
];
@@ -77887,8 +77851,8 @@ in
sources."@apollographql/graphql-playground-html-1.6.27"
sources."@apollographql/graphql-upload-8-fork-8.1.3"
sources."@babel/code-frame-7.16.7"
- sources."@babel/compat-data-7.17.10"
- (sources."@babel/core-7.18.2" // {
+ sources."@babel/compat-data-7.18.5"
+ (sources."@babel/core-7.18.5" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -77940,7 +77904,7 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12"
sources."@babel/plugin-proposal-async-generator-functions-7.17.12"
@@ -77992,10 +77956,10 @@ in
sources."@babel/plugin-transform-member-expression-literals-7.16.7"
sources."@babel/plugin-transform-modules-amd-7.18.0"
sources."@babel/plugin-transform-modules-commonjs-7.18.2"
- sources."@babel/plugin-transform-modules-systemjs-7.18.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.18.5"
sources."@babel/plugin-transform-modules-umd-7.18.0"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.12"
- sources."@babel/plugin-transform-new-target-7.17.12"
+ sources."@babel/plugin-transform-new-target-7.18.5"
sources."@babel/plugin-transform-object-super-7.16.7"
sources."@babel/plugin-transform-parameters-7.17.12"
sources."@babel/plugin-transform-property-literals-7.16.7"
@@ -78026,7 +77990,7 @@ in
})
sources."@babel/runtime-7.18.3"
sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.18.2"
+ sources."@babel/traverse-7.18.5"
sources."@babel/types-7.18.4"
sources."@hapi/hoek-9.3.0"
sources."@hapi/topo-5.1.0"
@@ -78062,7 +78026,7 @@ in
sources."@types/cors-2.8.10"
sources."@types/ejs-3.1.1"
sources."@types/express-4.17.13"
- sources."@types/express-serve-static-core-4.17.28"
+ sources."@types/express-serve-static-core-4.17.29"
sources."@types/fs-capacitor-2.0.0"
sources."@types/http-assert-1.5.3"
sources."@types/http-errors-1.8.2"
@@ -78078,7 +78042,7 @@ in
sources."@types/koa-compose-3.2.5"
sources."@types/long-4.0.2"
sources."@types/mime-1.3.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/normalize-package-data-2.4.1"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -78205,7 +78169,7 @@ in
})
sources."call-bind-1.0.2"
sources."camelcase-6.3.0"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
sources."caw-2.0.1"
sources."chalk-4.1.2"
sources."chardet-0.7.0"
@@ -78258,12 +78222,12 @@ in
sources."cookie-0.5.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- (sources."core-js-compat-3.22.8" // {
+ (sources."core-js-compat-3.23.1" // {
dependencies = [
sources."semver-7.0.0"
];
})
- sources."core-js-pure-3.22.8"
+ sources."core-js-pure-3.23.1"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
(sources."cross-spawn-6.0.5" // {
@@ -78326,7 +78290,7 @@ in
sources."easy-stack-1.0.1"
sources."ee-first-1.1.1"
sources."ejs-3.1.8"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -79182,7 +79146,7 @@ in
sources."@babel/generator-7.18.2"
sources."@babel/helper-validator-identifier-7.16.7"
sources."@babel/highlight-7.17.12"
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/template-7.16.7"
sources."@babel/types-7.18.4"
sources."@jridgewell/gen-mapping-0.3.1"
@@ -79279,7 +79243,7 @@ in
sources."@types/minimist-1.2.2"
sources."@types/ms-0.7.31"
sources."@types/nlcst-1.0.0"
- sources."@types/node-17.0.42"
+ sources."@types/node-17.0.45"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse5-6.0.3"
sources."@types/supports-color-8.1.1"
@@ -79364,7 +79328,7 @@ in
sources."error-ex-1.3.2"
sources."escape-goat-2.1.1"
sources."escape-string-regexp-1.0.5"
- sources."estree-util-is-identifier-name-2.0.0"
+ sources."estree-util-is-identifier-name-2.0.1"
sources."estree-util-visit-1.1.0"
sources."event-stream-3.1.7"
sources."extend-3.0.2"
@@ -79644,13 +79608,13 @@ in
sources."unherit-3.0.0"
(sources."unified-10.1.2" // {
dependencies = [
- sources."is-plain-obj-4.0.0"
+ sources."is-plain-obj-4.1.0"
];
})
sources."unified-diff-4.0.1"
(sources."unified-engine-9.1.0" // {
dependencies = [
- sources."is-plain-obj-4.0.0"
+ sources."is-plain-obj-4.1.0"
sources."lines-and-columns-2.0.3"
sources."parse-json-6.0.2"
];
@@ -79686,7 +79650,7 @@ in
sources."util-deprecate-1.0.2"
sources."uvu-0.5.3"
sources."validate-npm-package-license-3.0.4"
- sources."vfile-5.3.3"
+ sources."vfile-5.3.4"
sources."vfile-find-up-6.0.0"
sources."vfile-location-4.0.1"
sources."vfile-message-3.1.2"
@@ -79740,8 +79704,8 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.16.7"
- sources."@babel/compat-data-7.17.10"
- sources."@babel/core-7.18.2"
+ sources."@babel/compat-data-7.18.5"
+ sources."@babel/core-7.18.5"
(sources."@babel/generator-7.18.2" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.1"
@@ -79759,9 +79723,9 @@ in
sources."@babel/helper-validator-option-7.16.7"
sources."@babel/helpers-7.18.2"
sources."@babel/highlight-7.17.12"
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.18.2"
+ sources."@babel/traverse-7.18.5"
sources."@babel/types-7.18.4"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.0.7"
@@ -79776,7 +79740,7 @@ in
sources."balanced-match-1.0.2"
sources."brace-expansion-2.0.1"
sources."browserslist-4.20.4"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -79786,7 +79750,7 @@ in
sources."convert-source-map-1.8.0"
sources."debug-4.3.4"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -80087,7 +80051,7 @@ in
dependencies = [
sources."@types/glob-7.2.0"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -80172,8 +80136,8 @@ in
};
dependencies = [
sources."browserslist-4.20.4"
- sources."caniuse-lite-1.0.30001352"
- sources."electron-to-chromium-1.4.152"
+ sources."caniuse-lite-1.0.30001354"
+ sources."electron-to-chromium-1.4.157"
sources."escalade-3.1.1"
sources."fraction.js-4.2.0"
sources."node-releases-2.0.5"
@@ -80201,14 +80165,14 @@ in
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/yauzl-2.10.0"
sources."agent-base-6.0.2"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
sources."ast-types-0.13.4"
- (sources."aws-sdk-2.1152.0" // {
+ (sources."aws-sdk-2.1155.0" // {
dependencies = [
sources."uuid-8.0.0"
];
@@ -80410,10 +80374,10 @@ in
aws-cdk = nodeEnv.buildNodePackage {
name = "aws-cdk";
packageName = "aws-cdk";
- version = "2.27.0";
+ version = "2.28.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.27.0.tgz";
- sha512 = "TAKSP4ViFqj+jktFwJl4IE4jZbQCsH32t7L/VcGY71VZV9VqvuzkjF4gGx+hrES+A/dFBtLmPXsumyJu5y0elQ==";
+ url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.28.0.tgz";
+ sha512 = "d8DyDBnSSLLU39XPH4I4pRF1dX5yGFYJhOR8fFBtoPbpSiE0gJgSMX4RIcNUm2V1ZKVUM8dSc/iWkf+i7+mysg==";
};
dependencies = [
sources."fsevents-2.3.2"
@@ -80849,10 +80813,10 @@ in
balanceofsatoshis = nodeEnv.buildNodePackage {
name = "balanceofsatoshis";
packageName = "balanceofsatoshis";
- version = "12.13.0";
+ version = "12.13.1";
src = fetchurl {
- url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-12.13.0.tgz";
- sha512 = "UhWeWBZrDBaXkRBXg+ni7jwW0LaVqQcXnTSbmfJ1M6BpVpHGEowEbHuG+MvjNiOWI7lMD+TrYzR5I8hu8ZhEyA==";
+ url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-12.13.1.tgz";
+ sha512 = "WL4S+qCeUOit8yeuYdP/67oUcEqRuCZoCmgXXTUBWE4v89cg4x1oBXNFyodr15r2/07kqhOh+AswkOj+P5Yc9Q==";
};
dependencies = [
(sources."@alexbosworth/caporal-1.4.4" // {
@@ -80861,11 +80825,7 @@ in
];
})
sources."@alexbosworth/cli-table3-0.6.1"
- (sources."@alexbosworth/fiat-1.0.2" // {
- dependencies = [
- sources."async-3.2.3"
- ];
- })
+ sources."@alexbosworth/fiat-1.0.3"
sources."@alexbosworth/html2unicode-1.1.5"
sources."@alexbosworth/node-fetch-2.6.2"
(sources."@alexbosworth/prettyjson-1.2.2" // {
@@ -80884,7 +80844,7 @@ in
sources."@dabh/diagnostics-2.0.3"
sources."@grammyjs/types-2.7.2"
sources."@grpc/grpc-js-1.6.7"
- sources."@grpc/proto-loader-0.6.12"
+ sources."@grpc/proto-loader-0.6.13"
sources."@handsontable/formulajs-2.0.2"
sources."@mitmaro/errors-1.0.0"
sources."@mitmaro/http-authorization-header-1.0.0"
@@ -80904,10 +80864,10 @@ in
sources."@types/caseless-0.12.2"
sources."@types/connect-3.4.35"
sources."@types/express-4.17.13"
- sources."@types/express-serve-static-core-4.17.28"
+ sources."@types/express-serve-static-core-4.17.29"
sources."@types/long-4.0.2"
sources."@types/mime-1.3.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/request-2.48.8"
@@ -80933,11 +80893,7 @@ in
sources."asciichart-1.5.25"
sources."astral-regex-2.0.0"
sources."async-3.2.4"
- (sources."asyncjs-util-1.2.9" // {
- dependencies = [
- sources."async-3.2.3"
- ];
- })
+ sources."asyncjs-util-1.2.10"
sources."asynckit-0.4.0"
sources."base-x-3.0.9"
sources."base64-js-1.5.1"
@@ -81079,21 +81035,9 @@ in
sources."ini-2.0.0"
];
})
- (sources."goldengate-11.2.2" // {
+ (sources."goldengate-11.2.3" // {
dependencies = [
- sources."async-3.2.3"
- (sources."bolt01-1.2.4" // {
- dependencies = [
- sources."bn.js-5.2.0"
- ];
- })
- (sources."bolt07-1.8.1" // {
- dependencies = [
- sources."bn.js-5.2.0"
- ];
- })
- sources."ln-service-53.17.1"
- sources."psbt-2.4.0"
+ sources."ln-sync-3.12.2"
];
})
sources."got-9.6.0"
@@ -81145,7 +81089,6 @@ in
sources."restore-cursor-3.1.0"
sources."supports-color-7.2.0"
sources."tmp-0.0.33"
- sources."type-fest-0.21.3"
];
})
(sources."invoices-2.0.6" // {
@@ -81187,167 +81130,65 @@ in
sources."kind-of-6.0.3"
sources."kuler-2.0.0"
sources."latest-version-5.1.0"
- (sources."lightning-5.16.1" // {
+ (sources."lightning-5.16.0" // {
dependencies = [
- sources."@types/node-17.0.38"
+ sources."@grpc/proto-loader-0.6.12"
+ sources."@types/node-17.0.33"
sources."async-3.2.3"
- (sources."bolt07-1.8.1" // {
- dependencies = [
- sources."bn.js-5.2.0"
- ];
- })
- sources."psbt-2.3.0"
+ sources."asyncjs-util-1.2.9"
+ sources."bn.js-5.2.0"
+ sources."bolt07-1.8.1"
+ sources."psbt-2.0.1"
+ sources."type-fest-2.12.2"
];
})
(sources."ln-accounting-5.0.7" // {
dependencies = [
+ 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."bn.js-5.2.0"
- sources."bolt07-1.8.1"
- sources."ln-service-53.17.1"
- ];
- })
- (sources."ln-service-53.17.3" // {
- dependencies = [
- sources."@grpc/proto-loader-0.6.13"
- sources."@types/node-17.0.41"
- sources."invoices-2.0.7"
- sources."lightning-5.16.3"
- sources."ws-8.8.0"
- ];
- })
- (sources."ln-sync-3.12.1" // {
- dependencies = [
- sources."@types/node-17.0.33"
- sources."async-3.2.3"
- sources."bn.js-5.2.0"
+ sources."bolt01-1.2.4"
sources."bolt07-1.8.1"
sources."colorette-2.0.16"
- (sources."lightning-5.16.0" // {
+ sources."goldengate-11.2.2"
+ (sources."ln-service-53.17.1" // {
dependencies = [
- sources."psbt-2.0.1"
+ sources."bn.js-5.2.1"
+ sources."lightning-5.16.1"
+ sources."psbt-2.3.0"
+ sources."ws-8.7.0"
];
})
- sources."ln-service-53.17.0"
- (sources."psbt-2.3.0" // {
+ (sources."ln-sync-3.12.1" // {
+ dependencies = [
+ sources."bn.js-5.2.1"
+ sources."ln-service-53.17.0"
+ sources."psbt-2.3.0"
+ ];
+ })
+ (sources."psbt-2.4.0" // {
dependencies = [
sources."bn.js-5.2.1"
];
})
- sources."type-fest-2.12.2"
- sources."ws-8.6.0"
+ sources."type-fest-2.13.0"
];
})
- (sources."ln-telegram-3.22.1" // {
+ (sources."ln-service-53.17.3" // {
dependencies = [
- sources."@grpc/grpc-js-1.6.4"
- sources."@grpc/proto-loader-0.6.9"
- sources."@types/node-17.0.38"
+ sources."@types/node-17.0.41"
sources."async-3.2.3"
- sources."bn.js-5.2.0"
- sources."body-parser-1.19.2"
- sources."bolt01-1.2.4"
- sources."bolt09-0.2.2"
- sources."colorette-2.0.16"
- sources."cookie-0.4.2"
- sources."depd-1.1.2"
- sources."destroy-1.0.4"
- sources."express-4.17.3"
- sources."finalhandler-1.1.2"
- sources."http-errors-1.8.1"
+ sources."asyncjs-util-1.2.9"
sources."invoices-2.0.7"
- sources."lightning-5.16.2"
- sources."ln-service-53.17.2"
- sources."ms-2.1.3"
- sources."on-finished-2.3.0"
- (sources."paid-services-3.16.0" // {
- dependencies = [
- sources."@types/node-17.0.23"
- sources."body-parser-1.20.0"
- sources."bolt07-1.8.1"
- sources."depd-2.0.0"
- sources."destroy-1.2.0"
- (sources."goldengate-11.2.1" // {
- dependencies = [
- sources."invoices-2.0.5"
- sources."ln-service-53.11.0"
- ];
- })
- sources."http-errors-2.0.0"
- (sources."invoices-2.0.6" // {
- dependencies = [
- sources."bolt09-0.2.3"
- ];
- })
- (sources."lightning-5.10.1" // {
- dependencies = [
- sources."@grpc/grpc-js-1.6.2"
- sources."bolt09-0.2.3"
- (sources."invoices-2.0.5" // {
- dependencies = [
- sources."bolt09-0.2.2"
- ];
- })
- ];
- })
- (sources."ln-service-53.15.0" // {
- dependencies = [
- sources."@grpc/grpc-js-1.6.7"
- sources."@types/node-17.0.25"
- sources."bolt09-0.2.3"
- sources."lightning-5.14.0"
- ];
- })
- (sources."ln-sync-3.12.0" // {
- dependencies = [
- sources."@grpc/grpc-js-1.6.1"
- sources."body-parser-1.19.2"
- sources."bolt09-0.2.1"
- sources."depd-1.1.2"
- sources."http-errors-1.8.1"
- (sources."invoices-2.0.4" // {
- dependencies = [
- sources."bolt07-1.8.0"
- sources."tiny-secp256k1-2.2.0"
- ];
- })
- (sources."lightning-5.9.0" // {
- dependencies = [
- sources."asyncjs-util-1.2.8"
- sources."bolt07-1.8.0"
- sources."bolt09-0.2.2"
- sources."psbt-2.0.0"
- ];
- })
- (sources."ln-service-53.10.0" // {
- dependencies = [
- sources."bolt07-1.8.0"
- ];
- })
- sources."on-finished-2.3.0"
- sources."qs-6.9.7"
- sources."raw-body-2.4.3"
- sources."statuses-1.5.0"
- ];
- })
- sources."on-finished-2.4.1"
- sources."psbt-2.0.1"
- sources."qs-6.10.3"
- sources."raw-body-2.5.1"
- sources."statuses-2.0.1"
- ];
- })
- sources."psbt-2.4.0"
- sources."qs-6.9.7"
- sources."raw-body-2.4.3"
- sources."safe-buffer-5.2.1"
- sources."send-0.17.2"
- sources."serve-static-1.14.2"
- sources."statuses-1.5.0"
- sources."type-fest-2.12.2"
- sources."ws-8.5.0"
+ sources."lightning-5.16.3"
+ sources."type-fest-2.13.0"
+ sources."ws-8.8.0"
];
})
+ sources."ln-sync-3.13.0"
+ sources."ln-telegram-3.22.2"
sources."lodash-4.17.21"
sources."lodash.camelcase-4.3.0"
sources."lodash.difference-4.5.0"
@@ -81437,7 +81278,82 @@ in
})
(sources."paid-services-3.16.2" // {
dependencies = [
+ (sources."@alexbosworth/fiat-1.0.2" // {
+ dependencies = [
+ sources."async-3.2.3"
+ ];
+ })
+ sources."@grpc/proto-loader-0.6.12"
+ sources."@types/node-17.0.38"
+ (sources."asyncjs-util-1.2.9" // {
+ dependencies = [
+ sources."async-3.2.3"
+ ];
+ })
+ sources."bn.js-5.2.0"
+ sources."colorette-2.0.16"
+ (sources."goldengate-11.2.2" // {
+ dependencies = [
+ sources."async-3.2.3"
+ (sources."bolt01-1.2.4" // {
+ dependencies = [
+ sources."bn.js-5.2.0"
+ ];
+ })
+ (sources."bolt07-1.8.1" // {
+ dependencies = [
+ sources."bn.js-5.2.0"
+ ];
+ })
+ (sources."invoices-2.0.6" // {
+ dependencies = [
+ sources."bn.js-5.2.0"
+ ];
+ })
+ sources."ln-service-53.17.1"
+ sources."psbt-2.4.0"
+ ];
+ })
sources."invoices-2.0.7"
+ (sources."lightning-5.16.1" // {
+ dependencies = [
+ sources."async-3.2.3"
+ (sources."bolt07-1.8.1" // {
+ dependencies = [
+ sources."bn.js-5.2.0"
+ ];
+ })
+ (sources."invoices-2.0.6" // {
+ dependencies = [
+ sources."bn.js-5.2.0"
+ ];
+ })
+ sources."psbt-2.3.0"
+ ];
+ })
+ (sources."ln-sync-3.12.1" // {
+ dependencies = [
+ sources."@types/node-17.0.33"
+ sources."async-3.2.3"
+ sources."bolt07-1.8.1"
+ sources."invoices-2.0.6"
+ (sources."lightning-5.16.0" // {
+ dependencies = [
+ sources."psbt-2.0.1"
+ ];
+ })
+ sources."ln-service-53.17.0"
+ (sources."psbt-2.3.0" // {
+ dependencies = [
+ sources."bn.js-5.2.1"
+ ];
+ })
+ sources."type-fest-2.12.2"
+ sources."ws-8.6.0"
+ ];
+ })
+ sources."type-fest-2.13.0"
+ sources."ws-8.7.0"
];
})
sources."parseurl-1.3.3"
@@ -81447,13 +81363,33 @@ in
sources."prepend-http-2.0.0"
(sources."probing-2.0.6" // {
dependencies = [
+ 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."bn.js-5.2.0"
+ (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."psbt-2.3.0" // {
+ dependencies = [
+ sources."bn.js-5.2.1"
+ ];
+ })
+ sources."type-fest-2.13.0"
+ sources."ws-8.7.0"
];
})
sources."process-nextick-args-2.0.1"
@@ -81543,11 +81479,7 @@ in
sources."text-hex-1.0.0"
sources."through-2.3.8"
sources."tiny-emitter-2.1.0"
- (sources."tiny-secp256k1-2.2.1" // {
- dependencies = [
- sources."uint8array-tools-0.0.7"
- ];
- })
+ sources."tiny-secp256k1-2.2.1"
sources."tmp-0.0.29"
sources."to-readable-stream-1.0.0"
sources."toidentifier-1.0.1"
@@ -81557,12 +81489,12 @@ in
sources."tslib-2.4.0"
sources."tweetnacl-1.0.3"
sources."tweetnacl-util-0.15.1"
- sources."type-fest-2.13.0"
+ sources."type-fest-0.21.3"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
sources."typedarray-to-buffer-3.1.5"
sources."typeforce-1.18.0"
- sources."uint8array-tools-0.0.6"
+ sources."uint8array-tools-0.0.7"
sources."unique-string-2.0.0"
sources."unpipe-1.0.0"
(sources."update-notifier-5.1.0" // {
@@ -81607,7 +81539,7 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- sources."ws-8.7.0"
+ sources."ws-8.6.0"
sources."xdg-basedir-4.0.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
@@ -82120,7 +82052,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."accepts-1.3.8"
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
@@ -82343,7 +82275,7 @@ in
sources."@babel/code-frame-7.16.7"
sources."@babel/helper-validator-identifier-7.16.7"
sources."@babel/highlight-7.17.12"
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/types-7.18.4"
sources."@kwsites/file-exists-1.1.1"
sources."@kwsites/promise-deferred-1.1.1"
@@ -82809,7 +82741,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -83816,10 +83748,10 @@ in
cdk8s-cli = nodeEnv.buildNodePackage {
name = "cdk8s-cli";
packageName = "cdk8s-cli";
- version = "2.0.17";
+ version = "2.0.21";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.0.17.tgz";
- sha512 = "qP/mVzzVx84U5ltNG8VNb6u0agiosNBoBp+qpUmmE5wRjwGB6uA42iybO8/3wLxFyGfeQ81uSK2CmRWnOaKtmg==";
+ url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.0.21.tgz";
+ sha512 = "jh1whLH0laYjFVOKOjWeFQJk5TUXvP4k2exHiV8rEPmooYrO5VdHmE76xYLaPvAJmCra2CIXzxky917eqtmYnQ==";
};
dependencies = [
sources."@jsii/check-node-1.60.1"
@@ -83838,8 +83770,8 @@ in
sources."call-bind-1.0.2"
sources."camelcase-6.3.0"
sources."case-1.6.3"
- sources."cdk8s-2.3.23"
- sources."cdk8s-plus-22-2.0.0-rc.15"
+ sources."cdk8s-2.3.28"
+ sources."cdk8s-plus-22-2.0.0-rc.19"
sources."chalk-4.1.2"
sources."cliui-7.0.4"
sources."clone-2.1.2"
@@ -83852,7 +83784,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.30.0"
- sources."constructs-10.1.35"
+ sources."constructs-10.1.41"
sources."date-format-4.0.11"
sources."debug-4.3.4"
sources."decamelize-5.0.1"
@@ -83942,14 +83874,14 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.587" // {
+ (sources."jsii-srcmak-0.1.591" // {
dependencies = [
sources."fs-extra-9.1.0"
];
})
sources."json-schema-0.4.0"
sources."json-schema-traverse-1.0.0"
- sources."json2jsii-0.3.37"
+ sources."json2jsii-0.3.41"
sources."jsonfile-6.1.0"
sources."locate-path-5.0.0"
sources."log4js-6.5.2"
@@ -84054,7 +83986,7 @@ in
sources."@babel/generator-7.18.2"
sources."@babel/helper-validator-identifier-7.16.7"
sources."@babel/highlight-7.17.12"
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/template-7.16.7"
sources."@babel/types-7.18.4"
sources."@cdktf/hcl2cdk-0.11.2"
@@ -84090,8 +84022,8 @@ in
sources."@sentry/node-6.19.7"
sources."@sentry/types-6.19.7"
sources."@sentry/utils-6.19.7"
- sources."@types/node-17.0.42"
- sources."@types/node-fetch-2.6.1"
+ sources."@types/node-18.0.0"
+ sources."@types/node-fetch-2.6.2"
sources."@types/yargs-17.0.10"
sources."@types/yargs-parser-21.0.0"
sources."@xmldom/xmldom-0.8.2"
@@ -84126,7 +84058,7 @@ in
sources."combined-stream-1.0.8"
sources."commonmark-0.30.0"
sources."concat-map-0.0.1"
- sources."constructs-10.1.35"
+ sources."constructs-10.1.41"
sources."cookie-0.4.2"
sources."cross-spawn-7.0.3"
sources."date-format-4.0.11"
@@ -84275,7 +84207,7 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-srcmak-0.1.587" // {
+ (sources."jsii-srcmak-0.1.591" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -84319,7 +84251,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
sources."picomatch-2.3.1"
- sources."prettier-2.6.2"
+ sources."prettier-2.7.0"
sources."punycode-2.1.1"
sources."queue-microtask-1.2.3"
sources."regexp.prototype.flags-1.4.3"
@@ -84701,6 +84633,40 @@ in
bypassCache = true;
reconstructLock = true;
};
+ coc-docker = nodeEnv.buildNodePackage {
+ name = "coc-docker";
+ packageName = "coc-docker";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/coc-docker/-/coc-docker-0.5.0.tgz";
+ sha512 = "ivLkxcmRgvb1yjYxNqm+kZvjqvKpUEzLOAubwFADY+NDb+rpojnz1jqirJgPztNeqdd12/vcszd5GX4ISUxjlA==";
+ };
+ dependencies = [
+ sources."dockerfile-ast-0.1.0"
+ 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."vscode-jsonrpc-8.0.1"
+ (sources."vscode-languageserver-7.0.0" // {
+ dependencies = [
+ sources."vscode-jsonrpc-6.0.0"
+ sources."vscode-languageserver-protocol-3.16.0"
+ sources."vscode-languageserver-types-3.16.0"
+ ];
+ })
+ sources."vscode-languageserver-protocol-3.17.1"
+ sources."vscode-languageserver-types-3.17.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "docker extension for coc";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
coc-emmet = nodeEnv.buildNodePackage {
name = "coc-emmet";
packageName = "coc-emmet";
@@ -85277,7 +85243,7 @@ in
sha512 = "t/j62Sjq/eBcaN90b4KPNDuZBP3K+TomXj9RLdiJX0zE7RG2byqsxVTnVKAk9c+qE05jv16C5Zv1qv97ZKcA4g==";
};
dependencies = [
- sources."prettier-2.6.2"
+ sources."prettier-2.7.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -85298,7 +85264,7 @@ in
sha512 = "cQ8JXEofYh5jHv/1KuMOzLtA4By5IHfKSv6Nh7SfZ771tfAFSiEevqONhcjeqQSPVTzwL5v/u57qWN45/tpEeg==";
};
dependencies = [
- sources."pyright-1.1.253"
+ sources."pyright-1.1.254"
];
buildInputs = globalBuildInputs;
meta = {
@@ -85387,6 +85353,97 @@ in
bypassCache = true;
reconstructLock = true;
};
+ coc-sh = nodeEnv.buildNodePackage {
+ name = "coc-sh";
+ packageName = "coc-sh";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/coc-sh/-/coc-sh-0.7.0.tgz";
+ sha512 = "HGUBtksIRvjTcempnZz/oUoVr3XNNol5sJO+Pv8JGIihKVBougOVA4MkaJmSU0R+1WP+XL+feALf7edTdqUqlw==";
+ };
+ dependencies = [
+ sources."ajv-6.12.6"
+ sources."asn1-0.2.6"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.11.0"
+ sources."balanced-match-1.0.2"
+ sources."bash-language-server-3.0.3"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."brace-expansion-2.0.1"
+ sources."caseless-0.12.0"
+ sources."combined-stream-1.0.8"
+ sources."core-util-is-1.0.2"
+ sources."dashdash-1.14.1"
+ sources."delayed-stream-1.0.0"
+ sources."domino-2.1.6"
+ sources."ecc-jsbn-0.1.2"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-3.1.3"
+ sources."fast-json-stable-stringify-2.1.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.3"
+ sources."fs.realpath-1.0.0"
+ sources."fuzzy-search-3.2.1"
+ sources."getpass-0.1.7"
+ sources."glob-8.0.3"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.5"
+ sources."http-signature-1.2.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
+ sources."is-typedarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.4.0"
+ sources."json-schema-traverse-0.4.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.2"
+ sources."lodash-4.17.21"
+ sources."mime-db-1.52.0"
+ sources."mime-types-2.1.35"
+ sources."minimatch-5.1.0"
+ sources."oauth-sign-0.9.0"
+ sources."once-1.4.0"
+ sources."performance-now-2.1.0"
+ sources."psl-1.8.0"
+ sources."punycode-2.1.1"
+ sources."qs-6.5.3"
+ sources."request-2.88.2"
+ sources."request-promise-core-1.1.4"
+ sources."request-promise-native-1.0.9"
+ sources."safe-buffer-5.2.1"
+ sources."safer-buffer-2.1.2"
+ sources."sshpk-1.17.0"
+ sources."stealthy-require-1.1.1"
+ sources."tough-cookie-2.5.0"
+ sources."tslib-2.4.0"
+ sources."tunnel-agent-0.6.0"
+ sources."turndown-7.1.1"
+ sources."tweetnacl-0.14.5"
+ sources."uri-js-4.4.1"
+ sources."urijs-1.19.11"
+ sources."uuid-3.4.0"
+ sources."verror-1.10.0"
+ sources."vscode-jsonrpc-8.0.1"
+ sources."vscode-languageserver-6.1.1"
+ sources."vscode-languageserver-protocol-3.17.1"
+ sources."vscode-languageserver-textdocument-1.0.5"
+ sources."vscode-languageserver-types-3.17.1"
+ sources."web-tree-sitter-0.20.5"
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "sh extension for coc";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
coc-smartf = nodeEnv.buildNodePackage {
name = "coc-smartf";
packageName = "coc-smartf";
@@ -85408,10 +85465,10 @@ in
coc-snippets = nodeEnv.buildNodePackage {
name = "coc-snippets";
packageName = "coc-snippets";
- version = "3.0.13";
+ version = "3.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-3.0.13.tgz";
- sha512 = "w/eaWOJfp0BVL80bHFaI3RypdW1PGgU1NXNKrGzsKDvKia0npYjrgzOT7aRfiaZ1GDn8K/XLrigg8CpanKwFjg==";
+ url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-3.0.14.tgz";
+ sha512 = "aYlupbhcFlm03c4yGE8cv1x+s8Ur9VluA050QLzvEynbjHnzOGYZS97qwqgvWVRH0hKsU1dl50CG3XlF4T9vaA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -85450,8 +85507,8 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.16.7"
- sources."@babel/compat-data-7.17.10"
- sources."@babel/core-7.18.2"
+ sources."@babel/compat-data-7.18.5"
+ sources."@babel/core-7.18.5"
(sources."@babel/generator-7.18.2" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.1"
@@ -85473,9 +85530,9 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.18.2"
+ sources."@babel/traverse-7.18.5"
sources."@babel/types-7.18.4"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.0.7"
@@ -85515,7 +85572,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -85552,7 +85609,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -85789,6 +85846,41 @@ in
bypassCache = true;
reconstructLock = true;
};
+ coc-sumneko-lua = nodeEnv.buildNodePackage {
+ name = "coc-sumneko-lua";
+ packageName = "coc-sumneko-lua";
+ version = "0.0.28";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/coc-sumneko-lua/-/coc-sumneko-lua-0.0.28.tgz";
+ sha512 = "vuxtSC56gNTyDl/Nqj+Lc9SkXDs86TzwT8Tb4kRCaa8mtYolDCPcKh1sThDDJkwnRBq+eUW8n+nq/xF8RpYdxA==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Lua extension using sumneko lua-language-server for coc.nvim";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ coc-sqlfluff = nodeEnv.buildNodePackage {
+ name = "coc-sqlfluff";
+ packageName = "coc-sqlfluff";
+ version = "0.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/coc-sqlfluff/-/coc-sqlfluff-0.8.0.tgz";
+ sha512 = "cWJ4zkn6lcZhGD+OU/6XQT+cggQ3cIPtumEtEuznrUnneLm9hAugGu7J3YpnScgmpCgO55qgwzj+IeClSjOFmg==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "SQLFluff (A SQL linter and auto-formatter for Humans) extension for coc.nvim";
+ homepage = "https://github.com/yaegassy/coc-sqlfluff#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
coc-tabnine = nodeEnv.buildNodePackage {
name = "coc-tabnine";
packageName = "coc-tabnine";
@@ -85824,6 +85916,31 @@ in
bypassCache = true;
reconstructLock = true;
};
+ coc-toml = nodeEnv.buildNodePackage {
+ name = "coc-toml";
+ packageName = "coc-toml";
+ version = "1.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/coc-toml/-/coc-toml-1.2.5.tgz";
+ sha512 = "8ypH+v7PkGfYTfg/7QoUGrpgSidzxwr2uvuTXR3FgzWrLT9OQOvlocH9KfCRsP8IIAbCuMOa/OpStN+pNwO6Ug==";
+ };
+ dependencies = [
+ sources."@taplo/lsp-0.2.4"
+ sources."node-fetch-2.6.7"
+ sources."tr46-0.0.3"
+ sources."webidl-conversions-3.0.1"
+ sources."whatwg-url-5.0.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "toml extension for coc.nvim";
+ homepage = "https://github.com/kkiyama117/coc-toml#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
coc-tslint = nodeEnv.buildNodePackage {
name = "coc-tslint";
packageName = "coc-tslint";
@@ -86095,7 +86212,7 @@ in
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."prelude-ls-1.2.1"
- sources."prettier-2.6.2"
+ sources."prettier-2.7.0"
sources."progress-2.0.3"
sources."pug-error-2.0.0"
sources."pug-lexer-5.0.1"
@@ -86494,10 +86611,10 @@ in
concurrently = nodeEnv.buildNodePackage {
name = "concurrently";
packageName = "concurrently";
- version = "7.2.1";
+ version = "7.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/concurrently/-/concurrently-7.2.1.tgz";
- sha512 = "7cab/QyqipqghrVr9qZmoWbidu0nHsmxrpNqQ7r/67vfl1DWJElexehQnTH1p+87tDkihaAjM79xTZyBQh7HLw==";
+ url = "https://registry.npmjs.org/concurrently/-/concurrently-7.2.2.tgz";
+ sha512 = "DcQkI0ruil5BA/g7Xy3EWySGrFJovF5RYAYxwGvv9Jf9q9B1v3jPFP2tl6axExNf1qgF30kjoNYrangZ0ey4Aw==";
};
dependencies = [
sources."ansi-regex-5.0.1"
@@ -86518,14 +86635,14 @@ in
sources."is-fullwidth-code-point-3.0.0"
sources."lodash-4.17.21"
sources."require-directory-2.1.1"
- sources."rxjs-6.6.7"
+ sources."rxjs-7.5.5"
sources."shell-quote-1.7.3"
sources."spawn-command-0.0.2"
sources."string-width-4.2.3"
sources."strip-ansi-6.0.1"
sources."supports-color-8.1.1"
sources."tree-kill-1.2.2"
- sources."tslib-1.14.1"
+ sources."tslib-2.4.0"
sources."wrap-ansi-7.0.0"
sources."y18n-5.0.8"
sources."yargs-17.5.1"
@@ -87357,7 +87474,7 @@ in
sources."strip-json-comments-2.0.1"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."systeminformation-5.11.16"
+ sources."systeminformation-5.11.20"
sources."tar-6.1.11"
sources."through-2.3.8"
sources."tmp-0.2.1"
@@ -87486,7 +87603,7 @@ in
sources."find-up-5.0.0"
sources."function-bind-1.1.1"
sources."glob-parent-5.1.2"
- sources."globby-13.1.1"
+ sources."globby-13.1.2"
sources."graceful-fs-4.2.10"
sources."hard-rejection-2.1.0"
sources."has-1.0.3"
@@ -87587,7 +87704,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -87883,21 +88000,21 @@ in
sources."@cspell/dict-css-2.0.0"
sources."@cspell/dict-dart-1.1.1"
sources."@cspell/dict-django-2.0.0"
- sources."@cspell/dict-docker-1.1.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-en-gb-1.1.33"
- sources."@cspell/dict-en_us-2.2.5"
- sources."@cspell/dict-filetypes-2.0.1"
+ sources."@cspell/dict-en_us-2.2.6"
+ sources."@cspell/dict-filetypes-2.0.2"
sources."@cspell/dict-fonts-2.0.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.0"
- sources."@cspell/dict-html-3.0.1"
+ sources."@cspell/dict-html-3.0.2"
sources."@cspell/dict-html-symbol-entities-3.0.0"
- sources."@cspell/dict-java-3.0.2"
- sources."@cspell/dict-latex-2.0.5"
+ sources."@cspell/dict-java-3.0.3"
+ sources."@cspell/dict-latex-2.0.6"
sources."@cspell/dict-lorem-ipsum-2.0.0"
sources."@cspell/dict-lua-2.0.0"
sources."@cspell/dict-node-3.0.1"
@@ -87908,7 +88025,7 @@ in
sources."@cspell/dict-python-3.0.6"
sources."@cspell/dict-r-1.0.3"
sources."@cspell/dict-ruby-2.0.1"
- sources."@cspell/dict-rust-2.0.0"
+ sources."@cspell/dict-rust-2.0.1"
sources."@cspell/dict-scala-2.0.0"
sources."@cspell/dict-software-terms-2.1.8"
sources."@cspell/dict-swift-1.0.3"
@@ -88228,7 +88345,7 @@ in
})
sources."diffy-2.1.0"
sources."directory-index-html-2.1.0"
- sources."dns-packet-5.3.1"
+ sources."dns-packet-5.4.0"
sources."dom-walk-0.1.2"
sources."dot-prop-4.2.1"
sources."duplexer3-0.1.4"
@@ -88703,8 +88820,8 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.16.7"
- sources."@babel/compat-data-7.17.10"
- sources."@babel/core-7.18.2"
+ sources."@babel/compat-data-7.18.5"
+ sources."@babel/core-7.18.5"
(sources."@babel/generator-7.18.2" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.1"
@@ -88735,7 +88852,7 @@ in
sources."@babel/helper-wrap-function-7.16.8"
sources."@babel/helpers-7.18.2"
sources."@babel/highlight-7.17.12"
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12"
sources."@babel/plugin-proposal-async-generator-functions-7.17.12"
@@ -88785,10 +88902,10 @@ in
sources."@babel/plugin-transform-member-expression-literals-7.16.7"
sources."@babel/plugin-transform-modules-amd-7.18.0"
sources."@babel/plugin-transform-modules-commonjs-7.18.2"
- sources."@babel/plugin-transform-modules-systemjs-7.18.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.18.5"
sources."@babel/plugin-transform-modules-umd-7.18.0"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.12"
- sources."@babel/plugin-transform-new-target-7.17.12"
+ sources."@babel/plugin-transform-new-target-7.18.5"
sources."@babel/plugin-transform-object-super-7.16.7"
sources."@babel/plugin-transform-parameters-7.17.12"
sources."@babel/plugin-transform-property-literals-7.16.7"
@@ -88810,10 +88927,10 @@ in
sources."@babel/preset-react-7.17.12"
sources."@babel/runtime-7.18.3"
sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.18.2"
+ sources."@babel/traverse-7.18.5"
sources."@babel/types-7.18.4"
sources."@blueprintjs/colors-4.1.3"
- sources."@blueprintjs/core-4.5.0"
+ sources."@blueprintjs/core-4.5.1"
sources."@blueprintjs/icons-4.3.0"
sources."@deltachat/message_parser_wasm-0.4.0"
sources."@deltachat/react-qr-reader-4.0.0"
@@ -88903,7 +89020,7 @@ in
})
sources."call-bind-1.0.2"
sources."camel-case-4.1.2"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
sources."capital-case-1.0.4"
sources."chalk-2.4.2"
sources."change-case-4.1.2"
@@ -88936,7 +89053,7 @@ in
sources."constant-case-3.0.4"
sources."convert-source-map-1.8.0"
sources."copy-descriptor-0.1.1"
- (sources."core-js-compat-3.22.8" // {
+ (sources."core-js-compat-3.23.1" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -88960,12 +89077,12 @@ in
sources."dot-case-3.0.4"
sources."duplexer3-0.1.4"
sources."earcut-2.2.3"
- (sources."electron-18.3.3" // {
+ (sources."electron-18.3.4" // {
dependencies = [
- sources."@types/node-16.11.39"
+ sources."@types/node-16.11.41"
];
})
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
sources."emoji-js-clean-4.0.0"
sources."emoji-mart-3.0.1"
sources."emoji-regex-9.2.2"
@@ -89747,7 +89864,7 @@ in
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/responselike-1.0.0"
sources."@types/yauzl-2.10.0"
sources."abbrev-1.1.1"
@@ -90304,8 +90421,8 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.16.7"
- sources."@babel/compat-data-7.17.10"
- (sources."@babel/core-7.18.2" // {
+ sources."@babel/compat-data-7.18.5"
+ (sources."@babel/core-7.18.5" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -90333,7 +90450,7 @@ in
sources."@babel/helper-validator-option-7.16.7"
sources."@babel/helpers-7.18.2"
sources."@babel/highlight-7.17.12"
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/plugin-proposal-object-rest-spread-7.18.0"
sources."@babel/plugin-syntax-jsx-7.17.12"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
@@ -90341,7 +90458,7 @@ in
sources."@babel/plugin-transform-parameters-7.17.12"
sources."@babel/plugin-transform-react-jsx-7.17.12"
sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.18.2"
+ sources."@babel/traverse-7.18.5"
sources."@babel/types-7.18.4"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.0.7"
@@ -90372,7 +90489,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -90401,7 +90518,7 @@ in
];
})
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -90670,9 +90787,9 @@ in
sources."@fluentui/foundation-legacy-8.2.8"
sources."@fluentui/keyboard-key-0.4.1"
sources."@fluentui/merge-styles-8.5.2"
- sources."@fluentui/react-8.73.0"
+ sources."@fluentui/react-8.76.0"
sources."@fluentui/react-focus-8.7.0"
- sources."@fluentui/react-hooks-8.5.5"
+ sources."@fluentui/react-hooks-8.6.0"
sources."@fluentui/react-portal-compat-context-9.0.0-rc.2"
sources."@fluentui/react-window-provider-2.2.1"
sources."@fluentui/set-version-8.2.1"
@@ -90732,7 +90849,7 @@ in
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
sources."@types/express-4.17.13"
- sources."@types/express-serve-static-core-4.17.28"
+ sources."@types/express-serve-static-core-4.17.29"
sources."@types/file-type-10.9.1"
sources."@types/js-yaml-4.0.4"
sources."@types/json-schema-7.0.11"
@@ -92288,7 +92405,7 @@ in
sources."@types/connect-3.4.35"
sources."@types/connect-history-api-fallback-1.3.5"
sources."@types/express-4.17.13"
- sources."@types/express-serve-static-core-4.17.28"
+ sources."@types/express-serve-static-core-4.17.29"
sources."@types/glob-7.2.0"
sources."@types/hls.js-0.13.3"
sources."@types/http-proxy-1.17.9"
@@ -92298,7 +92415,7 @@ in
sources."@types/mime-1.3.2"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
@@ -92614,7 +92731,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
@@ -92855,7 +92972,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -94483,14 +94600,14 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/runtime-7.9.0"
(sources."@babel/template-7.16.7" // {
dependencies = [
sources."@babel/code-frame-7.16.7"
];
})
- (sources."@babel/traverse-7.18.2" // {
+ (sources."@babel/traverse-7.18.5" // {
dependencies = [
sources."@babel/code-frame-7.16.7"
];
@@ -94773,7 +94890,7 @@ in
})
sources."camelcase-6.3.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -95032,7 +95149,7 @@ in
sources."duplexer3-0.1.4"
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -96534,8 +96651,8 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.16.7"
- sources."@babel/compat-data-7.17.10"
- sources."@babel/core-7.18.2"
+ sources."@babel/compat-data-7.18.5"
+ sources."@babel/core-7.18.5"
(sources."@babel/generator-7.18.2" // {
dependencies = [
sources."@jridgewell/gen-mapping-0.3.1"
@@ -96555,7 +96672,7 @@ in
sources."@babel/helper-validator-option-7.16.7"
sources."@babel/helpers-7.18.2"
sources."@babel/highlight-7.17.12"
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/plugin-proposal-object-rest-spread-7.18.0"
sources."@babel/plugin-syntax-jsx-7.17.12"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
@@ -96563,7 +96680,7 @@ in
sources."@babel/plugin-transform-parameters-7.17.12"
sources."@babel/plugin-transform-react-jsx-7.17.12"
sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.18.2"
+ sources."@babel/traverse-7.18.5"
sources."@babel/types-7.18.4"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.0.7"
@@ -96571,7 +96688,7 @@ in
sources."@jridgewell/sourcemap-codec-1.4.13"
sources."@jridgewell/trace-mapping-0.3.13"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/normalize-package-data-2.4.1"
sources."@types/yauzl-2.10.0"
sources."@types/yoga-layout-1.9.2"
@@ -96598,7 +96715,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
sources."chalk-2.4.2"
sources."chownr-1.1.4"
sources."ci-info-2.0.0"
@@ -96623,7 +96740,7 @@ in
})
sources."delay-5.0.0"
sources."devtools-protocol-0.0.981744"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
@@ -96950,7 +97067,7 @@ in
sources."semver-5.7.1"
];
})
- sources."csv-parse-5.1.0"
+ sources."csv-parse-5.2.0"
sources."csv-stream-0.2.0"
sources."dashdash-1.14.1"
sources."debug-4.3.4"
@@ -96980,7 +97097,7 @@ in
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
sources."fastq-1.13.0"
- sources."faunadb-4.5.4"
+ sources."faunadb-4.6.0"
(sources."figures-3.2.0" // {
dependencies = [
sources."escape-string-regexp-1.0.5"
@@ -97104,7 +97221,7 @@ in
sources."pify-3.0.0"
sources."prelude-ls-1.1.2"
sources."prepend-http-2.0.0"
- sources."prettier-2.6.2"
+ sources."prettier-2.7.0"
sources."process-nextick-args-2.0.1"
sources."psl-1.8.0"
sources."punycode-2.1.1"
@@ -97200,10 +97317,10 @@ in
firebase-tools = nodeEnv.buildNodePackage {
name = "firebase-tools";
packageName = "firebase-tools";
- version = "11.0.1";
+ version = "11.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.0.1.tgz";
- sha512 = "be5Xx2FbdW0G2YMpxsIcNaFuekeiRgFRPScVbXhnfHLIOUJ/ETYCNrQEndzhprVlawl6l6EW9H18DRx61I5RKQ==";
+ url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.1.0.tgz";
+ sha512 = "6nBFOiuxsKl8AbPnsiBck7HT682cHzMuoRrXzajuNWjwTYvh4oW25BF/iLGP7MAGzI4Xuo2NDXwjDLg6HIR78Q==";
};
dependencies = [
(sources."@apidevtools/json-schema-ref-parser-9.0.9" // {
@@ -97214,20 +97331,24 @@ in
sources."@colors/colors-1.5.0"
sources."@dabh/diagnostics-2.0.3"
sources."@gar/promisify-1.1.3"
- sources."@google-cloud/paginator-3.0.7"
+ sources."@google-cloud/paginator-4.0.0"
sources."@google-cloud/precise-date-2.0.4"
sources."@google-cloud/projectify-2.1.1"
sources."@google-cloud/promisify-2.0.4"
- sources."@google-cloud/pubsub-2.19.4"
+ (sources."@google-cloud/pubsub-3.0.1" // {
+ dependencies = [
+ sources."google-auth-library-8.0.2"
+ ];
+ })
sources."@grpc/grpc-js-1.6.7"
- sources."@grpc/proto-loader-0.6.9"
+ sources."@grpc/proto-loader-0.6.13"
sources."@jsdevtools/ono-7.1.3"
- (sources."@npmcli/fs-1.1.1" // {
+ (sources."@npmcli/fs-2.1.0" // {
dependencies = [
sources."semver-7.3.7"
];
})
- (sources."@npmcli/move-file-1.1.2" // {
+ (sources."@npmcli/move-file-2.0.0" // {
dependencies = [
sources."mkdirp-1.0.4"
];
@@ -97250,7 +97371,7 @@ in
sources."@types/duplexify-3.6.1"
sources."@types/json-schema-7.0.11"
sources."@types/long-4.0.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
sources."accepts-1.3.8"
@@ -97311,7 +97432,6 @@ in
sources."binary-0.3.0"
sources."binary-extensions-2.2.0"
sources."bl-4.1.0"
- sources."blakejs-1.2.1"
sources."bluebird-3.4.7"
(sources."body-parser-1.20.0" // {
dependencies = [
@@ -97333,8 +97453,12 @@ in
sources."buffer-indexof-polyfill-1.0.2"
sources."buffers-0.1.1"
sources."bytes-3.1.2"
- (sources."cacache-15.3.0" // {
+ (sources."cacache-16.1.1" // {
dependencies = [
+ sources."brace-expansion-2.0.1"
+ sources."glob-8.0.3"
+ sources."lru-cache-7.10.1"
+ sources."minimatch-5.1.0"
sources."mkdirp-1.0.4"
];
})
@@ -97426,7 +97550,7 @@ in
];
})
sources."crypto-random-string-2.0.0"
- sources."csv-parse-5.1.0"
+ sources."csv-parse-5.2.0"
sources."d-1.0.1"
sources."dashdash-1.14.1"
sources."data-uri-to-buffer-3.0.1"
@@ -97490,7 +97614,6 @@ in
];
})
sources."exegesis-express-4.0.0"
- sources."exit-code-1.0.2"
(sources."express-4.18.1" // {
dependencies = [
sources."debug-2.6.9"
@@ -97536,7 +97659,7 @@ in
})
sources."fn.name-1.1.0"
sources."forever-agent-0.6.1"
- sources."form-data-2.3.3"
+ sources."form-data-4.0.0"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
sources."fs-constants-1.0.0"
@@ -97558,8 +97681,8 @@ in
})
sources."function-bind-1.1.1"
sources."gauge-4.0.4"
- sources."gaxios-4.3.3"
- sources."gcp-metadata-4.3.1"
+ sources."gaxios-5.0.0"
+ sources."gcp-metadata-5.0.0"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.2"
sources."get-stream-4.1.0"
@@ -97576,12 +97699,25 @@ in
sources."glob-slash-1.0.0"
sources."glob-slasher-1.0.1"
sources."global-dirs-2.1.0"
- sources."google-auth-library-7.14.1"
- sources."google-gax-2.30.3"
+ (sources."google-auth-library-7.14.1" // {
+ dependencies = [
+ sources."gaxios-4.3.3"
+ sources."gcp-metadata-4.3.1"
+ ];
+ })
+ (sources."google-gax-3.1.1" // {
+ dependencies = [
+ sources."google-auth-library-8.0.2"
+ ];
+ })
sources."google-p12-pem-3.1.4"
sources."got-9.6.0"
sources."graceful-fs-4.2.10"
- sources."gtoken-5.3.2"
+ (sources."gtoken-5.3.2" // {
+ dependencies = [
+ sources."gaxios-4.3.3"
+ ];
+ })
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
sources."has-1.0.3"
@@ -97610,7 +97746,7 @@ in
sources."inherits-2.0.4"
sources."ini-1.3.7"
sources."inquirer-8.2.4"
- sources."install-artifact-from-github-1.3.0"
+ sources."install-artifact-from-github-1.3.1"
sources."ip-1.1.8"
sources."ip-regex-4.3.0"
sources."ipaddr.js-1.9.1"
@@ -97677,6 +97813,8 @@ in
})
sources."leven-3.1.0"
sources."levn-0.3.0"
+ sources."libsodium-0.7.10"
+ sources."libsodium-wrappers-0.7.10"
sources."listenercount-1.0.1"
sources."lodash-4.17.21"
sources."lodash._objecttypes-2.4.1"
@@ -97705,12 +97843,15 @@ in
sources."semver-6.3.0"
];
})
- (sources."make-fetch-happen-9.1.0" // {
+ (sources."make-fetch-happen-10.1.7" // {
dependencies = [
- sources."socks-proxy-agent-6.2.1"
+ sources."@tootallnate/once-2.0.0"
+ sources."http-proxy-agent-5.0.0"
+ sources."lru-cache-7.10.1"
+ sources."socks-proxy-agent-7.0.0"
];
})
- sources."marked-4.0.16"
+ sources."marked-4.0.17"
(sources."marked-terminal-5.1.1" // {
dependencies = [
sources."ansi-escapes-5.0.0"
@@ -97731,7 +97872,7 @@ in
sources."minimist-1.2.6"
sources."minipass-3.2.1"
sources."minipass-collect-1.0.2"
- sources."minipass-fetch-1.4.1"
+ sources."minipass-fetch-2.1.0"
sources."minipass-flush-1.0.5"
sources."minipass-pipeline-1.2.4"
sources."minipass-sized-1.0.3"
@@ -97754,7 +97895,7 @@ in
sources."node-emoji-1.11.0"
sources."node-fetch-2.6.7"
sources."node-forge-1.3.1"
- (sources."node-gyp-8.4.1" // {
+ (sources."node-gyp-9.0.0" // {
dependencies = [
sources."semver-7.3.7"
sources."which-2.0.2"
@@ -97811,8 +97952,8 @@ in
sources."retry-0.12.0"
];
})
- sources."proto3-json-serializer-0.1.9"
- sources."protobufjs-6.11.2"
+ sources."proto3-json-serializer-1.0.2"
+ sources."protobufjs-6.11.3"
sources."proxy-addr-2.0.7"
(sources."proxy-agent-5.0.0" // {
dependencies = [
@@ -97829,7 +97970,7 @@ in
sources."range-parser-1.2.1"
sources."raw-body-2.5.1"
sources."rc-1.2.8"
- sources."re2-1.17.4"
+ sources."re2-1.17.7"
sources."readable-stream-3.6.0"
sources."readdir-glob-1.1.1"
sources."readdirp-3.6.0"
@@ -97838,6 +97979,7 @@ in
sources."registry-url-5.1.0"
(sources."request-2.88.2" // {
dependencies = [
+ sources."form-data-2.3.3"
sources."qs-6.5.3"
sources."uuid-3.4.0"
];
@@ -97847,7 +97989,7 @@ in
sources."responselike-1.0.2"
sources."restore-cursor-3.1.0"
sources."retry-0.13.1"
- sources."retry-request-4.2.2"
+ sources."retry-request-5.0.1"
sources."rimraf-3.0.2"
(sources."router-1.3.7" // {
dependencies = [
@@ -97893,7 +98035,7 @@ in
sources."source-map-0.6.1"
sources."sprintf-js-1.0.3"
sources."sshpk-1.17.0"
- sources."ssri-8.0.1"
+ sources."ssri-9.0.1"
sources."stack-trace-0.0.10"
sources."statuses-2.0.1"
sources."stream-chain-2.2.5"
@@ -97957,11 +98099,6 @@ in
sources."tslib-2.4.0"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- (sources."tweetsodium-0.0.5" // {
- dependencies = [
- sources."tweetnacl-1.0.3"
- ];
- })
sources."type-1.2.0"
sources."type-check-0.3.2"
sources."type-fest-0.21.3"
@@ -98321,7 +98458,7 @@ in
sources."@types/atob-2.1.2"
sources."@types/bn.js-5.1.0"
sources."@types/inquirer-6.5.0"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/pbkdf2-3.1.0"
sources."@types/secp256k1-4.0.3"
sources."@types/through-0.0.30"
@@ -99073,8 +99210,8 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.16.7"
- sources."@babel/compat-data-7.17.10"
- (sources."@babel/core-7.18.2" // {
+ sources."@babel/compat-data-7.18.5"
+ (sources."@babel/core-7.18.5" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -99110,13 +99247,13 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/plugin-syntax-typescript-7.17.12"
sources."@babel/plugin-transform-typescript-7.18.4"
sources."@babel/preset-typescript-7.17.12"
sources."@babel/runtime-7.18.3"
sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.18.2"
+ sources."@babel/traverse-7.18.5"
sources."@babel/types-7.18.4"
sources."@hapi/hoek-9.3.0"
sources."@hapi/topo-5.1.0"
@@ -99144,8 +99281,8 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.42"
- sources."@types/node-fetch-2.6.1"
+ sources."@types/node-18.0.0"
+ sources."@types/node-fetch-2.6.2"
sources."@types/responselike-1.0.0"
sources."@types/yoga-layout-1.9.2"
sources."ansi-align-3.0.1"
@@ -99173,7 +99310,7 @@ in
})
sources."call-bind-1.0.2"
sources."camelcase-6.3.0"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -99238,7 +99375,7 @@ in
sources."domutils-2.8.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."entities-2.2.0"
@@ -99582,14 +99719,14 @@ in
sources."@octokit/core-3.6.0"
sources."@octokit/endpoint-6.0.12"
sources."@octokit/graphql-4.8.0"
- sources."@octokit/openapi-types-11.2.0"
- sources."@octokit/plugin-paginate-rest-2.17.0"
+ sources."@octokit/openapi-types-12.1.0"
+ sources."@octokit/plugin-paginate-rest-2.18.0"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.13.0"
+ sources."@octokit/plugin-rest-endpoint-methods-5.14.0"
sources."@octokit/request-5.6.3"
sources."@octokit/request-error-2.1.0"
sources."@octokit/rest-18.12.0"
- sources."@octokit/types-6.34.0"
+ sources."@octokit/types-6.35.0"
sources."@types/normalize-package-data-2.4.1"
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
@@ -100029,7 +100166,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/responselike-1.0.0"
sources."ansi-regex-6.0.1"
sources."ansi-styles-4.3.0"
@@ -100806,7 +100943,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -101278,16 +101415,16 @@ in
graphql-language-service-cli = nodeEnv.buildNodePackage {
name = "graphql-language-service-cli";
packageName = "graphql-language-service-cli";
- version = "3.2.27";
+ version = "3.2.28";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-language-service-cli/-/graphql-language-service-cli-3.2.27.tgz";
- sha512 = "4YU3ZUH8HTS9ukaPbLxG9BvEM1qNLWwkwb6d82KKhDEU3/K6ShNWwSu1BkD5TAauY4rbQNDNhl3UrejiKbH5bw==";
+ url = "https://registry.npmjs.org/graphql-language-service-cli/-/graphql-language-service-cli-3.2.28.tgz";
+ sha512 = "ofp4GwXdMR/0VhcpCfNPmL3vAx2NAMP0qVh7t5InUnpwcLp8qoPD5oOCLAAPp4Jd+CUYXkfOjtCtvtEmFS5Abg==";
};
dependencies = [
sources."@babel/code-frame-7.16.7"
sources."@babel/helper-validator-identifier-7.16.7"
sources."@babel/highlight-7.17.12"
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/polyfill-7.12.1"
sources."@babel/types-7.18.4"
sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2"
@@ -101307,7 +101444,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/parse-json-4.0.0"
sources."@types/ws-8.5.3"
sources."abort-controller-3.0.0"
@@ -101348,7 +101485,7 @@ in
sources."fastq-1.13.0"
sources."fill-range-7.0.1"
sources."form-data-encoder-1.7.2"
- (sources."formdata-node-4.3.2" // {
+ (sources."formdata-node-4.3.3" // {
dependencies = [
sources."web-streams-polyfill-4.0.0-beta.1"
];
@@ -101364,8 +101501,8 @@ in
sources."globby-11.1.0"
sources."graphql-config-4.3.1"
sources."graphql-executor-0.0.23"
- sources."graphql-language-service-5.0.5"
- sources."graphql-language-service-server-2.7.26"
+ sources."graphql-language-service-5.0.6"
+ sources."graphql-language-service-server-2.7.27"
sources."graphql-ws-5.9.0"
sources."has-flag-3.0.0"
sources."ieee754-1.2.1"
@@ -101425,7 +101562,7 @@ in
sources."tr46-0.0.3"
sources."ts-node-9.1.1"
sources."tslib-2.4.0"
- sources."undici-5.4.0"
+ sources."undici-5.5.1"
sources."unixify-1.0.0"
sources."value-or-promise-1.0.11"
sources."vscode-jsonrpc-5.0.1"
@@ -101540,7 +101677,7 @@ in
})
sources."@oclif/screen-1.0.4"
sources."@types/json-schema-7.0.9"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/parse-json-4.0.0"
sources."@types/ws-8.5.3"
sources."abort-controller-3.0.0"
@@ -101644,7 +101781,7 @@ in
];
})
sources."form-data-encoder-1.7.2"
- (sources."formdata-node-4.3.2" // {
+ (sources."formdata-node-4.3.3" // {
dependencies = [
sources."web-streams-polyfill-4.0.0-beta.1"
];
@@ -101806,7 +101943,7 @@ in
sources."ts-node-9.1.1"
sources."tslib-2.4.0"
sources."type-is-1.6.18"
- sources."undici-5.4.0"
+ sources."undici-5.5.1"
sources."uniq-1.0.1"
sources."universalify-0.1.2"
sources."unixify-1.0.0"
@@ -102106,7 +102243,7 @@ in
sources."isarray-0.0.1"
sources."lodash-4.17.21"
sources."map-canvas-0.1.5"
- sources."marked-4.0.16"
+ sources."marked-4.0.17"
(sources."marked-terminal-5.1.1" // {
dependencies = [
sources."chalk-5.0.1"
@@ -102137,7 +102274,7 @@ in
sources."supports-color-7.2.0"
];
})
- sources."systeminformation-5.11.16"
+ sources."systeminformation-5.11.20"
sources."term-canvas-0.0.5"
sources."type-fest-1.4.0"
sources."wordwrap-0.0.3"
@@ -103270,6 +103407,7 @@ in
sha512 = "U195U0rkLkOuqeG02DRdl/yG2ulNkiMdQnrgAIy2nBn/QXCqyxjFXG1cnbHX7gPXA7d+Qv6kzWDn0K/yn/z+BQ==";
};
dependencies = [
+ sources."abort-controller-3.0.0"
sources."argparse-1.0.10"
sources."assert-plus-1.0.0"
sources."autocast-0.0.4"
@@ -103283,6 +103421,7 @@ in
sources."css-color-names-1.0.1"
sources."dashdash-1.14.1"
sources."deepmerge-3.3.0"
+ sources."event-target-shim-5.0.1"
sources."extsprintf-1.4.1"
sources."fs.realpath-1.0.0"
sources."fuzzyset.js-0.0.1"
@@ -103297,12 +103436,9 @@ in
sources."npm-2.15.12"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
- sources."readable-stream-3.6.0"
- sources."safe-buffer-5.2.1"
+ sources."readable-stream-4.0.0"
sources."sprintf-js-1.0.3"
- sources."string_decoder-1.3.0"
sources."tabula-1.10.0"
- sources."util-deprecate-1.0.2"
sources."verror-1.10.1"
sources."wrappy-1.0.2"
sources."yamljs-0.3.0"
@@ -103338,7 +103474,7 @@ in
sources."assert-plus-1.0.0"
sources."async-2.6.4"
sources."asynckit-0.4.0"
- sources."aws-sdk-2.1152.0"
+ sources."aws-sdk-2.1155.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."base64-js-1.5.1"
@@ -103440,7 +103576,7 @@ in
sources."lodash.reject-4.6.0"
sources."lodash.some-4.6.0"
sources."lodash.uniq-4.5.0"
- sources."marked-4.0.16"
+ sources."marked-4.0.17"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."minimist-1.2.6"
@@ -104817,98 +104953,98 @@ in
sources."tslib-1.14.1"
];
})
- sources."@aws-sdk/abort-controller-3.78.0"
+ sources."@aws-sdk/abort-controller-3.110.0"
sources."@aws-sdk/chunked-blob-reader-3.55.0"
- sources."@aws-sdk/chunked-blob-reader-native-3.58.0"
- (sources."@aws-sdk/client-s3-3.107.0" // {
+ sources."@aws-sdk/chunked-blob-reader-native-3.109.0"
+ (sources."@aws-sdk/client-s3-3.110.0" // {
dependencies = [
sources."fast-xml-parser-3.19.0"
];
})
- sources."@aws-sdk/client-sso-3.105.0"
- (sources."@aws-sdk/client-sts-3.105.0" // {
+ sources."@aws-sdk/client-sso-3.110.0"
+ (sources."@aws-sdk/client-sts-3.110.0" // {
dependencies = [
sources."fast-xml-parser-3.19.0"
];
})
- sources."@aws-sdk/config-resolver-3.80.0"
- sources."@aws-sdk/credential-provider-env-3.78.0"
- sources."@aws-sdk/credential-provider-imds-3.81.0"
- sources."@aws-sdk/credential-provider-ini-3.105.0"
- sources."@aws-sdk/credential-provider-node-3.105.0"
- sources."@aws-sdk/credential-provider-process-3.80.0"
- sources."@aws-sdk/credential-provider-sso-3.105.0"
- sources."@aws-sdk/credential-provider-web-identity-3.78.0"
- sources."@aws-sdk/eventstream-marshaller-3.78.0"
- sources."@aws-sdk/eventstream-serde-browser-3.78.0"
- sources."@aws-sdk/eventstream-serde-config-resolver-3.78.0"
- sources."@aws-sdk/eventstream-serde-node-3.78.0"
- sources."@aws-sdk/eventstream-serde-universal-3.78.0"
- sources."@aws-sdk/fetch-http-handler-3.78.0"
- sources."@aws-sdk/hash-blob-browser-3.78.0"
- sources."@aws-sdk/hash-node-3.78.0"
- sources."@aws-sdk/hash-stream-node-3.78.0"
- sources."@aws-sdk/invalid-dependency-3.78.0"
+ sources."@aws-sdk/config-resolver-3.110.0"
+ sources."@aws-sdk/credential-provider-env-3.110.0"
+ sources."@aws-sdk/credential-provider-imds-3.110.0"
+ sources."@aws-sdk/credential-provider-ini-3.110.0"
+ sources."@aws-sdk/credential-provider-node-3.110.0"
+ sources."@aws-sdk/credential-provider-process-3.110.0"
+ sources."@aws-sdk/credential-provider-sso-3.110.0"
+ sources."@aws-sdk/credential-provider-web-identity-3.110.0"
+ sources."@aws-sdk/eventstream-marshaller-3.110.0"
+ sources."@aws-sdk/eventstream-serde-browser-3.110.0"
+ sources."@aws-sdk/eventstream-serde-config-resolver-3.110.0"
+ sources."@aws-sdk/eventstream-serde-node-3.110.0"
+ sources."@aws-sdk/eventstream-serde-universal-3.110.0"
+ sources."@aws-sdk/fetch-http-handler-3.110.0"
+ sources."@aws-sdk/hash-blob-browser-3.110.0"
+ sources."@aws-sdk/hash-node-3.110.0"
+ sources."@aws-sdk/hash-stream-node-3.110.0"
+ sources."@aws-sdk/invalid-dependency-3.110.0"
sources."@aws-sdk/is-array-buffer-3.55.0"
- sources."@aws-sdk/md5-js-3.78.0"
- sources."@aws-sdk/middleware-bucket-endpoint-3.80.0"
- sources."@aws-sdk/middleware-content-length-3.78.0"
- sources."@aws-sdk/middleware-expect-continue-3.78.0"
- sources."@aws-sdk/middleware-flexible-checksums-3.78.0"
- sources."@aws-sdk/middleware-header-default-3.78.0"
- sources."@aws-sdk/middleware-host-header-3.78.0"
- sources."@aws-sdk/middleware-location-constraint-3.78.0"
- sources."@aws-sdk/middleware-logger-3.78.0"
- sources."@aws-sdk/middleware-recursion-detection-3.105.0"
- (sources."@aws-sdk/middleware-retry-3.80.0" // {
+ sources."@aws-sdk/md5-js-3.110.0"
+ sources."@aws-sdk/middleware-bucket-endpoint-3.110.0"
+ sources."@aws-sdk/middleware-content-length-3.110.0"
+ sources."@aws-sdk/middleware-expect-continue-3.110.0"
+ sources."@aws-sdk/middleware-flexible-checksums-3.110.0"
+ sources."@aws-sdk/middleware-header-default-3.110.0"
+ sources."@aws-sdk/middleware-host-header-3.110.0"
+ sources."@aws-sdk/middleware-location-constraint-3.110.0"
+ sources."@aws-sdk/middleware-logger-3.110.0"
+ sources."@aws-sdk/middleware-recursion-detection-3.110.0"
+ (sources."@aws-sdk/middleware-retry-3.110.0" // {
dependencies = [
sources."uuid-8.3.2"
];
})
- sources."@aws-sdk/middleware-sdk-s3-3.105.0"
- sources."@aws-sdk/middleware-sdk-sts-3.78.0"
- sources."@aws-sdk/middleware-serde-3.78.0"
- sources."@aws-sdk/middleware-signing-3.78.0"
- sources."@aws-sdk/middleware-ssec-3.78.0"
- sources."@aws-sdk/middleware-stack-3.78.0"
- sources."@aws-sdk/middleware-user-agent-3.78.0"
- sources."@aws-sdk/node-config-provider-3.80.0"
- sources."@aws-sdk/node-http-handler-3.94.0"
- sources."@aws-sdk/property-provider-3.78.0"
- sources."@aws-sdk/protocol-http-3.78.0"
- sources."@aws-sdk/querystring-builder-3.78.0"
- sources."@aws-sdk/querystring-parser-3.78.0"
- sources."@aws-sdk/s3-request-presigner-3.107.0"
- sources."@aws-sdk/service-error-classification-3.78.0"
- sources."@aws-sdk/shared-ini-file-loader-3.80.0"
- sources."@aws-sdk/signature-v4-3.78.0"
- sources."@aws-sdk/signature-v4-multi-region-3.88.0"
- sources."@aws-sdk/smithy-client-3.99.0"
- sources."@aws-sdk/types-3.78.0"
- sources."@aws-sdk/url-parser-3.78.0"
+ sources."@aws-sdk/middleware-sdk-s3-3.110.0"
+ sources."@aws-sdk/middleware-sdk-sts-3.110.0"
+ sources."@aws-sdk/middleware-serde-3.110.0"
+ sources."@aws-sdk/middleware-signing-3.110.0"
+ sources."@aws-sdk/middleware-ssec-3.110.0"
+ sources."@aws-sdk/middleware-stack-3.110.0"
+ sources."@aws-sdk/middleware-user-agent-3.110.0"
+ sources."@aws-sdk/node-config-provider-3.110.0"
+ sources."@aws-sdk/node-http-handler-3.110.0"
+ sources."@aws-sdk/property-provider-3.110.0"
+ sources."@aws-sdk/protocol-http-3.110.0"
+ sources."@aws-sdk/querystring-builder-3.110.0"
+ sources."@aws-sdk/querystring-parser-3.110.0"
+ sources."@aws-sdk/s3-request-presigner-3.110.0"
+ sources."@aws-sdk/service-error-classification-3.110.0"
+ sources."@aws-sdk/shared-ini-file-loader-3.110.0"
+ sources."@aws-sdk/signature-v4-3.110.0"
+ sources."@aws-sdk/signature-v4-multi-region-3.110.0"
+ sources."@aws-sdk/smithy-client-3.110.0"
+ sources."@aws-sdk/types-3.110.0"
+ sources."@aws-sdk/url-parser-3.110.0"
sources."@aws-sdk/util-arn-parser-3.55.0"
- sources."@aws-sdk/util-base64-browser-3.58.0"
+ sources."@aws-sdk/util-base64-browser-3.109.0"
sources."@aws-sdk/util-base64-node-3.55.0"
sources."@aws-sdk/util-body-length-browser-3.55.0"
sources."@aws-sdk/util-body-length-node-3.55.0"
sources."@aws-sdk/util-buffer-from-3.55.0"
- sources."@aws-sdk/util-config-provider-3.55.0"
- sources."@aws-sdk/util-create-request-3.99.0"
- sources."@aws-sdk/util-defaults-mode-browser-3.99.0"
- sources."@aws-sdk/util-defaults-mode-node-3.99.0"
- sources."@aws-sdk/util-format-url-3.78.0"
- sources."@aws-sdk/util-hex-encoding-3.58.0"
+ sources."@aws-sdk/util-config-provider-3.109.0"
+ sources."@aws-sdk/util-create-request-3.110.0"
+ sources."@aws-sdk/util-defaults-mode-browser-3.110.0"
+ sources."@aws-sdk/util-defaults-mode-node-3.110.0"
+ sources."@aws-sdk/util-format-url-3.110.0"
+ sources."@aws-sdk/util-hex-encoding-3.109.0"
sources."@aws-sdk/util-locate-window-3.55.0"
- sources."@aws-sdk/util-middleware-3.78.0"
- sources."@aws-sdk/util-stream-browser-3.78.0"
- sources."@aws-sdk/util-stream-node-3.78.0"
+ sources."@aws-sdk/util-middleware-3.110.0"
+ sources."@aws-sdk/util-stream-browser-3.110.0"
+ sources."@aws-sdk/util-stream-node-3.110.0"
sources."@aws-sdk/util-uri-escape-3.55.0"
- sources."@aws-sdk/util-user-agent-browser-3.78.0"
- sources."@aws-sdk/util-user-agent-node-3.80.0"
- sources."@aws-sdk/util-utf8-browser-3.55.0"
- sources."@aws-sdk/util-utf8-node-3.55.0"
- sources."@aws-sdk/util-waiter-3.78.0"
- sources."@aws-sdk/xml-builder-3.55.0"
+ sources."@aws-sdk/util-user-agent-browser-3.110.0"
+ sources."@aws-sdk/util-user-agent-node-3.110.0"
+ sources."@aws-sdk/util-utf8-browser-3.109.0"
+ sources."@aws-sdk/util-utf8-node-3.109.0"
+ sources."@aws-sdk/util-waiter-3.110.0"
+ sources."@aws-sdk/xml-builder-3.109.0"
sources."@braintree/sanitize-url-3.1.0"
sources."@cronvel/get-pixels-3.4.0"
sources."@gar/promisify-1.1.3"
@@ -105017,7 +105153,7 @@ in
sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.1152.0" // {
+ (sources."aws-sdk-2.1155.0" // {
dependencies = [
sources."sax-1.2.1"
sources."uuid-8.0.0"
@@ -105875,7 +106011,7 @@ in
sha512 = "IdQ8ppSo5LKZ9o3M+LKIIK8i00DIe5msDvG3G81Km+1dhy0XrOWD0Ji8H61ElgyEj/O9KRLokgKbAM9XX9CJAg==";
};
dependencies = [
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@types/linkify-it-3.0.2"
sources."@types/markdown-it-12.2.3"
sources."@types/mdurl-1.0.2"
@@ -105890,7 +106026,7 @@ in
sources."lodash-4.17.21"
sources."markdown-it-12.3.2"
sources."markdown-it-anchor-8.6.4"
- sources."marked-4.0.16"
+ sources."marked-4.0.17"
sources."mdurl-1.0.1"
sources."mkdirp-1.0.4"
sources."requizzle-0.2.3"
@@ -106035,48 +106171,57 @@ in
};
dependencies = [
sources."argparse-1.0.10"
+ sources."asap-2.0.6"
sources."asynckit-0.4.0"
sources."call-bind-1.0.2"
sources."combined-stream-1.0.8"
sources."commander-4.1.1"
sources."component-emitter-1.3.0"
sources."cookiejar-2.1.3"
- sources."core-util-is-1.0.3"
- sources."debug-3.2.7"
+ sources."debug-4.3.4"
sources."delayed-stream-1.0.0"
+ sources."dezalgo-1.0.3"
sources."esprima-4.0.1"
- sources."extend-3.0.2"
- sources."form-data-2.5.1"
- sources."formidable-1.2.6"
+ sources."fast-safe-stringify-2.1.1"
+ sources."form-data-4.0.0"
+ (sources."formidable-2.0.1" // {
+ dependencies = [
+ sources."qs-6.9.3"
+ ];
+ })
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.2"
sources."graphlib-2.1.8"
sources."has-1.0.3"
sources."has-symbols-1.0.3"
+ sources."hexoid-1.0.0"
sources."inherits-2.0.4"
- sources."isarray-1.0.0"
sources."js-yaml-3.14.1"
sources."lodash-4.17.21"
+ sources."lru-cache-6.0.0"
sources."methods-1.1.2"
- sources."mime-1.6.0"
+ sources."mime-2.6.0"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
- sources."ms-2.1.3"
+ sources."ms-2.1.2"
sources."native-promise-only-0.8.1"
sources."object-inspect-1.12.2"
- sources."path-loader-1.0.10"
- sources."process-nextick-args-2.0.1"
+ sources."once-1.4.0"
+ sources."path-loader-1.0.12"
sources."punycode-2.1.1"
sources."qs-6.10.5"
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
+ sources."readable-stream-3.6.0"
+ sources."safe-buffer-5.2.1"
+ sources."semver-7.3.7"
sources."side-channel-1.0.4"
sources."slash-3.0.0"
sources."sprintf-js-1.0.3"
- sources."string_decoder-1.1.1"
- sources."superagent-3.8.3"
+ sources."string_decoder-1.3.0"
+ sources."superagent-7.1.6"
sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
+ sources."wrappy-1.0.2"
+ sources."yallist-4.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -107185,17 +107330,17 @@ in
karma = nodeEnv.buildNodePackage {
name = "karma";
packageName = "karma";
- version = "6.3.20";
+ version = "6.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/karma/-/karma-6.3.20.tgz";
- sha512 = "HRNQhMuKOwKpjYlWiJP0DUrJOh+QjaI/DTaD8b9rEm4Il3tJ8MijutVZH4ts10LuUFst/CedwTS6vieCN8yTSw==";
+ url = "https://registry.npmjs.org/karma/-/karma-6.4.0.tgz";
+ sha512 = "s8m7z0IF5g/bS5ONT7wsOavhW4i4aFkzD4u4wgzAQWT4HGUeWI3i21cK2Yz6jndMAeHETp5XuNsRoyGJZXVd4w==";
};
dependencies = [
sources."@colors/colors-1.5.0"
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."accepts-1.3.8"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -107370,8 +107515,8 @@ in
sources."@ampproject/remapping-2.2.0"
sources."@babel/cli-7.17.10"
sources."@babel/code-frame-7.16.7"
- sources."@babel/compat-data-7.17.10"
- (sources."@babel/core-7.18.2" // {
+ sources."@babel/compat-data-7.18.5"
+ (sources."@babel/core-7.18.5" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -107399,13 +107544,13 @@ in
sources."@babel/helper-validator-option-7.16.7"
sources."@babel/helpers-7.18.2"
sources."@babel/highlight-7.17.12"
- sources."@babel/node-7.17.10"
- sources."@babel/parser-7.18.4"
+ sources."@babel/node-7.18.5"
+ sources."@babel/parser-7.18.5"
sources."@babel/plugin-syntax-jsx-7.17.12"
sources."@babel/plugin-transform-react-jsx-7.17.12"
sources."@babel/register-7.17.7"
sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.18.2"
+ sources."@babel/traverse-7.18.5"
sources."@babel/types-7.18.4"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.0.7"
@@ -107417,7 +107562,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@openpgp/hkp-client-0.0.2"
sources."@openpgp/wkd-client-0.0.3"
- sources."@peculiar/asn1-schema-2.1.8"
+ sources."@peculiar/asn1-schema-2.1.9"
sources."@peculiar/json-schema-1.1.12"
sources."@peculiar/webcrypto-1.4.0"
sources."@tootallnate/once-1.1.2"
@@ -107499,7 +107644,7 @@ in
sources."buffer-from-1.1.2"
sources."bytes-3.1.2"
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
sources."chalk-2.4.2"
sources."chardet-1.4.0"
sources."chownr-1.1.4"
@@ -107528,7 +107673,7 @@ in
sources."convert-source-map-1.8.0"
sources."cookie-0.5.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.8"
+ sources."core-js-3.23.1"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."create-hash-1.2.0"
@@ -107567,7 +107712,7 @@ in
})
sources."dotenv-8.6.0"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -108559,10 +108704,10 @@ in
lerna = nodeEnv.buildNodePackage {
name = "lerna";
packageName = "lerna";
- version = "5.1.1";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/lerna/-/lerna-5.1.1.tgz";
- sha512 = "huJ8jHn3qrKVX89b3SumQE5buCfXQ1pyikk7cdmAI9jnwBRMBfMR/3mxd+lonNYJGRFTsQ6yF+AkK/sqRSNXhA==";
+ url = "https://registry.npmjs.org/lerna/-/lerna-5.1.4.tgz";
+ sha512 = "WwSbMslPxWSV7ARsGzkhJAFC1uQcuNGgiy2vZho4bpXVC+A7ZLXy8FngDbcAn7hCGC3ZDnl/4jdY6d84j63Y4g==";
};
dependencies = [
sources."@babel/code-frame-7.16.7"
@@ -108580,56 +108725,56 @@ in
sources."@gar/promisify-1.1.3"
sources."@hutson/parse-repository-url-3.0.2"
sources."@isaacs/string-locale-compare-1.1.0"
- sources."@lerna/add-5.1.1"
- sources."@lerna/bootstrap-5.1.1"
- sources."@lerna/changed-5.1.1"
- sources."@lerna/check-working-tree-5.1.1"
- sources."@lerna/child-process-5.1.1"
- sources."@lerna/clean-5.1.1"
- sources."@lerna/cli-5.1.1"
- sources."@lerna/collect-uncommitted-5.1.1"
- sources."@lerna/collect-updates-5.1.1"
- sources."@lerna/command-5.1.1"
- (sources."@lerna/conventional-commits-5.1.1" // {
+ sources."@lerna/add-5.1.4"
+ sources."@lerna/bootstrap-5.1.4"
+ sources."@lerna/changed-5.1.4"
+ sources."@lerna/check-working-tree-5.1.4"
+ sources."@lerna/child-process-5.1.4"
+ sources."@lerna/clean-5.1.4"
+ sources."@lerna/cli-5.1.4"
+ sources."@lerna/collect-uncommitted-5.1.4"
+ sources."@lerna/collect-updates-5.1.4"
+ sources."@lerna/command-5.1.4"
+ (sources."@lerna/conventional-commits-5.1.4" // {
dependencies = [
sources."pify-5.0.0"
];
})
- (sources."@lerna/create-5.1.1" // {
+ (sources."@lerna/create-5.1.4" // {
dependencies = [
sources."pify-5.0.0"
sources."yargs-parser-20.2.4"
];
})
- sources."@lerna/create-symlink-5.1.1"
- sources."@lerna/describe-ref-5.1.1"
- sources."@lerna/diff-5.1.1"
- sources."@lerna/exec-5.1.1"
- sources."@lerna/filter-options-5.1.1"
- sources."@lerna/filter-packages-5.1.1"
- sources."@lerna/get-npm-exec-opts-5.1.1"
- (sources."@lerna/get-packed-5.1.1" // {
+ sources."@lerna/create-symlink-5.1.4"
+ sources."@lerna/describe-ref-5.1.4"
+ sources."@lerna/diff-5.1.4"
+ sources."@lerna/exec-5.1.4"
+ sources."@lerna/filter-options-5.1.4"
+ sources."@lerna/filter-packages-5.1.4"
+ sources."@lerna/get-npm-exec-opts-5.1.4"
+ (sources."@lerna/get-packed-5.1.4" // {
dependencies = [
sources."ssri-8.0.1"
];
})
- sources."@lerna/github-client-5.1.1"
- sources."@lerna/gitlab-client-5.1.1"
- sources."@lerna/global-options-5.1.1"
- sources."@lerna/has-npm-version-5.1.1"
- sources."@lerna/import-5.1.1"
- sources."@lerna/info-5.1.1"
- sources."@lerna/init-5.1.1"
- sources."@lerna/link-5.1.1"
- sources."@lerna/list-5.1.1"
- sources."@lerna/listable-5.1.1"
- sources."@lerna/log-packed-5.1.1"
- (sources."@lerna/npm-conf-5.1.1" // {
+ sources."@lerna/github-client-5.1.4"
+ sources."@lerna/gitlab-client-5.1.4"
+ sources."@lerna/global-options-5.1.4"
+ sources."@lerna/has-npm-version-5.1.4"
+ sources."@lerna/import-5.1.4"
+ sources."@lerna/info-5.1.4"
+ sources."@lerna/init-5.1.4"
+ sources."@lerna/link-5.1.4"
+ sources."@lerna/list-5.1.4"
+ sources."@lerna/listable-5.1.4"
+ sources."@lerna/log-packed-5.1.4"
+ (sources."@lerna/npm-conf-5.1.4" // {
dependencies = [
sources."pify-5.0.0"
];
})
- (sources."@lerna/npm-dist-tag-5.1.1" // {
+ (sources."@lerna/npm-dist-tag-5.1.4" // {
dependencies = [
sources."cacache-15.3.0"
sources."make-fetch-happen-8.0.14"
@@ -108638,30 +108783,30 @@ in
sources."ssri-8.0.1"
];
})
- sources."@lerna/npm-install-5.1.1"
- (sources."@lerna/npm-publish-5.1.1" // {
+ sources."@lerna/npm-install-5.1.4"
+ (sources."@lerna/npm-publish-5.1.4" // {
dependencies = [
sources."normalize-package-data-3.0.3"
sources."pify-5.0.0"
sources."read-package-json-3.0.1"
];
})
- sources."@lerna/npm-run-script-5.1.1"
- sources."@lerna/otplease-5.1.1"
- sources."@lerna/output-5.1.1"
- (sources."@lerna/pack-directory-5.1.1" // {
+ sources."@lerna/npm-run-script-5.1.4"
+ sources."@lerna/otplease-5.1.4"
+ sources."@lerna/output-5.1.4"
+ (sources."@lerna/pack-directory-5.1.4" // {
dependencies = [
sources."ignore-walk-3.0.4"
sources."npm-packlist-2.2.2"
];
})
- sources."@lerna/package-5.1.1"
- sources."@lerna/package-graph-5.1.1"
- sources."@lerna/prerelease-id-from-version-5.1.1"
- sources."@lerna/profiler-5.1.1"
- sources."@lerna/project-5.1.1"
- sources."@lerna/prompt-5.1.1"
- (sources."@lerna/publish-5.1.1" // {
+ sources."@lerna/package-5.1.4"
+ sources."@lerna/package-graph-5.1.4"
+ sources."@lerna/prerelease-id-from-version-5.1.4"
+ sources."@lerna/profiler-5.1.4"
+ sources."@lerna/project-5.1.4"
+ sources."@lerna/prompt-5.1.4"
+ (sources."@lerna/publish-5.1.4" // {
dependencies = [
sources."cacache-15.3.0"
sources."make-fetch-happen-8.0.14"
@@ -108670,25 +108815,25 @@ in
sources."ssri-8.0.1"
];
})
- sources."@lerna/pulse-till-done-5.1.1"
- sources."@lerna/query-graph-5.1.1"
- sources."@lerna/resolve-symlink-5.1.1"
- sources."@lerna/rimraf-dir-5.1.1"
- sources."@lerna/run-5.1.1"
- sources."@lerna/run-lifecycle-5.1.1"
- sources."@lerna/run-topologically-5.1.1"
- sources."@lerna/symlink-binary-5.1.1"
- sources."@lerna/symlink-dependencies-5.1.1"
- (sources."@lerna/temp-write-5.1.0" // {
+ sources."@lerna/pulse-till-done-5.1.4"
+ sources."@lerna/query-graph-5.1.4"
+ sources."@lerna/resolve-symlink-5.1.4"
+ sources."@lerna/rimraf-dir-5.1.4"
+ sources."@lerna/run-5.1.4"
+ sources."@lerna/run-lifecycle-5.1.4"
+ sources."@lerna/run-topologically-5.1.4"
+ sources."@lerna/symlink-binary-5.1.4"
+ sources."@lerna/symlink-dependencies-5.1.4"
+ (sources."@lerna/temp-write-5.1.4" // {
dependencies = [
sources."make-dir-3.1.0"
sources."semver-6.3.0"
];
})
- sources."@lerna/timer-5.1.1"
- sources."@lerna/validation-error-5.1.1"
- sources."@lerna/version-5.1.1"
- (sources."@lerna/write-log-file-5.1.1" // {
+ sources."@lerna/timer-5.1.4"
+ sources."@lerna/validation-error-5.1.4"
+ sources."@lerna/version-5.1.4"
+ (sources."@lerna/write-log-file-5.1.4" // {
dependencies = [
sources."write-file-atomic-3.0.3"
];
@@ -108703,7 +108848,6 @@ in
sources."hosted-git-info-5.0.0"
sources."lru-cache-7.10.1"
sources."npm-package-arg-9.0.2"
- sources."npmlog-6.0.2"
sources."validate-npm-package-name-4.0.0"
];
})
@@ -108737,11 +108881,11 @@ in
];
})
sources."@octokit/graphql-4.8.0"
- sources."@octokit/openapi-types-11.2.0"
+ sources."@octokit/openapi-types-12.1.0"
sources."@octokit/plugin-enterprise-rest-6.0.1"
- sources."@octokit/plugin-paginate-rest-2.17.0"
+ sources."@octokit/plugin-paginate-rest-2.18.0"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.13.0"
+ sources."@octokit/plugin-rest-endpoint-methods-5.14.0"
(sources."@octokit/request-5.6.3" // {
dependencies = [
sources."is-plain-object-5.0.0"
@@ -108749,7 +108893,7 @@ in
})
sources."@octokit/request-error-2.1.0"
sources."@octokit/rest-18.12.0"
- sources."@octokit/types-6.34.0"
+ sources."@octokit/types-6.35.0"
sources."@tootallnate/once-1.1.2"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
@@ -108815,7 +108959,6 @@ in
sources."clone-1.0.4"
sources."clone-deep-4.0.1"
sources."cmd-shim-4.1.0"
- sources."code-point-at-1.1.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."color-support-1.1.3"
@@ -109013,10 +109156,7 @@ in
})
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
- sources."lodash._reinterpolate-3.0.0"
sources."lodash.ismatch-4.4.0"
- sources."lodash.template-4.5.0"
- sources."lodash.templatesettings-4.2.0"
sources."lru-cache-6.0.0"
(sources."make-dir-2.1.0" // {
dependencies = [
@@ -109084,11 +109224,7 @@ in
sources."whatwg-url-5.0.0"
];
})
- (sources."node-gyp-8.4.1" // {
- dependencies = [
- sources."npmlog-6.0.2"
- ];
- })
+ sources."node-gyp-8.4.1"
sources."nopt-5.0.0"
(sources."normalize-package-data-4.0.0" // {
dependencies = [
@@ -109132,22 +109268,7 @@ in
];
})
sources."npm-run-path-4.0.1"
- (sources."npmlog-4.1.2" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.7"
- sources."gauge-2.7.4"
- sources."is-fullwidth-code-point-1.0.0"
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string-width-1.0.2"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-3.0.1"
- ];
- })
- sources."number-is-nan-1.0.1"
- sources."object-assign-4.1.1"
+ sources."npmlog-6.0.2"
sources."object-inspect-1.12.2"
sources."once-1.4.0"
sources."onetime-5.1.2"
@@ -109338,7 +109459,7 @@ in
buildInputs = globalBuildInputs;
meta = {
description = "A tool for managing JavaScript projects with multiple packages.";
- homepage = "https://github.com/lerna/lerna#readme";
+ homepage = "https://lerna.js.org";
license = "MIT";
};
production = true;
@@ -110285,7 +110406,7 @@ in
sources."@types/commander-2.12.2"
sources."@types/diff-3.5.5"
sources."@types/get-stdin-5.0.1"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."commander-2.20.3"
sources."diff-3.5.0"
sources."get-stdin-5.0.1"
@@ -110668,7 +110789,7 @@ in
sources."link-check-5.1.0"
sources."lodash-4.17.21"
sources."markdown-link-extractor-3.0.2"
- sources."marked-4.0.16"
+ sources."marked-4.0.17"
sources."ms-2.1.3"
sources."needle-3.1.0"
sources."nth-check-2.1.1"
@@ -111173,7 +111294,7 @@ in
};
dependencies = [
sources."@braintree/sanitize-url-6.0.0"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/yauzl-2.10.0"
sources."agent-base-6.0.2"
sources."ansi-styles-4.3.0"
@@ -111267,7 +111388,7 @@ in
sources."debug-4.3.4"
sources."delaunator-5.0.0"
sources."devtools-protocol-0.0.1001819"
- sources."dompurify-2.3.6"
+ sources."dompurify-2.3.8"
sources."end-of-stream-1.4.4"
sources."extract-zip-2.0.1"
sources."fd-slicer-1.1.0"
@@ -111287,7 +111408,7 @@ in
sources."khroma-2.0.0"
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
- sources."mermaid-9.1.1"
+ sources."mermaid-9.1.2"
sources."minimatch-3.1.2"
sources."mkdirp-classic-0.5.3"
sources."moment-mini-2.24.0"
@@ -111304,7 +111425,7 @@ in
sources."progress-2.0.3"
sources."proxy-from-env-1.1.0"
sources."pump-3.0.0"
- sources."puppeteer-14.3.0"
+ sources."puppeteer-14.4.0"
sources."readable-stream-3.6.0"
sources."rimraf-3.0.2"
sources."robust-predicates-3.0.1"
@@ -111456,26 +111577,31 @@ in
};
dependencies = [
sources."argparse-1.0.10"
+ sources."asap-2.0.6"
sources."asynckit-0.4.0"
sources."call-bind-1.0.2"
sources."combined-stream-1.0.8"
sources."commander-2.20.3"
sources."component-emitter-1.3.0"
sources."cookiejar-2.1.3"
- sources."core-util-is-1.0.3"
- sources."debug-3.2.7"
+ sources."debug-4.3.4"
sources."delayed-stream-1.0.0"
+ sources."dezalgo-1.0.3"
sources."esprima-4.0.1"
- sources."extend-3.0.2"
- sources."form-data-2.5.1"
- sources."formidable-1.2.6"
+ sources."fast-safe-stringify-2.1.1"
+ sources."form-data-4.0.0"
+ (sources."formidable-2.0.1" // {
+ dependencies = [
+ sources."qs-6.9.3"
+ ];
+ })
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.2"
sources."graphlib-2.1.8"
sources."has-1.0.3"
sources."has-symbols-1.0.3"
+ sources."hexoid-1.0.0"
sources."inherits-2.0.4"
- sources."isarray-1.0.0"
sources."js-yaml-3.14.1"
(sources."json-refs-3.0.15" // {
dependencies = [
@@ -111483,26 +111609,30 @@ in
];
})
sources."lodash-4.17.21"
+ sources."lru-cache-6.0.0"
sources."methods-1.1.2"
- sources."mime-1.6.0"
+ sources."mime-2.6.0"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
- sources."ms-2.1.3"
+ sources."ms-2.1.2"
sources."native-promise-only-0.8.1"
sources."object-inspect-1.12.2"
- sources."path-loader-1.0.10"
- sources."process-nextick-args-2.0.1"
+ sources."once-1.4.0"
+ sources."path-loader-1.0.12"
sources."punycode-2.1.1"
sources."qs-6.10.5"
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
+ sources."readable-stream-3.6.0"
+ sources."safe-buffer-5.2.1"
+ sources."semver-7.3.7"
sources."side-channel-1.0.4"
sources."slash-3.0.0"
sources."sprintf-js-1.0.3"
- sources."string_decoder-1.1.1"
- sources."superagent-3.8.3"
+ sources."string_decoder-1.3.0"
+ sources."superagent-7.1.6"
sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
+ sources."wrappy-1.0.2"
+ sources."yallist-4.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -111653,7 +111783,7 @@ in
sources."@types/istanbul-lib-coverage-2.0.4"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-3.0.1"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/stack-utils-2.0.1"
sources."@types/yargs-16.0.4"
sources."@types/yargs-parser-21.0.0"
@@ -111790,7 +111920,7 @@ in
sources."jest-mock-27.5.1"
(sources."jest-util-27.5.1" // {
dependencies = [
- sources."ci-info-3.3.1"
+ sources."ci-info-3.3.2"
];
})
sources."js-sha256-0.9.0"
@@ -112611,7 +112741,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
@@ -113366,7 +113496,7 @@ in
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-1.0.0"
@@ -113861,10 +113991,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "8.12.1";
+ version = "8.12.2";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-8.12.1.tgz";
- sha512 = "0yOlhfgu1UzP6UijnaFuIS2bES2H9D90EA5OVsf2iOZw7VBrjntXKEwKfCaFA6vMVWkCP8qnPwCxxPdnDVwlNw==";
+ url = "https://registry.npmjs.org/npm/-/npm-8.12.2.tgz";
+ sha512 = "TArexqro9wpl/6wz6t6YdYhOoiy/UArqiSsSsqI7fieEhQEswDQSJcgt/LuCDjl6mfCDi0So7S2UZ979qLYRPg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -113879,10 +114009,10 @@ in
npm-check-updates = nodeEnv.buildNodePackage {
name = "npm-check-updates";
packageName = "npm-check-updates";
- version = "13.1.3";
+ version = "13.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-13.1.3.tgz";
- sha512 = "wyxcDctV5/gsVAhtmvQWZttI61evj6E5XrAviElnXAdXPKGG/rqYIAcKS2EZUgVoKJnCkjQmXgONzybim8SmfQ==";
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-13.1.5.tgz";
+ sha512 = "vAVYlrrxJIPH/R5mxMzrNwP33hYflvk7oQqPjPOySCavCFwhXKmfK5sn/rogyebg7cLnECiDxsczGqvTOEBRAA==";
};
dependencies = [
sources."@gar/promisify-1.1.3"
@@ -114348,8 +114478,8 @@ in
dependencies = [
sources."@ampproject/remapping-2.2.0"
sources."@babel/code-frame-7.16.7"
- sources."@babel/compat-data-7.17.10"
- (sources."@babel/core-7.18.2" // {
+ sources."@babel/compat-data-7.18.5"
+ (sources."@babel/core-7.18.5" // {
dependencies = [
sources."json5-2.2.1"
sources."semver-6.3.0"
@@ -114393,7 +114523,7 @@ in
sources."@babel/helper-wrap-function-7.16.8"
sources."@babel/helpers-7.18.2"
sources."@babel/highlight-7.17.12"
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12"
sources."@babel/plugin-proposal-async-generator-functions-7.17.12"
@@ -114445,10 +114575,10 @@ in
sources."@babel/plugin-transform-member-expression-literals-7.16.7"
sources."@babel/plugin-transform-modules-amd-7.18.0"
sources."@babel/plugin-transform-modules-commonjs-7.18.2"
- sources."@babel/plugin-transform-modules-systemjs-7.18.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.18.5"
sources."@babel/plugin-transform-modules-umd-7.18.0"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.12"
- sources."@babel/plugin-transform-new-target-7.17.12"
+ sources."@babel/plugin-transform-new-target-7.18.5"
sources."@babel/plugin-transform-object-super-7.16.7"
sources."@babel/plugin-transform-parameters-7.17.12"
sources."@babel/plugin-transform-property-literals-7.16.7"
@@ -114470,7 +114600,7 @@ in
sources."@babel/preset-modules-0.1.5"
sources."@babel/runtime-7.18.3"
sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.18.2"
+ sources."@babel/traverse-7.18.5"
sources."@babel/types-7.18.4"
sources."@iarna/toml-2.2.5"
sources."@jridgewell/gen-mapping-0.1.1"
@@ -114604,7 +114734,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -114630,7 +114760,7 @@ in
sources."convert-source-map-1.8.0"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.22.8" // {
+ (sources."core-js-compat-3.23.1" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -114741,7 +114871,7 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -115419,15 +115549,15 @@ in
sources."@parcel/compressor-raw-2.6.0"
sources."@parcel/config-default-2.6.0"
sources."@parcel/core-2.6.0"
- sources."@parcel/css-1.9.0"
- sources."@parcel/css-darwin-arm64-1.9.0"
- sources."@parcel/css-darwin-x64-1.9.0"
- sources."@parcel/css-linux-arm-gnueabihf-1.9.0"
- sources."@parcel/css-linux-arm64-gnu-1.9.0"
- sources."@parcel/css-linux-arm64-musl-1.9.0"
- sources."@parcel/css-linux-x64-gnu-1.9.0"
- sources."@parcel/css-linux-x64-musl-1.9.0"
- sources."@parcel/css-win32-x64-msvc-1.9.0"
+ sources."@parcel/css-1.10.0"
+ sources."@parcel/css-darwin-arm64-1.10.0"
+ sources."@parcel/css-darwin-x64-1.10.0"
+ sources."@parcel/css-linux-arm-gnueabihf-1.10.0"
+ sources."@parcel/css-linux-arm64-gnu-1.10.0"
+ sources."@parcel/css-linux-arm64-musl-1.10.0"
+ sources."@parcel/css-linux-x64-gnu-1.10.0"
+ sources."@parcel/css-linux-x64-musl-1.10.0"
+ sources."@parcel/css-win32-x64-msvc-1.10.0"
sources."@parcel/diagnostic-2.6.0"
sources."@parcel/events-2.6.0"
sources."@parcel/fs-2.6.0"
@@ -115500,7 +115630,7 @@ in
sources."browserslist-4.20.4"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -115531,7 +115661,7 @@ in
sources."domutils-2.8.0"
sources."dotenv-7.0.0"
sources."dotenv-expand-5.1.0"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
sources."entities-3.0.1"
sources."error-ex-1.3.2"
sources."escalade-3.1.1"
@@ -117073,7 +117203,7 @@ in
sources."string_decoder-0.10.31"
sources."supports-color-7.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."systeminformation-5.11.16"
+ sources."systeminformation-5.11.20"
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.1"
sources."tslib-2.4.0"
@@ -117316,10 +117446,10 @@ in
prettier = nodeEnv.buildNodePackage {
name = "prettier";
packageName = "prettier";
- version = "2.6.2";
+ version = "2.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz";
- sha512 = "PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==";
+ url = "https://registry.npmjs.org/prettier/-/prettier-2.7.0.tgz";
+ sha512 = "nwoX4GMFgxoPC6diHvSwmK/4yU8FFH3V8XWtLQrbj4IBsK2pkYhG4kf/ljF/haaZ/aii+wNJqISrCDPgxGWDVQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -117349,7 +117479,7 @@ in
sources."minimist-1.2.6"
sources."nanolru-1.0.0"
sources."path-parse-1.0.7"
- sources."prettier-2.6.2"
+ sources."prettier-2.7.0"
sources."resolve-1.22.0"
sources."supports-color-8.1.1"
sources."supports-preserve-symlinks-flag-1.0.0"
@@ -117391,10 +117521,10 @@ in
prisma = nodeEnv.buildNodePackage {
name = "prisma";
packageName = "prisma";
- version = "3.15.1";
+ version = "3.15.2";
src = fetchurl {
- url = "https://registry.npmjs.org/prisma/-/prisma-3.15.1.tgz";
- sha512 = "MLO3JUGJpe5+EVisA/i47+zlyF8Ug0ivvGYG4B9oSXQcPiUHB1ccmnpxqR7o0Up5SQgmxkBiEU//HgR6UuIKOw==";
+ url = "https://registry.npmjs.org/prisma/-/prisma-3.15.2.tgz";
+ sha512 = "nMNSMZvtwrvoEQ/mui8L/aiCLZRCj5t6L3yujKpcDhIPk7garp8tL4nMx2+oYsN0FWBacevJhazfXAbV1kfBzA==";
};
dependencies = [
sources."@prisma/engines-3.15.1-1.461d6a05159055555eb7dfb337c9fb271cbd4d7e"
@@ -117949,10 +118079,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.253";
+ version = "1.1.254";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.253.tgz";
- sha512 = "z5Ou+Gj5V6TE0ysukdAeujUuKleIwoy32SrtcxWgVcVm+2i8HqPq3AZcLvnKmzK5mL4NC/hP/3uWTmZDrxs6iA==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.254.tgz";
+ sha512 = "YDbIqr55EkwRCFSVjWxj8KOwBTMVK1U3HLLdqp+W3n+88S31YbRERrCni9izmtt5i4wnuhf7oRI/9K8KwLxmgQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -118313,8 +118443,8 @@ in
sources."@ampproject/remapping-2.2.0"
sources."@babel/cli-7.17.10"
sources."@babel/code-frame-7.16.7"
- sources."@babel/compat-data-7.17.10"
- (sources."@babel/core-7.18.2" // {
+ sources."@babel/compat-data-7.18.5"
+ (sources."@babel/core-7.18.5" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -118357,7 +118487,7 @@ in
sources."@babel/helper-wrap-function-7.16.8"
sources."@babel/helpers-7.18.2"
sources."@babel/highlight-7.17.12"
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12"
sources."@babel/plugin-proposal-async-generator-functions-7.17.12"
@@ -118409,10 +118539,10 @@ in
sources."@babel/plugin-transform-member-expression-literals-7.16.7"
sources."@babel/plugin-transform-modules-amd-7.18.0"
sources."@babel/plugin-transform-modules-commonjs-7.18.2"
- sources."@babel/plugin-transform-modules-systemjs-7.18.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.18.5"
sources."@babel/plugin-transform-modules-umd-7.18.0"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.12"
- sources."@babel/plugin-transform-new-target-7.17.12"
+ sources."@babel/plugin-transform-new-target-7.18.5"
sources."@babel/plugin-transform-object-super-7.16.7"
sources."@babel/plugin-transform-parameters-7.17.12"
sources."@babel/plugin-transform-property-literals-7.16.7"
@@ -118422,7 +118552,7 @@ in
sources."@babel/plugin-transform-react-pure-annotations-7.18.0"
sources."@babel/plugin-transform-regenerator-7.18.0"
sources."@babel/plugin-transform-reserved-words-7.17.12"
- (sources."@babel/plugin-transform-runtime-7.18.2" // {
+ (sources."@babel/plugin-transform-runtime-7.18.5" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -118445,7 +118575,7 @@ in
sources."@babel/register-7.17.7"
sources."@babel/runtime-7.18.3"
sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.18.2"
+ sources."@babel/traverse-7.18.5"
sources."@babel/types-7.18.4"
sources."@jridgewell/gen-mapping-0.1.1"
sources."@jridgewell/resolve-uri-3.0.7"
@@ -118457,7 +118587,7 @@ in
sources."@types/glob-7.2.0"
sources."@types/json-schema-7.0.11"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
sources."@webassemblyjs/ast-1.9.0"
@@ -118650,7 +118780,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -118730,7 +118860,7 @@ in
sources."copy-concurrently-1.0.5"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.22.8" // {
+ (sources."core-js-compat-3.23.1" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -118871,7 +119001,7 @@ in
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -120258,12 +120388,12 @@ in
sources."@babel/helper-split-export-declaration-7.16.7"
sources."@babel/helper-validator-identifier-7.16.7"
sources."@babel/highlight-7.17.12"
- sources."@babel/parser-7.18.4"
+ sources."@babel/parser-7.18.5"
sources."@babel/runtime-7.18.3"
sources."@babel/template-7.16.7"
- sources."@babel/traverse-7.18.2"
+ sources."@babel/traverse-7.18.5"
sources."@babel/types-7.18.4"
- sources."@emotion/is-prop-valid-1.1.2"
+ sources."@emotion/is-prop-valid-1.1.3"
sources."@emotion/memoize-0.7.5"
sources."@emotion/stylis-0.8.5"
sources."@emotion/unitless-0.7.5"
@@ -120409,7 +120539,7 @@ in
sources."loose-envify-1.4.0"
sources."lunr-2.3.9"
sources."mark.js-8.11.1"
- sources."marked-4.0.16"
+ sources."marked-4.0.17"
sources."md5.js-1.3.5"
(sources."miller-rabin-4.0.1" // {
dependencies = [
@@ -121094,14 +121224,14 @@ in
sources."@types/json-schema-7.0.11"
sources."@types/node-14.17.34"
sources."@types/vscode-1.66.0"
- sources."@typescript-eslint/eslint-plugin-5.27.1"
- sources."@typescript-eslint/parser-5.27.1"
- sources."@typescript-eslint/scope-manager-5.27.1"
- sources."@typescript-eslint/type-utils-5.27.1"
- sources."@typescript-eslint/types-5.27.1"
- sources."@typescript-eslint/typescript-estree-5.27.1"
- sources."@typescript-eslint/utils-5.27.1"
- sources."@typescript-eslint/visitor-keys-5.27.1"
+ sources."@typescript-eslint/eslint-plugin-5.28.0"
+ sources."@typescript-eslint/parser-5.28.0"
+ sources."@typescript-eslint/scope-manager-5.28.0"
+ sources."@typescript-eslint/type-utils-5.28.0"
+ sources."@typescript-eslint/types-5.28.0"
+ sources."@typescript-eslint/typescript-estree-5.28.0"
+ sources."@typescript-eslint/utils-5.28.0"
+ sources."@typescript-eslint/visitor-keys-5.28.0"
sources."@vscode/test-electron-2.1.4"
sources."acorn-8.7.1"
sources."acorn-jsx-5.3.2"
@@ -121792,7 +121922,7 @@ in
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
sources."@types/lodash-4.14.182"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/responselike-1.0.0"
sources."adm-zip-0.5.9"
sources."agent-base-6.0.2"
@@ -121815,10 +121945,11 @@ in
sources."archiver-utils-2.1.0"
sources."argparse-1.0.10"
sources."array-union-2.1.0"
+ sources."asap-2.0.6"
sources."async-3.2.4"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.1152.0" // {
+ (sources."aws-sdk-2.1155.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -121863,7 +121994,7 @@ in
sources."child-process-ext-2.1.1"
sources."chokidar-3.5.3"
sources."chownr-2.0.0"
- sources."ci-info-3.3.1"
+ sources."ci-info-3.3.2"
sources."cli-color-2.0.2"
sources."cli-cursor-3.1.0"
sources."cli-progress-footer-2.3.2"
@@ -121954,6 +122085,7 @@ in
sources."defer-to-connect-2.0.1"
sources."deferred-0.7.11"
sources."delayed-stream-1.0.0"
+ sources."dezalgo-1.0.3"
sources."dir-glob-3.0.1"
sources."dotenv-10.0.0"
sources."dotenv-expand-5.1.0"
@@ -121978,10 +122110,10 @@ in
sources."ext-1.6.0"
sources."ext-list-2.2.2"
sources."ext-name-5.0.0"
- sources."extend-3.0.2"
sources."external-editor-3.1.0"
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.2.11"
+ sources."fast-safe-stringify-2.1.1"
sources."fastest-levenshtein-1.0.12"
sources."fastq-1.13.0"
sources."fd-slicer-1.1.0"
@@ -121994,8 +122126,12 @@ in
sources."find-requires-1.0.0"
sources."flat-5.0.2"
sources."follow-redirects-1.15.1"
- sources."form-data-2.5.1"
- sources."formidable-1.2.6"
+ sources."form-data-4.0.0"
+ (sources."formidable-2.0.1" // {
+ dependencies = [
+ sources."qs-6.9.3"
+ ];
+ })
sources."fs-constants-1.0.0"
sources."fs-extra-9.1.0"
sources."fs-minipass-2.1.0"
@@ -122015,6 +122151,7 @@ in
sources."has-1.0.3"
sources."has-flag-3.0.0"
sources."has-symbols-1.0.3"
+ sources."hexoid-1.0.0"
sources."http-cache-semantics-4.1.0"
sources."http2-wrapper-1.0.3"
sources."https-proxy-agent-5.0.1"
@@ -122084,7 +122221,7 @@ in
sources."merge2-1.4.1"
sources."methods-1.1.2"
sources."micromatch-4.0.5"
- sources."mime-1.6.0"
+ sources."mime-2.6.0"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."mimic-fn-2.1.0"
@@ -122119,7 +122256,7 @@ in
sources."pako-1.0.11"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."path-loader-1.0.10"
+ sources."path-loader-1.0.12"
sources."path-type-4.0.0"
sources."path2-0.1.0"
sources."peek-readable-4.1.0"
@@ -122182,9 +122319,9 @@ in
sources."strip-dirs-2.1.0"
sources."strip-outer-1.0.1"
sources."strtok3-6.3.0"
- (sources."superagent-3.8.3" // {
+ (sources."superagent-7.1.6" // {
dependencies = [
- sources."debug-3.2.7"
+ sources."readable-stream-3.6.0"
];
})
(sources."supports-color-8.1.1" // {
@@ -122891,10 +123028,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.947.0";
+ version = "1.951.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.947.0.tgz";
- sha512 = "/u+HyhaIaFhnrpn+aOiGR0ts9ZR7mr6uiqgRn5EQIwaFKpCFOEnOJTlQAM25ggomqmxRldArMMXe4dBWw855LA==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.951.0.tgz";
+ sha512 = "V9PhAWI+pB1SQa+wbzRA0/1M4Sqb124Jjlw39roF1Urk1xMLK/aYW796q4/D9xy0k293DpEyf/6hQ6xXbn9sKA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -122917,7 +123054,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."accepts-1.3.8"
sources."base64id-2.0.0"
sources."component-emitter-1.3.0"
@@ -123111,10 +123248,10 @@ in
sql-formatter = nodeEnv.buildNodePackage {
name = "sql-formatter";
packageName = "sql-formatter";
- version = "6.1.5";
+ version = "7.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-6.1.5.tgz";
- sha512 = "aqhxDRIhllzCuwzDX18Y7TmcvD3Epb2qvkUDSoyX1+oDyMaWk7xja6mnuAZ4kaw2f0mVjzSZCJfCALtKx0WdoA==";
+ url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-7.0.0.tgz";
+ sha512 = "52kyWHxSOCRwdAtFQ5TBaUZlWRt4JZM1QacVIPC4BDPJ3ygb9PQ98JkALFPxDlKGFNXD8EP/hIhborRlOekhSg==";
};
dependencies = [
sources."argparse-2.0.1"
@@ -124156,7 +124293,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.1152.0" // {
+ (sources."aws-sdk-2.1155.0" // {
dependencies = [
sources."uuid-8.0.0"
];
@@ -124282,6 +124419,7 @@ in
sources."depd-2.0.0"
sources."deref-0.6.4"
sources."destroy-1.2.0"
+ sources."dezalgo-1.0.3"
sources."dicer-0.2.5"
sources."doctypes-1.1.0"
sources."drange-1.1.1"
@@ -124344,6 +124482,7 @@ in
sources."faker-3.1.0"
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
+ sources."fast-safe-stringify-2.1.1"
sources."fd-slicer-1.1.0"
sources."finalhandler-1.2.0"
sources."find-up-3.0.0"
@@ -124386,6 +124525,7 @@ in
sources."has-symbols-1.0.3"
sources."has-tostringtag-1.0.0"
sources."hawk-3.1.3"
+ sources."hexoid-1.0.0"
sources."highlight.js-8.2.0"
(sources."hipchatter-0.3.2" // {
dependencies = [
@@ -124579,7 +124719,7 @@ in
sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."path-loader-1.0.10"
+ sources."path-loader-1.0.12"
sources."path-parse-1.0.7"
sources."path-to-regexp-0.1.7"
sources."path-type-1.1.0"
@@ -124749,13 +124889,24 @@ in
sources."strip-ansi-3.0.1"
sources."strip-bom-2.0.0"
sources."strip-eof-1.0.0"
- (sources."superagent-3.8.3" // {
+ (sources."superagent-7.1.6" // {
dependencies = [
- sources."debug-3.2.7"
- sources."form-data-2.5.1"
+ sources."debug-4.3.4"
+ sources."form-data-4.0.0"
+ (sources."formidable-2.0.1" // {
+ dependencies = [
+ sources."qs-6.9.3"
+ ];
+ })
+ sources."lru-cache-6.0.0"
+ sources."mime-2.6.0"
+ sources."ms-2.1.2"
sources."qs-6.10.5"
- sources."readable-stream-2.3.7"
- sources."string_decoder-1.1.1"
+ sources."readable-stream-3.6.0"
+ sources."safe-buffer-5.2.1"
+ sources."semver-7.3.7"
+ sources."string_decoder-1.3.0"
+ sources."yallist-4.0.0"
];
})
sources."supports-color-2.0.0"
@@ -125297,7 +125448,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/pug-2.0.6"
sources."@types/sass-1.43.1"
sources."anymatch-3.1.2"
@@ -125384,7 +125535,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/pug-2.0.6"
sources."@types/sass-1.43.1"
sources."anymatch-3.1.2"
@@ -125545,6 +125696,7 @@ in
sources."arr-flatten-1.1.0"
sources."arr-union-3.1.0"
sources."array-unique-0.3.2"
+ sources."asap-2.0.6"
sources."assign-symbols-1.0.0"
sources."async-1.5.2"
sources."async-each-1.0.3"
@@ -125652,6 +125804,7 @@ in
sources."delayed-stream-1.0.0"
sources."depd-2.0.0"
sources."destroy-1.2.0"
+ sources."dezalgo-1.0.3"
(sources."dicer-0.2.5" // {
dependencies = [
sources."isarray-0.0.1"
@@ -125689,7 +125842,7 @@ in
sources."kind-of-5.1.0"
];
})
- sources."extend-3.0.2"
+ sources."extend-3.0.0"
sources."extend-shallow-3.0.2"
(sources."extglob-2.0.4" // {
dependencies = [
@@ -125698,6 +125851,7 @@ in
sources."is-extendable-0.1.1"
];
})
+ sources."fast-safe-stringify-2.1.1"
sources."figures-1.7.0"
sources."file-uri-to-path-1.0.0"
(sources."fill-range-4.0.0" // {
@@ -125708,8 +125862,12 @@ in
})
sources."finalhandler-1.1.2"
sources."for-in-1.0.2"
- sources."form-data-2.5.1"
- sources."formidable-1.2.6"
+ sources."form-data-4.0.0"
+ (sources."formidable-2.0.1" // {
+ dependencies = [
+ sources."qs-6.9.3"
+ ];
+ })
sources."fragment-cache-0.2.1"
sources."fresh-0.5.2"
sources."fs-extra-0.24.0"
@@ -125750,6 +125908,7 @@ in
sources."kind-of-4.0.0"
];
})
+ sources."hexoid-1.0.0"
(sources."http-errors-2.0.0" // {
dependencies = [
sources."statuses-2.0.1"
@@ -125925,12 +126084,17 @@ in
sources."path-is-absolute-1.0.1"
sources."path-is-inside-1.0.2"
sources."path-key-2.0.1"
- (sources."path-loader-1.0.10" // {
+ (sources."path-loader-1.0.12" // {
dependencies = [
- sources."debug-3.2.7"
- sources."ms-2.1.3"
+ sources."debug-4.3.4"
+ sources."lru-cache-6.0.0"
+ sources."mime-2.6.0"
+ sources."ms-2.1.2"
sources."qs-6.10.5"
- sources."superagent-3.8.3"
+ sources."readable-stream-3.6.0"
+ sources."semver-7.3.7"
+ sources."superagent-7.1.6"
+ sources."yallist-4.0.0"
];
})
(sources."path-to-regexp-1.8.0" // {
@@ -126069,7 +126233,6 @@ in
dependencies = [
sources."component-emitter-1.2.1"
sources."cookiejar-2.0.6"
- sources."extend-3.0.0"
sources."form-data-1.0.0-rc3"
sources."formidable-1.0.17"
sources."isarray-0.0.1"
@@ -126169,10 +126332,10 @@ in
tailwindcss = nodeEnv.buildNodePackage {
name = "tailwindcss";
packageName = "tailwindcss";
- version = "3.1.2";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.1.2.tgz";
- sha512 = "yJ6L5s1U5AeS5g7HHy212zdQfjwD426FBfm59pet/JsyneuZuD4C2W7PpJEg4ppisiB21uLqtNagv8KXury3+Q==";
+ url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.1.3.tgz";
+ sha512 = "PRJNYdSIthrb8hjmAyymEyEN8Yo61TMXpzyFUpxULeeyRn3Y3gpvuw6FlRTKrJvK7thSGKRnhT36VovVx4WeMA==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.5"
@@ -127567,7 +127730,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -127619,7 +127782,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.2"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.8"
+ sources."core-js-3.23.1"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."css-select-4.3.0"
@@ -127913,7 +128076,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -127965,7 +128128,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.2"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.8"
+ sources."core-js-3.23.1"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."css-select-4.3.0"
@@ -128333,7 +128496,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.8"
+ sources."core-js-3.23.1"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -128926,7 +129089,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -129007,7 +129170,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.8"
+ sources."core-js-3.23.1"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -129393,7 +129556,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -129474,7 +129637,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.22.8"
+ sources."core-js-3.23.1"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -130289,14 +130452,14 @@ in
sources."@octokit/core-3.6.0"
sources."@octokit/endpoint-6.0.12"
sources."@octokit/graphql-4.8.0"
- sources."@octokit/openapi-types-11.2.0"
- sources."@octokit/plugin-paginate-rest-2.17.0"
+ sources."@octokit/openapi-types-12.1.0"
+ sources."@octokit/plugin-paginate-rest-2.18.0"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.13.0"
+ sources."@octokit/plugin-rest-endpoint-methods-5.14.0"
sources."@octokit/request-5.6.3"
sources."@octokit/request-error-2.1.0"
sources."@octokit/rest-18.12.0"
- sources."@octokit/types-6.34.0"
+ sources."@octokit/types-6.35.0"
sources."@xmldom/xmldom-0.8.2"
sources."ajv-6.12.6"
sources."asn1-0.2.6"
@@ -130744,10 +130907,10 @@ in
typescript-language-server = nodeEnv.buildNodePackage {
name = "typescript-language-server";
packageName = "typescript-language-server";
- version = "0.11.0";
+ version = "0.11.1";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.11.0.tgz";
- sha512 = "8nfW0+Ei7/h6c2/KCeduPbFxMDVJWok/H593v+gajxXrOCX4VMyoEVsu7BswMyyah8GWDbcNdNi9c812eBtH2A==";
+ url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.11.1.tgz";
+ sha512 = "kcF4pbTHzYJWPj1RBRKZ1lrqjDGoy2sMevdNy+AakDur57JvTv8rlnN549rUJCoRR5th4LFhJ6zAo3zLFR1gNw==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.5"
@@ -130890,7 +131053,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/json-buffer-3.0.0"
sources."@types/keyv-3.1.4"
- sources."@types/node-16.11.39"
+ sources."@types/node-16.11.41"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
@@ -131208,7 +131371,7 @@ in
sources."@types/is-empty-1.2.1"
sources."@types/js-yaml-4.0.5"
sources."@types/ms-0.7.31"
- sources."@types/node-17.0.42"
+ sources."@types/node-17.0.45"
sources."@types/supports-color-8.1.1"
sources."@types/unist-2.0.6"
sources."ansi-regex-6.0.1"
@@ -131243,7 +131406,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
sources."is-empty-1.2.0"
- sources."is-plain-obj-4.0.0"
+ sources."is-plain-obj-4.1.0"
sources."js-tokens-4.0.0"
sources."js-yaml-4.1.0"
sources."json-parse-even-better-errors-2.3.1"
@@ -131275,7 +131438,7 @@ in
sources."unist-util-inspect-7.0.0"
sources."unist-util-stringify-position-3.0.2"
sources."util-deprecate-1.0.2"
- sources."vfile-5.3.3"
+ sources."vfile-5.3.4"
sources."vfile-message-3.1.2"
(sources."vfile-reporter-7.0.4" // {
dependencies = [
@@ -131536,8 +131699,8 @@ in
sources."@szmarczak/http-timer-1.1.2"
sources."@types/busboy-0.3.2"
sources."@types/cookie-0.4.1"
- sources."@types/node-17.0.42"
- (sources."@types/node-fetch-2.6.1" // {
+ sources."@types/node-18.0.0"
+ (sources."@types/node-fetch-2.6.2" // {
dependencies = [
sources."form-data-3.0.1"
];
@@ -132013,7 +132176,7 @@ in
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."prelude-ls-1.2.1"
- sources."prettier-2.6.2"
+ sources."prettier-2.7.0"
sources."progress-2.0.3"
sources."pug-error-2.0.0"
sources."pug-lexer-5.0.1"
@@ -132252,7 +132415,7 @@ in
sha512 = "Un7gzQgvACjGtsT0Yll5QqHgL65a4mTK5ChgMnO4dgTZ3tuwJCaP84oztBqvuFZzN9QxA3C07J4QEQvf1xjcgQ==";
};
dependencies = [
- sources."core-js-3.22.8"
+ sources."core-js-3.23.1"
sources."jsonc-parser-3.0.0"
sources."regenerator-runtime-0.13.9"
sources."request-light-0.5.8"
@@ -132315,9 +132478,9 @@ in
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.1.1"
- sources."@webpack-cli/info-1.4.1"
- sources."@webpack-cli/serve-1.6.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."acorn-8.7.1"
@@ -132342,7 +132505,7 @@ in
sources."buffer-from-1.1.2"
sources."call-bind-1.0.2"
sources."camelcase-6.3.0"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
(sources."chalk-4.1.2" // {
dependencies = [
sources."supports-color-7.2.0"
@@ -132363,7 +132526,7 @@ in
sources."clone-deep-4.0.1"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-2.0.17"
+ sources."colorette-2.0.19"
sources."commander-6.2.1"
sources."concat-map-0.0.1"
sources."core-util-is-1.0.3"
@@ -132382,7 +132545,7 @@ in
sources."domelementtype-2.3.0"
sources."domhandler-5.0.3"
sources."domutils-3.0.1"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
sources."emoji-regex-8.0.0"
sources."emojis-list-3.0.0"
sources."enhanced-resolve-5.9.3"
@@ -132400,7 +132563,6 @@ in
})
sources."estraverse-4.3.0"
sources."events-3.3.0"
- sources."execa-5.1.1"
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
sources."fastest-levenshtein-1.0.12"
@@ -132413,7 +132575,6 @@ in
sources."function-bind-1.1.1"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.2"
- sources."get-stream-6.0.1"
sources."glob-7.1.6"
sources."glob-parent-5.1.2"
sources."glob-to-regexp-0.4.1"
@@ -132424,7 +132585,6 @@ in
sources."has-symbols-1.0.3"
sources."he-1.2.0"
sources."htmlparser2-8.0.1"
- sources."human-signals-2.1.0"
sources."import-local-3.1.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -132437,7 +132597,6 @@ in
sources."is-number-7.0.0"
sources."is-plain-obj-2.1.0"
sources."is-plain-object-2.0.4"
- sources."is-stream-2.0.1"
sources."isarray-0.0.1"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
@@ -132476,7 +132635,6 @@ in
sources."mime-1.6.0"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
- sources."mimic-fn-2.1.0"
sources."minimatch-3.0.4"
sources."mocha-8.4.0"
sources."ms-2.1.3"
@@ -132485,11 +132643,9 @@ in
sources."neo-async-2.6.2"
sources."node-releases-2.0.5"
sources."normalize-path-3.0.0"
- sources."npm-run-path-4.0.1"
sources."nth-check-2.1.1"
sources."object-inspect-1.12.2"
sources."once-1.4.0"
- sources."onetime-5.1.2"
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
sources."osenv-0.1.5"
@@ -132535,7 +132691,6 @@ in
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."source-map-0.6.1"
sources."source-map-support-0.5.21"
sources."sprintf-js-1.0.3"
@@ -132543,7 +132698,6 @@ in
sources."string-width-2.1.1"
sources."string_decoder-0.10.31"
sources."strip-ansi-4.0.0"
- sources."strip-final-newline-2.0.0"
sources."strip-json-comments-3.1.1"
sources."supports-color-8.1.1"
sources."supports-preserve-symlinks-flag-1.0.0"
@@ -132591,7 +132745,7 @@ in
sources."vscode-debugprotocol-1.51.0"
sources."watchpack-2.4.0"
sources."webpack-5.73.0"
- (sources."webpack-cli-4.9.2" // {
+ (sources."webpack-cli-4.10.0" // {
dependencies = [
sources."commander-7.2.0"
];
@@ -132941,7 +133095,7 @@ in
sources."@starptech/rehype-webparser-0.10.0"
sources."@starptech/webparser-0.10.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -133902,7 +134056,7 @@ in
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."core-js-pure-3.22.8"
+ sources."core-js-pure-3.23.1"
sources."cssom-0.4.4"
(sources."cssstyle-2.3.0" // {
dependencies = [
@@ -134095,7 +134249,7 @@ in
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/yauzl-2.9.2"
sources."acorn-8.7.1"
sources."acorn-jsx-5.3.2"
@@ -134621,7 +134775,7 @@ in
sources."@types/eslint-scope-3.7.3"
sources."@types/estree-0.0.51"
sources."@types/json-schema-7.0.11"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -134645,10 +134799,10 @@ in
sources."ajv-keywords-3.5.2"
sources."browserslist-4.20.4"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001352"
+ sources."caniuse-lite-1.0.30001354"
sources."chrome-trace-event-1.0.3"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.4.152"
+ sources."electron-to-chromium-1.4.157"
sources."enhanced-resolve-5.9.3"
sources."es-module-lexer-0.9.3"
sources."escalade-3.1.1"
@@ -134703,41 +134857,33 @@ in
webpack-cli = nodeEnv.buildNodePackage {
name = "webpack-cli";
packageName = "webpack-cli";
- version = "4.9.2";
+ version = "4.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.2.tgz";
- sha512 = "m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==";
+ url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz";
+ sha512 = "NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==";
};
dependencies = [
sources."@discoveryjs/json-ext-0.5.7"
- sources."@webpack-cli/configtest-1.1.1"
- sources."@webpack-cli/info-1.4.1"
- sources."@webpack-cli/serve-1.6.1"
+ sources."@webpack-cli/configtest-1.2.0"
+ sources."@webpack-cli/info-1.5.0"
+ sources."@webpack-cli/serve-1.7.0"
sources."clone-deep-4.0.1"
- sources."colorette-2.0.17"
+ sources."colorette-2.0.19"
sources."commander-7.2.0"
sources."cross-spawn-7.0.3"
sources."envinfo-7.8.1"
- sources."execa-5.1.1"
sources."fastest-levenshtein-1.0.12"
sources."find-up-4.1.0"
sources."function-bind-1.1.1"
- sources."get-stream-6.0.1"
sources."has-1.0.3"
- sources."human-signals-2.1.0"
sources."import-local-3.1.0"
sources."interpret-2.2.0"
sources."is-core-module-2.9.0"
sources."is-plain-object-2.0.4"
- sources."is-stream-2.0.1"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
sources."kind-of-6.0.3"
sources."locate-path-5.0.0"
- sources."merge-stream-2.0.0"
- sources."mimic-fn-2.1.0"
- sources."npm-run-path-4.0.1"
- sources."onetime-5.1.2"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
@@ -134752,8 +134898,6 @@ in
sources."shallow-clone-3.0.1"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
- sources."signal-exit-3.0.7"
- sources."strip-final-newline-2.0.0"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."webpack-merge-5.8.0"
sources."which-2.0.2"
@@ -134784,11 +134928,11 @@ in
sources."@types/connect-3.4.35"
sources."@types/connect-history-api-fallback-1.3.5"
sources."@types/express-4.17.13"
- sources."@types/express-serve-static-core-4.17.28"
+ sources."@types/express-serve-static-core-4.17.29"
sources."@types/http-proxy-1.17.9"
sources."@types/json-schema-7.0.11"
sources."@types/mime-1.3.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/retry-0.12.0"
@@ -134817,7 +134961,7 @@ in
sources."bytes-3.0.0"
sources."call-bind-1.0.2"
sources."chokidar-3.5.3"
- sources."colorette-2.0.17"
+ sources."colorette-2.0.19"
sources."compressible-2.0.18"
sources."compression-1.7.4"
sources."concat-map-0.0.1"
@@ -134839,7 +134983,7 @@ in
sources."destroy-1.2.0"
sources."detect-node-2.1.0"
sources."dns-equal-1.0.0"
- sources."dns-packet-5.3.1"
+ sources."dns-packet-5.4.0"
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
sources."escape-html-1.0.3"
@@ -135045,7 +135189,7 @@ in
sources."fastq-1.13.0"
sources."fill-range-7.0.1"
sources."glob-parent-6.0.2"
- sources."globby-13.1.1"
+ sources."globby-13.1.2"
sources."ignore-5.2.0"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.3"
@@ -135100,7 +135244,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-18.0.0"
sources."@webtorrent/http-node-1.3.0"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.3.0"
@@ -135205,7 +135349,7 @@ in
sources."mime-1.6.0"
];
})
- sources."dns-packet-5.3.1"
+ sources."dns-packet-5.4.0"
sources."dns-txt-2.0.2"
(sources."ecstatic-4.1.4" // {
dependencies = [
@@ -135469,7 +135613,7 @@ in
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/wring/-/wring-1.0.0.tgz";
- sha1 = "3d8ebe894545bf0b42946fdc84c61e37ae657ce1";
+ sha512 = "XoFoUf9gxnQkergF+FK+AuaI/iaSh9P0N1hqIGTTs1V3rjexH1ZZKuxuDUbdVGrwxvoTW4xpeZrNhBw6WJIIag==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -135508,6 +135652,24 @@ in
bypassCache = true;
reconstructLock = true;
};
+ "@yaegassy/coc-nginx" = nodeEnv.buildNodePackage {
+ name = "_at_yaegassy_slash_coc-nginx";
+ packageName = "@yaegassy/coc-nginx";
+ version = "0.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@yaegassy/coc-nginx/-/coc-nginx-0.3.6.tgz";
+ sha512 = "ml53NkTvLqmhdE4rFY6WK5ZM1l6SFM+sGui1xrurEN1zTN+v0w0ifaNLwoEz/XsQdX3yTpl0oD+MA3JYgx9Tzg==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "nginx-language-server extension for coc.nvim";
+ homepage = "https://github.com/yaegassy/coc-nginx#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
yaml-language-server = nodeEnv.buildNodePackage {
name = "yaml-language-server";
packageName = "yaml-language-server";
@@ -135795,7 +135957,7 @@ in
sources."config-chain-1.1.13"
sources."configstore-3.1.5"
sources."console-control-strings-1.1.0"
- sources."core-js-3.22.8"
+ sources."core-js-3.23.1"
sources."core-util-is-1.0.3"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
@@ -136633,10 +136795,10 @@ in
zx = nodeEnv.buildNodePackage {
name = "zx";
packageName = "zx";
- version = "6.2.4";
+ version = "7.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/zx/-/zx-6.2.4.tgz";
- sha512 = "wBDObcY5tKDOIOuGrg3XwrhCa6V6eeZLQDVbbpgN9pdhiyOJA/So9R9i5vKN7cGGWkcKKHy29i8kJtx02j+kSg==";
+ url = "https://registry.npmjs.org/zx/-/zx-7.0.0.tgz";
+ sha512 = "QPUkzM2o/yfr8CnJgR3Uzi4ESW3IhM4iOIrDx2wJ0vZAU4Gz0Bd/wvOWdqAheJgUTc1ecTkOMpdBKCSBvVDnTg==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.5"
@@ -136644,7 +136806,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/fs-extra-9.0.13"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.42"
+ sources."@types/node-17.0.45"
sources."@types/ps-tree-1.1.2"
sources."@types/which-2.0.1"
sources."braces-3.0.2"
@@ -136661,7 +136823,7 @@ in
sources."from-0.1.7"
sources."fs-extra-10.1.0"
sources."glob-parent-5.1.2"
- sources."globby-13.1.1"
+ sources."globby-13.1.2"
sources."graceful-fs-4.2.10"
sources."ignore-5.2.0"
sources."is-extglob-2.1.1"
diff --git a/pkgs/development/python-modules/browser-cookie3/default.nix b/pkgs/development/python-modules/browser-cookie3/default.nix
index 3fce6a7473b3..07874e808d48 100644
--- a/pkgs/development/python-modules/browser-cookie3/default.nix
+++ b/pkgs/development/python-modules/browser-cookie3/default.nix
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "browser-cookie3";
- version = "0.14.3";
+ version = "0.15.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-Ch8ho4T3R9qwQiaP+n5Q21x62Ip3ibtqDJIDnobbh5c=";
+ hash = "sha256-AfRL2u1wMXXCCfKyrD0F96hXap88TQx7D1fjFWGKDy4=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/compreffor/default.nix b/pkgs/development/python-modules/compreffor/default.nix
index 942773902583..183645053771 100644
--- a/pkgs/development/python-modules/compreffor/default.nix
+++ b/pkgs/development/python-modules/compreffor/default.nix
@@ -8,13 +8,13 @@
buildPythonPackage rec {
pname = "compreffor";
- version = "0.5.1.post1";
+ version = "0.5.2";
format = "pyproject";
src = fetchPypi {
inherit pname version;
- sha256 = "Zqia+yP4Dp5VNGeMwv+j04aNm9oVmZ2juehbfEzDfOQ=";
+ sha256 = "sha256-rsC0HJCl3IGqEqUqfCwRRNwzjtfGDlxcCkeOU3On22Q=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/cyclonedx-python-lib/default.nix b/pkgs/development/python-modules/cyclonedx-python-lib/default.nix
index 352af83f0139..c8087767cb19 100644
--- a/pkgs/development/python-modules/cyclonedx-python-lib/default.nix
+++ b/pkgs/development/python-modules/cyclonedx-python-lib/default.nix
@@ -19,7 +19,7 @@
buildPythonPackage rec {
pname = "cyclonedx-python-lib";
- version = "2.5.1";
+ version = "2.5.2";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -28,7 +28,7 @@ buildPythonPackage rec {
owner = "CycloneDX";
repo = pname;
rev = "refs/tags/v${version}";
- hash = "sha256-w/av9U42fC4g7NUw7PSW+K822klH4e1xYFPh7I4jrRA=";
+ hash = "sha256-pMUevLUHYVJqgFRSd2dhwbc4KFUGy9cWsuMMwQ1atRk=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/dropbox/default.nix b/pkgs/development/python-modules/dropbox/default.nix
index e321c110a6bd..3aa359b72da0 100644
--- a/pkgs/development/python-modules/dropbox/default.nix
+++ b/pkgs/development/python-modules/dropbox/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "dropbox";
- version = "11.31.0";
+ version = "11.32.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "dropbox";
repo = "dropbox-sdk-python";
rev = "refs/tags/v${version}";
- hash = "sha256-mbBVivrpXYNuVbXeHRyy07LxPbtYvaL3JleK7QXOxi0=";
+ hash = "sha256-eb4GhmQJk60x02sFEYPF9x07lVRhVMFKYd9owO78S00=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/functorch/default.nix b/pkgs/development/python-modules/functorch/default.nix
index 05b96077edc9..e7f4e29fe94a 100644
--- a/pkgs/development/python-modules/functorch/default.nix
+++ b/pkgs/development/python-modules/functorch/default.nix
@@ -6,6 +6,7 @@
, pytestCheckHook
, python
, pytorch
+, pybind11
, which
}:
@@ -29,6 +30,10 @@ buildPythonPackage rec {
which
];
+ buildInputs = [
+ pybind11
+ ];
+
preCheck = ''
rm -rf functorch/
'';
diff --git a/pkgs/development/python-modules/google-cloud-bigtable/default.nix b/pkgs/development/python-modules/google-cloud-bigtable/default.nix
index baa6957c35ab..ff684d597c30 100644
--- a/pkgs/development/python-modules/google-cloud-bigtable/default.nix
+++ b/pkgs/development/python-modules/google-cloud-bigtable/default.nix
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "google-cloud-bigtable";
- version = "2.10.0";
+ version = "2.10.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-nicUpEaPhDBmWU2jP/R01d54xu9tgNUxZVD4gZGAyAw=";
+ hash = "sha256-f4wMYlmex0QrcJrl33VyOZgbURYnIjeWDR7rz4MzMJw=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/google-cloud-firestore/default.nix b/pkgs/development/python-modules/google-cloud-firestore/default.nix
index 24085cf5ff25..de0f9c32adfb 100644
--- a/pkgs/development/python-modules/google-cloud-firestore/default.nix
+++ b/pkgs/development/python-modules/google-cloud-firestore/default.nix
@@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "google-cloud-firestore";
- version = "2.5.2";
+ version = "2.5.3";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-ltFXT+cU/YGPqu28WcStV6bJarbiIGbjsHLI+9UZU80=";
+ sha256 = "sha256-ISPjpV2fjZSMbkJa6YzFGdrwyEC8MauLwS6pohMtFoY=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/growattserver/default.nix b/pkgs/development/python-modules/growattserver/default.nix
index 6347d9f55b8e..a10b1d709a2e 100644
--- a/pkgs/development/python-modules/growattserver/default.nix
+++ b/pkgs/development/python-modules/growattserver/default.nix
@@ -7,31 +7,28 @@
buildPythonPackage rec {
pname = "growattserver";
- version = "1.2.0";
- disabled = pythonOlder "3.6";
+ version = "1.2.2";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "indykoning";
repo = "PyPi_GrowattServer";
rev = version;
- sha256 = "0v9clmz4qg6krmbsbfsrhsan824y2mqvwxsxb0fzfgaszxwkpm30";
+ hash = "sha256-dS5Ng89aYzfegdFlyt1eo7vhva2ME77pQV2hkd/iNq8=";
};
propagatedBuildInputs = [
requests
];
- postPatch = ''
- # https://github.com/indykoning/PyPi_GrowattServer/issues/2
- substituteInPlace setup.py \
- --replace "tag = os.environ['LATEST_TAG']" "" \
- --replace "version=tag," 'version="${version}",'
- '';
-
# Project has no tests
doCheck = false;
- pythonImportsCheck = [ "growattServer" ];
+ pythonImportsCheck = [
+ "growattServer"
+ ];
meta = with lib; {
description = "Python package to retrieve information from Growatt units";
diff --git a/pkgs/development/python-modules/internetarchive/default.nix b/pkgs/development/python-modules/internetarchive/default.nix
index eb7d4de7db45..2ab3a3a51001 100644
--- a/pkgs/development/python-modules/internetarchive/default.nix
+++ b/pkgs/development/python-modules/internetarchive/default.nix
@@ -16,13 +16,13 @@
buildPythonPackage rec {
pname = "internetarchive";
- version = "3.0.1";
+ version = "3.0.2";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-0DcX2w2omPdOmBD6WpG2Li1ERPSI0i9qOINdO/kVrUI=";
+ sha256 = "sha256-3oVkZcLvaFIYTQi/1ZwMoBkEhls3OiezgwNKxrQSjrY=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/jaxlib/bin.nix b/pkgs/development/python-modules/jaxlib/bin.nix
index 1eb4cc18ed06..88d210caa9e0 100644
--- a/pkgs/development/python-modules/jaxlib/bin.nix
+++ b/pkgs/development/python-modules/jaxlib/bin.nix
@@ -139,6 +139,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "XLA library for JAX";
homepage = "https://github.com/google/jax";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.asl20;
maintainers = with maintainers; [ samuela ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/development/tools/database/pgcli/default.nix b/pkgs/development/python-modules/pgcli/default.nix
similarity index 87%
rename from pkgs/development/tools/database/pgcli/default.nix
rename to pkgs/development/python-modules/pgcli/default.nix
index 40c204812887..70e52493315e 100644
--- a/pkgs/development/tools/database/pgcli/default.nix
+++ b/pkgs/development/python-modules/pgcli/default.nix
@@ -1,5 +1,5 @@
{ lib, stdenv
-, buildPythonApplication
+, buildPythonPackage
, fetchPypi
, isPy3k
, cli-helpers
@@ -18,7 +18,9 @@
, mock
}:
-buildPythonApplication rec {
+# this is a pythonPackage because of the ipython line magics in pgcli.magic
+# integrating with ipython-sql
+buildPythonPackage rec {
pname = "pgcli";
version = "3.4.1";
diff --git a/pkgs/development/python-modules/pyenvisalink/default.nix b/pkgs/development/python-modules/pyenvisalink/default.nix
index 2bcbc753a9ae..8e59cec643a1 100644
--- a/pkgs/development/python-modules/pyenvisalink/default.nix
+++ b/pkgs/development/python-modules/pyenvisalink/default.nix
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "pyenvisalink";
- version = "4.4";
+ version = "4.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-YUYiCid+XAlfytkyz4Td5CG1zBOrsLx4/nuRubRE14w=";
+ sha256 = "sha256-WS1DCnuVmFAKsFVOb6HeKoNn2ZWHoLupg2VOZkzVsBU=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/pytorch/bin.nix b/pkgs/development/python-modules/pytorch/bin.nix
index daa82bba580c..e2427ac22df3 100644
--- a/pkgs/development/python-modules/pytorch/bin.nix
+++ b/pkgs/development/python-modules/pytorch/bin.nix
@@ -75,6 +75,7 @@ in buildPythonPackage {
# https://docs.nvidia.com/cuda/eula/index.html
# https://www.intel.com/content/www/us/en/developer/articles/license/onemkl-license-faq.html
license = licenses.bsd3;
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
platforms = platforms.linux ++ platforms.darwin;
hydraPlatforms = []; # output size 3.2G on 1.11.0
maintainers = with maintainers; [ junjihashimoto ];
diff --git a/pkgs/development/python-modules/pytorch/default.nix b/pkgs/development/python-modules/pytorch/default.nix
index d6e78c31d753..299b4eba0cf0 100644
--- a/pkgs/development/python-modules/pytorch/default.nix
+++ b/pkgs/development/python-modules/pytorch/default.nix
@@ -176,6 +176,10 @@ in buildPythonPackage rec {
USE_MKLDNN = setBool mklDnnSupport;
USE_MKLDNN_CBLAS = setBool mklDnnSupport;
+ # Avoid using pybind11 from git submodule
+ # Also avoids pytorch exporting the headers of pybind11
+ USE_SYSTEM_BIND11 = true;
+
preBuild = ''
export MAX_JOBS=$NIX_BUILD_CORES
${python.interpreter} setup.py build --cmake-only
@@ -223,7 +227,7 @@ in buildPythonPackage rec {
removeReferencesTo
] ++ lib.optionals cudaSupport [ cudatoolkit_joined ];
- buildInputs = [ blas blas.provider ]
+ buildInputs = [ blas blas.provider pybind11 ]
++ lib.optionals cudaSupport [ cudnn magma nccl ]
++ lib.optionals stdenv.isLinux [ numactl ];
diff --git a/pkgs/development/python-modules/pyupgrade/default.nix b/pkgs/development/python-modules/pyupgrade/default.nix
index ffd7a89dbb0c..ce8694be61ba 100644
--- a/pkgs/development/python-modules/pyupgrade/default.nix
+++ b/pkgs/development/python-modules/pyupgrade/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "pyupgrade";
- version = "2.32.1";
+ version = "2.34.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "asottile";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-fjahaMetgZaH+IzdyaZSkVbasgc0bqQL+1ae0OJriT0=";
+ sha256 = "sha256-3Go0w/7jcv1XzZ7ypSdPzMZgzEj2+sMlrIm4X1r34MA=";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/schwifty/default.nix b/pkgs/development/python-modules/schwifty/default.nix
new file mode 100644
index 000000000000..9fbf978f7ad5
--- /dev/null
+++ b/pkgs/development/python-modules/schwifty/default.nix
@@ -0,0 +1,49 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, importlib-resources
+, importlib-metadata
+, iso3166
+, pycountry
+, pytestCheckHook
+, pytest-cov
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+ pname = "schwifty";
+ version = "2022.6.0";
+ format = "pyproject";
+
+ disabled = pythonOlder "3.7";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "sha256-MekF96K8IPjop5764Oq6ZcvKJOTc1Qg/gV5Dz2iacBk=";
+ };
+
+ propagatedBuildInputs = [
+ iso3166
+ pycountry
+ ] ++ lib.optionals (pythonOlder "3.8") [
+ importlib-resources
+ ] ++ lib.optionals (pythonOlder "3.7") [
+ importlib-metadata
+ ];
+
+ checkInputs = [
+ pytest-cov
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [
+ "schwifty"
+ ];
+
+ meta = with lib; {
+ description = "Validate/generate IBANs and BICs";
+ homepage = "https://github.com/mdomke/schwifty";
+ license = licenses.mit;
+ maintainers = with maintainers; [ milibopp ];
+ };
+}
diff --git a/pkgs/development/python-modules/tensorflow/bin.nix b/pkgs/development/python-modules/tensorflow/bin.nix
index 1f57c11ec183..37a886c1812d 100644
--- a/pkgs/development/python-modules/tensorflow/bin.nix
+++ b/pkgs/development/python-modules/tensorflow/bin.nix
@@ -190,6 +190,7 @@ in buildPythonPackage {
broken = stdenv.isDarwin;
description = "Computation using data flow graphs for scalable machine learning";
homepage = "http://tensorflow.org";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.asl20;
maintainers = with maintainers; [ jyp abbradar cdepillabout ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
diff --git a/pkgs/development/python-modules/torchaudio/bin.nix b/pkgs/development/python-modules/torchaudio/bin.nix
index ba504102329d..42558837bc00 100644
--- a/pkgs/development/python-modules/torchaudio/bin.nix
+++ b/pkgs/development/python-modules/torchaudio/bin.nix
@@ -50,6 +50,7 @@ buildPythonPackage rec {
# https://docs.nvidia.com/cuda/eula/index.html
# https://www.intel.com/content/www/us/en/developer/articles/license/onemkl-license-faq.html
license = licenses.bsd3;
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
platforms = platforms.linux;
maintainers = with maintainers; [ junjihashimoto ];
};
diff --git a/pkgs/development/python-modules/torchvision/bin.nix b/pkgs/development/python-modules/torchvision/bin.nix
index 8b1d0e2ec8de..60a33882021b 100644
--- a/pkgs/development/python-modules/torchvision/bin.nix
+++ b/pkgs/development/python-modules/torchvision/bin.nix
@@ -60,6 +60,7 @@ in buildPythonPackage {
# https://docs.nvidia.com/cuda/eula/index.html
# https://www.intel.com/content/www/us/en/developer/articles/license/onemkl-license-faq.html
license = licenses.bsd3;
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
platforms = platforms.linux;
maintainers = with maintainers; [ junjihashimoto ];
};
diff --git a/pkgs/development/python-modules/trytond/default.nix b/pkgs/development/python-modules/trytond/default.nix
index bffc1e819193..24d8d61b5097 100644
--- a/pkgs/development/python-modules/trytond/default.nix
+++ b/pkgs/development/python-modules/trytond/default.nix
@@ -24,14 +24,14 @@
buildPythonPackage rec {
pname = "trytond";
- version = "6.4.1";
+ version = "6.4.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-8Ah1zNQzcVgYSqCIGRN+6o8qzVPd3WzygGtVnyojHuk=";
+ sha256 = "sha256-ylRyTpTnciZiBeG/Mx9PGBXFdh4q3qENeygY3NDDPKU=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/twilio/default.nix b/pkgs/development/python-modules/twilio/default.nix
index fb11b1f63c6d..31649923daa6 100644
--- a/pkgs/development/python-modules/twilio/default.nix
+++ b/pkgs/development/python-modules/twilio/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "twilio";
- version = "7.9.2";
+ version = "7.9.3";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "twilio";
repo = "twilio-python";
rev = "refs/tags/${version}";
- hash = "sha256-JFCYHiPvKYveHYf6SWkmovuvas5+9IGpsnQWqVIaTto=";
+ hash = "sha256-tTtfrIapIaC3oidqWRntkZ1T1eKZ9/ggKbZk2cMiPSQ=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/types-redis/default.nix b/pkgs/development/python-modules/types-redis/default.nix
index 28a196145c0c..a0070b4d16c7 100644
--- a/pkgs/development/python-modules/types-redis/default.nix
+++ b/pkgs/development/python-modules/types-redis/default.nix
@@ -5,12 +5,12 @@
buildPythonPackage rec {
pname = "types-redis";
- version = "4.2.6";
+ version = "4.2.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-1q3HcYXPQLMAgWdnpkwO6e4LIdwXTo5cI7foPUMYnLg=";
+ sha256 = "sha256-7s5XPo39USOPrh34TTYCM1+8vTuosGQIHMD/jsHwWKE=";
};
# Module doesn't have tests
diff --git a/pkgs/development/tools/analysis/checkov/default.nix b/pkgs/development/tools/analysis/checkov/default.nix
index 2db3cc4ecbd9..972618f476d0 100644
--- a/pkgs/development/tools/analysis/checkov/default.nix
+++ b/pkgs/development/tools/analysis/checkov/default.nix
@@ -32,14 +32,14 @@ with py.pkgs;
buildPythonApplication rec {
pname = "checkov";
- version = "2.0.1212";
+ version = "2.0.1217";
format = "setuptools";
src = fetchFromGitHub {
owner = "bridgecrewio";
repo = pname;
rev = version;
- hash = "sha256-/SrxLqPtMPj9kvig2x9BzhlDsQClWWu+hZ1nyvXCyxA=";
+ hash = "sha256-z1MKLFR/js27/9VxbOOx9LxcKTXOMZpOqUtMjPeIpds=";
};
nativeBuildInputs = with py.pkgs; [
diff --git a/pkgs/development/tools/appthreat-depscan/default.nix b/pkgs/development/tools/appthreat-depscan/default.nix
index 780949dffafd..63c7ae751ed3 100644
--- a/pkgs/development/tools/appthreat-depscan/default.nix
+++ b/pkgs/development/tools/appthreat-depscan/default.nix
@@ -5,13 +5,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "appthreat-depscan";
- version = "2.1.5";
+ version = "2.1.6";
src = fetchFromGitHub {
owner = "AppThreat";
repo = "dep-scan";
rev = "refs/tags/v${version}";
- hash = "sha256-pe8bEMpK0pHLoTRSE0eEbARbU3Pyqv1PFOYvF6D4Trw=";
+ hash = "sha256-r0+USVnMLLGVMBV1gcCGECj8JG0FrHmMEynZKkSzYhY=";
};
propagatedBuildInputs = with python3.pkgs; [
diff --git a/pkgs/development/tools/azure-functions-core-tools/default.nix b/pkgs/development/tools/azure-functions-core-tools/default.nix
index d201c64f0834..27aa1e2f3714 100644
--- a/pkgs/development/tools/azure-functions-core-tools/default.nix
+++ b/pkgs/development/tools/azure-functions-core-tools/default.nix
@@ -66,6 +66,10 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/Azure/azure-functions-core-tools";
description = "Command line tools for Azure Functions";
+ sourceProvenance = with sourceTypes; [
+ binaryBytecode
+ binaryNativeCode
+ ];
license = licenses.mit;
maintainers = with maintainers; [ jshcmpbll ];
platforms = platforms.linux;
diff --git a/pkgs/development/tools/build-managers/bloop/default.nix b/pkgs/development/tools/build-managers/bloop/default.nix
index aa0e9adc2fc8..1a7060a2f042 100644
--- a/pkgs/development/tools/build-managers/bloop/default.nix
+++ b/pkgs/development/tools/build-managers/bloop/default.nix
@@ -63,6 +63,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://scalacenter.github.io/bloop/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.asl20;
description = "A Scala build server and command-line tool to make the compile and test developer workflows fast and productive in a build-tool-agnostic way";
platforms = [ "x86_64-linux" "x86_64-darwin" ];
diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix
index 1ec162fd3403..074a2945d546 100644
--- a/pkgs/development/tools/build-managers/gradle/default.nix
+++ b/pkgs/development/tools/build-managers/gradle/default.nix
@@ -86,7 +86,10 @@ rec {
homepage = "https://www.gradle.org/";
changelog = "https://docs.gradle.org/${version}/release-notes.html";
downloadPage = "https://gradle.org/next-steps/?version=${version}";
- sourceProvenance = with sourceTypes; [ binaryBytecode ];
+ sourceProvenance = with sourceTypes; [
+ binaryBytecode
+ binaryNativeCode
+ ];
license = licenses.asl20;
platforms = if (supportedPlatforms != null) then supportedPlatforms else platforms.unix;
maintainers = with maintainers; [ lorenzleutgeb liff ];
diff --git a/pkgs/development/tools/build-managers/msbuild/default.nix b/pkgs/development/tools/build-managers/msbuild/default.nix
index 5c3225c683f7..31c1b5dc521b 100644
--- a/pkgs/development/tools/build-managers/msbuild/default.nix
+++ b/pkgs/development/tools/build-managers/msbuild/default.nix
@@ -143,6 +143,10 @@ EOF
meta = with lib; {
description = "Mono version of Microsoft Build Engine, the build platform for .NET, and Visual Studio";
homepage = "https://github.com/mono/msbuild";
+ sourceProvenance = with sourceTypes; [
+ fromSource
+ binaryNativeCode # dependencies
+ ];
license = licenses.mit;
maintainers = with maintainers; [ jdanek ];
platforms = platforms.unix;
diff --git a/pkgs/development/tools/build-managers/sbt/default.nix b/pkgs/development/tools/build-managers/sbt/default.nix
index 59d9441a5905..19a72b70f9d9 100644
--- a/pkgs/development/tools/build-managers/sbt/default.nix
+++ b/pkgs/development/tools/build-managers/sbt/default.nix
@@ -39,6 +39,10 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://www.scala-sbt.org/";
license = licenses.bsd3;
+ sourceProvenance = with sourceTypes; [
+ binaryBytecode
+ binaryNativeCode
+ ];
description = "A build tool for Scala, Java and more";
maintainers = with maintainers; [ nequissimus ];
platforms = platforms.unix;
diff --git a/pkgs/development/tools/build-managers/scala-cli/default.nix b/pkgs/development/tools/build-managers/scala-cli/default.nix
index 314acfe71ffd..a9ec8b88df07 100644
--- a/pkgs/development/tools/build-managers/scala-cli/default.nix
+++ b/pkgs/development/tools/build-managers/scala-cli/default.nix
@@ -63,6 +63,7 @@ stdenv.mkDerivation {
meta = with lib; {
homepage = "https://scala-cli.virtuslab.org";
downloadPage = "https://github.com/VirtusLab/scala-cli/releases/v${version}";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.asl20;
description = "Command-line tool to interact with the Scala language";
maintainers = [ maintainers.kubukoz ];
diff --git a/pkgs/development/tools/cambalache/default.nix b/pkgs/development/tools/cambalache/default.nix
index 5845ed033c3e..29f2310a1c28 100644
--- a/pkgs/development/tools/cambalache/default.nix
+++ b/pkgs/development/tools/cambalache/default.nix
@@ -12,13 +12,15 @@
, glib
, gtk3
, gtk4
+, libadwaita
+, libhandy
, webkitgtk
, nix-update-script
}:
python3.pkgs.buildPythonApplication rec {
pname = "cambalache";
- version = "0.8.2";
+ version = "0.10.1";
format = "other";
@@ -27,7 +29,7 @@ python3.pkgs.buildPythonApplication rec {
owner = "jpu";
repo = pname;
rev = version;
- sha256 = "sha256-1+IoBoaNHwvN8W+KRyV5cTFkFG+pTHJBehQ2VosCEfs=";
+ sha256 = "sha256-UgPyG1xDt624W+qTb88d0WvOza6YvVAO/YXeUV51Rro=";
};
nativeBuildInputs = [
@@ -50,6 +52,9 @@ python3.pkgs.buildPythonApplication rec {
gtk3
gtk4
webkitgtk
+ # For extra widgets support.
+ libadwaita
+ libhandy
];
# Not compatible with gobject-introspection setup hooks.
diff --git a/pkgs/development/tools/ccloud-cli/default.nix b/pkgs/development/tools/ccloud-cli/default.nix
index 2a3d1de41a11..f3754c6119ea 100644
--- a/pkgs/development/tools/ccloud-cli/default.nix
+++ b/pkgs/development/tools/ccloud-cli/default.nix
@@ -28,6 +28,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Confluent Cloud CLI";
homepage = "https://docs.confluent.io/current/cloud/cli/index.html";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ kalbasit ];
diff --git a/pkgs/development/tools/confluent-cli/default.nix b/pkgs/development/tools/confluent-cli/default.nix
index 059a3272038f..84a681c9b6bf 100644
--- a/pkgs/development/tools/confluent-cli/default.nix
+++ b/pkgs/development/tools/confluent-cli/default.nix
@@ -28,6 +28,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Confluent CLI";
homepage = "https://docs.confluent.io/confluent-cli/current/overview.html";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ rguevara84 ];
diff --git a/pkgs/development/tools/delve/default.nix b/pkgs/development/tools/delve/default.nix
index 635a8aa88064..101449cb8038 100644
--- a/pkgs/development/tools/delve/default.nix
+++ b/pkgs/development/tools/delve/default.nix
@@ -34,6 +34,5 @@ buildGoModule rec {
homepage = "https://github.com/go-delve/delve";
maintainers = with maintainers; [ SuperSandro2000 vdemeester ];
license = licenses.mit;
- platforms = [ "x86_64-linux" ] ++ platforms.darwin;
};
}
diff --git a/pkgs/development/tools/eclipse-mat/default.nix b/pkgs/development/tools/eclipse-mat/default.nix
index 647e5200a3dc..dced6c6cde2d 100644
--- a/pkgs/development/tools/eclipse-mat/default.nix
+++ b/pkgs/development/tools/eclipse-mat/default.nix
@@ -110,6 +110,7 @@ stdenv.mkDerivation rec {
run a report to automatically extract leak suspects.
'';
homepage = "https://www.eclipse.org/mat";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.epl20;
maintainers = [ maintainers.ktor ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/development/tools/golangci-lint-langserver/default.nix b/pkgs/development/tools/golangci-lint-langserver/default.nix
new file mode 100644
index 000000000000..0da4498bd9b0
--- /dev/null
+++ b/pkgs/development/tools/golangci-lint-langserver/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+ pname = "golangci-lint-langserver";
+ version = "0.0.6";
+
+ src = fetchFromGitHub {
+ owner = "nametake";
+ repo = "golangci-lint-langserver";
+ rev = "v${version}";
+ sha256 = "0x3qr2ckyk6rcn2rfm2sallzdprzxjh590gh3bfvqn7nb1mfw367";
+ };
+
+ vendorSha256 = "sha256-tAcl6P+cgqFX1eMYdS8vnfdNyb+1QNWwWdJsQU6Fpgg=";
+
+ subPackages = [ "." ];
+
+ meta = with lib; {
+ description = "Language server for golangci-lint";
+ homepage = "https://github.com/nametake/golangci-lint-langserver";
+ license = licenses.mit;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/tools/google-app-engine-go-sdk/default.nix b/pkgs/development/tools/google-app-engine-go-sdk/default.nix
index c20d7a2e49a6..1230ac606ecf 100644
--- a/pkgs/development/tools/google-app-engine-go-sdk/default.nix
+++ b/pkgs/development/tools/google-app-engine-go-sdk/default.nix
@@ -36,6 +36,10 @@ stdenv.mkDerivation rec {
description = "Google App Engine SDK for Go";
version = version;
homepage = "https://cloud.google.com/appengine/docs/go/";
+ sourceProvenance = with sourceTypes; [
+ fromSource
+ binaryNativeCode # includes golang toolchain binaries
+ ];
license = licenses.asl20;
platforms = ["x86_64-linux" "x86_64-darwin"];
maintainers = with maintainers; [ lufia ];
diff --git a/pkgs/development/tools/gotags/default.nix b/pkgs/development/tools/gotags/default.nix
deleted file mode 100644
index 0a55fc66830f..000000000000
--- a/pkgs/development/tools/gotags/default.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ lib, buildGoPackage, fetchFromGitHub }:
-
-buildGoPackage rec {
- pname = "gotags";
- version = "unstable-2015-08-03";
-
- goPackagePath = "github.com/jstemmer/gotags";
-
- src = fetchFromGitHub {
- owner = "jstemmer";
- repo = "gotags";
- rev = "be986a34e20634775ac73e11a5b55916085c48e7";
- sha256 = "sha256-Su7AA6HCdeZai8+yRSKzlrgXvsSEgrXGot2ABRL2PBw=";
- };
-}
diff --git a/pkgs/development/tools/iaca/2.1.nix b/pkgs/development/tools/iaca/2.1.nix
index 1b64b2a5302d..6695716aa67f 100644
--- a/pkgs/development/tools/iaca/2.1.nix
+++ b/pkgs/development/tools/iaca/2.1.nix
@@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Intel Architecture Code Analyzer";
homepage = "https://software.intel.com/en-us/articles/intel-architecture-code-analyzer/";
+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ kazcw ];
diff --git a/pkgs/development/tools/iaca/3.0.nix b/pkgs/development/tools/iaca/3.0.nix
index d5a8f8aece44..b5ad92cc0821 100644
--- a/pkgs/development/tools/iaca/3.0.nix
+++ b/pkgs/development/tools/iaca/3.0.nix
@@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Intel Architecture Code Analyzer";
homepage = "https://software.intel.com/en-us/articles/intel-architecture-code-analyzer/";
+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ kazcw ];
diff --git a/pkgs/development/tools/kythe/default.nix b/pkgs/development/tools/kythe/default.nix
index f6a4c2e6c1e6..4cac7a0e3b7b 100644
--- a/pkgs/development/tools/kythe/default.nix
+++ b/pkgs/development/tools/kythe/default.nix
@@ -41,6 +41,7 @@ stdenv.mkDerivation rec {
analyses, editors, code-review applications, and more — to share
information with each other smoothly. '';
homepage = "https://kythe.io/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.asl20;
platforms = platforms.linux;
maintainers = [ maintainers.mpickering ];
diff --git a/pkgs/development/tools/mblock-mlink/default.nix b/pkgs/development/tools/mblock-mlink/default.nix
index f43cc683c320..4d70efbbc50e 100644
--- a/pkgs/development/tools/mblock-mlink/default.nix
+++ b/pkgs/development/tools/mblock-mlink/default.nix
@@ -32,6 +32,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Driver for mBlock web version";
homepage = "https://mblock.makeblock.com/en-us/download/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
maintainers = [ maintainers.mausch ];
diff --git a/pkgs/development/tools/misc/arcanist/default.nix b/pkgs/development/tools/misc/arcanist/default.nix
index 16c056bc3ff0..178bb9b3d059 100644
--- a/pkgs/development/tools/misc/arcanist/default.nix
+++ b/pkgs/development/tools/misc/arcanist/default.nix
@@ -25,16 +25,19 @@ let makeArcWrapper = toolset: ''
in
stdenv.mkDerivation {
pname = "arcanist";
- version = "20220425";
+ version = "20220517";
src = fetchFromGitHub {
owner = "phacility";
repo = "arcanist";
- rev = "da206314cf59f71334b187283e18823bddc16ddd";
- sha256 = "sha256-6VVUjFMwPQvk22Ni1YUSgks4ZM0j1JP+71VnYKD8onM=";
+ rev = "85c953ebe4a6fef332158fd757d97c5a58682d3a";
+ sha256 = "0x847fw74mzrbhzpgc4iqgvs6dsf4svwfa707dsbxi78fn2lxbl7";
};
- patches = [ ./dont-require-python3-in-path.patch ];
+ patches = [
+ ./dont-require-python3-in-path.patch
+ ./shellcomplete-strlen-null.patch
+ ];
buildInputs = [ php python3 ];
diff --git a/pkgs/development/tools/misc/arcanist/shellcomplete-strlen-null.patch b/pkgs/development/tools/misc/arcanist/shellcomplete-strlen-null.patch
new file mode 100644
index 000000000000..6911ce074e0c
--- /dev/null
+++ b/pkgs/development/tools/misc/arcanist/shellcomplete-strlen-null.patch
@@ -0,0 +1,13 @@
+diff --git a/src/toolset/workflow/ArcanistShellCompleteWorkflow.php b/src/toolset/workflow/ArcanistShellCompleteWorkflow.php
+index 9c2fcf9a..307231c8 100644
+--- a/src/toolset/workflow/ArcanistShellCompleteWorkflow.php
++++ b/src/toolset/workflow/ArcanistShellCompleteWorkflow.php
+@@ -92,7 +92,7 @@ EOTEXT
+ $argv = $this->getArgument('argv');
+
+ $is_generate = $this->getArgument('generate');
+- $is_shell = (bool)strlen($this->getArgument('shell'));
++ $is_shell = phutil_nonempty_string($this->getArgument('shell'));
+ $is_current = $this->getArgument('current');
+
+ if ($argv) {
diff --git a/pkgs/development/tools/misc/blackfire/default.nix b/pkgs/development/tools/misc/blackfire/default.nix
index 8ccc03c6e503..107076963b77 100644
--- a/pkgs/development/tools/misc/blackfire/default.nix
+++ b/pkgs/development/tools/misc/blackfire/default.nix
@@ -98,6 +98,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Blackfire Profiler agent and client";
homepage = "https://blackfire.io/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ jtojnar shyim ];
platforms = [ "x86_64-linux" "aarch64-linux" "i686-linux" "x86_64-darwin" "aarch64-darwin" ];
diff --git a/pkgs/development/tools/misc/blackfire/php-probe.nix b/pkgs/development/tools/misc/blackfire/php-probe.nix
index 7abca124920f..0805a5be07cf 100644
--- a/pkgs/development/tools/misc/blackfire/php-probe.nix
+++ b/pkgs/development/tools/misc/blackfire/php-probe.nix
@@ -198,6 +198,7 @@ self = stdenv.mkDerivation rec {
meta = with lib; {
description = "Blackfire Profiler PHP module";
homepage = "https://blackfire.io/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ jtojnar shyim ];
platforms = [ "x86_64-linux" "aarch64-linux" "i686-linux" "x86_64-darwin" "aarch64-darwin" ];
diff --git a/pkgs/development/tools/misc/remarkable/remarkable-toolchain/default.nix b/pkgs/development/tools/misc/remarkable/remarkable-toolchain/default.nix
index e5ed098af8e1..2dba7768cf8c 100644
--- a/pkgs/development/tools/misc/remarkable/remarkable-toolchain/default.nix
+++ b/pkgs/development/tools/misc/remarkable/remarkable-toolchain/default.nix
@@ -28,6 +28,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A toolchain for cross-compiling to reMarkable tablets";
homepage = "https://remarkable.engineering/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.gpl2Plus;
maintainers = with maintainers; [ nickhu siraben ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/development/tools/misc/remarkable/remarkable2-toolchain/default.nix b/pkgs/development/tools/misc/remarkable/remarkable2-toolchain/default.nix
index fe54390c7858..2bb5e11e2432 100644
--- a/pkgs/development/tools/misc/remarkable/remarkable2-toolchain/default.nix
+++ b/pkgs/development/tools/misc/remarkable/remarkable2-toolchain/default.nix
@@ -28,6 +28,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A toolchain for cross-compiling to reMarkable 2 tablets";
homepage = "https://remarkable.engineering/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.gpl2Plus;
maintainers = with maintainers; [ tadfisher ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/development/tools/misc/saleae-logic/default.nix b/pkgs/development/tools/misc/saleae-logic/default.nix
index 487445e0fc35..d4f17fb595d0 100644
--- a/pkgs/development/tools/misc/saleae-logic/default.nix
+++ b/pkgs/development/tools/misc/saleae-logic/default.nix
@@ -90,6 +90,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Software for Saleae logic analyzers";
homepage = "https://www.saleae.com/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
diff --git a/pkgs/development/tools/misc/segger-ozone/default.nix b/pkgs/development/tools/misc/segger-ozone/default.nix
index 5e1c6888b8e5..7f68d3e7fc66 100644
--- a/pkgs/development/tools/misc/segger-ozone/default.nix
+++ b/pkgs/development/tools/misc/segger-ozone/default.nix
@@ -77,6 +77,7 @@ stdenv.mkDerivation rec {
not guaranteed to be.
'';
homepage = "https://www.segger.com/products/development-tools/ozone-j-link-debugger";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = [ maintainers.bmilanov ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/development/tools/neoload/default.nix b/pkgs/development/tools/neoload/default.nix
index 0fcb121e4603..b7e927dbfd07 100644
--- a/pkgs/development/tools/neoload/default.nix
+++ b/pkgs/development/tools/neoload/default.nix
@@ -87,6 +87,7 @@ in stdenv.mkDerivation rec {
homepage = "https://www.neotys.com/product/overview-neoload.html";
+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
# https://www.neotys.com/documents/legal/eula/neoload/eula_en.html
license = lib.licenses.unfree;
diff --git a/pkgs/development/tools/omnisharp-roslyn/default.nix b/pkgs/development/tools/omnisharp-roslyn/default.nix
index a76e57ad4265..a64edf4c75a8 100644
--- a/pkgs/development/tools/omnisharp-roslyn/default.nix
+++ b/pkgs/development/tools/omnisharp-roslyn/default.nix
@@ -109,6 +109,10 @@ in stdenv.mkDerivation rec {
description = "OmniSharp based on roslyn workspaces";
homepage = "https://github.com/OmniSharp/omnisharp-roslyn";
platforms = platforms.unix;
+ sourceProvenance = with sourceTypes; [
+ fromSource
+ binaryNativeCode # dependencies
+ ];
license = licenses.mit;
maintainers = with maintainers; [ tesq0 ericdallo corngood ];
mainProgram = "omnisharp";
diff --git a/pkgs/development/tools/quick-lint-js/default.nix b/pkgs/development/tools/quick-lint-js/default.nix
index 8869d3730a55..9425a04bbcb5 100644
--- a/pkgs/development/tools/quick-lint-js/default.nix
+++ b/pkgs/development/tools/quick-lint-js/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
pname = "quick-lint-js";
- version = "2.5.0";
+ version = "2.6.0";
src = fetchFromGitHub {
owner = "quick-lint";
repo = "quick-lint-js";
rev = version;
- sha256 = "0vx6fddd0y8p27znv0ah0gjigs9hkifz132vzsnfg7w4s5az4fiy";
+ sha256 = "sha256-ZZxLiZ7ptaUAUXa2HA5ICEP5Ym6221Ehfd6ufj78kXM=";
};
nativeBuildInputs = [ cmake ninja ];
diff --git a/pkgs/development/tools/react-native-debugger/default.nix b/pkgs/development/tools/react-native-debugger/default.nix
index ee03e043dd86..3bd89c2daab7 100644
--- a/pkgs/development/tools/react-native-debugger/default.nix
+++ b/pkgs/development/tools/react-native-debugger/default.nix
@@ -75,6 +75,7 @@ in stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/jhen0409/react-native-debugger";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.mit;
description = "The standalone app based on official debugger of React Native, and includes React Inspector / Redux DevTools";
maintainers = with maintainers; [ ];
diff --git a/pkgs/development/tools/sslmate-agent/default.nix b/pkgs/development/tools/sslmate-agent/default.nix
index ecbaeb816f00..dccc22e7fe9e 100644
--- a/pkgs/development/tools/sslmate-agent/default.nix
+++ b/pkgs/development/tools/sslmate-agent/default.nix
@@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Daemon for managing SSL/TLS certificates on a server";
homepage = "https://sslmate.com/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ wolfangaukang ];
};
diff --git a/pkgs/development/tools/thrust/default.nix b/pkgs/development/tools/thrust/default.nix
index 9770a384e183..5e7b90641704 100644
--- a/pkgs/development/tools/thrust/default.nix
+++ b/pkgs/development/tools/thrust/default.nix
@@ -39,6 +39,7 @@ in stdenv.mkDerivation rec {
meta = with lib; {
description = "Chromium-based cross-platform / cross-language application framework";
homepage = "https://github.com/breach/thrust";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.mit;
maintainers = [ maintainers.osener ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/development/tools/unity3d/default.nix b/pkgs/development/tools/unity3d/default.nix
deleted file mode 100644
index 5470c45b138a..000000000000
--- a/pkgs/development/tools/unity3d/default.nix
+++ /dev/null
@@ -1,143 +0,0 @@
-{ stdenv, lib, fetchurl, makeWrapper, file, getopt
-, gtk2, gtk3, gdk-pixbuf, glib, libGL, libGLU, nss, nspr, udev, tbb
-, alsa-lib, GConf, cups, libcap, fontconfig, freetype, pango
-, cairo, dbus, expat, zlib, libpng12, nodejs, gnutar, gcc, gcc_32bit
-, libX11, libXcursor, libXdamage, libXfixes, libXrender, libXi
-, libXcomposite, libXext, libXrandr, libXtst, libSM, libICE, libxcb, chromium
-, libpqxx, libselinux, pciutils, libpulseaudio
-}:
-
-let
- libPath64 = lib.makeLibraryPath [
- gcc.cc gtk2 gdk-pixbuf glib libGL libGLU nss nspr
- alsa-lib GConf cups libcap fontconfig freetype pango
- cairo dbus expat zlib libpng12 udev tbb
- libX11 libXcursor libXdamage libXfixes libXrender libXi
- libXcomposite libXext libXrandr libXtst libSM libICE libxcb
- libpqxx gtk3
-
- libselinux pciutils libpulseaudio
- ];
- libPath32 = lib.makeLibraryPath [ gcc_32bit.cc ];
- binPath = lib.makeBinPath [ nodejs gnutar ];
-
- ver = "2018.3.0";
- build = "f2";
-
-in stdenv.mkDerivation {
- pname = "unity-editor";
- version = "${ver}x${build}";
-
- src = fetchurl {
- url = "https://beta.unity3d.com/download/6e9a27477296/LinuxEditorInstaller/Unity.tar.xz";
- sha256 = "10gppnqacs1qzahj077nkcgbfz2lryd0dxnfcmvyc64xpxnj9nlk";
- };
-
- nosuidLib = ./unity-nosuid.c;
-
- nativeBuildInputs = [ makeWrapper file getopt ];
-
- outputs = [ "out" ];
-
- sourceRoot = ".";
-
- buildPhase = ''
- cd Editor
-
- $CC -fPIC -shared -o libunity-nosuid.so $nosuidLib -ldl
- strip libunity-nosuid.so
-
- cd ..
- '';
-
- installPhase = ''
- unitydir="$out/opt/Unity/Editor"
- mkdir -p $unitydir
- mv Editor/* $unitydir
- ln -sf /run/wrappers/bin/${chromium.sandboxExecutableName} $unitydir/chrome-sandbox
-
- mkdir -p $out/bin
- makeWrapper $unitydir/Unity $out/bin/unity-editor \
- --prefix LD_LIBRARY_PATH : "${libPath64}" \
- --prefix LD_PRELOAD : "$unitydir/libunity-nosuid.so" \
- --prefix PATH : "${binPath}"
- '';
-
- preFixup = ''
- patchFile() {
- ftype="$(file -b "$1")"
- if [[ "$ftype" =~ LSB\ .*dynamically\ linked ]]; then
- if [[ "$ftype" =~ 32-bit ]]; then
- rpath="${libPath32}"
- intp="$(cat $NIX_CC/nix-support/dynamic-linker-m32)"
- else
- rpath="${libPath64}"
- intp="$(cat $NIX_CC/nix-support/dynamic-linker)"
- fi
-
- # Save origin-relative parts of rpath.
- originRpath="$(patchelf --print-rpath "$1" | sed "s/:/\n/g" | grep "^\$ORIGIN" | paste -sd ":" - || echo "")"
- rpath="$originRpath:$rpath"
-
- patchelf --set-rpath "$rpath" "$1"
- patchelf --set-interpreter "$intp" "$1" 2> /dev/null || true
- fi
- }
-
- upm_linux=$unitydir/Data/Resources/PackageManager/Server/UnityPackageManager
-
-
- orig_size=$(stat --printf=%s $upm_linux)
-
- # Exclude PlaybackEngines to build something that can be run on FHS-compliant Linuxes
- find $unitydir -name PlaybackEngines -prune -o -type f -print | while read path; do
- patchFile "$path"
- done
-
- new_size=$(stat --printf=%s $upm_linux)
-
- ###### zeit-pkg fixing starts here.
- # we're replacing plaintext js code that looks like
- # PAYLOAD_POSITION = '1234 ' | 0
- # [...]
- # PRELUDE_POSITION = '1234 ' | 0
- # ^-----20-chars-----^^------22-chars------^
- # ^-- grep points here
- #
- # var_* are as described above
- # shift_by seems to be safe so long as all patchelf adjustments occur
- # before any locations pointed to by hardcoded offsets
-
- var_skip=20
- var_select=22
- shift_by=$(expr $new_size - $orig_size)
-
- function fix_offset {
- # $1 = name of variable to adjust
- location=$(grep -obUam1 "$1" $upm_linux | cut -d: -f1)
- location=$(expr $location + $var_skip)
- value=$(dd if=$upm_linux iflag=count_bytes,skip_bytes skip=$location \
- bs=1 count=$var_select status=none)
- value=$(expr $shift_by + $value)
- echo -n $value | dd of=$upm_linux bs=1 seek=$location conv=notrunc
- }
-
- fix_offset PAYLOAD_POSITION
- fix_offset PRELUDE_POSITION
- '';
-
- dontStrip = true;
- dontPatchELF = true;
-
- meta = with lib; {
- homepage = "https://unity3d.com/";
- description = "Game development tool";
- longDescription = ''
- Popular development platform for creating 2D and 3D multiplatform games
- and interactive experiences.
- '';
- license = licenses.unfree;
- platforms = [ "x86_64-linux" ];
- maintainers = with maintainers; [ tesq0 ];
- };
-}
diff --git a/pkgs/development/tools/unity3d/unity-nosuid.c b/pkgs/development/tools/unity3d/unity-nosuid.c
deleted file mode 100644
index 26a923ab0394..000000000000
--- a/pkgs/development/tools/unity3d/unity-nosuid.c
+++ /dev/null
@@ -1,32 +0,0 @@
-#define _GNU_SOURCE
-
-#include
-#include
-#include
-#include
-#include
-
-static const char sandbox_path[] = "/chrome-sandbox";
-
-int __xstat(int ver, const char* path, struct stat* stat_buf) {
- static int (*original_xstat)(int, const char*, struct stat*) = NULL;
- if (original_xstat == NULL) {
- int (*fun)(int, const char*, struct stat*) = dlsym(RTLD_NEXT, "__xstat");
- if (fun == NULL) {
- return -1;
- };
- original_xstat = fun;
- };
-
- int res = (*original_xstat)(ver, path, stat_buf);
- if (res == 0) {
- char* pos = strstr(path, sandbox_path);
- if (pos != NULL && *(pos + sizeof(sandbox_path) - 1) == '\0') {
- printf("Lying about chrome-sandbox access rights...\n");
- stat_buf->st_uid = 0;
- stat_buf->st_gid = 0;
- stat_buf->st_mode = 0104755;
- };
- }
- return res;
-}
diff --git a/pkgs/development/web/cypress/default.nix b/pkgs/development/web/cypress/default.nix
index b85a1f06b2bc..e3f5a8b99cf1 100644
--- a/pkgs/development/web/cypress/default.nix
+++ b/pkgs/development/web/cypress/default.nix
@@ -70,6 +70,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Fast, easy and reliable testing for anything that runs in a browser";
homepage = "https://www.cypress.io";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.mit;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ tweber mmahut ];
diff --git a/pkgs/development/web/deno/default.nix b/pkgs/development/web/deno/default.nix
index c8d5cc2cac3c..3a62b1802b74 100644
--- a/pkgs/development/web/deno/default.nix
+++ b/pkgs/development/web/deno/default.nix
@@ -16,15 +16,15 @@
rustPlatform.buildRustPackage rec {
pname = "deno";
- version = "1.22.3";
+ version = "1.23.0";
src = fetchFromGitHub {
owner = "denoland";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-Ode/kbf2aHgSh+k7ZK0aoVqUTPzfLtWkSF2saP/DG0k=";
+ sha256 = "sha256-nPVghkLtXhd2/TeBeNDtA1ucgiqzZWmtxXf9bCrFh44=";
};
- cargoSha256 = "sha256-YNJbT+88YDWDv/ydz9sZQ/QddjB+ggK57/6LzKN+zNE=";
+ cargoSha256 = "sha256-bCk6zgsfyI5Nk0AHPyr29KzgltobxfD6b72N0ZaQyOU=";
postPatch = ''
# upstream uses lld on aarch64-darwin for faster builds
diff --git a/pkgs/development/web/deno/librusty_v8.nix b/pkgs/development/web/deno/librusty_v8.nix
index 9011ee18046f..581c2e88d9ca 100644
--- a/pkgs/development/web/deno/librusty_v8.nix
+++ b/pkgs/development/web/deno/librusty_v8.nix
@@ -11,11 +11,11 @@ let
};
in
fetch_librusty_v8 {
- version = "0.43.1";
+ version = "0.44.1";
shas = {
- x86_64-linux = "sha256-xsKV3/MXwQExON5Bq1qRUShPV0wXEtUHB/DTVjVyWfQ=";
- aarch64-linux = "sha256-wBtpDG4GxSR4jeAZjclNqVDankWBmxf0cH0LKM4smjM=";
- x86_64-darwin = "sha256-BGrbwRoPUcSIW4Q3PF8p6vjkTKGLISBxLjOXDWcSjag=";
- aarch64-darwin = "sha256-4OyQPQPIQ94TanY1hxRTdcWZi5didvyLupLfQ516YL4=";
+ x86_64-linux = "sha256-8aBjN9ukbH+lr3YPdngXxSjPjutBgWv4hEdhYmcvtO4=";
+ aarch64-linux = "sha256-h0mxzeA/wB+/zNz0ZKjSBH7lpYrCLRdTgeDGwZypuXE=";
+ x86_64-darwin = "sha256-4YXYHhYwCBnb1clxW1ziccHMWsUcGz8Rr8/anCvI1lY=";
+ aarch64-darwin = "sha256-3sBeL+YJB1HaEhM76GfABvN/6iWeST7Z6lVu3X8sRjk=";
};
}
diff --git a/pkgs/development/web/postman/default.nix b/pkgs/development/web/postman/default.nix
index e687a157b87e..a5d3676e439b 100644
--- a/pkgs/development/web/postman/default.nix
+++ b/pkgs/development/web/postman/default.nix
@@ -6,6 +6,7 @@ let
meta = with lib; {
homepage = "https://www.getpostman.com";
description = "API Development Environment";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.postman;
platforms = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ];
maintainers = with maintainers; [ johnrichardrinehart evanjs tricktron ];
diff --git a/pkgs/games/factorio/default.nix b/pkgs/games/factorio/default.nix
index 4cf335a61378..4ca92961bafd 100644
--- a/pkgs/games/factorio/default.nix
+++ b/pkgs/games/factorio/default.nix
@@ -166,6 +166,7 @@ let
version 1.0 in mid 2020.
'';
homepage = "https://www.factorio.com/";
+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ Baughn elitak erictapen priegger lukegb ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/games/minecraft/default.nix b/pkgs/games/minecraft/default.nix
index dc4cd9087fc2..a8e883acae37 100644
--- a/pkgs/games/minecraft/default.nix
+++ b/pkgs/games/minecraft/default.nix
@@ -149,6 +149,7 @@ stdenv.mkDerivation rec {
description = "Official launcher for Minecraft, a sandbox-building game";
homepage = "https://minecraft.net";
maintainers = with maintainers; [ cpages ryantm infinisil ];
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
};
diff --git a/pkgs/games/runelite/default.nix b/pkgs/games/runelite/default.nix
index 0cb72f6d23c6..a3c686eee9fe 100644
--- a/pkgs/games/runelite/default.nix
+++ b/pkgs/games/runelite/default.nix
@@ -58,7 +58,10 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Open source Old School RuneScape client";
homepage = "https://runelite.net/";
- sourceProvenance = with sourceTypes; [ binaryBytecode ];
+ sourceProvenance = with sourceTypes; [
+ binaryBytecode
+ binaryNativeCode
+ ];
license = licenses.bsd2;
maintainers = with maintainers; [ kmeakin ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/games/runescape-launcher/default.nix b/pkgs/games/runescape-launcher/default.nix
index 3208aa3b4612..e671e5589b82 100644
--- a/pkgs/games/runescape-launcher/default.nix
+++ b/pkgs/games/runescape-launcher/default.nix
@@ -77,6 +77,7 @@ let
meta = with lib; {
description = "Launcher for RuneScape 3, the current main RuneScape";
homepage = "https://www.runescape.com/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ grburst ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/games/unvanquished/default.nix b/pkgs/games/unvanquished/default.nix
index 574c639ad125..ca6af48bbb31 100644
--- a/pkgs/games/unvanquished/default.nix
+++ b/pkgs/games/unvanquished/default.nix
@@ -225,6 +225,10 @@ in stdenv.mkDerivation rec {
mit gpl3Plus lib.licenses.zlib bsd3 # engine
cc-by-sa-25 cc-by-sa-30 cc-by-30 cc-by-sa-40 cc0 # assets
];
+ sourceProvenance = with lib.sourceTypes; [
+ fromSource
+ binaryNativeCode # unvanquished-binary-deps
+ ];
maintainers = with lib.maintainers; [ afontain ];
platforms = [ "x86_64-linux" ];
};
diff --git a/pkgs/misc/arm-trusted-firmware/default.nix b/pkgs/misc/arm-trusted-firmware/default.nix
index 4145e2f43f0a..f523727d0211 100644
--- a/pkgs/misc/arm-trusted-firmware/default.nix
+++ b/pkgs/misc/arm-trusted-firmware/default.nix
@@ -17,7 +17,7 @@ let
, platformCanUseHDCPBlob ? false # set this to true if the platform is able to use hdcp.bin
, extraMakeFlags ? []
, extraMeta ? {}
- , version ? "2.6"
+ , version ? "2.7"
, ... } @ args:
# delete hdcp.bin if either: the platform is thought to
@@ -33,7 +33,7 @@ let
owner = "ARM-software";
repo = "arm-trusted-firmware";
rev = "v${version}";
- sha256 = "sha256-qT9DdTvMcUrvRzgmVf2qmKB+Rb1WOB4p1rM+fsewGcg=";
+ sha256 = "sha256-WDJMMIWZHNqxxAKeHiZDxtPjfsfQAWsbYv+0o0PiJQs=";
};
patches = lib.optionals deleteHDCPBlobBeforeBuild [
diff --git a/pkgs/misc/drivers/epkowa/default.nix b/pkgs/misc/drivers/epkowa/default.nix
index 29ebfa173296..37e4d2baa35e 100644
--- a/pkgs/misc/drivers/epkowa/default.nix
+++ b/pkgs/misc/drivers/epkowa/default.nix
@@ -18,6 +18,7 @@
}:
let common_meta = {
homepage = "http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX";
+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = with lib.licenses; epson;
platforms = with lib.platforms; linux;
};
diff --git a/pkgs/misc/drivers/gutenprint/bin.nix b/pkgs/misc/drivers/gutenprint/bin.nix
index e1fcb838957c..4b74b191e7f0 100644
--- a/pkgs/misc/drivers/gutenprint/bin.nix
+++ b/pkgs/misc/drivers/gutenprint/bin.nix
@@ -63,6 +63,7 @@ stdenv.mkDerivation {
'';
meta = {
+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
description = "Some additional CUPS drivers including Canon drivers";
platforms = [ "x86_64-linux" ];
};
diff --git a/pkgs/misc/drivers/utsushi/networkscan.nix b/pkgs/misc/drivers/utsushi/networkscan.nix
index 09230b16cb44..c0416a11be3c 100644
--- a/pkgs/misc/drivers/utsushi/networkscan.nix
+++ b/pkgs/misc/drivers/utsushi/networkscan.nix
@@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://support.epson.net/linux/en/imagescanv3.php";
description = "Network scan plugin for ImageScan v3";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ abbradar ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/os-specific/darwin/sketchybar/default.nix b/pkgs/os-specific/darwin/sketchybar/default.nix
index d85bdf0b65ca..a870adf35310 100644
--- a/pkgs/os-specific/darwin/sketchybar/default.nix
+++ b/pkgs/os-specific/darwin/sketchybar/default.nix
@@ -10,13 +10,13 @@ in
stdenv.mkDerivation rec {
pname = "sketchybar";
- version = "2.5.2";
+ version = "2.7.1";
src = fetchFromGitHub {
owner = "FelixKratz";
repo = "SketchyBar";
rev = "v${version}";
- sha256 = "sha256-xkgNPVrGxmi8377+G1HQ8SdwS0fOnGhwYy43yLRyvF0=";
+ sha256 = "sha256-JzZ7X/McWIui9nkSkSGTSdBvJvMics/j7Qqh9wZU7iM=";
};
buildInputs = [ Carbon Cocoa SkyLight ]
diff --git a/pkgs/os-specific/linux/firejail/fix-opengl-support.patch b/pkgs/os-specific/linux/firejail/fix-opengl-support.patch
deleted file mode 100644
index 9fd18aad3fd9..000000000000
--- a/pkgs/os-specific/linux/firejail/fix-opengl-support.patch
+++ /dev/null
@@ -1,7 +0,0 @@
---- a/etc/inc/whitelist-run-common.inc.org 2022-05-07 11:27:32.264849186 +0200
-+++ b/etc/inc/whitelist-run-common.inc 2022-05-07 11:27:55.577778211 +0200
-@@ -13,3 +13,4 @@
- whitelist /run/systemd/resolve/resolv.conf
- whitelist /run/systemd/resolve/stub-resolv.conf
- whitelist /run/udev/data
-+whitelist /run/opengl-driver # NixOS
diff --git a/pkgs/os-specific/linux/firejail/whitelist-nix-profile.patch b/pkgs/os-specific/linux/firejail/whitelist-nix-profile.patch
deleted file mode 100644
index 227d28846ea5..000000000000
--- a/pkgs/os-specific/linux/firejail/whitelist-nix-profile.patch
+++ /dev/null
@@ -1,9 +0,0 @@
---- a/etc/inc/whitelist-common.inc.org 2022-05-06 13:57:17.294206339 +0200
-+++ b/etc/inc/whitelist-common.inc 2022-05-06 13:58:00.108655548 +0200
-@@ -83,3 +83,6 @@
- whitelist ${HOME}/.kde4/share/config/oxygenrc
- whitelist ${HOME}/.kde4/share/icons
- whitelist ${HOME}/.local/share/qt5ct
-+
-+# NixOS specific to resolve binary paths
-+whitelist ${HOME}/.nix-profile
diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json
index 7f2ee97406ee..d1ad7f5b74a1 100644
--- a/pkgs/os-specific/linux/kernel/hardened/patches.json
+++ b/pkgs/os-specific/linux/kernel/hardened/patches.json
@@ -2,52 +2,52 @@
"4.14": {
"patch": {
"extra": "-hardened1",
- "name": "linux-hardened-4.14.282-hardened1.patch",
- "sha256": "0f7av5llr1ccx0k6z2p2spaqk4jfaw9555gf59303zgxsvakavmi",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.282-hardened1/linux-hardened-4.14.282-hardened1.patch"
+ "name": "linux-hardened-4.14.283-hardened1.patch",
+ "sha256": "07827a7wigdp2wml770gc0mmzmcmqf9mnry9xbsxpkgbs91ng6lp",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.283-hardened1/linux-hardened-4.14.283-hardened1.patch"
},
- "sha256": "18sp2qvk8dkjrlxwf4d470282m9wyvhajvyys9vs94rh1i3whdv6",
- "version": "4.14.282"
+ "sha256": "191gybhnck4mh9yjzwgv1crrbxjc90p12bcif721rbs6xzszmxzh",
+ "version": "4.14.283"
},
"4.19": {
"patch": {
"extra": "-hardened1",
- "name": "linux-hardened-4.19.246-hardened1.patch",
- "sha256": "00827r0hiiia95z4nwvbqi1jxj5bzh8hna3d4p08gj2pvq5rwvxk",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.246-hardened1/linux-hardened-4.19.246-hardened1.patch"
+ "name": "linux-hardened-4.19.247-hardened1.patch",
+ "sha256": "1m7289bljbki2wiy6458v13l8wvslqgqhajcp735j50psi6jr6dp",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.247-hardened1/linux-hardened-4.19.247-hardened1.patch"
},
- "sha256": "0fmsglkvdgdmrkm53vyi9d4hvdl4py9qn1z0mni224n96rd2zb80",
- "version": "4.19.246"
+ "sha256": "136gmsmvgb2nid4by2ld003w06lsr7hgn9ajx0wfziag7pfnjsv2",
+ "version": "4.19.247"
},
"5.10": {
"patch": {
"extra": "-hardened1",
- "name": "linux-hardened-5.10.121-hardened1.patch",
- "sha256": "1a7mvfnm15ci81129mpvh3gn6w75bq0i1ydv02zyngk9cz5mgjc1",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.121-hardened1/linux-hardened-5.10.121-hardened1.patch"
+ "name": "linux-hardened-5.10.122-hardened1.patch",
+ "sha256": "1mb10f3kfncgpwlygvnlvjy3cjlgjzbc5lp73wgjz1nzqjfdjrlp",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.122-hardened1/linux-hardened-5.10.122-hardened1.patch"
},
- "sha256": "1iljaaiwqg30rqb9zxrxc4l1p56q75jf0zvsrmn67z2a12sffi4h",
- "version": "5.10.121"
+ "sha256": "0h0gfi3p1dd4p8xxklrl8sc3rv4xd08q7nv0i4m166w8188v62wj",
+ "version": "5.10.122"
},
"5.15": {
"patch": {
"extra": "-hardened1",
- "name": "linux-hardened-5.15.46-hardened1.patch",
- "sha256": "1ndvrr98mn40705dsfkyda9ny5r273bl9f6n1xb5ndx34j396wrh",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.46-hardened1/linux-hardened-5.15.46-hardened1.patch"
+ "name": "linux-hardened-5.15.47-hardened1.patch",
+ "sha256": "0bpzk0l4kcfhqinh3rpl6wv70lhw9c304zgw2qbw0fa76mqfwgs8",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.47-hardened1/linux-hardened-5.15.47-hardened1.patch"
},
- "sha256": "0srp0wypl24gf5yz91mpk1c2kllabq6wvby1wqrrbdwvfx35figb",
- "version": "5.15.46"
+ "sha256": "1700js21yimx8rz4bsglszry564l2ycmmcr36rdqspzbmlx5w8wb",
+ "version": "5.15.47"
},
"5.17": {
"patch": {
"extra": "-hardened1",
- "name": "linux-hardened-5.17.14-hardened1.patch",
- "sha256": "017dq8ngg3mxnfffjkf1knkzii8hsf1gsi65zla34n7kjyajlchq",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.17.14-hardened1/linux-hardened-5.17.14-hardened1.patch"
+ "name": "linux-hardened-5.17.15-hardened1.patch",
+ "sha256": "053zgg464rb8ca92hkzxqbffapmj0zs296af354b7jkgfpb5xzr1",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.17.15-hardened1/linux-hardened-5.17.15-hardened1.patch"
},
- "sha256": "0r2skbgxzw42cn29mr7i9w7fczzxhc1lx3xvri44ljjyfdqn7r0b",
- "version": "5.17.14"
+ "sha256": "0a5n1lb43nhnhwjwclkk3dqp2nxsx5ny7zfl8idvzshf94m9472a",
+ "version": "5.17.15"
},
"5.18": {
"patch": {
@@ -62,11 +62,11 @@
"5.4": {
"patch": {
"extra": "-hardened1",
- "name": "linux-hardened-5.4.197-hardened1.patch",
- "sha256": "0kqfviyx5aigadm051y9xkbyscnn9f92zwqxkjkxhpn0y684i7n5",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.197-hardened1/linux-hardened-5.4.197-hardened1.patch"
+ "name": "linux-hardened-5.4.198-hardened1.patch",
+ "sha256": "0srx8kfapa8ahbqajwd8dir49l4rs0ijz3k3nrgvb2jjlrg1m4dd",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.198-hardened1/linux-hardened-5.4.198-hardened1.patch"
},
- "sha256": "1a1nzrx873vwlpm018l6rk19yh59badvwsknw3chbkbhzjrigbf2",
- "version": "5.4.197"
+ "sha256": "0wvscr5wia2xdiqfxxdwl8kxf1s085qdj5h4423mraj7dh6l0ihh",
+ "version": "5.4.198"
}
}
diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix
index 4ee7bae77633..459816f2aa2c 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.14.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "4.14.282";
+ version = "4.14.283";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "18sp2qvk8dkjrlxwf4d470282m9wyvhajvyys9vs94rh1i3whdv6";
+ sha256 = "191gybhnck4mh9yjzwgv1crrbxjc90p12bcif721rbs6xzszmxzh";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix
index 2c34b151031a..f978b45c221f 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "4.19.246";
+ version = "4.19.247";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "0fmsglkvdgdmrkm53vyi9d4hvdl4py9qn1z0mni224n96rd2zb80";
+ sha256 = "136gmsmvgb2nid4by2ld003w06lsr7hgn9ajx0wfziag7pfnjsv2";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-4.9.nix b/pkgs/os-specific/linux/kernel/linux-4.9.nix
index e55a187208f1..ee4ab69b9f75 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.9.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.9.nix
@@ -1,12 +1,12 @@
{ buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args:
buildLinux (args // rec {
- version = "4.9.317";
+ version = "4.9.318";
extraMeta.branch = "4.9";
extraMeta.broken = stdenv.isAarch64;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "06qdqcplslnp1ncaqvp5yjr294rz3x4qrxnv522v76awj6dkd8vy";
+ sha256 = "09czsc0ynyw068yczs9qx4cliqmrh5hvz93c77lhh014wn02pba4";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-5.10.nix b/pkgs/os-specific/linux/kernel/linux-5.10.nix
index 5b28b814c00a..61d3b9e6eb33 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.10.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.10.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.10.121";
+ version = "5.10.122";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "1iljaaiwqg30rqb9zxrxc4l1p56q75jf0zvsrmn67z2a12sffi4h";
+ sha256 = "0h0gfi3p1dd4p8xxklrl8sc3rv4xd08q7nv0i4m166w8188v62wj";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-5.15.nix b/pkgs/os-specific/linux/kernel/linux-5.15.nix
index af9deb63c34b..62aefff81f5a 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.15.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.15.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.15.46";
+ version = "5.15.47";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -15,6 +15,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "0srp0wypl24gf5yz91mpk1c2kllabq6wvby1wqrrbdwvfx35figb";
+ sha256 = "1700js21yimx8rz4bsglszry564l2ycmmcr36rdqspzbmlx5w8wb";
};
} // (args.argsOverride or { }))
diff --git a/pkgs/os-specific/linux/kernel/linux-5.17.nix b/pkgs/os-specific/linux/kernel/linux-5.17.nix
index b4eea2a18c9e..6e4c5f6de14a 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.17.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.17.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.17.14";
+ version = "5.17.15";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "0r2skbgxzw42cn29mr7i9w7fczzxhc1lx3xvri44ljjyfdqn7r0b";
+ sha256 = "0a5n1lb43nhnhwjwclkk3dqp2nxsx5ny7zfl8idvzshf94m9472a";
};
} // (args.argsOverride or { }))
diff --git a/pkgs/os-specific/linux/kernel/linux-5.18.nix b/pkgs/os-specific/linux/kernel/linux-5.18.nix
index a4d889b3e919..58b87840c007 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.18.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.18.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.18.3";
+ version = "5.18.4";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "1sngy576db1zl2284kd0j8ds4biln0q98wnywirzsg3c0w2v8367";
+ sha256 = "1pcjjiwal8jr07n5bzg6clcmm20gvmvqgxl8k46npibrdx3r6wab";
};
} // (args.argsOverride or { }))
diff --git a/pkgs/os-specific/linux/kernel/linux-5.4.nix b/pkgs/os-specific/linux/kernel/linux-5.4.nix
index 0fa70aaa0869..dbc350e45559 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.4.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.4.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.4.197";
+ version = "5.4.198";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "1a1nzrx873vwlpm018l6rk19yh59badvwsknw3chbkbhzjrigbf2";
+ sha256 = "0wvscr5wia2xdiqfxxdwl8kxf1s085qdj5h4423mraj7dh6l0ihh";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/system76-io/default.nix b/pkgs/os-specific/linux/system76-io/default.nix
index fb697430f61c..ab8c422d2da3 100644
--- a/pkgs/os-specific/linux/system76-io/default.nix
+++ b/pkgs/os-specific/linux/system76-io/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, kernel }:
+{ lib, stdenv, fetchFromGitHub, kernel, fetchpatch }:
let
version = "1.0.1";
sha256 = "0qkgkkjy1isv6ws6hrcal75dxjz98rpnvqbm7agdcc6yv0c17wwh";
@@ -15,6 +15,19 @@ stdenv.mkDerivation {
inherit sha256;
};
+ patches = [
+ (fetchpatch {
+ name = "Fix_GCC_declaration-after-statement_error.patch";
+ url = "https://patch-diff.githubusercontent.com/raw/pop-os/system76-io-dkms/pull/5.patch";
+ sha256 = "sha256-G8SM5tdNbeLuwigmo1HKLN9o16WPpowLXxfM7Xi4aRI=";
+ })
+ (fetchpatch {
+ name = "Fix_GCC_unused-function_error.patch";
+ url = "https://patch-diff.githubusercontent.com/raw/pop-os/system76-io-dkms/pull/6.patch";
+ sha256 = "sha256-vCXEzszmXa+wmI84oR8WduN4WnLTZA3M4GX+Jc4p/5o=";
+ })
+ ];
+
hardeningDisable = [ "pic" ];
nativeBuildInputs = kernel.moduleBuildDependencies;
diff --git a/pkgs/servers/adguardhome/default.nix b/pkgs/servers/adguardhome/default.nix
index dbf9e14ebc67..b193fd2cfdfe 100644
--- a/pkgs/servers/adguardhome/default.nix
+++ b/pkgs/servers/adguardhome/default.nix
@@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
description = "Network-wide ads & trackers blocking DNS server";
platforms = builtins.attrNames sources;
maintainers = with maintainers; [ numkem iagoq ];
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.gpl3Only;
};
}
diff --git a/pkgs/servers/dns/pdns-recursor/default.nix b/pkgs/servers/dns/pdns-recursor/default.nix
index d244b2920ba8..fedec6213f04 100644
--- a/pkgs/servers/dns/pdns-recursor/default.nix
+++ b/pkgs/servers/dns/pdns-recursor/default.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
pname = "pdns-recursor";
- version = "4.6.2";
+ version = "4.7.0";
src = fetchurl {
url = "https://downloads.powerdns.com/releases/pdns-recursor-${version}.tar.bz2";
- sha256 = "sha256-2mSYUHOf3XuvLfZFrMl3UszTkJc7VrjiUXHqew0lrSA=";
+ sha256 = "1329ycxavhkx963q0c6rqyzlg0689v5rrmjlydiw6px324djm1z4";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/servers/hashi-ui/default.nix b/pkgs/servers/hashi-ui/default.nix
index d49d18c39019..0fad3eb2648b 100644
--- a/pkgs/servers/hashi-ui/default.nix
+++ b/pkgs/servers/hashi-ui/default.nix
@@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
description = "A modern user interface for hashicorp Consul & Nomad";
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ numkem ];
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.mit;
};
}
diff --git a/pkgs/servers/hqplayerd/default.nix b/pkgs/servers/hqplayerd/default.nix
index fb6194eaab3d..3c4a609b8b5d 100644
--- a/pkgs/servers/hqplayerd/default.nix
+++ b/pkgs/servers/hqplayerd/default.nix
@@ -109,6 +109,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://www.signalyst.com/custom.html";
description = "High-end upsampling multichannel software embedded HD-audio player";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ lovesegfault ];
diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix
index 7a0297757bae..0cc0a570118a 100644
--- a/pkgs/servers/matrix-synapse/default.nix
+++ b/pkgs/servers/matrix-synapse/default.nix
@@ -11,11 +11,11 @@ in
with python3.pkgs;
buildPythonApplication rec {
pname = "matrix-synapse";
- version = "1.60.0";
+ version = "1.61.0";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-sR+DZhpAkPpurPs6jSBVphYp12z8qulcQSl3ngcCrcs=";
+ sha256 = "sha256-tEYvbR7uQe7WLtkYt0xXFGLu8w4q8bhf9HqDbGXF+T8=";
};
buildInputs = [ openssl ];
diff --git a/pkgs/servers/mattermost/default.nix b/pkgs/servers/mattermost/default.nix
index 99a949116ce0..55ea22500c56 100644
--- a/pkgs/servers/mattermost/default.nix
+++ b/pkgs/servers/mattermost/default.nix
@@ -90,6 +90,10 @@ in
meta = with lib; {
description = "Open-source, self-hosted Slack-alternative";
homepage = "https://www.mattermost.org";
+ sourceProvenance = with sourceTypes; [
+ fromSource
+ binaryNativeCode # mattermost-webapp
+ ];
license = with licenses; [ agpl3 asl20 ];
maintainers = with maintainers; [ fpletz ryantm numinit ];
platforms = platforms.unix;
diff --git a/pkgs/servers/meteor/default.nix b/pkgs/servers/meteor/default.nix
index fb9221b93964..306eeaa7a653 100644
--- a/pkgs/servers/meteor/default.nix
+++ b/pkgs/servers/meteor/default.nix
@@ -94,6 +94,7 @@ stdenv.mkDerivation {
meta = with lib; {
description = "Complete open source platform for building web and mobile apps in pure JavaScript";
homepage = "https://www.meteor.com/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.mit;
platforms = builtins.attrNames srcs;
maintainers = with maintainers; [ cstrahan ];
diff --git a/pkgs/servers/misc/navidrome/default.nix b/pkgs/servers/misc/navidrome/default.nix
index ea1cae99dd99..d05b7fc2af6b 100644
--- a/pkgs/servers/misc/navidrome/default.nix
+++ b/pkgs/servers/misc/navidrome/default.nix
@@ -42,6 +42,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Navidrome Music Server and Streamer compatible with Subsonic/Airsonic";
homepage = "https://www.navidrome.org/";
+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = licenses.gpl3Only;
platforms = [ "x86_64-linux" "aarch64-linux" ];
maintainers = with maintainers; [ aciceri ];
diff --git a/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix b/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix
index 430da1ea4d08..1e2f0a472d32 100644
--- a/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix
@@ -2,17 +2,17 @@
buildGoModule rec {
pname = "blackbox_exporter";
- version = "0.20.0";
+ version = "0.21.0";
rev = "v${version}";
src = fetchFromGitHub {
inherit rev;
owner = "prometheus";
repo = "blackbox_exporter";
- sha256 = "sha256-Y3HdFIChkQVooxy2I2Gbqw3WLHsI4Zm+osHTzFluRZA=";
+ sha256 = "sha256-u7MCZnzzEoPSk/SVlFRSc47YikQJ0lIxE4wchSN+aec=";
};
- vendorSha256 = "sha256-KFLR0In4txQQp5dt8P0yAFtf82b4SBq2xMnlz+vMuuU=";
+ vendorSha256 = "sha256-7V5WEEy/Rz1QjscPD2Kz+viGkKQsWjs+8QN/3W7D+Ik=";
# dns-lookup is performed for the tests
doCheck = false;
diff --git a/pkgs/servers/networkaudiod/default.nix b/pkgs/servers/networkaudiod/default.nix
index fcf713d9fe88..5a09c7933d14 100644
--- a/pkgs/servers/networkaudiod/default.nix
+++ b/pkgs/servers/networkaudiod/default.nix
@@ -64,6 +64,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://www.signalyst.com/index.html";
description = "Network Audio Adapter daemon";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ lovesegfault ];
platforms = platforms.linux;
diff --git a/pkgs/servers/plex/raw.nix b/pkgs/servers/plex/raw.nix
index 658a3a6f2c36..fd6adfe65a98 100644
--- a/pkgs/servers/plex/raw.nix
+++ b/pkgs/servers/plex/raw.nix
@@ -79,6 +79,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://plex.tv/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = [ "x86_64-linux" "aarch64-linux" ];
maintainers = with maintainers; [
diff --git a/pkgs/servers/roon-bridge/default.nix b/pkgs/servers/roon-bridge/default.nix
index 8b4d81437e2d..5d4393bae566 100644
--- a/pkgs/servers/roon-bridge/default.nix
+++ b/pkgs/servers/roon-bridge/default.nix
@@ -76,6 +76,7 @@ stdenv.mkDerivation rec {
description = "The music player for music lovers";
changelog = "https://community.roonlabs.com/c/roon/software-release-notes/18";
homepage = "https://roonlabs.com";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ lovesegfault ];
platforms = [ "aarch64-linux" "x86_64-linux" ];
diff --git a/pkgs/servers/roon-server/default.nix b/pkgs/servers/roon-server/default.nix
index 206490e49f2a..358e55291ac5 100644
--- a/pkgs/servers/roon-server/default.nix
+++ b/pkgs/servers/roon-server/default.nix
@@ -91,6 +91,7 @@ stdenv.mkDerivation rec {
description = "The music player for music lovers";
changelog = "https://community.roonlabs.com/c/roon/software-release-notes/18";
homepage = "https://roonlabs.com";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ lovesegfault steell ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/servers/sickbeard/sickgear.nix b/pkgs/servers/sickbeard/sickgear.nix
index 4c2048000a64..c1c3c6dc05bf 100644
--- a/pkgs/servers/sickbeard/sickgear.nix
+++ b/pkgs/servers/sickbeard/sickgear.nix
@@ -4,13 +4,13 @@ let
pythonEnv = python3.withPackages(ps: with ps; [ cheetah3 ]);
in stdenv.mkDerivation rec {
pname = "sickgear";
- version = "0.25.31";
+ version = "0.25.35";
src = fetchFromGitHub {
owner = "SickGear";
repo = "SickGear";
rev = "release_${version}";
- sha256 = "11l537c7d6mrbvn24bfkzydb96mwzhr8z5rl6imiphjzr0f8qyyp";
+ sha256 = "0hc43wfa256nkjm7bvsr6b7xsyilm1ks4x16kvpprqmj1symlkz3";
};
dontBuild = true;
diff --git a/pkgs/servers/unifi-video/default.nix b/pkgs/servers/unifi-video/default.nix
index 4c55d5102591..45a9b5c6fb61 100755
--- a/pkgs/servers/unifi-video/default.nix
+++ b/pkgs/servers/unifi-video/default.nix
@@ -53,6 +53,10 @@ stdenv.mkDerivation rec {
'';
homepage = "https://www.ui.com";
downloadPage = "https://www.ui.com/download/unifi-video/";
+ sourceProvenance = with sourceTypes; [
+ binaryBytecode
+ binaryNativeCode
+ ];
license = licenses.unfree;
maintainers = [ maintainers.rsynnest ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/servers/urserver/default.nix b/pkgs/servers/urserver/default.nix
index 392277eeedc3..c84d40b69c22 100644
--- a/pkgs/servers/urserver/default.nix
+++ b/pkgs/servers/urserver/default.nix
@@ -38,6 +38,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://www.unifiedremote.com/";
description = "The one-and-only remote for your computer";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ sfrijters ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/shells/zsh/oh-my-zsh/default.nix b/pkgs/shells/zsh/oh-my-zsh/default.nix
index 3b41ba902a5c..2b2126f2d29b 100644
--- a/pkgs/shells/zsh/oh-my-zsh/default.nix
+++ b/pkgs/shells/zsh/oh-my-zsh/default.nix
@@ -5,15 +5,15 @@
, git, nix, nixfmt, jq, coreutils, gnused, curl, cacert, bash }:
stdenv.mkDerivation rec {
- version = "2022-06-12";
+ version = "2022-06-15";
pname = "oh-my-zsh";
- rev = "50550c70eaa36e79fdf380bdc4ddad4a1ad581a0";
+ rev = "8168ec0174e7e3212be20ecc74810155772abff1";
src = fetchFromGitHub {
inherit rev;
owner = "ohmyzsh";
repo = "ohmyzsh";
- sha256 = "lZ63wtvrF5DMXXGE6GC6T4oEpN0G47Pvhas5IZ+vzAA=";
+ sha256 = "KbxVZ/sHwZEm8EzCR8ZOJdhiYnRyMLuUetBRxuj5izU=";
};
strictDeps = true;
diff --git a/pkgs/tools/X11/sx/default.nix b/pkgs/tools/X11/sx/default.nix
index c03d4443fcf0..1b04bb8876d3 100644
--- a/pkgs/tools/X11/sx/default.nix
+++ b/pkgs/tools/X11/sx/default.nix
@@ -1,6 +1,13 @@
-{ coreutils, fetchFromGitHub, lib, makeWrapper, stdenv, util-linux, xauth, xorgserver }:
+{ lib
+, bash
+, coreutils
+, fetchFromGitHub
+, resholve
+, xauth
+, xorgserver
+}:
-stdenv.mkDerivation rec {
+resholve.mkDerivation rec {
pname = "sx";
version = "2.1.7";
@@ -11,20 +18,28 @@ stdenv.mkDerivation rec {
sha256 = "0xv15m30nhcknasqiybj5wwf7l91q4a4jf6xind8x5x00c6br6nl";
};
- nativeBuildInputs = [ makeWrapper ];
-
makeFlags = [ "PREFIX=$(out)" ];
- postInstall = ''
- wrapProgram $out/bin/sx \
- --prefix PATH : ${lib.makeBinPath [ coreutils util-linux xorgserver xauth ]}
- '';
+ solutions = {
+ sx = {
+ scripts = [ "bin/sx" ];
+ interpreter = "${bash}/bin/sh";
+ inputs = [
+ coreutils
+ xauth
+ xorgserver
+ ];
+ execer = [
+ "cannot:${xorgserver}/bin/Xorg"
+ ];
+ };
+ };
meta = with lib; {
description = "Simple alternative to both xinit and startx for starting a Xorg server";
homepage = "https://github.com/earnestly/sx";
license = licenses.mit;
platforms = platforms.linux;
- maintainers = with maintainers; [ figsoda ];
+ maintainers = with maintainers; [ figsoda thiagokokada ];
};
}
diff --git a/pkgs/tools/admin/bluemix-cli/default.nix b/pkgs/tools/admin/bluemix-cli/default.nix
index b0a5af35def5..ebfcd17064ed 100644
--- a/pkgs/tools/admin/bluemix-cli/default.nix
+++ b/pkgs/tools/admin/bluemix-cli/default.nix
@@ -32,6 +32,7 @@ stdenv.mkDerivation rec {
description = "Administration CLI for IBM BlueMix";
homepage = "https://console.bluemix.net/docs/cli/index.html";
downloadPage = "https://console.bluemix.net/docs/cli/reference/bluemix_cli/download_cli.html#download_install";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = [ maintainers.tazjin maintainers.jensbin ];
platforms = [ "x86_64-linux" "i686-linux" ];
diff --git a/pkgs/tools/admin/google-cloud-sdk/default.nix b/pkgs/tools/admin/google-cloud-sdk/default.nix
index f0b0c042cbe4..c1627ae18b86 100644
--- a/pkgs/tools/admin/google-cloud-sdk/default.nix
+++ b/pkgs/tools/admin/google-cloud-sdk/default.nix
@@ -108,6 +108,10 @@ in stdenv.mkDerivation rec {
meta = with lib; {
description = "Tools for the google cloud platform";
longDescription = "The Google Cloud SDK. This package has the programs: gcloud, gsutil, and bq";
+ sourceProvenance = with sourceTypes; [
+ fromSource
+ binaryNativeCode # anthoscli and possibly more
+ ];
# This package contains vendored dependencies. All have free licenses.
license = licenses.free;
homepage = "https://cloud.google.com/sdk/";
diff --git a/pkgs/tools/admin/nomachine-client/default.nix b/pkgs/tools/admin/nomachine-client/default.nix
index 204fc2be5899..7e8ff1d08757 100644
--- a/pkgs/tools/admin/nomachine-client/default.nix
+++ b/pkgs/tools/admin/nomachine-client/default.nix
@@ -81,6 +81,7 @@ in
meta = with lib; {
description = "NoMachine remote desktop client (nxplayer)";
homepage = "https://www.nomachine.com/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = {
fullName = "NoMachine 7 End-User License Agreement";
url = "https://www.nomachine.com/licensing-7";
diff --git a/pkgs/tools/admin/pulumi/default.nix b/pkgs/tools/admin/pulumi/default.nix
index 89fee3e61605..02e1bb29c01b 100644
--- a/pkgs/tools/admin/pulumi/default.nix
+++ b/pkgs/tools/admin/pulumi/default.nix
@@ -26,6 +26,7 @@ in stdenv.mkDerivation {
meta = {
homepage = "https://pulumi.io/";
description = "Pulumi is a cloud development platform that makes creating cloud programs easy and productive";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = with licenses; [ asl20 ];
platforms = builtins.attrNames data.pulumiPkgs;
maintainers = with maintainers; [
diff --git a/pkgs/tools/admin/realvnc-vnc-viewer/default.nix b/pkgs/tools/admin/realvnc-vnc-viewer/default.nix
index 4f990c538086..b1d22d5ee3cb 100644
--- a/pkgs/tools/admin/realvnc-vnc-viewer/default.nix
+++ b/pkgs/tools/admin/realvnc-vnc-viewer/default.nix
@@ -40,6 +40,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "VNC remote desktop client software by RealVNC";
homepage = "https://www.realvnc.com/en/connect/download/viewer/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = {
fullName = "VNC Connect End User License Agreement";
url = "https://static.realvnc.com/media/documents/LICENSE-4.0a_en.pdf";
diff --git a/pkgs/tools/admin/winbox/default.nix b/pkgs/tools/admin/winbox/default.nix
index ae55eb4ed69e..24f28dbd2714 100644
--- a/pkgs/tools/admin/winbox/default.nix
+++ b/pkgs/tools/admin/winbox/default.nix
@@ -70,6 +70,7 @@ symlinkJoin {
homepage = "https://mikrotik.com";
downloadPage = "https://mikrotik.com/download";
changelog = "https://wiki.mikrotik.com/wiki/Winbox_changelog";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ yrd ];
};
diff --git a/pkgs/tools/archivers/rar/default.nix b/pkgs/tools/archivers/rar/default.nix
index 6f47992b512c..7a5fd320c948 100644
--- a/pkgs/tools/archivers/rar/default.nix
+++ b/pkgs/tools/archivers/rar/default.nix
@@ -58,6 +58,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Utility for RAR archives";
homepage = "https://www.rarlab.com/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ thiagokokada ];
platforms = with platforms; linux ++ darwin;
diff --git a/pkgs/tools/audio/mpd-discord-rpc/default.nix b/pkgs/tools/audio/mpd-discord-rpc/default.nix
index f7cdf52f44a2..1565ac040c3b 100644
--- a/pkgs/tools/audio/mpd-discord-rpc/default.nix
+++ b/pkgs/tools/audio/mpd-discord-rpc/default.nix
@@ -2,20 +2,26 @@
, lib
, rustPlatform
, fetchFromGitHub
+, pkg-config
+, openssl
}:
rustPlatform.buildRustPackage rec {
pname = "mpd-discord-rpc";
- version = "1.4.1";
+ version = "1.5.1";
src = fetchFromGitHub {
owner = "JakeStanger";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-CdgR9G598LmxA9lhY6yppP3ZZUhTqgMcWccEhSuCcJQ=";
+ sha256 = "sha256-jwsfUepGJ7IB1H6Er1EszYkkYIOSyuFvTX7NF9UhhGo=";
};
- cargoSha256 = "sha256-WhlVWQCUGP+K9md0yp6ZD6mGYMso1fUYKDuXXrC2FeI=";
+ cargoSha256 = "sha256-4MUfjXWDZmfsUzvWo8I2fgzm4jOfX1ZgHYqUmxXJ/BU=";
+
+ nativeBuildInputs = [ pkg-config ];
+
+ buildInputs = [ openssl ];
meta = with lib; {
broken = stdenv.isDarwin;
diff --git a/pkgs/tools/backup/tsm-client/default.nix b/pkgs/tools/backup/tsm-client/default.nix
index 441b8bdd005d..eb80f33bcd7a 100644
--- a/pkgs/tools/backup/tsm-client/default.nix
+++ b/pkgs/tools/backup/tsm-client/default.nix
@@ -72,6 +72,7 @@ let
downloadPage = "https://www.ibm.com/support/pages/ibm-spectrum-protect-downloads-latest-fix-packs-and-interim-fixes";
platforms = [ "x86_64-linux" ];
mainProgram = "dsmc";
+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = lib.licenses.unfree;
maintainers = [ lib.maintainers.yarny ];
description = "IBM Spectrum Protect (Tivoli Storage Manager) CLI and API";
diff --git a/pkgs/tools/graphics/flam3/default.nix b/pkgs/tools/graphics/flam3/default.nix
index 01e3693259a5..4eb0bc67c3f0 100644
--- a/pkgs/tools/graphics/flam3/default.nix
+++ b/pkgs/tools/graphics/flam3/default.nix
@@ -37,6 +37,6 @@ stdenv.mkDerivation rec {
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ AndersonTorres ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/inputmethods/droidmote/default.nix b/pkgs/tools/inputmethods/droidmote/default.nix
index 24c2bcee8cdc..017c548f84d3 100644
--- a/pkgs/tools/inputmethods/droidmote/default.nix
+++ b/pkgs/tools/inputmethods/droidmote/default.nix
@@ -54,6 +54,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Control your computer from your couch";
homepage = "https://www.videomap.it/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ atila ];
platforms = lib.attrNames srcs;
diff --git a/pkgs/tools/misc/archi/default.nix b/pkgs/tools/misc/archi/default.nix
index 8d35ff717f5f..14465cc3a945 100644
--- a/pkgs/tools/misc/archi/default.nix
+++ b/pkgs/tools/misc/archi/default.nix
@@ -58,6 +58,7 @@ stdenv.mkDerivation rec {
models and sketches.
'';
homepage = "https://www.archimatetool.com/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ earldouglas ];
diff --git a/pkgs/tools/misc/dt-shell-color-scripts/default.nix b/pkgs/tools/misc/dt-shell-color-scripts/default.nix
new file mode 100644
index 000000000000..6a0b3da4410f
--- /dev/null
+++ b/pkgs/tools/misc/dt-shell-color-scripts/default.nix
@@ -0,0 +1,41 @@
+{ stdenv
+, lib
+, fetchFromGitLab
+, runtimeShell
+, makeWrapper
+}:
+
+stdenv.mkDerivation {
+ pname = "dt-shell-color-scripts";
+ version = "unstable-2022-02-22";
+
+ src = fetchFromGitLab {
+ owner = "dwt1";
+ repo = "shell-color-scripts";
+ rev = "fcd013ea2e1ff80e01adbcea9d0eaf9c73db94c0";
+ sha256 = "sha256-bd3NBf99rCiADUKQb6fzCBDaKBmYaZHcO4qokm/39do=";
+ };
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ installPhase = ''
+ runHook preInstall
+ patchShebangs ./colorscript.sh
+ patchShebangs ./colorscripts
+ mkdir -p $out/bin
+ mkdir -p $out/opt/shell-color-scripts/
+ cp -r colorscripts $out/opt/shell-color-scripts/colorscripts
+ chmod +x colorscript.sh
+ cp colorscript.sh $out/bin/colorscript
+ substituteInPlace $out/bin/colorscript \
+ --replace "/opt/shell-color-scripts/colorscripts" "$out/opt/shell-color-scripts/colorscripts"
+ runHook postInstall
+ '';
+
+ meta = with lib; {
+ description = "A collection of shell color scripts collected by dt (Derek Taylor)";
+ homepage = "https://gitlab.com/dwt1/shell-color-scripts";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ drzoidberg ];
+ };
+}
diff --git a/pkgs/tools/misc/gams/default.nix b/pkgs/tools/misc/gams/default.nix
index c6bd2c53844c..be71618aae20 100644
--- a/pkgs/tools/misc/gams/default.nix
+++ b/pkgs/tools/misc/gams/default.nix
@@ -43,6 +43,7 @@ stdenv.mkDerivation rec {
GAMS is designed for modeling and solving linear, nonlinear, and mixed-integer optimization problems.
'';
homepage = "https://www.gams.com/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = [ maintainers.Scriptkiddi ];
platforms = platforms.linux;
diff --git a/pkgs/tools/misc/hakuneko/default.nix b/pkgs/tools/misc/hakuneko/default.nix
index eb6101f6498a..128cddd8c682 100644
--- a/pkgs/tools/misc/hakuneko/default.nix
+++ b/pkgs/tools/misc/hakuneko/default.nix
@@ -72,6 +72,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Manga & Anime Downloader";
homepage = "https://sourceforge.net/projects/hakuneko/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unlicense;
maintainers = with maintainers; [
nloomans
diff --git a/pkgs/tools/misc/kisslicer/default.nix b/pkgs/tools/misc/kisslicer/default.nix
index f80e15b3b3c2..c016c0b88f4b 100644
--- a/pkgs/tools/misc/kisslicer/default.nix
+++ b/pkgs/tools/misc/kisslicer/default.nix
@@ -53,6 +53,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Convert STL files into Gcode";
homepage = "http://www.kisslicer.com";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = [ maintainers.cransom ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/tools/misc/mongodb-compass/default.nix b/pkgs/tools/misc/mongodb-compass/default.nix
index 5a86018fc2ab..6f9999c47c0a 100644
--- a/pkgs/tools/misc/mongodb-compass/default.nix
+++ b/pkgs/tools/misc/mongodb-compass/default.nix
@@ -129,6 +129,7 @@ in stdenv.mkDerivation {
description = "The GUI for MongoDB";
maintainers = with maintainers; [ bryanasdev000 ];
homepage = "https://www.mongodb.com/products/compass";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.sspl;
platforms = [ "x86_64-linux" ];
};
diff --git a/pkgs/tools/misc/mutagen/default.nix b/pkgs/tools/misc/mutagen/default.nix
index f853ec39f60b..9ec6dbf3147c 100644
--- a/pkgs/tools/misc/mutagen/default.nix
+++ b/pkgs/tools/misc/mutagen/default.nix
@@ -39,6 +39,7 @@ buildGo118Module rec {
homepage = "https://mutagen.io/";
changelog = "https://github.com/mutagen-io/mutagen/releases/tag/v${version}";
maintainers = [ maintainers.marsam ];
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.mit;
};
}
diff --git a/pkgs/tools/misc/sam-ba/default.nix b/pkgs/tools/misc/sam-ba/default.nix
index 291063f43cb1..6a383cd4fc4e 100644
--- a/pkgs/tools/misc/sam-ba/default.nix
+++ b/pkgs/tools/misc/sam-ba/default.nix
@@ -39,6 +39,7 @@ stdenv.mkDerivation rec {
'';
# Alternatively: https://www.microchip.com/en-us/development-tool/SAM-BA-In-system-Programmer
homepage = "http://www.at91.com/linux4sam/bin/view/Linux4SAM/SoftwareTools";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = lib.licenses.gpl2Only;
platforms = [ "x86_64-linux" ];
maintainers = [ maintainers.bjornfor ];
diff --git a/pkgs/tools/misc/staruml/default.nix b/pkgs/tools/misc/staruml/default.nix
index 1e0b50d6f85b..d414d36070bd 100644
--- a/pkgs/tools/misc/staruml/default.nix
+++ b/pkgs/tools/misc/staruml/default.nix
@@ -70,6 +70,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A sophisticated software modeler";
homepage = "https://staruml.io/";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/tools/misc/vtm/default.nix b/pkgs/tools/misc/vtm/default.nix
index 5066145b72af..a2a52a260b60 100644
--- a/pkgs/tools/misc/vtm/default.nix
+++ b/pkgs/tools/misc/vtm/default.nix
@@ -3,15 +3,16 @@
, fetchFromGitHub
, cmake
}:
+
stdenv.mkDerivation rec {
pname = "vtm";
- version = "0.6.0";
+ version = "0.7.6";
src = fetchFromGitHub {
owner = "netxs-group";
repo = "vtm";
rev = "v${version}";
- sha256 = "sha256-Z6PSx7TwarQx0Mc3fSRPwV7yIPJK3xtW4k0LJ6RPYRY=";
+ sha256 = "sha256-YAS/HcgtA4Ms8EB7RRCg6ElBL4aI/FqXjqymHy/voRs=";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/tools/misc/xflux/default.nix b/pkgs/tools/misc/xflux/default.nix
index 54a339f1d775..55a72dc4a734 100644
--- a/pkgs/tools/misc/xflux/default.nix
+++ b/pkgs/tools/misc/xflux/default.nix
@@ -33,6 +33,7 @@ stdenv.mkDerivation {
when the sun rises.
'';
homepage = "https://justgetflux.com/";
+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = lib.licenses.unfree;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.paholg ];
diff --git a/pkgs/tools/networking/boundary/default.nix b/pkgs/tools/networking/boundary/default.nix
index 73f9ce690703..f653159c34d7 100644
--- a/pkgs/tools/networking/boundary/default.nix
+++ b/pkgs/tools/networking/boundary/default.nix
@@ -61,6 +61,7 @@ stdenv.mkDerivation rec {
and resilient. It can run in clouds, on-prem, secure enclaves and more,
and does not require an agent to be installed on every end host.
'';
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.mpl20;
maintainers = with maintainers; [ jk techknowlogick ];
};
diff --git a/pkgs/tools/networking/cloudflare-warp/default.nix b/pkgs/tools/networking/cloudflare-warp/default.nix
index a96b8e005e3b..917274338a2e 100644
--- a/pkgs/tools/networking/cloudflare-warp/default.nix
+++ b/pkgs/tools/networking/cloudflare-warp/default.nix
@@ -41,6 +41,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Replaces the connection between your device and the Internet with a modern, optimized, protocol";
homepage = "https://pkg.cloudflareclient.com/packages/cloudflare-warp";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ wolfangaukang ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/tools/networking/gnirehtet/default.nix b/pkgs/tools/networking/gnirehtet/default.nix
index 123ab3d76eef..d0c5e92236fd 100644
--- a/pkgs/tools/networking/gnirehtet/default.nix
+++ b/pkgs/tools/networking/gnirehtet/default.nix
@@ -43,6 +43,10 @@ rustPlatform.buildRustPackage {
This relies on adb, make sure you have the required permissions/udev rules.
'';
homepage = "https://github.com/Genymobile/gnirehtet";
+ sourceProvenance = with sourceTypes; [
+ fromSource
+ binaryBytecode # gnirehtet.apk
+ ];
license = licenses.asl20;
maintainers = with maintainers; [ symphorien ];
platforms = platforms.unix;
diff --git a/pkgs/tools/networking/networkmanager/default.nix b/pkgs/tools/networking/networkmanager/default.nix
index 5dc59f9590f5..c85d7ef61281 100644
--- a/pkgs/tools/networking/networkmanager/default.nix
+++ b/pkgs/tools/networking/networkmanager/default.nix
@@ -54,11 +54,11 @@ let
in
stdenv.mkDerivation rec {
pname = "networkmanager";
- version = "1.38.0";
+ version = "1.38.2";
src = fetchurl {
url = "mirror://gnome/sources/NetworkManager/${lib.versions.majorMinor version}/NetworkManager-${version}.tar.xz";
- sha256 = "sha256-gqTPB93+sIFnh7Z8D1BYrmxQ1iWcCwVBok41FWBisu8=";
+ sha256 = "sha256-nP/SrcaGUTFt8tL4oJ4XF7sdDC6jic/HIaAQnbmzWCY=";
};
outputs = [ "out" "dev" "devdoc" "man" "doc" ];
diff --git a/pkgs/tools/networking/networkmanager/libnma/default.nix b/pkgs/tools/networking/networkmanager/libnma/default.nix
index a14ba1663d33..4993068d2a51 100644
--- a/pkgs/tools/networking/networkmanager/libnma/default.nix
+++ b/pkgs/tools/networking/networkmanager/libnma/default.nix
@@ -26,13 +26,13 @@
stdenv.mkDerivation rec {
pname = "libnma";
- version = "1.8.38";
+ version = "1.8.40";
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
- sha256 = "Xtk+rhhFb/WopPQIF4we4ZjcjTpGxl+QdbEBkW5k6LQ=";
+ sha256 = "hwp1+NRkHtDZD4Nq6m/1ESJL3pf/1W1git4um1rLKyI=";
};
patches = [
diff --git a/pkgs/tools/networking/ngrok/default.nix b/pkgs/tools/networking/ngrok/default.nix
index 774f2dad456c..f12ae31a541e 100644
--- a/pkgs/tools/networking/ngrok/default.nix
+++ b/pkgs/tools/networking/ngrok/default.nix
@@ -40,6 +40,7 @@ stdenv.mkDerivation {
meta = {
description = "Allows you to expose a web server running on your local machine to the internet";
homepage = "https://ngrok.com/";
+ sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
maintainers = with maintainers; [ bobvanderlinden brodes ];
diff --git a/pkgs/tools/networking/ookla-speedtest/default.nix b/pkgs/tools/networking/ookla-speedtest/default.nix
index c9e58174f85e..2ba9f0cfb2fd 100644
--- a/pkgs/tools/networking/ookla-speedtest/default.nix
+++ b/pkgs/tools/networking/ookla-speedtest/default.nix
@@ -41,6 +41,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Command line internet speedtest tool by Ookla";
homepage = "https://www.speedtest.net/apps/cli";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ kranzes ];
platforms = lib.attrNames srcs;
diff --git a/pkgs/tools/networking/s3gof3r/default.nix b/pkgs/tools/networking/s3gof3r/default.nix
deleted file mode 100644
index 2e3b83840879..000000000000
--- a/pkgs/tools/networking/s3gof3r/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ lib, buildGoPackage, fetchFromGitHub }:
-
-buildGoPackage rec {
- pname = "s3gof3r";
- version = "0.5.0";
-
- goPackagePath = "github.com/rlmcpherson/s3gof3r";
-
- src = fetchFromGitHub {
- owner = "rlmcpherson";
- repo = "s3gof3r";
- rev = "v${version}";
- sha256 = "sha256-88C6c4DRD/4ePTO1+1YiI8ApXWE2uUlr07dDCxGzaoE=";
- };
-
- goDeps = ./deps.nix;
-
- meta = with lib; {
- description = "Fast, concurrent, streaming access to Amazon S3, including gof3r, a CLI";
- homepage = "https://pkg.go.dev/github.com/rlmcpherson/s3gof3r";
- maintainers = with maintainers; [ ];
- mainProgram = "gof3r";
- license = licenses.mit;
- };
-}
diff --git a/pkgs/tools/networking/s3gof3r/deps.nix b/pkgs/tools/networking/s3gof3r/deps.nix
deleted file mode 100644
index 49c5d600be2f..000000000000
--- a/pkgs/tools/networking/s3gof3r/deps.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-[
- {
- goPackagePath = "github.com/jessevdk/go-flags";
- fetch = {
- type = "git";
- url = "https://github.com/jessevdk/go-flags";
- rev = "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539";
- sha256 = "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680";
- };
- }
-]
diff --git a/pkgs/tools/networking/vde2/default.nix b/pkgs/tools/networking/vde2/default.nix
index 31d4f9e3ff57..c14aa8bb3c13 100644
--- a/pkgs/tools/networking/vde2/default.nix
+++ b/pkgs/tools/networking/vde2/default.nix
@@ -1,22 +1,17 @@
-{ lib, stdenv, fetchurl, fetchpatch, openssl, libpcap, python2, withPython ? false }:
+{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, libpcap, wolfssl }:
stdenv.mkDerivation rec {
pname = "vde2";
- version = "2.3.2";
+ version = "2.3.3";
- src = fetchurl {
- url = "mirror://sourceforge/vde/vde2/${version}/vde2-${version}.tar.gz";
- sha256 = "14xga0ib6p1wrv3hkl4sa89yzjxv7f1vfqaxsch87j6scdm59pr2";
+ src = fetchFromGitHub {
+ owner = "virtualsquare";
+ repo = "vde-2";
+ rev = "v${version}";
+ sha256 = "sha256-Yf6QB7j5lYld2XtqhYspK4037lTtimoFc7nCavCP+mU=";
};
- patches = [
- # Fix build with openssl 1.1.0
- (fetchpatch {
- name = "vde_cryptcab-compile-against-openssl-1.1.0.patch";
- url = "https://raw.githubusercontent.com/archlinux/svntogit-packages/15b11be49997fa94b603e366064690b7cc6bce61/trunk/vde_cryptcab-compile-against-openssl-1.1.0.patch";
- sha256 = "07z1yabwigq35mkwzqa934n7vjnjlqz5xfzq8cfj87lgyjjp00qi";
- })
- ] ++ lib.optional stdenv.hostPlatform.isMusl [
+ patches = lib.optional stdenv.hostPlatform.isMusl [
(fetchpatch {
url = "https://git.alpinelinux.org/aports/plain/main/vde2/musl-build-fix.patch?id=ddee2f86a48e087867d4a2c12849b2e3baccc238";
sha256 = "0b5382v541bkxhqylilcy34bh83ag96g71f39m070jzvi84kx8af";
@@ -27,19 +22,9 @@ stdenv.mkDerivation rec {
MACOSX_DEPLOYMENT_TARGET=10.16
'';
- configureFlags = lib.optional (!withPython) "--disable-python";
+ nativeBuildInputs = [ autoreconfHook ];
- buildInputs = [ openssl libpcap ]
- ++ lib.optional withPython python2;
-
- hardeningDisable = [ "format" ];
-
- # Disable parallel build as it fails as:
- # make: *** No rule to make target '../../src/lib/libvdemgmt.la',
- # needed by 'libvdesnmp.la'. Stop.
- # Next release should address it with
- # https://github.com/virtualsquare/vde-2/commit/7dd9ed46d5dca125ca45d679ac9f3acbfb0f9300.patch
- enableParallelBuilding = false;
+ buildInputs = [ libpcap wolfssl ];
meta = with lib; {
homepage = "https://github.com/virtualsquare/vde-2";
diff --git a/pkgs/tools/security/beyond-identity/default.nix b/pkgs/tools/security/beyond-identity/default.nix
index a9e554ff42cc..15a8ab3882c2 100644
--- a/pkgs/tools/security/beyond-identity/default.nix
+++ b/pkgs/tools/security/beyond-identity/default.nix
@@ -11,6 +11,7 @@ let
description = "Passwordless MFA identities for workforces, customers, and developers";
homepage = "https://www.beyondidentity.com";
downloadPage = "https://app.byndid.com/downloads";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ klden ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/tools/security/bitwarden/default.nix b/pkgs/tools/security/bitwarden/default.nix
index 7f3dd2afd815..daaf7c087b20 100644
--- a/pkgs/tools/security/bitwarden/default.nix
+++ b/pkgs/tools/security/bitwarden/default.nix
@@ -65,6 +65,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A secure and free password manager for all of your devices";
homepage = "https://bitwarden.com";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.gpl3;
maintainers = with maintainers; [ kiwi ];
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/tools/security/commix/default.nix b/pkgs/tools/security/commix/default.nix
new file mode 100644
index 000000000000..54444d8e4056
--- /dev/null
+++ b/pkgs/tools/security/commix/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, fetchFromGitHub
+, python3
+}:
+
+python3.pkgs.buildPythonApplication rec {
+ pname = "commix";
+ version = "3.4";
+ format = "setuptools";
+
+ src = fetchFromGitHub {
+ owner = "commixproject";
+ repo = pname;
+ rev = "v${version}";
+ hash = "sha256-JM4NE77LpgsdWhzPe/8K0sQhOSpzDu9usuH7pfQ6dR0=";
+ };
+
+ # Project has no tests
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Automated Command Injection Exploitation Tool";
+ homepage = "https://github.com/commixproject/commix";
+ license = with licenses; [ gpl3Plus ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/security/graphqlmap/default.nix b/pkgs/tools/security/graphqlmap/default.nix
new file mode 100644
index 000000000000..84b72d3b6a16
--- /dev/null
+++ b/pkgs/tools/security/graphqlmap/default.nix
@@ -0,0 +1,35 @@
+{ lib
+, fetchFromGitHub
+, python3
+}:
+
+python3.pkgs.buildPythonApplication rec {
+ pname = "graphqlmap";
+ version = "unstable-2022-01-17";
+ format = "setuptools";
+
+ src = fetchFromGitHub {
+ owner = "swisskyrepo";
+ repo = "GraphQLmap";
+ rev = "98997bd7cf647aac7378b72913241060464749b1";
+ hash = "sha256-lGnhNwtDc8KoPlwJ1p2FYq0NQ8PhSR3HgtluU7uxa/c=";
+ };
+
+ propagatedBuildInputs = with python3.pkgs; [
+ requests
+ ];
+
+ # Tests are not available
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "graphqlmap"
+ ];
+
+ meta = with lib; {
+ description = "Tool to interact with a GraphQL endpoint";
+ homepage = "https://github.com/swisskyrepo/GraphQLmap";
+ license = licenses.mit;
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/security/grype/default.nix b/pkgs/tools/security/grype/default.nix
index 6f7a7276942e..12d05a3b75e1 100644
--- a/pkgs/tools/security/grype/default.nix
+++ b/pkgs/tools/security/grype/default.nix
@@ -1,4 +1,5 @@
{ lib
+, stdenv
, buildGoModule
, fetchFromGitHub
, installShellFiles
@@ -6,13 +7,13 @@
buildGoModule rec {
pname = "grype";
- version = "0.37.0";
+ version = "0.39.0";
src = fetchFromGitHub {
owner = "anchore";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-LcJtEzwChafG269cGZV3iBSlkjQSGIxSMZNj/5HbXVw=";
+ hash = "sha256-Lmklcal39jbvwkJaUit3JTmafa26oDx25WzW1oQUSoc=";
# populate values that require us to use git. By doing this in postFetch we
# can delete .git afterwards and maintain better reproducibility of the src.
leaveDotGit = true;
@@ -25,7 +26,7 @@ buildGoModule rec {
'';
};
- vendorSha256 = "sha256-7f/kHCWUYilhJeyB6UBJ6yJVFf4Ij6ZBwaeKTaQrZdY=";
+ vendorSha256 = "sha256-fIxVkJSREZ86KW1SMJqHSByHFTdyJfSiestIZCMsnJI=";
nativeBuildInputs = [
installShellFiles
@@ -68,5 +69,8 @@ buildGoModule rec {
'';
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab jk ];
+ # Need updated macOS SDK
+ # https://github.com/NixOS/nixpkgs/issues/101229
+ broken = (stdenv.isDarwin && stdenv.isx86_64);
};
}
diff --git a/pkgs/tools/security/keybase/gui.nix b/pkgs/tools/security/keybase/gui.nix
index f5147e17ac5e..41123f33c718 100644
--- a/pkgs/tools/security/keybase/gui.nix
+++ b/pkgs/tools/security/keybase/gui.nix
@@ -111,6 +111,7 @@ stdenv.mkDerivation rec {
description = "The Keybase official GUI";
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ avaq rvolosatovs puffnfresh np Br1ght0ne shofius ];
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.bsd3;
};
}
diff --git a/pkgs/tools/security/munge/default.nix b/pkgs/tools/security/munge/default.nix
index 2c242f256d3d..99d72fc7c95c 100644
--- a/pkgs/tools/security/munge/default.nix
+++ b/pkgs/tools/security/munge/default.nix
@@ -11,7 +11,11 @@ stdenv.mkDerivation rec {
sha256 = "15h805rwcb9f89dyrkxfclzs41n3ff8x7cc1dbvs8mb0ds682c4j";
};
- nativeBuildInputs = [ autoreconfHook ];
+ strictDeps = true;
+ nativeBuildInputs = [
+ autoreconfHook
+ libgcrypt # provides libgcrypt.m4
+ ];
buildInputs = [ libgcrypt zlib bzip2 ];
preAutoreconf = ''
@@ -21,6 +25,10 @@ stdenv.mkDerivation rec {
configureFlags = [
"--localstatedir=/var"
+ "--with-libgcrypt-prefix=${libgcrypt.dev}"
+ # workaround for cross compilation: https://github.com/dun/munge/issues/103
+ "ac_cv_file__dev_spx=no"
+ "x_ac_cv_check_fifo_recvfd=no"
];
meta = with lib; {
diff --git a/pkgs/tools/security/pcsc-safenet/default.nix b/pkgs/tools/security/pcsc-safenet/default.nix
index 639aafee23c5..68006a40da8d 100644
--- a/pkgs/tools/security/pcsc-safenet/default.nix
+++ b/pkgs/tools/security/pcsc-safenet/default.nix
@@ -90,6 +90,7 @@ stdenv.mkDerivation rec {
homepage = "https://safenet.gemalto.com/multi-factor-authentication/security-applications/authentication-client-token-management";
description = "Safenet Authentication Client";
platforms = [ "x86_64-linux" ];
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ wldhx ];
};
diff --git a/pkgs/tools/security/spire/default.nix b/pkgs/tools/security/spire/default.nix
index fcb74d421ebb..4664e058367e 100644
--- a/pkgs/tools/security/spire/default.nix
+++ b/pkgs/tools/security/spire/default.nix
@@ -1,8 +1,8 @@
-{ lib, buildGoModule, fetchFromGitHub }:
+{ lib, buildGo118Module, fetchFromGitHub }:
-buildGoModule rec {
+buildGo118Module rec {
pname = "spire";
- version = "1.2.3";
+ version = "1.3.1";
outputs = [ "out" "agent" "server" ];
@@ -10,10 +10,10 @@ buildGoModule rec {
owner = "spiffe";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-k2kg1Wz0pPV9di2T1A1QvPxLqS5uZBvklNfBW72dQa0=";
+ sha256 = "sha256-8LDdHChCTSpepwTMg2hUvQ6ZDoqaZt9QeKrBgfIOLx8=";
};
- vendorSha256 = "sha256-J2D5hD0+0VY0sWi6O/McLIvK775aQiDqA+h24oYgRxY=";
+ vendorSha256 = "sha256-QgPDhUu5uCkmC6L5UKtnz/wt/M1rERxc5nXmVVPtRKY=";
subPackages = [ "cmd/spire-agent" "cmd/spire-server" ];
diff --git a/pkgs/tools/typesetting/tex/texlive/combine.nix b/pkgs/tools/typesetting/tex/texlive/combine.nix
index 8686502a1345..c18b7a011a86 100644
--- a/pkgs/tools/typesetting/tex/texlive/combine.nix
+++ b/pkgs/tools/typesetting/tex/texlive/combine.nix
@@ -180,7 +180,7 @@ in (buildEnv {
echo -n "Wrapping '$link'"
rm "$link"
makeWrapper "$target" "$link" \
- --prefix PATH : "$out/bin:${perl}/bin" \
+ --prefix PATH : "${gnused}/bin:${gnugrep}/bin:${coreutils}/bin:$out/bin:${perl}/bin" \
--prefix PERL5LIB : "$PERL5LIB" \
--set-default TEXMFCNF "$TEXMFCNF"
diff --git a/pkgs/tools/typesetting/tex/texlive/default.nix b/pkgs/tools/typesetting/tex/texlive/default.nix
index 0cdf0f397677..27db30593e88 100644
--- a/pkgs/tools/typesetting/tex/texlive/default.nix
+++ b/pkgs/tools/typesetting/tex/texlive/default.nix
@@ -4,7 +4,7 @@
*/
{ stdenv, lib, fetchurl, runCommand, writeText, buildEnv
, callPackage, ghostscriptX, harfbuzz
-, makeWrapper, python3, ruby, perl
+, makeWrapper, python3, ruby, perl, gnused, gnugrep, coreutils
, useFixedHashes ? true
, recurseIntoAttrs
}:
@@ -23,7 +23,7 @@ let
# function for creating a working environment from a set of TL packages
combine = import ./combine.nix {
inherit bin combinePkgs buildEnv lib makeWrapper writeText
- stdenv python3 ruby perl;
+ stdenv python3 ruby perl gnused gnugrep coreutils;
ghostscript = ghostscriptX; # could be without X, probably, but we use X above
};
diff --git a/pkgs/tools/virtualization/amazon-ecs-cli/default.nix b/pkgs/tools/virtualization/amazon-ecs-cli/default.nix
index 012546160e09..fa74aa26cec3 100644
--- a/pkgs/tools/virtualization/amazon-ecs-cli/default.nix
+++ b/pkgs/tools/virtualization/amazon-ecs-cli/default.nix
@@ -30,6 +30,7 @@ stdenv.mkDerivation rec {
homepage = "https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_CLI.html";
description = "The Amazon ECS command line interface";
longDescription = "The Amazon Elastic Container Service (Amazon ECS) command line interface (CLI) provides high-level commands to simplify creating, updating, and monitoring clusters and tasks from a local development environment.";
+ sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.asl20;
maintainers = with maintainers; [ Scriptkiddi ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
diff --git a/pkgs/tools/wayland/way-displays/default.nix b/pkgs/tools/wayland/way-displays/default.nix
new file mode 100644
index 000000000000..77b97563d524
--- /dev/null
+++ b/pkgs/tools/wayland/way-displays/default.nix
@@ -0,0 +1,47 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, pkg-config
+, wayland
+, libinput
+, libyamlcpp
+}:
+
+stdenv.mkDerivation rec {
+ pname = "way-displays";
+ version = "1.5.3";
+
+ src = fetchFromGitHub {
+ owner = "alex-courtis";
+ repo = "way-displays";
+ rev = "${version}";
+ sha256 = "sha256-5A0qZRpWw3Deo9cGqGULpQMoPCVh85cWE/wJ5XSbVJk=";
+ };
+
+ postPatch = ''
+ substituteInPlace src/cfg.cpp --replace "\"/etc" "\"$out/etc"
+ '';
+
+ strictDeps = true;
+
+ nativeBuildInputs = [
+ pkg-config
+ wayland
+ ];
+
+ buildInputs = [
+ wayland
+ libyamlcpp
+ libinput
+ ];
+
+ makeFlags = [ "DESTDIR=$(out) PREFIX= PREFIX_ETC="];
+
+ meta = with lib; {
+ homepage = "https://github.com/alex-courtis/way-displays";
+ description = "Auto Manage Your Wayland Displays";
+ license = licenses.mit;
+ maintainers = with maintainers; [ simoneruffini ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index 4e4c01b6c664..d264c5780681 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -527,6 +527,7 @@ mapAliases ({
google-gflags = gflags; # Added 2019-07-25
google-musicmanager = throw "google-musicmanager has been removed because Google Play Music was discontinued"; # Added 2021-03-07
google-music-scripts = throw "google-music-scripts has been removed because Google Play Music was discontinued"; # Added 2021-03-07
+ gotags = throw "gotags has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03
go-mk = throw "go-mk has been dropped due to the lack of maintanence from upstream since 2015"; # Added 2022-06-02
go-pup = throw "'go-pup' has been renamed to/replaced by 'pup'"; # Converted to throw 2022-02-22
go-repo-root = throw "go-repo-root has been dropped due to the lack of maintanence from upstream since 2014"; # Added 2022-06-02
@@ -1236,6 +1237,7 @@ mapAliases ({
### S ###
s2n = s2n-tls; # Added 2021-03-03
+ s3gof3r = throw "s3gof3r has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-04
s6Dns = throw "'s6Dns' has been renamed to/replaced by 's6-dns'"; # Converted to throw 2022-02-22
s6LinuxUtils = throw "'s6LinuxUtils' has been renamed to/replaced by 's6-linux-utils'"; # Converted to throw 2022-02-22
s6Networking = throw "'s6Networking' has been renamed to/replaced by 's6-networking'"; # Converted to throw 2022-02-22
@@ -1323,6 +1325,7 @@ mapAliases ({
ssmtp = throw "'ssmtp' has been removed due to the software being unmaintained. 'msmtp' can be used as a replacement"; # Added 2022-04-17
stanchion = throw "Stanchion was part of riak-cs which is not maintained anymore"; # added 2020-10-14
steam-run-native = steam-run; # added 2022-02-21
+ stride = throw "'stride' aka. Atlassian Stride is dead since 2019 (bought by Slack)"; # added 2022-06-15
stumpwm-git = throw "stumpwm-git has been broken for a long time and lispPackages.stumpwm follows Quicklisp that is close to git version"; # Added 2021-05-09
subversion_1_10 = throw "subversion_1_10 has been removed as it has reached its end of life"; # Added 2022-04-26
subversion19 = throw "subversion19 has been removed as it has reached its end of life"; # Added 2021-03-31
@@ -1414,6 +1417,7 @@ mapAliases ({
ultrastardx-beta = throw "'ultrastardx-beta' has been renamed to/replaced by 'ultrastardx'"; # Converted to throw 2022-02-22
unicorn-emu = unicorn; # Added 2020-10-29
unifiStable = unifi6; # Added 2020-12-28
+ unity3d = throw "'unity3d' is unmaintained, has seen no updates in years and depends on deprecated GTK2"; # Added 2022-06-16
untrunc = untrunc-anthwlock; # Added 2021-02-01
urxvt_autocomplete_all_the_things = rxvt-unicode-plugins.autocomplete-all-the-things; # Added 2020-02-02
urxvt_bidi = rxvt-unicode-plugins.bidi; # Added 2020-02-02
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 1271dded51a3..9325327707e3 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -358,6 +358,8 @@ with pkgs;
commit-formatter = callPackage ../applications/version-management/commit-formatter { };
+ commix = callPackage ../tools/security/commix { };
+
containerpilot = callPackage ../applications/networking/cluster/containerpilot { };
coordgenlibs = callPackage ../development/libraries/coordgenlibs { };
@@ -3135,6 +3137,8 @@ with pkgs;
wayland-proxy-virtwl = callPackage ../tools/wayland/wayland-proxy-virtwl { };
+ way-displays = callPackage ../tools/wayland/way-displays { };
+
wev = callPackage ../tools/wayland/wev { };
wdomirror = callPackage ../tools/wayland/wdomirror { };
@@ -3406,6 +3410,8 @@ with pkgs;
dtools = callPackage ../development/tools/dtools { };
+ dt-shell-color-scripts = callPackage ../tools/misc/dt-shell-color-scripts { };
+
dtrx = callPackage ../tools/compression/dtrx { };
dua = callPackage ../tools/misc/dua {
@@ -10103,8 +10109,6 @@ with pkgs;
s5cmd = callPackage ../tools/networking/s5cmd { };
- s3gof3r = callPackage ../tools/networking/s3gof3r { };
-
s6-dns = skawarePackages.s6-dns;
s6-linux-init = skawarePackages.s6-linux-init;
@@ -14346,6 +14350,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
+ graphqlmap = callPackage ../tools/security/graphqlmap { };
+
groovy = callPackage ../development/interpreters/groovy { };
inherit (callPackages ../applications/networking/cluster/hadoop { })
@@ -16053,7 +16059,7 @@ with pkgs;
peg = callPackage ../development/tools/parsing/peg { };
- pgcli = pkgs.python3Packages.pgcli;
+ pgcli = with pkgs.python3Packages; toPythonApplication pgcli;
picotool = callPackage ../development/tools/picotool { };
@@ -23598,8 +23604,6 @@ with pkgs;
gofumpt = callPackage ../development/tools/gofumpt { };
- gotags = callPackage ../development/tools/gotags { };
-
go-task = callPackage ../development/tools/go-task { };
golint = callPackage ../development/tools/golint { };
@@ -23608,6 +23612,8 @@ with pkgs;
buildGoModule = buildGo118Module;
};
+ golangci-lint-langserver = callPackage ../development/tools/golangci-lint-langserver { };
+
gocyclo = callPackage ../development/tools/gocyclo { };
godef = callPackage ../development/tools/godef { };
@@ -28657,8 +28663,6 @@ with pkgs;
spacegun = callPackage ../applications/networking/cluster/spacegun {};
- stride = callPackage ../applications/networking/instant-messengers/stride { };
-
speedread = callPackage ../applications/misc/speedread { };
station = callPackage ../applications/networking/station { };
@@ -34887,12 +34891,6 @@ with pkgs;
ums = callPackage ../servers/ums { };
- unity3d = callPackage ../development/tools/unity3d {
- stdenv = stdenv_32bit;
- gcc_32bit = pkgsi686Linux.gcc;
- inherit (gnome2) GConf;
- };
-
unityhub = callPackage ../development/tools/unityhub { };
urbit = callPackage ../misc/urbit { };
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 04d1aa59ccef..b678022fea89 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -6423,7 +6423,7 @@ in {
pg8000 = callPackage ../development/python-modules/pg8000 { };
- pgcli = callPackage ../development/tools/database/pgcli { };
+ pgcli = callPackage ../development/python-modules/pgcli { };
pglast = callPackage ../development/python-modules/pglast { };
@@ -9478,6 +9478,8 @@ in {
schiene = callPackage ../development/python-modules/schiene { };
+ schwifty = callPackage ../development/python-modules/schwifty { };
+
scikit-bio = callPackage ../development/python-modules/scikit-bio { };
scikit-build = callPackage ../development/python-modules/scikit-build { };