diff --git a/third_party/nixpkgs/maintainers/maintainer-list.nix b/third_party/nixpkgs/maintainers/maintainer-list.nix
index 969d6ab338..8f447405c2 100644
--- a/third_party/nixpkgs/maintainers/maintainer-list.nix
+++ b/third_party/nixpkgs/maintainers/maintainer-list.nix
@@ -224,6 +224,12 @@
githubId = 1773511;
name = "Adrien Devresse";
};
+ addict3d = {
+ email = "nickbathum@gmail.com";
+ github = "addict3d";
+ githubId = 49227;
+ name = "Nick Bathum";
+ };
adisbladis = {
email = "adisbladis@gmail.com";
github = "adisbladis";
diff --git a/third_party/nixpkgs/nixos/doc/manual/release-notes/rl-2105.xml b/third_party/nixpkgs/nixos/doc/manual/release-notes/rl-2105.xml
index cf9e060972..e493d03fba 100644
--- a/third_party/nixpkgs/nixos/doc/manual/release-notes/rl-2105.xml
+++ b/third_party/nixpkgs/nixos/doc/manual/release-notes/rl-2105.xml
@@ -669,6 +669,12 @@ environment.systemPackages = [
Environment variables can be set using .
+
+
+ changed type to a list of paths, required for specifiyng multiple data directories for using with erasure coding.
+ Currently, the service doesn't enforce nor checks the correct number of paths to correspond to minio requirements.
+
+
diff --git a/third_party/nixpkgs/nixos/lib/make-options-doc/default.nix b/third_party/nixpkgs/nixos/lib/make-options-doc/default.nix
index a1161621f0..14015ab64a 100644
--- a/third_party/nixpkgs/nixos/lib/make-options-doc/default.nix
+++ b/third_party/nixpkgs/nixos/lib/make-options-doc/default.nix
@@ -126,11 +126,37 @@ let
}
'';
+ singleMDDoc = name: value: ''
+ ## ${lib.escape [ "<" ">" ] name}
+ ${value.description}
+
+ ${lib.optionalString (value ? type) ''
+ *_Type_*:
+ ${value.type}
+ ''}
+
+ ${lib.optionalString (value ? default) ''
+ *_Default_*
+ ```
+ ${builtins.toJSON value.default}
+ ```
+ ''}
+
+ ${lib.optionalString (value ? example) ''
+ *_Example_*
+ ```
+ ${builtins.toJSON value.example}
+ ```
+ ''}
+ '';
+
in {
inherit optionsNix;
optionsAsciiDoc = lib.concatStringsSep "\n" (lib.mapAttrsToList singleAsciiDoc optionsNix);
+ optionsMDDoc = lib.concatStringsSep "\n" (lib.mapAttrsToList singleMDDoc optionsNix);
+
optionsJSON = pkgs.runCommand "options.json"
{ meta.description = "List of NixOS options in JSON format";
buildInputs = [ pkgs.brotli ];
diff --git a/third_party/nixpkgs/nixos/modules/services/hardware/sane.nix b/third_party/nixpkgs/nixos/modules/services/hardware/sane.nix
index e5a01a8a27..8c1bde7b41 100644
--- a/third_party/nixpkgs/nixos/modules/services/hardware/sane.nix
+++ b/third_party/nixpkgs/nixos/modules/services/hardware/sane.nix
@@ -163,6 +163,7 @@ in
users.users.scanner = {
uid = config.ids.uids.scanner;
group = "scanner";
+ extraGroups = [ "lp" ] ++ optionals config.services.avahi.enable [ "avahi" ];
};
})
];
diff --git a/third_party/nixpkgs/nixos/modules/services/mail/mailman.nix b/third_party/nixpkgs/nixos/modules/services/mail/mailman.nix
index 832b496f31..a5b17be349 100644
--- a/third_party/nixpkgs/nixos/modules/services/mail/mailman.nix
+++ b/third_party/nixpkgs/nixos/modules/services/mail/mailman.nix
@@ -263,7 +263,8 @@ in {
# settings_local.json is loaded.
os.environ["SECRET_KEY"] = ""
- from mailman_web.settings import *
+ from mailman_web.settings.base import *
+ from mailman_web.settings.mailman import *
import json
diff --git a/third_party/nixpkgs/nixos/modules/services/networking/babeld.nix b/third_party/nixpkgs/nixos/modules/services/networking/babeld.nix
index 272c58ecd7..e16e56121c 100644
--- a/third_party/nixpkgs/nixos/modules/services/networking/babeld.nix
+++ b/third_party/nixpkgs/nixos/modules/services/networking/babeld.nix
@@ -102,7 +102,7 @@ in
ProtectKernelModules = true;
ProtectKernelLogs = true;
ProtectControlGroups = true;
- RestrictAddressFamilies = [ "AF_NETLINK" "AF_INET6" ];
+ RestrictAddressFamilies = [ "AF_NETLINK" "AF_INET6" "AF_INET" ];
RestrictNamespaces = true;
RestrictRealtime = true;
RestrictSUIDSGID = true;
diff --git a/third_party/nixpkgs/nixos/modules/services/ttys/getty.nix b/third_party/nixpkgs/nixos/modules/services/ttys/getty.nix
index ecfabef5fb..2480e681de 100644
--- a/third_party/nixpkgs/nixos/modules/services/ttys/getty.nix
+++ b/third_party/nixpkgs/nixos/modules/services/ttys/getty.nix
@@ -5,17 +5,16 @@ with lib;
let
cfg = config.services.getty;
- loginArgs = [
+ baseArgs = [
"--login-program" "${pkgs.shadow}/bin/login"
] ++ optionals (cfg.autologinUser != null) [
"--autologin" cfg.autologinUser
] ++ optionals (cfg.loginOptions != null) [
"--login-options" cfg.loginOptions
- ];
+ ] ++ cfg.extraArgs;
- gettyCmd = extraArgs:
- "@${pkgs.util-linux}/sbin/agetty agetty ${escapeShellArgs loginArgs} "
- + extraArgs;
+ gettyCmd = args:
+ "@${pkgs.util-linux}/sbin/agetty agetty ${escapeShellArgs baseArgs} ${args}";
in
@@ -54,7 +53,16 @@ in
will not be invoked with a
option.
'';
- example = "-h darkstar -- \u";
+ example = "-h darkstar -- \\u";
+ };
+
+ extraArgs = mkOption {
+ type = types.listOf types.str;
+ default = [ ];
+ description = ''
+ Additional arguments passed to agetty.
+ '';
+ example = [ "--nohostname" ];
};
greetingLine = mkOption {
diff --git a/third_party/nixpkgs/nixos/modules/services/web-servers/minio.nix b/third_party/nixpkgs/nixos/modules/services/web-servers/minio.nix
index cd123000f0..381a55faff 100644
--- a/third_party/nixpkgs/nixos/modules/services/web-servers/minio.nix
+++ b/third_party/nixpkgs/nixos/modules/services/web-servers/minio.nix
@@ -18,9 +18,9 @@ in
};
dataDir = mkOption {
- default = "/var/lib/minio/data";
- type = types.path;
- description = "The data directory, for storing the objects.";
+ default = [ "/var/lib/minio/data" ];
+ type = types.listOf types.path;
+ description = "The list of data directories for storing the objects. Use one path for regular operation and the minimum of 4 endpoints for Erasure Code mode.";
};
configDir = mkOption {
@@ -74,15 +74,14 @@ in
config = mkIf cfg.enable {
systemd.tmpfiles.rules = [
"d '${cfg.configDir}' - minio minio - -"
- "d '${cfg.dataDir}' - minio minio - -"
- ];
+ ] ++ (map (x: "d '" + x + "' - minio minio - - ") cfg.dataDir);
systemd.services.minio = {
description = "Minio Object Storage";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
- ExecStart = "${cfg.package}/bin/minio server --json --address ${cfg.listenAddress} --config-dir=${cfg.configDir} ${cfg.dataDir}";
+ ExecStart = "${cfg.package}/bin/minio server --json --address ${cfg.listenAddress} --config-dir=${cfg.configDir} ${toString cfg.dataDir}";
Type = "simple";
User = "minio";
Group = "minio";
diff --git a/third_party/nixpkgs/nixos/modules/services/x11/window-managers/default.nix b/third_party/nixpkgs/nixos/modules/services/x11/window-managers/default.nix
index 794dd21e4a..53285fbce8 100644
--- a/third_party/nixpkgs/nixos/modules/services/x11/window-managers/default.nix
+++ b/third_party/nixpkgs/nixos/modules/services/x11/window-managers/default.nix
@@ -15,6 +15,7 @@ in
./cwm.nix
./clfswm.nix
./dwm.nix
+ ./e16.nix
./evilwm.nix
./exwm.nix
./fluxbox.nix
diff --git a/third_party/nixpkgs/nixos/modules/services/x11/window-managers/e16.nix b/third_party/nixpkgs/nixos/modules/services/x11/window-managers/e16.nix
new file mode 100644
index 0000000000..3e1a22c4da
--- /dev/null
+++ b/third_party/nixpkgs/nixos/modules/services/x11/window-managers/e16.nix
@@ -0,0 +1,26 @@
+{ config , lib , pkgs , ... }:
+
+with lib;
+
+let
+ cfg = config.services.xserver.windowManager.e16;
+in
+{
+ ###### interface
+ options = {
+ services.xserver.windowManager.e16.enable = mkEnableOption "e16";
+ };
+
+ ###### implementation
+ config = mkIf cfg.enable {
+ services.xserver.windowManager.session = singleton {
+ name = "E16";
+ start = ''
+ ${pkgs.e16}/bin/e16 &
+ waitPID=$!
+ '';
+ };
+
+ environment.systemPackages = [ pkgs.e16 ];
+ };
+}
diff --git a/third_party/nixpkgs/nixos/tests/kernel-generic.nix b/third_party/nixpkgs/nixos/tests/kernel-generic.nix
index fbead1dc23..17089141e9 100644
--- a/third_party/nixpkgs/nixos/tests/kernel-generic.nix
+++ b/third_party/nixpkgs/nixos/tests/kernel-generic.nix
@@ -1,7 +1,7 @@
{ system ? builtins.currentSystem
, config ? { }
, pkgs ? import ../.. { inherit system config; }
-}:
+}@args:
with pkgs.lib;
@@ -22,7 +22,7 @@ let
assert "Linux" in machine.succeed("uname -s")
assert "${linuxPackages.kernel.modDirVersion}" in machine.succeed("uname -a")
'';
- }));
+ }) args);
in
with pkgs; {
linux_4_4 = makeKernelTest "4.4" linuxPackages_4_4;
diff --git a/third_party/nixpkgs/pkgs/applications/audio/CHOWTapeModel/default.nix b/third_party/nixpkgs/pkgs/applications/audio/CHOWTapeModel/default.nix
new file mode 100644
index 0000000000..025563f98b
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/audio/CHOWTapeModel/default.nix
@@ -0,0 +1,70 @@
+{ alsaLib
+, curl
+, fetchFromGitHub
+, freeglut
+, freetype
+, libGL
+, libXcursor
+, libXext
+, libXinerama
+, libXrandr
+, libjack2
+, pkg-config
+, python3
+, stdenv
+, lib
+}:
+
+stdenv.mkDerivation rec {
+ pname = "CHOWTapeModel";
+ version = "unstable-2020-12-12";
+
+ src = fetchFromGitHub {
+ owner = "jatinchowdhury18";
+ repo = "AnalogTapeModel";
+ rev = "a7cf10c3f790d306ce5743bb731e4bc2c1230d70";
+ sha256 = "09nq8x2dwabncbp039dqm1brzcz55zg9kpxd4p5348xlaz5m4661";
+ fetchSubmodules = true;
+ };
+
+ nativeBuildInputs = [
+ pkg-config
+ ];
+
+ buildInputs = [
+ alsaLib
+ curl
+ freeglut
+ freetype
+ libGL
+ libXcursor
+ libXext
+ libXinerama
+ libXrandr
+ libjack2
+ python3
+ ];
+
+ buildPhase = ''
+ cd Plugin/
+ ./build_linux.sh
+ '';
+
+ installPhase = ''
+ mkdir -p $out/lib/lv2 $out/lib/vst3 $out/bin $out/share/doc/CHOWTapeModel/
+ cd Builds/LinuxMakefile/build/
+ cp CHOWTapeModel.a $out/lib
+ cp -r CHOWTapeModel.lv2 $out/lib/lv2
+ cp -r CHOWTapeModel.vst3 $out/lib/vst3
+ cp CHOWTapeModel $out/bin
+ cp ../../../../Manual/ChowTapeManual.pdf $out/share/doc/CHOWTapeModel/
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/jatinchowdhury18/AnalogTapeModel";
+ description = "Physical modelling signal processing for analog tape recording. LV2, VST3 and standalone";
+ license = with licenses; [ gpl3Only ];
+ maintainers = with maintainers; [ magnetophon ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/applications/audio/bchoppr/default.nix b/third_party/nixpkgs/pkgs/applications/audio/bchoppr/default.nix
index b15b8d127a..91d5d3c216 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/bchoppr/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/bchoppr/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "bchoppr";
- version = "1.10.4";
+ version = "1.10.6";
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = version;
- sha256 = "sha256-/csds8QOgn5IogyMg/5PMKdlCISakS3GDkyj2tTt0BY=";
+ sha256 = "sha256-iCDAIV2p1OkZxOMo8A6zBrOGd49FXAGqLZWk0Kbvgec=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/third_party/nixpkgs/pkgs/applications/audio/bsequencer/default.nix b/third_party/nixpkgs/pkgs/applications/audio/bsequencer/default.nix
index 692667c000..58b48a581a 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/bsequencer/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/bsequencer/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "BSEQuencer";
- version = "1.8.6";
+ version = "1.8.8";
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = version;
- sha256 = "sha256-PZ2Ft7y2mbb5Wpa7mWPys2BVpcQC3WE5rKu2sRqkf8w=";
+ sha256 = "sha256-OArIMf0XP9CKDdb3H4s8jMzVRjoLFQDPmTS9rS2KW3w=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/third_party/nixpkgs/pkgs/applications/audio/bshapr/default.nix b/third_party/nixpkgs/pkgs/applications/audio/bshapr/default.nix
index 04dd93b8f4..de8566709c 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/bshapr/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/bshapr/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "BShapr";
- version = "0.10";
+ version = "0.12";
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-oEBsaIcw/Ltxr2CUPGBjwcxOPhNQoYPZDkfQE7QA940=";
+ sha256 = "sha256-2DySlD5ZTxeQ2U++Dr67bek5oVbAiOHCxM6S5rTTZN0=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/third_party/nixpkgs/pkgs/applications/audio/bslizr/default.nix b/third_party/nixpkgs/pkgs/applications/audio/bslizr/default.nix
index 2a4e717e1b..3d8e0c8f35 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/bslizr/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/bslizr/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "BSlizr";
- version = "1.2.10";
+ version = "1.2.12";
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = version;
- sha256 = "sha256-tEGJrVg8dN9Torybx02qIpXsGOuCgn/Wb+jemfCjiK4=";
+ sha256 = "sha256-vPkcgG+pAfjsPRMyxdMRUxWGch+RG+pdaAcekP5pKEA=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/third_party/nixpkgs/pkgs/applications/audio/distrho/default.nix b/third_party/nixpkgs/pkgs/applications/audio/distrho/default.nix
index dbe6bdeee4..3582583333 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/distrho/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/distrho/default.nix
@@ -1,26 +1,23 @@
-{ stdenv
+{ lib
+, stdenv
, alsaLib
-, curl
, fetchFromGitHub
, fftwFloat
, freetype
-, glib
-, lib
, libGL
, libX11
, libXcursor
, libXext
-, libXinerama
-, libXrandr
, libXrender
-, libgcc
-, libglvnd
-, libsecret
, meson
, ninja
, pkg-config
}:
+let rpathLibs = [
+ fftwFloat
+];
+in
stdenv.mkDerivation rec {
pname = "distrho-ports";
version = "2021-03-15";
@@ -34,24 +31,26 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config meson ninja ];
- buildInputs = [
+ buildInputs = rpathLibs ++ [
alsaLib
- curl
- fftwFloat
freetype
- glib
libGL
libX11
libXcursor
libXext
- libXinerama
- libXrandr
libXrender
- libgcc
- libglvnd
- libsecret
];
+ postFixup = ''
+ for file in \
+ $out/lib/lv2/vitalium.lv2/vitalium.so \
+ $out/lib/vst/vitalium.so \
+ $out/lib/vst3/vitalium.vst3/Contents/x86_64-linux/vitalium.so
+ do
+ patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}:$(patchelf --print-rpath $file)" $file
+ done
+ '';
+
meta = with lib; {
homepage = "http://distrho.sourceforge.net/ports";
description = "Linux audio plugins and LV2 ports";
diff --git a/third_party/nixpkgs/pkgs/applications/audio/geonkick/default.nix b/third_party/nixpkgs/pkgs/applications/audio/geonkick/default.nix
index 6812cb4ef0..5eece77373 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/geonkick/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/geonkick/default.nix
@@ -1,24 +1,23 @@
-{ lib, stdenv, fetchFromGitLab, cmake, pkg-config, redkite, libsndfile, rapidjson
+{ lib, stdenv, fetchFromGitLab, cmake, pkg-config, libsndfile, rapidjson
, libjack2, lv2, libX11, cairo }:
stdenv.mkDerivation rec {
pname = "geonkick";
- version = "2.6.1";
+ version = "2.8.0";
src = fetchFromGitLab {
owner = "iurie-sw";
repo = pname;
rev = "v${version}";
- sha256 = "1l647j11pb9lkknnh4q99mmfcvr644b02lfcdjh98z60vqm1s54c";
+ sha256 = "0dpwdjyy6phhr1jm1cabj2gc3rfsdan513mijbgnpzkq9w9jfb60";
};
nativeBuildInputs = [ cmake pkg-config ];
- buildInputs = [ redkite libsndfile rapidjson libjack2 lv2 libX11 cairo ];
+ buildInputs = [ libsndfile rapidjson libjack2 lv2 libX11 cairo ];
# https://github.com/iurie-sw/geonkick/issues/120
cmakeFlags = [
- "-DGKICK_REDKITE_SDK_PATH=${redkite}"
"-DCMAKE_INSTALL_LIBDIR=lib"
];
diff --git a/third_party/nixpkgs/pkgs/applications/audio/mopidy/default.nix b/third_party/nixpkgs/pkgs/applications/audio/mopidy/default.nix
index 44d48fb378..0acc1545a8 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/mopidy/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/mopidy/default.nix
@@ -1,46 +1,39 @@
-{ newScope, python }:
+{ lib, newScope, python }:
# Create a custom scope so we are consistent in which python version is used
+lib.makeScope newScope (self: with self; {
+ inherit python;
+ pythonPackages = python.pkgs;
-let
- callPackage = newScope self;
+ mopidy = callPackage ./mopidy.nix { };
- self = {
+ mopidy-iris = callPackage ./iris.nix { };
- inherit python;
- pythonPackages = python.pkgs;
+ mopidy-local = callPackage ./local.nix { };
- mopidy = callPackage ./mopidy.nix { };
+ mopidy-moped = callPackage ./moped.nix { };
- mopidy-iris = callPackage ./iris.nix { };
+ mopidy-mopify = callPackage ./mopify.nix { };
- mopidy-local = callPackage ./local.nix { };
+ mopidy-mpd = callPackage ./mpd.nix { };
- mopidy-moped = callPackage ./moped.nix { };
+ mopidy-mpris = callPackage ./mpris.nix { };
- mopidy-mopify = callPackage ./mopify.nix { };
+ mopidy-musicbox-webclient = callPackage ./musicbox-webclient.nix { };
- mopidy-mpd = callPackage ./mpd.nix { };
+ mopidy-scrobbler = callPackage ./scrobbler.nix { };
- mopidy-mpris = callPackage ./mpris.nix { };
+ mopidy-somafm = callPackage ./somafm.nix { };
- mopidy-musicbox-webclient = callPackage ./musicbox-webclient.nix { };
+ mopidy-soundcloud = callPackage ./soundcloud.nix { };
- mopidy-scrobbler = callPackage ./scrobbler.nix { };
+ mopidy-spotify = callPackage ./spotify.nix { };
- mopidy-somafm = callPackage ./somafm.nix { };
+ mopidy-spotify-tunigo = callPackage ./spotify-tunigo.nix { };
- mopidy-soundcloud = callPackage ./soundcloud.nix { };
+ mopidy-tunein = callPackage ./tunein.nix { };
- mopidy-spotify = callPackage ./spotify.nix { };
+ mopidy-youtube = callPackage ./youtube.nix { };
- mopidy-spotify-tunigo = callPackage ./spotify-tunigo.nix { };
-
- mopidy-tunein = callPackage ./tunein.nix { };
-
- mopidy-youtube = callPackage ./youtube.nix { };
-
- mopidy-subidy = callPackage ./subidy.nix { };
- };
-
-in self
+ mopidy-subidy = callPackage ./subidy.nix { };
+})
diff --git a/third_party/nixpkgs/pkgs/applications/audio/ncspot/bump-security-framework-crate.patch b/third_party/nixpkgs/pkgs/applications/audio/ncspot/bump-security-framework-crate.patch
deleted file mode 100644
index 5c8008abb1..0000000000
--- a/third_party/nixpkgs/pkgs/applications/audio/ncspot/bump-security-framework-crate.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Bump security-framework from 2.1.1 to 2.1.2
-
-security-framework=2.1.1 doesn't build on Darwin 10.12.
-https://github.com/kornelski/rust-security-framework/issues/124
-
---- c/Cargo.lock
-+++ i/Cargo.lock
-@@ -3138,9 +3138,9 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
-
- [[package]]
- name = "security-framework"
--version = "2.1.1"
-+version = "2.1.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
--checksum = "2dfd318104249865096c8da1dfabf09ddbb6d0330ea176812a62ec75e40c4166"
-+checksum = "d493c5f39e02dfb062cd8f33301f90f9b13b650e8c1b1d0fd75c19dd64bff69d"
- dependencies = [
- "bitflags 1.2.1",
- "core-foundation",
diff --git a/third_party/nixpkgs/pkgs/applications/audio/ncspot/default.nix b/third_party/nixpkgs/pkgs/applications/audio/ncspot/default.nix
index ad8d64b972..f67169fd49 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/ncspot/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/ncspot/default.nix
@@ -14,23 +14,21 @@ let
in
rustPlatform.buildRustPackage rec {
pname = "ncspot";
- version = "0.5.0";
+ version = "0.6.0";
src = fetchFromGitHub {
owner = "hrkfdn";
repo = "ncspot";
rev = "v${version}";
- sha256 = "1h1il2mzngxmcsl169431lwzl0skv420arg9i06856r5wil37jf7";
+ sha256 = "0j4ax3yh0l8v5bd5i3ijd8ys27dcrh7byigjip52mw1qlqfnh8wk";
};
- cargoSha256 = "13yn7l4hhl48lbpj0zsbraqzkkz6knc373j6rcf8d1p4z76yili4";
+ cargoSha256 = "022q6rlac97dr6l7rd9xalgx0w257r364i1pij080qx8rk97msb9";
cargoBuildFlags = [ "--no-default-features" "--features" "${lib.concatStringsSep "," features}" ];
nativeBuildInputs = [ pkg-config ];
- cargoPatches = [ ./bump-security-framework-crate.patch ];
-
buildInputs = [ ncurses openssl ]
++ lib.optional stdenv.isDarwin libiconv
++ lib.optional withALSA alsaLib
diff --git a/third_party/nixpkgs/pkgs/applications/audio/x42-plugins/default.nix b/third_party/nixpkgs/pkgs/applications/audio/x42-plugins/default.nix
index 2d2f670d06..dba9dcc5e5 100644
--- a/third_party/nixpkgs/pkgs/applications/audio/x42-plugins/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/audio/x42-plugins/default.nix
@@ -3,12 +3,12 @@
, libGLU, lv2, gtk2, cairo, pango, fftwFloat, zita-convolver }:
stdenv.mkDerivation rec {
- version = "20200714";
+ version = "20210114";
pname = "x42-plugins";
src = fetchurl {
url = "https://gareus.org/misc/x42-plugins/${pname}-${version}.tar.xz";
- sha256 = "1av05ykph8x67018hm9zfgh1vk0zi39mvrsxkj6bm4hkarxf0vvl";
+ sha256 = "sha256-xUiA/k5ZbI/SkY8a20FsyRwqPxxMteiFdEhFF/8e2OA=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/third_party/nixpkgs/pkgs/applications/graphics/hydrus/default.nix b/third_party/nixpkgs/pkgs/applications/graphics/hydrus/default.nix
index df1fcc9eb6..e42666beb1 100644
--- a/third_party/nixpkgs/pkgs/applications/graphics/hydrus/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/graphics/hydrus/default.nix
@@ -10,14 +10,14 @@
pythonPackages.buildPythonPackage rec {
pname = "hydrus";
- version = "431";
+ version = "434";
format = "other";
src = fetchFromGitHub {
owner = "hydrusnetwork";
repo = "hydrus";
rev = "v${version}";
- sha256 = "0mfql27n725k6ynvhkgzmxxpfbjlzil2fjpy082gz257kb0880zy";
+ sha256 = "sha256-7Allc9zawja8DO2idv+MAYZ/cBRTCMd0mbgBLfEVii8=";
};
nativeBuildInputs = [
@@ -75,11 +75,11 @@ pythonPackages.buildPythonPackage rec {
-e TestServer \
'';
- extraOutputsToLink = [ "doc" ];
+ outputs = [ "out" "doc" ];
postPatch = ''
sed 's;os\.path\.join(\sHC\.BIN_DIR,.*;"${miniupnpc_2}/bin/upnpc";' \
- -i ./hydrus/core/HydrusNATPunch.py
+ -i ./hydrus/core/networking/HydrusNATPunch.py
sed 's;os\.path\.join(\sHC\.BIN_DIR,.*;"${swftools}/bin/swfrender";' \
-i ./hydrus/core/HydrusFlashHandling.py
diff --git a/third_party/nixpkgs/pkgs/applications/graphics/lightburn/default.nix b/third_party/nixpkgs/pkgs/applications/graphics/lightburn/default.nix
index 8188a3949d..7ff0b77e6f 100644
--- a/third_party/nixpkgs/pkgs/applications/graphics/lightburn/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/graphics/lightburn/default.nix
@@ -6,7 +6,7 @@
stdenv.mkDerivation rec {
pname = "lightburn";
- version = "0.9.22";
+ version = "0.9.23";
nativeBuildInputs = [
p7zip
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://github.com/LightBurnSoftware/deployment/releases/download/${version}/LightBurn-Linux64-v${version}.7z";
- sha256 = "sha256-DOiO36suytukkviqYyLL47DFVzsJt2ZfSnnni95CLaA=";
+ sha256 = "sha256-OiW9UBophyEF3J0FOSMkbwDJ6d8SEDNrr+H0B4Ndo/Y=";
};
buildInputs = [
diff --git a/third_party/nixpkgs/pkgs/applications/graphics/megapixels/default.nix b/third_party/nixpkgs/pkgs/applications/graphics/megapixels/default.nix
index 1a70337884..3d8a4c2bce 100644
--- a/third_party/nixpkgs/pkgs/applications/graphics/megapixels/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/graphics/megapixels/default.nix
@@ -1,6 +1,6 @@
{ stdenv
, lib
-, fetchgit
+, fetchFromSourcehut
, meson
, ninja
, pkg-config
@@ -26,12 +26,13 @@ let
in
stdenv.mkDerivation rec {
pname = "megapixels";
- version = "0.15.0";
+ version = "0.16.0";
- src = fetchgit {
- url = "https://git.sr.ht/~martijnbraam/megapixels";
+ src = fetchFromSourcehut {
+ owner = "~martijnbraam";
+ repo = "megapixels";
rev = version;
- sha256 = "1y8irwi8lbjs948j90gpic96dx5wjmwacd41hb3d9vzhkyni2dvb";
+ sha256 = "0z7sx76x18yqf7carq6mg9lib0zbz0yrd1dsg9qd6hbf5niqis37";
};
nativeBuildInputs = [ meson ninja pkg-config wrapGAppsHook ];
@@ -49,6 +50,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "GTK3 camera application using raw v4l2 and media-requests";
homepage = "https://sr.ht/~martijnbraam/Megapixels";
+ changelog = "https://git.sr.ht/~martijnbraam/megapixels/refs/${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ OPNA2608 ];
platforms = platforms.linux;
diff --git a/third_party/nixpkgs/pkgs/applications/graphics/round/default.nix b/third_party/nixpkgs/pkgs/applications/graphics/round/default.nix
new file mode 100644
index 0000000000..a34a52c4ee
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/graphics/round/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+ pname = "round";
+ version = "0.0.2";
+
+ src = fetchFromGitHub {
+ owner = "mingrammer";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "09brjr3h4qnhlidxlki1by5anahxy16ai078zm4k7ryl579amzdw";
+ };
+
+ vendorSha256 = null;
+
+ subPackages = [ "." ];
+
+ meta = with lib; {
+ description = "Round image corners from CLI";
+ homepage = "https://github.com/mingrammer/round";
+ license = licenses.mit;
+ maintainers = with maintainers; [ addict3d ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/applications/misc/clight/default.nix b/third_party/nixpkgs/pkgs/applications/misc/clight/default.nix
index e502cd6ccf..10ddb29020 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/clight/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/clight/default.nix
@@ -6,13 +6,13 @@
stdenv.mkDerivation rec {
pname = "clight";
- version = "4.2";
+ version = "4.5";
src = fetchFromGitHub {
owner = "FedeDP";
repo = "Clight";
rev = version;
- sha256 = "sha256-NmfnE6ZWgG9erBmrFFIhutnB1t2Ix/6jo+EeXYVtehg=";
+ sha256 = "sha256-fvi0JGNNDoxE0iH//HneYwQBBP4mY75AeViLHKQUI30=";
};
# dbus-1.pc has datadir=/etc
diff --git a/third_party/nixpkgs/pkgs/applications/misc/logseq/default.nix b/third_party/nixpkgs/pkgs/applications/misc/logseq/default.nix
index 373d44118d..e8e69cd787 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/logseq/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/logseq/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "logseq";
- version = "0.0.15";
+ version = "0.0.16";
src = fetchurl {
url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage";
- sha256 = "4mnS2ikDPmIyT4P8zXssk6AVx50C24bsP4WpD5xJbD8=";
+ sha256 = "dmgwFHJRy5qE71naRJKX0HCrVG0qQBOIM9TvCh4j/lY=";
name = "${pname}-${version}.AppImage";
};
diff --git a/third_party/nixpkgs/pkgs/applications/misc/lutris/default.nix b/third_party/nixpkgs/pkgs/applications/misc/lutris/default.nix
index bacaf88e5c..d294271ca2 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/lutris/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/lutris/default.nix
@@ -17,11 +17,13 @@
, dbus-python
, distro
, evdev
+, lxml
, pillow
, pygobject3
, pyyaml
, requests
, keyring
+, python_magic
# commands that lutris needs
, xrandr
@@ -71,13 +73,13 @@ let
in buildPythonApplication rec {
pname = "lutris-original";
- version = "0.5.7.1";
+ version = "0.5.8.3";
src = fetchFromGitHub {
owner = "lutris";
repo = "lutris";
rev = "v${version}";
- sha256 = "12ispwkbbm5aq263n3bdjmjfkpwplizacnqs2c0wnag4zj4kpm29";
+ sha256 = "sha256-NnWIP9oEndk/hDo5Z33pkmZ61pxT/ScmZ4YpS2ajK/8=";
};
nativeBuildInputs = [ wrapGAppsHook ];
@@ -94,7 +96,16 @@ in buildPythonApplication rec {
] ++ gstDeps;
propagatedBuildInputs = [
- evdev distro pyyaml pygobject3 requests pillow dbus-python keyring
+ evdev
+ distro
+ lxml
+ pyyaml
+ pygobject3
+ requests
+ pillow
+ dbus-python
+ keyring
+ python_magic
];
# avoid double wrapping
@@ -112,7 +123,7 @@ in buildPythonApplication rec {
meta = with lib; {
homepage = "https://lutris.net";
description = "Open Source gaming platform for GNU/Linux";
- license = licenses.gpl3;
+ license = licenses.gpl3Plus;
maintainers = with maintainers; [ chiiruno ];
platforms = platforms.linux;
};
diff --git a/third_party/nixpkgs/pkgs/applications/misc/navi/default.nix b/third_party/nixpkgs/pkgs/applications/misc/navi/default.nix
index da8d387d16..028b5c686f 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/navi/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/navi/default.nix
@@ -1,20 +1,22 @@
-{ fetchFromGitHub, fzf, lib, makeWrapper, rustPlatform, wget }:
+{ stdenv, fetchFromGitHub, fzf, lib, makeWrapper, rustPlatform, wget, libiconv }:
rustPlatform.buildRustPackage rec {
pname = "navi";
- version = "2.14.0";
+ version = "2.15.0";
src = fetchFromGitHub {
owner = "denisidoro";
repo = "navi";
rev = "v${version}";
- sha256 = "sha256-4XR+HazX65jiMvZpLNMNOc8gVVAxMx3bNcVNT6UPJ3o=";
+ sha256 = "sha256-qcfSGV/+FkyWGAApekRZHWGmeB9gIURt11DKn7lEh+o=";
};
- cargoSha256 = "sha256-ZBs9/yoY3na21rQd5zJzFujZZSq2BDoENKYAWI1fnTg=";
+ cargoSha256 = "sha256-HpGzDZMIzO0lpussmm+kJNOU7zghcYrQWZo3WZ5FOmA=";
nativeBuildInputs = [ makeWrapper ];
+ buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
+
postInstall = ''
wrapProgram $out/bin/navi \
--prefix PATH : "$out/bin" \
diff --git a/third_party/nixpkgs/pkgs/applications/misc/stretchly/default.nix b/third_party/nixpkgs/pkgs/applications/misc/stretchly/default.nix
index e1591810c5..6480fd6b26 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/stretchly/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/stretchly/default.nix
@@ -2,24 +2,21 @@
, lib
, fetchurl
, makeWrapper
-, electron_9
+, electron
, common-updater-scripts
, writeShellScript
, jq
, makeDesktopItem
}:
-let
- electron = electron_9;
-in
stdenv.mkDerivation rec {
pname = "stretchly";
- version = "1.2.0";
+ version = "1.5.0";
src = fetchurl {
url = "https://github.com/hovancik/stretchly/releases/download/v${version}/stretchly-${version}.tar.xz";
- sha256 = "07v9yk9qgya9ladfgbfkwwnbzvczs1cv6yn3zrg9rviyv8zlqjls";
+ sha256 = "19czwmwqsn82zdzln9zqqyl9sb3dm95gp58dqn1459gyinkzpvda";
};
icon = fetchurl {
diff --git a/third_party/nixpkgs/pkgs/applications/misc/unipicker/default.nix b/third_party/nixpkgs/pkgs/applications/misc/unipicker/default.nix
index fc47a87284..7ec284f402 100644
--- a/third_party/nixpkgs/pkgs/applications/misc/unipicker/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/misc/unipicker/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
pname = "unipicker";
- version = "unstable-2018-07-10";
+ version = "2.0.1";
src = fetchFromGitHub {
owner = "jeremija";
repo = pname;
- rev = "767571c87cdb1e654408d19fc4db98e5e6725c04";
+ rev = "v${version}";
sha256 = "1k4v53pm3xivwg9vq2kndpcmah0yn4679r5jzxvg38bbkfdk86c1";
};
diff --git a/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/browser.nix b/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/browser.nix
index f37666b003..c4a5508b75 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/browser.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/browser.nix
@@ -89,6 +89,5 @@ mkChromiumDerivation (base: rec {
then ["aarch64-linux" "x86_64-linux"]
else [];
timeout = 172800; # 48 hours (increased from the Hydra default of 10h)
- broken = elem channel [ "dev" ];
};
})
diff --git a/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/common.nix b/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/common.nix
index 07634c337a..1c3da1c860 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/common.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/common.nix
@@ -160,8 +160,15 @@ let
url = "https://raw.githubusercontent.com/archlinux/svntogit-packages/61b0ab526d2aa3c62fa20bb756461ca9a482f6c6/trunk/chromium-fix-libva-redef.patch";
sha256 = "1qj4sn1ngz0p1l1w3346kanr1sqlr3xdzk1f1i86lqa45mhv77ny";
}) ++ optional (chromiumVersionAtLeast "90")
- ./fix-missing-atspi2-dependency.patch
- ;
+ ./patches/fix-missing-atspi2-dependency.patch
+ ++ optionals (chromiumVersionAtLeast "91") [
+ ./patches/closure_compiler-Use-the-Java-binary-from-the-system.patch
+ (githubPatch
+ # Revert "Reland #7 of "Force Python 3 to be used in build.""
+ "38b6a9a8e5901766613879b6976f207aa163588a"
+ "1lvxbd7rl6hz5j6kh6q83yb6vd9g7anlqbai8g1w1bp6wdpgwvp9"
+ )
+ ];
postPatch = ''
# remove unused third-party
diff --git a/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/patches/closure_compiler-Use-the-Java-binary-from-the-system.patch b/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/patches/closure_compiler-Use-the-Java-binary-from-the-system.patch
new file mode 100644
index 0000000000..f6b10b679c
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/patches/closure_compiler-Use-the-Java-binary-from-the-system.patch
@@ -0,0 +1,31 @@
+From e031b8be0fb2a22f953c034cdf08ca9befe130d2 Mon Sep 17 00:00:00 2001
+From: Michael Weiss
+Date: Sun, 11 Apr 2021 18:05:12 +0200
+Subject: [PATCH] closure_compiler: Use the Java binary from the system
+
+The bundled Java binary (third_party/jdk/current/bin/java) is missing in
+the tarball and we want to use the one from the system anyway.
+This reverts part of [0].
+
+[0]: https://chromium-review.googlesource.com/c/chromium/src/+/2778794
+---
+ third_party/closure_compiler/compiler.py | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+diff --git a/third_party/closure_compiler/compiler.py b/third_party/closure_compiler/compiler.py
+index 75690ceb9749..7b9c76f74290 100755
+--- a/third_party/closure_compiler/compiler.py
++++ b/third_party/closure_compiler/compiler.py
+@@ -13,8 +13,7 @@ import subprocess
+
+
+ _CURRENT_DIR = os.path.join(os.path.dirname(__file__))
+-_JAVA_PATH = os.path.join(_CURRENT_DIR, "..", "jdk", "current", "bin", "java")
+-assert os.path.isfile(_JAVA_PATH), "java only allowed in android builds"
++_JAVA_PATH = "java"
+
+ class Compiler(object):
+ """Runs the Closure compiler on given source files to typecheck them
+--
+2.20.1
+
diff --git a/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/fix-missing-atspi2-dependency.patch b/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/patches/fix-missing-atspi2-dependency.patch
similarity index 100%
rename from third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/fix-missing-atspi2-dependency.patch
rename to third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/patches/fix-missing-atspi2-dependency.patch
diff --git a/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/upstream-info.json b/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/upstream-info.json
index f8a823b5f3..f79f0afaf5 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/upstream-info.json
+++ b/third_party/nixpkgs/pkgs/applications/networking/browsers/chromium/upstream-info.json
@@ -18,9 +18,9 @@
}
},
"beta": {
- "version": "90.0.4430.61",
- "sha256": "01vssy3q64pv9rw4cdxv5rdg7yrxmhyc03a5r75fhxc95fj66iac",
- "sha256bin64": "07l8dzyv0hav1gls3xw91q9ay2l8xxmsf7yagg940cya9ncl0lhi",
+ "version": "90.0.4430.70",
+ "sha256": "0jnyqnqwdccv3i55grd12wr2w5ffxyzmj2l3c1i24xawf2zdzyym",
+ "sha256bin64": "1lv9gz6llphyvlvn92yw1cyhj4i6jzhy1l7hk01418prmhb4nfws",
"deps": {
"gn": {
"version": "2021-02-09",
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/helm/plugins/helm-secrets.nix b/third_party/nixpkgs/pkgs/applications/networking/cluster/helm/plugins/helm-secrets.nix
index bef5d230ec..bcad2dc1ed 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/helm/plugins/helm-secrets.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/helm/plugins/helm-secrets.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "helm-secrets";
- version = "3.5.0";
+ version = "3.6.1";
src = fetchFromGitHub {
owner = "jkroepke";
repo = pname;
rev = "v${version}";
- hash = "sha256-EXCr0QjupsBBKTm6Opw5bcNwAD4FGGyOiqaa8L91/OI=";
+ hash = "sha256-RACETma0AaqaAfe0HWC541/i+knr+emMUauFWnkEuMI=";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/minikube/default.nix b/third_party/nixpkgs/pkgs/applications/networking/cluster/minikube/default.nix
index 79cfebd2af..897428a757 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/minikube/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/minikube/default.nix
@@ -11,9 +11,9 @@
buildGoModule rec {
pname = "minikube";
- version = "1.18.1";
+ version = "1.19.0";
- vendorSha256 = "sha256-rw1tqz+Y5iSXWIxXV4433Hwgyfz8jYMzKWurCi2hmhM=";
+ vendorSha256 = "sha256-WGW2uz3YJIUjLsYQ6rXNvgJGLrZSIkEEk07llLzMVXA=";
doCheck = false;
@@ -21,7 +21,7 @@ buildGoModule rec {
owner = "kubernetes";
repo = "minikube";
rev = "v${version}";
- sha256 = "sha256-8QI/Kn5LHSD3at7icmEDhjuYP811A4l+2KrRmKTwi8w=";
+ sha256 = "sha256-F+nPSWX9gs/hvOR6g8MW4b+JW+w3ScDaaF/FLHbLspY=";
};
nativeBuildInputs = [ go-bindata installShellFiles pkg-config which ];
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/tektoncd-cli/default.nix b/third_party/nixpkgs/pkgs/applications/networking/cluster/tektoncd-cli/default.nix
index c59c037148..9ab5b94251 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/tektoncd-cli/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/tektoncd-cli/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "tektoncd-cli";
- version = "0.17.1";
+ version = "0.17.2";
src = fetchFromGitHub {
owner = "tektoncd";
repo = "cli";
rev = "v${version}";
- sha256 = "sha256-xwUTSJ0rlNzQqGQp6jL03L4SuHUvvD3aWXxa1Xp0UyM=";
+ sha256 = "sha256-7VG9OFt1yVt4st8EM1aiRqLCHwjSqib28GoamoJHHnM=";
};
vendorSha256 = null;
diff --git a/third_party/nixpkgs/pkgs/applications/networking/cluster/terragrunt/default.nix b/third_party/nixpkgs/pkgs/applications/networking/cluster/terragrunt/default.nix
index b152fa33a8..718b0680eb 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/cluster/terragrunt/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/cluster/terragrunt/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "terragrunt";
- version = "0.28.19";
+ version = "0.28.20";
src = fetchFromGitHub {
owner = "gruntwork-io";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-REcVc4u7pDTDHvoI1Fw36Mioyg1D4U29Hq0ih8Bt95s=";
+ sha256 = "sha256-Hg4eeLFNm2cXUjp3T2VK6q+mgawqkHju9P3Vq9wnB9c=";
};
vendorSha256 = "sha256-kcRM76xfajtQist1aJTmaRludxRlfvHQ9ucB3LOgnBk=";
diff --git a/third_party/nixpkgs/pkgs/applications/networking/feedreaders/feeds/default.nix b/third_party/nixpkgs/pkgs/applications/networking/feedreaders/gnome-feeds/default.nix
similarity index 98%
rename from third_party/nixpkgs/pkgs/applications/networking/feedreaders/feeds/default.nix
rename to third_party/nixpkgs/pkgs/applications/networking/feedreaders/gnome-feeds/default.nix
index 8b83762089..a80d0aa28d 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/feedreaders/feeds/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/feedreaders/gnome-feeds/default.nix
@@ -17,8 +17,9 @@
, webkitgtk
, python3
}:
+
python3.pkgs.buildPythonApplication rec {
- pname = "feeds";
+ pname = "gnome-feeds";
version = "0.16.1";
src = fetchFromGitLab {
diff --git a/third_party/nixpkgs/pkgs/applications/networking/feedreaders/feeds/listparser.nix b/third_party/nixpkgs/pkgs/applications/networking/feedreaders/gnome-feeds/listparser.nix
similarity index 100%
rename from third_party/nixpkgs/pkgs/applications/networking/feedreaders/feeds/listparser.nix
rename to third_party/nixpkgs/pkgs/applications/networking/feedreaders/gnome-feeds/listparser.nix
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
index e821e182cd..98ede215e0 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
@@ -25,7 +25,7 @@ let
else "");
in stdenv.mkDerivation rec {
pname = "signal-desktop";
- version = "1.40.1"; # Please backport all updates to the stable channel.
+ version = "5.0.0"; # Please backport all updates to the stable channel.
# All releases have a limited lifetime and "expire" 90 days after the release.
# When releases "expire" the application becomes unusable until an update is
# applied. The expiration date for the current release can be extracted with:
@@ -35,7 +35,7 @@ in stdenv.mkDerivation rec {
src = fetchurl {
url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb";
- sha256 = "0k57r1x64w38n0295qdrf3p19d3z8m530h46ps0j2x0krhah47w7";
+ sha256 = "17hxg61m9kk1kph6ifqy6507kzx5hi6yafr2mj8n0a6c39vc8f9g";
};
nativeBuildInputs = [
@@ -96,6 +96,8 @@ in stdenv.mkDerivation rec {
dontAutoPatchelf = true;
installPhase = ''
+ runHook preInstall
+
mkdir -p $out/lib
mv usr/share $out/share
@@ -109,6 +111,8 @@ in stdenv.mkDerivation rec {
# Symlink to bin
mkdir -p $out/bin
ln -s $out/lib/Signal/signal-desktop $out/bin/signal-desktop
+
+ runHook postInstall
'';
preFixup = ''
@@ -136,7 +140,7 @@ in stdenv.mkDerivation rec {
'';
homepage = "https://signal.org/";
changelog = "https://github.com/signalapp/Signal-Desktop/releases/tag/v${version}";
- license = lib.licenses.gpl3;
+ license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ ixmatus primeos equirosa ];
platforms = [ "x86_64-linux" ];
};
diff --git a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/teams/default.nix b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/teams/default.nix
index aaa00e031d..498bee8aaf 100644
--- a/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/teams/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/networking/instant-messengers/teams/default.nix
@@ -15,11 +15,11 @@
stdenv.mkDerivation rec {
pname = "teams";
- version = "1.4.00.4855";
+ version = "1.4.00.7556";
src = fetchurl {
url = "https://packages.microsoft.com/repos/ms-teams/pool/main/t/teams/teams_${version}_amd64.deb";
- sha256 = "1g0lsydz4l536qf890drdz6g86xb0sm3326hz3ymj9pi8vvbs7d9";
+ sha256 = "0yak3jxh0gdn57wjss0s7sdjssf1b70j0klrcpv66bizqvw1xl7b";
};
nativeBuildInputs = [ dpkg autoPatchelfHook wrapGAppsHook ];
diff --git a/third_party/nixpkgs/pkgs/applications/science/physics/sherpa/default.nix b/third_party/nixpkgs/pkgs/applications/science/physics/sherpa/default.nix
index 858064a8d2..ba519cc2d0 100644
--- a/third_party/nixpkgs/pkgs/applications/science/physics/sherpa/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/science/physics/sherpa/default.nix
@@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
"--enable-fastjet=${fastjet}"
"--enable-lhapdf=${lhapdf}"
"--enable-rivet=${rivet}"
+ "--enable-pythia"
];
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/applications/terminal-emulators/wezterm/default.nix b/third_party/nixpkgs/pkgs/applications/terminal-emulators/wezterm/default.nix
index 12abd98beb..8db5152137 100644
--- a/third_party/nixpkgs/pkgs/applications/terminal-emulators/wezterm/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/terminal-emulators/wezterm/default.nix
@@ -2,22 +2,16 @@
, rustPlatform
, lib
, fetchFromGitHub
-
, pkg-config
, fontconfig
, python3
, openssl
, perl
-
-# Apple frameworks
-, CoreGraphics
-, Cocoa
-, Foundation
-
, dbus
, libX11
, xcbutil
, libxcb
+, xcbutilimage
, xcbutilkeysyms
, xcbutilwm # contains xcb-ewmh among others
, libxkbcommon
@@ -28,6 +22,11 @@
, libGL
, freetype
, zlib
+# Apple frameworks
+, CoreGraphics
+, Cocoa
+, Foundation
+, libiconv
}:
let
runtimeDeps = [
@@ -38,6 +37,7 @@ let
libX11
xcbutil
libxcb
+ xcbutilimage
xcbutilkeysyms
xcbutilwm
libxkbcommon
@@ -47,51 +47,48 @@ let
wayland
libGLU
libGL
+ openssl
] ++ lib.optionals (stdenv.isDarwin) [
Foundation
CoreGraphics
Cocoa
+ libiconv
];
- pname = "wezterm";
in
-rustPlatform.buildRustPackage {
- inherit pname;
- version = "unstable-2020-11-22";
+rustPlatform.buildRustPackage rec {
+ pname = "wezterm";
+ version = "20210407-nightly";
src = fetchFromGitHub {
owner = "wez";
repo = pname;
- rev = "3bd8d8c84591f4d015ff9a47ddb478e55c231fda";
- sha256 = "13xf3685kir4p159hsxrqkj9p2lwgfp0n13h9zadslrd44l8b8j8";
+ rev = "d2419fb99e567e3b260980694cc840a1a3b86922";
+ sha256 = "4tVjrdDlrDPKzcbTYK9vRlzfC9tfvkD+D0aN19A8RWE=";
fetchSubmodules = true;
};
- cargoSha256 = "1ghjpyd3f5dqi6bblr6d2lihdschpyj5djfd1600hvb41x75lmhx";
+
+ cargoSha256 = "sha256-UaXeeuRuQk+CWF936mEAaWTjZuTSRPmxbQ/9E2oZIqg=";
nativeBuildInputs = [
pkg-config
python3
- openssl.dev
perl
];
buildInputs = runtimeDeps;
- installPhase = "" + lib.optionalString stdenv.isLinux ''
+ preFixup = lib.optionalString stdenv.isLinux ''
for artifact in wezterm wezterm-gui wezterm-mux-server strip-ansi-escapes; do
- patchelf --set-rpath "${lib.makeLibraryPath runtimeDeps}" $releaseDir/$artifact
- install -D $releaseDir/$artifact -t $out/bin
+ patchelf --set-rpath "${lib.makeLibraryPath runtimeDeps}" $out/bin/$artifact
done
'' + lib.optionalString stdenv.isDarwin ''
- mkdir -p "$out/Applications"
- OUT_APP="$out/Applications/WezTerm.app"
- cp -r assets/macos/WezTerm.app "$OUT_APP"
- rm $OUT_APP/*.dylib
- cp -r assets/shell-integration/* "$OUT_APP"
- cp $releaseDir/wezterm "$OUT_APP"
- cp $releaseDir/wezterm-mux-server "$OUT_APP"
- cp $releaseDir/wezterm-gui "$OUT_APP"
- cp $releaseDir/strip-ansi-escapes "$OUT_APP"
+ mkdir -p "$out/Applications"
+ OUT_APP="$out/Applications/WezTerm.app"
+ cp -r assets/macos/WezTerm.app "$OUT_APP"
+ rm $OUT_APP/*.dylib
+ cp -r assets/shell-integration/* "$OUT_APP"
+ ln -s $out/bin/{wezterm,wezterm-mux-server,wezterm-gui,strip-ansi-escapes} "$OUT_APP"
'';
# prevent further changes to the RPATH
@@ -101,7 +98,7 @@ rustPlatform.buildRustPackage {
description = "A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust";
homepage = "https://wezfurlong.org/wezterm";
license = licenses.mit;
- maintainers = with maintainers; [ steveej ];
+ maintainers = with maintainers; [ steveej SuperSandro2000 ];
platforms = platforms.unix;
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/cvs/default.nix b/third_party/nixpkgs/pkgs/applications/version-management/cvs/default.nix
index 273433298f..2879b688c6 100644
--- a/third_party/nixpkgs/pkgs/applications/version-management/cvs/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/version-management/cvs/default.nix
@@ -28,14 +28,23 @@ stdenv.mkDerivation {
done
'';
- buildInputs = [ nano ];
+ configureFlags = [
+ "--with-editor=${nano}/bin/nano"
+
+ # Required for cross-compilation.
+ "cvs_cv_func_printf_ptr=yes"
+ ];
+
+ makeFlags = [
+ "AR=${stdenv.cc.targetPrefix}ar"
+ ];
doCheck = false; # fails 1 of 1 tests
meta = with lib; {
homepage = "http://cvs.nongnu.org";
description = "Concurrent Versions System - a source control system";
- license = licenses.gpl2; # library is GPLv2, main is GPLv1
+ license = licenses.gpl2Plus; # library is GPLv2, main is GPLv1
platforms = platforms.all;
};
}
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-cinnabar/default.nix b/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-cinnabar/default.nix
index e7eea5e43a..91c1b38de5 100644
--- a/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-cinnabar/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-cinnabar/default.nix
@@ -8,13 +8,13 @@ in
stdenv.mkDerivation rec {
pname = "git-cinnabar";
- version = "0.5.6";
+ version = "0.5.7";
src = fetchFromGitHub {
owner = "glandium";
repo = "git-cinnabar";
rev = version;
- sha256 = "1wbp4xqpkaqhhkjw8rbbsagwiciqffacqqbm4j49q41mlk371ai3";
+ sha256 = "04dsjlsw98avrckldx7rc70b2zsbajzkyqqph4c7d9xd5djh3yaj";
fetchSubmodules = true;
};
diff --git a/third_party/nixpkgs/pkgs/applications/version-management/gitkraken/default.nix b/third_party/nixpkgs/pkgs/applications/version-management/gitkraken/default.nix
index 63fd61f667..7e4b7a8407 100644
--- a/third_party/nixpkgs/pkgs/applications/version-management/gitkraken/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/version-management/gitkraken/default.nix
@@ -13,11 +13,11 @@ let
in
stdenv.mkDerivation rec {
pname = "gitkraken";
- version = "7.5.4";
+ version = "7.5.5";
src = fetchzip {
url = "https://release.axocdn.com/linux/GitKraken-v${version}.tar.gz";
- sha256 = "1laqki01zcmsl9s18dnwg3x3jbbs0xcipiyj2qlsb1sx9y4x05wm";
+ sha256 = "0l40ap0ck2ywjarmn7lmpw4qbsdkx717d9kmx67p4qlmbwpimqhg";
};
dontBuild = true;
diff --git a/third_party/nixpkgs/pkgs/applications/virtualization/singularity/default.nix b/third_party/nixpkgs/pkgs/applications/virtualization/singularity/default.nix
index 28e28fa591..fe66df0c6d 100644
--- a/third_party/nixpkgs/pkgs/applications/virtualization/singularity/default.nix
+++ b/third_party/nixpkgs/pkgs/applications/virtualization/singularity/default.nix
@@ -15,11 +15,11 @@ with lib;
buildGoPackage rec {
pname = "singularity";
- version = "3.7.2";
+ version = "3.7.3";
src = fetchurl {
url = "https://github.com/hpcng/singularity/releases/download/v${version}/singularity-${version}.tar.gz";
- sha256 = "sha256-NpFiIuJvuTRATwdm4P82jtrDbX/DHKVx9fYJRmYJBms=";
+ sha256 = "sha256-ZmfriHXStm1zUE9AyVa0KxNRdE9IjRZCBDdiFdiF2lw=";
};
goPackagePath = "github.com/sylabs/singularity";
diff --git a/third_party/nixpkgs/pkgs/applications/window-managers/e16/default.nix b/third_party/nixpkgs/pkgs/applications/window-managers/e16/default.nix
new file mode 100644
index 0000000000..7028dcfc09
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/applications/window-managers/e16/default.nix
@@ -0,0 +1,62 @@
+{ lib
+, stdenv
+, fetchurl
+, pkg-config
+, freetype
+, imlib2
+, libSM
+, libXcomposite
+, libXdamage
+, libXext
+, libXfixes
+, libXft
+, libXinerama
+, libXrandr
+, libpulseaudio
+, libsndfile
+, pango
+, perl
+}:
+
+stdenv.mkDerivation rec {
+ pname = "e16";
+ version = "1.0.23";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/enlightenment/e16-${version}.tar.xz";
+ sha256 = "028rn1plggacsvdd035qnnph4xw8nya34mmjvvl7d4gqj9pj293f";
+ };
+
+ nativeBuildInputs = [
+ pkg-config
+ ];
+
+ buildInputs = [
+ freetype
+ imlib2
+ libSM
+ libXcomposite
+ libXdamage
+ libXext
+ libXfixes
+ libXft
+ libXinerama
+ libXrandr
+ libpulseaudio
+ libsndfile
+ pango
+ perl
+ ];
+
+ postPatch = ''
+ substituteInPlace scripts/e_gen_menu --replace "/usr/local:" "/run/current-system/sw:/usr/local:"
+ '';
+
+ meta = with lib; {
+ homepage = "https://www.enlightenment.org/e16";
+ description = "Enlightenment DR16 window manager";
+ license = licenses.bsd2;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/desktops/gnome-3/extensions/system-monitor/default.nix b/third_party/nixpkgs/pkgs/desktops/gnome-3/extensions/system-monitor/default.nix
index 77e3f48850..3935150c57 100644
--- a/third_party/nixpkgs/pkgs/desktops/gnome-3/extensions/system-monitor/default.nix
+++ b/third_party/nixpkgs/pkgs/desktops/gnome-3/extensions/system-monitor/default.nix
@@ -1,14 +1,14 @@
-{ lib, stdenv, substituteAll, fetchpatch, fetchFromGitHub, glib, glib-networking, libgtop, gnome3 }:
+{ lib, stdenv, substituteAll, fetchFromGitHub, glib, glib-networking, libgtop, gnome3 }:
stdenv.mkDerivation rec {
pname = "gnome-shell-system-monitor";
- version = "2020-04-27-unstable";
+ version = "unstable-2021-04-08";
src = fetchFromGitHub {
owner = "paradoxxxzero";
repo = "gnome-shell-system-monitor-applet";
- rev = "7f8f0a7b255473941f14d1dcaa35ebf39d3bccd0";
- sha256 = "tUUvBY0UEUE+T79zVZEAICpKoriFZuuZzi9ArdHdXks=";
+ rev = "942603da39de12f50b1f86efbde92d7526d1290e";
+ sha256 = "0lzb7064bigw2xsqkzr8qfhp9wfmxyi3823j2782v99jpcz423aw";
};
buildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/coq-modules/coq-elpi/default.nix b/third_party/nixpkgs/pkgs/development/coq-modules/coq-elpi/default.nix
index c4dd7d74eb..f945096ee9 100644
--- a/third_party/nixpkgs/pkgs/development/coq-modules/coq-elpi/default.nix
+++ b/third_party/nixpkgs/pkgs/development/coq-modules/coq-elpi/default.nix
@@ -12,16 +12,21 @@ in mkCoqDerivation {
owner = "LPCIC";
inherit version;
defaultVersion = lib.switch coq.coq-version [
- { case = "8.13"; out = "1.9.4"; }
- { case = "8.12"; out = "1.8.0"; }
- { case = "8.11"; out = "1.6.1_8.11"; }
+ { case = "8.13"; out = "1.9.5"; }
+ { case = "8.12"; out = "1.8.2_8.12"; }
+ { case = "8.11"; out = "1.6.2_8.11"; }
] null;
+ release."1.9.5".sha256 = "0gjdwmb6bvb5gh0a6ra48bz5fb3pr5kpxijb7a8mfydvar5i9qr6";
release."1.9.4".sha256 = "0nii7238mya74f9g6147qmpg6gv6ic9b54x5v85nb6q60d9jh0jq";
release."1.9.3".sha256 = "198irm800fx3n8n56vx1c6f626cizp1d7jfkrc6ba4iqhb62ma0z";
release."1.9.2".sha256 = "1rr2fr8vjkc0is7vh1461aidz2iwkigdkp6bqss4hhv0c3ijnn07";
+ release."1.8.2_8.12".sha256 = "1n6jwcdazvjgj8vsv2r9zgwpw5yqr5a1ndc2pwhmhqfl04b5dk4y";
+ release."1.8.2_8.12".version = "1.8.2";
release."1.8.1".sha256 = "1fbbdccdmr8g4wwpihzp4r2xacynjznf817lhijw6kqfav75zd0r";
release."1.8.0".sha256 = "13ywjg94zkbki22hx7s4gfm9rr87r4ghsgan23xyl3l9z8q0idd1";
release."1.7.0".sha256 = "1ws5cqr0xawv69prgygbl3q6dgglbaw0vc397h9flh90kxaqgyh8";
+ release."1.6.2_8.11".sha256 = "06xrx0ljilwp63ik2sxxr7h617dgbch042xfcnfpy5x96br147rn";
+ release."1.6.2_8.11".version = "1.6.2";
release."1.6.1_8.11".sha256 = "0yyyh35i1nb3pg4hw7cak15kj4y6y9l84nwar9k1ifdsagh5zq53";
release."1.6.1_8.11".version = "1.6.1";
release."1.6.0_8.11".sha256 = "0ahxjnzmd7kl3gl38kyjqzkfgllncr2ybnw8bvgrc6iddgga7bpq";
diff --git a/third_party/nixpkgs/pkgs/development/libraries/civetweb/default.nix b/third_party/nixpkgs/pkgs/development/libraries/civetweb/default.nix
index fbbfb6ba73..398ca028c0 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/civetweb/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/civetweb/default.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
pname = "civetweb";
- version = "1.13";
+ version = "1.14";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
- sha256 = "/q7Q1lavIR3i126uI4NsKByHJ6Tp+DSN60R4YxR506U=";
+ sha256 = "sha256-6qBsM9zkN838cMtpE3+c7qcrFpZCS/Av7Ch7EWmlnD4=";
};
makeFlags = [
diff --git a/third_party/nixpkgs/pkgs/development/libraries/openimagedenoise/1_2_x.nix b/third_party/nixpkgs/pkgs/development/libraries/openimagedenoise/1_2_x.nix
new file mode 100644
index 0000000000..10f6abd79e
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/libraries/openimagedenoise/1_2_x.nix
@@ -0,0 +1,23 @@
+{ lib, stdenv, fetchzip, cmake, tbb, python3, ispc }:
+
+stdenv.mkDerivation rec {
+ pname = "openimagedenoise";
+ version = "1.2.2";
+
+ # The release tarballs include pretrained weights, which would otherwise need to be fetched with git-lfs
+ src = fetchzip {
+ url = "https://github.com/OpenImageDenoise/oidn/releases/download/v${version}/oidn-${version}.src.tar.gz";
+ sha256 = "0wyaarjxkzlvljmpnr7qm06ma2wl1aik3z664gwpzhizswygk6yp";
+ };
+
+ nativeBuildInputs = [ cmake python3 ispc ];
+ buildInputs = [ tbb ];
+
+ meta = with lib; {
+ homepage = "https://openimagedenoise.github.io";
+ description = "High-Performance Denoising Library for Ray Tracing";
+ license = licenses.asl20;
+ maintainers = [ maintainers.leshainc ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/libraries/openimagedenoise/default.nix b/third_party/nixpkgs/pkgs/development/libraries/openimagedenoise/default.nix
index 03f9118ef7..61ffdcbb5c 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/openimagedenoise/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/openimagedenoise/default.nix
@@ -1,16 +1,16 @@
-{ lib, stdenv, fetchzip, cmake, tbb, python, ispc }:
+{ lib, stdenv, fetchzip, cmake, tbb, python3, ispc }:
stdenv.mkDerivation rec {
pname = "openimagedenoise";
- version = "1.2.2";
+ version = "1.3.0";
# The release tarballs include pretrained weights, which would otherwise need to be fetched with git-lfs
src = fetchzip {
url = "https://github.com/OpenImageDenoise/oidn/releases/download/v${version}/oidn-${version}.src.tar.gz";
- sha256 = "0wyaarjxkzlvljmpnr7qm06ma2wl1aik3z664gwpzhizswygk6yp";
+ sha256 = "sha256-ls0F2D5pC+wqhQn1Zh8m8Q/KoK7rAkhKatTY9k+letQ=";
};
- nativeBuildInputs = [ cmake python ispc ];
+ nativeBuildInputs = [ cmake python3 ispc ];
buildInputs = [ tbb ];
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/development/libraries/proj/5.2.nix b/third_party/nixpkgs/pkgs/development/libraries/proj/5.2.nix
deleted file mode 100644
index ee76c66871..0000000000
--- a/third_party/nixpkgs/pkgs/development/libraries/proj/5.2.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ lib, stdenv, fetchurl }:
-
-stdenv.mkDerivation {
- name = "proj-5.2.0";
-
- src = fetchurl {
- url = "https://download.osgeo.org/proj/proj-5.2.0.tar.gz";
- sha256 = "0q3ydh2j8qhwlxmnac72pg69rw2znbi5b6k5wama8qmwzycr94gg";
- };
-
- doCheck = stdenv.is64bit;
-
- meta = with lib; {
- description = "Cartographic Projections Library";
- homepage = "https://proj4.org";
- license = licenses.mit;
- platforms = platforms.linux ++ platforms.darwin;
- maintainers = with maintainers; [ vbgl ];
- };
-}
diff --git a/third_party/nixpkgs/pkgs/development/libraries/proj/default.nix b/third_party/nixpkgs/pkgs/development/libraries/proj/default.nix
index 22d6206fd8..92119a8788 100644
--- a/third_party/nixpkgs/pkgs/development/libraries/proj/default.nix
+++ b/third_party/nixpkgs/pkgs/development/libraries/proj/default.nix
@@ -1,21 +1,21 @@
-{ lib, stdenv, fetchFromGitHub, pkg-config, sqlite, autoreconfHook }:
+{ lib, stdenv, fetchFromGitHub, pkg-config, sqlite, autoreconfHook, libtiff, curl }:
stdenv.mkDerivation rec {
pname = "proj";
- version = "6.3.1";
+ version = "7.2.1";
src = fetchFromGitHub {
owner = "OSGeo";
repo = "PROJ";
rev = version;
- sha256 = "1ildcp57qsa01kvv2qxd05nqw5mg0wfkksiv9l138dbhp0s7rkxp";
+ sha256 = "0mymvfvs8xggl4axvlj7kc1ksd9g94kaz6w1vdv0x2y5mqk93gx9";
};
outputs = [ "out" "dev"];
nativeBuildInputs = [ pkg-config autoreconfHook ];
- buildInputs = [ sqlite ];
+ buildInputs = [ sqlite libtiff curl ];
doCheck = stdenv.is64bit;
diff --git a/third_party/nixpkgs/pkgs/development/libraries/redkite/default.nix b/third_party/nixpkgs/pkgs/development/libraries/redkite/default.nix
deleted file mode 100644
index eb3d7629a4..0000000000
--- a/third_party/nixpkgs/pkgs/development/libraries/redkite/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, cmake, cairo }:
-
-stdenv.mkDerivation rec {
- pname = "redkite";
- version = "1.3.1";
-
- src = fetchFromGitHub {
- owner = "iurie-sw";
- repo = pname;
- rev = "v${version}";
- sha256 = "sha256-bf8kz9RyhDDuUHKiKvLiQLBIEXbIyoy3yuKfSpSYYv0=";
- };
-
- nativeBuildInputs = [ cmake ];
-
- buildInputs = [ cairo ];
-
- meta = with lib; {
- homepage = "https://gitlab.com/iurie-sw/redkite";
- description = "A small GUI toolkit";
- license = licenses.gpl3Plus;
- platforms = platforms.linux;
- maintainers = [ maintainers.magnetophon ];
- };
-}
diff --git a/third_party/nixpkgs/pkgs/development/node-packages/node-packages.json b/third_party/nixpkgs/pkgs/development/node-packages/node-packages.json
index 01f87779a8..56acc29b94 100644
--- a/third_party/nixpkgs/pkgs/development/node-packages/node-packages.json
+++ b/third_party/nixpkgs/pkgs/development/node-packages/node-packages.json
@@ -29,6 +29,7 @@
, "coc-diagnostic"
, "coc-emmet"
, "coc-eslint"
+, "coc-explorer"
, "coc-git"
, "coc-go"
, "coc-highlight"
@@ -141,6 +142,7 @@
, "karma"
, "lcov-result-merger"
, "leetcode-cli"
+, "vsc-leetcode-cli"
, "lerna"
, "less"
, "less-plugin-clean-css"
diff --git a/third_party/nixpkgs/pkgs/development/node-packages/node-packages.nix b/third_party/nixpkgs/pkgs/development/node-packages/node-packages.nix
index 505b256037..044ece3dd5 100644
--- a/third_party/nixpkgs/pkgs/development/node-packages/node-packages.nix
+++ b/third_party/nixpkgs/pkgs/development/node-packages/node-packages.nix
@@ -49,13 +49,13 @@ let
sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww==";
};
};
- "@angular-devkit/architect-0.1102.7" = {
+ "@angular-devkit/architect-0.1102.8" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1102.7";
+ version = "0.1102.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1102.7.tgz";
- sha512 = "55SduK1ZpoHDSNd5ACBFVUQ5dMNVLOznJDoec76acrDuY7EZ6bptfjcK329fBQME0Ne6Jvip7zzrmec+PBXS+g==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1102.8.tgz";
+ sha512 = "EMl81SRyTntjE9U9m4piGvlbs2PdmBTVl2LS8GK3fimunlIzebu9WhDwAmqZdm4HEXiYmiBcCbVaHkYTU8k0Kg==";
};
};
"@angular-devkit/core-11.2.4" = {
@@ -76,13 +76,13 @@ let
sha512 = "3dA0Z6sIIxCDjZS/DucgmIKti7EZ/LgHoHgCO72Q50H5ZXbUSNBz5wGl5hVq2+gzrnFgU/0u40MIs6eptk30ZA==";
};
};
- "@angular-devkit/core-11.2.7" = {
+ "@angular-devkit/core-11.2.8" = {
name = "_at_angular-devkit_slash_core";
packageName = "@angular-devkit/core";
- version = "11.2.7";
+ version = "11.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/core/-/core-11.2.7.tgz";
- sha512 = "oflo+LsUob5nF0PknivtRdkHH/iMbVNIPRnv/c52Nk7+FUlEx53pkLWBc2rdhTrEptBFMmrpNaa30P+TQrFNkQ==";
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-11.2.8.tgz";
+ sha512 = "iNodaySWW1JrF+oGZCi0rYDJXO96T4K7H6BLz6xapSwFxkY+Xr4CBuTqEp2DKzAZ+sjYFmsItLmNedwOOBnwfA==";
};
};
"@angular-devkit/schematics-11.2.4" = {
@@ -103,13 +103,13 @@ let
sha512 = "bhi2+5xtVAjtr3bsXKT8pnoBamQrArd/Y20ueA4Od7cd38YT97nzTA1wyHBFG0vWd0HMyg42ZS0aycNBuOebaA==";
};
};
- "@angular-devkit/schematics-11.2.7" = {
+ "@angular-devkit/schematics-11.2.8" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
- version = "11.2.7";
+ version = "11.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-11.2.7.tgz";
- sha512 = "cnORKnyVtsdVZ180ZZyrmCMeSH1IGK2apfgGGW3UaUZvTAtolQPrqT0RQUK8qLF/RC85xy9QYXApiAaLDUixIw==";
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-11.2.8.tgz";
+ sha512 = "EoCgDPr4VfDajoCW5/XDTyxEnaNjE+9XXVp9mXWYMMSBxKCZIrbieN4+SpjxyKDBl2ZKtTtZU1zWJ2Yerk66Cg==";
};
};
"@angular-devkit/schematics-cli-0.1102.6" = {
@@ -337,13 +337,13 @@ let
sha512 = "HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==";
};
};
- "@babel/compat-data-7.13.12" = {
+ "@babel/compat-data-7.13.15" = {
name = "_at_babel_slash_compat-data";
packageName = "@babel/compat-data";
- version = "7.13.12";
+ version = "7.13.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.12.tgz";
- sha512 = "3eJJ841uKxeV8dcN/2yGEUy+RfgQspPEgQat85umsE1rotuquQ2AbIub4S6j7c50a2d+4myc+zSlnXeIHrOnhQ==";
+ url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.15.tgz";
+ sha512 = "ltnibHKR1VnrU4ymHyQ/CXtNXI6yZC0oJThyW78Hft8XndANwi+9H+UIklBDraIjFEJzw8wmcM427oDd9KS5wA==";
};
};
"@babel/core-7.10.5" = {
@@ -355,13 +355,13 @@ let
sha512 = "O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==";
};
};
- "@babel/core-7.13.14" = {
+ "@babel/core-7.13.15" = {
name = "_at_babel_slash_core";
packageName = "@babel/core";
- version = "7.13.14";
+ version = "7.13.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/core/-/core-7.13.14.tgz";
- sha512 = "wZso/vyF4ki0l0znlgM4inxbdrUvCb+cVz8grxDq+6C9k6qbqoIJteQOKicaKjCipU3ISV+XedCqpL2RJJVehA==";
+ url = "https://registry.npmjs.org/@babel/core/-/core-7.13.15.tgz";
+ sha512 = "6GXmNYeNjS2Uz+uls5jalOemgIhnTMeaXo+yBUA72kC2uX/8VW6XyhVIo2L8/q0goKQA3EVKx0KOQpVKSeWadQ==";
};
};
"@babel/core-7.9.0" = {
@@ -427,13 +427,13 @@ let
sha512 = "p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==";
};
};
- "@babel/helper-define-polyfill-provider-0.1.5" = {
+ "@babel/helper-define-polyfill-provider-0.2.0" = {
name = "_at_babel_slash_helper-define-polyfill-provider";
packageName = "@babel/helper-define-polyfill-provider";
- version = "0.1.5";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz";
- sha512 = "nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==";
+ url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.0.tgz";
+ sha512 = "JT8tHuFjKBo8NnaUbblz7mIu1nnvUDiHVjXXkulZULyidvo/7P6TY7+YqpV37IfF+KUFxmlK04elKtGKXaiVgw==";
};
};
"@babel/helper-explode-assignable-expression-7.13.0" = {
@@ -616,13 +616,13 @@ let
sha512 = "5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==";
};
};
- "@babel/parser-7.13.13" = {
+ "@babel/parser-7.13.15" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.13.13";
+ version = "7.13.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.13.13.tgz";
- sha512 = "OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.13.15.tgz";
+ sha512 = "b9COtcAlVEQljy/9fbcMHpG+UIW9ReF+gpaxDHTlZd0c6/UU9ng8zdySAW9sRTzpvcdCHn6bUcbuYUgGzLAWVQ==";
};
};
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12" = {
@@ -643,13 +643,13 @@ let
sha512 = "mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw==";
};
};
- "@babel/plugin-proposal-async-generator-functions-7.13.8" = {
+ "@babel/plugin-proposal-async-generator-functions-7.13.15" = {
name = "_at_babel_slash_plugin-proposal-async-generator-functions";
packageName = "@babel/plugin-proposal-async-generator-functions";
- version = "7.13.8";
+ version = "7.13.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz";
- sha512 = "rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.15.tgz";
+ sha512 = "VapibkWzFeoa6ubXy/NgV5U2U4MVnUlvnx6wo1XhlsaTrLYWE0UFpDQsVrmn22q5CzeloqJ8gEMHSKxuee6ZdA==";
};
};
"@babel/plugin-proposal-class-properties-7.12.13" = {
@@ -1219,13 +1219,13 @@ let
sha512 = "O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q==";
};
};
- "@babel/plugin-transform-regenerator-7.12.13" = {
+ "@babel/plugin-transform-regenerator-7.13.15" = {
name = "_at_babel_slash_plugin-transform-regenerator";
packageName = "@babel/plugin-transform-regenerator";
- version = "7.12.13";
+ version = "7.13.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz";
- sha512 = "lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.13.15.tgz";
+ sha512 = "Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ==";
};
};
"@babel/plugin-transform-reserved-words-7.12.13" = {
@@ -1237,13 +1237,13 @@ let
sha512 = "xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==";
};
};
- "@babel/plugin-transform-runtime-7.13.10" = {
+ "@babel/plugin-transform-runtime-7.13.15" = {
name = "_at_babel_slash_plugin-transform-runtime";
packageName = "@babel/plugin-transform-runtime";
- version = "7.13.10";
+ version = "7.13.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.13.10.tgz";
- sha512 = "Y5k8ipgfvz5d/76tx7JYbKQTcgFSU6VgJ3kKQv4zGTKr+a9T/KBvfRvGtSFgKDQGt/DBykQixV0vNWKIdzWErA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.13.15.tgz";
+ sha512 = "d+ezl76gx6Jal08XngJUkXM4lFXK/5Ikl9Mh4HKDxSfGJXmZ9xG64XT2oivBzfxb/eQ62VfvoMkaCZUKJMVrBA==";
};
};
"@babel/plugin-transform-shorthand-properties-7.12.13" = {
@@ -1327,13 +1327,13 @@ let
sha512 = "9PMijx8zFbCwTHrd2P4PJR5nWGH3zWebx2OcpTjqQrHhCiL2ssSR2Sc9ko2BsI2VmVBfoaQmPrlMTCui4LmXQg==";
};
};
- "@babel/preset-env-7.13.12" = {
+ "@babel/preset-env-7.13.15" = {
name = "_at_babel_slash_preset-env";
packageName = "@babel/preset-env";
- version = "7.13.12";
+ version = "7.13.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.12.tgz";
- sha512 = "JzElc6jk3Ko6zuZgBtjOd01pf9yYDEIH8BcqVuYIuOkzOwDesoa/Nz4gIo4lBG6K861KTV9TvIgmFuT6ytOaAA==";
+ url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.15.tgz";
+ sha512 = "D4JAPMXcxk69PKe81jRJ21/fP/uYdcTZ3hJDF5QX2HSI9bBxxYw/dumdR6dGumhjxlprHPE4XWoPaqzZUVy2MA==";
};
};
"@babel/preset-flow-7.13.13" = {
@@ -1417,13 +1417,22 @@ let
sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==";
};
};
- "@babel/standalone-7.13.14" = {
+ "@babel/runtime-corejs3-7.13.10" = {
+ name = "_at_babel_slash_runtime-corejs3";
+ packageName = "@babel/runtime-corejs3";
+ version = "7.13.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.13.10.tgz";
+ sha512 = "x/XYVQ1h684pp1mJwOV4CyvqZXqbc8CMsMGUnAbuc82ZCdv1U63w5RSUzgDSXQHG5Rps/kiksH6g2D5BuaKyXg==";
+ };
+ };
+ "@babel/standalone-7.13.15" = {
name = "_at_babel_slash_standalone";
packageName = "@babel/standalone";
- version = "7.13.14";
+ version = "7.13.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.13.14.tgz";
- sha512 = "ZhIZaufaCVMuGt9yLlNTO/ORtI6xNKIHK0D/uEdVUYmS8xROOPgDPZtYesmXBA+xlArlCj5s94g4Nz4g0m0ytA==";
+ url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.13.15.tgz";
+ sha512 = "gKEx9cfMLJegKYYVnI1/4swITcWQa2/e0HlAU9S/+h94xGdyXtoYVQiz8gcXabQ/8MMlOwGclkRoTL3cAxplZg==";
};
};
"@babel/template-7.12.13" = {
@@ -1435,13 +1444,13 @@ let
sha512 = "/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==";
};
};
- "@babel/traverse-7.13.13" = {
+ "@babel/traverse-7.13.15" = {
name = "_at_babel_slash_traverse";
packageName = "@babel/traverse";
- version = "7.13.13";
+ version = "7.13.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.13.tgz";
- sha512 = "CblEcwmXKR6eP43oQGG++0QMTtCjAsa3frUuzHoiIJWpaIIi8dwMyEFUJoXRLxagGqCK+jALRwIO+o3R9p/uUg==";
+ url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.15.tgz";
+ sha512 = "/mpZMNvj6bce59Qzl09fHEs8Bt8NnpEDQYleHUPZQ3wXUMvXi+HJPLars68oAbmp839fGoOkv2pSL2z9ajCIaQ==";
};
};
"@babel/types-7.13.14" = {
@@ -1957,22 +1966,22 @@ let
sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==";
};
};
- "@expo/config-3.3.34" = {
+ "@expo/config-3.3.35" = {
name = "_at_expo_slash_config";
packageName = "@expo/config";
- version = "3.3.34";
+ version = "3.3.35";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/config/-/config-3.3.34.tgz";
- sha512 = "Yekmn9sIm70vGUwugXlL/jpTQufTJXV7IrYWvFKd4B8ZwdMBFK08NY2XBwvl+jJOVdhmLe+yHc44bCmrEPb6vA==";
+ url = "https://registry.npmjs.org/@expo/config/-/config-3.3.35.tgz";
+ sha512 = "0jYSYBCge8s9TqvUbky64lWvpdAHKB9V+e4OrKOmxF8MILmBq2fYHiHkywn5VU7OaWiJQJixhrNUEBHWLJm4ig==";
};
};
- "@expo/config-plugins-1.0.24" = {
+ "@expo/config-plugins-1.0.25" = {
name = "_at_expo_slash_config-plugins";
packageName = "@expo/config-plugins";
- version = "1.0.24";
+ version = "1.0.25";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-1.0.24.tgz";
- sha512 = "DB4CgkeZEKG2DWC0GzbLSHuWlxWZ6d3wE95Cjy6DOyR60cFyxo+1eriaxLaBCApX3KrFAdxJFsxvwK9zbCtuzQ==";
+ url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-1.0.25.tgz";
+ sha512 = "iRoBWnkMsGxrSxfXUXWpVfxpGjTUipI60+w9vO/QdXH02wFrS4k/jcZ4OSlPJMxpU/Lv5kgvgjvcJ22/SJpRow==";
};
};
"@expo/config-types-40.0.0-beta.2" = {
@@ -1993,22 +2002,22 @@ let
sha512 = "HsukM03X5/EXSucVsLN/oLqyFq/1jAjpADkgU1HLaezFpkr+TOquI6yDwdDp1450kcm891PE/SYJ+mCdPxzDLw==";
};
};
- "@expo/dev-server-0.1.60" = {
+ "@expo/dev-server-0.1.61" = {
name = "_at_expo_slash_dev-server";
packageName = "@expo/dev-server";
- version = "0.1.60";
+ version = "0.1.61";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.60.tgz";
- sha512 = "tm+l8enWZ//2nst6s91V+29KwXlA69bFhG6b50lTXfY++7Q0OaOsDoGl3cQaWHKo2K3MQ/7C8riIGf7q6T5wjg==";
+ url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.61.tgz";
+ sha512 = "Jo2WN5by6XvOu75cZMySTupo3izlPYFT3mITckaG1pMZnU76cAjC5C8Nd2gKPsZ+GHDilJ9eoZBt4JhG+wqDyw==";
};
};
- "@expo/dev-tools-0.13.89" = {
+ "@expo/dev-tools-0.13.90" = {
name = "_at_expo_slash_dev-tools";
packageName = "@expo/dev-tools";
- version = "0.13.89";
+ version = "0.13.90";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.89.tgz";
- sha512 = "8qlcd46x5CJU2VR+IL3MoHY0eScLe9Io2ibzvuFK+7kNP3gQle/LU+biAKtWIfUVlp4+xzEaAiDc202RTtHhqA==";
+ url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.90.tgz";
+ sha512 = "ANLi8TjjzZA1m4k0PFANMYj/NROMuRQUx92M8VG2CRjd/tl/5GOlJhfbVe0W3M+MOZZ+roLxl7c+TvbneZ7zsg==";
};
};
"@expo/devcert-1.0.0" = {
@@ -2038,13 +2047,13 @@ let
sha512 = "C28McDuCIOmCmp6e2ZgIpNaT/fZG+L3/WFv5x2DCrooOQmamrkLSH/4Dib0NUmLgWVhgIhXL2hU4RB+LjzVvkQ==";
};
};
- "@expo/metro-config-0.1.60" = {
+ "@expo/metro-config-0.1.61" = {
name = "_at_expo_slash_metro-config";
packageName = "@expo/metro-config";
- version = "0.1.60";
+ version = "0.1.61";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.60.tgz";
- sha512 = "aA/UMZ5ga1QfF9pN1rYvwTg7ez/Ptz6vSFWyOdYM00X+egKlQFDwe8UuMKiUZUHaLFJ3XbixMLTIvDVdnVxk7w==";
+ url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.61.tgz";
+ sha512 = "Fig2G+Nqw42qzWBRylBF8sPlrQXo9aBIZx+17uVQzjGVs668zblIe+04k3BiIeLvGmKPvZSl7SIf767yaIP+dg==";
};
};
"@expo/osascript-2.0.25" = {
@@ -2110,22 +2119,22 @@ let
sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==";
};
};
- "@expo/webpack-config-0.12.64" = {
+ "@expo/webpack-config-0.12.65" = {
name = "_at_expo_slash_webpack-config";
packageName = "@expo/webpack-config";
- version = "0.12.64";
+ version = "0.12.65";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.12.64.tgz";
- sha512 = "STR9ctDYG36JUIjgcGClvsi3ZU55lc2jtIxf04+0TN8IVYOCoYTF3P971zA1dd3En/q//CpgtKX/UAoimdlL9A==";
+ url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.12.65.tgz";
+ sha512 = "+mrAWBVyiJQCReC7OPPuJD/qwlCI5gPxR3XrhuzTxXkm9v0sXTJsCOxCwWM6KF0ytSnUu/LNAA5VkbG19kpOlA==";
};
};
- "@expo/xcpretty-1.1.1" = {
+ "@expo/xcpretty-2.0.0" = {
name = "_at_expo_slash_xcpretty";
packageName = "@expo/xcpretty";
- version = "1.1.1";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-1.1.1.tgz";
- sha512 = "YospUT3y7tPheNCW0SgzbDM8KzipuWukW/qxJRX1MnlgVb1wnnsvtBrY0z/ndRCBMlZFVUu+FkNfI0qDKo8YiA==";
+ url = "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-2.0.0.tgz";
+ sha512 = "bukgcPcsiZq7dYxpSVPQ/qvSDrwpUVSkgEf8NQJS9UcClPakgpM+e5XIzYWe2WXLmHtskVJUPruoEX6zWUm8LA==";
};
};
"@fast-csv/format-4.3.5" = {
@@ -2173,13 +2182,13 @@ let
sha512 = "T4eQ0uqhbTScsoXVx10Tlp0C2RgNdAzlbe52qJ0Tn288/Nuztda5Z/aTCRd5Rp5MRYBycjAf4iNot6ZHAP864g==";
};
};
- "@fluentui/react-7.165.2" = {
+ "@fluentui/react-7.166.2" = {
name = "_at_fluentui_slash_react";
packageName = "@fluentui/react";
- version = "7.165.2";
+ version = "7.166.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react/-/react-7.165.2.tgz";
- sha512 = "Mj1Vv+qVIrQ0nCsHHF5zKq5FJsGfOc2eV0+ebEH3NC4CtKoZYGaoYcQsTS8/4Ft59KOeaU6CZtl4WPIflYaSWw==";
+ url = "https://registry.npmjs.org/@fluentui/react/-/react-7.166.2.tgz";
+ sha512 = "iZaApIEmzLy4vh+Ilwwb03Y/Ga6ETKf1Bv27JlpKfhxUH4Tv8FJy6qn3BbZRnSs2soQ6OAL7TX7xKjADCEIscQ==";
};
};
"@fluentui/react-focus-7.17.6" = {
@@ -2209,15 +2218,6 @@ let
sha512 = "o4eo7lstLxxXl1g2RR9yz18Yt8yjQO/LbQuZjsiAfv/4Bf0CRnb+3j1F7gxIdBWAchKj9gzaMpIFijfI98pvYQ==";
};
};
- "@gardenapple/yargs-17.0.0-candidate.0" = {
- name = "_at_gardenapple_slash_yargs";
- packageName = "@gardenapple/yargs";
- version = "17.0.0-candidate.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@gardenapple/yargs/-/yargs-17.0.0-candidate.0.tgz";
- sha512 = "/x7vm8duSSZvfDEXVdG1lX3HXnvnRGsNbilKquUK3t1RQmnsiEEcXKQet1lTTvYi3CTFoQoIJEOg1P005B0OXg==";
- };
- };
"@google-cloud/paginator-3.0.5" = {
name = "_at_google-cloud_slash_paginator";
packageName = "@google-cloud/paginator";
@@ -2290,13 +2290,13 @@ let
sha512 = "Yb4QRpHZqDk24+T4K3ARk/KFU26Dyl30XcbYeVvIrgIKcmeON/p3DfSeiB0+MaxYlsv+liQKvlxNbeC2hD31pA==";
};
};
- "@graphql-tools/delegate-7.1.1" = {
+ "@graphql-tools/delegate-7.1.2" = {
name = "_at_graphql-tools_slash_delegate";
packageName = "@graphql-tools/delegate";
- version = "7.1.1";
+ version = "7.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.1.1.tgz";
- sha512 = "+uV0KZPI070sEykf3uxy+AhirHOqZnqbVqTqcfhH8/97+vdoLPE5oVceCTvMQsC7bDapbcbNiwcpYd8T6OQ4KQ==";
+ url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.1.2.tgz";
+ sha512 = "XvmIod9ZYKMLk2vV5ulbUyo1Va4SCvvp/VNq4RTae2SEvYwNewc1xs1Klmz8khV+c2V30xKSccNWGA6BWyTTog==";
};
};
"@graphql-tools/graphql-file-loader-6.2.7" = {
@@ -2371,13 +2371,13 @@ let
sha512 = "ybgZ9EIJE3JMOtTrTd2VcIpTXtDrn2q6eiYkeYMKRVh3K41+LZa6YnR2zKERTXqTWqhobROwLt4BZbw2O3Aeeg==";
};
};
- "@graphql-tools/utils-7.7.1" = {
+ "@graphql-tools/utils-7.7.2" = {
name = "_at_graphql-tools_slash_utils";
packageName = "@graphql-tools/utils";
- version = "7.7.1";
+ version = "7.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.7.1.tgz";
- sha512 = "SFT4/dTfrwWer1wSOLU+jqgv3oa/xTR8q+MiNbE9nCH2FXyMsqIOaXKm9wHfKIWFWHozqBdcnwFkQZrdD7H2TQ==";
+ url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.7.2.tgz";
+ sha512 = "whR/2gAt76njm0x7nLdTs3GG9uSSU9bx7oVurVGWgfEbhYuDaVRVsvfMhx9T1Zz9ICcmGMwzBquc1ng9mlG/WA==";
};
};
"@graphql-tools/wrap-7.0.5" = {
@@ -3055,13 +3055,13 @@ let
sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==";
};
};
- "@jsii/spec-1.27.0" = {
+ "@jsii/spec-1.27.1" = {
name = "_at_jsii_slash_spec";
packageName = "@jsii/spec";
- version = "1.27.0";
+ version = "1.27.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.27.0.tgz";
- sha512 = "mdfSlcYY9qI3kI0rK1dAN13BkHtOffhFXzOwtuZvxjhz2+8hx6DpW5nqHAWCrq+ZQuPAPxiMOVXBsA58PZ9Ycg==";
+ url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.27.1.tgz";
+ sha512 = "L5Hqv5g9TSnHsNsOhaIS/gpd1N+1dLao5e6EISF6oyh0JzZFffi2IjQbvE3Xb7GPaCfb5R9+ENO/iX/e5SvK+w==";
};
};
"@kwsites/file-exists-1.1.1" = {
@@ -3667,22 +3667,13 @@ let
sha512 = "/NdX1Ql8hKNM0vHFJnEr/bcw6BG0ULHD3HhInpniZw5ixpl+n/QIRfMEEmLCn7acedbM1zGdZvU5ZMbn9kcF5Q==";
};
};
- "@microsoft/load-themed-styles-1.10.155" = {
+ "@microsoft/load-themed-styles-1.10.160" = {
name = "_at_microsoft_slash_load-themed-styles";
packageName = "@microsoft/load-themed-styles";
- version = "1.10.155";
+ version = "1.10.160";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.155.tgz";
- sha512 = "jXcfI934j2I6lFdja5fuz8BCAXX/W+bHo0eXNAnE1qQB1UPf31fvXT2XeqazqZP45G/XqwfrUu0zeflSadx6WQ==";
- };
- };
- "@microsoft/load-themed-styles-1.10.156" = {
- name = "_at_microsoft_slash_load-themed-styles";
- packageName = "@microsoft/load-themed-styles";
- version = "1.10.156";
- src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.156.tgz";
- sha512 = "MHEgmg/y+J4I/VT0j3hf0HQ4U+XFSHvPO5lNxD4wQN6Teo/aH1EBgy5B/CU5UrDxG+Rx06MboYtX4WfucrY4Og==";
+ url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.160.tgz";
+ sha512 = "5m2yNw5lznr4odMulqQ9+caKWZzItECWKM5yQzAHnNIClvbQXymsX5q/nCrR/K89L2hHfTCpNSg1l5bkQqsgNw==";
};
};
"@mitmaro/errors-1.0.0" = {
@@ -3748,13 +3739,13 @@ let
sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==";
};
};
- "@netlify/build-10.2.4" = {
+ "@netlify/build-10.2.7" = {
name = "_at_netlify_slash_build";
packageName = "@netlify/build";
- version = "10.2.4";
+ version = "10.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/build/-/build-10.2.4.tgz";
- sha512 = "pBeG3DEjzOLLH6ajScaYMHL/RP+d4yD/U5lwhMVdOb75KJuuSIJ0XGxguBg/BAva7s7Y99jltQBUSR2m1O2UlA==";
+ url = "https://registry.npmjs.org/@netlify/build/-/build-10.2.7.tgz";
+ sha512 = "RdyIKPLYci5r/JeTdtqrZxnWQeEMVjQ0YVqbwxdZDXOUP9j4TCG3wrqJDfYScKkD+FcKJ0CLYihV906BWGJc0g==";
};
};
"@netlify/cache-utils-1.0.7" = {
@@ -3766,31 +3757,31 @@ let
sha512 = "yrdrnQkzg/qMovoFYwQ24UVt/OyHtP+t0KpQFd7eBl6gnuuGGgxFocaFFv6eKpMVwzHTsOwx/y9B/FcC3/6cfA==";
};
};
- "@netlify/config-5.1.0" = {
+ "@netlify/config-5.12.0" = {
name = "_at_netlify_slash_config";
packageName = "@netlify/config";
- version = "5.1.0";
+ version = "5.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/config/-/config-5.1.0.tgz";
- sha512 = "HScoMDm58zS5qOemD4ad0M+3GTt8hJbpLj/YVGGH1XTCMbIiL5L+w1sx6YDjBgf4J7Y1VKwMHSHgQhFPixrsIA==";
+ url = "https://registry.npmjs.org/@netlify/config/-/config-5.12.0.tgz";
+ sha512 = "PSe3lwRhchP4IuLdR9Csi98dHf2fvzn9zlywuWpdftWEflNhpwySZ/cV8sy8YJ3Xz6aAKT4wxwc0Tb5DV10Y9g==";
};
};
- "@netlify/framework-info-3.2.1" = {
+ "@netlify/framework-info-3.3.0" = {
name = "_at_netlify_slash_framework-info";
packageName = "@netlify/framework-info";
- version = "3.2.1";
+ version = "3.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-3.2.1.tgz";
- sha512 = "OL/RSLbi8qd2mQebktudz3Hws/xZwf0gCgNnM3jr+vp+l3ejQXmAQd6k5zH/a9EjZLWgUyUSeMIqIjDLJKaN8Q==";
+ url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-3.3.0.tgz";
+ sha512 = "oWlP+sWfnr0tXSqd3nfma9Abq1NvZc4lFbHPMvxU6UhAcrBOpizsMaVT9sUK0UcMwzR8xwESdskZajtFoHA28g==";
};
};
- "@netlify/functions-utils-1.3.22" = {
+ "@netlify/functions-utils-1.3.23" = {
name = "_at_netlify_slash_functions-utils";
packageName = "@netlify/functions-utils";
- version = "1.3.22";
+ version = "1.3.23";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.22.tgz";
- sha512 = "MKamaR0k6wiWNgJtwhAsdiRtgLdTUfVz8n41/eS2V1CAFYzk3194tffaYHtKBMAXZUORjemWZnL7yr9vwUnlJg==";
+ url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.23.tgz";
+ sha512 = "+wSSFEUQz1c54ADcceCQzhrvfmsI2eHXO4B6+SLLub1XDvT2oBgtamJoyKpzjPvvQSjmIKVY0cv/AqYpbO5mVA==";
};
};
"@netlify/git-utils-1.0.8" = {
@@ -3874,76 +3865,67 @@ let
sha512 = "ea6S9ik5X0TlA2e+jXk5D7lfvArPZjyQoIBEo7G1Tjw/vUU5Fx6KLfXv1iy7eJy+ENTLoyidscAjJ2wXlHI47g==";
};
};
- "@netlify/zip-it-and-ship-it-2.7.1" = {
+ "@netlify/zip-it-and-ship-it-3.2.1" = {
name = "_at_netlify_slash_zip-it-and-ship-it";
packageName = "@netlify/zip-it-and-ship-it";
- version = "2.7.1";
+ version = "3.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-2.7.1.tgz";
- sha512 = "Tt37A8tyQcEw3h4YZ4g5/Cgqya4rf/BnweDjfwPDj0BFZmfjRSH8CIZvTJd2y+R2AvLJ1b89cXVYen9uwb2A9w==";
+ url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-3.2.1.tgz";
+ sha512 = "0onx8AUjPWTybwphux8YNCLYg6c471XqfnT/a2kd1IKMBI2cdnGyGOt3xpEQmPoxz0qBG2aU62BAaFzMPYh89w==";
};
};
- "@netlify/zip-it-and-ship-it-3.1.0" = {
- name = "_at_netlify_slash_zip-it-and-ship-it";
- packageName = "@netlify/zip-it-and-ship-it";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-3.1.0.tgz";
- sha512 = "x8Qz2ufrpz+dfv/HY4s/Xiwux4B0A4KbXp+vDdbTU8TkrIIRD9LGdzuwlCGBhTCufAWim3wARhSIZBC6+0k69w==";
- };
- };
- "@node-red/editor-api-1.2.9" = {
+ "@node-red/editor-api-1.3.2" = {
name = "_at_node-red_slash_editor-api";
packageName = "@node-red/editor-api";
- version = "1.2.9";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-1.2.9.tgz";
- sha512 = "KsN5Cp/YMfYM6E/rclWuEoNpTe3krRbKhc3X+TGOirZZ5JVW4qbpdP1p0jRmcBkhZPc1i6yOh5PE7qN7LoPH5A==";
+ url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-1.3.2.tgz";
+ sha512 = "meAJ4n9amAWxoWe5/rdigd8Wa0OKpwaNIn9Vqp+xqV4BqFa9RRe3ttO9FRUOuBeHwplDsMiWNnEVEdE9NCWlig==";
};
};
- "@node-red/editor-client-1.2.9" = {
+ "@node-red/editor-client-1.3.2" = {
name = "_at_node-red_slash_editor-client";
packageName = "@node-red/editor-client";
- version = "1.2.9";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-1.2.9.tgz";
- sha512 = "L8zDaeVLjo7dZzqVTTj0XcQFj6QlnLJOPpnpt9V0sSQDwWzA+lWTP6nNwUcXiGuchN/WeXQXrsfBEemHgKUNLg==";
+ url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-1.3.2.tgz";
+ sha512 = "9YGb7PeLUmr7bMZYOn08euTOZzy+wIAqTo8R288sjbqLke0NKnFWhZsgl01pqPXv7rNjiyZpxTpU1uZLH49gDg==";
};
};
- "@node-red/nodes-1.2.9" = {
+ "@node-red/nodes-1.3.2" = {
name = "_at_node-red_slash_nodes";
packageName = "@node-red/nodes";
- version = "1.2.9";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-1.2.9.tgz";
- sha512 = "ZQ3NCzl7gC3KIGgjmRZTqO3W0W03nnu4r8IX/OeiM4ewlhDlrvfoejOX1zTtIHnmgzFM+FjweyLeWEQ7bpy8jA==";
+ url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-1.3.2.tgz";
+ sha512 = "NAblXeu0/tdVu8lU/gpMDVbclqkbiRGUcUforJSGeTiXod2wk4brGtLjEhAN1ouehUaIGXwiF0QN+KgfXnHg2Q==";
};
};
- "@node-red/registry-1.2.9" = {
+ "@node-red/registry-1.3.2" = {
name = "_at_node-red_slash_registry";
packageName = "@node-red/registry";
- version = "1.2.9";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/registry/-/registry-1.2.9.tgz";
- sha512 = "OxFbHU7UrisBEM0413KSsPRXzQCJIwNQtg1E+oPDiFuMtHwVhUiVicnqbo8IiftO58PsMkSL+Wj2+ta34phlgA==";
+ url = "https://registry.npmjs.org/@node-red/registry/-/registry-1.3.2.tgz";
+ sha512 = "VB0em51luT17rhTa7tkOXHOQbuEBczUEI2goJaSQSv5c032yPvzh4KyAf3Xa7sDafENg33wfSZfePx2tGrdg+w==";
};
};
- "@node-red/runtime-1.2.9" = {
+ "@node-red/runtime-1.3.2" = {
name = "_at_node-red_slash_runtime";
packageName = "@node-red/runtime";
- version = "1.2.9";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-1.2.9.tgz";
- sha512 = "wcSq7MNVbRLaahKWHV5diqyeCWviKtr6VNzAmtIB+wH+omfx+OWiJEimu9x/56l9iv3mc9ew4PwtOMG07QNiTQ==";
+ url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-1.3.2.tgz";
+ sha512 = "HMrHfkH4wklp0tI3SjZR6Yzdf/swPg7FsYjzikv8HV/KBHV/Oe73gtE8CqXkP+rqUfhqdQC/X97Tq8vD6bC4WQ==";
};
};
- "@node-red/util-1.2.9" = {
+ "@node-red/util-1.3.2" = {
name = "_at_node-red_slash_util";
packageName = "@node-red/util";
- version = "1.2.9";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/util/-/util-1.2.9.tgz";
- sha512 = "a4JVRFaxkSpuVAHwwQ8yi+jwyhsflgZD7glGFlcPdfBXvcE4EiGxx1OFbNzI3JJ7pL+8sE0xxwfsZuY24IZahw==";
+ url = "https://registry.npmjs.org/@node-red/util/-/util-1.3.2.tgz";
+ sha512 = "AHrUP2mYTmy40Q0gP1X4GSwuJ1xWCgUL0RlEA843HpdTi7Gl6WB8xnJvcGFqptiuHiqE6mUFNrRMLmotctZqWg==";
};
};
"@nodelib/fs.scandir-2.1.4" = {
@@ -4270,13 +4252,13 @@ let
sha512 = "Jc7CLNUueIshXT+HWt6T+M0sySPjF32mSFQAK7UfAg8qGeRI6OM1GSBxDLwbXjkqy2NVdnqCedJcP1nC785JYg==";
};
};
- "@octokit/request-5.4.14" = {
+ "@octokit/request-5.4.15" = {
name = "_at_octokit_slash_request";
packageName = "@octokit/request";
- version = "5.4.14";
+ version = "5.4.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/request/-/request-5.4.14.tgz";
- sha512 = "VkmtacOIQp9daSnBmDI92xNIeLuSRDOIuplp/CJomkvzt7M18NXgG044Cx/LFKLgjKt9T2tZR6AtJayba9GTSA==";
+ url = "https://registry.npmjs.org/@octokit/request/-/request-5.4.15.tgz";
+ sha512 = "6UnZfZzLwNhdLRreOtTkT9n57ZwulCve8q3IT/Z477vThu6snfdkBuhxnChpOKNGxcQ71ow561Qoa6uqLdPtag==";
};
};
"@octokit/request-error-1.2.1" = {
@@ -4423,310 +4405,310 @@ let
sha512 = "2TUGhTGkhgnxTciHCNAILPSeyXageJewRqfP9wOrx65sKd/jgvNYoY8nYf4EVWVMirDOxKDsmYgUkjdQrwb2dg==";
};
};
- "@ot-builder/bin-composite-types-1.0.3" = {
+ "@ot-builder/bin-composite-types-1.0.4" = {
name = "_at_ot-builder_slash_bin-composite-types";
packageName = "@ot-builder/bin-composite-types";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.0.3.tgz";
- sha512 = "PEjk6MhiY53QQEW6NQAPYfNBdCqoFEE9OkG+25tvhJ6MWsEUz+hUq9argDjeP2DNckd4WRyGcmp6GtH8J4clLQ==";
+ url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.0.4.tgz";
+ sha512 = "mza6bLi18CosKPWDxbK+4BZqfzWRSVoiXmW9Z+UN/YvqRmUJD+Dc5C+t1M9KgtLAwKjsNSLPSqbPeOJwcBxQnw==";
};
};
- "@ot-builder/bin-util-1.0.3" = {
+ "@ot-builder/bin-util-1.0.4" = {
name = "_at_ot-builder_slash_bin-util";
packageName = "@ot-builder/bin-util";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.0.3.tgz";
- sha512 = "x66vsg6oNJmQ/xp+sQLMUk2imXn5L0psdKj5FYziqZQ99B055+t8Ydf6FM42GRYW2xIczeDIesmLZkRaQPgTOA==";
+ url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.0.4.tgz";
+ sha512 = "MKlDHSyKNV8WKWLa9pL8pw1OIJ3lWO8zOjnYM/Had3RgqJMDtk98j1eYuB8VrX8Hbq3ur9NQ7Ycq+xDaGGjiyA==";
};
};
- "@ot-builder/cli-help-shower-1.0.3" = {
+ "@ot-builder/cli-help-shower-1.0.4" = {
name = "_at_ot-builder_slash_cli-help-shower";
packageName = "@ot-builder/cli-help-shower";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.0.3.tgz";
- sha512 = "gLKTb/EnGKl5qmhzRQum0szIT0v5Fzk0UxVWdbmJjeCl6xWNsWQd2sCUujIFVz0qaKGLPvImvn2W8Q5j8JnOkw==";
+ url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.0.4.tgz";
+ sha512 = "Yz27agTVcxA4jblNqaiy6ULcx49c2CxIhOZdbL90d95d0ehDDiODeUuH2FlGcHE//KTUIOYGmM4KkOIE4iRVzQ==";
};
};
- "@ot-builder/cli-proc-1.0.3" = {
+ "@ot-builder/cli-proc-1.0.4" = {
name = "_at_ot-builder_slash_cli-proc";
packageName = "@ot-builder/cli-proc";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.0.3.tgz";
- sha512 = "m+oaigFwF2fuXEvK1OQxfF3n0c4KOnNdq0TV+nIqRHzovU/e4Z1WM8Z3uUt0MJFy4k+SS+HUlQTTAOP9VA1Fcw==";
+ url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.0.4.tgz";
+ sha512 = "6J2QTTHd4CkJqmwyooYZpAc6czWo4O+Fp+7SRGcFPrR2PdvprafxPv+vFkonnLLuRtiZguEt6LjCgkYK3oReoA==";
};
};
- "@ot-builder/cli-shared-1.0.3" = {
+ "@ot-builder/cli-shared-1.0.4" = {
name = "_at_ot-builder_slash_cli-shared";
packageName = "@ot-builder/cli-shared";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.0.3.tgz";
- sha512 = "cGZvNRD/YQ1CKwfNoN+93PDkAifZJ5Ey57Pgaheo/K2C60WqNYooIhjI6ws4YKJ3fyR7Bnblm3i+X3Yk8VSCBg==";
+ url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.0.4.tgz";
+ sha512 = "tmngc7PhETp+cwMWl7Jwxg90X9ArMdFNvAt2CMg/TPnz0wGV91PQaYdOLa8Z2spRAqg6CBsKv2P85UopeypImA==";
};
};
- "@ot-builder/common-impl-1.0.3" = {
+ "@ot-builder/common-impl-1.0.4" = {
name = "_at_ot-builder_slash_common-impl";
packageName = "@ot-builder/common-impl";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.0.3.tgz";
- sha512 = "WflKduZfy2q3NbnBcHpkKRo/ifSxRaSqnTQkJD9UBmhS10zVYv6XoPL9NC/CAUjbeRLL8eS3WMdBZWaw6mwEvQ==";
+ url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.0.4.tgz";
+ sha512 = "0yxLwOblp3AsyCtov7UQhAY+brguEVy8ilfpETOlkAmLSjruhsvjqjF8u7BkaBRQ4Uf13J2/15jQcAghMXLR3g==";
};
};
- "@ot-builder/errors-1.0.3" = {
+ "@ot-builder/errors-1.0.4" = {
name = "_at_ot-builder_slash_errors";
packageName = "@ot-builder/errors";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.0.3.tgz";
- sha512 = "tpgnvmZeaK36OvAcbDQ4eeCWxJMk223BHYT2xUw7cRq7fUXJZI7+CqSg81Hwbir1sL6SbHjl356bkgbut1zHJQ==";
+ url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.0.4.tgz";
+ sha512 = "xS7D4uP5Ri0lzcRbsfh6s3+g33zXHd/7NrQ5lg4paPksoEUmwGRooJTP+plSTLSaKQxd58d8V5SkYCXd3wf2AA==";
};
};
- "@ot-builder/io-bin-cff-1.0.3" = {
+ "@ot-builder/io-bin-cff-1.0.4" = {
name = "_at_ot-builder_slash_io-bin-cff";
packageName = "@ot-builder/io-bin-cff";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.0.3.tgz";
- sha512 = "LfXw3RkxrvudKYAwVsWMGXZ7R6fSUM9GFl4tBCOiY/MmSwkZ3pI7JicrVTLOs+ZuizKdtVQe5KfY/sjz0SyFeg==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.0.4.tgz";
+ sha512 = "bUurjiAADRPRfzqb9eQK+AqpIfGCDFhJ+E+i+Ok29lfrkeE5RjnTu4Tsmvl7rcSJlawWLGG6ZWI4NT//TMDlEw==";
};
};
- "@ot-builder/io-bin-encoding-1.0.3" = {
+ "@ot-builder/io-bin-encoding-1.0.4" = {
name = "_at_ot-builder_slash_io-bin-encoding";
packageName = "@ot-builder/io-bin-encoding";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.0.3.tgz";
- sha512 = "0QTgXPfEyItzkqNGXhxPIciOrF7+hbAwfnJf1yBSYvJl3JiE0FKpN3XDIWrPl71flkvvXFBHGoB+wIp8vwiLNw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.0.4.tgz";
+ sha512 = "QxrM/J3UTqHG5AtbR6VpbFeKo89Wj8jaGUUaZu0ifht81om9dfcuf/TVQ0D78eqeN7VqUXoP6uSYj4ECSo1uAg==";
};
};
- "@ot-builder/io-bin-ext-private-1.0.3" = {
+ "@ot-builder/io-bin-ext-private-1.0.4" = {
name = "_at_ot-builder_slash_io-bin-ext-private";
packageName = "@ot-builder/io-bin-ext-private";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.0.3.tgz";
- sha512 = "RRzfr6yzFTDx0w7L5AKIIJPZ0ab+5WUxUssnBxnBatzOnmtgJmobYdX4R6SLbFPiq+YDyAa/mB44EGLyWcVAgw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.0.4.tgz";
+ sha512 = "c46Oa8LKEu8ULgCSYRCoToDA1LXuvb137TT6UugXJIl6JM53vMzbAQqFrMMlr5FY0RrItYumiS2YWQL8Vr9viw==";
};
};
- "@ot-builder/io-bin-font-1.0.3" = {
+ "@ot-builder/io-bin-font-1.0.4" = {
name = "_at_ot-builder_slash_io-bin-font";
packageName = "@ot-builder/io-bin-font";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.0.3.tgz";
- sha512 = "Eq+tjzRqivY8e3r3rCzVppWizqXpXutacWO8Mdw0TqlnfSONVfJStLafzDTOKrbrr2m7dYEC7sBwkQz65iuARQ==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.0.4.tgz";
+ sha512 = "6gS5lEyAlz/DQi83roUap5buRDiublVwIqUJlvQ5qWF2hp9xQel6HoVHsdL4hfOhMBBqHBTgiM64cqeK+MV5KA==";
};
};
- "@ot-builder/io-bin-glyph-store-1.0.3" = {
+ "@ot-builder/io-bin-glyph-store-1.0.4" = {
name = "_at_ot-builder_slash_io-bin-glyph-store";
packageName = "@ot-builder/io-bin-glyph-store";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.0.3.tgz";
- sha512 = "TNHLSZ7Hs6X92HMMjZQ6Zru84bbu/5p/SWJDIEq4IuiNrDGIrTHFtIAC4XfK5mWOFfP0fNXR00ox9wjeerYeZw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.0.4.tgz";
+ sha512 = "gAYsXuTzV9Xt87AI35tD0ZxLgF/20qgmITZXBW2fe8yR6lSzZX+zsU38w+2/6zW2UoYRyitck9Hikkw3TJ7VAw==";
};
};
- "@ot-builder/io-bin-layout-1.0.3" = {
+ "@ot-builder/io-bin-layout-1.0.4" = {
name = "_at_ot-builder_slash_io-bin-layout";
packageName = "@ot-builder/io-bin-layout";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.0.3.tgz";
- sha512 = "XyyAgn6FjXgdyudq5CcbDoWpUbqlraqDiXHAY1XttpiIvLiTDtWj8KTryLoS8WkfaWLvZ/W2t8VylL6wvR4Saw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.0.4.tgz";
+ sha512 = "Iscx7nHRLeQHxVdlbb7nj+xTq3gZf6dftKT3EtjCBz9KtYYSqAkEi4Wq2UEBrkrlajz+z/ivvrwmv42hqOQTYw==";
};
};
- "@ot-builder/io-bin-metadata-1.0.3" = {
+ "@ot-builder/io-bin-metadata-1.0.4" = {
name = "_at_ot-builder_slash_io-bin-metadata";
packageName = "@ot-builder/io-bin-metadata";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.0.3.tgz";
- sha512 = "JmnK3csx7+M+61Id/w9+cRNz/hrCShNZbG04yPMAWKbq7YXuPRhX1/4/vdlDwmJFRF3V3TIz1WsIVpjmdrhocw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.0.4.tgz";
+ sha512 = "Hvd39Yut521rd09pI4zYQMeXTeOagiTEjDCE+3dzON6Prakb+tyA8E4M7itRY9dp+13kkLGDHF1CYZRLyAkb0g==";
};
};
- "@ot-builder/io-bin-metric-1.0.3" = {
+ "@ot-builder/io-bin-metric-1.0.4" = {
name = "_at_ot-builder_slash_io-bin-metric";
packageName = "@ot-builder/io-bin-metric";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.0.3.tgz";
- sha512 = "b6pvou6rYgT+VUkRLM1UqdVcCCgi+/YIRuzLH+mKfYcP3oEhdK5g1FbX0gEzPHuwjIksOAq+z57JY5WuWkRAbQ==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.0.4.tgz";
+ sha512 = "wF6EtrR1g2uJz8f/bdAWTpcaaDFpPi52QcdW7gruw5mPx53H0wWZTaDT3S4MaJGtx0hxkQjELeJt2zN9VPjiwg==";
};
};
- "@ot-builder/io-bin-name-1.0.3" = {
+ "@ot-builder/io-bin-name-1.0.4" = {
name = "_at_ot-builder_slash_io-bin-name";
packageName = "@ot-builder/io-bin-name";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.0.3.tgz";
- sha512 = "jDKoPRX4to+z5yuY/pZv7owEGjzjIvqqlZN8jNeDYwbnq1+Mheyfwe+0A5RnYSTdvQceLHtwRN722/rap33r7A==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.0.4.tgz";
+ sha512 = "3mjxpyTVcffSiKLQqHdMwMNe9dyE/mCYexKi7LZkxLyXk/ZsYBOapZKld9jXmpF5KVXJO37FopoheTZGW44RHw==";
};
};
- "@ot-builder/io-bin-sfnt-1.0.3" = {
+ "@ot-builder/io-bin-sfnt-1.0.4" = {
name = "_at_ot-builder_slash_io-bin-sfnt";
packageName = "@ot-builder/io-bin-sfnt";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.0.3.tgz";
- sha512 = "7AOYNulmBGQxvr+4jeQTz2cgS88l8arPE4m8EcLcNj9AGlKF5Mhk1an+OjH8JRvuHjRaq7yqfO8ZCdAaF32U9Q==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.0.4.tgz";
+ sha512 = "/24bZ7oXS3G4nOOxxapGmvq2bQF9E5k3zybsO9ettu2632ZYkLP2s4imwzTVfHk6dpikEgzhxwXCumdbTOnZjw==";
};
};
- "@ot-builder/io-bin-ttf-1.0.3" = {
+ "@ot-builder/io-bin-ttf-1.0.4" = {
name = "_at_ot-builder_slash_io-bin-ttf";
packageName = "@ot-builder/io-bin-ttf";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.0.3.tgz";
- sha512 = "xQFAG3lnzycqNrxbZ9jn8V+b9RzdgMg7YFRMd12TYoRzdoHaIh+v2DZ8lyhwkv3owvYDzr6iRCI6nts3mFQuug==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.0.4.tgz";
+ sha512 = "ZtEDJYgS/Q/ag7Zw3/HbLJJtQJhgxtewmpUCXaPlIATxiZkwnmGJu4pTfzxr+ji2H/je2hBRZRPKLL9eKzyokg==";
};
};
- "@ot-builder/ot-1.0.3" = {
+ "@ot-builder/ot-1.0.4" = {
name = "_at_ot-builder_slash_ot";
packageName = "@ot-builder/ot";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.0.3.tgz";
- sha512 = "fEQdRjO58o5PfnUSpx3KzqC4l5tpvX9tquKrvEi/MgKr08PykTs9iUFkzcfQ3+1zHDrebfrq2Peei0vpcaGC3Q==";
+ url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.0.4.tgz";
+ sha512 = "xwZJ0MEv9vsx4f/88a5ZwX5bsgEg6h5WLXxoCxAZwzTnzbIS0m2WYJ8OqBhJcBK5VZ56C13exFkvIS8l5lgVkg==";
};
};
- "@ot-builder/ot-encoding-1.0.3" = {
+ "@ot-builder/ot-encoding-1.0.4" = {
name = "_at_ot-builder_slash_ot-encoding";
packageName = "@ot-builder/ot-encoding";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.0.3.tgz";
- sha512 = "Bmd7Zdb6E791681fH2a7th9puyVbQb1YARYaIdns3fGu9+BJCrvZ2D5SBOIVuPen2TxSDZ5tfQkf/yjz63WbPQ==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.0.4.tgz";
+ sha512 = "7TPdtXtRaZ49j2Ho2+L54/eR728Pwvu+fvSqva8Ly7KzH1epyGm2NixgvaSqs/tRpwydnvvqp2odtCwTSzOAbA==";
};
};
- "@ot-builder/ot-ext-private-1.0.3" = {
+ "@ot-builder/ot-ext-private-1.0.4" = {
name = "_at_ot-builder_slash_ot-ext-private";
packageName = "@ot-builder/ot-ext-private";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.0.3.tgz";
- sha512 = "yu7C79YRwHV7W6cuee0ONsye2Dd6MOgAWcAcORtpFn5VjBc2Nvxs5OAXKlysbOeHtaVGfDub4w8phx/9ZfoxvA==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.0.4.tgz";
+ sha512 = "eAu9kMaAGwgMxWYtl7XMpzEFlO5PLeuCxdIhR2QSG/JVSD6HpHMqxMUHM5qgP2o58PjkTUPiuEiTMvi5tMRWDg==";
};
};
- "@ot-builder/ot-glyphs-1.0.3" = {
+ "@ot-builder/ot-glyphs-1.0.4" = {
name = "_at_ot-builder_slash_ot-glyphs";
packageName = "@ot-builder/ot-glyphs";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.0.3.tgz";
- sha512 = "NJgyHqEINRlZnyEiP+tBsYvQceIvD2XBM1bcJqUCY4xwrOBGtEceP3ChVz44UQEBrtdIOCjv/nycxp55VIKqug==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.0.4.tgz";
+ sha512 = "MWa871aCDPaA+2+tThDq7JdNLEeYQvO7yJOYmsKoA4pBxbGSE4PpI8FJL/NtRizShNxsjRmbYbnprm72NBiTOw==";
};
};
- "@ot-builder/ot-layout-1.0.3" = {
+ "@ot-builder/ot-layout-1.0.4" = {
name = "_at_ot-builder_slash_ot-layout";
packageName = "@ot-builder/ot-layout";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.0.3.tgz";
- sha512 = "HIpQABvaJTKfFi4ui+Vu3AM51VV0Zr2sU3jtAy2kS8HFIyiNVlJCn925jc3n/NzLHvU2FjBeQDFr8o2sQGRchg==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.0.4.tgz";
+ sha512 = "Qxy7F/fX1fD4ZyCdPb7gFBhpeOA3d2G94HK32mlVlQPXcXOkXJOT4z0fvMraWch14a/eVr29IEDeOK/uhyYmug==";
};
};
- "@ot-builder/ot-metadata-1.0.3" = {
+ "@ot-builder/ot-metadata-1.0.4" = {
name = "_at_ot-builder_slash_ot-metadata";
packageName = "@ot-builder/ot-metadata";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.0.3.tgz";
- sha512 = "JK6IPCVCuCdi5k6FQWEXMqdPlPoORuWan4skXWpe7s7NUXYHonJBwZ6sLrPqPIbYmOlEotxT93VvoUo1sqZS0A==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.0.4.tgz";
+ sha512 = "OZbrRtmSQte/OuL3pjUaIhD3Ono+W42hC7iQziLO0eP34uNeSEQNbNUNI6W3h8HuMSttbtJaLpJpDdmCPFi8sw==";
};
};
- "@ot-builder/ot-name-1.0.3" = {
+ "@ot-builder/ot-name-1.0.4" = {
name = "_at_ot-builder_slash_ot-name";
packageName = "@ot-builder/ot-name";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.0.3.tgz";
- sha512 = "Z1VjRAoCgxMDloyOEoKWiimHf0S/AHXHsw57QtNAyPwzn8MR7tuzZ2epMxygrAQSaGHgOwPQ/th+fZ2RdvPuzA==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.0.4.tgz";
+ sha512 = "I4RU5F5XCCvkWHNa8uJ+bx282QVQ0n0jadAGZLcl5YIUwWkJ6Ih6kZNlkMfTsw/YMVakv3CHrCfh7GfxWMbbJA==";
};
};
- "@ot-builder/ot-sfnt-1.0.3" = {
+ "@ot-builder/ot-sfnt-1.0.4" = {
name = "_at_ot-builder_slash_ot-sfnt";
packageName = "@ot-builder/ot-sfnt";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.0.3.tgz";
- sha512 = "uLctpLG/QM15IBuP8GQG7UfwFEcWVLPwTbOlrx0K6he393YVtZ3t+QwNzT1T+Ucvy2E6oxnlDSzvlz+xGHLvJA==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.0.4.tgz";
+ sha512 = "m8ted+UhMW2tlccQ8+N0xzlN6lmKs/NBO93/BTaaxQt7CEjJcOYAncffa0TrFPQbCoAR4hyliNrogkLK81gUgg==";
};
};
- "@ot-builder/ot-standard-glyph-namer-1.0.3" = {
+ "@ot-builder/ot-standard-glyph-namer-1.0.4" = {
name = "_at_ot-builder_slash_ot-standard-glyph-namer";
packageName = "@ot-builder/ot-standard-glyph-namer";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.0.3.tgz";
- sha512 = "JW9cwINVxteCadCKiBo4ufCWS7DP1t+RfcVbDgQ940VGIRm59MJw5CbVM50k4Pf3dYXHJmDYMGDzSKGAZ9x+6g==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.0.4.tgz";
+ sha512 = "cyMmKxbkFaGDoj6qTjykniMDAhihyHYJGjhrkCMyiYWbV259doWl476lGANI/AyPQsDbjS4bXF8QJOUpQBM6dA==";
};
};
- "@ot-builder/prelude-1.0.3" = {
+ "@ot-builder/prelude-1.0.4" = {
name = "_at_ot-builder_slash_prelude";
packageName = "@ot-builder/prelude";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.0.3.tgz";
- sha512 = "7GJ+sMzMqsI7Pe4bqM4lATQLdOJrxOoQudg3xJBe1C0UbVfXLmqvVUkKM1GMd3eR0C1sTkAxRdqILycAXzNwKQ==";
+ url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.0.4.tgz";
+ sha512 = "3SF8Y7WP5su2bCpzCbmKJv0zh6GRSbFQTGgk6KvZYt33ruZGpHyjJnlZUhSO9LsCyzR4B72/UnQK2UoZNcaI5g==";
};
};
- "@ot-builder/primitive-1.0.3" = {
+ "@ot-builder/primitive-1.0.4" = {
name = "_at_ot-builder_slash_primitive";
packageName = "@ot-builder/primitive";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.0.3.tgz";
- sha512 = "IgtWW8Q+gb5lzXWyPivKG0CxU3CdPZUB6tjxA9Ui+TNxTZAmj1nxmJ90Cw9CODFkcywRykSHzo3WTgLGWH6kIQ==";
+ url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.0.4.tgz";
+ sha512 = "RO+s4TXioRd+BQadkyhEizu6/1sqDkbpvtwz4uLT6ncutB7QYYutCIC9N2BrArUHy6j30lWhv7mQuUjJsgzQOw==";
};
};
- "@ot-builder/rectify-1.0.3" = {
+ "@ot-builder/rectify-1.0.4" = {
name = "_at_ot-builder_slash_rectify";
packageName = "@ot-builder/rectify";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.0.3.tgz";
- sha512 = "nm6Ql6oyxEdDrGtFAPOqBlEKUGIyiM8QaI57MosPshfB8UUDJAI6uAaQP4pzV4Go8/6Do3zPkDnmqQIYt/lmmQ==";
+ url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.0.4.tgz";
+ sha512 = "hHvlBACzKLDT/4bixeacWzdAXi7WbGzn/gJim0q5FhrJ6wuy6jMqcASUgfuxDu/tn4mLVL5BglKSr1xcS8C87g==";
};
};
- "@ot-builder/stat-glyphs-1.0.3" = {
+ "@ot-builder/stat-glyphs-1.0.4" = {
name = "_at_ot-builder_slash_stat-glyphs";
packageName = "@ot-builder/stat-glyphs";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.0.3.tgz";
- sha512 = "1pZ7I/OXbQ5egHlHAK4bOthg04qp9Og/RPvFN2UTNAobRPEun/IOpnf6yO7t/JLR4Lvr1lxxDeQjt4tdPMOWOQ==";
+ url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.0.4.tgz";
+ sha512 = "Dn6BxqpJaLC0dz73OsxEYV99zjc2hkY0FPt1u9SYgN5zWpmZeDqDLo18UOH5WsWJCd0AI6pRagSAROHA9/c1jw==";
};
};
- "@ot-builder/trace-1.0.3" = {
+ "@ot-builder/trace-1.0.4" = {
name = "_at_ot-builder_slash_trace";
packageName = "@ot-builder/trace";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.0.3.tgz";
- sha512 = "wr+cLAXFEdXOyLpBRW9XR28NapfJhhqOnJIiOaC3g0A31nvQtINBZaiQ8o2tSekmcmhCOsimoYWpg/SjLgq0GA==";
+ url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.0.4.tgz";
+ sha512 = "vQKQtK6WbaSTUbr6h18bWyOSRpynVgo6WPPmq3xv4HGWc/hv+61bOwFrNl0KHeoZCWmlATVRdiyWOr6et5zPMA==";
};
};
- "@ot-builder/var-store-1.0.3" = {
+ "@ot-builder/var-store-1.0.4" = {
name = "_at_ot-builder_slash_var-store";
packageName = "@ot-builder/var-store";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.0.3.tgz";
- sha512 = "qJSHH+bll62V+T1oa2AvB/kAamgdFO2ZmTfkiyUK1Rb1zaBthYDADHXrzrAUdUARgAkXUXGHTZEGWc8WeU2smw==";
+ url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.0.4.tgz";
+ sha512 = "EiPpjeD1SownKU9e5T0+Fja/zuTuDPP5m+bSVMTPW77ROOFJMIbUseZmoG+Y4PqF3V43Kue9WRPLl9eipnHpcg==";
};
};
- "@ot-builder/variance-1.0.3" = {
+ "@ot-builder/variance-1.0.4" = {
name = "_at_ot-builder_slash_variance";
packageName = "@ot-builder/variance";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.0.3.tgz";
- sha512 = "K23fg29QU8hJkwqwhAHjVeoFVxzdEi8miOXopn8MIjPPnKUCQ+Zkbnml1I+XKrz9juQDhBszcB0kuPpBy4/hxA==";
+ url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.0.4.tgz";
+ sha512 = "X4a/zUGeDq6HlVD2jln1+Eb0uWs6Jhm4nRmX5/Ny9MYSa6kImQczika3gdU2qRg8+hnf182gqsDiXueiSukflw==";
};
};
"@parcel/fs-1.11.0" = {
@@ -4918,13 +4900,13 @@ let
sha1 = "a777360b5b39a1a2e5106f8e858f2fd2d060c570";
};
};
- "@putdotio/api-client-8.15.1" = {
+ "@putdotio/api-client-8.15.2" = {
name = "_at_putdotio_slash_api-client";
packageName = "@putdotio/api-client";
- version = "8.15.1";
+ version = "8.15.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.15.1.tgz";
- sha512 = "1ODxgqJJTWe+Sb6XL05oJWmHKt81nDerLtfbJH16LY5Z8dkzg9FS9K0DWrzPR8e9TmGg8rdnF4MBCDGzOJRgCA==";
+ url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.15.2.tgz";
+ sha512 = "Z4KrAxOMsVA+SULZQ/2syOmXVoQakeKZ0pk4gtvbYnNMNrvcCF0OKSO0QgH2XwdFssm37KWNBjlYO3XucbHKNw==";
};
};
"@react-native-community/cli-debugger-ui-4.13.1" = {
@@ -4954,6 +4936,24 @@ let
sha512 = "s4f489h5+EJksn4CfheLgv5PGOM0CDmK1UEBLw2t/ncWs3cW2VI7vXzndcd/WJHTv3GntJhXDcJMuL+Z2IAOgg==";
};
};
+ "@redocly/ajv-6.12.4" = {
+ name = "_at_redocly_slash_ajv";
+ packageName = "@redocly/ajv";
+ version = "6.12.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@redocly/ajv/-/ajv-6.12.4.tgz";
+ sha512 = "RB6vWO78v6c+SW/3bZh+XZMr4nGdJKAiPGsBALuUZnLuCiQ7aXCT1AuFHqnfS2gyXbEUEj+kw8p4ux8KdAfs3A==";
+ };
+ };
+ "@redocly/openapi-core-1.0.0-beta.44" = {
+ name = "_at_redocly_slash_openapi-core";
+ packageName = "@redocly/openapi-core";
+ version = "1.0.0-beta.44";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.44.tgz";
+ sha512 = "9HNnh1MzvMsLK1liuidFBqWiAsZ2Yg3RY58fcEsy0QruSMdDbn7SoeI1qnXe6O+BkBS+vAP4oVzZDMHCMKGsOQ==";
+ };
+ };
"@redocly/react-dropdown-aria-2.0.11" = {
name = "_at_redocly_slash_react-dropdown-aria";
packageName = "@redocly/react-dropdown-aria";
@@ -5044,13 +5044,13 @@ let
sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==";
};
};
- "@schematics/angular-11.2.7" = {
+ "@schematics/angular-11.2.8" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "11.2.7";
+ version = "11.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-11.2.7.tgz";
- sha512 = "LI6FkFHmwS/MCt+QENpGT/xl1Y6RMvcDqQ/efbZ3qz2W+0W0DkaPSlDmVbbNzgol+eJ7eHx4kmJr2U2r9ZOQgg==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-11.2.8.tgz";
+ sha512 = "5iJSzkFC3P4t47I9cbIuiaIm3Hkmr6YsXSPE6t8lmUjdcG+sX/AXlSgHmvE9RqoEWAlo1YiXPmQsQH/QIE0qPQ==";
};
};
"@schematics/schematics-0.1102.6" = {
@@ -5062,13 +5062,13 @@ let
sha512 = "x77kbJL/HqR4gx0tbt35VCOGLyMvB7jD/x7eB1njhQRF8E/xynEOk3i+7A5VmK67QP5NJxU8BQKlPkJ55tBDmg==";
};
};
- "@schematics/update-0.1102.7" = {
+ "@schematics/update-0.1102.8" = {
name = "_at_schematics_slash_update";
packageName = "@schematics/update";
- version = "0.1102.7";
+ version = "0.1102.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/update/-/update-0.1102.7.tgz";
- sha512 = "aSuG4VtGlcEGNIhcRS+99Sbhs+IRJn1JLOG1rWV5U5d40M/kLDsNx5O5JCXE062ga209sJc++sgLXRXn5yrEiQ==";
+ url = "https://registry.npmjs.org/@schematics/update/-/update-0.1102.8.tgz";
+ sha512 = "advLOzXtlA71XP+XCkvN4HCDTFfSUAfUcEFWLSxIFu456ED6smGex8ydkH6YcWx9LM+auhyHiJmTNYFDI0vxig==";
};
};
"@segment/loosely-validate-event-2.0.0" = {
@@ -5098,13 +5098,13 @@ let
sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang==";
};
};
- "@serverless/components-3.8.1" = {
+ "@serverless/components-3.8.2" = {
name = "_at_serverless_slash_components";
packageName = "@serverless/components";
- version = "3.8.1";
+ version = "3.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/components/-/components-3.8.1.tgz";
- sha512 = "GgIsO/8fKz4tS6y7W4j90EHacyR3XkssVQncEpMt4e8gfAlr3JZBZVka2fO29Ehhx3xYxqDDWBkcVKRzPf8Iaw==";
+ url = "https://registry.npmjs.org/@serverless/components/-/components-3.8.2.tgz";
+ sha512 = "pelB/blbB329hDFr+2itkJh2KmTtAWX8CHvEA/28weG9TPgb+rsQuvbM3s1VWDvYqfscZcnv/M8fuWXWopEc6Q==";
};
};
"@serverless/core-1.1.2" = {
@@ -5143,13 +5143,13 @@ let
sha512 = "8jP72e0POFGEW7HKtDzK0qt1amYtvlB7bYSal8JUCXbeY2qk3xRJZuLWCZBBKRGz4ha4eBNjlz7iniACb9biLg==";
};
};
- "@serverless/platform-client-china-2.1.9" = {
+ "@serverless/platform-client-china-2.1.10" = {
name = "_at_serverless_slash_platform-client-china";
packageName = "@serverless/platform-client-china";
- version = "2.1.9";
+ version = "2.1.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-2.1.9.tgz";
- sha512 = "PAqhHshlwY1PTeuwCaJeXfGB64w1Vg6C9FtpoFv7dkb7OAlYl86evJbugGUc4YlsdhQsgJvG3QSZpo7sYK1Ipw==";
+ url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-2.1.10.tgz";
+ sha512 = "+ckY3WfN+J4gCYKK25VnoZ20b0jVmnb/v9UKG48YTPoS6MWDud6nbAUUQuNbL5UK4dbDFKEVsnFK42XEsBjfkg==";
};
};
"@serverless/template-1.1.4" = {
@@ -5170,15 +5170,6 @@ let
sha512 = "aI/cpGVUhWbJUR8QDMtPue28EU4ViG/L4/XKuZDfAN2uNQv3NRjwEFIBi/cxyfQnMTYVtMLe9wDjuwzOT4ENzA==";
};
};
- "@serverless/utils-3.1.0" = {
- name = "_at_serverless_slash_utils";
- packageName = "@serverless/utils";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/utils/-/utils-3.1.0.tgz";
- sha512 = "HhmnTtfGt4gKCNGHg0q9pioltChh+dWbdA7y1aP7vNqjwpZ/pUDAqJf/M3GFozTnhlFpwCY9Ik1tOpDkgP3oiA==";
- };
- };
"@serverless/utils-4.0.1" = {
name = "_at_serverless_slash_utils";
packageName = "@serverless/utils";
@@ -5224,6 +5215,24 @@ let
sha512 = "RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==";
};
};
+ "@sindresorhus/df-1.0.1" = {
+ name = "_at_sindresorhus_slash_df";
+ packageName = "@sindresorhus/df";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@sindresorhus/df/-/df-1.0.1.tgz";
+ sha1 = "c69b66f52f6fcdd287c807df210305dbaf78500d";
+ };
+ };
+ "@sindresorhus/df-3.1.1" = {
+ name = "_at_sindresorhus_slash_df";
+ packageName = "@sindresorhus/df";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@sindresorhus/df/-/df-3.1.1.tgz";
+ sha512 = "SME/vtXaJcnQ/HpeV6P82Egy+jThn11IKfwW8+/XVoRD0rmPHVTeKMtww1oWdVnMykzVPjmrDN9S8NBndPEHCQ==";
+ };
+ };
"@sindresorhus/is-0.14.0" = {
name = "_at_sindresorhus_slash_is";
packageName = "@sindresorhus/is";
@@ -5377,13 +5386,13 @@ let
sha512 = "E/Pfdze/WFfxwyuTFcfhQN1SwyUsc43yuCoW63RVBCaxTD6OzhVD2Pvc/Sy7BjiWUfmelzyKkIBpoow8zZX7Zg==";
};
};
- "@snyk/fix-1.518.0" = {
+ "@snyk/fix-1.526.0" = {
name = "_at_snyk_slash_fix";
packageName = "@snyk/fix";
- version = "1.518.0";
+ version = "1.526.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/fix/-/fix-1.518.0.tgz";
- sha512 = "Cwh0wU8SxZgx1+qRgcGkMctNx9F6UCdUJYcCvKaYJNDEYQwpQat4nsLZsJeODYNx7Byh0ZnPrqakUck4qFrPvA==";
+ url = "https://registry.npmjs.org/@snyk/fix/-/fix-1.526.0.tgz";
+ sha512 = "+aMUNRhOdoN4YPGxXlN9+NwvKOr/DNBCGgC8DnNSujcJ9Nj1M8oHrnVoTy56/tgbJ8qyw/zwmCKAm383CfURKg==";
};
};
"@snyk/gemfile-1.2.0" = {
@@ -5440,13 +5449,13 @@ let
sha512 = "NX8bpIu7oG5cuSSm6WvtxqcCuJs2gRjtKhtuSeF1p5TYXyESs3FXQ0nHjfY90LiyTTc+PW/UBq6SKbBA6bCBww==";
};
};
- "@snyk/mix-parser-1.1.1" = {
+ "@snyk/mix-parser-1.3.0" = {
name = "_at_snyk_slash_mix-parser";
packageName = "@snyk/mix-parser";
- version = "1.1.1";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/mix-parser/-/mix-parser-1.1.1.tgz";
- sha512 = "KmX4Le+1M01m6kM2UeDColzMZctrSqoMGajqcRHR3dLpCyHE3nzZzPeOWjbUVgjQlTX07oQvq9udSJGZJ/+Gdg==";
+ url = "https://registry.npmjs.org/@snyk/mix-parser/-/mix-parser-1.3.0.tgz";
+ sha512 = "Iizn7xkw+h1Zg3+PRbo5r37MaqbgvWtKsIIXKWIAoVwy+oYGsJ6u2mo+o/zZ9Dga4+iQ5xy0Q0sNbFzxku2oCQ==";
};
};
"@snyk/rpm-parser-2.2.1" = {
@@ -5476,13 +5485,13 @@ let
sha512 = "hiFiSmWGLc2tOI7FfgIhVdFzO2f69im8O6p3OV4xEZ/Ss1l58vwtqudItoswsk7wj/azRlgfBW8wGu2MjoudQg==";
};
};
- "@snyk/snyk-hex-plugin-1.0.0" = {
+ "@snyk/snyk-hex-plugin-1.1.1" = {
name = "_at_snyk_slash_snyk-hex-plugin";
packageName = "@snyk/snyk-hex-plugin";
- version = "1.0.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/snyk-hex-plugin/-/snyk-hex-plugin-1.0.0.tgz";
- sha512 = "ZydVdZ5kDpPDoehQnNHN3wZ6c470k5DPLJtWMoyfzlnCU2+y1rsUEdn4yhttn60RPx3JiLGwmckeDvZw8BqnGQ==";
+ url = "https://registry.npmjs.org/@snyk/snyk-hex-plugin/-/snyk-hex-plugin-1.1.1.tgz";
+ sha512 = "NXgslDo6qSvsKy2cR3Yoo/Z6A3Svae9a96j+0OUnvcZX7i6JeODreqXFD1k0vPM2JnL1G7qcdblPxz7M7ZAZmQ==";
};
};
"@starptech/expression-parser-0.10.0" = {
@@ -5575,6 +5584,15 @@ let
sha512 = "vA/p1LTVfuK8dP+EhBglMS7ll3dZahBjnvjwUiJ8NNUCqH5pSAj3tcRtOG3k7k1Wx1hWHJpGgZVj0VNQIo99bA==";
};
};
+ "@stroncium/procfs-1.2.1" = {
+ name = "_at_stroncium_slash_procfs";
+ packageName = "@stroncium/procfs";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@stroncium/procfs/-/procfs-1.2.1.tgz";
+ sha512 = "X1Iui3FUNZP18EUvysTHxt+Avu2nlVzyf90YM8OYgP6SGzTzzX/0JgObfO1AQQDzuZtNNz29bVh8h5R97JrjxA==";
+ };
+ };
"@stylelint/postcss-css-in-js-0.37.2" = {
name = "_at_stylelint_slash_postcss-css-in-js";
packageName = "@stylelint/postcss-css-in-js";
@@ -6097,13 +6115,13 @@ let
sha512 = "DLVpLEGTEZGBXOYoYoagHSxXkDHONc0fZouF2ayw7Q18aRu1Afwci+1CFKvPpouCUOVWP+dmCaAWpQjswe7kpg==";
};
};
- "@types/eslint-7.2.8" = {
+ "@types/eslint-7.2.9" = {
name = "_at_types_slash_eslint";
packageName = "@types/eslint";
- version = "7.2.8";
+ version = "7.2.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.8.tgz";
- sha512 = "RTKvBsfz0T8CKOGZMfuluDNyMFHnu5lvNr4hWEsQeHXH6FcmIDIozOyWMh36nLGMwVd5UFNXC2xztA8lln22MQ==";
+ url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.9.tgz";
+ sha512 = "SdAAXZNvWfhtf3X3y1cbbCZhP3xyPh7mfTvzV6CgfWc/ZhiHpyr9bVroe2/RCHIf7gczaNcprhaBLsx0CCJHQA==";
};
};
"@types/eslint-scope-3.7.0" = {
@@ -6718,6 +6736,15 @@ let
sha512 = "/aKAdg5c8n468cYLy2eQrcR5k6chlbNwZNGUj3TboyPa2hcO2QAJcfymlqPzMiRj8B6nYKXjzQz36minFE0RwQ==";
};
};
+ "@types/node-fetch-2.5.10" = {
+ name = "_at_types_slash_node-fetch";
+ packageName = "@types/node-fetch";
+ version = "2.5.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.10.tgz";
+ sha512 = "IpkX0AasN44hgEad0gEF/V6EgR5n69VEqPEgnmoM8GsIGro3PowbWs4tR6IhxUTyPLpOn+fiGG6nrQhcmoCuIQ==";
+ };
+ };
"@types/node-fetch-2.5.7" = {
name = "_at_types_slash_node-fetch";
packageName = "@types/node-fetch";
@@ -6727,15 +6754,6 @@ let
sha512 = "o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw==";
};
};
- "@types/node-fetch-2.5.9" = {
- name = "_at_types_slash_node-fetch";
- packageName = "@types/node-fetch";
- version = "2.5.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.9.tgz";
- sha512 = "6cUyqLK+JBsATAqNQqk10jURoBFrzfRCDh4kaYxg8ivKhRPIpyBgAvuY7zM/3E4AwsYJSh5HCHBCJRM4DsCTaQ==";
- };
- };
"@types/normalize-package-data-2.4.0" = {
name = "_at_types_slash_normalize-package-data";
packageName = "@types/normalize-package-data";
@@ -6988,15 +7006,6 @@ let
sha512 = "0VBprVqfgFD7Ehb2vd8Lh9TG3jP98gvr8rgehQqzztZNI7o8zS8Ad4jyZneKELphpuE212D8J70LnSNQSyO6bQ==";
};
};
- "@types/text-table-0.2.1" = {
- name = "_at_types_slash_text-table";
- packageName = "@types/text-table";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/text-table/-/text-table-0.2.1.tgz";
- sha512 = "dchbFCWfVgUSWEvhOkXGS7zjm+K7jCUvGrQkAHPk2Fmslfofp4HQTH2pqnQ3Pw5GPYv0zWa2AQjKtsfZThuemQ==";
- };
- };
"@types/through-0.0.30" = {
name = "_at_types_slash_through";
packageName = "@types/through";
@@ -7177,13 +7186,13 @@ let
sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==";
};
};
- "@typescript-eslint/eslint-plugin-4.21.0" = {
+ "@typescript-eslint/eslint-plugin-4.22.0" = {
name = "_at_typescript-eslint_slash_eslint-plugin";
packageName = "@typescript-eslint/eslint-plugin";
- version = "4.21.0";
+ version = "4.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.21.0.tgz";
- sha512 = "FPUyCPKZbVGexmbCFI3EQHzCZdy2/5f+jv6k2EDljGdXSRc0cKvbndd2nHZkSLqCNOPk0jB6lGzwIkglXcYVsQ==";
+ url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.22.0.tgz";
+ sha512 = "U8SP9VOs275iDXaL08Ln1Fa/wLXfj5aTr/1c0t0j6CdbOnxh+TruXu1p4I0NAvdPBQgoPjHsgKn28mOi0FzfoA==";
};
};
"@typescript-eslint/experimental-utils-3.10.1" = {
@@ -7195,13 +7204,13 @@ let
sha512 = "DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==";
};
};
- "@typescript-eslint/experimental-utils-4.21.0" = {
+ "@typescript-eslint/experimental-utils-4.22.0" = {
name = "_at_typescript-eslint_slash_experimental-utils";
packageName = "@typescript-eslint/experimental-utils";
- version = "4.21.0";
+ version = "4.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.21.0.tgz";
- sha512 = "cEbgosW/tUFvKmkg3cU7LBoZhvUs+ZPVM9alb25XvR0dal4qHL3SiUqHNrzoWSxaXA9gsifrYrS1xdDV6w/gIA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.22.0.tgz";
+ sha512 = "xJXHHl6TuAxB5AWiVrGhvbGL8/hbiCQ8FiWwObO3r0fnvBdrbWEDy1hlvGQOAWc6qsCWuWMKdVWlLAEMpxnddg==";
};
};
"@typescript-eslint/parser-3.10.1" = {
@@ -7213,22 +7222,22 @@ let
sha512 = "Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw==";
};
};
- "@typescript-eslint/parser-4.21.0" = {
+ "@typescript-eslint/parser-4.22.0" = {
name = "_at_typescript-eslint_slash_parser";
packageName = "@typescript-eslint/parser";
- version = "4.21.0";
+ version = "4.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.21.0.tgz";
- sha512 = "eyNf7QmE5O/l1smaQgN0Lj2M/1jOuNg2NrBm1dqqQN0sVngTLyw8tdCbih96ixlhbF1oINoN8fDCyEH9SjLeIA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.22.0.tgz";
+ sha512 = "z/bGdBJJZJN76nvAY9DkJANYgK3nlRstRRi74WHm3jjgf2I8AglrSY+6l7ogxOmn55YJ6oKZCLLy+6PW70z15Q==";
};
};
- "@typescript-eslint/scope-manager-4.21.0" = {
+ "@typescript-eslint/scope-manager-4.22.0" = {
name = "_at_typescript-eslint_slash_scope-manager";
packageName = "@typescript-eslint/scope-manager";
- version = "4.21.0";
+ version = "4.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.21.0.tgz";
- sha512 = "kfOjF0w1Ix7+a5T1knOw00f7uAP9Gx44+OEsNQi0PvvTPLYeXJlsCJ4tYnDj5PQEYfpcgOH5yBlw7K+UEI9Agw==";
+ url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.22.0.tgz";
+ sha512 = "OcCO7LTdk6ukawUM40wo61WdeoA7NM/zaoq1/2cs13M7GyiF+T4rxuA4xM+6LeHWjWbss7hkGXjFDRcKD4O04Q==";
};
};
"@typescript-eslint/types-3.10.1" = {
@@ -7240,13 +7249,13 @@ let
sha512 = "+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==";
};
};
- "@typescript-eslint/types-4.21.0" = {
+ "@typescript-eslint/types-4.22.0" = {
name = "_at_typescript-eslint_slash_types";
packageName = "@typescript-eslint/types";
- version = "4.21.0";
+ version = "4.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.21.0.tgz";
- sha512 = "+OQaupjGVVc8iXbt6M1oZMwyKQNehAfLYJJ3SdvnofK2qcjfor9pEM62rVjBknhowTkh+2HF+/KdRAc/wGBN2w==";
+ url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.22.0.tgz";
+ sha512 = "sW/BiXmmyMqDPO2kpOhSy2Py5w6KvRRsKZnV0c4+0nr4GIcedJwXAq+RHNK4lLVEZAJYFltnnk1tJSlbeS9lYA==";
};
};
"@typescript-eslint/typescript-estree-2.34.0" = {
@@ -7267,13 +7276,13 @@ let
sha512 = "QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==";
};
};
- "@typescript-eslint/typescript-estree-4.21.0" = {
+ "@typescript-eslint/typescript-estree-4.22.0" = {
name = "_at_typescript-eslint_slash_typescript-estree";
packageName = "@typescript-eslint/typescript-estree";
- version = "4.21.0";
+ version = "4.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.21.0.tgz";
- sha512 = "ZD3M7yLaVGVYLw4nkkoGKumb7Rog7QID9YOWobFDMQKNl+vPxqVIW/uDk+MDeGc+OHcoG2nJ2HphwiPNajKw3w==";
+ url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.22.0.tgz";
+ sha512 = "TkIFeu5JEeSs5ze/4NID+PIcVjgoU3cUQUIZnH3Sb1cEn1lBo7StSV5bwPuJQuoxKXlzAObjYTilOEKRuhR5yg==";
};
};
"@typescript-eslint/visitor-keys-3.10.1" = {
@@ -7285,13 +7294,13 @@ let
sha512 = "9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==";
};
};
- "@typescript-eslint/visitor-keys-4.21.0" = {
+ "@typescript-eslint/visitor-keys-4.22.0" = {
name = "_at_typescript-eslint_slash_visitor-keys";
packageName = "@typescript-eslint/visitor-keys";
- version = "4.21.0";
+ version = "4.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.21.0.tgz";
- sha512 = "dH22dROWGi5Z6p+Igc8bLVLmwy7vEe8r+8c+raPQU0LxgogPUrRAtRGtvBWmlr9waTu3n+QLt/qrS/hWzk1x5w==";
+ url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.22.0.tgz";
+ sha512 = "nnMu4F+s4o0sll6cBSsTeVsT4cwxB7zECK3dFxzEjPBii9xLpq4yqqsy/FU5zMfan6G60DKZSCXAa3sHJZrcYw==";
};
};
"@uifabric/foundation-7.9.26" = {
@@ -8320,13 +8329,13 @@ let
sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==";
};
};
- "acorn-8.1.0" = {
+ "acorn-8.1.1" = {
name = "acorn";
packageName = "acorn";
- version = "8.1.0";
+ version = "8.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-8.1.0.tgz";
- sha512 = "LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA==";
+ url = "https://registry.npmjs.org/acorn/-/acorn-8.1.1.tgz";
+ sha512 = "xYiIVjNuqtKXMxlRMDc6mZUhXehod4a3gbZ1qRlM7icK4EbxUFNLhWoPblCvFtB2Y9CIqHP3CF/rdxLItaQv8g==";
};
};
"acorn-globals-1.0.9" = {
@@ -8680,13 +8689,13 @@ let
sha512 = "nBeQgg/ZZA3u3SYxyaDvpvDtgZ/EZPF547ARgZBrG9Bhu1vKDwAIjtIf+sDtJUKa2zOcEbmRLBRSyMraS/Oy1A==";
};
};
- "ajv-8.0.5" = {
+ "ajv-8.1.0" = {
name = "ajv";
packageName = "ajv";
- version = "8.0.5";
+ version = "8.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-8.0.5.tgz";
- sha512 = "RkiLa/AeJx7+9OvniQ/qeWu0w74A8DiPPBclQ6ji3ZQkv5KamO+QGpqmi7O4JIw3rHGUXZ6CoP9tsAkn3gyazg==";
+ url = "https://registry.npmjs.org/ajv/-/ajv-8.1.0.tgz";
+ sha512 = "B/Sk2Ix7A36fs/ZkuGLIR86EdjbgR6fsAcbx9lOP/QBSXujDNbVmIS/U4Itz5k8fPFDeVZl/zQ/gJW4Jrq6XjQ==";
};
};
"ajv-errors-1.0.1" = {
@@ -9184,13 +9193,13 @@ let
sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==";
};
};
- "anymatch-3.1.1" = {
+ "anymatch-3.1.2" = {
name = "anymatch";
packageName = "anymatch";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz";
- sha512 = "mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==";
+ url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz";
+ sha512 = "P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==";
};
};
"ap-0.1.0" = {
@@ -9571,6 +9580,15 @@ let
sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==";
};
};
+ "aria-query-4.2.2" = {
+ name = "aria-query";
+ packageName = "aria-query";
+ version = "4.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz";
+ sha512 = "o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==";
+ };
+ };
"aribts-1.3.5" = {
name = "aribts";
packageName = "aribts";
@@ -9985,6 +10003,24 @@ let
sha512 = "mi+MYNJYLTx2eNYy+Yh6raoQacCsNeeMUaspFPh9Y141lFSsWxxB8V9mM2ye+eqiRs917J6/pJ4M9ZPzenWckA==";
};
};
+ "array.prototype.flat-1.2.4" = {
+ name = "array.prototype.flat";
+ packageName = "array.prototype.flat";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz";
+ sha512 = "4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==";
+ };
+ };
+ "array.prototype.flatmap-1.2.4" = {
+ name = "array.prototype.flatmap";
+ packageName = "array.prototype.flatmap";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz";
+ sha512 = "r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==";
+ };
+ };
"arraybuffer.slice-0.0.6" = {
name = "arraybuffer.slice";
packageName = "arraybuffer.slice";
@@ -10138,6 +10174,15 @@ let
sha512 = "EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==";
};
};
+ "assert-never-1.2.1" = {
+ name = "assert-never";
+ packageName = "assert-never";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz";
+ sha512 = "TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==";
+ };
+ };
"assert-plus-0.1.2" = {
name = "assert-plus";
packageName = "assert-plus";
@@ -10246,6 +10291,15 @@ let
sha1 = "102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9";
};
};
+ "ast-types-flow-0.0.7" = {
+ name = "ast-types-flow";
+ packageName = "ast-types-flow";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz";
+ sha1 = "f70b735c6bca1a5c9c22d982c3e39e7feba3bdad";
+ };
+ };
"astral-regex-1.0.0" = {
name = "astral-regex";
packageName = "astral-regex";
@@ -10426,13 +10480,13 @@ let
sha512 = "zVWTmAnxxHaeB2B1te84oecI8zTDJ/8G49aVBblRX6be0oq6pAybNcUSxwfgVOmOjSCvN4aYZAqwtyNI8e1YGw==";
};
};
- "async-mutex-0.2.6" = {
+ "async-mutex-0.3.1" = {
name = "async-mutex";
packageName = "async-mutex";
- version = "0.2.6";
+ version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.2.6.tgz";
- sha512 = "Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==";
+ url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.3.1.tgz";
+ sha512 = "vRfQwcqBnJTLzVQo72Sf7KIUbcSUP5hNchx6udI1U6LuPQpfePgdjJzlCe76yFZ8pxlLjn9lwcl/Ya0TSOv0Tw==";
};
};
"async-retry-1.3.1" = {
@@ -10696,13 +10750,13 @@ let
sha512 = "+KBkqH7t/XE91Fqn8eyJeNIWsnhSWL8bSUqFD7TfE3FN07MTlC0nprGYp+2WfcYNz5i8Bus1vY2DHNVhtTImnw==";
};
};
- "aws-sdk-2.880.0" = {
+ "aws-sdk-2.885.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.880.0";
+ version = "2.885.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.880.0.tgz";
- sha512 = "/dBk3ejw22ED2edzGfmJB83KXDA4wLIw5Hb+2YMhly+gOWecvevy0tML2+YN/cmxyTy+wT0E0sM7fm1v7kmHtw==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.885.0.tgz";
+ sha512 = "V7fS53HkLYap+mt00frWB516HZV34C5pHNhBs/Het3Vgl7A0GbCpJs07G4FOIT9ioJ38+k9McscOzXG++1rWMQ==";
};
};
"aws-sign2-0.6.0" = {
@@ -10741,6 +10795,15 @@ let
sha512 = "wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==";
};
};
+ "axe-core-4.1.4" = {
+ name = "axe-core";
+ packageName = "axe-core";
+ version = "4.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/axe-core/-/axe-core-4.1.4.tgz";
+ sha512 = "Pdgfv6iP0gNx9ejRGa3zE7Xgkj/iclXqLfe7BnatdZz0QnLZ3jrRHUVH8wNSdN68w05Sk3ShGTb3ydktMTooig==";
+ };
+ };
"axios-0.19.2" = {
name = "axios";
packageName = "axios";
@@ -10768,6 +10831,15 @@ let
sha512 = "NFCoNIHq8lYkJa6ku4m+V1837TP6lCa7n79Iuf8/AqATAHYB0ISaAS1eyIenDOfHOLtym34W65Sjke2xjg2fsA==";
};
};
+ "axobject-query-2.2.0" = {
+ name = "axobject-query";
+ packageName = "axobject-query";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz";
+ sha512 = "Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==";
+ };
+ };
"azure-devops-node-api-7.2.0" = {
name = "azure-devops-node-api";
packageName = "azure-devops-node-api";
@@ -11038,31 +11110,31 @@ let
sha1 = "1bc6f15b87f7ab1085d42b330b717657a2156500";
};
};
- "babel-plugin-polyfill-corejs2-0.1.10" = {
+ "babel-plugin-polyfill-corejs2-0.2.0" = {
name = "babel-plugin-polyfill-corejs2";
packageName = "babel-plugin-polyfill-corejs2";
- version = "0.1.10";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz";
- sha512 = "DO95wD4g0A8KRaHKi0D51NdGXzvpqVLnLu5BTvDlpqUEpTmeEtypgC1xqesORaWmiUOQI14UHKlzNd9iZ2G3ZA==";
+ url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.0.tgz";
+ sha512 = "9bNwiR0dS881c5SHnzCmmGlMkJLl0OUZvxrxHo9w/iNoRuqaPjqlvBf4HrovXtQs/au5yKkpcdgfT1cC5PAZwg==";
};
};
- "babel-plugin-polyfill-corejs3-0.1.7" = {
+ "babel-plugin-polyfill-corejs3-0.2.0" = {
name = "babel-plugin-polyfill-corejs3";
packageName = "babel-plugin-polyfill-corejs3";
- version = "0.1.7";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz";
- sha512 = "u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==";
+ url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.0.tgz";
+ sha512 = "zZyi7p3BCUyzNxLx8KV61zTINkkV65zVkDAFNZmrTCRVhjo1jAS+YLvDJ9Jgd/w2tsAviCwFHReYfxO3Iql8Yg==";
};
};
- "babel-plugin-polyfill-regenerator-0.1.6" = {
+ "babel-plugin-polyfill-regenerator-0.2.0" = {
name = "babel-plugin-polyfill-regenerator";
packageName = "babel-plugin-polyfill-regenerator";
- version = "0.1.6";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz";
- sha512 = "OUrYG9iKPKz8NxswXbRAdSwF0GhRdIEMTloQATJi4bDuFqrXaXcCUT/VGNrr8pBcjMh1RxZ7Xt9cytVJTJfvMg==";
+ url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.0.tgz";
+ sha512 = "J7vKbCuD2Xi/eEHxquHN14bXAW9CXtecwuLrOIDJtcZzTaPzV1VdEfoUf9AzcRBMolKUQKM9/GVojeh0hFiqMg==";
};
};
"babel-plugin-styled-components-1.12.0" = {
@@ -11290,6 +11362,15 @@ let
sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497";
};
};
+ "babel-walk-3.0.0-canary-5" = {
+ name = "babel-walk";
+ packageName = "babel-walk";
+ version = "3.0.0-canary-5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz";
+ sha512 = "GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==";
+ };
+ };
"babybird-0.0.1" = {
name = "babybird";
packageName = "babybird";
@@ -12199,13 +12280,13 @@ let
sha1 = "ffd2eabc141d36ed5c1817df7e992f91fd7fc65c";
};
};
- "bittorrent-tracker-9.16.1" = {
+ "bittorrent-tracker-9.17.0" = {
name = "bittorrent-tracker";
packageName = "bittorrent-tracker";
- version = "9.16.1";
+ version = "9.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.16.1.tgz";
- sha512 = "JjegXwpWK8xRTHd5sqKTVqPhlhzAqJrR37gSiciTa1UkSSM6SWKVUDq7ZiGS3d8FhqonDSuPLQ9wUOC2q2jeIA==";
+ url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.17.0.tgz";
+ sha512 = "ErpOx8AAUW8eLwxnEHp15vs0LDJECLADHISEBM+HXclG3J2/9kMBJ31IjwlB8kUNigknSwm8odAThjJEeyL1yA==";
};
};
"bl-1.2.3" = {
@@ -12640,6 +12721,15 @@ let
sha512 = "yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA==";
};
};
+ "bootstrap-5.0.0-beta3" = {
+ name = "bootstrap";
+ packageName = "bootstrap";
+ version = "5.0.0-beta3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bootstrap/-/bootstrap-5.0.0-beta3.tgz";
+ sha512 = "0urccjfIOzhrb9qJysN8XW/DRw6rg3zH7qLeKIp4Zyl8+Ens4JWB0NC0cB5AhnSFPd2tftRggjwCMxablo6Tpg==";
+ };
+ };
"bootstrap-vue-helper-json-1.1.1" = {
name = "bootstrap-vue-helper-json";
packageName = "bootstrap-vue-helper-json";
@@ -13045,13 +13135,13 @@ let
sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==";
};
};
- "browserslist-4.16.3" = {
+ "browserslist-4.16.4" = {
name = "browserslist";
packageName = "browserslist";
- version = "4.16.3";
+ version = "4.16.4";
src = fetchurl {
- url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz";
- sha512 = "vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==";
+ url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.4.tgz";
+ sha512 = "d7rCxYV8I9kj41RH8UKYnvDYCRENUlHRgyXy/Rhr/1BaeLGfiCptEdFE8MIrvGfWbBFNjVYx76SQWvNX1j+/cQ==";
};
};
"brq-0.1.8" = {
@@ -13999,13 +14089,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001207" = {
+ "caniuse-lite-1.0.30001208" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001207";
+ version = "1.0.30001208";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001207.tgz";
- sha512 = "UPQZdmAsyp2qfCTiMU/zqGSWOYaY9F9LL61V8f+8MrubsaDGpaHD9HRV/EWZGULZn0Hxu48SKzI5DgFwTvHuYw==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001208.tgz";
+ sha512 = "OE5UE4+nBOro8Dyvv0lfx+SRtfVIOM9uhKqFmJeUbGriqhhStgp1A0OyBpgy3OUF8AhYCT+PVwPC1gMl2ZcQMA==";
};
};
"canvas-2.7.0" = {
@@ -14494,6 +14584,24 @@ let
sha512 = "yoqps/VCaZgN4pfXtenwHROTp8NG6/Hlt4Jpz2FEP0ZJQ+ZUkVDd0hAPDNKhj3nakpfPt/CNs57yEtxD1bXQiw==";
};
};
+ "cheerio-1.0.0-rc.6" = {
+ name = "cheerio";
+ packageName = "cheerio";
+ version = "1.0.0-rc.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.6.tgz";
+ sha512 = "hjx1XE1M/D5pAtMgvWwE21QClmAEeGHOIDfycgmndisdNgI6PE1cGRQkMGBcsbUbmEQyWu5PJLUcAOjtQS8DWw==";
+ };
+ };
+ "cheerio-select-1.3.0" = {
+ name = "cheerio-select";
+ packageName = "cheerio-select";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.3.0.tgz";
+ sha512 = "mLgqdHxVOQyhOIkG5QnRkDg7h817Dkf0dAvlCio2TJMmR72cJKH0bF28SHXvLkVrGcGOiub0/Bs/CMnPeQO7qw==";
+ };
+ };
"cheerio-select-tmp-0.1.1" = {
name = "cheerio-select-tmp";
packageName = "cheerio-select-tmp";
@@ -14665,13 +14773,13 @@ let
sha512 = "pVLljQ29SAx8KIv5tSa9sIf8GrEsAZdPJoeWOmY3/nrIzFmE+EryNNHvDkddGod0cmAFTv+GmPG0uvzxi2NWsA==";
};
};
- "chrome-trace-event-1.0.2" = {
+ "chrome-trace-event-1.0.3" = {
name = "chrome-trace-event";
packageName = "chrome-trace-event";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz";
- sha512 = "9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==";
+ url = "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz";
+ sha512 = "p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==";
};
};
"chromecast-player-0.2.3" = {
@@ -15601,13 +15709,13 @@ let
sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg==";
};
};
- "codemaker-1.27.0" = {
+ "codemaker-1.27.1" = {
name = "codemaker";
packageName = "codemaker";
- version = "1.27.0";
+ version = "1.27.1";
src = fetchurl {
- url = "https://registry.npmjs.org/codemaker/-/codemaker-1.27.0.tgz";
- sha512 = "W5r3XLxBG2a33M3g3Sg9mOU5wPbw6hz14GfmeQsKlWoSCx8Y3CCxY8ogbh77/K34epqYh43ydybI8e7UVgD/tQ==";
+ url = "https://registry.npmjs.org/codemaker/-/codemaker-1.27.1.tgz";
+ sha512 = "0Ypru4bovWAqZY+giAMIFQh1aJlTJLU7rbNPzkAW7U9mPoja2IE4KLWNlSEYvP7hpamY51Nrz/VfcazsB6a/rg==";
};
};
"codepage-1.4.0" = {
@@ -16114,15 +16222,6 @@ let
sha512 = "ovx/7NkTrnPuIV8sqk/GjUIIM1+iUQeqA3ye2VNpq9sVoiZsooObWlQy+OPWGI17GDaEoybuAGJm6U8yC077BA==";
};
};
- "commander-7.1.0" = {
- name = "commander";
- packageName = "commander";
- version = "7.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-7.1.0.tgz";
- sha512 = "pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg==";
- };
- };
"commander-7.2.0" = {
name = "commander";
packageName = "commander";
@@ -16627,6 +16726,15 @@ let
sha512 = "yePcBqEFhLOqSBtwYOGGS1exHo/s1xjekXiinh4itpNQGCu4KA1euPh1fg07N2wMITZXQkBz75Ntdt1ctGZouw==";
};
};
+ "constantinople-4.0.1" = {
+ name = "constantinople";
+ packageName = "constantinople";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz";
+ sha512 = "vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==";
+ };
+ };
"constants-browserify-1.0.0" = {
name = "constants-browserify";
packageName = "constants-browserify";
@@ -16672,6 +16780,15 @@ let
sha1 = "6874f1e935fca99d048caeaaad9a0aeb020bcce0";
};
};
+ "contains-path-0.1.0" = {
+ name = "contains-path";
+ packageName = "contains-path";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz";
+ sha1 = "fe8cf184ff6670b6baef01a9d4861a5cbec4120a";
+ };
+ };
"content-disposition-0.5.2" = {
name = "content-disposition";
packageName = "content-disposition";
@@ -16718,13 +16835,13 @@ let
sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
};
};
- "contentful-management-7.14.0" = {
+ "contentful-management-7.14.1" = {
name = "contentful-management";
packageName = "contentful-management";
- version = "7.14.0";
+ version = "7.14.1";
src = fetchurl {
- url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.14.0.tgz";
- sha512 = "6i3lDp+1S+DZc7nv+dYGKqZ/GbhbiJakp4fS0zqCtuaQb+80k9+9a/DO1/M3QmS7t7urITYiwTVgQl8hvqAFFg==";
+ url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.14.1.tgz";
+ sha512 = "s8Jisju/GI9n0zvkBQDix8jo8Grq3dfv0VPicc4cRXUopxjy8O+zH+nBiiU+M9TPS4RxtivDzwNH64smweDkbg==";
};
};
"contentful-sdk-core-6.7.0" = {
@@ -17141,13 +17258,13 @@ let
sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==";
};
};
- "core-js-3.10.0" = {
+ "core-js-3.10.1" = {
name = "core-js";
packageName = "core-js";
- version = "3.10.0";
+ version = "3.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.10.0.tgz";
- sha512 = "MQx/7TLgmmDVamSyfE+O+5BHvG1aUGj/gHhLn1wVtm2B5u1eVIPvh7vkfjwWKNCjrTJB8+He99IntSQ1qP+vYQ==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.10.1.tgz";
+ sha512 = "pwCxEXnj27XG47mu7SXAwhLP3L5CrlvCB91ANUkIz40P27kUcvNfSdvyZJ9CLHiVoKSp+TTChMQMSKQEH/IQxA==";
};
};
"core-js-3.8.3" = {
@@ -17159,13 +17276,22 @@ let
sha512 = "KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q==";
};
};
- "core-js-compat-3.10.0" = {
+ "core-js-compat-3.10.1" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.10.0";
+ version = "3.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.10.0.tgz";
- sha512 = "9yVewub2MXNYyGvuLnMHcN1k9RkvB7/ofktpeKTIaASyB88YYqGzUnu0ywMMhJrDHOMiTjSHWGzR+i7Wb9Z1kQ==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.10.1.tgz";
+ sha512 = "ZHQTdTPkqvw2CeHiZC970NNJcnwzT6YIueDMASKt+p3WbZsLXOcoD392SkcWhkC0wBBHhlfhqGKKsNCQUozYtg==";
+ };
+ };
+ "core-js-pure-3.10.1" = {
+ name = "core-js-pure";
+ packageName = "core-js-pure";
+ version = "3.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.10.1.tgz";
+ sha512 = "PeyJH2SE0KuxY5eCGNWA+W+CeDpB6M1PN3S7Am7jSv/Ttuxz2SnWbIiVQOn/TDaGaGtxo8CRWHkXwJscbUHtVw==";
};
};
"core-util-is-1.0.2" = {
@@ -17411,13 +17537,13 @@ let
sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==";
};
};
- "create-torrent-4.6.0" = {
+ "create-torrent-4.7.0" = {
name = "create-torrent";
packageName = "create-torrent";
- version = "4.6.0";
+ version = "4.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/create-torrent/-/create-torrent-4.6.0.tgz";
- sha512 = "fIGI7w1K27XK3WSLrH7OS7A7p5me4IcXWbXSn5VNu48Hp7+HlRsQGqYGJX1DXHgpVWICoq5w8pdYQ/nENnGljQ==";
+ url = "https://registry.npmjs.org/create-torrent/-/create-torrent-4.7.0.tgz";
+ sha512 = "Pb3XjZNKdCs0Nk46yFKb82y+a3xRQeMvGi1AlJfIV40y/iwkgBqzS5EfqdnakEOvh2jzTOx3v8QxZpkz4hPzyw==";
};
};
"cron-1.7.2" = {
@@ -17582,15 +17708,6 @@ let
sha512 = "fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==";
};
};
- "crypto-js-3.1.9-1" = {
- name = "crypto-js";
- packageName = "crypto-js";
- version = "3.1.9-1";
- src = fetchurl {
- url = "https://registry.npmjs.org/crypto-js/-/crypto-js-3.1.9-1.tgz";
- sha1 = "fda19e761fc077e01ffbfdc6e9fdfc59e8806cd8";
- };
- };
"crypto-js-4.0.0" = {
name = "crypto-js";
packageName = "crypto-js";
@@ -17753,6 +17870,15 @@ let
sha512 = "qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA==";
};
};
+ "css-select-4.0.0" = {
+ name = "css-select";
+ packageName = "css-select";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-select/-/css-select-4.0.0.tgz";
+ sha512 = "I7favumBlDP/nuHBKLfL5RqvlvRdn/W29evvWJ+TaoGPm7QD+xSIN5eY2dyGjtkUmemh02TZrqJb4B8DWo6PoQ==";
+ };
+ };
"css-select-base-adapter-0.1.1" = {
name = "css-select-base-adapter";
packageName = "css-select-base-adapter";
@@ -17834,6 +17960,15 @@ let
sha512 = "teijzG7kwYfNVsUh2H/YN62xW3KK9YhXEgSlbxMlcyjPNvdKJqFx5lrwlJgoFP1ZHlB89iGDlo/JyshKeRhv5A==";
};
};
+ "css-what-5.0.0" = {
+ name = "css-what";
+ packageName = "css-what";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-what/-/css-what-5.0.0.tgz";
+ sha512 = "qxyKHQvgKwzwDWC/rGbT821eJalfupxYW2qbSJSAtdSTimsr/MlaGONoNLllaUPZWf8QnbcKM/kPVYUQuEKAFA==";
+ };
+ };
"cssauron-1.4.0" = {
name = "cssauron";
packageName = "cssauron";
@@ -18536,13 +18671,13 @@ let
sha512 = "Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==";
};
};
- "d3-time-2.0.0" = {
+ "d3-time-2.1.1" = {
name = "d3-time";
packageName = "d3-time";
- version = "2.0.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/d3-time/-/d3-time-2.0.0.tgz";
- sha512 = "2mvhstTFcMvwStWd9Tj3e6CEqtOivtD8AUiHT8ido/xmzrI9ijrUUihZ6nHuf/vsScRBonagOdj0Vv+SEL5G3Q==";
+ url = "https://registry.npmjs.org/d3-time/-/d3-time-2.1.1.tgz";
+ sha512 = "/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==";
};
};
"d3-time-format-2.3.0" = {
@@ -18635,6 +18770,15 @@ let
sha512 = "e/6jXeCP7/ptlAM48clmX4xTZc5Ek6T6kagS7Oz2HrYSdqcLZFLqpAfh7ldbZRFfxCZVyh61NEPR08UQRVxJzQ==";
};
};
+ "damerau-levenshtein-1.0.6" = {
+ name = "damerau-levenshtein";
+ packageName = "damerau-levenshtein";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz";
+ sha512 = "JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==";
+ };
+ };
"dargs-6.1.0" = {
name = "dargs";
packageName = "dargs";
@@ -20129,13 +20273,13 @@ let
sha512 = "Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==";
};
};
- "diff2html-3.4.2" = {
+ "diff2html-3.4.3" = {
name = "diff2html";
packageName = "diff2html";
- version = "3.4.2";
+ version = "3.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.2.tgz";
- sha512 = "3H4gFSnyf+TI6hM+AIF1Y2Hk3RZ5/Rb+/IpafgDDX0loc/klLS8iQxbx7+ByfRccb09E+pTVt+g9UEM2L9ebPw==";
+ url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.3.tgz";
+ sha512 = "ISnQ+aIZWyRsD6F/VZUoeXC3n54rT5tftHPJBZhbYzCDrJfTuiZMvzSY34uoN3xJ/ookMDn0FDs3hc67DmwEyA==";
};
};
"diff3-0.0.3" = {
@@ -20426,13 +20570,22 @@ let
sha512 = "iQyp12k1A4tF3sEfLAq2wfFPKdpoiGTJeuiu2Y1bdEqIZu0DfSSL2zm0fk7a/UHeQkngnYaRRGuON+C+2LO1Fw==";
};
};
- "dockerfile-language-service-0.2.0" = {
+ "dockerfile-ast-0.2.1" = {
+ name = "dockerfile-ast";
+ packageName = "dockerfile-ast";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dockerfile-ast/-/dockerfile-ast-0.2.1.tgz";
+ sha512 = "ut04CVM1G6zIITTcYPDIXhPZk9mCa21m4dfW8FcDDGxwgTQhYyHDu6U7M8klZ7QsjqVcJhryKi+TGOX6bjgKdQ==";
+ };
+ };
+ "dockerfile-language-service-0.3.0" = {
name = "dockerfile-language-service";
packageName = "dockerfile-language-service";
- version = "0.2.0";
+ version = "0.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.2.0.tgz";
- sha512 = "Y1JYIDF8F78kNDwyoQoeAPzptJRubIaMJ5q4mATmeDViGVV+mY4m6BjHqw5XtlkHEftljgqMNDvbUORUDIzTHg==";
+ url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.3.0.tgz";
+ sha512 = "BUStimzz1Ozh41o+2AgMfwW8M7KsqzOBllNlLkf7NDe6W9KvcC3d8j4MTc+cU9wfRUoVckK39M2btvRFFDK61w==";
};
};
"dockerfile-utils-0.2.0" = {
@@ -20444,6 +20597,24 @@ let
sha512 = "B8tEGwLd3w0dWALshXS0gkAwDYdqFKAKm9zIyp/nCFkx8+BOhbz5CiAFlVU+WRvv6kd6AP/YtYVOzSL54MJlmQ==";
};
};
+ "dockerfile-utils-0.4.2" = {
+ name = "dockerfile-utils";
+ packageName = "dockerfile-utils";
+ version = "0.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.4.2.tgz";
+ sha512 = "WfJEuXWdVdiarhxJgRlZ9bkMO/9un6dZDz+u3z6AYEXfsH2XRwYqdIvyOqFzaDDP0Hc6pR5rb9FJRSKyo+NuxA==";
+ };
+ };
+ "doctrine-1.5.0" = {
+ name = "doctrine";
+ packageName = "doctrine";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz";
+ sha1 = "379dce730f6166f76cefa4e6707a159b02c5a6fa";
+ };
+ };
"doctrine-2.1.0" = {
name = "doctrine";
packageName = "doctrine";
@@ -20525,6 +20696,15 @@ let
sha512 = "n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA==";
};
};
+ "dom-serializer-1.3.1" = {
+ name = "dom-serializer";
+ packageName = "dom-serializer";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.1.tgz";
+ sha512 = "Pv2ZluG5ife96udGgEDovOOOA5UELkltfJpnIExPrAk1LTvecolUGn6lIaoLh86d83GiB86CjzciMd9BuRB71Q==";
+ };
+ };
"dom-storage-2.1.0" = {
name = "dom-storage";
packageName = "dom-storage";
@@ -20687,13 +20867,13 @@ let
sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==";
};
};
- "domutils-2.5.1" = {
+ "domutils-2.5.2" = {
name = "domutils";
packageName = "domutils";
- version = "2.5.1";
+ version = "2.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/domutils/-/domutils-2.5.1.tgz";
- sha512 = "hO1XwHMGAthA/1KL7c83oip/6UWo3FlUNIuWiWKltoiQ5oCOiqths8KknvY2jpOohUoUgnwa/+Rm7UpwpSbY/Q==";
+ url = "https://registry.npmjs.org/domutils/-/domutils-2.5.2.tgz";
+ sha512 = "MHTthCb1zj8f1GVfRpeZUbohQf/HdBos0oX5gZcQFepOZPLLRyj6Wn7XS7EMnY7CVpwv8863u2vyE83Hfu28HQ==";
};
};
"dot-case-3.0.4" = {
@@ -20795,15 +20975,6 @@ let
sha512 = "1l9K4UnQQHSfKgeHeLrxnB53AidCZqPyf9dkRL4/fZl8//NPiiDD43zHtgylw8DHlO7gvM8+O5a0UPHesNYZKw==";
};
};
- "double-ended-queue-2.1.0-0" = {
- name = "double-ended-queue";
- packageName = "double-ended-queue";
- version = "2.1.0-0";
- src = fetchurl {
- url = "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz";
- sha1 = "103d3527fd31528f40188130c841efdd78264e5c";
- };
- };
"downgrade-root-1.2.2" = {
name = "downgrade-root";
packageName = "downgrade-root";
@@ -21182,13 +21353,13 @@ let
sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ==";
};
};
- "electron-to-chromium-1.3.708" = {
+ "electron-to-chromium-1.3.713" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.3.708";
+ version = "1.3.713";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.708.tgz";
- sha512 = "+A8ggYZ5riOLMcVAuzHx6bforaPzaiLnW1QOMD2SlMYQVi7QQTyQ/WrlZoebIH9ikmgr+tLJGpNITFFCUiQcPw==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.713.tgz";
+ sha512 = "HWgkyX4xTHmxcWWlvv7a87RHSINEcpKYZmDMxkUlHcY+CJcfx7xEfBHuXVsO1rzyYs1WQJ7EgDp2CoErakBIow==";
};
};
"electrum-client-git://github.com/janoside/electrum-client" = {
@@ -21337,6 +21508,15 @@ let
sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==";
};
};
+ "emoji-regex-9.2.2" = {
+ name = "emoji-regex";
+ packageName = "emoji-regex";
+ version = "9.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz";
+ sha512 = "L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==";
+ };
+ };
"emoji-server-1.0.0" = {
name = "emoji-server";
packageName = "emoji-server";
@@ -21805,6 +21985,15 @@ let
sha512 = "2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==";
};
};
+ "err-code-3.0.1" = {
+ name = "err-code";
+ packageName = "err-code";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/err-code/-/err-code-3.0.1.tgz";
+ sha512 = "GiaH0KJUewYok+eeY05IIgjtAe4Yltygk9Wqp1V5yVWLdhf0hYZchRjNIT9bb0mSwRcIusT3cx7PJUf3zEIfUA==";
+ };
+ };
"errlop-2.2.0" = {
name = "errlop";
packageName = "errlop";
@@ -22039,22 +22228,13 @@ let
sha512 = "p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==";
};
};
- "esbuild-0.8.57" = {
+ "esbuild-0.11.10" = {
name = "esbuild";
packageName = "esbuild";
- version = "0.8.57";
+ version = "0.11.10";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild/-/esbuild-0.8.57.tgz";
- sha512 = "j02SFrUwFTRUqiY0Kjplwjm1psuzO1d6AjaXKuOR9hrY0HuPsT6sV42B6myW34h1q4CRy+Y3g4RU/cGJeI/nNA==";
- };
- };
- "esbuild-0.9.7" = {
- name = "esbuild";
- packageName = "esbuild";
- version = "0.9.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/esbuild/-/esbuild-0.9.7.tgz";
- sha512 = "VtUf6aQ89VTmMLKrWHYG50uByMF4JQlVysb8dmg6cOgW8JnFCipmz7p+HNBl+RR3LLCuBxFGVauAe2wfnF9bLg==";
+ url = "https://registry.npmjs.org/esbuild/-/esbuild-0.11.10.tgz";
+ sha512 = "XvGbf+UreVFA24Tlk6sNOqNcvF2z49XAZt4E7A4H80+yqn944QOLTTxaU0lkdYNtZKFiITNea+VxmtrfjvnLPA==";
};
};
"esc-exit-2.0.2" = {
@@ -22237,13 +22417,49 @@ let
sha512 = "W2aJbXpMNofUp0ztQaF40fveSsJBjlSCSWpy//gzfTvwC+USs/nceBrKmlJOiM8r1bLwP2EuYkCqArn/6QTIgg==";
};
};
- "eslint-7.23.0" = {
+ "eslint-7.24.0" = {
name = "eslint";
packageName = "eslint";
- version = "7.23.0";
+ version = "7.24.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-7.23.0.tgz";
- sha512 = "kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-7.24.0.tgz";
+ sha512 = "k9gaHeHiFmGCDQ2rEfvULlSLruz6tgfA8DEn+rY9/oYPFFTlz55mM/Q/Rij1b2Y42jwZiK3lXvNTw6w6TXzcKQ==";
+ };
+ };
+ "eslint-import-resolver-node-0.3.4" = {
+ name = "eslint-import-resolver-node";
+ packageName = "eslint-import-resolver-node";
+ version = "0.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz";
+ sha512 = "ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==";
+ };
+ };
+ "eslint-module-utils-2.6.0" = {
+ name = "eslint-module-utils";
+ packageName = "eslint-module-utils";
+ version = "2.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz";
+ sha512 = "6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==";
+ };
+ };
+ "eslint-plugin-import-2.22.1" = {
+ name = "eslint-plugin-import";
+ packageName = "eslint-plugin-import";
+ version = "2.22.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz";
+ sha512 = "8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==";
+ };
+ };
+ "eslint-plugin-jsx-a11y-6.4.1" = {
+ name = "eslint-plugin-jsx-a11y";
+ packageName = "eslint-plugin-jsx-a11y";
+ version = "6.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz";
+ sha512 = "0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==";
};
};
"eslint-plugin-no-unsanitized-3.1.4" = {
@@ -22255,6 +22471,24 @@ let
sha512 = "WF1+eZo2Sh+bQNjZuVNwT0dA61zuJORsLh+1Sww7+O6GOPw+WPWIIRfTWNqrmaXaDMhM4SXAqYPcNlhRMiH13g==";
};
};
+ "eslint-plugin-react-7.23.2" = {
+ name = "eslint-plugin-react";
+ packageName = "eslint-plugin-react";
+ version = "7.23.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.23.2.tgz";
+ sha512 = "AfjgFQB+nYszudkxRkTFu0UR1zEQig0ArVMPloKhxwlwkzaw/fBiH0QWcBBhZONlXqQC51+nfqFrkn4EzHcGBw==";
+ };
+ };
+ "eslint-plugin-react-hooks-4.2.0" = {
+ name = "eslint-plugin-react-hooks";
+ packageName = "eslint-plugin-react-hooks";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz";
+ sha512 = "623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==";
+ };
+ };
"eslint-plugin-vue-6.2.2" = {
name = "eslint-plugin-vue";
packageName = "eslint-plugin-vue";
@@ -22264,13 +22498,13 @@ let
sha512 = "Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ==";
};
};
- "eslint-plugin-vue-7.8.0" = {
+ "eslint-plugin-vue-7.9.0" = {
name = "eslint-plugin-vue";
packageName = "eslint-plugin-vue";
- version = "7.8.0";
+ version = "7.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.8.0.tgz";
- sha512 = "OGrnPz+PuYL2HmVyBHxm4mRjxW2kfFCQE6Hw9G6qOHs/Pcu0srOlCCW0FMa8SLzIEqxl8WuKoBSPcMnrjUG2vw==";
+ url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.9.0.tgz";
+ sha512 = "2Q0qQp5+5h+pZvJKCbG1/jCRUYrdgAz5BYKGyTlp2NU8mx09u3Hp7PsH6d5qef6ojuPoCXMnrbbDxeoplihrSw==";
};
};
"eslint-scope-3.7.3" = {
@@ -22651,6 +22885,15 @@ let
sha512 = "RJ10wL8/F9AlfBgRCvYctJIXSb9XkVmSCK3GGUvPD3dJrvTjDeDT0tmhcbEC6I2NEjNM9xD38HQJ4F/f/gb4VQ==";
};
};
+ "event-loop-stats-1.3.0" = {
+ name = "event-loop-stats";
+ packageName = "event-loop-stats";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/event-loop-stats/-/event-loop-stats-1.3.0.tgz";
+ sha512 = "CRto3Zyg3YE3AaBM/hPc7mJrbSOhy32P1wqIsZpp4rPHrj5qQavLUJKf+8fFq13ahC24T+RcX3f3fK13ElYZNw==";
+ };
+ };
"event-pubsub-4.3.0" = {
name = "event-pubsub";
packageName = "event-pubsub";
@@ -22948,6 +23191,15 @@ let
sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==";
};
};
+ "execa-2.1.0" = {
+ name = "execa";
+ packageName = "execa";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-2.1.0.tgz";
+ sha512 = "Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw==";
+ };
+ };
"execa-3.4.0" = {
name = "execa";
packageName = "execa";
@@ -23119,13 +23371,13 @@ let
sha1 = "a793d3ac0cad4c6ab571e9968fbbab6cb2532929";
};
};
- "expo-pwa-0.0.70" = {
+ "expo-pwa-0.0.71" = {
name = "expo-pwa";
packageName = "expo-pwa";
- version = "0.0.70";
+ version = "0.0.71";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.70.tgz";
- sha512 = "DLmNZFBpVsv6mxq43opEentBZbKWODJBwtQmQKtHVS0kzzfYH6X+wI2ZWC73cA16QiGxWROoPtLjtQUcpfSxcw==";
+ url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.71.tgz";
+ sha512 = "qmW7fw9QzELiOWu8YD+NZlxLoZfmwNEbzQ83Wk4ZHrs1bod6tr67Mz4G/lgg9p4s8XHQKwF40xqEUF4qe4RA3A==";
};
};
"express-2.5.11" = {
@@ -23164,6 +23416,15 @@ let
sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==";
};
};
+ "express-async-handler-1.1.4" = {
+ name = "express-async-handler";
+ packageName = "express-async-handler";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-async-handler/-/express-async-handler-1.1.4.tgz";
+ sha512 = "HdmbVF4V4w1q/iz++RV7bUxIeepTukWewiJGkoCKQMtvPF11MLTa7It9PRc/reysXXZSEyD4Pthchju+IUbMiQ==";
+ };
+ };
"express-graphql-0.9.0" = {
name = "express-graphql";
packageName = "express-graphql";
@@ -23560,15 +23821,6 @@ let
sha512 = "Qod3DdRgFZ8GUIM6ygeoZYpQ0QLW9cf/FS9KhhjlYggcSZXWAemAw8BOCO5LuYCrR3Uj3qXDVTUzOUwG8C7beQ==";
};
};
- "fast-crc32c-2.0.0" = {
- name = "fast-crc32c";
- packageName = "fast-crc32c";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-crc32c/-/fast-crc32c-2.0.0.tgz";
- sha512 = "LIREwygxtxzHF11oLJ4xIVKu/ZWNgrj/QaGvaSD8ZggIsgCyCtSYevlrpWVqNau57ZwezV8K1HFBSjQ7FcRbTQ==";
- };
- };
"fast-csv-4.3.6" = {
name = "fast-csv";
packageName = "fast-csv";
@@ -24217,6 +24469,15 @@ let
sha512 = "LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==";
};
};
+ "filesize-6.2.1" = {
+ name = "filesize";
+ packageName = "filesize";
+ version = "6.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filesize/-/filesize-6.2.1.tgz";
+ sha512 = "neMilKeMJQ0zUWuxAciRVhtncuxF/Gkhig4+8FrL4g7ppqN7JEGRb1uZFjVid7OJk7CE3ulZuO7V+nB2WDJW+A==";
+ };
+ };
"filestream-5.0.0" = {
name = "filestream";
packageName = "filestream";
@@ -25018,13 +25279,13 @@ let
sha512 = "ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==";
};
};
- "form-urlencoded-4.4.2" = {
+ "form-urlencoded-4.5.0" = {
name = "form-urlencoded";
packageName = "form-urlencoded";
- version = "4.4.2";
+ version = "4.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/form-urlencoded/-/form-urlencoded-4.4.2.tgz";
- sha512 = "6sZj0HI9tCcGuzC9W/nkHvNLAjOo1G/jjnNluChOGMwn75Po6g5nGYASxQUJeSQHLng1SpovGjQr1f4xz1PqQw==";
+ url = "https://registry.npmjs.org/form-urlencoded/-/form-urlencoded-4.5.0.tgz";
+ sha512 = "iv4Vc+xD37MULhC7DBgSq/GBp2mZMh7Q19ErhAqCX9trPc7Ix8P7x+KZojTmEpxtajzpCm153sxrXKDbNxkBNQ==";
};
};
"format-0.2.2" = {
@@ -25036,15 +25297,6 @@ let
sha1 = "d6170107e9efdc4ed30c9dc39016df942b5cb58b";
};
};
- "format-util-1.0.5" = {
- name = "format-util";
- packageName = "format-util";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/format-util/-/format-util-1.0.5.tgz";
- sha512 = "varLbTj0e0yVyRpqQhuWV+8hlePAgaoFRhNFj50BNjEIrw1/DphHSObtqwskVCPWNgzwPoQrZAbfa/SBiicNeg==";
- };
- };
"formidable-1.0.11" = {
name = "formidable";
packageName = "formidable";
@@ -26576,13 +26828,13 @@ let
sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==";
};
};
- "globals-13.7.0" = {
+ "globals-13.8.0" = {
name = "globals";
packageName = "globals";
- version = "13.7.0";
+ version = "13.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/globals/-/globals-13.7.0.tgz";
- sha512 = "Aipsz6ZKRxa/xQkZhNg0qIWXT6x6rD46f6x/PCnBomlttdIyAPak4YD9jTmKpZ72uROSMU87qJtcgpgHaVchiA==";
+ url = "https://registry.npmjs.org/globals/-/globals-13.8.0.tgz";
+ sha512 = "rHtdA6+PDBIjeEvA91rpqzEvk/k3/i7EeNQiryiWuJH0Hw9cpyJMAt2jtbAwUaRdhD+573X4vWw6IcjKPasi9Q==";
};
};
"globals-9.18.0" = {
@@ -26765,13 +27017,13 @@ let
sha512 = "Q+ZjUEvLQj/lrVHF/IQwRo6p3s8Nc44Zk/DALsN+ac3T4HY/g/3rrufkgtl+nZ1TW7DNAw5cTChdVp4apUXVgQ==";
};
};
- "google-auth-library-7.0.3" = {
+ "google-auth-library-7.0.4" = {
name = "google-auth-library";
packageName = "google-auth-library";
- version = "7.0.3";
+ version = "7.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.0.3.tgz";
- sha512 = "6wJNYqY1QUr5I2lWaUkkzOT2b9OCNhNQrdFOt/bsBbGb7T7NCdEvrBsXraUm+KTUGk2xGlQ7m9RgUd4Llcw8NQ==";
+ url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.0.4.tgz";
+ sha512 = "o8irYyeijEiecTXeoEe8UKNEzV1X+uhR4b2oNdapDMZixypp0J+eHimGOyx5Joa3UAeokGngdtDLXtq9vDqG2Q==";
};
};
"google-closure-compiler-js-20170910.0.1" = {
@@ -28115,13 +28367,13 @@ let
sha1 = "08a74d9272a9cc83ae8e6bbe0303f0ee76432094";
};
};
- "hosted-git-info-2.8.8" = {
+ "hosted-git-info-2.8.9" = {
name = "hosted-git-info";
packageName = "hosted-git-info";
- version = "2.8.8";
+ version = "2.8.9";
src = fetchurl {
- url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz";
- sha512 = "f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==";
+ url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz";
+ sha512 = "mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==";
};
};
"hosted-git-info-3.0.8" = {
@@ -28322,13 +28574,13 @@ let
sha1 = "3a03edc2214bca3b66424a3e7959349509cb0351";
};
};
- "htmlnano-0.2.8" = {
+ "htmlnano-0.2.9" = {
name = "htmlnano";
packageName = "htmlnano";
- version = "0.2.8";
+ version = "0.2.9";
src = fetchurl {
- url = "https://registry.npmjs.org/htmlnano/-/htmlnano-0.2.8.tgz";
- sha512 = "q5gbo4SIDAE5sfJ5V0UD6uu+n1dcO/Mpr0B6SlDlJBoV7xKPne4uG4UwrT8vUWjdjIPJl95TY8EDuEbBW2TG0A==";
+ url = "https://registry.npmjs.org/htmlnano/-/htmlnano-0.2.9.tgz";
+ sha512 = "jWTtP3dCd7R8x/tt9DK3pvpcQd7HDMcRPUqPxr/i9989q2k5RHIhmlRDFeyQ/LSd8IKrteG8Ce5g0Ig4eGIipg==";
};
};
"htmlparser2-3.10.1" = {
@@ -28367,13 +28619,13 @@ let
sha512 = "4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==";
};
};
- "htmlparser2-6.0.1" = {
+ "htmlparser2-6.1.0" = {
name = "htmlparser2";
packageName = "htmlparser2";
- version = "6.0.1";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.0.1.tgz";
- sha512 = "GDKPd+vk4jvSuvCbyuzx/unmXkk090Azec7LovXP8as1Hn8q9p3hbjmDGbUqqhknw0ajwit6LiiWqfiTUPMK7w==";
+ url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz";
+ sha512 = "gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==";
};
};
"http-auth-2.0.7" = {
@@ -28548,13 +28800,13 @@ let
sha512 = "yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==";
};
};
- "http-proxy-middleware-1.1.0" = {
+ "http-proxy-middleware-1.1.1" = {
name = "http-proxy-middleware";
packageName = "http-proxy-middleware";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.1.0.tgz";
- sha512 = "OnjU5vyVgcZVe2AjLJyMrk8YLNOC2lspCHirB5ldM+B/dwEfZ5bgVTrFyzE9R7xRWAP/i/FXtvIqKjTNEZBhBg==";
+ url = "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.1.1.tgz";
+ sha512 = "FIDg9zPvOwMhQ3XKB2+vdxK6WWbVAH7s5QpqQCif7a1TNL76GNAATWA1sy6q2gSfss8UJ/Nwza3N6QnFkKclpA==";
};
};
"http-signature-0.11.0" = {
@@ -29655,6 +29907,15 @@ let
sha512 = "S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==";
};
};
+ "internal-slot-1.0.3" = {
+ name = "internal-slot";
+ packageName = "internal-slot";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz";
+ sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==";
+ };
+ };
"internmap-1.0.1" = {
name = "internmap";
packageName = "internmap";
@@ -30249,13 +30510,13 @@ let
sha1 = "f04374d4eee5310e9a8e113bf1495411e46176a1";
};
};
- "is-docker-2.2.0" = {
+ "is-docker-2.2.1" = {
name = "is-docker";
packageName = "is-docker";
- version = "2.2.0";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-docker/-/is-docker-2.2.0.tgz";
- sha512 = "K4GwB4i/HzhAzwP/XSlspzRdFTI9N8OxJOyOU7Y5Rz+p+WBokXWVWblaJeBkggthmoSV0OoGTH5thJNvplpkvQ==";
+ url = "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz";
+ sha512 = "F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==";
};
};
"is-dotfile-1.0.3" = {
@@ -30294,6 +30555,15 @@ let
sha1 = "39acaa6be7fd1f3471dc42c7416e61c24317ac9f";
};
};
+ "is-expression-4.0.0" = {
+ name = "is-expression";
+ packageName = "is-expression";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz";
+ sha512 = "zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==";
+ };
+ };
"is-extendable-0.1.1" = {
name = "is-extendable";
packageName = "is-extendable";
@@ -30825,13 +31095,13 @@ let
sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4";
};
};
- "is-potential-custom-element-name-1.0.0" = {
+ "is-potential-custom-element-name-1.0.1" = {
name = "is-potential-custom-element-name";
packageName = "is-potential-custom-element-name";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz";
- sha1 = "0c52e54bcca391bb2c494b21e8626d7336c6e397";
+ url = "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz";
+ sha512 = "bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==";
};
};
"is-primitive-2.0.0" = {
@@ -31176,13 +31446,13 @@ let
sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72";
};
};
- "is-valid-domain-0.0.17" = {
+ "is-valid-domain-0.0.19" = {
name = "is-valid-domain";
packageName = "is-valid-domain";
- version = "0.0.17";
+ version = "0.0.19";
src = fetchurl {
- url = "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.0.17.tgz";
- sha512 = "w0UWEXyrgPeWWwj9FVT14y4/dSIqWgjDkzxbsGDFpT+QRbyS9HTwwNvGus2IOR/03GzCpeChzSWK9Bo9WlStDA==";
+ url = "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.0.19.tgz";
+ sha512 = "NxuZbJABXdGlFNEVphG9bT0YOQE0B75Bv+emGsEjmRnAs9aMUVbdKUafj//yTxApThjqQqRKBd9MJDlnqx8Pmg==";
};
};
"is-valid-glob-1.0.0" = {
@@ -31743,13 +32013,13 @@ let
sha512 = "0soPJif+yjmzmOF+4cF2hyhxUWWpXpQntsm2joJXFFoRcQiPzsG4dbLKYqYPT3Fc6PjZ8MaLtCkDqqckVSfmRw==";
};
};
- "jitdb-2.3.5" = {
+ "jitdb-3.0.2" = {
name = "jitdb";
packageName = "jitdb";
- version = "2.3.5";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jitdb/-/jitdb-2.3.5.tgz";
- sha512 = "Z22GkEA2GJqnJZX3sIErn/v4rW4fyk/Vj2nOJfVXhCfgZkhrGzT0MVRF9RlE4pKmm010wfp09n9jLli5bpKQ7g==";
+ url = "https://registry.npmjs.org/jitdb/-/jitdb-3.0.2.tgz";
+ sha512 = "8wsv+QlJNaYPH6RHb3HlwheqAKAxsTlFezhF3oTpYLyvrWroX2XDWbXdLOmDb27JviHvjwDV4CXw9mlL/q1new==";
};
};
"jju-1.4.0" = {
@@ -31905,6 +32175,15 @@ let
sha1 = "52fa655ab61877d6f1079efc6534b554f31e5444";
};
};
+ "js-levenshtein-1.1.6" = {
+ name = "js-levenshtein";
+ packageName = "js-levenshtein";
+ version = "1.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz";
+ sha512 = "X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==";
+ };
+ };
"js-message-1.0.7" = {
name = "js-message";
packageName = "js-message";
@@ -32103,13 +32382,13 @@ let
sha512 = "fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==";
};
};
- "jsdom-16.5.2" = {
+ "jsdom-16.5.3" = {
name = "jsdom";
packageName = "jsdom";
- version = "16.5.2";
+ version = "16.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/jsdom/-/jsdom-16.5.2.tgz";
- sha512 = "JxNtPt9C1ut85boCbJmffaQ06NBnzkQY/MWO3YxPW8IWS38A26z+B1oBvA9LwKrytewdfymnhi4UNH3/RAgZrg==";
+ url = "https://registry.npmjs.org/jsdom/-/jsdom-16.5.3.tgz";
+ sha512 = "Qj1H+PEvUsOtdPJ056ewXM4UJPCi4hhLA8wpiz9F2YvsRBhuFsXxtrIFAgGBDynQA9isAMGE91PfUYbdMPXuTA==";
};
};
"jsdom-7.2.2" = {
@@ -32148,40 +32427,40 @@ let
sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==";
};
};
- "jsii-1.27.0" = {
+ "jsii-1.27.1" = {
name = "jsii";
packageName = "jsii";
- version = "1.27.0";
+ version = "1.27.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii/-/jsii-1.27.0.tgz";
- sha512 = "EP1NIeheeUw4WpGESkOK7Kb/bT9bBlOunlQuQb+KSMKYq+Zh8uWuFxzTYbt3pg/UdaVis5YD0jsdVgQFVU7ufA==";
+ url = "https://registry.npmjs.org/jsii/-/jsii-1.27.1.tgz";
+ sha512 = "2VIZwLytVRsOnqhdZNqZPPKrAPYIAmqxest7YcrwgFbTK+Zyxsa2FQyWyD2nNVzdxWqVUqALvuV3RMKMEHWv7g==";
};
};
- "jsii-pacmak-1.27.0" = {
+ "jsii-pacmak-1.27.1" = {
name = "jsii-pacmak";
packageName = "jsii-pacmak";
- version = "1.27.0";
+ version = "1.27.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.27.0.tgz";
- sha512 = "K19kyUvFKpg6l5VaTkwFz4pgnrOR/vH69iqE6YWSJVY1i3S7dTA2mhG+dVbeB96MMnx7IUno0iKT3br/aWCtew==";
+ url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.27.1.tgz";
+ sha512 = "OA9lPxOFHyGmLsGWe8VjbTnIsAjZo8vHHB7RVHZeZ5pwKZJxV3ND2SBgb8cvzbu9rwLi/eFD0aAadq9fRFrDLA==";
};
};
- "jsii-reflect-1.27.0" = {
+ "jsii-reflect-1.27.1" = {
name = "jsii-reflect";
packageName = "jsii-reflect";
- version = "1.27.0";
+ version = "1.27.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.27.0.tgz";
- sha512 = "+E2VhlDxvEcsBj8LdBaJ0OFS6+mDaWbDNmUSZ7UPIJxDPQzRFMGlMUyymz8J0f3Y2UWKiXgLvBhzEvF9UA4fCQ==";
+ url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.27.1.tgz";
+ sha512 = "I2jc7Gv26N9MUyVhewjLS9vZJL4aPOcKCjgsmpDCX4Pz7ny9Op7iHNST9LpicY0Vqv81gi8OnsM0mWBPUM2nOA==";
};
};
- "jsii-rosetta-1.27.0" = {
+ "jsii-rosetta-1.27.1" = {
name = "jsii-rosetta";
packageName = "jsii-rosetta";
- version = "1.27.0";
+ version = "1.27.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.27.0.tgz";
- sha512 = "swQz1lsB5k2v2euJfxYOtRy+SHnYS9WJ2XRkstY8/j0xMFOLNNXoWwSDrK97h3qis+yUuCHZlI6DNQzQh1NutA==";
+ url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.27.1.tgz";
+ sha512 = "GLoKI5iRvqhcDYxtgXReVEbBChyGbUvTy8n344UkVNvIPHnq0bhLPGArttnrbbHmIZcxrAoYd+6o5sqZ2fUZNQ==";
};
};
"jsii-srcmak-0.1.255" = {
@@ -32382,15 +32661,6 @@ let
sha1 = "51d3ca48955d8fe734f591d747b72453be5a78f2";
};
};
- "json-schema-ref-parser-6.1.0" = {
- name = "json-schema-ref-parser";
- packageName = "json-schema-ref-parser";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-schema-ref-parser/-/json-schema-ref-parser-6.1.0.tgz";
- sha512 = "pXe9H1m6IgIpXmE5JSb8epilNTGsmTb2iPohAXpOdhqGFbQjNeHHsZxU+C8w6T81GZxSPFLeUoqDJmzxx5IGuw==";
- };
- };
"json-schema-traverse-0.3.1" = {
name = "json-schema-traverse";
packageName = "json-schema-traverse";
@@ -32778,6 +33048,15 @@ let
sha1 = "69ec30ce4518bed5997b38f027648e8c285e92f7";
};
};
+ "jsx-ast-utils-3.2.0" = {
+ name = "jsx-ast-utils";
+ packageName = "jsx-ast-utils";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz";
+ sha512 = "EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==";
+ };
+ };
"jszip-2.6.1" = {
name = "jszip";
packageName = "jszip";
@@ -33310,6 +33589,24 @@ let
sha512 = "uLrFPGj2//glOgJGLZn8hNTNlhU+eGx0WFRLZxIoC39nfjLRZ1fncHcPK2t5gA2GcvgtGUT2dnw60M8vJAOIkQ==";
};
};
+ "language-subtag-registry-0.3.21" = {
+ name = "language-subtag-registry";
+ packageName = "language-subtag-registry";
+ version = "0.3.21";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz";
+ sha512 = "L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==";
+ };
+ };
+ "language-tags-1.0.5" = {
+ name = "language-tags";
+ packageName = "language-tags";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz";
+ sha1 = "d321dbc4da30ba8bf3024e040fa5c14661f9193a";
+ };
+ };
"last-call-webpack-plugin-3.0.0" = {
name = "last-call-webpack-plugin";
packageName = "last-call-webpack-plugin";
@@ -36289,13 +36586,13 @@ let
sha1 = "a65cd29087a92598b8791257a523e021222ac1f9";
};
};
- "map-obj-4.2.0" = {
+ "map-obj-4.2.1" = {
name = "map-obj";
packageName = "map-obj";
- version = "4.2.0";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/map-obj/-/map-obj-4.2.0.tgz";
- sha512 = "NAq0fCmZYGz9UFEQyndp7sisrow4GroyGeKluyKC/chuITZsPyOyC1UJZPJlVFImhXdROIP5xqouRLThT3BbpQ==";
+ url = "https://registry.npmjs.org/map-obj/-/map-obj-4.2.1.tgz";
+ sha512 = "+WA2/1sPmDj1dlvvJmB5G6JKfY9dpn7EVBUL06+y6PoljPkh+6V1QihwxNkbcGxCRjt2b0F9K0taiCuo7MbdFQ==";
};
};
"map-stream-0.0.7" = {
@@ -36577,13 +36874,13 @@ let
sha512 = "EGwzEeCcLniFX51DhTpmTom+dSA/MG/OBUDjnWtHbEnjAH180VzUeAw+oE4+Zv+CoYBWyRlYOTR0N8SO9R1PVw==";
};
};
- "marked-2.0.1" = {
+ "marked-2.0.3" = {
name = "marked";
packageName = "marked";
- version = "2.0.1";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/marked/-/marked-2.0.1.tgz";
- sha512 = "5+/fKgMv2hARmMW7DOpykr2iLhl0NgjyELk5yn92iE7z8Se1IS9n3UsFm86hFXIkvMBmVxki8+ckcpjBeyo/hw==";
+ url = "https://registry.npmjs.org/marked/-/marked-2.0.3.tgz";
+ sha512 = "5otztIIcJfPc2qGTN8cVtOJEjNJZ0jwa46INMagrYfk0EvqtRuEHLsEe0LrFS0/q+ZRKT0+kXK7P2T1AN5lWRA==";
};
};
"marked-terminal-3.3.0" = {
@@ -37171,15 +37468,6 @@ let
sha512 = "qVQ/CjkMyMInPaaRMrwWNDvf6boRZXaT/DbQeMYcCWuXPEBf1v8qChOc9OlEVQp2uOvRXa1Qu30fLmKhY6NipA==";
};
};
- "memorystore-1.6.4" = {
- name = "memorystore";
- packageName = "memorystore";
- version = "1.6.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/memorystore/-/memorystore-1.6.4.tgz";
- sha512 = "51j4kUedbqkWGby44hAhf5f/hj8GOvHoLX00/YHURBNxOMf5k8JbPuGfmeNpZEXhc3vrmfnFben4+rOOx3HjEQ==";
- };
- };
"memorystore-1.6.6" = {
name = "memorystore";
packageName = "memorystore";
@@ -37360,13 +37648,13 @@ let
sha1 = "401fdec7ec21cdb9e03cd3d3021398da21b27085";
};
};
- "metals-languageclient-0.4.0" = {
+ "metals-languageclient-0.4.2" = {
name = "metals-languageclient";
packageName = "metals-languageclient";
- version = "0.4.0";
+ version = "0.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/metals-languageclient/-/metals-languageclient-0.4.0.tgz";
- sha512 = "gvQ1NYkV7u0dbA59STd9Hleor23vztQY8WaIgDO1udb7tJM/NrS7ZLLxY9H6CDwoMiZhXaUvlpCjGwn/t8qTzg==";
+ url = "https://registry.npmjs.org/metals-languageclient/-/metals-languageclient-0.4.2.tgz";
+ sha512 = "AY9lGmUznFNsLr7Vm3hLCT7Ar0bN6Wninp3qA0E0/JBU4uRTRI4fIgM1I3+nbjLf23mwh+vrHut0ML63QB2acA==";
};
};
"metalsmith-2.3.0" = {
@@ -37612,6 +37900,15 @@ let
sha512 = "y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==";
};
};
+ "micromatch-4.0.4" = {
+ name = "micromatch";
+ packageName = "micromatch";
+ version = "4.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz";
+ sha512 = "pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==";
+ };
+ };
"micromist-1.1.0" = {
name = "micromist";
packageName = "micromist";
@@ -37693,15 +37990,6 @@ let
sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==";
};
};
- "mime-2.4.7" = {
- name = "mime";
- packageName = "mime";
- version = "2.4.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-2.4.7.tgz";
- sha512 = "dhNd1uA2u397uQk3Nv5LM4lm93WYDUXFn3Fu291FJerns4jyTudqhIWe4W04YLy7Uk1tm1Ore04NpjRvQp/NPA==";
- };
- };
"mime-2.5.2" = {
name = "mime";
packageName = "mime";
@@ -38251,13 +38539,13 @@ let
sha1 = "ebb3a977e7af1c683ae6fda12b545a6ba6c5853d";
};
};
- "mobx-6.1.8" = {
+ "mobx-6.2.0" = {
name = "mobx";
packageName = "mobx";
- version = "6.1.8";
+ version = "6.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mobx/-/mobx-6.1.8.tgz";
- sha512 = "U4yCvUeh6yKXRwFxm2lyJjXPVekOEar/R8ZKWAXem/3fthJqYflViawfjDAUh7lZEvbKqljC3NT/pSaUKpE+gg==";
+ url = "https://registry.npmjs.org/mobx/-/mobx-6.2.0.tgz";
+ sha512 = "j5f16JIq2v4flvYCqaAB9tMtJt/y5efR2OO5Xy+w4/MBMeQ1WeGR0T8BtiNgmxM/OQzPFUKb5DTex9Y8a/yk+g==";
};
};
"mobx-react-7.1.0" = {
@@ -38422,15 +38710,6 @@ let
sha512 = "9ARkWHBs+6YJIvrIp0Ik5tyTTtP9PoV0Ssu2Ocq5y9v8+NOOpWiRshAp8c4rZVWTOe+157on/5G+zj5pwIQFEQ==";
};
};
- "moment-timezone-0.5.32" = {
- name = "moment-timezone";
- packageName = "moment-timezone";
- version = "0.5.32";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.32.tgz";
- sha512 = "Z8QNyuQHQAmWucp8Knmgei8YNo28aLjJq6Ma+jy1ZSpSk5nyfRT8xgUbSQvD2+2UajISfenndwvFuH3NGS+nvA==";
- };
- };
"moment-timezone-0.5.33" = {
name = "moment-timezone";
packageName = "moment-timezone";
@@ -38476,6 +38755,15 @@ let
sha512 = "AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==";
};
};
+ "mount-point-3.0.0" = {
+ name = "mount-point";
+ packageName = "mount-point";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mount-point/-/mount-point-3.0.0.tgz";
+ sha1 = "665cb9edebe80d110e658db56c31d0aef51a8f97";
+ };
+ };
"mout-0.5.0" = {
name = "mout";
packageName = "mout";
@@ -38503,6 +38791,15 @@ let
sha512 = "USHrRmxzGowUWAGBbJPdFjHzEqtxDU03pLHY0Rfqgtnq+q8FOIs8wvkkf+Udmg77SJKs47y9sI0jJvQeYsmiCA==";
};
};
+ "move-file-2.0.0" = {
+ name = "move-file";
+ packageName = "move-file";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/move-file/-/move-file-2.0.0.tgz";
+ sha512 = "cdkdhNCgbP5dvS4tlGxZbD+nloio9GIimP57EjqFhwLcMjnU+XJKAZzlmg/TN/AK1LuNAdTSvm3CPPP4Xkv0iQ==";
+ };
+ };
"mp4-box-encoding-1.4.1" = {
name = "mp4-box-encoding";
packageName = "mp4-box-encoding";
@@ -38845,15 +39142,6 @@ let
sha512 = "KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ==";
};
};
- "mustache-4.1.0" = {
- name = "mustache";
- packageName = "mustache";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mustache/-/mustache-4.1.0.tgz";
- sha512 = "0FsgP/WVq4mKyjolIyX+Z9Bd+3WS8GOwoUTyKXT5cTYMGeauNTi2HPCwERqseC1IHAy0Z7MDZnJBfjabd4O8GQ==";
- };
- };
"mustache-4.2.0" = {
name = "mustache";
packageName = "mustache";
@@ -39503,22 +39791,22 @@ let
sha512 = "AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==";
};
};
- "netlify-6.1.16" = {
+ "netlify-6.1.17" = {
name = "netlify";
packageName = "netlify";
- version = "6.1.16";
+ version = "6.1.17";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify/-/netlify-6.1.16.tgz";
- sha512 = "hRIUwdJAkFnQNY6H274Sa1xU4LnBkoMJdhRnxD3YQcdmdn8i1Mns54xweLY3+F0Pg9g9lLtmqsZcm68gG/Fxvw==";
+ url = "https://registry.npmjs.org/netlify/-/netlify-6.1.17.tgz";
+ sha512 = "NWb4/b/7Q7D/mJlIW+vjyMZn8lxUam0iC3F59XNQeNfYyAmEAfcbsy7hDfywm1ADZ648izfwFn/whYvgpPthrw==";
};
};
- "netlify-redirect-parser-3.0.9" = {
+ "netlify-redirect-parser-3.0.14" = {
name = "netlify-redirect-parser";
packageName = "netlify-redirect-parser";
- version = "3.0.9";
+ version = "3.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-3.0.9.tgz";
- sha512 = "1lSHjLA10jyjQpkC/emn5O2pL3uGLGF+8Snt7btwRHKGAN+K05hvhtqTIl5t2GPPAeKnGGWp9L+g4ruLNHgR0Q==";
+ url = "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-3.0.14.tgz";
+ sha512 = "6/y5A7mLQAzmKdyj+nVKvZIwhj4j4xjkzEz8FlX0khBw6Vm4LYh2xnyhsrMz3K+FlDSDxx4TU58hIJBwQD98uQ==";
};
};
"netlify-redirector-0.2.1" = {
@@ -39719,13 +40007,13 @@ let
sha512 = "mYihjs47X5+N71CN3P+QBrEIBuclIfMMpgWEpkmLqFPvrOXdzokvDlhbLfjdBNZOqYgniaeZC6J1ZCgxFdyvXw==";
};
};
- "no-cliches-0.3.0" = {
+ "no-cliches-0.3.2" = {
name = "no-cliches";
packageName = "no-cliches";
- version = "0.3.0";
+ version = "0.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/no-cliches/-/no-cliches-0.3.0.tgz";
- sha512 = "F5RA5GyDsJ9dYx2nFwzzy371BbFTBInQ/gO6arT+ngrI+1sDP5cSZxkWsVLgRoLMln4rs3xXBLjD2sLa7TnV1g==";
+ url = "https://registry.npmjs.org/no-cliches/-/no-cliches-0.3.2.tgz";
+ sha512 = "zPpIr24OdcdM6lbg9QbFUGaLx9RueAkg1I4ZueuuB5452ZrxYfdwaBkhLGFCgpy3AaQ1w8HaY/8k2HmeyD9FXw==";
};
};
"node-abi-2.21.0" = {
@@ -39818,13 +40106,13 @@ let
sha1 = "5f5665d93351335caabef8f1c554516cf5f1e4e5";
};
};
- "node-downloader-helper-1.0.17" = {
+ "node-downloader-helper-1.0.18" = {
name = "node-downloader-helper";
packageName = "node-downloader-helper";
- version = "1.0.17";
+ version = "1.0.18";
src = fetchurl {
- url = "https://registry.npmjs.org/node-downloader-helper/-/node-downloader-helper-1.0.17.tgz";
- sha512 = "EnaY0uBSdVo4kYfSmkDlTJG8GqmS8fbfoOau/OsTnikCwt9vsU0w8REVxwWbVz7DzNtHSEBKpU6jV1hmtlx0Dg==";
+ url = "https://registry.npmjs.org/node-downloader-helper/-/node-downloader-helper-1.0.18.tgz";
+ sha512 = "C7hxYz/yg4d8DFVC6c4fMIOI7jywbpQHOznkax/74F8NcC8wSOLO+UxNMcwds/5wEL8W+RPXT9C389w3bDOMxw==";
};
};
"node-emoji-1.10.0" = {
@@ -40170,22 +40458,22 @@ let
sha512 = "bsFbC7KFfGY37+SuYfmM9Er00cM92anqp6xCj8x7Y+4qZHOXnLi9XDFoWtvvsC1uQyaMqas1ALCfqcOxLlWngw==";
};
};
- "node-red-node-rbe-0.2.9" = {
+ "node-red-node-rbe-0.5.0" = {
name = "node-red-node-rbe";
packageName = "node-red-node-rbe";
- version = "0.2.9";
+ version = "0.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.2.9.tgz";
- sha512 = "9WNPHkhDhgvYsPyiGUs05AxWWEVVr2GeE8mFUANbZgW45L/awJfQEBq4h4HKfJb17duEmWWTrVZwnfIi3xLOlw==";
+ url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.5.0.tgz";
+ sha512 = "88zuty5SiLW2/0vK8ZpMCoEBq2JbR4GEEIoJp3YWhQQytQRRvzHgOodzOkuH4AQoMFZXuVxF1lVswL6yiDCQiQ==";
};
};
- "node-red-node-tail-0.1.1" = {
+ "node-red-node-tail-0.3.1" = {
name = "node-red-node-tail";
packageName = "node-red-node-tail";
- version = "0.1.1";
+ version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-tail/-/node-red-node-tail-0.1.1.tgz";
- sha512 = "j1g/VtSCI2tBrBnCD+u8iSo9tH0nvn70k1O1SxkHk3+qx7tHUyOKQc7wNc4rUs9J1PkGngUC3qEDd5cL7Z/klg==";
+ url = "https://registry.npmjs.org/node-red-node-tail/-/node-red-node-tail-0.3.1.tgz";
+ sha512 = "d/CbPGJMSNekJHOQu4WMNwjXRFnZ4c2+D3nlSdRH6wdUVVc++4nat8TuhcXKUe9W9+nqMrmVhReGnf8UwKsfBw==";
};
};
"node-releases-1.1.71" = {
@@ -40728,6 +41016,15 @@ let
sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
};
};
+ "npm-run-path-3.1.0" = {
+ name = "npm-run-path";
+ packageName = "npm-run-path";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz";
+ sha512 = "Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==";
+ };
+ };
"npm-run-path-4.0.1" = {
name = "npm-run-path";
packageName = "npm-run-path";
@@ -41206,6 +41503,15 @@ let
sha512 = "ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==";
};
};
+ "object.fromentries-2.0.4" = {
+ name = "object.fromentries";
+ packageName = "object.fromentries";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz";
+ sha512 = "EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==";
+ };
+ };
"object.getownpropertydescriptors-2.1.2" = {
name = "object.getownpropertydescriptors";
packageName = "object.getownpropertydescriptors";
@@ -41260,6 +41566,15 @@ let
sha512 = "nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==";
};
};
+ "object_values-0.1.2" = {
+ name = "object_values";
+ packageName = "object_values";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object_values/-/object_values-0.1.2.tgz";
+ sha512 = "tZgUiKLraVH+4OAedBYrr4/K6KmAQw2RPNd1AuNdhLsuz5WP3VB7WuiKBWbOcjeqqAjus2ChIIWC8dSfmg7ReA==";
+ };
+ };
"objectorarray-1.0.4" = {
name = "objectorarray";
packageName = "objectorarray";
@@ -41332,13 +41647,13 @@ let
sha512 = "fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==";
};
};
- "office-ui-fabric-react-7.165.2" = {
+ "office-ui-fabric-react-7.166.2" = {
name = "office-ui-fabric-react";
packageName = "office-ui-fabric-react";
- version = "7.165.2";
+ version = "7.166.2";
src = fetchurl {
- url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.165.2.tgz";
- sha512 = "PC36Ga+e8xHmslNiYbvsaXkQJjghlnwkgWeU1mXK9ebMASed4men5KlABbRRHFrLotfKFrgkcI41jbdWccuKmw==";
+ url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.166.2.tgz";
+ sha512 = "8BJ++wmoulTd03Dd6F1DIbcokfUTk8tGDtaYHsDvy73jz7vt5+p/cHgBZMRHTtOktUtKQwaWUMwQjVG1li2Hyg==";
};
};
"omggif-1.0.10" = {
@@ -41503,22 +41818,13 @@ let
sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==";
};
};
- "ono-4.0.11" = {
- name = "ono";
- packageName = "ono";
- version = "4.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/ono/-/ono-4.0.11.tgz";
- sha512 = "jQ31cORBFE6td25deYeD80wxKBMj+zBmHTrVxnc6CKhx8gho6ipmWM5zj/oeoqioZ99yqBls9Z/9Nss7J26G2g==";
- };
- };
- "oo-ascii-tree-1.27.0" = {
+ "oo-ascii-tree-1.27.1" = {
name = "oo-ascii-tree";
packageName = "oo-ascii-tree";
- version = "1.27.0";
+ version = "1.27.1";
src = fetchurl {
- url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.27.0.tgz";
- sha512 = "3hqwUDNTJC2YLzSRye8Fh35AC4fSHl2FZhFF/hyQtO8C9lV1PEXIPWGIRZ0zwQSHFutnriEvK8AHJgbbMrLxqg==";
+ url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.27.1.tgz";
+ sha512 = "bCX2YoRGOhWh/CUi2e38gw5D+ixcpuMjMEJ1VJ9oAE40burZO8CVLq2noqvU3/EmaO2R9ifaM+0xnxJzBkII/A==";
};
};
"opal-runtime-1.0.11" = {
@@ -42205,22 +42511,22 @@ let
sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
};
};
- "ot-builder-1.0.3" = {
+ "ot-builder-1.0.4" = {
name = "ot-builder";
packageName = "ot-builder";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.0.3.tgz";
- sha512 = "ApuXJZmB30IAspJwojBh2VxQfLMMqu6fkQ7nrNmG+ubL6uvgqW7kZYIyCcaXU4utONLP6bDP988bNovQXVfNAQ==";
+ url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.0.4.tgz";
+ sha512 = "M8FhdQrpsHAQo+qYcAmnrl14HvXcew4M5tZCsQk4GZfeYVPr8TJZPwiHXScYbqH9+uNrU5U8tRjgHi44inVxxw==";
};
};
- "otb-ttc-bundle-1.0.3" = {
+ "otb-ttc-bundle-1.0.4" = {
name = "otb-ttc-bundle";
packageName = "otb-ttc-bundle";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.0.3.tgz";
- sha512 = "U2Eh0kXe8YzP/F8sNJvqnBi8Y57oG4xcAND0IsGGSm+q1Csn30V0k34rA3rKmelnM/oXT5J0EbZKIvlapPdfLw==";
+ url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.0.4.tgz";
+ sha512 = "EnGZoAtvzLKM+kO3VZSavt11FzVIDQQq5o3s66LMvJZ2LdHbZg1L9WdAvnZjY2+SXdtLEo6VNlL1gP4l9ovRjw==";
};
};
"ow-0.21.0" = {
@@ -43312,15 +43618,6 @@ let
sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==";
};
};
- "pascal-case-2.0.1" = {
- name = "pascal-case";
- packageName = "pascal-case";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz";
- sha1 = "2d578d3455f660da65eca18ef95b4e0de912761e";
- };
- };
"pascal-case-3.1.2" = {
name = "pascal-case";
packageName = "pascal-case";
@@ -43717,13 +44014,13 @@ let
sha1 = "fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445";
};
};
- "pbkdf2-3.1.1" = {
+ "pbkdf2-3.1.2" = {
name = "pbkdf2";
packageName = "pbkdf2";
- version = "3.1.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz";
- sha512 = "4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==";
+ url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz";
+ sha512 = "iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==";
};
};
"peek-readable-3.1.3" = {
@@ -43906,13 +44203,13 @@ let
sha1 = "18de2f97e4bf7a9551ad7511942b5496f7aba660";
};
};
- "picomatch-2.2.2" = {
+ "picomatch-2.2.3" = {
name = "picomatch";
packageName = "picomatch";
- version = "2.2.2";
+ version = "2.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz";
- sha512 = "q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==";
+ url = "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz";
+ sha512 = "KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==";
};
};
"picture-tuber-1.0.2" = {
@@ -45068,13 +45365,13 @@ let
sha512 = "C2hrAPzmRdpuL3iH0TDdQ6XCc9M7Dcc3zEW5BLerY65G4tWWszwv6nG/ksi6ul5i2mx22ubdljgktXCtNkydkw==";
};
};
- "posthtml-0.13.4" = {
+ "posthtml-0.15.2" = {
name = "posthtml";
packageName = "posthtml";
- version = "0.13.4";
+ version = "0.15.2";
src = fetchurl {
- url = "https://registry.npmjs.org/posthtml/-/posthtml-0.13.4.tgz";
- sha512 = "i2oTo/+dwXGC6zaAQSF6WZEQSbEqu10hsvg01DWzGAfZmy31Iiy9ktPh9nnXDfZiYytjxTIvxoK4TI0uk4QWpw==";
+ url = "https://registry.npmjs.org/posthtml/-/posthtml-0.15.2.tgz";
+ sha512 = "YugEJ5ze/0DLRIVBjCpDwANWL4pPj1kHJ/2llY8xuInr0nbkon3qTiMPe5LQa+cCwNjxS7nAZZTp+1M+6mT4Zg==";
};
};
"posthtml-parser-0.4.2" = {
@@ -45086,13 +45383,13 @@ let
sha512 = "BUIorsYJTvS9UhXxPTzupIztOMVNPa/HtAm9KHni9z6qEfiJ1bpOBL5DfUOL9XAc3XkLIEzBzpph+Zbm4AdRAg==";
};
};
- "posthtml-parser-0.5.3" = {
+ "posthtml-parser-0.7.2" = {
name = "posthtml-parser";
packageName = "posthtml-parser";
- version = "0.5.3";
+ version = "0.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.5.3.tgz";
- sha512 = "uHosRn0y+1wbnlYKrqMjBPoo/kK5LPYImLtiETszNFYfFwAD3cQdD1R2E13Mh5icBxkHj+yKtlIHozCsmVWD/Q==";
+ url = "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.7.2.tgz";
+ sha512 = "LjEEG/3fNcWZtBfsOE3Gbyg1Li4CmsZRkH1UmbMR7nKdMXVMYI3B4/ZMiCpaq8aI1Aym4FRMMW9SAOLSwOnNsQ==";
};
};
"posthtml-render-1.4.0" = {
@@ -46058,6 +46355,15 @@ let
sha512 = "XhoaDlvi6NIzL49nu094R2NA6P37ijtgMDuWE+ofekDChvfKnzFal60bhSdiy8y2PBO6fmz3oMEIcfpBVRUdvw==";
};
};
+ "pug-3.0.2" = {
+ name = "pug";
+ packageName = "pug";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug/-/pug-3.0.2.tgz";
+ sha512 = "bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==";
+ };
+ };
"pug-attrs-2.0.4" = {
name = "pug-attrs";
packageName = "pug-attrs";
@@ -46067,6 +46373,15 @@ let
sha512 = "TaZ4Z2TWUPDJcV3wjU3RtUXMrd3kM4Wzjbe3EWnSsZPsJ3LDI0F3yCnf2/W7PPFF+edUFQ0HgDL1IoxSz5K8EQ==";
};
};
+ "pug-attrs-3.0.0" = {
+ name = "pug-attrs";
+ packageName = "pug-attrs";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz";
+ sha512 = "azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==";
+ };
+ };
"pug-code-gen-2.0.3" = {
name = "pug-code-gen";
packageName = "pug-code-gen";
@@ -46076,6 +46391,15 @@ let
sha512 = "r9sezXdDuZJfW9J91TN/2LFbiqDhmltTFmGpHTsGdrNGp3p4SxAjjXEfnuK2e4ywYsRIVP0NeLbSAMHUcaX1EA==";
};
};
+ "pug-code-gen-3.0.2" = {
+ name = "pug-code-gen";
+ packageName = "pug-code-gen";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.2.tgz";
+ sha512 = "nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==";
+ };
+ };
"pug-error-1.3.3" = {
name = "pug-error";
packageName = "pug-error";
@@ -46085,6 +46409,15 @@ let
sha512 = "qE3YhESP2mRAWMFJgKdtT5D7ckThRScXRwkfo+Erqga7dyJdY3ZquspprMCj/9sJ2ijm5hXFWQE/A3l4poMWiQ==";
};
};
+ "pug-error-2.0.0" = {
+ name = "pug-error";
+ packageName = "pug-error";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-error/-/pug-error-2.0.0.tgz";
+ sha512 = "sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==";
+ };
+ };
"pug-filters-3.1.1" = {
name = "pug-filters";
packageName = "pug-filters";
@@ -46094,6 +46427,15 @@ let
sha512 = "lFfjNyGEyVWC4BwX0WyvkoWLapI5xHSM3xZJFUhx4JM4XyyRdO8Aucc6pCygnqV2uSgJFaJWW3Ft1wCWSoQkQg==";
};
};
+ "pug-filters-4.0.0" = {
+ name = "pug-filters";
+ packageName = "pug-filters";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz";
+ sha512 = "yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==";
+ };
+ };
"pug-lexer-4.1.0" = {
name = "pug-lexer";
packageName = "pug-lexer";
@@ -46103,6 +46445,15 @@ let
sha512 = "i55yzEBtjm0mlplW4LoANq7k3S8gDdfC6+LThGEvsK4FuobcKfDAwt6V4jKPH9RtiE3a2Akfg5UpafZ1OksaPA==";
};
};
+ "pug-lexer-5.0.1" = {
+ name = "pug-lexer";
+ packageName = "pug-lexer";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz";
+ sha512 = "0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==";
+ };
+ };
"pug-linker-3.0.6" = {
name = "pug-linker";
packageName = "pug-linker";
@@ -46112,6 +46463,15 @@ let
sha512 = "bagfuHttfQOpANGy1Y6NJ+0mNb7dD2MswFG2ZKj22s8g0wVsojpRlqveEQHmgXXcfROB2RT6oqbPYr9EN2ZWzg==";
};
};
+ "pug-linker-4.0.0" = {
+ name = "pug-linker";
+ packageName = "pug-linker";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz";
+ sha512 = "gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==";
+ };
+ };
"pug-load-2.0.12" = {
name = "pug-load";
packageName = "pug-load";
@@ -46121,6 +46481,15 @@ let
sha512 = "UqpgGpyyXRYgJs/X60sE6SIf8UBsmcHYKNaOccyVLEuT6OPBIMo6xMPhoJnqtB3Q3BbO4Z3Bjz5qDsUWh4rXsg==";
};
};
+ "pug-load-3.0.0" = {
+ name = "pug-load";
+ packageName = "pug-load";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz";
+ sha512 = "OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==";
+ };
+ };
"pug-parser-5.0.1" = {
name = "pug-parser";
packageName = "pug-parser";
@@ -46130,6 +46499,15 @@ let
sha512 = "nGHqK+w07p5/PsPIyzkTQfzlYfuqoiGjaoqHv1LjOv2ZLXmGX1O+4Vcvps+P4LhxZ3drYSljjq4b+Naid126wA==";
};
};
+ "pug-parser-6.0.0" = {
+ name = "pug-parser";
+ packageName = "pug-parser";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz";
+ sha512 = "ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==";
+ };
+ };
"pug-runtime-2.0.5" = {
name = "pug-runtime";
packageName = "pug-runtime";
@@ -46139,6 +46517,15 @@ let
sha512 = "P+rXKn9un4fQY77wtpcuFyvFaBww7/91f3jHa154qU26qFAnOe6SW1CbIDcxiG5lLK9HazYrMCCuDvNgDQNptw==";
};
};
+ "pug-runtime-3.0.1" = {
+ name = "pug-runtime";
+ packageName = "pug-runtime";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz";
+ sha512 = "L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==";
+ };
+ };
"pug-strip-comments-1.0.4" = {
name = "pug-strip-comments";
packageName = "pug-strip-comments";
@@ -46148,6 +46535,15 @@ let
sha512 = "i5j/9CS4yFhSxHp5iKPHwigaig/VV9g+FgReLJWWHEHbvKsbqL0oP/K5ubuLco6Wu3Kan5p7u7qk8A4oLLh6vw==";
};
};
+ "pug-strip-comments-2.0.0" = {
+ name = "pug-strip-comments";
+ packageName = "pug-strip-comments";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz";
+ sha512 = "zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==";
+ };
+ };
"pug-walk-1.1.8" = {
name = "pug-walk";
packageName = "pug-walk";
@@ -46157,6 +46553,15 @@ let
sha512 = "GMu3M5nUL3fju4/egXwZO0XLi6fW/K3T3VTgFQ14GxNi8btlxgT5qZL//JwZFm/2Fa64J/PNS8AZeys3wiMkVA==";
};
};
+ "pug-walk-2.0.0" = {
+ name = "pug-walk";
+ packageName = "pug-walk";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz";
+ sha512 = "yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==";
+ };
+ };
"pull-abortable-4.0.0" = {
name = "pull-abortable";
packageName = "pull-abortable";
@@ -46850,13 +47255,13 @@ let
sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7";
};
};
- "pyright-1.1.128" = {
+ "pyright-1.1.130" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.128";
+ version = "1.1.130";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.128.tgz";
- sha512 = "p+QG3W+PEQs6raeix/oIBU/eKRL487WftEFI3PVR7npF/2fzh6v4ucNjlF/jPAfP1x/ulInqeyeqvwLwvajTwA==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.130.tgz";
+ sha512 = "hj4Lvn0x5LFsZDJaZ5hW5X4NfHSCoMvEqcNvRgpYM59qAM22z7XC+Tb7XNrQEhOfIjsbczS3nKWGGUMCe88LXg==";
};
};
"q-0.9.7" = {
@@ -47588,13 +47993,13 @@ let
sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==";
};
};
- "react-devtools-core-4.10.1" = {
+ "react-devtools-core-4.12.0" = {
name = "react-devtools-core";
packageName = "react-devtools-core";
- version = "4.10.1";
+ version = "4.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.10.1.tgz";
- sha512 = "sXbBjGAWcf9HAblTP/zMtFhGHqxAfIR+GPxONZsSGN9FHnF4635dx1s2LdQWG9rJ+Ehr3nWg+BUAB6P78my5PA==";
+ url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.12.0.tgz";
+ sha512 = "MN7zE3UpccJQLs+tTKGoM1GQFZLJki4PhT4Us0JJgn6MK1m5ZOQnmJZy+cp21LqUBFPXxqmpqeu65/gTRbxK5Q==";
};
};
"react-dom-16.14.0" = {
@@ -47651,13 +48056,13 @@ let
sha512 = "X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==";
};
};
- "react-tabs-3.2.1" = {
+ "react-tabs-3.2.2" = {
name = "react-tabs";
packageName = "react-tabs";
- version = "3.2.1";
+ version = "3.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/react-tabs/-/react-tabs-3.2.1.tgz";
- sha512 = "M7ERQvJgBVLTyojFmC3G4tpaJuMmUtsnYenVQm2oA1NjDrGXq1UuzHgxhVTDwimkJcKEbzgWCybXFSHQ/+2bsA==";
+ url = "https://registry.npmjs.org/react-tabs/-/react-tabs-3.2.2.tgz";
+ sha512 = "/o52eGKxFHRa+ssuTEgSM8qORnV4+k7ibW+aNQzKe+5gifeVz8nLxCrsI9xdRhfb0wCLdgIambIpb1qCxaMN+A==";
};
};
"read-1.0.7" = {
@@ -48191,13 +48596,13 @@ let
sha1 = "8984b5815d99cb220469c99eeeffe38913e6cc0b";
};
};
- "redis-2.8.0" = {
+ "redis-3.1.0" = {
name = "redis";
packageName = "redis";
- version = "2.8.0";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/redis/-/redis-2.8.0.tgz";
- sha512 = "M1OkonEQwtRmZv4tEWF2VgpG0JWJ8Fv1PhlgT5+B+uNq2cA3Rt1Yt/ryoR+vQNOQcIEgdCdfH0jr3bDpihAw1A==";
+ url = "https://registry.npmjs.org/redis/-/redis-3.1.0.tgz";
+ sha512 = "//lAOcEtNIKk2ekZibes5oyWKYUVWMvMB71lyD/hS9KRePNkB7AU3nXGkArX6uDKEb2N23EyJBthAv6pagD0uw==";
};
};
"redis-commands-1.7.0" = {
@@ -48209,22 +48614,31 @@ let
sha512 = "nJWqw3bTFy21hX/CPKHth6sfhZbdiHP6bTawSgQBlKOVRG7EZkfHbbHwQJnrE4vsQf0CMNE+3gJ4Fmm16vdVlQ==";
};
};
- "redis-parser-2.6.0" = {
- name = "redis-parser";
- packageName = "redis-parser";
- version = "2.6.0";
+ "redis-errors-1.2.0" = {
+ name = "redis-errors";
+ packageName = "redis-errors";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz";
- sha1 = "52ed09dacac108f1a631c07e9b69941e7a19504b";
+ url = "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz";
+ sha1 = "eb62d2adb15e4eaf4610c04afe1529384250abad";
};
};
- "redoc-2.0.0-rc.50" = {
+ "redis-parser-3.0.0" = {
+ name = "redis-parser";
+ packageName = "redis-parser";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz";
+ sha1 = "b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4";
+ };
+ };
+ "redoc-2.0.0-rc.53" = {
name = "redoc";
packageName = "redoc";
- version = "2.0.0-rc.50";
+ version = "2.0.0-rc.53";
src = fetchurl {
- url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.50.tgz";
- sha512 = "SngLJr1YEDWIfp3YGBax8H8HQQ/gIqmf9YEmWsMACbAevsf7rt2tkTwALdjOf1pD27bVYfbZm1nud0QenoXsng==";
+ url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.53.tgz";
+ sha512 = "nyHIEIVo+kxsMfAy7nkYSlU7qjXZAARcj0INaRwCoy/DG9BMMi3xLcpo0CmarL9XeI891+VN2tpyTJ8jhZUtPw==";
};
};
"reduce-component-1.0.1" = {
@@ -48776,13 +49190,13 @@ let
sha512 = "ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ==";
};
};
- "repeat-element-1.1.3" = {
+ "repeat-element-1.1.4" = {
name = "repeat-element";
packageName = "repeat-element";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz";
- sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==";
+ url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz";
+ sha512 = "LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==";
};
};
"repeat-string-1.6.1" = {
@@ -48848,15 +49262,6 @@ let
sha1 = "e87f6d513b928dde808260c12be7fec6ff6e798c";
};
};
- "replace-string-1.1.0" = {
- name = "replace-string";
- packageName = "replace-string";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/replace-string/-/replace-string-1.1.0.tgz";
- sha1 = "87062117f823fe5800c306bacb2cfa359b935fea";
- };
- };
"replaceall-0.1.6" = {
name = "replaceall";
packageName = "replaceall";
@@ -49136,13 +49541,13 @@ let
sha512 = "W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==";
};
};
- "resolve-alpn-1.0.0" = {
+ "resolve-alpn-1.1.1" = {
name = "resolve-alpn";
packageName = "resolve-alpn";
- version = "1.0.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.0.0.tgz";
- sha512 = "rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA==";
+ url = "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.1.1.tgz";
+ sha512 = "0KbFjFPR2bnJhNx1t8Ad6RqVc8+QPJC4y561FYyC/Q/6OzB3fhUzB5PEgitYhPK6aifwR5gXBSnDMllaDWixGQ==";
};
};
"resolve-cwd-2.0.0" = {
@@ -49631,13 +50036,13 @@ let
sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==";
};
};
- "rollup-2.44.0" = {
+ "rollup-2.45.2" = {
name = "rollup";
packageName = "rollup";
- version = "2.44.0";
+ version = "2.45.2";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.44.0.tgz";
- sha512 = "rGSF4pLwvuaH/x4nAS+zP6UNn5YUDWf/TeEU5IoXSZKBbKRNTCI3qMnYXKZgrC0D2KzS2baiOZt1OlqhMu5rnQ==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.45.2.tgz";
+ sha512 = "kRRU7wXzFHUzBIv0GfoFFIN3m9oteY4uAsKllIpQDId5cfnkWF2J130l+27dzDju0E6MScKiV0ZM5Bw8m4blYQ==";
};
};
"rollup-plugin-babel-4.4.0" = {
@@ -50639,13 +51044,13 @@ let
sha512 = "QnpHNykm4nI4T6mT+NoVayh9Ixl5DohYCSVqMgPJsO2WejOcqaYTh4HQOkmzaDzXH3NO5pif4z/hpo2NGtgNlg==";
};
};
- "sentence-splitter-3.2.0" = {
+ "sentence-splitter-3.2.1" = {
name = "sentence-splitter";
packageName = "sentence-splitter";
- version = "3.2.0";
+ version = "3.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sentence-splitter/-/sentence-splitter-3.2.0.tgz";
- sha512 = "lKX2tZ1rsA9Tu0gW8vRmMDmIEJoZ1d7cKpzcbFZdUrSpCR6gy/7OPPh7jjT/6Oc6Z79ToUmC2l8tyTEGanVmiA==";
+ url = "https://registry.npmjs.org/sentence-splitter/-/sentence-splitter-3.2.1.tgz";
+ sha512 = "aG+Tf8M1wVUd2uPSUtdMXdJlKZLcdh+oVE8iEn8KwfxYZ87qDpe7+o0nGZdr+96g2H76Qz/8TrG9dIxyp7c70w==";
};
};
"separator-escape-0.0.1" = {
@@ -51260,13 +51665,13 @@ let
sha1 = "4e421f485ac7b13b08077a4476934d52c5ba3bb3";
};
};
- "simple-peer-9.10.0" = {
+ "simple-peer-9.11.0" = {
name = "simple-peer";
packageName = "simple-peer";
- version = "9.10.0";
+ version = "9.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-peer/-/simple-peer-9.10.0.tgz";
- sha512 = "sKrKtca1UdmwdZIbvuT3iEL05tDGt/xdLP6+ej8rh1ADgtDk44yLaEZjIyPJ6c34zsSih46Ou7zUIT7e4hPK7g==";
+ url = "https://registry.npmjs.org/simple-peer/-/simple-peer-9.11.0.tgz";
+ sha512 = "qvdNu/dGMHBm2uQ7oLhQBMhYlrOZC1ywXNCH/i8I4etxR1vrjCnU6ZSQBptndB1gcakjo2+w4OHo7Sjza1SHxg==";
};
};
"simple-plist-1.1.1" = {
@@ -51782,13 +52187,13 @@ let
sha512 = "XYjhOTRPFA7NfDUsH6uH1fbML2OgSFsqdUPbud7x01urNP9CHXgUgAD4NhKMi3dVQK+7IdYadWt0wrFWw4y+qg==";
};
};
- "snyk-python-plugin-1.19.7" = {
+ "snyk-python-plugin-1.19.8" = {
name = "snyk-python-plugin";
packageName = "snyk-python-plugin";
- version = "1.19.7";
+ version = "1.19.8";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.19.7.tgz";
- sha512 = "twAGoIgJVSLVzMkuT/n5l9ZDvhMbWH7De6flWiHQB/grthfl3vJDzLCxiTa+6H/IEEYNSv6F/nSrfNh9UbW5/A==";
+ url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.19.8.tgz";
+ sha512 = "LMKVnv0J4X/qHMoKB17hMND0abWtm9wdgI4xVzrOcf2Vtzs3J87trRhwLxQA2lMoBW3gcjtTeBUvNKaxikSVeQ==";
};
};
"snyk-resolve-1.1.0" = {
@@ -52835,13 +53240,13 @@ let
sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung==";
};
};
- "ssb-db2-1.18.7" = {
+ "ssb-db2-2.0.0" = {
name = "ssb-db2";
packageName = "ssb-db2";
- version = "1.18.7";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-1.18.7.tgz";
- sha512 = "sTHdEMGMaQl0ysxwwiH+aUcoPtSXcSDbCBT3/K/wU7pjWctWSpDjZj2ZIE7AfSmIAcakILN1xOGj2kEmtR5caA==";
+ url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.0.0.tgz";
+ sha512 = "xDl3GyhLNC62KDfzGa+ueCLUL0uIvu92n282E5vVnPTG+pJg1qCDSqVG6tZBbcVKLrSgar6j0yLcT9QjrKR2VQ==";
};
};
"ssb-ebt-5.6.7" = {
@@ -52853,13 +53258,13 @@ let
sha512 = "ifPgPNmDE8EKuuoqtXibwgYNtDZNry7sJL1epSUb3XgQr62bUV31N9R5LHKDsI2kx96OgWRwWY2PfZ7vf/hU8Q==";
};
};
- "ssb-friends-4.4.4" = {
+ "ssb-friends-4.4.5" = {
name = "ssb-friends";
packageName = "ssb-friends";
- version = "4.4.4";
+ version = "4.4.5";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-friends/-/ssb-friends-4.4.4.tgz";
- sha512 = "Gny8HraAVnii45tn9baWr27DjEqJndLsBRgV2fqhFLHZm3sGagiv0baJR4W2UgRikADKmrLulvRGI1xaOGxaeg==";
+ url = "https://registry.npmjs.org/ssb-friends/-/ssb-friends-4.4.5.tgz";
+ sha512 = "XTGmXoqSm/U+A4WxNTTr3+yLdQk2sZUtvqdAFUPqzIVHmF3loji7IgyFRdEAk7wC2pY4N29YsYE2/qpRvu576Q==";
};
};
"ssb-git-0.5.0" = {
@@ -52889,13 +53294,13 @@ let
sha512 = "lbizlDBCtOOnbnz7zS81NOtnAyHnXu9E3gxrAJHZe7oyxINRI7IpQ8J79to9aXzkb8+2M32R8K4whmsAHGvJAg==";
};
};
- "ssb-invite-2.1.6" = {
+ "ssb-invite-2.1.7" = {
name = "ssb-invite";
packageName = "ssb-invite";
- version = "2.1.6";
+ version = "2.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-invite/-/ssb-invite-2.1.6.tgz";
- sha512 = "cR2sMFu27K7JNAiHCJ5qsp5kihlxi0/KftJ58gFzQbC8kLQ9iLLFUVDvQMi/Qxubf6Xs37Qh49FH3RzPLGt9ag==";
+ url = "https://registry.npmjs.org/ssb-invite/-/ssb-invite-2.1.7.tgz";
+ sha512 = "L9Du5otjBvPcnWPPd9TzwxjvegVCq4crJ2pjcZhvcsGVb9L/QDo+IPxY9GIsb+LRaHIyr+gx8mE7GfGjuXwmfQ==";
};
};
"ssb-issues-1.0.0" = {
@@ -53132,15 +53537,6 @@ let
sha512 = "jfcXynl9oAOS9YJ7iqS2JMUEHOlvrRAD+54CENiWnc4xsuVLQVSgmwf7cwOTcBd/uq3XkQKBGojgvEtVXcJ/8w==";
};
};
- "sse4_crc32-6.0.1" = {
- name = "sse4_crc32";
- packageName = "sse4_crc32";
- version = "6.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sse4_crc32/-/sse4_crc32-6.0.1.tgz";
- sha512 = "FUTYXpLroqytNKWIfHzlDWoy9E4tmBB/RklNMy6w3VJs+/XEYAHgbiylg4SS43iOk/9bM0BlJ2EDpFAGT66IoQ==";
- };
- };
"ssh-config-1.1.6" = {
name = "ssh-config";
packageName = "ssh-config";
@@ -53222,13 +53618,13 @@ let
sha512 = "XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==";
};
};
- "ssri-6.0.1" = {
+ "ssri-6.0.2" = {
name = "ssri";
packageName = "ssri";
- version = "6.0.1";
+ version = "6.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz";
- sha512 = "3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==";
+ url = "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz";
+ sha512 = "cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==";
};
};
"ssri-8.0.1" = {
@@ -53942,6 +54338,15 @@ let
sha512 = "XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==";
};
};
+ "string.prototype.matchall-4.0.4" = {
+ name = "string.prototype.matchall";
+ packageName = "string.prototype.matchall";
+ version = "4.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz";
+ sha512 = "pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ==";
+ };
+ };
"string.prototype.repeat-0.2.0" = {
name = "string.prototype.repeat";
packageName = "string.prototype.repeat";
@@ -54743,13 +55148,13 @@ let
sha512 = "HHi5kVSefKaJkGYXbDuKbUGRVxqnWGn3J2e39CYcNJEfWciGq2zYtOhXLTlvrOZW1QU7VX67w7fMmWafHX9Pfw==";
};
};
- "supports-hyperlinks-2.1.0" = {
+ "supports-hyperlinks-2.2.0" = {
name = "supports-hyperlinks";
packageName = "supports-hyperlinks";
- version = "2.1.0";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz";
- sha512 = "zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==";
+ url = "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz";
+ sha512 = "6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==";
};
};
"svelte-3.35.0" = {
@@ -55031,13 +55436,13 @@ let
sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==";
};
};
- "systeminformation-4.34.19" = {
+ "systeminformation-4.34.20" = {
name = "systeminformation";
packageName = "systeminformation";
- version = "4.34.19";
+ version = "4.34.20";
src = fetchurl {
- url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.34.19.tgz";
- sha512 = "ssUYQ0s1FFeb8EGtyCX/41cC/XaF84gbNAUfaUTziibx+xCAaR0zrOy0yZlnUrsWDQ+snp/Utl8cx8IdtrevrA==";
+ url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.34.20.tgz";
+ sha512 = "KyT3TFxs14x9CvSbNukbBq2DIjhuLHXkBjZ6Pqllnzqt3ERxDdC6SwIBiKnXeMq6NAOfx1Dp9PjPtXtnIFuAow==";
};
};
"table-3.8.3" = {
@@ -55149,13 +55554,13 @@ let
sha1 = "7cbcb64b5a141b6a2efc2c5d2c67b4e150b2a268";
};
};
- "tail-2.2.1" = {
+ "tail-2.2.2" = {
name = "tail";
packageName = "tail";
- version = "2.2.1";
+ version = "2.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/tail/-/tail-2.2.1.tgz";
- sha512 = "pqtI8HB6pbltcaDxkTq12meYxMeLNtZg7+h+c2WlXofaOh4bUeLFQ3eU8S23niqb8We4/UFc+QNlky9nCRnrSQ==";
+ url = "https://registry.npmjs.org/tail/-/tail-2.2.2.tgz";
+ sha512 = "IlfiFF8g5sPAqIZEL3qkIFcjODBM5DqdkVUhwXdKSDYqOgXGL4Gu0Hh1UQWXdCW5gBHi52cnk9WWMowsfjF4XA==";
};
};
"taketalk-1.0.0" = {
@@ -56409,6 +56814,15 @@ let
sha1 = "ceeefc717a76c4316f126d0b9dbaa55d7e7df01a";
};
};
+ "token-stream-1.0.0" = {
+ name = "token-stream";
+ packageName = "token-stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz";
+ sha1 = "cc200eab2613f4166d27ff9afc7ca56d49df6eb4";
+ };
+ };
"token-types-2.1.1" = {
name = "token-types";
packageName = "token-types";
@@ -56661,6 +57075,15 @@ let
sha1 = "8a7e8ab3044ad19f233f50c15894cbf69e5d205e";
};
};
+ "trash-7.1.1" = {
+ name = "trash";
+ packageName = "trash";
+ version = "7.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trash/-/trash-7.1.1.tgz";
+ sha512 = "iG43vKNh4Q540RrfefjSxll6hkqc2t6tAM1AfikXUXbW6O7jEKftMQZho6dg6VLUWng/uWu4brGrvE9a0uQbOQ==";
+ };
+ };
"traverse-0.3.9" = {
name = "traverse";
packageName = "traverse";
@@ -57480,6 +57903,15 @@ let
sha512 = "qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==";
};
};
+ "typescript-4.2.4" = {
+ name = "typescript";
+ packageName = "typescript";
+ version = "4.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz";
+ sha512 = "V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==";
+ };
+ };
"typescript-eslint-parser-16.0.1" = {
name = "typescript-eslint-parser";
packageName = "typescript-eslint-parser";
@@ -57543,13 +57975,13 @@ let
sha512 = "+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ==";
};
};
- "ua-parser-js-0.7.27" = {
+ "ua-parser-js-0.7.28" = {
name = "ua-parser-js";
packageName = "ua-parser-js";
- version = "0.7.27";
+ version = "0.7.28";
src = fetchurl {
- url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.27.tgz";
- sha512 = "eXMaRYK2skomGocoX0x9sBXzx5A1ZVQgXfrW4mTc8dT0zS7olEcyfudAzRC5tIIRgLxQ69B6jut3DI+n5hslPA==";
+ url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz";
+ sha512 = "6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==";
};
};
"uc.micro-1.0.6" = {
@@ -57570,15 +58002,6 @@ let
sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
};
};
- "uglify-js-3.12.4" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "3.12.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.12.4.tgz";
- sha512 = "L5i5jg/SHkEqzN18gQMTWsZk3KelRsfD1wUVNqtq0kzqWQqcJjyL8yc1o8hJgRrWqrAl2mUFbhfznEIoi7zi2A==";
- };
- };
"uglify-js-3.13.3" = {
name = "uglify-js";
packageName = "uglify-js";
@@ -57588,6 +58011,15 @@ let
sha512 = "otIc7O9LyxpUcQoXzj2hL4LPWKklO6LJWoJUzNa8A17Xgi4fOeDC8FBDOLHnC/Slo1CQgsZMcM6as0M76BZaig==";
};
};
+ "uglify-js-3.13.4" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "3.13.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.4.tgz";
+ sha512 = "kv7fCkIXyQIilD5/yQy8O+uagsYIOt5cZvs890W40/e/rvjMSzJw81o9Bg0tkURxzZBROtDQhW2LFjOGoK3RZw==";
+ };
+ };
"uglify-js-3.4.10" = {
name = "uglify-js";
packageName = "uglify-js";
@@ -57786,13 +58218,13 @@ let
sha512 = "N4P+Q/BuyuEKFJ43B9gYuOj4TQUHXX+j2FqguVOpjkssLUUrnJofCcBccJSCoeturDoZU6GorDTHSvUDlSQbTg==";
};
};
- "underscore-1.12.1" = {
+ "underscore-1.13.0" = {
name = "underscore";
packageName = "underscore";
- version = "1.12.1";
+ version = "1.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz";
- sha512 = "hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==";
+ url = "https://registry.npmjs.org/underscore/-/underscore-1.13.0.tgz";
+ sha512 = "sCs4H3pCytsb5K7i072FAEC9YlSYFIbosvM0tAKAlpSSUgD7yC1iXSEGdl5XrDKQ1YUB+p/HDzYrSG2H2Vl36g==";
};
};
"underscore-1.2.1" = {
@@ -58659,15 +59091,6 @@ let
sha1 = "f6b4501c2ec4cdd26ba78be7222961de77621598";
};
};
- "upper-case-first-1.1.2" = {
- name = "upper-case-first";
- packageName = "upper-case-first";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.2.tgz";
- sha1 = "5d79bedcff14419518fd2edb0a0507c9b6859115";
- };
- };
"uri-js-3.0.2" = {
name = "uri-js";
packageName = "uri-js";
@@ -60055,6 +60478,15 @@ let
sha1 = "c066afb582bb1cb4128d60ea92392e94d5e9dbec";
};
};
+ "void-elements-3.1.0" = {
+ name = "void-elements";
+ packageName = "void-elements";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz";
+ sha1 = "614f7fbf8d801f0bb5f0661f5b2f5785750e4f09";
+ };
+ };
"vsce-1.87.1" = {
name = "vsce";
packageName = "vsce";
@@ -61036,13 +61468,13 @@ let
sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==";
};
};
- "webtorrent-0.116.1" = {
+ "webtorrent-0.116.2" = {
name = "webtorrent";
packageName = "webtorrent";
- version = "0.116.1";
+ version = "0.116.2";
src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.116.1.tgz";
- sha512 = "xCmA9U8RviUbGD2Gv8pAPEGaPzGw8ZXseuUb5bbNrTg7zseRw4SrRvhPM17ri3yKN7+jWPeDvVXPPsNY9scFHw==";
+ url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.116.2.tgz";
+ sha512 = "u6ctyPEwUvbFKZsT9HRU1Q+SSqKWoNMlXWbaPTUlGsPrNZ3mCCeHtn8Hcf61jr1e4hna5oQBtVjg2N5/2V8d9g==";
};
};
"well-known-symbols-2.0.0" = {
@@ -61477,6 +61909,15 @@ let
sha1 = "fa4daa92daf32c4ea94ed453c81f04686b575dfe";
};
};
+ "with-7.0.2" = {
+ name = "with";
+ packageName = "with";
+ version = "7.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/with/-/with-7.0.2.tgz";
+ sha512 = "RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==";
+ };
+ };
"with-open-file-0.1.7" = {
name = "with-open-file";
packageName = "with-open-file";
@@ -62017,13 +62458,22 @@ let
sha512 = "PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==";
};
};
- "xdl-59.0.29" = {
+ "xdg-trashdir-3.1.0" = {
+ name = "xdg-trashdir";
+ packageName = "xdg-trashdir";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xdg-trashdir/-/xdg-trashdir-3.1.0.tgz";
+ sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ==";
+ };
+ };
+ "xdl-59.0.30" = {
name = "xdl";
packageName = "xdl";
- version = "59.0.29";
+ version = "59.0.30";
src = fetchurl {
- url = "https://registry.npmjs.org/xdl/-/xdl-59.0.29.tgz";
- sha512 = "f593BX+PUoAy/Sz+OG6GFGhobKKWbi5nzW9Pph9RKZK3ovpiKc+dVX8zNY+bJxWCkgPCv7c11smb/8mOPsWAQA==";
+ url = "https://registry.npmjs.org/xdl/-/xdl-59.0.30.tgz";
+ sha512 = "BNbOgInsM5/bE8EnIkoI6FRzDOSwjjrxaOeATevz3RosoZa6DMiTXU4HtSba0JkdMHKFgZaNxbj8nTQFxgg3AA==";
};
};
"xenvar-0.5.1" = {
@@ -62459,22 +62909,22 @@ let
sha512 = "uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==";
};
};
- "y18n-4.0.1" = {
+ "y18n-4.0.3" = {
name = "y18n";
packageName = "y18n";
- version = "4.0.1";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz";
- sha512 = "wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==";
+ url = "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz";
+ sha512 = "JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==";
};
};
- "y18n-5.0.6" = {
+ "y18n-5.0.8" = {
name = "y18n";
packageName = "y18n";
- version = "5.0.6";
+ version = "5.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/y18n/-/y18n-5.0.6.tgz";
- sha512 = "PlVX4Y0lDTN6E2V4ES2tEdyvXkeKzxa8c/vo0pxPr/TqbztddTP0yn7zZylIyiAuxerqj0Q5GhpJ1YJCP8LaZQ==";
+ url = "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz";
+ sha512 = "0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==";
};
};
"yallist-2.1.2" = {
@@ -62657,6 +63107,15 @@ let
sha512 = "D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==";
};
};
+ "yargs-17.0.0-candidate.12" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "17.0.0-candidate.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-17.0.0-candidate.12.tgz";
+ sha512 = "K/Q98zCuqg1CTgqmURpqytY3Iz+P7HQ42/FglRRQWEEi2DNxzIJqA50J1LJjm58FPJDzBnqLQ1BHUFnabzj4CA==";
+ };
+ };
"yargs-3.10.0" = {
name = "yargs";
packageName = "yargs";
@@ -63086,15 +63545,15 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "11.2.7";
+ version = "11.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-11.2.7.tgz";
- sha512 = "+0uC485NHE5Z8FCyCAeZnb7OCOZSGzEsUxGS5pEs8V9+c02/FmMg5aFBmxoXJhCWMJnb2QrJgAjb6rgka8e4Hg==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-11.2.8.tgz";
+ sha512 = "9TWNPKqaOrg+C5DR8jz4LNVzu/wCV0Hqt3JF4ILm9fv93bh2MgqetUKyHdQNAijtHMlOO1uh0EM2Emjlp5JvXQ==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1102.7"
- sources."@angular-devkit/core-11.2.7"
- sources."@angular-devkit/schematics-11.2.7"
+ sources."@angular-devkit/architect-0.1102.8"
+ sources."@angular-devkit/core-11.2.8"
+ sources."@angular-devkit/schematics-11.2.8"
sources."@npmcli/ci-detect-1.3.0"
(sources."@npmcli/git-2.0.6" // {
dependencies = [
@@ -63110,8 +63569,8 @@ in
sources."read-package-json-fast-2.0.2"
];
})
- sources."@schematics/angular-11.2.7"
- sources."@schematics/update-0.1102.7"
+ sources."@schematics/angular-11.2.8"
+ sources."@schematics/update-0.1102.8"
sources."@tootallnate/once-1.1.2"
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-1.1.1"
@@ -63221,7 +63680,7 @@ in
sources."inquirer-7.3.3"
sources."ip-1.1.5"
sources."is-core-module-2.2.0"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-interactive-1.0.0"
sources."is-lambda-1.0.1"
@@ -63396,7 +63855,7 @@ in
sources."js-yaml-3.14.1"
sources."json5-2.1.3"
sources."lodash.clonedeep-4.5.0"
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
sources."minimist-1.2.5"
sources."quick-lru-4.0.1"
sources."sprintf-js-1.0.3"
@@ -63598,7 +64057,7 @@ in
sources."lead-1.0.0"
sources."lodash.clonedeep-4.5.0"
sources."lowercase-keys-1.0.1"
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
sources."marky-1.2.1"
sources."matcher-2.1.0"
sources."mime-db-1.47.0"
@@ -63629,7 +64088,7 @@ in
sources."path-dirname-1.0.2"
sources."path-is-absolute-1.0.1"
sources."pend-1.2.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-4.0.1"
sources."prepend-http-2.0.0"
sources."printj-1.1.2"
@@ -63691,7 +64150,7 @@ in
];
})
sources."to-utf8-0.0.1"
- sources."uglify-js-3.13.3"
+ sources."uglify-js-3.13.4"
sources."unc-path-regex-0.1.2"
sources."unique-stream-2.3.1"
sources."universalify-0.1.2"
@@ -63800,7 +64259,7 @@ in
sources."https-proxy-agent-5.0.0"
sources."iconv-lite-0.4.24"
sources."inquirer-6.2.0"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-2.0.0"
sources."is-promise-2.2.2"
sources."is-typedarray-1.0.0"
@@ -63933,7 +64392,7 @@ in
];
})
sources."@schematics/schematics-0.1102.6"
- sources."@types/eslint-7.2.8"
+ sources."@types/eslint-7.2.9"
sources."@types/eslint-scope-3.7.0"
sources."@types/estree-0.0.46"
sources."@types/json-schema-7.0.7"
@@ -63957,14 +64416,14 @@ in
sources."@webassemblyjs/wast-printer-1.11.0"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.1.0"
+ sources."acorn-8.1.1"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
sources."ansi-colors-4.1.1"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."at-least-node-1.0.0"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
@@ -63972,15 +64431,15 @@ in
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.16.3"
+ sources."browserslist-4.16.4"
sources."buffer-5.7.1"
sources."buffer-from-1.1.1"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001207"
+ sources."caniuse-lite-1.0.30001208"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.5.1"
- sources."chrome-trace-event-1.0.2"
+ sources."chrome-trace-event-1.0.3"
sources."cli-cursor-3.1.0"
sources."cli-spinners-2.6.0"
sources."cli-table3-0.5.1"
@@ -63996,7 +64455,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.3.708"
+ sources."electron-to-chromium-1.3.713"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
(sources."enhanced-resolve-5.7.0" // {
@@ -64114,7 +64573,7 @@ in
sources."path-key-3.1.1"
sources."path-parse-1.0.6"
sources."path-type-4.0.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pluralize-8.0.0"
sources."pump-3.0.0"
sources."punycode-2.1.1"
@@ -64235,15 +64694,15 @@ in
sources."@apollographql/graphql-playground-html-1.6.27"
sources."@apollographql/graphql-upload-8-fork-8.1.3"
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.12"
- sources."@babel/core-7.13.14"
+ sources."@babel/compat-data-7.13.15"
+ sources."@babel/core-7.13.15"
sources."@babel/generator-7.13.9"
sources."@babel/helper-annotate-as-pure-7.12.13"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13"
sources."@babel/helper-compilation-targets-7.13.13"
sources."@babel/helper-create-class-features-plugin-7.13.11"
sources."@babel/helper-create-regexp-features-plugin-7.12.17"
- sources."@babel/helper-define-polyfill-provider-0.1.5"
+ sources."@babel/helper-define-polyfill-provider-0.2.0"
sources."@babel/helper-explode-assignable-expression-7.13.0"
sources."@babel/helper-function-name-7.12.13"
sources."@babel/helper-get-function-arity-7.12.13"
@@ -64263,9 +64722,9 @@ in
sources."@babel/helper-wrap-function-7.13.0"
sources."@babel/helpers-7.13.10"
sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.13"
+ sources."@babel/parser-7.13.15"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12"
- sources."@babel/plugin-proposal-async-generator-functions-7.13.8"
+ sources."@babel/plugin-proposal-async-generator-functions-7.13.15"
sources."@babel/plugin-proposal-class-properties-7.13.0"
sources."@babel/plugin-proposal-dynamic-import-7.13.8"
sources."@babel/plugin-proposal-export-namespace-from-7.12.13"
@@ -64316,7 +64775,7 @@ in
sources."@babel/plugin-transform-object-super-7.12.13"
sources."@babel/plugin-transform-parameters-7.13.0"
sources."@babel/plugin-transform-property-literals-7.12.13"
- sources."@babel/plugin-transform-regenerator-7.12.13"
+ sources."@babel/plugin-transform-regenerator-7.13.15"
sources."@babel/plugin-transform-reserved-words-7.12.13"
sources."@babel/plugin-transform-shorthand-properties-7.12.13"
sources."@babel/plugin-transform-spread-7.13.0"
@@ -64326,7 +64785,7 @@ in
sources."@babel/plugin-transform-typescript-7.13.0"
sources."@babel/plugin-transform-unicode-escapes-7.12.13"
sources."@babel/plugin-transform-unicode-regex-7.12.13"
- sources."@babel/preset-env-7.13.12"
+ sources."@babel/preset-env-7.13.15"
sources."@babel/preset-flow-7.13.13"
sources."@babel/preset-modules-0.1.4"
sources."@babel/preset-typescript-7.13.0"
@@ -64339,7 +64798,7 @@ in
})
sources."@babel/runtime-7.13.10"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.13"
+ sources."@babel/traverse-7.13.15"
sources."@babel/types-7.13.14"
sources."@hapi/address-2.1.4"
sources."@hapi/bourne-1.3.2"
@@ -64488,9 +64947,9 @@ in
sources."aws4-1.11.0"
sources."babel-core-7.0.0-bridge.0"
sources."babel-plugin-dynamic-import-node-2.3.3"
- sources."babel-plugin-polyfill-corejs2-0.1.10"
- sources."babel-plugin-polyfill-corejs3-0.1.7"
- sources."babel-plugin-polyfill-regenerator-0.1.6"
+ sources."babel-plugin-polyfill-corejs2-0.2.0"
+ sources."babel-plugin-polyfill-corejs3-0.2.0"
+ sources."babel-plugin-polyfill-regenerator-0.2.0"
sources."backo2-1.0.2"
sources."balanced-match-1.0.2"
(sources."base-0.11.2" // {
@@ -64523,7 +64982,7 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-2.3.2"
- sources."browserslist-4.16.3"
+ sources."browserslist-4.16.4"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -64543,7 +65002,7 @@ in
sources."call-bind-1.0.2"
sources."call-me-maybe-1.0.1"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001207"
+ sources."caniuse-lite-1.0.30001208"
sources."caseless-0.12.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -64600,8 +65059,8 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- sources."core-js-3.10.0"
- (sources."core-js-compat-3.10.0" // {
+ sources."core-js-3.10.1"
+ (sources."core-js-compat-3.10.1" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -64672,7 +65131,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.708"
+ sources."electron-to-chromium-1.3.713"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -64831,7 +65290,7 @@ in
];
})
sources."homedir-polyfill-1.0.3"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."http-cache-semantics-3.8.1"
sources."http-errors-1.8.0"
sources."http-signature-1.2.0"
@@ -64871,7 +65330,7 @@ in
sources."is-data-descriptor-1.0.0"
sources."is-date-object-1.0.2"
sources."is-descriptor-1.0.2"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-extendable-0.1.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-2.0.0"
@@ -65074,7 +65533,7 @@ in
sources."path-type-3.0.0"
sources."pend-1.2.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
(sources."pid-from-port-1.1.3" // {
dependencies = [
sources."cross-spawn-5.1.0"
@@ -65147,7 +65606,7 @@ in
sources."jsesc-0.5.0"
];
})
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."request-2.88.2"
sources."require-directory-2.1.1"
@@ -65398,7 +65857,7 @@ in
sources."ignore-5.1.8"
sources."is-number-7.0.0"
sources."lru-cache-6.0.0"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."path-type-4.0.0"
sources."source-map-0.6.1"
sources."to-regex-range-5.0.1"
@@ -65423,7 +65882,7 @@ in
sources."xmlbuilder-11.0.1"
sources."xss-1.0.8"
sources."xtend-4.0.2"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yallist-4.0.0"
(sources."yaml-front-matter-3.4.1" // {
dependencies = [
@@ -65574,7 +66033,7 @@ in
sources."@babel/generator-7.13.9"
sources."@babel/helper-validator-identifier-7.12.11"
sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.13"
+ sources."@babel/parser-7.13.15"
sources."@babel/template-7.12.13"
sources."@babel/types-7.13.14"
sources."@webassemblyjs/ast-1.11.0"
@@ -65652,8 +66111,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.12"
- (sources."@babel/core-7.13.14" // {
+ sources."@babel/compat-data-7.13.15"
+ (sources."@babel/core-7.13.15" // {
dependencies = [
sources."source-map-0.5.7"
];
@@ -65677,9 +66136,9 @@ in
sources."@babel/helper-validator-option-7.12.17"
sources."@babel/helpers-7.13.10"
sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.13"
+ sources."@babel/parser-7.13.15"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.13"
+ sources."@babel/traverse-7.13.15"
sources."@babel/types-7.13.14"
sources."JSV-4.0.2"
sources."ansi-styles-3.2.1"
@@ -65687,8 +66146,8 @@ in
sources."async-3.2.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.16.3"
- sources."caniuse-lite-1.0.30001207"
+ sources."browserslist-4.16.4"
+ sources."caniuse-lite-1.0.30001208"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -65699,7 +66158,7 @@ in
sources."convert-source-map-1.7.0"
sources."debug-4.3.2"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.3.708"
+ sources."electron-to-chromium-1.3.713"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -65821,10 +66280,10 @@ in
balanceofsatoshis = nodeEnv.buildNodePackage {
name = "balanceofsatoshis";
packageName = "balanceofsatoshis";
- version = "8.0.4";
+ version = "8.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-8.0.4.tgz";
- sha512 = "dU1X9/T1kSVnxJW6EWu63pR5RP1NAn+YMw2G8aGN2xcPrlgFc/oKEyDexVXa8xXMqLXFFs7UI5lY3FJ+yKFbeA==";
+ url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-8.0.5.tgz";
+ sha512 = "bhv1ttu6JK1UrU59Z78K+o/dPbP1i5Du2+UGzqIcPkesdItM3e0GCmWcFxZpTvkETP8rGvuYz5Xt1SzdWKYQ1w==";
};
dependencies = [
sources."@alexbosworth/html2unicode-1.1.5"
@@ -66408,7 +66867,7 @@ in
sources."supports-color-2.0.0"
(sources."table-6.0.9" // {
dependencies = [
- sources."ajv-8.0.5"
+ sources."ajv-8.1.0"
sources."ansi-regex-5.0.0"
sources."is-fullwidth-code-point-3.0.0"
sources."json-schema-traverse-1.0.0"
@@ -66708,7 +67167,7 @@ in
sources."glob-6.0.4"
sources."graceful-fs-3.0.12"
sources."has-1.0.3"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."indent-string-2.1.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -66955,7 +67414,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-parse-1.0.6"
sources."path-platform-0.11.15"
- sources."pbkdf2-3.1.1"
+ sources."pbkdf2-3.1.2"
sources."process-0.11.10"
sources."process-nextick-args-2.0.1"
(sources."public-encrypt-4.0.3" // {
@@ -67035,41 +67494,41 @@ in
btc-rpc-explorer = nodeEnv.buildNodePackage {
name = "btc-rpc-explorer";
packageName = "btc-rpc-explorer";
- version = "2.2.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/btc-rpc-explorer/-/btc-rpc-explorer-2.2.0.tgz";
- sha512 = "xaexMnw1gI6WYyEDMlIg2epSPuh0CcKfAqdHf8J7VATDYgQNcLaXCzM4TKTmkBjiA5f0rXypX5rVw0d8p+p1Vw==";
+ url = "https://registry.npmjs.org/btc-rpc-explorer/-/btc-rpc-explorer-3.0.0.tgz";
+ sha512 = "W54w48slAxBKQRHlhsuNPZk+yct7s8ptF/pg97DQ7VLnFbsZo9ZALB3CjJKLnqO0rPHivH6E56JgAfngrA6r9Q==";
};
dependencies = [
- sources."@types/babel-types-7.0.9"
- sources."@types/babylon-6.16.5"
+ sources."@babel/code-frame-7.12.13"
+ sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/highlight-7.13.10"
+ sources."@babel/parser-7.13.15"
+ sources."@babel/types-7.13.14"
+ sources."@kwsites/file-exists-1.1.1"
+ sources."@kwsites/promise-deferred-1.1.1"
+ sources."@types/minimist-1.2.1"
sources."@types/node-10.12.18"
+ sources."@types/normalize-package-data-2.4.0"
sources."@uphold/request-logger-2.0.0"
sources."accepts-1.3.7"
- sources."acorn-3.3.0"
- (sources."acorn-globals-3.1.0" // {
- dependencies = [
- sources."acorn-4.0.13"
- ];
- })
+ sources."acorn-7.4.1"
sources."ajv-6.12.6"
- sources."align-text-0.1.4"
sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
sources."argparse-1.0.10"
- sources."array-find-index-1.0.2"
sources."array-flatten-1.1.1"
sources."arrify-1.0.1"
sources."asap-2.0.6"
sources."asn1-0.2.4"
+ sources."assert-never-1.2.1"
sources."assert-plus-1.0.0"
sources."async-3.2.0"
sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
- sources."babel-runtime-6.26.0"
- sources."babel-types-6.26.0"
- sources."babylon-6.18.0"
+ sources."axios-0.21.1"
+ sources."babel-walk-3.0.0-canary-5"
sources."balanced-match-1.0.2"
sources."base-x-3.0.8"
sources."base64-js-1.5.1"
@@ -67095,6 +67554,7 @@ in
sources."debug-2.6.9"
];
})
+ sources."bootstrap-5.0.0-beta3"
sources."brace-expansion-1.1.11"
sources."brorand-1.1.0"
sources."bs58-4.0.1"
@@ -67107,42 +67567,39 @@ in
sources."bunyan-1.8.15"
sources."bytes-3.1.0"
sources."call-bind-1.0.2"
- sources."camelcase-4.1.0"
- sources."camelcase-keys-4.2.0"
+ sources."camelcase-5.3.1"
+ sources."camelcase-keys-6.2.2"
sources."caseless-0.12.0"
- sources."center-align-0.1.3"
+ sources."chalk-2.4.2"
sources."character-parser-2.2.0"
sources."charenc-0.0.2"
sources."cipher-base-1.0.4"
- sources."clean-css-4.2.3"
- sources."cliui-2.1.0"
+ sources."cliui-5.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
- sources."constantinople-3.1.2"
+ sources."constantinople-4.0.1"
sources."content-disposition-0.5.3"
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-parser-1.4.5"
sources."cookie-signature-1.0.6"
- sources."core-js-2.6.12"
sources."core-util-is-1.0.2"
sources."create-hash-1.2.0"
sources."create-hmac-1.1.7"
sources."crypt-0.0.2"
- sources."crypto-js-3.1.9-1"
+ sources."crypto-js-4.0.0"
sources."csrf-3.1.0"
(sources."csurf-1.11.0" // {
dependencies = [
sources."http-errors-1.7.3"
];
})
- sources."currently-unhandled-0.4.1"
sources."dashdash-1.14.1"
- (sources."debug-4.1.1" // {
+ (sources."debug-4.3.2" // {
dependencies = [
- sources."ms-2.1.3"
+ sources."ms-2.1.2"
];
})
(sources."debugnyan-1.0.0" // {
@@ -67158,12 +67615,12 @@ in
})
sources."decimal.js-10.2.1"
sources."delayed-stream-1.0.0"
+ sources."denque-1.5.0"
sources."depd-1.1.2"
sources."destroy-1.0.4"
sources."dijkstrajs-1.0.1"
sources."doctypes-1.1.0"
sources."dotenv-8.2.0"
- sources."double-ended-queue-2.1.0-0"
sources."dtrace-provider-0.8.8"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
@@ -67174,13 +67631,15 @@ in
sources."entities-1.1.2"
sources."error-ex-1.3.2"
sources."escape-html-1.0.3"
- sources."esutils-2.0.3"
+ sources."escape-string-regexp-1.0.5"
sources."etag-1.8.1"
+ sources."event-loop-stats-1.3.0"
(sources."express-4.17.1" // {
dependencies = [
sources."debug-2.6.9"
];
})
+ sources."express-async-handler-1.1.4"
(sources."express-session-1.17.1" // {
dependencies = [
sources."debug-2.6.9"
@@ -67198,7 +67657,8 @@ in
sources."debug-2.6.9"
];
})
- sources."find-up-2.1.0"
+ sources."find-up-4.1.0"
+ sources."follow-redirects-1.13.3"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."forwarded-0.1.2"
@@ -67208,10 +67668,11 @@ in
sources."get-intrinsic-1.1.1"
sources."getpass-0.1.7"
sources."glob-6.0.4"
- sources."graceful-fs-4.2.6"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
+ sources."hard-rejection-2.1.0"
sources."has-1.0.3"
+ sources."has-flag-3.0.0"
sources."has-symbols-1.0.2"
(sources."hash-base-3.1.0" // {
dependencies = [
@@ -67220,7 +67681,7 @@ in
})
sources."hash.js-1.1.7"
sources."hmac-drbg-1.0.1"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-4.0.2"
(sources."http-errors-1.7.2" // {
dependencies = [
sources."inherits-2.0.3"
@@ -67229,18 +67690,14 @@ in
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
- sources."indent-string-3.2.0"
+ sources."indent-string-4.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ipaddr.js-1.9.1"
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
sources."is-core-module-2.2.0"
- (sources."is-expression-3.0.0" // {
- dependencies = [
- sources."acorn-4.0.13"
- ];
- })
+ sources."is-expression-4.0.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-plain-obj-1.1.0"
sources."is-promise-2.2.2"
@@ -67249,9 +67706,10 @@ in
sources."isarray-2.0.5"
sources."isstream-0.1.2"
sources."js-stringify-1.0.2"
+ sources."js-tokens-4.0.0"
sources."jsbn-0.1.1"
sources."json-bigint-0.2.3"
- sources."json-parse-better-errors-1.0.2"
+ sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
@@ -67262,16 +67720,13 @@ in
sources."markdown-it-8.4.2"
];
})
- sources."kind-of-3.2.2"
- sources."lazy-cache-1.0.4"
+ sources."kind-of-6.0.3"
+ sources."lines-and-columns-1.1.6"
sources."linkify-it-2.2.0"
- sources."load-json-file-4.0.0"
- sources."locate-path-2.0.0"
+ sources."locate-path-5.0.0"
sources."lodash-4.17.21"
- sources."longest-1.0.1"
- sources."loud-rejection-1.6.0"
- sources."lru-cache-5.1.1"
- sources."map-obj-2.0.0"
+ sources."lru-cache-6.0.0"
+ sources."map-obj-4.2.1"
(sources."markdown-it-12.0.4" // {
dependencies = [
sources."argparse-2.0.1"
@@ -67283,18 +67738,19 @@ in
sources."md5.js-1.3.5"
sources."mdurl-1.0.1"
sources."media-typer-0.3.0"
- sources."meow-5.0.0"
+ sources."meow-9.0.0"
sources."merge-descriptors-1.0.1"
sources."merkle-lib-2.0.10"
sources."methods-1.1.2"
sources."mime-1.6.0"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
+ sources."min-indent-1.0.1"
sources."minimalistic-assert-1.0.1"
sources."minimalistic-crypto-utils-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."minimist-options-3.0.2"
+ sources."minimist-options-4.1.0"
sources."mkdirp-0.5.5"
sources."moment-2.29.1"
sources."moment-duration-format-2.3.2"
@@ -67309,74 +67765,71 @@ in
sources."nan-2.14.2"
sources."ncp-2.0.0"
sources."negotiator-0.6.2"
- (sources."normalize-package-data-2.5.0" // {
- dependencies = [
- sources."semver-5.7.1"
- ];
- })
+ sources."normalize-package-data-3.0.2"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
- sources."p-limit-1.3.0"
- sources."p-locate-2.0.0"
- sources."p-try-1.0.0"
- sources."parse-json-4.0.0"
+ sources."p-limit-2.3.0"
+ sources."p-locate-4.1.0"
+ sources."p-try-2.2.0"
+ sources."parse-json-5.2.0"
sources."parseurl-1.3.3"
- sources."path-exists-3.0.0"
+ sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-parse-1.0.6"
sources."path-to-regexp-0.1.7"
- sources."path-type-3.0.0"
sources."performance-now-2.1.0"
- sources."pify-3.0.0"
+ (sources."pidusage-2.0.21" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."pngjs-3.4.0"
sources."promise-7.3.1"
sources."proxy-addr-2.0.6"
sources."psl-1.8.0"
- sources."pug-2.0.4"
- sources."pug-attrs-2.0.4"
- sources."pug-code-gen-2.0.3"
- sources."pug-error-1.3.3"
- sources."pug-filters-3.1.1"
- sources."pug-lexer-4.1.0"
- sources."pug-linker-3.0.6"
- sources."pug-load-2.0.12"
- sources."pug-parser-5.0.1"
- sources."pug-runtime-2.0.5"
- sources."pug-strip-comments-1.0.4"
- sources."pug-walk-1.1.8"
+ sources."pug-3.0.2"
+ sources."pug-attrs-3.0.0"
+ sources."pug-code-gen-3.0.2"
+ sources."pug-error-2.0.0"
+ sources."pug-filters-4.0.0"
+ sources."pug-lexer-5.0.1"
+ sources."pug-linker-4.0.0"
+ sources."pug-load-3.0.0"
+ sources."pug-parser-6.0.0"
+ sources."pug-runtime-3.0.1"
+ sources."pug-strip-comments-2.0.0"
+ sources."pug-walk-2.0.0"
sources."punycode-2.1.1"
sources."pushdata-bitcoin-1.0.1"
- (sources."qrcode-1.4.4" // {
- dependencies = [
- sources."camelcase-5.3.1"
- sources."cliui-5.0.0"
- sources."find-up-3.0.0"
- sources."locate-path-3.0.0"
- sources."p-limit-2.3.0"
- sources."p-locate-3.0.0"
- sources."p-try-2.2.0"
- sources."yargs-13.3.2"
- sources."yargs-parser-13.1.2"
- ];
- })
+ sources."qrcode-1.4.4"
sources."qs-6.7.0"
- sources."quick-lru-1.1.0"
+ sources."quick-lru-4.0.1"
sources."random-bytes-1.0.0"
sources."randombytes-2.1.0"
sources."range-parser-1.2.1"
sources."raw-body-2.4.0"
- sources."read-pkg-3.0.0"
- sources."read-pkg-up-3.0.0"
+ (sources."read-pkg-5.2.0" // {
+ dependencies = [
+ sources."hosted-git-info-2.8.9"
+ sources."normalize-package-data-2.5.0"
+ sources."semver-5.7.1"
+ sources."type-fest-0.6.0"
+ ];
+ })
+ (sources."read-pkg-up-7.0.1" // {
+ dependencies = [
+ sources."type-fest-0.8.1"
+ ];
+ })
sources."readable-stream-3.6.0"
- sources."redent-2.0.0"
- sources."redis-2.8.0"
+ sources."redent-3.0.0"
+ sources."redis-3.1.0"
sources."redis-commands-1.7.0"
- sources."redis-parser-2.6.0"
- sources."regenerator-runtime-0.11.1"
- sources."repeat-string-1.6.1"
+ sources."redis-errors-1.2.0"
+ sources."redis-parser-3.0.0"
(sources."request-2.88.2" // {
dependencies = [
sources."qs-6.5.2"
@@ -67385,19 +67838,13 @@ in
sources."require-directory-2.1.1"
sources."require-main-filename-2.0.0"
sources."resolve-1.20.0"
- sources."right-align-0.1.3"
sources."rimraf-2.4.5"
sources."ripemd160-2.0.2"
sources."rndm-1.2.0"
sources."safe-buffer-5.1.2"
sources."safe-json-stringify-1.2.0"
sources."safer-buffer-2.1.2"
- (sources."semver-7.3.5" // {
- dependencies = [
- sources."lru-cache-6.0.0"
- sources."yallist-4.0.0"
- ];
- })
+ sources."semver-7.3.5"
(sources."send-0.17.1" // {
dependencies = [
(sources."debug-2.6.9" // {
@@ -67418,9 +67865,7 @@ in
sources."set-blocking-2.0.0"
sources."setprototypeof-1.1.1"
sources."sha.js-2.4.11"
- sources."signal-exit-3.0.3"
- sources."simple-git-1.132.0"
- sources."source-map-0.6.1"
+ sources."simple-git-2.37.0"
sources."spdx-correct-3.1.1"
sources."spdx-exceptions-2.3.0"
sources."spdx-expression-parse-3.0.1"
@@ -67436,26 +67881,21 @@ in
];
})
sources."strip-ansi-5.2.0"
- sources."strip-bom-3.0.0"
- sources."strip-indent-2.0.0"
+ sources."strip-indent-3.0.0"
+ sources."supports-color-5.5.0"
sources."tiny-secp256k1-1.1.6"
- sources."to-fast-properties-1.0.3"
+ sources."to-fast-properties-2.0.0"
sources."toidentifier-1.0.0"
- sources."token-stream-0.0.1"
+ sources."token-stream-1.0.0"
sources."tough-cookie-2.5.0"
- sources."trim-newlines-2.0.0"
+ sources."trim-newlines-3.0.0"
sources."tsscmp-1.0.6"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
+ sources."type-fest-0.18.1"
sources."type-is-1.6.18"
sources."typeforce-1.18.0"
sources."uc.micro-1.0.6"
- (sources."uglify-js-2.8.29" // {
- dependencies = [
- sources."source-map-0.5.7"
- ];
- })
- sources."uglify-to-browserify-1.0.2"
sources."uid-safe-2.1.5"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
@@ -67466,22 +67906,24 @@ in
sources."varuint-bitcoin-1.1.2"
sources."vary-1.1.2"
sources."verror-1.10.0"
- sources."void-elements-2.0.1"
+ sources."void-elements-3.1.0"
sources."which-module-2.0.0"
sources."wif-2.0.6"
- sources."window-size-0.1.0"
- sources."with-5.1.1"
- sources."wordwrap-0.0.2"
+ sources."with-7.0.2"
sources."wrap-ansi-5.1.0"
sources."wrappy-1.0.2"
- sources."y18n-4.0.1"
- sources."yallist-3.1.1"
- (sources."yargs-3.10.0" // {
+ sources."y18n-4.0.3"
+ sources."yallist-4.0.0"
+ (sources."yargs-13.3.2" // {
dependencies = [
- sources."camelcase-1.2.1"
+ sources."find-up-3.0.0"
+ sources."locate-path-3.0.0"
+ sources."p-locate-3.0.0"
+ sources."path-exists-3.0.0"
+ sources."yargs-parser-13.1.2"
];
})
- sources."yargs-parser-10.1.0"
+ sources."yargs-parser-20.2.7"
];
buildInputs = globalBuildInputs;
meta = {
@@ -67642,7 +68084,7 @@ in
sources."has-1.0.3"
sources."has-ansi-1.0.3"
sources."hat-0.0.3"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."http-signature-1.2.0"
sources."immediate-chunk-store-1.0.8"
sources."indent-string-2.1.0"
@@ -67925,7 +68367,7 @@ in
sha512 = "Oo/tO5aqmjsBORN93dSnidF7+2u77Q9zwUn9VbCQkZqCNfeZZcwIV9AG108hMYwtcXqtKQC7wevX6rmi9l8lng==";
};
dependencies = [
- sources."@jsii/spec-1.27.0"
+ sources."@jsii/spec-1.27.1"
sources."@types/node-10.17.56"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
@@ -67938,7 +68380,7 @@ in
sources."cdk8s-1.0.0-beta.11"
sources."cliui-7.0.4"
sources."clone-2.1.2"
- (sources."codemaker-1.27.0" // {
+ (sources."codemaker-1.27.1" // {
dependencies = [
sources."fs-extra-9.1.0"
];
@@ -67996,25 +68438,25 @@ in
sources."is-weakmap-2.0.1"
sources."is-weakset-2.0.1"
sources."isarray-2.0.5"
- (sources."jsii-1.27.0" // {
+ (sources."jsii-1.27.1" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-pacmak-1.27.0" // {
+ (sources."jsii-pacmak-1.27.1" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-reflect-1.27.0" // {
+ (sources."jsii-reflect-1.27.1" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-rosetta-1.27.0" // {
+ (sources."jsii-rosetta-1.27.1" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
@@ -68042,7 +68484,7 @@ in
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
- sources."oo-ascii-tree-1.27.0"
+ sources."oo-ascii-tree-1.27.1"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
@@ -68084,7 +68526,7 @@ in
sources."wrap-ansi-7.0.0"
sources."xmlbuilder-15.1.1"
sources."xmldom-0.5.0"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yaml-1.10.2"
(sources."yargs-15.4.1" // {
@@ -68093,7 +68535,7 @@ in
sources."cliui-6.0.0"
sources."decamelize-1.2.0"
sources."wrap-ansi-6.2.0"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yargs-parser-18.1.3"
];
})
@@ -68119,11 +68561,11 @@ in
};
dependencies = [
sources."@cdktf/hcl2json-0.2.1"
- sources."@jsii/spec-1.27.0"
+ sources."@jsii/spec-1.27.1"
sources."@skorfmann/ink-confirm-input-3.0.0"
sources."@skorfmann/terraform-cloud-1.9.1"
sources."@types/node-14.14.37"
- sources."@types/node-fetch-2.5.9"
+ sources."@types/node-fetch-2.5.10"
sources."@types/yoga-layout-1.9.2"
(sources."ansi-escapes-4.3.2" // {
dependencies = [
@@ -68243,7 +68685,7 @@ in
sources."is-callable-1.2.3"
sources."is-ci-2.0.0"
sources."is-date-object-1.0.2"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-map-2.0.2"
sources."is-negative-zero-2.0.1"
@@ -68258,7 +68700,7 @@ in
sources."is-wsl-2.2.0"
sources."isarray-1.0.0"
sources."js-tokens-4.0.0"
- (sources."jsii-1.27.0" // {
+ (sources."jsii-1.27.1" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -68266,10 +68708,10 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-pacmak-1.27.0" // {
+ (sources."jsii-pacmak-1.27.1" // {
dependencies = [
sources."camelcase-6.2.0"
- sources."codemaker-1.27.0"
+ sources."codemaker-1.27.1"
sources."decamelize-5.0.0"
sources."escape-string-regexp-4.0.0"
sources."fs-extra-9.1.0"
@@ -68278,7 +68720,7 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-reflect-1.27.0" // {
+ (sources."jsii-reflect-1.27.1" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -68286,7 +68728,7 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-rosetta-1.27.0" // {
+ (sources."jsii-rosetta-1.27.1" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -68318,7 +68760,7 @@ in
sources."log4js-6.3.0"
sources."loose-envify-1.4.0"
sources."lru-cache-6.0.0"
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
sources."mdurl-1.0.1"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
@@ -68336,7 +68778,7 @@ in
sources."object.assign-4.1.2"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."oo-ascii-tree-1.27.0"
+ sources."oo-ascii-tree-1.27.1"
sources."open-7.4.2"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
@@ -68349,7 +68791,7 @@ in
sources."prop-types-15.7.2"
sources."quick-lru-4.0.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.10.1"
+ sources."react-devtools-core-4.12.0"
sources."react-is-16.13.1"
sources."react-reconciler-0.24.0"
sources."readable-stream-3.6.0"
@@ -68417,12 +68859,12 @@ in
sources."ws-7.4.4"
sources."xmlbuilder-15.1.1"
sources."xmldom-0.5.0"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yallist-4.0.0"
(sources."yargs-15.4.1" // {
dependencies = [
sources."cliui-6.0.0"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yargs-parser-18.1.3"
];
})
@@ -68672,6 +69114,92 @@ in
bypassCache = true;
reconstructLock = true;
};
+ coc-explorer = nodeEnv.buildNodePackage {
+ name = "coc-explorer";
+ packageName = "coc-explorer";
+ version = "0.17.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.17.1.tgz";
+ sha512 = "rojcQAJIxD8ObvlFq5HPZjyESKLzyUrRHmTQbvvsltEi8v4ztOOqTmRqYNtP+9wD4KRjTYmZGA6hgqQqXZlWqA==";
+ };
+ dependencies = [
+ sources."@sindresorhus/df-3.1.1"
+ sources."@stroncium/procfs-1.2.1"
+ sources."aggregate-error-3.1.0"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."balanced-match-1.0.2"
+ sources."brace-expansion-1.1.11"
+ sources."clean-stack-2.2.0"
+ sources."concat-map-0.0.1"
+ sources."cross-spawn-7.0.3"
+ sources."define-lazy-prop-2.0.0"
+ sources."dir-glob-2.2.2"
+ sources."end-of-stream-1.4.4"
+ sources."execa-2.1.0"
+ sources."fs.realpath-1.0.0"
+ sources."get-stream-5.2.0"
+ sources."glob-7.1.6"
+ sources."globby-7.1.1"
+ sources."ignore-3.3.10"
+ sources."indent-string-4.0.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
+ sources."is-docker-2.2.1"
+ sources."is-path-inside-3.0.3"
+ sources."is-stream-2.0.0"
+ sources."is-wsl-2.2.0"
+ sources."isexe-2.0.0"
+ sources."make-dir-3.1.0"
+ sources."merge-stream-2.0.0"
+ sources."mimic-fn-2.1.0"
+ sources."minimatch-3.0.4"
+ (sources."mount-point-3.0.0" // {
+ dependencies = [
+ sources."@sindresorhus/df-1.0.1"
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."move-file-2.0.0"
+ sources."npm-run-path-3.1.0"
+ sources."once-1.4.0"
+ sources."onetime-5.1.2"
+ sources."open-8.0.5"
+ sources."os-homedir-1.0.2"
+ sources."p-finally-2.0.1"
+ sources."p-map-4.0.0"
+ sources."path-exists-4.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-key-3.1.1"
+ sources."path-type-3.0.0"
+ sources."pify-3.0.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."pump-3.0.0"
+ sources."semver-6.3.0"
+ sources."shebang-command-2.0.0"
+ sources."shebang-regex-3.0.0"
+ sources."signal-exit-3.0.3"
+ sources."slash-1.0.0"
+ sources."strip-final-newline-2.0.0"
+ sources."trash-7.1.1"
+ sources."user-home-2.0.0"
+ sources."uuid-8.3.2"
+ sources."which-2.0.2"
+ sources."wrappy-1.0.2"
+ sources."xdg-basedir-4.0.0"
+ sources."xdg-trashdir-3.1.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "explorer for coc.nvim";
+ homepage = "https://github.com/weirongxu/coc-explorer";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
coc-git = nodeEnv.buildNodePackage {
name = "coc-git";
packageName = "coc-git";
@@ -68741,7 +69269,7 @@ in
sha512 = "7SHQYzpRKPrpaLcTm1UUk1zu9VvFEJKFqxwDIuqv/CL0cBTtEvlsfpVh9DOaMHlZPu8U8Lgyf04bHV/sFS1zJw==";
};
dependencies = [
- sources."typescript-4.2.3"
+ sources."typescript-4.2.4"
];
buildInputs = globalBuildInputs;
meta = {
@@ -68862,10 +69390,10 @@ in
coc-metals = nodeEnv.buildNodePackage {
name = "coc-metals";
packageName = "coc-metals";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.2.tgz";
- sha512 = "oONqWYHICin0t9chOrx6dkL2pEBeaFwrfwaBPX9we0bNrhQ3XQNLNC/O+/x4ZSHzHQ0hucmmGOuCoQ9Q7wbdGg==";
+ url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.3.tgz";
+ sha512 = "7mIC/YiAYNS9kzv0tPi6IcKTWRDRAwjKbot4g/RwBxpyGAzTBvsfmpqnWvHiZbk4kd8mKG2qmWR9OEy7CNzNEQ==";
};
dependencies = [
sources."@chemzqm/neovim-5.2.13"
@@ -68941,7 +69469,7 @@ in
sources."is-boolean-object-1.1.0"
sources."is-callable-1.2.3"
sources."is-date-object-1.0.2"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-negative-zero-2.0.1"
sources."is-number-object-1.0.4"
sources."is-regex-1.1.2"
@@ -68963,7 +69491,7 @@ in
sources."lodash-4.17.21"
sources."log4js-6.3.0"
sources."lru-cache-6.0.0"
- sources."metals-languageclient-0.4.0"
+ sources."metals-languageclient-0.4.2"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."minipass-3.1.3"
@@ -69155,7 +69683,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
- sources."caniuse-lite-1.0.30001207"
+ sources."caniuse-lite-1.0.30001208"
sources."capture-stack-trace-1.0.1"
sources."ccount-1.1.0"
(sources."chalk-4.1.0" // {
@@ -69217,7 +69745,7 @@ in
];
})
sources."copy-descriptor-0.1.1"
- sources."core-js-3.10.0"
+ sources."core-js-3.10.1"
sources."cosmiconfig-3.1.0"
sources."create-error-class-3.0.2"
sources."cross-spawn-7.0.3"
@@ -69253,14 +69781,14 @@ in
sources."domutils-1.7.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.3.708"
+ sources."electron-to-chromium-1.3.713"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enquirer-2.3.6"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
- (sources."eslint-7.23.0" // {
+ (sources."eslint-7.24.0" // {
dependencies = [
sources."eslint-visitor-keys-2.0.0"
];
@@ -69395,7 +69923,7 @@ in
sources."glob-parent-5.1.2"
sources."glob-to-regexp-0.3.0"
sources."global-dirs-0.1.1"
- (sources."globals-13.7.0" // {
+ (sources."globals-13.8.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -69432,7 +69960,7 @@ in
sources."kind-of-4.0.0"
];
})
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."html-tags-2.0.0"
sources."htmlparser2-3.10.1"
sources."ignore-4.0.6"
@@ -69775,7 +70303,7 @@ in
sources."remark-parse-4.0.0"
sources."remark-stringify-4.0.0"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."repeating-2.0.1"
sources."replace-ext-1.0.0"
@@ -69923,7 +70451,7 @@ in
sources."svg-tags-1.0.0"
(sources."table-6.0.9" // {
dependencies = [
- sources."ajv-8.0.5"
+ sources."ajv-8.1.0"
sources."json-schema-traverse-1.0.0"
];
})
@@ -70053,13 +70581,13 @@ in
coc-pyright = nodeEnv.buildNodePackage {
name = "coc-pyright";
packageName = "coc-pyright";
- version = "1.1.128";
+ version = "1.1.129";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.128.tgz";
- sha512 = "3im1yc6Z412I09hqsFZBGCEGvnC92aIohpivQfwqK+amP5ySQEBYAtlTF0cJ8C9+cbWHkpFLUThcL/jZDvi9yQ==";
+ url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.129.tgz";
+ sha512 = "XlybP7uY9BgkeGKCFhIxnmpos3rYJ8wIB+MW4w0Fyu51Ap2fxamU7FDmOcOIbjmp1tglldSZm2+A+KloHDuUgw==";
};
dependencies = [
- sources."pyright-1.1.128"
+ sources."pyright-1.1.130"
];
buildInputs = globalBuildInputs;
meta = {
@@ -70133,10 +70661,10 @@ in
coc-rust-analyzer = nodeEnv.buildNodePackage {
name = "coc-rust-analyzer";
packageName = "coc-rust-analyzer";
- version = "0.40.0";
+ version = "0.42.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.40.0.tgz";
- sha512 = "OrneTjhj7lOFRRrQg93PjeDNu65XJN0jeAwOu2kbICGassqW5ILhNkYadfQDGbPbjPxbREZwzrHzBc2qcvzPPg==";
+ url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.42.0.tgz";
+ sha512 = "H6/r68GvhIMWDZWWFtOUsyRNxaVlMRLrS+uMqcipxfkx+Pl1pWfnfsmymjd9okbtrWiKWgG6G63v7T2rVl4+YA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -70210,8 +70738,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.12"
- sources."@babel/core-7.13.14"
+ sources."@babel/compat-data-7.13.15"
+ sources."@babel/core-7.13.15"
sources."@babel/generator-7.13.9"
sources."@babel/helper-compilation-targets-7.13.13"
sources."@babel/helper-function-name-7.12.13"
@@ -70231,9 +70759,9 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.13.13"
+ sources."@babel/parser-7.13.15"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.13"
+ sources."@babel/traverse-7.13.15"
sources."@babel/types-7.13.14"
sources."@nodelib/fs.scandir-2.1.4"
sources."@nodelib/fs.stat-2.0.4"
@@ -70245,7 +70773,7 @@ in
sources."@types/normalize-package-data-2.4.0"
sources."@types/parse-json-4.0.0"
sources."@types/unist-2.0.3"
- sources."ajv-8.0.5"
+ sources."ajv-8.1.0"
sources."ansi-regex-5.0.0"
sources."ansi-styles-3.2.1"
sources."array-union-2.1.0"
@@ -70256,12 +70784,12 @@ in
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.16.3"
+ sources."browserslist-4.16.4"
sources."call-bind-1.0.2"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001207"
+ sources."caniuse-lite-1.0.30001208"
(sources."chalk-4.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -70299,7 +70827,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.708"
+ sources."electron-to-chromium-1.3.713"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -70385,7 +70913,7 @@ in
sources."log-symbols-4.1.0"
sources."longest-streak-2.0.4"
sources."lru-cache-6.0.0"
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
sources."mathml-tag-names-2.1.3"
sources."mdast-util-from-markdown-0.8.5"
sources."mdast-util-to-markdown-0.6.5"
@@ -70393,7 +70921,7 @@ in
sources."meow-9.0.0"
sources."merge2-1.4.1"
sources."micromark-2.11.4"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."min-indent-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
@@ -70424,7 +70952,7 @@ in
sources."path-is-inside-1.0.2"
sources."path-parse-1.0.6"
sources."path-type-4.0.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
(sources."postcss-7.0.35" // {
dependencies = [
(sources."chalk-2.4.2" // {
@@ -70451,7 +70979,7 @@ in
sources."quick-lru-4.0.1"
(sources."read-pkg-5.2.0" // {
dependencies = [
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."normalize-package-data-2.5.0"
sources."semver-5.7.1"
sources."type-fest-0.6.0"
@@ -70681,13 +71209,13 @@ in
coc-tsserver = nodeEnv.buildNodePackage {
name = "coc-tsserver";
packageName = "coc-tsserver";
- version = "1.6.8";
+ version = "1.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.6.8.tgz";
- sha512 = "No0Eio7RJDawPS2fuWyJgnbDRN9ivtxf085o4jOuSOrwFeId88Se1ngPoT7whVAOkAiW75KgqFyuLDlr9XH+9w==";
+ url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.7.0.tgz";
+ sha512 = "Kye0Bn4ifhNhKFcenXg0z8iNzkBGOCXCb552sY/L55+4+08WU02impRnuYkEwFo2QAjDrRQNYjUfUabRR4LC+A==";
};
dependencies = [
- sources."typescript-4.2.3"
+ sources."typescript-4.2.4"
];
buildInputs = globalBuildInputs;
meta = {
@@ -70754,8 +71282,8 @@ in
sources."emoji-regex-8.0.0"
sources."enquirer-2.3.6"
sources."escape-string-regexp-1.0.5"
- sources."eslint-7.23.0"
- sources."eslint-plugin-vue-7.8.0"
+ sources."eslint-7.24.0"
+ sources."eslint-plugin-vue-7.9.0"
sources."eslint-scope-5.1.1"
(sources."eslint-utils-2.1.0" // {
dependencies = [
@@ -70793,7 +71321,7 @@ in
sources."get-intrinsic-1.1.1"
sources."glob-7.1.6"
sources."glob-parent-5.1.2"
- (sources."globals-13.7.0" // {
+ (sources."globals-13.8.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -70861,7 +71389,7 @@ in
sources."supports-color-5.5.0"
(sources."table-6.0.9" // {
dependencies = [
- sources."ajv-8.0.5"
+ sources."ajv-8.1.0"
sources."json-schema-traverse-1.0.0"
];
})
@@ -70876,7 +71404,7 @@ in
sources."tsutils-2.29.0"
sources."type-check-0.4.0"
sources."type-fest-0.8.1"
- sources."typescript-4.2.3"
+ sources."typescript-4.2.4"
sources."uri-js-4.4.1"
sources."v8-compile-cache-2.3.0"
sources."vls-0.7.2"
@@ -70903,10 +71431,10 @@ in
coc-vimlsp = nodeEnv.buildNodePackage {
name = "coc-vimlsp";
packageName = "coc-vimlsp";
- version = "0.12.1";
+ version = "0.12.2";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-vimlsp/-/coc-vimlsp-0.12.1.tgz";
- sha512 = "2ESErZRwj6NZJbjX3wNZpiP5UxS2+La3uKEfA4dI3KQnaOrJ9ZR6TNROGl4MI0I2DgZNJO9Y3FZmyt1I/WJm+Q==";
+ url = "https://registry.npmjs.org/coc-vimlsp/-/coc-vimlsp-0.12.2.tgz";
+ sha512 = "vfWz0wpyuyj1U/8v6kXaBnJrhlTK40FWezeKKW/UNLLi9v3rWiV4QoV3uTmJqIMbvW97mhIzD5EynXgqPlD8Bg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -71094,10 +71622,10 @@ in
configurable-http-proxy = nodeEnv.buildNodePackage {
name = "configurable-http-proxy";
packageName = "configurable-http-proxy";
- version = "4.3.1";
+ version = "4.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/configurable-http-proxy/-/configurable-http-proxy-4.3.1.tgz";
- sha512 = "/Q1Lb5YtxupfXD51GMf//a5ubHNj7gQZfbQj4xxnoKNhec4iUgjTQ9IiemsJJDFlp3Bqgh+cV4OW/zuVkibahg==";
+ url = "https://registry.npmjs.org/configurable-http-proxy/-/configurable-http-proxy-4.3.2.tgz";
+ sha512 = "wVYydYWJyPAUj8pNQ4+4mNxwj6EY8JNETRAOA3UjpiLrGr+Np/2lfQW+W3Fjubs9nUDn0JTQ/aaPsjdEs1/6dA==";
};
dependencies = [
sources."@dabh/diagnostics-2.0.2"
@@ -71108,7 +71636,7 @@ in
sources."color-string-1.5.5"
sources."colors-1.4.0"
sources."colorspace-1.1.2"
- sources."commander-7.1.0"
+ sources."commander-7.2.0"
sources."core-util-is-1.0.2"
sources."enabled-2.0.0"
sources."eventemitter3-4.0.7"
@@ -71419,7 +71947,7 @@ in
sources."ini-1.3.7"
(sources."init-package-json-1.10.3" // {
dependencies = [
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."npm-package-arg-6.1.1"
sources."semver-5.7.1"
];
@@ -71463,7 +71991,7 @@ in
sources."ipaddr.js-1.9.1"
sources."is-ci-2.0.0"
sources."is-core-module-2.2.0"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-1.0.0"
sources."is-glob-4.0.1"
@@ -71515,7 +72043,7 @@ in
sources."merge-stream-2.0.0"
sources."merge2-1.4.1"
sources."methods-1.1.2"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."mime-1.6.0"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
@@ -71544,7 +72072,7 @@ in
sources."nopt-4.0.3"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."semver-5.7.1"
];
})
@@ -71597,7 +72125,7 @@ in
sources."path-to-regexp-0.1.7"
sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-4.0.1"
sources."pkg-up-2.0.0"
sources."plist-3.0.2"
@@ -71690,7 +72218,7 @@ in
sources."strip-final-newline-2.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-7.2.0"
- sources."systeminformation-4.34.19"
+ sources."systeminformation-4.34.20"
sources."tar-6.1.0"
sources."term-size-2.2.1"
sources."through-2.3.8"
@@ -71705,7 +72233,7 @@ in
sources."type-fest-0.8.1"
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
- sources."underscore-1.12.1"
+ sources."underscore-1.13.0"
sources."unique-filename-1.1.1"
sources."unique-slug-2.0.2"
sources."unique-string-2.0.0"
@@ -71914,7 +72442,7 @@ in
sources."kind-of-4.0.0"
];
})
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."ignore-4.0.6"
sources."indent-string-4.0.0"
sources."inflight-1.0.6"
@@ -71946,7 +72474,7 @@ in
sources."locate-path-5.0.0"
sources."make-dir-3.1.0"
sources."map-cache-0.2.2"
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
sources."map-visit-1.0.0"
sources."meow-6.1.1"
sources."merge2-1.4.1"
@@ -72030,7 +72558,7 @@ in
})
sources."redent-3.0.0"
sources."regex-not-1.0.2"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."resolve-1.20.0"
sources."resolve-url-0.2.1"
@@ -72889,7 +73417,7 @@ in
sources."registry-url-3.1.0"
sources."remove-array-items-1.1.1"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."request-2.88.2"
sources."resolve-url-0.2.1"
@@ -73162,7 +73690,7 @@ in
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
sources."merge2-1.4.1"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."minimatch-3.0.4"
sources."once-1.4.0"
sources."p-limit-2.3.0"
@@ -73172,7 +73700,7 @@ in
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-type-4.0.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."queue-microtask-1.2.3"
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
@@ -73206,19 +73734,41 @@ in
dockerfile-language-server-nodejs = nodeEnv.buildNodePackage {
name = "dockerfile-language-server-nodejs";
packageName = "dockerfile-language-server-nodejs";
- version = "0.3.0";
+ version = "0.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.3.0.tgz";
- sha512 = "nW0l6S6YZlSGrGu6PBHoLmhwqwxgNTSis1hvjaxpnS3Ohalf/e87HC/pkjg3c+AixytqlXPR7nixzVPDJTkNZQ==";
+ url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.4.1.tgz";
+ sha512 = "7mB+HdMd4dfjChK1+37++ylA+sy7wFaf0/3HDy6cJDj5dTx4C4vVDmDKQpZgNJU1gIkxDnW6QCLCxpoe5FPyVA==";
};
dependencies = [
- sources."dockerfile-ast-0.1.0"
- sources."dockerfile-language-service-0.2.0"
- sources."dockerfile-utils-0.2.0"
+ (sources."dockerfile-ast-0.2.0" // {
+ dependencies = [
+ sources."vscode-languageserver-types-3.16.0"
+ ];
+ })
+ (sources."dockerfile-language-service-0.3.0" // {
+ dependencies = [
+ (sources."dockerfile-utils-0.4.2" // {
+ dependencies = [
+ sources."dockerfile-ast-0.2.1"
+ sources."vscode-languageserver-types-3.16.0"
+ ];
+ })
+ ];
+ })
+ (sources."dockerfile-utils-0.2.0" // {
+ dependencies = [
+ sources."dockerfile-ast-0.1.0"
+ sources."vscode-languageserver-types-3.16.0"
+ ];
+ })
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
- sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-types-3.16.0"
+ (sources."vscode-languageserver-protocol-3.16.0" // {
+ dependencies = [
+ sources."vscode-languageserver-types-3.16.0"
+ ];
+ })
+ sources."vscode-languageserver-types-3.17.0-next.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -73510,7 +74060,7 @@ in
sources."concat-map-0.0.1"
sources."config-chain-1.1.12"
sources."console-control-strings-1.1.0"
- sources."core-js-3.10.0"
+ sources."core-js-3.10.1"
sources."core-util-is-1.0.2"
sources."cross-spawn-7.0.3"
sources."currently-unhandled-0.4.1"
@@ -73643,7 +74193,7 @@ in
sources."has-flag-4.0.0"
sources."has-unicode-2.0.1"
sources."homedir-polyfill-1.0.3"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."http-cache-semantics-4.1.0"
sources."http-signature-1.2.0"
sources."http2-wrapper-1.0.3"
@@ -73662,7 +74212,7 @@ in
})
sources."is-arrayish-0.2.1"
sources."is-core-module-2.2.0"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-finite-1.1.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-interactive-1.0.0"
@@ -73855,7 +74405,7 @@ in
sources."request-2.88.2"
sources."require-directory-2.1.1"
sources."resolve-1.20.0"
- sources."resolve-alpn-1.0.0"
+ sources."resolve-alpn-1.1.1"
sources."resolve-dir-1.0.1"
sources."resolve-package-1.0.1"
sources."responselike-2.0.0"
@@ -73950,7 +74500,7 @@ in
sources."xmlbuilder-9.0.7"
sources."xmldom-0.5.0"
sources."xtend-2.1.2"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yallist-3.1.1"
(sources."yargs-16.2.0" // {
dependencies = [
@@ -74010,8 +74560,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.12"
- (sources."@babel/core-7.13.14" // {
+ sources."@babel/compat-data-7.13.15"
+ (sources."@babel/core-7.13.15" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -74037,7 +74587,7 @@ in
sources."@babel/helper-validator-option-7.12.17"
sources."@babel/helpers-7.13.10"
sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.13"
+ sources."@babel/parser-7.13.15"
sources."@babel/plugin-proposal-object-rest-spread-7.13.8"
sources."@babel/plugin-syntax-jsx-7.12.13"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
@@ -74045,7 +74595,7 @@ in
sources."@babel/plugin-transform-parameters-7.13.0"
sources."@babel/plugin-transform-react-jsx-7.13.12"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.13"
+ sources."@babel/traverse-7.13.15"
sources."@babel/types-7.13.14"
sources."@sindresorhus/is-4.0.0"
sources."@szmarczak/http-timer-4.0.5"
@@ -74072,7 +74622,7 @@ in
sources."auto-bind-4.0.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.16.3"
+ sources."browserslist-4.16.4"
sources."cacheable-lookup-5.0.4"
(sources."cacheable-request-7.0.1" // {
dependencies = [
@@ -74088,7 +74638,7 @@ in
sources."quick-lru-4.0.1"
];
})
- sources."caniuse-lite-1.0.30001207"
+ sources."caniuse-lite-1.0.30001208"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -74125,7 +74675,7 @@ in
})
sources."defer-to-connect-2.0.1"
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.3.708"
+ sources."electron-to-chromium-1.3.713"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -74148,7 +74698,7 @@ in
sources."hard-rejection-2.1.0"
sources."has-1.0.3"
sources."has-flag-3.0.0"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."http-cache-semantics-4.1.0"
sources."http2-wrapper-1.0.3"
sources."import-jsx-4.0.0"
@@ -74179,7 +74729,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
sources."is-core-module-2.2.0"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-obj-2.0.0"
sources."is-plain-obj-1.1.0"
@@ -74207,7 +74757,7 @@ in
];
})
sources."map-age-cleaner-0.1.3"
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
sources."mem-6.1.1"
(sources."meow-7.1.1" // {
dependencies = [
@@ -74259,7 +74809,7 @@ in
sources."punycode-2.1.1"
sources."quick-lru-5.1.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.10.1"
+ sources."react-devtools-core-4.12.0"
sources."react-is-16.13.1"
sources."react-reconciler-0.24.0"
(sources."read-pkg-5.2.0" // {
@@ -74278,7 +74828,7 @@ in
})
sources."redent-3.0.0"
sources."resolve-1.20.0"
- sources."resolve-alpn-1.0.0"
+ sources."resolve-alpn-1.1.1"
sources."resolve-from-3.0.0"
sources."responselike-2.0.0"
sources."restore-cursor-3.1.0"
@@ -74386,7 +74936,7 @@ in
sources."@fluentui/date-time-utilities-7.9.1"
sources."@fluentui/dom-utilities-1.1.2"
sources."@fluentui/keyboard-key-0.2.16"
- sources."@fluentui/react-7.165.2"
+ sources."@fluentui/react-7.166.2"
sources."@fluentui/react-focus-7.17.6"
sources."@fluentui/react-window-provider-1.0.2"
sources."@fluentui/theme-1.7.4"
@@ -74400,7 +74950,7 @@ in
sources."normalize-path-2.1.1"
];
})
- sources."@microsoft/load-themed-styles-1.10.155"
+ sources."@microsoft/load-themed-styles-1.10.160"
sources."@nodelib/fs.scandir-2.1.4"
sources."@nodelib/fs.stat-2.0.4"
sources."@nodelib/fs.walk-1.2.6"
@@ -74677,7 +75227,7 @@ in
];
})
sources."chownr-1.1.4"
- sources."chrome-trace-event-1.0.2"
+ sources."chrome-trace-event-1.0.3"
sources."cipher-base-1.0.4"
(sources."class-utils-0.3.6" // {
dependencies = [
@@ -75103,7 +75653,7 @@ in
})
sources."hmac-drbg-1.0.1"
sources."homedir-polyfill-1.0.3"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."http-cache-semantics-4.1.0"
sources."http-errors-1.7.2"
sources."http-signature-1.2.0"
@@ -75254,7 +75804,7 @@ in
sources."merge-stream-2.0.0"
sources."merge2-1.4.1"
sources."methods-1.1.2"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
(sources."miller-rabin-4.0.1" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -75427,7 +75977,7 @@ in
sources."object.map-1.0.1"
sources."object.pick-1.3.0"
sources."object.reduce-1.0.1"
- sources."office-ui-fabric-react-7.165.2"
+ sources."office-ui-fabric-react-7.166.2"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -75533,7 +76083,7 @@ in
sources."path-root-regex-0.1.2"
sources."path-to-regexp-0.1.7"
sources."path-type-4.0.0"
- sources."pbkdf2-3.1.1"
+ sources."pbkdf2-3.1.2"
sources."performance-now-2.1.0"
(sources."pg-8.3.3" // {
dependencies = [
@@ -75546,7 +76096,7 @@ in
sources."pg-protocol-1.4.0"
sources."pg-types-2.2.0"
sources."pgpass-1.0.4"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-2.3.0"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -75625,7 +76175,7 @@ in
sources."remove-bom-buffer-3.0.0"
sources."remove-bom-stream-1.2.0"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."replace-ext-1.0.1"
sources."replace-homedir-1.0.0"
@@ -75822,7 +76372,7 @@ in
sources."sver-compat-1.5.0"
sources."swagger-schema-official-2.0.0-bab6bed"
sources."swagger-ui-dist-3.34.0"
- sources."tail-2.2.1"
+ sources."tail-2.2.2"
sources."tapable-1.1.3"
(sources."tar-4.4.13" // {
dependencies = [
@@ -75952,7 +76502,7 @@ in
sources."vm-browserify-1.1.2"
(sources."watchpack-1.7.5" // {
dependencies = [
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
sources."chokidar-3.5.1"
sources."fsevents-2.3.2"
@@ -75988,12 +76538,12 @@ in
sources."schema-utils-1.0.0"
sources."semver-5.7.1"
sources."serialize-javascript-4.0.0"
- sources."ssri-6.0.1"
+ sources."ssri-6.0.2"
sources."string_decoder-1.1.1"
sources."terser-4.8.0"
sources."terser-webpack-plugin-1.4.5"
sources."to-regex-range-2.1.1"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yallist-3.1.1"
];
})
@@ -76061,10 +76611,10 @@ in
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";
- version = "7.23.0";
+ version = "7.24.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-7.23.0.tgz";
- sha512 = "kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-7.24.0.tgz";
+ sha512 = "k9gaHeHiFmGCDQ2rEfvULlSLruz6tgfA8DEn+rY9/oYPFFTlz55mM/Q/Rij1b2Y42jwZiK3lXvNTw6w6TXzcKQ==";
};
dependencies = [
sources."@babel/code-frame-7.12.11"
@@ -76147,7 +76697,7 @@ in
sources."get-intrinsic-1.1.1"
sources."glob-7.1.6"
sources."glob-parent-5.1.2"
- (sources."globals-13.7.0" // {
+ (sources."globals-13.8.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -76209,7 +76759,7 @@ in
sources."supports-color-5.5.0"
(sources."table-6.0.9" // {
dependencies = [
- sources."ajv-8.0.5"
+ sources."ajv-8.1.0"
sources."json-schema-traverse-1.0.0"
];
})
@@ -76287,7 +76837,7 @@ in
sources."emoji-regex-8.0.0"
sources."enquirer-2.3.6"
sources."escape-string-regexp-1.0.5"
- sources."eslint-7.23.0"
+ sources."eslint-7.24.0"
sources."eslint-scope-5.1.1"
(sources."eslint-utils-2.1.0" // {
dependencies = [
@@ -76325,7 +76875,7 @@ in
sources."get-intrinsic-1.1.1"
sources."glob-7.1.6"
sources."glob-parent-5.1.2"
- (sources."globals-13.7.0" // {
+ (sources."globals-13.8.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -76388,7 +76938,7 @@ in
sources."supports-color-8.1.1"
(sources."table-6.0.9" // {
dependencies = [
- sources."ajv-8.0.5"
+ sources."ajv-8.1.0"
sources."json-schema-traverse-1.0.0"
];
})
@@ -76432,14 +76982,14 @@ in
expo-cli = nodeEnv.buildNodePackage {
name = "expo-cli";
packageName = "expo-cli";
- version = "4.3.4";
+ version = "4.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.3.4.tgz";
- sha512 = "feD7OAnzf7PKZgi4VpEpkuI8TYdplPaQVILoS+6ejMLvjjgDOTPh9Tn47xdox35Q3S1VPWS6qivNvOXjhUNDDQ==";
+ url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.3.5.tgz";
+ sha512 = "UqfLz0ZoKmROfPkvD54H3Misr37Oihz+BXZXQB9Q5XSlydTjabcB8Ir7L5kE/iGfNn23N270o1omTXFplJl0vg==";
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.12"
+ sources."@babel/compat-data-7.13.15"
(sources."@babel/core-7.9.0" // {
dependencies = [
sources."semver-5.7.1"
@@ -76455,7 +77005,7 @@ in
})
sources."@babel/helper-create-class-features-plugin-7.13.11"
sources."@babel/helper-create-regexp-features-plugin-7.12.17"
- (sources."@babel/helper-define-polyfill-provider-0.1.5" // {
+ (sources."@babel/helper-define-polyfill-provider-0.2.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -76483,8 +77033,8 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.13.13"
- sources."@babel/plugin-proposal-async-generator-functions-7.13.8"
+ sources."@babel/parser-7.13.15"
+ sources."@babel/plugin-proposal-async-generator-functions-7.13.15"
sources."@babel/plugin-proposal-class-properties-7.12.13"
sources."@babel/plugin-proposal-dynamic-import-7.13.8"
sources."@babel/plugin-proposal-export-default-from-7.12.13"
@@ -76543,9 +77093,9 @@ in
sources."@babel/plugin-transform-react-jsx-7.13.12"
sources."@babel/plugin-transform-react-jsx-self-7.12.13"
sources."@babel/plugin-transform-react-jsx-source-7.12.13"
- sources."@babel/plugin-transform-regenerator-7.12.13"
+ sources."@babel/plugin-transform-regenerator-7.13.15"
sources."@babel/plugin-transform-reserved-words-7.12.13"
- (sources."@babel/plugin-transform-runtime-7.13.10" // {
+ (sources."@babel/plugin-transform-runtime-7.13.15" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -76567,12 +77117,12 @@ in
sources."@babel/preset-typescript-7.12.17"
sources."@babel/runtime-7.13.10"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.13"
+ sources."@babel/traverse-7.13.15"
sources."@babel/types-7.13.14"
sources."@expo/apple-utils-0.0.0-alpha.17"
sources."@expo/bunyan-4.0.0"
- sources."@expo/config-3.3.34"
- sources."@expo/config-plugins-1.0.24"
+ sources."@expo/config-3.3.35"
+ sources."@expo/config-plugins-1.0.25"
sources."@expo/config-types-40.0.0-beta.2"
(sources."@expo/configure-splash-screen-0.3.4" // {
dependencies = [
@@ -76580,7 +77130,7 @@ in
sources."pngjs-5.0.0"
];
})
- (sources."@expo/dev-server-0.1.60" // {
+ (sources."@expo/dev-server-0.1.61" // {
dependencies = [
sources."body-parser-1.19.0"
sources."bytes-3.1.0"
@@ -76595,7 +77145,7 @@ in
sources."statuses-1.5.0"
];
})
- sources."@expo/dev-tools-0.13.89"
+ sources."@expo/dev-tools-0.13.90"
(sources."@expo/devcert-1.0.0" // {
dependencies = [
sources."debug-3.2.7"
@@ -76614,7 +77164,7 @@ in
sources."json5-1.0.1"
];
})
- sources."@expo/metro-config-0.1.60"
+ sources."@expo/metro-config-0.1.61"
sources."@expo/osascript-2.0.25"
(sources."@expo/package-manager-0.0.39" // {
dependencies = [
@@ -76638,13 +77188,13 @@ in
})
sources."@expo/simple-spinner-1.0.2"
sources."@expo/spawn-async-1.5.0"
- (sources."@expo/webpack-config-0.12.64" // {
+ (sources."@expo/webpack-config-0.12.65" // {
dependencies = [
sources."@babel/runtime-7.9.0"
sources."react-refresh-0.8.3"
];
})
- (sources."@expo/xcpretty-1.1.1" // {
+ (sources."@expo/xcpretty-2.0.0" // {
dependencies = [
sources."@babel/code-frame-7.10.4"
];
@@ -76759,7 +77309,6 @@ in
sources."@types/retry-0.12.0"
sources."@types/source-list-map-0.1.2"
sources."@types/tapable-1.0.7"
- sources."@types/text-table-0.2.1"
(sources."@types/uglify-js-3.13.0" // {
dependencies = [
sources."source-map-0.6.1"
@@ -76832,7 +77381,7 @@ in
sources."ansi-styles-3.2.1"
sources."any-base-1.1.0"
sources."any-promise-1.3.0"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."apollo-link-1.2.1"
sources."apollo-utilities-1.3.4"
sources."application-config-path-0.1.0"
@@ -76883,13 +77432,13 @@ in
];
})
sources."babel-plugin-dynamic-import-node-2.3.3"
- (sources."babel-plugin-polyfill-corejs2-0.1.10" // {
+ (sources."babel-plugin-polyfill-corejs2-0.2.0" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.1.7"
- sources."babel-plugin-polyfill-regenerator-0.1.6"
+ sources."babel-plugin-polyfill-corejs3-0.2.0"
+ sources."babel-plugin-polyfill-regenerator-0.2.0"
sources."babel-plugin-syntax-object-rest-spread-6.13.0"
sources."babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0"
sources."babel-plugin-transform-object-rest-spread-6.26.0"
@@ -76955,7 +77504,7 @@ in
];
})
sources."browserify-zlib-0.2.0"
- sources."browserslist-4.16.3"
+ sources."browserslist-4.16.4"
sources."buffer-5.7.1"
sources."buffer-equal-0.0.1"
sources."buffer-from-1.1.1"
@@ -76981,13 +77530,12 @@ in
sources."callsites-2.0.0"
(sources."camel-case-4.1.2" // {
dependencies = [
- sources."pascal-case-3.1.2"
sources."tslib-2.2.0"
];
})
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001207"
+ sources."caniuse-lite-1.0.30001208"
sources."caseless-0.12.0"
(sources."chalk-4.1.0" // {
dependencies = [
@@ -77001,7 +77549,7 @@ in
sources."charenc-0.0.2"
sources."chokidar-3.5.1"
sources."chownr-2.0.0"
- sources."chrome-trace-event-1.0.2"
+ sources."chrome-trace-event-1.0.3"
sources."ci-info-3.1.1"
sources."cipher-base-1.0.4"
(sources."class-utils-0.3.6" // {
@@ -77120,8 +77668,8 @@ in
sources."semver-6.3.0"
];
})
- sources."core-js-3.10.0"
- (sources."core-js-compat-3.10.0" // {
+ sources."core-js-3.10.1"
+ (sources."core-js-compat-3.10.1" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -77234,7 +77782,7 @@ in
sources."dns-packet-1.3.1"
sources."dns-txt-2.0.2"
sources."dom-converter-0.2.0"
- (sources."dom-serializer-1.2.0" // {
+ (sources."dom-serializer-1.3.1" // {
dependencies = [
sources."domhandler-4.1.0"
];
@@ -77244,7 +77792,7 @@ in
sources."domelementtype-2.2.0"
sources."domhandler-3.3.0"
sources."domino-2.1.6"
- (sources."domutils-2.5.1" // {
+ (sources."domutils-2.5.2" // {
dependencies = [
sources."domhandler-4.1.0"
];
@@ -77260,7 +77808,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.708"
+ sources."electron-to-chromium-1.3.713"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -77342,7 +77890,7 @@ in
sources."ms-2.0.0"
];
})
- (sources."expo-pwa-0.0.70" // {
+ (sources."expo-pwa-0.0.71" // {
dependencies = [
sources."commander-2.20.0"
];
@@ -77583,7 +78131,7 @@ in
sources."is-date-object-1.0.2"
sources."is-descriptor-1.0.2"
sources."is-directory-0.3.1"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-extendable-0.1.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-2.0.0"
@@ -77761,7 +78309,7 @@ in
sources."metro-source-map-0.59.0"
sources."metro-symbolicate-0.59.0"
sources."microevent.ts-0.1.1"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
(sources."miller-rabin-4.0.1" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -77884,7 +78432,7 @@ in
sources."npm-normalize-package-bin-1.0.1"
(sources."npm-package-arg-6.1.0" // {
dependencies = [
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."semver-5.7.1"
];
})
@@ -78019,11 +78567,9 @@ in
sources."parse-png-2.1.0"
sources."parse-srcset-1.0.2"
sources."parseurl-1.3.3"
- (sources."pascal-case-2.0.1" // {
+ (sources."pascal-case-3.1.2" // {
dependencies = [
- sources."camel-case-3.0.0"
- sources."lower-case-1.1.4"
- sources."no-case-2.3.2"
+ sources."tslib-2.2.0"
];
})
sources."pascalcase-0.1.1"
@@ -78041,10 +78587,10 @@ in
sources."path-parse-1.0.6"
sources."path-to-regexp-0.1.7"
sources."path-type-4.0.0"
- sources."pbkdf2-3.1.1"
+ sources."pbkdf2-3.1.2"
sources."performance-now-2.1.0"
sources."phin-2.9.3"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-4.0.1"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -78067,11 +78613,7 @@ in
sources."path-exists-3.0.0"
];
})
- (sources."plist-3.0.2" // {
- dependencies = [
- sources."xmlbuilder-9.0.7"
- ];
- })
+ sources."plist-3.0.2"
sources."pngjs-3.4.0"
sources."pnp-webpack-plugin-1.6.4"
(sources."portfinder-1.0.28" // {
@@ -78325,9 +78867,8 @@ in
sources."strip-ansi-3.0.1"
];
})
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
- sources."replace-string-1.1.0"
(sources."request-2.88.2" // {
dependencies = [
sources."form-data-2.3.3"
@@ -78344,7 +78885,7 @@ in
})
sources."requires-port-1.0.0"
sources."resolve-1.20.0"
- sources."resolve-alpn-1.0.0"
+ sources."resolve-alpn-1.1.1"
(sources."resolve-cwd-2.0.0" // {
dependencies = [
sources."resolve-from-3.0.0"
@@ -78545,7 +79086,7 @@ in
sources."subscriptions-transport-ws-0.9.8"
sources."sudo-prompt-9.1.1"
sources."supports-color-5.5.0"
- (sources."supports-hyperlinks-2.1.0" // {
+ (sources."supports-hyperlinks-2.2.0" // {
dependencies = [
sources."has-flag-4.0.0"
sources."supports-color-7.2.0"
@@ -78664,8 +79205,6 @@ in
sources."untildify-3.0.3"
sources."upath-1.2.0"
sources."update-check-1.5.3"
- sources."upper-case-1.1.3"
- sources."upper-case-first-1.1.2"
sources."uri-js-4.4.1"
sources."urix-0.1.0"
(sources."url-0.11.0" // {
@@ -78745,7 +79284,7 @@ in
sources."rimraf-2.7.1"
sources."schema-utils-1.0.0"
sources."source-map-0.6.1"
- sources."ssri-6.0.1"
+ sources."ssri-6.0.2"
sources."terser-webpack-plugin-1.4.5"
sources."to-regex-range-2.1.1"
sources."yallist-3.1.1"
@@ -78913,11 +79452,10 @@ in
sources."uuid-7.0.3"
];
})
- (sources."xdl-59.0.29" // {
+ (sources."xdl-59.0.30" // {
dependencies = [
sources."chownr-1.1.4"
sources."fs-minipass-1.2.7"
- sources."indent-string-3.2.0"
sources."minipass-2.9.0"
sources."minizlib-1.3.3"
sources."p-map-3.0.0"
@@ -78929,11 +79467,15 @@ in
sources."xhr-2.6.0"
sources."xml-js-1.6.11"
sources."xml-parse-from-string-1.0.1"
- sources."xml2js-0.4.23"
- sources."xmlbuilder-11.0.1"
+ (sources."xml2js-0.4.23" // {
+ dependencies = [
+ sources."xmlbuilder-11.0.1"
+ ];
+ })
+ sources."xmlbuilder-9.0.7"
sources."xmldom-0.5.0"
sources."xtend-4.0.2"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yallist-4.0.0"
(sources."yargs-13.3.2" // {
dependencies = [
@@ -79026,7 +79568,7 @@ in
sources."has-ansi-2.0.0"
sources."has-flag-3.0.0"
sources."hasha-2.2.0"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."http-signature-1.2.0"
sources."indent-string-2.1.0"
sources."inherits-2.0.4"
@@ -79456,7 +79998,7 @@ in
sources."is-buffer-1.1.6"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-extendable-0.1.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -79494,7 +80036,7 @@ in
sources."map-cache-0.2.2"
sources."map-visit-1.0.0"
sources."merge2-1.4.1"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."mimic-response-1.0.1"
@@ -79547,7 +80089,7 @@ in
sources."path-key-2.0.1"
sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-3.0.0"
sources."posix-character-classes-0.1.1"
sources."prelude-ls-1.1.2"
@@ -79565,7 +80107,7 @@ in
})
sources."redeyed-2.1.1"
sources."regex-not-1.0.2"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."request-2.88.2"
sources."request-promise-4.2.6"
@@ -79712,10 +80254,10 @@ in
firebase-tools = nodeEnv.buildNodePackage {
name = "firebase-tools";
packageName = "firebase-tools";
- version = "9.8.0";
+ version = "9.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.8.0.tgz";
- sha512 = "UhOnT8csgc1jlS1GYz0IxTHwB9BYoxj+TSy4aIKj8a44OzsXVSiT6lOhLIYHZFLVdjqkLi08i1+07JoOVTmtTA==";
+ url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.9.0.tgz";
+ sha512 = "LM4HaLHg/UYJ1CB3VEzneRWk+BMJXH/9Id+v9nYeNzYFPRTxAxfWez2Etd2c+kFreLhCoMtSC4yx44zorqdkSA==";
};
dependencies = [
sources."@apidevtools/json-schema-ref-parser-9.0.7"
@@ -79726,7 +80268,7 @@ in
sources."@google-cloud/promisify-2.0.3"
(sources."@google-cloud/pubsub-2.10.0" // {
dependencies = [
- sources."google-auth-library-7.0.3"
+ sources."google-auth-library-7.0.4"
];
})
(sources."@grpc/grpc-js-1.2.12" // {
@@ -79780,7 +80322,7 @@ in
sources."ansi-regex-2.1.1"
sources."ansi-styles-3.2.1"
sources."ansicolors-0.3.2"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."aproba-1.2.0"
sources."archiver-5.3.0"
(sources."archiver-utils-2.1.0" // {
@@ -79821,7 +80363,6 @@ in
sources."bignumber.js-9.0.1"
sources."binary-0.3.0"
sources."binary-extensions-2.2.0"
- sources."bindings-1.5.0"
sources."bl-4.1.0"
sources."blakejs-1.1.0"
sources."bluebird-3.4.7"
@@ -80007,7 +80548,6 @@ in
sources."extend-3.0.2"
sources."external-editor-3.1.0"
sources."extsprintf-1.3.0"
- sources."fast-crc32c-2.0.0"
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
@@ -80020,8 +80560,8 @@ in
})
sources."fecha-4.2.1"
sources."figures-2.0.0"
- sources."file-uri-to-path-1.0.0"
- sources."filesize-6.1.0"
+ sources."file-uri-to-path-2.0.0"
+ sources."filesize-6.2.1"
sources."fill-range-7.0.1"
(sources."finalhandler-1.1.2" // {
dependencies = [
@@ -80078,7 +80618,6 @@ in
sources."get-stream-4.1.0"
(sources."get-uri-3.0.2" // {
dependencies = [
- sources."file-uri-to-path-2.0.0"
sources."fs-extra-8.1.0"
sources."jsonfile-4.0.0"
];
@@ -80092,7 +80631,7 @@ in
sources."google-auth-library-6.1.6"
(sources."google-gax-2.11.2" // {
dependencies = [
- sources."google-auth-library-7.0.3"
+ sources."google-auth-library-7.0.4"
];
})
sources."google-p12-pem-3.0.3"
@@ -80162,7 +80701,6 @@ in
sources."json-stringify-safe-5.0.1"
sources."jsonfile-2.4.0"
sources."jsonparse-1.3.1"
- sources."jsonschema-1.4.0"
(sources."jsonwebtoken-8.5.1" // {
dependencies = [
sources."jwa-1.4.1"
@@ -80261,7 +80799,6 @@ in
sources."netmask-2.0.2"
sources."next-tick-1.0.0"
sources."nice-try-1.0.5"
- sources."node-addon-api-1.7.2"
sources."node-emoji-1.10.0"
sources."node-fetch-2.6.1"
sources."node-forge-0.10.0"
@@ -80304,8 +80841,7 @@ in
sources."path-key-2.0.1"
sources."path-to-regexp-0.1.7"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.2"
- sources."plist-3.0.2"
+ sources."picomatch-2.2.3"
(sources."portfinder-1.0.28" // {
dependencies = [
sources."async-2.6.3"
@@ -80401,7 +80937,6 @@ in
sources."socks-proxy-agent-5.0.0"
sources."source-map-0.6.1"
sources."sprintf-js-1.0.3"
- sources."sse4_crc32-6.0.1"
sources."sshpk-1.16.1"
sources."stack-trace-0.0.10"
sources."statuses-1.5.0"
@@ -80544,8 +81079,6 @@ in
sources."write-file-atomic-3.0.3"
sources."ws-7.4.4"
sources."xdg-basedir-4.0.0"
- sources."xmlbuilder-9.0.7"
- sources."xmldom-0.5.0"
sources."xregexp-2.0.0"
sources."xtend-4.0.2"
sources."yallist-4.0.0"
@@ -80596,7 +81129,7 @@ in
sources."strip-ansi-6.0.0"
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.7"
];
@@ -80690,7 +81223,7 @@ in
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
sources."lru-cache-6.0.0"
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
(sources."meow-8.1.2" // {
dependencies = [
sources."type-fest-0.18.1"
@@ -80730,7 +81263,7 @@ in
sources."quick-lru-4.0.1"
(sources."read-pkg-5.2.0" // {
dependencies = [
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."normalize-package-data-2.5.0"
sources."semver-5.7.1"
sources."type-fest-0.6.0"
@@ -80878,7 +81411,7 @@ in
sources."inherits-2.0.4"
sources."inquirer-7.3.3"
sources."inversify-5.0.5"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-function-1.0.2"
sources."is-hex-prefixed-1.0.0"
@@ -80985,7 +81518,7 @@ in
sources."xhr-request-1.1.0"
sources."xhr-request-promise-0.1.3"
sources."xtend-4.0.2"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yargs-15.4.1"
sources."yargs-parser-18.1.3"
];
@@ -81002,10 +81535,10 @@ in
flood = nodeEnv.buildNodePackage {
name = "flood";
packageName = "flood";
- version = "4.5.2";
+ version = "4.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/flood/-/flood-4.5.2.tgz";
- sha512 = "rgT/2x0GT5DR5bvK+R0znv1M3IYWAINb3zBz697q7+wJy2ryNUmaC9yYXV4+QqpsrlSxzI6nCZvWlAPqmJo48A==";
+ url = "https://registry.npmjs.org/flood/-/flood-4.5.3.tgz";
+ sha512 = "V/hB+D7kjqtSZTnFR05ZMP59x6vpVh75LDT2nAfwfVL9zVpyjynyK6abFzkMYydtGcKGPwvSqG0gYL8Tqh19sQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -81270,7 +81803,7 @@ in
sources."regex-not-1.0.2"
sources."regexp.prototype.flags-1.3.1"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."resolve-url-0.2.1"
sources."resumer-0.0.0"
@@ -81470,8 +82003,8 @@ in
];
})
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.12"
- (sources."@babel/core-7.13.14" // {
+ sources."@babel/compat-data-7.13.15"
+ (sources."@babel/core-7.13.15" // {
dependencies = [
sources."semver-6.3.0"
sources."source-map-0.5.7"
@@ -81507,7 +82040,7 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.13.13"
+ sources."@babel/parser-7.13.15"
sources."@babel/plugin-proposal-object-rest-spread-7.10.4"
sources."@babel/plugin-proposal-optional-chaining-7.13.12"
sources."@babel/plugin-syntax-jsx-7.12.13"
@@ -81516,12 +82049,16 @@ in
sources."@babel/plugin-transform-parameters-7.13.0"
sources."@babel/plugin-transform-react-jsx-7.13.12"
sources."@babel/runtime-7.13.10"
- sources."@babel/standalone-7.13.14"
+ sources."@babel/standalone-7.13.15"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.13"
+ sources."@babel/traverse-7.13.15"
sources."@babel/types-7.13.14"
sources."@graphql-tools/schema-7.1.3"
- sources."@graphql-tools/utils-7.7.1"
+ (sources."@graphql-tools/utils-7.7.2" // {
+ dependencies = [
+ sources."tslib-2.2.0"
+ ];
+ })
sources."@hapi/address-2.1.4"
sources."@hapi/bourne-1.3.2"
sources."@hapi/hoek-8.5.1"
@@ -81556,14 +82093,14 @@ in
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/node-14.14.37"
- sources."@types/node-fetch-2.5.9"
+ sources."@types/node-fetch-2.5.10"
sources."@types/readable-stream-2.3.9"
sources."@types/unist-2.0.3"
sources."@types/yargs-15.0.13"
sources."@types/yargs-parser-20.2.0"
sources."@types/yoga-layout-1.9.2"
sources."accepts-1.3.7"
- sources."acorn-8.1.0"
+ sources."acorn-8.1.1"
sources."acorn-jsx-5.3.1"
sources."address-1.1.2"
(sources."ansi-align-3.0.0" // {
@@ -81578,7 +82115,7 @@ in
})
sources."ansi-regex-5.0.0"
sources."ansi-styles-3.2.1"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."arch-2.2.0"
sources."array-flatten-1.1.1"
sources."async-retry-ng-2.0.1"
@@ -81611,7 +82148,7 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.16.3"
+ sources."browserslist-4.16.4"
sources."bytes-3.1.0"
(sources."cacheable-request-6.1.0" // {
dependencies = [
@@ -81623,7 +82160,7 @@ in
sources."call-bind-1.0.2"
sources."camel-case-4.1.2"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001207"
+ sources."caniuse-lite-1.0.30001208"
sources."ccount-1.1.0"
(sources."chalk-4.1.0" // {
dependencies = [
@@ -81673,7 +82210,7 @@ in
];
})
sources."content-type-1.0.4"
- sources."contentful-management-7.14.0"
+ sources."contentful-management-7.14.1"
sources."contentful-sdk-core-6.7.0"
sources."convert-hrtime-3.0.0"
(sources."convert-source-map-1.7.0" // {
@@ -81723,7 +82260,7 @@ in
sources."dotenv-8.2.0"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.708"
+ sources."electron-to-chromium-1.3.713"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -81868,7 +82405,7 @@ in
sources."is-ci-2.0.0"
sources."is-core-module-2.2.0"
sources."is-decimal-1.0.4"
- sources."is-docker-2.2.0"
+ 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"
@@ -82009,7 +82546,7 @@ in
sources."path-parse-1.0.6"
sources."path-to-regexp-0.1.7"
sources."peek-readable-3.1.3"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pkg-dir-4.2.0"
sources."prepend-http-2.0.0"
sources."prettier-2.2.1"
@@ -82209,7 +82746,7 @@ in
sources."xdg-basedir-4.0.0"
sources."xstate-4.17.1"
sources."xtend-4.0.2"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yallist-4.0.0"
sources."yargs-15.4.1"
sources."yargs-parser-18.1.3"
@@ -82326,7 +82863,7 @@ in
sources."is-my-ip-valid-1.0.0"
sources."is-my-json-valid-2.20.5"
sources."is-property-1.0.2"
- sources."is-valid-domain-0.0.17"
+ sources."is-valid-domain-0.0.19"
sources."json-buffer-2.0.11"
sources."jsonpointer-4.1.0"
sources."kvgraph-0.1.0"
@@ -82403,6 +82940,7 @@ in
];
})
sources."pull-ws-3.3.2"
+ sources."punycode-1.4.1"
sources."railroad-diagrams-1.0.0"
sources."randexp-0.4.6"
sources."rc-1.2.8"
@@ -82658,7 +83196,7 @@ in
sources."semver-6.3.0"
];
})
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
(sources."meow-9.0.0" // {
dependencies = [
sources."type-fest-0.18.1"
@@ -82709,7 +83247,7 @@ in
})
(sources."read-pkg-5.2.0" // {
dependencies = [
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."normalize-package-data-2.5.0"
sources."semver-5.7.1"
sources."type-fest-0.6.0"
@@ -82815,19 +83353,27 @@ in
sources."@graphql-cli/init-4.1.0"
(sources."@graphql-tools/batch-execute-7.1.0" // {
dependencies = [
- sources."@graphql-tools/utils-7.7.1"
+ (sources."@graphql-tools/utils-7.7.2" // {
+ dependencies = [
+ sources."tslib-2.2.0"
+ ];
+ })
sources."tslib-2.1.0"
];
})
- (sources."@graphql-tools/delegate-7.1.1" // {
+ (sources."@graphql-tools/delegate-7.1.2" // {
dependencies = [
- sources."@graphql-tools/utils-7.7.1"
- sources."tslib-2.1.0"
+ sources."@graphql-tools/utils-7.7.2"
+ sources."tslib-2.2.0"
];
})
(sources."@graphql-tools/graphql-file-loader-6.2.7" // {
dependencies = [
- sources."@graphql-tools/utils-7.7.1"
+ (sources."@graphql-tools/utils-7.7.2" // {
+ dependencies = [
+ sources."tslib-2.2.0"
+ ];
+ })
sources."tslib-2.1.0"
];
})
@@ -82838,9 +83384,9 @@ in
})
(sources."@graphql-tools/json-file-loader-6.2.6" // {
dependencies = [
- (sources."@graphql-tools/utils-7.7.1" // {
+ (sources."@graphql-tools/utils-7.7.2" // {
dependencies = [
- sources."tslib-2.1.0"
+ sources."tslib-2.2.0"
];
})
];
@@ -82848,19 +83394,31 @@ in
sources."@graphql-tools/load-6.2.4"
(sources."@graphql-tools/merge-6.2.11" // {
dependencies = [
- sources."@graphql-tools/utils-7.7.1"
+ (sources."@graphql-tools/utils-7.7.2" // {
+ dependencies = [
+ sources."tslib-2.2.0"
+ ];
+ })
sources."tslib-2.1.0"
];
})
(sources."@graphql-tools/schema-7.1.3" // {
dependencies = [
- sources."@graphql-tools/utils-7.7.1"
+ (sources."@graphql-tools/utils-7.7.2" // {
+ dependencies = [
+ sources."tslib-2.2.0"
+ ];
+ })
sources."tslib-2.1.0"
];
})
(sources."@graphql-tools/url-loader-6.8.2" // {
dependencies = [
- sources."@graphql-tools/utils-7.7.1"
+ (sources."@graphql-tools/utils-7.7.2" // {
+ dependencies = [
+ sources."tslib-2.2.0"
+ ];
+ })
sources."cross-fetch-3.1.1"
sources."form-data-4.0.0"
sources."tslib-2.1.0"
@@ -82877,9 +83435,9 @@ in
})
(sources."@graphql-tools/wrap-7.0.5" // {
dependencies = [
- (sources."@graphql-tools/utils-7.7.1" // {
+ (sources."@graphql-tools/utils-7.7.2" // {
dependencies = [
- sources."tslib-2.1.0"
+ sources."tslib-2.2.0"
];
})
];
@@ -83016,7 +83574,7 @@ in
sources."foreach-2.0.5"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
- sources."form-urlencoded-4.4.2"
+ sources."form-urlencoded-4.5.0"
sources."fs-capacitor-6.2.0"
sources."fs-extra-9.0.1"
sources."fs-minipass-2.1.0"
@@ -83085,7 +83643,7 @@ in
sources."is-boolean-object-1.1.0"
sources."is-callable-1.2.3"
sources."is-date-object-1.0.2"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
@@ -83156,7 +83714,7 @@ in
];
})
sources."merge2-1.4.1"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."mimic-fn-1.2.0"
@@ -83239,7 +83797,7 @@ in
sources."path-key-2.0.1"
sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pluralize-8.0.0"
sources."prepend-http-2.0.0"
sources."psl-1.8.0"
@@ -83342,7 +83900,7 @@ in
})
sources."wrappy-1.0.2"
sources."ws-7.4.4"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yaml-1.10.2"
sources."yargs-16.0.3"
@@ -83403,7 +83961,7 @@ in
sources."liftup-3.0.1"
sources."make-iterator-1.0.1"
sources."map-cache-0.2.2"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."nopt-4.0.3"
sources."object.defaults-1.1.0"
sources."object.map-1.0.1"
@@ -83416,7 +83974,7 @@ in
sources."path-parse-1.0.6"
sources."path-root-0.1.1"
sources."path-root-regex-0.1.2"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."rechoir-0.7.0"
sources."resolve-1.20.0"
sources."resolve-dir-1.0.1"
@@ -83642,12 +84200,12 @@ in
sources."string_decoder-0.10.31"
sources."strip-ansi-3.0.1"
sources."supports-color-2.0.0"
- (sources."supports-hyperlinks-2.1.0" // {
+ (sources."supports-hyperlinks-2.2.0" // {
dependencies = [
sources."supports-color-7.2.0"
];
})
- sources."systeminformation-4.34.19"
+ sources."systeminformation-4.34.20"
sources."term-canvas-0.0.5"
sources."type-fest-0.21.3"
sources."wordwrap-0.0.3"
@@ -83874,7 +84432,7 @@ in
];
})
sources."homedir-polyfill-1.0.3"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
@@ -83993,7 +84551,7 @@ in
sources."remove-bom-buffer-3.0.0"
sources."remove-bom-stream-1.2.0"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."replace-ext-1.0.1"
sources."replace-homedir-1.0.0"
@@ -84274,7 +84832,7 @@ in
];
})
sources."homedir-polyfill-1.0.3"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."interpret-1.4.0"
@@ -84399,7 +84957,7 @@ in
sources."rechoir-0.6.2"
sources."regex-not-1.0.2"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."replace-homedir-1.0.0"
sources."require-directory-2.1.1"
@@ -84543,7 +85101,7 @@ in
sources."param-case-2.1.1"
sources."relateurl-0.2.7"
sources."source-map-0.6.1"
- sources."uglify-js-3.13.3"
+ sources."uglify-js-3.13.4"
sources."upper-case-1.1.3"
];
buildInputs = globalBuildInputs;
@@ -85291,7 +85849,7 @@ in
sources."historic-readline-1.0.8"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-stream-1.1.0"
sources."is-wsl-2.2.0"
sources."isexe-2.0.0"
@@ -85466,7 +86024,7 @@ in
];
})
sources."ip-1.1.5"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-2.0.0"
sources."is-stream-1.1.0"
sources."is-typedarray-1.0.0"
@@ -85653,9 +86211,9 @@ in
};
dependencies = [
sources."@iarna/toml-2.2.5"
- sources."@ot-builder/bin-composite-types-1.0.3"
- sources."@ot-builder/bin-util-1.0.3"
- (sources."@ot-builder/cli-help-shower-1.0.3" // {
+ sources."@ot-builder/bin-composite-types-1.0.4"
+ sources."@ot-builder/bin-util-1.0.4"
+ (sources."@ot-builder/cli-help-shower-1.0.4" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.0"
@@ -85665,7 +86223,7 @@ in
sources."supports-color-7.2.0"
];
})
- (sources."@ot-builder/cli-proc-1.0.3" // {
+ (sources."@ot-builder/cli-proc-1.0.4" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.0"
@@ -85675,7 +86233,7 @@ in
sources."supports-color-7.2.0"
];
})
- (sources."@ot-builder/cli-shared-1.0.3" // {
+ (sources."@ot-builder/cli-shared-1.0.4" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.0"
@@ -85685,35 +86243,35 @@ in
sources."supports-color-7.2.0"
];
})
- sources."@ot-builder/common-impl-1.0.3"
- sources."@ot-builder/errors-1.0.3"
- sources."@ot-builder/io-bin-cff-1.0.3"
- sources."@ot-builder/io-bin-encoding-1.0.3"
- sources."@ot-builder/io-bin-ext-private-1.0.3"
- sources."@ot-builder/io-bin-font-1.0.3"
- sources."@ot-builder/io-bin-glyph-store-1.0.3"
- sources."@ot-builder/io-bin-layout-1.0.3"
- sources."@ot-builder/io-bin-metadata-1.0.3"
- sources."@ot-builder/io-bin-metric-1.0.3"
- sources."@ot-builder/io-bin-name-1.0.3"
- sources."@ot-builder/io-bin-sfnt-1.0.3"
- sources."@ot-builder/io-bin-ttf-1.0.3"
- sources."@ot-builder/ot-1.0.3"
- sources."@ot-builder/ot-encoding-1.0.3"
- sources."@ot-builder/ot-ext-private-1.0.3"
- sources."@ot-builder/ot-glyphs-1.0.3"
- sources."@ot-builder/ot-layout-1.0.3"
- sources."@ot-builder/ot-metadata-1.0.3"
- sources."@ot-builder/ot-name-1.0.3"
- sources."@ot-builder/ot-sfnt-1.0.3"
- sources."@ot-builder/ot-standard-glyph-namer-1.0.3"
- sources."@ot-builder/prelude-1.0.3"
- sources."@ot-builder/primitive-1.0.3"
- sources."@ot-builder/rectify-1.0.3"
- sources."@ot-builder/stat-glyphs-1.0.3"
- sources."@ot-builder/trace-1.0.3"
- sources."@ot-builder/var-store-1.0.3"
- sources."@ot-builder/variance-1.0.3"
+ sources."@ot-builder/common-impl-1.0.4"
+ sources."@ot-builder/errors-1.0.4"
+ sources."@ot-builder/io-bin-cff-1.0.4"
+ sources."@ot-builder/io-bin-encoding-1.0.4"
+ sources."@ot-builder/io-bin-ext-private-1.0.4"
+ sources."@ot-builder/io-bin-font-1.0.4"
+ sources."@ot-builder/io-bin-glyph-store-1.0.4"
+ sources."@ot-builder/io-bin-layout-1.0.4"
+ sources."@ot-builder/io-bin-metadata-1.0.4"
+ sources."@ot-builder/io-bin-metric-1.0.4"
+ sources."@ot-builder/io-bin-name-1.0.4"
+ sources."@ot-builder/io-bin-sfnt-1.0.4"
+ sources."@ot-builder/io-bin-ttf-1.0.4"
+ sources."@ot-builder/ot-1.0.4"
+ sources."@ot-builder/ot-encoding-1.0.4"
+ sources."@ot-builder/ot-ext-private-1.0.4"
+ sources."@ot-builder/ot-glyphs-1.0.4"
+ sources."@ot-builder/ot-layout-1.0.4"
+ sources."@ot-builder/ot-metadata-1.0.4"
+ sources."@ot-builder/ot-name-1.0.4"
+ sources."@ot-builder/ot-sfnt-1.0.4"
+ sources."@ot-builder/ot-standard-glyph-namer-1.0.4"
+ sources."@ot-builder/prelude-1.0.4"
+ sources."@ot-builder/primitive-1.0.4"
+ sources."@ot-builder/rectify-1.0.4"
+ sources."@ot-builder/stat-glyphs-1.0.4"
+ sources."@ot-builder/trace-1.0.4"
+ sources."@ot-builder/var-store-1.0.4"
+ sources."@ot-builder/variance-1.0.4"
sources."@unicode/unicode-13.0.0-1.0.6"
sources."amdefine-1.0.1"
sources."ansi-regex-5.0.0"
@@ -85799,8 +86357,8 @@ in
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."optionator-0.8.3"
- sources."ot-builder-1.0.3"
- (sources."otb-ttc-bundle-1.0.3" // {
+ sources."ot-builder-1.0.4"
+ (sources."otb-ttc-bundle-1.0.4" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.0"
@@ -85874,7 +86432,7 @@ in
sources."has-flag-4.0.0"
sources."supports-color-7.2.0"
sources."wrap-ansi-6.2.0"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yargs-15.4.1"
sources."yargs-parser-18.1.3"
];
@@ -85894,7 +86452,7 @@ in
sources."wrappy-1.0.2"
sources."xmldom-0.4.0"
sources."xpath-0.0.32"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.7"
@@ -86070,7 +86628,7 @@ in
sources."color-name-1.1.4"
];
})
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."aproba-1.2.0"
sources."are-we-there-yet-1.1.5"
(sources."argparse-1.0.10" // {
@@ -86087,7 +86645,7 @@ in
sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.880.0" // {
+ (sources."aws-sdk-2.885.0" // {
dependencies = [
sources."sax-1.2.1"
sources."uuid-3.3.2"
@@ -86199,7 +86757,7 @@ in
sources."depd-1.1.2"
sources."detect-libc-1.0.3"
sources."diff-match-patch-1.0.5"
- (sources."dom-serializer-1.2.0" // {
+ (sources."dom-serializer-1.3.1" // {
dependencies = [
sources."domhandler-4.1.0"
];
@@ -86207,7 +86765,7 @@ in
sources."domelementtype-2.2.0"
sources."domexception-1.0.1"
sources."domhandler-3.3.0"
- (sources."domutils-2.5.1" // {
+ (sources."domutils-2.5.2" // {
dependencies = [
sources."domhandler-4.1.0"
];
@@ -86351,7 +86909,7 @@ in
sources."is-arrayish-0.3.2"
sources."is-binary-path-2.1.0"
sources."is-buffer-1.1.6"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-1.0.0"
sources."is-glob-4.0.1"
@@ -86445,7 +87003,7 @@ in
sources."debug-4.3.2"
sources."html-minifier-4.0.0"
sources."ms-2.1.2"
- sources."uglify-js-3.13.3"
+ sources."uglify-js-3.13.4"
];
})
sources."minimatch-3.0.4"
@@ -86531,7 +87089,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-3.0.0"
sources."pipe-functions-1.3.0"
sources."pn-1.1.0"
@@ -86832,7 +87390,7 @@ in
sha512 = "znR99e1BHeyEkSvgDDpX0sTiTu+8aQyDl9DawrkOGZTTW8hv0deIFXx87114zJ7gRaDZKVQD/4tr1ifmJp9xhQ==";
};
dependencies = [
- sources."@babel/parser-7.13.13"
+ sources."@babel/parser-7.13.15"
sources."argparse-1.0.10"
sources."bluebird-3.7.2"
sources."catharsis-0.8.11"
@@ -87252,7 +87810,7 @@ in
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
sources."xdg-basedir-4.0.0"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.7"
@@ -87338,7 +87896,7 @@ in
];
})
sources."@oclif/screen-1.0.4"
- sources."@putdotio/api-client-8.15.1"
+ sources."@putdotio/api-client-8.15.2"
sources."ajv-6.12.6"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.0"
@@ -87438,7 +87996,7 @@ in
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
sources."inquirer-7.3.3"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
@@ -87464,7 +88022,7 @@ in
];
})
sources."merge2-1.4.1"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."mimic-fn-2.1.0"
@@ -87474,7 +88032,7 @@ in
sources."natural-orderby-2.0.3"
sources."next-tick-1.0.0"
sources."nice-try-1.0.5"
- sources."node-downloader-helper-1.0.17"
+ sources."node-downloader-helper-1.0.18"
sources."object-inspect-1.9.0"
sources."object-treeify-1.1.33"
sources."onetime-5.1.2"
@@ -87490,7 +88048,7 @@ in
sources."path-exists-3.0.0"
sources."path-key-2.0.1"
sources."path-type-4.0.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pkg-up-3.1.0"
sources."punycode-2.1.1"
sources."qs-6.10.1"
@@ -87512,7 +88070,7 @@ in
sources."string-width-4.2.2"
sources."strip-ansi-6.0.0"
sources."supports-color-5.5.0"
- (sources."supports-hyperlinks-2.1.0" // {
+ (sources."supports-hyperlinks-2.2.0" // {
dependencies = [
sources."has-flag-4.0.0"
sources."supports-color-7.2.0"
@@ -87560,7 +88118,7 @@ in
sources."accepts-1.3.7"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."balanced-match-1.0.2"
sources."base64-arraybuffer-0.1.4"
sources."base64id-2.0.0"
@@ -87644,7 +88202,7 @@ in
sources."once-1.4.0"
sources."parseurl-1.3.3"
sources."path-is-absolute-1.0.1"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."qjobs-1.2.0"
sources."qs-6.7.0"
sources."range-parser-1.2.1"
@@ -87684,7 +88242,7 @@ in
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.0"
sources."type-is-1.6.18"
- sources."ua-parser-js-0.7.27"
+ sources."ua-parser-js-0.7.28"
sources."universalify-0.1.2"
sources."unpipe-1.0.0"
sources."utils-merge-1.0.1"
@@ -87693,7 +88251,7 @@ in
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
sources."ws-7.4.4"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.7"
];
@@ -88061,6 +88619,243 @@ in
bypassCache = true;
reconstructLock = true;
};
+ vsc-leetcode-cli = nodeEnv.buildNodePackage {
+ name = "vsc-leetcode-cli";
+ packageName = "vsc-leetcode-cli";
+ version = "2.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vsc-leetcode-cli/-/vsc-leetcode-cli-2.8.0.tgz";
+ sha512 = "KcFzpk3OZ+wUCoeK1yjBK0hYpJItYd8WFC7pQfE1zxJGjQs4tUvadLI5imKfRjw5NicjNRFnVpVv6N7ig7ik4A==";
+ };
+ dependencies = [
+ sources."abab-1.0.4"
+ sources."acorn-2.7.0"
+ sources."acorn-globals-1.0.9"
+ sources."ajv-6.12.6"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-3.2.1"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."async-1.5.2"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.11.0"
+ sources."balanced-match-1.0.2"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."boolbase-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."camelcase-2.1.1"
+ sources."caseless-0.12.0"
+ sources."chalk-2.4.2"
+ sources."cheerio-0.20.0"
+ sources."cli-cursor-2.1.0"
+ sources."cli-spinners-1.3.1"
+ sources."cliui-3.2.0"
+ sources."clone-1.0.4"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."colors-1.4.0"
+ sources."combined-stream-1.0.8"
+ sources."concat-map-0.0.1"
+ sources."core-util-is-1.0.2"
+ sources."css-select-1.2.0"
+ sources."css-what-2.1.3"
+ sources."cssom-0.3.8"
+ sources."cssstyle-0.2.37"
+ sources."cycle-1.0.3"
+ sources."dashdash-1.14.1"
+ sources."decamelize-1.2.0"
+ sources."deep-equal-0.2.2"
+ sources."deep-is-0.1.3"
+ sources."defaults-1.0.3"
+ sources."delayed-stream-1.0.0"
+ sources."dom-serializer-0.1.1"
+ sources."domelementtype-1.3.1"
+ sources."domhandler-2.3.0"
+ sources."domutils-1.5.1"
+ sources."ecc-jsbn-0.1.2"
+ sources."emoji-regex-8.0.0"
+ sources."entities-1.1.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."escodegen-1.14.3"
+ sources."esprima-4.0.1"
+ sources."estraverse-4.3.0"
+ sources."esutils-2.0.3"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."eyes-0.1.8"
+ sources."fast-deep-equal-3.1.3"
+ sources."fast-json-stable-stringify-2.1.0"
+ sources."fast-levenshtein-2.0.6"
+ sources."find-up-4.1.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.3"
+ sources."fs.realpath-1.0.0"
+ sources."get-caller-file-2.0.5"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.6"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.5"
+ sources."has-flag-3.0.0"
+ sources."he-1.2.0"
+ (sources."htmlparser2-3.8.3" // {
+ dependencies = [
+ sources."entities-1.0.0"
+ ];
+ })
+ sources."http-signature-1.2.0"
+ sources."i-0.3.6"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
+ sources."ini-1.3.8"
+ sources."invert-kv-1.0.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-0.0.1"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."jsdom-7.2.2"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.4.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
+ sources."lcid-1.0.0"
+ sources."levn-0.3.0"
+ sources."locate-path-5.0.0"
+ sources."lodash-4.17.21"
+ sources."log-symbols-2.2.0"
+ sources."mime-db-1.47.0"
+ sources."mime-types-2.1.30"
+ sources."mimic-fn-1.2.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.5"
+ sources."mkdirp-1.0.4"
+ sources."moment-2.29.1"
+ sources."mute-stream-0.0.8"
+ (sources."nconf-0.10.0" // {
+ dependencies = [
+ sources."yargs-3.32.0"
+ ];
+ })
+ sources."ncp-1.0.1"
+ sources."nth-check-1.0.2"
+ sources."number-is-nan-1.0.1"
+ sources."nwmatcher-1.4.4"
+ sources."oauth-sign-0.9.0"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."optionator-0.8.3"
+ (sources."ora-3.0.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."os-locale-1.4.0"
+ sources."p-limit-2.3.0"
+ sources."p-locate-4.1.0"
+ sources."p-try-2.2.0"
+ sources."parse5-1.5.1"
+ sources."path-exists-4.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."performance-now-2.1.0"
+ sources."pkginfo-0.4.1"
+ sources."prelude-ls-1.1.2"
+ sources."prompt-1.0.0"
+ sources."psl-1.8.0"
+ sources."punycode-2.1.1"
+ sources."qs-6.5.2"
+ sources."read-1.0.7"
+ sources."readable-stream-1.1.14"
+ (sources."request-2.88.0" // {
+ dependencies = [
+ sources."punycode-1.4.1"
+ sources."tough-cookie-2.4.3"
+ ];
+ })
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-2.0.0"
+ sources."restore-cursor-2.0.0"
+ sources."revalidator-0.1.8"
+ sources."rimraf-2.7.1"
+ sources."safe-buffer-5.2.1"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."secure-keys-1.0.0"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.3"
+ sources."source-map-0.6.1"
+ sources."sshpk-1.16.1"
+ sources."stack-trace-0.0.10"
+ sources."string-width-1.0.2"
+ sources."string_decoder-0.10.31"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-5.5.0"
+ sources."symbol-tree-3.2.4"
+ sources."tough-cookie-2.5.0"
+ sources."tr46-0.0.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-check-0.3.2"
+ sources."underscore-1.9.1"
+ sources."uri-js-4.4.1"
+ (sources."utile-0.3.0" // {
+ dependencies = [
+ sources."async-0.9.2"
+ sources."mkdirp-0.5.5"
+ ];
+ })
+ sources."uuid-3.4.0"
+ sources."verror-1.10.0"
+ sources."wcwidth-1.0.1"
+ sources."webidl-conversions-2.0.1"
+ sources."whatwg-url-compat-0.6.5"
+ sources."which-module-2.0.0"
+ sources."window-size-0.1.4"
+ (sources."winston-2.1.1" // {
+ dependencies = [
+ sources."async-1.0.0"
+ sources."colors-1.0.3"
+ sources."pkginfo-0.3.1"
+ ];
+ })
+ sources."word-wrap-1.2.3"
+ sources."wordwrap-1.0.0"
+ sources."wrap-ansi-2.1.0"
+ sources."wrappy-1.0.2"
+ sources."xml-name-validator-2.0.1"
+ sources."y18n-3.2.2"
+ (sources."yargs-15.4.1" // {
+ dependencies = [
+ sources."ansi-regex-5.0.0"
+ sources."ansi-styles-4.3.0"
+ sources."cliui-6.0.0"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."string-width-4.2.2"
+ sources."strip-ansi-6.0.0"
+ sources."wrap-ansi-6.2.0"
+ sources."y18n-4.0.3"
+ ];
+ })
+ (sources."yargs-parser-18.1.3" // {
+ dependencies = [
+ sources."camelcase-5.3.1"
+ ];
+ })
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A cli tool to enjoy leetcode!";
+ homepage = "https://github.com/leetcode-tools/leetcode-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
lerna = nodeEnv.buildNodePackage {
name = "lerna";
packageName = "lerna";
@@ -88187,7 +88982,7 @@ in
sources."@octokit/plugin-paginate-rest-2.13.3"
sources."@octokit/plugin-request-log-1.0.3"
sources."@octokit/plugin-rest-endpoint-methods-5.0.0"
- (sources."@octokit/request-5.4.14" // {
+ (sources."@octokit/request-5.4.15" // {
dependencies = [
sources."is-plain-object-5.0.0"
];
@@ -88370,7 +89165,7 @@ in
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
sources."find-up-1.1.2"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."indent-string-2.1.0"
sources."load-json-file-1.1.0"
sources."map-obj-1.0.1"
@@ -88525,10 +89320,10 @@ in
];
})
sources."make-fetch-happen-8.0.14"
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
(sources."meow-8.1.2" // {
dependencies = [
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."normalize-package-data-3.0.2"
(sources."read-pkg-5.2.0" // {
dependencies = [
@@ -88547,7 +89342,7 @@ in
})
sources."merge-stream-2.0.0"
sources."merge2-1.4.1"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."mimic-fn-2.1.0"
@@ -88579,7 +89374,7 @@ in
sources."nopt-5.0.0"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."semver-5.7.1"
];
})
@@ -88649,7 +89444,7 @@ in
sources."path-parse-1.0.6"
sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-4.0.1"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -88773,7 +89568,7 @@ in
sources."type-fest-0.4.1"
sources."typedarray-0.0.6"
sources."typedarray-to-buffer-3.1.5"
- sources."uglify-js-3.13.3"
+ sources."uglify-js-3.13.4"
sources."uid-number-0.0.6"
sources."umask-1.1.0"
sources."unbox-primitive-1.0.1"
@@ -88827,7 +89622,7 @@ in
];
})
sources."xtend-4.0.2"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yaml-1.10.2"
sources."yargs-16.2.0"
@@ -89110,7 +89905,7 @@ in
sources."readdirp-2.2.1"
sources."regex-not-1.0.2"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."resolve-url-0.2.1"
sources."ret-0.1.15"
@@ -89589,7 +90384,7 @@ in
sources."regex-cache-0.4.4"
sources."regex-not-1.0.2"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
(sources."request-2.88.2" // {
dependencies = [
@@ -89741,15 +90536,15 @@ in
src = ../interpreters/clojurescript/lumo;
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.12"
- sources."@babel/core-7.13.14"
+ sources."@babel/compat-data-7.13.15"
+ sources."@babel/core-7.13.15"
sources."@babel/generator-7.13.9"
sources."@babel/helper-annotate-as-pure-7.12.13"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13"
sources."@babel/helper-compilation-targets-7.13.13"
sources."@babel/helper-create-class-features-plugin-7.13.11"
sources."@babel/helper-create-regexp-features-plugin-7.12.17"
- sources."@babel/helper-define-polyfill-provider-0.1.5"
+ sources."@babel/helper-define-polyfill-provider-0.2.0"
sources."@babel/helper-explode-assignable-expression-7.13.0"
sources."@babel/helper-function-name-7.12.13"
sources."@babel/helper-get-function-arity-7.12.13"
@@ -89773,10 +90568,10 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.13.13"
+ sources."@babel/parser-7.13.15"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12"
sources."@babel/plugin-external-helpers-7.8.3"
- sources."@babel/plugin-proposal-async-generator-functions-7.13.8"
+ sources."@babel/plugin-proposal-async-generator-functions-7.13.15"
sources."@babel/plugin-proposal-class-properties-7.13.0"
sources."@babel/plugin-proposal-dynamic-import-7.13.8"
sources."@babel/plugin-proposal-export-namespace-from-7.12.13"
@@ -89826,9 +90621,9 @@ in
sources."@babel/plugin-transform-object-super-7.12.13"
sources."@babel/plugin-transform-parameters-7.13.0"
sources."@babel/plugin-transform-property-literals-7.12.13"
- sources."@babel/plugin-transform-regenerator-7.12.13"
+ sources."@babel/plugin-transform-regenerator-7.13.15"
sources."@babel/plugin-transform-reserved-words-7.12.13"
- sources."@babel/plugin-transform-runtime-7.13.10"
+ sources."@babel/plugin-transform-runtime-7.13.15"
sources."@babel/plugin-transform-shorthand-properties-7.12.13"
sources."@babel/plugin-transform-spread-7.13.0"
sources."@babel/plugin-transform-sticky-regex-7.12.13"
@@ -89836,12 +90631,12 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.12.13"
sources."@babel/plugin-transform-unicode-escapes-7.12.13"
sources."@babel/plugin-transform-unicode-regex-7.12.13"
- sources."@babel/preset-env-7.13.12"
+ sources."@babel/preset-env-7.13.15"
sources."@babel/preset-modules-0.1.4"
sources."@babel/preset-stage-2-7.8.3"
sources."@babel/runtime-7.13.10"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.13"
+ sources."@babel/traverse-7.13.15"
sources."@babel/types-7.13.14"
sources."@cnakazawa/watch-1.0.4"
sources."@comandeer/babel-plugin-banner-5.0.0"
@@ -89899,7 +90694,7 @@ in
sources."amdefine-1.0.1"
sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."aproba-1.2.0"
sources."argparse-1.0.10"
sources."arr-diff-4.0.0"
@@ -89952,9 +90747,9 @@ in
sources."babel-plugin-minify-replace-0.5.0"
sources."babel-plugin-minify-simplify-0.5.1"
sources."babel-plugin-minify-type-constructors-0.4.3"
- sources."babel-plugin-polyfill-corejs2-0.1.10"
- sources."babel-plugin-polyfill-corejs3-0.1.7"
- sources."babel-plugin-polyfill-regenerator-0.1.6"
+ sources."babel-plugin-polyfill-corejs2-0.2.0"
+ sources."babel-plugin-polyfill-corejs3-0.2.0"
+ sources."babel-plugin-polyfill-regenerator-0.2.0"
sources."babel-plugin-syntax-flow-6.18.0"
sources."babel-plugin-transform-flow-strip-types-6.22.0"
sources."babel-plugin-transform-inline-consecutive-adds-0.4.3"
@@ -90020,7 +90815,7 @@ in
];
})
sources."browserify-zlib-0.2.0"
- sources."browserslist-4.16.3"
+ sources."browserslist-4.16.4"
sources."bser-2.1.1"
sources."buffer-5.2.1"
sources."buffer-from-1.1.1"
@@ -90036,7 +90831,7 @@ in
sources."cached-path-relative-1.0.2"
sources."call-bind-1.0.2"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001207"
+ sources."caniuse-lite-1.0.30001208"
sources."capture-exit-2.0.0"
sources."caseless-0.12.0"
(sources."chalk-3.0.0" // {
@@ -90057,7 +90852,7 @@ in
];
})
sources."chownr-1.1.4"
- sources."chrome-trace-event-1.0.2"
+ sources."chrome-trace-event-1.0.3"
sources."ci-info-2.0.0"
sources."cipher-base-1.0.4"
(sources."class-utils-0.3.6" // {
@@ -90108,7 +90903,7 @@ in
})
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.10.0" // {
+ (sources."core-js-compat-3.10.1" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -90160,7 +90955,7 @@ in
sources."duplexer2-0.1.4"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.3.708"
+ sources."electron-to-chromium-1.3.713"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -90307,7 +91102,7 @@ in
sources."hash.js-1.1.7"
sources."hmac-drbg-1.0.1"
sources."homedir-polyfill-1.0.3"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."htmlescape-1.1.1"
sources."http-signature-1.2.0"
sources."https-browserify-1.0.0"
@@ -90409,7 +91204,7 @@ in
sources."md5.js-1.3.5"
sources."memory-fs-0.4.1"
sources."merge-stream-2.0.0"
- (sources."micromatch-4.0.2" // {
+ (sources."micromatch-4.0.4" // {
dependencies = [
sources."braces-3.0.2"
sources."fill-range-7.0.1"
@@ -90511,10 +91306,10 @@ in
sources."path-key-2.0.1"
sources."path-parse-1.0.6"
sources."path-platform-0.11.15"
- sources."pbkdf2-3.1.1"
+ sources."pbkdf2-3.1.2"
sources."peek-stream-1.1.3"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-4.0.1"
sources."pinkie-1.0.0"
sources."pinkie-promise-1.0.0"
@@ -90568,7 +91363,7 @@ in
];
})
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."replace-ext-1.0.1"
sources."request-2.88.2"
@@ -90676,7 +91471,7 @@ in
sources."split-string-3.1.0"
sources."sprintf-js-1.0.3"
sources."sshpk-1.16.1"
- sources."ssri-6.0.1"
+ sources."ssri-6.0.2"
(sources."static-extend-0.1.2" // {
dependencies = [
sources."define-property-0.2.5"
@@ -90755,7 +91550,6 @@ in
sources."to-regex-3.0.2"
sources."to-regex-range-2.1.1"
sources."tough-cookie-2.5.0"
- sources."tslib-1.14.1"
sources."tty-browserify-0.0.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
@@ -90860,7 +91654,7 @@ in
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
sources."xtend-4.0.2"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yallist-3.1.1"
(sources."yargs-13.3.2" // {
dependencies = [
@@ -90965,7 +91759,7 @@ in
sources."link-check-4.5.4"
sources."lodash-4.17.21"
sources."markdown-link-extractor-1.2.7"
- sources."marked-2.0.1"
+ sources."marked-2.0.3"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."ms-2.1.3"
@@ -91485,7 +92279,7 @@ in
sources."through-2.3.8"
sources."try-catch-2.0.1"
sources."try-to-catch-1.1.1"
- sources."uglify-js-3.13.3"
+ sources."uglify-js-3.13.4"
sources."unbzip2-stream-1.4.3"
sources."upper-case-1.1.3"
sources."util-deprecate-1.0.2"
@@ -91515,11 +92309,11 @@ in
sources."@fluentui/date-time-utilities-7.9.1"
sources."@fluentui/dom-utilities-1.1.2"
sources."@fluentui/keyboard-key-0.2.16"
- sources."@fluentui/react-7.165.2"
+ sources."@fluentui/react-7.166.2"
sources."@fluentui/react-focus-7.17.6"
sources."@fluentui/react-window-provider-1.0.2"
sources."@fluentui/theme-1.7.4"
- sources."@microsoft/load-themed-styles-1.10.156"
+ sources."@microsoft/load-themed-styles-1.10.160"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@uifabric/foundation-7.9.26"
@@ -91655,7 +92449,7 @@ in
sources."node-fetch-1.6.3"
sources."normalize-url-4.5.0"
sources."object-assign-4.1.1"
- sources."office-ui-fabric-react-7.165.2"
+ sources."office-ui-fabric-react-7.166.2"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -91747,7 +92541,7 @@ in
sources."supports-color-2.0.0"
sources."swagger-schema-official-2.0.0-bab6bed"
sources."swagger-ui-dist-3.46.0"
- sources."tail-2.2.1"
+ sources."tail-2.2.2"
sources."through-2.3.8"
sources."tmp-0.0.33"
sources."to-readable-stream-1.0.0"
@@ -91788,7 +92582,7 @@ in
sources."ansi-colors-4.1.1"
sources."ansi-regex-3.0.0"
sources."ansi-styles-4.3.0"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."argparse-2.0.1"
sources."balanced-match-1.0.2"
sources."binary-extensions-2.2.0"
@@ -91855,7 +92649,7 @@ in
sources."p-locate-5.0.0"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."randombytes-2.1.0"
sources."readdirp-3.5.0"
sources."require-directory-2.1.1"
@@ -91878,7 +92672,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
(sources."yargs-16.2.0" // {
dependencies = [
sources."ansi-regex-5.0.0"
@@ -92037,15 +92831,15 @@ in
netlify-cli = nodeEnv.buildNodePackage {
name = "netlify-cli";
packageName = "netlify-cli";
- version = "3.15.1";
+ version = "3.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.15.1.tgz";
- sha512 = "L3koM/4a7Ts4fQgJ7bEWbkoYJbShUEZ8KN03+ti+V72MN+4vChmtbNlRkISw1KrfyvyCIP4va2EBTFL4pKfO7Q==";
+ url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.17.1.tgz";
+ sha512 = "C9mWo2ijxnh09mscYb0F96V76g71MrVJNPgbjMobYnHPbJP3zqNG/3CBmLHyX9RLQI6RRcqND05ATdj2itL1rg==";
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.12"
- (sources."@babel/core-7.13.14" // {
+ sources."@babel/compat-data-7.13.15"
+ (sources."@babel/core-7.13.15" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -92060,7 +92854,7 @@ in
})
sources."@babel/helper-create-class-features-plugin-7.13.11"
sources."@babel/helper-create-regexp-features-plugin-7.12.17"
- (sources."@babel/helper-define-polyfill-provider-0.1.5" // {
+ (sources."@babel/helper-define-polyfill-provider-0.2.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -92084,9 +92878,9 @@ in
sources."@babel/helper-wrap-function-7.13.0"
sources."@babel/helpers-7.13.10"
sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.13"
+ sources."@babel/parser-7.13.15"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12"
- sources."@babel/plugin-proposal-async-generator-functions-7.13.8"
+ sources."@babel/plugin-proposal-async-generator-functions-7.13.15"
sources."@babel/plugin-proposal-class-properties-7.13.0"
sources."@babel/plugin-proposal-dynamic-import-7.13.8"
sources."@babel/plugin-proposal-export-namespace-from-7.12.13"
@@ -92134,7 +92928,7 @@ in
sources."@babel/plugin-transform-object-super-7.12.13"
sources."@babel/plugin-transform-parameters-7.13.0"
sources."@babel/plugin-transform-property-literals-7.12.13"
- sources."@babel/plugin-transform-regenerator-7.12.13"
+ sources."@babel/plugin-transform-regenerator-7.13.15"
sources."@babel/plugin-transform-reserved-words-7.12.13"
sources."@babel/plugin-transform-shorthand-properties-7.12.13"
sources."@babel/plugin-transform-spread-7.13.0"
@@ -92143,7 +92937,7 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.12.13"
sources."@babel/plugin-transform-unicode-escapes-7.12.13"
sources."@babel/plugin-transform-unicode-regex-7.12.13"
- (sources."@babel/preset-env-7.13.12" // {
+ (sources."@babel/preset-env-7.13.15" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -92151,7 +92945,7 @@ in
sources."@babel/preset-modules-0.1.4"
sources."@babel/runtime-7.13.10"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.13"
+ sources."@babel/traverse-7.13.15"
sources."@babel/types-7.13.14"
sources."@bugsnag/browser-7.9.2"
sources."@bugsnag/core-7.9.2"
@@ -92162,7 +92956,7 @@ in
sources."@dabh/diagnostics-2.0.2"
sources."@jest/types-24.9.0"
sources."@mrmlnc/readdir-enhanced-2.2.1"
- (sources."@netlify/build-10.2.4" // {
+ (sources."@netlify/build-10.2.7" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-3.0.0"
@@ -92177,26 +92971,26 @@ in
sources."locate-path-5.0.0"
];
})
- (sources."@netlify/config-5.1.0" // {
+ (sources."@netlify/config-5.12.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-3.0.0"
sources."execa-3.4.0"
];
})
- (sources."@netlify/framework-info-3.2.1" // {
+ (sources."@netlify/framework-info-3.3.0" // {
dependencies = [
sources."locate-path-5.0.0"
];
})
- sources."@netlify/functions-utils-1.3.22"
+ sources."@netlify/functions-utils-1.3.23"
(sources."@netlify/git-utils-1.0.8" // {
dependencies = [
sources."braces-3.0.2"
sources."execa-3.4.0"
sources."fill-range-7.0.1"
sources."is-number-7.0.0"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."to-regex-range-5.0.1"
];
})
@@ -92214,7 +93008,7 @@ in
sources."globby-11.0.3"
sources."ignore-5.1.8"
sources."is-number-7.0.0"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."p-map-4.0.0"
sources."slash-3.0.0"
sources."to-regex-range-5.0.1"
@@ -92230,7 +93024,7 @@ in
sources."@netlify/traffic-mesh-agent-darwin-x64-0.27.10"
sources."@netlify/traffic-mesh-agent-linux-x64-0.27.10"
sources."@netlify/traffic-mesh-agent-win32-x64-0.27.10"
- (sources."@netlify/zip-it-and-ship-it-3.1.0" // {
+ (sources."@netlify/zip-it-and-ship-it-3.2.1" // {
dependencies = [
sources."locate-path-5.0.0"
sources."resolve-2.0.0-next.3"
@@ -92292,7 +93086,7 @@ in
sources."globby-11.0.3"
sources."ignore-5.1.8"
sources."is-number-7.0.0"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."slash-3.0.0"
sources."to-regex-range-5.0.1"
sources."tslib-2.2.0"
@@ -92334,6 +93128,7 @@ in
})
(sources."@oclif/plugin-not-found-1.2.4" // {
dependencies = [
+ sources."ansi-escapes-3.2.0"
sources."ansi-styles-3.2.1"
sources."cli-ux-4.9.3"
sources."color-convert-1.9.3"
@@ -92377,7 +93172,7 @@ in
sources."@octokit/types-2.16.2"
];
})
- (sources."@octokit/request-5.4.14" // {
+ (sources."@octokit/request-5.4.15" // {
dependencies = [
sources."@octokit/request-error-2.0.5"
sources."is-plain-object-5.0.0"
@@ -92429,7 +93224,7 @@ in
sources."@types/minimatch-3.0.4"
sources."@types/mkdirp-0.5.2"
sources."@types/node-14.14.37"
- sources."@types/node-fetch-2.5.9"
+ sources."@types/node-fetch-2.5.10"
sources."@types/normalize-package-data-2.4.0"
sources."@types/resolve-1.17.1"
sources."@types/responselike-1.0.0"
@@ -92441,7 +93236,7 @@ in
sources."accepts-1.3.7"
sources."agent-base-6.0.2"
sources."aggregate-error-3.1.0"
- sources."ajv-8.0.5"
+ sources."ajv-8.1.0"
(sources."all-node-versions-8.0.0" // {
dependencies = [
sources."@jest/types-25.5.0"
@@ -92463,12 +93258,12 @@ in
sources."strip-ansi-5.2.0"
];
})
- sources."ansi-escapes-3.2.0"
+ sources."ansi-escapes-4.3.2"
sources."ansi-regex-4.1.0"
sources."ansi-styles-5.2.0"
sources."ansicolors-0.3.2"
sources."any-observable-0.3.0"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
(sources."archive-type-4.0.0" // {
dependencies = [
sources."file-type-4.4.0"
@@ -92499,7 +93294,7 @@ in
sources."at-least-node-1.0.0"
sources."atob-2.1.2"
sources."atob-lite-2.0.0"
- (sources."aws-sdk-2.880.0" // {
+ (sources."aws-sdk-2.885.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -92507,13 +93302,13 @@ in
];
})
sources."babel-plugin-dynamic-import-node-2.3.3"
- (sources."babel-plugin-polyfill-corejs2-0.1.10" // {
+ (sources."babel-plugin-polyfill-corejs2-0.2.0" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.1.7"
- sources."babel-plugin-polyfill-regenerator-0.1.6"
+ sources."babel-plugin-polyfill-corejs3-0.2.0"
+ sources."babel-plugin-polyfill-regenerator-0.2.0"
sources."backoff-2.5.0"
sources."balanced-match-1.0.2"
(sources."base-0.11.2" // {
@@ -92535,6 +93330,7 @@ in
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-3.0.0"
+ sources."type-fest-0.8.1"
];
})
sources."brace-expansion-1.1.11"
@@ -92543,7 +93339,7 @@ in
sources."extend-shallow-2.0.1"
];
})
- sources."browserslist-4.16.3"
+ sources."browserslist-4.16.4"
sources."btoa-lite-1.0.0"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
@@ -92572,7 +93368,7 @@ in
sources."call-bind-1.0.2"
sources."call-me-maybe-1.0.1"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001207"
+ sources."caniuse-lite-1.0.30001208"
sources."cardinal-2.1.1"
sources."caw-2.0.1"
(sources."chalk-2.4.2" // {
@@ -92629,7 +93425,6 @@ in
})
(sources."cli-ux-5.5.1" // {
dependencies = [
- sources."ansi-escapes-4.3.2"
sources."ansi-styles-4.3.0"
sources."argparse-1.0.10"
sources."chalk-4.1.0"
@@ -92637,9 +93432,8 @@ in
sources."escape-string-regexp-4.0.0"
sources."extract-stack-2.0.0"
sources."js-yaml-3.14.1"
- sources."supports-hyperlinks-2.1.0"
+ sources."supports-hyperlinks-2.2.0"
sources."tslib-2.2.0"
- sources."type-fest-0.21.3"
];
})
sources."cli-width-2.2.1"
@@ -92701,7 +93495,7 @@ in
sources."safe-buffer-5.1.2"
];
})
- (sources."core-js-compat-3.10.0" // {
+ (sources."core-js-compat-3.10.1" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -92826,7 +93620,7 @@ in
})
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.708"
+ sources."electron-to-chromium-1.3.713"
sources."elegant-spinner-1.0.1"
sources."elf-cam-0.1.1"
sources."emoji-regex-8.0.0"
@@ -92837,7 +93631,7 @@ in
sources."envinfo-7.8.1"
sources."error-ex-1.3.2"
sources."error-stack-parser-2.0.6"
- sources."esbuild-0.9.7"
+ sources."esbuild-0.11.10"
sources."escalade-3.1.1"
sources."escape-goat-2.1.1"
sources."escape-html-1.0.3"
@@ -93034,7 +93828,7 @@ in
sources."glob-parent-5.1.2"
sources."ignore-5.1.8"
sources."is-number-7.0.0"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."slash-3.0.0"
sources."to-regex-range-5.0.1"
];
@@ -93074,8 +93868,12 @@ in
sources."async-1.5.2"
];
})
- sources."hasha-5.2.2"
- sources."hosted-git-info-2.8.8"
+ (sources."hasha-5.2.2" // {
+ dependencies = [
+ sources."type-fest-0.8.1"
+ ];
+ })
+ sources."hosted-git-info-2.8.9"
sources."http-cache-semantics-4.1.0"
(sources."http-call-5.3.0" // {
dependencies = [
@@ -93088,14 +93886,13 @@ in
];
})
sources."http-proxy-1.18.1"
- (sources."http-proxy-middleware-1.1.0" // {
+ (sources."http-proxy-middleware-1.1.1" // {
dependencies = [
sources."braces-3.0.2"
- sources."camelcase-6.2.0"
sources."fill-range-7.0.1"
sources."is-number-7.0.0"
sources."is-plain-obj-3.0.0"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."to-regex-range-5.0.1"
];
})
@@ -93114,6 +93911,7 @@ in
sources."ini-1.3.8"
(sources."inquirer-6.5.2" // {
dependencies = [
+ sources."ansi-escapes-3.2.0"
sources."ansi-regex-3.0.0"
sources."figures-2.0.0"
sources."is-fullwidth-code-point-2.0.0"
@@ -93131,10 +93929,8 @@ in
})
(sources."inquirer-autocomplete-prompt-1.3.0" // {
dependencies = [
- sources."ansi-escapes-4.3.2"
sources."ansi-styles-4.3.0"
sources."chalk-4.1.0"
- sources."type-fest-0.21.3"
];
})
sources."into-stream-3.1.0"
@@ -93151,7 +93947,7 @@ in
sources."is-core-module-2.2.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-extendable-0.1.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -93295,6 +94091,7 @@ in
sources."log-symbols-3.0.0"
(sources."log-update-2.3.0" // {
dependencies = [
+ sources."ansi-escapes-3.2.0"
sources."ansi-regex-3.0.0"
sources."is-fullwidth-code-point-2.0.0"
sources."string-width-2.1.1"
@@ -93317,7 +94114,7 @@ in
];
})
sources."map-cache-0.2.2"
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
sources."map-visit-1.0.0"
sources."maxstache-1.0.7"
(sources."maxstache-stream-1.0.4" // {
@@ -93375,17 +94172,12 @@ in
sources."natural-orderby-2.0.3"
sources."negotiator-0.6.2"
sources."nested-error-stacks-2.1.0"
- (sources."netlify-6.1.16" // {
+ (sources."netlify-6.1.17" // {
dependencies = [
- sources."@netlify/zip-it-and-ship-it-2.7.1"
- sources."esbuild-0.8.57"
- sources."locate-path-5.0.0"
sources."qs-6.10.1"
- sources."resolve-2.0.0-next.3"
- sources."semver-6.3.0"
];
})
- sources."netlify-redirect-parser-3.0.9"
+ sources."netlify-redirect-parser-3.0.14"
sources."netlify-redirector-0.2.1"
sources."nice-try-1.0.5"
sources."node-fetch-2.6.1"
@@ -93529,6 +94321,7 @@ in
sources."pascalcase-0.1.1"
(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"
@@ -93545,7 +94338,7 @@ in
sources."path-to-regexp-0.1.7"
sources."path-type-4.0.0"
sources."pend-1.2.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-4.0.1"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -93600,7 +94393,11 @@ in
sources."type-fest-0.6.0"
];
})
- sources."read-pkg-up-7.0.1"
+ (sources."read-pkg-up-7.0.1" // {
+ dependencies = [
+ sources."type-fest-0.8.1"
+ ];
+ })
sources."readable-stream-3.6.0"
sources."readdirp-3.6.0"
sources."redeyed-2.1.1"
@@ -93619,7 +94416,7 @@ in
];
})
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."require-directory-2.1.1"
sources."require-from-string-2.0.2"
@@ -93638,7 +94435,7 @@ in
sources."ret-0.1.15"
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
- sources."rollup-2.44.0"
+ sources."rollup-2.45.2"
(sources."rollup-plugin-inject-3.0.2" // {
dependencies = [
sources."estree-walker-0.6.1"
@@ -93860,10 +94657,10 @@ in
sources."tsutils-3.21.0"
sources."tunnel-agent-0.6.0"
sources."type-check-0.3.2"
- sources."type-fest-0.8.1"
+ sources."type-fest-0.21.3"
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
- sources."typescript-4.2.3"
+ sources."typescript-4.2.4"
sources."uid-safe-2.1.5"
sources."unbzip2-stream-1.4.3"
sources."unicode-canonical-property-names-ecmascript-1.0.4"
@@ -93957,7 +94754,7 @@ in
sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.7"
sources."xtend-4.0.2"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yallist-4.0.0"
sources."yargs-15.4.1"
sources."yargs-parser-18.1.3"
@@ -94227,7 +95024,7 @@ in
sources."hawk-3.1.3"
sources."headless-0.1.7"
sources."hoek-2.16.3"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."http-errors-1.7.2"
sources."http-signature-1.1.1"
sources."iconv-lite-0.4.24"
@@ -94512,16 +95309,16 @@ in
node-red = nodeEnv.buildNodePackage {
name = "node-red";
packageName = "node-red";
- version = "1.2.9";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red/-/node-red-1.2.9.tgz";
- sha512 = "1BXFaT7oDd5VM80O+1Lf72P9wCkYjg3CODROPRIPvcSEke6ubMo1M5GFsgh5EwGPLlTTlkuSgI+a4T3UhjAzbQ==";
+ url = "https://registry.npmjs.org/node-red/-/node-red-1.3.2.tgz";
+ sha512 = "tOtD5Z8l4WNuGNfUp/LFSC/ou74LfKhIWSgT4i9WTTUxUvSlWCBu8TsPNbjl9yM17Ox2ebe57mEnOHvTjQlEyA==";
};
dependencies = [
sources."@babel/runtime-7.13.10"
- sources."@node-red/editor-api-1.2.9"
- sources."@node-red/editor-client-1.2.9"
- (sources."@node-red/nodes-1.2.9" // {
+ sources."@node-red/editor-api-1.3.2"
+ sources."@node-red/editor-client-1.3.2"
+ (sources."@node-red/nodes-1.3.2" // {
dependencies = [
sources."cookie-0.4.1"
sources."http-errors-1.7.3"
@@ -94535,9 +95332,9 @@ in
})
];
})
- sources."@node-red/registry-1.2.9"
- sources."@node-red/runtime-1.2.9"
- sources."@node-red/util-1.2.9"
+ sources."@node-red/registry-1.3.2"
+ sources."@node-red/runtime-1.3.2"
+ sources."@node-red/util-1.3.2"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
(sources."agent-base-6.0.2" // {
@@ -94564,7 +95361,7 @@ in
sources."assert-plus-1.0.0"
sources."async-0.1.22"
sources."async-limiter-1.0.1"
- sources."async-mutex-0.2.6"
+ sources."async-mutex-0.3.1"
sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
@@ -94771,7 +95568,7 @@ in
sources."lodash.some-4.6.0"
sources."lru-cache-4.1.5"
sources."media-typer-0.3.0"
- (sources."memorystore-1.6.4" // {
+ (sources."memorystore-1.6.6" // {
dependencies = [
sources."debug-4.3.2"
sources."ms-2.1.2"
@@ -94779,7 +95576,7 @@ in
})
sources."merge-descriptors-1.0.1"
sources."methods-1.1.2"
- sources."mime-2.4.7"
+ sources."mime-2.5.2"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."minimatch-3.0.4"
@@ -94796,7 +95593,7 @@ in
})
sources."mkdirp-0.5.5"
sources."moment-2.29.1"
- sources."moment-timezone-0.5.32"
+ sources."moment-timezone-0.5.33"
(sources."mqtt-4.2.6" // {
dependencies = [
sources."concat-stream-2.0.0"
@@ -94815,7 +95612,7 @@ in
})
sources."ms-2.0.0"
sources."multer-1.4.2"
- sources."mustache-4.1.0"
+ sources."mustache-4.2.0"
sources."mute-stream-0.0.8"
sources."nan-2.14.0"
(sources."needle-2.6.0" // {
@@ -94842,8 +95639,8 @@ in
sources."bcrypt-3.0.8"
];
})
- sources."node-red-node-rbe-0.2.9"
- sources."node-red-node-tail-0.1.1"
+ sources."node-red-node-rbe-0.5.0"
+ sources."node-red-node-tail-0.3.1"
sources."nopt-5.0.0"
sources."npm-bundled-1.1.1"
sources."npm-normalize-package-bin-1.0.1"
@@ -94935,8 +95732,8 @@ in
sources."string_decoder-0.10.31"
sources."strip-ansi-3.0.1"
sources."strip-json-comments-2.0.1"
- sources."tail-2.2.1"
- (sources."tar-6.0.5" // {
+ sources."tail-2.2.2"
+ (sources."tar-6.1.0" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."yallist-4.0.0"
@@ -94963,7 +95760,7 @@ in
sources."tweetnacl-0.14.5"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- sources."uglify-js-3.12.4"
+ sources."uglify-js-3.13.3"
sources."uid-safe-2.1.5"
sources."uid2-0.0.3"
sources."unc-path-regex-0.1.2"
@@ -94976,7 +95773,6 @@ in
sources."uuid-3.4.0"
sources."vary-1.1.2"
sources."verror-1.10.0"
- sources."when-3.7.8"
sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
sources."ws-6.2.1"
@@ -95063,7 +95859,7 @@ in
sources."har-validator-5.1.5"
sources."has-1.0.3"
sources."has-unicode-2.0.1"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."http-signature-1.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -95208,7 +96004,7 @@ in
})
sources."ansi-regex-4.1.0"
sources."ansi-styles-4.3.0"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."balanced-match-1.0.2"
sources."binary-extensions-2.2.0"
sources."boxen-4.2.0"
@@ -95294,7 +96090,7 @@ in
sources."semver-6.3.0"
];
})
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."prepend-http-2.0.0"
sources."pstree.remy-1.1.8"
sources."pump-3.0.0"
@@ -95569,7 +96365,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
sources."is-core-module-2.2.0"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
@@ -95660,7 +96456,7 @@ in
];
})
sources."map-age-cleaner-0.1.3"
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
(sources."mem-6.1.1" // {
dependencies = [
sources."mimic-fn-3.1.0"
@@ -95673,7 +96469,7 @@ in
})
sources."merge-stream-2.0.0"
sources."merge2-1.4.1"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."mimic-fn-1.2.0"
sources."mimic-response-2.1.0"
sources."min-indent-1.0.1"
@@ -95764,7 +96560,7 @@ in
sources."path-key-3.1.1"
sources."path-parse-1.0.6"
sources."path-type-4.0.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
(sources."pkg-dir-5.0.0" // {
dependencies = [
sources."find-up-5.0.0"
@@ -95785,7 +96581,7 @@ in
sources."rc-1.2.8"
(sources."read-pkg-5.2.0" // {
dependencies = [
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."normalize-package-data-2.5.0"
sources."semver-5.7.1"
sources."type-fest-0.6.0"
@@ -95837,7 +96633,7 @@ in
sources."strip-indent-3.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-7.2.0"
- sources."supports-hyperlinks-2.1.0"
+ sources."supports-hyperlinks-2.2.0"
sources."symbol-observable-3.0.0"
sources."terminal-link-2.1.1"
sources."through-2.3.8"
@@ -95891,10 +96687,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "7.8.0";
+ version = "7.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-7.8.0.tgz";
- sha512 = "9AC3Dj9OUWaUdmTmEVttE/1MWkfF7+sAKPRo9tKEyjo49AXmHQBn+RC33M9dima91mEMqDIA71xyRm4VmhDipg==";
+ url = "https://registry.npmjs.org/npm/-/npm-7.9.0.tgz";
+ sha512 = "GW9RbueF717kJ4ZUVsTlhKBEY7AqX28OwQCsfIAkRZclfeeqQDnsoJz6WWuYTMpGBJnB2xknF8Dp364c93FDYA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -95909,10 +96705,10 @@ in
npm-check-updates = nodeEnv.buildNodePackage {
name = "npm-check-updates";
packageName = "npm-check-updates";
- version = "11.3.0";
+ version = "11.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-11.3.0.tgz";
- sha512 = "7GMDj40cWw/nRn3BsN+20ca3T6CvHqIiFhooVa5a3VybrS7TNBdbR3/BIi9dw4vFORgFZw/OsW3ZtRTFamnPDQ==";
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-11.4.1.tgz";
+ sha512 = "bWElM5CeJ9gA/wvtqB4ljcKzAZ3BlPM2g/7mVi8mPdCR2N6dhgS4q5GCzQn4ZvpeKSFll3bUGkiR/lgSQOlN8Q==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.4"
@@ -96115,7 +96911,7 @@ in
sources."map-age-cleaner-0.1.3"
sources."mem-8.1.0"
sources."merge2-1.4.1"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."mimic-fn-3.1.0"
@@ -96164,7 +96960,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."prepend-http-2.0.0"
sources."process-nextick-args-2.0.1"
sources."progress-2.0.3"
@@ -96494,8 +97290,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.12"
- (sources."@babel/core-7.13.14" // {
+ sources."@babel/compat-data-7.13.15"
+ (sources."@babel/core-7.13.15" // {
dependencies = [
sources."json5-2.2.0"
sources."semver-6.3.0"
@@ -96516,7 +97312,7 @@ in
})
sources."@babel/helper-create-class-features-plugin-7.13.11"
sources."@babel/helper-create-regexp-features-plugin-7.12.17"
- (sources."@babel/helper-define-polyfill-provider-0.1.5" // {
+ (sources."@babel/helper-define-polyfill-provider-0.2.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -96540,9 +97336,9 @@ in
sources."@babel/helper-wrap-function-7.13.0"
sources."@babel/helpers-7.13.10"
sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.13"
+ sources."@babel/parser-7.13.15"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12"
- sources."@babel/plugin-proposal-async-generator-functions-7.13.8"
+ sources."@babel/plugin-proposal-async-generator-functions-7.13.15"
sources."@babel/plugin-proposal-class-properties-7.13.0"
sources."@babel/plugin-proposal-dynamic-import-7.13.8"
sources."@babel/plugin-proposal-export-namespace-from-7.12.13"
@@ -96594,7 +97390,7 @@ in
sources."@babel/plugin-transform-parameters-7.13.0"
sources."@babel/plugin-transform-property-literals-7.12.13"
sources."@babel/plugin-transform-react-jsx-7.13.12"
- sources."@babel/plugin-transform-regenerator-7.12.13"
+ sources."@babel/plugin-transform-regenerator-7.13.15"
sources."@babel/plugin-transform-reserved-words-7.12.13"
sources."@babel/plugin-transform-shorthand-properties-7.12.13"
sources."@babel/plugin-transform-spread-7.13.0"
@@ -96603,7 +97399,7 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.12.13"
sources."@babel/plugin-transform-unicode-escapes-7.12.13"
sources."@babel/plugin-transform-unicode-regex-7.12.13"
- (sources."@babel/preset-env-7.13.12" // {
+ (sources."@babel/preset-env-7.13.15" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -96611,7 +97407,7 @@ in
sources."@babel/preset-modules-0.1.4"
sources."@babel/runtime-7.13.10"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.13"
+ sources."@babel/traverse-7.13.15"
sources."@babel/types-7.13.14"
sources."@iarna/toml-2.2.5"
sources."@mrmlnc/readdir-enhanced-2.2.1"
@@ -96667,13 +97463,13 @@ in
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."babel-plugin-dynamic-import-node-2.3.3"
- (sources."babel-plugin-polyfill-corejs2-0.1.10" // {
+ (sources."babel-plugin-polyfill-corejs2-0.2.0" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.1.7"
- sources."babel-plugin-polyfill-regenerator-0.1.6"
+ sources."babel-plugin-polyfill-corejs3-0.2.0"
+ sources."babel-plugin-polyfill-regenerator-0.2.0"
(sources."babel-runtime-6.26.0" // {
dependencies = [
sources."regenerator-runtime-0.11.1"
@@ -96717,7 +97513,7 @@ in
sources."pako-1.0.11"
];
})
- sources."browserslist-4.16.3"
+ sources."browserslist-4.16.4"
(sources."buffer-4.9.2" // {
dependencies = [
sources."isarray-1.0.0"
@@ -96734,7 +97530,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001207"
+ sources."caniuse-lite-1.0.30001208"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -96761,7 +97557,7 @@ in
sources."convert-source-map-1.7.0"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.10.0" // {
+ (sources."core-js-compat-3.10.1" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -96861,7 +97657,11 @@ in
sources."domain-browser-1.2.0"
sources."domelementtype-1.3.1"
sources."domexception-1.0.1"
- sources."domhandler-2.4.2"
+ (sources."domhandler-4.1.0" // {
+ dependencies = [
+ sources."domelementtype-2.2.0"
+ ];
+ })
sources."domutils-1.7.0"
sources."dot-prop-5.3.0"
sources."dotenv-5.0.1"
@@ -96869,7 +97669,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.708"
+ sources."electron-to-chromium-1.3.713"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -96972,16 +97772,20 @@ in
sources."hsla-regex-1.0.0"
sources."html-encoding-sniffer-1.0.2"
sources."html-tags-1.2.0"
- (sources."htmlnano-0.2.8" // {
+ (sources."htmlnano-0.2.9" // {
dependencies = [
- sources."posthtml-0.13.4"
- sources."posthtml-parser-0.5.3"
- sources."terser-4.8.0"
+ sources."posthtml-0.15.2"
+ sources."posthtml-parser-0.7.2"
+ sources."source-map-0.7.3"
+ sources."terser-5.6.1"
];
})
- (sources."htmlparser2-3.10.1" // {
+ (sources."htmlparser2-6.1.0" // {
dependencies = [
- sources."readable-stream-3.6.0"
+ sources."dom-serializer-1.3.1"
+ sources."domelementtype-2.2.0"
+ sources."domutils-2.5.2"
+ sources."entities-2.2.0"
];
})
sources."http-errors-1.7.3"
@@ -97161,7 +97965,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
sources."path-parse-1.0.6"
- sources."pbkdf2-3.1.1"
+ sources."pbkdf2-3.1.2"
sources."performance-now-2.1.0"
sources."physical-cpu-count-2.0.0"
sources."pn-1.1.0"
@@ -97233,7 +98037,13 @@ in
sources."postcss-unique-selectors-4.0.1"
sources."postcss-value-parser-3.3.1"
sources."posthtml-0.11.6"
- sources."posthtml-parser-0.4.2"
+ (sources."posthtml-parser-0.4.2" // {
+ dependencies = [
+ sources."domhandler-2.4.2"
+ sources."htmlparser2-3.10.1"
+ sources."readable-stream-3.6.0"
+ ];
+ })
sources."posthtml-render-1.4.0"
sources."prelude-ls-1.1.2"
sources."process-0.11.10"
@@ -97285,7 +98095,7 @@ in
})
sources."relateurl-0.2.7"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."request-2.88.2"
sources."request-promise-core-1.1.4"
@@ -97483,10 +98293,10 @@ in
parsoid = nodeEnv.buildNodePackage {
name = "parsoid";
packageName = "parsoid";
- version = "0.11.0";
+ version = "0.11.1";
src = fetchurl {
- url = "https://registry.npmjs.org/parsoid/-/parsoid-0.11.0.tgz";
- sha512 = "EGaqfG5nB5J+1P1qCZVkhLqIl1H9saR8a6Ro90yMmGRKCyPUDMEBkju4yNiOtV3cSJncl8jYk/Xz6wdmnV95Mw==";
+ url = "https://registry.npmjs.org/parsoid/-/parsoid-0.11.1.tgz";
+ sha512 = "t29ujC7jgKzuA25yXritkuF/rFGduN08c2CLOeSAjlKAzc/BUamZgvPWFqU/UVSRubnMYawJIQDX3m/RqKz7Xw==";
};
dependencies = [
(sources."accepts-1.3.7" // {
@@ -97731,7 +98541,7 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-is-1.6.18"
- sources."uglify-js-3.13.3"
+ sources."uglify-js-3.13.4"
sources."unix-dgram-2.0.4"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
@@ -97747,7 +98557,7 @@ in
sources."worker-farm-1.7.0"
sources."wrap-ansi-5.1.0"
sources."wrappy-1.0.2"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yallist-4.0.0"
(sources."yargs-13.3.2" // {
dependencies = [
@@ -97797,13 +98607,13 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-ci-2.0.0"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-number-7.0.0"
sources."is-wsl-2.2.0"
sources."isexe-2.0.0"
sources."jsonfile-4.0.0"
sources."klaw-sync-6.0.0"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."nice-try-1.0.5"
@@ -97812,7 +98622,7 @@ in
sources."os-tmpdir-1.0.2"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."rimraf-2.7.1"
sources."semver-5.7.1"
sources."shebang-command-1.2.0"
@@ -97942,7 +98752,7 @@ in
sources."has-flag-3.0.0"
sources."has-symbols-1.0.2"
sources."hat-0.0.3"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."http-headers-3.0.2"
sources."iconv-lite-0.4.24"
sources."immediate-chunk-store-1.0.8"
@@ -98562,7 +99372,7 @@ in
sources."amp-message-0.1.2"
sources."ansi-colors-4.1.1"
sources."ansi-styles-4.3.0"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
(sources."argparse-1.0.10" // {
dependencies = [
sources."sprintf-js-1.0.3"
@@ -98675,7 +99485,7 @@ in
sources."pako-0.2.9"
sources."path-is-absolute-1.0.1"
sources."path-parse-1.0.6"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pidusage-2.0.21"
sources."pm2-axon-4.0.1"
sources."pm2-axon-rpc-0.7.1"
@@ -98747,10 +99557,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "6.0.0";
+ version = "6.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-6.0.0.tgz";
- sha512 = "oVY4Juer+T0INNldcob07mWrDmsZJof3DDZuz1+fBhCXjs5yihf5eL+1OKBGVMIIwW+dRXnQHfwbBF9FPA/08A==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-6.0.2.tgz";
+ sha512 = "Zg1wbTjGu2dcQKzKq4IZSshK6zIEedEvlmE/EpujnFcbzJHXCAuyHZR2GuhR1887qc41dHs/bxnXEOol2/sapQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -98817,7 +99627,7 @@ in
sources."@types/parse-json-4.0.0"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."array-union-2.1.0"
sources."at-least-node-1.0.0"
sources."binary-extensions-2.2.0"
@@ -98871,12 +99681,12 @@ in
sources."lodash.groupby-4.6.0"
sources."lodash.sortby-4.7.0"
sources."merge2-1.4.1"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."normalize-path-3.0.0"
sources."parent-module-1.0.1"
sources."parse-json-5.2.0"
sources."path-type-4.0.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-2.3.0"
sources."postcss-load-config-3.0.1"
sources."postcss-reporter-7.0.2"
@@ -98895,7 +99705,7 @@ in
sources."to-regex-range-5.0.1"
sources."universalify-2.0.0"
sources."wrap-ansi-7.0.0"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yaml-1.10.2"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.7"
@@ -99144,7 +99954,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-parse-1.0.6"
sources."path-platform-0.11.15"
- sources."pbkdf2-3.1.1"
+ sources."pbkdf2-3.1.2"
sources."process-0.11.10"
sources."process-nextick-args-2.0.1"
(sources."public-encrypt-4.0.3" // {
@@ -99299,10 +100109,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.128";
+ version = "1.1.130";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.128.tgz";
- sha512 = "p+QG3W+PEQs6raeix/oIBU/eKRL487WftEFI3PVR7npF/2fzh6v4ucNjlF/jPAfP1x/ulInqeyeqvwLwvajTwA==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.130.tgz";
+ sha512 = "hj4Lvn0x5LFsZDJaZ5hW5X4NfHSCoMvEqcNvRgpYM59qAM22z7XC+Tb7XNrQEhOfIjsbczS3nKWGGUMCe88LXg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -99524,7 +100334,7 @@ in
})
sources."wrappy-1.0.2"
sources."xtend-4.0.2"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yaml-1.10.2"
sources."yargs-12.0.5"
sources."yargs-parser-11.1.1"
@@ -99699,16 +100509,15 @@ in
readability-cli = nodeEnv.buildNodePackage {
name = "readability-cli";
packageName = "readability-cli";
- version = "2.2.3-pre";
+ version = "2.2.4-pre";
src = fetchurl {
- url = "https://registry.npmjs.org/readability-cli/-/readability-cli-2.2.3-pre.tgz";
- sha512 = "7dAkgA92K/xzFu+ZeS1oVDgjIMmBuWQBo0CNFucPxyWds7I8liDDdt2ph64eaZauzrSlfy3T8G895SDQb188cA==";
+ url = "https://registry.npmjs.org/readability-cli/-/readability-cli-2.2.4-pre.tgz";
+ sha512 = "KKCB4KGnrbCnA7KAGlArlGccwqP6UXxxbNkXVEoTGM8GHULUa5xkeIp5QMDwagRvmVR0vBIwLewz+QW1WZORAQ==";
};
dependencies = [
- sources."@gardenapple/yargs-17.0.0-candidate.0"
sources."@mozilla/readability-0.4.1"
sources."abab-2.0.5"
- sources."acorn-8.1.0"
+ sources."acorn-8.1.1"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -99770,11 +100579,11 @@ in
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.24"
sources."is-fullwidth-code-point-3.0.0"
- sources."is-potential-custom-element-name-1.0.0"
+ sources."is-potential-custom-element-name-1.0.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."jsbn-0.1.1"
- sources."jsdom-16.5.2"
+ sources."jsdom-16.5.3"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
@@ -99833,7 +100642,8 @@ in
sources."ws-7.4.4"
sources."xml-name-validator-3.0.0"
sources."xmlchars-2.2.0"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
+ sources."yargs-17.0.0-candidate.12"
sources."yargs-parser-20.2.7"
];
buildInputs = globalBuildInputs;
@@ -99849,10 +100659,10 @@ in
redoc-cli = nodeEnv.buildNodePackage {
name = "redoc-cli";
packageName = "redoc-cli";
- version = "0.10.4";
+ version = "0.11.3";
src = fetchurl {
- url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.10.4.tgz";
- sha512 = "2KcHOC0hps8Hi1OJH+BQOQ9ARXv2JAewwsknzakPFnVgWQGtQTvLqbpqdg75KPIXPpleRHnYGFFjOcJQJy43/Q==";
+ url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.11.3.tgz";
+ sha512 = "PqC0gPEh8iYxIrpZN1bSBma+pTjCOOChyxCH9/Zwm4YewIk4wASG2mjZgsvN4kUqTNHzS38twl3fG1P+13ZwYQ==";
};
dependencies = [
sources."@babel/code-frame-7.12.13"
@@ -99868,22 +100678,33 @@ in
sources."@babel/helper-split-export-declaration-7.12.13"
sources."@babel/helper-validator-identifier-7.12.11"
sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.13"
+ sources."@babel/parser-7.13.15"
sources."@babel/runtime-7.13.10"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.13"
+ sources."@babel/traverse-7.13.15"
sources."@babel/types-7.13.14"
sources."@emotion/is-prop-valid-0.8.8"
sources."@emotion/memoize-0.7.4"
sources."@emotion/stylis-0.8.5"
sources."@emotion/unitless-0.7.5"
sources."@exodus/schemasafe-1.0.0-rc.3"
+ sources."@redocly/ajv-6.12.4"
+ (sources."@redocly/openapi-core-1.0.0-beta.44" // {
+ dependencies = [
+ sources."@types/node-14.14.37"
+ ];
+ })
sources."@redocly/react-dropdown-aria-2.0.11"
sources."@types/node-13.13.48"
- sources."ajv-5.5.2"
+ (sources."ajv-5.5.2" // {
+ dependencies = [
+ sources."fast-deep-equal-1.1.0"
+ sources."json-schema-traverse-0.3.1"
+ ];
+ })
sources."ansi-regex-5.0.0"
sources."ansi-styles-3.2.1"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."argparse-1.0.10"
(sources."asn1.js-5.4.1" // {
dependencies = [
@@ -99897,10 +100718,12 @@ in
})
sources."babel-plugin-styled-components-1.12.0"
sources."babel-plugin-syntax-jsx-6.18.0"
+ sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
sources."better-ajv-errors-0.6.7"
sources."binary-extensions-2.2.0"
sources."bn.js-5.2.0"
+ sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."brorand-1.1.0"
sources."browserify-aes-1.2.0"
@@ -99935,9 +100758,11 @@ in
sources."code-error-fragment-0.0.230"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
+ sources."colorette-1.2.2"
+ sources."concat-map-0.0.1"
sources."console-browserify-1.2.0"
sources."constants-browserify-1.0.0"
- sources."core-js-3.10.0"
+ sources."core-js-3.10.1"
sources."core-util-is-1.0.2"
(sources."create-ecdh-4.0.4" // {
dependencies = [
@@ -99975,13 +100800,12 @@ in
sources."eventemitter3-4.0.7"
sources."events-3.3.0"
sources."evp_bytestokey-1.0.3"
- sources."fast-deep-equal-1.1.0"
+ sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-safe-stringify-2.0.7"
sources."fill-range-7.0.1"
sources."find-up-4.1.0"
sources."foreach-2.0.5"
- sources."format-util-1.0.5"
sources."fsevents-2.3.2"
sources."get-caller-file-2.0.5"
sources."glob-parent-5.1.2"
@@ -100013,17 +100837,18 @@ in
sources."is-glob-4.0.1"
sources."is-number-7.0.0"
sources."isarray-2.0.5"
+ sources."js-levenshtein-1.1.6"
sources."js-tokens-4.0.0"
sources."js-yaml-3.14.1"
sources."jsesc-2.5.2"
sources."json-pointer-0.6.1"
- sources."json-schema-ref-parser-6.1.0"
- sources."json-schema-traverse-0.3.1"
+ sources."json-schema-traverse-0.4.1"
sources."json-to-ast-2.1.0"
sources."jsonpointer-4.1.0"
sources."leven-3.1.0"
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
+ sources."lodash.isequal-4.5.0"
sources."loose-envify-1.4.0"
sources."lunr-2.3.8"
sources."mark.js-8.11.1"
@@ -100037,13 +100862,15 @@ in
})
sources."minimalistic-assert-1.0.1"
sources."minimalistic-crypto-utils-1.0.1"
+ sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-1.0.4"
- sources."mobx-6.1.8"
+ sources."mobx-6.2.0"
sources."mobx-react-7.1.0"
sources."mobx-react-lite-3.2.0"
sources."ms-2.1.2"
sources."neo-async-2.6.2"
+ sources."node-fetch-2.6.1"
sources."node-fetch-h2-2.3.0"
sources."node-libs-browser-2.2.1"
sources."node-readfiles-0.2.0"
@@ -100058,7 +100885,6 @@ in
sources."oas-schema-walker-1.1.5"
sources."oas-validator-4.0.8"
sources."object-assign-4.1.1"
- sources."ono-4.0.11"
sources."openapi-sampler-1.0.0-beta.18"
sources."os-browserify-0.3.0"
sources."p-limit-2.3.0"
@@ -100068,9 +100894,9 @@ in
sources."parse-asn1-5.1.6"
sources."path-browserify-0.0.1"
sources."path-exists-4.0.0"
- sources."pbkdf2-3.1.1"
+ sources."pbkdf2-3.1.2"
sources."perfect-scrollbar-1.5.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."polished-3.7.1"
sources."postcss-value-parser-4.1.0"
sources."prismjs-1.23.0"
@@ -100090,7 +100916,7 @@ in
sources."react-16.14.0"
sources."react-dom-16.14.0"
sources."react-is-16.13.1"
- sources."react-tabs-3.2.1"
+ sources."react-tabs-3.2.2"
(sources."readable-stream-2.3.7" // {
dependencies = [
sources."inherits-2.0.4"
@@ -100100,7 +100926,7 @@ in
];
})
sources."readdirp-3.5.0"
- sources."redoc-2.0.0-rc.50"
+ sources."redoc-2.0.0-rc.53"
sources."reftools-1.1.8"
sources."regenerator-runtime-0.13.8"
sources."require-directory-2.1.1"
@@ -100139,7 +100965,12 @@ in
sources."to-regex-range-5.0.1"
sources."tslib-2.2.0"
sources."tty-browserify-0.0.0"
- sources."uglify-js-3.13.3"
+ sources."uglify-js-3.13.4"
+ (sources."uri-js-4.4.1" // {
+ dependencies = [
+ sources."punycode-2.1.1"
+ ];
+ })
(sources."url-0.11.0" // {
dependencies = [
sources."punycode-1.3.2"
@@ -100163,8 +100994,9 @@ in
];
})
sources."xtend-4.0.2"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yaml-1.10.2"
+ sources."yaml-ast-parser-0.0.43"
(sources."yargs-15.4.1" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -100172,7 +101004,7 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."wrap-ansi-6.2.0"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yargs-parser-18.1.3"
];
})
@@ -100240,10 +101072,10 @@ in
rollup = nodeEnv.buildNodePackage {
name = "rollup";
packageName = "rollup";
- version = "2.44.0";
+ version = "2.45.2";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.44.0.tgz";
- sha512 = "rGSF4pLwvuaH/x4nAS+zP6UNn5YUDWf/TeEU5IoXSZKBbKRNTCI3qMnYXKZgrC0D2KzS2baiOZt1OlqhMu5rnQ==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.45.2.tgz";
+ sha512 = "kRRU7wXzFHUzBIv0GfoFFIN3m9oteY4uAsKllIpQDId5cfnkWF2J130l+27dzDju0E6MScKiV0ZM5Bw8m4blYQ==";
};
dependencies = [
sources."fsevents-2.3.2"
@@ -100294,16 +101126,16 @@ in
sources."@types/minimatch-3.0.4"
sources."@types/mocha-8.2.2"
sources."@types/node-12.12.70"
- sources."@types/node-fetch-2.5.9"
+ sources."@types/node-fetch-2.5.10"
sources."@types/resolve-1.17.1"
sources."@types/vscode-1.55.0"
- sources."@typescript-eslint/eslint-plugin-4.21.0"
- sources."@typescript-eslint/experimental-utils-4.21.0"
- sources."@typescript-eslint/parser-4.21.0"
- sources."@typescript-eslint/scope-manager-4.21.0"
- sources."@typescript-eslint/types-4.21.0"
- sources."@typescript-eslint/typescript-estree-4.21.0"
- sources."@typescript-eslint/visitor-keys-4.21.0"
+ sources."@typescript-eslint/eslint-plugin-4.22.0"
+ sources."@typescript-eslint/experimental-utils-4.22.0"
+ sources."@typescript-eslint/parser-4.22.0"
+ sources."@typescript-eslint/scope-manager-4.22.0"
+ sources."@typescript-eslint/types-4.22.0"
+ sources."@typescript-eslint/typescript-estree-4.22.0"
+ sources."@typescript-eslint/visitor-keys-4.22.0"
sources."@ungap/promise-all-settled-1.1.2"
sources."acorn-7.4.1"
sources."acorn-jsx-5.3.1"
@@ -100312,7 +101144,7 @@ in
sources."ansi-colors-4.1.1"
sources."ansi-regex-5.0.0"
sources."ansi-styles-3.2.1"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."argparse-1.0.10"
sources."array-union-2.1.0"
sources."astral-regex-2.0.0"
@@ -100344,8 +101176,8 @@ in
sources."supports-color-7.2.0"
];
})
- sources."cheerio-1.0.0-rc.5"
- sources."cheerio-select-tmp-0.1.1"
+ sources."cheerio-1.0.0-rc.6"
+ sources."cheerio-select-1.3.0"
sources."chokidar-3.5.1"
sources."cliui-7.0.4"
sources."color-convert-1.9.3"
@@ -100357,8 +101189,8 @@ in
sources."concat-map-0.0.1"
sources."core-util-is-1.0.2"
sources."cross-spawn-7.0.3"
- sources."css-select-3.1.2"
- sources."css-what-4.0.0"
+ sources."css-select-4.0.0"
+ sources."css-what-5.0.0"
sources."debug-4.3.2"
sources."decamelize-4.0.0"
sources."deep-is-0.1.3"
@@ -100368,10 +101200,10 @@ in
sources."diff-5.0.0"
sources."dir-glob-3.0.1"
sources."doctrine-3.0.0"
- sources."dom-serializer-1.2.0"
+ sources."dom-serializer-1.3.1"
sources."domelementtype-2.2.0"
sources."domhandler-4.1.0"
- sources."domutils-2.5.1"
+ sources."domutils-2.5.2"
sources."duplexer2-0.1.4"
(sources."editorconfig-0.15.3" // {
dependencies = [
@@ -100382,10 +101214,10 @@ in
})
sources."emoji-regex-8.0.0"
sources."enquirer-2.3.6"
- sources."entities-2.1.0"
+ sources."entities-2.2.0"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
- (sources."eslint-7.23.0" // {
+ (sources."eslint-7.24.0" // {
dependencies = [
sources."ignore-4.0.6"
];
@@ -100442,7 +101274,7 @@ in
sources."get-intrinsic-1.1.1"
sources."glob-7.1.6"
sources."glob-parent-5.1.2"
- (sources."globals-13.7.0" // {
+ (sources."globals-13.8.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -100454,7 +101286,7 @@ in
sources."has-flag-3.0.0"
sources."has-symbols-1.0.2"
sources."he-1.2.0"
- sources."htmlparser2-6.0.1"
+ sources."htmlparser2-6.1.0"
sources."http-proxy-agent-4.0.1"
sources."https-proxy-agent-5.0.0"
sources."ignore-5.1.8"
@@ -100499,7 +101331,7 @@ in
})
sources."mdurl-1.0.1"
sources."merge2-1.4.1"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."mime-1.6.0"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
@@ -100550,7 +101382,7 @@ in
sources."path-parse-1.0.6"
sources."path-type-4.0.0"
sources."pend-1.2.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."prelude-ls-1.2.1"
sources."process-nextick-args-2.0.1"
sources."progress-2.0.3"
@@ -100572,7 +101404,7 @@ in
sources."resolve-from-4.0.0"
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
- sources."rollup-2.44.0"
+ sources."rollup-2.45.2"
sources."run-parallel-1.2.0"
sources."safe-buffer-5.2.1"
sources."semver-7.3.5"
@@ -100602,7 +101434,7 @@ in
sources."supports-color-5.5.0"
(sources."table-6.0.9" // {
dependencies = [
- sources."ajv-8.0.5"
+ sources."ajv-8.1.0"
sources."json-schema-traverse-1.0.0"
];
})
@@ -100620,7 +101452,7 @@ in
sources."type-check-0.4.0"
sources."type-fest-0.8.1"
sources."typed-rest-client-1.2.0"
- sources."typescript-4.2.3"
+ sources."typescript-4.2.4"
sources."typescript-formatter-7.2.2"
sources."uc.micro-1.0.6"
sources."underscore-1.8.3"
@@ -100660,7 +101492,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.4"
@@ -100817,7 +101649,7 @@ in
sha512 = "Sl6mIeGpzjIUZqvKnKETfMf0iDAswD9TNlv13A7aAF3XZlRPMq4VvJWBC2N2DXbp94MQVdNSFG6LfF/iOXrPHQ==";
};
dependencies = [
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
sources."braces-3.0.2"
sources."chokidar-3.5.1"
@@ -100829,7 +101661,7 @@ in
sources."is-glob-4.0.1"
sources."is-number-7.0.0"
sources."normalize-path-3.0.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."readdirp-3.5.0"
sources."to-regex-range-5.0.1"
];
@@ -100974,10 +101806,10 @@ in
serverless = nodeEnv.buildNodePackage {
name = "serverless";
packageName = "serverless";
- version = "2.33.1";
+ version = "2.35.0";
src = fetchurl {
- url = "https://registry.npmjs.org/serverless/-/serverless-2.33.1.tgz";
- sha512 = "NLRnK6376mAjGYnsfjr3UCIX8pH6US1hHow3ESRs+/ycIzRdG/LXlDAgq+4vLnPQ8t8vc9ZyU8FTFfrSR4sHqg==";
+ url = "https://registry.npmjs.org/serverless/-/serverless-2.35.0.tgz";
+ sha512 = "qtPKwZ3bSO/PB9sshKlTO0lgSvk8m0B21XQ3myxr27vVgyF5AL/NKnKDYkEOutFMAWXp5eJS/3OUqaO5uXlq+A==";
};
dependencies = [
sources."2-thenable-1.0.0"
@@ -101009,24 +101841,12 @@ in
];
})
sources."@serverless/component-metrics-1.0.8"
- (sources."@serverless/components-3.8.1" // {
+ (sources."@serverless/components-3.8.2" // {
dependencies = [
- (sources."@serverless/utils-3.1.0" // {
- dependencies = [
- sources."js-yaml-4.0.0"
- ];
- })
sources."ansi-regex-5.0.0"
- sources."argparse-2.0.1"
- (sources."js-yaml-3.14.1" // {
- dependencies = [
- sources."argparse-1.0.10"
- ];
- })
- sources."jwt-decode-3.1.2"
+ sources."js-yaml-3.14.1"
sources."ramda-0.27.1"
sources."strip-ansi-6.0.0"
- sources."write-file-atomic-3.0.3"
];
})
(sources."@serverless/core-1.1.2" // {
@@ -101044,7 +101864,7 @@ in
sources."js-yaml-3.14.1"
];
})
- (sources."@serverless/platform-client-china-2.1.9" // {
+ (sources."@serverless/platform-client-china-2.1.10" // {
dependencies = [
sources."js-yaml-3.14.1"
];
@@ -101091,7 +101911,7 @@ in
sources."ansi-escapes-4.3.2"
sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."aproba-1.2.0"
(sources."archive-type-4.0.0" // {
dependencies = [
@@ -101127,7 +101947,7 @@ in
sources."async-2.6.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.880.0" // {
+ (sources."aws-sdk-2.885.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -101362,7 +102182,7 @@ in
sources."file-uri-to-path-1.0.0"
sources."filename-reserved-regex-2.0.0"
sources."filenamify-3.0.0"
- sources."filesize-6.1.0"
+ sources."filesize-6.2.1"
sources."fill-range-7.0.1"
sources."find-requires-1.0.0"
sources."flat-5.0.2"
@@ -101461,7 +102281,7 @@ in
sources."into-stream-3.1.0"
sources."is-arrayish-0.3.2"
sources."is-binary-path-2.1.0"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-1.0.0"
sources."is-glob-4.0.1"
@@ -101554,7 +102374,7 @@ in
})
sources."merge2-1.4.1"
sources."methods-1.1.2"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."mime-1.6.0"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
@@ -101619,7 +102439,7 @@ in
sources."path-type-4.0.0"
sources."pend-1.2.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-2.3.0"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -101664,7 +102484,7 @@ in
})
sources."request-promise-core-1.1.4"
sources."request-promise-native-1.0.9"
- sources."resolve-alpn-1.0.0"
+ sources."resolve-alpn-1.1.1"
sources."responselike-1.0.2"
sources."restore-cursor-3.1.0"
sources."retry-0.10.1"
@@ -102248,7 +103068,7 @@ in
sources."readable-stream-2.3.7"
sources."readdirp-2.2.1"
sources."regex-not-1.0.2"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."resolve-url-0.2.1"
sources."ret-0.1.15"
@@ -102496,10 +103316,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.526.0";
+ version = "1.535.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.526.0.tgz";
- sha512 = "HVJFcE/eA0J4uYubQ2t1RYQdXOKfQg4BbeTt8nKQisT92vWASX+BWqhPuiYQNpcUgca7x3V33LYf/bDJtXAbJQ==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.535.0.tgz";
+ sha512 = "NQpGzXb66WvMGkZ2vye58LST1lJFN+diEQ76dlTdh/e2KgFb/qmevo/VgDqAsMsFW6h0rE8V6tFqVBDb8mfEBw==";
};
dependencies = [
sources."@arcanis/slice-ansi-1.0.2"
@@ -102525,7 +103345,7 @@ in
})
sources."@snyk/docker-registry-v2-client-1.13.9"
sources."@snyk/fast-glob-3.2.6-patch"
- (sources."@snyk/fix-1.518.0" // {
+ (sources."@snyk/fix-1.526.0" // {
dependencies = [
sources."chalk-4.1.0"
sources."strip-ansi-6.0.0"
@@ -102547,7 +103367,7 @@ in
sources."tmp-0.2.1"
];
})
- (sources."@snyk/mix-parser-1.1.1" // {
+ (sources."@snyk/mix-parser-1.3.0" // {
dependencies = [
sources."tslib-2.2.0"
];
@@ -102563,7 +103383,7 @@ in
sources."tmp-0.1.0"
];
})
- (sources."@snyk/snyk-hex-plugin-1.0.0" // {
+ (sources."@snyk/snyk-hex-plugin-1.1.1" // {
dependencies = [
sources."tslib-2.2.0"
];
@@ -102698,7 +103518,7 @@ in
sources."color-name-1.1.4"
sources."concat-map-0.0.1"
sources."configstore-5.0.1"
- sources."core-js-3.10.0"
+ sources."core-js-3.10.1"
sources."core-util-is-1.0.2"
(sources."cross-spawn-6.0.5" // {
dependencies = [
@@ -102798,7 +103618,7 @@ in
sources."is-callable-1.2.3"
sources."is-ci-2.0.0"
sources."is-deflate-1.0.0"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
@@ -102958,7 +103778,7 @@ in
sources."path-key-2.0.1"
sources."path-type-4.0.0"
sources."peek-stream-1.1.3"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pluralize-7.0.0"
sources."prepend-http-2.0.0"
sources."pretty-bytes-5.6.0"
@@ -102985,7 +103805,7 @@ in
sources."readable-stream-3.6.0"
sources."registry-auth-token-4.2.1"
sources."registry-url-5.1.0"
- sources."resolve-alpn-1.0.0"
+ sources."resolve-alpn-1.1.1"
sources."responselike-2.0.0"
sources."restore-cursor-3.1.0"
sources."reusify-1.0.4"
@@ -103092,7 +103912,7 @@ in
sources."yallist-3.1.1"
];
})
- sources."snyk-python-plugin-1.19.7"
+ sources."snyk-python-plugin-1.19.8"
sources."snyk-resolve-1.1.0"
(sources."snyk-resolve-deps-4.7.2" // {
dependencies = [
@@ -103174,6 +103994,7 @@ in
sources."type-fest-0.21.3"
sources."typedarray-to-buffer-3.1.5"
sources."unique-string-2.0.0"
+ sources."upath-2.0.1"
(sources."update-notifier-4.1.3" // {
dependencies = [
sources."chalk-3.0.0"
@@ -103318,7 +104139,7 @@ in
sources."graceful-fs-4.2.6"
sources."has-1.0.3"
sources."has-flag-3.0.0"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."http-proxy-agent-2.1.0"
sources."https-proxy-agent-3.0.1"
sources."import-lazy-2.1.0"
@@ -103786,14 +104607,14 @@ in
sources."is-symbol-1.0.3"
sources."is-typed-array-1.1.5"
sources."is-typedarray-1.0.0"
- sources."is-valid-domain-0.0.17"
+ sources."is-valid-domain-0.0.19"
sources."is-weakmap-2.0.1"
sources."is-weakset-2.0.1"
sources."is-windows-1.0.2"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isobject-2.1.0"
- (sources."jitdb-2.3.5" // {
+ (sources."jitdb-3.0.2" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."push-stream-11.0.0"
@@ -104044,6 +104865,7 @@ in
sources."pull-write-file-0.2.4"
sources."pull-ws-3.3.2"
sources."pump-3.0.0"
+ sources."punycode-1.4.1"
sources."push-stream-10.1.2"
sources."push-stream-to-pull-stream-1.0.3"
sources."quicktask-1.0.1"
@@ -104139,7 +104961,7 @@ in
})
sources."remark-html-2.0.2"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."resolve-1.17.0"
sources."resolve-url-0.2.1"
@@ -104224,7 +105046,7 @@ in
sources."ssb-client-4.9.0"
sources."ssb-config-3.4.5"
sources."ssb-db-19.2.0"
- (sources."ssb-db2-1.18.7" // {
+ (sources."ssb-db2-2.0.0" // {
dependencies = [
sources."abstract-leveldown-6.2.3"
(sources."flumecodec-0.0.1" // {
@@ -104247,14 +105069,14 @@ in
];
})
sources."ssb-ebt-5.6.7"
- (sources."ssb-friends-4.4.4" // {
+ (sources."ssb-friends-4.4.5" // {
dependencies = [
sources."flumecodec-0.0.1"
sources."level-codec-6.2.0"
];
})
sources."ssb-gossip-1.1.1"
- (sources."ssb-invite-2.1.6" // {
+ (sources."ssb-invite-2.1.7" // {
dependencies = [
sources."abstract-leveldown-6.2.3"
sources."level-6.0.1"
@@ -104492,7 +105314,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.880.0" // {
+ (sources."aws-sdk-2.885.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -104721,7 +105543,7 @@ in
];
})
sources."hoek-2.16.3"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
(sources."http-errors-1.7.2" // {
dependencies = [
sources."inherits-2.0.3"
@@ -105216,7 +106038,7 @@ in
sources."xpath-0.0.5"
sources."xpath.js-1.1.0"
sources."xtend-4.0.2"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yallist-2.1.2"
(sources."yargs-6.6.0" // {
dependencies = [
@@ -105269,8 +106091,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.12"
- sources."@babel/core-7.13.14"
+ sources."@babel/compat-data-7.13.15"
+ sources."@babel/core-7.13.15"
sources."@babel/generator-7.13.9"
sources."@babel/helper-compilation-targets-7.13.13"
sources."@babel/helper-function-name-7.12.13"
@@ -105290,9 +106112,9 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.13.13"
+ sources."@babel/parser-7.13.15"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.13"
+ sources."@babel/traverse-7.13.15"
sources."@babel/types-7.13.14"
sources."@nodelib/fs.scandir-2.1.4"
sources."@nodelib/fs.stat-2.0.4"
@@ -105304,7 +106126,7 @@ in
sources."@types/normalize-package-data-2.4.0"
sources."@types/parse-json-4.0.0"
sources."@types/unist-2.0.3"
- sources."ajv-8.0.5"
+ sources."ajv-8.1.0"
sources."ansi-regex-5.0.0"
sources."ansi-styles-3.2.1"
sources."array-union-2.1.0"
@@ -105315,12 +106137,12 @@ in
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.16.3"
+ sources."browserslist-4.16.4"
sources."call-bind-1.0.2"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001207"
+ sources."caniuse-lite-1.0.30001208"
(sources."chalk-4.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -105358,7 +106180,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.708"
+ sources."electron-to-chromium-1.3.713"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -105443,7 +106265,7 @@ in
sources."log-symbols-4.1.0"
sources."longest-streak-2.0.4"
sources."lru-cache-6.0.0"
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
sources."mathml-tag-names-2.1.3"
sources."mdast-util-from-markdown-0.8.5"
sources."mdast-util-to-markdown-0.6.5"
@@ -105451,7 +106273,7 @@ in
sources."meow-9.0.0"
sources."merge2-1.4.1"
sources."micromark-2.11.4"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."min-indent-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
@@ -105481,7 +106303,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-parse-1.0.6"
sources."path-type-4.0.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
(sources."postcss-7.0.35" // {
dependencies = [
(sources."chalk-2.4.2" // {
@@ -105508,7 +106330,7 @@ in
sources."quick-lru-4.0.1"
(sources."read-pkg-5.2.0" // {
dependencies = [
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."normalize-package-data-2.5.0"
sources."semver-5.7.1"
sources."type-fest-0.6.0"
@@ -105611,7 +106433,7 @@ in
sources."@types/node-14.14.37"
sources."@types/pug-2.0.4"
sources."@types/sass-1.16.0"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."balanced-match-1.0.2"
sources."binary-extensions-2.2.0"
sources."brace-expansion-1.1.11"
@@ -105643,7 +106465,7 @@ in
sources."once-1.4.0"
sources."pascal-case-3.1.2"
sources."path-is-absolute-1.0.1"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."prettier-2.2.1"
sources."prettier-plugin-svelte-2.2.0"
sources."readdirp-3.5.0"
@@ -105654,7 +106476,7 @@ in
sources."svelte2tsx-0.1.186"
sources."to-regex-range-5.0.1"
sources."tslib-2.2.0"
- sources."typescript-4.2.3"
+ sources."typescript-4.2.4"
sources."vscode-css-languageservice-5.0.0"
sources."vscode-emmet-helper-2.1.2"
sources."vscode-html-languageservice-4.0.0"
@@ -105697,10 +106519,10 @@ in
sources."css-tree-1.1.3"
sources."css-what-4.0.0"
sources."csso-4.2.0"
- sources."dom-serializer-1.2.0"
+ sources."dom-serializer-1.3.1"
sources."domelementtype-2.2.0"
sources."domhandler-4.1.0"
- sources."domutils-2.5.1"
+ sources."domutils-2.5.2"
sources."entities-2.2.0"
sources."has-flag-4.0.0"
sources."mdn-data-2.0.14"
@@ -106156,7 +106978,7 @@ in
sources."registry-auth-token-3.4.0"
sources."registry-url-3.1.0"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."resolve-url-0.2.1"
sources."restore-cursor-1.0.1"
@@ -106298,7 +107120,7 @@ in
sources."truncate-utf8-bytes-1.0.2"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- sources."uglify-js-3.13.3"
+ sources."uglify-js-3.13.4"
sources."undefsafe-2.0.3"
(sources."union-value-1.0.1" // {
dependencies = [
@@ -106465,7 +107287,7 @@ in
sources."which-module-2.0.0"
sources."wrap-ansi-5.1.0"
sources."ws-6.2.1"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yargs-13.3.2"
sources."yargs-parser-13.1.2"
];
@@ -106605,7 +107427,7 @@ in
sources."has-1.0.3"
sources."has-ansi-2.0.0"
sources."has-symbols-1.0.2"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-alphabetical-1.0.4"
@@ -106826,7 +107648,7 @@ in
sources."@types/normalize-package-data-2.4.0"
sources."@types/parse5-5.0.3"
sources."@types/unist-2.0.3"
- sources."acorn-8.1.0"
+ sources."acorn-8.1.1"
sources."acorn-jsx-5.3.1"
sources."alex-9.1.0"
(sources."ansi-align-3.0.0" // {
@@ -106949,7 +107771,7 @@ in
sources."hast-util-to-string-1.0.4"
sources."hast-util-whitespace-1.0.4"
sources."hastscript-6.0.0"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."http-cache-semantics-4.1.0"
sources."ignore-5.1.8"
sources."import-lazy-2.1.0"
@@ -107006,7 +107828,7 @@ in
sources."semver-6.3.0"
];
})
- sources."map-obj-4.2.0"
+ sources."map-obj-4.2.1"
sources."map-stream-0.1.0"
sources."markdown-escapes-1.0.4"
sources."mdast-comment-marker-1.1.2"
@@ -107371,46 +108193,21 @@ in
sources."@textlint/types-1.5.4"
sources."boundary-1.0.1"
sources."buffer-from-1.1.1"
- sources."call-bind-1.0.2"
sources."concat-stream-2.0.0"
- sources."define-properties-1.1.3"
- sources."es-abstract-1.18.0"
- sources."es-to-primitive-1.2.1"
- sources."function-bind-1.1.1"
- sources."get-intrinsic-1.1.1"
- sources."has-1.0.3"
- sources."has-bigints-1.0.1"
- sources."has-symbols-1.0.2"
sources."inherits-2.0.4"
- sources."is-bigint-1.0.1"
- sources."is-boolean-object-1.1.0"
- sources."is-callable-1.2.3"
- sources."is-date-object-1.0.2"
- sources."is-negative-zero-2.0.1"
- sources."is-number-object-1.0.4"
- sources."is-regex-1.1.2"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
sources."object-assign-4.1.1"
- sources."object-inspect-1.9.0"
- sources."object-keys-1.1.1"
- sources."object.assign-4.1.2"
- sources."object.values-1.1.3"
+ sources."object_values-0.1.2"
sources."readable-stream-3.6.0"
sources."safe-buffer-5.2.1"
- sources."sentence-splitter-3.2.0"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
+ sources."sentence-splitter-3.2.1"
sources."string_decoder-1.3.0"
sources."structured-source-3.0.2"
sources."textlint-rule-helper-2.1.1"
sources."typedarray-0.0.6"
- sources."unbox-primitive-1.0.1"
sources."unist-util-is-3.0.0"
sources."unist-util-visit-1.4.1"
sources."unist-util-visit-parents-2.1.2"
sources."util-deprecate-1.0.2"
- sources."which-boxed-primitive-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -107713,7 +108510,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.10.0"
+ sources."core-js-3.10.1"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -107964,7 +108761,7 @@ in
sources."uuid-3.4.0"
];
})
- sources."resolve-alpn-1.0.0"
+ sources."resolve-alpn-1.1.1"
sources."responselike-2.0.0"
sources."rimraf-2.7.1"
sources."safe-buffer-5.2.1"
@@ -108503,10 +109300,10 @@ in
typescript = nodeEnv.buildNodePackage {
name = "typescript";
packageName = "typescript";
- version = "4.2.3";
+ version = "4.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-4.2.3.tgz";
- sha512 = "qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz";
+ sha512 = "V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -108558,10 +109355,10 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.13.3";
+ version = "3.13.4";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.3.tgz";
- sha512 = "otIc7O9LyxpUcQoXzj2hL4LPWKklO6LJWoJUzNa8A17Xgi4fOeDC8FBDOLHnC/Slo1CQgsZMcM6as0M76BZaig==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.4.tgz";
+ sha512 = "kv7fCkIXyQIilD5/yQy8O+uagsYIOt5cZvs890W40/e/rvjMSzJw81o9Bg0tkURxzZBROtDQhW2LFjOGoK3RZw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -108660,7 +109457,7 @@ in
sources."depd-1.1.2"
sources."destroy-1.0.4"
sources."diff-5.0.0"
- sources."diff2html-3.4.2"
+ sources."diff2html-3.4.3"
sources."dnd-page-scroll-0.0.4"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
@@ -108714,7 +109511,7 @@ in
sources."ini-1.3.8"
sources."ipaddr.js-1.9.1"
sources."is-arrayish-0.3.2"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-stream-2.0.0"
sources."is-wsl-2.2.0"
@@ -108863,7 +109660,7 @@ in
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
sources."ws-7.4.4"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yallist-2.1.2"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.7"
@@ -108926,7 +109723,7 @@ in
sources."d3-quadtree-2.0.0"
sources."d3-scale-3.2.4"
sources."d3-shape-2.1.0"
- sources."d3-time-2.0.0"
+ sources."d3-time-2.1.1"
sources."d3-time-format-3.0.0"
sources."d3-timer-2.0.0"
sources."debug-3.2.7"
@@ -109040,7 +109837,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yallist-3.1.1"
(sources."yargs-16.2.0" // {
dependencies = [
@@ -109095,7 +109892,7 @@ in
sources."vega-expression-4.0.1"
sources."vega-util-1.16.1"
sources."wrap-ansi-7.0.0"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.7"
];
@@ -109112,10 +109909,10 @@ in
vim-language-server = nodeEnv.buildNodePackage {
name = "vim-language-server";
packageName = "vim-language-server";
- version = "2.2.1";
+ version = "2.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.2.1.tgz";
- sha512 = "AJATzCMaiLr8I3qzjX5OH+G8vOijMWnN/AaS2D92+OM3SsdRHhlX6auNpzqaw8hcW4IbthV6EKtYM4lPqiHDdA==";
+ url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.2.2.tgz";
+ sha512 = "kM1XAb7NE+jwZ4ClyHMUWvd/0eDBSW8fBGaVinuRDgqMvavTrlo7SUlsgHzZhlTjTk+ZaDMfyVQBZUVNytprkg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -109322,7 +110119,7 @@ in
sources."ansi-colors-3.2.3"
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."aproba-1.2.0"
sources."argparse-1.0.10"
sources."arr-diff-4.0.0"
@@ -109395,11 +110192,11 @@ in
sources."supports-color-5.5.0"
];
})
- sources."cheerio-1.0.0-rc.5"
- sources."cheerio-select-tmp-0.1.1"
+ sources."cheerio-1.0.0-rc.6"
+ sources."cheerio-select-1.3.0"
sources."chokidar-3.3.0"
sources."chownr-1.1.4"
- sources."chrome-trace-event-1.0.2"
+ sources."chrome-trace-event-1.0.3"
sources."cipher-base-1.0.4"
(sources."class-utils-0.3.6" // {
dependencies = [
@@ -109454,8 +110251,8 @@ in
sources."create-hmac-1.1.7"
sources."cross-spawn-6.0.5"
sources."crypto-browserify-3.12.0"
- sources."css-select-3.1.2"
- sources."css-what-4.0.0"
+ sources."css-select-4.0.0"
+ sources."css-what-5.0.0"
sources."cyclist-1.0.1"
sources."debug-3.2.6"
sources."decamelize-1.2.0"
@@ -109471,11 +110268,11 @@ in
sources."bn.js-4.12.0"
];
})
- sources."dom-serializer-1.2.0"
+ sources."dom-serializer-1.3.1"
sources."domain-browser-1.2.0"
sources."domelementtype-2.2.0"
sources."domhandler-4.1.0"
- sources."domutils-2.5.1"
+ sources."domutils-2.5.2"
(sources."duplexify-3.7.1" // {
dependencies = [
sources."isarray-1.0.0"
@@ -109499,7 +110296,7 @@ in
sources."string_decoder-1.1.1"
];
})
- sources."entities-2.1.0"
+ sources."entities-2.2.0"
sources."errno-0.1.8"
(sources."es-abstract-1.18.0" // {
dependencies = [
@@ -109621,7 +110418,7 @@ in
sources."he-1.2.0"
sources."hmac-drbg-1.0.1"
sources."homedir-polyfill-1.0.3"
- sources."htmlparser2-6.0.1"
+ sources."htmlparser2-6.1.0"
sources."https-browserify-1.0.0"
sources."ieee754-1.2.1"
sources."iferr-0.1.5"
@@ -109799,9 +110596,9 @@ in
sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."pbkdf2-3.1.1"
+ sources."pbkdf2-3.1.2"
sources."pend-1.2.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-4.0.1"
sources."pkg-dir-3.0.0"
sources."posix-character-classes-0.1.1"
@@ -109830,7 +110627,7 @@ in
sources."readdirp-3.2.0"
sources."regex-not-1.0.2"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ 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"
@@ -109902,7 +110699,7 @@ in
sources."source-map-url-0.4.1"
sources."split-string-3.1.0"
sources."sprintf-js-1.0.3"
- sources."ssri-6.0.1"
+ sources."ssri-6.0.2"
(sources."static-extend-0.1.2" // {
dependencies = [
sources."define-property-0.2.5"
@@ -109972,11 +110769,10 @@ in
sources."to-regex-range-5.0.1"
(sources."ts-loader-6.2.2" // {
dependencies = [
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."semver-6.3.0"
];
})
- sources."tslib-1.14.1"
sources."tty-browserify-0.0.0"
sources."tunnel-0.0.4"
sources."typed-rest-client-1.2.0"
@@ -110071,7 +110867,7 @@ in
})
sources."wrappy-1.0.2"
sources."xtend-4.0.2"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yallist-3.1.1"
sources."yaml-1.10.2"
(sources."yargs-13.3.2" // {
@@ -110346,7 +111142,7 @@ in
sources."tslib-1.14.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."uglify-js-3.13.3"
+ sources."uglify-js-3.13.4"
sources."uid-0.0.2"
sources."unbzip2-stream-1.4.3"
sources."unyield-0.0.1"
@@ -110424,7 +111220,7 @@ in
sources."ansi-escapes-3.2.0"
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
- sources."anymatch-3.1.1"
+ sources."anymatch-3.1.2"
sources."argparse-1.0.10"
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
@@ -110725,7 +111521,7 @@ in
sources."hast-util-parse-selector-2.2.5"
sources."hast-util-to-string-1.0.4"
sources."hast-util-whitespace-1.0.4"
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."html-void-elements-1.0.5"
sources."html-whitespace-sensitive-tag-names-1.0.3"
sources."http-cache-semantics-4.1.0"
@@ -110922,7 +111718,7 @@ in
sources."path-key-2.0.1"
sources."path-parse-1.0.6"
sources."path-type-3.0.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."pify-3.0.0"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -110999,7 +111795,7 @@ in
sources."registry-auth-token-4.2.1"
sources."registry-url-5.1.0"
sources."rehype-sort-attribute-values-2.0.1"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."replace-ext-1.0.0"
sources."require-directory-2.1.1"
@@ -111489,7 +112285,7 @@ in
sources."dom-serializer-1.2.0"
sources."domelementtype-2.2.0"
sources."domhandler-4.1.0"
- sources."domutils-2.5.1"
+ sources."domutils-2.5.2"
sources."dot-prop-5.3.0"
sources."dtrace-provider-0.8.8"
sources."duplexer3-0.1.4"
@@ -111609,7 +112405,7 @@ in
sources."has-flag-4.0.0"
sources."has-symbols-1.0.2"
sources."has-yarn-2.1.0"
- sources."htmlparser2-6.0.1"
+ sources."htmlparser2-6.1.0"
sources."http-cache-semantics-4.1.0"
sources."http-signature-1.2.0"
sources."human-signals-1.1.1"
@@ -111630,7 +112426,7 @@ in
sources."is-boolean-object-1.1.0"
sources."is-ci-2.0.0"
sources."is-date-object-1.0.2"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
@@ -111884,7 +112680,7 @@ in
sources."supports-color-7.2.0"
(sources."table-6.0.9" // {
dependencies = [
- sources."ajv-8.0.5"
+ sources."ajv-8.1.0"
sources."json-schema-traverse-1.0.0"
];
})
@@ -111933,7 +112729,7 @@ in
sources."xdg-basedir-4.0.0"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
- sources."y18n-5.0.6"
+ sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.7"
@@ -111958,13 +112754,13 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "5.30.0";
+ version = "5.32.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.30.0.tgz";
- sha512 = "Zr9NIri5yzpfmaMea2lSMV1UygbW0zQsSlGLMgKUm63ACXg6alhd1u4v5UBSBjzYKXJN6BNMGVM7w165e7NxYA==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.32.0.tgz";
+ sha512 = "jB9PrNMFnPRiZGnm/j3qfNqJmP3ViRzkuQMIf8za0dgOYvSLi/cgA+UEEGvik9EQHX1KYyGng5PgBTTzGrH9xg==";
};
dependencies = [
- sources."@types/eslint-7.2.8"
+ sources."@types/eslint-7.2.9"
sources."@types/eslint-scope-3.7.0"
sources."@types/estree-0.0.46"
sources."@types/json-schema-7.0.7"
@@ -111986,16 +112782,16 @@ in
sources."@webassemblyjs/wast-printer-1.11.0"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.1.0"
+ sources."acorn-8.1.1"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
- sources."browserslist-4.16.3"
+ sources."browserslist-4.16.4"
sources."buffer-from-1.1.1"
- sources."caniuse-lite-1.0.30001207"
- sources."chrome-trace-event-1.0.2"
+ sources."caniuse-lite-1.0.30001208"
+ sources."chrome-trace-event-1.0.3"
sources."colorette-1.2.2"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.3.708"
+ sources."electron-to-chromium-1.3.713"
sources."enhanced-resolve-5.7.0"
sources."es-module-lexer-0.4.1"
sources."escalade-3.1.1"
@@ -112038,7 +112834,6 @@ in
];
})
sources."terser-webpack-plugin-5.1.1"
- sources."tslib-1.14.1"
sources."uri-js-4.4.1"
sources."watchpack-2.1.1"
sources."webpack-sources-2.2.0"
@@ -112505,7 +113300,7 @@ in
sources."regex-not-1.0.2"
sources."regexp.prototype.flags-1.3.1"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ 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"
@@ -112691,7 +113486,7 @@ in
})
sources."wrappy-1.0.2"
sources."ws-6.2.1"
- sources."y18n-4.0.1"
+ sources."y18n-4.0.3"
sources."yargs-13.3.2"
sources."yargs-parser-13.1.2"
];
@@ -112736,11 +113531,11 @@ in
sources."is-number-7.0.0"
sources."json-schema-traverse-0.4.1"
sources."merge2-1.4.1"
- sources."micromatch-4.0.2"
+ sources."micromatch-4.0.4"
sources."normalize-path-3.0.0"
sources."p-limit-3.1.0"
sources."path-type-4.0.0"
- sources."picomatch-2.2.2"
+ sources."picomatch-2.2.3"
sources."punycode-2.1.1"
sources."queue-microtask-1.2.3"
sources."randombytes-2.1.0"
@@ -112812,7 +113607,7 @@ in
sources."ms-2.1.2"
];
})
- (sources."bittorrent-tracker-9.16.1" // {
+ (sources."bittorrent-tracker-9.17.0" // {
dependencies = [
sources."debug-4.3.2"
sources."decompress-response-6.0.0"
@@ -112863,7 +113658,7 @@ in
})
sources."core-util-is-1.0.2"
sources."cpus-1.0.3"
- sources."create-torrent-4.6.0"
+ sources."create-torrent-4.7.0"
sources."debug-2.6.9"
sources."decompress-response-3.3.0"
(sources."dlnacasts-0.1.0" // {
@@ -112877,7 +113672,7 @@ in
sources."ee-first-1.1.1"
sources."elementtree-0.1.7"
sources."end-of-stream-1.4.4"
- sources."err-code-2.0.3"
+ sources."err-code-3.0.1"
sources."escape-html-1.0.3"
sources."executable-4.1.1"
sources."filestream-5.0.0"
@@ -112902,7 +113697,7 @@ in
sources."ip-set-2.1.0"
sources."ipaddr.js-2.0.0"
sources."is-ascii-1.0.0"
- sources."is-docker-2.2.0"
+ sources."is-docker-2.2.1"
sources."is-file-1.0.0"
sources."is-typedarray-1.0.0"
sources."is-wsl-2.2.0"
@@ -112997,7 +113792,7 @@ in
sources."semver-5.1.1"
sources."simple-concat-1.0.1"
sources."simple-get-2.8.1"
- (sources."simple-peer-9.10.0" // {
+ (sources."simple-peer-9.11.0" // {
dependencies = [
sources."debug-4.3.2"
sources."ms-2.1.2"
@@ -113053,7 +113848,7 @@ in
sources."utp-native-2.4.0"
sources."videostream-3.2.2"
sources."vlc-command-1.2.0"
- (sources."webtorrent-0.116.1" // {
+ (sources."webtorrent-0.116.2" // {
dependencies = [
sources."debug-4.3.2"
sources."decompress-response-6.0.0"
@@ -113109,13 +113904,119 @@ in
sha512 = "P1Ct7+DNrOcr2JAxDZ3Q5i5sx2LSveu7iLaoUL0A+YiG0GKf0l5+9j3rwMeyh6JeTL1+HfQV1rnwEvzhNIvpFw==";
};
dependencies = [
+ sources."@babel/runtime-7.13.10"
+ sources."@babel/runtime-corejs3-7.13.10"
+ sources."@types/json5-0.0.29"
sources."adverb-where-0.2.2"
+ sources."aria-query-4.2.2"
+ sources."array-includes-3.1.3"
+ sources."array.prototype.flat-1.2.4"
+ sources."array.prototype.flatmap-1.2.4"
+ sources."ast-types-flow-0.0.7"
+ sources."axe-core-4.1.4"
+ sources."axobject-query-2.2.0"
+ sources."balanced-match-1.0.2"
+ sources."brace-expansion-1.1.11"
+ sources."call-bind-1.0.2"
sources."commander-2.20.3"
+ sources."concat-map-0.0.1"
+ sources."contains-path-0.1.0"
+ sources."core-js-pure-3.10.1"
+ sources."damerau-levenshtein-1.0.6"
+ sources."debug-2.6.9"
+ sources."define-properties-1.1.3"
+ sources."doctrine-1.5.0"
sources."e-prime-0.10.4"
- sources."no-cliches-0.3.0"
+ sources."emoji-regex-9.2.2"
+ sources."error-ex-1.3.2"
+ sources."es-abstract-1.18.0"
+ sources."es-to-primitive-1.2.1"
+ sources."eslint-import-resolver-node-0.3.4"
+ sources."eslint-module-utils-2.6.0"
+ sources."eslint-plugin-import-2.22.1"
+ sources."eslint-plugin-jsx-a11y-6.4.1"
+ (sources."eslint-plugin-react-7.23.2" // {
+ dependencies = [
+ sources."doctrine-2.1.0"
+ sources."resolve-2.0.0-next.3"
+ ];
+ })
+ sources."eslint-plugin-react-hooks-4.2.0"
+ sources."esutils-2.0.3"
+ sources."find-up-2.1.0"
+ sources."function-bind-1.1.1"
+ sources."get-intrinsic-1.1.1"
+ sources."graceful-fs-4.2.6"
+ sources."has-1.0.3"
+ sources."has-bigints-1.0.1"
+ sources."has-symbols-1.0.2"
+ sources."hosted-git-info-2.8.9"
+ sources."internal-slot-1.0.3"
+ sources."is-arrayish-0.2.1"
+ sources."is-bigint-1.0.1"
+ sources."is-boolean-object-1.1.0"
+ sources."is-callable-1.2.3"
+ sources."is-core-module-2.2.0"
+ sources."is-date-object-1.0.2"
+ sources."is-negative-zero-2.0.1"
+ sources."is-number-object-1.0.4"
+ sources."is-regex-1.1.2"
+ sources."is-string-1.0.5"
+ sources."is-symbol-1.0.3"
+ sources."isarray-1.0.0"
+ sources."js-tokens-4.0.0"
+ sources."json5-1.0.1"
+ sources."jsx-ast-utils-3.2.0"
+ sources."language-subtag-registry-0.3.21"
+ sources."language-tags-1.0.5"
+ sources."load-json-file-2.0.0"
+ sources."locate-path-2.0.0"
+ sources."loose-envify-1.4.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.5"
+ sources."ms-2.0.0"
+ sources."no-cliches-0.3.2"
+ sources."normalize-package-data-2.5.0"
+ sources."object-assign-4.1.1"
+ sources."object-inspect-1.9.0"
+ sources."object-keys-1.1.1"
+ sources."object.assign-4.1.2"
+ sources."object.entries-1.1.3"
+ sources."object.fromentries-2.0.4"
+ sources."object.values-1.1.3"
+ sources."p-limit-1.3.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."parse-json-2.2.0"
sources."passive-voice-0.1.0"
+ sources."path-exists-3.0.0"
+ sources."path-parse-1.0.6"
+ sources."path-type-2.0.0"
+ sources."pify-2.3.0"
+ sources."pkg-dir-2.0.0"
+ sources."prop-types-15.7.2"
+ sources."react-is-16.13.1"
+ sources."read-pkg-2.0.0"
+ sources."read-pkg-up-2.0.0"
+ sources."regenerator-runtime-0.13.8"
+ sources."regexp.prototype.flags-1.3.1"
+ sources."resolve-1.20.0"
+ sources."semver-5.7.1"
+ sources."side-channel-1.0.4"
+ sources."spdx-correct-3.1.1"
+ sources."spdx-exceptions-2.3.0"
+ sources."spdx-expression-parse-3.0.1"
+ sources."spdx-license-ids-3.0.7"
+ sources."string.prototype.matchall-4.0.4"
+ sources."string.prototype.trimend-1.0.4"
+ sources."string.prototype.trimstart-1.0.4"
+ sources."strip-bom-3.0.0"
sources."too-wordy-0.3.1"
+ sources."tsconfig-paths-3.9.0"
+ sources."unbox-primitive-1.0.1"
+ sources."validate-npm-package-license-3.0.4"
sources."weasel-words-0.1.1"
+ sources."which-boxed-primitive-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -113326,7 +114227,7 @@ in
sources."config-chain-1.1.12"
sources."configstore-3.1.5"
sources."copy-descriptor-0.1.1"
- sources."core-js-3.10.0"
+ sources."core-js-3.10.1"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
@@ -113494,7 +114395,7 @@ in
sources."kind-of-4.0.0"
];
})
- sources."hosted-git-info-2.8.8"
+ sources."hosted-git-info-2.8.9"
sources."http-cache-semantics-3.8.1"
sources."http-signature-1.2.0"
sources."human-signals-1.1.1"
@@ -113791,7 +114692,7 @@ in
sources."registry-auth-token-3.4.0"
sources."registry-url-3.1.0"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.3"
+ sources."repeat-element-1.1.4"
sources."repeat-string-1.6.1"
sources."repeating-2.0.1"
sources."replace-ext-1.0.1"
diff --git a/third_party/nixpkgs/pkgs/development/ocaml-modules/rpclib/default.nix b/third_party/nixpkgs/pkgs/development/ocaml-modules/rpclib/default.nix
index 53b559257b..311c4caaad 100644
--- a/third_party/nixpkgs/pkgs/development/ocaml-modules/rpclib/default.nix
+++ b/third_party/nixpkgs/pkgs/development/ocaml-modules/rpclib/default.nix
@@ -5,13 +5,13 @@
buildDunePackage rec {
pname = "rpclib";
- version = "8.0.0";
+ version = "8.1.0";
useDune2 = true;
src = fetchurl {
url = "https://github.com/mirage/ocaml-rpc/releases/download/v${version}/rpclib-v${version}.tbz";
- sha256 = "1kqbixk4d9y15ns566fiyzid5jszkamm1kv7iks71invv33v7krz";
+ sha256 = "0fbajg8wq8hjhkvvfnq68br0m0pa8zf2qzadhfgi2nnr9713rada";
};
buildInputs = [ cmdliner yojson ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/aiohomekit/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/aiohomekit/default.nix
index 5a51f66b16..f9afbe22c9 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/aiohomekit/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/aiohomekit/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "aiohomekit";
- version = "0.2.60";
+ version = "0.2.61";
format = "pyproject";
disabled = pythonAtLeast "3.9";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "Jc2k";
repo = pname;
rev = version;
- sha256 = "03llk5i22hq163x568kz0qar5h0sda8f8cxbmgya6z2dcxv0a83p";
+ sha256 = "047ql5a4i4354jgr8xr2waim8j522z58vbfi7aa62jqc9l8jzxzk";
};
nativeBuildInputs = [ poetry ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/amiibo-py/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/amiibo-py/default.nix
new file mode 100644
index 0000000000..5fb70397fa
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/amiibo-py/default.nix
@@ -0,0 +1,35 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pythonOlder
+, aiohttp
+, requests
+}:
+
+buildPythonPackage rec {
+ pname = "amiibo-py";
+ version = "unstable-2021-01-16";
+ disabled = pythonOlder "3.5.3"; # Older versions are not supported upstream
+
+ src = fetchFromGitHub {
+ owner = "XiehCanCode";
+ repo = "amiibo.py";
+ rev = "4766037530f41ad11368240e994888d196783b83";
+ sha256 = "0ln8ykaws8c5fvzlzccn60mpbdbvxlhkp3nsvs2xqdbsqp270yv2";
+ };
+
+ propagatedBuildInputs = [
+ aiohttp
+ requests
+ ];
+
+ doCheck = false; # No tests are available upstream
+ pythonImportsCheck = [ "amiibo" ];
+
+ meta = with lib; {
+ description = "API Wrapper for amiiboapi.com";
+ homepage = "https://github.com/XiehCanCode/amiibo.py";
+ license = licenses.mit;
+ maintainers = [ maintainers.ivar ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/asyncio-throttle/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/asyncio-throttle/default.nix
index bf08aec41a..38f3389aa6 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/asyncio-throttle/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/asyncio-throttle/default.nix
@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "asyncio-throttle";
- version = "1.0.1";
+ version = "1.0.2";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "hallazzang";
repo = pname;
rev = "v${version}";
- sha256 = "0raqnrnp42cn1c7whbm7ajbgaczx33k6hbxsj30nh998pqxhh4sj";
+ sha256 = "1hsjcymdcm0hf4l68scf9n8j7ba89azgh96xhxrnyvwxfs5acnmv";
};
checkInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/basemap/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/basemap/default.nix
index 2fadda388b..c3d29d9324 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/basemap/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/basemap/default.nix
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
+, pythonAtLeast
, numpy
, matplotlib
, pillow
@@ -43,6 +44,7 @@ buildPythonPackage rec {
http://matplotlib.github.com/basemap/users/examples.html for examples of what it can do.
'';
license = with licenses; [ mit gpl2 ];
+ broken = pythonAtLeast "3.9";
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/boto3/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/boto3/default.nix
index 9fdd4f35d1..b7988d47e8 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/boto3/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/boto3/default.nix
@@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "boto3";
- version = "1.17.46"; # N.B: if you change this, change botocore and awscli to a matching version
+ version = "1.17.49"; # N.B: if you change this, change botocore and awscli to a matching version
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-Xe4Vv5YepYTWgfrkLFADTIOXF+dFTD2pDLV6bFLpdTI=";
+ sha256 = "sha256-pIITXDD6B+r0NwMU3Q+0kRciKiZtBCOyB1rtODXtHwQ=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/botocore/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/botocore/default.nix
index 7301ef5ae4..391a4a8b53 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/botocore/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/botocore/default.nix
@@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "botocore";
- version = "1.20.46"; # N.B: if you change this, change boto3 and awscli to a matching version
+ version = "1.20.49"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-ULvD6TQcfaqCGduYw48mASoVHKiPomAUjlvzrcvLlUE=";
+ sha256 = "sha256-9/ED+gZRxp3TYMfQ7Nh0hUMD3lzAhp4MvCgYpSuqzGk=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/cartopy/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/cartopy/default.nix
index 7e3e320675..87eafc2655 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/cartopy/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/cartopy/default.nix
@@ -1,10 +1,9 @@
-{ buildPythonPackage, lib, fetchPypi
-, pytest_4, filelock, mock, pep8
-, cython, isPy27
+{ buildPythonPackage, lib, fetchPypi, fetchpatch
+, pytestCheckHook, filelock, mock, pep8
+, cython
, six, pyshp, shapely, geos, numpy
, gdal, pillow, matplotlib, pyepsg, pykdtree, scipy, owslib, fiona
-, xvfb_run
-, proj_5 # see https://github.com/SciTools/cartopy/pull/1252 for status on proj 6 support
+, proj
}:
buildPythonPackage rec {
@@ -17,28 +16,16 @@ buildPythonPackage rec {
sha256 = "0d24fk0cbp29gmkysrwq05vry13swmwi3vx3cpcy04c0ixz33ykz";
};
- checkInputs = [ filelock mock pytest_4 pep8 ];
-
- # several tests require network connectivity: we disable them.
- # also py2.7's tk is over-eager in trying to open an x display,
- # so give it xvfb
- checkPhase = let
- maybeXvfbRun = lib.optionalString isPy27 "${xvfb_run}/bin/xvfb-run";
- in ''
- export HOME=$(mktemp -d)
- ${maybeXvfbRun} pytest --pyargs cartopy \
- -m "not network and not natural_earth" \
- -k "not test_nightshade_image and not background_img"
- '';
-
- nativeBuildInputs = [
- cython
- geos # for geos-config
- proj_5
+ patches = [
+ # Fix numpy-1.20 compatibility. Will be part of 0.19.
+ (fetchpatch {
+ url = "https://github.com/SciTools/cartopy/commit/e663bbbef07989a5f8484a8f36ea9c07e61d14ce.patch";
+ sha256 = "061kbjgzkc3apaz6sxy00pkgy3n9dxcgps5wzj4rglb5iy86n2kq";
+ })
];
buildInputs = [
- geos proj_5
+ geos proj
];
propagatedBuildInputs = [
@@ -49,12 +36,28 @@ buildPythonPackage rec {
gdal pillow matplotlib pyepsg pykdtree scipy fiona owslib
];
+ checkInputs = [ pytestCheckHook filelock mock pep8 ];
+
+ pytestFlagsArray = [
+ "--pyargs" "cartopy"
+ "-m" "'not network and not natural_earth'"
+ ];
+
+ disabledTests = [
+ "test_nightshade_image"
+ "background_img"
+ ];
+
+ nativeBuildInputs = [
+ cython
+ geos # for geos-config
+ proj
+ ];
+
meta = with lib; {
description = "Process geospatial data to create maps and perform analyses";
license = licenses.lgpl3;
homepage = "https://scitools.org.uk/cartopy/docs/latest/";
maintainers = with maintainers; [ mredaelli ];
- # following tests fail: test_eccentric_globe and test_ellipse_globe
- broken = true;
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/colorlog/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/colorlog/default.nix
index daff7bc76d..39b64e4faf 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/colorlog/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/colorlog/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "colorlog";
- version = "4.8.0";
+ version = "5.0.1";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-WbUxYMYJAsQFzewo04NW4J1AaGZZBIiT4CbsvViVFrE=";
+ sha256 = "sha256-8XwBOgaWKwL0RJ7gfP2+ayh98p78LJoVFbSjdvTliOo=";
};
checkInputs = [ pytestCheckHook ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/cvxpy/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/cvxpy/default.nix
index eca28633aa..1d060c41bb 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/cvxpy/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/cvxpy/default.nix
@@ -1,4 +1,5 @@
{ lib
+, stdenv
, pythonOlder
, buildPythonPackage
, fetchPypi
@@ -8,19 +9,21 @@
, osqp
, scipy
, scs
+, useOpenmp ? true
# Check inputs
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "cvxpy";
- version = "1.1.11";
+ version = "1.1.12";
+ format = "pyproject";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
- hash = "sha256-W4qly+g07Q1iYJ76/tGZNkBPa+oavhTDUYRQ3cZ+s1I=";
+ hash = "sha256-tJnr+uT8ZF6VI2IVc//LHFtoVKG1wM4dZqippFhgWAc=";
};
propagatedBuildInputs = [
@@ -32,12 +35,20 @@ buildPythonPackage rec {
scs
];
+ # Required flags from https://github.com/cvxgrp/cvxpy/releases/tag/v1.1.11
+ preBuild = lib.optional useOpenmp ''
+ export CFLAGS="-fopenmp"
+ export LDFLAGS="-lgomp"
+ '';
+
checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "./cvxpy" ];
# Disable the slowest benchmarking tests, cuts test time in half
disabledTests = [
"test_tv_inpainting"
"test_diffcp_sdp_example"
+ ] ++ lib.optionals stdenv.isAarch64 [
+ "test_ecos_bb_mi_lp_2" # https://github.com/cvxgrp/cvxpy/issues/1241#issuecomment-780912155
];
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/datadog/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/datadog/default.nix
index 498a813569..3e9f02e2f7 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/datadog/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/datadog/default.nix
@@ -17,11 +17,11 @@
buildPythonPackage rec {
pname = "datadog";
- version = "0.40.0";
+ version = "0.40.1";
src = fetchPypi {
inherit pname version;
- sha256 = "4bbd66a02bbcf9cd03ba05194d605a64c9efb7aed90d5e69c6ec42655c3c01a4";
+ sha256 = "sha256-Q4wd3lRi5oxceSt7Sh2HoN3ZcK89sxs88VmA7tDEQxE=";
};
postPatch = ''
@@ -43,12 +43,11 @@ buildPythonPackage rec {
];
disabledTestPaths = [
- "tests/unit/dogstatsd/test_statsd.py" # does not work in sandbox
+ "tests/performance"
];
disabledTests = [
"test_default_settings_set"
- "test_threadstats_thread_safety"
];
pythonImportsCheck = [ "datadog" ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/diagrams/build_poetry.patch b/third_party/nixpkgs/pkgs/development/python-modules/diagrams/build_poetry.patch
new file mode 100644
index 0000000000..b2e3d39dae
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/diagrams/build_poetry.patch
@@ -0,0 +1,12 @@
+diff --git a/pyproject.toml b/pyproject.toml
+index 2c93a39..6c800e2 100644
+--- a/pyproject.toml
++++ b/pyproject.toml
+@@ -24,3 +24,7 @@ isort = "^4.3"
+
+ [tool.black]
+ line-length = 120
++
++[build-system]
++requires = ["poetry_core>=1.0.0"]
++build-backend = "poetry.core.masonry.api"
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/diagrams/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/diagrams/default.nix
new file mode 100644
index 0000000000..37e23d730e
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/diagrams/default.nix
@@ -0,0 +1,49 @@
+{ lib
+, buildPythonPackage
+, pythonOlder
+, fetchFromGitHub
+, black
+, jinja2
+, poetry-core
+, round
+, graphviz
+, inkscape
+, imagemagick
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "diagrams";
+ version = "0.19.1";
+ format = "pyproject";
+ disabled = pythonOlder "3.6";
+
+ src = fetchFromGitHub {
+ owner = "mingrammer";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0qvk0cp3026n5jmwp9z7m70b6pws0h6a7slxr23glg18baxr44d4";
+ };
+
+ preConfigure = ''
+ patchShebangs autogen.sh
+ ./autogen.sh
+ '';
+
+ patches = [ ./build_poetry.patch ];
+
+ checkInputs = [ pytestCheckHook ];
+
+ # Despite living in 'tool.poetry.dependencies',
+ # these are only used at build time to process the image resource files
+ nativeBuildInputs = [ black inkscape imagemagick jinja2 poetry-core round ];
+
+ propagatedBuildInputs = [ graphviz ];
+
+ meta = with lib; {
+ description = "Diagram as Code";
+ homepage = "https://diagrams.mingrammer.com/";
+ license = licenses.mit;
+ maintainers = with maintainers; [ addict3d ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/hcloud/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/hcloud/default.nix
index 192589cdc8..1bae0d633e 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/hcloud/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/hcloud/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "hcloud";
- version = "1.11.0";
+ version = "1.12.0";
src = fetchPypi {
inherit pname version;
- sha256 = "1yq7g9hk6b95nqd0f7kvh9r8ij8k9hs6gmjif83qip98xvkdwf0b";
+ sha256 = "1fka4m3kbz52pksrjw3v42k611x5kl06dxrc7p5rb64jg6gayjfl";
};
propagatedBuildInputs = [ future requests python-dateutil ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/ircrobots/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/ircrobots/default.nix
index 947da75ce9..38cedf939a 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/ircrobots/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/ircrobots/default.nix
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "ircrobots";
- version = "0.3.7";
+ version = "0.3.8";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "jesopo";
repo = pname;
rev = "v${version}";
- sha256 = "0cm4hcmprca24d979ydbzwn9mfxw16jki6ld7yykxryf0983nqc7";
+ sha256 = "06q86dqllxvi3nssfplmjk9yxaybighwh87lrxfpfhl8yy4z68jz";
};
postPatch = ''
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/ircstates/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/ircstates/default.nix
index b5404febfa..c2813d828d 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/ircstates/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/ircstates/default.nix
@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "ircstates";
- version = "0.11.7";
+ version = "0.11.8";
disabled = pythonOlder "3.6"; # f-strings
src = fetchFromGitHub {
owner = "jesopo";
repo = pname;
rev = "v${version}";
- sha256 = "00dyd6mry10na98x1gs92xnfpjf1wd9zpblx1wcx8ggv5rqvgqrm";
+ sha256 = "0scxqcgby4vzh2q937r0wy2mb46aghjf47q3z6fp6di1b6hlj7zh";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/isbnlib/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/isbnlib/default.nix
index f9e4ba6532..db05436d04 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/isbnlib/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/isbnlib/default.nix
@@ -27,7 +27,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Extract, clean, transform, hyphenate and metadata for ISBNs";
homepage = "https://github.com/xlcnd/isbnlib";
- license = licenses.lgpl3Only;
+ license = licenses.lgpl3Plus;
maintainers = with maintainers; [ dotlambda ];
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pdfx/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pdfx/default.nix
index a8c110fdba..3b63e67fdd 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pdfx/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pdfx/default.nix
@@ -1,28 +1,24 @@
-{ lib, buildPythonPackage, fetchFromGitHub, pdfminer, chardet, pytest }:
+{ lib, buildPythonPackage, fetchFromGitHub, pdfminer, chardet, pytestCheckHook }:
buildPythonPackage rec {
pname = "pdfx";
- version = "1.3.1";
+ version = "1.4.1";
src = fetchFromGitHub {
owner = "metachris";
repo = "pdfx";
rev = "v${version}";
- sha256 = "1183k4h5qdf8y0imbir9ja3yzzsvdmqgbv3bi6dnkgr1wy2xfr0v";
+ sha256 = "sha256-POpP6XwcqwvImrtIiDjpnHoNE0MKapuPjxojo+ocBK0=";
};
- # Remove after https://github.com/metachris/pdfx/pull/28
- prePatch = ''
- sed -i -e "s|pdfminer2|pdfminer.six|" setup.py
+ postPatch = ''
+ substituteInPlace requirements.txt \
+ --replace "chardet==4.0.0" "chardet"
'';
propagatedBuildInputs = [ pdfminer chardet ];
- checkInputs = [ pytest ];
-
- checkPhase = ''
- py.test
- '';
+ checkInputs = [ pytestCheckHook ];
meta = with lib; {
inherit (src.meta) homepage;
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pyeconet/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pyeconet/default.nix
index 2a5bbd9470..bf878fd5ac 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pyeconet/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pyeconet/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "pyeconet";
- version = "0.1.13";
+ version = "0.1.14";
src = fetchPypi {
inherit pname version;
- sha256 = "0pxwsmxzbmrab6p6qr867pc43ky2yjv2snra534wrdrknpj40h4s";
+ sha256 = "sha256-x0mkC2k65VrDhv7UavgDUuRWIQoAJMDtA7jNXNUJuVg=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pylatexenc/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pylatexenc/default.nix
index e53472c6ea..496e7e6af2 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pylatexenc/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pylatexenc/default.nix
@@ -6,13 +6,13 @@
buildPythonPackage rec {
pname = "pylatexenc";
- version = "2.8";
+ version = "2.10";
src = fetchFromGitHub {
owner = "phfaist";
repo = "pylatexenc";
rev = "v${version}";
- sha256 = "0m9vrbh1gmbgq6dqm7xzklar3accadw0pn896rqsdi5jbgd3w0mh";
+ hash = "sha256-3Ho04qrmCtmmrR+BUJNbtdCZcK7lXhUGJjm4yfCTUkM=";
};
pythonImportsCheck = [ "pylatexenc" ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pyproj/001.proj.patch b/third_party/nixpkgs/pkgs/development/python-modules/pyproj/001.proj.patch
index 52e0a80f73..7b1680e980 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pyproj/001.proj.patch
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pyproj/001.proj.patch
@@ -1,62 +1,56 @@
diff -Nur a/pyproj/datadir.py b/pyproj/datadir.py
---- a/pyproj/datadir.py 2020-03-24 12:53:39.417440608 +0100
-+++ b/pyproj/datadir.py 2020-03-24 12:56:19.870089479 +0100
-@@ -66,9 +66,7 @@
+--- a/pyproj/datadir.py 2021-04-10 18:26:52.829018483 +0100
++++ b/pyproj/datadir.py 2021-04-10 18:44:59.155190614 +0100
+@@ -70,7 +70,7 @@
if _VALIDATED_PROJ_DATA is not None:
return _VALIDATED_PROJ_DATA
global _USER_PROJ_DATA
-- internal_datadir = os.path.join(
-- os.path.dirname(os.path.abspath(__file__)), "proj_dir", "share", "proj"
-- )
-+ internal_datadir = "@proj@/share/proj"
+- internal_datadir = Path(__file__).absolute().parent / "proj_dir" / "share" / "proj"
++ internal_datadir = Path("@proj@/share/proj")
proj_lib_dirs = os.environ.get("PROJ_LIB", "")
- prefix_datadir = os.path.join(sys.prefix, "share", "proj")
+ prefix_datadir = Path(sys.prefix, "share", "proj")
diff -Nur a/setup.py b/setup.py
---- a/setup.py 2020-03-24 12:53:39.415440624 +0100
-+++ b/setup.py 2020-03-24 12:52:05.311232522 +0100
+--- a/setup.py 2021-04-10 18:26:52.817018512 +0100
++++ b/setup.py 2021-04-10 18:46:01.652324424 +0100
@@ -11,7 +11,7 @@
- PROJ_MIN_VERSION = parse_version("6.2.0")
- CURRENT_FILE_PATH = os.path.dirname(os.path.abspath(__file__))
- BASE_INTERNAL_PROJ_DIR = "proj_dir"
--INTERNAL_PROJ_DIR = os.path.join(CURRENT_FILE_PATH, "pyproj", BASE_INTERNAL_PROJ_DIR)
-+INTERNAL_PROJ_DIR = "@proj@"
+ PROJ_MIN_VERSION = parse_version("7.2.0")
+ CURRENT_FILE_PATH = Path(__file__).absolute().parent
+ BASE_INTERNAL_PROJ_DIR = Path("proj_dir")
+-INTERNAL_PROJ_DIR = CURRENT_FILE_PATH / "pyproj" / BASE_INTERNAL_PROJ_DIR
++INTERNAL_PROJ_DIR = Path("@proj@")
- def check_proj_version(proj_dir):
-@@ -146,7 +146,7 @@
+ def get_proj_version(proj_dir: Path) -> str:
+@@ -150,7 +150,7 @@
# By default we'll try to get options PROJ_DIR or the local version of proj
proj_dir = get_proj_dir()
library_dirs = get_proj_libdirs(proj_dir)
- include_dirs = get_proj_incdirs(proj_dir)
-+ include_dirs = get_proj_incdirs("@projdev@")
++ include_dirs = get_proj_incdirs(Path("@projdev@"))
- # setup extension options
- ext_options = {
+ proj_version = get_proj_version(proj_dir)
+ check_proj_version(proj_version)
diff -Nur a/test/conftest.py b/test/conftest.py
---- a/test/conftest.py 2020-03-24 12:53:39.417440608 +0100
-+++ b/test/conftest.py 2020-03-24 23:16:47.373972786 +0100
-@@ -1,6 +1,7 @@
- import os
- import shutil
- import tempfile
+--- a/test/conftest.py 2021-04-10 18:26:52.831018478 +0100
++++ b/test/conftest.py 2021-04-10 18:37:01.605682432 +0100
+@@ -2,6 +2,7 @@
+ from contextlib import contextmanager
+ from distutils.version import LooseVersion
+ from pathlib import Path
+import stat
- import pytest
+ import pyproj
+ from pyproj.datadir import get_data_dir, get_user_data_dir, set_data_dir
+diff -Nur a/test/test_cli.py b/test/test_cli.py
+--- a/test/test_cli.py 2021-04-10 18:26:52.831018478 +0100
++++ b/test/test_cli.py 2021-04-10 22:17:04.665088162 +0100
+@@ -14,7 +14,7 @@
+ from test.conftest import grids_available, proj_env, tmp_chdir
+
+ PYPROJ_CLI_ENDPONTS = pytest.mark.parametrize(
+- "input_command", [["pyproj"], [sys.executable, "-m", "pyproj"]]
++ "input_command", [[sys.executable, "-m", "pyproj"]]
+ )
+
-@@ -17,6 +18,15 @@
- with tempfile.TemporaryDirectory() as tmpdir:
- tmp_data_dir = os.path.join(tmpdir, "proj")
- shutil.copytree(data_dir, tmp_data_dir)
-+
-+ # Data copied from the nix store is readonly (causes cleanup problem).
-+ # Make it writable.
-+ for r, d, files in os.walk(tmp_data_dir):
-+ os.chmod(r, os.stat(r).st_mode | stat.S_IWUSR)
-+ for f in files:
-+ fpath = os.path.join(r, f)
-+ os.chmod(fpath, os.stat(fpath).st_mode | stat.S_IWUSR)
-+
- try:
- os.remove(os.path.join(str(tmp_data_dir), "ntv2_0.gsb"))
- except OSError:
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pyproj/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pyproj/default.nix
index c000283e6d..2f4f26f03b 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pyproj/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pyproj/default.nix
@@ -1,60 +1,94 @@
-{ lib, buildPythonPackage, fetchFromGitHub, python, pkgs, pythonOlder, isPy27, substituteAll
-, aenum
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, python
+, proj
+, pythonOlder
+, substituteAll
, cython
, pytestCheckHook
, mock
+, certifi
, numpy
, shapely
+, pandas
+, xarray
}:
buildPythonPackage rec {
pname = "pyproj";
- version = "2.6.0";
- disabled = isPy27;
+ version = "3.0.1";
+ disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pyproj4";
repo = "pyproj";
- rev = "v${version}rel";
- sha256 = "0fyggkbr3kp8mlq4c0r8sl5ah58bdg2mj4kzql9p3qyrkcdlgixh";
+ rev = version;
+ sha256 = "1q1i1235cp3k32dpb11r7krx5rpqwszb89mrx85rflc1z5acaj58";
};
- # force pyproj to use ${pkgs.proj}
+ # force pyproj to use ${proj}
patches = [
(substituteAll {
src = ./001.proj.patch;
- proj = pkgs.proj;
- projdev = pkgs.proj.dev;
+ proj = proj;
+ projdev = proj.dev;
})
];
- buildInputs = [ cython pkgs.proj ];
+ nativeBuildInputs = [ cython ];
+ buildInputs = [ proj ];
propagatedBuildInputs = [
- numpy shapely
- ] ++ lib.optional (pythonOlder "3.6") aenum;
+ certifi
+ ];
- checkInputs = [ pytestCheckHook mock ];
+ checkInputs = [
+ pytestCheckHook
+ mock
+ numpy
+ shapely
+ pandas
+ xarray
+ ];
- # prevent importing local directory
- preCheck = "cd test";
- pytestFlagsArray = [
- "--ignore=test_doctest_wrapper.py"
- "--ignore=test_datadir.py"
+ preCheck = ''
+ # We need to build extensions locally to run tests
+ ${python.interpreter} setup.py build_ext --inplace
+ cd test
+ '';
+
+ disabledTestPaths = [
+ "test_doctest_wrapper.py"
+ "test_datadir.py"
];
disabledTests = [
- "alternative_grid_name"
- "transform_wgs84_to_alaska"
- "transformer_group__unavailable"
- "transform_group__missing_best"
- "datum"
- "repr"
+ # The following tests try to access network and end up with a URLError
+ "test__load_grid_geojson_old_file"
+ "test_get_transform_grid_list"
+ "test_get_transform_grid_list__area_of_use"
+ "test_get_transform_grid_list__bbox__antimeridian"
+ "test_get_transform_grid_list__bbox__out_of_bounds"
+ "test_get_transform_grid_list__contains"
+ "test_get_transform_grid_list__file"
+ "test_get_transform_grid_list__source_id"
+ "test_sync__area_of_use__list"
+ "test_sync__bbox__list"
+ "test_sync__bbox__list__exclude_world_coverage"
+ "test_sync__download_grids"
+ "test_sync__file__list"
+ "test_sync__source_id__list"
+ "test_sync_download"
+ "test_sync_download__directory"
+ "test_sync_download__system_directory"
+ "test_transformer_group__download_grids"
];
meta = {
description = "Python interface to PROJ.4 library";
- homepage = "https://github.com/jswhit/pyproj";
+ homepage = "https://github.com/pyproj4/pyproj";
license = with lib.licenses; [ isc ];
+ maintainers = with lib.maintainers; [ lsix ];
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/pyupgrade/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/pyupgrade/default.nix
index 95aa57491c..8cd250f6e0 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/pyupgrade/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/pyupgrade/default.nix
@@ -8,24 +8,26 @@
buildPythonPackage rec {
pname = "pyupgrade";
- version = "2.10.0";
+ version = "2.12.0";
disabled = isPy27;
src = fetchFromGitHub {
owner = "asottile";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-XYeqyyfwtS7dHLxeVvmcifW6UCOlnSMxqF1vxezBjT8=";
+ sha256 = "sha256-pAZszyv7jXEwtQYzEk5Zq2ULP0K2vX0y6IvR6wYsJ9c=";
};
- checkInputs = [ pytestCheckHook ];
+ checkInputs = [ pytestCheckHook ];
propagatedBuildInputs = [ tokenize-rt ];
+ pythonImportsCheck = [ "pyupgrade" ];
+
meta = with lib; {
- description = "A tool to automatically upgrade syntax for newer versions of the language";
- homepage = "https://github.com/asottile/pyupgrade";
- license = licenses.mit;
+ description = "Tool to automatically upgrade syntax for newer versions of the language";
+ homepage = "https://github.com/asottile/pyupgrade";
+ license = licenses.mit;
maintainers = with maintainers; [ lovesegfault ];
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/qiskit-aer/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/qiskit-aer/default.nix
index 10a3b4482f..54de098bdc 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/qiskit-aer/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/qiskit-aer/default.nix
@@ -27,7 +27,7 @@
buildPythonPackage rec {
pname = "qiskit-aer";
- version = "0.7.6";
+ version = "0.8.0";
format = "pyproject";
disabled = pythonOlder "3.6";
@@ -36,7 +36,7 @@ buildPythonPackage rec {
owner = "Qiskit";
repo = "qiskit-aer";
rev = version;
- sha256 = "0595as4rxjrd5dqx54ywz3rjsjk0z7r41bq0z9r8y1h7zgvvlrmn";
+ hash = "sha256-CWF3ehLs0HBXnYH11r+2CQwIcxddAfQm3ulAf1agl/o=";
};
nativeBuildInputs = [
@@ -61,6 +61,7 @@ buildPythonPackage rec {
pybind11
];
+ # tries to install pypi cmake package, not needed
postPatch = ''
substituteInPlace setup.py --replace "'cmake!=3.17,!=3.17.0'," ""
'';
@@ -83,6 +84,17 @@ buildPythonPackage rec {
disabledTests = [
"test_paulis_1_and_2_qubits"
"test_3d_oscillator"
+ "_057"
+ "_136"
+ "_137"
+ "_139"
+ "_138"
+ "_140"
+ "_141"
+ "_143"
+ "_144"
+ "test_sparse_output_probabilities"
+ "test_reset_2_qubit"
];
checkInputs = [
pytestCheckHook
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/qiskit-aqua/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/qiskit-aqua/default.nix
index 0e6e8e25b5..b1cdd7f523 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/qiskit-aqua/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/qiskit-aqua/default.nix
@@ -34,7 +34,7 @@
buildPythonPackage rec {
pname = "qiskit-aqua";
- version = "0.8.2";
+ version = "0.9.0";
disabled = pythonOlder "3.6";
@@ -43,7 +43,7 @@ buildPythonPackage rec {
owner = "Qiskit";
repo = "qiskit-aqua";
rev = version;
- sha256 = "sha256-ybf8bXqsVk6quYi0vrfo/Mplk7Nr7tQS7cevXxI9khw=";
+ hash = "sha256-knue9uJih72UQHsvfXZ9AA94mol4ERa9Lo/GMcp+2hA=";
};
# Optional packages: pyscf (see below NOTE) & pytorch. Can install via pip/nix if needed.
@@ -74,7 +74,13 @@ buildPythonPackage rec {
# We disable appropriate tests below to allow building without pyscf installed
postPatch = ''
- substituteInPlace setup.py --replace "docplex==2.15.194" "docplex"
+ # Because this is a legacy/final release, the maintainers restricted the maximum
+ # versions of all dependencies to the latest current version. That will not
+ # work with nixpkgs' rolling release/update system.
+ # Unlock all versions for compatibility
+ substituteInPlace setup.py --replace "<=" ">="
+ sed -i 's/\(\w\+-*\w*\).*/\1/' requirements.txt
+ substituteInPlace requirements.txt --replace "dataclasses" ""
# Add ImportWarning when running qiskit.chemistry (pyscf is a chemistry package) that pyscf is not included
echo -e "\nimport warnings\ntry: import pyscf;\nexcept ImportError:\n " \
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/qiskit-ignis/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/qiskit-ignis/default.nix
index f73b46a520..403fa0f05a 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/qiskit-ignis/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/qiskit-ignis/default.nix
@@ -23,7 +23,7 @@
buildPythonPackage rec {
pname = "qiskit-ignis";
- version = "0.5.2";
+ version = "0.6.0";
disabled = pythonOlder "3.6";
@@ -32,7 +32,7 @@ buildPythonPackage rec {
owner = "Qiskit";
repo = "qiskit-ignis";
rev = version;
- sha256 = "sha256-Kl3tnoamZrCxwoDdu8betG6Lf3CC3D8R2TYiq8Zl3Aw=";
+ hash = "sha256-L5fwCMsN03ojiDvKIyqsGfUnwej1P7bpyHlL6mu7nh0=";
};
# hacky, fix https://github.com/Qiskit/qiskit-ignis/issues/532.
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/qiskit-terra/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/qiskit-terra/default.nix
index ff51e82e35..a5faf69f94 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/qiskit-terra/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/qiskit-terra/default.nix
@@ -29,8 +29,8 @@
, withCrosstalkPass ? false
, z3
# Classical function -> Quantum Circuit compiler
-, withClassicalFunctionCompiler ? false
-, tweedledum ? null
+, withClassicalFunctionCompiler ? true
+, tweedledum
# test requirements
, ddt
, hypothesis
@@ -56,7 +56,7 @@ in
buildPythonPackage rec {
pname = "qiskit-terra";
- version = "0.16.4";
+ version = "0.17.0";
disabled = pythonOlder "3.6";
@@ -64,7 +64,7 @@ buildPythonPackage rec {
owner = "Qiskit";
repo = pname;
rev = version;
- sha256 = "sha256-/rWlPfpAHoMedKG42jfUYt0Ezq7i+9dkyPllavkg4cc=";
+ hash = "sha256-LbNbaHAWAVG5YLc9juuwcOlrREBW6OjEl7VPtACfl3I=";
};
nativeBuildInputs = [ cython ];
@@ -100,15 +100,17 @@ buildPythonPackage rec {
"qiskit.transpiler.passes.routing.cython.stochastic_swap.swap_trial"
];
- pytestFlagsArray = [
- "--ignore=test/randomized/test_transpiler_equivalence.py" # collection requires qiskit-aer, which would cause circular dependency
- ] ++ lib.optionals (!withClassicalFunctionCompiler ) [
- "--ignore=test/python/classical_function_compiler/"
+ disabledTestPaths = [
+ "test/randomized/test_transpiler_equivalence.py" # collection requires qiskit-aer, which would cause circular dependency
+ ] ++ lib.optionals (!withClassicalFunctionCompiler) [
+ "test/python/classical_function_compiler/"
];
disabledTests = [
# Flaky tests
"test_cx_equivalence"
"test_pulse_limits"
+ ] ++ lib.optionals (!withClassicalFunctionCompiler) [
+ "TestPhaseOracle"
]
# Disabling slow tests for build constraints
++ [
@@ -130,6 +132,14 @@ buildPythonPackage rec {
"test_block_collection_reduces_1q_gate"
"test_multi_controlled_rotation_gate_matrices"
"test_block_collection_runs_for_non_cx_bases"
+ "test_with_two_qubit_reduction"
+ "test_basic_aer_qasm"
+ "test_hhl"
+ "test_H2_hamiltonian"
+ "test_max_evals_grouped_2"
+ "test_qaoa_qc_mixer_4"
+ "test_abelian_grouper_random_2"
+ "test_pauli_two_design"
];
# Moves tests to $PACKAGEDIR/test. They can't be run from /build because of finding
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/qiskit/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/qiskit/default.nix
index 97603dc3cd..d2866d41c3 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/qiskit/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/qiskit/default.nix
@@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "qiskit";
# NOTE: This version denotes a specific set of subpackages. See https://qiskit.org/documentation/release_notes.html#version-history
- version = "0.24.1";
+ version = "0.25.0";
disabled = pythonOlder "3.6";
@@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "qiskit";
repo = "qiskit";
rev = version;
- sha256 = "0qfz69n8sl7sk4hzygni9qars9q1cyz0n3bv1lca00ia5qsc72d2";
+ hash = "sha256-pJM6d3AyFs9AexvQXG+8QQ4zwpFisJC16iBFR9gNSk0=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/quandl/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/quandl/default.nix
index 0247d20ec7..b378392f7a 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/quandl/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/quandl/default.nix
@@ -9,13 +9,13 @@
buildPythonPackage rec {
pname = "quandl";
- version = "3.5.0";
+ version = "3.6.1";
disabled = !isPy3k;
src = fetchPypi {
inherit version;
pname = "Quandl";
- sha256 = "0zpw0nwqr4g56l9z4my0fahfgpcmfx74acbmv6nfx1dmq5ggraf3";
+ sha256 = "0jr69fqxhzdmkfh3fxz0yp2kks2hkmixrscjjf59q2l7irglwhc4";
};
checkInputs = [
@@ -51,6 +51,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Quandl Python client library";
homepage = "https://github.com/quandl/quandl-python";
+ changelog = "https://github.com/quandl/quandl-python/blob/master/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ ilya-kolpakov ];
};
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/sagemaker/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/sagemaker/default.nix
index fc675279a4..7b173e7a9c 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/sagemaker/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/sagemaker/default.nix
@@ -15,11 +15,11 @@
buildPythonPackage rec {
pname = "sagemaker";
- version = "2.33.0";
+ version = "2.34.0";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-0l8xwZ10zQb+LnV/hjYoSSgN/TGpVdzdXeSfnEyf0J0=";
+ sha256 = "sha256-j0YlFh5SG1PlBN5vWZ9bLuOKcO03pDwoOB44CMyvXPk=";
};
pythonImportsCheck = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/swisshydrodata/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/swisshydrodata/default.nix
index f4f191d2b4..f9464382c4 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/swisshydrodata/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/swisshydrodata/default.nix
@@ -1,22 +1,31 @@
{ lib
, buildPythonPackage
-, fetchPypi
+, fetchFromGitHub
+, pytestCheckHook
, requests
+, requests-mock
}:
buildPythonPackage rec {
pname = "swisshydrodata";
- version = "0.0.3";
+ version = "0.1.0";
- src = fetchPypi {
- inherit pname version;
- sha256 = "1adpy6k2bknffzl5rckqpvaqyrvc00d6a4a4541438dqasx61npl";
+ src = fetchFromGitHub {
+ owner = "Bouni";
+ repo = pname;
+ rev = version;
+ sha256 = "1rdgfc6zg5j3fvrpbqs9vc3n5m66r5yljawyl7nmrqd5lwq1lqak";
};
- propagatedBuildInputs = [ requests ];
+ propagatedBuildInputs = [
+ requests
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ requests-mock
+ ];
- # Tests are not releases at the moment
- doCheck = false;
pythonImportsCheck = [ "swisshydrodata" ];
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/tweedledum/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/tweedledum/default.nix
new file mode 100644
index 0000000000..4b24b3ff4e
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/tweedledum/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, cmake
+, ninja
+, scikit-build
+}:
+
+buildPythonPackage rec {
+ pname = "tweedledum";
+ version = "1.0.0";
+ format = "pyproject";
+
+ src = fetchFromGitHub{
+ owner = "boschmitt";
+ repo = "tweedledum";
+ rev = "v${version}";
+ hash = "sha256-59lJzdw9HLJ9ADxp/a3KW4v5aU/dYm27NSYoz9D49i4=";
+ };
+
+ nativeBuildInputs = [ cmake ninja scikit-build ];
+ dontUseCmakeConfigure = true;
+
+ pythonImportsCheck = [ "tweedledum" ];
+
+ # TODO: use pytest, but had issues with finding the correct directories
+ checkPhase = ''
+ python -m unittest discover -s ./python/test -t .
+ '';
+
+ meta = with lib; {
+ description = "A library for synthesizing and manipulating quantum circuits";
+ homepage = "https://github.com/boschmitt/tweedledum";
+ license = licenses.mit ;
+ maintainers = with maintainers; [ drewrisinger ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/twilio/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/twilio/default.nix
index a010c43e21..367117e17e 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/twilio/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/twilio/default.nix
@@ -41,6 +41,6 @@ buildPythonPackage rec {
description = "Twilio API client and TwiML generator";
homepage = "https://github.com/twilio/twilio-python/";
license = licenses.mit;
- maintainers = with maintainers; [ flokli ];
+ maintainers = with maintainers; [ ];
};
}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/urwid-readline/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/urwid-readline/default.nix
index 1c5f1c8307..192676ceac 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/urwid-readline/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/urwid-readline/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "urwid_readline";
- version = "0.12";
+ version = "0.13";
src = fetchPypi {
inherit pname version;
- sha256 = "f7384e03017c3fb07bfba0d829d70287793326d9f6dac145dd09e0d693d7bf9c";
+ sha256 = "sha256-AYAgy8hku17Ye+F9wmsGnq4nVcsp86nFaarDve0e+vQ=";
};
propagatedBuildInputs = [
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/yara-python/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/yara-python/default.nix
new file mode 100644
index 0000000000..569bf0ef80
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/python-modules/yara-python/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pytestCheckHook
+, yara
+}:
+
+buildPythonPackage rec {
+ pname = "yara-python";
+ version = "4.0.5";
+
+ src = fetchFromGitHub {
+ owner = "VirusTotal";
+ repo = "yara-python";
+ rev = "v${version}";
+ sha256 = "1qd0aw5p48ay77hgj0hgzpvbmq1933mknk134aqdb32036rlc5sq";
+ };
+
+ buildInputs = [
+ yara
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ ];
+
+ setupPyBuildFlags = [
+ "--dynamic-linking"
+ ];
+
+ pytestFlagsArray = [ "tests.py" ];
+
+ pythonImportsCheck = [ "yara" ];
+
+ meta = with lib; {
+ description = "Python interface for YARA";
+ homepage = "https://github.com/VirusTotal/yara-python";
+ license = with licenses; [ asl20 ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/yeelight/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/yeelight/default.nix
index 443b4daec8..85b282566e 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/yeelight/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/yeelight/default.nix
@@ -1,39 +1,39 @@
{ lib
-, fetchgit
, buildPythonPackage
-, pythonOlder
-, enum-compat
+, fetchFromGitLab
, future
, ifaddr
-, mock
, pytestCheckHook
+, pythonOlder
}:
buildPythonPackage rec {
pname = "yeelight";
- version = "0.5.4";
+ version = "0.6.0";
+ disabled = pythonOlder "3.4";
- src = fetchgit {
- url = "https://gitlab.com/stavros/python-yeelight.git";
- rev = "119faeff0d4f9de8c7f6d0580bdecc1c79bcdaea"; # v0.5.4 wasn't tagged
- sha256 = "0j2c5pzd3kny7ghr9q7xn9vs8dffvyzz5igaavvvd04w7aph29sy";
+ src = fetchFromGitLab {
+ owner = "stavros";
+ repo = "python-yeelight";
+ rev = "v${version}";
+ sha256 = "0yycc2pdqaa9y46jycvm0p6braps7ljg2vvljngdqj2l1a2jmv7x";
};
propagatedBuildInputs = [
future
ifaddr
- ] ++ lib.optional (pythonOlder "3.4") enum-compat;
+ ];
checkInputs = [
pytestCheckHook
- ] ++ lib.optional (pythonOlder "3.3") mock;
+ ];
pytestFlagsArray = [ "yeelight/tests.py" ];
pythonImportsCheck = [ "yeelight" ];
meta = with lib; {
- description = "A Python library for controlling YeeLight RGB bulbs";
+ description = "Python library for controlling YeeLight RGB bulbs";
homepage = "https://gitlab.com/stavros/python-yeelight/";
license = licenses.asl20;
maintainers = with maintainers; [ nyanloutre ];
diff --git a/third_party/nixpkgs/pkgs/development/python-modules/zulip/default.nix b/third_party/nixpkgs/pkgs/development/python-modules/zulip/default.nix
index 2c7b7582b8..ed2276623c 100644
--- a/third_party/nixpkgs/pkgs/development/python-modules/zulip/default.nix
+++ b/third_party/nixpkgs/pkgs/development/python-modules/zulip/default.nix
@@ -5,6 +5,9 @@
, requests
, matrix-client
, distro
+, cryptography
+, pyopenssl
+, pytestCheckHook
}:
buildPythonPackage rec {
@@ -26,12 +29,22 @@ buildPythonPackage rec {
requests
matrix-client
distro
+
+ # from requests[security]
+ cryptography
+ pyopenssl
+ ];
+
+ checkInputs = [
+ pytestCheckHook
];
preCheck = ''
export COLUMNS=80
'';
+ pythonImportsCheck = [ "zulip" ];
+
meta = with lib; {
description = "Bindings for the Zulip message API";
homepage = "https://github.com/zulip/python-zulip-api";
diff --git a/third_party/nixpkgs/pkgs/development/ruby-modules/with-packages/Gemfile b/third_party/nixpkgs/pkgs/development/ruby-modules/with-packages/Gemfile
index dda0f69c35..bfb52fe72e 100644
--- a/third_party/nixpkgs/pkgs/development/ruby-modules/with-packages/Gemfile
+++ b/third_party/nixpkgs/pkgs/development/ruby-modules/with-packages/Gemfile
@@ -74,6 +74,7 @@ source 'https://rubygems.org' do
gem 'jekyll'
gem 'jmespath'
gem 'jwt'
+ gem 'kramdown-rfc2629'
gem 'libv8'
gem 'libxml-ruby'
gem 'magic'
diff --git a/third_party/nixpkgs/pkgs/development/tools/apkid/default.nix b/third_party/nixpkgs/pkgs/development/tools/apkid/default.nix
new file mode 100644
index 0000000000..2cb1c4e8d0
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/tools/apkid/default.nix
@@ -0,0 +1,44 @@
+{ lib
+, fetchFromGitHub
+, python3
+}:
+
+python3.pkgs.buildPythonApplication rec {
+ pname = "apkid";
+ version = "2.1.1";
+
+ src = fetchFromGitHub {
+ owner = "rednaga";
+ repo = "APKiD";
+ rev = "v${version}";
+ sha256 = "1p6kdjjw2jhwr875445w43k46n6zwpz0l0phkl8d3y1v4gi5l6dx";
+ };
+
+ propagatedBuildInputs = with python3.pkgs; [
+ yara-python
+ ];
+
+ checkInputs = with python3.pkgs; [
+ pytestCheckHook
+ ];
+
+ preBuild = ''
+ # Prepare the YARA rules
+ ${python3.interpreter} prep-release.py
+ '';
+
+ postPatch = ''
+ # The next release will have support for later yara-python releases
+ substituteInPlace setup.py \
+ --replace "yara-python==3.11.0" "yara-python"
+ '';
+
+ pythonImportsCheck = [ "apkid" ];
+
+ meta = with lib; {
+ description = "Android Application Identifier";
+ homepage = "https://github.com/rednaga/APKiD";
+ license = with licenses; [ gpl3Only ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/tools/geckodriver/cargo-lock.patch b/third_party/nixpkgs/pkgs/development/tools/geckodriver/cargo-lock.patch
index a283d0c382..5c066a7e97 100644
--- a/third_party/nixpkgs/pkgs/development/tools/geckodriver/cargo-lock.patch
+++ b/third_party/nixpkgs/pkgs/development/tools/geckodriver/cargo-lock.patch
@@ -3,1844 +3,1497 @@ new file mode 100644
index 0000000..4430666
--- /dev/null
+++ b/Cargo.lock
-@@ -0,0 +1,1840 @@
+@@ -0,0 +1,1493 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+[[package]]
-+name = "adler32"
-+version = "1.0.4"
++name = "adler"
++version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
+
+[[package]]
+name = "aho-corasick"
-+version = "0.7.6"
++version = "0.7.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
+dependencies = [
-+ "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "memchr",
+]
+
+[[package]]
+name = "arrayref"
-+version = "0.3.5"
++version = "0.3.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
+
+[[package]]
+name = "arrayvec"
-+version = "0.5.1"
++version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
+
+[[package]]
+name = "autocfg"
-+version = "0.1.7"
++version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "autocfg"
-+version = "1.0.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "backtrace"
-+version = "0.3.42"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "backtrace-sys"
-+version = "0.1.32"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
++checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
+
+[[package]]
+name = "base64"
+version = "0.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
+dependencies = [
-+ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
++ "byteorder",
+]
+
+[[package]]
++name = "base64"
++version = "0.12.3"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
++
++[[package]]
++name = "base64"
++version = "0.13.0"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
++
++[[package]]
+name = "bitflags"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
+
+[[package]]
+name = "blake2b_simd"
-+version = "0.5.10"
++version = "0.5.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
+dependencies = [
-+ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
++ "arrayref",
++ "arrayvec",
++ "constant_time_eq",
+]
+
+[[package]]
+name = "block-buffer"
-+version = "0.7.3"
++version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
+dependencies = [
-+ "block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
++ "generic-array",
+]
+
+[[package]]
-+name = "block-padding"
-+version = "0.1.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "byte-tools"
-+version = "0.3.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
+name = "byteorder"
-+version = "1.3.2"
++version = "1.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
+
+[[package]]
+name = "bytes"
-+version = "0.4.12"
++version = "0.5.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
++checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
+
+[[package]]
-+name = "c2-chacha"
-+version = "0.2.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "cc"
-+version = "1.0.50"
++name = "bytes"
++version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
+
+[[package]]
+name = "cfg-if"
+version = "0.1.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
++
++[[package]]
++name = "cfg-if"
++version = "1.0.0"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
+
+[[package]]
+name = "chrono"
-+version = "0.4.10"
++version = "0.4.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
+dependencies = [
-+ "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
++ "libc",
++ "num-integer",
++ "num-traits",
++ "time",
++ "winapi 0.3.9",
+]
+
+[[package]]
+name = "clap"
-+version = "2.33.0"
++version = "2.33.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
+dependencies = [
-+ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "term_size 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "cloudabi"
-+version = "0.0.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "bitflags",
++ "strsim",
++ "term_size",
++ "textwrap",
++ "unicode-width",
+]
+
+[[package]]
+name = "constant_time_eq"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
+
+[[package]]
+name = "cookie"
+version = "0.12.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5"
+dependencies = [
-+ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
++ "time",
+]
+
+[[package]]
++name = "cpuid-bool"
++version = "0.1.2"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
++
++[[package]]
+name = "crc32fast"
-+version = "1.2.0"
++version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
+dependencies = [
-+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "crossbeam-deque"
-+version = "0.7.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "crossbeam-epoch"
-+version = "0.8.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "crossbeam-queue"
-+version = "0.1.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
++ "cfg-if 1.0.0",
+]
+
+[[package]]
+name = "crossbeam-utils"
-+version = "0.6.6"
++version = "0.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "e7e9d99fa91428effe99c5c6d4634cdeba32b8cf784fc428a2a687f61a952c49"
+dependencies = [
-+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "crossbeam-utils"
-+version = "0.7.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "autocfg",
++ "cfg-if 1.0.0",
++ "lazy_static",
+]
+
+[[package]]
+name = "digest"
-+version = "0.8.1"
++version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
+dependencies = [
-+ "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
++ "generic-array",
+]
+
+[[package]]
+name = "dirs"
-+version = "1.0.5"
++version = "2.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
+dependencies = [
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
++ "cfg-if 0.1.10",
++ "dirs-sys",
++]
++
++[[package]]
++name = "dirs-sys"
++version = "0.3.5"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "8e93d7f5705de3e49895a2b5e0b8855a1c27f080192ae9c32a6432d50741a57a"
++dependencies = [
++ "libc",
++ "redox_users",
++ "winapi 0.3.9",
+]
+
+[[package]]
+name = "dtoa"
-+version = "0.4.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "either"
-+version = "1.5.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "failure"
-+version = "0.1.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "backtrace 0.3.42 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "failure_derive"
-+version = "0.1.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "fake-simd"
-+version = "0.1.2"
++version = "0.4.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
+
+[[package]]
+name = "flate2"
-+version = "1.0.13"
++version = "1.0.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0"
+dependencies = [
-+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "miniz_oxide 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
++ "cfg-if 1.0.0",
++ "crc32fast",
++ "libc",
++ "miniz_oxide",
+]
+
+[[package]]
+name = "fnv"
-+version = "1.0.6"
++version = "1.0.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
+
+[[package]]
-+name = "fuchsia-cprng"
-+version = "0.1.1"
++name = "form_urlencoded"
++version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
++dependencies = [
++ "matches",
++ "percent-encoding",
++]
+
+[[package]]
+name = "fuchsia-zircon"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
+dependencies = [
-+ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
++ "bitflags",
++ "fuchsia-zircon-sys",
+]
+
+[[package]]
+name = "fuchsia-zircon-sys"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
+
+[[package]]
+name = "futures"
-+version = "0.1.29"
++version = "0.3.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "a9d5813545e459ad3ca1bff9915e9ad7f1a47dc6a91b627ce321d5863b7dd253"
++dependencies = [
++ "futures-channel",
++ "futures-core",
++ "futures-io",
++ "futures-sink",
++ "futures-task",
++ "futures-util",
++]
+
+[[package]]
-+name = "futures-cpupool"
-+version = "0.1.8"
++name = "futures-channel"
++version = "0.3.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "ce79c6a52a299137a6013061e0cf0e688fce5d7f1bc60125f520912fdb29ec25"
+dependencies = [
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "futures-core",
++ "futures-sink",
++]
++
++[[package]]
++name = "futures-core"
++version = "0.3.14"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "098cd1c6dda6ca01650f1a37a794245eb73181d0d4d4e955e2f3c37db7af1815"
++
++[[package]]
++name = "futures-io"
++version = "0.3.14"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "365a1a1fb30ea1c03a830fdb2158f5236833ac81fa0ad12fe35b29cddc35cb04"
++
++[[package]]
++name = "futures-sink"
++version = "0.3.14"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "5c5629433c555de3d82861a7a4e3794a4c40040390907cfbfd7143a92a426c23"
++
++[[package]]
++name = "futures-task"
++version = "0.3.14"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "ba7aa51095076f3ba6d9a1f702f74bd05ec65f555d70d2033d55ba8d69f581bc"
++
++[[package]]
++name = "futures-util"
++version = "0.3.14"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "3c144ad54d60f23927f0a6b6d816e4271278b64f005ad65e4e35291d2de9c025"
++dependencies = [
++ "futures-core",
++ "futures-sink",
++ "futures-task",
++ "pin-project-lite 0.2.6",
++ "pin-utils",
+]
+
+[[package]]
+name = "geckodriver"
-+version = "0.26.0"
++version = "0.29.1"
+dependencies = [
-+ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "marionette 0.1.0",
-+ "mozdevice 0.1.0",
-+ "mozprofile 0.6.0",
-+ "mozrunner 0.10.0",
-+ "mozversion 0.2.1",
-+ "regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "webdriver 0.40.2",
-+ "zip 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
++ "base64 0.12.3",
++ "chrono",
++ "clap",
++ "hyper",
++ "lazy_static",
++ "log",
++ "marionette",
++ "mozdevice",
++ "mozprofile",
++ "mozrunner",
++ "mozversion",
++ "regex",
++ "serde",
++ "serde_derive",
++ "serde_json",
++ "serde_yaml",
++ "uuid",
++ "webdriver",
++ "zip",
+]
+
+[[package]]
+name = "generic-array"
-+version = "0.12.3"
++version = "0.14.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
+dependencies = [
-+ "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)",
++ "typenum",
++ "version_check",
+]
+
+[[package]]
+name = "getrandom"
-+version = "0.1.14"
++version = "0.1.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
+dependencies = [
-+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "cfg-if 1.0.0",
++ "libc",
++ "wasi 0.9.0+wasi-snapshot-preview1",
++]
++
++[[package]]
++name = "getrandom"
++version = "0.2.2"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8"
++dependencies = [
++ "cfg-if 1.0.0",
++ "libc",
++ "wasi 0.10.2+wasi-snapshot-preview1",
+]
+
+[[package]]
+name = "h2"
-+version = "0.1.26"
++version = "0.2.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535"
+dependencies = [
-+ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "indexmap 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
++ "bytes 0.5.6",
++ "fnv",
++ "futures-core",
++ "futures-sink",
++ "futures-util",
++ "http",
++ "indexmap",
++ "slab",
++ "tokio",
++ "tokio-util",
++ "tracing",
++ "tracing-futures",
+]
+
+[[package]]
-+name = "headers"
-+version = "0.2.3"
++name = "hashbrown"
++version = "0.9.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
++
++[[package]]
++name = "headers"
++version = "0.3.4"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "f0b7591fb62902706ae8e7aaff416b1b0fa2c0fd0878b46dc13baa3712d8a855"
+dependencies = [
-+ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "headers-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
++ "base64 0.13.0",
++ "bitflags",
++ "bytes 1.0.1",
++ "headers-core",
++ "http",
++ "mime",
++ "sha-1",
++ "time",
+]
+
+[[package]]
+name = "headers-core"
-+version = "0.1.1"
++version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "hermit-abi"
-+version = "0.1.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
++ "http",
+]
+
+[[package]]
+name = "http"
-+version = "0.1.21"
++version = "0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
++ "bytes 1.0.1",
++ "fnv",
++ "itoa",
+]
+
+[[package]]
+name = "http-body"
-+version = "0.1.0"
++version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "bytes 0.5.6",
++ "http",
+]
+
+[[package]]
+name = "httparse"
-+version = "1.3.4"
++version = "1.3.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "bc35c995b9d93ec174cf9a27d425c7892722101e14993cd227fdb51d70cf9589"
+
+[[package]]
-+name = "humantime"
-+version = "1.3.0"
++name = "httpdate"
++version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
++checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
+
+[[package]]
+name = "hyper"
-+version = "0.12.35"
++version = "0.13.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "8a6f157065790a3ed2f88679250419b5cdd96e714a0d65f7797fd337186e96bb"
+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-threadpool 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "bytes 0.5.6",
++ "futures-channel",
++ "futures-core",
++ "futures-util",
++ "h2",
++ "http",
++ "http-body",
++ "httparse",
++ "httpdate",
++ "itoa",
++ "pin-project 1.0.6",
++ "socket2",
++ "tokio",
++ "tower-service",
++ "tracing",
++ "want",
+]
+
+[[package]]
+name = "idna"
-+version = "0.2.0"
++version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "89829a5d69c23d348314a7ac337fe39173b61149a9864deabd260983aed48c21"
+dependencies = [
-+ "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "unicode-normalization 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
++ "matches",
++ "unicode-bidi",
++ "unicode-normalization",
+]
+
+[[package]]
+name = "indexmap"
-+version = "1.3.1"
++version = "1.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "824845a0bf897a9042383849b02c1bc219c2383772efcd5c6f9766fa4b81aef3"
+dependencies = [
-+ "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "autocfg",
++ "hashbrown",
+]
+
+[[package]]
+name = "iovec"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
+dependencies = [
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
++ "libc",
+]
+
+[[package]]
+name = "itoa"
-+version = "0.4.4"
++version = "0.4.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
+
+[[package]]
+name = "kernel32-sys"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
+dependencies = [
-+ "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "winapi 0.2.8",
++ "winapi-build",
+]
+
+[[package]]
+name = "lazy_static"
+version = "1.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
+
+[[package]]
+name = "libc"
-+version = "0.2.66"
++version = "0.2.93"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "9385f66bf6105b241aa65a61cb923ef20efc665cb9f9bb50ac2f0c4b7f378d41"
+
+[[package]]
+name = "line-wrap"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
+dependencies = [
-+ "safemem 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
++ "safemem",
+]
+
+[[package]]
+name = "linked-hash-map"
-+version = "0.5.2"
++version = "0.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "lock_api"
-+version = "0.3.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
++checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
+
+[[package]]
+name = "log"
-+version = "0.4.8"
++version = "0.4.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
+dependencies = [
-+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
++ "cfg-if 1.0.0",
+]
+
+[[package]]
+name = "marionette"
+version = "0.1.0"
+dependencies = [
-+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde_repr 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
++ "serde",
++ "serde_json",
++ "serde_repr",
+]
+
+[[package]]
+name = "matches"
+version = "0.1.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "maybe-uninit"
-+version = "2.0.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
+
+[[package]]
+name = "memchr"
-+version = "2.3.0"
++version = "2.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "memoffset"
-+version = "0.5.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
++checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
+
+[[package]]
+name = "mime"
+version = "0.3.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
+
+[[package]]
+name = "mime_guess"
-+version = "2.0.1"
++version = "2.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
+dependencies = [
-+ "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "mime",
++ "unicase",
+]
+
+[[package]]
+name = "miniz_oxide"
-+version = "0.3.5"
++version = "0.4.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
+dependencies = [
-+ "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
++ "adler",
++ "autocfg",
+]
+
+[[package]]
+name = "mio"
-+version = "0.6.21"
++version = "0.6.23"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
+dependencies = [
-+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "mio-uds"
-+version = "0.6.7"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)",
++ "cfg-if 0.1.10",
++ "fuchsia-zircon",
++ "fuchsia-zircon-sys",
++ "iovec",
++ "kernel32-sys",
++ "libc",
++ "log",
++ "miow",
++ "net2",
++ "slab",
++ "winapi 0.2.8",
+]
+
+[[package]]
+name = "miow"
-+version = "0.2.1"
++version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
+dependencies = [
-+ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "kernel32-sys",
++ "net2",
++ "winapi 0.2.8",
++ "ws2_32-sys",
+]
+
+[[package]]
+name = "mozdevice"
-+version = "0.1.0"
++version = "0.3.2"
+dependencies = [
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "walkdir 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "log",
++ "once_cell",
++ "regex",
++ "tempfile",
++ "uuid",
++ "walkdir",
+]
+
+[[package]]
+name = "mozprofile"
-+version = "0.6.0"
++version = "0.7.2"
+dependencies = [
-+ "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "tempfile",
+]
+
+[[package]]
+name = "mozrunner"
-+version = "0.10.0"
++version = "0.12.1"
+dependencies = [
-+ "dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "mozprofile 0.6.0",
-+ "plist 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winreg 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "dirs",
++ "log",
++ "mozprofile",
++ "plist",
++ "winreg",
+]
+
+[[package]]
+name = "mozversion"
-+version = "0.2.1"
++version = "0.4.1"
+dependencies = [
-+ "regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rust-ini 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "semver 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "regex",
++ "rust-ini",
++ "semver",
+]
+
+[[package]]
+name = "msdos_time"
+version = "0.1.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "aad9dfe950c057b1bfe9c1f2aa51583a8468ef2a5baba2ebbe06d775efeb7729"
+dependencies = [
-+ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
++ "time",
++ "winapi 0.3.9",
+]
+
+[[package]]
+name = "net2"
-+version = "0.2.33"
++version = "0.2.37"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
+dependencies = [
-+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
++ "cfg-if 0.1.10",
++ "libc",
++ "winapi 0.3.9",
+]
+
+[[package]]
+name = "num-integer"
-+version = "0.1.42"
++version = "0.1.44"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
+dependencies = [
-+ "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
++ "autocfg",
++ "num-traits",
+]
+
+[[package]]
+name = "num-traits"
-+version = "0.2.11"
++version = "0.2.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
+dependencies = [
-+ "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "autocfg",
+]
+
+[[package]]
-+name = "num_cpus"
-+version = "1.11.1"
++name = "once_cell"
++version = "1.7.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
++checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
+
+[[package]]
+name = "opaque-debug"
-+version = "0.2.3"
++version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "parking_lot"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "parking_lot_core"
-+version = "0.6.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
++checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
+
+[[package]]
+name = "percent-encoding"
+version = "2.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
++
++[[package]]
++name = "pin-project"
++version = "0.4.28"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "918192b5c59119d51e0cd221f4d49dde9112824ba717369e903c97d076083d0f"
++dependencies = [
++ "pin-project-internal 0.4.28",
++]
++
++[[package]]
++name = "pin-project"
++version = "1.0.6"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "bc174859768806e91ae575187ada95c91a29e96a98dc5d2cd9a1fed039501ba6"
++dependencies = [
++ "pin-project-internal 1.0.6",
++]
++
++[[package]]
++name = "pin-project-internal"
++version = "0.4.28"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "3be26700300be6d9d23264c73211d8190e755b6b5ca7a1b28230025511b52a5e"
++dependencies = [
++ "proc-macro2",
++ "quote",
++ "syn",
++]
++
++[[package]]
++name = "pin-project-internal"
++version = "1.0.6"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "a490329918e856ed1b083f244e3bfe2d8c4f336407e4ea9e1a9f479ff09049e5"
++dependencies = [
++ "proc-macro2",
++ "quote",
++ "syn",
++]
++
++[[package]]
++name = "pin-project-lite"
++version = "0.1.12"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
++
++[[package]]
++name = "pin-project-lite"
++version = "0.2.6"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905"
++
++[[package]]
++name = "pin-utils"
++version = "0.1.0"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
+
+[[package]]
+name = "plist"
-+version = "0.5.1"
++version = "0.5.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "9b59eb8d91dfa89208ec74a920e3b55f840476cf46568026c18dbaa2999e0d48"
+dependencies = [
-+ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "indexmap 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "line-wrap 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "xml-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "base64 0.10.1",
++ "chrono",
++ "indexmap",
++ "line-wrap",
++ "serde",
++ "xml-rs",
+]
+
+[[package]]
+name = "podio"
-+version = "0.1.6"
++version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "b18befed8bc2b61abc79a457295e7e838417326da1586050b919414073977f19"
+
+[[package]]
+name = "ppv-lite86"
-+version = "0.2.6"
++version = "0.2.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
+
+[[package]]
+name = "proc-macro2"
-+version = "1.0.7"
++version = "1.0.26"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec"
+dependencies = [
-+ "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "unicode-xid",
+]
+
+[[package]]
-+name = "quick-error"
-+version = "1.2.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
+name = "quote"
-+version = "1.0.2"
++version = "1.0.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
+dependencies = [
-+ "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
++ "proc-macro2",
+]
+
+[[package]]
+name = "rand"
-+version = "0.6.5"
++version = "0.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
+dependencies = [
-+ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "rand"
-+version = "0.7.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "libc",
++ "rand_chacha",
++ "rand_core",
++ "rand_hc",
+]
+
+[[package]]
+name = "rand_chacha"
-+version = "0.1.1"
++version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
+dependencies = [
-+ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "rand_chacha"
-+version = "0.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "ppv-lite86",
++ "rand_core",
+]
+
+[[package]]
+name = "rand_core"
-+version = "0.3.1"
++version = "0.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
+dependencies = [
-+ "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "rand_core"
-+version = "0.4.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "rand_core"
-+version = "0.5.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
++ "getrandom 0.2.2",
+]
+
+[[package]]
+name = "rand_hc"
-+version = "0.1.0"
++version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
+dependencies = [
-+ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "rand_hc"
-+version = "0.2.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "rand_isaac"
-+version = "0.1.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "rand_jitter"
-+version = "0.1.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "rand_os"
-+version = "0.1.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "rand_pcg"
-+version = "0.1.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "rand_xorshift"
-+version = "0.1.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "rdrand"
-+version = "0.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "rand_core",
+]
+
+[[package]]
+name = "redox_syscall"
-+version = "0.1.56"
++version = "0.1.57"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
++
++[[package]]
++name = "redox_syscall"
++version = "0.2.5"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "94341e4e44e24f6b591b59e47a8a027df12e008d73fd5672dbea9cc22f4507d9"
++dependencies = [
++ "bitflags",
++]
+
+[[package]]
+name = "redox_users"
-+version = "0.3.1"
++version = "0.3.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
+dependencies = [
-+ "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rust-argon2 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "getrandom 0.1.16",
++ "redox_syscall 0.1.57",
++ "rust-argon2",
+]
+
+[[package]]
+name = "regex"
-+version = "1.3.3"
++version = "1.4.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "957056ecddbeba1b26965114e191d2e8589ce74db242b6ea25fc4062427a5c19"
+dependencies = [
-+ "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "regex-syntax 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "aho-corasick",
++ "memchr",
++ "regex-syntax",
+]
+
+[[package]]
+name = "regex-syntax"
-+version = "0.6.13"
++version = "0.6.23"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "24d5f089152e60f62d28b835fbff2cd2e8dc0baf1ac13343bef92ab7eed84548"
+
+[[package]]
+name = "remove_dir_all"
-+version = "0.5.2"
++version = "0.5.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
+dependencies = [
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
++ "winapi 0.3.9",
+]
+
+[[package]]
+name = "rust-argon2"
-+version = "0.5.1"
++version = "0.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
+dependencies = [
-+ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "blake2b_simd 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
++ "base64 0.13.0",
++ "blake2b_simd",
++ "constant_time_eq",
++ "crossbeam-utils",
+]
+
+[[package]]
+name = "rust-ini"
+version = "0.10.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "rustc-demangle"
-+version = "0.1.16"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "rustc_version"
-+version = "0.2.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
++checksum = "8a654c5bda722c699be6b0fe4c0d90de218928da5b724c3e467fc48865c37263"
+
+[[package]]
+name = "ryu"
-+version = "1.0.2"
++version = "1.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
+
+[[package]]
+name = "safemem"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
+
+[[package]]
+name = "same-file"
+version = "1.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
+dependencies = [
-+ "winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
++ "winapi-util",
+]
+
+[[package]]
+name = "scoped-tls"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "scopeguard"
-+version = "1.0.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "semver"
-+version = "0.6.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
++checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
+
+[[package]]
+name = "semver"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
+dependencies = [
-+ "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "semver-parser",
+]
+
+[[package]]
+name = "semver-parser"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
+
+[[package]]
+name = "serde"
-+version = "1.0.104"
++version = "1.0.125"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "558dc50e1a5a5fa7112ca2ce4effcb321b0300c0d4ccf0776a9f60cd89031171"
+dependencies = [
-+ "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
++ "serde_derive",
+]
+
+[[package]]
+name = "serde_derive"
-+version = "1.0.104"
++version = "1.0.125"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "b093b7a2bb58203b5da3056c05b4ec1fed827dcfdb37347a8841695263b3d06d"
+dependencies = [
-+ "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)",
++ "proc-macro2",
++ "quote",
++ "syn",
+]
+
+[[package]]
+name = "serde_json"
-+version = "1.0.44"
++version = "1.0.64"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
+dependencies = [
-+ "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
++ "itoa",
++ "ryu",
++ "serde",
+]
+
+[[package]]
+name = "serde_repr"
-+version = "0.1.5"
++version = "0.1.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "2dc6b7951b17b051f3210b063f12cc17320e2fe30ae05b0fe2a3abb068551c76"
+dependencies = [
-+ "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)",
++ "proc-macro2",
++ "quote",
++ "syn",
+]
+
+[[package]]
+name = "serde_urlencoded"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
+dependencies = [
-+ "dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "dtoa",
++ "itoa",
++ "serde",
++ "url",
+]
+
+[[package]]
+name = "serde_yaml"
-+version = "0.8.11"
++version = "0.8.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "15654ed4ab61726bf918a39cb8d98a2e2995b002387807fa6ba58fdf7f59bb23"
+dependencies = [
-+ "dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
++ "dtoa",
++ "linked-hash-map",
++ "serde",
++ "yaml-rust",
+]
+
+[[package]]
+name = "sha-1"
-+version = "0.8.2"
++version = "0.9.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "dfebf75d25bd900fd1e7d11501efab59bc846dbc76196839663e6637bba9f25f"
+dependencies = [
-+ "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
++ "block-buffer",
++ "cfg-if 1.0.0",
++ "cpuid-bool",
++ "digest",
++ "opaque-debug",
+]
+
+[[package]]
+name = "slab"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
+
+[[package]]
-+name = "smallvec"
-+version = "0.6.13"
++name = "socket2"
++version = "0.3.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
+dependencies = [
-+ "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "smallvec"
-+version = "1.1.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+
-+[[package]]
-+name = "string"
-+version = "0.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
++ "cfg-if 1.0.0",
++ "libc",
++ "winapi 0.3.9",
+]
+
+[[package]]
+name = "strsim"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
+
+[[package]]
+name = "syn"
-+version = "1.0.13"
++version = "1.0.69"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "48fe99c6bd8b1cc636890bcc071842de909d902c81ac7dab53ba33c421ab8ffb"
+dependencies = [
-+ "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "synstructure"
-+version = "0.12.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "proc-macro2",
++ "quote",
++ "unicode-xid",
+]
+
+[[package]]
+name = "tempfile"
-+version = "3.1.0"
++version = "3.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
+dependencies = [
-+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
++ "cfg-if 1.0.0",
++ "libc",
++ "rand",
++ "redox_syscall 0.2.5",
++ "remove_dir_all",
++ "winapi 0.3.9",
+]
+
+[[package]]
+name = "term_size"
-+version = "0.3.1"
++version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
+dependencies = [
-+ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
++ "libc",
++ "winapi 0.3.9",
+]
+
+[[package]]
+name = "textwrap"
+version = "0.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
+dependencies = [
-+ "term_size 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "thread_local"
-+version = "1.0.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "term_size",
++ "unicode-width",
+]
+
+[[package]]
+name = "time"
-+version = "0.1.42"
++version = "0.1.43"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
+dependencies = [
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
++ "libc",
++ "winapi 0.3.9",
+]
+
+[[package]]
++name = "tinyvec"
++version = "1.2.0"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "5b5220f05bb7de7f3f53c7c065e1199b3172696fe2db9f9c4d8ad9b4ee74c342"
++dependencies = [
++ "tinyvec_macros",
++]
++
++[[package]]
++name = "tinyvec_macros"
++version = "0.1.0"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
++
++[[package]]
+name = "tokio"
-+version = "0.1.22"
++version = "0.2.25"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"
+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-threadpool 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
++ "bytes 0.5.6",
++ "fnv",
++ "futures-core",
++ "iovec",
++ "lazy_static",
++ "memchr",
++ "mio",
++ "pin-project-lite 0.1.12",
++ "slab",
+]
+
+[[package]]
-+name = "tokio-buf"
-+version = "0.1.1"
++name = "tokio-util"
++version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
++ "bytes 0.5.6",
++ "futures-core",
++ "futures-sink",
++ "log",
++ "pin-project-lite 0.1.12",
++ "tokio",
+]
+
+[[package]]
-+name = "tokio-codec"
-+version = "0.1.1"
++name = "tower-service"
++version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
++
++[[package]]
++name = "tracing"
++version = "0.1.25"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "01ebdc2bb4498ab1ab5f5b73c5803825e60199229ccba0698170e3be0e7f959f"
+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
++ "cfg-if 1.0.0",
++ "log",
++ "pin-project-lite 0.2.6",
++ "tracing-core",
+]
+
+[[package]]
-+name = "tokio-current-thread"
-+version = "0.1.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "tokio-executor"
-+version = "0.1.9"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "tokio-fs"
-+version = "0.1.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-threadpool 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "tokio-io"
-+version = "0.1.12"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "tokio-reactor"
-+version = "0.1.11"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "tokio-sync"
-+version = "0.1.7"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "tokio-tcp"
-+version = "0.1.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "tokio-threadpool"
++name = "tracing-core"
+version = "0.1.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f"
+dependencies = [
-+ "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
++ "lazy_static",
+]
+
+[[package]]
-+name = "tokio-timer"
-+version = "0.2.12"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "tokio-udp"
-+version = "0.1.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
-+]
-+
-+[[package]]
-+name = "tokio-uds"
++name = "tracing-futures"
+version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
++ "pin-project 1.0.6",
++ "tracing",
+]
+
+[[package]]
+name = "try-lock"
-+version = "0.2.2"
++version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
+
+[[package]]
+name = "typenum"
-+version = "1.11.2"
++version = "1.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06"
+
+[[package]]
+name = "unicase"
+version = "2.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
+dependencies = [
-+ "version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "version_check",
+]
+
+[[package]]
+name = "unicode-bidi"
-+version = "0.3.4"
++version = "0.3.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "eeb8be209bb1c96b7c177c7420d26e04eccacb0eeae6b980e35fcb74678107e0"
+dependencies = [
-+ "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
++ "matches",
+]
+
+[[package]]
+name = "unicode-normalization"
-+version = "0.1.11"
++version = "0.1.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "07fbfce1c8a97d547e8b5334978438d9d6ec8c20e38f56d4a4374d181493eaef"
+dependencies = [
-+ "smallvec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "tinyvec",
+]
+
+[[package]]
+name = "unicode-segmentation"
-+version = "1.6.0"
++version = "1.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
+
+[[package]]
+name = "unicode-width"
-+version = "0.1.7"
++version = "0.1.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
+
+[[package]]
+name = "unicode-xid"
-+version = "0.2.0"
++version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
+
+[[package]]
+name = "url"
-+version = "2.1.1"
++version = "2.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "9ccd964113622c8e9322cfac19eb1004a07e636c545f325da085d5cdde6f1f8b"
+dependencies = [
-+ "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "form_urlencoded",
++ "idna",
++ "matches",
++ "percent-encoding",
+]
+
+[[package]]
+name = "urlencoding"
-+version = "1.0.0"
++version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "c9232eb53352b4442e40d7900465dfc534e8cb2dc8f18656fcb2ac16112b5593"
+
+[[package]]
+name = "uuid"
-+version = "0.7.4"
++version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
+dependencies = [
-+ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
++ "getrandom 0.2.2",
++ "serde",
+]
+
+[[package]]
+name = "version_check"
-+version = "0.9.1"
++version = "0.9.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
+
+[[package]]
+name = "walkdir"
-+version = "2.3.1"
++version = "2.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
+dependencies = [
-+ "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
++ "same-file",
++ "winapi 0.3.9",
++ "winapi-util",
+]
+
+[[package]]
+name = "want"
-+version = "0.2.0"
++version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
+dependencies = [
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
++ "log",
++ "try-lock",
+]
+
+[[package]]
+name = "warp"
-+version = "0.1.20"
++version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "f41be6df54c97904af01aa23e613d4521eed7ab23537cede692d4058f6449407"
+dependencies = [
-+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "headers 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "scoped-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio-threadpool 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "urlencoding 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "bytes 0.5.6",
++ "futures",
++ "headers",
++ "http",
++ "hyper",
++ "log",
++ "mime",
++ "mime_guess",
++ "pin-project 0.4.28",
++ "scoped-tls",
++ "serde",
++ "serde_json",
++ "serde_urlencoded",
++ "tokio",
++ "tower-service",
++ "tracing",
++ "tracing-futures",
++ "urlencoding",
+]
+
+[[package]]
+name = "wasi"
+version = "0.9.0+wasi-snapshot-preview1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
++
++[[package]]
++name = "wasi"
++version = "0.10.2+wasi-snapshot-preview1"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
+
+[[package]]
+name = "webdriver"
-+version = "0.40.2"
++version = "0.43.1"
+dependencies = [
-+ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "warp 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)",
++ "base64 0.12.3",
++ "bytes 0.5.6",
++ "cookie",
++ "http",
++ "log",
++ "serde",
++ "serde_derive",
++ "serde_json",
++ "time",
++ "tokio",
++ "unicode-segmentation",
++ "url",
++ "warp",
+]
+
+[[package]]
+name = "winapi"
+version = "0.2.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
+
+[[package]]
+name = "winapi"
-+version = "0.3.8"
++version = "0.3.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
+dependencies = [
-+ "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
++ "winapi-i686-pc-windows-gnu",
++ "winapi-x86_64-pc-windows-gnu",
+]
+
+[[package]]
+name = "winapi-build"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
+
+[[package]]
+name = "winapi-i686-pc-windows-gnu"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
+
+[[package]]
+name = "winapi-util"
-+version = "0.1.3"
++version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
+dependencies = [
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
++ "winapi 0.3.9",
+]
+
+[[package]]
+name = "winapi-x86_64-pc-windows-gnu"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
+
+[[package]]
+name = "winreg"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "a27a759395c1195c4cc5cda607ef6f8f6498f64e78f7900f5de0a127a424704a"
+dependencies = [
-+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
++ "winapi 0.3.9",
+]
+
+[[package]]
+name = "ws2_32-sys"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
+dependencies = [
-+ "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
++ "winapi 0.2.8",
++ "winapi-build",
+]
+
+[[package]]
+name = "xml-rs"
-+version = "0.8.0"
++version = "0.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "b07db065a5cf61a7e4ba64f29e67db906fb1787316516c4e6e5ff0fea1efcd8a"
+
+[[package]]
+name = "yaml-rust"
-+version = "0.4.3"
++version = "0.4.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
+dependencies = [
-+ "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
++ "linked-hash-map",
+]
+
+[[package]]
+name = "zip"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "36b9e08fb518a65cf7e08a1e482573eb87a2f4f8c6619316612a3c1f162fe822"
+dependencies = [
-+ "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "msdos_time 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "podio 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
++ "flate2",
++ "msdos_time",
++ "podio",
++ "time",
+]
-+
-+[metadata]
-+"checksum adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2"
-+"checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d"
-+"checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee"
-+"checksum arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
-+"checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
-+"checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
-+"checksum backtrace 0.3.42 (registry+https://github.com/rust-lang/crates.io-index)" = "b4b1549d804b6c73f4817df2ba073709e96e426f12987127c48e6745568c350b"
-+"checksum backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491"
-+"checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
-+"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
-+"checksum blake2b_simd 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)" = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
-+"checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
-+"checksum block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
-+"checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
-+"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
-+"checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
-+"checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb"
-+"checksum cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
-+"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
-+"checksum chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "31850b4a4d6bae316f7a09e691c944c28299298837edc0a03f755618c23cbc01"
-+"checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
-+"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
-+"checksum constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
-+"checksum cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5"
-+"checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
-+"checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca"
-+"checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac"
-+"checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b"
-+"checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6"
-+"checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4"
-+"checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
-+"checksum dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
-+"checksum dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ea57b42383d091c85abcc2706240b94ab2a8fa1fc81c10ff23c4de06e2a90b5e"
-+"checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
-+"checksum failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f8273f13c977665c5db7eb2b99ae520952fe5ac831ae4cd09d80c4c7042b5ed9"
-+"checksum failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0bc225b78e0391e4b8683440bf2e63c2deeeb2ce5189eab46e2b68c6d3725d08"
-+"checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
-+"checksum flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6bd6d6f4752952feb71363cffc9ebac9411b75b87c6ab6058c40c8900cf43c0f"
-+"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"
-+"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
-+"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
-+"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
-+"checksum futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef"
-+"checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4"
-+"checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
-+"checksum getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
-+"checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462"
-+"checksum headers 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "882ca7d8722f33ce2c2db44f95425d6267ed59ca96ce02acbe58320054ceb642"
-+"checksum headers-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "967131279aaa9f7c20c7205b45a391638a83ab118e6509b2d0ccbe08de044237"
-+"checksum hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "eff2656d88f158ce120947499e971d743c05dbcbed62e5bd2f38f1698bbc3772"
-+"checksum http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0"
-+"checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d"
-+"checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
-+"checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
-+"checksum hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)" = "9dbe6ed1438e1f8ad955a4701e9a944938e9519f6888d12d8558b645e247d5f6"
-+"checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
-+"checksum indexmap 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b54058f0a6ff80b6803da8faf8997cde53872b38f4023728f6830b06cd3c0dc"
-+"checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
-+"checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f"
-+"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
-+"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
-+"checksum libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)" = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558"
-+"checksum line-wrap 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
-+"checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83"
-+"checksum lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "79b2de95ecb4691949fea4716ca53cdbcfccb2c612e19644a8bad05edcf9f47b"
-+"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
-+"checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
-+"checksum maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
-+"checksum memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3197e20c7edb283f87c071ddfc7a2cca8f8e0b888c242959846a6fce03c72223"
-+"checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9"
-+"checksum mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)" = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
-+"checksum mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1a0ed03949aef72dbdf3116a383d7b38b4768e6f960528cd6a6044aa9ed68599"
-+"checksum miniz_oxide 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6f3f74f726ae935c3f514300cc6773a0c9492abc5e972d42ba0c0ebb88757625"
-+"checksum mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f"
-+"checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125"
-+"checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
-+"checksum msdos_time 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aad9dfe950c057b1bfe9c1f2aa51583a8468ef2a5baba2ebbe06d775efeb7729"
-+"checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
-+"checksum num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba"
-+"checksum num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096"
-+"checksum num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72"
-+"checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
-+"checksum parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
-+"checksum parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
-+"checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
-+"checksum plist 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31850d149352e2b75f0e4b206045ee3775076c422892328343beca48a2b5cf17"
-+"checksum podio 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "780fb4b6698bbf9cf2444ea5d22411cef2953f0824b98f33cf454ec5615645bd"
-+"checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
-+"checksum proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "0319972dcae462681daf4da1adeeaa066e3ebd29c69be96c6abb1259d2ee2bcc"
-+"checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
-+"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
-+"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
-+"checksum rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
-+"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
-+"checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853"
-+"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
-+"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
-+"checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
-+"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
-+"checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
-+"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
-+"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
-+"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
-+"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
-+"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
-+"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
-+"checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
-+"checksum redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ecedbca3bf205f8d8f5c2b44d83cd0690e39ee84b951ed649e9f1841132b66d"
-+"checksum regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b5508c1941e4e7cb19965abef075d35a9a8b5cdf0846f30b4050e9b55dc55e87"
-+"checksum regex-syntax 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e734e891f5b408a29efbf8309e656876276f49ab6a6ac208600b4419bd893d90"
-+"checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
-+"checksum rust-argon2 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ca4eaef519b494d1f2848fc602d18816fed808a981aedf4f1f00ceb7c9d32cf"
-+"checksum rust-ini 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8a654c5bda722c699be6b0fe4c0d90de218928da5b724c3e467fc48865c37263"
-+"checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
-+"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
-+"checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8"
-+"checksum safemem 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
-+"checksum same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
-+"checksum scoped-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
-+"checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d"
-+"checksum semver 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a3186ec9e65071a2095434b1f5bb24838d4e8e130f584c790f6033c79943537"
-+"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
-+"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
-+"checksum serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449"
-+"checksum serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64"
-+"checksum serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)" = "48c575e0cc52bdd09b47f330f646cf59afc586e9c4e3ccd6fc1f625b8ea1dad7"
-+"checksum serde_repr 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "cd02c7587ec314570041b2754829f84d873ced14a96d1fd1823531e11db40573"
-+"checksum serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
-+"checksum serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" = "691b17f19fc1ec9d94ec0b5864859290dff279dbd7b03f017afda54eb36c3c35"
-+"checksum sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
-+"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
-+"checksum smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"
-+"checksum smallvec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44e59e0c9fa00817912ae6e4e6e3c4fe04455e75699d06eedc7d85917ed8e8f4"
-+"checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"
-+"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
-+"checksum syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1e4ff033220a41d1a57d8125eab57bf5263783dfdcc18688b1dacc6ce9651ef8"
-+"checksum synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545"
-+"checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
-+"checksum term_size 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9e5b9a66db815dcfd2da92db471106457082577c3c278d4138ab3e3b4e189327"
-+"checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
-+"checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
-+"checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
-+"checksum tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)" = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
-+"checksum tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
-+"checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f"
-+"checksum tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "d16217cad7f1b840c5a97dfb3c43b0c871fef423a6e8d2118c604e843662a443"
-+"checksum tokio-executor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "ca6df436c42b0c3330a82d855d2ef017cd793090ad550a6bc2184f4b933532ab"
-+"checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af"
-+"checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926"
-+"checksum tokio-reactor 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "6732fe6b53c8d11178dcb77ac6d9682af27fc6d4cb87789449152e5377377146"
-+"checksum tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d06554cce1ae4a50f42fba8023918afa931413aded705b560e29600ccf7c6d76"
-+"checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119"
-+"checksum tokio-threadpool 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f0c32ffea4827978e9aa392d2f743d973c1dfa3730a2ed3f22ce1e6984da848c"
-+"checksum tokio-timer 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "1739638e364e558128461fc1ad84d997702c8e31c2e6b18fb99842268199e827"
-+"checksum tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f02298505547f73e60f568359ef0d016d5acd6e830ab9bc7c4a5b3403440121b"
-+"checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445"
-+"checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382"
-+"checksum typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d2783fe2d6b8c1101136184eb41be8b1ad379e4657050b8aaff0c79ee7575f9"
-+"checksum unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
-+"checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
-+"checksum unicode-normalization 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b561e267b2326bb4cebfc0ef9e68355c7abe6c6f522aeac2f5bf95d56c59bdcf"
-+"checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
-+"checksum unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"
-+"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
-+"checksum url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
-+"checksum urlencoding 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3df3561629a8bb4c57e5a2e4c43348d9e29c7c29d9b1c4c1f47166deca8f37ed"
-+"checksum uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a"
-+"checksum version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce"
-+"checksum walkdir 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
-+"checksum want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
-+"checksum warp 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)" = "3921463c44f680d24f1273ea55efd985f31206a22a02dee207a2ec72684285ca"
-+"checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
-+"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
-+"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
-+"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
-+"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
-+"checksum winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80"
-+"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
-+"checksum winreg 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a27a759395c1195c4cc5cda607ef6f8f6498f64e78f7900f5de0a127a424704a"
-+"checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
-+"checksum xml-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "541b12c998c5b56aa2b4e6f18f03664eef9a4fd0a246a55594efae6cc2d964b5"
-+"checksum yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "65923dd1784f44da1d2c3dbbc5e822045628c590ba72123e1c73d3c230c4434d"
-+"checksum zip 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "36b9e08fb518a65cf7e08a1e482573eb87a2f4f8c6619316612a3c1f162fe822"
diff --git a/third_party/nixpkgs/pkgs/development/tools/geckodriver/default.nix b/third_party/nixpkgs/pkgs/development/tools/geckodriver/default.nix
index 7cc43f14ba..25c2dbf3a1 100644
--- a/third_party/nixpkgs/pkgs/development/tools/geckodriver/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/geckodriver/default.nix
@@ -2,28 +2,29 @@
, fetchzip
, rustPlatform
, stdenv
-, darwin
+, Security
+, libiconv
}:
rustPlatform.buildRustPackage {
- version = "0.26.0";
+ version = "0.29.1";
pname = "geckodriver";
sourceRoot = "source/testing/geckodriver";
# Source revisions are noted alongside the binary releases:
# https://github.com/mozilla/geckodriver/releases
src = (fetchzip {
- url = "https://hg.mozilla.org/mozilla-central/archive/e9783a644016aa9b317887076618425586730d73.zip/testing";
- sha256 = "0m86hqyq1jrr49jkc8mnlmx4bdq281hyxhcrrzacyv20nlqwvd8v";
+ url = "https://hg.mozilla.org/mozilla-central/archive/970ef713fe58cbc8a29bfb2fb452a57e010bdb08.zip/testing";
+ sha256 = "0cpx0kx8asqkmz2nyanbmcvhnrsksgd6jp3wlcd0maid3qbyw7s2";
}).overrideAttrs (_: {
# normally guessed by the url's file extension, force it to unpack properly
unpackCmd = "unzip $curSrc";
});
cargoPatches = [ ./cargo-lock.patch ];
- cargoSha256 = "1dv8vcjy8r9z19grj4gms05bhaafyr42y3q69h3azwq6dmacfd3y";
+ cargoSha256 = "1vajlcpyk77v6nvhs737yi8hs7ids9kz0sbwy29rm1vmmfjp2b27";
- buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
+ buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
meta = with lib; {
description = "Proxy for using W3C WebDriver-compatible clients to interact with Gecko-based browsers";
diff --git a/third_party/nixpkgs/pkgs/development/tools/kubepug/default.nix b/third_party/nixpkgs/pkgs/development/tools/kubepug/default.nix
new file mode 100644
index 0000000000..639e72edb8
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/tools/kubepug/default.nix
@@ -0,0 +1,28 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+ pname = "kubepug";
+ version = "1.1.3";
+
+ src = fetchFromGitHub {
+ owner = "rikatz";
+ repo = "kubepug";
+ rev = "v${version}";
+ sha256 = "094c1qfmsdmy963bxs6lq3xh1zpfdfh16vlhfwi9yywmgcynb3b6";
+ };
+
+ vendorSha256 = "0jzry4znq4kcl6i9jcawilyjm8av1zxbml6nlr96v8x47ijxav5j";
+
+ buildFlagsArray = ''
+ -ldflags=-s -w -X=github.com/rikatz/kubepug/version.Version=${src.rev}
+ '';
+
+ subPackages = [ "cmd/kubepug.go" ];
+
+ meta = with lib; {
+ description = "Checks a Kubernetes cluster for objects using deprecated API versions";
+ homepage = "https://github.com/rikatz/kubepug";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ mausch ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/tools/kustomize/kustomize-sops.nix b/third_party/nixpkgs/pkgs/development/tools/kustomize/kustomize-sops.nix
index 4b448b4697..e471489e70 100644
--- a/third_party/nixpkgs/pkgs/development/tools/kustomize/kustomize-sops.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/kustomize/kustomize-sops.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "kustomize-sops";
- version = "2.5.1";
+ version = "2.5.2";
src = fetchFromGitHub {
owner = "viaduct-ai";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-XZoevXYSlBj8umxC8UNucE21pjDNaeX1c65QAwEuqWQ=";
+ sha256 = "sha256-c8v9O3ufTZ7/rWwLNoak0ITlEVlOg9MvheRjQIxPwKc=";
};
vendorSha256 = "sha256-kJtJ2ut+yhgNoPIY5i3dKmQV0g+8RvcGnxCyay7wy2A=";
diff --git a/third_party/nixpkgs/pkgs/development/tools/misc/universal-ctags/default.nix b/third_party/nixpkgs/pkgs/development/tools/misc/universal-ctags/default.nix
index eea1e78d40..6c1a900999 100644
--- a/third_party/nixpkgs/pkgs/development/tools/misc/universal-ctags/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/misc/universal-ctags/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "universal-ctags";
- version = "5.9.20201206.0";
+ version = "5.9.20210411.0";
src = fetchFromGitHub {
owner = "universal-ctags";
repo = "ctags";
rev = "p${version}";
- sha256 = "0w10zjyz46sjm6ypxmq550dkr84hvc4phm4vm9j53jp5s19x5q19";
+ sha256 = "0c031y0dl2b70pd0mqfbylplf8f27x11b0ch7ljka3rqav0zb1zr";
};
nativeBuildInputs = [ autoreconfHook coreutils pkg-config python3Packages.docutils ];
diff --git a/third_party/nixpkgs/pkgs/development/tools/rust/probe-run/default.nix b/third_party/nixpkgs/pkgs/development/tools/rust/probe-run/default.nix
new file mode 100644
index 0000000000..c4dc0c3410
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/development/tools/rust/probe-run/default.nix
@@ -0,0 +1,25 @@
+{ lib, rustPlatform, fetchFromGitHub, pkg-config, libusb1 }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "probe-run";
+ version = "0.2.1";
+
+ src = fetchFromGitHub {
+ owner = "knurling-rs";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "QEUsigoSqVczrsSSDnOhTXm94JTXHgxeNY0tGsOaRyg=";
+ };
+
+ cargoSha256 = "Fr5XWIUHXyfesouHi0Uryf/ZgB/rDDJ4G1BYGHw0QeQ=";
+
+ nativeBuildInputs = [ pkg-config ];
+ buildInputs = [ libusb1 ];
+
+ meta = with lib; {
+ description = "Run embedded programs just like native ones.";
+ homepage = "https://github.com/knurling-rs/probe-run";
+ license = with licenses; [ asl20 /* or */ mit ];
+ maintainers = with maintainers; [ hoverbear ];
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/development/tools/rust/rust-analyzer/default.nix b/third_party/nixpkgs/pkgs/development/tools/rust/rust-analyzer/default.nix
index cb10b8196a..df4c4ad77d 100644
--- a/third_party/nixpkgs/pkgs/development/tools/rust/rust-analyzer/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/rust/rust-analyzer/default.nix
@@ -4,20 +4,16 @@
, doCheck ? true
}:
-let
- rev = "2021-04-05";
-in
-
-rustPlatform.buildRustPackage {
+rustPlatform.buildRustPackage rec {
pname = "rust-analyzer-unwrapped";
- version = "unstable-${rev}";
- cargoSha256 = "sha256-kDwdKa08E0h24lOOa7ALeNqHlMjMry/ru1qwCIyKmuE=";
+ version = "2021-04-12";
+ cargoSha256 = "1mnx0mnfkvz6gmzy2jcl0wrdwd1mgfnrny4xf9wkd5vd4ks4k338";
src = fetchFromGitHub {
owner = "rust-analyzer";
repo = "rust-analyzer";
- inherit rev;
- sha256 = "sha256-ZDxy87F3uz8bTF1/2LIy5r4Nv/M3xe97F7mwJNEFcUs=";
+ rev = version;
+ sha256 = "1rg20aswbh9palwr3qfcnscsvzmbmhghn4k0nl11m9j7z6hva6bg";
};
buildAndTestSubdir = "crates/rust-analyzer";
@@ -31,7 +27,7 @@ rustPlatform.buildRustPackage {
libiconv
];
- RUST_ANALYZER_REV = rev;
+ RUST_ANALYZER_REV = version;
inherit doCheck;
preCheck = lib.optionalString doCheck ''
@@ -43,7 +39,7 @@ rustPlatform.buildRustPackage {
runHook preInstallCheck
versionOutput="$($out/bin/rust-analyzer --version)"
echo "'rust-analyzer --version' returns: $versionOutput"
- [[ "$versionOutput" == "rust-analyzer ${rev}" ]]
+ [[ "$versionOutput" == "rust-analyzer ${version}" ]]
runHook postInstallCheck
'';
diff --git a/third_party/nixpkgs/pkgs/development/tools/rust/rust-analyzer/update.sh b/third_party/nixpkgs/pkgs/development/tools/rust/rust-analyzer/update.sh
index 185ce70534..a67b6c927a 100755
--- a/third_party/nixpkgs/pkgs/development/tools/rust/rust-analyzer/update.sh
+++ b/third_party/nixpkgs/pkgs/development/tools/rust/rust-analyzer/update.sh
@@ -8,23 +8,23 @@ nixpkgs=../../../../..
# Update lsp
-rev=$(
+ver=$(
curl -s "https://api.github.com/repos/$owner/$repo/releases" |
jq 'map(select(.prerelease | not)) | .[0].tag_name' --raw-output
)
-old_rev=$(sed -nE 's/.*\brev = "(.*)".*/\1/p' ./default.nix)
+old_ver=$(sed -nE 's/.*\bversion = "(.*)".*/\1/p' ./default.nix)
if grep -q 'cargoSha256 = ""' ./default.nix; then
- old_rev='broken'
+ old_ver='broken'
fi
-if [[ "$rev" == "$old_rev" ]]; then
- echo "Up to date: $rev"
+if [[ "$ver" == "$old_ver" ]]; then
+ echo "Up to date: $ver"
exit
fi
-echo "$old_rev -> $rev"
+echo "$old_ver -> $ver"
-sha256=$(nix-prefetch -f "$nixpkgs" rust-analyzer-unwrapped.src --rev "$rev")
+sha256=$(nix-prefetch -f "$nixpkgs" rust-analyzer-unwrapped.src --rev "$ver")
# Clear cargoSha256 to avoid inconsistency.
-sed -e "s#rev = \".*\"#rev = \"$rev\"#" \
+sed -e "s#version = \".*\"#version = \"$ver\"#" \
-e "/fetchFromGitHub/,/}/ s#sha256 = \".*\"#sha256 = \"$sha256\"#" \
-e "s#cargoSha256 = \".*\"#cargoSha256 = \"sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=\"#" \
--in-place ./default.nix
diff --git a/third_party/nixpkgs/pkgs/development/tools/sd-local/default.nix b/third_party/nixpkgs/pkgs/development/tools/sd-local/default.nix
index 65f825dc3b..1df8c27178 100644
--- a/third_party/nixpkgs/pkgs/development/tools/sd-local/default.nix
+++ b/third_party/nixpkgs/pkgs/development/tools/sd-local/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "sd-local";
- version = "1.0.30";
+ version = "1.0.31";
src = fetchFromGitHub {
owner = "screwdriver-cd";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-Ha0E0e9CPR8dnApw0cR4A7Tzi3shYVtSeaQ+6I80qcU=";
+ sha256 = "sha256-2EhXhgSm6rCCXNBCf0BH+MzHeU7n/XAXYXosCjRGEbo=";
};
vendorSha256 = "sha256-4xuWehRrmVdS2F6r00LZLKq/oHlWqCTQ/jYUKeIJ6DI=";
diff --git a/third_party/nixpkgs/pkgs/development/web/cypress/default.nix b/third_party/nixpkgs/pkgs/development/web/cypress/default.nix
index 2d04fc51c8..6dd616fe4f 100644
--- a/third_party/nixpkgs/pkgs/development/web/cypress/default.nix
+++ b/third_party/nixpkgs/pkgs/development/web/cypress/default.nix
@@ -2,27 +2,29 @@
stdenv.mkDerivation rec {
pname = "cypress";
- version = "6.6.0";
+ version = "7.1.0";
src = fetchzip {
url = "https://cdn.cypress.io/desktop/${version}/linux-x64/cypress.zip";
- sha256 = "13zw9gyaqna9d82mwrglab4dfx5y9faqf36d6xplq0z6vnzig1rg";
+ sha256 = "1m52v6hhblrjji9c5885bn5qq0xlaw36krbmqfac7fhgsxmkxd2h";
};
# don't remove runtime deps
dontPatchELF = true;
- nativeBuildInputs = [ autoPatchelfHook wrapGAppsHook ];
+ nativeBuildInputs = [ autoPatchelfHook wrapGAppsHook unzip ];
buildInputs = with xorg; [
- libXScrnSaver libXdamage libXtst
+ libXScrnSaver libXdamage libXtst libxshmfence
] ++ [
- nss gtk2 alsaLib gnome2.GConf gtk3 unzip
+ nss gtk2 alsaLib gnome2.GConf gtk3
];
runtimeDependencies = [ (lib.getLib udev) ];
installPhase = ''
+ runHook preInstall
+
mkdir -p $out/bin $out/opt/cypress
cp -vr * $out/opt/cypress/
# Let's create the file binary_state ourselves to make the npm package happy on initial verification.
@@ -32,6 +34,8 @@ stdenv.mkDerivation rec {
# Cypress now looks for binary_state.json in bin
echo '{"verified": true}' > $out/binary_state.json
ln -s $out/opt/cypress/Cypress $out/bin/Cypress
+
+ runHook postInstall
'';
meta = with lib; {
diff --git a/third_party/nixpkgs/pkgs/development/web/flyctl/default.nix b/third_party/nixpkgs/pkgs/development/web/flyctl/default.nix
index d6c56b0193..08dc303e1f 100644
--- a/third_party/nixpkgs/pkgs/development/web/flyctl/default.nix
+++ b/third_party/nixpkgs/pkgs/development/web/flyctl/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "flyctl";
- version = "0.0.163";
+ version = "0.0.170";
src = fetchFromGitHub {
owner = "superfly";
repo = "flyctl";
rev = "v${version}";
- sha256 = "sha256-cotv0EQKnrUgpBF7ibOHm8gKg6zXS2i19PTi29PajWc=";
+ sha256 = "sha256-9lpO4E6tC2ao1/DFu++siHD0RRtOfUAhfMvVZPGdMsk=";
};
preBuild = ''
@@ -17,7 +17,7 @@ buildGoModule rec {
subPackages = [ "." ];
- vendorSha256 = "sha256-KLqfP5XxR/ObnWZK4qACr0XRpCpa6CW7GLhV34i3CNY=";
+ vendorSha256 = "sha256-DPbCC2n4NpcUuniig7BLanJ84ny9U6eyhzGhsJLpgHA=";
doCheck = false;
diff --git a/third_party/nixpkgs/pkgs/games/sdlpop/default.nix b/third_party/nixpkgs/pkgs/games/sdlpop/default.nix
new file mode 100644
index 0000000000..cef321fdce
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/games/sdlpop/default.nix
@@ -0,0 +1,68 @@
+{ lib, stdenv
+, makeWrapper
+, makeDesktopItem, copyDesktopItems
+, fetchFromGitHub
+, pkg-config
+, SDL2, SDL2_image
+}:
+
+stdenv.mkDerivation rec {
+ pname = "sdlpop";
+ version = "1.21";
+
+ src = fetchFromGitHub {
+ owner = "NagyD";
+ repo = "SDLPoP";
+ rev = "v${version}";
+ sha256 = "1q4mnyg8v4420f1bp24v8lgi335vijdv61yi3fan14jgfzl38l7w";
+ };
+
+ nativeBuildInputs = [ pkg-config makeWrapper copyDesktopItems ];
+ buildInputs = [ SDL2 SDL2_image ];
+
+ makeFlags = [ "-C" "src" ];
+
+ preBuild = ''
+ substituteInPlace src/Makefile --replace "CC = gcc" "CC = ${stdenv.cc.targetPrefix}gcc"
+ '';
+
+ # The prince binary expects two things of the working directory it is called from:
+ # (1) There is a subdirectory "data" containing the level data.
+ # (2) The working directory is writable, so save and quicksave files can be created.
+ # Our solution is to ensure that ~/.local/share/sdlpop is the working
+ # directory, symlinking the data files into it. This is the task of the
+ # prince.sh wrapper.
+
+ installPhase = ''
+ runHook preInstall
+
+ install -Dm755 prince $out/bin/.prince-bin
+ substituteAll ${./prince.sh} $out/bin/prince
+ chmod +x $out/bin/prince
+
+ mkdir -p $out/share/sdlpop
+ cp -r data doc mods SDLPoP.ini $out/share/sdlpop
+
+ install -Dm755 data/icon.png $out/share/icons/hicolor/32x32/apps/sdlpop.png
+
+ runHook postInstall
+ '';
+
+ desktopItems = [ (makeDesktopItem {
+ name = "sdlpop";
+ icon = "sdlpop";
+ exec = "prince";
+ desktopName = "SDLPoP";
+ comment = "An open-source port of Prince of Persia";
+ categories = "Game;AdventureGame;";
+ }) ];
+
+ meta = with lib; {
+ description = "Open-source port of Prince of Persia";
+ homepage = "https://github.com/NagyD/SDLPoP";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ iblech ];
+ platforms = platforms.unix;
+ broken = stdenv.isDarwin;
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/games/sdlpop/prince.sh b/third_party/nixpkgs/pkgs/games/sdlpop/prince.sh
new file mode 100644
index 0000000000..698c347272
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/games/sdlpop/prince.sh
@@ -0,0 +1,16 @@
+#! @shell@
+
+set -euo pipefail
+
+mkdir -p ~/.local/share/sdlpop
+cd ~/.local/share/sdlpop
+
+for i in SDLPoP.ini mods; do
+ [ -e $i ] || cp -r @out@/share/sdlpop/$i .
+done
+
+# Create the data symlink or update it (in case it is a symlink, else the user
+# has probably tinkered with it and does not want it to be recreated).
+[ ! -e data -o -L data ] && ln -sf @out@/share/sdlpop/data .
+
+exec -a "prince" @out@/bin/.prince-bin "$@"
diff --git a/third_party/nixpkgs/pkgs/misc/screensavers/xscreensaver/default.nix b/third_party/nixpkgs/pkgs/misc/screensavers/xscreensaver/default.nix
index 29e931fe24..de230aafd7 100644
--- a/third_party/nixpkgs/pkgs/misc/screensavers/xscreensaver/default.nix
+++ b/third_party/nixpkgs/pkgs/misc/screensavers/xscreensaver/default.nix
@@ -1,62 +1,55 @@
-{ lib, stdenv, fetchurl, pkg-config, bc, perl, pam, libXext, libXScrnSaver, libX11
-, libXrandr, libXmu, libXxf86vm, libXrender, libXxf86misc, libjpeg, libGLU, libGL, gtk2
-, libxml2, libglade, intltool, xorg, makeWrapper, gle, gdk-pixbuf, gdk-pixbuf-xlib
+{ lib, stdenv, fetchurl
+, pkg-config, intltool
+, perl, gettext, libX11, libXext, libXi, libXt
+, libXft, libXinerama, libXrandr, libXxf86vm, libGL, libGLU, gle
+, gtk2, gdk-pixbuf, gdk-pixbuf-xlib, libxml2, pam
+, systemd
, forceInstallAllHacks ? false
+, withSystemd ? stdenv.isLinux
}:
stdenv.mkDerivation rec {
- version = "5.44";
+ version = "6.00";
pname = "xscreensaver";
src = fetchurl {
url = "https://www.jwz.org/${pname}/${pname}-${version}.tar.gz";
- sha256 = "15bv05vpfjwsrqbazrjmm382jd7vvw0mp6y9vasn6wvxzjf0in3k";
+ sha256 = "WFCIl0chuCjr1x/T67AZ0b8xITPJVurJZy1h9rSddwY=";
};
- buildInputs =
- [ pkg-config bc perl libjpeg libGLU libGL gtk2 libxml2 libglade pam
- libXext libXScrnSaver libX11 libXrandr libXmu libXxf86vm libXrender
- libXxf86misc intltool xorg.appres makeWrapper gle gdk-pixbuf
- gdk-pixbuf-xlib
- ];
+ nativeBuildInputs = [
+ pkg-config intltool
+ ];
- preConfigure =
- ''
- # Fix installation paths for GTK resources.
- sed -e 's%@GTK_DATADIR@%@datadir@% ; s%@PO_DATADIR@%@datadir@%' \
- -i driver/Makefile.in po/Makefile.in.in
- '';
+ buildInputs = [
+ perl gettext libX11 libXext libXi libXt
+ libXft libXinerama libXrandr libXxf86vm libGL libGLU gle
+ gtk2 gdk-pixbuf gdk-pixbuf-xlib libxml2 pam
+ ] ++ lib.optional withSystemd systemd;
- configureFlags =
- [ "--with-gl" "--with-pam" "--with-pixbuf" "--with-proc-interrupts"
- "--with-dpms-ext" "--with-randr-ext" "--with-xinerama-ext"
- "--with-xf86vmode-ext" "--with-xf86gamma-ext" "--with-randr-ext"
- "--with-xshm-ext" "--with-xdbe-ext"
- "--with-x-app-defaults=\${out}/share/xscreensaver/app-defaults"
- ];
+ preConfigure = ''
+ # Fix installation paths for GTK resources.
+ sed -e 's%@GTK_DATADIR@%@datadir@% ; s%@PO_DATADIR@%@datadir@%' \
+ -i driver/Makefile.in po/Makefile.in.in
+ '';
- postInstall = ''
- wrapProgram $out/bin/xscreensaver-text \
- --prefix PATH : ${lib.makeBinPath [xorg.appres]}
+ configureFlags = [
+ "--with-app-defaults=${placeholder "out"}/share/xscreensaver/app-defaults"
+ ];
- substituteInPlace $out/bin/xscreensaver-getimage-file \
- --replace '${perl}' '${perl.withPackages (p: with p;
- [ EncodeLocale HTTPDate HTTPMessage IOSocketSSL
- LWP LWPProtocolHttps MozillaCA NetHTTP
- NetSSLeay TryTiny URI
- ])}'
- ''
- + lib.optionalString forceInstallAllHacks ''
- make -C hacks/glx dnalogo
- cat hacks/Makefile.in | grep -E '([a-z0-9]+):[[:space:]]*\1[.]o' | cut -d : -f 1 | xargs make -C hacks
- cat hacks/glx/Makefile.in | grep -E '([a-z0-9]+):[[:space:]]*\1[.]o' | cut -d : -f 1 | xargs make -C hacks/glx
- cp -f $(find hacks -type f -perm -111 "!" -name "*.*" ) "$out/libexec/xscreensaver"
- ''
- ;
+ postInstall = lib.optionalString forceInstallAllHacks ''
+ make -j$NIX_BUILD_CORES -C hacks/glx dnalogo
+ cat hacks/Makefile.in \
+ | grep -E '([a-z0-9]+):[[:space:]]*\1[.]o' | cut -d : -f 1 | xargs make -j$NIX_BUILD_CORES -C hacks
+ cat hacks/glx/Makefile.in \
+ | grep -E '([a-z0-9]+):[[:space:]]*\1[.]o' | cut -d : -f 1 | xargs make -j$NIX_BUILD_CORES -C hacks/glx
+ cp -f $(find hacks -type f -perm -111 "!" -name "*.*" ) "$out/libexec/xscreensaver"
+ '';
meta = {
homepage = "https://www.jwz.org/xscreensaver/";
description = "A set of screensavers";
+ license = lib.licenses.mit;
maintainers = with lib.maintainers; [ raskin ];
platforms = lib.platforms.unix; # Once had cygwin problems
inherit version;
diff --git a/third_party/nixpkgs/pkgs/misc/vim-plugins/generated.nix b/third_party/nixpkgs/pkgs/misc/vim-plugins/generated.nix
index 55794fbaf5..dfed2004ab 100644
--- a/third_party/nixpkgs/pkgs/misc/vim-plugins/generated.nix
+++ b/third_party/nixpkgs/pkgs/misc/vim-plugins/generated.nix
@@ -65,12 +65,12 @@ let
ale = buildVimPluginFrom2Nix {
pname = "ale";
- version = "2021-04-10";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "dense-analysis";
repo = "ale";
- rev = "686c8c5e0acbf3cbf50f1b11eafadd759b017f4a";
- sha256 = "1bwv9yzvlj7ab0ybjrdjhhhqwmg1hjld9m2kb1hq8mgvdc9rsa4c";
+ rev = "1cd0c0c33b211b5fface9b29f9c58bc6ae09323e";
+ sha256 = "0cx8ap63742xr3zmk1gkqrchfzvzg0j9blggcw63s23wr9d1yriw";
};
meta.homepage = "https://github.com/dense-analysis/ale/";
};
@@ -389,12 +389,12 @@ let
chadtree = buildVimPluginFrom2Nix {
pname = "chadtree";
- version = "2021-04-11";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "chadtree";
- rev = "ce6ff8e0f321b1fb3bfd4befaeeb9c97521eba9b";
- sha256 = "0bl914jyw84ya9hay50jk7zdqiw7raxnr2zq8iz6kz8s1zh8r928";
+ rev = "45ace3afea4e722efa3697b37d8c7dd7c58cab9c";
+ sha256 = "113g6jqpy06z9mfc5097w99flvj7m6g8nqxv68ikkdqbp73kx51c";
};
meta.homepage = "https://github.com/ms-jpq/chadtree/";
};
@@ -483,18 +483,6 @@ let
meta.homepage = "https://github.com/neoclide/coc-denite/";
};
- coc-explorer = buildVimPluginFrom2Nix {
- pname = "coc-explorer";
- version = "2021-04-08";
- src = fetchFromGitHub {
- owner = "weirongxu";
- repo = "coc-explorer";
- rev = "adb0ef3bbefee3747ce7ac96551789ea882832fb";
- sha256 = "0kcag0sv94fjcvqfsjx6q1bdq5qvnji5iz2rg3pry49ar1igxmj8";
- };
- meta.homepage = "https://github.com/weirongxu/coc-explorer/";
- };
-
coc-fzf = buildVimPluginFrom2Nix {
pname = "coc-fzf";
version = "2021-03-21";
@@ -630,12 +618,12 @@ let
compe-tabnine = buildVimPluginFrom2Nix {
pname = "compe-tabnine";
- version = "2021-04-04";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "tzachar";
repo = "compe-tabnine";
- rev = "e27296ab377fed567812876bebfd74487062d518";
- sha256 = "0jmn0s398896109j7k8bni2f5qgd63xjnjsmqkljlpc9zvhy1fbz";
+ rev = "def6e1a1c4e4a2c18f7ba3ab61152d96500ba0d3";
+ sha256 = "1m8qrf5984kfmmv4yjs0bnqbhg62mmpag6zsw719r95v7r2j8p6n";
};
meta.homepage = "https://github.com/tzachar/compe-tabnine/";
};
@@ -954,12 +942,12 @@ let
deol-nvim = buildVimPluginFrom2Nix {
pname = "deol-nvim";
- version = "2021-03-31";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "Shougo";
repo = "deol.nvim";
- rev = "09598d454ce12753c562a596b6c6b798537a8e67";
- sha256 = "0vmkgb6fy9vi2spvgqf242vn37yj6sjs68ddz37948l5nazalhrl";
+ rev = "b9dd634beacfda00a6d4c388867cc1348735f3a2";
+ sha256 = "055k2fph67glzlx10611a6z7s10z3jsms21ixzy25hsdvr75xpda";
};
meta.homepage = "https://github.com/Shougo/deol.nvim/";
};
@@ -1607,12 +1595,12 @@ let
git-blame-nvim = buildVimPluginFrom2Nix {
pname = "git-blame-nvim";
- version = "2021-04-10";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "f-person";
repo = "git-blame.nvim";
- rev = "bcfb85765903865fbe0a47682ed66dfc51bbcf28";
- sha256 = "1zc6bsli8bpks3c23vpia38nr02mncmnldwvhip1hghphnf3crwr";
+ rev = "d75b433c1ea96d8133cb33dcdb2d1d47c98e59fb";
+ sha256 = "0b726nf63ydfsxc22v1ymz4z8qcp0i2yxgq5dh7i7b5ws809kyn5";
};
meta.homepage = "https://github.com/f-person/git-blame.nvim/";
};
@@ -1643,12 +1631,12 @@ let
gitsigns-nvim = buildVimPluginFrom2Nix {
pname = "gitsigns-nvim";
- version = "2021-04-10";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "lewis6991";
repo = "gitsigns.nvim";
- rev = "bfd9dcd323e7ec35f34407fc3cfd5700400c88af";
- sha256 = "0w05afpbys8mkqzl13ygzh9c3rcml9q746v3snl2vamm3fjyhmzn";
+ rev = "2ba9f5a7610fac660c8266db244eea91b76dcf48";
+ sha256 = "1zcflhcpvyl1chsxwdcii8lzhig5fwjpvhr5l3wvpr63vix7iy65";
};
meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/";
};
@@ -2076,12 +2064,12 @@ let
julia-vim = buildVimPluginFrom2Nix {
pname = "julia-vim";
- version = "2021-04-10";
+ version = "2021-04-13";
src = fetchFromGitHub {
owner = "JuliaEditorSupport";
repo = "julia-vim";
- rev = "b04bdfee67a62e225fb36aa49a4806bb8c74b5aa";
- sha256 = "0cq58f634qp67xbfd4hwbg8wm2pq2wk05cp2dn6ja2k5vnqymn99";
+ rev = "c76be0ea28926ab60276fd4788eddbd8c96b66fc";
+ sha256 = "1bai15a7wwr7v9z43qjzryb1cpd8xyylfrrlcjjfckw9gbqpgs3w";
};
meta.homepage = "https://github.com/JuliaEditorSupport/julia-vim/";
};
@@ -2352,16 +2340,28 @@ let
lualine-nvim = buildVimPluginFrom2Nix {
pname = "lualine-nvim";
- version = "2021-04-11";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "hoob3rt";
repo = "lualine.nvim";
- rev = "1b81b0021fa133ef6536faacb1789f170b9b4721";
- sha256 = "055hw2z4h24gy74x2svkd0kgcyzdkscbpvcz867ar9f9r9cdf7ah";
+ rev = "8a99a0e9e76d81837ff9156599b399a70cb9fb80";
+ sha256 = "18ch67d3in3k1j766cy1wbbnd2dmbrch5rm9yqwys18263cjsihg";
};
meta.homepage = "https://github.com/hoob3rt/lualine.nvim/";
};
+ lush-nvim = buildVimPluginFrom2Nix {
+ pname = "lush-nvim";
+ version = "2021-04-11";
+ src = fetchFromGitHub {
+ owner = "rktjmp";
+ repo = "lush.nvim";
+ rev = "3db21525382fa158fba22e2a5d033d6afdbc763a";
+ sha256 = "1k0678h22falk08mpvlxlfsx7z89p89clrc9hlk452dzj7wjy7wi";
+ };
+ meta.homepage = "https://github.com/rktjmp/lush.nvim/";
+ };
+
lushtags = buildVimPluginFrom2Nix {
pname = "lushtags";
version = "2017-04-19";
@@ -3072,12 +3072,12 @@ let
nvim-compe = buildVimPluginFrom2Nix {
pname = "nvim-compe";
- version = "2021-04-09";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "nvim-compe";
- rev = "f167a1384c47d7eb632eb27e90cdf7dfdb7169ff";
- sha256 = "1ggwfl8w85di63skxpm75gm3arbhlph9bv6iyiws9c0x79zf5c8j";
+ rev = "4b3ade100866bb64b472644642da670e2fc61dde";
+ sha256 = "0r3kwi5997rcfpc4gs25xcqslnlfwfm1cz2bgvxz389v71vay0mw";
};
meta.homepage = "https://github.com/hrsh7th/nvim-compe/";
};
@@ -3096,12 +3096,12 @@ let
nvim-dap = buildVimPluginFrom2Nix {
pname = "nvim-dap";
- version = "2021-04-10";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "mfussenegger";
repo = "nvim-dap";
- rev = "855b507a3c3608b181c761fd10beb1a4a073e0fb";
- sha256 = "15qnhf1hs8xb97xi21z1g222v77gfbvrcha588rb692qvwxsrwfr";
+ rev = "107c6882fa13f77d8a206709e3d50fb0290d57cc";
+ sha256 = "0c1wq4s3cjysphvkdicxvc87dg6jr2zmxcxfnpz14ncn1s05gr9h";
};
meta.homepage = "https://github.com/mfussenegger/nvim-dap/";
};
@@ -3793,12 +3793,12 @@ let
registers-nvim = buildVimPluginFrom2Nix {
pname = "registers-nvim";
- version = "2021-04-10";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "tversteeg";
repo = "registers.nvim";
- rev = "0a437a3831b4fdaf370c664f54653dcc5aea71fc";
- sha256 = "00q49377fwgy7f6fqqarqwq5m2aqx1clrq63zla72ghai66kmfhc";
+ rev = "29771d7b4d7b5b8b4c7398eef1becb911e2f4038";
+ sha256 = "07j40j3pjsp4dw1aav3j8b202p2zrqyx2zkfb5g5ng07bma5gszn";
};
meta.homepage = "https://github.com/tversteeg/registers.nvim/";
};
@@ -3881,8 +3881,8 @@ let
src = fetchFromGitHub {
owner = "simrat39";
repo = "rust-tools.nvim";
- rev = "7f5295d3ec13d4d2769092a9e3dc849d56e6a7e7";
- sha256 = "0xzi6p895l7hmqpp0lqnn6a85fb5795i582fiahbvn4nkpsksk0s";
+ rev = "230b147432556f2c751e7348a4915e30fd3f8023";
+ sha256 = "0r2d8qqwmjd571h89i4ph44mzmfwnlyyfa7pq4jjsnhns9c6qd47";
};
meta.homepage = "https://github.com/simrat39/rust-tools.nvim/";
};
@@ -4405,6 +4405,30 @@ let
meta.homepage = "https://github.com/nvim-telescope/telescope-fzy-native.nvim/";
};
+ telescope-symbols-nvim = buildVimPluginFrom2Nix {
+ pname = "telescope-symbols-nvim";
+ version = "2021-02-04";
+ src = fetchFromGitHub {
+ owner = "nvim-telescope";
+ repo = "telescope-symbols.nvim";
+ rev = "5139fdf31fdffdac75209362409d62d2b6033a20";
+ sha256 = "0va4czhncw7jhirbqr7wdap4qg3i5x7g6ic8migpmv57ym2py0m9";
+ };
+ meta.homepage = "https://github.com/nvim-telescope/telescope-symbols.nvim/";
+ };
+
+ telescope-z-nvim = buildVimPluginFrom2Nix {
+ pname = "telescope-z-nvim";
+ version = "2021-03-09";
+ src = fetchFromGitHub {
+ owner = "nvim-telescope";
+ repo = "telescope-z.nvim";
+ rev = "c14b6335f42bdda5100f135f18632bf6421c5f0e";
+ sha256 = "01y3b41ff00qi4g11pry73nd851dc5hjl039symhd2y0lf447j7h";
+ };
+ meta.homepage = "https://github.com/nvim-telescope/telescope-z.nvim/";
+ };
+
telescope-nvim = buildVimPluginFrom2Nix {
pname = "telescope-nvim";
version = "2021-04-09";
@@ -4972,12 +4996,12 @@ let
vim-android = buildVimPluginFrom2Nix {
pname = "vim-android";
- version = "2021-02-18";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "hsanson";
repo = "vim-android";
- rev = "1731cd3865669ebec84e6f32a87ccf16a00690fd";
- sha256 = "0k6ch5kg8jlqa04apjdi7xr5s85ibdvg4gq4iyxh78xffw1xzafl";
+ rev = "a3158ec78e63e4858af2704d7a8127728639981e";
+ sha256 = "0rpmsf3ykg6q848f0ahp7qrr33pfp1zzxkpc32w3najyqwsfmz6a";
};
meta.homepage = "https://github.com/hsanson/vim-android/";
};
@@ -5860,12 +5884,12 @@ let
vim-floaterm = buildVimPluginFrom2Nix {
pname = "vim-floaterm";
- version = "2021-03-24";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "voldikss";
repo = "vim-floaterm";
- rev = "ae7eea5c5c6c082fe66410e72306b5b1bcb693dd";
- sha256 = "1lvaww22rj9jnd8b8fjcaclvj8n6vqc390l3z5d7ivm6fc5h1k1j";
+ rev = "b7747704c4df716efd21f331b4d94336c490a5ad";
+ sha256 = "0sl40fvdciir9cbb4bcll971zhk38n6h8kmqy473viki149lg7pa";
};
meta.homepage = "https://github.com/voldikss/vim-floaterm/";
};
@@ -5920,12 +5944,12 @@ let
vim-fugitive = buildVimPluginFrom2Nix {
pname = "vim-fugitive";
- version = "2021-04-11";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-fugitive";
- rev = "94bc89da0fe7083cfda9c1585f3fafb106692769";
- sha256 = "17gy7yiipr5ql888z4zg1la93c8jjgyw7sc7kshvric5906bsxl3";
+ rev = "ae45609cfc3fae91bb7859dde95cb0aee493f34c";
+ sha256 = "17m46r23gbrj8qh6vglcwhkqikjipvkyskkx1k9j9x29vnwz2r54";
};
meta.homepage = "https://github.com/tpope/vim-fugitive/";
};
@@ -6134,6 +6158,18 @@ let
meta.homepage = "https://github.com/takac/vim-hardtime/";
};
+ vim-haskell-module-name = buildVimPluginFrom2Nix {
+ pname = "vim-haskell-module-name";
+ version = "2020-01-20";
+ src = fetchFromGitHub {
+ owner = "chkno";
+ repo = "vim-haskell-module-name";
+ rev = "f9f8e9f83a30b8f805b8fbc0079163e8193b289b";
+ sha256 = "0jawf23gyz9dy6qrh0xhla3z7hgjl1n4g7vmi027j4ipjnlijnji";
+ };
+ meta.homepage = "https://github.com/chkno/vim-haskell-module-name/";
+ };
+
vim-haskellconceal = buildVimPluginFrom2Nix {
pname = "vim-haskellconceal";
version = "2017-06-15";
@@ -6702,12 +6738,12 @@ let
vim-lsp = buildVimPluginFrom2Nix {
pname = "vim-lsp";
- version = "2021-04-04";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "prabirshrestha";
repo = "vim-lsp";
- rev = "bba0f45c892b3c815c65ce44f93bcbe118a40377";
- sha256 = "0wsbh8hx9f5jjdpvzbyb664h927jc44sm6rj2j6r9w6l2m8kr860";
+ rev = "9dc382c04af3389b48fd1ffb5ed4b6c294571f62";
+ sha256 = "19bk55ifqh76528rf3k6pnwfc5y9954cir7apkz6ymrc0abiy47d";
};
meta.homepage = "https://github.com/prabirshrestha/vim-lsp/";
};
@@ -6799,12 +6835,12 @@ let
vim-matchup = buildVimPluginFrom2Nix {
pname = "vim-matchup";
- version = "2021-04-03";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "andymass";
repo = "vim-matchup";
- rev = "e54d6250d7487f008b9f4712a521144b83d6d4bb";
- sha256 = "1x0a8hirs9szx4l3lsb79rmsa8d6ial2r8lxhp1r9vf3d0b71zcl";
+ rev = "58a26a4c0c65a27d54159ba0d8adf8912f89f3c3";
+ sha256 = "19jp6ilfsgwx6p7cq1gvswxxkhhg6czwwyim9g60gd66wrh2xbqf";
};
meta.homepage = "https://github.com/andymass/vim-matchup/";
};
@@ -7555,24 +7591,24 @@ let
vim-rhubarb = buildVimPluginFrom2Nix {
pname = "vim-rhubarb";
- version = "2021-04-05";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-rhubarb";
- rev = "1c36bf8668e329b51f8baf752c4ffe42f8d524ab";
- sha256 = "1ad0ypfv7bsla964q8jd1mds62vr2rfd5309bq7dybbi8z3bz6fp";
+ rev = "b4081f0a882ff36d92d9d3ae5c3b70a378bfd5af";
+ sha256 = "017mb54qc7ix5h1b1hg7rb3j31x5ihmsc1g5286sirzj4rcm90fi";
};
meta.homepage = "https://github.com/tpope/vim-rhubarb/";
};
vim-rooter = buildVimPluginFrom2Nix {
pname = "vim-rooter";
- version = "2021-04-08";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "airblade";
repo = "vim-rooter";
- rev = "e122cb925b2d0e4f44f289fbdffd6a6ebb837a11";
- sha256 = "0hc3k5338az962b2slia6lc5dkby79iqf1mvpxh57j9jp3gn9b3s";
+ rev = "662c00676abab9d7ce16bf9f202420bf86cc6554";
+ sha256 = "1birkzysn8midk627zyp3pla51wmz4sp613gs5xxlms5imq4diaq";
};
meta.homepage = "https://github.com/airblade/vim-rooter/";
};
@@ -7843,12 +7879,12 @@ let
vim-snippets = buildVimPluginFrom2Nix {
pname = "vim-snippets";
- version = "2021-04-06";
+ version = "2021-04-12";
src = fetchFromGitHub {
owner = "honza";
repo = "vim-snippets";
- rev = "4600da87a064bf63b37c7135be154b34c40dec20";
- sha256 = "0vm59wkzxwmpksccv8j9ry6mm0byl75hzb73yn57zdm7s7kv2398";
+ rev = "03f7e3395b1d2a0eaf8fc8bdb83fc95368a8b467";
+ sha256 = "0s7ilz0zm6p03qhadr39v9hpkbygv4i984ac6f8bbdrf5bfkrclk";
};
meta.homepage = "https://github.com/honza/vim-snippets/";
};
@@ -8059,12 +8095,12 @@ let
vim-terraform-completion = buildVimPluginFrom2Nix {
pname = "vim-terraform-completion";
- version = "2019-07-28";
+ version = "2021-04-11";
src = fetchFromGitHub {
owner = "juliosueiras";
repo = "vim-terraform-completion";
- rev = "1c8792d1e85154aa6fc05eb746711bf2df2274d9";
- sha256 = "0j87vhxkrv8sdrlv9w5p2zkiv9ssb3rckbffjcfhn9365d41bhgr";
+ rev = "125d0e892f5fd8f32b57a5a5983d03f1aa611949";
+ sha256 = "1ifw9s68g4ng5vzlavnvjd39c67m87ws6iafmsbnpdywywiq5q09";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/juliosueiras/vim-terraform-completion/";
@@ -8648,12 +8684,12 @@ let
vimspector = buildVimPluginFrom2Nix {
pname = "vimspector";
- version = "2021-04-09";
+ version = "2021-04-11";
src = fetchFromGitHub {
owner = "puremourning";
repo = "vimspector";
- rev = "6709b45c770dca735265ef8d5e30f9f4e602cfd0";
- sha256 = "0ddgyhlrvij630fyx8hx63xk8qqmskgbx1iwjhazhifrflm9gcw7";
+ rev = "fa92c2a8d525972bcc97cba9579d9adfca3c859a";
+ sha256 = "0a8wph6l1nr6ip6d02wg6x6g1zwys45pmj95i8c655fc6877rd79";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/puremourning/vimspector/";
diff --git a/third_party/nixpkgs/pkgs/misc/vim-plugins/overrides.nix b/third_party/nixpkgs/pkgs/misc/vim-plugins/overrides.nix
index d52b248697..f0f1ec2cc3 100644
--- a/third_party/nixpkgs/pkgs/misc/vim-plugins/overrides.nix
+++ b/third_party/nixpkgs/pkgs/misc/vim-plugins/overrides.nix
@@ -800,6 +800,7 @@ self: super: {
"coc-diagnostic"
"coc-emmet"
"coc-eslint"
+ "coc-explorer"
"coc-git"
"coc-go"
"coc-highlight"
diff --git a/third_party/nixpkgs/pkgs/misc/vim-plugins/vim-plugin-names b/third_party/nixpkgs/pkgs/misc/vim-plugins/vim-plugin-names
index 6258e4334b..8cb03c52ce 100644
--- a/third_party/nixpkgs/pkgs/misc/vim-plugins/vim-plugin-names
+++ b/third_party/nixpkgs/pkgs/misc/vim-plugins/vim-plugin-names
@@ -48,6 +48,7 @@ cespare/vim-toml
Chiel92/vim-autoformat
chikatoike/concealedyank.vim
chikatoike/sourcemap.vim
+chkno/vim-haskell-module-name
chr4/nginx.vim
chrisbra/CheckAttach
chrisbra/csv.vim
@@ -439,6 +440,8 @@ nvim-lua/popup.nvim
nvim-telescope/telescope-frecency.nvim
nvim-telescope/telescope-fzf-writer.nvim
nvim-telescope/telescope-fzy-native.nvim
+nvim-telescope/telescope-symbols.nvim
+nvim-telescope/telescope-z.nvim@main
nvim-telescope/telescope.nvim
nvim-treesitter/completion-treesitter
nvim-treesitter/nvim-treesitter
@@ -508,6 +511,7 @@ rhysd/vim-grammarous
rhysd/vim-operator-surround
RishabhRD/nvim-lsputils
RishabhRD/popfix
+rktjmp/lush.nvim@main
rmagatti/auto-session@main
rodjek/vim-puppet
romainl/vim-cool
@@ -717,7 +721,6 @@ w0ng/vim-hybrid
wakatime/vim-wakatime
wannesm/wmgraphviz.vim
wbthomason/packer.nvim
-weirongxu/coc-explorer
wellle/targets.vim
wellle/tmux-complete.vim
wfxr/minimap.vim
diff --git a/third_party/nixpkgs/pkgs/misc/vscode-extensions/default.nix b/third_party/nixpkgs/pkgs/misc/vscode-extensions/default.nix
index 6d6ca873d2..0b68563a28 100644
--- a/third_party/nixpkgs/pkgs/misc/vscode-extensions/default.nix
+++ b/third_party/nixpkgs/pkgs/misc/vscode-extensions/default.nix
@@ -412,9 +412,8 @@ let
mktplcRef = {
name = "github-vscode-theme";
publisher = "github";
- version = "1.1.5";
- sha256 =
- "10f0098cce026d1f0c855fb7a66ea60b5d8acd2b76126ea94fe7361e49cd9ed2";
+ version = "3.0.0";
+ sha256 = "1a77mbx75xfsfdlhgzghj9i7ik080bppc3jm8c00xp6781987fpa";
};
meta = with lib; {
description = "GitHub theme for VS Code";
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/hostapd/default.nix b/third_party/nixpkgs/pkgs/os-specific/linux/hostapd/default.nix
index 2b018c0267..5d4edc4f7e 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/hostapd/default.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/hostapd/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, pkg-config, libnl, openssl, sqlite ? null }:
+{ lib, stdenv, fetchurl, fetchpatch, pkg-config, libnl, openssl, sqlite ? null }:
stdenv.mkDerivation rec {
pname = "hostapd";
@@ -43,6 +43,12 @@ stdenv.mkDerivation rec {
url = "https://w1.fi/security/2020-1/0003-WPS-UPnP-Handle-HTTP-initiation-failures-for-events-.patch";
sha256 = "12npqp2skgrj934wwkqicgqksma0fxz09di29n1b5fm5i4njl8d8";
})
+ # In wpa_supplicant and hostapd 2.9, forging attacks may occur because AlgorithmIdentifier parameters are mishandled in tls/pkcs1.c and tls/x509v3.c.
+ (fetchpatch {
+ name = "CVE-2021-30004.patch";
+ url = "https://w1.fi/cgit/hostap/patch/?id=a0541334a6394f8237a4393b7372693cd7e96f15";
+ sha256 = "1gbhlz41x1ar1hppnb76pqxj6vimiypy7c4kq6h658637s4am3xg";
+ })
];
outputs = [ "out" "man" ];
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/hardened/patches.json b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/hardened/patches.json
index 002799aa6a..9580836ced 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/hardened/patches.json
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/hardened/patches.json
@@ -1,32 +1,32 @@
{
"4.14": {
"extra": "-hardened1",
- "name": "linux-hardened-4.14.228-hardened1.patch",
- "sha256": "0pf3c98m2zlgxv9p10p7xw44f6mqnh8ac47jl1abz3yy3hiag0cd",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.228-hardened1/linux-hardened-4.14.228-hardened1.patch"
+ "name": "linux-hardened-4.14.230-hardened1.patch",
+ "sha256": "1nhaqhjga042b69969f0jy680xlrgnms1178ni6c6xhxy6n7y4pq",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.230-hardened1/linux-hardened-4.14.230-hardened1.patch"
},
"4.19": {
"extra": "-hardened1",
- "name": "linux-hardened-4.19.184-hardened1.patch",
- "sha256": "1828kkq05808mahkfb0387b1k5qp6pysy4mny1xgpwqdphpp1pq9",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.184-hardened1/linux-hardened-4.19.184-hardened1.patch"
+ "name": "linux-hardened-4.19.186-hardened1.patch",
+ "sha256": "01f8scgr3shjxl6w7jqyvb38idrs0m53cafpplvz1q69axaf9gy6",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.186-hardened1/linux-hardened-4.19.186-hardened1.patch"
},
"5.10": {
"extra": "-hardened1",
- "name": "linux-hardened-5.10.27-hardened1.patch",
- "sha256": "12pzv36p0pdaqqklwv6rpk15c1z1nz2syw1si24514p63v46wmhn",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.27-hardened1/linux-hardened-5.10.27-hardened1.patch"
+ "name": "linux-hardened-5.10.29-hardened1.patch",
+ "sha256": "0aj46a6bhfgn8czpmaqpnggmxzfqz29kmh9kif4v3a546q5mrq7n",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.29-hardened1/linux-hardened-5.10.29-hardened1.patch"
},
"5.11": {
"extra": "-hardened1",
- "name": "linux-hardened-5.11.11-hardened1.patch",
- "sha256": "0isq152z4h2kl3rviia9xlpsmdx331kx8p1x00jbf4gcw30amc78",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.11.11-hardened1/linux-hardened-5.11.11-hardened1.patch"
+ "name": "linux-hardened-5.11.13-hardened1.patch",
+ "sha256": "008izyg6a2dycxczfixykshll5hq5gff216fhgl1azr4ymiicywy",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.11.13-hardened1/linux-hardened-5.11.13-hardened1.patch"
},
"5.4": {
"extra": "-hardened1",
- "name": "linux-hardened-5.4.109-hardened1.patch",
- "sha256": "19likbds74lzym969p6hbchlfii4qnsp8y4ryfkba1vv6hv51zzj",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.109-hardened1/linux-hardened-5.4.109-hardened1.patch"
+ "name": "linux-hardened-5.4.111-hardened1.patch",
+ "sha256": "1zvhdyhvmzi58g07bsg8140nf9k29dzxlbqvha2sylnlj99sjjfd",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.111-hardened1/linux-hardened-5.4.111-hardened1.patch"
}
}
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix
index fc647d1095..5b6cc206e4 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "4.14.228";
+ version = "4.14.230";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,7 +13,7 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "0nw1jf6x5a990n69aw2da4s4lc1c7mnwiwcda40bl2rkmd24s1qm";
+ sha256 = "1gn5cs1ss4bfsnnv0b2s4g5ibiigpzsx0i3qfswchdbxvdag75cw";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_14 ];
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix
index b0e5a86572..bab03ada98 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "4.19.184";
+ version = "4.19.186";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,7 +13,7 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "0z5pgal8775rf7pvpxq47dnghr42al2k9py0s9jl3js2wamgdyix";
+ sha256 = "0cg6ja7plry1l2mg6hx16lsw0gzn4xpj7xdrrs2hwl8l8a2dgifq";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_19 ];
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.4.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.4.nix
index 3a5f86db3a..8efd28f06c 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.4.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.4.nix
@@ -1,12 +1,12 @@
{ buildPackages, fetchurl, perl, buildLinux, nixosTests, ... } @ args:
buildLinux (args // rec {
- version = "4.4.264";
+ version = "4.4.266";
extraMeta.branch = "4.4";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1b0d735qnk0bcqn9gdsjqxhk8pkb3597ya9f34lv1vjfaqkkxk7l";
+ sha256 = "00x2dmjiiv9zpc0vih9xqmf78kynqzj9q9v1chc2q2hcjpqfj31c";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_4 ];
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix
index 798a16d7a3..3d58bf31d0 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix
@@ -1,12 +1,12 @@
{ buildPackages, fetchurl, perl, buildLinux, nixosTests, ... } @ args:
buildLinux (args // rec {
- version = "4.9.264";
+ version = "4.9.266";
extraMeta.branch = "4.9";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1df2dv26c9z6zsdlqzbcc60f2pszh0hx1n94v65jswlb72a2mipc";
+ sha256 = "0qzigcslfp714vaswwlw93xj0h2f8laikppw6krrhfnh5wwrp5dr";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_9 ];
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.10.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.10.nix
index f35b0e432b..fd8d8f0b69 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.10.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.10.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.10.27";
+ version = "5.10.29";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,7 +13,7 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "1nb95ll66kxiz702gs903n3gy5ialz8cin58l19rqaai55kck7fr";
+ sha256 = "1v79wylb2kd9gadiqf7dr7jcgynr970bbga09mdn940sq536g30m";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_10 ];
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.11.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.11.nix
index 1c8540d893..54ebe18948 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.11.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.11.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.11.11";
+ version = "5.11.13";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,7 +13,7 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "1fc3yl4srzla3cbihgnry0pqmgcc17zv0zlkk9zpx99371hpay0a";
+ sha256 = "0yvgkc1fmmd4g06sydn51q4l3g5785q9yaaq04lv3kgj4hyijqgs";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_11 ];
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
index e9d72200ed..c80c4ccea2 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.4.109";
+ version = "5.4.111";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,7 +13,7 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "1vmpc6yrr2zm4m3naflwik5111jr8hy0mnyddwk31l0p4xbg8smc";
+ sha256 = "00qs4y4d9adffwysdh8sly81hxc3rw7bi9vs3fs4rhwdclr62qi1";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_4 ];
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-libre.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-libre.nix
index 08898bb0a2..6e264a3ec6 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-libre.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-libre.nix
@@ -1,8 +1,8 @@
{ stdenv, lib, fetchsvn, linux
, scripts ? fetchsvn {
url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/branches/";
- rev = "17920";
- sha256 = "0qmhabh4922lpiimrh9smi1q0w8giw3qqxpyzzy2bmr2037011k0";
+ rev = "17990";
+ sha256 = "1hras4018lgvql1zxw26fzcvk0w1xh6pyh3kmhxxh23k61zl83zk";
}
, ...
}:
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-lqx.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-lqx.nix
index de625cebe4..cf295acd74 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-lqx.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-lqx.nix
@@ -1,7 +1,7 @@
{ lib, fetchFromGitHub, buildLinux, linux_zen, ... } @ args:
let
- version = "5.11.11";
+ version = "5.11.13";
suffix = "lqx1";
in
@@ -14,7 +14,7 @@ buildLinux (args // {
owner = "zen-kernel";
repo = "zen-kernel";
rev = "v${version}-${suffix}";
- sha256 = "1wycqy0m6vjaa39rq7ngwr2qmksqfca27z1711nag7j68dk3ywak";
+ sha256 = "1yx0l90happm6g2cx1ar4lbhfv3a2aalpwhjqyzc8b15af0h0ddv";
};
extraMeta = {
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
index cd6273d21e..215d36af81 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
@@ -6,7 +6,7 @@
, ... } @ args:
let
- version = "5.10.25-rt35"; # updated by ./update-rt.sh
+ version = "5.10.27-rt36"; # updated by ./update-rt.sh
branch = lib.versions.majorMinor version;
kversion = builtins.elemAt (lib.splitString "-" version) 0;
in buildLinux (args // {
@@ -18,14 +18,14 @@ in buildLinux (args // {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
- sha256 = "1p8s8vp5b6vjmvhj3plm0pr0d9qp5lrwm6l40a4bjr1vk9myf2lk";
+ sha256 = "1nb95ll66kxiz702gs903n3gy5ialz8cin58l19rqaai55kck7fr";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
- sha256 = "0kvawcyxg0xzhx73xs9g9s0hr7bs44sy4zvfzvcg2m9hdyafry0k";
+ sha256 = "1bx023ibav6n2di3i2m8i6n4hp7h6zmz9bva7nqxdflbdwfsma1c";
};
}; in [ rt-patch ] ++ lib.remove rt-patch kernelPatches;
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-zen.nix b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-zen.nix
index 8743c9ad55..80bb0c7ae5 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-zen.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/kernel/linux-zen.nix
@@ -1,7 +1,7 @@
{ lib, fetchFromGitHub, buildLinux, ... } @ args:
let
- version = "5.11.11";
+ version = "5.11.13";
suffix = "zen1";
in
@@ -14,7 +14,7 @@ buildLinux (args // {
owner = "zen-kernel";
repo = "zen-kernel";
rev = "v${version}-${suffix}";
- sha256 = "0rldvgvdbsqvshrbv2g335qvwzk76l7rpnp9dwzsiv2qphrzxazi";
+ sha256 = "1m95kqi2njm4cdixy7rwmycdbg386nidrk3xr4qqm64wych9bqn8";
};
extraMeta = {
diff --git a/third_party/nixpkgs/pkgs/os-specific/linux/wpa_supplicant/default.nix b/third_party/nixpkgs/pkgs/os-specific/linux/wpa_supplicant/default.nix
index f9198cc8ff..80eaf04a11 100644
--- a/third_party/nixpkgs/pkgs/os-specific/linux/wpa_supplicant/default.nix
+++ b/third_party/nixpkgs/pkgs/os-specific/linux/wpa_supplicant/default.nix
@@ -37,6 +37,12 @@ stdenv.mkDerivation rec {
url = "https://w1.fi/security/2021-1/0001-P2P-Fix-a-corner-case-in-peer-addition-based-on-PD-R.patch";
sha256 = "04cnds7hmbqc44jasabjvrdnh66i5hwvk2h2m5z94pmgbzncyh3z";
})
+ # In wpa_supplicant and hostapd 2.9, forging attacks may occur because AlgorithmIdentifier parameters are mishandled in tls/pkcs1.c and tls/x509v3.c.
+ (fetchpatch {
+ name = "CVE-2021-30004.patch";
+ url = "https://w1.fi/cgit/hostap/patch/?id=a0541334a6394f8237a4393b7372693cd7e96f15";
+ sha256 = "1gbhlz41x1ar1hppnb76pqxj6vimiypy7c4kq6h658637s4am3xg";
+ })
];
# TODO: Patch epoll so that the dbus actually responds
diff --git a/third_party/nixpkgs/pkgs/servers/home-assistant/component-packages.nix b/third_party/nixpkgs/pkgs/servers/home-assistant/component-packages.nix
index e1ff8d96bb..5e2e70c85f 100644
--- a/third_party/nixpkgs/pkgs/servers/home-assistant/component-packages.nix
+++ b/third_party/nixpkgs/pkgs/servers/home-assistant/component-packages.nix
@@ -2,7 +2,7 @@
# Do not edit!
{
- version = "2021.4.3";
+ version = "2021.4.4";
components = {
"abode" = ps: with ps; [ abodepy ];
"accuweather" = ps: with ps; [ accuweather ];
@@ -549,7 +549,7 @@
"netgear_lte" = ps: with ps; [ ]; # missing inputs: eternalegypt
"netio" = ps: with ps; [ aiohttp-cors ]; # missing inputs: pynetio
"neurio_energy" = ps: with ps; [ ]; # missing inputs: neurio
- "nexia" = ps: with ps; [ ]; # missing inputs: nexia
+ "nexia" = ps: with ps; [ nexia ];
"nextbus" = ps: with ps; [ ]; # missing inputs: py_nextbusnext
"nextcloud" = ps: with ps; [ ]; # missing inputs: nextcloudmonitor
"nfandroidtv" = ps: with ps; [ ];
diff --git a/third_party/nixpkgs/pkgs/servers/home-assistant/default.nix b/third_party/nixpkgs/pkgs/servers/home-assistant/default.nix
index 5e7e97924a..fed9d61114 100644
--- a/third_party/nixpkgs/pkgs/servers/home-assistant/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/home-assistant/default.nix
@@ -108,7 +108,7 @@ let
extraBuildInputs = extraPackages py.pkgs;
# Don't forget to run parse-requirements.py after updating
- hassVersion = "2021.4.3";
+ hassVersion = "2021.4.4";
in with py.pkgs; buildPythonApplication rec {
pname = "homeassistant";
@@ -127,7 +127,7 @@ in with py.pkgs; buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = version;
- sha256 = "00jgnk8vssvk7mdnlijwddwaj56hs1hcyw83r1jqhn5nk5qj3b7q";
+ sha256 = "1p36ymjhirl32ax3xxdg9ia089jw1klww5imq18r6ksajafr78ys";
};
# leave this in, so users don't have to constantly update their downstream patch handling
@@ -300,6 +300,7 @@ in with py.pkgs; buildPythonApplication rec {
"mqtt_room"
"mqtt_statestream"
"mullvad"
+ "nexia"
"notify"
"notion"
"number"
@@ -371,6 +372,7 @@ in with py.pkgs; buildPythonApplication rec {
"wled"
"workday"
"worldclock"
+ "yeelight"
"zeroconf"
"zha"
"zone"
diff --git a/third_party/nixpkgs/pkgs/servers/jackett/default.nix b/third_party/nixpkgs/pkgs/servers/jackett/default.nix
index 12760613a7..0c91226d0c 100644
--- a/third_party/nixpkgs/pkgs/servers/jackett/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/jackett/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "jackett";
- version = "0.17.764";
+ version = "0.17.865";
src = fetchurl {
url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.Mono.tar.gz";
- sha256 = "sha256-x6yjSshTK/dnEPZ/XACDuVpZi0tI1J8tQHBFFvFhCmg=";
+ sha256 = "sha256-kjrch++WncedVkRm05RifUGEYlc5NFAss/E6fgPZWyQ=";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/third_party/nixpkgs/pkgs/servers/mail/mailman/web.nix b/third_party/nixpkgs/pkgs/servers/mail/mailman/web.nix
index 53fdf851cf..2f1e9cd251 100644
--- a/third_party/nixpkgs/pkgs/servers/mail/mailman/web.nix
+++ b/third_party/nixpkgs/pkgs/servers/mail/mailman/web.nix
@@ -1,16 +1,16 @@
{ buildPythonPackage, lib, fetchgit, isPy3k
-, git, makeWrapper, sassc, hyperkitty, postorius, whoosh
+, git, makeWrapper, sassc, hyperkitty, postorius, whoosh, setuptools-scm
}:
buildPythonPackage rec {
- pname = "mailman-web-unstable";
- version = "2019-09-29";
+ pname = "mailman-web";
+ version = "unstable-2021-04-10";
disabled = !isPy3k;
src = fetchgit {
url = "https://gitlab.com/mailman/mailman-web";
- rev = "d17203b4d6bdc71c2b40891757f57a32f3de53d5";
- sha256 = "124cxr4vfi1ibgxygk4l74q4fysx0a6pga1kk9p5wq2yvzwg9z3n";
+ rev = "19a7abe27dd3bc39c0250440de073f0adecd4da1";
+ sha256 = "0h25140n2jaisl0ri5x7gdmbypiys8vlq8dql1zmaxvq459ybxkn";
leaveDotGit = true;
};
@@ -25,7 +25,7 @@ buildPythonPackage rec {
sed -i '/^ Django/d' setup.cfg
'';
- nativeBuildInputs = [ git makeWrapper ];
+ nativeBuildInputs = [ git setuptools-scm makeWrapper ];
propagatedBuildInputs = [ hyperkitty postorius whoosh ];
# Tries to check runtime configuration.
@@ -38,7 +38,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Django project for Mailman 3 web interface";
- license = licenses.gpl3;
- maintainers = with maintainers; [ peti qyliss ];
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ peti qyliss m1cr0man ];
};
}
diff --git a/third_party/nixpkgs/pkgs/servers/monitoring/grafana-agent/default.nix b/third_party/nixpkgs/pkgs/servers/monitoring/grafana-agent/default.nix
index 7ad518308d..1f08dc3344 100644
--- a/third_party/nixpkgs/pkgs/servers/monitoring/grafana-agent/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/monitoring/grafana-agent/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "grafana-agent";
- version = "0.13.0";
+ version = "0.13.1";
src = fetchFromGitHub {
rev = "v${version}";
owner = "grafana";
repo = "agent";
- sha256 = "sha256-wm+WoOvYVa29lMMnXatlQ4gcCLsz+uQZ7D/hUxNjIPc=";
+ sha256 = "sha256-ySdBHlUSGIyhMwInoFT90mm+HfAkO/60wBPACQgxDAM=";
};
vendorSha256 = null;
diff --git a/third_party/nixpkgs/pkgs/servers/pinnwand/default.nix b/third_party/nixpkgs/pkgs/servers/pinnwand/default.nix
index 807f241fa3..507453f550 100644
--- a/third_party/nixpkgs/pkgs/servers/pinnwand/default.nix
+++ b/third_party/nixpkgs/pkgs/servers/pinnwand/default.nix
@@ -1,18 +1,11 @@
-{ lib, python3, fetchFromGitHub, nixosTests }:
+{ lib
+, python3
+, fetchFromGitHub
+, fetchpatch
+, nixosTests
+}:
-let
- python = python3.override {
- packageOverrides = self: super: {
- tornado = super.tornado.overridePythonAttrs (oldAttrs: rec {
- version = "6.0.4";
- src = oldAttrs.src.override {
- inherit version;
- sha256 = "1p5n7sw4580pkybywg93p8ddqdj9lhhy72rzswfa801vlidx9qhg";
- };
- });
- };
- };
-in with python.pkgs; buildPythonApplication rec {
+with python3.pkgs; buildPythonApplication rec {
pname = "pinnwand";
version = "1.2.3";
format = "pyproject";
@@ -24,6 +17,14 @@ in with python.pkgs; buildPythonApplication rec {
sha256 = "1p6agvp136q6km7gjfv8dpjn6x4ap770lqa40ifblyhw13bsrqlh";
};
+ patches = [
+ (fetchpatch {
+ # https://github.com/supakeen/pinnwand/issues/110
+ url = "https://github.com/supakeen/pinnwand/commit/b9e72abb7f25104f5e57248294ed9ae1dbc87240.patch";
+ sha256 = "098acif9ck165398bp7vwfr9g7sj9q3pcdc42z5y63m1nbf8naan";
+ })
+ ];
+
nativeBuildInputs = [
poetry-core
];
@@ -31,10 +32,11 @@ in with python.pkgs; buildPythonApplication rec {
propagatedBuildInputs = [
click
docutils
- tornado
+ pygments
pygments-better-html
- toml
sqlalchemy
+ toml
+ tornado
];
checkInputs = [ pytestCheckHook ];
diff --git a/third_party/nixpkgs/pkgs/shells/zsh/oh-my-zsh/default.nix b/third_party/nixpkgs/pkgs/shells/zsh/oh-my-zsh/default.nix
index 7f39b7d822..00610232e4 100644
--- a/third_party/nixpkgs/pkgs/shells/zsh/oh-my-zsh/default.nix
+++ b/third_party/nixpkgs/pkgs/shells/zsh/oh-my-zsh/default.nix
@@ -5,15 +5,15 @@
, git, nix, nixfmt, jq, coreutils, gnused, curl, cacert }:
stdenv.mkDerivation rec {
- version = "2021-04-07";
+ version = "2021-04-11";
pname = "oh-my-zsh";
- rev = "3f50482674c2b3153590a4aba92fbfa1c01bc583";
+ rev = "12669f29f0843b8b980dd137f150a74511f88842";
src = fetchFromGitHub {
inherit rev;
owner = "ohmyzsh";
repo = "ohmyzsh";
- sha256 = "1ypx15p4c3mrs99xwkii3hwzlpk34mdldlymwiwad1c1ihw1r7r9";
+ sha256 = "07vcxw60cvlh745lgy03l6vgsxkalmwh386akvrpvbg9a6p6k8rb";
};
installPhase = ''
diff --git a/third_party/nixpkgs/pkgs/stdenv/generic/make-derivation.nix b/third_party/nixpkgs/pkgs/stdenv/generic/make-derivation.nix
index 2b89b37f78..7460941278 100644
--- a/third_party/nixpkgs/pkgs/stdenv/generic/make-derivation.nix
+++ b/third_party/nixpkgs/pkgs/stdenv/generic/make-derivation.nix
@@ -193,15 +193,21 @@ in rec {
"__darwinAllowLocalNetworking"
"__impureHostDeps" "__propagatedImpureHostDeps"
"sandboxProfile" "propagatedSandboxProfile"])
- // (lib.optionalAttrs (!(attrs ? name) && attrs ? pname && attrs ? version)) {
- name = "${attrs.pname}-${attrs.version}";
- } // (lib.optionalAttrs (stdenv.hostPlatform != stdenv.buildPlatform && !dontAddHostSuffix && (attrs ? name || (attrs ? pname && attrs ? version)))) {
- # Fixed-output derivations like source tarballs shouldn't get a host
- # suffix. But we have some weird ones with run-time deps that are
- # just used for their side-affects. Those might as well since the
- # hash can't be the same. See #32986.
- name = "${attrs.name or "${attrs.pname}-${attrs.version}"}-${stdenv.hostPlatform.config}";
- } // {
+ // (lib.optionalAttrs (attrs ? name || (attrs ? pname && attrs ? version)) {
+ name =
+ let
+ staticMarker = lib.optionalString stdenv.hostPlatform.isStatic "-static";
+ name' = attrs.name or
+ "${attrs.pname}${staticMarker}-${attrs.version}";
+ # Fixed-output derivations like source tarballs shouldn't get a host
+ # suffix. But we have some weird ones with run-time deps that are
+ # just used for their side-affects. Those might as well since the
+ # hash can't be the same. See #32986.
+ hostSuffix = lib.optionalString
+ (stdenv.hostPlatform != stdenv.buildPlatform && !dontAddHostSuffix)
+ "-${stdenv.hostPlatform.config}";
+ in name' + hostSuffix;
+ }) // {
builder = attrs.realBuilder or stdenv.shell;
args = attrs.args or ["-e" (attrs.builder or ./default-builder.sh)];
inherit stdenv;
diff --git a/third_party/nixpkgs/pkgs/tools/admin/afterburn/default.nix b/third_party/nixpkgs/pkgs/tools/admin/afterburn/default.nix
index 8a42a011da..7b522dd93b 100644
--- a/third_party/nixpkgs/pkgs/tools/admin/afterburn/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/admin/afterburn/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "afterburn";
- version = "4.6.0";
+ version = "5.0.0";
src = fetchFromGitHub {
owner = "coreos";
repo = "afterburn";
rev = "v${version}";
- sha256 = "1afy9spm8g8bq2pw44dkrkfz4aimhdz4h5lg9iafby832v5dxbqj";
+ sha256 = "sha256-sdgAZuT8bIX4eWN7nLNNyclxazmCBr5kDFS6s6cRXVU=";
};
- cargoSha256 = "035k55l0hs39a87iq8yxx4i87829kzvvmlgph0adjfmsppz5b8k1";
+ cargoSha256 = "sha256-IzcaaQjge2z49XwyFcPHX/AMjvrbcOLw0J1qBzHw7Is=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
diff --git a/third_party/nixpkgs/pkgs/tools/admin/awscli/default.nix b/third_party/nixpkgs/pkgs/tools/admin/awscli/default.nix
index fe28df060a..7eb5dc6a8a 100644
--- a/third_party/nixpkgs/pkgs/tools/admin/awscli/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/admin/awscli/default.nix
@@ -21,11 +21,11 @@ let
in
with py.pkgs; buildPythonApplication rec {
pname = "awscli";
- version = "1.19.46"; # N.B: if you change this, change botocore and boto3 to a matching version too
+ version = "1.19.49"; # N.B: if you change this, change botocore and boto3 to a matching version too
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-Cs+VOgbW/x1vsgMPgUG6PRlqZcvzHQCIRYuR6AsSYP4=";
+ sha256 = "sha256-SiE3t26giRwNMJHGpeSzEO0nFjXS+bms4pRydOGWQyI=";
};
# https://github.com/aws/aws-cli/issues/4837
diff --git a/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/default.nix b/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/default.nix
index 2ff2bf92f8..f89e02c859 100644
--- a/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/admin/google-cloud-sdk/default.nix
@@ -21,18 +21,18 @@ let
sources = name: system: {
x86_64-darwin = {
url = "${baseUrl}/${name}-darwin-x86_64.tar.gz";
- sha256 = "0csgdmzr9h3vnqn8gxvgg2mnjzackkvrid1i55l2fqcad69h6w1k";
+ sha256 = "0fb0bw16idj810si32fxqx1nl057bdsjk3pvkgzpf7j96v2lkw71";
};
x86_64-linux = {
url = "${baseUrl}/${name}-linux-x86_64.tar.gz";
- sha256 = "0gcxldk3c03dipbkj9yzaa4v1s6bf9zlwslvi8dv3s3kbljjd84b";
+ sha256 = "0gnnp8whcx6ada8a4xs8kxrbza97zivk57r9qzv0q5arg4xslagr";
};
}.${system};
in stdenv.mkDerivation rec {
pname = "google-cloud-sdk";
- version = "334.0.0";
+ version = "336.0.0";
src = fetchurl (sources "${pname}-${version}" stdenv.hostPlatform.system);
diff --git a/third_party/nixpkgs/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix b/third_party/nixpkgs/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix
new file mode 100644
index 0000000000..9e367d7079
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix
@@ -0,0 +1,46 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, extra-cmake-modules
+, pkg-config
+, fcitx5
+, m17n_lib
+, m17n_db
+, gettext
+, fmt
+}:
+
+stdenv.mkDerivation rec {
+ pname = "fcitx5-m17n";
+ version = "5.0.4";
+
+ src = fetchFromGitHub {
+ owner = "fcitx";
+ repo = pname;
+ rev = version;
+ sha256 = "sha256-yI6Svr1KEdHqAX3qd7t7GvD0EcWg0A2vZpuJw1U9oKQ=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ extra-cmake-modules
+ pkg-config
+ gettext
+ ];
+
+ buildInputs = [
+ fcitx5
+ m17n_db
+ m17n_lib
+ fmt
+ ];
+
+ meta = with lib; {
+ description = "m17n support for Fcitx5";
+ homepage = "https://github.com/fcitx/fcitx5-m17n";
+ license = licenses.lgpl21Plus;
+ maintainers = with maintainers; [ Technical27 ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/third_party/nixpkgs/pkgs/tools/misc/chezmoi/default.nix b/third_party/nixpkgs/pkgs/tools/misc/chezmoi/default.nix
index 78a2dcb456..f6c6b1aecc 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/chezmoi/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/chezmoi/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "chezmoi";
- version = "2.0.8";
+ version = "2.0.9";
src = fetchFromGitHub {
owner = "twpayne";
repo = "chezmoi";
rev = "v${version}";
- sha256 = "sha256-bGrGekZLystw3AvQP9bdFGlxteGCzwrhamaO8WLKf7U=";
+ sha256 = "sha256-yDd9u9cwC+bjB0ZQW0EgEDaHmWwkUprwXIiVrOVP2nk=";
};
- vendorSha256 = "sha256-YU+t8GVsLYWONezUIB4NUrVxtYOmf/2b5v4v3VSYtBU=";
+ vendorSha256 = "sha256-c6YIWpC8sQA/gbgD2vuuFvwccEE00aUrj6gcPpJsn0k=";
doCheck = false;
diff --git a/third_party/nixpkgs/pkgs/tools/misc/exa/default.nix b/third_party/nixpkgs/pkgs/tools/misc/exa/default.nix
index 51873d479f..632eb45905 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/exa/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/exa/default.nix
@@ -4,17 +4,20 @@
rustPlatform.buildRustPackage rec {
pname = "exa";
- version = "0.10.0";
-
- cargoSha256 = "sha256-hslQZkmZ023gKxBbfgwqazBPUk0qWyy51uRJtr3QvWE=";
+ version = "0.10.1";
src = fetchFromGitHub {
owner = "ogham";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-xolanu4zhAwsbSPdGKgY2/uHtP30DSpr/7Vv1z4jEnQ=";
+ sha256 = "sha256-vChsy/FrJEzTO5O+XFycPMP3jqOeea/hfsC0jJbqUVI=";
};
+ # Cargo.lock is outdated
+ cargoPatches = [ ./update-cargo-lock.diff ];
+
+ cargoSha256 = "sha256-ah8IjShmivS6IWL3ku/4/j+WNr/LdUnh1YJnPdaFdcM=";
+
nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ];
buildInputs = [ zlib ]
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
@@ -44,6 +47,7 @@ rustPlatform.buildRustPackage rec {
for a directory, or recursing into directories with a tree view. exa is
written in Rust, so it’s small, fast, and portable.
'';
+ changelog = "https://github.com/ogham/exa/releases/tag/v${version}";
homepage = "https://the.exa.website";
license = licenses.mit;
maintainers = with maintainers; [ ehegnes lilyball globin fortuneteller2k ];
diff --git a/third_party/nixpkgs/pkgs/tools/misc/exa/update-cargo-lock.diff b/third_party/nixpkgs/pkgs/tools/misc/exa/update-cargo-lock.diff
new file mode 100644
index 0000000000..a4c821e474
--- /dev/null
+++ b/third_party/nixpkgs/pkgs/tools/misc/exa/update-cargo-lock.diff
@@ -0,0 +1,13 @@
+diff --git a/Cargo.lock b/Cargo.lock
+index df94188..ed3a068 100644
+--- a/Cargo.lock
++++ b/Cargo.lock
+@@ -57,7 +57,7 @@ dependencies = [
+
+ [[package]]
+ name = "exa"
+-version = "0.11.0-pre"
++version = "0.10.1"
+ dependencies = [
+ "ansi_term",
+ "datetime",
diff --git a/third_party/nixpkgs/pkgs/tools/misc/fluent-bit/default.nix b/third_party/nixpkgs/pkgs/tools/misc/fluent-bit/default.nix
index 762d93ea1e..8b751237f6 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/fluent-bit/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/fluent-bit/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "fluent-bit";
- version = "1.7.2";
+ version = "1.7.3";
src = fetchFromGitHub {
owner = "fluent";
repo = "fluent-bit";
rev = "v${version}";
- sha256 = "sha256-5R26NvhSYesMk/8i9+5H3pZTgbdbnuQ1rLlCa/gWJGc=";
+ sha256 = "sha256-a3AVem+VbYKUsxAzGNu/VPqDiqG99bmj9p1/iiG1ZFw=";
};
nativeBuildInputs = [ cmake flex bison ];
diff --git a/third_party/nixpkgs/pkgs/tools/misc/fselect/default.nix b/third_party/nixpkgs/pkgs/tools/misc/fselect/default.nix
index 71ed340d14..d60e68a0e3 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/fselect/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/fselect/default.nix
@@ -11,7 +11,7 @@ rustPlatform.buildRustPackage rec {
sha256 = "sha256-gwFX5c5y4bL+KhPDnvCbDco1ORYyqZYFsetMrmOATZU=";
};
- cargoSha256 = "sha256-2cs+5UL3tNfUzjlFIdsG05moiOktXSJOZJlgo/rZINw=";
+ cargoSha256 = "sha256-gWCiaAgb7hBenbp1kogCoB6vctYfDZccRW9li2yxJaU=";
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optional stdenv.isDarwin libiconv;
diff --git a/third_party/nixpkgs/pkgs/tools/misc/remind/default.nix b/third_party/nixpkgs/pkgs/tools/misc/remind/default.nix
index bbe96bf6c2..293cc136c8 100644
--- a/third_party/nixpkgs/pkgs/tools/misc/remind/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/misc/remind/default.nix
@@ -1,10 +1,11 @@
-{lib, stdenv, fetchurl, tk, tcllib, makeWrapper
+{ lib
+, stdenv
+, fetchurl
+, tk
+, tcllib
+, makeWrapper
, tkremind ? true
-} :
-
-assert tkremind -> tk != null;
-assert tkremind -> tcllib != null;
-assert tkremind -> makeWrapper != null;
+}:
let
inherit (lib) optional optionalString;
@@ -14,13 +15,14 @@ let
tkremindPatch = optionalString tkremind ''
substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish"
'';
-in stdenv.mkDerivation rec {
+in
+stdenv.mkDerivation rec {
pname = "remind";
- version = "03.03.05";
+ version = "03.03.06";
src = fetchurl {
url = "https://dianne.skoll.ca/projects/remind/download/remind-${version}.tar.gz";
- sha256 = "sha256-Ye0X2Gvek/pyaNVxGKL773OWJvC4I6F5nEsRQgzWbsE=";
+ sha256 = "sha256-lpoMAXDJxwODY0/aoo25GRBYWFhE4uf11pR5/ITZX1s=";
};
nativeBuildInputs = optional tkremind makeWrapper;
@@ -39,11 +41,11 @@ in stdenv.mkDerivation rec {
wrapProgram $out/bin/tkremind --set TCLLIBPATH "${tclLibPaths}"
'';
- meta = {
+ meta = with lib; {
homepage = "https://dianne.skoll.ca/projects/remind/";
description = "Sophisticated calendar and alarm program for the console";
- license = lib.licenses.gpl2;
- maintainers = with lib.maintainers; [raskin kovirobi];
- platforms = with lib.platforms; unix;
+ license = licenses.gpl2Only;
+ maintainers = with maintainers; [ raskin kovirobi ];
+ platforms = platforms.unix;
};
}
diff --git a/third_party/nixpkgs/pkgs/tools/package-management/apk-tools/default.nix b/third_party/nixpkgs/pkgs/tools/package-management/apk-tools/default.nix
index fed7de01b9..c8b2ce0030 100644
--- a/third_party/nixpkgs/pkgs/tools/package-management/apk-tools/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/package-management/apk-tools/default.nix
@@ -4,14 +4,14 @@
stdenv.mkDerivation rec {
pname = "apk-tools";
- version = "2.12.2";
+ version = "2.12.5";
src = fetchFromGitLab {
domain = "gitlab.alpinelinux.org";
owner = "alpine";
repo = "apk-tools";
rev = "v${version}";
- sha256 = "1crx2xlswi7i0mwgzrfphpf49ghfnh79fi5dn1sl611j9sy9wa29";
+ sha256 = "0961l2qigs3wwn8lpi5f2wnzn4y4cipcm6qcr40fqj4xyq2hz2ja";
};
nativeBuildInputs = [ pkg-config scdoc ]
diff --git a/third_party/nixpkgs/pkgs/tools/package-management/nix-du/default.nix b/third_party/nixpkgs/pkgs/tools/package-management/nix-du/default.nix
index 2b07827c4a..75de1caa2d 100644
--- a/third_party/nixpkgs/pkgs/tools/package-management/nix-du/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/package-management/nix-du/default.nix
@@ -1,17 +1,17 @@
-{ lib, stdenv, fetchFromGitHub, rustPlatform, nix, boost, graphviz, darwin }:
+{ lib, stdenv, fetchFromGitHub, rustPlatform, nix, boost, graphviz, Security, pkg-config }:
rustPlatform.buildRustPackage rec {
pname = "nix-du";
- version = "0.3.3";
+ version = "0.3.4";
src = fetchFromGitHub {
owner = "symphorien";
repo = "nix-du";
rev = "v${version}";
- sha256 = "0h8ya0nn65hbyi3ssmrjarfxadx2sa61sspjlrln8knk7ppxk3mq";
+ sha256 = "0iwlprjbphwsrxdhgsxa8ja73snsyh0rdxrpsf1ygid2ky5vc83f";
};
- cargoSha256 = "0d86bn6myr29bwrzw3ihnzg1yij673s80bm1l8srk2k2szyfwwh5";
+ cargoSha256 = "19fwkw9iswzkhqgfq7pmcabqmq5c7vvirwaxbfjshkwcgn47rgjl";
doCheck = true;
checkInputs = [ nix graphviz ];
@@ -19,12 +19,14 @@ rustPlatform.buildRustPackage rec {
buildInputs = [
boost
nix
- ] ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
+ ] ++ lib.optionals stdenv.isDarwin [ Security ];
+
+ nativeBuildInputs = [ pkg-config ];
meta = with lib; {
description = "A tool to determine which gc-roots take space in your nix store";
homepage = "https://github.com/symphorien/nix-du";
- license = licenses.lgpl3;
+ license = licenses.lgpl3Only;
maintainers = [ maintainers.symphorien ];
platforms = platforms.unix;
};
diff --git a/third_party/nixpkgs/pkgs/tools/package-management/nix/default.nix b/third_party/nixpkgs/pkgs/tools/package-management/nix/default.nix
index 2358f6e335..7eda5ae6f3 100644
--- a/third_party/nixpkgs/pkgs/tools/package-management/nix/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/package-management/nix/default.nix
@@ -24,14 +24,13 @@ common =
, withLibseccomp ? lib.any (lib.meta.platformMatch stdenv.hostPlatform) libseccomp.meta.platforms, libseccomp
, withAWS ? !enableStatic && (stdenv.isLinux || stdenv.isDarwin), aws-sdk-cpp
, enableStatic ? stdenv.hostPlatform.isStatic
- , name, suffix ? "", src
+ , pname, version, suffix ? "", src
, patches ? [ ]
}:
let
sh = busybox-sandbox-shell;
nix = stdenv.mkDerivation rec {
- inherit name src patches;
- version = lib.getVersion name;
+ inherit pname version src patches;
is24 = lib.versionAtLeast version "2.4pre";
@@ -196,9 +195,10 @@ in rec {
nix = nixStable;
nixStable = callPackage common (rec {
- name = "nix-2.3.10";
+ pname = "nix";
+ version = "2.3.10";
src = fetchurl {
- url = "https://nixos.org/releases/nix/${name}/${name}.tar.xz";
+ url = "https://nixos.org/releases/nix/${pname}-${version}/${pname}-${version}.tar.xz";
sha256 = "a8a85e55de43d017abbf13036edfb58674ca136691582f17080c1cd12787b7ab";
};
@@ -213,7 +213,8 @@ in rec {
});
nixUnstable = lib.lowPrio (callPackage common rec {
- name = "nix-2.4${suffix}";
+ pname = "nix";
+ version = "2.4${suffix}";
suffix = "pre20210326_dd77f71";
src = fetchFromGitHub {
diff --git a/third_party/nixpkgs/pkgs/tools/security/yara/default.nix b/third_party/nixpkgs/pkgs/tools/security/yara/default.nix
index 844004c3b9..506bf0f719 100644
--- a/third_party/nixpkgs/pkgs/tools/security/yara/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/security/yara/default.nix
@@ -6,8 +6,11 @@
, pkg-config
, protobufc
, withCrypto ? true, openssl
-, enableMagic ? true, file
, enableCuckoo ? true, jansson
+, enableDex ? true
+, enableDotNet ? true
+, enableMacho ? true
+, enableMagic ? true, file
}:
stdenv.mkDerivation rec {
@@ -46,14 +49,18 @@ stdenv.mkDerivation rec {
configureFlags = [
(lib.withFeature withCrypto "crypto")
- (lib.enableFeature enableMagic "magic")
(lib.enableFeature enableCuckoo "cuckoo")
+ (lib.enableFeature enableDex "dex")
+ (lib.enableFeature enableDotNet "dotnet")
+ (lib.enableFeature enableMacho "macho")
+ (lib.enableFeature enableMagic "magic")
];
meta = with lib; {
description = "The pattern matching swiss knife for malware researchers";
homepage = "http://Virustotal.github.io/yara/";
license = licenses.asl20;
+ maintainers = with maintainers; [ fab ];
platforms = platforms.all;
};
}
diff --git a/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/Gemfile b/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/Gemfile
deleted file mode 100644
index 9b3347860b..0000000000
--- a/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/Gemfile
+++ /dev/null
@@ -1,2 +0,0 @@
-source 'https://rubygems.org'
-gem 'kramdown-rfc2629'
diff --git a/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/Gemfile.lock b/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/Gemfile.lock
deleted file mode 100644
index feab5cddf9..0000000000
--- a/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/Gemfile.lock
+++ /dev/null
@@ -1,19 +0,0 @@
-GEM
- remote: https://rubygems.org/
- specs:
- certified (1.0.0)
- json_pure (2.5.1)
- kramdown (1.17.0)
- kramdown-rfc2629 (1.3.37)
- certified (~> 1.0)
- json_pure (~> 2.0)
- kramdown (~> 1.17.0)
-
-PLATFORMS
- ruby
-
-DEPENDENCIES
- kramdown-rfc2629
-
-BUNDLED WITH
- 2.1.4
diff --git a/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/default.nix b/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/default.nix
deleted file mode 100644
index 945c676ca1..0000000000
--- a/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/default.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ lib, bundlerApp }:
-
-# Not in the default ../../../development/ruby-modules/with-packages/Gemfile
-# because of version clash on the "kramdown" dependency.
-bundlerApp rec {
- pname = "kramdown-rfc2629";
- gemdir = ./.;
- exes = [ "kramdown-rfc2629" ];
-
- meta = with lib; {
- description = "A markdown parser with multiple backends";
- homepage = "https://github.com/cabo/kramdown-rfc2629";
- license = with licenses; mit;
- maintainers = with maintainers; [
- vcunat # not really, but I expect to use it occasionally around IETF
- ];
- };
-}
diff --git a/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/gemset.nix b/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/gemset.nix
deleted file mode 100644
index f0b6c39a35..0000000000
--- a/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/gemset.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- certified = {
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1706p6p0a8adyvd943af2a3093xakvislgffw3v9dvp7j07dyk5a";
- type = "gem";
- };
- version = "1.0.0";
- };
- json_pure = {
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "030hmc268wchqsccbjk41hvbyg99krpa72i3q0y3wwqzfh8hi736";
- type = "gem";
- };
- version = "2.5.1";
- };
- kramdown = {
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1n1c4jmrh5ig8iv1rw81s4mw4xsp4v97hvf8zkigv4hn5h542qjq";
- type = "gem";
- };
- version = "1.17.0";
- };
- kramdown-rfc2629 = {
- dependencies = ["certified" "json_pure" "kramdown"];
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "16m08q5bgib3i54bb9p3inrxb1xksiybs9zj1rnncq492gcqqv4j";
- type = "gem";
- };
- version = "1.3.37";
- };
-}
diff --git a/third_party/nixpkgs/pkgs/tools/typesetting/lowdown/default.nix b/third_party/nixpkgs/pkgs/tools/typesetting/lowdown/default.nix
index 13606521b8..b9b5e806a4 100644
--- a/third_party/nixpkgs/pkgs/tools/typesetting/lowdown/default.nix
+++ b/third_party/nixpkgs/pkgs/tools/typesetting/lowdown/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "lowdown";
- version = "0.8.3";
+ version = "0.8.4";
outputs = [ "out" "lib" "dev" "man" ];
src = fetchurl {
url = "https://kristaps.bsd.lv/lowdown/snapshots/lowdown-${version}.tar.gz";
- sha512 = "17q1jd2vih26yjjc4f9kg0qihrym8h0ydnli6z8p3h4rdwm4kfnvckrpkwminz5wl0k5z6d65dk7q4pynyfynp31d6s7q4yzkkqy6kc";
+ sha512 = "1rbsngfw36lyc8s6qxl8hgb1pzj0gdzlb7yqkfblb8fpgs2z0ggyhnfszrqfir8s569i7a9yk9bdx2ggwqhjj56hmi2i4inlnb3rmni";
};
nativeBuildInputs = [ which ]
@@ -30,6 +30,9 @@ stdenv.mkDerivation rec {
patches = lib.optional (!stdenv.hostPlatform.isStatic) ./shared.patch;
+ doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
+ checkTarget = "regress";
+
meta = with lib; {
homepage = "https://kristaps.bsd.lv/lowdown/";
description = "Simple markdown translator";
diff --git a/third_party/nixpkgs/pkgs/top-level/aliases.nix b/third_party/nixpkgs/pkgs/top-level/aliases.nix
index f9e470aaac..d05c81dcaa 100644
--- a/third_party/nixpkgs/pkgs/top-level/aliases.nix
+++ b/third_party/nixpkgs/pkgs/top-level/aliases.nix
@@ -341,6 +341,7 @@ mapAliases ({
krename-qt5 = krename; # added 2017-02-18
kerberos = libkrb5; # moved from top-level 2021-03-14
keymon = throw "keymon has been removed from nixpkgs, as it's abandoned and archived."; # 2019-12-10
+ kramdown-rfc2629 = rubyPackages.kramdown-rfc2629; # added 2021-03-23
kvm = qemu_kvm; # added 2018-04-25
latinmodern-math = lmmath;
letsencrypt = certbot; # added 2016-05-16
@@ -578,6 +579,7 @@ mapAliases ({
ppl-address-book = throw "ppl-address-book deprecated on 2019-05-02: abandoned by upstream.";
processing3 = processing; # added 2019-08-16
procps-ng = procps; # added 2018-06-08
+ proj_5 = throw "Proj-5 has been removed from nixpkgs, use proj instead."; # added 2021-04-12
prometheus-cups-exporter = throw "outdated and broken by design; removed by developer."; # added 2021-03-16
pygmentex = texlive.bin.pygmentex; # added 2019-12-15
pyload = throw "pyload has been removed from nixpkgs, as it was unmaintained."; # added 2021-03-21
@@ -622,6 +624,7 @@ mapAliases ({
rfkill = throw "rfkill has been removed, as it's included in util-linux"; # added 2020-08-23
riak-cs = throw "riak-cs is not maintained anymore"; # added 2020-10-14
radare2-cutter = cutter; # added 2021-03-30
+ redkite = throw "redkite was archived by upstream"; # added 2021-04-12
rkt = throw "rkt was archived by upstream"; # added 2020-05-16
ruby_2_0_0 = throw "ruby_2_0_0 was deprecated on 2018-02-13: use a newer version of ruby";
ruby_2_1_0 = throw "ruby_2_1_0 was deprecated on 2018-02-13: use a newer version of ruby";
diff --git a/third_party/nixpkgs/pkgs/top-level/all-packages.nix b/third_party/nixpkgs/pkgs/top-level/all-packages.nix
index d0b7d5ea2e..6dd393492c 100644
--- a/third_party/nixpkgs/pkgs/top-level/all-packages.nix
+++ b/third_party/nixpkgs/pkgs/top-level/all-packages.nix
@@ -257,6 +257,8 @@ in
html5validator = python3Packages.callPackage ../applications/misc/html5validator { };
+ probe-run = callPackage ../development/tools/rust/probe-run {};
+
proto-contrib = callPackage ../development/tools/proto-contrib {};
protoc-gen-doc = callPackage ../development/tools/protoc-gen-doc {};
@@ -959,6 +961,8 @@ in
lua = lua5_3;
};
+ apkid = callPackage ../development/tools/apkid { };
+
apktool = callPackage ../development/tools/apktool {
inherit (androidenv.androidPkgs_9_0) build-tools;
};
@@ -2510,7 +2514,9 @@ in
go-neb = callPackage ../applications/networking/instant-messengers/go-neb { };
- geckodriver = callPackage ../development/tools/geckodriver { };
+ geckodriver = callPackage ../development/tools/geckodriver {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ };
geekbench = callPackage ../tools/misc/geekbench { };
@@ -2661,8 +2667,6 @@ in
klaus = with python3Packages; toPythonApplication klaus;
- kramdown-rfc2629 = callPackage ../tools/text/kramdown-rfc2629 { };
-
klipper = callPackage ../servers/klipper { };
klog = qt5.callPackage ../applications/radio/klog { };
@@ -4352,6 +4356,8 @@ in
fcitx5-lua = callPackage ../tools/inputmethods/fcitx5/fcitx5-lua.nix { };
+ fcitx5-m17n = callPackage ../tools/inputmethods/fcitx5/fcitx5-m17n.nix { };
+
fcitx5-gtk = callPackage ../tools/inputmethods/fcitx5/fcitx5-gtk.nix { };
fcitx5-rime = callPackage ../tools/inputmethods/fcitx5/fcitx5-rime.nix { };
@@ -4374,8 +4380,6 @@ in
feedreader = callPackage ../applications/networking/feedreaders/feedreader {};
- feeds = callPackage ../applications/networking/feedreaders/feeds {};
-
fend = callPackage ../tools/misc/fend { };
ferm = callPackage ../tools/networking/ferm { };
@@ -4959,6 +4963,8 @@ in
gnome-builder = callPackage ../applications/editors/gnome-builder { };
+ gnome-feeds = callPackage ../applications/networking/feedreaders/gnome-feeds {};
+
gnome-keysign = callPackage ../tools/security/gnome-keysign { };
gnome-passwordsafe = callPackage ../applications/misc/gnome-passwordsafe { };
@@ -5852,6 +5858,8 @@ in
kube-router = callPackage ../applications/networking/cluster/kube-router { };
+ kubepug = callPackage ../development/tools/kubepug { };
+
kwalletcli = libsForQt5.callPackage ../tools/security/kwalletcli { };
peruse = libsForQt5.callPackage ../tools/misc/peruse { };
@@ -6388,7 +6396,9 @@ in
lzip = callPackage ../tools/compression/lzip { };
- luxcorerender = callPackage ../tools/graphics/luxcorerender { };
+ luxcorerender = callPackage ../tools/graphics/luxcorerender {
+ openimagedenoise = openimagedenoise_1_2_x;
+ };
xz = callPackage ../tools/compression/xz { };
@@ -7091,6 +7101,8 @@ in
openimagedenoise = callPackage ../development/libraries/openimagedenoise { };
+ openimagedenoise_1_2_x = callPackage ../development/libraries/openimagedenoise/1_2_x.nix { };
+
openmvg = callPackage ../applications/science/misc/openmvg { };
openmvs = callPackage ../applications/science/misc/openmvs { };
@@ -16861,8 +16873,6 @@ in
proj = callPackage ../development/libraries/proj { };
- proj_5 = callPackage ../development/libraries/proj/5.2.nix { };
-
proj-datumgrid = callPackage ../development/libraries/proj-datumgrid { };
proselint = callPackage ../tools/text/proselint {
@@ -17128,8 +17138,6 @@ in
randomx = callPackage ../development/libraries/randomx { };
- redkite = callPackage ../development/libraries/redkite { };
-
resolv_wrapper = callPackage ../development/libraries/resolv_wrapper { };
rhino = callPackage ../development/libraries/java/rhino {
@@ -17149,6 +17157,8 @@ in
rote = callPackage ../development/libraries/rote { };
+ round = callPackage ../applications/graphics/round { };
+
ronn = callPackage ../development/tools/ronn { };
rshell = python3.pkgs.callPackage ../development/tools/rshell { };
@@ -22174,6 +22184,8 @@ in
bookworm = callPackage ../applications/office/bookworm { };
+ CHOWTapeModel = callPackage ../applications/audio/CHOWTapeModel { };
+
chromium = callPackage ../applications/networking/browsers/chromium (config.chromium or {});
chromiumBeta = lowPrio (chromium.override { channel = "beta"; });
@@ -22481,6 +22493,8 @@ in
dzen2 = callPackage ../applications/window-managers/dzen2 { };
+ e16 = callPackage ../applications/window-managers/e16 { };
+
eaglemode = callPackage ../applications/misc/eaglemode { };
ebumeter = callPackage ../applications/audio/ebumeter { };
@@ -26943,9 +26957,7 @@ in
xscope = callPackage ../applications/misc/xscope { };
- xscreensaver = callPackage ../misc/screensavers/xscreensaver {
- inherit (gnome2) libglade;
- };
+ xscreensaver = callPackage ../misc/screensavers/xscreensaver { };
xsuspender = callPackage ../applications/misc/xsuspender { };
@@ -28007,6 +28019,8 @@ in
inherit (gnome3) zenity;
};
+ sdlpop = callPackage ../games/sdlpop { };
+
stepmania = callPackage ../games/stepmania {
ffmpeg = ffmpeg_2;
};
@@ -29898,7 +29912,9 @@ in
nix-deploy = haskell.lib.justStaticExecutables haskellPackages.nix-deploy;
nix-diff = haskell.lib.justStaticExecutables haskellPackages.nix-diff;
- nix-du = callPackage ../tools/package-management/nix-du { };
+ nix-du = callPackage ../tools/package-management/nix-du {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ };
nix-info = callPackage ../tools/nix/info { };
nix-info-tested = nix-info.override { doCheck = true; };
diff --git a/third_party/nixpkgs/pkgs/top-level/ocaml-packages.nix b/third_party/nixpkgs/pkgs/top-level/ocaml-packages.nix
index 790f9c465f..5aa7482fdc 100644
--- a/third_party/nixpkgs/pkgs/top-level/ocaml-packages.nix
+++ b/third_party/nixpkgs/pkgs/top-level/ocaml-packages.nix
@@ -1048,9 +1048,7 @@ let
ppx_deriving_protobuf = callPackage ../development/ocaml-modules/ppx_deriving_protobuf {};
- ppx_deriving_rpc = callPackage ../development/ocaml-modules/ppx_deriving_rpc {
- ppxlib = ppxlib.override { version = "0.15.0"; };
- };
+ ppx_deriving_rpc = callPackage ../development/ocaml-modules/ppx_deriving_rpc { };
ppx_deriving_yojson = callPackage ../development/ocaml-modules/ppx_deriving_yojson {};
diff --git a/third_party/nixpkgs/pkgs/top-level/python-packages.nix b/third_party/nixpkgs/pkgs/top-level/python-packages.nix
index 04f95fb3d6..70e06433e9 100644
--- a/third_party/nixpkgs/pkgs/top-level/python-packages.nix
+++ b/third_party/nixpkgs/pkgs/top-level/python-packages.nix
@@ -379,6 +379,8 @@ in {
amcrest = callPackage ../development/python-modules/amcrest { };
+ amiibo-py = callPackage ../development/python-modules/amiibo-py { };
+
amply = callPackage ../development/python-modules/amply { };
amqp = callPackage ../development/python-modules/amqp { };
@@ -1815,6 +1817,8 @@ in {
dftfit = callPackage ../development/python-modules/dftfit { };
+ diagrams = callPackage ../development/python-modules/diagrams { };
+
diceware = callPackage ../development/python-modules/diceware { };
dicom2nifti = callPackage ../development/python-modules/dicom2nifti { };
@@ -8572,6 +8576,8 @@ in {
tvnamer = callPackage ../development/python-modules/tvnamer { };
+ tweedledum = callPackage ../development/python-modules/tweedledum { };
+
tweepy = callPackage ../development/python-modules/tweepy { };
twentemilieu = callPackage ../development/python-modules/twentemilieu { };
@@ -9158,6 +9164,8 @@ in {
Yapsy = callPackage ../development/python-modules/yapsy { };
+ yara-python = callPackage ../development/python-modules/yara-python { };
+
yarg = callPackage ../development/python-modules/yarg { };
yarl = callPackage ../development/python-modules/yarl { };
diff --git a/third_party/nixpkgs/pkgs/top-level/ruby-packages.nix b/third_party/nixpkgs/pkgs/top-level/ruby-packages.nix
index 13e91d5b0f..b25f854bdd 100644
--- a/third_party/nixpkgs/pkgs/top-level/ruby-packages.nix
+++ b/third_party/nixpkgs/pkgs/top-level/ruby-packages.nix
@@ -235,6 +235,16 @@
};
version = "2.1.532";
};
+ certified = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1706p6p0a8adyvd943af2a3093xakvislgffw3v9dvp7j07dyk5a";
+ type = "gem";
+ };
+ version = "1.0.0";
+ };
CFPropertyList = {
groups = ["default"];
platforms = [];
@@ -1222,6 +1232,16 @@
};
version = "2.5.1";
};
+ json_pure = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "030hmc268wchqsccbjk41hvbyg99krpa72i3q0y3wwqzfh8hi736";
+ type = "gem";
+ };
+ version = "2.5.1";
+ };
jwt = {
groups = ["default"];
platforms = [];
@@ -1254,6 +1274,17 @@
};
version = "1.1.0";
};
+ kramdown-rfc2629 = {
+ dependencies = ["certified" "json_pure" "kramdown"];
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1p1iviq8q9za2hg0vqyrarrc3mqfskgp7spxp37xj0kl3g89vswq";
+ type = "gem";
+ };
+ version = "1.4.1";
+ };
libv8 = {
groups = ["default"];
platforms = [];