diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 23d8a1b56a7b2..bfc07096aa950 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -15,11 +15,12 @@ Reviewing guidelines: https://nixos.org/manual/nixpkgs/unstable/#chap-reviewing-
-- [ ] Tested using sandboxing ([nix.useSandbox](https://nixos.org/nixos/manual/options.html#opt-nix.useSandbox) on NixOS, or option `sandbox` in [`nix.conf`](https://nixos.org/nix/manual/#sec-conf-file) on non-NixOS linux)
- Built on platform(s)
- - [ ] NixOS
- - [ ] macOS
- - [ ] other Linux distributions
+ - [ ] x86_64-linux
+ - [ ] aarch64-linux
+ - [ ] x86_64-darwin
+ - [ ] aarch64-darwin
+- [ ] For non-Linux: Is `sandbox = true` set in `nix.conf`? (See [Nix manual](https://nixos.org/manual/nix/stable/#sec-conf-file))
- [ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside [nixos/tests](https://github.com/NixOS/nixpkgs/blob/master/nixos/tests))
- [ ] Tested compilation of all packages that depend on this change using `nix-shell -p nixpkgs-review --run "nixpkgs-review wip"`
- [ ] Tested execution of all binary files (usually in `./result/bin/`)
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index aa26bd0dc97e2..01ed4542277c2 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -3477,6 +3477,12 @@
fingerprint = "2F6C 930F D3C4 7E38 6AFA 4EB4 E23C D2DD 36A4 397F";
}];
};
+ fabiangd = {
+ email = "fabian.g.droege@gmail.com";
+ name = "Fabian G. Dröge";
+ github = "FabianGD";
+ githubId = 40316600;
+ };
fabianhauser = {
email = "fabian.nixos@fh2.ch";
github = "fabianhauser";
diff --git a/nixos/modules/services/networking/v2ray.nix b/nixos/modules/services/networking/v2ray.nix
index 6a924a16449a6..0b8b5b56e25ba 100644
--- a/nixos/modules/services/networking/v2ray.nix
+++ b/nixos/modules/services/networking/v2ray.nix
@@ -25,7 +25,7 @@ with lib;
Either configFile or config must be specified.
- See .
+ See .
'';
};
@@ -47,7 +47,7 @@ with lib;
Either `configFile` or `config` must be specified.
- See .
+ See .
'';
};
};
diff --git a/nixos/tests/shattered-pixel-dungeon.nix b/nixos/tests/shattered-pixel-dungeon.nix
index cf6ee8db80b22..d8c4b44819e40 100644
--- a/nixos/tests/shattered-pixel-dungeon.nix
+++ b/nixos/tests/shattered-pixel-dungeon.nix
@@ -10,6 +10,7 @@ import ./make-test-python.nix ({ pkgs, ... }: {
];
services.xserver.enable = true;
+ sound.enable = true;
environment.systemPackages = [ pkgs.shattered-pixel-dungeon ];
};
diff --git a/pkgs/applications/audio/sidplayfp/default.nix b/pkgs/applications/audio/sidplayfp/default.nix
index b27593626efb6..18bd8170f1db5 100644
--- a/pkgs/applications/audio/sidplayfp/default.nix
+++ b/pkgs/applications/audio/sidplayfp/default.nix
@@ -16,13 +16,13 @@
stdenv.mkDerivation rec {
pname = "sidplayfp";
- version = "2.2.0";
+ version = "2.2.1";
src = fetchFromGitHub {
owner = "libsidplayfp";
repo = "sidplayfp";
rev = "v${version}";
- sha256 = "sha256-hN7225lhuYyo4wPDiiEc9FaPg90pZ13mLw93V8tb/P0=";
+ sha256 = "sha256-IlPZmZpWxMaArkRnqu6JCGxiHU7JczRxiySqzAopfxc=";
};
nativeBuildInputs = [ autoreconfHook perl pkg-config ];
diff --git a/pkgs/applications/blockchains/polkadot/default.nix b/pkgs/applications/blockchains/polkadot/default.nix
index a1f0b17b20203..b2fc34ca5723a 100644
--- a/pkgs/applications/blockchains/polkadot/default.nix
+++ b/pkgs/applications/blockchains/polkadot/default.nix
@@ -7,16 +7,16 @@
}:
rustPlatform.buildRustPackage rec {
pname = "polkadot";
- version = "0.9.8";
+ version = "0.9.9";
src = fetchFromGitHub {
owner = "paritytech";
repo = "polkadot";
rev = "v${version}";
- sha256 = "sha256-5PNogoahAZUjIlQsVXwm7j5OmP3/uEEdV0vrIDXXBx8=";
+ sha256 = "sha256-GsGa2y718qWQlP0pLy8X3mVsFpNNnOTVQZpp4+e1RhA=";
};
- cargoSha256 = "0iikys90flzmnnb6l2wzag8mp91p6z9y7rjzym2sd6m7xhgbc1x6";
+ cargoSha256 = "03lnw61pgp88iwz2gbcp8y3jvz6v94cn0ynjz6snb9jq88gf25dz";
nativeBuildInputs = [ clang ];
diff --git a/pkgs/applications/editors/vscode/vscode.nix b/pkgs/applications/editors/vscode/vscode.nix
index 338a1e23af2a8..03d7ba3ec8c66 100644
--- a/pkgs/applications/editors/vscode/vscode.nix
+++ b/pkgs/applications/editors/vscode/vscode.nix
@@ -39,7 +39,7 @@ in
sourceRoot = "";
- updateScript = ./update-vscodium.sh;
+ updateScript = ./update-vscode.sh;
meta = with lib; {
description = ''
diff --git a/pkgs/applications/graphics/hydrus/default.nix b/pkgs/applications/graphics/hydrus/default.nix
index 1cf1531ef354d..de952e866dc42 100644
--- a/pkgs/applications/graphics/hydrus/default.nix
+++ b/pkgs/applications/graphics/hydrus/default.nix
@@ -10,14 +10,14 @@
python3Packages.buildPythonPackage rec {
pname = "hydrus";
- version = "450";
+ version = "451";
format = "other";
src = fetchFromGitHub {
owner = "hydrusnetwork";
repo = "hydrus";
rev = "v${version}";
- sha256 = "sha256-sMy5Yv7PGK3U/XnB8IrutSqSBiq1cfD6pAO5BxbWG5A=";
+ sha256 = "sha256-HoaXbnhwh6kDWgRFVs+VttzIY3MaxriteFTE1fwBUYs=";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/networking/browsers/palemoon/default.nix b/pkgs/applications/networking/browsers/palemoon/default.nix
index 2cd3ee11d2776..70adae5d09a50 100644
--- a/pkgs/applications/networking/browsers/palemoon/default.nix
+++ b/pkgs/applications/networking/browsers/palemoon/default.nix
@@ -52,14 +52,14 @@ let
in
stdenv.mkDerivation rec {
pname = "palemoon";
- version = "29.3.0";
+ version = "29.4.0.1";
src = fetchFromGitHub {
githubBase = "repo.palemoon.org";
owner = "MoonchildProductions";
repo = "Pale-Moon";
rev = "${version}_Release";
- sha256 = "1q0w1ffmdfk22df4p2ks4n55zmz44ir8fbcdn5a5h4ihy73nf6xp";
+ sha256 = "1qzsryhlxvh9xx9j7s4dmxv575z13wdx8iigj8r0pdmg5kx6rpkb";
fetchSubmodules = true;
};
diff --git a/pkgs/applications/networking/cluster/sonobuoy/default.nix b/pkgs/applications/networking/cluster/sonobuoy/default.nix
index 8f4324f434354..fc30699f225fa 100644
--- a/pkgs/applications/networking/cluster/sonobuoy/default.nix
+++ b/pkgs/applications/networking/cluster/sonobuoy/default.nix
@@ -1,11 +1,11 @@
{ lib, buildGoModule, fetchFromGitHub }:
# SHA of ${version} for the tool's help output. Unfortunately this is needed in build flags.
-let rev = "f6e19140201d6bf2f1274bf6567087bc25154210";
+let rev = "981a3ffd4368600eb1a5bca3f12a251e80895d37";
in
buildGoModule rec {
pname = "sonobuoy";
- version = "0.50.0"; # Do not forget to update `rev` above
+ version = "0.53.2"; # Do not forget to update `rev` above
buildFlagsArray =
let t = "github.com/vmware-tanzu/sonobuoy";
@@ -17,13 +17,13 @@ buildGoModule rec {
'';
src = fetchFromGitHub {
- sha256 = "sha256-LhprsDlWZjNRE6pu7V9WBszy/+bNpn5KoRopIoWvdsg=";
+ sha256 = "sha256-8bUZsknG1Z2TKWwtuJtnauK8ibikGphl3oiLXT3PZzY=";
rev = "v${version}";
repo = "sonobuoy";
owner = "vmware-tanzu";
};
- vendorSha256 = "sha256-0Vx74nz0djJB12UPybo2Z8KVpSyKHuKPFymh/Rlpv88=";
+ vendorSha256 = "sha256-Lkwv95BZa7nFEXk1KcwXIRVpj9DZmqnWjkdrZkO/k24=";
subPackages = [ "." ];
diff --git a/pkgs/applications/networking/cluster/terragrunt/default.nix b/pkgs/applications/networking/cluster/terragrunt/default.nix
index 66e80f6648dc6..dba9ff4ae7896 100644
--- a/pkgs/applications/networking/cluster/terragrunt/default.nix
+++ b/pkgs/applications/networking/cluster/terragrunt/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "terragrunt";
- version = "0.31.3";
+ version = "0.31.5";
src = fetchFromGitHub {
owner = "gruntwork-io";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-I7S7B+mQxLdMWiLAkUIW39kXGU9k647OOhHysYotkfU=";
+ sha256 = "sha256-yovrqDGvw+GwzEiuveO2eLnP7mVVY5CQB0agzxIsHto=";
};
vendorSha256 = "sha256-CVWg2SvRO//xye05G3svGeqgaTKdRcoERrR7Tp0JZUo=";
diff --git a/pkgs/applications/networking/sniffers/sngrep/default.nix b/pkgs/applications/networking/sniffers/sngrep/default.nix
index b7a17896ec337..ac6e3bc3a0184 100644
--- a/pkgs/applications/networking/sniffers/sngrep/default.nix
+++ b/pkgs/applications/networking/sniffers/sngrep/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "sngrep";
- version = "1.4.8";
+ version = "1.4.9";
src = fetchFromGitHub {
owner = "irontec";
repo = pname;
rev = "v${version}";
- sha256 = "0lnwsw9x4y4lr1yh749y24f71p5zsghwh5lp28zqfanw025mipf2";
+ sha256 = "sha256-92wPRDFSoIOYFv3XKdsuYH8j3D8kXyg++q6VpIIMGDg=";
};
buildInputs = [
diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix
index 1c5327ebc6ceb..abfd223fd0018 100644
--- a/pkgs/applications/office/libreoffice/default.nix
+++ b/pkgs/applications/office/libreoffice/default.nix
@@ -63,8 +63,6 @@ in (mkDrv rec {
"-fno-visibility-inlines-hidden" # https://bugs.documentfoundation.org/show_bug.cgi?id=78174#c10
];
- patches = [ ./xdg-open-brief.patch ];
-
tarballPath = "external/tarballs";
postUnpack = ''
diff --git a/pkgs/applications/office/libreoffice/src-fresh/override.nix b/pkgs/applications/office/libreoffice/src-fresh/override.nix
index 0141b74c38903..193b2cd763981 100644
--- a/pkgs/applications/office/libreoffice/src-fresh/override.nix
+++ b/pkgs/applications/office/libreoffice/src-fresh/override.nix
@@ -7,4 +7,5 @@ attrs:
configureFlags = attrs.configureFlags ++ [
(lib.enableFeature kdeIntegration "kf5")
];
+ patches = [ ../xdg-open-brief.patch ]; # drop this when switching fresh to 7.2.0
}
diff --git a/pkgs/applications/office/libreoffice/src-still/override.nix b/pkgs/applications/office/libreoffice/src-still/override.nix
index 0141b74c38903..110a52ed9f96b 100644
--- a/pkgs/applications/office/libreoffice/src-still/override.nix
+++ b/pkgs/applications/office/libreoffice/src-still/override.nix
@@ -7,4 +7,5 @@ attrs:
configureFlags = attrs.configureFlags ++ [
(lib.enableFeature kdeIntegration "kf5")
];
+ patches = [ ../xdg-open-brief.patch ];
}
diff --git a/pkgs/applications/office/portfolio/default.nix b/pkgs/applications/office/portfolio/default.nix
index db3c15454bb2a..8533df467132d 100644
--- a/pkgs/applications/office/portfolio/default.nix
+++ b/pkgs/applications/office/portfolio/default.nix
@@ -24,11 +24,11 @@ let
in
stdenv.mkDerivation rec {
pname = "PortfolioPerformance";
- version = "0.54.1";
+ version = "0.54.2";
src = fetchurl {
url = "https://github.com/buchen/portfolio/releases/download/${version}/PortfolioPerformance-${version}-linux.gtk.x86_64.tar.gz";
- sha256 = "16sv938sdbs01byqwngrfqmzb81zfhvk72ar53l68cg8qjvzs5ml";
+ sha256 = "sha256-fKUKVeR0q8oylpwF4d3jnkON4vbQ80Fc9WYWStb67ek=";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/science/chemistry/pymol/default.nix b/pkgs/applications/science/chemistry/pymol/default.nix
index 2df8b0e6d4739..39bbae77a66e0 100644
--- a/pkgs/applications/science/chemistry/pymol/default.nix
+++ b/pkgs/applications/science/chemistry/pymol/default.nix
@@ -1,8 +1,18 @@
-{ lib, fetchurl, fetchFromGitHub, makeDesktopItem
-, python3, python3Packages
-, glew, glm, freeglut, libpng, libxml2, tk, freetype, msgpack }:
-
-
+{ lib
+, fetchFromGitHub
+, makeDesktopItem
+, python3
+, python3Packages
+, netcdf
+, glew
+, glm
+, freeglut
+, libpng
+, libxml2
+, tk
+, freetype
+, msgpack
+}:
let
pname = "pymol";
description = "A Python-enhanced molecular graphics tool";
@@ -20,15 +30,15 @@ let
in
python3Packages.buildPythonApplication rec {
inherit pname;
- version = "2.3.0";
+ version = "2.5.0";
src = fetchFromGitHub {
owner = "schrodinger";
repo = "pymol-open-source";
rev = "v${version}";
- sha256 = "175cqi6gfmvv49i3ws19254m7ljs53fy6y82fm1ywshq2h2c93jh";
+ sha256 = "sha256-JdsgcVF1w1xFPZxVcyS+GcWg4a1Bd4SvxFOuSdlz9SM=";
};
- buildInputs = [ python3Packages.numpy glew glm freeglut libpng libxml2 tk freetype msgpack ];
+ buildInputs = [ python3Packages.numpy glew glm freeglut libpng libxml2 tk freetype msgpack netcdf ];
NIX_CFLAGS_COMPILE = "-I ${libxml2.dev}/include/libxml2";
hardeningDisable = [ "format" ];
@@ -49,7 +59,7 @@ python3Packages.buildPythonApplication rec {
'';
meta = with lib; {
- description = description;
+ inherit description;
homepage = "https://www.pymol.org/";
license = licenses.mit;
maintainers = with maintainers; [ samlich ];
diff --git a/pkgs/applications/science/math/lp_solve/default.nix b/pkgs/applications/science/math/lp_solve/default.nix
index f944499af401c..876222772e86d 100644
--- a/pkgs/applications/science/math/lp_solve/default.nix
+++ b/pkgs/applications/science/math/lp_solve/default.nix
@@ -1,40 +1,45 @@
-{ lib, stdenv, fetchurl }:
+{ lib, stdenv, fetchurl, cctools, fixDarwinDylibNames }:
stdenv.mkDerivation rec {
pname = "lp_solve";
- version = "5.5.2.5";
+ version = "5.5.2.11";
src = fetchurl {
url = "mirror://sourceforge/project/lpsolve/lpsolve/${version}/lp_solve_${version}_source.tar.gz";
- sha256 = "12pj1idjz31r7c2mb5w03vy1cmvycvbkx9z29s40qdmkp1i7q6i0";
+ sha256 = "sha256-bUq/9cxqqpM66ObBeiJt8PwLZxxDj2lxXUHQn+gfkC8=";
};
- patches = [ ./isnan.patch ];
-
- buildCommand = ''
- . $stdenv/setup
- tar xvfz $src
- (
- cd lp_solve*
- eval patchPhase
- )
- (
- cd lp_solve*/lpsolve55
- bash ccc
- mkdir -pv $out/lib
- find bin -type f -exec cp -v "{}" $out/lib \;
- )
- (
- cd lp_solve*/lp_solve
- bash ccc
- mkdir -pv $out/bin
- find bin -type f -exec cp -v "{}" $out/bin \;
- )
- (
- mkdir -pv $out/include
- cp -v lp_solve*/*.h $out/include
- )
+ nativeBuildInputs = lib.optionals stdenv.isDarwin [
+ cctools
+ fixDarwinDylibNames
+ ];
+
+ dontConfigure = true;
+
+ buildPhase = let
+ ccc = if stdenv.isDarwin then "ccc.osx" else "ccc";
+ in ''
+ runHook preBuild
+
+ (cd lpsolve55 && bash -x -e ${ccc})
+ (cd lp_solve && bash -x -e ${ccc})
+
+ runHook postBuild
+ '';
+
+ installPhase = ''
+ runHook preInstall
+
+ install -d -m755 $out/bin $out/lib $out/include/lpsolve
+ install -m755 lp_solve/bin/*/lp_solve -t $out/bin
+ install -m644 lpsolve55/bin/*/liblpsolve* -t $out/lib
+ install -m644 lp_*.h -t $out/include/lpsolve
+
+ rm $out/lib/liblpsolve*.a
+ rm $out/include/lpsolve/lp_solveDLL.h # A Windows header
+
+ runHook postInstall
'';
meta = with lib; {
@@ -44,6 +49,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ smironov ];
platforms = platforms.unix;
};
-
}
-
diff --git a/pkgs/applications/science/math/lp_solve/isnan.patch b/pkgs/applications/science/math/lp_solve/isnan.patch
deleted file mode 100644
index bc1983d4423d1..0000000000000
--- a/pkgs/applications/science/math/lp_solve/isnan.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -u a/lp_lib.h b/lp_lib.h
---- a/lp_lib.h 2016-05-04 19:45:15.753143720 +0900
-+++ b/lp_lib.h 2016-05-04 19:53:59.536920722 +0900
-@@ -59,9 +59,6 @@
- # if defined _WIN32 && !defined __GNUC__
- # define isnan _isnan
- # endif
--#if defined NOISNAN
--# define isnan(x) FALSE
--#endif
-
- #define SETMASK(variable, mask) variable |= mask
- #define CLEARMASK(variable, mask) variable &= ~(mask)
diff --git a/pkgs/applications/science/math/sage/default.nix b/pkgs/applications/science/math/sage/default.nix
index e39db4b1ac2df..b7821db1f9a71 100644
--- a/pkgs/applications/science/math/sage/default.nix
+++ b/pkgs/applications/science/math/sage/default.nix
@@ -38,8 +38,8 @@ let
];
language = "sagemath";
# just one 16x16 logo is available
- logo32 = "${sage-src}/doc/common/themes/sage/static/sageicon.png";
- logo64 = "${sage-src}/doc/common/themes/sage/static/sageicon.png";
+ logo32 = "${sage-src}/src/doc/common/themes/sage/static/sageicon.png";
+ logo64 = "${sage-src}/src/doc/common/themes/sage/static/sageicon.png";
};
three = callPackage ./threejs-sage.nix { };
diff --git a/pkgs/applications/video/streamlink-twitch-gui/bin.nix b/pkgs/applications/video/streamlink-twitch-gui/bin.nix
index 32a35eca92009..53e87fbb2b9d5 100644
--- a/pkgs/applications/video/streamlink-twitch-gui/bin.nix
+++ b/pkgs/applications/video/streamlink-twitch-gui/bin.nix
@@ -28,6 +28,7 @@
let
basename = "streamlink-twitch-gui";
runtimeLibs = lib.makeLibraryPath [ libudev0-shim ];
+ runtimeBins = lib.makeBinPath [ streamlink ];
arch =
if stdenv.hostPlatform.system == "x86_64-linux"
then
@@ -90,16 +91,23 @@ stdenv.mkDerivation rec {
dontConfigure = true;
installPhase = ''
+ runHook preInstall
mkdir -p $out/{bin,opt/${basename},share}
# Install all files, remove unnecessary ones
cp -a . $out/opt/${basename}/
rm -r $out/opt/${basename}/{{add,remove}-menuitem.sh,credits.html,icons/}
-
- wrapProgram $out/opt/${basename}/${basename} --add-flags "--no-version-check" --prefix LD_LIBRARY_PATH : ${runtimeLibs}
-
ln -s "$out/opt/${basename}/${basename}" $out/bin/
- ln -s "${desktopItem}/share/applications" $out/share/
+ cp -r "${desktopItem}/share/applications" $out/share/
+ runHook postInstall
+ '';
+
+ preFixup = ''
+ gappsWrapperArgs+=(
+ --add-flags "--no-version-check" \
+ --prefix LD_LIBRARY_PATH : ${runtimeLibs} \
+ --prefix PATH : ${runtimeBins}
+ )
'';
desktopItem = makeDesktopItem {
@@ -115,7 +123,7 @@ stdenv.mkDerivation rec {
description = "Twitch.tv browser for Streamlink";
longDescription = "Browse Twitch.tv and watch streams in your videoplayer of choice";
homepage = "https://streamlink.github.io/streamlink-twitch-gui/";
- downloadPage = https://github.com/streamlink/streamlink-twitch-gui/releases;
+ downloadPage = "https://github.com/streamlink/streamlink-twitch-gui/releases";
license = licenses.mit;
maintainers = with maintainers; [ rileyinman ];
platforms = [ "x86_64-linux" "i686-linux" ];
diff --git a/pkgs/applications/window-managers/sway/bg.nix b/pkgs/applications/window-managers/sway/bg.nix
index 1d5dea76b3798..6d91d8c8f46cf 100644
--- a/pkgs/applications/window-managers/sway/bg.nix
+++ b/pkgs/applications/window-managers/sway/bg.nix
@@ -15,6 +15,7 @@ stdenv.mkDerivation rec {
sha256 = "17508q9wsw6c1lsxlcbxj74z2naqhwi5c7lkbq24m4lk8qmy0576";
};
+ depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ];
buildInputs = [ wayland wayland-protocols cairo gdk-pixbuf ];
diff --git a/pkgs/development/compilers/closure/default.nix b/pkgs/development/compilers/closure/default.nix
index b5ac2e187d8c3..eb8c898e09edb 100644
--- a/pkgs/development/compilers/closure/default.nix
+++ b/pkgs/development/compilers/closure/default.nix
@@ -2,21 +2,21 @@
stdenv.mkDerivation rec {
pname = "closure-compiler";
- version = "20200719";
+ version = "20210808";
src = fetchurl {
- url = "https://dl.google.com/closure-compiler/compiler-${version}.tar.gz";
- sha256 = "18095i98mk5kc1vpaf6gvmvhiyl2x4zrcwd7ix5l98jydldiz7wx";
+ url = "https://repo1.maven.org/maven2/com/google/javascript/closure-compiler/v${version}/closure-compiler-v${version}.jar";
+ sha256 = "1cvibvm8l4mp64ml6lpsh3w62bgbr42pi3i7ga8ss0prhr0dsk3y";
};
- sourceRoot = ".";
+ dontUnpack = true;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jre ];
installPhase = ''
mkdir -p $out/share/java $out/bin
- cp closure-compiler-v${version}.jar $out/share/java
+ cp ${src} $out/share/java/closure-compiler-v${version}.jar
makeWrapper ${jre}/bin/java $out/bin/closure-compiler \
--add-flags "-jar $out/share/java/closure-compiler-v${version}.jar"
'';
diff --git a/pkgs/development/libraries/amdvlk/default.nix b/pkgs/development/libraries/amdvlk/default.nix
index e7cbd0f006d22..05174c89f7e35 100644
--- a/pkgs/development/libraries/amdvlk/default.nix
+++ b/pkgs/development/libraries/amdvlk/default.nix
@@ -21,13 +21,13 @@ let
in stdenv.mkDerivation rec {
pname = "amdvlk";
- version = "2021.Q3.2";
+ version = "2021.Q3.4";
src = fetchRepoProject {
name = "${pname}-src";
manifest = "https://github.com/GPUOpen-Drivers/AMDVLK.git";
rev = "refs/tags/v-${version}";
- sha256 = "q860VD6hUs1U9mlkj/vqkLT/4zqGqQl4JI/flyDwhC8=";
+ sha256 = "Rmx5vicxKXstI8TdxeFVjEFe71XJOyzp5L6VyDNuXmM=";
};
buildInputs = [
diff --git a/pkgs/development/libraries/ftxui/default.nix b/pkgs/development/libraries/ftxui/default.nix
new file mode 100644
index 0000000000000..df664a309a7c3
--- /dev/null
+++ b/pkgs/development/libraries/ftxui/default.nix
@@ -0,0 +1,33 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, doxygen
+, graphviz
+}:
+
+stdenv.mkDerivation rec {
+ pname = "ftxui";
+ version = "unstable-2021-08-13";
+
+ src = fetchFromGitHub {
+ owner = "ArthurSonzogni";
+ repo = pname;
+ rev = "69b0c9e53e523ac43a303964fc9c5bc0da7d5d61";
+ sha256 = "0cbljksgy1ckw34h0mq70s8sma0p16sznn4z9r4hwv76y530m0ww";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ doxygen
+ graphviz
+ ];
+
+ meta = with lib; {
+ homepage = "https://github.com/ArthurSonzogni/FTXUI";
+ description = "Functional Terminal User Interface for C++";
+ license = licenses.mit;
+ maintainers = [ maintainers.ivar ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/libraries/libemf2svg/default.nix b/pkgs/development/libraries/libemf2svg/default.nix
new file mode 100644
index 0000000000000..4bb7caa026157
--- /dev/null
+++ b/pkgs/development/libraries/libemf2svg/default.nix
@@ -0,0 +1,31 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, fontconfig
+, freetype
+, libpng
+}:
+
+stdenv.mkDerivation rec {
+ pname = "libemf2svg";
+ version = "1.1.0";
+
+ src = fetchFromGitHub {
+ owner = "kakwa";
+ repo = pname;
+ rev = version;
+ sha256 = "04g6dp5xadszqjyjl162x26mfhhwinia65hbkl3mv70bs4an9898";
+ };
+
+ nativeBuildInputs = [ cmake ];
+ buildInputs = [ fontconfig freetype libpng ];
+
+ meta = with lib; {
+ description = "Microsoft EMF to SVG conversion library";
+ homepage = "https://github.com/kakwa/libemf2svg";
+ maintainers = with maintainers; [ erdnaxe ];
+ license = licenses.gpl2Only;
+ platforms = [ "x86_64-linux" ];
+ };
+}
diff --git a/pkgs/development/libraries/libvisio2svg/default.nix b/pkgs/development/libraries/libvisio2svg/default.nix
new file mode 100644
index 0000000000000..0525ba80b4f9e
--- /dev/null
+++ b/pkgs/development/libraries/libvisio2svg/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, freetype
+, libemf2svg
+, librevenge
+, libvisio
+, libwmf
+, libxml2
+}:
+
+stdenv.mkDerivation rec {
+ pname = "libvisio2svg";
+ version = "0.5.5";
+
+ src = fetchFromGitHub {
+ owner = "kakwa";
+ repo = pname;
+ rev = version;
+ sha256 = "14m37mmib1596c76j9w178jqhwxyih2sy5w5q9xglh8cmlfn1hfx";
+ };
+
+ nativeBuildInputs = [ cmake ];
+ buildInputs = [ libxml2 freetype librevenge libvisio libwmf libemf2svg ];
+
+ meta = with lib; {
+ description = "Library and tools to convert Microsoft Visio documents (VSS and VSD) to SVG";
+ homepage = "https://github.com/kakwa/libvisio2svg";
+ maintainers = with maintainers; [ erdnaxe ];
+ license = licenses.gpl2Only;
+ platforms = [ "x86_64-linux" ];
+ };
+}
diff --git a/pkgs/development/libraries/qt-5/5.15/default.nix b/pkgs/development/libraries/qt-5/5.15/default.nix
index f2dd7e971f315..59c2c70480445 100644
--- a/pkgs/development/libraries/qt-5/5.15/default.nix
+++ b/pkgs/development/libraries/qt-5/5.15/default.nix
@@ -200,6 +200,7 @@ let
qtquickcontrols2 = callPackage ../modules/qtquickcontrols2.nix {};
qtscript = callPackage ../modules/qtscript.nix {};
qtsensors = callPackage ../modules/qtsensors.nix {};
+ qtserialbus = callPackage ../modules/qtserialbus.nix {};
qtserialport = callPackage ../modules/qtserialport.nix {};
qtspeech = callPackage ../modules/qtspeech.nix {};
qtsvg = callPackage ../modules/qtsvg.nix {};
diff --git a/pkgs/development/libraries/science/math/openspecfun/default.nix b/pkgs/development/libraries/science/math/openspecfun/default.nix
index cb72fbd2ca48a..4422a908838f9 100644
--- a/pkgs/development/libraries/science/math/openspecfun/default.nix
+++ b/pkgs/development/libraries/science/math/openspecfun/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
pname = "openspecfun";
- version = "0.5.3";
+ version = "0.5.5";
src = fetchFromGitHub {
owner = "JuliaLang";
repo = "openspecfun";
rev = "v${version}";
- sha256 = "0pfw6l3ch7isz403llx7inxlvavqh01jh1hb9dpidi86sjjx9kfh";
+ sha256 = "sha256-fX2wc8LHUcF5nN/hiA60ZZ7emRTs0SznOm/0q6lD+Ko=";
};
makeFlags = [ "prefix=$(out)" ];
diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json
index 2d97ed7c4ed2f..9cb86a98228d8 100644
--- a/pkgs/development/node-packages/node-packages.json
+++ b/pkgs/development/node-packages/node-packages.json
@@ -133,7 +133,7 @@
, "indium"
, "insect"
, "ionic"
-, {"iosevka": "https://github.com/be5invis/Iosevka/archive/v7.2.4.tar.gz"}
+, {"iosevka": "https://github.com/be5invis/Iosevka/archive/v10.0.0.tar.gz"}
, "jake"
, "javascript-typescript-langserver"
, "joplin"
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index 7190f39426691..8d776f9a8d33f 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -238,13 +238,13 @@ let
sha512 = "GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==";
};
};
- "@apollo/client-3.4.7" = {
+ "@apollo/client-3.4.8" = {
name = "_at_apollo_slash_client";
packageName = "@apollo/client";
- version = "3.4.7";
+ version = "3.4.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@apollo/client/-/client-3.4.7.tgz";
- sha512 = "EmqGxXD8hr05cIFWJFwtGXifc+Lo8hTCEuiaQMtKknHszJfqIFXSxqP+H+eJnjfuoxH74aTSsZKtJlnE83Vt6w==";
+ url = "https://registry.npmjs.org/@apollo/client/-/client-3.4.8.tgz";
+ sha512 = "/cNqTSwc2Dw8q6FDDjdd30+yvhP7rI0Fvl3Hbro0lTtFuhzkevfNyQaI2jAiOrjU6Jc0RbanxULaNrX7UmvjSQ==";
};
};
"@apollo/protobufjs-1.2.2" = {
@@ -1768,13 +1768,13 @@ let
sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q==";
};
};
- "@deepcode/dcignore-1.0.2" = {
+ "@deepcode/dcignore-1.0.3" = {
name = "_at_deepcode_slash_dcignore";
packageName = "@deepcode/dcignore";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@deepcode/dcignore/-/dcignore-1.0.2.tgz";
- sha512 = "DPgxtHuJwBORpqRkPXzzOT+uoPRVJmaN7LR+pmeL6DQM90kj6G6GFUH1i/YpRH8NbML8ZGEDwB9f9u4UwD2pzg==";
+ url = "https://registry.npmjs.org/@deepcode/dcignore/-/dcignore-1.0.3.tgz";
+ sha512 = "nGBjIMd99ox2EJ2EjRn+VEGBgYlwkTii/1NMX1Y2Ylk61GhXKKNjPNfKWz1Jc4tox9SZiCIsnmv3v8AWLjx/Qg==";
};
};
"@devicefarmer/adbkit-2.11.3" = {
@@ -1975,13 +1975,13 @@ let
sha512 = "ScPVUQ//zqqnpr53/WY8pVygs6KVTpXsPlAoo0ZeYfOjuTRh2uSMPN0+2UnUUD5FGjLm3hkpIibUH4ZMtLu8aw==";
};
};
- "@electron/get-1.12.4" = {
+ "@electron/get-1.13.0" = {
name = "_at_electron_slash_get";
packageName = "@electron/get";
- version = "1.12.4";
+ version = "1.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron/get/-/get-1.12.4.tgz";
- sha512 = "6nr9DbJPUR9Xujw6zD3y+rS95TyItEVM0NVjt1EehY2vUWfIgPiIPVHxCvaTS0xr2B+DRxovYVKbuOWqC35kjg==";
+ url = "https://registry.npmjs.org/@electron/get/-/get-1.13.0.tgz";
+ sha512 = "+SjZhRuRo+STTO1Fdhzqnv9D2ZhjxXP6egsJ9kiO8dtP68cDx7dFCwWi64dlMQV7sWcfW1OYCW4wviEBzmRsfQ==";
};
};
"@emmetio/abbreviation-2.2.2" = {
@@ -2317,22 +2317,22 @@ let
sha512 = "+gsAnEjgoKB37o+tsMdSLtgqZ9z2PzpvnHx/2IqhRWjQQd7Xc7MbQsbZaQ5qfkioFHLnWGc/+WORpqKPy/sWrg==";
};
};
- "@fluentui/font-icons-mdl2-8.1.8" = {
+ "@fluentui/font-icons-mdl2-8.1.9" = {
name = "_at_fluentui_slash_font-icons-mdl2";
packageName = "@fluentui/font-icons-mdl2";
- version = "8.1.8";
+ version = "8.1.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.1.8.tgz";
- sha512 = "kZkCHM/mP8WWLLExz3x3wK5yQHPP4tAcvlHVqe69TbG8+3fxRGJSMOxzZO/04CFQp2A7/wOskSRtqeIBtaXJfw==";
+ url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.1.9.tgz";
+ sha512 = "kRf14aaw/sAFl+eC6KWY0aaAI7zJAoYfWrikRZXi6yuMv/R8EJcuvYHUK1i3+LllX0wqVNJVGGwNlGXS8eMciw==";
};
};
- "@fluentui/foundation-legacy-8.1.8" = {
+ "@fluentui/foundation-legacy-8.1.9" = {
name = "_at_fluentui_slash_foundation-legacy";
packageName = "@fluentui/foundation-legacy";
- version = "8.1.8";
+ version = "8.1.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.1.8.tgz";
- sha512 = "m0zbRbZaJbzBjv8Ziv3zpwoGFjuzzPIAmhsn58g66MZvQBd9vN92hFJBNG2bO2+ivlprns4WnLEAiPK8CjoAsA==";
+ url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.1.9.tgz";
+ sha512 = "jy6dqIBYIv+vTdQ0BJNqn9Je3SrmnrFAUHxxwn1QkFEYf9kIykqzF8Mt45osHER0SmWpSrqGOeGrkGKtki2vrA==";
};
};
"@fluentui/keyboard-key-0.2.17" = {
@@ -2389,22 +2389,22 @@ let
sha512 = "JkLWNDe567lhvbnIhbYv9nUWYDIVN06utc3krs0UZBI+A0YZtQmftBtY0ghXo4PSjgozZocdu9sYkkgZOgyRLg==";
};
};
- "@fluentui/react-focus-8.1.10" = {
+ "@fluentui/react-focus-8.1.11" = {
name = "_at_fluentui_slash_react-focus";
packageName = "@fluentui/react-focus";
- version = "8.1.10";
+ version = "8.1.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.1.10.tgz";
- sha512 = "sojXA6epu2QJbFf+XqP1AHOrrWssoQJWJNuzp0MCzQOWCUlLLqRpRUHtUKZzCnrbD9G5MOW8/192m/rSPyM7eA==";
+ url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.1.11.tgz";
+ sha512 = "tPWSqvWONm+guQFaeBpX9E9u6D9mJzIHscx7jsswh4SAtx0/KfcDEa0w/rYOZnriz4+kY7M8+wo0wwzkDI5I1Q==";
};
};
- "@fluentui/react-hooks-8.2.6" = {
+ "@fluentui/react-hooks-8.2.7" = {
name = "_at_fluentui_slash_react-hooks";
packageName = "@fluentui/react-hooks";
- version = "8.2.6";
+ version = "8.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.2.6.tgz";
- sha512 = "nz0iycSUmGX6eBKsmW23ocmKn/HdV7c8HnMHx5fcGIQbOqOH8Hv4wq8t3RozsZBapIi/nDjpZs2UvB4zDFsg1g==";
+ url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.2.7.tgz";
+ sha512 = "eky46Uvy7jB27PmBBuFCvB9V9sXxrlZGcLuzDVhBWn1h3zOgtmu0txTrGYfMG/eOOlR9zf/EdDqc0F/jcQpslA==";
};
};
"@fluentui/react-window-provider-1.0.2" = {
@@ -2434,13 +2434,13 @@ let
sha512 = "2otMyJ+s+W+hjBD4BKjwYKKinJUDeIKYKz93qKrrJS0i3fKfftNroy9dHFlIblZ7n747L334plLi3bzQO1bnvA==";
};
};
- "@fluentui/style-utilities-8.2.2" = {
+ "@fluentui/style-utilities-8.3.0" = {
name = "_at_fluentui_slash_style-utilities";
packageName = "@fluentui/style-utilities";
- version = "8.2.2";
+ version = "8.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.2.2.tgz";
- sha512 = "PKixlYfY93XOZRPNi+I8Qw9SkcBZsnG/qg2+3IxLGXpCVYKOmP52oR7N5j/nmspQZXdEoHehYa2z/lsKC2xw1w==";
+ url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.3.0.tgz";
+ sha512 = "NGcT7XiEWR4LbtiPV9900N6DhQKRdG1cJm0efA1pUk640XxVFD0nnR/RmQFPtC3bkDRcVv7jK8E/0SSlRPkkbw==";
};
};
"@fluentui/theme-1.7.4" = {
@@ -2452,22 +2452,22 @@ let
sha512 = "o4eo7lstLxxXl1g2RR9yz18Yt8yjQO/LbQuZjsiAfv/4Bf0CRnb+3j1F7gxIdBWAchKj9gzaMpIFijfI98pvYQ==";
};
};
- "@fluentui/theme-2.2.1" = {
+ "@fluentui/theme-2.2.2" = {
name = "_at_fluentui_slash_theme";
packageName = "@fluentui/theme";
- version = "2.2.1";
+ version = "2.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.2.1.tgz";
- sha512 = "1G92TftVulrGXklL5upaN/WrrSzY/va39RM1eo0XO/Q3+kAhAajclQAXb7XanqOsVFcAqK1DbVvWayrY9DG2Qg==";
+ url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.2.2.tgz";
+ sha512 = "aR/Kn8B/ch/CYDwKWMv/fXrTaRXoQj86AhhmOOuq3GR3f4Qw53js7SaQMPJ6K/Ii6OS8chNmy+xelrPAqZStYA==";
};
};
- "@fluentui/utilities-8.2.2" = {
+ "@fluentui/utilities-8.3.0" = {
name = "_at_fluentui_slash_utilities";
packageName = "@fluentui/utilities";
- version = "8.2.2";
+ version = "8.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.2.2.tgz";
- sha512 = "aM2/CgoTIssMDs7MoTla+q/VXN5Gkk4s12S8GZNp87cmEzDy008tKkiRpHj6PXZuvJL5bctZco9YQgusO0jZEg==";
+ url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.3.0.tgz";
+ sha512 = "fOvYjUtwDrj0SoZXphbXLclCyrgiJCxkBU4z15g/HaD8nwhndwc5msjllxMO0BWWeEh0CEEbUn61DqPGMot/wQ==";
};
};
"@google-cloud/paginator-3.0.5" = {
@@ -2506,13 +2506,13 @@ let
sha512 = "d4VSA86eL/AFTe5xtyZX+ePUjE8dIFu2T8zmdeNBSa5/kNgXPCx/o/wbFNHAGLJdGnk1vddRuMESD9HbOC8irw==";
};
};
- "@google-cloud/pubsub-2.16.3" = {
+ "@google-cloud/pubsub-2.16.6" = {
name = "_at_google-cloud_slash_pubsub";
packageName = "@google-cloud/pubsub";
- version = "2.16.3";
+ version = "2.16.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.16.3.tgz";
- sha512 = "KkH0IH1PUzgWBquUhWfSG//R/8K3agYRyrqqeNtLjbr2lnehrOVllPtdnroO4q2lxoul3WrK+esPvtVywkb4Ag==";
+ url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.16.6.tgz";
+ sha512 = "Hsa95pbgUmgxmrAQRePqGfpCx/zEqd+ueZDdi4jjvnew6bAP3r0+i+3a1/qkNonQYcWcf0a2tJnZwVDuMznvog==";
};
};
"@graphql-cli/common-4.1.0" = {
@@ -3118,15 +3118,6 @@ let
sha512 = "Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==";
};
};
- "@jest/types-24.9.0" = {
- name = "_at_jest_slash_types";
- packageName = "@jest/types";
- version = "24.9.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz";
- sha512 = "XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==";
- };
- };
"@jest/types-25.5.0" = {
name = "_at_jest_slash_types";
packageName = "@jest/types";
@@ -4090,31 +4081,31 @@ let
sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==";
};
};
- "@netlify/build-18.2.9" = {
+ "@netlify/build-18.3.0" = {
name = "_at_netlify_slash_build";
packageName = "@netlify/build";
- version = "18.2.9";
+ version = "18.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/build/-/build-18.2.9.tgz";
- sha512 = "0resO0G+O8SKcQ7UGUeYmrZCL1qeki+cWo47lOQduo4RNjHNH6fS2HSLM0CJEwTKw9SNiJNBb7hZbRi7C/KNdQ==";
+ url = "https://registry.npmjs.org/@netlify/build/-/build-18.3.0.tgz";
+ sha512 = "/BMNPY7xNJRlckHsN6AvMsEQqX7gxZjl5stqUX6qY833Z0qs3IZXtEruMgnnyfDro6wBI1+ZQaPFc+8Gh1OgDA==";
};
};
- "@netlify/cache-utils-2.0.1" = {
+ "@netlify/cache-utils-2.0.3" = {
name = "_at_netlify_slash_cache-utils";
packageName = "@netlify/cache-utils";
- version = "2.0.1";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/cache-utils/-/cache-utils-2.0.1.tgz";
- sha512 = "fAw8rMnl14f9TZmKV1g8+/8yVriitfNf4KcdfGPpGLpmQtpnSiynbzhpOLBHsLtViBCJ8O1vy24LK6CJx9JoqA==";
+ url = "https://registry.npmjs.org/@netlify/cache-utils/-/cache-utils-2.0.3.tgz";
+ sha512 = "820dYhacTHXKxpYm81VlmCJ48ySGj+6GZi1oPLevdTSkMXGM1BphBKUjM/r9+GUE1ocGOh8Vdt3PsDp8f7gS4w==";
};
};
- "@netlify/config-15.3.3" = {
+ "@netlify/config-15.3.8" = {
name = "_at_netlify_slash_config";
packageName = "@netlify/config";
- version = "15.3.3";
+ version = "15.3.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/config/-/config-15.3.3.tgz";
- sha512 = "etpctdQCHE/ALOYSWbyXzsquUSswWeUaqMIXfJsJ9pytMmB4oHjB6eu/GIT8FY1R0E6A/aVS2ibeVVexObNXbQ==";
+ url = "https://registry.npmjs.org/@netlify/config/-/config-15.3.8.tgz";
+ sha512 = "TAerf7vD3TEyyb1u+Z3LXYYj0+nMI2BAKAWOqNV/+Tm0DmN7ZMbR/skO9rFVhy3SP/FEgf5K31mAkjxzJgyD6w==";
};
};
"@netlify/esbuild-0.13.6" = {
@@ -4126,13 +4117,13 @@ let
sha512 = "tiKmDcHM2riSVN79c0mJY/67EBDafXQAMitHuLiCDAMdtz3kfv+NqdVG5krgf5lWR8Uf8AeZrUW5Q9RP25REvw==";
};
};
- "@netlify/framework-info-5.8.0" = {
+ "@netlify/framework-info-5.9.1" = {
name = "_at_netlify_slash_framework-info";
packageName = "@netlify/framework-info";
- version = "5.8.0";
+ version = "5.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-5.8.0.tgz";
- sha512 = "gc8K0BT6CSHnYFirLmUWLoKah+AjStWBsGmwa7gbRmeAaRThJhkRcRVE03EhSnrMQkAMO3IIIMklbE8i/9UpEg==";
+ url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-5.9.1.tgz";
+ sha512 = "EBbR4grr0innWmKk43q5iLokcuJ1bZn/56KBz8WyKsarCvLkt6SqHaxXJp3Uab1D6Fhn0BTQBhIttb3KdyPGdQ==";
};
};
"@netlify/functions-utils-2.0.2" = {
@@ -4414,13 +4405,13 @@ let
sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==";
};
};
- "@npmcli/arborist-2.8.1" = {
+ "@npmcli/arborist-2.8.2" = {
name = "_at_npmcli_slash_arborist";
packageName = "@npmcli/arborist";
- version = "2.8.1";
+ version = "2.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.8.1.tgz";
- sha512 = "kbBWllN4CcdeN032Rw6b+TIsyoxWcv4YNN5gzkMCe8cCu0llwlq5P7uAD2oyL24QdmGlrlg/Yp0L1JF+HD8g9Q==";
+ url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.8.2.tgz";
+ sha512 = "6E1XJ0YXBaI9J+25gcTF110MGNx3jv6npr4Rz1U0UAqkuVV7bbDznVJvNqi6F0p8vgrE+Smf9jDTn1DR+7uBjQ==";
};
};
"@npmcli/ci-detect-1.3.0" = {
@@ -4513,13 +4504,13 @@ let
sha512 = "QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==";
};
};
- "@npmcli/run-script-1.8.5" = {
+ "@npmcli/run-script-1.8.6" = {
name = "_at_npmcli_slash_run-script";
packageName = "@npmcli/run-script";
- version = "1.8.5";
+ version = "1.8.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-1.8.5.tgz";
- sha512 = "NQspusBCpTjNwNRFMtz2C5MxoxyzlbuJ4YEhxAKrIonTiirKDtatsZictx9RgamQIx6+QuHMNmPl0wQdoESs9A==";
+ url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-1.8.6.tgz";
+ sha512 = "e42bVZnC6VluBZBAFEr3YrdqSspG3bgilyg4nSLBJ7TRGNCzxHa92XAHxQBLYg0BmgwO4b2mf3h/l5EkEWRn3g==";
};
};
"@oclif/color-0.1.2" = {
@@ -4549,13 +4540,13 @@ let
sha512 = "Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA==";
};
};
- "@oclif/core-0.5.30" = {
+ "@oclif/core-0.5.31" = {
name = "_at_oclif_slash_core";
packageName = "@oclif/core";
- version = "0.5.30";
+ version = "0.5.31";
src = fetchurl {
- url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.30.tgz";
- sha512 = "J655ku+fptWPukM15F4DzGZnD1Q1UAzsS7jUy/nHIVhuwjwhl7u9QHLTjZ+1ud/99N2iXaYsa70UcnC1G3mfHQ==";
+ url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.31.tgz";
+ sha512 = "VPWOR8RORgVlmuulcx/aft1nBhTjT7YiwCeZB/bAiNgqCQ4YncoeIIPJPJs/A0a0dIeOYACfxlp1Xw7vznpISg==";
};
};
"@oclif/errors-1.3.5" = {
@@ -5521,13 +5512,13 @@ let
sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang==";
};
};
- "@serverless/components-3.15.0" = {
+ "@serverless/components-3.15.1" = {
name = "_at_serverless_slash_components";
packageName = "@serverless/components";
- version = "3.15.0";
+ version = "3.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/components/-/components-3.15.0.tgz";
- sha512 = "oi5a1QjyAoH4CiSCNB+kIyvXMcs3tfLMGXM+pk7Ns1ra5ZWoD3PImRQKRUu/2BTSYqB6iUM3+HmMQGT1yORgBg==";
+ url = "https://registry.npmjs.org/@serverless/components/-/components-3.15.1.tgz";
+ sha512 = "NTwRE6mc6GUOiN586/ikTxXYF0S7Hd8hc01LGEPYCeOelUxNHCBt7vjuSLxIkSM06RTkjEYGrZgkrkqX5KkirQ==";
};
};
"@serverless/core-1.1.2" = {
@@ -5602,13 +5593,13 @@ let
sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog==";
};
};
- "@serverless/utils-5.6.0" = {
+ "@serverless/utils-5.7.0" = {
name = "_at_serverless_slash_utils";
packageName = "@serverless/utils";
- version = "5.6.0";
+ version = "5.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.6.0.tgz";
- sha512 = "R3mb6DlPwrlo49fwQNz3YTQb2XJCxVui+s/olVBSdAh82fi8EbbjgkZkaLKB9ES7lV2MIr3jqrIWjYyGE/2Bgw==";
+ url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.7.0.tgz";
+ sha512 = "4/9lTag4NNMtgoK7qRSoP//VplnKUTqgKMJ5pjvuXHFTBNoGYbdi5Cr1UmbHwnG8FfYBUy95jNUHjSEeUXDqgg==";
};
};
"@serverless/utils-china-1.1.4" = {
@@ -5773,13 +5764,13 @@ let
sha512 = "T3xfDqrEFKclHGdJx4/5+D5F7e76/99f33guE4RTlVITBhy7VVnjz4t/NDr3UYqcC0MgAmiC4bSVYHnlshuwJw==";
};
};
- "@snyk/cloud-config-parser-1.10.1" = {
+ "@snyk/cloud-config-parser-1.10.2" = {
name = "_at_snyk_slash_cloud-config-parser";
packageName = "@snyk/cloud-config-parser";
- version = "1.10.1";
+ version = "1.10.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/cloud-config-parser/-/cloud-config-parser-1.10.1.tgz";
- sha512 = "boqO3H4zkGo+Q2C7qyG2l/sQX80ZRSOlPCiRtgN9Xa7u9fM+qFGOaFOgNWfZZtU0wLBy2yDs5ipzdfqvp0ZEjg==";
+ url = "https://registry.npmjs.org/@snyk/cloud-config-parser/-/cloud-config-parser-1.10.2.tgz";
+ sha512 = "ovA6iX59jLOVMfZr6rsqYNcOIjZTYAbm34bn41m3hRbCPuZkxe3JNKxjsEFCFkZQBnGSebrbz8TGoe81y0L2Cw==";
};
};
"@snyk/cocoapods-lockfile-parser-3.6.2" = {
@@ -6322,13 +6313,13 @@ let
sha512 = "XP20kvfyMNlWdPVQXyuzA40LoCHbbJptikt7W+TlZ5sS+NNjk70xjXCtHBLEudp7li3JldXEFSIUzpW1a0WEhA==";
};
};
- "@turist/time-0.0.1" = {
+ "@turist/time-0.0.2" = {
name = "_at_turist_slash_time";
packageName = "@turist/time";
- version = "0.0.1";
+ version = "0.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@turist/time/-/time-0.0.1.tgz";
- sha512 = "M2BiThcbxMxSKX8W4z5u9jKZn6datnM3+FpEU+eYw0//l31E2xhqi7vTAuJ/Sf0P3yhp66SDJgPu3bRRpvrdQQ==";
+ url = "https://registry.npmjs.org/@turist/time/-/time-0.0.2.tgz";
+ sha512 = "qLOvfmlG2vCVw5fo/oz8WAZYlpe5a5OurgTj3diIxJCdjRHpapC+vQCz3er9LV79Vcat+DifBjeAhOAdmndtDQ==";
};
};
"@types/accepts-1.3.5" = {
@@ -7132,13 +7123,13 @@ let
sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==";
};
};
- "@types/mime-types-2.1.0" = {
+ "@types/mime-types-2.1.1" = {
name = "_at_types_slash_mime-types";
packageName = "@types/mime-types";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.0.tgz";
- sha1 = "9ca52cda363f699c69466c2a6ccdaad913ea7a73";
+ url = "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz";
+ sha512 = "vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw==";
};
};
"@types/minimatch-3.0.5" = {
@@ -7267,13 +7258,13 @@ let
sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw==";
};
};
- "@types/node-14.17.9" = {
+ "@types/node-14.17.10" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "14.17.9";
+ version = "14.17.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-14.17.9.tgz";
- sha512 = "CMjgRNsks27IDwI785YMY0KLt3co/c0cQ5foxHYv/shC2w8oOnVwz5Ubq1QG5KzrcW+AXk6gzdnxIkDnTvzu3g==";
+ url = "https://registry.npmjs.org/@types/node/-/node-14.17.10.tgz";
+ sha512 = "09x2d6kNBwjHgyh3jOUE2GE4DFoxDriDvWdu6mFhMP1ysynGYazt4ecZmJlL6/fe4Zi2vtYvTvtL7epjQQrBhA==";
};
};
"@types/node-15.12.5" = {
@@ -7285,13 +7276,13 @@ let
sha512 = "se3yX7UHv5Bscf8f1ERKvQOD6sTyycH3hdaoozvaLxgUiY5lIGEeH37AD0G0Qi9kPqihPn0HOfd2yaIEN9VwEg==";
};
};
- "@types/node-15.14.7" = {
+ "@types/node-15.14.8" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "15.14.7";
+ version = "15.14.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-15.14.7.tgz";
- sha512 = "FA45p37/mLhpebgbPWWCKfOisTjxGK9lwcHlJ6XVLfu3NgfcazOJHdYUZCWPMK8QX4LhNZdmfo6iMz9FqpUbaw==";
+ url = "https://registry.npmjs.org/@types/node/-/node-15.14.8.tgz";
+ sha512 = "+ZjmmoGV7WBwhzNh/GkwehB7uyXn9HFwzQUfj9pbyR8eFAq20Qguoh93sPbWzzhsbhTme6YE92/iJ54Z0WRH7A==";
};
};
"@types/node-15.6.1" = {
@@ -7321,13 +7312,13 @@ let
sha512 = "OyiZPohMMjZEYqcVo/UJ04GyAxXOJEZO/FpzyXxcH4r/ArrVoXHf4MbUrkLp0Tz7/p1mMKpo5zJ6ZHl8XBNthQ==";
};
};
- "@types/node-16.6.1" = {
+ "@types/node-16.6.2" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "16.6.1";
+ version = "16.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.6.1.tgz";
- sha512 = "Sr7BhXEAer9xyGuCN3Ek9eg9xPviCF2gfu9kTfuU2HkTVAMYSDeX40fvpmo72n5nansg3nsBjuQBrsS28r+NUw==";
+ url = "https://registry.npmjs.org/@types/node/-/node-16.6.2.tgz";
+ sha512 = "LSw8TZt12ZudbpHc6EkIyDM3nHVWKYrAvGy6EAJfNfjusbwnThqjqxUKKRwuV3iWYeW/LYMzNgaq3MaLffQ2xA==";
};
};
"@types/node-6.14.13" = {
@@ -7465,13 +7456,13 @@ let
sha512 = "EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==";
};
};
- "@types/rc-1.1.0" = {
+ "@types/rc-1.2.0" = {
name = "_at_types_slash_rc";
packageName = "@types/rc";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rc/-/rc-1.1.0.tgz";
- sha512 = "qw1q31xPnaeExbOA1daA3nfeKW2uZQN4Xg8QqZDM3vsXPHK/lyDpjWXJQIcrByRDcBzZJ3ccchSMMTDtCWgFpA==";
+ url = "https://registry.npmjs.org/@types/rc/-/rc-1.2.0.tgz";
+ sha512 = "eEQ6Hq0K0VShe00iDzG1DKxA5liTsk7jgcR5eDZ5d5cnivLjPqqcDgqurS5NlQJNfgTNg51dp7zFGWHomr5NJQ==";
};
};
"@types/react-16.14.13" = {
@@ -7753,6 +7744,15 @@ let
sha512 = "KtQLad12+4T/NfSxpoDhmr22+fig3T7/08QCgmutYA6QSznSRmEtuL95GrhVV40/0otTEdFc+etRcCTqhh1q5Q==";
};
};
+ "@types/uuid-3.4.10" = {
+ name = "_at_types_slash_uuid";
+ packageName = "@types/uuid";
+ version = "3.4.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.10.tgz";
+ sha512 = "BgeaZuElf7DEYZhWYDTc/XcLZXdVgFkVSTa13BqKvbnmUrxr3TJFKofUxCtDO9UQOdhnV+HPOESdHiHKZOJV1A==";
+ };
+ };
"@types/uuid-8.3.1" = {
name = "_at_types_slash_uuid";
packageName = "@types/uuid";
@@ -7825,6 +7825,15 @@ let
sha512 = "B5m9aq7cbbD/5/jThEr33nUY8WEfVi6A2YKCTOvw5Ldy7mtsOkqRvGjnzy6g7iMMDsgu7xREuCzqATLDLQVKcQ==";
};
};
+ "@types/ws-6.0.4" = {
+ name = "_at_types_slash_ws";
+ packageName = "@types/ws";
+ version = "6.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/ws/-/ws-6.0.4.tgz";
+ sha512 = "PpPrX7SZW9re6+Ha8ojZG4Se8AZXgf0GK6zmfqEuCsY49LFDNXO3SByp44X3dFEqtB73lkCDAdUazhAjVPiNwg==";
+ };
+ };
"@types/ws-7.4.4" = {
name = "_at_types_slash_ws";
packageName = "@types/ws";
@@ -7852,15 +7861,6 @@ let
sha512 = "JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==";
};
};
- "@types/yargs-13.0.12" = {
- name = "_at_types_slash_yargs";
- packageName = "@types/yargs";
- version = "13.0.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz";
- sha512 = "qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==";
- };
- };
"@types/yargs-15.0.14" = {
name = "_at_types_slash_yargs";
packageName = "@types/yargs";
@@ -8203,31 +8203,31 @@ let
sha512 = "B6PedV/H2kcGEAgnqncwjHe3E8fqUNXCLv1BsrNwkHHWQJXkDN7dFeuEB4oaucBOVbjhH7KGLJ6JAiXPE3S7xA==";
};
};
- "@vue/compiler-core-3.2.2" = {
+ "@vue/compiler-core-3.2.4" = {
name = "_at_vue_slash_compiler-core";
packageName = "@vue/compiler-core";
- version = "3.2.2";
+ version = "3.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.2.tgz";
- sha512 = "QhCI0ZU5nAR0LMcLgzW3v75374tIrHGp8XG5CzJS7Nsy+iuignbE4MZ2XJfh5TGIrtpuzfWA4eTIfukZf/cRdg==";
+ url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.4.tgz";
+ sha512 = "c8NuQq7mUXXxA4iqD5VUKpyVeklK53+DMbojYMyZ0VPPrb0BUWrZWFiqSDT+MFDv0f6Hv3QuLiHWb1BWMXBbrw==";
};
};
- "@vue/compiler-dom-3.2.2" = {
+ "@vue/compiler-dom-3.2.4" = {
name = "_at_vue_slash_compiler-dom";
packageName = "@vue/compiler-dom";
- version = "3.2.2";
+ version = "3.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.2.tgz";
- sha512 = "ggcc+NV/ENIE0Uc3TxVE/sKrhYVpLepMAAmEiQ047332mbKOvUkowz4TTFZ+YkgOIuBOPP0XpCxmCMg7p874mA==";
+ url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.4.tgz";
+ sha512 = "uj1nwO4794fw2YsYas5QT+FU/YGrXbS0Qk+1c7Kp1kV7idhZIghWLTjyvYibpGoseFbYLPd+sW2/noJG5H04EQ==";
};
};
- "@vue/shared-3.2.2" = {
+ "@vue/shared-3.2.4" = {
name = "_at_vue_slash_shared";
packageName = "@vue/shared";
- version = "3.2.2";
+ version = "3.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.2.tgz";
- sha512 = "dvYb318tk9uOzHtSaT3WII/HscQSIRzoCZ5GyxEb3JlkEXASpAUAQwKnvSe2CudnF8XHFRTB7VITWSnWNLZUtA==";
+ url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.4.tgz";
+ sha512 = "j2j1MRmjalVKr3YBTxl/BClSIc8UQ8NnPpLYclxerK65JIowI4O7n8O8lElveEtEoHxy1d7BelPUDI0Q4bumqg==";
};
};
"@webassemblyjs/ast-1.11.1" = {
@@ -9895,6 +9895,15 @@ let
sha512 = "bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==";
};
};
+ "ansi-regex-6.0.0" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.0.tgz";
+ sha512 = "tAaOSrWCHF+1Ear1Z4wnJCXA9GGox4K6Ic85a5qalES2aeEwQGr7UC93mwef49536PkCYjzkp0zIxfFvexJ6zQ==";
+ };
+ };
"ansi-split-1.0.1" = {
name = "ansi-split";
packageName = "ansi-split";
@@ -11407,13 +11416,13 @@ let
sha512 = "vRfQwcqBnJTLzVQo72Sf7KIUbcSUP5hNchx6udI1U6LuPQpfePgdjJzlCe76yFZ8pxlLjn9lwcl/Ya0TSOv0Tw==";
};
};
- "async-retry-1.3.1" = {
+ "async-retry-1.3.3" = {
name = "async-retry";
packageName = "async-retry";
- version = "1.3.1";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/async-retry/-/async-retry-1.3.1.tgz";
- sha512 = "aiieFW/7h3hY0Bq5d+ktDBejxuwR78vRu9hDUdR8rNhSaQ29VzPL4AoIRG7D/c7tdenwOcKvgPM6tIxB3cB6HA==";
+ url = "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz";
+ sha512 = "wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==";
};
};
"async-retry-ng-2.0.1" = {
@@ -11650,13 +11659,13 @@ let
sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg==";
};
};
- "aws-sdk-2.968.0" = {
+ "aws-sdk-2.971.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.968.0";
+ version = "2.971.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.968.0.tgz";
- sha512 = "6kXJ/4asP+zI8oFJAUqEmVoaLOnAYriorigKy8ZjFe3ISl4w0PEOXBG1TtQFuLiNPR3BAvhRuOQ5yH6JfqDNNw==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.971.0.tgz";
+ sha512 = "7mPN7HnPILMNA8YMEMCZp/bi3o4blPoQ1TbBWaowGUt8RhkxgdAAqMy2vAkhElT5xWjROZS+1NgG3khzBlb0xw==";
};
};
"aws-sign2-0.6.0" = {
@@ -14035,13 +14044,13 @@ let
sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==";
};
};
- "browserslist-4.16.7" = {
+ "browserslist-4.16.8" = {
name = "browserslist";
packageName = "browserslist";
- version = "4.16.7";
+ version = "4.16.8";
src = fetchurl {
- url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.7.tgz";
- sha512 = "7I4qVwqZltJ7j37wObBe3SoTz+nS8APaNcrBOlgoirb6/HbEU2XxW/LpUDTCngM6iauwFqmRTuOMfyKnFGY5JA==";
+ url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.8.tgz";
+ sha512 = "sc2m9ohR/49sWEbPj14ZSSZqp+kbi16aLao42Hmn3Z8FpjuMaq2xCA2l4zl9ITfyzvnvyE0hcg62YkIGKxgaNQ==";
};
};
"brq-0.1.8" = {
@@ -15503,13 +15512,13 @@ let
sha512 = "+2jlOobSk52c1VU6fzkh3UwqHMdSlgH1xFv9FKMqHiNCpXsGPQa/+81AFa+i3jZ253Mq9aAycPwDjnn1XbRNNw==";
};
};
- "chart.js-3.5.0" = {
+ "chart.js-3.5.1" = {
name = "chart.js";
packageName = "chart.js";
- version = "3.5.0";
+ version = "3.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/chart.js/-/chart.js-3.5.0.tgz";
- sha512 = "J1a4EAb1Gi/KbhwDRmoovHTRuqT8qdF0kZ4XgwxpGethJHUdDrkqyPYwke0a+BuvSeUxPf8Cos6AX2AB8H8GLA==";
+ url = "https://registry.npmjs.org/chart.js/-/chart.js-3.5.1.tgz";
+ sha512 = "m5kzt72I1WQ9LILwQC4syla/LD/N413RYv2Dx2nnTkRS9iv/ey1xLTt0DnPc/eWV4zI+BgEgDYBIzbQhZHc/PQ==";
};
};
"chartjs-color-2.4.1" = {
@@ -15971,13 +15980,13 @@ let
sha512 = "OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==";
};
};
- "cldr-6.1.1" = {
+ "cldr-7.1.0" = {
name = "cldr";
packageName = "cldr";
- version = "6.1.1";
+ version = "7.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cldr/-/cldr-6.1.1.tgz";
- sha512 = "Efm9g4BcBHWdy7jMcuXtWk7PI1gIx4nO1BhJyaFTeRktytW0tR4rDmm+PG7mSMLrnNUFcr3ww8JwJAgkNRMv5Q==";
+ url = "https://registry.npmjs.org/cldr/-/cldr-7.1.0.tgz";
+ sha512 = "GYS0GiLZ2bTOUv4Hye/z5z0feflEuQYdY3LM/vn0RFbIQKCA/q3f/l8P22N37W+tjNiQOWbnGpXz3tcaH4+NAg==";
};
};
"clean-css-3.4.28" = {
@@ -17780,13 +17789,13 @@ let
sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
};
};
- "constructs-3.3.124" = {
+ "constructs-3.3.126" = {
name = "constructs";
packageName = "constructs";
- version = "3.3.124";
+ version = "3.3.126";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-3.3.124.tgz";
- sha512 = "Jj/I48WUvCUudNOJYslOXCFgPK+rg8x0JQdUpfUHh1YA2/uE9LheTHgm+yMg9BGlrfgulAUIc8bg3eUJlVNK0g==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-3.3.126.tgz";
+ sha512 = "2jnFK4CL9oc3yAtzSe3jUpdpW8eVGNNU3vAeXTHLv7ySHfHvLYsTDgr3txs1oi9anwXdJgivI6gB0JUjuT7T0g==";
};
};
"consume-http-header-1.0.0" = {
@@ -17862,13 +17871,13 @@ let
sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
};
};
- "contentful-management-7.31.0" = {
+ "contentful-management-7.32.0" = {
name = "contentful-management";
packageName = "contentful-management";
- version = "7.31.0";
+ version = "7.32.0";
src = fetchurl {
- url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.31.0.tgz";
- sha512 = "YhPikvkO/ckRTO400I+iHYpVLuHwPyMzTQcMwBWpUluXYCF45I/RpWw7cyNQciQ19Q0NpjgEfUTQnhFhIqHtwA==";
+ url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.32.0.tgz";
+ sha512 = "L3W3XuSwRzW5X0iVj4rwW8IGSc8+yr+VIzSmTzu5aJv0qVGpYyIAq741nhZj8WhnkJJJu1JisZaRNbj6mGe1wQ==";
};
};
"contentful-sdk-core-6.8.0" = {
@@ -18294,31 +18303,31 @@ let
sha512 = "5+5VxRFmSf97nM8Jr2wzOwLqRo6zphH2aX+7KsAUONObyzakDNq2G/bgbhinxB4PoV9L3aXQYhiDKyIKWd2c8g==";
};
};
- "core-js-3.16.1" = {
+ "core-js-3.16.2" = {
name = "core-js";
packageName = "core-js";
- version = "3.16.1";
+ version = "3.16.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.16.1.tgz";
- sha512 = "AAkP8i35EbefU+JddyWi12AWE9f2N/qr/pwnDtWz4nyUIBGMJPX99ANFFRSw6FefM374lDujdtLDyhN2A/btHw==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.16.2.tgz";
+ sha512 = "P0KPukO6OjMpjBtHSceAZEWlDD1M2Cpzpg6dBbrjFqFhBHe/BwhxaP820xKOjRn/lZRQirrCusIpLS/n2sgXLQ==";
};
};
- "core-js-compat-3.16.1" = {
+ "core-js-compat-3.16.2" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.16.1";
+ version = "3.16.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.16.1.tgz";
- sha512 = "NHXQXvRbd4nxp9TEmooTJLUf94ySUG6+DSsscBpTftN1lQLQ4LjnWvc7AoIo4UjDsFF3hB8Uh5LLCRRdaiT5MQ==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.16.2.tgz";
+ sha512 = "4lUshXtBXsdmp8cDWh6KKiHUg40AjiuPD3bOWkNVsr1xkAhpUqCjaZ8lB1bKx9Gb5fXcbRbFJ4f4qpRIRTuJqQ==";
};
};
- "core-js-pure-3.16.1" = {
+ "core-js-pure-3.16.2" = {
name = "core-js-pure";
packageName = "core-js-pure";
- version = "3.16.1";
+ version = "3.16.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.16.1.tgz";
- sha512 = "TyofCdMzx0KMhi84mVRS8rL1XsRk2SPUNz2azmth53iRN0/08Uim9fdhQTaZTG1LqaXHYVci4RDHka6WrXfnvg==";
+ url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.16.2.tgz";
+ sha512 = "oxKe64UH049mJqrKkynWp6Vu0Rlm/BTXO/bJZuN2mmR3RtOFNepLlSWDd1eo16PzHpQAoNG97rLU1V/YxesJjw==";
};
};
"core-util-is-1.0.2" = {
@@ -18429,15 +18438,6 @@ let
sha1 = "aba6c5833be410d45b1eca3e6d583844ce682c77";
};
};
- "cp-file-6.2.0" = {
- name = "cp-file";
- packageName = "cp-file";
- version = "6.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cp-file/-/cp-file-6.2.0.tgz";
- sha512 = "fmvV4caBnofhPe8kOcitBwSn2f39QLjnAnGq3gO9dfd75mUytzKNZB1hde6QHunW2Rt+OwuBOMc3i1tNElbszA==";
- };
- };
"cp-file-7.0.0" = {
name = "cp-file";
packageName = "cp-file";
@@ -18555,13 +18555,13 @@ let
sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6";
};
};
- "create-gatsby-1.11.0" = {
+ "create-gatsby-1.12.0" = {
name = "create-gatsby";
packageName = "create-gatsby";
- version = "1.11.0";
+ version = "1.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.11.0.tgz";
- sha512 = "3FM3YJI5OExHIUUiJSASBibwzo7oBKtQYxHB0YeLC/7U7rkSJWjSbJ+cJllC+NeCGoDIzZ21QTkhczzzz7j1FQ==";
+ url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.12.0.tgz";
+ sha512 = "d8wlwgNgKrmd6J+cr4z1Hsis+sCwr9LoxnqSFqFzXcWowlODS5NP8gUZdCZ54hHd+0qIuAA77Wp67GAyhkFlCA==";
};
};
"create-graphback-1.0.1" = {
@@ -19383,13 +19383,13 @@ let
sha512 = "4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw==";
};
};
- "d3-7.0.0" = {
+ "d3-7.0.1" = {
name = "d3";
packageName = "d3";
- version = "7.0.0";
+ version = "7.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/d3/-/d3-7.0.0.tgz";
- sha512 = "t+jEKGO2jQiSBLJYYq6RFc500tsCeXBB4x41oQaSnZD3Som95nQrlw9XJGrFTMUOQOkwSMauWy9+8Tz1qm9UZw==";
+ url = "https://registry.npmjs.org/d3/-/d3-7.0.1.tgz";
+ sha512 = "74zonD4nAtxF9dtwFwJ3RuoHPh2D/UTFX26midBuMVH+7pRbOezuyLUIb8mbQMuYFlcUXT+xy++orCmnvMM/CA==";
};
};
"d3-array-1.2.4" = {
@@ -19410,13 +19410,13 @@ let
sha512 = "B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==";
};
};
- "d3-array-3.0.1" = {
+ "d3-array-3.0.2" = {
name = "d3-array";
packageName = "d3-array";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/d3-array/-/d3-array-3.0.1.tgz";
- sha512 = "l3Bh5o8RSoC3SBm5ix6ogaFW+J6rOUm42yOtZ2sQPCEvCqUMepeX7zgrlLLGIemxgOyo9s2CsWEidnLv5PwwRw==";
+ url = "https://registry.npmjs.org/d3-array/-/d3-array-3.0.2.tgz";
+ sha512 = "nTN4OC6ufZueotlexbxBd2z8xmG1eIfhvP2m1auH2ONps0L+AZn1r0JWuzMXZ6XgOj1VBOp7GGZmEs9NUFEBbA==";
};
};
"d3-axis-1.0.12" = {
@@ -21048,6 +21048,15 @@ let
sha512 = "h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==";
};
};
+ "default-gateway-6.0.3" = {
+ name = "default-gateway";
+ packageName = "default-gateway";
+ version = "6.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz";
+ sha512 = "fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==";
+ };
+ };
"default-resolution-2.0.0" = {
name = "default-resolution";
packageName = "default-resolution";
@@ -21300,6 +21309,15 @@ let
sha512 = "CYiCSgIF1p6EUByQPlGkKnP1M9g0ZV3qMIrqMqZqdwazygIA/YP2vrbcyl1h/WppKJTdl1F85cXIle+394iDAQ==";
};
};
+ "denque-1.5.1" = {
+ name = "denque";
+ packageName = "denque";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/denque/-/denque-1.5.1.tgz";
+ sha512 = "XwE+iZ4D6ZUB7mfYRMb5wByE8L74HCn30FBN7sWnXksWc1LO1bPDl67pBR9o/kC4z/xSNAwkMYcGgqDV3BE3Hw==";
+ };
+ };
"dep-graph-1.1.0" = {
name = "dep-graph";
packageName = "dep-graph";
@@ -22848,13 +22866,13 @@ let
sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==";
};
};
- "electron-13.1.9" = {
+ "electron-13.2.1" = {
name = "electron";
packageName = "electron";
- version = "13.1.9";
+ version = "13.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/electron/-/electron-13.1.9.tgz";
- sha512 = "By4Zb72XNQLrPb70BXdIW3NtEHFwybP5DIQjohnCxOYONq5vojuHjNcTuWnBgMvwQ2qwykk6Tw5EwF2Pt0CWjA==";
+ url = "https://registry.npmjs.org/electron/-/electron-13.2.1.tgz";
+ sha512 = "/K0Uw+o3+phbHtrVL6qDFVJqmeRF6EIPwVeUHEH5R8JNy13f4X3RouKjQzVyY/Os8fEqYHGFONWhD6q6g750HQ==";
};
};
"electron-notarize-1.1.0" = {
@@ -22893,13 +22911,13 @@ let
sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ==";
};
};
- "electron-to-chromium-1.3.806" = {
+ "electron-to-chromium-1.3.812" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.3.806";
+ version = "1.3.812";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.806.tgz";
- sha512 = "AH/otJLAAecgyrYp0XK1DPiGVWcOgwPeJBOLeuFQ5l//vhQhwC9u6d+GijClqJAmsHG4XDue81ndSQPohUu0xA==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.812.tgz";
+ sha512 = "7KiUHsKAWtSrjVoTSzxQ0nPLr/a+qoxNZwkwd9LkylTOgOXSVXkQbpIVT0WAUQcI5gXq3SwOTCrK+WfINHOXQg==";
};
};
"electrum-client-git://github.com/janoside/electrum-client" = {
@@ -25361,15 +25379,6 @@ let
sha512 = "xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==";
};
};
- "fast-equals-1.6.3" = {
- name = "fast-equals";
- packageName = "fast-equals";
- version = "1.6.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-equals/-/fast-equals-1.6.3.tgz";
- sha512 = "4WKW0AL5+WEqO0zWavAfYGY1qwLsBgE//DN4TTcVEN2UlINgkv9b3vm2iHicoenWKSX9mKWmGOsU/iI5IST7pQ==";
- };
- };
"fast-equals-2.0.3" = {
name = "fast-equals";
packageName = "fast-equals";
@@ -25523,15 +25532,6 @@ let
sha512 = "lXatBjf3WPjmWD6DpIZxkeSsCOwqI0maYMpgDlx8g4U2qi4lbjA9oH/HD2a87G+KfsUmo5WbJFmqBZlPxtptag==";
};
};
- "fast-stringify-1.1.2" = {
- name = "fast-stringify";
- packageName = "fast-stringify";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-stringify/-/fast-stringify-1.1.2.tgz";
- sha512 = "SfslXjiH8km0WnRiuPfpUKwlZjW5I878qsOm+2x8x3TgqmElOOLh1rgJFb+PolNdNRK3r8urEefqx0wt7vx1dA==";
- };
- };
"fast-text-encoding-1.0.3" = {
name = "fast-text-encoding";
packageName = "fast-text-encoding";
@@ -25595,6 +25595,15 @@ let
sha512 = "HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==";
};
};
+ "fastq-1.12.0" = {
+ name = "fastq";
+ packageName = "fastq";
+ version = "1.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fastq/-/fastq-1.12.0.tgz";
+ sha512 = "VNX0QkHK3RsXVKr9KrlUv/FoTa0NdbYoHHl7uXHv2rzyHSlxjdNAKug2twd9luJxpcyNeAgf5iPPMutJO67Dfg==";
+ };
+ };
"fault-1.0.4" = {
name = "fault";
packageName = "fault";
@@ -26486,6 +26495,15 @@ let
sha512 = "p0vdtrM8oAMlscIXpX0e/eGWll5NPteVChNtlQncbIbivH+BdiwXHN5QO6myAfmebd027r9RiQKdUPsFAiEVgQ==";
};
};
+ "flow-parser-0.158.0" = {
+ name = "flow-parser";
+ packageName = "flow-parser";
+ version = "0.158.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.158.0.tgz";
+ sha512 = "0hMsPkBTRrkII/0YiG9ehOxFXy4gOWdk8RSRze5WbfeKAQpL5kC2K4BmumyTfU9o5gr7/llgElF3UpSSrjzQAA==";
+ };
+ };
"fluent-ffmpeg-2.1.2" = {
name = "fluent-ffmpeg";
packageName = "fluent-ffmpeg";
@@ -26648,13 +26666,13 @@ let
sha512 = "VjAQdSLsl6AkpZNyrQJfO7BXLo4chnStqb055bumZMbRUPpVuPN3a4ktsnRCmrFZjtMlYLkyXiR5rAs4WOpC4Q==";
};
};
- "follow-redirects-1.14.1" = {
+ "follow-redirects-1.14.2" = {
name = "follow-redirects";
packageName = "follow-redirects";
- version = "1.14.1";
+ version = "1.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz";
- sha512 = "HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg==";
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.2.tgz";
+ sha512 = "yLR6WaE2lbF0x4K2qE2p9PEXKLDjUjnR/xmjS3wHAYxtlsI9MLLBJUZirAHKzUZDGLxje7w/cXR49WOUo4rbsA==";
};
};
"follow-redirects-1.5.10" = {
@@ -27467,31 +27485,31 @@ let
sha1 = "cbed2d20a40c1f5679a35908e2b9415733e78db9";
};
};
- "gatsby-core-utils-2.11.0" = {
+ "gatsby-core-utils-2.12.0" = {
name = "gatsby-core-utils";
packageName = "gatsby-core-utils";
- version = "2.11.0";
+ version = "2.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.11.0.tgz";
- sha512 = "t5PL1/MvTPSG6IeJn+Yd3Fxp0L3HfLI1vvVsmxXvxEiwDp5MJjjtZbrSnWpST1oylMSKI/UECUEKQUax9UJW+A==";
+ url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.12.0.tgz";
+ sha512 = "aN9fub3XX/uEqAstxG3mr8BH6hMGhTmAzANZH3HSV4tyG1Y4a4FKisZA0ggmy/dKOy5cyeuoMHmzAr8+qtHcAw==";
};
};
- "gatsby-recipes-0.22.0" = {
+ "gatsby-recipes-0.23.0" = {
name = "gatsby-recipes";
packageName = "gatsby-recipes";
- version = "0.22.0";
+ version = "0.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.22.0.tgz";
- sha512 = "FQrM59qd64Pwe6UVJmuTAwyZx4IVkj0huwZ1y37IWn49Xuq0Ihhmsrb1BgP99euXZz34c+PWhsFnWvW26skgtw==";
+ url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.23.0.tgz";
+ sha512 = "dR/u2mFiWhPf+0O8MuFfnl5JTbjOChYKG9+CIhubLwAjJN0cDbvleSJEQ7K32quKd56dqNf1psXqpZ+UUlx8vA==";
};
};
- "gatsby-telemetry-2.11.0" = {
+ "gatsby-telemetry-2.12.0" = {
name = "gatsby-telemetry";
packageName = "gatsby-telemetry";
- version = "2.11.0";
+ version = "2.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.11.0.tgz";
- sha512 = "6GEcZpsY5N/+K+SGGdDHuOknjer6vsYLJsUuUWkz32t8OK9lE1cLvXIdO2eTHdS4rtWFM324a/yFMlizp59SbA==";
+ url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.12.0.tgz";
+ sha512 = "W27oKt7/ThrNz12lPiclb9J7v/Q6ZM5Eh+JQ5w/TRFs4vqLOsfJZxmYG2HzFvAZtoFUB1JsbvmHZDMxUtR84Uw==";
};
};
"gauge-1.2.7" = {
@@ -28530,13 +28548,13 @@ let
sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==";
};
};
- "globby-12.0.0" = {
+ "globby-12.0.1" = {
name = "globby";
packageName = "globby";
- version = "12.0.0";
+ version = "12.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/globby/-/globby-12.0.0.tgz";
- sha512 = "3mOIUduqSMHm6gNjIw9E641TZ93NB8lFVt+6MKIw6vUaIS5aSsw/6cl0gT86z1IoKlaL90BiOQlA593GUMlzEA==";
+ url = "https://registry.npmjs.org/globby/-/globby-12.0.1.tgz";
+ sha512 = "AofdCGi+crQ1uN9+nMbTnvC4XGNPJN9hRiPf+A76lUZIZoWoj4Z9iyUQGge7xCGKgR/7ejB36qoIlLoDBc7fYw==";
};
};
"globby-4.1.0" = {
@@ -28602,13 +28620,13 @@ let
sha512 = "uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==";
};
};
- "globule-1.3.2" = {
+ "globule-1.3.3" = {
name = "globule";
packageName = "globule";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/globule/-/globule-1.3.2.tgz";
- sha512 = "7IDTQTIu2xzXkT+6mlluidnWo+BypnbSoEVVQCGfzqnl5Ik8d3e1d4wycb8Rj9tWW+Z39uPWsdlquqiqPCd/pA==";
+ url = "https://registry.npmjs.org/globule/-/globule-1.3.3.tgz";
+ sha512 = "mb1aYtDbIjTu4ShMB85m3UzjX9BVKe9WCzsnfMSZk+K5GpIbBOexgg4PPCt5eHDEG5/ZQAUX2Kct02zfiPLsKg==";
};
};
"glogg-1.0.2" = {
@@ -28656,13 +28674,13 @@ let
sha512 = "Q+ZjUEvLQj/lrVHF/IQwRo6p3s8Nc44Zk/DALsN+ac3T4HY/g/3rrufkgtl+nZ1TW7DNAw5cTChdVp4apUXVgQ==";
};
};
- "google-auth-library-7.6.1" = {
+ "google-auth-library-7.6.2" = {
name = "google-auth-library";
packageName = "google-auth-library";
- version = "7.6.1";
+ version = "7.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.6.1.tgz";
- sha512 = "aP/WTx+rE3wQ3zPgiCZsJ1EIb2v7P+QwxVwAqrKjcPz4SK57kyAfcX75VoAgjtwZzl70upcNlvFn8FSmC4nMBQ==";
+ url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.6.2.tgz";
+ sha512 = "yvEnwVsvgH8RXTtpf6e84e7dqIdUEKJhmQvTJwzYP+RDdHjLrDp9sk2u2ZNDJPLKZ7DJicx/+AStcQspJiq+Qw==";
};
};
"google-closure-compiler-js-20170910.0.1" = {
@@ -28674,13 +28692,13 @@ let
sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew==";
};
};
- "google-gax-2.24.0" = {
+ "google-gax-2.24.2" = {
name = "google-gax";
packageName = "google-gax";
- version = "2.24.0";
+ version = "2.24.2";
src = fetchurl {
- url = "https://registry.npmjs.org/google-gax/-/google-gax-2.24.0.tgz";
- sha512 = "PtE/Zk3jPrUIAL9YsIq5e+04U3aqEg6/0DmtR/tXKhbcS7SRA1sbPZja+vevuUavIdCXEiBbaKkrBqcQvSxXmw==";
+ url = "https://registry.npmjs.org/google-gax/-/google-gax-2.24.2.tgz";
+ sha512 = "4OtyEIt/KAXRX5o2W/6DGf8MnMs1lMXwcGoPHR4PwXfTUVKjK7ywRe2/yRIMkYEDzAwu/kppPgfpX+kCG2rWfw==";
};
};
"google-p12-pem-3.1.2" = {
@@ -30204,6 +30222,15 @@ let
sha512 = "8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==";
};
};
+ "html-entities-2.3.2" = {
+ name = "html-entities";
+ packageName = "html-entities";
+ version = "2.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/html-entities/-/html-entities-2.3.2.tgz";
+ sha512 = "c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==";
+ };
+ };
"html-loader-1.1.0" = {
name = "html-loader";
packageName = "html-loader";
@@ -30538,6 +30565,15 @@ let
sha512 = "13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg==";
};
};
+ "http-proxy-middleware-2.0.1" = {
+ name = "http-proxy-middleware";
+ packageName = "http-proxy-middleware";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.1.tgz";
+ sha512 = "cfaXRVoZxSed/BmkA7SwBVNI9Kj7HFltaE5rqYOub5kWzWZ+gofV2koVN1j2rMW7pEfSSlCHGJ31xmuyFyfLOg==";
+ };
+ };
"http-signature-0.11.0" = {
name = "http-signature";
packageName = "http-signature";
@@ -31501,13 +31537,13 @@ let
sha512 = "zKSiXKhQveNteyhcj1CoOP8tqp1QuxPIPBl8Bid99DGLFqA1p87M6lNgfjJHSBoWJJlidGOv5rWjyYKEB3g2Jw==";
};
};
- "init-package-json-2.0.3" = {
+ "init-package-json-2.0.4" = {
name = "init-package-json";
packageName = "init-package-json";
- version = "2.0.3";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/init-package-json/-/init-package-json-2.0.3.tgz";
- sha512 = "tk/gAgbMMxR6fn1MgMaM1HpU1ryAmBWWitnxG5OhuNXeX0cbpbgV5jA4AIpQJVNoyOfOevTtO6WX+rPs+EFqaQ==";
+ url = "https://registry.npmjs.org/init-package-json/-/init-package-json-2.0.4.tgz";
+ sha512 = "gUACSdZYka+VvnF90TsQorC+1joAVWNI724vBNj3RD0LLMeDss2IuzaeiQs0T4YzKs76BPHtrp/z3sn2p+KDTw==";
};
};
"ink-2.7.1" = {
@@ -31861,6 +31897,15 @@ let
sha512 = "S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==";
};
};
+ "internal-ip-6.2.0" = {
+ name = "internal-ip";
+ packageName = "internal-ip";
+ version = "6.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/internal-ip/-/internal-ip-6.2.0.tgz";
+ sha512 = "D8WGsR6yDt8uq7vDMu7mjcR+yRMm3dW8yufyChmszWRjcSHuxLBkR3GdS2HZAjodsaGuCvXeEJpueisXJULghg==";
+ };
+ };
"internal-slot-1.0.3" = {
name = "internal-slot";
packageName = "internal-slot";
@@ -32410,13 +32455,13 @@ let
sha1 = "cfff471aee4dd5c9e158598fbe12967b5cdad345";
};
};
- "is-core-module-2.5.0" = {
+ "is-core-module-2.6.0" = {
name = "is-core-module";
packageName = "is-core-module";
- version = "2.5.0";
+ version = "2.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz";
- sha512 = "TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==";
+ url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.6.0.tgz";
+ sha512 = "wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ==";
};
};
"is-data-descriptor-0.1.4" = {
@@ -32779,6 +32824,15 @@ let
sha1 = "307a855b3cf1a938b44ea70d2c61106053714f34";
};
};
+ "is-ip-3.1.0" = {
+ name = "is-ip";
+ packageName = "is-ip";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-ip/-/is-ip-3.1.0.tgz";
+ sha512 = "35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q==";
+ };
+ };
"is-lambda-1.0.1" = {
name = "is-lambda";
packageName = "is-lambda";
@@ -33895,22 +33949,22 @@ let
sha512 = "z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==";
};
};
- "jest-get-type-24.9.0" = {
+ "jest-get-type-25.2.6" = {
name = "jest-get-type";
packageName = "jest-get-type";
- version = "24.9.0";
+ version = "25.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz";
- sha512 = "lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==";
+ url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.2.6.tgz";
+ sha512 = "DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==";
};
};
- "jest-get-type-25.2.6" = {
+ "jest-get-type-26.3.0" = {
name = "jest-get-type";
packageName = "jest-get-type";
- version = "25.2.6";
+ version = "26.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.2.6.tgz";
- sha512 = "DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==";
+ url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz";
+ sha512 = "TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==";
};
};
"jest-haste-map-25.5.1" = {
@@ -33949,22 +34003,22 @@ let
sha512 = "KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay/e/v+bmaFfrkfx43xD8QTfgobzlEXdIA==";
};
};
- "jest-validate-24.9.0" = {
+ "jest-validate-25.5.0" = {
name = "jest-validate";
packageName = "jest-validate";
- version = "24.9.0";
+ version = "25.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz";
- sha512 = "HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==";
+ url = "https://registry.npmjs.org/jest-validate/-/jest-validate-25.5.0.tgz";
+ sha512 = "okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ==";
};
};
- "jest-validate-25.5.0" = {
+ "jest-validate-26.6.2" = {
name = "jest-validate";
packageName = "jest-validate";
- version = "25.5.0";
+ version = "26.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-validate/-/jest-validate-25.5.0.tgz";
- sha512 = "okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ==";
+ url = "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz";
+ sha512 = "NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==";
};
};
"jest-worker-25.5.0" = {
@@ -34003,13 +34057,13 @@ let
sha512 = "dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==";
};
};
- "jitdb-3.1.7" = {
+ "jitdb-3.2.0" = {
name = "jitdb";
packageName = "jitdb";
- version = "3.1.7";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jitdb/-/jitdb-3.1.7.tgz";
- sha512 = "AV5AnBPlrQO75I3MKJFQMzQyM0ZQDwKcij299C1kBXt/U7dDqwQa8FaYYiHnbK8w9J4qXsvQOlM8P5HGY24zBQ==";
+ url = "https://registry.npmjs.org/jitdb/-/jitdb-3.2.0.tgz";
+ sha512 = "h44dG1Ba5eCIUcyekuH2PjrQa6GQ0s6hlwUUWZ+F0Q7OmFacwlUxJzvatDzRfWtRDkHFkv3+KDEN3dNMSougqg==";
};
};
"jju-1.4.0" = {
@@ -34453,13 +34507,13 @@ let
sha512 = "cUhDs2V2wYg7LFgm/X/uken8oF9re3vRORD08s0+z9Re8tt0pEehKmCotx3HYFhYrRhCEVvm66xjQt0t62GzXg==";
};
};
- "jsii-srcmak-0.1.326" = {
+ "jsii-srcmak-0.1.328" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.326";
+ version = "0.1.328";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.326.tgz";
- sha512 = "euZGdUcdZHI/cycrBZ7AVDea7Du2qu7TIzctEXUDuubtZ/n66rxWCQnlo/NsaQYx4HXkY47xaoVlRg69lhciZA==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.328.tgz";
+ sha512 = "+bjVQcM3SsXjod2QIKmBpC68wKVUVKbKqOGTGNHvhTAMfGIEC+WSzdw5b3Q5bt4wtIwM+dsQnF8UVponQY/tFA==";
};
};
"json-bigint-1.0.0" = {
@@ -34759,13 +34813,13 @@ let
sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A==";
};
};
- "json2jsii-0.1.296" = {
+ "json2jsii-0.1.299" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.1.296";
+ version = "0.1.299";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.296.tgz";
- sha512 = "sr2xUhMuUMMtDqxckludB4fZ+64xJ8K+HODXVO/jbkv0QND5I8PmHwz0IqjqGkpUNHqJkYvXzn06tgXy/V1WeQ==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.299.tgz";
+ sha512 = "O8iYtpYgyh434vyJyrzgid3LwW9drsdtxgTK1TttCG96sQWt8e+YzbBdB139aIly2rhrViDZZWrs8J6mgRf31A==";
};
};
"json3-3.2.6" = {
@@ -34966,6 +35020,15 @@ let
sha512 = "CXcRvMyTlnR53xMcKnuMzfCA5i/nfblTnnr74CZb6C4vG39eu6w51t7nKmU5MfLfbTgGItliNyjO/ciNPDqClg==";
};
};
+ "jsonrpc2-ws-1.0.0-beta9" = {
+ name = "jsonrpc2-ws";
+ packageName = "jsonrpc2-ws";
+ version = "1.0.0-beta9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonrpc2-ws/-/jsonrpc2-ws-1.0.0-beta9.tgz";
+ sha512 = "0KA+ufhSy7gN2/jGXagXLz4V5m+vymmNTI5IpNBIUiunday45P6dspdaOO0wwt2JJyrACC/BKMH154OqsuB80w==";
+ };
+ };
"jsonschema-1.4.0" = {
name = "jsonschema";
packageName = "jsonschema";
@@ -36506,13 +36569,13 @@ let
sha512 = "uxKD2HIj042/HBx77NBcmEPsD+hxCgAtjEWlYNScuUjIsh/62Uyu39GOR68TBR68v+jqDL9zfftCWoUo4y03sQ==";
};
};
- "localforage-1.9.0" = {
+ "localforage-1.10.0" = {
name = "localforage";
packageName = "localforage";
- version = "1.9.0";
+ version = "1.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/localforage/-/localforage-1.9.0.tgz";
- sha512 = "rR1oyNrKulpe+VM9cYmcFn6tsHuokyVHFaCM3+osEmxaHTbEk8oQu6eGDfS6DQLWi/N67XRmB8ECG37OES368g==";
+ url = "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz";
+ sha512 = "14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==";
};
};
"locate-java-home-1.1.2" = {
@@ -37910,13 +37973,13 @@ let
sha512 = "U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==";
};
};
- "log-process-errors-5.1.2" = {
+ "log-process-errors-6.3.0" = {
name = "log-process-errors";
packageName = "log-process-errors";
- version = "5.1.2";
+ version = "6.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/log-process-errors/-/log-process-errors-5.1.2.tgz";
- sha512 = "s4kmYHrzj543xUAIxc/cpmoiGZcbFwKRqqwO49DbgH+hFoSTswi0sYZuJKjUUc73b49MRPQGl0CNl8cx98/Wtg==";
+ url = "https://registry.npmjs.org/log-process-errors/-/log-process-errors-6.3.0.tgz";
+ sha512 = "dHwGgWFuz9LUDoLIG7E0SlDurosfZEpgNLJMPzNL9GPdyh4Wdm5RJlQbuqy3Pj2wOcbDzykeTCBEqyrwriqPnA==";
};
};
"log-symbols-1.0.2" = {
@@ -39557,6 +39620,15 @@ let
sha512 = "Ci6bIfq/UgcxPTYa8dQQ5FY3BzKkT894bwXWXxC/zqs0XgMO2cT20CGkOqda7gZNkmK5VP4x89IGZ6K7hfbn3Q==";
};
};
+ "mem-8.1.1" = {
+ name = "mem";
+ packageName = "mem";
+ version = "8.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mem/-/mem-8.1.1.tgz";
+ sha512 = "qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==";
+ };
+ };
"mem-fs-2.2.1" = {
name = "mem-fs";
packageName = "mem-fs";
@@ -39989,15 +40061,6 @@ let
sha512 = "y0y6CUB9RLVsy3kfgayU28746QrNMpSm9O/AYGNsBgOkJr/X/Jk0VLGoO8Ude7Bpa8adywzF+MzXNZRFRsNPhg==";
};
};
- "micro-memoize-2.1.2" = {
- name = "micro-memoize";
- packageName = "micro-memoize";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/micro-memoize/-/micro-memoize-2.1.2.tgz";
- sha512 = "COjNutiFgnDHXZEIM/jYuZPwq2h8zMUeScf6Sh6so98a+REqdlpaNS7Cb2ffGfK5I+xfgoA3Rx49NGuNJTJq3w==";
- };
- };
"micro-memoize-4.0.9" = {
name = "micro-memoize";
packageName = "micro-memoize";
@@ -40925,15 +40988,6 @@ let
sha1 = "114c949673e2a8a35e9d35788527aa37b679da2b";
};
};
- "moize-5.4.7" = {
- name = "moize";
- packageName = "moize";
- version = "5.4.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/moize/-/moize-5.4.7.tgz";
- sha512 = "7PZH8QFJ51cIVtDv7wfUREBd3gL59JB0v/ARA3RI9zkSRa9LyGjS1Bdldii2J1/NQXRQ/3OOVOSdnZrCcVaZlw==";
- };
- };
"moize-6.0.3" = {
name = "moize";
packageName = "moize";
@@ -41069,15 +41123,6 @@ let
sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92";
};
};
- "move-file-1.2.0" = {
- name = "move-file";
- packageName = "move-file";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/move-file/-/move-file-1.2.0.tgz";
- sha512 = "USHrRmxzGowUWAGBbJPdFjHzEqtxDU03pLHY0Rfqgtnq+q8FOIs8wvkkf+Udmg77SJKs47y9sI0jJvQeYsmiCA==";
- };
- };
"move-file-2.1.0" = {
name = "move-file";
packageName = "move-file";
@@ -42150,13 +42195,13 @@ let
sha512 = "BiQblBf85/GmerTZYxVH/1A4/O8qBvg0Qr8QX0MvxjAvO3j+jDUk1PSudMxNgJjU1zFw5pKM2/DBk70hP5gt+Q==";
};
};
- "netlify-headers-parser-3.0.1" = {
+ "netlify-headers-parser-4.0.1" = {
name = "netlify-headers-parser";
packageName = "netlify-headers-parser";
- version = "3.0.1";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-headers-parser/-/netlify-headers-parser-3.0.1.tgz";
- sha512 = "32oDkPa7+JdTFOp0M4H31AZDQ8YVJWgNlPkPuilb1C1dgvmAFXa8k4x+ADpgCbQfTMP3exO3vobvlfj8SUHxnA==";
+ url = "https://registry.npmjs.org/netlify-headers-parser/-/netlify-headers-parser-4.0.1.tgz";
+ sha512 = "Wq1ZKXLv8xnTmzWhjbkFnzIAAmas7GhtrFJXCeMfEoeGthuSekcEz+IMfpSDjhL/X3Ls5YIk9SuNUf/5/+TlEQ==";
};
};
"netlify-redirect-parser-11.0.2" = {
@@ -42438,6 +42483,15 @@ let
sha512 = "TBf8vh0NTD9DxG3oXQ1j/DCiREqDUI2khzJScZyq9w5AiYb+682WSjhl1f9Z1BJEjwWY7GFHQIpxxFVJ53OMfw==";
};
};
+ "node-bindgen-loader-1.0.1" = {
+ name = "node-bindgen-loader";
+ packageName = "node-bindgen-loader";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-bindgen-loader/-/node-bindgen-loader-1.0.1.tgz";
+ sha512 = "j6kNHKSGLye9qpR/OQh1BhDqyfHqNUIEGicx4NFZLUtseYagfPLLn2qW7MPssbAuAmGvAqNmAwYcW1O1uvsXZA==";
+ };
+ };
"node-bitmap-0.0.1" = {
name = "node-bitmap";
packageName = "node-bitmap";
@@ -42745,13 +42799,13 @@ let
sha512 = "fPNFIp2hF/Dq7qLDzSg4vZ0J4e9v60gJR+Qx7RbjbWqzPDdEqeVpEx5CFeDAELIl+A/woaaNn1fQ5nEVerMxJg==";
};
};
- "node-object-hash-2.3.8" = {
+ "node-object-hash-2.3.9" = {
name = "node-object-hash";
packageName = "node-object-hash";
- version = "2.3.8";
+ version = "2.3.9";
src = fetchurl {
- url = "https://registry.npmjs.org/node-object-hash/-/node-object-hash-2.3.8.tgz";
- sha512 = "hg/4TUqBOFdEhKjLF4jnn64utX3OWPVPWunVaDsaKxY+TVoViOFyW4lu34DES8yAqAqULSFm2jFL9SqVGes0Zg==";
+ url = "https://registry.npmjs.org/node-object-hash/-/node-object-hash-2.3.9.tgz";
+ sha512 = "NQt1YURrMPeQGZzW4lRbshUEF2PqxJEZYY4XJ/L+q33dI8yPYvnb7QXmwUcl1EuXluzeY4TEV+H6H0EmtI6f5g==";
};
};
"node-persist-2.1.0" = {
@@ -42808,13 +42862,13 @@ let
sha512 = "dBljNubVsolJkgfXUAF3KrCAO+hi5AXz+cftGjfHT76PyVB9pFUbAgTrkjZmKciC/B/14kEV5Ds+SwonqyTMfg==";
};
};
- "node-releases-1.1.74" = {
+ "node-releases-1.1.75" = {
name = "node-releases";
packageName = "node-releases";
- version = "1.1.74";
+ version = "1.1.75";
src = fetchurl {
- url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.74.tgz";
- sha512 = "caJBVempXZPepZoZAPCWRTNxYQ+xtG/KAi4ozTA5A+nJ7IU+kLQCbqaUjb5Rwy14M9upBWiQ4NutcmW04LJSRw==";
+ url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.75.tgz";
+ sha512 = "Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw==";
};
};
"node-source-walk-4.2.0" = {
@@ -43087,13 +43141,13 @@ let
sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==";
};
};
- "normalize-package-data-3.0.2" = {
+ "normalize-package-data-3.0.3" = {
name = "normalize-package-data";
packageName = "normalize-package-data";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.2.tgz";
- sha512 = "6CdZocmfGaKnIHPVFhJJZ3GuR8SsLKvDANFp47Jmy51aKIr8akjAWTSxtpI+MBgBFdSMRyo4hMpDlT6dTffgZg==";
+ url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz";
+ sha512 = "p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==";
};
};
"normalize-path-2.1.1" = {
@@ -45320,6 +45374,15 @@ let
sha512 = "oepllyG9gX1qH4Sm20YAKxg1GA7L7puhvGnTfimi31P07zSIj7SDV6YtuAx9nbJF51DES+2CIIRkXs8GKqWJxA==";
};
};
+ "p-retry-4.6.1" = {
+ name = "p-retry";
+ packageName = "p-retry";
+ version = "4.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz";
+ sha512 = "e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==";
+ };
+ };
"p-some-4.1.0" = {
name = "p-some";
packageName = "p-some";
@@ -46211,13 +46274,13 @@ let
sha512 = "nxl9nrnLQmh64iTzMfyylSlRozL7kAXIaxw1fVcLYdyhNkJCRUzirRZTikXGJsg+hc4fqpneTK6iU2H1Q8THSA==";
};
};
- "patel-0.34.0" = {
+ "patel-0.35.1" = {
name = "patel";
packageName = "patel";
- version = "0.34.0";
+ version = "0.35.1";
src = fetchurl {
- url = "https://registry.npmjs.org/patel/-/patel-0.34.0.tgz";
- sha512 = "3EvIzxbIFknpPa9QL2LYW+B35qFwER3Dn674KSC9Hc7DIuLJ7YMUJOR4dvCMPmpj/lB4fDvfr/VYV7FKKLEpFA==";
+ url = "https://registry.npmjs.org/patel/-/patel-0.35.1.tgz";
+ sha512 = "Em5Zh8t+oVnTNELwze1J9iQEeOBC+84B+UstU4hrmv16uvdunBzmMad6kY28nVxBxycqH6EYsDV2s1rO9IeZaw==";
};
};
"path-browserify-0.0.1" = {
@@ -46454,13 +46517,13 @@ let
sha512 = "Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==";
};
};
- "patrisika-0.22.2" = {
+ "patrisika-0.23.0" = {
name = "patrisika";
packageName = "patrisika";
- version = "0.22.2";
+ version = "0.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/patrisika/-/patrisika-0.22.2.tgz";
- sha512 = "8L6zlp+F4InnoFv0jjGdar948yEzP30bE96f6RHnECaUsU9BWRiTBhkAuhIobG4Lrr8CBscUcar7UWe0Bm1lqA==";
+ url = "https://registry.npmjs.org/patrisika/-/patrisika-0.23.0.tgz";
+ sha512 = "bGxKK+XqO7Qfgv7WJSeytwZlbQsKXeuya+FD+6CB0iHat4tSbmN6eT0FEWGf0ulNguD0th/H3fa+VuXDDYQmLw==";
};
};
"patrisika-scopes-0.12.0" = {
@@ -48219,15 +48282,6 @@ let
sha512 = "zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==";
};
};
- "pretty-format-24.9.0" = {
- name = "pretty-format";
- packageName = "pretty-format";
- version = "24.9.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz";
- sha512 = "00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==";
- };
- };
"pretty-format-25.5.0" = {
name = "pretty-format";
packageName = "pretty-format";
@@ -48795,13 +48849,13 @@ let
sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849";
};
};
- "proto3-json-serializer-0.1.1" = {
+ "proto3-json-serializer-0.1.3" = {
name = "proto3-json-serializer";
packageName = "proto3-json-serializer";
- version = "0.1.1";
+ version = "0.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-0.1.1.tgz";
- sha512 = "Wucuvf7SqAw1wcai0zV+3jW3QZJiO/W9wZoJaTheebYdwfj2k9VfF3Gw9r2vGAaTeslhMbkVbojJG0+LjpgLxQ==";
+ url = "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-0.1.3.tgz";
+ sha512 = "X0DAtxCBsy1NDn84huVFGOFgBslT2gBmM+85nY6/5SOAaCon1jzVNdvi74foIyFvs5CjtSbQsepsM5TsyNhqQw==";
};
};
"protobufjs-3.8.2" = {
@@ -50730,13 +50784,13 @@ let
sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==";
};
};
- "react-devtools-core-4.15.0" = {
+ "react-devtools-core-4.16.0" = {
name = "react-devtools-core";
packageName = "react-devtools-core";
- version = "4.15.0";
+ version = "4.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.15.0.tgz";
- sha512 = "Y1NwrWSKRg4TtwcES2upzXFDmccAW9jrGQG2D8EGQrZhK+0hmuhgFnSdKpFc3z04CSeDT5t83RMXcmX5TkR1dA==";
+ url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.16.0.tgz";
+ sha512 = "fqyVbp+wVVey6O4uVBk5s3J/vTiPludp7lulr6a8asTBm7DIA0vLBbjmAOLCnOlkWcgdy4mjsqOgNCbu8uICWw==";
};
};
"react-dom-16.14.0" = {
@@ -51009,6 +51063,15 @@ let
sha512 = "aLcPqxovhJTVJcsnROuuzQvv6oziQx4zd3JvG0vGCL5MjTONUc4uJ90zCBC6R7W7oUKBNoR/F8pkyfVwlbxqng==";
};
};
+ "read-package-json-4.0.0" = {
+ name = "read-package-json";
+ packageName = "read-package-json";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-package-json/-/read-package-json-4.0.0.tgz";
+ sha512 = "EBQiek1udd0JKvUzaViAWHYVQRuQZ0IP0LWUOqVCJaZIX92ZO86dOpvsTOO3esRIQGgl7JhFBaGqW41VI57KvQ==";
+ };
+ };
"read-package-json-fast-2.0.3" = {
name = "read-package-json-fast";
packageName = "read-package-json-fast";
@@ -53178,6 +53241,15 @@ let
sha1 = "1b42a6266a21f07421d1b0b54b7dc167b01c013b";
};
};
+ "retry-0.13.1" = {
+ name = "retry";
+ packageName = "retry";
+ version = "0.13.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz";
+ sha512 = "XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==";
+ };
+ };
"retry-0.6.0" = {
name = "retry";
packageName = "retry";
@@ -53943,13 +54015,13 @@ let
sha512 = "y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==";
};
};
- "sass-1.37.5" = {
+ "sass-1.38.0" = {
name = "sass";
packageName = "sass";
- version = "1.37.5";
+ version = "1.38.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.37.5.tgz";
- sha512 = "Cx3ewxz9QB/ErnVIiWg2cH0kiYZ0FPvheDTVC6BsiEGBTZKKZJ1Gq5Kq6jy3PKtL6+EJ8NIoaBW/RSd2R6cZOA==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.38.0.tgz";
+ sha512 = "WBccZeMigAGKoI+NgD7Adh0ab1HUq+6BmyBUEaGxtErbUtWUevEbdgo5EZiJQofLUGcKtlNaO2IdN73AHEua5g==";
};
};
"sax-0.5.8" = {
@@ -56805,13 +56877,13 @@ let
sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung==";
};
};
- "ssb-db2-2.1.5" = {
+ "ssb-db2-2.2.0" = {
name = "ssb-db2";
packageName = "ssb-db2";
- version = "2.1.5";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.1.5.tgz";
- sha512 = "3Sbdf5AavoSqo7h1OQXSZ+RFIuTeu9CJpL2ojI8ySFZMZTsnPo7X7LQ1Bd4cNYTK7DBCvfjwvY01sO8VjFzlgw==";
+ url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.2.0.tgz";
+ sha512 = "6ZxzNEUc/kT7wBFJkIblzulbIOn3hL2Al8+vzgJAXZeo+V9xRFftZPIZ3nVkgBwrdE9F2TxR9fWqBnUbVAOmfA==";
};
};
"ssb-ebt-5.6.7" = {
@@ -57066,6 +57138,24 @@ let
sha512 = "nzj5EQnhm5fBGXgtzuuWgxv45dW+CJJm4eCLZKiOxyG1NE/WJZwju2DmqZfiE9zr9bC2T2hPHkckDP0CCP8v8w==";
};
};
+ "ssb-validate2-0.1.1" = {
+ name = "ssb-validate2";
+ packageName = "ssb-validate2";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ssb-validate2/-/ssb-validate2-0.1.1.tgz";
+ sha512 = "EG6CEgx7qX02Ekx8bhkEexs1foaMAt6BAmE91d3BRpim/+i+16jEYf9DzYcifKymxlsM9AUz2P0TyRxbMXreOQ==";
+ };
+ };
+ "ssb-validate2-rsjs-node-1.0.0" = {
+ name = "ssb-validate2-rsjs-node";
+ packageName = "ssb-validate2-rsjs-node";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ssb-validate2-rsjs-node/-/ssb-validate2-rsjs-node-1.0.0.tgz";
+ sha512 = "kg/4JNzXEgFCRkvbhAuYZwq14n2sgXF03hClL5Hc9XsMWlQeQ/UHUvClMvy2veFUivz7A6PGT8MaL5BDxW0LiQ==";
+ };
+ };
"ssb-ws-6.2.3" = {
name = "ssb-ws";
packageName = "ssb-ws";
@@ -57075,13 +57165,13 @@ let
sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA==";
};
};
- "sscaff-1.2.47" = {
+ "sscaff-1.2.49" = {
name = "sscaff";
packageName = "sscaff";
- version = "1.2.47";
+ version = "1.2.49";
src = fetchurl {
- url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.47.tgz";
- sha512 = "0SSqDSLkF9sRHwO6g80D74S5iAqupqcG9EsHCv4BRvwlrqu2Jr3ury5PF0tyyA2wPZejwHZ+u5XgEo8GIVQ6rA==";
+ url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.49.tgz";
+ sha512 = "drDc3ZfEyhPDf/Nc7GoFc901xfZ4uI0E0IEo2MgS6G+FJcN1177kMVnXfZ8LSrNXUgR7BIAnlzhANap2z9vP9g==";
};
};
"ssh-config-1.1.6" = {
@@ -58110,6 +58200,15 @@ let
sha512 = "AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==";
};
};
+ "strip-ansi-7.0.0" = {
+ name = "strip-ansi";
+ packageName = "strip-ansi";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.0.tgz";
+ sha512 = "UhDTSnGF1dc0DRbUqr1aXwNoY3RgVkSWG8BrpnuFIxhP57IqbS7IRta2Gfiavds4yCxc5+fEAVVOgBZWnYkvzg==";
+ };
+ };
"strip-ansi-control-characters-2.0.0" = {
name = "strip-ansi-control-characters";
packageName = "strip-ansi-control-characters";
@@ -59263,6 +59362,15 @@ let
sha512 = "q7OwXq6NTdcYIa+k58nEMV3j1euhDhGCs/VRw9ymx/PbH0jtIM2+VTgDE/BW3rbLkrBUXs5fzEKgic5oUciu7g==";
};
};
+ "tar-4.4.19" = {
+ name = "tar";
+ packageName = "tar";
+ version = "4.4.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz";
+ sha512 = "a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==";
+ };
+ };
"tar-4.4.6" = {
name = "tar";
packageName = "tar";
@@ -59281,6 +59389,15 @@ let
sha512 = "0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==";
};
};
+ "tar-6.1.10" = {
+ name = "tar";
+ packageName = "tar";
+ version = "6.1.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-6.1.10.tgz";
+ sha512 = "kvvfiVvjGMxeUNB6MyYv5z7vhfFRwbwCXJAeL0/lnbrttBVqcMOnpHUf0X42LrPMR8mMpgapkJMchFH4FSHzNA==";
+ };
+ };
"tar-6.1.2" = {
name = "tar";
packageName = "tar";
@@ -63476,6 +63593,15 @@ let
sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==";
};
};
+ "uws-9.148.0" = {
+ name = "uws";
+ packageName = "uws";
+ version = "9.148.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uws/-/uws-9.148.0.tgz";
+ sha512 = "vWt+e8dOdwLM4neb1xIeZuQ7ZUN3l7n0qTKrOUtU1EZrV4BpmrSnsEL30d062/ocqRMGtLpwzVFsLKFgXomA9g==";
+ };
+ };
"v8-compile-cache-2.3.0" = {
name = "v8-compile-cache";
packageName = "v8-compile-cache";
@@ -65348,13 +65474,13 @@ let
sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ==";
};
};
- "webpack-5.50.0" = {
+ "webpack-5.51.0" = {
name = "webpack";
packageName = "webpack";
- version = "5.50.0";
+ version = "5.51.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.50.0.tgz";
- sha512 = "hqxI7t/KVygs0WRv/kTgUW8Kl3YC81uyWQSo/7WUs5LsuRw0htH/fCwbVBGCuiX/t4s7qzjXFcf41O8Reiypag==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.51.0.tgz";
+ sha512 = "oySQoKUuf5r0JaPIYi8q90c/GmU9fGdSbZ0cAjFq3OWx57wniRTWvta1T9t+e5WZ6H6mHrxksNatkqfIEuTWGg==";
};
};
"webpack-bundle-analyzer-3.9.0" = {
@@ -65402,6 +65528,15 @@ let
sha512 = "djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==";
};
};
+ "webpack-dev-middleware-5.0.0" = {
+ name = "webpack-dev-middleware";
+ packageName = "webpack-dev-middleware";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.0.0.tgz";
+ sha512 = "9zng2Z60pm6A98YoRcA0wSxw1EYn7B7y5owX/Tckyt9KGyULTkLtiavjaXlWqOMkM0YtqGgL3PvMOFgyFLq8vw==";
+ };
+ };
"webpack-dev-server-3.11.0" = {
name = "webpack-dev-server";
packageName = "webpack-dev-server";
@@ -65555,13 +65690,13 @@ let
sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==";
};
};
- "webtorrent-1.3.10" = {
+ "webtorrent-1.4.0" = {
name = "webtorrent";
packageName = "webtorrent";
- version = "1.3.10";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.3.10.tgz";
- sha512 = "w0+y6YRyfdS37on5ialAyxpM8XzIB6nFWZOO1O9MgMzG8asLEa1uJ7aGfXoZ+030FCRj235eyhzlnTxYEWBvKg==";
+ url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.4.0.tgz";
+ sha512 = "dnlSkPiRsk2I9pIoSdG0Zw6d6bWNkYpSoix3bu3eQRNk5xRd+7F1/K7y+tMv/svuGV9nj1aY3N8xSK5OSTyMSg==";
};
};
"well-known-symbols-2.0.0" = {
@@ -66392,6 +66527,15 @@ let
sha512 = "0UWlCD2s3RSclw8FN+D0zDTUyMO+1kHwJQQJzkgUh16S8d3NYON0AKCEQPffE0ez4JyRFu76QDA9KR5bOG/7jw==";
};
};
+ "ws-8.2.0" = {
+ name = "ws";
+ packageName = "ws";
+ version = "8.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-8.2.0.tgz";
+ sha512 = "uYhVJ/m9oXwEI04iIVmgLmugh2qrZihkywG9y5FfZV2ATeLIzHf93qs+tUNqlttbQK957/VX3mtwAS+UfIwA4g==";
+ };
+ };
"x-default-browser-0.3.1" = {
name = "x-default-browser";
packageName = "x-default-browser";
@@ -67629,7 +67773,7 @@ in
sources."@npmcli/move-file-1.1.2"
sources."@npmcli/node-gyp-1.0.2"
sources."@npmcli/promise-spawn-1.3.2"
- sources."@npmcli/run-script-1.8.5"
+ sources."@npmcli/run-script-1.8.6"
sources."@schematics/angular-12.2.1"
sources."@tootallnate/once-1.1.2"
sources."@yarnpkg/lockfile-1.1.0"
@@ -67751,7 +67895,7 @@ in
];
})
sources."ip-1.1.5"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-interactive-1.0.0"
@@ -68407,7 +68551,7 @@ in
sources."@hyperswarm/hypersign-2.1.1"
sources."@hyperswarm/network-2.1.0"
sources."@leichtgewicht/ip-codec-2.0.3"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."abstract-extension-3.1.1"
sources."abstract-leveldown-6.2.3"
sources."ansi-colors-3.2.3"
@@ -68602,7 +68746,7 @@ in
sources."is-boolean-object-1.1.2"
sources."is-buffer-2.0.5"
sources."is-callable-1.2.4"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-date-object-1.0.5"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-2.0.0"
@@ -68941,7 +69085,7 @@ in
sources."@types/eslint-scope-3.7.1"
sources."@types/estree-0.0.50"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
@@ -68976,7 +69120,7 @@ in
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
@@ -69007,7 +69151,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
(sources."enhanced-resolve-5.8.2" // {
@@ -69065,7 +69209,7 @@ in
sources."interpret-1.4.0"
sources."is-arrayish-0.2.1"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
@@ -69108,7 +69252,7 @@ in
sources."mute-stream-0.0.8"
sources."neo-async-2.6.2"
sources."node-emoji-1.10.0"
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
sources."normalize-path-3.0.0"
sources."npm-run-path-4.0.1"
sources."object-assign-4.1.1"
@@ -69416,7 +69560,7 @@ in
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/normalize-package-data-2.4.1"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -69431,13 +69575,13 @@ in
})
sources."@vue/cli-ui-addon-webpack-4.5.13"
sources."@vue/cli-ui-addon-widgets-4.5.13"
- (sources."@vue/compiler-core-3.2.2" // {
+ (sources."@vue/compiler-core-3.2.4" // {
dependencies = [
sources."source-map-0.6.1"
];
})
- sources."@vue/compiler-dom-3.2.2"
- sources."@vue/shared-3.2.2"
+ sources."@vue/compiler-dom-3.2.4"
+ sources."@vue/shared-3.2.4"
sources."@wry/equality-0.1.11"
sources."accepts-1.3.7"
sources."aggregate-error-3.1.0"
@@ -69497,7 +69641,7 @@ in
sources."assign-symbols-1.0.0"
sources."ast-types-0.13.3"
sources."async-2.6.3"
- sources."async-retry-1.3.1"
+ sources."async-retry-1.3.3"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
sources."aws-sign2-0.7.0"
@@ -69539,7 +69683,7 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-2.3.2"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -69616,12 +69760,12 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- (sources."core-js-compat-3.16.1" // {
+ (sources."core-js-compat-3.16.2" // {
dependencies = [
sources."semver-7.0.0"
];
})
- sources."core-js-pure-3.16.1"
+ sources."core-js-pure-3.16.2"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
(sources."cross-spawn-6.0.5" // {
@@ -69687,7 +69831,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -69883,7 +70027,7 @@ in
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-data-descriptor-1.0.0"
sources."is-date-object-1.0.5"
sources."is-descriptor-1.0.2"
@@ -70023,7 +70167,7 @@ in
sources."which-2.0.2"
];
})
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
sources."semver-5.7.1"
@@ -70172,7 +70316,7 @@ in
sources."responselike-1.0.2"
sources."restore-cursor-2.0.0"
sources."ret-0.1.15"
- sources."retry-0.12.0"
+ sources."retry-0.13.1"
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
sources."rss-parser-3.12.0"
@@ -70699,7 +70843,7 @@ in
sources."async-3.2.1"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."caniuse-lite-1.0.30001251"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
@@ -70711,7 +70855,7 @@ in
sources."convert-source-map-1.8.0"
sources."debug-4.3.2"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -70738,7 +70882,7 @@ in
sources."homedir-polyfill-1.0.3"
sources."ini-1.3.8"
sources."is-3.3.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-windows-1.0.2"
sources."isexe-2.0.0"
(sources."jake-10.8.2" // {
@@ -70757,7 +70901,7 @@ in
sources."minimist-1.2.5"
sources."moment-2.29.1"
sources."ms-2.1.2"
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
sources."node.extend-2.0.2"
(sources."nomnom-1.8.1" // {
dependencies = [
@@ -70805,7 +70949,7 @@ in
dependencies = [
sources."@types/glob-7.1.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -70839,13 +70983,13 @@ in
sha512 = "L8AmtKzdiRyYg7BUXJTzigmhbQRCXFKz6SA1Lqo0+AR2FBbQ4aTAPFSDlOutnFkjhiz8my4agGXog1xlMjPJ6A==";
};
dependencies = [
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."caniuse-lite-1.0.30001251"
sources."colorette-1.3.0"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."escalade-3.1.1"
sources."fraction.js-4.1.1"
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
sources."normalize-range-0.1.2"
sources."postcss-value-parser-4.1.0"
];
@@ -70869,14 +71013,14 @@ in
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/yauzl-2.9.2"
sources."agent-base-6.0.2"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
sources."ast-types-0.13.4"
- (sources."aws-sdk-2.968.0" // {
+ (sources."aws-sdk-2.971.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -71080,10 +71224,10 @@ in
balanceofsatoshis = nodeEnv.buildNodePackage {
name = "balanceofsatoshis";
packageName = "balanceofsatoshis";
- version = "10.7.8";
+ version = "10.7.9";
src = fetchurl {
- url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.7.8.tgz";
- sha512 = "lBtaJP9EmDdvaYcsjvKhkS84sG79uZwhhoZ/Xb8Onj1FS8zwLPWFqzpRZ1SJ32COq9aJUWumLD+6LCnWH6Xbsg==";
+ url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.7.9.tgz";
+ sha512 = "vcnF90P1ZTNPeqbJV16ijrXUdzoHAsdxoC5g/3x5AvLyCcHE5ogfQGDR0ZqUNlWYPM0lZfj0mVz04VfRU9BHGw==";
};
dependencies = [
sources."@alexbosworth/html2unicode-1.1.5"
@@ -71096,7 +71240,7 @@ in
sources."@cto.af/textdecoder-0.0.0"
(sources."@grpc/grpc-js-1.3.2" // {
dependencies = [
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
];
})
sources."@grpc/proto-loader-0.6.2"
@@ -71630,7 +71774,7 @@ in
sources."process-nextick-args-2.0.1"
(sources."protobufjs-6.11.2" // {
dependencies = [
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
];
})
sources."proxy-addr-2.0.7"
@@ -72184,7 +72328,7 @@ in
sources."inherits-2.0.4"
sources."intersect-1.0.1"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-finite-1.1.0"
sources."is-plain-obj-1.1.0"
sources."is-utf8-0.2.1"
@@ -72388,7 +72532,7 @@ in
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-date-object-1.0.5"
sources."is-generator-function-1.0.10"
sources."is-negative-zero-2.0.1"
@@ -72586,7 +72730,7 @@ in
sources."chalk-2.4.2"
sources."character-parser-2.2.0"
sources."charenc-0.0.2"
- sources."chart.js-3.5.0"
+ sources."chart.js-3.5.1"
sources."cipher-base-1.0.4"
sources."cliui-5.0.0"
sources."color-convert-1.9.3"
@@ -72636,7 +72780,7 @@ in
})
sources."decimal.js-10.3.1"
sources."delayed-stream-1.0.0"
- sources."denque-1.5.0"
+ sources."denque-1.5.1"
sources."depd-1.1.2"
sources."destroy-1.0.4"
sources."dijkstrajs-1.0.2"
@@ -72680,7 +72824,7 @@ in
];
})
sources."find-up-4.1.0"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."forwarded-0.2.0"
@@ -72719,7 +72863,7 @@ in
sources."ipaddr.js-1.9.1"
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-expression-4.0.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-plain-obj-1.1.0"
@@ -72788,7 +72932,7 @@ in
sources."nan-2.15.0"
sources."ncp-2.0.0"
sources."negotiator-0.6.2"
- sources."normalize-package-data-3.0.2"
+ sources."normalize-package-data-3.0.3"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
sources."on-finished-2.3.0"
@@ -72978,7 +73122,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -73120,7 +73264,7 @@ in
sources."ip-set-1.0.2"
sources."ipaddr.js-2.0.1"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-finite-1.1.0"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
@@ -73410,7 +73554,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.30.0"
- sources."constructs-3.3.124"
+ sources."constructs-3.3.126"
sources."date-format-3.0.0"
sources."debug-4.3.2"
sources."decamelize-5.0.0"
@@ -73486,13 +73630,13 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.326" // {
+ (sources."jsii-srcmak-0.1.328" // {
dependencies = [
sources."fs-extra-9.1.0"
];
})
sources."json-schema-0.3.0"
- sources."json2jsii-0.1.296"
+ sources."json2jsii-0.1.299"
sources."jsonfile-6.1.0"
sources."jsonschema-1.4.0"
sources."locate-path-5.0.0"
@@ -73528,7 +73672,7 @@ in
sources."snake-case-3.0.4"
sources."sort-json-2.0.0"
sources."spdx-license-list-6.4.0"
- sources."sscaff-1.2.47"
+ sources."sscaff-1.2.49"
(sources."streamroller-2.2.4" // {
dependencies = [
sources."date-format-2.1.0"
@@ -73584,7 +73728,7 @@ in
sha512 = "53HldFlYJdptaQ9yZyx8xuN0pxmBwI7yaVImmPwGmauoOYWsO89YrAjyPIiAaR+GWI8avbQeg3jz5Z1Q+MoIGA==";
};
dependencies = [
- sources."@apollo/client-3.4.7"
+ sources."@apollo/client-3.4.8"
(sources."@apollo/protobufjs-1.2.2" // {
dependencies = [
sources."@types/node-10.17.60"
@@ -73673,7 +73817,7 @@ in
sources."@types/express-serve-static-core-4.17.24"
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
- sources."@types/node-14.17.9"
+ sources."@types/node-14.17.10"
sources."@types/node-fetch-2.5.12"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -73724,7 +73868,7 @@ in
sources."array-union-2.1.0"
sources."astral-regex-2.0.0"
sources."async-3.2.1"
- sources."async-retry-1.3.1"
+ sources."async-retry-1.3.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."auto-bind-4.0.0"
@@ -73792,7 +73936,7 @@ in
];
})
sources."concat-map-0.0.1"
- sources."constructs-3.3.124"
+ sources."constructs-3.3.126"
(sources."content-disposition-0.5.3" // {
dependencies = [
sources."safe-buffer-5.1.2"
@@ -73802,7 +73946,7 @@ in
sources."convert-to-spaces-1.0.2"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-pure-3.16.1"
+ sources."core-js-pure-3.16.2"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."crc-32-1.2.0"
@@ -73871,7 +74015,7 @@ in
sources."finalhandler-1.1.2"
sources."find-up-4.1.0"
sources."flatted-2.0.2"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."foreach-2.0.5"
sources."form-data-3.0.1"
sources."forwarded-0.2.0"
@@ -73992,7 +74136,7 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.326" // {
+ (sources."jsii-srcmak-0.1.328" // {
dependencies = [
sources."fs-extra-9.1.0"
];
@@ -74093,7 +74237,7 @@ in
sources."range-parser-1.2.1"
sources."raw-body-2.4.0"
sources."react-16.14.0"
- sources."react-devtools-core-4.15.0"
+ sources."react-devtools-core-4.16.0"
sources."react-is-16.13.1"
sources."react-reconciler-0.24.0"
sources."readable-stream-3.6.0"
@@ -74106,7 +74250,7 @@ in
sources."reserved-words-0.1.2"
sources."resolve-from-5.0.0"
sources."restore-cursor-3.1.0"
- sources."retry-0.12.0"
+ sources."retry-0.13.1"
sources."reusify-1.0.4"
sources."rfdc-1.3.0"
sources."run-async-2.4.1"
@@ -74150,7 +74294,7 @@ in
sources."sort-json-2.0.0"
sources."source-map-0.5.7"
sources."spdx-license-list-6.4.0"
- sources."sscaff-1.2.47"
+ sources."sscaff-1.2.49"
(sources."stack-utils-2.0.3" // {
dependencies = [
sources."escape-string-regexp-2.0.0"
@@ -74327,7 +74471,7 @@ in
sources."hosted-git-info-2.8.9"
sources."indent-string-3.2.0"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-docker-2.2.1"
sources."is-plain-obj-1.1.0"
sources."is-stream-1.1.0"
@@ -74587,10 +74731,10 @@ in
coc-explorer = nodeEnv.buildNodePackage {
name = "coc-explorer";
packageName = "coc-explorer";
- version = "0.18.14";
+ version = "0.18.15";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.18.14.tgz";
- sha512 = "nfJl0hw1/fMhXbaSNEVBHUQTUIGfiBRVQ5KLmYO4gJ7pNvhIcEUas+DKKONDr3WtmV3ZlEWmR0SbvVnaRzKB5w==";
+ url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.18.15.tgz";
+ sha512 = "YXwbqzvEKo2fT2srqhESG3KOzz1mZ8V4SY/T8fLo2yxY1C14m7Bol2rqP+7VI+tXwaKXWbnMoQRDgOTjgL2oxQ==";
};
dependencies = [
sources."@sindresorhus/df-3.1.1"
@@ -74933,7 +75077,7 @@ in
sources."fast-diff-1.2.0"
sources."fb-watchman-2.0.1"
sources."flatted-2.0.2"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."fp-ts-2.11.1"
sources."fs-extra-8.1.0"
sources."fs-minipass-2.1.0"
@@ -75241,7 +75385,7 @@ in
];
})
sources."copy-descriptor-0.1.1"
- sources."core-js-3.16.1"
+ sources."core-js-3.16.2"
sources."cosmiconfig-3.1.0"
sources."create-error-class-3.0.2"
sources."cross-spawn-7.0.3"
@@ -75277,7 +75421,7 @@ in
sources."domutils-1.7.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enquirer-2.3.6"
@@ -75475,7 +75619,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
sources."is-ci-1.2.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -76284,7 +76428,7 @@ in
];
})
sources."braces-3.0.2"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
@@ -76326,7 +76470,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -76378,7 +76522,7 @@ in
sources."is-alphanumerical-1.0.4"
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-decimal-1.0.4"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -76423,8 +76567,8 @@ in
];
})
sources."ms-2.1.2"
- sources."node-releases-1.1.74"
- (sources."normalize-package-data-3.0.2" // {
+ sources."node-releases-1.1.75"
+ (sources."normalize-package-data-3.0.3" // {
dependencies = [
sources."semver-7.3.5"
];
@@ -76635,7 +76779,7 @@ in
sources."has-flag-3.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."js-tokens-4.0.0"
sources."js-yaml-3.14.1"
sources."minimatch-3.0.4"
@@ -76821,7 +76965,7 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
@@ -77079,7 +77223,7 @@ in
sources."colors-1.4.0"
sources."commander-2.20.3"
sources."escape-string-regexp-1.0.5"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."has-flag-3.0.0"
sources."is-fullwidth-code-point-2.0.0"
sources."log-symbols-2.2.0"
@@ -77128,7 +77272,7 @@ in
sources."fast-safe-stringify-2.0.8"
sources."fecha-4.2.1"
sources."fn.name-1.1.0"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."http-proxy-1.18.1"
sources."inherits-2.0.4"
sources."is-arrayish-0.3.2"
@@ -77188,7 +77332,7 @@ in
sources."@npmcli/move-file-1.1.2"
sources."@npmcli/node-gyp-1.0.2"
sources."@npmcli/promise-spawn-1.3.2"
- sources."@npmcli/run-script-1.8.5"
+ sources."@npmcli/run-script-1.8.6"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@tootallnate/once-1.1.2"
@@ -77473,7 +77617,7 @@ in
sources."ip-regex-2.1.0"
sources."ipaddr.js-1.9.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-1.0.0"
@@ -77793,7 +77937,7 @@ in
sources."@types/glob-7.1.4"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/normalize-package-data-2.4.1"
sources."aggregate-error-3.1.0"
sources."ansi-styles-3.2.1"
@@ -77933,7 +78077,7 @@ in
sources."is-accessor-descriptor-1.0.0"
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-extendable-0.1.1"
@@ -78164,7 +78308,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -79256,7 +79400,7 @@ in
sources."@babel/types-7.15.0"
sources."@blueprintjs/core-3.47.0"
sources."@blueprintjs/icons-3.27.0"
- sources."@electron/get-1.12.4"
+ sources."@electron/get-1.13.0"
sources."@hypnosphi/create-react-context-0.3.1"
sources."@mapbox/extent-0.4.0"
sources."@mapbox/geojson-coords-0.0.1"
@@ -79279,11 +79423,11 @@ in
sources."@types/fs-extra-8.1.2"
sources."@types/geojson-7946.0.8"
sources."@types/mapbox-gl-0.54.5"
- sources."@types/mime-types-2.1.0"
- sources."@types/node-14.17.9"
+ sources."@types/mime-types-2.1.1"
+ sources."@types/node-14.17.10"
sources."@types/node-fetch-2.5.12"
sources."@types/prop-types-15.7.4"
- sources."@types/rc-1.1.0"
+ sources."@types/rc-1.2.0"
sources."@types/react-16.14.13"
sources."@types/react-dom-16.9.14"
sources."@types/react-virtualized-9.21.13"
@@ -79326,7 +79470,7 @@ in
sources."extend-shallow-2.0.1"
];
})
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."buffer-crc32-0.2.13"
sources."buffer-from-1.1.2"
sources."cache-base-1.0.1"
@@ -79380,8 +79524,8 @@ in
];
})
sources."copy-descriptor-0.1.1"
- sources."core-js-3.16.1"
- (sources."core-js-compat-3.16.1" // {
+ sources."core-js-3.16.2"
+ (sources."core-js-compat-3.16.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -79406,8 +79550,8 @@ in
sources."dom4-2.1.6"
sources."duplexer3-0.1.4"
sources."earcut-2.2.3"
- sources."electron-13.1.9"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-13.2.1"
+ sources."electron-to-chromium-1.3.812"
sources."emoji-js-clean-4.0.0"
sources."emoji-mart-3.0.1"
sources."emoji-regex-9.2.2"
@@ -79519,7 +79663,7 @@ in
sources."is-arguments-1.1.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-data-descriptor-1.0.0"
sources."is-date-object-1.0.5"
sources."is-descriptor-1.0.2"
@@ -79585,7 +79729,7 @@ in
sources."napi-macros-2.0.0"
sources."node-fetch-2.6.1"
sources."node-gyp-build-4.2.3"
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
sources."normalize-path-3.0.0"
sources."normalize-url-4.5.1"
sources."normalize.css-8.0.1"
@@ -79686,7 +79830,7 @@ in
sources."rw-0.1.4"
sources."safe-buffer-5.2.1"
sources."safe-regex-1.1.0"
- (sources."sass-1.37.5" // {
+ (sources."sass-1.38.0" // {
dependencies = [
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
@@ -79861,10 +80005,10 @@ in
diagnostic-languageserver = nodeEnv.buildNodePackage {
name = "diagnostic-languageserver";
packageName = "diagnostic-languageserver";
- version = "1.12.0";
+ version = "1.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/diagnostic-languageserver/-/diagnostic-languageserver-1.12.0.tgz";
- sha512 = "oXWAYO2ACrjFRYPTqUOQz3gCE7U1R5HVkuiqXXTFCcujiAprJjzvV5VAjrJolgA7guyRrXE5HliuDGoWJfWHOw==";
+ url = "https://registry.npmjs.org/diagnostic-languageserver/-/diagnostic-languageserver-1.12.1.tgz";
+ sha512 = "guR2r4tNIJBXmR0sx1JpBQ+/T5h5vsAdjcixFNcSOoSG7TD3MYnS3iC0OJ6HMFsyM+gR2siTBQXVaK3s04PrOw==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.5"
@@ -79995,7 +80139,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.17.9"
+ sources."@types/node-14.17.10"
sources."JSONStream-1.3.5"
sources."ajv-6.12.6"
sources."asn1-0.2.4"
@@ -80157,7 +80301,7 @@ in
sources."@electron-forge/template-typescript-6.0.0-beta.59"
sources."@electron-forge/template-typescript-webpack-6.0.0-beta.59"
sources."@electron-forge/template-webpack-6.0.0-beta.59"
- (sources."@electron/get-1.12.4" // {
+ (sources."@electron/get-1.13.0" // {
dependencies = [
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
@@ -80194,7 +80338,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/responselike-1.0.0"
sources."@types/yauzl-2.9.2"
sources."abbrev-1.1.1"
@@ -80271,7 +80415,7 @@ in
sources."concat-map-0.0.1"
sources."config-chain-1.1.13"
sources."console-control-strings-1.1.0"
- sources."core-js-3.16.1"
+ sources."core-js-3.16.2"
sources."core-util-is-1.0.2"
sources."cross-spawn-7.0.3"
(sources."cross-spawn-windows-exe-1.2.0" // {
@@ -80444,7 +80588,7 @@ in
];
})
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-finite-1.1.0"
@@ -80847,7 +80991,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.2"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/normalize-package-data-2.4.1"
sources."@types/responselike-1.0.0"
sources."@types/yoga-layout-1.9.2"
@@ -80866,7 +81010,7 @@ in
sources."auto-bind-4.0.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."cacheable-lookup-5.0.4"
(sources."cacheable-request-7.0.2" // {
dependencies = [
@@ -80919,7 +81063,7 @@ in
})
sources."defer-to-connect-2.0.1"
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -80972,7 +81116,7 @@ in
})
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-obj-2.0.0"
@@ -81016,7 +81160,7 @@ in
sources."minimist-options-4.1.0"
sources."ms-2.1.2"
sources."nice-try-1.0.5"
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
sources."normalize-package-data-2.5.0"
sources."normalize-url-6.1.0"
sources."npm-run-path-2.0.2"
@@ -81053,7 +81197,7 @@ in
sources."punycode-2.1.1"
sources."quick-lru-5.1.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.15.0"
+ sources."react-devtools-core-4.16.0"
sources."react-is-16.13.1"
sources."react-reconciler-0.24.0"
(sources."read-pkg-5.2.0" // {
@@ -81917,7 +82061,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-dir-1.0.0"
@@ -82441,7 +82585,7 @@ in
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
- (sources."sass-1.37.5" // {
+ (sources."sass-1.38.0" // {
dependencies = [
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
@@ -83221,7 +83365,7 @@ in
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5"
(sources."@babel/helper-compilation-targets-7.15.0" // {
dependencies = [
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."semver-6.3.0"
];
})
@@ -83419,7 +83563,7 @@ in
})
sources."@npmcli/node-gyp-1.0.2"
sources."@npmcli/promise-spawn-1.3.2"
- sources."@npmcli/run-script-1.8.5"
+ sources."@npmcli/run-script-1.8.6"
sources."@react-native-community/cli-debugger-ui-5.0.1"
(sources."@react-native-community/cli-server-api-5.0.1" // {
dependencies = [
@@ -83805,9 +83949,9 @@ in
sources."semver-6.3.0"
];
})
- (sources."core-js-compat-3.16.1" // {
+ (sources."core-js-compat-3.16.2" // {
dependencies = [
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."semver-7.0.0"
];
})
@@ -83938,7 +84082,7 @@ in
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -84057,7 +84201,7 @@ in
sources."find-up-5.0.0"
sources."find-yarn-workspace-root-2.0.0"
sources."flush-write-stream-1.1.1"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."for-in-1.0.2"
sources."forever-agent-0.6.1"
(sources."fork-ts-checker-webpack-plugin-4.1.6" // {
@@ -84244,7 +84388,7 @@ in
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
sources."is-color-stop-1.1.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-data-descriptor-1.0.0"
sources."is-date-object-1.0.5"
sources."is-descriptor-1.0.2"
@@ -84530,7 +84674,7 @@ in
];
})
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
sources."nopt-5.0.0"
sources."normalize-path-3.0.0"
sources."normalize-url-6.1.0"
@@ -85602,7 +85746,7 @@ in
sources."@babel/traverse-7.15.0"
sources."@babel/types-7.15.0"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/normalize-package-data-2.4.1"
sources."@types/yauzl-2.9.2"
sources."@types/yoga-layout-1.9.2"
@@ -85621,7 +85765,7 @@ in
sources."base64-js-1.5.1"
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."buffer-5.7.1"
sources."buffer-crc32-0.2.13"
sources."caller-callsite-2.0.0"
@@ -85654,7 +85798,7 @@ in
})
sources."delay-5.0.0"
sources."devtools-protocol-0.0.869402"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
@@ -85694,7 +85838,7 @@ in
sources."ink-spinner-4.0.2"
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-plain-obj-1.1.0"
sources."js-tokens-4.0.0"
@@ -85722,8 +85866,8 @@ in
sources."mkdirp-classic-0.5.3"
sources."ms-2.1.2"
sources."node-fetch-2.6.1"
- sources."node-releases-1.1.74"
- (sources."normalize-package-data-3.0.2" // {
+ sources."node-releases-1.1.75"
+ (sources."normalize-package-data-3.0.3" // {
dependencies = [
sources."semver-7.3.5"
];
@@ -85748,7 +85892,7 @@ in
sources."puppeteer-9.1.1"
sources."quick-lru-4.0.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.15.0"
+ sources."react-devtools-core-4.16.0"
sources."react-is-16.13.1"
sources."react-reconciler-0.24.0"
(sources."read-pkg-5.2.0" // {
@@ -85869,7 +86013,7 @@ in
sources."tslib-2.3.1"
];
})
- (sources."@oclif/core-0.5.30" // {
+ (sources."@oclif/core-0.5.31" // {
dependencies = [
sources."chalk-4.1.2"
(sources."cli-ux-5.6.3" // {
@@ -86531,9 +86675,9 @@ in
sources."@google-cloud/precise-date-2.0.3"
sources."@google-cloud/projectify-2.1.0"
sources."@google-cloud/promisify-2.0.3"
- (sources."@google-cloud/pubsub-2.16.3" // {
+ (sources."@google-cloud/pubsub-2.16.6" // {
dependencies = [
- sources."google-auth-library-7.6.1"
+ sources."google-auth-library-7.6.2"
];
})
sources."@grpc/grpc-js-1.3.7"
@@ -86565,7 +86709,7 @@ in
sources."@types/json-schema-7.0.9"
sources."@types/long-4.0.1"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."JSONStream-1.3.5"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -86655,7 +86799,7 @@ in
(sources."cacache-15.2.0" // {
dependencies = [
sources."mkdirp-1.0.4"
- sources."tar-6.1.8"
+ sources."tar-6.1.10"
];
})
(sources."cacheable-request-6.1.0" // {
@@ -86914,9 +87058,9 @@ in
sources."glob-slasher-1.0.1"
sources."global-dirs-2.1.0"
sources."google-auth-library-6.1.6"
- (sources."google-gax-2.24.0" // {
+ (sources."google-gax-2.24.2" // {
dependencies = [
- sources."google-auth-library-7.6.1"
+ sources."google-auth-library-7.6.2"
];
})
sources."google-p12-pem-3.1.2"
@@ -87123,7 +87267,7 @@ in
dependencies = [
sources."mkdirp-1.0.4"
sources."semver-7.3.5"
- sources."tar-6.1.8"
+ sources."tar-6.1.10"
sources."which-2.0.2"
];
})
@@ -87180,7 +87324,7 @@ in
sources."promise-breaker-5.0.0"
sources."promise-inflight-1.0.1"
sources."promise-retry-2.0.1"
- sources."proto3-json-serializer-0.1.1"
+ sources."proto3-json-serializer-0.1.3"
sources."protobufjs-6.11.2"
sources."proxy-addr-2.0.7"
(sources."proxy-agent-4.0.1" // {
@@ -87304,7 +87448,7 @@ in
sources."has-flag-2.0.0"
];
})
- (sources."tar-4.4.17" // {
+ (sources."tar-4.4.19" // {
dependencies = [
sources."chownr-1.1.4"
sources."fs-minipass-1.2.7"
@@ -87549,7 +87693,7 @@ in
sources."inquirer-7.3.3"
sources."inquirer-autocomplete-prompt-1.4.0"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-plain-obj-1.1.0"
sources."is-stream-2.0.1"
@@ -87576,7 +87720,7 @@ in
];
})
sources."mute-stream-0.0.8"
- sources."normalize-package-data-3.0.2"
+ sources."normalize-package-data-3.0.3"
sources."npm-run-path-4.0.1"
sources."num-sort-2.1.0"
sources."once-1.4.0"
@@ -87671,7 +87815,7 @@ in
dependencies = [
sources."@types/atob-2.1.2"
sources."@types/inquirer-6.5.0"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/through-0.0.30"
sources."ajv-6.12.6"
sources."ansi-escapes-4.3.2"
@@ -87766,7 +87910,7 @@ in
sources."jsprim-1.4.1"
sources."jwt-decode-2.2.0"
sources."lie-3.1.1"
- sources."localforage-1.9.0"
+ sources."localforage-1.10.0"
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
sources."mime-db-1.49.0"
@@ -88356,10 +88500,10 @@ in
gatsby-cli = nodeEnv.buildNodePackage {
name = "gatsby-cli";
packageName = "gatsby-cli";
- version = "3.11.0";
+ version = "3.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.11.0.tgz";
- sha512 = "jrC1VqQHCR4N++if2bZm+iVUpdCazfZgVK0FPnmTb6Uq3xqEqS5agZR9HeE/FV8ebQ1h6/4MfFt9XsSG4Z6TFw==";
+ url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.12.0.tgz";
+ sha512 = "Yf2Xa1mLbRi0yjtIRwklRCuTJB+DEKx5jl/2jFKKZkAdIHU8mXizBEkh4Pf0zeERv/22OjsfeCixjBcAw7WbHA==";
};
dependencies = [
(sources."@ardatan/aggregate-error-0.0.6" // {
@@ -88448,13 +88592,13 @@ in
sources."@szmarczak/http-timer-1.1.2"
sources."@tokenizer/token-0.3.0"
sources."@turist/fetch-7.1.7"
- sources."@turist/time-0.0.1"
+ sources."@turist/time-0.0.2"
sources."@types/common-tags-1.8.1"
sources."@types/istanbul-lib-coverage-2.0.3"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-patch-0.0.30"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/node-fetch-2.5.12"
sources."@types/unist-2.0.6"
sources."@types/yargs-15.0.14"
@@ -88509,7 +88653,7 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."bytes-3.1.0"
(sources."cacheable-request-6.1.0" // {
dependencies = [
@@ -88571,7 +88715,7 @@ in
];
})
sources."content-type-1.0.4"
- sources."contentful-management-7.31.0"
+ sources."contentful-management-7.32.0"
sources."contentful-sdk-core-6.8.0"
sources."convert-hrtime-3.0.0"
(sources."convert-source-map-1.8.0" // {
@@ -88582,7 +88726,7 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."cors-2.8.5"
- sources."create-gatsby-1.11.0"
+ sources."create-gatsby-1.12.0"
(sources."cross-spawn-6.0.5" // {
dependencies = [
sources."semver-5.7.1"
@@ -88617,7 +88761,7 @@ in
sources."dotenv-8.6.0"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -88679,7 +88823,7 @@ in
];
})
sources."find-up-4.1.0"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."form-data-3.0.1"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
@@ -88688,13 +88832,13 @@ in
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
- sources."gatsby-core-utils-2.11.0"
- (sources."gatsby-recipes-0.22.0" // {
+ sources."gatsby-core-utils-2.12.0"
+ (sources."gatsby-recipes-0.23.0" // {
dependencies = [
sources."strip-ansi-6.0.0"
];
})
- sources."gatsby-telemetry-2.11.0"
+ sources."gatsby-telemetry-2.12.0"
sources."gensync-1.0.0-beta.2"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
@@ -88746,7 +88890,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-buffer-2.0.5"
sources."is-ci-2.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-decimal-1.0.4"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
@@ -88853,8 +88997,8 @@ in
sources."no-case-3.0.4"
sources."node-eta-0.9.0"
sources."node-fetch-2.6.1"
- sources."node-object-hash-2.3.8"
- sources."node-releases-1.1.74"
+ sources."node-object-hash-2.3.9"
+ sources."node-releases-1.1.75"
sources."normalize-path-3.0.0"
sources."normalize-url-6.1.0"
sources."npm-run-path-2.0.2"
@@ -89186,7 +89330,7 @@ in
sources."inherits-2.0.4"
sources."interpret-1.4.0"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-plain-object-5.0.0"
sources."is-stream-2.0.1"
@@ -89722,7 +89866,7 @@ in
sources."ip-1.1.5"
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-installed-globally-0.4.0"
sources."is-interactive-1.0.0"
@@ -89777,7 +89921,7 @@ in
sources."mute-stream-0.0.8"
sources."netmask-2.0.2"
sources."node-fetch-2.6.1"
- sources."normalize-package-data-3.0.2"
+ sources."normalize-package-data-3.0.3"
sources."normalize-url-4.5.1"
sources."npm-run-path-4.0.1"
sources."once-1.4.0"
@@ -90031,7 +90175,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-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -90520,7 +90664,7 @@ in
sources."ini-1.3.8"
sources."interpret-1.1.0"
sources."is-absolute-1.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.1"
sources."is-number-7.0.0"
@@ -91015,7 +91159,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-extendable-0.1.1"
@@ -91417,7 +91561,7 @@ in
})
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -91796,7 +91940,7 @@ in
sources."corser-2.0.1"
sources."debug-3.2.7"
sources."eventemitter3-4.0.7"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
sources."has-1.0.3"
@@ -92665,7 +92809,7 @@ in
];
})
sources."supports-color-7.2.0"
- sources."tar-4.4.17"
+ sources."tar-4.4.19"
sources."through-2.3.8"
sources."through2-3.0.2"
sources."tmp-0.0.33"
@@ -92706,14 +92850,14 @@ in
bypassCache = true;
reconstructLock = true;
};
- "iosevka-https://github.com/be5invis/Iosevka/archive/v7.2.4.tar.gz" = nodeEnv.buildNodePackage {
+ "iosevka-https://github.com/be5invis/Iosevka/archive/v10.0.0.tar.gz" = nodeEnv.buildNodePackage {
name = "iosevka";
packageName = "iosevka";
- version = "7.2.4";
+ version = "10.0.0";
src = fetchurl {
- name = "iosevka-7.2.4.tar.gz";
- url = "https://codeload.github.com/be5invis/Iosevka/tar.gz/v7.2.4";
- sha256 = "c4c77a6beead2f164494fca061ba04e7f306771d0a7b86687ffa63fe43f7b83d";
+ name = "iosevka-10.0.0.tar.gz";
+ url = "https://codeload.github.com/be5invis/Iosevka/tar.gz/v10.0.0";
+ sha256 = "20d351190be5f0bb68bd458ce549c1ed34e923e1e7718d8f3f129e3fc84ab5b9";
};
dependencies = [
sources."@iarna/toml-2.2.5"
@@ -92773,7 +92917,7 @@ in
sources."brace-expansion-1.1.11"
sources."chainsaw-0.0.9"
sources."chalk-2.4.2"
- sources."cldr-6.1.1"
+ sources."cldr-7.1.0"
sources."cli-cursor-3.1.0"
sources."clipper-lib-6.4.2"
sources."cliui-7.0.4"
@@ -92845,9 +92989,9 @@ in
sources."ot-builder-1.1.0"
sources."otb-ttc-bundle-1.1.0"
sources."passerror-1.1.1"
- sources."patel-0.34.0"
+ sources."patel-0.35.1"
sources."path-is-absolute-1.0.1"
- sources."patrisika-0.22.2"
+ sources."patrisika-0.23.0"
sources."patrisika-scopes-0.12.0"
sources."pegjs-0.10.0"
sources."prelude-ls-1.1.2"
@@ -93152,7 +93296,7 @@ in
sources."tslib-2.3.1"
];
})
- (sources."@oclif/core-0.5.30" // {
+ (sources."@oclif/core-0.5.31" // {
dependencies = [
sources."ansi-regex-5.0.0"
sources."debug-4.3.2"
@@ -93246,7 +93390,7 @@ in
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.968.0" // {
+ (sources."aws-sdk-2.971.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -93281,7 +93425,7 @@ in
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."browser-process-hrtime-1.0.0"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."builtin-modules-3.2.0"
@@ -93471,7 +93615,7 @@ in
];
})
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."emoji-regex-8.0.0"
(sources."emphasize-1.5.0" // {
dependencies = [
@@ -93555,8 +93699,8 @@ in
sources."fill-range-7.0.1"
sources."find-cache-dir-2.1.0"
sources."find-up-2.1.0"
- sources."flow-parser-0.157.0"
- sources."follow-redirects-1.14.1"
+ sources."flow-parser-0.158.0"
+ sources."follow-redirects-1.14.2"
sources."font-awesome-filetypes-2.1.0"
sources."for-each-property-0.0.4"
sources."for-each-property-deep-0.0.3"
@@ -93892,7 +94036,7 @@ in
sources."semver-5.7.1"
];
})
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
sources."nopt-4.0.3"
sources."normalize-path-3.0.0"
sources."npm-bundled-1.1.2"
@@ -94191,7 +94335,7 @@ in
sources."symbol-observable-1.2.0"
sources."symbol-tree-3.2.4"
sources."table-layout-0.4.5"
- (sources."tar-4.4.17" // {
+ (sources."tar-4.4.19" // {
dependencies = [
sources."yallist-3.1.1"
];
@@ -95058,7 +95202,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -95447,7 +95591,7 @@ in
sources."tslib-2.3.1"
];
})
- (sources."@oclif/core-0.5.30" // {
+ (sources."@oclif/core-0.5.31" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -95557,7 +95701,7 @@ in
})
sources."fill-range-7.0.1"
sources."find-up-3.0.0"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."form-data-3.0.1"
sources."fs-extra-8.1.0"
sources."function-bind-1.1.1"
@@ -95715,7 +95859,7 @@ in
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
@@ -95763,7 +95907,7 @@ in
sources."fill-range-7.0.1"
sources."finalhandler-1.1.2"
sources."flatted-2.0.2"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
@@ -96002,7 +96146,7 @@ in
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-date-object-1.0.5"
sources."is-fullwidth-code-point-3.0.0"
sources."is-generator-function-1.0.10"
@@ -96806,7 +96950,7 @@ in
sources."@lerna/npm-install-4.0.0"
(sources."@lerna/npm-publish-4.0.0" // {
dependencies = [
- sources."normalize-package-data-3.0.2"
+ sources."normalize-package-data-3.0.3"
sources."pify-5.0.0"
sources."read-package-json-3.0.1"
];
@@ -96853,7 +96997,7 @@ in
sources."@npmcli/move-file-1.1.2"
sources."@npmcli/node-gyp-1.0.2"
sources."@npmcli/promise-spawn-1.3.2"
- sources."@npmcli/run-script-1.8.5"
+ sources."@npmcli/run-script-1.8.6"
sources."@octokit/auth-token-2.4.5"
sources."@octokit/core-3.5.1"
(sources."@octokit/endpoint-6.0.12" // {
@@ -96961,7 +97105,7 @@ in
sources."conventional-changelog-angular-5.0.12"
(sources."conventional-changelog-core-4.2.3" // {
dependencies = [
- sources."normalize-package-data-3.0.2"
+ sources."normalize-package-data-3.0.3"
];
})
sources."conventional-changelog-preset-loader-2.3.4"
@@ -97117,10 +97261,10 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- (sources."init-package-json-2.0.3" // {
+ (sources."init-package-json-2.0.4" // {
dependencies = [
- sources."normalize-package-data-3.0.2"
- sources."read-package-json-3.0.1"
+ sources."normalize-package-data-3.0.3"
+ sources."read-package-json-4.0.0"
];
})
(sources."inquirer-7.3.3" // {
@@ -97136,7 +97280,7 @@ in
sources."is-boolean-object-1.1.2"
sources."is-callable-1.2.4"
sources."is-ci-2.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-date-object-1.0.5"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -97173,7 +97317,7 @@ in
sources."libnpmaccess-4.0.3"
(sources."libnpmpublish-4.0.2" // {
dependencies = [
- sources."normalize-package-data-3.0.2"
+ sources."normalize-package-data-3.0.3"
];
})
sources."lines-and-columns-1.1.6"
@@ -97199,7 +97343,7 @@ in
(sources."meow-8.1.2" // {
dependencies = [
sources."hosted-git-info-2.8.9"
- sources."normalize-package-data-3.0.2"
+ sources."normalize-package-data-3.0.3"
(sources."read-pkg-5.2.0" // {
dependencies = [
sources."normalize-package-data-2.5.0"
@@ -97269,7 +97413,7 @@ in
sources."resolve-from-4.0.0"
sources."rimraf-2.7.1"
sources."semver-5.7.1"
- sources."tar-4.4.17"
+ sources."tar-4.4.19"
sources."which-1.3.1"
sources."yallist-3.1.1"
];
@@ -97415,7 +97559,7 @@ in
sources."strip-indent-3.0.0"
sources."strong-log-transformer-2.1.0"
sources."supports-color-7.2.0"
- sources."tar-6.1.8"
+ sources."tar-6.1.10"
sources."temp-dir-1.0.0"
(sources."temp-write-4.0.0" // {
dependencies = [
@@ -98532,7 +98676,7 @@ in
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/normalize-package-data-2.4.1"
sources."@types/resolve-0.0.8"
sources."@types/yargs-15.0.14"
@@ -98591,7 +98735,7 @@ in
sources."assign-symbols-1.0.0"
sources."async-3.2.1"
sources."async-each-1.0.3"
- sources."async-retry-1.3.1"
+ sources."async-retry-1.3.3"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
sources."aws-sign2-0.7.0"
@@ -98689,7 +98833,7 @@ in
];
})
sources."browserify-zlib-0.2.0"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."bser-2.1.1"
sources."buffer-5.2.1"
sources."buffer-from-1.1.2"
@@ -98777,7 +98921,7 @@ in
})
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.16.1" // {
+ (sources."core-js-compat-3.16.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -98829,7 +98973,7 @@ in
sources."duplexer2-0.1.4"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -99004,7 +99148,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-buffer-1.1.6"
sources."is-ci-2.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-data-descriptor-1.0.0"
sources."is-deflate-1.0.0"
sources."is-descriptor-1.0.2"
@@ -99132,7 +99276,7 @@ in
];
})
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
sources."semver-5.7.1"
@@ -99257,7 +99401,7 @@ in
sources."resolve-from-5.0.0"
sources."resolve-url-0.2.1"
sources."ret-0.1.15"
- sources."retry-0.12.0"
+ sources."retry-0.13.1"
sources."rimraf-2.7.1"
sources."ripemd160-2.0.2"
sources."rollup-1.32.1"
@@ -99866,7 +100010,7 @@ in
sources."inherits-2.0.4"
sources."inquirer-0.12.0"
sources."interpret-1.4.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-my-ip-valid-1.0.0"
sources."is-my-json-valid-2.20.5"
@@ -100144,7 +100288,7 @@ in
sources."tslib-2.3.1"
];
})
- (sources."@oclif/core-0.5.30" // {
+ (sources."@oclif/core-0.5.31" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -100170,7 +100314,7 @@ in
sources."@percy/config-1.0.0-beta.65"
sources."@percy/logger-1.0.0-beta.65"
sources."@percy/migrate-0.10.0"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/parse-json-4.0.0"
sources."@types/yauzl-2.9.2"
sources."agent-base-6.0.2"
@@ -100205,7 +100349,7 @@ in
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."buffer-5.7.1"
sources."buffer-crc32-0.2.13"
sources."buffer-from-1.1.2"
@@ -100317,7 +100461,7 @@ in
sources."devtools-protocol-0.0.901419"
sources."dir-glob-3.0.1"
sources."dompurify-2.3.0"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
@@ -100360,7 +100504,7 @@ in
sources."extract-zip-2.0.1"
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.2.7"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."fd-slicer-1.1.0"
(sources."figures-3.2.0" // {
dependencies = [
@@ -100378,7 +100522,7 @@ in
];
})
sources."find-up-4.1.0"
- sources."flow-parser-0.157.0"
+ sources."flow-parser-0.158.0"
sources."for-in-1.0.2"
sources."fragment-cache-0.2.1"
sources."fs-constants-1.0.0"
@@ -100509,7 +100653,7 @@ in
sources."node-dir-0.1.17"
sources."node-fetch-2.6.1"
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
(sources."object-copy-0.1.0" // {
dependencies = [
sources."define-property-0.2.5"
@@ -100724,29 +100868,32 @@ in
mirakurun = nodeEnv.buildNodePackage {
name = "mirakurun";
packageName = "mirakurun";
- version = "3.8.0";
+ version = "3.9.0-beta.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mirakurun/-/mirakurun-3.8.0.tgz";
- sha512 = "uEJ8S5nMNq6MvtxnWso6jLkwfA62RVa0+E3+TbBTOthPeC0FagskjcA6KZb2xNuEkMFoeZUQcAZcMIY5mKkHgQ==";
+ url = "https://registry.npmjs.org/mirakurun/-/mirakurun-3.9.0-beta.0.tgz";
+ sha512 = "WJWtktwaHJ9dwp1uJ6bcy5jJbCKM/Vi4O8wE3QRR2+yTu1Jg00D94Xc5OfJemHxC2nKUBtP0NamfwhtoEZff2A==";
};
dependencies = [
sources."@fluentui/date-time-utilities-8.2.2"
sources."@fluentui/dom-utilities-2.1.4"
- sources."@fluentui/font-icons-mdl2-8.1.8"
- sources."@fluentui/foundation-legacy-8.1.8"
+ sources."@fluentui/font-icons-mdl2-8.1.9"
+ sources."@fluentui/foundation-legacy-8.1.9"
sources."@fluentui/keyboard-key-0.3.4"
sources."@fluentui/merge-styles-8.1.4"
sources."@fluentui/react-8.27.0"
- sources."@fluentui/react-focus-8.1.10"
- sources."@fluentui/react-hooks-8.2.6"
+ sources."@fluentui/react-focus-8.1.11"
+ sources."@fluentui/react-hooks-8.2.7"
sources."@fluentui/react-window-provider-2.1.4"
sources."@fluentui/set-version-8.1.4"
- sources."@fluentui/style-utilities-8.2.2"
- sources."@fluentui/theme-2.2.1"
- sources."@fluentui/utilities-8.2.2"
+ sources."@fluentui/style-utilities-8.3.0"
+ sources."@fluentui/theme-2.2.2"
+ sources."@fluentui/utilities-8.3.0"
sources."@microsoft/load-themed-styles-1.10.202"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
+ sources."@types/node-16.6.2"
+ sources."@types/uuid-3.4.10"
+ sources."@types/ws-6.0.4"
sources."accepts-1.3.7"
sources."ajv-6.12.6"
sources."ansi-escapes-1.4.0"
@@ -100755,12 +100902,14 @@ in
sources."argparse-1.0.10"
sources."aribts-1.3.5"
sources."array-flatten-1.1.1"
+ sources."async-limiter-1.0.1"
sources."babel-polyfill-6.23.0"
(sources."babel-runtime-6.26.0" // {
dependencies = [
sources."regenerator-runtime-0.11.1"
];
})
+ sources."backo2-1.0.2"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
sources."basic-auth-2.0.1"
@@ -100768,6 +100917,7 @@ in
sources."brace-expansion-1.1.11"
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
+ sources."bufferutil-4.0.3"
sources."builtin-status-codes-3.0.0"
sources."bytes-3.1.0"
(sources."cacheable-request-6.1.0" // {
@@ -100845,6 +100995,7 @@ in
sources."is-dir-1.0.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-stream-1.1.0"
+ sources."isomorphic-ws-4.0.1"
sources."js-tokens-4.0.0"
(sources."js-yaml-4.1.0" // {
dependencies = [
@@ -100853,6 +101004,11 @@ in
})
sources."json-buffer-3.0.0"
sources."json-schema-traverse-0.4.1"
+ (sources."jsonrpc2-ws-1.0.0-beta9" // {
+ dependencies = [
+ sources."eventemitter3-3.1.2"
+ ];
+ })
sources."keyv-3.1.0"
sources."latest-version-5.1.0"
sources."lodash-4.17.21"
@@ -100879,6 +101035,7 @@ in
sources."mute-stream-0.0.7"
sources."negotiator-0.6.2"
sources."node-fetch-1.6.3"
+ sources."node-gyp-build-4.2.3"
sources."normalize-url-4.5.1"
sources."object-assign-4.1.1"
sources."on-finished-2.3.0"
@@ -100963,6 +101120,7 @@ in
sources."registry-url-5.1.0"
sources."responselike-1.0.2"
sources."restore-cursor-2.0.0"
+ sources."rfdc-1.3.0"
sources."run-async-2.4.1"
sources."rx-4.1.0"
sources."safe-buffer-5.1.2"
@@ -101014,10 +101172,14 @@ in
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
sources."url-parse-lax-3.0.0"
+ sources."utf-8-validate-5.0.5"
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
+ sources."uuid-3.4.0"
+ sources."uws-9.148.0"
sources."vary-1.1.2"
sources."wrappy-1.0.2"
+ sources."ws-6.2.2"
sources."xtend-4.0.2"
sources."yallist-4.0.0"
];
@@ -101364,10 +101526,10 @@ in
netlify-cli = nodeEnv.buildNodePackage {
name = "netlify-cli";
packageName = "netlify-cli";
- version = "6.4.2";
+ version = "6.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.4.2.tgz";
- sha512 = "3w4D4AG3j0+diPu284sWPenkyTIjZ/j0M3DQ+MU6Vp3298fV/yncpC0taAPk/7NxqAH90Z+iWpdvoO9IUahzzA==";
+ url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.6.1.tgz";
+ sha512 = "BDNO/ML1N8ep7WuDYn294IBbJfNshXdNRbCe7SIkyfck4T7e81cSgz8G5DqooiIukHGjBzlkoVU4s/khSSoMsQ==";
};
dependencies = [
sources."@babel/code-frame-7.14.5"
@@ -101500,36 +101662,27 @@ in
sources."@bugsnag/node-7.11.0"
sources."@bugsnag/safe-json-stringify-6.0.0"
sources."@dabh/diagnostics-2.0.2"
- sources."@jest/types-24.9.0"
+ sources."@jest/types-26.6.2"
sources."@mrmlnc/readdir-enhanced-2.2.1"
- (sources."@netlify/build-18.2.9" // {
+ (sources."@netlify/build-18.3.0" // {
dependencies = [
- sources."is-plain-obj-2.1.0"
- (sources."locate-path-5.0.0" // {
- dependencies = [
- sources."p-locate-4.1.0"
- ];
- })
sources."resolve-2.0.0-next.3"
];
})
- (sources."@netlify/cache-utils-2.0.1" // {
+ (sources."@netlify/cache-utils-2.0.3" // {
dependencies = [
sources."del-5.1.0"
- sources."locate-path-5.0.0"
- sources."p-locate-4.1.0"
sources."p-map-3.0.0"
sources."slash-3.0.0"
];
})
- (sources."@netlify/config-15.3.3" // {
+ (sources."@netlify/config-15.3.8" // {
dependencies = [
sources."dot-prop-5.3.0"
- sources."is-plain-obj-2.1.0"
];
})
sources."@netlify/esbuild-0.13.6"
- sources."@netlify/framework-info-5.8.0"
+ sources."@netlify/framework-info-5.9.1"
sources."@netlify/functions-utils-2.0.2"
(sources."@netlify/git-utils-2.0.1" // {
dependencies = [
@@ -101556,7 +101709,7 @@ in
sources."@netlify/open-api-2.5.0"
(sources."@netlify/plugin-edge-handlers-1.11.22" // {
dependencies = [
- sources."@types/node-14.17.9"
+ sources."@types/node-14.17.10"
];
})
sources."@netlify/plugins-list-3.3.0"
@@ -101567,7 +101720,6 @@ in
sources."ansi-styles-4.3.0"
sources."cliui-7.0.4"
sources."cp-file-9.1.0"
- sources."pkg-dir-5.0.0"
sources."resolve-2.0.0-next.3"
sources."wrap-ansi-7.0.0"
sources."y18n-5.0.8"
@@ -101584,6 +101736,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
(sources."@oclif/color-0.1.2" // {
dependencies = [
+ sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
(sources."chalk-3.0.0" // {
dependencies = [
@@ -101623,7 +101776,7 @@ in
sources."tslib-2.3.1"
];
})
- (sources."@oclif/core-0.5.30" // {
+ (sources."@oclif/core-0.5.31" // {
dependencies = [
sources."@nodelib/fs.stat-2.0.5"
sources."ansi-styles-4.3.0"
@@ -101667,6 +101820,7 @@ in
(sources."@oclif/plugin-not-found-1.2.4" // {
dependencies = [
sources."ansi-escapes-3.2.0"
+ sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
sources."clean-stack-2.2.0"
@@ -101686,7 +101840,6 @@ in
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
- sources."npm-run-path-4.0.1"
sources."tslib-2.3.1"
sources."universalify-2.0.0"
];
@@ -101741,16 +101894,16 @@ in
sources."@types/http-proxy-1.17.7"
sources."@types/istanbul-lib-coverage-2.0.3"
sources."@types/istanbul-lib-report-3.0.0"
- sources."@types/istanbul-reports-1.1.2"
+ sources."@types/istanbul-reports-3.0.1"
sources."@types/keyv-3.1.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/node-fetch-2.5.12"
sources."@types/normalize-package-data-2.4.1"
sources."@types/resolve-1.17.1"
sources."@types/responselike-1.0.0"
sources."@types/semver-7.3.8"
- sources."@types/yargs-13.0.12"
+ sources."@types/yargs-15.0.14"
sources."@types/yargs-parser-20.2.1"
sources."@typescript-eslint/types-4.29.2"
(sources."@typescript-eslint/typescript-estree-4.29.2" // {
@@ -101784,20 +101937,22 @@ in
(sources."all-node-versions-8.0.0" // {
dependencies = [
sources."@jest/types-25.5.0"
- sources."@types/yargs-15.0.14"
- sources."ansi-regex-5.0.0"
+ sources."@types/istanbul-reports-1.1.2"
sources."ansi-styles-4.3.0"
+ sources."camelcase-5.3.1"
sources."chalk-3.0.0"
sources."get-stream-5.2.0"
sources."has-flag-4.0.0"
sources."jest-get-type-25.2.6"
sources."jest-validate-25.5.0"
sources."pretty-format-25.5.0"
+ sources."react-is-16.13.1"
sources."supports-color-7.2.0"
];
})
(sources."ansi-align-3.0.0" // {
dependencies = [
+ sources."ansi-regex-4.1.0"
sources."emoji-regex-7.0.3"
sources."is-fullwidth-code-point-2.0.0"
sources."string-width-3.1.0"
@@ -101805,7 +101960,7 @@ in
];
})
sources."ansi-escapes-4.3.2"
- sources."ansi-regex-4.1.0"
+ sources."ansi-regex-5.0.0"
sources."ansi-styles-5.2.0"
sources."ansicolors-0.3.2"
sources."any-observable-0.3.0"
@@ -101819,7 +101974,6 @@ in
(sources."archiver-utils-2.1.0" // {
dependencies = [
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
];
})
sources."argparse-2.0.1"
@@ -101869,7 +102023,6 @@ in
(sources."boxen-5.0.1" // {
dependencies = [
sources."ansi-styles-4.3.0"
- sources."camelcase-6.2.0"
sources."type-fest-0.20.2"
sources."wrap-ansi-7.0.0"
];
@@ -101880,7 +102033,7 @@ in
sources."extend-shallow-2.0.1"
];
})
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -101909,7 +102062,7 @@ in
sources."call-bind-1.0.2"
sources."call-me-maybe-1.0.1"
sources."callsite-1.0.0"
- sources."camelcase-5.3.1"
+ sources."camelcase-6.2.0"
sources."caniuse-lite-1.0.30001251"
sources."cardinal-2.1.1"
(sources."chalk-4.1.2" // {
@@ -102007,17 +102160,9 @@ in
sources."dot-prop-5.3.0"
];
})
- (sources."content-disposition-0.5.3" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
+ sources."content-disposition-0.5.3"
sources."content-type-1.0.4"
- (sources."convert-source-map-1.8.0" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
+ sources."convert-source-map-1.8.0"
sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
@@ -102026,10 +102171,9 @@ in
sources."pump-1.0.3"
sources."readable-stream-2.3.7"
sources."readdirp-2.2.1"
- sources."safe-buffer-5.1.2"
];
})
- (sources."core-js-compat-3.16.1" // {
+ (sources."core-js-compat-3.16.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -102044,12 +102188,7 @@ in
})
sources."crc-32-1.2.0"
sources."crc32-stream-4.0.2"
- (sources."cross-spawn-6.0.5" // {
- dependencies = [
- sources."path-key-2.0.1"
- sources."semver-5.7.1"
- ];
- })
+ sources."cross-spawn-7.0.3"
sources."crypto-random-string-2.0.0"
sources."cyclist-1.0.1"
sources."date-fns-1.30.1"
@@ -102077,19 +102216,21 @@ in
dependencies = [
sources."bl-1.2.3"
sources."file-type-5.2.0"
+ sources."is-stream-1.1.0"
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
sources."tar-stream-1.6.2"
];
})
(sources."decompress-tarbz2-4.1.1" // {
dependencies = [
sources."file-type-6.2.0"
+ sources."is-stream-1.1.0"
];
})
(sources."decompress-targz-4.1.1" // {
dependencies = [
sources."file-type-5.2.0"
+ sources."is-stream-1.1.0"
];
})
(sources."decompress-unzip-4.0.1" // {
@@ -102177,7 +102318,7 @@ in
})
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."elegant-spinner-1.0.1"
sources."elf-cam-0.1.1"
sources."emoji-regex-8.0.0"
@@ -102206,12 +102347,7 @@ in
sources."eventemitter3-4.0.7"
(sources."execa-5.1.1" // {
dependencies = [
- sources."cross-spawn-7.0.3"
- sources."is-stream-2.0.1"
- sources."npm-run-path-4.0.1"
- sources."shebang-command-2.0.0"
- sources."shebang-regex-3.0.0"
- sources."which-2.0.2"
+ sources."human-signals-2.1.0"
];
})
sources."exit-on-epipe-1.0.1"
@@ -102238,7 +102374,6 @@ in
dependencies = [
sources."cookie-0.4.0"
sources."debug-2.6.9"
- sources."safe-buffer-5.1.2"
];
})
sources."express-logging-1.1.1"
@@ -102267,8 +102402,7 @@ in
sources."fast-glob-2.2.7"
sources."fast-levenshtein-2.0.6"
sources."fast-safe-stringify-2.0.8"
- sources."fast-stringify-1.1.2"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."fd-slicer-1.1.0"
sources."fecha-4.2.1"
(sources."fetch-node-website-5.0.3" // {
@@ -102280,10 +102414,10 @@ in
})
sources."@sindresorhus/is-2.1.1"
sources."@szmarczak/http-timer-4.0.6"
- sources."@types/yargs-15.0.14"
- sources."ansi-regex-5.0.0"
+ sources."@types/istanbul-reports-1.1.2"
sources."ansi-styles-4.3.0"
sources."cacheable-request-7.0.2"
+ sources."camelcase-5.3.1"
sources."decompress-response-5.0.0"
sources."defer-to-connect-2.0.1"
sources."get-stream-5.2.0"
@@ -102302,6 +102436,7 @@ in
sources."normalize-url-6.1.0"
sources."p-cancelable-2.1.1"
sources."pretty-format-25.5.0"
+ sources."react-is-16.13.1"
sources."responselike-2.0.0"
sources."supports-color-7.2.0"
sources."type-fest-0.10.0"
@@ -102332,7 +102467,7 @@ in
sources."flush-write-stream-2.0.0"
sources."fn.name-1.1.0"
sources."folder-walker-3.2.0"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."for-in-1.0.2"
sources."form-data-3.0.1"
sources."forwarded-0.2.0"
@@ -102341,7 +102476,6 @@ in
(sources."from2-2.3.0" // {
dependencies = [
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
];
})
sources."from2-array-0.0.4"
@@ -102429,7 +102563,6 @@ in
})
(sources."hasha-5.2.2" // {
dependencies = [
- sources."is-stream-2.0.1"
sources."type-fest-0.8.1"
];
})
@@ -102437,7 +102570,6 @@ in
sources."http-cache-semantics-4.1.0"
(sources."http-call-5.3.0" // {
dependencies = [
- sources."is-stream-2.0.1"
sources."parse-json-4.0.0"
];
})
@@ -102457,7 +102589,7 @@ in
];
})
sources."https-proxy-agent-5.0.0"
- sources."human-signals-2.1.0"
+ sources."human-signals-1.1.1"
sources."hyperlinker-1.0.0"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
@@ -102505,7 +102637,7 @@ in
sources."ci-info-2.0.0"
];
})
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-docker-2.2.1"
@@ -102533,7 +102665,7 @@ in
sources."is-promise-2.2.2"
sources."is-reference-1.2.1"
sources."is-retry-allowed-1.2.0"
- sources."is-stream-1.1.0"
+ sources."is-stream-2.0.1"
sources."is-typedarray-1.0.0"
sources."is-unicode-supported-0.1.0"
sources."is-url-1.2.4"
@@ -102545,17 +102677,8 @@ in
sources."isexe-2.0.0"
sources."isobject-3.0.1"
sources."isurl-1.0.0"
- sources."jest-get-type-24.9.0"
- (sources."jest-validate-24.9.0" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."escape-string-regexp-1.0.5"
- sources."supports-color-5.5.0"
- ];
- })
+ sources."jest-get-type-26.3.0"
+ sources."jest-validate-26.6.2"
(sources."jest-worker-26.6.2" // {
dependencies = [
sources."has-flag-4.0.0"
@@ -102587,7 +102710,6 @@ in
(sources."lazystream-1.0.0" // {
dependencies = [
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
];
})
sources."leven-3.1.0"
@@ -102595,6 +102717,7 @@ in
sources."lines-and-columns-1.1.6"
(sources."listr-0.14.3" // {
dependencies = [
+ sources."is-stream-1.1.0"
sources."p-map-2.1.0"
];
})
@@ -102644,17 +102767,7 @@ in
sources."lodash.templatesettings-4.2.0"
sources."lodash.transform-4.6.0"
sources."lodash.union-4.6.0"
- (sources."log-process-errors-5.1.2" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-3.0.0"
- sources."fast-equals-1.6.3"
- sources."has-flag-4.0.0"
- sources."micro-memoize-2.1.2"
- sources."moize-5.4.7"
- sources."supports-color-7.2.0"
- ];
- })
+ sources."log-process-errors-6.3.0"
sources."log-symbols-4.1.0"
(sources."log-update-2.3.0" // {
dependencies = [
@@ -102719,21 +102832,12 @@ in
sources."mkdirp-0.5.5"
sources."module-definition-3.3.1"
sources."moize-6.0.3"
- (sources."move-file-1.2.0" // {
- dependencies = [
- (sources."cp-file-6.2.0" // {
- dependencies = [
- sources."make-dir-2.1.0"
- ];
- })
- sources."path-exists-3.0.0"
- sources."semver-5.7.1"
- ];
- })
+ sources."move-file-2.1.0"
sources."ms-2.0.0"
(sources."multiparty-4.2.2" // {
dependencies = [
sources."http-errors-1.8.0"
+ sources."safe-buffer-5.2.1"
sources."setprototypeof-1.2.0"
];
})
@@ -102748,24 +102852,25 @@ in
sources."qs-6.10.1"
];
})
- sources."netlify-headers-parser-3.0.1"
+ sources."netlify-headers-parser-4.0.1"
sources."netlify-redirect-parser-11.0.2"
sources."netlify-redirector-0.2.1"
sources."nice-try-1.0.5"
sources."node-fetch-2.6.1"
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
sources."node-source-walk-4.2.0"
(sources."node-version-alias-1.0.1" // {
dependencies = [
sources."@jest/types-25.5.0"
- sources."@types/yargs-15.0.14"
- sources."ansi-regex-5.0.0"
+ sources."@types/istanbul-reports-1.1.2"
sources."ansi-styles-4.3.0"
+ sources."camelcase-5.3.1"
sources."chalk-3.0.0"
sources."has-flag-4.0.0"
sources."jest-get-type-25.2.6"
sources."jest-validate-25.5.0"
sources."pretty-format-25.5.0"
+ sources."react-is-16.13.1"
sources."supports-color-7.2.0"
];
})
@@ -102773,14 +102878,15 @@ in
(sources."normalize-node-version-10.0.0" // {
dependencies = [
sources."@jest/types-25.5.0"
- sources."@types/yargs-15.0.14"
- sources."ansi-regex-5.0.0"
+ sources."@types/istanbul-reports-1.1.2"
sources."ansi-styles-4.3.0"
+ sources."camelcase-5.3.1"
sources."chalk-3.0.0"
sources."has-flag-4.0.0"
sources."jest-get-type-25.2.6"
sources."jest-validate-25.5.0"
sources."pretty-format-25.5.0"
+ sources."react-is-16.13.1"
sources."supports-color-7.2.0"
];
})
@@ -102792,11 +102898,7 @@ in
sources."normalize-path-3.0.0"
sources."normalize-url-4.5.1"
sources."npm-normalize-package-bin-1.0.1"
- (sources."npm-run-path-2.0.2" // {
- dependencies = [
- sources."path-key-2.0.1"
- ];
- })
+ sources."npm-run-path-4.0.1"
sources."number-is-nan-1.0.1"
sources."object-assign-4.1.1"
(sources."object-copy-0.1.0" // {
@@ -102846,7 +102948,7 @@ in
sources."restore-cursor-3.1.0"
];
})
- sources."os-name-3.1.0"
+ sources."os-name-4.0.1"
sources."os-tmpdir-1.0.2"
(sources."p-all-2.1.0" // {
dependencies = [
@@ -102871,12 +102973,8 @@ in
})
sources."p-finally-1.0.0"
sources."p-is-promise-1.1.0"
- sources."p-limit-2.3.0"
- (sources."p-locate-5.0.0" // {
- dependencies = [
- sources."p-limit-3.1.0"
- ];
- })
+ sources."p-limit-3.1.0"
+ sources."p-locate-5.0.0"
sources."p-map-4.0.0"
sources."p-reduce-2.1.0"
sources."p-timeout-2.0.1"
@@ -102894,7 +102992,6 @@ in
(sources."parallel-transform-1.2.0" // {
dependencies = [
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
];
})
sources."parse-github-url-1.0.2"
@@ -102906,6 +103003,12 @@ in
(sources."password-prompt-1.1.2" // {
dependencies = [
sources."ansi-escapes-3.2.0"
+ sources."cross-spawn-6.0.5"
+ sources."path-key-2.0.1"
+ sources."semver-5.7.1"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."which-1.3.1"
];
})
sources."path-dirname-1.0.2"
@@ -102920,13 +103023,7 @@ in
sources."pify-4.0.1"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
- (sources."pkg-dir-4.2.0" // {
- dependencies = [
- sources."find-up-4.1.0"
- sources."locate-path-5.0.0"
- sources."p-locate-4.1.0"
- ];
- })
+ sources."pkg-dir-5.0.0"
sources."posix-character-classes-0.1.1"
sources."postcss-8.3.6"
sources."postcss-values-parser-2.0.1"
@@ -102934,11 +103031,9 @@ in
sources."precond-0.2.3"
sources."prelude-ls-1.1.2"
sources."prepend-http-2.0.0"
- (sources."pretty-format-24.9.0" // {
+ (sources."pretty-format-26.6.2" // {
dependencies = [
- sources."ansi-styles-3.2.1"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
+ sources."ansi-styles-4.3.0"
];
})
sources."pretty-ms-7.0.1"
@@ -102963,7 +103058,7 @@ in
];
})
sources."rc-1.2.8"
- sources."react-is-16.13.1"
+ sources."react-is-17.0.2"
sources."read-package-json-fast-2.0.3"
(sources."read-pkg-5.2.0" // {
dependencies = [
@@ -102974,6 +103069,7 @@ in
dependencies = [
sources."find-up-4.1.0"
sources."locate-path-5.0.0"
+ sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."type-fest-0.8.1"
];
@@ -103033,7 +103129,7 @@ in
sources."run-async-2.4.1"
sources."run-parallel-1.2.0"
sources."rxjs-6.6.7"
- sources."safe-buffer-5.2.1"
+ sources."safe-buffer-5.1.2"
sources."safe-json-stringify-1.2.0"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
@@ -103063,8 +103159,8 @@ in
];
})
sources."setprototypeof-1.1.1"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
+ sources."shebang-command-2.0.0"
+ sources."shebang-regex-3.0.0"
sources."side-channel-1.0.4"
sources."signal-exit-3.0.3"
(sources."simple-swizzle-0.2.2" // {
@@ -103161,20 +103257,11 @@ in
sources."statuses-1.5.0"
sources."strict-uri-encode-1.1.0"
sources."string-width-4.2.2"
- (sources."string_decoder-1.1.1" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
- (sources."strip-ansi-6.0.0" // {
- dependencies = [
- sources."ansi-regex-5.0.0"
- ];
- })
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-6.0.0"
sources."strip-ansi-control-characters-2.0.0"
sources."strip-bom-3.0.0"
sources."strip-dirs-2.1.0"
- sources."strip-eof-1.0.0"
sources."strip-final-newline-2.0.0"
sources."strip-json-comments-2.0.1"
(sources."strip-outer-1.0.1" // {
@@ -103202,7 +103289,6 @@ in
sources."temp-dir-2.0.0"
(sources."tempy-1.0.1" // {
dependencies = [
- sources."is-stream-2.0.1"
sources."type-fest-0.16.0"
];
})
@@ -103216,7 +103302,6 @@ in
(sources."through2-2.0.5" // {
dependencies = [
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
];
})
sources."through2-filter-3.0.0"
@@ -103305,24 +103390,19 @@ in
})
sources."wcwidth-1.0.1"
sources."well-known-symbols-2.0.0"
- sources."which-1.3.1"
+ sources."which-2.0.2"
sources."which-module-2.0.0"
sources."widest-line-3.1.0"
- (sources."windows-release-3.3.3" // {
- dependencies = [
- sources."execa-1.0.0"
- sources."get-stream-4.1.0"
- ];
- })
- (sources."winston-3.3.3" // {
+ (sources."windows-release-4.0.0" // {
dependencies = [
- sources."is-stream-2.0.1"
+ sources."execa-4.1.0"
+ sources."get-stream-5.2.0"
];
})
+ sources."winston-3.3.3"
(sources."winston-transport-4.4.0" // {
dependencies = [
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
];
})
sources."word-wrap-1.2.3"
@@ -103341,10 +103421,15 @@ in
dependencies = [
sources."find-up-4.1.0"
sources."locate-path-5.0.0"
+ sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
];
})
- sources."yargs-parser-18.1.3"
+ (sources."yargs-parser-18.1.3" // {
+ dependencies = [
+ sources."camelcase-5.3.1"
+ ];
+ })
sources."yarn-1.22.11"
sources."yauzl-2.10.0"
sources."yocto-queue-0.1.0"
@@ -103473,7 +103558,7 @@ in
sources."string-width-1.0.2"
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
- sources."tar-6.1.8"
+ sources."tar-6.1.10"
sources."unique-filename-1.1.1"
sources."unique-slug-2.0.2"
sources."util-deprecate-1.0.2"
@@ -103622,7 +103707,7 @@ in
sources."invert-kv-1.0.0"
sources."ipaddr.js-1.9.1"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-finite-1.1.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-typedarray-1.0.0"
@@ -103877,7 +103962,7 @@ in
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
sources."strip-json-comments-2.0.1"
- (sources."tar-4.4.17" // {
+ (sources."tar-4.4.19" // {
dependencies = [
sources."safe-buffer-5.2.1"
];
@@ -103931,7 +104016,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.2"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
@@ -104070,7 +104155,7 @@ in
})
sources."fast-deep-equal-3.1.3"
sources."finalhandler-1.1.2"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."form-data-4.0.0"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
@@ -104371,7 +104456,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-typedarray-1.0.0"
sources."isarray-1.0.0"
@@ -104460,7 +104545,7 @@ in
];
})
sources."strip-ansi-3.0.1"
- (sources."tar-6.1.8" // {
+ (sources."tar-6.1.10" // {
dependencies = [
sources."mkdirp-1.0.4"
];
@@ -104691,7 +104776,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.2"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-1.0.0"
@@ -104787,7 +104872,7 @@ in
sources."execa-5.1.1"
sources."external-editor-3.1.0"
sources."fast-glob-3.2.7"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
(sources."figures-3.2.0" // {
dependencies = [
sources."escape-string-regexp-1.0.5"
@@ -104871,7 +104956,7 @@ in
})
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -104989,7 +105074,7 @@ in
sources."type-fest-0.4.1"
];
})
- (sources."normalize-package-data-3.0.2" // {
+ (sources."normalize-package-data-3.0.3" // {
dependencies = [
sources."hosted-git-info-4.0.2"
];
@@ -105227,7 +105312,7 @@ in
sources."@npmcli/move-file-1.1.2"
sources."@npmcli/node-gyp-1.0.2"
sources."@npmcli/promise-spawn-1.3.2"
- sources."@npmcli/run-script-1.8.5"
+ sources."@npmcli/run-script-1.8.6"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@tootallnate/once-1.1.2"
@@ -105321,7 +105406,7 @@ in
sources."fast-glob-3.2.7"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-memoize-2.5.2"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."figgy-pudding-3.5.2"
sources."fill-range-7.0.1"
sources."find-up-5.0.0"
@@ -105516,7 +105601,7 @@ in
sources."strip-ansi-3.0.1"
sources."strip-json-comments-2.0.1"
sources."supports-color-7.2.0"
- sources."tar-6.1.8"
+ sources."tar-6.1.10"
sources."to-readable-stream-1.0.0"
sources."to-regex-range-5.0.1"
sources."tough-cookie-2.5.0"
@@ -106039,7 +106124,7 @@ in
sources."pako-1.0.11"
];
})
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
(sources."buffer-4.9.2" // {
dependencies = [
sources."isarray-1.0.0"
@@ -106083,7 +106168,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.16.1" // {
+ (sources."core-js-compat-3.16.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -106194,7 +106279,7 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -106337,7 +106422,7 @@ in
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
sources."is-color-stop-1.1.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -106458,7 +106543,7 @@ in
sources."punycode-1.4.1"
];
})
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
sources."normalize-path-3.0.0"
sources."normalize-url-3.3.0"
sources."nth-check-1.0.2"
@@ -107311,7 +107396,7 @@ in
sources."ipaddr.js-2.0.1"
sources."is-arguments-1.1.1"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-date-object-1.0.5"
sources."is-finite-1.1.0"
sources."is-fullwidth-code-point-1.0.0"
@@ -107914,7 +107999,7 @@ in
sources."expand-template-2.0.3"
sources."fast-glob-3.2.7"
sources."fast-levenshtein-2.0.6"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."fill-range-7.0.1"
sources."from2-2.3.0"
sources."fs-constants-1.0.0"
@@ -107942,7 +108027,7 @@ in
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."into-stream-6.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
@@ -108144,7 +108229,7 @@ in
sources."fclone-1.0.11"
sources."file-uri-to-path-2.0.0"
sources."fill-range-7.0.1"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
@@ -108167,7 +108252,7 @@ in
sources."ini-1.3.8"
sources."ip-1.1.5"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.1"
sources."is-number-7.0.0"
@@ -108376,7 +108461,7 @@ in
sources."emoji-regex-8.0.0"
sources."escalade-3.1.1"
sources."fast-glob-3.2.7"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."fill-range-7.0.1"
sources."fs-extra-9.1.0"
sources."fsevents-2.3.2"
@@ -108496,7 +108581,7 @@ in
sources."fs.realpath-1.0.0"
sources."gaze-1.1.3"
sources."glob-7.1.7"
- sources."globule-1.3.2"
+ sources."globule-1.3.3"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."isexe-2.0.0"
@@ -108625,7 +108710,7 @@ in
sources."gaze-1.1.3"
sources."get-assigned-identifiers-1.2.0"
sources."glob-7.1.7"
- sources."globule-1.3.2"
+ sources."globule-1.3.3"
sources."graceful-fs-4.2.8"
sources."has-1.0.3"
(sources."hash-base-3.1.0" // {
@@ -108647,7 +108732,7 @@ in
];
})
sources."is-buffer-1.1.6"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."json-stable-stringify-0.0.1"
@@ -108882,7 +108967,7 @@ in
sources."defer-to-connect-1.1.3"
sources."duplexer3-0.1.4"
sources."end-of-stream-1.4.4"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."fs-extra-9.1.0"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
@@ -109035,7 +109120,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."invert-kv-2.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-stream-1.1.0"
sources."is-url-1.2.4"
@@ -109440,7 +109525,7 @@ in
sources."@types/glob-7.1.4"
sources."@types/json-schema-7.0.9"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
sources."@webassemblyjs/ast-1.9.0"
@@ -109594,7 +109679,7 @@ in
];
})
sources."browserify-zlib-0.1.4"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -109713,7 +109798,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.16.1" // {
+ (sources."core-js-compat-3.16.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -109857,7 +109942,7 @@ in
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -109991,7 +110076,7 @@ in
sources."find-cache-dir-2.1.0"
sources."find-up-3.0.0"
sources."flush-write-stream-1.1.1"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."for-in-1.0.2"
sources."forwarded-0.2.0"
sources."fragment-cache-0.2.1"
@@ -110156,7 +110241,7 @@ in
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
sources."is-color-stop-1.1.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-data-descriptor-1.0.0"
sources."is-date-object-1.0.5"
sources."is-deflate-1.0.0"
@@ -110299,7 +110384,7 @@ in
];
})
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
sources."normalize-path-3.0.0"
sources."normalize-range-0.1.2"
(sources."normalize-url-2.0.1" // {
@@ -111249,12 +111334,12 @@ in
sources."@redocly/ajv-8.6.2"
(sources."@redocly/openapi-core-1.0.0-beta.54" // {
dependencies = [
- sources."@types/node-14.17.9"
+ sources."@types/node-14.17.10"
];
})
sources."@redocly/react-dropdown-aria-2.0.12"
sources."@types/json-schema-7.0.9"
- sources."@types/node-15.14.7"
+ sources."@types/node-15.14.8"
sources."ansi-regex-5.0.0"
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.2"
@@ -111584,7 +111669,7 @@ in
sources."ink-2.7.1"
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-plain-obj-1.1.0"
sources."js-tokens-4.0.0"
@@ -111778,7 +111863,7 @@ in
sources."@types/json-schema-7.0.9"
sources."@types/minimatch-3.0.5"
sources."@types/mocha-8.2.3"
- sources."@types/node-14.17.9"
+ sources."@types/node-14.17.10"
sources."@types/node-fetch-2.5.12"
sources."@types/vscode-1.59.0"
sources."@typescript-eslint/eslint-plugin-4.29.2"
@@ -111841,8 +111926,8 @@ in
sources."cross-spawn-7.0.3"
sources."css-select-4.1.3"
sources."css-what-5.0.1"
- sources."d3-7.0.0"
- sources."d3-array-3.0.1"
+ sources."d3-7.0.1"
+ sources."d3-array-3.0.2"
sources."d3-axis-3.0.0"
sources."d3-brush-3.0.0"
sources."d3-chord-3.0.1"
@@ -111949,7 +112034,7 @@ in
sources."fast-glob-3.2.7"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."fd-slicer-1.1.0"
sources."file-entry-cache-6.0.1"
sources."fill-range-7.0.1"
@@ -112243,7 +112328,7 @@ in
sources."commander-1.3.2"
];
})
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."formidable-1.0.11"
sources."fresh-0.2.0"
sources."function-bind-1.1.1"
@@ -112297,10 +112382,10 @@ in
sass = nodeEnv.buildNodePackage {
name = "sass";
packageName = "sass";
- version = "1.37.5";
+ version = "1.38.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.37.5.tgz";
- sha512 = "Cx3ewxz9QB/ErnVIiWg2cH0kiYZ0FPvheDTVC6BsiEGBTZKKZJ1Gq5Kq6jy3PKtL6+EJ8NIoaBW/RSd2R6cZOA==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.38.0.tgz";
+ sha512 = "WBccZeMigAGKoI+NgD7Adh0ab1HUq+6BmyBUEaGxtErbUtWUevEbdgo5EZiJQofLUGcKtlNaO2IdN73AHEua5g==";
};
dependencies = [
sources."anymatch-3.1.2"
@@ -112470,10 +112555,10 @@ in
serverless = nodeEnv.buildNodePackage {
name = "serverless";
packageName = "serverless";
- version = "2.54.0";
+ version = "2.55.0";
src = fetchurl {
- url = "https://registry.npmjs.org/serverless/-/serverless-2.54.0.tgz";
- sha512 = "z/cVR0jg7QN2YRP9SvcJGM2nZPGI2b+EWxrbJy3PfY1VhBfJsODQjkdwOpsmiYVxX8UYxOrjO507JJRm2Fn3Aw==";
+ url = "https://registry.npmjs.org/serverless/-/serverless-2.55.0.tgz";
+ sha512 = "PFKPxJvdwro7DgF1/0WmAGryJCj6DIoyB44B+B1G6Sxqq/yXZ3j8pccbUIGHtAYNJFp0kr7U1y8sHxcAuBw5kQ==";
};
dependencies = [
sources."2-thenable-1.0.0"
@@ -112506,7 +112591,7 @@ in
];
})
sources."@serverless/component-metrics-1.0.8"
- (sources."@serverless/components-3.15.0" // {
+ (sources."@serverless/components-3.15.1" // {
dependencies = [
(sources."@serverless/utils-4.1.0" // {
dependencies = [
@@ -112548,7 +112633,7 @@ in
];
})
sources."@serverless/template-1.1.4"
- (sources."@serverless/utils-5.6.0" // {
+ (sources."@serverless/utils-5.7.0" // {
dependencies = [
sources."get-stream-6.0.1"
sources."write-file-atomic-3.0.3"
@@ -112565,7 +112650,7 @@ in
sources."@types/keyv-3.1.2"
sources."@types/lodash-4.14.172"
sources."@types/long-4.0.1"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/request-2.48.7"
sources."@types/request-promise-native-1.0.18"
sources."@types/responselike-1.0.0"
@@ -112626,7 +112711,7 @@ in
sources."async-2.6.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.968.0" // {
+ (sources."aws-sdk-2.971.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -112799,7 +112884,7 @@ in
sources."deferred-0.7.11"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
- sources."denque-1.5.0"
+ sources."denque-1.5.1"
sources."detect-libc-1.0.3"
sources."diagnostics-1.1.1"
sources."dijkstrajs-1.0.2"
@@ -112851,7 +112936,7 @@ in
sources."fast-json-stable-stringify-2.1.0"
sources."fast-safe-stringify-2.0.8"
sources."fastest-levenshtein-1.0.12"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."fd-slicer-1.1.0"
sources."fecha-4.2.1"
sources."figures-3.2.0"
@@ -112863,7 +112948,7 @@ in
sources."fill-range-7.0.1"
sources."find-requires-1.0.0"
sources."flat-5.0.2"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."forever-agent-0.6.1"
sources."form-data-2.5.1"
sources."formidable-1.2.2"
@@ -113244,7 +113329,7 @@ in
sources."untildify-3.0.3"
];
})
- (sources."tar-6.1.8" // {
+ (sources."tar-6.1.10" // {
dependencies = [
sources."chownr-2.0.0"
sources."mkdirp-1.0.4"
@@ -113988,7 +114073,7 @@ in
};
dependencies = [
sources."@arcanis/slice-ansi-1.0.2"
- sources."@deepcode/dcignore-1.0.2"
+ sources."@deepcode/dcignore-1.0.3"
sources."@iarna/toml-2.2.5"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
@@ -113998,7 +114083,7 @@ in
sources."@sindresorhus/is-4.0.1"
sources."@snyk/child-process-0.3.1"
sources."@snyk/cli-interface-2.11.0"
- sources."@snyk/cloud-config-parser-1.10.1"
+ sources."@snyk/cloud-config-parser-1.10.2"
sources."@snyk/cocoapods-lockfile-parser-3.6.2"
(sources."@snyk/code-client-4.0.0" // {
dependencies = [
@@ -114183,7 +114268,7 @@ in
sources."color-name-1.1.4"
sources."concat-map-0.0.1"
sources."configstore-5.0.1"
- sources."core-js-3.16.1"
+ sources."core-js-3.16.2"
sources."core-util-is-1.0.2"
(sources."cross-spawn-6.0.5" // {
dependencies = [
@@ -114243,7 +114328,7 @@ in
sources."micromatch-4.0.4"
];
})
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."figures-3.2.0"
sources."fill-range-7.0.1"
sources."fs-constants-1.0.0"
@@ -114597,7 +114682,7 @@ in
})
sources."strip-eof-1.0.0"
sources."supports-color-7.2.0"
- sources."tar-6.1.8"
+ sources."tar-6.1.10"
sources."tar-stream-2.2.0"
sources."temp-dir-2.0.0"
(sources."tempy-1.0.1" // {
@@ -114677,7 +114762,7 @@ in
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."accepts-1.3.7"
sources."base64-arraybuffer-0.1.4"
sources."base64id-2.0.0"
@@ -114774,7 +114859,7 @@ in
sources."ini-1.3.8"
sources."is-arrayish-0.2.1"
sources."is-ci-1.2.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-installed-globally-0.1.0"
sources."is-npm-1.0.0"
@@ -115172,7 +115257,7 @@ in
sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
sources."is-canonical-base64-1.1.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -115217,7 +115302,7 @@ in
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isobject-2.1.0"
- (sources."jitdb-3.1.7" // {
+ (sources."jitdb-3.2.0" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."push-stream-11.0.1"
@@ -115311,6 +115396,7 @@ in
sources."nearley-2.20.1"
sources."next-tick-1.1.0"
sources."nice-try-1.0.5"
+ sources."node-bindgen-loader-1.0.1"
sources."node-gyp-build-4.2.3"
sources."non-private-ip-1.4.4"
sources."normalize-path-2.1.1"
@@ -115616,7 +115702,7 @@ in
sources."ssb-client-4.9.0"
sources."ssb-config-3.4.5"
sources."ssb-db-19.2.0"
- (sources."ssb-db2-2.1.5" // {
+ (sources."ssb-db2-2.2.0" // {
dependencies = [
sources."abstract-leveldown-6.2.3"
(sources."flumecodec-0.0.1" // {
@@ -115676,6 +115762,8 @@ in
sources."ssb-keys-8.2.0"
];
})
+ sources."ssb-validate2-0.1.1"
+ sources."ssb-validate2-rsjs-node-1.0.0"
sources."ssb-ws-6.2.3"
sources."stack-0.1.0"
(sources."static-extend-0.1.2" // {
@@ -115879,7 +115967,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.968.0" // {
+ (sources."aws-sdk-2.971.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -116064,7 +116152,7 @@ in
sources."fd-slicer-1.1.0"
sources."finalhandler-1.1.2"
sources."find-up-3.0.0"
- sources."follow-redirects-1.14.1"
+ sources."follow-redirects-1.14.2"
sources."forever-agent-0.6.1"
sources."form-data-2.1.4"
sources."formidable-1.2.2"
@@ -116133,7 +116221,7 @@ in
sources."ipaddr.js-1.9.1"
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
(sources."is-expression-3.0.0" // {
dependencies = [
sources."acorn-4.0.13"
@@ -116714,7 +116802,7 @@ in
];
})
sources."braces-3.0.2"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
@@ -116756,7 +116844,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -116767,7 +116855,7 @@ in
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.2.7"
sources."fastest-levenshtein-1.0.12"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."file-entry-cache-6.0.1"
sources."fill-range-7.0.1"
sources."find-up-4.1.0"
@@ -116807,7 +116895,7 @@ in
sources."is-alphanumerical-1.0.4"
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-decimal-1.0.4"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -116852,8 +116940,8 @@ in
];
})
sources."ms-2.1.2"
- sources."node-releases-1.1.74"
- (sources."normalize-package-data-3.0.2" // {
+ sources."node-releases-1.1.75"
+ (sources."normalize-package-data-3.0.3" // {
dependencies = [
sources."semver-7.3.5"
];
@@ -116998,7 +117086,7 @@ in
sources."@emmetio/abbreviation-2.2.2"
sources."@emmetio/css-abbreviation-2.1.4"
sources."@emmetio/scanner-1.0.0"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/pug-2.0.5"
sources."@types/sass-1.16.1"
sources."anymatch-3.1.2"
@@ -117080,7 +117168,7 @@ in
sha512 = "eGEuZ3UEanOhlpQhICLjKejDxcZ9uYJlGnBGKAPW7uugolaBE6HpEBIiKFZN/TMRFFHQUURgGvsVn8/HJUBfeQ==";
};
dependencies = [
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/pug-2.0.5"
sources."@types/sass-1.16.1"
sources."ansi-styles-4.3.0"
@@ -118196,7 +118284,7 @@ in
sources."is-arguments-1.1.1"
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-date-object-1.0.5"
sources."is-decimal-1.0.4"
sources."is-file-1.0.0"
@@ -118563,7 +118651,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
sources."is-ci-2.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-decimal-1.0.4"
sources."is-empty-1.2.0"
sources."is-fullwidth-code-point-2.0.0"
@@ -119231,7 +119319,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.2"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -119307,7 +119395,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.16.1"
+ sources."core-js-3.16.2"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -119618,7 +119706,7 @@ in
sources."strip-outer-1.0.1"
sources."strtok3-6.2.4"
sources."supports-color-7.2.0"
- sources."tar-4.4.17"
+ sources."tar-4.4.19"
sources."tlds-1.208.0"
sources."to-array-0.1.4"
sources."to-readable-stream-1.0.0"
@@ -120137,7 +120225,7 @@ in
sources."del-6.0.0"
sources."dir-glob-3.0.1"
sources."fast-glob-3.2.7"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."fill-range-7.0.1"
sources."fs-extra-10.0.0"
sources."fs.realpath-1.0.0"
@@ -120245,7 +120333,7 @@ in
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-14.17.9"
+ sources."@types/node-14.17.10"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.0"
@@ -120526,7 +120614,7 @@ in
sha512 = "N+ENrder8z9zJQF9UM7K3/1LcfVW60omqeyaQsu6GN1BGdCgPm8gdHssn7WRD7vx+ABKc82IE1+pJyHOPkwe+w==";
};
dependencies = [
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -120741,7 +120829,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."internmap-1.0.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-fullwidth-code-point-1.0.0"
sources."isarray-1.0.0"
sources."lru-cache-6.0.0"
@@ -120781,7 +120869,7 @@ in
sources."string-width-1.0.2"
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
- sources."tar-6.1.8"
+ sources."tar-6.1.10"
sources."topojson-client-3.1.0"
sources."util-deprecate-1.0.2"
sources."vega-5.20.2"
@@ -120904,7 +120992,7 @@ in
dependencies = [
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@vercel/build-utils-2.12.2"
sources."@vercel/go-1.2.3"
sources."@vercel/node-1.12.1"
@@ -121143,7 +121231,7 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
@@ -121490,7 +121578,7 @@ in
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."browser-stdout-1.3.1"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."buffer-crc32-0.2.13"
sources."buffer-from-1.1.2"
sources."call-bind-1.0.2"
@@ -121535,7 +121623,7 @@ in
sources."domelementtype-2.2.0"
sources."domhandler-4.2.0"
sources."domutils-2.7.0"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."emoji-regex-8.0.0"
sources."emojis-list-3.0.0"
sources."enhanced-resolve-5.8.2"
@@ -121583,7 +121671,7 @@ in
sources."inherits-2.0.4"
sources."interpret-2.2.0"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-2.0.0"
sources."is-glob-4.0.1"
@@ -121637,7 +121725,7 @@ in
sources."mute-stream-0.0.8"
sources."nanoid-3.1.20"
sources."neo-async-2.6.2"
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
sources."normalize-path-3.0.0"
sources."npm-run-path-4.0.1"
sources."nth-check-2.0.0"
@@ -121744,7 +121832,7 @@ in
sources."vscode-debugadapter-testsupport-1.48.0"
sources."vscode-debugprotocol-1.48.0"
sources."watchpack-2.2.0"
- sources."webpack-5.50.0"
+ sources."webpack-5.51.0"
(sources."webpack-cli-4.8.0" // {
dependencies = [
sources."commander-7.2.0"
@@ -122101,7 +122189,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-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -122456,7 +122544,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-buffer-2.0.5"
sources."is-ci-2.0.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-data-descriptor-1.0.0"
sources."is-decimal-1.0.4"
sources."is-descriptor-1.0.2"
@@ -123076,7 +123164,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.16.1"
+ sources."core-js-pure-3.16.2"
sources."core-util-is-1.0.2"
sources."cssom-0.4.4"
(sources."cssstyle-2.3.0" // {
@@ -123183,7 +123271,7 @@ in
sources."svg-pathdata-5.0.5"
sources."svg2img-0.9.3"
sources."symbol-tree-3.2.4"
- sources."tar-6.1.8"
+ sources."tar-6.1.10"
(sources."tough-cookie-4.0.0" // {
dependencies = [
sources."universalify-0.1.2"
@@ -123282,7 +123370,7 @@ in
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/yauzl-2.9.1"
sources."acorn-7.4.1"
sources."acorn-jsx-5.3.2"
@@ -123843,17 +123931,17 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "5.50.0";
+ version = "5.51.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.50.0.tgz";
- sha512 = "hqxI7t/KVygs0WRv/kTgUW8Kl3YC81uyWQSo/7WUs5LsuRw0htH/fCwbVBGCuiX/t4s7qzjXFcf41O8Reiypag==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.51.0.tgz";
+ sha512 = "oySQoKUuf5r0JaPIYi8q90c/GmU9fGdSbZ0cAjFq3OWx57wniRTWvta1T9t+e5WZ6H6mHrxksNatkqfIEuTWGg==";
};
dependencies = [
sources."@types/eslint-7.28.0"
sources."@types/eslint-scope-3.7.1"
sources."@types/estree-0.0.50"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -123875,13 +123963,13 @@ in
sources."acorn-import-assertions-1.7.6"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
- sources."browserslist-4.16.7"
+ sources."browserslist-4.16.8"
sources."buffer-from-1.1.2"
sources."caniuse-lite-1.0.30001251"
sources."chrome-trace-event-1.0.3"
sources."colorette-1.3.0"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.3.806"
+ sources."electron-to-chromium-1.3.812"
sources."enhanced-resolve-5.8.2"
sources."es-module-lexer-0.7.1"
sources."escalade-3.1.1"
@@ -123906,7 +123994,7 @@ in
sources."mime-db-1.49.0"
sources."mime-types-2.1.32"
sources."neo-async-2.6.2"
- sources."node-releases-1.1.74"
+ sources."node-releases-1.1.75"
sources."p-limit-3.1.0"
sources."punycode-2.1.1"
sources."randombytes-2.1.0"
@@ -123965,7 +124053,7 @@ in
sources."human-signals-2.1.0"
sources."import-local-3.0.2"
sources."interpret-2.2.0"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-plain-object-2.0.4"
sources."is-stream-2.0.1"
sources."isexe-2.0.0"
@@ -124010,100 +124098,49 @@ in
webpack-dev-server = nodeEnv.buildNodePackage {
name = "webpack-dev-server";
packageName = "webpack-dev-server";
- version = "3.11.2";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz";
- sha512 = "A80BkuHRQfCiNtGBS1EMf2ChTUs0x+B3wGDFmOeT4rmJOHhHTCH2naNxIHhmkr0/UillP4U3yeIyv1pNp+QDLQ==";
+ url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.0.0.tgz";
+ sha512 = "ya5cjoBSf3LqrshZn2HMaRZQx8YRNBE+tx+CQNFGaLLHrvs4Y1aik0sl5SFhLz2cW1O9/NtyaZhthc+8UiuvkQ==";
};
dependencies = [
- sources."@types/glob-7.1.4"
- sources."@types/minimatch-3.0.5"
- sources."@types/node-16.6.1"
+ sources."@nodelib/fs.scandir-2.1.5"
+ sources."@nodelib/fs.stat-2.0.5"
+ sources."@nodelib/fs.walk-1.2.8"
+ sources."@types/http-proxy-1.17.7"
+ sources."@types/json-schema-7.0.9"
+ sources."@types/node-16.6.2"
+ sources."@types/retry-0.12.1"
sources."accepts-1.3.7"
+ sources."aggregate-error-3.1.0"
sources."ajv-6.12.6"
- sources."ajv-errors-1.0.1"
sources."ajv-keywords-3.5.2"
- sources."ansi-colors-3.2.4"
sources."ansi-html-0.0.7"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-3.2.1"
- (sources."anymatch-2.0.0" // {
- dependencies = [
- sources."normalize-path-2.1.1"
- ];
- })
- sources."arr-diff-4.0.0"
- sources."arr-flatten-1.1.0"
- sources."arr-union-3.1.0"
+ sources."ansi-regex-6.0.0"
+ sources."anymatch-3.1.2"
sources."array-flatten-2.1.2"
- sources."array-union-1.0.2"
- sources."array-uniq-1.0.3"
- sources."array-unique-0.3.2"
- sources."assign-symbols-1.0.0"
+ sources."array-union-2.1.0"
sources."async-2.6.3"
- sources."async-each-1.0.3"
- sources."async-limiter-1.0.1"
- sources."atob-2.1.2"
sources."balanced-match-1.0.2"
- (sources."base-0.11.2" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
sources."batch-0.6.1"
- sources."binary-extensions-1.13.1"
- sources."bindings-1.5.0"
+ sources."binary-extensions-2.2.0"
(sources."body-parser-1.19.0" // {
dependencies = [
sources."bytes-3.1.0"
- sources."debug-2.6.9"
];
})
sources."bonjour-3.5.0"
sources."brace-expansion-1.1.11"
- (sources."braces-2.3.2" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
+ sources."braces-3.0.2"
sources."buffer-indexof-1.1.1"
sources."bytes-3.0.0"
- sources."cache-base-1.0.1"
sources."call-bind-1.0.2"
- sources."camelcase-5.3.1"
- sources."chokidar-2.1.8"
- (sources."class-utils-0.3.6" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."cliui-5.0.0" // {
- dependencies = [
- sources."ansi-regex-4.1.0"
- sources."strip-ansi-5.2.0"
- ];
- })
- sources."collection-visit-1.0.0"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."component-emitter-1.3.0"
+ sources."chokidar-3.5.2"
+ sources."clean-stack-2.2.0"
+ sources."colorette-1.3.0"
sources."compressible-2.0.18"
(sources."compression-1.7.4" // {
dependencies = [
- sources."debug-2.6.9"
sources."safe-buffer-5.1.2"
];
})
@@ -124117,129 +124154,64 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."copy-descriptor-0.1.1"
sources."core-util-is-1.0.2"
- (sources."cross-spawn-6.0.5" // {
- dependencies = [
- sources."semver-5.7.1"
- ];
- })
- (sources."debug-4.3.2" // {
- dependencies = [
- sources."ms-2.1.2"
- ];
- })
- sources."decamelize-1.2.0"
- sources."decode-uri-component-0.2.0"
+ sources."cross-spawn-7.0.3"
+ sources."debug-2.6.9"
sources."deep-equal-1.1.1"
- sources."default-gateway-4.2.0"
+ sources."default-gateway-6.0.3"
+ sources."define-lazy-prop-2.0.0"
sources."define-properties-1.1.3"
- sources."define-property-2.0.2"
- sources."del-4.1.1"
+ sources."del-6.0.0"
sources."depd-1.1.2"
sources."destroy-1.0.4"
sources."detect-node-2.1.0"
+ sources."dir-glob-3.0.1"
sources."dns-equal-1.0.0"
sources."dns-packet-1.3.4"
sources."dns-txt-2.0.2"
sources."ee-first-1.1.1"
- sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.4"
- sources."errno-0.1.8"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
sources."eventemitter3-4.0.7"
- sources."eventsource-1.1.0"
- sources."execa-1.0.0"
- (sources."expand-brackets-2.1.4" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."is-extendable-0.1.1"
- sources."kind-of-5.1.0"
- ];
- })
+ sources."execa-5.1.1"
(sources."express-4.17.1" // {
dependencies = [
sources."array-flatten-1.1.1"
- sources."debug-2.6.9"
sources."safe-buffer-5.1.2"
];
})
- sources."extend-shallow-3.0.2"
- (sources."extglob-2.0.4" // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
sources."fast-deep-equal-3.1.3"
+ sources."fast-glob-3.2.7"
sources."fast-json-stable-stringify-2.1.0"
+ sources."fastq-1.12.0"
sources."faye-websocket-0.11.4"
- sources."file-uri-to-path-1.0.0"
- (sources."fill-range-4.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- (sources."finalhandler-1.1.2" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."find-up-3.0.0"
- sources."follow-redirects-1.14.1"
- sources."for-in-1.0.2"
+ sources."fill-range-7.0.1"
+ sources."finalhandler-1.1.2"
+ sources."follow-redirects-1.14.2"
sources."forwarded-0.2.0"
- sources."fragment-cache-0.2.1"
sources."fresh-0.5.2"
+ sources."fs-monkey-1.0.3"
sources."fs.realpath-1.0.0"
- sources."fsevents-1.2.13"
+ sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
- sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
- sources."get-stream-4.1.0"
- sources."get-value-2.0.6"
+ sources."get-stream-6.0.1"
sources."glob-7.1.7"
- (sources."glob-parent-3.1.0" // {
- dependencies = [
- sources."is-glob-3.1.0"
- ];
- })
- (sources."globby-6.1.0" // {
- dependencies = [
- sources."pify-2.3.0"
- ];
- })
+ sources."glob-parent-5.1.2"
+ sources."globby-11.0.4"
sources."graceful-fs-4.2.8"
sources."handle-thing-2.0.1"
sources."has-1.0.3"
- sources."has-flag-3.0.0"
sources."has-symbols-1.0.2"
sources."has-tostringtag-1.0.0"
- sources."has-value-1.0.0"
- (sources."has-values-1.0.0" // {
+ (sources."hpack.js-2.1.6" // {
dependencies = [
- sources."kind-of-4.0.0"
+ sources."readable-stream-2.3.7"
+ sources."safe-buffer-5.1.2"
];
})
- sources."hpack.js-2.1.6"
- sources."html-entities-1.4.0"
+ sources."html-entities-2.3.2"
sources."http-deceiver-1.2.7"
(sources."http-errors-1.7.2" // {
dependencies = [
@@ -124248,336 +124220,183 @@ in
})
sources."http-parser-js-0.5.3"
sources."http-proxy-1.18.1"
- sources."http-proxy-middleware-0.19.1"
+ sources."http-proxy-middleware-2.0.1"
+ sources."human-signals-2.1.0"
sources."iconv-lite-0.4.24"
- sources."import-local-2.0.0"
+ sources."ignore-5.1.8"
+ sources."indent-string-4.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."internal-ip-4.3.0"
+ (sources."internal-ip-6.2.0" // {
+ dependencies = [
+ sources."ipaddr.js-1.9.1"
+ ];
+ })
sources."ip-1.1.5"
- sources."ip-regex-2.1.0"
- sources."ipaddr.js-1.9.1"
- sources."is-absolute-url-3.0.3"
- sources."is-accessor-descriptor-1.0.0"
+ sources."ip-regex-4.3.0"
+ sources."ipaddr.js-2.0.1"
sources."is-arguments-1.1.1"
- sources."is-binary-path-1.0.1"
- sources."is-buffer-1.1.6"
- sources."is-data-descriptor-1.0.0"
+ sources."is-binary-path-2.1.0"
sources."is-date-object-1.0.5"
- sources."is-descriptor-1.0.2"
- sources."is-extendable-1.0.1"
+ sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
- sources."is-fullwidth-code-point-2.0.0"
sources."is-glob-4.0.1"
- (sources."is-number-3.0.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
+ sources."is-ip-3.1.0"
+ sources."is-number-7.0.0"
sources."is-path-cwd-2.2.0"
- sources."is-path-in-cwd-2.1.0"
- sources."is-path-inside-2.1.0"
- sources."is-plain-object-2.0.4"
+ sources."is-path-inside-3.0.3"
+ sources."is-plain-obj-3.0.0"
sources."is-regex-1.1.4"
- sources."is-stream-1.1.0"
- sources."is-windows-1.0.2"
- sources."is-wsl-1.1.0"
+ sources."is-stream-2.0.1"
+ sources."is-wsl-2.2.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
- sources."isobject-3.0.1"
sources."json-schema-traverse-0.4.1"
- sources."json3-3.3.3"
- sources."killable-1.0.1"
- sources."kind-of-6.0.3"
- sources."locate-path-3.0.0"
sources."lodash-4.17.21"
- sources."loglevel-1.7.1"
- sources."map-cache-0.2.2"
- sources."map-visit-1.0.0"
+ sources."map-age-cleaner-0.1.3"
sources."media-typer-0.3.0"
- sources."memory-fs-0.4.1"
+ (sources."mem-8.1.1" // {
+ dependencies = [
+ sources."mimic-fn-3.1.0"
+ ];
+ })
+ sources."memfs-3.2.2"
sources."merge-descriptors-1.0.1"
+ sources."merge-stream-2.0.0"
+ sources."merge2-1.4.1"
sources."methods-1.1.2"
- sources."micromatch-3.1.10"
+ sources."micromatch-4.0.4"
sources."mime-1.6.0"
sources."mime-db-1.49.0"
sources."mime-types-2.1.32"
+ sources."mimic-fn-2.1.0"
sources."minimalistic-assert-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."mixin-deep-1.3.2"
sources."mkdirp-0.5.5"
sources."ms-2.0.0"
sources."multicast-dns-6.2.3"
sources."multicast-dns-service-types-1.1.0"
- sources."nan-2.15.0"
- sources."nanomatch-1.2.13"
sources."negotiator-0.6.2"
- sources."nice-try-1.0.5"
sources."node-forge-0.10.0"
sources."normalize-path-3.0.0"
- sources."npm-run-path-2.0.2"
- sources."object-assign-4.1.1"
- (sources."object-copy-0.1.0" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-accessor-descriptor-0.1.6"
- sources."is-data-descriptor-0.1.4"
- (sources."is-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-5.1.0"
- ];
- })
- sources."kind-of-3.2.2"
- ];
- })
+ sources."npm-run-path-4.0.1"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
- sources."object-visit-1.0.1"
- sources."object.pick-1.3.0"
sources."obuf-1.1.2"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
- sources."opn-5.5.0"
- sources."original-1.0.2"
+ sources."onetime-5.1.2"
+ sources."open-8.2.1"
+ sources."p-defer-1.0.0"
+ sources."p-event-4.2.0"
sources."p-finally-1.0.0"
- sources."p-limit-2.3.0"
- sources."p-locate-3.0.0"
- sources."p-map-2.1.0"
- sources."p-retry-3.0.1"
- sources."p-try-2.2.0"
+ sources."p-map-4.0.0"
+ sources."p-retry-4.6.1"
+ sources."p-timeout-3.2.0"
sources."parseurl-1.3.3"
- sources."pascalcase-0.1.1"
- sources."path-dirname-1.0.2"
- sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
- sources."path-is-inside-1.0.2"
- sources."path-key-2.0.1"
+ sources."path-key-3.1.1"
sources."path-to-regexp-0.1.7"
- sources."pify-4.0.1"
- sources."pinkie-2.0.4"
- sources."pinkie-promise-2.0.1"
- sources."pkg-dir-3.0.0"
+ sources."path-type-4.0.0"
+ sources."picomatch-2.3.0"
(sources."portfinder-1.0.28" // {
dependencies = [
sources."debug-3.2.7"
sources."ms-2.1.3"
];
})
- sources."posix-character-classes-0.1.1"
sources."process-nextick-args-2.0.1"
- sources."proxy-addr-2.0.7"
- sources."prr-1.0.1"
- sources."pump-3.0.0"
+ (sources."proxy-addr-2.0.7" // {
+ dependencies = [
+ sources."ipaddr.js-1.9.1"
+ ];
+ })
sources."punycode-2.1.1"
sources."qs-6.7.0"
sources."querystring-0.2.0"
- sources."querystringify-2.2.0"
+ sources."queue-microtask-1.2.3"
sources."range-parser-1.2.1"
(sources."raw-body-2.4.0" // {
dependencies = [
sources."bytes-3.1.0"
];
})
- (sources."readable-stream-2.3.7" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
- sources."readdirp-2.2.1"
- sources."regex-not-1.0.2"
+ sources."readable-stream-3.6.0"
+ sources."readdirp-3.6.0"
sources."regexp.prototype.flags-1.3.1"
- sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.4"
- sources."repeat-string-1.6.1"
- sources."require-directory-2.1.1"
- sources."require-main-filename-2.0.0"
sources."requires-port-1.0.0"
- sources."resolve-cwd-2.0.0"
- sources."resolve-from-3.0.0"
- sources."resolve-url-0.2.1"
- sources."ret-0.1.15"
- sources."retry-0.12.0"
- sources."rimraf-2.7.1"
+ sources."retry-0.13.1"
+ sources."reusify-1.0.4"
+ sources."rimraf-3.0.2"
+ sources."run-parallel-1.2.0"
sources."safe-buffer-5.2.1"
- sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
- sources."schema-utils-1.0.0"
+ sources."schema-utils-3.1.1"
sources."select-hose-2.0.0"
sources."selfsigned-1.10.11"
- sources."semver-6.3.0"
(sources."send-0.17.1" // {
dependencies = [
- (sources."debug-2.6.9" // {
- dependencies = [
- sources."ms-2.0.0"
- ];
- })
sources."ms-2.1.1"
];
})
(sources."serve-index-1.9.1" // {
dependencies = [
- sources."debug-2.6.9"
sources."http-errors-1.6.3"
sources."inherits-2.0.3"
sources."setprototypeof-1.1.0"
];
})
sources."serve-static-1.14.1"
- sources."set-blocking-2.0.0"
- (sources."set-value-2.0.1" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
sources."setprototypeof-1.1.1"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
+ sources."shebang-command-2.0.0"
+ sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.3"
- (sources."snapdragon-0.8.2" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."is-extendable-0.1.1"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."snapdragon-node-2.1.1" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- (sources."snapdragon-util-3.0.1" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
+ sources."slash-3.0.0"
sources."sockjs-0.3.21"
- (sources."sockjs-client-1.5.1" // {
+ (sources."spdy-4.0.2" // {
dependencies = [
- sources."debug-3.2.7"
- sources."ms-2.1.3"
+ sources."debug-4.3.2"
+ sources."ms-2.1.2"
];
})
- sources."source-map-0.5.7"
- sources."source-map-resolve-0.5.3"
- sources."source-map-url-0.4.1"
- sources."spdy-4.0.2"
(sources."spdy-transport-3.0.0" // {
dependencies = [
- sources."readable-stream-3.6.0"
- ];
- })
- sources."split-string-3.1.0"
- (sources."static-extend-0.1.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
+ sources."debug-4.3.2"
+ sources."ms-2.1.2"
];
})
sources."statuses-1.5.0"
- (sources."string-width-3.1.0" // {
- dependencies = [
- sources."ansi-regex-4.1.0"
- sources."strip-ansi-5.2.0"
- ];
- })
(sources."string_decoder-1.1.1" // {
dependencies = [
sources."safe-buffer-5.1.2"
];
})
- sources."strip-ansi-3.0.1"
- sources."strip-eof-1.0.0"
- sources."supports-color-6.1.0"
+ sources."strip-ansi-7.0.0"
+ sources."strip-final-newline-2.0.0"
sources."thunky-1.1.0"
- (sources."to-object-path-0.3.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."to-regex-3.0.2"
- sources."to-regex-range-2.1.1"
+ sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.0"
sources."type-is-1.6.18"
- (sources."union-value-1.0.1" // {
- dependencies = [
- sources."is-extendable-0.1.1"
- ];
- })
sources."unpipe-1.0.0"
- (sources."unset-value-1.0.0" // {
- dependencies = [
- (sources."has-value-0.3.1" // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- })
- sources."has-values-0.1.4"
- ];
- })
- sources."upath-1.2.0"
sources."uri-js-4.4.1"
- sources."urix-0.1.0"
(sources."url-0.11.0" // {
dependencies = [
sources."punycode-1.3.2"
];
})
- sources."url-parse-1.5.3"
- sources."use-3.1.1"
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
sources."uuid-3.4.0"
sources."vary-1.1.2"
sources."wbuf-1.7.3"
- (sources."webpack-dev-middleware-3.7.3" // {
- dependencies = [
- sources."mime-2.5.2"
- ];
- })
- sources."webpack-log-2.0.0"
+ sources."webpack-dev-middleware-5.0.0"
sources."websocket-driver-0.7.4"
sources."websocket-extensions-0.1.4"
- sources."which-1.3.1"
- sources."which-module-2.0.0"
- (sources."wrap-ansi-5.1.0" // {
- dependencies = [
- sources."ansi-regex-4.1.0"
- sources."strip-ansi-5.2.0"
- ];
- })
+ sources."which-2.0.2"
sources."wrappy-1.0.2"
- sources."ws-6.2.2"
- sources."y18n-4.0.3"
- sources."yargs-13.3.2"
- sources."yargs-parser-13.1.2"
+ sources."ws-8.2.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -124614,7 +124433,7 @@ in
];
})
sources."fast-json-stable-stringify-2.1.0"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."fill-range-7.0.1"
sources."glob-parent-6.0.1"
sources."globby-11.0.4"
@@ -124673,7 +124492,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.3.0"
sources."ansi-regex-5.0.0"
@@ -124964,7 +124783,7 @@ in
sources."utp-native-2.5.3"
sources."videostream-3.2.2"
sources."vlc-command-1.2.0"
- (sources."webtorrent-1.3.10" // {
+ (sources."webtorrent-1.4.0" // {
dependencies = [
sources."debug-4.3.2"
sources."decompress-response-6.0.0"
@@ -125114,7 +124933,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- (sources."@npmcli/arborist-2.8.1" // {
+ (sources."@npmcli/arborist-2.8.2" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."semver-7.3.5"
@@ -125143,12 +124962,12 @@ in
sources."@npmcli/node-gyp-1.0.2"
sources."@npmcli/package-json-1.0.1"
sources."@npmcli/promise-spawn-1.3.2"
- sources."@npmcli/run-script-1.8.5"
+ sources."@npmcli/run-script-1.8.6"
sources."@sindresorhus/is-0.7.0"
sources."@tootallnate/once-1.1.2"
sources."@types/expect-1.20.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-15.14.7"
+ sources."@types/node-15.14.8"
sources."@types/vinyl-2.0.5"
sources."abbrev-1.1.1"
(sources."agent-base-6.0.2" // {
@@ -125264,7 +125083,7 @@ in
sources."config-chain-1.1.13"
sources."configstore-3.1.5"
sources."console-control-strings-1.1.0"
- sources."core-js-3.16.1"
+ sources."core-js-3.16.2"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
@@ -125318,7 +125137,7 @@ in
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.2.7"
sources."fast-json-stable-stringify-2.1.0"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."figures-2.0.0"
sources."filelist-1.0.2"
sources."fill-range-7.0.1"
@@ -125410,7 +125229,7 @@ in
sources."ip-regex-2.1.0"
sources."is-arrayish-0.2.1"
sources."is-ci-1.2.1"
- sources."is-core-module-2.5.0"
+ sources."is-core-module-2.6.0"
sources."is-docker-1.1.0"
sources."is-extglob-2.1.1"
sources."is-finite-1.1.0"
@@ -125854,7 +125673,7 @@ in
];
})
sources."taketalk-1.0.0"
- (sources."tar-6.1.8" // {
+ (sources."tar-6.1.10" // {
dependencies = [
sources."mkdirp-1.0.4"
];
@@ -126040,7 +125859,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/fs-extra-9.0.12"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.6.1"
+ sources."@types/node-16.6.2"
sources."@types/node-fetch-2.5.12"
sources."ansi-styles-4.3.0"
sources."array-union-3.0.1"
@@ -126053,12 +125872,12 @@ in
sources."delayed-stream-1.0.0"
sources."dir-glob-3.0.1"
sources."fast-glob-3.2.7"
- sources."fastq-1.11.1"
+ sources."fastq-1.12.0"
sources."fill-range-7.0.1"
sources."form-data-3.0.1"
sources."fs-extra-10.0.0"
sources."glob-parent-5.1.2"
- sources."globby-12.0.0"
+ sources."globby-12.0.1"
sources."graceful-fs-4.2.8"
sources."has-flag-4.0.0"
sources."ignore-5.1.8"
diff --git a/pkgs/development/python-modules/bond-api/default.nix b/pkgs/development/python-modules/bond-api/default.nix
index 39a6cc443334c..9651d7289a9b8 100644
--- a/pkgs/development/python-modules/bond-api/default.nix
+++ b/pkgs/development/python-modules/bond-api/default.nix
@@ -9,13 +9,13 @@
buildPythonPackage rec {
pname = "bond-api";
- version = "0.1.12";
+ version = "0.1.13";
src = fetchFromGitHub {
owner = "prystupa";
repo = "bond-api";
rev = "v${version}";
- sha256 = "0zqaqqadr4x4vmq28nfk5x67gfwqqfy19z0cgrpxlbbvxamccym0";
+ sha256 = "0v3bwbpn98fjm8gza2k7fb7w5ps3982kfvbck5x0fh2xq2825b80";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/chalice/default.nix b/pkgs/development/python-modules/chalice/default.nix
index 44edde30a9ade..dfdde6b0d6443 100644
--- a/pkgs/development/python-modules/chalice/default.nix
+++ b/pkgs/development/python-modules/chalice/default.nix
@@ -1,23 +1,24 @@
{ lib
-, buildPythonPackage
-, fetchPypi
-, pythonOlder
, attrs
, botocore
+, buildPythonPackage
, click
-, enum-compat
+, fetchFromGitHub
, hypothesis
, inquirer
, jmespath
, mock
, mypy-extensions
, pip
-, pytest
+, pytestCheckHook
+, pythonOlder
, pyyaml
+, requests
, setuptools
, six
-, typing ? null
+, typing
, watchdog
+, websocket-client
, wheel
}:
@@ -25,17 +26,17 @@ buildPythonPackage rec {
pname = "chalice";
version = "1.24.2";
- src = fetchPypi {
- inherit pname version;
- sha256 = "e4faf2247291407481f7daa8cdb63120d3ea9f454332f3a74eefa33a307ef0e5";
+ src = fetchFromGitHub {
+ owner = "aws";
+ repo = pname;
+ rev = version;
+ sha256 = "0xpzc3rizdkjxclgxngswz0a22kdv1pw235gsw517ma7i06d0lw6";
};
- checkInputs = [ watchdog pytest hypothesis mock ];
propagatedBuildInputs = [
attrs
botocore
click
- enum-compat
inquirer
jmespath
mypy-extensions
@@ -44,12 +45,18 @@ buildPythonPackage rec {
setuptools
six
wheel
- ] ++ lib.optionals (pythonOlder "3.5") [
+ watchdog
+ ] ++ lib.optionals (pythonOlder "3.7") [
typing
];
- # conftest.py not included with pypi release
- doCheck = false;
+ checkInputs = [
+ hypothesis
+ mock
+ pytestCheckHook
+ requests
+ websocket-client
+ ];
postPatch = ''
sed -i setup.py -e "/pip>=/c\'pip',"
@@ -57,14 +64,35 @@ buildPythonPackage rec {
--replace 'typing==3.6.4' 'typing'
'';
- checkPhase = ''
- pytest tests
- '';
+ disabledTestPaths = [
+ # Don't check the templates and the sample app
+ "chalice/templates"
+ "docs/source/samples/todo-app/code/tests/test_db.py"
+ # Requires credentials
+ "tests/aws/test_features.py"
+ # Requires network access
+ "tests/aws/test_websockets.py"
+ "tests/integration/test_package.py"
+ ];
+
+ disabledTests = [
+ # Requires network access
+ "test_update_domain_name_failed"
+ "test_can_reload_server"
+ # Content for the tests is missing
+ "test_can_import_env_vars"
+ "test_stack_trace_printed_on_error"
+ # Don't build
+ "test_can_generate_pipeline_for_all"
+ "test_build_wheel"
+ ];
+
+ pythonImportsCheck = [ "chalice" ];
meta = with lib; {
description = "Python Serverless Microframework for AWS";
homepage = "https://github.com/aws/chalice";
license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
+ maintainers = with maintainers; [ costrouc ];
};
}
diff --git a/pkgs/development/python-modules/dsmr-parser/default.nix b/pkgs/development/python-modules/dsmr-parser/default.nix
index 155927368eee6..1f59c956560e3 100644
--- a/pkgs/development/python-modules/dsmr-parser/default.nix
+++ b/pkgs/development/python-modules/dsmr-parser/default.nix
@@ -10,13 +10,13 @@
buildPythonPackage rec {
pname = "dsmr-parser";
- version = "0.29";
+ version = "0.30";
src = fetchFromGitHub {
owner = "ndokter";
repo = "dsmr_parser";
rev = "v${version}";
- sha256 = "11d6cwmabzc8p6jkqwj72nrj7p6cxbvr0x3jdrxyx6zki8chyw4p";
+ sha256 = "sha256-3RXku0L/XQFarECxY1LSs2TwSOlJAOiS6yEepHCGL5U=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/onlykey-solo-python/default.nix b/pkgs/development/python-modules/onlykey-solo-python/default.nix
new file mode 100644
index 0000000000000..91f36b01dd4d6
--- /dev/null
+++ b/pkgs/development/python-modules/onlykey-solo-python/default.nix
@@ -0,0 +1,35 @@
+{ buildPythonPackage
+, click
+, ecdsa
+, fetchPypi
+, fido2
+, intelhex
+, lib
+, pyserial
+, pyusb
+, requests
+}:
+
+buildPythonPackage rec {
+ pname = "onlykey-solo-python";
+ version = "0.0.28";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "sha256-Mbi5So2OgeXjg4Fzg7v2gAJuh1Y7ZCYu8Lrha/7PQfY=";
+ };
+
+ propagatedBuildInputs = [ click ecdsa fido2 intelhex pyserial pyusb requests ];
+
+ # no tests
+ doCheck = false;
+ pythonImportsCheck = [ "solo" ];
+
+ meta = with lib; {
+ homepage = "https://github.com/trustcrypto/onlykey-solo-python";
+ description = "Python library for OnlyKey with Solo FIDO2";
+ maintainers = with maintainers; [ kalbasit ];
+ license = licenses.asl20;
+ };
+}
+
diff --git a/pkgs/development/python-modules/pdf2image/default.nix b/pkgs/development/python-modules/pdf2image/default.nix
index 43a319716ec96..c3c0538bf5035 100644
--- a/pkgs/development/python-modules/pdf2image/default.nix
+++ b/pkgs/development/python-modules/pdf2image/default.nix
@@ -2,13 +2,13 @@
buildPythonPackage rec {
pname = "pdf2image";
- version = "1.15.1";
+ version = "1.16.0";
propagatedBuildInputs = [ pillow poppler_utils ];
src = fetchPypi {
inherit pname version;
- sha256 = "aa6013c1b5b25ceb90caa34834f1ed343e969cfa532100e1472cfe0e96a639b5";
+ sha256 = "d58ed94d978a70c73c2bb7fdf8acbaf2a7089c29ff8141be5f45433c0c4293bb";
};
meta = with lib; {
diff --git a/pkgs/development/python-modules/platformdirs/default.nix b/pkgs/development/python-modules/platformdirs/default.nix
new file mode 100644
index 0000000000000..90eb35f993a35
--- /dev/null
+++ b/pkgs/development/python-modules/platformdirs/default.nix
@@ -0,0 +1,44 @@
+{ lib
+, appdirs
+, buildPythonPackage
+, fetchFromGitHub
+, platformdirs
+, pytest-mock
+, pytestCheckHook
+, pythonOlder
+, setuptools-scm
+}:
+
+buildPythonPackage rec {
+ pname = "platformdirs";
+ version = "2.2.0";
+ disabled = pythonOlder "3.6";
+
+ src = fetchFromGitHub {
+ owner = pname;
+ repo = pname;
+ rev = version;
+ sha256 = "15f08czqfmxy1y947rlrsjs20jgsy2vc1wqhv4b08b3ijxj0jpqh";
+ };
+
+ SETUPTOOLS_SCM_PRETEND_VERSION = version;
+
+ nativeBuildInputs = [
+ setuptools-scm
+ ];
+
+ checkInputs = [
+ appdirs
+ pytest-mock
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [ "platformdirs" ];
+
+ meta = with lib; {
+ description = "Python module for determining appropriate platform-specific directories";
+ homepage = "https://platformdirs.readthedocs.io/";
+ license = licenses.mit;
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/ptpython/default.nix b/pkgs/development/python-modules/ptpython/default.nix
index 2e8bde6f53673..f6befe1bd6226 100644
--- a/pkgs/development/python-modules/ptpython/default.nix
+++ b/pkgs/development/python-modules/ptpython/default.nix
@@ -10,12 +10,12 @@
buildPythonPackage rec {
pname = "ptpython";
- version = "3.0.17";
+ version = "3.0.19";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "911d25cca31a8e4f9b2ecd16dcdad793b8859e94fca1275f3485d8cdf20b13de";
+ sha256 = "b3d41ce7c2ce0e7e55051347eae400fc56b9b42b1c4a9db25b19ccf6195bfc12";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/py3status/default.nix b/pkgs/development/python-modules/py3status/default.nix
index 1471d7b173363..c8d5068e4e73b 100644
--- a/pkgs/development/python-modules/py3status/default.nix
+++ b/pkgs/development/python-modules/py3status/default.nix
@@ -24,11 +24,11 @@
buildPythonPackage rec {
pname = "py3status";
- version = "3.37";
+ version = "3.38";
src = fetchPypi {
inherit pname version;
- sha256 = "e05fe64df57de0f86e9b1aca907cd6f080d85909085e594868af488ce3557809";
+ sha256 = "5660163a91590f320685263a738ab910c7a86346d9c85a68639a19ab83433ce6";
};
doCheck = false;
diff --git a/pkgs/development/python-modules/pycm/default.nix b/pkgs/development/python-modules/pycm/default.nix
index 7c69bd048ceb2..c8cc7c9642432 100644
--- a/pkgs/development/python-modules/pycm/default.nix
+++ b/pkgs/development/python-modules/pycm/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, matplotlib, numpy, pytest, seaborn }:
+{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, matplotlib, numpy, pytestCheckHook, seaborn }:
buildPythonPackage rec {
pname = "pycm";
@@ -16,16 +16,14 @@ buildPythonPackage rec {
# remove a trivial dependency on the author's `art` Python ASCII art library
postPatch = ''
rm pycm/__main__.py
+ rm Otherfiles/notebook_check.py # also depends on python3Packages.notebook
substituteInPlace setup.py --replace '=get_requires()' '=[]'
'';
- checkInputs = [ pytest ];
+ checkInputs = [ pytestCheckHook ];
+ disabledTests = [ "pycm.pycm_compare.Compare" ]; # output formatting error
propagatedBuildInputs = [ matplotlib numpy seaborn ];
- checkPhase = ''
- pytest Test/
- '';
-
meta = with lib; {
description = "Multiclass confusion matrix library";
homepage = "https://pycm.ir";
diff --git a/pkgs/development/python-modules/pynamodb/default.nix b/pkgs/development/python-modules/pynamodb/default.nix
index 5237ce99557d0..b59d292d97cb5 100644
--- a/pkgs/development/python-modules/pynamodb/default.nix
+++ b/pkgs/development/python-modules/pynamodb/default.nix
@@ -11,11 +11,11 @@
buildPythonPackage rec {
pname = "pynamodb";
- version = "5.0.3";
+ version = "5.1.0";
src = fetchPypi {
inherit pname version;
- sha256 = "01741df673abb518d5cf9f00223a227f5d0ab9e0a6b19e444ceb38d497019f31";
+ sha256 = "7f351d70b9f4da95ea2d7e50299640e4c46c83b7b24bea5daf110acd2e5aef2b";
};
propagatedBuildInputs = [ python-dateutil botocore ];
diff --git a/pkgs/development/python-modules/pysaml2/default.nix b/pkgs/development/python-modules/pysaml2/default.nix
index 5de5ad3a0dbec..6eeb10b6dcd9a 100644
--- a/pkgs/development/python-modules/pysaml2/default.nix
+++ b/pkgs/development/python-modules/pysaml2/default.nix
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "pysaml2";
- version = "6.5.2";
+ version = "7.0.1";
disabled = !isPy3k;
@@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "IdentityPython";
repo = pname;
rev = "v${version}";
- sha256 = "1p0i88v2ng9fzs0fzjam1dc1idnihqc1wgagvnavqjrih721qcpi";
+ sha256 = "0ickqask6bjipgi3pvxg92pjr6dk2rr3q9garap39mdrp2gsfhln";
};
patches = [
diff --git a/pkgs/development/python-modules/pytest-httpx/default.nix b/pkgs/development/python-modules/pytest-httpx/default.nix
index 1773a4b579288..6e7fd37b915e5 100644
--- a/pkgs/development/python-modules/pytest-httpx/default.nix
+++ b/pkgs/development/python-modules/pytest-httpx/default.nix
@@ -9,13 +9,13 @@
buildPythonPackage rec {
pname = "pytest-httpx";
- version = "0.12.0";
+ version = "0.12.1";
src = fetchFromGitHub {
owner = "Colin-b";
repo = "pytest_httpx";
rev = "v${version}";
- sha256 = "sha256-Awhsm8jmoCZTBnfrrauLxAEKtpxTzjPMXmx7HR0f/g4=";
+ sha256 = "sha256-eyR0h0fW5a+L6QslTnM0TPvQCto06aMcKCE+b8LqHcQ=";
};
buildInputs = [ pytest ];
diff --git a/pkgs/development/python-modules/pywemo/default.nix b/pkgs/development/python-modules/pywemo/default.nix
index 80d69a04333c4..878611d8e3fd1 100644
--- a/pkgs/development/python-modules/pywemo/default.nix
+++ b/pkgs/development/python-modules/pywemo/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "pywemo";
- version = "0.6.6";
+ version = "0.6.7";
format = "pyproject";
disabled = pythonOlder "3.7";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = pname;
repo = pname;
rev = version;
- sha256 = "04h4av65x0a2iv3a4rpsq19m9pi7wk8j447rr5z7jwap870gs8nd";
+ sha256 = "sha256-g3/xMCCCsn2EY1DsRuZAcfUIsdkP3mEkYlI+KjYKXOk=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/qrcode/default.nix b/pkgs/development/python-modules/qrcode/default.nix
index 29f2ab49606fd..72f75e7a13a5b 100644
--- a/pkgs/development/python-modules/qrcode/default.nix
+++ b/pkgs/development/python-modules/qrcode/default.nix
@@ -10,11 +10,11 @@
buildPythonPackage rec {
pname = "qrcode";
- version = "6.1";
+ version = "7.3";
src = fetchPypi {
inherit pname version;
- sha256 = "505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369";
+ sha256 = "d72861b65e26b611609f0547f0febe58aed8ae229d6bf4e675834f40742915b3";
};
propagatedBuildInputs = [ six pillow pymaging_png setuptools ];
diff --git a/pkgs/development/python-modules/quantities/default.nix b/pkgs/development/python-modules/quantities/default.nix
index ca6d8f0cfdb32..233eb8a44b321 100644
--- a/pkgs/development/python-modules/quantities/default.nix
+++ b/pkgs/development/python-modules/quantities/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "quantities";
- version = "0.12.4";
+ version = "0.12.5";
src = fetchPypi {
inherit pname version;
- sha256 = "12qx6cgib3wxmm2cvann4zw4jnhhn24ms61ifq9f3jbh31nn6gd3";
+ sha256 = "67546963cb2a519b1a4aa43d132ef754360268e5d551b43dd1716903d99812f0";
};
propagatedBuildInputs = [ numpy ];
diff --git a/pkgs/development/python-modules/sacn/default.nix b/pkgs/development/python-modules/sacn/default.nix
index e4e14bc93e5ba..ff432f6f3a007 100644
--- a/pkgs/development/python-modules/sacn/default.nix
+++ b/pkgs/development/python-modules/sacn/default.nix
@@ -6,12 +6,12 @@
buildPythonPackage rec {
pname = "sacn";
- version = "1.7.0";
+ version = "1.8.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
- sha256 = "136gw09av7r2y02q7aam4chhivpbwkdskwwavrl5v0zn34y0axwp";
+ sha256 = "cdc9af732f4ca5badbf732499775575c4f815c73f857720c0a61a3fc80257f7a";
};
# no tests
diff --git a/pkgs/development/python-modules/stevedore/default.nix b/pkgs/development/python-modules/stevedore/default.nix
index cf1a50c49bef3..b8a42db27fd75 100644
--- a/pkgs/development/python-modules/stevedore/default.nix
+++ b/pkgs/development/python-modules/stevedore/default.nix
@@ -10,12 +10,12 @@
buildPythonPackage rec {
pname = "stevedore";
- version = "3.3.0";
+ version = "3.4.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "3a5bbd0652bf552748871eaa73a4a8dc2899786bc497a2aa1fcb4dcdb0debeee";
+ sha256 = "18aaxj4nrki0bjgzmqxqy20m7763q1xmwishy6biicapgzdqxdar";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/websocket-client/default.nix b/pkgs/development/python-modules/websocket-client/default.nix
index 4822922da3ce3..3a641ab2db3b0 100644
--- a/pkgs/development/python-modules/websocket-client/default.nix
+++ b/pkgs/development/python-modules/websocket-client/default.nix
@@ -8,12 +8,12 @@
buildPythonPackage rec {
pname = "websocket-client";
- version = "1.2.0";
+ version = "1.2.1";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-dmW6bGRZibKLYWcIdKt1PmkpF56fyQVlrOasCQ9ZxVk=";
+ sha256 = "8dfb715d8a992f5712fff8c843adae94e22b22a99b2c5e6b0ec4a1a981cc4e0d";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/zeep/default.nix b/pkgs/development/python-modules/zeep/default.nix
index 16fb27774631d..f88e8bc474202 100644
--- a/pkgs/development/python-modules/zeep/default.nix
+++ b/pkgs/development/python-modules/zeep/default.nix
@@ -1,7 +1,6 @@
{ lib
, aiohttp
, aioresponses
-, appdirs
, attrs
, buildPythonPackage
, cached-property
@@ -12,6 +11,7 @@
, isodate
, lxml
, mock
+, platformdirs
, pretend
, pytest-asyncio
, pytest-httpx
@@ -27,28 +27,28 @@
buildPythonPackage rec {
pname = "zeep";
- version = "4.0.0";
+ version = "4.1.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "mvantellingen";
repo = "python-zeep";
rev = version;
- sha256 = "1rwmwk47fxs8dxwv5dr6gbnbiyilznifb47fhbxgzj231w0y82cm";
+ sha256 = "sha256-fJLr2LJpbNQTl183R56G7sJILfm04R39qpJxLogQLoo=";
};
propagatedBuildInputs = [
- appdirs
attrs
cached-property
defusedxml
httpx
isodate
lxml
+ platformdirs
pytz
requests
- requests-toolbelt
requests-file
+ requests-toolbelt
xmlsec
];
@@ -62,7 +62,6 @@ buildPythonPackage rec {
pytest-httpx
pytestCheckHook
requests-mock
- xmlsec
];
preCheck = ''
diff --git a/pkgs/development/tools/fprettify/default.nix b/pkgs/development/tools/fprettify/default.nix
new file mode 100644
index 0000000000000..a5eed6bdc28cf
--- /dev/null
+++ b/pkgs/development/tools/fprettify/default.nix
@@ -0,0 +1,28 @@
+{ lib, python3Packages, fetchFromGitHub }:
+
+python3Packages.buildPythonApplication rec {
+ pname = "fprettify";
+ version = "0.3.7";
+
+ src = fetchFromGitHub {
+ owner = "pseewald";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "17v52rylmsy3m3j5fcb972flazykz2rvczqfh8mxvikvd6454zyj";
+ };
+
+ preConfigure = ''
+ patchShebangs fprettify.py
+ '';
+
+ propagatedBuildInputs = with python3Packages; [
+ configargparse
+ ];
+
+ meta = with lib; {
+ description = "An auto-formatter for modern Fortran code that imposes strict whitespace formatting, written in Python.";
+ homepage = "https://pypi.org/project/fprettify/";
+ license = with licenses; [ gpl3Only ];
+ maintainers = with maintainers; [ fabiangd ];
+ };
+}
diff --git a/pkgs/development/tools/misc/binutils/CVE-2020-35448.patch b/pkgs/development/tools/misc/binutils/CVE-2020-35448.patch
deleted file mode 100644
index 2eba7b51849f5..0000000000000
--- a/pkgs/development/tools/misc/binutils/CVE-2020-35448.patch
+++ /dev/null
@@ -1,77 +0,0 @@
-From 8642dafaef21aa6747cec01df1977e9c52eb4679 Mon Sep 17 00:00:00 2001
-From: Alan Modra
-Date: Fri, 4 Sep 2020 19:19:18 +0930
-Subject: [PATCH] PR26574, heap buffer overflow in
- _bfd_elf_slurp_secondary_reloc_section
-
-A horribly fuzzed object with section headers inside the ELF header.
-Disallow that, and crazy reloc sizes.
-
- PR 26574
- * elfcode.h (elf_object_p): Sanity check section header offset.
- * elf.c (_bfd_elf_slurp_secondary_reloc_section): Sanity check
- sh_entsize.
----
- bfd/elf.c | 4 +++-
- bfd/elfcode.h | 8 ++++----
- 3 files changed, 14 insertions(+), 5 deletions(-)
-
-diff --git a/bfd/elf.c b/bfd/elf.c
-index ac2095f787d..5a02f8dc309 100644
---- a/bfd/elf.c
-+++ b/bfd/elf.c
-@@ -12576,7 +12576,9 @@ _bfd_elf_slurp_secondary_reloc_section (bfd * abfd,
- Elf_Internal_Shdr * hdr = & elf_section_data (relsec)->this_hdr;
-
- if (hdr->sh_type == SHT_SECONDARY_RELOC
-- && hdr->sh_info == (unsigned) elf_section_data (sec)->this_idx)
-+ && hdr->sh_info == (unsigned) elf_section_data (sec)->this_idx
-+ && (hdr->sh_entsize == ebd->s->sizeof_rel
-+ || hdr->sh_entsize == ebd->s->sizeof_rela))
- {
- bfd_byte * native_relocs;
- bfd_byte * native_reloc;
-diff --git a/bfd/elfcode.h b/bfd/elfcode.h
-index 2ed2f135c34..606ff64fd4d 100644
---- a/bfd/elfcode.h
-+++ b/bfd/elfcode.h
-@@ -571,7 +571,7 @@ elf_object_p (bfd *abfd)
-
- /* If this is a relocatable file and there is no section header
- table, then we're hosed. */
-- if (i_ehdrp->e_shoff == 0 && i_ehdrp->e_type == ET_REL)
-+ if (i_ehdrp->e_shoff < sizeof (x_ehdr) && i_ehdrp->e_type == ET_REL)
- goto got_wrong_format_error;
-
- /* As a simple sanity check, verify that what BFD thinks is the
-@@ -581,7 +581,7 @@ elf_object_p (bfd *abfd)
- goto got_wrong_format_error;
-
- /* Further sanity check. */
-- if (i_ehdrp->e_shoff == 0 && i_ehdrp->e_shnum != 0)
-+ if (i_ehdrp->e_shoff < sizeof (x_ehdr) && i_ehdrp->e_shnum != 0)
- goto got_wrong_format_error;
-
- ebd = get_elf_backend_data (abfd);
-@@ -618,7 +618,7 @@ elf_object_p (bfd *abfd)
- && ebd->elf_osabi != ELFOSABI_NONE)
- goto got_wrong_format_error;
-
-- if (i_ehdrp->e_shoff != 0)
-+ if (i_ehdrp->e_shoff >= sizeof (x_ehdr))
- {
- file_ptr where = (file_ptr) i_ehdrp->e_shoff;
-
-@@ -819,7 +819,7 @@ elf_object_p (bfd *abfd)
- }
- }
-
-- if (i_ehdrp->e_shstrndx != 0 && i_ehdrp->e_shoff != 0)
-+ if (i_ehdrp->e_shstrndx != 0 && i_ehdrp->e_shoff >= sizeof (x_ehdr))
- {
- unsigned int num_sec;
-
---
-2.27.0
-
-
diff --git a/pkgs/development/tools/misc/binutils/bfd-elf-Dont-read-non-existing-secondary-relocs.patch b/pkgs/development/tools/misc/binutils/bfd-elf-Dont-read-non-existing-secondary-relocs.patch
deleted file mode 100644
index c166066c9803c..0000000000000
--- a/pkgs/development/tools/misc/binutils/bfd-elf-Dont-read-non-existing-secondary-relocs.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-X-Git-Url: https://sourceware.org/git/?p=binutils-gdb.git;a=blobdiff_plain;f=bfd%2Felf.c;h=af62aadc3d446cd5b1f0201b207c90c22e7809b1;hp=36733e080dd9d9be28b576b246aaf5bd8c8569c7;hb=84fd26d8209e99fc3a432dd0b09b6c053de1ce65;hpb=abe2a28aaa7a2bfd0f3061c72a98eb898976b721
-
-diff --git a/bfd/elf.c b/bfd/elf.c
-index 36733e080dd..af62aadc3d4 100644
---- a/bfd/elf.c
-+++ b/bfd/elf.c
-@@ -2454,6 +2454,8 @@ bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
- "for section %pA found - ignoring"),
- abfd, name, target_sect);
- }
-+ else
-+ esdt->has_secondary_relocs = TRUE;
- goto success;
- }
-
-@@ -12587,6 +12589,9 @@ _bfd_elf_slurp_secondary_reloc_section (bfd * abfd,
- #endif
- r_sym = elf32_r_sym;
-
-+ if (!elf_section_data (sec)->has_secondary_relocs)
-+ return TRUE;
-+
- /* Discover if there are any secondary reloc sections
- associated with SEC. */
- for (relsec = abfd->sections; relsec != NULL; relsec = relsec->next)
-
diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix
index 7a06e290a966c..a2a0488d23481 100644
--- a/pkgs/development/tools/misc/binutils/default.nix
+++ b/pkgs/development/tools/misc/binutils/default.nix
@@ -19,7 +19,7 @@
let
reuseLibs = enableShared && withAllTargets;
- version = "2.35.1";
+ version = "2.37";
basename = "binutils";
# The targetPrefix prepended to binary names to allow multiple binuntils on the
# PATH to both be usable.
@@ -31,10 +31,11 @@ let
rev = "708acc851880dbeda1dd18aca4fd0a95b2573b36";
sha256 = "1kdrz6fki55lm15rwwamn74fnqpy0zlafsida2zymk76n3656c63";
};
+
# HACK to ensure that we preserve source from bootstrap binutils to not rebuild LLVM
normal-src = stdenv.__bootPackages.binutils-unwrapped.src or (fetchurl {
url = "mirror://gnu/binutils/${basename}-${version}.tar.bz2";
- sha256 = "sha256-Mg56HQ9G/Nn0E/EEbiFsviO7K85t62xqYzBEJeSLGUI=";
+ sha256 = "sha256-Z/waQDDQjuh3pIZ9PcqzWCgUj4fh/QXabbWF7VoWa9Q=";
});
in
@@ -48,11 +49,6 @@ stdenv.mkDerivation {
# Make binutils output deterministic by default.
./deterministic.patch
- # Help bfd choose between elf32-littlearm, elf32-littlearm-symbian, and
- # elf32-littlearm-vxworks in favor of the first.
- # https://github.com/NixOS/nixpkgs/pull/30484#issuecomment-345472766
- ./disambiguate-arm-targets.patch
-
# For some reason bfd ld doesn't search DT_RPATH when cross-compiling. It's
# not clear why this behavior was decided upon but it has the unfortunate
# consequence that the linker will fail to find transitive dependencies of
@@ -61,16 +57,6 @@ stdenv.mkDerivation {
# cross-compiling.
./always-search-rpath.patch
- # Fix quadratic slowdown in `strip` performance.
- # See #129467 and https://sourceware.org/bugzilla/show_bug.cgi?id=28058
- # Remove when we're on binutils > 2.36.1.
- # The patch is downloaded from
- # https://sourceware.org/git/?p=binutils-gdb.git;a=blobdiff_plain;f=bfd/elf.c;h=af62aadc3d446cd5b1f0201b207c90c22e7809b1;hp=36733e080dd9d9be28b576b246aaf5bd8c8569c7;hb=84fd26d8209e99fc3a432dd0b09b6c053de1ce65;hpb=abe2a28aaa7a2bfd0f3061c72a98eb898976b721
- # which is the 2.36 backport (using `TRUE` instead of `true` of binutils master commit:
- # https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=956ea65cd707707c0f725930214cbc781367a831
- ./bfd-elf-Dont-read-non-existing-secondary-relocs.patch
-
- ./CVE-2020-35448.patch
] ++ lib.optional stdenv.targetPlatform.isiOS ./support-ios.patch
++ # This patch was suggested by Nick Clifton to fix
# https://sourceware.org/bugzilla/show_bug.cgi?id=16177
diff --git a/pkgs/development/tools/misc/binutils/disambiguate-arm-targets.patch b/pkgs/development/tools/misc/binutils/disambiguate-arm-targets.patch
deleted file mode 100644
index abbfa73da05dc..0000000000000
--- a/pkgs/development/tools/misc/binutils/disambiguate-arm-targets.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff --git a/bfd/elf32-arm.c b/bfd/elf32-arm.c
-index 9f956d3..f5b61f1 100644
---- a/bfd/elf32-arm.c
-+++ b/bfd/elf32-arm.c
-@@ -19585,7 +19585,10 @@ elf32_arm_vxworks_final_write_processing (bfd *abfd, bfd_boolean linker)
- #undef ELF_MAXPAGESIZE
- #define ELF_MAXPAGESIZE 0x1000
-
-+/* Prioritize elf32-*arm (priority 1) over elf32-*arm-vxworks (priority 2) */
-+#define elf_match_priority 2
- #include "elf32-target.h"
-+#undef elf_match_priority
-
-
- /* Merge backend specific data from an object file to the output
-@@ -19974,4 +19977,7 @@ elf32_arm_symbian_plt_sym_val (bfd_vma i, const asection *plt,
- #undef ELF_MAXPAGESIZE
- #define ELF_MAXPAGESIZE 0x8000
-
-+/* Prioritize elf32-*arm (priority 1) over elf32-*arm-symbian (priority 2) */
-+#define elf_match_priority 2
- #include "elf32-target.h"
-+#undef elf_match_priority
diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/default.nix b/pkgs/development/tools/poetry2nix/poetry2nix/default.nix
index 3971a7631d46e..b3803f54b60d6 100644
--- a/pkgs/development/tools/poetry2nix/poetry2nix/default.nix
+++ b/pkgs/development/tools/poetry2nix/poetry2nix/default.nix
@@ -5,7 +5,7 @@
}:
let
# Poetry2nix version
- version = "1.17.1";
+ version = "1.19.0";
inherit (poetryLib) isCompatible readTOML moduleName;
diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/fetch_from_legacy.py b/pkgs/development/tools/poetry2nix/poetry2nix/fetch_from_legacy.py
index 5931d4c927083..c1bed08293966 100644
--- a/pkgs/development/tools/poetry2nix/poetry2nix/fetch_from_legacy.py
+++ b/pkgs/development/tools/poetry2nix/poetry2nix/fetch_from_legacy.py
@@ -5,12 +5,12 @@
# https://discuss.python.org/t/pip-download-just-the-source-packages-no-building-no-metadata-etc/4651/12
import sys
-from urllib.parse import urlparse
+from urllib.parse import urlparse, urlunparse
from html.parser import HTMLParser
import urllib.request
import shutil
import ssl
-import os
+from os.path import normpath
# Parse the legacy index page to extract the href and package names
@@ -44,9 +44,13 @@ def handle_endtag(self, tag):
print("Reading index %s" % index_url)
+context = ssl.create_default_context()
+context.check_hostname = False
+context.verify_mode = ssl.CERT_NONE
+
response = urllib.request.urlopen(
index_url,
- context=ssl.CERT_NONE)
+ context=context)
index = response.read()
parser = Pep503()
@@ -62,11 +66,24 @@ def handle_endtag(self, tag):
package_url = index_url + "/" + parser.sources[package_filename]
else:
package_url = parser.sources[package_filename]
-print("Downloading %s" % package_url)
+
+# Handle urls containing "../"
+parsed_url = urlparse(package_url)
+real_package_url = urlunparse(
+ (
+ parsed_url.scheme,
+ parsed_url.netloc,
+ normpath(parsed_url.path),
+ parsed_url.params,
+ parsed_url.query,
+ parsed_url.fragment,
+ )
+)
+print("Downloading %s" % real_package_url)
response = urllib.request.urlopen(
- package_url,
- context=ssl.CERT_NONE)
+ real_package_url,
+ context=context)
with response as r:
shutil.copyfileobj(r, package_file)
diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/hooks/pip-build-hook.sh b/pkgs/development/tools/poetry2nix/poetry2nix/hooks/pip-build-hook.sh
index fa7b698fb5101..a3ebe311d591e 100644
--- a/pkgs/development/tools/poetry2nix/poetry2nix/hooks/pip-build-hook.sh
+++ b/pkgs/development/tools/poetry2nix/poetry2nix/hooks/pip-build-hook.sh
@@ -15,7 +15,7 @@ pipBuildPhase() {
mkdir -p dist
echo "Creating a wheel..."
- @pythonInterpreter@ -m pip wheel --no-index --no-deps --no-clean --no-build-isolation --wheel-dir dist .
+ @pythonInterpreter@ -m pip wheel --verbose --no-index --no-deps --no-clean --no-build-isolation --wheel-dir dist .
echo "Finished creating a wheel..."
runHook postBuild
diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/mk-poetry-dep.nix b/pkgs/development/tools/poetry2nix/poetry2nix/mk-poetry-dep.nix
index b403e9941f34e..867f6d985c12e 100644
--- a/pkgs/development/tools/poetry2nix/poetry2nix/mk-poetry-dep.nix
+++ b/pkgs/development/tools/poetry2nix/poetry2nix/mk-poetry-dep.nix
@@ -47,7 +47,8 @@ pythonPackages.callPackage
isSource = source != null;
isGit = isSource && source.type == "git";
isUrl = isSource && source.type == "url";
- isLocal = isSource && source.type == "directory";
+ isDirectory = isSource && source.type == "directory";
+ isFile = isSource && source.type == "file";
isLegacy = isSource && source.type == "legacy";
localDepPath = toPath source.url;
@@ -71,7 +72,10 @@ pythonPackages.callPackage
sourceDist = builtins.filter isSdist fileCandidates;
eggs = builtins.filter isEgg fileCandidates;
entries = (if preferWheel then binaryDist ++ sourceDist else sourceDist ++ binaryDist) ++ eggs;
- lockFileEntry = builtins.head entries;
+ lockFileEntry = (
+ if lib.length entries > 0 then builtins.head entries
+ else throw "Missing suitable source/wheel file entry for ${name}"
+ );
_isEgg = isEgg lockFileEntry;
in
rec {
@@ -94,7 +98,7 @@ pythonPackages.callPackage
"toml" # Toml is an extra for setuptools-scm
];
baseBuildInputs = lib.optional (! lib.elem name skipSetupToolsSCM) pythonPackages.setuptools-scm;
- format = if isLocal || isGit || isUrl then "pyproject" else fileInfo.format;
+ format = if isDirectory || isGit || isUrl then "pyproject" else fileInfo.format;
in
buildPythonPackage {
pname = moduleName name;
@@ -118,7 +122,7 @@ pythonPackages.callPackage
baseBuildInputs
++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) pythonPackages.setuptools
++ lib.optional (!isSource) (getManyLinuxDeps fileInfo.name).pkg
- ++ lib.optional isLocal buildSystemPkgs
+ ++ lib.optional isDirectory buildSystemPkgs
++ lib.optional (!__isBootstrap) pythonPackages.poetry
);
@@ -170,8 +174,10 @@ pythonPackages.callPackage
{
inherit (source) url;
}
- else if isLocal then
+ else if isDirectory then
(poetryLib.cleanPythonSources { src = localDepPath; })
+ else if isFile then
+ localDepPath
else if isLegacy then
fetchFromLegacy
{
diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/overrides.nix b/pkgs/development/tools/poetry2nix/poetry2nix/overrides.nix
index 2a9e240e7af5b..ca902e204d76f 100644
--- a/pkgs/development/tools/poetry2nix/poetry2nix/overrides.nix
+++ b/pkgs/development/tools/poetry2nix/poetry2nix/overrides.nix
@@ -52,6 +52,18 @@ self: super:
}
);
+ anyio = super.anyio.overridePythonAttrs (old: {
+ postPatch = ''
+ substituteInPlace setup.py --replace 'setup()' 'setup(version="${old.version}")'
+ '';
+ });
+
+ arpeggio = super.arpeggio.overridePythonAttrs (
+ old: {
+ nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.pytest-runner ];
+ }
+ );
+
astroid = super.astroid.overridePythonAttrs (
old: rec {
buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ];
@@ -68,6 +80,14 @@ self: super:
}
);
+ backports-entry-points-selectable = super.backports-entry-points-selectable.overridePythonAttrs (old: {
+ postPatch = ''
+ substituteInPlace setup.py --replace \
+ 'setuptools.setup()' \
+ 'setuptools.setup(version="${old.version}")'
+ '';
+ });
+
bcrypt = super.bcrypt.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.libffi ];
@@ -493,7 +513,7 @@ self: super:
old: {
inherit (pkgs.python3Packages.jira) patches;
buildInputs = (old.buildInputs or [ ]) ++ [
- self.pytest-runner
+ self.pytestrunner
self.cryptography
self.pyjwt
];
@@ -620,7 +640,8 @@ self: super:
buildInputs = (old.buildInputs or [ ])
++ lib.optional enableGhostscript pkgs.ghostscript
- ++ lib.optional stdenv.isDarwin [ Cocoa ];
+ ++ lib.optional stdenv.isDarwin [ Cocoa ]
+ ++ [ self.certifi ];
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [
pkgs.pkg-config
@@ -962,6 +983,7 @@ self: super:
];
PYARROW_BUILD_TYPE = "release";
+ PYARROW_WITH_DATASET = true;
PYARROW_WITH_PARQUET = true;
PYARROW_CMAKE_OPTIONS = [
"-DCMAKE_INSTALL_RPATH=${ARROW_HOME}/lib"
@@ -1263,6 +1285,8 @@ self: super:
}
);
+ pytest-runner = super.pytest-runner or super.pytestrunner;
+
pytest-pylint = super.pytest-pylint.overridePythonAttrs (
old: {
buildInputs = [ self.pytest-runner ];
@@ -1372,6 +1396,16 @@ self: super:
}
);
+ requests-unixsocket = super.requests-unixsocket.overridePythonAttrs (
+ old: {
+ nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.pbr ];
+ }
+ );
+
+ requestsexceptions = super.requestsexceptions.overridePythonAttrs (old: {
+ nativeBuildInputs = old.nativeBuildInputs ++ [ self.pbr ];
+ });
+
rlp = super.rlp.overridePythonAttrs {
preConfigure = ''
substituteInPlace setup.py --replace \'setuptools-markdown\' ""
@@ -1831,4 +1865,58 @@ self: super:
'';
});
+ marisa-trie = super.marisa-trie.overridePythonAttrs (
+ old: {
+ buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ];
+ }
+ );
+
+ ua-parser = super.ua-parser.overridePythonAttrs (
+ old: {
+ propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.pyyaml ];
+ }
+ );
+
+ lazy-object-proxy = super.lazy-object-proxy.overridePythonAttrs (
+ old: {
+ # disable the removal of pyproject.toml, required because of setuptools_scm
+ dontPreferSetupPy = true;
+ }
+ );
+
+ pendulum = super.pendulum.overridePythonAttrs (old: {
+ # Technically incorrect, but fixes the build error..
+ preInstall = lib.optionalString stdenv.isLinux ''
+ mv ./dist/*.whl $(echo ./dist/*.whl | sed s/'manylinux_[0-9]*_[0-9]*'/'manylinux1'/)
+ '';
+ });
+
+ pygraphviz = super.pygraphviz.overridePythonAttrs (old: {
+ nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.pkg-config ];
+ buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.graphviz ];
+ });
+
+ pyjsg = super.pyjsg.overridePythonAttrs (old: {
+ buildInputs = (old.buildInputs or [ ]) ++ [ self.pbr ];
+ });
+
+ pyshex = super.pyshex.overridePythonAttrs (old: {
+ buildInputs = (old.buildInputs or [ ]) ++ [ self.pbr ];
+ });
+
+ pyshexc = super.pyshexc.overridePythonAttrs (old: {
+ buildInputs = (old.buildInputs or [ ]) ++ [ self.pbr ];
+ });
+
+ shexjsg = super.shexjsg.overridePythonAttrs (old: {
+ buildInputs = (old.buildInputs or [ ]) ++ [ self.pbr ];
+ });
+
+ sparqlslurper = super.sparqlslurper.overridePythonAttrs (old: {
+ buildInputs = (old.buildInputs or [ ]) ++ [ self.pbr ];
+ });
+
+ tomli = super.tomli.overridePythonAttrs (old: {
+ buildInputs = (old.buildInputs or [ ]) ++ [ self.flit-core ];
+ });
}
diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/pep508.nix b/pkgs/development/tools/poetry2nix/poetry2nix/pep508.nix
index a5ec51a1345b5..9c95194a537cb 100644
--- a/pkgs/development/tools/poetry2nix/poetry2nix/pep508.nix
+++ b/pkgs/development/tools/poetry2nix/poetry2nix/pep508.nix
@@ -132,7 +132,8 @@ let
mVal = ''[a-zA-Z0-9\'"_\. \-]+'';
mOp = "in|[!=<>]+";
e = stripStr exprs.value;
- m = builtins.map stripStr (builtins.match ''^(${mVal}) *(${mOp}) *(${mVal})$'' e);
+ m' = builtins.match ''^(${mVal}) +(${mOp}) *(${mVal})$'' e;
+ m = builtins.map stripStr (if m' != null then m' else builtins.match ''^(${mVal}) +(${mOp}) *(${mVal})$'' e);
m0 = processVar (builtins.elemAt m 0);
m2 = processVar (builtins.elemAt m 2);
in
diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/default.nix b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/default.nix
index 70470ba172228..8e52d7387c406 100644
--- a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/default.nix
+++ b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/default.nix
@@ -1,11 +1,18 @@
-{ lib, poetry2nix, python, fetchFromGitHub }:
+{ lib
+, poetry2nix
+, python
+, fetchFromGitHub
+, projectDir ? ./.
+, pyproject ? projectDir + "/pyproject.toml"
+, poetrylock ? projectDir + "/poetry.lock"
+}:
poetry2nix.mkPoetryApplication {
inherit python;
- projectDir = ./.;
+ inherit projectDir pyproject poetrylock;
# Don't include poetry in inputs
__isBootstrap = true;
diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/poetry.lock b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/poetry.lock
index b1be7a3f4e5e7..c6073348e8468 100644
--- a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/poetry.lock
+++ b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/poetry.lock
@@ -1,11 +1,3 @@
-[[package]]
-name = "appdirs"
-version = "1.4.4"
-description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
-category = "main"
-optional = false
-python-versions = "*"
-
[[package]]
name = "atomicwrites"
version = "1.4.0"
@@ -16,29 +8,44 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[[package]]
name = "attrs"
-version = "20.3.0"
+version = "21.2.0"
description = "Classes Without Boilerplate"
category = "dev"
optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[package.extras]
-dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "zope.interface", "furo", "sphinx", "pre-commit"]
-docs = ["furo", "sphinx", "zope.interface"]
-tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "zope.interface"]
-tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six"]
+dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit"]
+docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"]
+tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface"]
+tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins"]
+
+[[package]]
+name = "backports.entry-points-selectable"
+version = "1.1.0"
+description = "Compatibility shim providing selectable entry points for older implementations"
+category = "main"
+optional = false
+python-versions = ">=2.7"
+
+[package.dependencies]
+importlib-metadata = {version = "*", markers = "python_version < \"3.8\""}
+
+[package.extras]
+docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"]
+testing = ["pytest (>=4.6)", "pytest-flake8", "pytest-cov", "pytest-black (>=0.3.7)", "pytest-mypy", "pytest-checkdocs (>=2.4)", "pytest-enabler (>=1.0.1)"]
[[package]]
name = "backports.functools-lru-cache"
-version = "1.6.1"
+version = "1.6.4"
description = "Backport of functools.lru_cache"
category = "dev"
optional = false
python-versions = ">=2.6"
[package.extras]
-docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
-testing = ["pytest (>=3.5,!=3.7.3)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-black-multipy", "pytest-cov"]
+docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"]
+testing = ["pytest (>=4.6)", "pytest-black (>=0.3.7)", "pytest-mypy", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-checkdocs (>=2.4)"]
[[package]]
name = "cachecontrol"
@@ -72,7 +79,7 @@ msgpack = ["msgpack-python (>=0.5,<0.6)"]
[[package]]
name = "certifi"
-version = "2020.12.5"
+version = "2021.5.30"
description = "Python package for providing Mozilla's CA Bundle."
category = "main"
optional = false
@@ -80,7 +87,7 @@ python-versions = "*"
[[package]]
name = "cffi"
-version = "1.14.5"
+version = "1.14.6"
description = "Foreign Function Interface for Python calling C code."
category = "main"
optional = false
@@ -91,7 +98,7 @@ pycparser = "*"
[[package]]
name = "cfgv"
-version = "3.2.0"
+version = "3.3.0"
description = "Validate configuration and produce human readable error messages."
category = "dev"
optional = false
@@ -189,6 +196,25 @@ python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*"
[package.dependencies]
cffi = ">=1.8,<1.11.3 || >1.11.3"
+six = ">=1.4.1"
+
+[package.extras]
+docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"]
+docstest = ["doc8", "pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"]
+pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"]
+ssh = ["bcrypt (>=3.1.5)"]
+test = ["pytest (>=3.6.0,!=3.9.0,!=3.9.1,!=3.9.2)", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"]
+
+[[package]]
+name = "cryptography"
+version = "3.3.2"
+description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
+category = "main"
+optional = false
+python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*"
+
+[package.dependencies]
+cffi = ">=1.12"
enum34 = {version = "*", markers = "python_version < \"3\""}
ipaddress = {version = "*", markers = "python_version < \"3\""}
six = ">=1.4.1"
@@ -202,7 +228,7 @@ test = ["pytest (>=3.6.0,!=3.9.0,!=3.9.1,!=3.9.2)", "pretend", "iso8601", "pytz"
[[package]]
name = "cryptography"
-version = "3.4.6"
+version = "3.4.7"
description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
category = "main"
optional = false
@@ -221,7 +247,7 @@ test = ["pytest (>=6.0)", "pytest-cov", "pytest-subtests", "pytest-xdist", "pret
[[package]]
name = "distlib"
-version = "0.3.1"
+version = "0.3.2"
description = "Distribution utilities"
category = "main"
optional = false
@@ -317,14 +343,14 @@ six = "*"
[[package]]
name = "identify"
-version = "2.1.0"
+version = "2.2.13"
description = "File identification library for Python"
category = "dev"
optional = false
python-versions = ">=3.6.1"
[package.extras]
-license = ["editdistance"]
+license = ["editdistance-s"]
[[package]]
name = "idna"
@@ -380,14 +406,26 @@ python-versions = "*"
[[package]]
name = "jeepney"
-version = "0.6.0"
+version = "0.4.3"
+description = "Low-level, pure Python DBus protocol wrapper."
+category = "main"
+optional = false
+python-versions = ">=3.5"
+
+[package.extras]
+dev = ["testpath"]
+
+[[package]]
+name = "jeepney"
+version = "0.7.1"
description = "Low-level, pure Python DBus protocol wrapper."
category = "main"
optional = false
python-versions = ">=3.6"
[package.extras]
-test = ["pytest", "pytest-trio", "pytest-asyncio", "testpath", "trio"]
+test = ["pytest", "pytest-trio", "pytest-asyncio", "testpath", "trio", "async-timeout"]
+trio = ["trio", "async-generator"]
[[package]]
name = "keyring"
@@ -479,15 +517,15 @@ six = ">=1.0.0,<2.0.0"
[[package]]
name = "more-itertools"
-version = "8.6.0"
+version = "7.2.0"
description = "More routines for operating on iterables, beyond itertools"
category = "dev"
optional = false
-python-versions = ">=3.5"
+python-versions = ">=3.4"
[[package]]
name = "more-itertools"
-version = "8.7.0"
+version = "8.8.0"
description = "More routines for operating on iterables, beyond itertools"
category = "dev"
optional = false
@@ -503,7 +541,7 @@ python-versions = "*"
[[package]]
name = "nodeenv"
-version = "1.5.0"
+version = "1.6.0"
description = "Node.js virtual environment builder"
category = "dev"
optional = false
@@ -530,7 +568,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[[package]]
name = "pathlib2"
-version = "2.3.5"
+version = "2.3.6"
description = "Object-oriented filesystem paths"
category = "main"
optional = false
@@ -553,7 +591,7 @@ ptyprocess = ">=0.5"
[[package]]
name = "pkginfo"
-version = "1.7.0"
+version = "1.7.1"
description = "Query metadatdata from sdists / bdists / installed packages."
category = "main"
optional = false
@@ -562,6 +600,14 @@ python-versions = "*"
[package.extras]
testing = ["nose", "coverage"]
+[[package]]
+name = "platformdirs"
+version = "2.0.2"
+description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
+category = "main"
+optional = false
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
+
[[package]]
name = "pluggy"
version = "0.13.1"
@@ -578,7 +624,7 @@ dev = ["pre-commit", "tox"]
[[package]]
name = "poetry-core"
-version = "1.0.2"
+version = "1.0.4"
description = "Poetry PEP 517 Build Backend"
category = "main"
optional = false
@@ -593,7 +639,7 @@ typing = {version = ">=3.7.4.1,<4.0.0.0", markers = "python_version >= \"2.7\" a
[[package]]
name = "pre-commit"
-version = "2.10.1"
+version = "2.14.0"
description = "A framework for managing and maintaining multi-language pre-commit hooks."
category = "dev"
optional = false
@@ -635,7 +681,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[[package]]
name = "pylev"
-version = "1.3.0"
+version = "1.4.0"
description = "A pure Python Levenshtein implementation that's not freaking GPL'd."
category = "main"
optional = false
@@ -703,7 +749,7 @@ testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xm
[[package]]
name = "pytest-cov"
-version = "2.11.1"
+version = "2.12.1"
description = "Pytest plugin for measuring coverage."
category = "dev"
optional = false
@@ -712,9 +758,10 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[package.dependencies]
coverage = ">=5.2.1"
pytest = ">=4.6"
+toml = "*"
[package.extras]
-testing = ["fields", "hunter", "process-tests (==2.0.2)", "six", "pytest-xdist", "virtualenv"]
+testing = ["fields", "hunter", "process-tests", "six", "pytest-xdist", "virtualenv"]
[[package]]
name = "pytest-mock"
@@ -811,6 +858,18 @@ cryptography = "*"
[package.extras]
dbus-python = ["dbus-python"]
+[[package]]
+name = "secretstorage"
+version = "3.2.0"
+description = "Python bindings to FreeDesktop.org Secret Service API"
+category = "main"
+optional = false
+python-versions = ">=3.5"
+
+[package.dependencies]
+cryptography = ">=2.0"
+jeepney = ">=0.4.2"
+
[[package]]
name = "secretstorage"
version = "3.3.1"
@@ -833,7 +892,7 @@ python-versions = "!=3.0,!=3.1,!=3.2,!=3.3,>=2.6"
[[package]]
name = "singledispatch"
-version = "3.6.1"
+version = "3.7.0"
description = "Backport functools.singledispatch from Python 3.4 to Python 2.6-3.3."
category = "main"
optional = false
@@ -844,11 +903,11 @@ six = "*"
[package.extras]
docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"]
-testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-cov", "pytest-black (>=0.3.7)", "unittest2"]
+testing = ["pytest (>=4.6)", "pytest-flake8", "pytest-cov", "pytest-black (>=0.3.7)", "unittest2", "pytest-checkdocs (>=2.4)"]
[[package]]
name = "six"
-version = "1.15.0"
+version = "1.16.0"
description = "Python 2 and 3 compatibility utilities"
category = "main"
optional = false
@@ -880,7 +939,7 @@ python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
[[package]]
name = "tomlkit"
-version = "0.7.0"
+version = "0.7.2"
description = "Style preserving TOML library"
category = "main"
optional = false
@@ -893,7 +952,7 @@ typing = {version = ">=3.6,<4.0", markers = "python_version >= \"2.7\" and pytho
[[package]]
name = "tox"
-version = "3.23.0"
+version = "3.24.2"
description = "tox is a generic virtualenv management and test command line tool"
category = "dev"
optional = false
@@ -916,15 +975,15 @@ testing = ["flaky (>=3.4.0)", "freezegun (>=0.3.11)", "psutil (>=5.6.1)", "pytes
[[package]]
name = "typing"
-version = "3.7.4.3"
+version = "3.10.0.0"
description = "Type Hints for Python"
category = "main"
optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <3.5"
[[package]]
name = "typing-extensions"
-version = "3.7.4.3"
+version = "3.10.0.0"
description = "Backported and Experimental Type Hints for Python 3.5+"
category = "main"
optional = false
@@ -945,24 +1004,25 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
[[package]]
name = "virtualenv"
-version = "20.4.2"
+version = "20.7.2"
description = "Virtual Python Environment builder"
category = "main"
optional = false
-python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
[package.dependencies]
-appdirs = ">=1.4.3,<2"
+"backports.entry-points-selectable" = ">=1.0.4"
distlib = ">=0.3.1,<1"
filelock = ">=3.0.0,<4"
importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""}
importlib-resources = {version = ">=1.0", markers = "python_version < \"3.7\""}
pathlib2 = {version = ">=2.3.3,<3", markers = "python_version < \"3.4\" and sys_platform != \"win32\""}
+platformdirs = ">=2,<3"
six = ">=1.9.0,<2"
[package.extras]
docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=19.9.0rc1)"]
-testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)", "packaging (>=20.0)", "xonsh (>=0.9.16)"]
+testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)", "packaging (>=20.0)"]
[[package]]
name = "wcwidth"
@@ -1001,24 +1061,24 @@ testing = ["pathlib2", "unittest2", "jaraco.itertools", "func-timeout"]
[metadata]
lock-version = "1.1"
python-versions = "~2.7 || ^3.5"
-content-hash = "f716089bf560bb051980ddb5ff40b200027e9d9f2ed17fc7dd5576d80f5ad62a"
+content-hash = "e45e80a8cc2d64595c7f7e7a494dc8e80a7c1cd9f87cfd89539330e74823c06a"
[metadata.files]
-appdirs = [
- {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"},
- {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"},
-]
atomicwrites = [
{file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"},
{file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"},
]
attrs = [
- {file = "attrs-20.3.0-py2.py3-none-any.whl", hash = "sha256:31b2eced602aa8423c2aea9c76a724617ed67cf9513173fd3a4f03e3a929c7e6"},
- {file = "attrs-20.3.0.tar.gz", hash = "sha256:832aa3cde19744e49938b91fea06d69ecb9e649c93ba974535d08ad92164f700"},
+ {file = "attrs-21.2.0-py2.py3-none-any.whl", hash = "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1"},
+ {file = "attrs-21.2.0.tar.gz", hash = "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb"},
+]
+"backports.entry-points-selectable" = [
+ {file = "backports.entry_points_selectable-1.1.0-py2.py3-none-any.whl", hash = "sha256:a6d9a871cde5e15b4c4a53e3d43ba890cc6861ec1332c9c2428c92f977192acc"},
+ {file = "backports.entry_points_selectable-1.1.0.tar.gz", hash = "sha256:988468260ec1c196dab6ae1149260e2f5472c9110334e5d51adcb77867361f6a"},
]
"backports.functools-lru-cache" = [
- {file = "backports.functools_lru_cache-1.6.1-py2.py3-none-any.whl", hash = "sha256:0bada4c2f8a43d533e4ecb7a12214d9420e66eb206d54bf2d682581ca4b80848"},
- {file = "backports.functools_lru_cache-1.6.1.tar.gz", hash = "sha256:8fde5f188da2d593bd5bc0be98d9abc46c95bb8a9dde93429570192ee6cc2d4a"},
+ {file = "backports.functools_lru_cache-1.6.4-py2.py3-none-any.whl", hash = "sha256:dbead04b9daa817909ec64e8d2855fb78feafe0b901d4568758e3a60559d8978"},
+ {file = "backports.functools_lru_cache-1.6.4.tar.gz", hash = "sha256:d5ed2169378b67d3c545e5600d363a923b09c456dab1593914935a68ad478271"},
]
cachecontrol = [
{file = "CacheControl-0.12.6-py2.py3-none-any.whl", hash = "sha256:10d056fa27f8563a271b345207402a6dcce8efab7e5b377e270329c62471b10d"},
@@ -1029,51 +1089,59 @@ cachy = [
{file = "cachy-0.3.0.tar.gz", hash = "sha256:186581f4ceb42a0bbe040c407da73c14092379b1e4c0e327fdb72ae4a9b269b1"},
]
certifi = [
- {file = "certifi-2020.12.5-py2.py3-none-any.whl", hash = "sha256:719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830"},
- {file = "certifi-2020.12.5.tar.gz", hash = "sha256:1a4995114262bffbc2413b159f2a1a480c969de6e6eb13ee966d470af86af59c"},
+ {file = "certifi-2021.5.30-py2.py3-none-any.whl", hash = "sha256:50b1e4f8446b06f41be7dd6338db18e0990601dce795c2b1686458aa7e8fa7d8"},
+ {file = "certifi-2021.5.30.tar.gz", hash = "sha256:2bbf76fd432960138b3ef6dda3dde0544f27cbf8546c458e60baf371917ba9ee"},
]
cffi = [
- {file = "cffi-1.14.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:bb89f306e5da99f4d922728ddcd6f7fcebb3241fc40edebcb7284d7514741991"},
- {file = "cffi-1.14.5-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:34eff4b97f3d982fb93e2831e6750127d1355a923ebaeeb565407b3d2f8d41a1"},
- {file = "cffi-1.14.5-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:99cd03ae7988a93dd00bcd9d0b75e1f6c426063d6f03d2f90b89e29b25b82dfa"},
- {file = "cffi-1.14.5-cp27-cp27m-win32.whl", hash = "sha256:65fa59693c62cf06e45ddbb822165394a288edce9e276647f0046e1ec26920f3"},
- {file = "cffi-1.14.5-cp27-cp27m-win_amd64.whl", hash = "sha256:51182f8927c5af975fece87b1b369f722c570fe169f9880764b1ee3bca8347b5"},
- {file = "cffi-1.14.5-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:43e0b9d9e2c9e5d152946b9c5fe062c151614b262fda2e7b201204de0b99e482"},
- {file = "cffi-1.14.5-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:cbde590d4faaa07c72bf979734738f328d239913ba3e043b1e98fe9a39f8b2b6"},
- {file = "cffi-1.14.5-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:5de7970188bb46b7bf9858eb6890aad302577a5f6f75091fd7cdd3ef13ef3045"},
- {file = "cffi-1.14.5-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:a465da611f6fa124963b91bf432d960a555563efe4ed1cc403ba5077b15370aa"},
- {file = "cffi-1.14.5-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:d42b11d692e11b6634f7613ad8df5d6d5f8875f5d48939520d351007b3c13406"},
- {file = "cffi-1.14.5-cp35-cp35m-win32.whl", hash = "sha256:72d8d3ef52c208ee1c7b2e341f7d71c6fd3157138abf1a95166e6165dd5d4369"},
- {file = "cffi-1.14.5-cp35-cp35m-win_amd64.whl", hash = "sha256:29314480e958fd8aab22e4a58b355b629c59bf5f2ac2492b61e3dc06d8c7a315"},
- {file = "cffi-1.14.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:3d3dd4c9e559eb172ecf00a2a7517e97d1e96de2a5e610bd9b68cea3925b4892"},
- {file = "cffi-1.14.5-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:48e1c69bbacfc3d932221851b39d49e81567a4d4aac3b21258d9c24578280058"},
- {file = "cffi-1.14.5-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:69e395c24fc60aad6bb4fa7e583698ea6cc684648e1ffb7fe85e3c1ca131a7d5"},
- {file = "cffi-1.14.5-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:9e93e79c2551ff263400e1e4be085a1210e12073a31c2011dbbda14bda0c6132"},
- {file = "cffi-1.14.5-cp36-cp36m-win32.whl", hash = "sha256:58e3f59d583d413809d60779492342801d6e82fefb89c86a38e040c16883be53"},
- {file = "cffi-1.14.5-cp36-cp36m-win_amd64.whl", hash = "sha256:005a36f41773e148deac64b08f233873a4d0c18b053d37da83f6af4d9087b813"},
- {file = "cffi-1.14.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2894f2df484ff56d717bead0a5c2abb6b9d2bf26d6960c4604d5c48bbc30ee73"},
- {file = "cffi-1.14.5-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:0857f0ae312d855239a55c81ef453ee8fd24136eaba8e87a2eceba644c0d4c06"},
- {file = "cffi-1.14.5-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:cd2868886d547469123fadc46eac7ea5253ea7fcb139f12e1dfc2bbd406427d1"},
- {file = "cffi-1.14.5-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:35f27e6eb43380fa080dccf676dece30bef72e4a67617ffda586641cd4508d49"},
- {file = "cffi-1.14.5-cp37-cp37m-win32.whl", hash = "sha256:9ff227395193126d82e60319a673a037d5de84633f11279e336f9c0f189ecc62"},
- {file = "cffi-1.14.5-cp37-cp37m-win_amd64.whl", hash = "sha256:9cf8022fb8d07a97c178b02327b284521c7708d7c71a9c9c355c178ac4bbd3d4"},
- {file = "cffi-1.14.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8b198cec6c72df5289c05b05b8b0969819783f9418e0409865dac47288d2a053"},
- {file = "cffi-1.14.5-cp38-cp38-manylinux1_i686.whl", hash = "sha256:ad17025d226ee5beec591b52800c11680fca3df50b8b29fe51d882576e039ee0"},
- {file = "cffi-1.14.5-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:6c97d7350133666fbb5cf4abdc1178c812cb205dc6f41d174a7b0f18fb93337e"},
- {file = "cffi-1.14.5-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:8ae6299f6c68de06f136f1f9e69458eae58f1dacf10af5c17353eae03aa0d827"},
- {file = "cffi-1.14.5-cp38-cp38-win32.whl", hash = "sha256:b85eb46a81787c50650f2392b9b4ef23e1f126313b9e0e9013b35c15e4288e2e"},
- {file = "cffi-1.14.5-cp38-cp38-win_amd64.whl", hash = "sha256:1f436816fc868b098b0d63b8920de7d208c90a67212546d02f84fe78a9c26396"},
- {file = "cffi-1.14.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1071534bbbf8cbb31b498d5d9db0f274f2f7a865adca4ae429e147ba40f73dea"},
- {file = "cffi-1.14.5-cp39-cp39-manylinux1_i686.whl", hash = "sha256:9de2e279153a443c656f2defd67769e6d1e4163952b3c622dcea5b08a6405322"},
- {file = "cffi-1.14.5-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:6e4714cc64f474e4d6e37cfff31a814b509a35cb17de4fb1999907575684479c"},
- {file = "cffi-1.14.5-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:158d0d15119b4b7ff6b926536763dc0714313aa59e320ddf787502c70c4d4bee"},
- {file = "cffi-1.14.5-cp39-cp39-win32.whl", hash = "sha256:afb29c1ba2e5a3736f1c301d9d0abe3ec8b86957d04ddfa9d7a6a42b9367e396"},
- {file = "cffi-1.14.5-cp39-cp39-win_amd64.whl", hash = "sha256:f2d45f97ab6bb54753eab54fffe75aaf3de4ff2341c9daee1987ee1837636f1d"},
- {file = "cffi-1.14.5.tar.gz", hash = "sha256:fd78e5fee591709f32ef6edb9a015b4aa1a5022598e36227500c8f4e02328d9c"},
+ {file = "cffi-1.14.6-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:22b9c3c320171c108e903d61a3723b51e37aaa8c81255b5e7ce102775bd01e2c"},
+ {file = "cffi-1.14.6-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:f0c5d1acbfca6ebdd6b1e3eded8d261affb6ddcf2186205518f1428b8569bb99"},
+ {file = "cffi-1.14.6-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:99f27fefe34c37ba9875f224a8f36e31d744d8083e00f520f133cab79ad5e819"},
+ {file = "cffi-1.14.6-cp27-cp27m-win32.whl", hash = "sha256:55af55e32ae468e9946f741a5d51f9896da6b9bf0bbdd326843fec05c730eb20"},
+ {file = "cffi-1.14.6-cp27-cp27m-win_amd64.whl", hash = "sha256:7bcac9a2b4fdbed2c16fa5681356d7121ecabf041f18d97ed5b8e0dd38a80224"},
+ {file = "cffi-1.14.6-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:ed38b924ce794e505647f7c331b22a693bee1538fdf46b0222c4717b42f744e7"},
+ {file = "cffi-1.14.6-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:e22dcb48709fc51a7b58a927391b23ab37eb3737a98ac4338e2448bef8559b33"},
+ {file = "cffi-1.14.6-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:aedb15f0a5a5949ecb129a82b72b19df97bbbca024081ed2ef88bd5c0a610534"},
+ {file = "cffi-1.14.6-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:48916e459c54c4a70e52745639f1db524542140433599e13911b2f329834276a"},
+ {file = "cffi-1.14.6-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:f627688813d0a4140153ff532537fbe4afea5a3dffce1f9deb7f91f848a832b5"},
+ {file = "cffi-1.14.6-cp35-cp35m-win32.whl", hash = "sha256:f0010c6f9d1a4011e429109fda55a225921e3206e7f62a0c22a35344bfd13cca"},
+ {file = "cffi-1.14.6-cp35-cp35m-win_amd64.whl", hash = "sha256:57e555a9feb4a8460415f1aac331a2dc833b1115284f7ded7278b54afc5bd218"},
+ {file = "cffi-1.14.6-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e8c6a99be100371dbb046880e7a282152aa5d6127ae01783e37662ef73850d8f"},
+ {file = "cffi-1.14.6-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:19ca0dbdeda3b2615421d54bef8985f72af6e0c47082a8d26122adac81a95872"},
+ {file = "cffi-1.14.6-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:d950695ae4381ecd856bcaf2b1e866720e4ab9a1498cba61c602e56630ca7195"},
+ {file = "cffi-1.14.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e9dc245e3ac69c92ee4c167fbdd7428ec1956d4e754223124991ef29eb57a09d"},
+ {file = "cffi-1.14.6-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a8661b2ce9694ca01c529bfa204dbb144b275a31685a075ce123f12331be790b"},
+ {file = "cffi-1.14.6-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b315d709717a99f4b27b59b021e6207c64620790ca3e0bde636a6c7f14618abb"},
+ {file = "cffi-1.14.6-cp36-cp36m-win32.whl", hash = "sha256:80b06212075346b5546b0417b9f2bf467fea3bfe7352f781ffc05a8ab24ba14a"},
+ {file = "cffi-1.14.6-cp36-cp36m-win_amd64.whl", hash = "sha256:a9da7010cec5a12193d1af9872a00888f396aba3dc79186604a09ea3ee7c029e"},
+ {file = "cffi-1.14.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4373612d59c404baeb7cbd788a18b2b2a8331abcc84c3ba40051fcd18b17a4d5"},
+ {file = "cffi-1.14.6-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:f10afb1004f102c7868ebfe91c28f4a712227fe4cb24974350ace1f90e1febbf"},
+ {file = "cffi-1.14.6-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:fd4305f86f53dfd8cd3522269ed7fc34856a8ee3709a5e28b2836b2db9d4cd69"},
+ {file = "cffi-1.14.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d6169cb3c6c2ad50db5b868db6491a790300ade1ed5d1da29289d73bbe40b56"},
+ {file = "cffi-1.14.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5d4b68e216fc65e9fe4f524c177b54964af043dde734807586cf5435af84045c"},
+ {file = "cffi-1.14.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33791e8a2dc2953f28b8d8d300dde42dd929ac28f974c4b4c6272cb2955cb762"},
+ {file = "cffi-1.14.6-cp37-cp37m-win32.whl", hash = "sha256:0c0591bee64e438883b0c92a7bed78f6290d40bf02e54c5bf0978eaf36061771"},
+ {file = "cffi-1.14.6-cp37-cp37m-win_amd64.whl", hash = "sha256:8eb687582ed7cd8c4bdbff3df6c0da443eb89c3c72e6e5dcdd9c81729712791a"},
+ {file = "cffi-1.14.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ba6f2b3f452e150945d58f4badd92310449876c4c954836cfb1803bdd7b422f0"},
+ {file = "cffi-1.14.6-cp38-cp38-manylinux1_i686.whl", hash = "sha256:64fda793737bc4037521d4899be780534b9aea552eb673b9833b01f945904c2e"},
+ {file = "cffi-1.14.6-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:9f3e33c28cd39d1b655ed1ba7247133b6f7fc16fa16887b120c0c670e35ce346"},
+ {file = "cffi-1.14.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26bb2549b72708c833f5abe62b756176022a7b9a7f689b571e74c8478ead51dc"},
+ {file = "cffi-1.14.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb687a11f0a7a1839719edd80f41e459cc5366857ecbed383ff376c4e3cc6afd"},
+ {file = "cffi-1.14.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d2ad4d668a5c0645d281dcd17aff2be3212bc109b33814bbb15c4939f44181cc"},
+ {file = "cffi-1.14.6-cp38-cp38-win32.whl", hash = "sha256:487d63e1454627c8e47dd230025780e91869cfba4c753a74fda196a1f6ad6548"},
+ {file = "cffi-1.14.6-cp38-cp38-win_amd64.whl", hash = "sha256:c33d18eb6e6bc36f09d793c0dc58b0211fccc6ae5149b808da4a62660678b156"},
+ {file = "cffi-1.14.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:06c54a68935738d206570b20da5ef2b6b6d92b38ef3ec45c5422c0ebaf338d4d"},
+ {file = "cffi-1.14.6-cp39-cp39-manylinux1_i686.whl", hash = "sha256:f174135f5609428cc6e1b9090f9268f5c8935fddb1b25ccb8255a2d50de6789e"},
+ {file = "cffi-1.14.6-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:f3ebe6e73c319340830a9b2825d32eb6d8475c1dac020b4f0aa774ee3b898d1c"},
+ {file = "cffi-1.14.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c8d896becff2fa653dc4438b54a5a25a971d1f4110b32bd3068db3722c80202"},
+ {file = "cffi-1.14.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4922cd707b25e623b902c86188aca466d3620892db76c0bdd7b99a3d5e61d35f"},
+ {file = "cffi-1.14.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c9e005e9bd57bc987764c32a1bee4364c44fdc11a3cc20a40b93b444984f2b87"},
+ {file = "cffi-1.14.6-cp39-cp39-win32.whl", hash = "sha256:eb9e2a346c5238a30a746893f23a9535e700f8192a68c07c0258e7ece6ff3728"},
+ {file = "cffi-1.14.6-cp39-cp39-win_amd64.whl", hash = "sha256:818014c754cd3dba7229c0f5884396264d51ffb87ec86e927ef0be140bfdb0d2"},
+ {file = "cffi-1.14.6.tar.gz", hash = "sha256:c9a875ce9d7fe32887784274dd533c57909b7b1dcadcc128a2ac21331a9765dd"},
]
cfgv = [
- {file = "cfgv-3.2.0-py2.py3-none-any.whl", hash = "sha256:32e43d604bbe7896fe7c248a9c2276447dbef840feb28fe20494f62af110211d"},
- {file = "cfgv-3.2.0.tar.gz", hash = "sha256:cf22deb93d4bcf92f345a5c3cd39d3d41d6340adc60c78bbbd6588c384fda6a1"},
+ {file = "cfgv-3.3.0-py2.py3-none-any.whl", hash = "sha256:b449c9c6118fe8cca7fa5e00b9ec60ba08145d281d52164230a69211c5d597a1"},
+ {file = "cfgv-3.3.0.tar.gz", hash = "sha256:9e600479b3b99e8af981ecdfc80a0296104ee610cab48a5ae4ffd0b668650eb1"},
]
chardet = [
{file = "chardet-4.0.0-py2.py3-none-any.whl", hash = "sha256:f864054d66fd9118f2e67044ac8981a54775ec5b67aed0441892edb553d21da5"},
@@ -1180,17 +1248,36 @@ cryptography = [
{file = "cryptography-3.2.1-cp38-cp38-win32.whl", hash = "sha256:3cd75a683b15576cfc822c7c5742b3276e50b21a06672dc3a800a2d5da4ecd1b"},
{file = "cryptography-3.2.1-cp38-cp38-win_amd64.whl", hash = "sha256:d25cecbac20713a7c3bc544372d42d8eafa89799f492a43b79e1dfd650484851"},
{file = "cryptography-3.2.1.tar.gz", hash = "sha256:d3d5e10be0cf2a12214ddee45c6bd203dab435e3d83b4560c03066eda600bfe3"},
- {file = "cryptography-3.4.6-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:57ad77d32917bc55299b16d3b996ffa42a1c73c6cfa829b14043c561288d2799"},
- {file = "cryptography-3.4.6-cp36-abi3-manylinux2010_x86_64.whl", hash = "sha256:93cfe5b7ff006de13e1e89830810ecbd014791b042cbe5eec253be11ac2b28f3"},
- {file = "cryptography-3.4.6-cp36-abi3-manylinux2014_aarch64.whl", hash = "sha256:5ecf2bcb34d17415e89b546dbb44e73080f747e504273e4d4987630493cded1b"},
- {file = "cryptography-3.4.6-cp36-abi3-manylinux2014_x86_64.whl", hash = "sha256:fec7fb46b10da10d9e1d078d1ff8ed9e05ae14f431fdbd11145edd0550b9a964"},
- {file = "cryptography-3.4.6-cp36-abi3-win32.whl", hash = "sha256:df186fcbf86dc1ce56305becb8434e4b6b7504bc724b71ad7a3239e0c9d14ef2"},
- {file = "cryptography-3.4.6-cp36-abi3-win_amd64.whl", hash = "sha256:66b57a9ca4b3221d51b237094b0303843b914b7d5afd4349970bb26518e350b0"},
- {file = "cryptography-3.4.6.tar.gz", hash = "sha256:2d32223e5b0ee02943f32b19245b61a62db83a882f0e76cc564e1cec60d48f87"},
+ {file = "cryptography-3.3.2-cp27-cp27m-macosx_10_10_x86_64.whl", hash = "sha256:541dd758ad49b45920dda3b5b48c968f8b2533d8981bcdb43002798d8f7a89ed"},
+ {file = "cryptography-3.3.2-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:49570438e60f19243e7e0d504527dd5fe9b4b967b5a1ff21cc12b57602dd85d3"},
+ {file = "cryptography-3.3.2-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:a9a4ac9648d39ce71c2f63fe7dc6db144b9fa567ddfc48b9fde1b54483d26042"},
+ {file = "cryptography-3.3.2-cp27-cp27m-win32.whl", hash = "sha256:aa4969f24d536ae2268c902b2c3d62ab464b5a66bcb247630d208a79a8098e9b"},
+ {file = "cryptography-3.3.2-cp27-cp27m-win_amd64.whl", hash = "sha256:1bd0ccb0a1ed775cd7e2144fe46df9dc03eefd722bbcf587b3e0616ea4a81eff"},
+ {file = "cryptography-3.3.2-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:e18e6ab84dfb0ab997faf8cca25a86ff15dfea4027b986322026cc99e0a892da"},
+ {file = "cryptography-3.3.2-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:c7390f9b2119b2b43160abb34f63277a638504ef8df99f11cb52c1fda66a2e6f"},
+ {file = "cryptography-3.3.2-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:0d7b69674b738068fa6ffade5c962ecd14969690585aaca0a1b1fc9058938a72"},
+ {file = "cryptography-3.3.2-cp36-abi3-manylinux1_x86_64.whl", hash = "sha256:922f9602d67c15ade470c11d616f2b2364950602e370c76f0c94c94ae672742e"},
+ {file = "cryptography-3.3.2-cp36-abi3-manylinux2010_x86_64.whl", hash = "sha256:a0f0b96c572fc9f25c3f4ddbf4688b9b38c69836713fb255f4a2715d93cbaf44"},
+ {file = "cryptography-3.3.2-cp36-abi3-manylinux2014_aarch64.whl", hash = "sha256:a777c096a49d80f9d2979695b835b0f9c9edab73b59e4ceb51f19724dda887ed"},
+ {file = "cryptography-3.3.2-cp36-abi3-win32.whl", hash = "sha256:3c284fc1e504e88e51c428db9c9274f2da9f73fdf5d7e13a36b8ecb039af6e6c"},
+ {file = "cryptography-3.3.2-cp36-abi3-win_amd64.whl", hash = "sha256:7951a966613c4211b6612b0352f5bf29989955ee592c4a885d8c7d0f830d0433"},
+ {file = "cryptography-3.3.2.tar.gz", hash = "sha256:5a60d3780149e13b7a6ff7ad6526b38846354d11a15e21068e57073e29e19bed"},
+ {file = "cryptography-3.4.7-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:3d8427734c781ea5f1b41d6589c293089704d4759e34597dce91014ac125aad1"},
+ {file = "cryptography-3.4.7-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:8e56e16617872b0957d1c9742a3f94b43533447fd78321514abbe7db216aa250"},
+ {file = "cryptography-3.4.7-cp36-abi3-manylinux2010_x86_64.whl", hash = "sha256:37340614f8a5d2fb9aeea67fd159bfe4f5f4ed535b1090ce8ec428b2f15a11f2"},
+ {file = "cryptography-3.4.7-cp36-abi3-manylinux2014_aarch64.whl", hash = "sha256:240f5c21aef0b73f40bb9f78d2caff73186700bf1bc6b94285699aff98cc16c6"},
+ {file = "cryptography-3.4.7-cp36-abi3-manylinux2014_x86_64.whl", hash = "sha256:1e056c28420c072c5e3cb36e2b23ee55e260cb04eee08f702e0edfec3fb51959"},
+ {file = "cryptography-3.4.7-cp36-abi3-win32.whl", hash = "sha256:0f1212a66329c80d68aeeb39b8a16d54ef57071bf22ff4e521657b27372e327d"},
+ {file = "cryptography-3.4.7-cp36-abi3-win_amd64.whl", hash = "sha256:de4e5f7f68220d92b7637fc99847475b59154b7a1b3868fb7385337af54ac9ca"},
+ {file = "cryptography-3.4.7-pp36-pypy36_pp73-manylinux2010_x86_64.whl", hash = "sha256:26965837447f9c82f1855e0bc8bc4fb910240b6e0d16a664bb722df3b5b06873"},
+ {file = "cryptography-3.4.7-pp36-pypy36_pp73-manylinux2014_x86_64.whl", hash = "sha256:eb8cc2afe8b05acbd84a43905832ec78e7b3873fb124ca190f574dca7389a87d"},
+ {file = "cryptography-3.4.7-pp37-pypy37_pp73-manylinux2010_x86_64.whl", hash = "sha256:7ec5d3b029f5fa2b179325908b9cd93db28ab7b85bb6c1db56b10e0b54235177"},
+ {file = "cryptography-3.4.7-pp37-pypy37_pp73-manylinux2014_x86_64.whl", hash = "sha256:ee77aa129f481be46f8d92a1a7db57269a2f23052d5f2433b4621bb457081cc9"},
+ {file = "cryptography-3.4.7.tar.gz", hash = "sha256:3d10de8116d25649631977cb37da6cbdd2d6fa0e0281d014a5b7d337255ca713"},
]
distlib = [
- {file = "distlib-0.3.1-py2.py3-none-any.whl", hash = "sha256:8c09de2c67b3e7deef7184574fc060ab8a793e7adbb183d942c389c8b13c52fb"},
- {file = "distlib-0.3.1.zip", hash = "sha256:edf6116872c863e1aa9d5bb7cb5e05a022c519a4594dc703843343a9ddd9bff1"},
+ {file = "distlib-0.3.2-py2.py3-none-any.whl", hash = "sha256:23e223426b28491b1ced97dc3bbe183027419dfc7982b4fa2f05d5f3ff10711c"},
+ {file = "distlib-0.3.2.zip", hash = "sha256:106fef6dc37dd8c0e2c0a60d3fca3e77460a48907f335fa28420463a6f799736"},
]
entrypoints = [
{file = "entrypoints-0.3-py2.py3-none-any.whl", hash = "sha256:589f874b313739ad35be6e0cd7efde2a4e9b6fea91edcc34e58ecbb8dbe56d19"},
@@ -1228,8 +1315,8 @@ httpretty = [
{file = "httpretty-0.9.7.tar.gz", hash = "sha256:66216f26b9d2c52e81808f3e674a6fb65d4bf719721394a1a9be926177e55fbe"},
]
identify = [
- {file = "identify-2.1.0-py2.py3-none-any.whl", hash = "sha256:2a5fdf2f5319cc357eda2550bea713a404392495961022cf2462624ce62f0f46"},
- {file = "identify-2.1.0.tar.gz", hash = "sha256:2179e7359471ab55729f201b3fdf7dc2778e221f868410fedcb0987b791ba552"},
+ {file = "identify-2.2.13-py2.py3-none-any.whl", hash = "sha256:7199679b5be13a6b40e6e19ea473e789b11b4e3b60986499b1f589ffb03c217c"},
+ {file = "identify-2.2.13.tar.gz", hash = "sha256:7bc6e829392bd017236531963d2d937d66fc27cadc643ac0aba2ce9f26157c79"},
]
idna = [
{file = "idna-2.10-py2.py3-none-any.whl", hash = "sha256:b97d804b1e9b523befed77c48dacec60e6dcb0b5391d57af6a65a312a90648c0"},
@@ -1248,8 +1335,10 @@ ipaddress = [
{file = "ipaddress-1.0.23.tar.gz", hash = "sha256:b7f8e0369580bb4a24d5ba1d7cc29660a4a6987763faf1d8a8046830e020e7e2"},
]
jeepney = [
- {file = "jeepney-0.6.0-py3-none-any.whl", hash = "sha256:aec56c0eb1691a841795111e184e13cad504f7703b9a64f63020816afa79a8ae"},
- {file = "jeepney-0.6.0.tar.gz", hash = "sha256:7d59b6622675ca9e993a6bd38de845051d315f8b0c72cca3aef733a20b648657"},
+ {file = "jeepney-0.4.3-py3-none-any.whl", hash = "sha256:d6c6b49683446d2407d2fe3acb7a368a77ff063f9182fe427da15d622adc24cf"},
+ {file = "jeepney-0.4.3.tar.gz", hash = "sha256:3479b861cc2b6407de5188695fa1a8d57e5072d7059322469b62628869b8e36e"},
+ {file = "jeepney-0.7.1-py3-none-any.whl", hash = "sha256:1b5a0ea5c0e7b166b2f5895b91a08c14de8915afda4407fb5022a195224958ac"},
+ {file = "jeepney-0.7.1.tar.gz", hash = "sha256:fa9e232dfa0c498bd0b8a3a73b8d8a31978304dcef0515adc859d4e096f96f4f"},
]
keyring = [
{file = "keyring-18.0.1-py2.py3-none-any.whl", hash = "sha256:7b29ebfcf8678c4da531b2478a912eea01e80007e5ddca9ee0c7038cb3489ec6"},
@@ -1271,10 +1360,10 @@ more-itertools = [
{file = "more-itertools-5.0.0.tar.gz", hash = "sha256:38a936c0a6d98a38bcc2d03fdaaedaba9f412879461dd2ceff8d37564d6522e4"},
{file = "more_itertools-5.0.0-py2-none-any.whl", hash = "sha256:c0a5785b1109a6bd7fac76d6837fd1feca158e54e521ccd2ae8bfe393cc9d4fc"},
{file = "more_itertools-5.0.0-py3-none-any.whl", hash = "sha256:fe7a7cae1ccb57d33952113ff4fa1bc5f879963600ed74918f1236e212ee50b9"},
- {file = "more-itertools-8.6.0.tar.gz", hash = "sha256:b3a9005928e5bed54076e6e549c792b306fddfe72b2d1d22dd63d42d5d3899cf"},
- {file = "more_itertools-8.6.0-py3-none-any.whl", hash = "sha256:8e1a2a43b2f2727425f2b5839587ae37093f19153dc26c0927d1048ff6557330"},
- {file = "more-itertools-8.7.0.tar.gz", hash = "sha256:c5d6da9ca3ff65220c3bfd2a8db06d698f05d4d2b9be57e1deb2be5a45019713"},
- {file = "more_itertools-8.7.0-py3-none-any.whl", hash = "sha256:5652a9ac72209ed7df8d9c15daf4e1aa0e3d2ccd3c87f8265a0673cd9cbc9ced"},
+ {file = "more-itertools-7.2.0.tar.gz", hash = "sha256:409cd48d4db7052af495b09dec721011634af3753ae1ef92d2b32f73a745f832"},
+ {file = "more_itertools-7.2.0-py3-none-any.whl", hash = "sha256:92b8c4b06dac4f0611c0729b2f2ede52b2e1bac1ab48f089c7ddc12e26bb60c4"},
+ {file = "more-itertools-8.8.0.tar.gz", hash = "sha256:83f0308e05477c68f56ea3a888172c78ed5d5b3c282addb67508e7ba6c8f813a"},
+ {file = "more_itertools-8.8.0-py3-none-any.whl", hash = "sha256:2cf89ec599962f2ddc4d568a05defc40e0a587fbc10d5989713638864c36be4d"},
]
msgpack = [
{file = "msgpack-1.0.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:b6d9e2dae081aa35c44af9c4298de4ee72991305503442a5c74656d82b581fe9"},
@@ -1307,8 +1396,8 @@ msgpack = [
{file = "msgpack-1.0.2.tar.gz", hash = "sha256:fae04496f5bc150eefad4e9571d1a76c55d021325dcd484ce45065ebbdd00984"},
]
nodeenv = [
- {file = "nodeenv-1.5.0-py2.py3-none-any.whl", hash = "sha256:5304d424c529c997bc888453aeaa6362d242b6b4631e90f3d4bf1b290f1c84a9"},
- {file = "nodeenv-1.5.0.tar.gz", hash = "sha256:ab45090ae383b716c4ef89e690c41ff8c2b257b85b309f01f3654df3d084bd7c"},
+ {file = "nodeenv-1.6.0-py2.py3-none-any.whl", hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7"},
+ {file = "nodeenv-1.6.0.tar.gz", hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b"},
]
packaging = [
{file = "packaging-20.9-py2.py3-none-any.whl", hash = "sha256:67714da7f7bc052e064859c05c595155bd1ee9f69f76557e21f051443c20947a"},
@@ -1319,28 +1408,32 @@ pastel = [
{file = "pastel-0.2.1.tar.gz", hash = "sha256:e6581ac04e973cac858828c6202c1e1e81fee1dc7de7683f3e1ffe0bfd8a573d"},
]
pathlib2 = [
- {file = "pathlib2-2.3.5-py2.py3-none-any.whl", hash = "sha256:0ec8205a157c80d7acc301c0b18fbd5d44fe655968f5d947b6ecef5290fc35db"},
- {file = "pathlib2-2.3.5.tar.gz", hash = "sha256:6cd9a47b597b37cc57de1c05e56fb1a1c9cc9fab04fe78c29acd090418529868"},
+ {file = "pathlib2-2.3.6-py2.py3-none-any.whl", hash = "sha256:3a130b266b3a36134dcc79c17b3c7ac9634f083825ca6ea9d8f557ee6195c9c8"},
+ {file = "pathlib2-2.3.6.tar.gz", hash = "sha256:7d8bcb5555003cdf4a8d2872c538faa3a0f5d20630cb360e518ca3b981795e5f"},
]
pexpect = [
{file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"},
{file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"},
]
pkginfo = [
- {file = "pkginfo-1.7.0-py2.py3-none-any.whl", hash = "sha256:9fdbea6495622e022cc72c2e5e1b735218e4ffb2a2a69cde2694a6c1f16afb75"},
- {file = "pkginfo-1.7.0.tar.gz", hash = "sha256:029a70cb45c6171c329dfc890cde0879f8c52d6f3922794796e06f577bb03db4"},
+ {file = "pkginfo-1.7.1-py2.py3-none-any.whl", hash = "sha256:37ecd857b47e5f55949c41ed061eb51a0bee97a87c969219d144c0e023982779"},
+ {file = "pkginfo-1.7.1.tar.gz", hash = "sha256:e7432f81d08adec7297633191bbf0bd47faf13cd8724c3a13250e51d542635bd"},
+]
+platformdirs = [
+ {file = "platformdirs-2.0.2-py2.py3-none-any.whl", hash = "sha256:0b9547541f599d3d242078ae60b927b3e453f0ad52f58b4d4bc3be86aed3ec41"},
+ {file = "platformdirs-2.0.2.tar.gz", hash = "sha256:3b00d081227d9037bbbca521a5787796b5ef5000faea1e43fd76f1d44b06fcfa"},
]
pluggy = [
{file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"},
{file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"},
]
poetry-core = [
- {file = "poetry-core-1.0.2.tar.gz", hash = "sha256:ff505d656a6cf40ffbf84393d8b5bf37b78523a15def3ac473b6fad74261ee71"},
- {file = "poetry_core-1.0.2-py2.py3-none-any.whl", hash = "sha256:ee0ed4164440eeab27d1b01bc7b9b3afdc3124f68d4ea28d0821a402a9c7c044"},
+ {file = "poetry-core-1.0.4.tar.gz", hash = "sha256:4b3847ad3e7b5deb88a35b23fa19762b9cef26828770cef3a5b47ffb508119c1"},
+ {file = "poetry_core-1.0.4-py2.py3-none-any.whl", hash = "sha256:a99fa921cf84f0521644714bb4b531d9d8f839c64de20aa71fa137f7461a1516"},
]
pre-commit = [
- {file = "pre_commit-2.10.1-py2.py3-none-any.whl", hash = "sha256:16212d1fde2bed88159287da88ff03796863854b04dc9f838a55979325a3d20e"},
- {file = "pre_commit-2.10.1.tar.gz", hash = "sha256:399baf78f13f4de82a29b649afd74bef2c4e28eb4f021661fc7f29246e8c7a3a"},
+ {file = "pre_commit-2.14.0-py2.py3-none-any.whl", hash = "sha256:ec3045ae62e1aa2eecfb8e86fa3025c2e3698f77394ef8d2011ce0aedd85b2d4"},
+ {file = "pre_commit-2.14.0.tar.gz", hash = "sha256:2386eeb4cf6633712c7cc9ede83684d53c8cafca6b59f79c738098b51c6d206c"},
]
ptyprocess = [
{file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"},
@@ -1355,8 +1448,8 @@ pycparser = [
{file = "pycparser-2.20.tar.gz", hash = "sha256:2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0"},
]
pylev = [
- {file = "pylev-1.3.0-py2.py3-none-any.whl", hash = "sha256:1d29a87beb45ebe1e821e7a3b10da2b6b2f4c79b43f482c2df1a1f748a6e114e"},
- {file = "pylev-1.3.0.tar.gz", hash = "sha256:063910098161199b81e453025653ec53556c1be7165a9b7c50be2f4d57eae1c3"},
+ {file = "pylev-1.4.0-py2.py3-none-any.whl", hash = "sha256:7b2e2aa7b00e05bb3f7650eb506fc89f474f70493271a35c242d9a92188ad3dd"},
+ {file = "pylev-1.4.0.tar.gz", hash = "sha256:9e77e941042ad3a4cc305dcdf2b2dec1aec2fbe3dd9015d2698ad02b173006d1"},
]
pyparsing = [
{file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"},
@@ -1369,8 +1462,8 @@ pytest = [
{file = "pytest-5.4.3.tar.gz", hash = "sha256:7979331bfcba207414f5e1263b5a0f8f521d0f457318836a7355531ed1a4c7d8"},
]
pytest-cov = [
- {file = "pytest-cov-2.11.1.tar.gz", hash = "sha256:359952d9d39b9f822d9d29324483e7ba04a3a17dd7d05aa6beb7ea01e359e5f7"},
- {file = "pytest_cov-2.11.1-py2.py3-none-any.whl", hash = "sha256:bdb9fdb0b85a7cc825269a4c56b48ccaa5c7e365054b6038772c32ddcdc969da"},
+ {file = "pytest-cov-2.12.1.tar.gz", hash = "sha256:261ceeb8c227b726249b376b8526b600f38667ee314f910353fa318caa01f4d7"},
+ {file = "pytest_cov-2.12.1-py2.py3-none-any.whl", hash = "sha256:261bb9e47e65bd099c89c3edf92972865210c36813f80ede5277dceb77a4a62a"},
]
pytest-mock = [
{file = "pytest-mock-1.13.0.tar.gz", hash = "sha256:e24a911ec96773022ebcc7030059b57cd3480b56d4f5d19b7c370ec635e6aed5"},
@@ -1390,18 +1483,26 @@ pyyaml = [
{file = "PyYAML-5.4.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:bb4191dfc9306777bc594117aee052446b3fa88737cd13b7188d0e7aa8162185"},
{file = "PyYAML-5.4.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:6c78645d400265a062508ae399b60b8c167bf003db364ecb26dcab2bda048253"},
{file = "PyYAML-5.4.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:4e0583d24c881e14342eaf4ec5fbc97f934b999a6828693a99157fde912540cc"},
+ {file = "PyYAML-5.4.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:72a01f726a9c7851ca9bfad6fd09ca4e090a023c00945ea05ba1638c09dc3347"},
+ {file = "PyYAML-5.4.1-cp36-cp36m-manylinux2014_s390x.whl", hash = "sha256:895f61ef02e8fed38159bb70f7e100e00f471eae2bc838cd0f4ebb21e28f8541"},
{file = "PyYAML-5.4.1-cp36-cp36m-win32.whl", hash = "sha256:3bd0e463264cf257d1ffd2e40223b197271046d09dadf73a0fe82b9c1fc385a5"},
{file = "PyYAML-5.4.1-cp36-cp36m-win_amd64.whl", hash = "sha256:e4fac90784481d221a8e4b1162afa7c47ed953be40d31ab4629ae917510051df"},
{file = "PyYAML-5.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5accb17103e43963b80e6f837831f38d314a0495500067cb25afab2e8d7a4018"},
{file = "PyYAML-5.4.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:e1d4970ea66be07ae37a3c2e48b5ec63f7ba6804bdddfdbd3cfd954d25a82e63"},
+ {file = "PyYAML-5.4.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:cb333c16912324fd5f769fff6bc5de372e9e7a202247b48870bc251ed40239aa"},
+ {file = "PyYAML-5.4.1-cp37-cp37m-manylinux2014_s390x.whl", hash = "sha256:fe69978f3f768926cfa37b867e3843918e012cf83f680806599ddce33c2c68b0"},
{file = "PyYAML-5.4.1-cp37-cp37m-win32.whl", hash = "sha256:dd5de0646207f053eb0d6c74ae45ba98c3395a571a2891858e87df7c9b9bd51b"},
{file = "PyYAML-5.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:08682f6b72c722394747bddaf0aa62277e02557c0fd1c42cb853016a38f8dedf"},
{file = "PyYAML-5.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d2d9808ea7b4af864f35ea216be506ecec180628aced0704e34aca0b040ffe46"},
{file = "PyYAML-5.4.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:8c1be557ee92a20f184922c7b6424e8ab6691788e6d86137c5d93c1a6ec1b8fb"},
+ {file = "PyYAML-5.4.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:fd7f6999a8070df521b6384004ef42833b9bd62cfee11a09bda1079b4b704247"},
+ {file = "PyYAML-5.4.1-cp38-cp38-manylinux2014_s390x.whl", hash = "sha256:bfb51918d4ff3d77c1c856a9699f8492c612cde32fd3bcd344af9be34999bfdc"},
{file = "PyYAML-5.4.1-cp38-cp38-win32.whl", hash = "sha256:fa5ae20527d8e831e8230cbffd9f8fe952815b2b7dae6ffec25318803a7528fc"},
{file = "PyYAML-5.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:0f5f5786c0e09baddcd8b4b45f20a7b5d61a7e7e99846e3c799b05c7c53fa696"},
{file = "PyYAML-5.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:294db365efa064d00b8d1ef65d8ea2c3426ac366c0c4368d930bf1c5fb497f77"},
{file = "PyYAML-5.4.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:74c1485f7707cf707a7aef42ef6322b8f97921bd89be2ab6317fd782c2d53183"},
+ {file = "PyYAML-5.4.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:d483ad4e639292c90170eb6f7783ad19490e7a8defb3e46f97dfe4bacae89122"},
+ {file = "PyYAML-5.4.1-cp39-cp39-manylinux2014_s390x.whl", hash = "sha256:fdc842473cd33f45ff6bce46aea678a54e3d21f1b61a7750ce3c498eedfe25d6"},
{file = "PyYAML-5.4.1-cp39-cp39-win32.whl", hash = "sha256:49d4cdd9065b9b6e206d0595fee27a96b5dd22618e7520c33204a4a3239d5b10"},
{file = "PyYAML-5.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:c20cfa2d49991c8b4147af39859b167664f2ad4561704ee74c1de03318e898db"},
{file = "PyYAML-5.4.1.tar.gz", hash = "sha256:607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e"},
@@ -1429,6 +1530,8 @@ scandir = [
]
secretstorage = [
{file = "SecretStorage-2.3.1.tar.gz", hash = "sha256:3af65c87765323e6f64c83575b05393f9e003431959c9395d1791d51497f29b6"},
+ {file = "SecretStorage-3.2.0-py3-none-any.whl", hash = "sha256:ed5279d788af258e4676fa26b6efb6d335a31f1f9f529b6f1e200f388fac33e1"},
+ {file = "SecretStorage-3.2.0.tar.gz", hash = "sha256:46305c3847ee3f7252b284e0eee5590fa6341c891104a2fd2313f8798c615a82"},
{file = "SecretStorage-3.3.1-py3-none-any.whl", hash = "sha256:422d82c36172d88d6a0ed5afdec956514b189ddbfb72fefab0c8a1cee4eaf71f"},
{file = "SecretStorage-3.3.1.tar.gz", hash = "sha256:fd666c51a6bf200643495a04abb261f83229dcb6fd8472ec393df7ffc8b6f195"},
]
@@ -1437,12 +1540,12 @@ shellingham = [
{file = "shellingham-1.4.0.tar.gz", hash = "sha256:4855c2458d6904829bd34c299f11fdeed7cfefbf8a2c522e4caea6cd76b3171e"},
]
singledispatch = [
- {file = "singledispatch-3.6.1-py2.py3-none-any.whl", hash = "sha256:85c97f94c8957fa4e6dab113156c182fb346d56d059af78aad710bced15f16fb"},
- {file = "singledispatch-3.6.1.tar.gz", hash = "sha256:58b46ce1cc4d43af0aac3ac9a047bdb0f44e05f0b2fa2eec755863331700c865"},
+ {file = "singledispatch-3.7.0-py2.py3-none-any.whl", hash = "sha256:bc77afa97c8a22596d6d4fc20f1b7bdd2b86edc2a65a4262bdd7cc3cc19aa989"},
+ {file = "singledispatch-3.7.0.tar.gz", hash = "sha256:c1a4d5c1da310c3fd8fccfb8d4e1cb7df076148fd5d858a819e37fffe44f3092"},
]
six = [
- {file = "six-1.15.0-py2.py3-none-any.whl", hash = "sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced"},
- {file = "six-1.15.0.tar.gz", hash = "sha256:30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259"},
+ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
+ {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
]
subprocess32 = [
{file = "subprocess32-3.5.4-cp27-cp27m-macosx_10_6_intel.whl", hash = "sha256:88e37c1aac5388df41cc8a8456bb49ebffd321a3ad4d70358e3518176de3a56b"},
@@ -1457,29 +1560,30 @@ toml = [
{file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"},
]
tomlkit = [
- {file = "tomlkit-0.7.0-py2.py3-none-any.whl", hash = "sha256:6babbd33b17d5c9691896b0e68159215a9387ebfa938aa3ac42f4a4beeb2b831"},
- {file = "tomlkit-0.7.0.tar.gz", hash = "sha256:ac57f29693fab3e309ea789252fcce3061e19110085aa31af5446ca749325618"},
+ {file = "tomlkit-0.7.2-py2.py3-none-any.whl", hash = "sha256:173ad840fa5d2aac140528ca1933c29791b79a374a0861a80347f42ec9328117"},
+ {file = "tomlkit-0.7.2.tar.gz", hash = "sha256:d7a454f319a7e9bd2e249f239168729327e4dd2d27b17dc68be264ad1ce36754"},
]
tox = [
- {file = "tox-3.23.0-py2.py3-none-any.whl", hash = "sha256:e007673f3595cede9b17a7c4962389e4305d4a3682a6c5a4159a1453b4f326aa"},
- {file = "tox-3.23.0.tar.gz", hash = "sha256:05a4dbd5e4d3d8269b72b55600f0b0303e2eb47ad5c6fe76d3576f4c58d93661"},
+ {file = "tox-3.24.2-py2.py3-none-any.whl", hash = "sha256:d45d39203b10fdb2f6887c6779865e31de82cea07419a739844cc4bd4b3493e2"},
+ {file = "tox-3.24.2.tar.gz", hash = "sha256:ae442d4d51d5a3afb3711e4c7d94f5ca8461afd27c53f5dd994aba34896cf02d"},
]
typing = [
- {file = "typing-3.7.4.3-py2-none-any.whl", hash = "sha256:283d868f5071ab9ad873e5e52268d611e851c870a2ba354193026f2dfb29d8b5"},
- {file = "typing-3.7.4.3.tar.gz", hash = "sha256:1187fb9c82fd670d10aa07bbb6cfcfe4bdda42d6fab8d5134f04e8c4d0b71cc9"},
+ {file = "typing-3.10.0.0-py2-none-any.whl", hash = "sha256:c7219ef20c5fbf413b4567092adfc46fa6203cb8454eda33c3fc1afe1398a308"},
+ {file = "typing-3.10.0.0-py3-none-any.whl", hash = "sha256:12fbdfbe7d6cca1a42e485229afcb0b0c8259258cfb919b8a5e2a5c953742f89"},
+ {file = "typing-3.10.0.0.tar.gz", hash = "sha256:13b4ad211f54ddbf93e5901a9967b1e07720c1d1b78d596ac6a439641aa1b130"},
]
typing-extensions = [
- {file = "typing_extensions-3.7.4.3-py2-none-any.whl", hash = "sha256:dafc7639cde7f1b6e1acc0f457842a83e722ccca8eef5270af2d74792619a89f"},
- {file = "typing_extensions-3.7.4.3-py3-none-any.whl", hash = "sha256:7cb407020f00f7bfc3cb3e7881628838e69d8f3fcab2f64742a5e76b2f841918"},
- {file = "typing_extensions-3.7.4.3.tar.gz", hash = "sha256:99d4073b617d30288f569d3f13d2bd7548c3a7e4c8de87db09a9d29bb3a4a60c"},
+ {file = "typing_extensions-3.10.0.0-py2-none-any.whl", hash = "sha256:0ac0f89795dd19de6b97debb0c6af1c70987fd80a2d62d1958f7e56fcc31b497"},
+ {file = "typing_extensions-3.10.0.0-py3-none-any.whl", hash = "sha256:779383f6086d90c99ae41cf0ff39aac8a7937a9283ce0a414e5dd782f4c94a84"},
+ {file = "typing_extensions-3.10.0.0.tar.gz", hash = "sha256:50b6f157849174217d0656f99dc82fe932884fb250826c18350e159ec6cdf342"},
]
urllib3 = [
{file = "urllib3-1.25.11-py2.py3-none-any.whl", hash = "sha256:f5321fbe4bf3fefa0efd0bfe7fb14e90909eb62a48ccda331726b4319897dd5e"},
{file = "urllib3-1.25.11.tar.gz", hash = "sha256:8d7eaa5a82a1cac232164990f04874c594c9453ec55eef02eab885aa02fc17a2"},
]
virtualenv = [
- {file = "virtualenv-20.4.2-py2.py3-none-any.whl", hash = "sha256:2be72df684b74df0ea47679a7df93fd0e04e72520022c57b479d8f881485dbe3"},
- {file = "virtualenv-20.4.2.tar.gz", hash = "sha256:147b43894e51dd6bba882cf9c282447f780e2251cd35172403745fc381a0a80d"},
+ {file = "virtualenv-20.7.2-py2.py3-none-any.whl", hash = "sha256:e4670891b3a03eb071748c569a87cceaefbf643c5bac46d996c5a45c34aa0f06"},
+ {file = "virtualenv-20.7.2.tar.gz", hash = "sha256:9ef4e8ee4710826e98ff3075c9a4739e2cb1040de6a2a8d35db0055840dc96a0"},
]
wcwidth = [
{file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"},
diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/pyproject.toml b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/pyproject.toml
index 02f6dabc86fce..eb55fd1227021 100644
--- a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/pyproject.toml
+++ b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "poetry"
-version = "1.1.5"
+version = "1.1.8"
description = "Python dependency management and packaging made easy."
authors = [
"Sébastien Eustace "
@@ -24,7 +24,7 @@ classifiers = [
[tool.poetry.dependencies]
python = "~2.7 || ^3.5"
-poetry-core = "~1.0.2"
+poetry-core = "~1.0.4"
cleo = "^0.8.1"
clikit = "^0.6.2"
crashtest = { version = "^0.3.0", python = "^3.6" }
diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/src.json b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/src.json
index fcdb01e29c1dc..abb6993d4c2c9 100644
--- a/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/src.json
+++ b/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/src.json
@@ -1,7 +1,7 @@
{
"owner": "python-poetry",
"repo": "poetry",
- "rev": "a9704149394151f4d0d28cd5d8ee2283c7d10787",
- "sha256": "0bv6irpscpak6pldkzrx4j12dqnpfz5h8fy5lliglizv0avh60hf",
+ "rev": "bce13c14f73060b3abbb791dea585d8fde26eaef",
+ "sha256": "H3Za2p5Sh+K7f2TEFV7vQpCEUyiGBNTu1clIi86Sj2E=",
"fetchSubmodules": true
}
diff --git a/pkgs/development/tools/poetry2nix/update b/pkgs/development/tools/poetry2nix/update
index 41866437aa4ac..ac8c98a33d9cf 100755
--- a/pkgs/development/tools/poetry2nix/update
+++ b/pkgs/development/tools/poetry2nix/update
@@ -16,7 +16,7 @@ mv poetry2nix-master/* .
mkdir build
cp *.* build/
cp -r pkgs hooks bin build/
-rm build/shell.nix build/generate.py build/overlay.nix build/flake.*
+rm build/shell.nix build/generate.py build/overlay.nix build/flake.* build/check-fmt.nix
cat > build/README.md << EOF
Dont change these files here, they are maintained at https://github.com/nix-community/poetry2nix
diff --git a/pkgs/development/tools/scalafmt/default.nix b/pkgs/development/tools/scalafmt/default.nix
index c440c83a80e39..cf4faa36b5588 100644
--- a/pkgs/development/tools/scalafmt/default.nix
+++ b/pkgs/development/tools/scalafmt/default.nix
@@ -2,18 +2,18 @@
let
baseName = "scalafmt";
- version = "2.7.5";
+ version = "3.0.0";
deps = stdenv.mkDerivation {
name = "${baseName}-deps-${version}";
buildCommand = ''
export COURSIER_CACHE=$(pwd)
- ${coursier}/bin/coursier fetch org.scalameta:scalafmt-cli_2.12:${version} > deps
+ ${coursier}/bin/coursier fetch org.scalameta:scalafmt-cli_2.13:${version} > deps
mkdir -p $out/share/java
cp $(< deps) $out/share/java/
'';
outputHashMode = "recursive";
outputHashAlgo = "sha256";
- outputHash = "1xvx9bd6lf9m1r5p05d37qnjlzny6xrbkh8m7z4q4rk7i1vl8xv0";
+ outputHash = "fZVOyxswtDtCDDGmGzKbRnM5MVncKaicRKyEdPiXOr8=";
};
in
stdenv.mkDerivation {
diff --git a/pkgs/games/cataclysm-dda/common.nix b/pkgs/games/cataclysm-dda/common.nix
index d91db073ff61d..ccba8e23d5ae7 100644
--- a/pkgs/games/cataclysm-dda/common.nix
+++ b/pkgs/games/cataclysm-dda/common.nix
@@ -101,7 +101,7 @@ stdenv.mkDerivation {
'';
homepage = "https://cataclysmdda.org/";
license = licenses.cc-by-sa-30;
- maintainers = with maintainers; [ mnacamura ];
+ maintainers = with maintainers; [ mnacamura DeeUnderscore ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/games/cataclysm-dda/stable.nix b/pkgs/games/cataclysm-dda/stable.nix
index ba475ac9601de..a11837447f79b 100644
--- a/pkgs/games/cataclysm-dda/stable.nix
+++ b/pkgs/games/cataclysm-dda/stable.nix
@@ -10,15 +10,20 @@ let
};
self = common.overrideAttrs (common: rec {
- version = "0.F";
+ version = "0.F-1";
src = fetchFromGitHub {
owner = "CleverRaven";
repo = "Cataclysm-DDA";
rev = version;
- sha256 = "1jid8lcl04y768b3psj1ifhx96lmd6fn1j2wzxhl4ic7ra66p2z3";
+ sha256 = "sha256-bVIln8cLZ15qXpW5iB8Odqk0OQbNLLM8OiKybTzARA0=";
};
+ makeFlags = common.makeFlags ++ [
+ # Makefile declares version as 0.F, even under 0.F-1
+ "VERSION=${version}"
+ ];
+
meta = common.meta // {
maintainers = with lib.maintainers;
common.meta.maintainers ++ [ skeidel ];
diff --git a/pkgs/games/shattered-pixel-dungeon/default.nix b/pkgs/games/shattered-pixel-dungeon/default.nix
index ec18a26829fb4..e67a9f6d470e0 100644
--- a/pkgs/games/shattered-pixel-dungeon/default.nix
+++ b/pkgs/games/shattered-pixel-dungeon/default.nix
@@ -10,23 +10,23 @@
let
pname = "shattered-pixel-dungeon";
- version = "0.9.3";
+ version = "1.0.0";
src = fetchFromGitHub {
owner = "00-Evan";
repo = "shattered-pixel-dungeon";
# NOTE: always use the commit sha, not the tag. Tags _will_ disappear!
# https://github.com/00-Evan/shattered-pixel-dungeon/issues/596
- rev = "785c869f2b61013a15fddbf5f0c65d67fe900e80";
- sha256 = "sha256-d7Fc1IPOW/0RwLYe9vwaD3gFw6div2/J0DOFdWYDXWY=";
+ rev = "1f296a2d1088ad35421f5f8040a9f0803fa46ba8";
+ sha256 = "sha256-MzHdUAzCR2JtIdY1SGuge3xgR6qIhNYxUPOxA+TZtLE=";
};
postPatch = ''
# disable gradle plugins with native code and their targets
perl -i.bak1 -pe "s#(^\s*id '.+' version '.+'$)#// \1#" build.gradle
- perl -i.bak2 -pe "s#(.*)#// \1# if /^(buildscript|task portable|task nsis|task proguard|task tgz|task\(afterEclipseImport\)|launch4j|macAppBundle|buildRpm|buildDeb|shadowJar)/ ... /^}/" build.gradle
- # Remove unbuildable android stuff
- rm android/build.gradle
+ perl -i.bak2 -pe "s#(.*)#// \1# if /^(buildscript|task portable|task nsis|task proguard|task tgz|task\(afterEclipseImport\)|launch4j|macAppBundle|buildRpm|buildDeb|shadowJar|robovm)/ ... /^}/" build.gradle
+ # Remove unbuildable Android/iOS stuff
+ rm android/build.gradle ios/build.gradle
'';
# fake build to pre-download deps into fixed-output derivation
@@ -46,9 +46,8 @@ let
| perl -pe 's#(.*/([^/]+)/([^/]+)/([^/]+)/[0-9a-f]{30,40}/([^/\s]+))$# ($x = $2) =~ tr|\.|/|; "install -Dm444 $1 \$out/$x/$3/$4/$5" #e' \
| sh
'';
- outputHashAlgo = "sha256";
outputHashMode = "recursive";
- outputHash = "0ih10c6c85vhrqgilqmkzqjx3dc8cscvs9wkh90zgdj10qv0iba3";
+ outputHash = "sha256-0P/BcjNnbDN25DguRcCyzPuUG7bouxEx1ySodIbSwvg=";
};
in stdenv.mkDerivation rec {
diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix
index 24b60ea1d9e30..8c7ae8e33a75b 100644
--- a/pkgs/misc/vim-plugins/generated.nix
+++ b/pkgs/misc/vim-plugins/generated.nix
@@ -437,12 +437,12 @@ final: prev:
chadtree = buildVimPluginFrom2Nix {
pname = "chadtree";
- version = "2021-08-16";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "chadtree";
- rev = "80f2d03b1d7d8a5032689a17c9a234d464a67405";
- sha256 = "0k5v490p22j3ghfb6c436z0i3fq18sj0y4x01axrl4iy1jpwn3v2";
+ rev = "69544e754415ff9788e8ed55fa89ab23554b2526";
+ sha256 = "1p73am7r6740k4l7vyndcd2pxdx9qpyicp8f07lcx950k4qq7yr2";
};
meta.homepage = "https://github.com/ms-jpq/chadtree/";
};
@@ -567,6 +567,18 @@ final: prev:
meta.homepage = "https://github.com/hrsh7th/cmp-nvim-lsp/";
};
+ cmp-nvim-lua = buildVimPluginFrom2Nix {
+ pname = "cmp-nvim-lua";
+ version = "2021-08-17";
+ src = fetchFromGitHub {
+ owner = "hrsh7th";
+ repo = "cmp-nvim-lua";
+ rev = "6bcd10433e48dc50f5330d113bd6ec6647f128dc";
+ sha256 = "1nkncgrp95li2403wkcph1bglcdnlbj2pjybqx5rp27pazpi5rga";
+ };
+ meta.homepage = "https://github.com/hrsh7th/cmp-nvim-lua/";
+ };
+
cmp-path = buildVimPluginFrom2Nix {
pname = "cmp-path";
version = "2021-08-09";
@@ -677,12 +689,12 @@ final: prev:
coc-nvim = buildVimPluginFrom2Nix {
pname = "coc-nvim";
- version = "2021-08-16";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc.nvim";
- rev = "1296df441756a5249319369640f208089a10efe4";
- sha256 = "1p6gikl6fw6fvbb7f76mb88ckcw6vp4llzz601k0f6rrna4xhjab";
+ rev = "e141be935e45800947f4f88ea89a2067c5d7b47f";
+ sha256 = "0k2ll4vcjsj8xak4ki9h6m89rkhzdb0d70n4p34hhajf6li4lbfc";
};
meta.homepage = "https://github.com/neoclide/coc.nvim/";
};
@@ -930,12 +942,12 @@ final: prev:
Coqtail = buildVimPluginFrom2Nix {
pname = "Coqtail";
- version = "2021-08-13";
+ version = "2021-08-16";
src = fetchFromGitHub {
owner = "whonore";
repo = "Coqtail";
- rev = "46b4fe60778064d7924534c9658d29858d7d67a7";
- sha256 = "16fmzn4vf7ha63r73ra2lpdww1hmg2jnr88bpw2in3c8id6df2rd";
+ rev = "358747255db85579498dfc6e03dcd808d5b81d34";
+ sha256 = "086q1bx6xz3qzkyll6lszcgljyz8b5w4ywa8wvcv71al3cxd9n7b";
};
meta.homepage = "https://github.com/whonore/Coqtail/";
};
@@ -1038,12 +1050,12 @@ final: prev:
dart-vim-plugin = buildVimPluginFrom2Nix {
pname = "dart-vim-plugin";
- version = "2021-04-05";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "dart-lang";
repo = "dart-vim-plugin";
- rev = "d874c13dca7300178546de62e1aff7d4812640c7";
- sha256 = "1i1w9mwmrl6cds83mai1xyqrqmzbgal2whw653g54sz1gvnhab7s";
+ rev = "08764627ce85fc0c0bf9d8fd11b3cf5fc05d58ba";
+ sha256 = "0fqjgnpc6zajqr4pd3hf73fg0cjx7cnkhz6cjdf5mvjwllgv92gp";
};
meta.homepage = "https://github.com/dart-lang/dart-vim-plugin/";
};
@@ -1086,12 +1098,12 @@ final: prev:
defx-nvim = buildVimPluginFrom2Nix {
pname = "defx-nvim";
- version = "2021-08-08";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "Shougo";
repo = "defx.nvim";
- rev = "d4bf081bc6bdf062097fddbbcf9c8fdf5b8fb101";
- sha256 = "1sdkfij72z068h2fnhay1ppmf9my32jgzr1pf8liqs6647l90i1v";
+ rev = "7e506d4b8cea834ef7e61a1f694540c5da418a25";
+ sha256 = "16lg72l4zixhmd7pf8aliw3gwz2m25z90h8phmjj3d93w2g4q8zd";
};
meta.homepage = "https://github.com/Shougo/defx.nvim/";
};
@@ -1134,24 +1146,24 @@ final: prev:
denite-nvim = buildVimPluginFrom2Nix {
pname = "denite-nvim";
- version = "2021-07-13";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "Shougo";
repo = "denite.nvim";
- rev = "29ece0ca76408c191e3c5ed997b239efb4b38f58";
- sha256 = "02s43lyqb17066wjjcl29vyky76svzaddclh1q6jh2awhixpsqx2";
+ rev = "72871ae8f4e75e0271e096b4c37854dde49012d8";
+ sha256 = "07n8pda0y7hn38xv94w8gzmf0qn4l8sbp0hviznknc0jmch1rxvd";
};
meta.homepage = "https://github.com/Shougo/denite.nvim/";
};
deol-nvim = buildVimPluginFrom2Nix {
pname = "deol-nvim";
- version = "2021-07-13";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "Shougo";
repo = "deol.nvim";
- rev = "df506505ab2de577b35271a2b222042000a30381";
- sha256 = "0hqfbbcq4bnc48bknd7lfm41djq6977s18j14kyanp9gm7851sis";
+ rev = "a2c6bbcf4125c9256773c1c8cfb48b4179686e77";
+ sha256 = "04afx7hfch9vyvm2s2i93vylk5ar1sjc8sdqszqqj7fnlz53f8db";
};
meta.homepage = "https://github.com/Shougo/deol.nvim/";
};
@@ -1787,12 +1799,12 @@ final: prev:
friendly-snippets = buildVimPluginFrom2Nix {
pname = "friendly-snippets";
- version = "2021-08-12";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "rafamadriz";
repo = "friendly-snippets";
- rev = "276abeaf7a350724ca948f1c21de0b12d3cedc4f";
- sha256 = "1lbm98ijihmikazjm0a7cckqlc7c32bsqzqk077wbigkx559zam9";
+ rev = "2d7bcab215c8b7a8f889b371c4060dda2a6c6541";
+ sha256 = "0kxm6nl167b51gjwli64d9qp5s1cdy9za0zfq9hy8phivjk2pmyl";
};
meta.homepage = "https://github.com/rafamadriz/friendly-snippets/";
};
@@ -1859,12 +1871,12 @@ final: prev:
fzf-vim = buildVimPluginFrom2Nix {
pname = "fzf-vim";
- version = "2021-05-25";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "junegunn";
repo = "fzf.vim";
- rev = "e34f6c129d39b90db44df1107c8b7dfacfd18946";
- sha256 = "0rn0b48zxf46ak0a2dwbx4aas0fjiywhch0viffzhj5b61lvy218";
+ rev = "b1afeca8cc02030f450bf1feee015d40988f86e3";
+ sha256 = "1kf0lyacv45s837533aisvzkfyg53gq8q04djq4a0hnsjfzra1p5";
};
meta.homepage = "https://github.com/junegunn/fzf.vim/";
};
@@ -1967,12 +1979,12 @@ final: prev:
git-worktree-nvim = buildVimPluginFrom2Nix {
pname = "git-worktree-nvim";
- version = "2021-08-13";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "ThePrimeagen";
repo = "git-worktree.nvim";
- rev = "35007615f75262a6b411e11e8928e504af7ebb5e";
- sha256 = "1kh7nvvb8nrgqnp2h78v5s7swa71xrbj4q3k2xrsiz11s16q72hn";
+ rev = "57359f59bfa391360744236c6ca01f38374257fd";
+ sha256 = "1v0wqzp6sp214m83hy2fxx59b0h5lihfw3rkrvk07hixi3qg71dm";
};
meta.homepage = "https://github.com/ThePrimeagen/git-worktree.nvim/";
};
@@ -2007,8 +2019,8 @@ final: prev:
src = fetchFromGitHub {
owner = "lewis6991";
repo = "gitsigns.nvim";
- rev = "7875d8c4d94f98f7a1a65b898499fa288e7969b3";
- sha256 = "13hzghpzglw6cr4hwsp7qvp6a7dkh2fk2sg4nzzazgmfych485cm";
+ rev = "70705a33ab816c61011ed9c97ebb5925eaeb89c1";
+ sha256 = "1bcrba17icpdmk69p284kb2k3jpwimnbcn5msa7xq46wj97hy12k";
};
meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/";
};
@@ -2039,14 +2051,14 @@ final: prev:
glow-nvim = buildVimPluginFrom2Nix {
pname = "glow-nvim";
- version = "2021-07-14";
+ version = "2021-08-19";
src = fetchFromGitHub {
- owner = "npxbr";
+ owner = "ellisonleao";
repo = "glow.nvim";
- rev = "3688c38b70eaa680a7100a53e2f12bcd367de225";
- sha256 = "18xkgwy3gfaq45wzixpr3ngskqqg0c2nziykvy323fimjvbvqxan";
+ rev = "bee0d2db015f8499d2102367f2c60154b38ee7c2";
+ sha256 = "0racy87lqhalw26m9m2ikc002j263jlnnpn77aryc0hn5rh9dhsd";
};
- meta.homepage = "https://github.com/npxbr/glow.nvim/";
+ meta.homepage = "https://github.com/ellisonleao/glow.nvim/";
};
golden-ratio = buildVimPluginFrom2Nix {
@@ -2111,24 +2123,24 @@ final: prev:
gruvbox-community = buildVimPluginFrom2Nix {
pname = "gruvbox-community";
- version = "2021-05-17";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "gruvbox-community";
repo = "gruvbox";
- rev = "51ae4557e8941943d70da36320cc80a521e2d99e";
- sha256 = "0dgvd4qpzg7fn7rwvpknzi2bxzzb2g8jl9jh9byj07yll413gzqh";
+ rev = "f29a88b5e16c8a6c8e774ba06854b2832bef50b1";
+ sha256 = "1p6103h8ac60c7lzlnn71kp6xrpzkmnh4nrw69s3p91mfbp73hxb";
};
meta.homepage = "https://github.com/gruvbox-community/gruvbox/";
};
gruvbox-flat-nvim = buildVimPluginFrom2Nix {
pname = "gruvbox-flat-nvim";
- version = "2021-06-25";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "eddyekofo94";
repo = "gruvbox-flat.nvim";
- rev = "b98cd51a564881eac30794e64a8db63860d9bcf0";
- sha256 = "03drq3sqak2lcb7vs7qw1lhgrbnri0m1qp50cgaq17v0dlk15n4k";
+ rev = "9f02570bf323e9484b6f04ad96adc3103a075662";
+ sha256 = "1dw4mm1ksclhx7ys88z2g0481j9xxd95qi1jlma8l5cyjfzdkrkz";
};
meta.homepage = "https://github.com/eddyekofo94/gruvbox-flat.nvim/";
};
@@ -2147,14 +2159,14 @@ final: prev:
gruvbox-nvim = buildVimPluginFrom2Nix {
pname = "gruvbox-nvim";
- version = "2021-07-26";
+ version = "2021-08-19";
src = fetchFromGitHub {
- owner = "npxbr";
+ owner = "ellisonleao";
repo = "gruvbox.nvim";
- rev = "05da7d5a8199522c27ad746e655593b5933fe5d0";
- sha256 = "1dnpc83sv49gs5i9xbyj7m0cgfbjahsy5fxpgy5a79yj0czphid7";
+ rev = "24494189e723b71c1683c58ecfd0825d202b2bf8";
+ sha256 = "1zv7gmq8q5qszb2pxfiwkzwbm4yk2zbrly1whv2kpymlik37i7as";
};
- meta.homepage = "https://github.com/npxbr/gruvbox.nvim/";
+ meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/";
};
gundo-vim = buildVimPluginFrom2Nix {
@@ -2530,6 +2542,18 @@ final: prev:
meta.homepage = "https://github.com/JuliaEditorSupport/julia-vim/";
};
+ kommentary = buildVimPluginFrom2Nix {
+ pname = "kommentary";
+ version = "2021-08-17";
+ src = fetchFromGitHub {
+ owner = "b3nj5m1n";
+ repo = "kommentary";
+ rev = "a5d7cd90059ad99b5e80a1d40d655756d86b5dad";
+ sha256 = "1bgi9dzzlw09llyq09jgnyg7n64s1nk5s5knlkhijrhsw0jmxjkk";
+ };
+ meta.homepage = "https://github.com/b3nj5m1n/kommentary/";
+ };
+
kotlin-vim = buildVimPluginFrom2Nix {
pname = "kotlin-vim";
version = "2021-07-03";
@@ -2616,12 +2640,12 @@ final: prev:
LeaderF = buildVimPluginFrom2Nix {
pname = "LeaderF";
- version = "2021-08-16";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "Yggdroot";
repo = "LeaderF";
- rev = "303f4a17f06b41c99210afaa6b21a7a16da533db";
- sha256 = "0rp1nc4hghn0i7ipbd6n0ja3zb5zv44pm9snfwlai2p5c8awi39z";
+ rev = "bafe5cda6371035220ec7c12351e6922afd691b3";
+ sha256 = "13naynadf8ahz85k7wm9rmcl3mxrc8d1q0lnr23xraksbhv72lg5";
};
meta.homepage = "https://github.com/Yggdroot/LeaderF/";
};
@@ -2688,24 +2712,24 @@ final: prev:
lh-brackets = buildVimPluginFrom2Nix {
pname = "lh-brackets";
- version = "2021-03-09";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "LucHermitte";
repo = "lh-brackets";
- rev = "73efae0e97b8c661bf36d3637c3ba1ee02b4fe07";
- sha256 = "122jhh3vkapxz42sa6l9sdxcdl4fzq4xfrjmaak815nvf3bg249a";
+ rev = "0b687d63afc771d5ddce3aa175b9ab4b012f9715";
+ sha256 = "0nhvibvizczk8bp4lc4g9mndhwp240bh8adcq840zf3lghpnlkh4";
};
meta.homepage = "https://github.com/LucHermitte/lh-brackets/";
};
lh-vim-lib = buildVimPluginFrom2Nix {
pname = "lh-vim-lib";
- version = "2021-08-11";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "LucHermitte";
repo = "lh-vim-lib";
- rev = "d13642f7a2a4f82da9cb00949ad0163bf5d61e04";
- sha256 = "086f66wkyngcy5x0wmhdi9abna9pq5m6cl0ic2kvdxpbgdl7qc2q";
+ rev = "aa8e8f270c1d3be4fbe6b153827a191a5fcaa0d7";
+ sha256 = "0lgpxgg2696pbfdgnr2zcapvhfk6d1qwvci223h69rvg0fh853rz";
};
meta.homepage = "https://github.com/LucHermitte/lh-vim-lib/";
};
@@ -2724,12 +2748,12 @@ final: prev:
lightline-bufferline = buildVimPluginFrom2Nix {
pname = "lightline-bufferline";
- version = "2021-08-05";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "mengelbrecht";
repo = "lightline-bufferline";
- rev = "2d2e57009a613c3c6cb7a2112d822ef91024cc38";
- sha256 = "066x2hkav2k83rjdnv3hmmm7fx4rrp4ab8704sc7p57q965kpwgc";
+ rev = "0b1ec6fbb1fceebd88694e99fbc905d916c8b30a";
+ sha256 = "19mwdnnvps3dr5125al5yqlbziirl100xz11jkp2rbk250pc5h8d";
};
meta.homepage = "https://github.com/mengelbrecht/lightline-bufferline/";
};
@@ -2760,12 +2784,12 @@ final: prev:
lightspeed-nvim = buildVimPluginFrom2Nix {
pname = "lightspeed-nvim";
- version = "2021-08-16";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "ggandor";
repo = "lightspeed.nvim";
- rev = "d1084c0ac413d6ad1ed3ec290604e7e2fbe0aae1";
- sha256 = "1qjs3wj4svjvbangivpvg7j4swm50d7s0ll1qsg61s59jchp1gjq";
+ rev = "08f5bcfee90e2fe91e9c4cf2538ac17bc27c90af";
+ sha256 = "0impdwlrd5jbcbmyk32r0dy0jwq3481l3ajryvbj7cqhjibm71nv";
};
meta.homepage = "https://github.com/ggandor/lightspeed.nvim/";
};
@@ -2856,24 +2880,24 @@ final: prev:
lsp_signature-nvim = buildVimPluginFrom2Nix {
pname = "lsp_signature-nvim";
- version = "2021-08-13";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "ray-x";
repo = "lsp_signature.nvim";
- rev = "1c4a686e05ef30e4b815d1e3d77507f15efa7e99";
- sha256 = "04k78pijr15c21bdf05f4b3w0zmj3fd4572z4qmb3x9r993zznky";
+ rev = "42b2c3b0767cf08616f0428eb57c254748a80d83";
+ sha256 = "1p3dp9csj43bjgjfmv1aa3497ph2nmfdylinwqx15kgpgfhk2qxg";
};
meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/";
};
lspkind-nvim = buildVimPluginFrom2Nix {
pname = "lspkind-nvim";
- version = "2021-08-15";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "onsails";
repo = "lspkind-nvim";
- rev = "6298b12a8cd833144997854d37eb6052aedc4bf4";
- sha256 = "169vksccl0qzc98pfn4wx2cihw0l8zl19qvfbs6rjxh9lcnbmijf";
+ rev = "9cc326504e566f467407bae2669a98963c5404d2";
+ sha256 = "0bbczy2hhdl79g749d41vv5fyfcdd3rsxhi8mbq6avc0vhw72m8c";
};
meta.homepage = "https://github.com/onsails/lspkind-nvim/";
};
@@ -2916,12 +2940,12 @@ final: prev:
luasnip = buildVimPluginFrom2Nix {
pname = "luasnip";
- version = "2021-08-15";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "l3mon4d3";
repo = "luasnip";
- rev = "8cb1b905331463efd55b03de34a1ab519dcb5f04";
- sha256 = "1jn7p1lf0zxhbbnzsriznvlw20f97z0s51afhlj4cqihr1sv81z7";
+ rev = "e3d057b2cc0d6ff7250ba1bb108d17e40b2904e8";
+ sha256 = "02k612ib8974ra0221ldf8vrzk3na64g4w1z60mzy3i53qdjayh9";
};
meta.homepage = "https://github.com/l3mon4d3/luasnip/";
};
@@ -3288,12 +3312,12 @@ final: prev:
neco-vim = buildVimPluginFrom2Nix {
pname = "neco-vim";
- version = "2021-08-11";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "Shougo";
repo = "neco-vim";
- rev = "6cbf6f0610e3c194366fc938b4a0ad572ad476e9";
- sha256 = "03afyhpfbwisf4l025bj41qmfaa0awancrd4q8ikq8b07n61mzmv";
+ rev = "344b753261fdd298c1b47ee59ac8268bd338e00f";
+ sha256 = "0nmrjsylj46fdz96jidfg74y8yn55rkw9w41332zswm9h5mwp4av";
};
meta.homepage = "https://github.com/Shougo/neco-vim/";
};
@@ -3336,12 +3360,12 @@ final: prev:
neogit = buildVimPluginFrom2Nix {
pname = "neogit";
- version = "2021-08-16";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "TimUntersberger";
repo = "neogit";
- rev = "16de1b46e993e0b1e749c2345584c79ba14d11c1";
- sha256 = "0171v70ywnzpgzaadrw344511l3z7q60wvm6y5892z9m8mnwlw58";
+ rev = "5cdf492b9844dcac4de7c3001bc1871decc6251f";
+ sha256 = "0mzp2hifll0jkw1p7ycxlbysiqs2zrlka4x5s92xp050q33zj1il";
};
meta.homepage = "https://github.com/TimUntersberger/neogit/";
};
@@ -3528,12 +3552,12 @@ final: prev:
nerdtree-git-plugin = buildVimPluginFrom2Nix {
pname = "nerdtree-git-plugin";
- version = "2021-07-28";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "Xuyuanp";
repo = "nerdtree-git-plugin";
- rev = "ff9b14f14dceecb6c08cb05053ad649c3b6ac250";
- sha256 = "1q2zjbg3j4j4746ljp2ccssgp2sykrn3zp4kyc9n0hlqaiwmhbm9";
+ rev = "e1fe727127a813095854a5b063c15e955a77eafb";
+ sha256 = "0d7xm5rafw5biv8phfyny2haqq50mnh0q4ms7dkhvp9k1k2k2whz";
};
meta.homepage = "https://github.com/Xuyuanp/nerdtree-git-plugin/";
};
@@ -3648,12 +3672,12 @@ final: prev:
null-ls-nvim = buildVimPluginFrom2Nix {
pname = "null-ls-nvim";
- version = "2021-08-16";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "jose-elias-alvarez";
repo = "null-ls.nvim";
- rev = "4db2c4e2b59d16143bd8903c9bc73776b535be50";
- sha256 = "18dg3gdfwxhhz8snvw697r4nmc9aag3ylrzm7g84k67hpfir82r6";
+ rev = "f907d945d0285f42dc9ebffbc075ea725b93b6aa";
+ sha256 = "1jg6wxknbzirq9j880yki8bm8v1zdkk60fyis67syf722vric9i8";
};
meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/";
};
@@ -3768,12 +3792,12 @@ final: prev:
nvim-cmp = buildVimPluginFrom2Nix {
pname = "nvim-cmp";
- version = "2021-08-16";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "nvim-cmp";
- rev = "29ad715924eb8fafa8cd042b1a9eb66b03db0d0d";
- sha256 = "0c8wy66743dwf04p3l3fphndr58g9crlg96x90xkx2kr2s64a9dd";
+ rev = "f12fd73f11c979384ae82d2b1cd9332b5cf5f661";
+ sha256 = "1qpk4a7r89431pad4afqxyxx1csi0h7wjgwh07fp4rfacr6k005m";
};
meta.homepage = "https://github.com/hrsh7th/nvim-cmp/";
};
@@ -3792,12 +3816,12 @@ final: prev:
nvim-compe = buildVimPluginFrom2Nix {
pname = "nvim-compe";
- version = "2021-08-14";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "nvim-compe";
- rev = "cfbcd727d97958943c0d94e8a8126abe27294ad3";
- sha256 = "0znfd451bshqczalw5w4gy2k7fp8630p7vkmfpp1n4gw7z3vchqg";
+ rev = "253ec47cac406ff6e68020b6d18a05de323267d2";
+ sha256 = "0ij5s82v7snk2iwy3w402dqxvbsb3207pv62h5fachpcdj7ybi9s";
};
meta.homepage = "https://github.com/hrsh7th/nvim-compe/";
};
@@ -3816,12 +3840,12 @@ final: prev:
nvim-dap = buildVimPluginFrom2Nix {
pname = "nvim-dap";
- version = "2021-08-12";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "mfussenegger";
repo = "nvim-dap";
- rev = "7e2906e9f68cce2cab7428af588006795afb40e1";
- sha256 = "0yk6l3bb2dqjrc37h8a7115ywmwaa5wvsijjvxx7psy2dlnv583r";
+ rev = "46cb5996c8c71c7ce96afb6a4a034693c93f7424";
+ sha256 = "1fc5ivv9lkfamvcr6dlqk9dwr5j3bs4x98k43sr213z4z0a6xa75";
};
meta.homepage = "https://github.com/mfussenegger/nvim-dap/";
};
@@ -3888,12 +3912,12 @@ final: prev:
nvim-hlslens = buildVimPluginFrom2Nix {
pname = "nvim-hlslens";
- version = "2021-08-13";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "kevinhwang91";
repo = "nvim-hlslens";
- rev = "1e53aeefa949f68214f6b86b4cc4375613d739ca";
- sha256 = "1x5w7j01gkyxz86d7rkwxi2mqh5z54cynrrk0pmjkmijshbxs6s8";
+ rev = "5b31ffe949774218ab4bf4857a2d027b396d502d";
+ sha256 = "0h5dwa52sgqg90jw044bic2akhvm4nd7ya9jf59yj8dhwcwjsk27";
};
meta.homepage = "https://github.com/kevinhwang91/nvim-hlslens/";
};
@@ -3936,12 +3960,12 @@ final: prev:
nvim-lspconfig = buildVimPluginFrom2Nix {
pname = "nvim-lspconfig";
- version = "2021-08-16";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "neovim";
repo = "nvim-lspconfig";
- rev = "acb420880b83563c0ce83a3cea278cadfc7023e4";
- sha256 = "16bfn1qkbnicpkpisf5i4snra8glfg4rawvi52fpjqghxj9g1xz2";
+ rev = "e2601bb4b8d125e3f96274fe57136004dce4c587";
+ sha256 = "0yvz273qy2qf82f5yfkzh8zncwkg0hwkjy7b47f3bf65g5nwibzn";
};
meta.homepage = "https://github.com/neovim/nvim-lspconfig/";
};
@@ -4104,24 +4128,24 @@ final: prev:
nvim-ts-context-commentstring = buildVimPluginFrom2Nix {
pname = "nvim-ts-context-commentstring";
- version = "2021-07-06";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "joosepalviste";
repo = "nvim-ts-context-commentstring";
- rev = "a38c22022fe0ae8e8aae1ba9294a33b903eef409";
- sha256 = "0fqr68360fmfygirr65iapf9fp5ganvn69gw3p3k1blnx17jlzbk";
+ rev = "72a3f45a294a4a871101f820c6b94a29bd9b203f";
+ sha256 = "12cpak7b2aw2wrfx6gpw4lqx9c65q4fibsy5vf3a7h5g1i6yjg2m";
};
meta.homepage = "https://github.com/joosepalviste/nvim-ts-context-commentstring/";
};
nvim-ts-rainbow = buildVimPluginFrom2Nix {
pname = "nvim-ts-rainbow";
- version = "2021-08-01";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "p00f";
repo = "nvim-ts-rainbow";
- rev = "94138b1ba193d81f130dbe9fc1f255f97b7697d5";
- sha256 = "1ha31j31yv8r46pl607s06xgjri7rp47w5zjf0k7qrg1cqgp9i5h";
+ rev = "68afca45319e155e9b948163192182e6649562fb";
+ sha256 = "1handw02d6wqsn3f8v549z0x4z7a481xcy2g3wsmxzlf2665l4fz";
};
meta.homepage = "https://github.com/p00f/nvim-ts-rainbow/";
};
@@ -4392,12 +4416,12 @@ final: prev:
plenary-nvim = buildVimPluginFrom2Nix {
pname = "plenary-nvim";
- version = "2021-08-13";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "nvim-lua";
repo = "plenary.nvim";
- rev = "0b78fe699b9049b8f46942664027b32102979832";
- sha256 = "16ghyvnsqdrfkjb7hawcvwrx56v6llnq4zziw4z1811j4n1v6ypa";
+ rev = "15c3cb9e6311dc1a875eacb9fc8df69ca48d7402";
+ sha256 = "0gdysws82vdcyfsfpkpg9wqw223vg6hh74pf821wxh8p6qg3r26m";
};
meta.homepage = "https://github.com/nvim-lua/plenary.nvim/";
};
@@ -4633,12 +4657,12 @@ final: prev:
refactoring-nvim = buildVimPluginFrom2Nix {
pname = "refactoring-nvim";
- version = "2021-08-16";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "theprimeagen";
repo = "refactoring.nvim";
- rev = "aabd4776d3fd756b76f9e264496e1ea81cab77c4";
- sha256 = "168hpn3nxjsy3a5h3lvzk6gbhcfnh7k7p0xhpjxi67x1f99dnx0s";
+ rev = "ab4c6b0fb37bcadbc55ae02c9638bbc424dc8842";
+ sha256 = "0j54rv7gq31m8g0jwb6smvipgcd9pizry39vqx97wfbikcsw3zab";
};
meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/";
};
@@ -5091,12 +5115,12 @@ final: prev:
sql-nvim = buildVimPluginFrom2Nix {
pname = "sql-nvim";
- version = "2021-08-16";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "tami5";
repo = "sql.nvim";
- rev = "cc7b7cc76427eb321955278587b84e84c0af246e";
- sha256 = "0i2j3s6n9zmpn8jc5waxl3biqca23f5cbiapgr9gwgqj22f1xzd2";
+ rev = "2feef57bef147cf502b4491e3fc6c58a05f3096e";
+ sha256 = "0zyjbhhn33nbz7cf9vhr94gn38pvr5hd9d31sirdwqy49shvwlc1";
};
meta.homepage = "https://github.com/tami5/sql.nvim/";
};
@@ -5199,12 +5223,12 @@ final: prev:
symbols-outline-nvim = buildVimPluginFrom2Nix {
pname = "symbols-outline-nvim";
- version = "2021-08-01";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "simrat39";
repo = "symbols-outline.nvim";
- rev = "cc3334e140dd3c21246fbd58233db5f01856ed56";
- sha256 = "0z1kfkfwl9fx9a4imh9xyjxnip83yh98an22c3nghmvick5ssryi";
+ rev = "2047f401e7a9f0024cc48f7bbe8cc73bc199f883";
+ sha256 = "0d5bcg4l4vfsr0pydcslj574ib6qxqsnhgi6k61p4wa4v1c6aif2";
};
meta.homepage = "https://github.com/simrat39/symbols-outline.nvim/";
};
@@ -5282,6 +5306,18 @@ final: prev:
meta.homepage = "https://github.com/godlygeek/tabular/";
};
+ tagalong-vim = buildVimPluginFrom2Nix {
+ pname = "tagalong-vim";
+ version = "2021-06-28";
+ src = fetchFromGitHub {
+ owner = "AndrewRadev";
+ repo = "tagalong.vim";
+ rev = "e04ed6f46da5b55450a52e7de1025f1486d55839";
+ sha256 = "0bcmli82a58zvyqpacz5zyz9k9q8x39rcci095lz6ab6vnwhbl47";
+ };
+ meta.homepage = "https://github.com/AndrewRadev/tagalong.vim/";
+ };
+
tagbar = buildVimPluginFrom2Nix {
pname = "tagbar";
version = "2021-08-06";
@@ -5403,6 +5439,18 @@ final: prev:
meta.homepage = "https://github.com/nvim-telescope/telescope-fzy-native.nvim/";
};
+ telescope-project-nvim = buildVimPluginFrom2Nix {
+ pname = "telescope-project-nvim";
+ version = "2021-08-03";
+ src = fetchFromGitHub {
+ owner = "nvim-telescope";
+ repo = "telescope-project.nvim";
+ rev = "6f63c15efc4994e54c3240db8ed4089c926083d8";
+ sha256 = "0mda6cak1qqa5h9j5xng8wq81aqfypizmxpfdfqhzjsswwpa9bjy";
+ };
+ meta.homepage = "https://github.com/nvim-telescope/telescope-project.nvim/";
+ };
+
telescope-symbols-nvim = buildVimPluginFrom2Nix {
pname = "telescope-symbols-nvim";
version = "2021-08-07";
@@ -5429,12 +5477,12 @@ final: prev:
telescope-nvim = buildVimPluginFrom2Nix {
pname = "telescope-nvim";
- version = "2021-08-13";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope.nvim";
- rev = "f1a27baf279976845eb43c65e99a71d7f0f92d02";
- sha256 = "069r1pkg82zj7fm55gk21va2f2x2jmrknfwld5bp0py344gh65n1";
+ rev = "615efe666be25117199ec8c9d475b2ef86ac7015";
+ sha256 = "0wbc1pwrkk5x6fm8zv8s0261ky28w70hjnjzl8m77kl2ib0ld1as";
};
meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/";
};
@@ -6642,12 +6690,12 @@ final: prev:
vim-devicons = buildVimPluginFrom2Nix {
pname = "vim-devicons";
- version = "2021-08-12";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "ryanoasis";
repo = "vim-devicons";
- rev = "0291f0ddfd6d34f5d3dfc272e69408510b53df62";
- sha256 = "0c8vzwkf38ldi18g5443wj6v7cgb009cbf6w13qashr6cqazbpga";
+ rev = "c17487d0dfafb204fb43c60dc58a4ea5c4728fe6";
+ sha256 = "1xba1lbx1dkfq150pzip7q70zzk2fkbx123yp8z9b0jzbwwa17rf";
};
meta.homepage = "https://github.com/ryanoasis/vim-devicons/";
};
@@ -7086,16 +7134,28 @@ final: prev:
vim-fugitive = buildVimPluginFrom2Nix {
pname = "vim-fugitive";
- version = "2021-08-14";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-fugitive";
- rev = "f3e92c7721505a59738db15e3e80bc5ccff08e36";
- sha256 = "1ciwpk1gxjiay6c304bn2qw1f2cpsy751606l0m2inlscam2pal1";
+ rev = "81f293852ec195727a657c7d247af5cc3f705c45";
+ sha256 = "0a5411vcmgssb9j7mpr43zpi2hjnp4md8fvjxjkhx6in69pvyh91";
};
meta.homepage = "https://github.com/tpope/vim-fugitive/";
};
+ vim-gh-line = buildVimPluginFrom2Nix {
+ pname = "vim-gh-line";
+ version = "2021-03-25";
+ src = fetchFromGitHub {
+ owner = "ruanyl";
+ repo = "vim-gh-line";
+ rev = "4ca32f57f5f95cd3436c3f9ee7657a9b9c0ca763";
+ sha256 = "0pfw8jvmxwhdvjcfypiqk2jlk5plqbigjmykbqs1zvaznc2b7z5v";
+ };
+ meta.homepage = "https://github.com/ruanyl/vim-gh-line/";
+ };
+
vim-ghost = buildVimPluginFrom2Nix {
pname = "vim-ghost";
version = "2020-06-19";
@@ -7206,12 +7266,12 @@ final: prev:
vim-go = buildVimPluginFrom2Nix {
pname = "vim-go";
- version = "2021-08-09";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "fatih";
repo = "vim-go";
- rev = "b8a824ae865032066793fb10c1c7d8a184a3a035";
- sha256 = "02dbmkr48cac0qbiqcgd1qblbj98a9pakmsr5kr54wa89s90bpxm";
+ rev = "c34c73a4269857e694cda38431601ab753fcbc3f";
+ sha256 = "0dzkvb55qyqrvw0cr2kjdhsxnl1zhd0jnday0lagqrw1kvvnz3xv";
};
meta.homepage = "https://github.com/fatih/vim-go/";
};
@@ -7736,12 +7796,12 @@ final: prev:
vim-kitty-navigator = buildVimPluginFrom2Nix {
pname = "vim-kitty-navigator";
- version = "2021-08-14";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "knubie";
repo = "vim-kitty-navigator";
- rev = "5d6f5347346291b18e4a1ce769ad6f9cb2c46ba0";
- sha256 = "0cv2ppfc847r507v4jrx4z08krgy82i2bkjcqbdmf9k1qmgim00w";
+ rev = "a58f56960933df0b34b98ba3b025995774315adc";
+ sha256 = "16vz20fvhbb2p9g68qix9s4fbr9adrgwc45g12ldi7bdgkr1006g";
};
meta.homepage = "https://github.com/knubie/vim-kitty-navigator/";
};
@@ -8373,12 +8433,12 @@ final: prev:
vim-oscyank = buildVimPluginFrom2Nix {
pname = "vim-oscyank";
- version = "2021-08-16";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "ojroques";
repo = "vim-oscyank";
- rev = "bc49a0c2b5ded3f13445e47aa3cf8d3a0f972926";
- sha256 = "0l5gaf94p91xck6wn3a55dybd1d820dpq31v3sy3i2bxwfw0g8zd";
+ rev = "9c84cb3eeff0a30f5f8f0dccd77b12ac8494dd95";
+ sha256 = "17fjjm5mcwvi0mxsfnqasbr96cln2b0125wyzjj36z4y2bx7w1dm";
};
meta.homepage = "https://github.com/ojroques/vim-oscyank/";
};
@@ -8865,12 +8925,12 @@ final: prev:
vim-ruby = buildVimPluginFrom2Nix {
pname = "vim-ruby";
- version = "2021-07-22";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "vim-ruby";
repo = "vim-ruby";
- rev = "5516e301a5c3cacac008342006a712f5fa80f6a1";
- sha256 = "0fwy02mj0gafgv01qpgfyi5n0i0lrfzy8nw93hrpqwc97pckh1pp";
+ rev = "cb2ed789ebcd836fa699fc4555f924f69d19f199";
+ sha256 = "1a4h0cc4w68mfpkw37vxnaqk9ml3ygkgmfqqdcr74ncmnl58cqjq";
};
meta.homepage = "https://github.com/vim-ruby/vim-ruby/";
};
@@ -9141,12 +9201,12 @@ final: prev:
vim-snippets = buildVimPluginFrom2Nix {
pname = "vim-snippets";
- version = "2021-08-09";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "honza";
repo = "vim-snippets";
- rev = "75309fc96c49725cf9bbd7bc881b7b342a60aa9a";
- sha256 = "1k5n73dz60ds9ahgrkiypk0srh1ys39ahipsxkmm2k94gzmh6hj7";
+ rev = "9e5219ae92f9b1b2ee23aff067618a6008a74fa5";
+ sha256 = "1zv17p6ri0xs5qypva45afvwigw1hpkx06zf6ngk00nmi1vqd4cb";
};
meta.homepage = "https://github.com/honza/vim-snippets/";
};
@@ -9550,12 +9610,12 @@ final: prev:
vim-tpipeline = buildVimPluginFrom2Nix {
pname = "vim-tpipeline";
- version = "2021-08-14";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "vimpostor";
repo = "vim-tpipeline";
- rev = "2f43d6da23b880375ba53cf55d33b0bc021f6aec";
- sha256 = "1gz8dsjqvyma147qmqgbm512rka8wmfhgvxnlz48mh5i8l2i8ypg";
+ rev = "a69dbbcccdc31fddbffd63d4db00d08daec1fff8";
+ sha256 = "1pn4582qlivipy07nqyg2kigjscsprjx2vdal21jqxwrf49gh1fa";
};
meta.homepage = "https://github.com/vimpostor/vim-tpipeline/";
};
@@ -9610,12 +9670,12 @@ final: prev:
vim-ultest = buildVimPluginFrom2Nix {
pname = "vim-ultest";
- version = "2021-08-15";
+ version = "2021-08-18";
src = fetchFromGitHub {
owner = "rcarriga";
repo = "vim-ultest";
- rev = "64545fecb865f8cbe7160a5d7d1b8367cea1656c";
- sha256 = "1m8g6j2086x3fq99158m4g2wcsp8v1s00wim0hka7zhfwz0pd7zp";
+ rev = "416c58d00280c452f4c8c75866393394031fcb6b";
+ sha256 = "0vm91shvwzq6x3llxjrprx2vimk73hkcdcmivbpkmvbsx0z33480";
};
meta.homepage = "https://github.com/rcarriga/vim-ultest/";
};
@@ -10043,12 +10103,12 @@ final: prev:
vimtex = buildVimPluginFrom2Nix {
pname = "vimtex";
- version = "2021-08-16";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "lervag";
repo = "vimtex";
- rev = "cb71390373e793875efd3609e0ad800d816ff4af";
- sha256 = "0l9yklk0pd7kgy39b09rirwpqbryy148ch9vffq3isyhdk6b3v10";
+ rev = "5b8c24681831bd816b0e70c0b6b597c2c3945755";
+ sha256 = "1f9ih0r9vqazrspd0h8jvrv3m66akd0aj9misgkh7fh3mnvmwzri";
};
meta.homepage = "https://github.com/lervag/vimtex/";
};
@@ -10089,6 +10149,18 @@ final: prev:
meta.homepage = "https://github.com/vimwiki/vimwiki/";
};
+ vis = buildVimPluginFrom2Nix {
+ pname = "vis";
+ version = "2013-04-26";
+ src = fetchFromGitHub {
+ owner = "vim-scripts";
+ repo = "vis";
+ rev = "6a87efbfbd97238716b602c2b53564aa6329b5de";
+ sha256 = "1bg1d2gmln1s0324c4a2338qx729yy708f1hgk98fkgl9sk2bhdi";
+ };
+ meta.homepage = "https://github.com/vim-scripts/vis/";
+ };
+
vissort-vim = buildVimPluginFrom2Nix {
pname = "vissort-vim";
version = "2014-01-31";
@@ -10163,12 +10235,12 @@ final: prev:
wilder-nvim = buildVimPluginFrom2Nix {
pname = "wilder-nvim";
- version = "2021-08-16";
+ version = "2021-08-17";
src = fetchFromGitHub {
owner = "gelguy";
repo = "wilder.nvim";
- rev = "f70f292f9e680b3645c8e24ebee524264a9e75e2";
- sha256 = "1a45s282b85hjffdzd2375wv6c70dlli7l0wpcsq56ab4pyxamqz";
+ rev = "3b1844d9d69972bec131aa66562afa545b00c883";
+ sha256 = "1lr5vp2rr3i18qjv2h83d0bzrlc0617acwsimyd5jb105qa8rs09";
};
meta.homepage = "https://github.com/gelguy/wilder.nvim/";
};
diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names
index 39973d77e0982..a65d816f0b362 100644
--- a/pkgs/misc/vim-plugins/vim-plugin-names
+++ b/pkgs/misc/vim-plugins/vim-plugin-names
@@ -20,6 +20,7 @@ andrep/vimacs
andreshazard/vim-logreview
AndrewRadev/sideways.vim@main
AndrewRadev/splitjoin.vim@main
+AndrewRadev/tagalong.vim
andsild/peskcolor.vim
andviro/flake8-vim
andweeb/presence.nvim@main
@@ -35,6 +36,7 @@ artur-shaik/vim-javacomplete2
autozimu/LanguageClient-neovim
axelf4/vim-strip-trailing-whitespace
ayu-theme/ayu-vim
+b3nj5m1n/kommentary@main
bakpakin/fennel.vim
bazelbuild/vim-bazel
bbchung/clighter8
@@ -127,6 +129,8 @@ ehamberg/vim-cute-python
eigenfoo/stan-vim
eikenb/acp
elixir-editors/vim-elixir
+ellisonleao/glow.nvim@main
+ellisonleao/gruvbox.nvim@main
elmcast/elm-vim
elzr/vim-json
embark-theme/vim@main as embark-vim
@@ -217,6 +221,7 @@ hrsh7th/cmp-buffer@main
hrsh7th/cmp-calc@main
hrsh7th/cmp-emoji@main
hrsh7th/cmp-nvim-lsp@main
+hrsh7th/cmp-nvim-lua@main
hrsh7th/cmp-path@main
hrsh7th/cmp-vsnip@main
hrsh7th/nvim-cmp@main
@@ -491,8 +496,6 @@ noc7c9/vim-iced-coffee-script
norcalli/nvim-colorizer.lua
norcalli/nvim-terminal.lua
norcalli/snippets.nvim
-npxbr/glow.nvim@main
-npxbr/gruvbox.nvim@main
ntpeters/vim-better-whitespace
numirias/semshi
nvie/vim-flake8
@@ -507,6 +510,7 @@ nvim-telescope/telescope-frecency.nvim
nvim-telescope/telescope-fzf-native.nvim@main
nvim-telescope/telescope-fzf-writer.nvim
nvim-telescope/telescope-fzy-native.nvim
+nvim-telescope/telescope-project.nvim
nvim-telescope/telescope-symbols.nvim
nvim-telescope/telescope-z.nvim@main
nvim-telescope/telescope.nvim
@@ -610,6 +614,7 @@ RRethy/nvim-base16
RRethy/vim-hexokinase
RRethy/vim-illuminate
rstacruz/vim-closer
+ruanyl/vim-gh-line
ruifm/gitlinker.nvim
rust-lang/rust.vim
ryanoasis/vim-devicons
@@ -811,6 +816,7 @@ vim-scripts/ShowMultiBase
vim-scripts/tabmerge
vim-scripts/taglist.vim
vim-scripts/utl.vim
+vim-scripts/vis
vim-scripts/wombat256.vim
vim-scripts/YankRing.vim
vim-syntastic/syntastic
diff --git a/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix b/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix
index 4293f53e47d15..1ae8ed3ec773e 100644
--- a/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix
+++ b/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix
@@ -2,12 +2,12 @@
stdenvNoCC.mkDerivation rec {
pname = "firmware-linux-nonfree";
- version = "2021-07-16";
+ version = "2021-08-18";
src = fetchgit {
url = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git";
- rev = "refs/tags/" + lib.replaceStrings ["-"] [""] version;
- sha256 = "185pnaqf2qmhbcdvvldmbar09zgaxhh3h8x9bxn6079bcdpaskn6";
+ rev = "refs/tags/" + lib.replaceStrings [ "-" ] [ "" ] version;
+ sha256 = "sha256-RLPTbH2quBqCF3fi70GtOE0i3lEdaL5xo67xk8gbYMo=";
};
installFlags = [ "DESTDIR=$(out)" ];
@@ -17,7 +17,7 @@ stdenvNoCC.mkDerivation rec {
outputHashMode = "recursive";
outputHashAlgo = "sha256";
- outputHash = "0g470hj2ylpviijfpjqzsndn2k8kkscj27wqwk51xlk8cr3mrahb";
+ outputHash = "sha256-0ZNgRGImh6sqln7bNP0a0lbSPEp7GwVoIuuOxW2Y9OM=";
meta = with lib; {
description = "Binary firmware collection packaged by kernel.org";
diff --git a/pkgs/os-specific/linux/v4l2loopback/default.nix b/pkgs/os-specific/linux/v4l2loopback/default.nix
index 9ff6d03fdab4c..c1aa7be2af6bd 100644
--- a/pkgs/os-specific/linux/v4l2loopback/default.nix
+++ b/pkgs/os-specific/linux/v4l2loopback/default.nix
@@ -40,5 +40,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Only;
maintainers = with maintainers; [ fortuneteller2k ];
platforms = platforms.linux;
+ outputsToInstall = [ "out" ];
};
}
diff --git a/pkgs/servers/dns/knot-resolver/default.nix b/pkgs/servers/dns/knot-resolver/default.nix
index 60fed65e6d732..9e7e6c249e1f5 100644
--- a/pkgs/servers/dns/knot-resolver/default.nix
+++ b/pkgs/servers/dns/knot-resolver/default.nix
@@ -17,11 +17,11 @@ lua = luajitPackages;
unwrapped = stdenv.mkDerivation rec {
pname = "knot-resolver";
- version = "5.4.0";
+ version = "5.4.1";
src = fetchurl {
url = "https://secure.nic.cz/files/knot-resolver/${pname}-${version}.tar.xz";
- sha256 = "534af671b98433b23b57039acc9d7d3c100a4888a8cf9aeba36161774ca0815e";
+ sha256 = "fb8b962dd9ef744e2551c4f052454bc2a30e39c1f662f4f3522e8f221d8e3d66";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/servers/matrix-synapse/matrix-appservice-irc/default.nix b/pkgs/servers/matrix-synapse/matrix-appservice-irc/default.nix
index ab92c29ee3dcd..7b5779b958d2f 100644
--- a/pkgs/servers/matrix-synapse/matrix-appservice-irc/default.nix
+++ b/pkgs/servers/matrix-synapse/matrix-appservice-irc/default.nix
@@ -20,6 +20,7 @@ ourNodePackages."${packageName}".override {
'';
passthru.tests.matrix-appservice-irc = nixosTests.matrix-appservice-irc;
+ passthru.updateScript = ./update.sh;
meta = with lib; {
description = "Node.js IRC bridge for Matrix";
diff --git a/pkgs/servers/matrix-synapse/matrix-appservice-irc/update.sh b/pkgs/servers/matrix-synapse/matrix-appservice-irc/update.sh
new file mode 100755
index 0000000000000..f6cf0c0297650
--- /dev/null
+++ b/pkgs/servers/matrix-synapse/matrix-appservice-irc/update.sh
@@ -0,0 +1,24 @@
+#!/usr/bin/env nix-shell
+#! nix-shell -i bash -p nodePackages.node2nix nodejs-12_x curl jq
+
+set -euo pipefail
+# cd to the folder containing this script
+cd "$(dirname "$0")"
+
+CURRENT_VERSION=$(nix eval --raw '(with import ../../../../. {}; matrix-appservice-irc.version)')
+TARGET_VERSION="$(curl https://api.github.com/repos/matrix-org/matrix-appservice-irc/releases/latest | jq -r ".tag_name")"
+
+if [[ "$CURRENT_VERSION" == "$TARGET_VERSION" ]]; then
+ echo "matrix-appservice-irc is up-to-date: ${CURRENT_VERSION}"
+ exit 0
+fi
+
+echo "matrix-appservice-irc: $CURRENT_VERSION -> $TARGET_VERSION"
+
+sed -i "s/#$CURRENT_VERSION/#$TARGET_VERSION/" package.json
+
+./generate-dependencies.sh
+
+# Apparently this is done by r-ryantm, so only uncomment for manual usage
+#git add ./package.json ./node-packages.nix
+#git commit -m "matrix-appservice-irc: ${CURRENT_VERSION} -> ${TARGET_VERSION}"
diff --git a/pkgs/servers/mautrix-telegram/default.nix b/pkgs/servers/mautrix-telegram/default.nix
index 9764e4ab3e3e5..fd26dfd3fc5f2 100644
--- a/pkgs/servers/mautrix-telegram/default.nix
+++ b/pkgs/servers/mautrix-telegram/default.nix
@@ -23,14 +23,14 @@ let
in python.pkgs.buildPythonPackage rec {
pname = "mautrix-telegram";
- version = "unstable-2021-08-12";
+ version = "0.10.1";
disabled = python.pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tulir";
repo = pname;
- rev = "ec64c83cb01791525a39f937f3b847368021dce8";
- sha256 = "0rg4f4abdddhhf1xpz74y4468dv3mnm7k8nj161r1xszrk9f2n76";
+ rev = "v${version}";
+ sha256 = "sha256-1Dmc7WRlT2ivGkdrGDC1b44DE0ovQKfUR0gDiQE4h5c=";
};
patches = [ ./0001-Re-add-entrypoint.patch ./0002-Don-t-depend-on-pytest-runner.patch ];
diff --git a/pkgs/servers/squid/default.nix b/pkgs/servers/squid/default.nix
index dd3405d353127..206e9fbb005f9 100644
--- a/pkgs/servers/squid/default.nix
+++ b/pkgs/servers/squid/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
pname = "squid";
- version = "4.15";
+ version = "4.16";
src = fetchurl {
url = "http://www.squid-cache.org/Versions/v4/${pname}-${version}.tar.xz";
- sha256 = "sha256-tpOk5asoEaioVPYN4KYq+786lSux0EeVLJrgEyH4SiU=";
+ sha256 = "sha256-fgDokXV8HALa5UbJiY9EDGAxtoTYwkPW7atSkHbjumM=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/servers/web-apps/discourse/plugins/all-plugins.nix b/pkgs/servers/web-apps/discourse/plugins/all-plugins.nix
index 27c749dea2e18..2766b645349ff 100644
--- a/pkgs/servers/web-apps/discourse/plugins/all-plugins.nix
+++ b/pkgs/servers/web-apps/discourse/plugins/all-plugins.nix
@@ -8,6 +8,7 @@ in
discourse-checklist = callPackage ./discourse-checklist {};
discourse-data-explorer = callPackage ./discourse-data-explorer {};
discourse-github = callPackage ./discourse-github {};
+ discourse-ldap-auth = callPackage ./discourse-ldap-auth {};
discourse-math = callPackage ./discourse-math {};
discourse-migratepassword = callPackage ./discourse-migratepassword {};
discourse-solved = callPackage ./discourse-solved {};
diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/Gemfile b/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/Gemfile
new file mode 100644
index 0000000000000..897a808c1d7db
--- /dev/null
+++ b/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/Gemfile
@@ -0,0 +1,8 @@
+# frozen_string_literal: true
+
+source "https://rubygems.org"
+
+gem 'pyu-ruby-sasl', '0.0.3.3', require: false
+gem 'rubyntlm', '0.3.4', require: false
+gem 'net-ldap', '0.14.0'
+gem 'omniauth-ldap', '1.0.5'
diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/Gemfile.lock b/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/Gemfile.lock
new file mode 100644
index 0000000000000..2843cb0d8f09d
--- /dev/null
+++ b/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/Gemfile.lock
@@ -0,0 +1,28 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ hashie (4.1.0)
+ net-ldap (0.14.0)
+ omniauth (1.9.1)
+ hashie (>= 3.4.6)
+ rack (>= 1.6.2, < 3)
+ omniauth-ldap (1.0.5)
+ net-ldap (~> 0.12)
+ omniauth (~> 1.0)
+ pyu-ruby-sasl (~> 0.0.3.2)
+ rubyntlm (~> 0.3.4)
+ pyu-ruby-sasl (0.0.3.3)
+ rack (2.2.3)
+ rubyntlm (0.3.4)
+
+PLATFORMS
+ x86_64-linux
+
+DEPENDENCIES
+ net-ldap (= 0.14.0)
+ omniauth-ldap (= 1.0.5)
+ pyu-ruby-sasl (= 0.0.3.3)
+ rubyntlm (= 0.3.4)
+
+BUNDLED WITH
+ 2.2.20
diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/default.nix
new file mode 100644
index 0000000000000..92a3c2544cda2
--- /dev/null
+++ b/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/default.nix
@@ -0,0 +1,18 @@
+{ lib, mkDiscoursePlugin, fetchFromGitHub }:
+
+mkDiscoursePlugin {
+ name = "discourse-ldap-auth";
+ bundlerEnvArgs.gemdir = ./.;
+ src = fetchFromGitHub {
+ owner = "jonmbake";
+ repo = "discourse-ldap-auth";
+ rev = "eca02c560f2f2bf42feeb1923bc17e074f16b891";
+ sha256 = "sha256-HLNoDvvxkBMvqP6WbRrJY0CYnK92W77nzSpuwgl0VPA=";
+ };
+ meta = with lib; {
+ homepage = "https://github.com/jonmbake/discourse-ldap-auth";
+ maintainers = with maintainers; [ ryantm ];
+ license = licenses.mit;
+ description = "Discourse plugin to enable LDAP/Active Directory authentication.";
+ };
+}
diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/gemset.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/gemset.nix
new file mode 100644
index 0000000000000..e684a50647914
--- /dev/null
+++ b/pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/gemset.nix
@@ -0,0 +1,74 @@
+{
+ hashie = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "02bsx12ihl78x0vdm37byp78jjw2ff6035y7rrmbd90qxjwxr43q";
+ type = "gem";
+ };
+ version = "4.1.0";
+ };
+ net-ldap = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "18fyxfbh32ai72cwgz8s9w0fg0xq7j534y217flw54mmzsj8i6qp";
+ type = "gem";
+ };
+ version = "0.14.0";
+ };
+ omniauth = {
+ dependencies = ["hashie" "rack"];
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "002vi9gwamkmhf0dsj2im1d47xw2n1jfhnzl18shxf3ampkqfmyz";
+ type = "gem";
+ };
+ version = "1.9.1";
+ };
+ omniauth-ldap = {
+ dependencies = ["net-ldap" "omniauth" "pyu-ruby-sasl" "rubyntlm"];
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1ld3mx46xa1qhc0cpnck1n06xcxs0ag4n41zgabxri27a772f9wz";
+ type = "gem";
+ };
+ version = "1.0.5";
+ };
+ pyu-ruby-sasl = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1rcpjiz9lrvyb3rd8k8qni0v4ps08psympffyldmmnrqayyad0sn";
+ type = "gem";
+ };
+ version = "0.0.3.3";
+ };
+ rack = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0i5vs0dph9i5jn8dfc6aqd6njcafmb20rwqngrf759c9cvmyff16";
+ type = "gem";
+ };
+ version = "2.2.3";
+ };
+ rubyntlm = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "18d1lxhx62swggf4cqg76h7hp04f5801c8h07w08cm9xng2niqby";
+ type = "gem";
+ };
+ version = "0.3.4";
+ };
+}
diff --git a/pkgs/servers/web-apps/discourse/update.py b/pkgs/servers/web-apps/discourse/update.py
index 127088dafbfb0..a207b0ebf3186 100755
--- a/pkgs/servers/web-apps/discourse/update.py
+++ b/pkgs/servers/web-apps/discourse/update.py
@@ -206,6 +206,7 @@ def update_plugins():
{'name': 'discourse-checklist'},
{'name': 'discourse-data-explorer'},
{'name': 'discourse-github'},
+ {'name': 'discourse-ldap-auth', 'owner': 'jonmbake'},
{'name': 'discourse-math'},
{'name': 'discourse-migratepassword', 'owner': 'discoursehosting'},
{'name': 'discourse-solved'},
diff --git a/pkgs/tools/X11/xrestop/default.nix b/pkgs/tools/X11/xrestop/default.nix
index e2b87e7380c1e..dd3766160c013 100644
--- a/pkgs/tools/X11/xrestop/default.nix
+++ b/pkgs/tools/X11/xrestop/default.nix
@@ -1,19 +1,22 @@
{ lib, stdenv, fetchurl, xorg, pkg-config, ncurses }:
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "xrestop";
- version = "0.4";
+ version = "0.5";
src = fetchurl {
- url = "mirror://gentoo/distfiles/xrestop-0.4.tar.gz";
- sha256 = "0mz27jpij8am1s32i63mdm58znfijcpfhdqq1npbmvgclyagrhk7";
+ url = "https://xorg.freedesktop.org/archive/individual/app/xrestop-${version}.tar.bz2";
+ sha256 = "06ym32famav8qhdms5k7y5i14nfq89hhvfn5g452jjqzkpcsbl49";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ xorg.libX11 xorg.libXres xorg.libXext ncurses ];
- meta = {
- platforms = lib.platforms.unix;
- license = lib.licenses.gpl2;
+ meta = with lib; {
+ description = "A 'top' like tool for monitoring X Client server resource usage";
+ homepage = "https://gitlab.freedesktop.org/xorg/app/xrestop";
+ maintainers = with maintainers; [ qyliss ];
+ platforms = platforms.unix;
+ license = licenses.gpl2Plus;
};
}
diff --git a/pkgs/tools/admin/awscli2/default.nix b/pkgs/tools/admin/awscli2/default.nix
index 762eab4eb0b68..0c5d08fd25c5c 100644
--- a/pkgs/tools/admin/awscli2/default.nix
+++ b/pkgs/tools/admin/awscli2/default.nix
@@ -3,13 +3,14 @@ let
py = python3.override {
packageOverrides = self: super: {
botocore = super.botocore.overridePythonAttrs (oldAttrs: rec {
- version = "2.0.0dev122";
+ version = "2.0.0dev138";
src = fetchFromGitHub {
owner = "boto";
repo = "botocore";
- rev = "8dd916418c8193f56226b7772f263b2435eae27a";
- sha256 = "sha256-iAZmqnffqrmFuxlQyOpEQzSCcL/hRAjuXKulOXoy4hY=";
+ rev = "5f1971d2d9d2cf7090a8b71650ab40712319bca3";
+ sha256 = "sha256-onptN++MDJrit3sIEXCX9oRJ0qQ5xzmI6J2iABiK7RA";
};
+ propagatedBuildInputs = super.botocore.propagatedBuildInputs ++ [py.pkgs.awscrt];
});
prompt-toolkit = super.prompt-toolkit.overridePythonAttrs (oldAttrs: rec {
version = "2.0.10";
@@ -24,13 +25,13 @@ let
in
with py.pkgs; buildPythonApplication rec {
pname = "awscli2";
- version = "2.2.14"; # N.B: if you change this, change botocore to a matching version too
+ version = "2.2.30"; # N.B: if you change this, change botocore to a matching version too
src = fetchFromGitHub {
owner = "aws";
repo = "aws-cli";
rev = version;
- sha256 = "sha256-LU9Tqzdi8ULZ5y3FbfSXdrip4NcxFkXRCTpVGo05LcM=";
+ sha256 = "sha256-OPxo5RjdDCTPntiJInUtgcU43Nn5JEUbwRJXeBl/yYQ";
};
patches = [
@@ -42,7 +43,7 @@ with py.pkgs; buildPythonApplication rec {
postPatch = ''
substituteInPlace setup.py \
- --replace "awscrt==0.11.13" "awscrt" \
+ --replace "awscrt==0.11.24" "awscrt" \
--replace "colorama>=0.2.5,<0.4.4" "colorama" \
--replace "cryptography>=3.3.2,<3.4.0" "cryptography" \
--replace "docutils>=0.10,<0.16" "docutils" \
diff --git a/pkgs/tools/admin/salt/default.nix b/pkgs/tools/admin/salt/default.nix
index 0620bb2853412..cd4abc51bcf9d 100644
--- a/pkgs/tools/admin/salt/default.nix
+++ b/pkgs/tools/admin/salt/default.nix
@@ -7,11 +7,11 @@
}:
python3.pkgs.buildPythonApplication rec {
pname = "salt";
- version = "3003.1";
+ version = "3003.2";
src = python3.pkgs.fetchPypi {
inherit pname version;
- sha256 = "inGE095NFydhjw0/u6eeVDia7/hbcvTOuCALzBZ/br4=";
+ sha256 = "c8hsRLF22M/cAzux5C5P3I3TQkgz+qLqDQk4+hc4Vqk=";
};
propagatedBuildInputs = with python3.pkgs; [
diff --git a/pkgs/tools/backup/wal-g/default.nix b/pkgs/tools/backup/wal-g/default.nix
index e184810a29b95..80f3b6bbf8de3 100644
--- a/pkgs/tools/backup/wal-g/default.nix
+++ b/pkgs/tools/backup/wal-g/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "wal-g";
- version = "1.0";
+ version = "1.1";
src = fetchFromGitHub {
owner = "wal-g";
repo = "wal-g";
rev = "v${version}";
- sha256 = "0al8xg57fh3zqwgmm6lkcnpnisividhqld9jry3sqk2k45856y8j";
+ sha256 = "1hiym5id310rvw7vr8wir2vpf0p5qz71rx6v5i2gpjqml7c97cls";
};
- vendorSha256 = "0n0ymgcgkjlp0indih8h55jjj6372rdfcq717kwln6sxm4r9mb17";
+ vendorSha256 = "09z9x20zna1czhfpl47i98r8163a266mnr6xi17npjsfdvsjkppn";
buildInputs = [ brotli libsodium ];
diff --git a/pkgs/tools/filesystems/squashfs-tools-ng/default.nix b/pkgs/tools/filesystems/squashfs-tools-ng/default.nix
index cb4f3820bcc0e..1dbaee5ad14c0 100644
--- a/pkgs/tools/filesystems/squashfs-tools-ng/default.nix
+++ b/pkgs/tools/filesystems/squashfs-tools-ng/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
pname = "squashfs-tools-ng";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
url = "https://infraroot.at/pub/squashfs/squashfs-tools-ng-${version}.tar.xz";
- sha256 = "0hlrbiy8xmccczi11ml0lzmg3946l9ck5wpfyw03wn5zgvx29zja";
+ sha256 = "sha256-q84Pz5qK4cM1Lk5eh+Gwd/VEEdpRczLqg7XnzpSN1w0=";
};
nativeBuildInputs = [ doxygen graphviz pkg-config perl ];
diff --git a/pkgs/tools/misc/disfetch/default.nix b/pkgs/tools/misc/disfetch/default.nix
index 238bd9c4b0bc4..7a8035fa7cf43 100644
--- a/pkgs/tools/misc/disfetch/default.nix
+++ b/pkgs/tools/misc/disfetch/default.nix
@@ -1,6 +1,4 @@
-{ stdenv
-, lib
-, fetchFromGitHub }:
+{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "disfetch";
@@ -16,7 +14,9 @@ stdenv.mkDerivation rec {
dontBuild = true;
installPhase = ''
+ runHook preInstall
install -Dm755 -t $out/bin disfetch
+ runHook postInstall
'';
meta = with lib; {
@@ -24,6 +24,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/q60/disfetch";
license = licenses.mit;
platforms = platforms.all;
- maintainers = [ maintainers.vel ];
+ maintainers = with maintainers; [ vel ];
};
}
diff --git a/pkgs/tools/misc/esphome/default.nix b/pkgs/tools/misc/esphome/default.nix
index feeb7ad7583bf..112841c0260b2 100644
--- a/pkgs/tools/misc/esphome/default.nix
+++ b/pkgs/tools/misc/esphome/default.nix
@@ -16,13 +16,13 @@ let
in
with python.pkgs; buildPythonApplication rec {
pname = "esphome";
- version = "1.20.4";
+ version = "2021.8.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
- rev = "v${version}";
- sha256 = "sha256-Z2/7J8F9o+ZY+7Q9bpAT79yHqUFyJu9usu4XI4PhpCI=";
+ rev = version;
+ sha256 = "sha256-yVqma5WRQTt5Vq7poqHexASc59xthYaNcz/kkefC7qI=";
};
patches = [
diff --git a/pkgs/tools/misc/ethtool/default.nix b/pkgs/tools/misc/ethtool/default.nix
index 4b6d7cc9332e4..9457507458d8c 100644
--- a/pkgs/tools/misc/ethtool/default.nix
+++ b/pkgs/tools/misc/ethtool/default.nix
@@ -1,14 +1,17 @@
-{ lib, stdenv, fetchurl }:
+{ lib, stdenv, fetchurl, pkg-config, libmnl }:
stdenv.mkDerivation rec {
pname = "ethtool";
- version = "5.4";
+ version = "5.13";
src = fetchurl {
url = "mirror://kernel/software/network/${pname}/${pname}-${version}.tar.xz";
- sha256 = "0srbqp4a3x9ryrbm5q854375y04ni8j0bmsrl89nmsyn4x4ixy12";
+ sha256 = "1wwcwiav0fbl75axmx8wms4xfdp1ji5c7j49k4yl8bngqra74fp6";
};
+ nativeBuildInputs = [ pkg-config ];
+ buildInputs = [ libmnl ];
+
meta = with lib; {
description = "Utility for controlling network drivers and hardware";
homepage = "https://www.kernel.org/pub/software/network/ethtool/";
diff --git a/pkgs/tools/misc/plantuml/default.nix b/pkgs/tools/misc/plantuml/default.nix
index 270a9ef8641df..304649a86bee2 100644
--- a/pkgs/tools/misc/plantuml/default.nix
+++ b/pkgs/tools/misc/plantuml/default.nix
@@ -1,12 +1,12 @@
{ lib, stdenv, fetchurl, makeWrapper, jre, graphviz }:
stdenv.mkDerivation rec {
- version = "1.2021.7";
+ version = "1.2021.9";
pname = "plantuml";
src = fetchurl {
url = "mirror://sourceforge/project/plantuml/${version}/plantuml.${version}.jar";
- sha256 = "sha256-2hQIwUpkxLHGG+kx8AekSKJ1qO8inL8xnko0dlLC1Kg=";
+ sha256 = "sha256-ezyQGrJwMl2Tqv14GSQzApdDqg1RV8OWdnp4K8a1A5k=";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/tools/networking/iperf/2.nix b/pkgs/tools/networking/iperf/2.nix
index 3270a25e67b2d..c2a92d8e78578 100644
--- a/pkgs/tools/networking/iperf/2.nix
+++ b/pkgs/tools/networking/iperf/2.nix
@@ -1,11 +1,12 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "iperf-2.0.13";
+ pname = "iperf";
+ version = "2.1.4";
src = fetchurl {
- url = "mirror://sourceforge/iperf2/files/${name}.tar.gz";
- sha256 = "1bbq6xr0vrd88zssfiadvw3awyn236yv94fsdl9q2sh9cv4xx2n8";
+ url = "mirror://sourceforge/iperf2/files/${pname}-${version}.tar.gz";
+ sha256 = "1h3qyd53hnk73653nbz08bai2wb0x4hz8pwhrnjq6yqckbaadv26";
};
hardeningDisable = [ "format" ];
diff --git a/pkgs/tools/networking/ipinfo/default.nix b/pkgs/tools/networking/ipinfo/default.nix
index 926e46bf22570..9a48588d3d86d 100644
--- a/pkgs/tools/networking/ipinfo/default.nix
+++ b/pkgs/tools/networking/ipinfo/default.nix
@@ -5,13 +5,13 @@
buildGoModule rec {
pname = "ipinfo";
- version = "2.0.2";
+ version = "2.1.1";
src = fetchFromGitHub {
owner = pname;
repo = "cli";
rev = "${pname}-${version}";
- sha256 = "05448p3bp01l5wyhl94023ywxxkmanm4gp4sdz1b71xicy2fnsmz";
+ sha256 = "15pwx94n4qi02r3ppqkpnkikpnbqmr8rrn9gmkbjy2vbdi147qwl";
};
vendorSha256 = null;
diff --git a/pkgs/tools/security/exploitdb/default.nix b/pkgs/tools/security/exploitdb/default.nix
index 5197fa96cc01c..0adad70f86a21 100644
--- a/pkgs/tools/security/exploitdb/default.nix
+++ b/pkgs/tools/security/exploitdb/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "exploitdb";
- version = "2021-08-17";
+ version = "2021-08-19";
src = fetchFromGitHub {
owner = "offensive-security";
repo = pname;
rev = version;
- sha256 = "sha256-rtnlPt5fsiN44AlaAZ6v7Z2u6by+OFvtMtwtWVYQvdg=";
+ sha256 = "sha256-4GUjQ36FXgDZpLkGXSLy1GEx5+SYYumRpRR2Ucqzeuc=";
};
installPhase = ''
diff --git a/pkgs/tools/security/onlykey-cli/default.nix b/pkgs/tools/security/onlykey-cli/default.nix
index 51cb815db6f00..934604cae556c 100644
--- a/pkgs/tools/security/onlykey-cli/default.nix
+++ b/pkgs/tools/security/onlykey-cli/default.nix
@@ -2,18 +2,28 @@
python3Packages.buildPythonApplication rec {
pname = "onlykey-cli";
- version = "1.2.2";
+ version = "1.2.5";
src = python3Packages.fetchPypi {
inherit version;
pname = "onlykey";
- sha256 = "1qkbgab5xlg7bd0jfzf8k5ppb1zhib76r050fiaqi5wibrqrfwdi";
+ sha256 = "sha256-7Pr1gXaPF5mctGxDciKKj0YDDQVFFi1+t6QztoKqpAA=";
};
+ propagatedBuildInputs = with python3Packages; [
+ aenum
+ cython
+ ecdsa
+ hidapi
+ onlykey-solo-python
+ prompt-toolkit
+ pynacl
+ six
+ ];
+
# Requires having the physical onlykey (a usb security key)
doCheck = false;
- propagatedBuildInputs =
- with python3Packages; [ hidapi aenum six prompt-toolkit pynacl ecdsa cython ];
+ pythonImportsCheck = [ "onlykey.cli" ];
meta = with lib; {
description = "OnlyKey client and command-line tool";
diff --git a/pkgs/tools/text/hck/default.nix b/pkgs/tools/text/hck/default.nix
new file mode 100644
index 0000000000000..f10c01ca2fd61
--- /dev/null
+++ b/pkgs/tools/text/hck/default.nix
@@ -0,0 +1,23 @@
+{ fetchFromGitHub, lib, rustPlatform }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "hck";
+ version = "0.5.4";
+
+ src = fetchFromGitHub {
+ owner = "sstadick";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1zdzi98qywlwk5bp47963vya2p2ahrbjkc9h63lmb05wlas9s78y";
+ };
+
+ cargoSha256 = "0lvd5xpgh2vq2lszzb0fs6ha2vb419a5w0hlkq3287vq3ya3p4qg";
+
+ meta = with lib; {
+ description = "A close to drop in replacement for cut that can use a regex delimiter instead of a fixed string";
+ homepage = "https://github.com/sstadick/hck";
+ changelog = "https://github.com/sstadick/hck/blob/v${version}/CHANGELOG.md";
+ license = with licenses; [ mit /* or */ unlicense ];
+ maintainers = with maintainers; [ figsoda ];
+ };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index b72f062a14e86..099a151cd263c 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -4908,7 +4908,9 @@ with pkgs;
libbtbb = callPackage ../development/libraries/libbtbb { };
- lp_solve = callPackage ../applications/science/math/lp_solve { };
+ lp_solve = callPackage ../applications/science/math/lp_solve {
+ inherit (darwin) cctools;
+ };
fabric-installer = callPackage ../tools/games/minecraft/fabric-installer { };
@@ -5041,6 +5043,8 @@ with pkgs;
ftop = callPackage ../os-specific/linux/ftop { };
+ ftxui = callPackage ../development/libraries/ftxui { };
+
fsarchiver = callPackage ../tools/archivers/fsarchiver { };
fsfs = callPackage ../tools/filesystems/fsfs { };
@@ -13750,6 +13754,8 @@ with pkgs;
foreman = callPackage ../tools/system/foreman { };
goreman = callPackage ../tools/system/goreman { };
+ fprettify = callPackage ../development/tools/fprettify { };
+
framac = callPackage ../development/tools/analysis/frama-c { };
frame = callPackage ../development/libraries/frame { };
@@ -16756,6 +16762,8 @@ with pkgs;
libechonest = callPackage ../development/libraries/libechonest { };
+ libemf2svg = callPackage ../development/libraries/libemf2svg { };
+
libev = callPackage ../development/libraries/libev { };
libevent = callPackage ../development/libraries/libevent { };
@@ -17483,6 +17491,8 @@ with pkgs;
libvisio = callPackage ../development/libraries/libvisio { };
+ libvisio2svg = callPackage ../development/libraries/libvisio2svg { };
+
libvisual = callPackage ../development/libraries/libvisual { };
libvmaf = callPackage ../development/libraries/libvmaf { };
@@ -31448,6 +31458,8 @@ with pkgs;
hatari = callPackage ../misc/emulators/hatari { };
+ hck = callPackage ../tools/text/hck { };
+
helm = callPackage ../applications/audio/helm { };
helmfile = callPackage ../applications/networking/cluster/helmfile { };
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 38a487cfcc3f7..245c573a1f18a 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -5009,6 +5009,8 @@ in {
onkyo-eiscp = callPackage ../development/python-modules/onkyo-eiscp { };
+ onlykey-solo-python = callPackage ../development/python-modules/onlykey-solo-python { };
+
onnx = callPackage ../development/python-modules/onnx { };
open-garage = callPackage ../development/python-modules/open-garage { };
@@ -5484,6 +5486,8 @@ in {
plaster-pastedeploy = callPackage ../development/python-modules/plaster-pastedeploy { };
+ platformdirs = callPackage ../development/python-modules/platformdirs { };
+
playsound = callPackage ../development/python-modules/playsound { };
plexapi = callPackage ../development/python-modules/plexapi { };