diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 9ba7b104fc3a..99bddfb36e16 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -1701,6 +1701,18 @@
githubId = 3471749;
name = "Claudio Bley";
};
+ cburstedde = {
+ email = "burstedde@ins.uni-bonn.de";
+ github = "cburstedde";
+ githubId = 109908;
+ name = "Carsten Burstedde";
+ keys = [
+ {
+ longkeyid = "rsa2048/0x0704CD9E550A6BCD";
+ fingerprint = "1127 A432 6524 BF02 737B 544E 0704 CD9E 550A 6BCD";
+ }
+ ];
+ };
cdepillabout = {
email = "cdep.illabout@gmail.com";
github = "cdepillabout";
@@ -10872,6 +10884,12 @@
githubId = 608417;
name = "Jos van den Oever";
};
+ vanilla = {
+ email = "neko@hydev.org";
+ github = "VergeDX";
+ githubId = 25173827;
+ name = "Vanilla";
+ };
vanschelven = {
email = "klaas@vanschelven.com";
github = "vanschelven";
diff --git a/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
index 896a797cefbd..abd10a6f9a73 100644
--- a/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
+++ b/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
@@ -48,6 +48,14 @@
networking.ucarp.
+
+
+ Users of flashrom should migrate to
+ programs.flashrom.enable
+ and add themselves to the flashrom group to
+ be able to access programmers supported by flashrom.
+
+
diff --git a/nixos/doc/manual/release-notes/rl-2111.section.md b/nixos/doc/manual/release-notes/rl-2111.section.md
index afb129960411..1b7250a18156 100644
--- a/nixos/doc/manual/release-notes/rl-2111.section.md
+++ b/nixos/doc/manual/release-notes/rl-2111.section.md
@@ -16,6 +16,8 @@ In addition to numerous new and upgraded packages, this release has the followin
- [ucarp](https://download.pureftpd.org/pub/ucarp/README), an userspace implementation of the Common Address Redundancy Protocol (CARP). Available as [networking.ucarp](options.html#opt-networking.ucarp.enable).
+- Users of flashrom should migrate to [programs.flashrom.enable](options.html#opt-programs.flashrom.enable) and add themselves to the `flashrom` group to be able to access programmers supported by flashrom.
+
## Backward Incompatibilities {#sec-release-21.11-incompatibilities}
- The `staticjinja` package has been upgraded from 1.0.4 to 2.0.0
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index d3a3143c17f6..2d0f5d37f9e8 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -138,6 +138,7 @@
./programs/file-roller.nix
./programs/firejail.nix
./programs/fish.nix
+ ./programs/flashrom.nix
./programs/flexoptix-app.nix
./programs/freetds.nix
./programs/fuse.nix
diff --git a/nixos/modules/programs/flashrom.nix b/nixos/modules/programs/flashrom.nix
new file mode 100644
index 000000000000..f026c2e31cda
--- /dev/null
+++ b/nixos/modules/programs/flashrom.nix
@@ -0,0 +1,26 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.programs.flashrom;
+in
+{
+ options.programs.flashrom = {
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Installs flashrom and configures udev rules for programmers
+ used by flashrom. Grants access to users in the "flashrom"
+ group.
+ '';
+ };
+ };
+
+ config = mkIf cfg.enable {
+ services.udev.packages = [ pkgs.flashrom ];
+ environment.systemPackages = [ pkgs.flashrom ];
+ users.groups.flashrom = { };
+ };
+}
diff --git a/nixos/modules/programs/zsh/zsh.nix b/nixos/modules/programs/zsh/zsh.nix
index 049a315c7622..48638fda28da 100644
--- a/nixos/modules/programs/zsh/zsh.nix
+++ b/nixos/modules/programs/zsh/zsh.nix
@@ -91,7 +91,7 @@ in
# before setting your PS1 and etc. Otherwise this will likely to interact with
# your ~/.zshrc configuration in unexpected ways as the default prompt sets
# a lot of different prompt variables.
- autoload -U promptinit && promptinit && prompt walters && setopt prompt_sp
+ autoload -U promptinit && promptinit && prompt suse && setopt prompt_sp
'';
description = ''
Shell script code used to initialise the zsh prompt.
diff --git a/nixos/modules/services/x11/display-managers/gdm.nix b/nixos/modules/services/x11/display-managers/gdm.nix
index e1b9a21eb9f0..ef9ec438cc1c 100644
--- a/nixos/modules/services/x11/display-managers/gdm.nix
+++ b/nixos/modules/services/x11/display-managers/gdm.nix
@@ -99,7 +99,8 @@ in
autoSuspend = mkOption {
default = true;
description = ''
- Suspend the machine after inactivity.
+ On the GNOME Display Manager login screen, suspend the machine after inactivity.
+ (Does not affect automatic suspend while logged in, or at lock screen.)
'';
type = types.bool;
};
diff --git a/pkgs/applications/blockchains/bisq-desktop/default.nix b/pkgs/applications/blockchains/bisq-desktop/default.nix
new file mode 100644
index 000000000000..ffc19765d4f6
--- /dev/null
+++ b/pkgs/applications/blockchains/bisq-desktop/default.nix
@@ -0,0 +1,99 @@
+{ stdenv
+, lib
+, makeWrapper
+, fetchurl
+, makeDesktopItem
+, copyDesktopItems
+, imagemagick
+, openjdk11
+, dpkg
+, writeScript
+, coreutils
+, bash
+, tor
+, psmisc
+}:
+let
+ bisq-launcher = writeScript "bisq-launcher" ''
+ #! ${bash}/bin/bash
+
+ # Setup a temporary Tor instance
+ TMPDIR=$(${coreutils}/bin/mktemp -d)
+ CONTROLPORT=$(${coreutils}/bin/shuf -i 9100-9499 -n 1)
+ SOCKSPORT=$(${coreutils}/bin/shuf -i 9500-9999 -n 1)
+ ${coreutils}/bin/head -c 1024 < /dev/urandom > $TMPDIR/cookie
+
+ ${tor}/bin/tor --SocksPort $SOCKSPORT --ControlPort $CONTROLPORT \
+ --ControlPortWriteToFile $TMPDIR/port --CookieAuthFile $TMPDIR/cookie \
+ --CookieAuthentication 1 >$TMPDIR/tor.log --RunAsDaemon 1
+
+ torpid=$(${psmisc}/bin/fuser $CONTROLPORT/tcp)
+
+ echo Temp directory: $TMPDIR
+ echo Tor PID: $torpid
+ echo Tor control port: $CONTROLPORT
+ echo Tor SOCKS port: $SOCKSPORT
+ echo Tor log: $TMPDIR/tor.log
+ echo Bisq log file: $TMPDIR/bisq.log
+
+ JAVA_TOOL_OPTIONS="-XX:MaxRAM=4g" bisq-desktop-wrapped \
+ --torControlCookieFile=$TMPDIR/cookie \
+ --torControlUseSafeCookieAuth \
+ --torControlPort $CONTROLPORT "$@" > $TMPDIR/bisq.log
+
+ echo Bisq exited. Killing Tor...
+ kill $torpid
+ '';
+in
+stdenv.mkDerivation rec {
+ version = "1.7.0";
+ pname = "bisq-desktop";
+ nativeBuildInputs = [ makeWrapper copyDesktopItems dpkg ];
+
+ src = fetchurl {
+ url = "https://github.com/bisq-network/bisq/releases/download/v${version}/Bisq-64bit-${version}.deb";
+ sha256 = "0crry5k7crmrqn14wxiyrnhk09ac8a9ksqrwwky7jsnyah0bx5k4";
+ };
+
+ desktopItems = [
+ (makeDesktopItem {
+ name = "Bisq";
+ exec = "bisq-desktop";
+ icon = "bisq";
+ desktopName = "Bisq";
+ genericName = "Decentralized bitcoin exchange";
+ categories = "Network;Utility;";
+ })
+ ];
+
+ unpackPhase = ''
+ dpkg -x $src .
+ '';
+
+ installPhase = ''
+ mkdir -p $out/lib $out/bin
+ cp opt/bisq/lib/app/desktop-${version}-all.jar $out/lib
+
+ makeWrapper ${openjdk11}/bin/java $out/bin/bisq-desktop-wrapped \
+ --add-flags "-jar $out/lib/desktop-${version}-all.jar bisq.desktop.app.BisqAppMain"
+
+ makeWrapper ${bisq-launcher} $out/bin/bisq-desktop \
+ --prefix PATH : $out/bin
+
+ copyDesktopItems
+
+ for n in 16 24 32 48 64 96 128 256; do
+ size=$n"x"$n
+ ${imagemagick}/bin/convert opt/bisq/lib/Bisq.png -resize $size bisq.png
+ install -Dm644 -t $out/share/icons/hicolor/$size/apps bisq.png
+ done;
+ '';
+
+ meta = with lib; {
+ description = "A decentralized bitcoin exchange network";
+ homepage = "https://bisq.network";
+ license = licenses.mit;
+ maintainers = with maintainers; [ juaningan emmanuelrosa ];
+ platforms = [ "x86_64-linux" ];
+ };
+}
diff --git a/pkgs/applications/editors/helix/default.nix b/pkgs/applications/editors/helix/default.nix
new file mode 100644
index 000000000000..a36ff1cde464
--- /dev/null
+++ b/pkgs/applications/editors/helix/default.nix
@@ -0,0 +1,25 @@
+{ fetchFromGitHub, lib, rustPlatform }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "helix";
+ version = "0.3.0";
+
+ src = fetchFromGitHub {
+ owner = "helix-editor";
+ repo = pname;
+ rev = "v${version}";
+ fetchSubmodules = true;
+ sha256 = "sha256-dI5yIP5uUmM9pyMpvvdrk8/0jE/REkU/m9BF081LwMU=";
+ };
+
+ cargoSha256 = "sha256-l3Ikr4IyUsHItJIC4BaIZZb6vio3bchumbbPI+nxIjQ=";
+
+ cargoBuildFlags = [ "--features embed_runtime" ];
+
+ meta = with lib; {
+ description = "A post-modern modal text editor";
+ homepage = "https://helix-editor.com";
+ license = licenses.mpl20;
+ maintainers = with maintainers; [ yusdacra ];
+ };
+}
diff --git a/pkgs/applications/logging/humioctl/default.nix b/pkgs/applications/logging/humioctl/default.nix
index c1aae04b2e58..591d1569bdd6 100644
--- a/pkgs/applications/logging/humioctl/default.nix
+++ b/pkgs/applications/logging/humioctl/default.nix
@@ -1,8 +1,8 @@
{ buildGoModule, fetchFromGitHub, installShellFiles, lib }:
let
- humioCtlVersion = "0.28.3";
- sha256 = "sha256-GUn5hg4gPGjQ6U2dboGE22u8XuZ578+EnkmHLASXd3Q=";
+ humioCtlVersion = "0.28.4";
+ sha256 = "sha256-X2pc15InfCzVbZ2fmBdr+GKgOySIruA1yD61HcLO164=";
vendorSha256 = "sha256-867x33Aq27D2m14NqqsdByC39pjjyJZbfX3jmwVU2yo=";
in buildGoModule {
name = "humioctl-${humioCtlVersion}";
diff --git a/pkgs/applications/misc/houdini/default.nix b/pkgs/applications/misc/houdini/default.nix
index ce35e91d9278..db06efd6a2a2 100644
--- a/pkgs/applications/misc/houdini/default.nix
+++ b/pkgs/applications/misc/houdini/default.nix
@@ -1,4 +1,4 @@
-{ callPackage, buildFHSUserEnv, undaemonize }:
+{ callPackage, buildFHSUserEnv, undaemonize, unwrapped ? callPackage ./runtime.nix {} }:
let
houdini-runtime = callPackage ./runtime.nix { };
@@ -9,6 +9,10 @@ in buildFHSUserEnv {
mkdir -p $out/usr/lib/sesi
'';
+ passthru = {
+ unwrapped = houdini-runtime;
+ };
+
runScript = "${undaemonize}/bin/undaemonize ${houdini-runtime}/bin/houdini";
}
diff --git a/pkgs/applications/misc/houdini/runtime.nix b/pkgs/applications/misc/houdini/runtime.nix
index c9be607b3662..8436b66719f7 100644
--- a/pkgs/applications/misc/houdini/runtime.nix
+++ b/pkgs/applications/misc/houdini/runtime.nix
@@ -1,6 +1,9 @@
-{ lib, stdenv, requireFile, zlib, libpng, libSM, libICE, fontconfig, xorg, libGLU, libGL, alsa-lib, dbus, xkeyboardconfig, bc, addOpenGLRunpath }:
+{ lib, stdenv, requireFile, zlib, libpng, libSM, libICE, fontconfig, xorg, libGLU, libGL, alsa-lib
+, dbus, xkeyboardconfig, nss, nspr, expat, pciutils, libxkbcommon, bc, addOpenGLRunpath
+}:
let
+ # NOTE: Some dependencies only show in errors when run with QT_DEBUG_PLUGINS=1
ld_library_path = builtins.concatStringsSep ":" [
"${stdenv.cc.cc.lib}/lib64"
(lib.makeLibraryPath [
@@ -17,6 +20,8 @@ let
xorg.libXcomposite
xorg.libXdamage
xorg.libXtst
+ xorg.libxcb
+ xorg.libXScrnSaver
alsa-lib
fontconfig
libSM
@@ -25,26 +30,22 @@ let
libpng
dbus
addOpenGLRunpath.driverLink
+ nss
+ nspr
+ expat
+ pciutils
+ libxkbcommon
])
];
license_dir = "~/.config/houdini";
in
stdenv.mkDerivation rec {
- version = "17.5.327";
+ version = "18.0.460";
pname = "houdini-runtime";
src = requireFile rec {
name = "houdini-${version}-linux_x86_64_gcc6.3.tar.gz";
- sha256 = "1byigmhmby8lgi2vmgxy9jlrrqk7jyr507zqkihq5bv8kfsanv1x";
- message = ''
- This nix expression requires that ${name} is already part of the store.
- Download it from https://www.sidefx.com and add it to the nix store with:
-
- nix-prefetch-url
-
- This can't be done automatically because you need to create an account on
- their website and agree to their license terms before you can download
- it. That's what you get for using proprietary software.
- '';
+ sha256 = "18rbwszcks2zfn9zbax62rxmq50z9mc3h39b13jpd39qjqdd3jsd";
+ url = meta.homepage;
};
buildInputs = [ bc ];
@@ -82,7 +83,6 @@ stdenv.mkDerivation rec {
license = lib.licenses.unfree;
platforms = lib.platforms.linux;
hydraPlatforms = [ ]; # requireFile src's should be excluded
- maintainers = [ lib.maintainers.canndrew ];
+ maintainers = with lib.maintainers; [ canndrew kwohlfahrt ];
};
}
-
diff --git a/pkgs/applications/misc/nwg-panel/default.nix b/pkgs/applications/misc/nwg-panel/default.nix
new file mode 100644
index 000000000000..4636477c1c51
--- /dev/null
+++ b/pkgs/applications/misc/nwg-panel/default.nix
@@ -0,0 +1,57 @@
+{ lib, fetchFromGitHub
+, python3Packages, wrapGAppsHook, gobject-introspection
+, gtk-layer-shell, pango, gdk-pixbuf, atk
+# Extra packages called by various internal nwg-panel modules
+, sway # swaylock, swaymsg
+, systemd # systemctl
+, wlr-randr # wlr-randr
+, nwg-menu # nwg-menu
+, light # light
+, pamixer # pamixer
+, pulseaudio # pactl
+}:
+
+python3Packages.buildPythonApplication rec {
+ pname = "nwg-panel";
+ version = "0.3.2";
+
+ src = fetchFromGitHub {
+ owner = "nwg-piotr";
+ repo = "nwg-panel";
+ rev = "v${version}";
+ hash = "sha256-x5lGVF6eRhOVXrsBatdsiUiWs/+FxRlCtp79zA206RY=";
+ };
+
+ # No tests
+ doCheck = false;
+
+ # Because of wrapGAppsHook
+ strictDeps = false;
+ dontWrapGApps = true;
+
+ buildInputs = [ atk gdk-pixbuf gtk-layer-shell pango ];
+ nativeBuildInputs = [ wrapGAppsHook gobject-introspection ];
+ propagatedBuildInputs = with python3Packages; [ i3ipc netifaces psutil pybluez pygobject3 ];
+
+ postInstall = ''
+ mkdir -p $out/share/{applications,pixmaps}
+ cp $src/nwg-panel-config.desktop $out/share/applications/
+ cp $src/nwg-shell.svg $src/nwg-panel.svg $out/share/pixmaps/
+ '';
+
+ preFixup = ''
+ makeWrapperArgs+=(
+ "''${gappsWrapperArgs[@]}"
+ --prefix XDG_DATA_DIRS : "$out/share"
+ --prefix PATH : "${lib.makeBinPath [ light nwg-menu pamixer pulseaudio sway systemd wlr-randr ]}"
+ )
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/nwg-piotr/nwg-panel";
+ description = "GTK3-based panel for Sway window manager";
+ license = licenses.mit;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ berbiche ];
+ };
+}
diff --git a/pkgs/applications/networking/cluster/helm/default.nix b/pkgs/applications/networking/cluster/helm/default.nix
index 6eb80edb99a7..69961a2c0a07 100644
--- a/pkgs/applications/networking/cluster/helm/default.nix
+++ b/pkgs/applications/networking/cluster/helm/default.nix
@@ -2,20 +2,25 @@
buildGoModule rec {
pname = "helm";
- version = "3.6.1";
+ version = "3.6.2";
+ gitCommit = "ee407bdf364942bcb8e8c665f82e15aa28009b71";
src = fetchFromGitHub {
owner = "helm";
repo = "helm";
rev = "v${version}";
- sha256 = "sha256-MXMgCqdFNRMJaStoFMx8BO8OI1B7FqSETk0zW6a/vbE=";
+ sha256 = "1s40zbk83s1kylcglydw356282virf1828v9waj1zs1gjnjml69h";
};
- vendorSha256 = "sha256-PTAyRG6PZK+vaiheUd3oiu4iBGlnFjoCrci0CYbXjBk=";
+ vendorSha256 = "06ccsy30kd68ml13l5k7d4225vlax3fm2pi8dapsyr4gdr234c1x";
doCheck = false;
subPackages = [ "cmd/helm" ];
- buildFlagsArray = [ "-ldflags=-w -s -X helm.sh/helm/v3/internal/version.version=v${version}" ];
+ ldflags = [
+ "-w" "-s"
+ "-X helm.sh/helm/v3/internal/version.version=v${version}"
+ "-X helm.sh/helm/v3/internal/version.gitCommit=${gitCommit}"
+ ];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
diff --git a/pkgs/applications/networking/dnscontrol/default.nix b/pkgs/applications/networking/dnscontrol/default.nix
index a17f3d2e40da..21c42ad786b8 100644
--- a/pkgs/applications/networking/dnscontrol/default.nix
+++ b/pkgs/applications/networking/dnscontrol/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "dnscontrol";
- version = "3.9.0";
+ version = "3.10.0";
src = fetchFromGitHub {
owner = "StackExchange";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-9lIjQaMYy0FGMkR29Es3BMIAcn+jQYudyFJHwezlXKM=";
+ sha256 = "sha256-22wYc6W4a5P9+JW7NW+s85IlQ+tfLhYzDarN6PGkFk4=";
};
- vendorSha256 = "sha256-thvbqDhLdY+g/byFHJ9Tdiw8WYRccu4X1Rb0pdhE34E=";
+ vendorSha256 = "sha256-TPvO/E/uOyVSMNRQ3zzt15+i0UK0uHvI4qM5PqmHY20=";
subPackages = [ "." ];
diff --git a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix
index 3a22ea0681e2..fc8fbdcede3d 100644
--- a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix
@@ -22,13 +22,13 @@ let
pname = "wire-desktop";
version = {
- x86_64-darwin = "3.25.4095";
- x86_64-linux = "3.25.2940";
+ x86_64-darwin = "3.26.4145";
+ x86_64-linux = "3.26.2941";
}.${system} or throwSystem;
sha256 = {
- x86_64-darwin = "01gbmbxs3w7lwsy5wjpr7fgqkb20rj5fv1r3dsmjkfwy45pd835j";
- x86_64-linux = "1vb2fy8hijjp0193d32d8hw7h00w6wympf3zc96skk8hz3ks6xz8";
+ x86_64-darwin = "1ck74a9z2mrwmljrqm347bqhjiaf1v0bf1jfnp58cqngh5ygqnf2";
+ x86_64-linux = "01gy84gr0gw5ap7hpy72azaf6hlzac7vxkn5cgad5sfbyzxgjgc9";
}.${system} or throwSystem;
meta = with lib; {
diff --git a/pkgs/applications/office/notes-up/default.nix b/pkgs/applications/office/notes-up/default.nix
index 8271b2974ce4..de09bc1c761c 100644
--- a/pkgs/applications/office/notes-up/default.nix
+++ b/pkgs/applications/office/notes-up/default.nix
@@ -1,9 +1,10 @@
-{ lib, stdenv
+{ lib
+, stdenv
, fetchFromGitHub
, nix-update-script
, pantheon
, pkg-config
-, vala_0_46
+, vala
, cmake
, ninja
, gtk3
@@ -12,27 +13,28 @@
, gtkspell3
, glib
, libgee
+, pcre
, sqlite
, discount
, wrapGAppsHook
-, withPantheon ? false }:
+, withPantheon ? false
+}:
stdenv.mkDerivation rec {
pname = "notes-up";
- version = "2.0.2";
+ version = "unstable-2020-12-29";
src = fetchFromGitHub {
owner = "Philip-Scott";
repo = "Notes-up";
- rev = version;
- sha256 = "0bklgp8qrrj9y5m77xqbpy1ld2d9ya3rlxklgzx3alffq5312i4s";
+ rev = "2ea9f35f588769758f5d2d4436d71c4059141a6f";
+ sha256 = "sha256-lKOM9+s34xYB9bF9pgip9DFu+6AaxSE4HjFVhoWtttk=";
};
nativeBuildInputs = [
cmake
ninja
- # fails with newer vala: https://github.com/Philip-Scott/Notes-up/issues/349
- vala_0_46
+ vala
pkg-config
wrapGAppsHook
];
@@ -45,6 +47,7 @@ stdenv.mkDerivation rec {
gtkspell3
libgee
pantheon.granite
+ pcre
sqlite
webkitgtk
];
@@ -60,9 +63,9 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Markdown notes editor and manager designed for elementary OS"
- + lib.optionalString withPantheon " - built with Contractor support";
+ + lib.optionalString withPantheon " - built with Contractor support";
homepage = "https://github.com/Philip-Scott/Notes-up";
- license = licenses.gpl2;
+ license = licenses.gpl2Only;
maintainers = with maintainers; [ davidak ];
platforms = platforms.linux;
};
diff --git a/pkgs/applications/office/trilium/default.nix b/pkgs/applications/office/trilium/default.nix
index d6b7e08b4be9..a1be66c56f12 100644
--- a/pkgs/applications/office/trilium/default.nix
+++ b/pkgs/applications/office/trilium/default.nix
@@ -19,16 +19,16 @@ let
maintainers = with maintainers; [ fliegendewurst ];
};
- version = "0.47.4";
+ version = "0.47.5";
desktopSource = {
url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-${version}.tar.xz";
- sha256 = "0hvp6rpvgda12ficzqkj7kllgmpzc8n4rvpgv0zi6fa5alkr944x";
+ sha256 = "16sm93vzlsqmrykbzdvgwszbhq79brd74zp9n9q5wrf4s44xizzv";
};
serverSource = {
url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-server-${version}.tar.xz";
- sha256 = "01bbg7ssszrq27zk7xzil2mawk1659h1hw68yvk8lbgc4n9phkqk";
+ sha256 = "0jk9pf3ljzfdv7d91wxda8z9qz653qas58wsrx42gnf7zxn1l648";
};
in {
diff --git a/pkgs/applications/science/logic/coq/default.nix b/pkgs/applications/science/logic/coq/default.nix
index 9d6212fef112..69753fcef2d0 100644
--- a/pkgs/applications/science/logic/coq/default.nix
+++ b/pkgs/applications/science/logic/coq/default.nix
@@ -129,14 +129,15 @@ self = stdenv.mkDerivation {
++ optionals buildIde
(if versionAtLeast "8.10"
then [ ocamlPackages.lablgtk3-sourceview3 glib gnome.adwaita-icon-theme wrapGAppsHook ]
- else [ ocamlPackages.lablgtk ]);
+ else [ ocamlPackages.lablgtk ])
+ ++ optional (versionAtLeast "8.14") [ ocamlPackages.dune_2 ]
+ ;
postPatch = ''
UNAME=$(type -tp uname)
RM=$(type -tp rm)
- substituteInPlace configure --replace "/bin/uname" "$UNAME"
substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM"
- substituteInPlace configure.ml --replace '"md5 -q"' '"md5sum"'
+ ${if !versionAtLeast "8.7" then "substituteInPlace configure.ml --replace \"md5 -q\" \"md5sum\"" else ""}
${csdpPatch}
'';
diff --git a/pkgs/applications/window-managers/tinywl/default.nix b/pkgs/applications/window-managers/tinywl/default.nix
new file mode 100644
index 000000000000..ea8a92615a46
--- /dev/null
+++ b/pkgs/applications/window-managers/tinywl/default.nix
@@ -0,0 +1,28 @@
+{ lib, stdenv, wlroots, pkg-config
+, libxkbcommon, pixman, udev, wayland, wayland-protocols
+}:
+
+stdenv.mkDerivation {
+ pname = "tinywl";
+ inherit (wlroots) version src;
+
+ sourceRoot = "source/tinywl";
+
+ nativeBuildInputs = [ pkg-config ];
+ buildInputs = [ libxkbcommon pixman udev wayland wayland-protocols wlroots ];
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/bin
+ cp tinywl $out/bin
+ runHook postInstall
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/swaywm/wlroots/tree/master/tinywl";
+ description = ''"minimum viable product" Wayland compositor based on wlroots.'';
+ maintainers = with maintainers; [ qyliss ];
+ license = licenses.cc0;
+ inherit (wlroots.meta) platforms;
+ };
+}
diff --git a/pkgs/data/misc/shared-mime-info/default.nix b/pkgs/data/misc/shared-mime-info/default.nix
index a2e301f40ecb..63b8467e6cc5 100644
--- a/pkgs/data/misc/shared-mime-info/default.nix
+++ b/pkgs/data/misc/shared-mime-info/default.nix
@@ -9,6 +9,7 @@
, itstool
, libxml2
, glib
+, shared-mime-info
}:
stdenv.mkDerivation rec {
@@ -38,6 +39,9 @@ stdenv.mkDerivation rec {
pkg-config
gettext
itstool
+ ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
+ libxml2
+ shared-mime-info
];
buildInputs = [
diff --git a/pkgs/data/themes/flat-remix-gnome/default.nix b/pkgs/data/themes/flat-remix-gnome/default.nix
new file mode 100644
index 000000000000..cff5f9115843
--- /dev/null
+++ b/pkgs/data/themes/flat-remix-gnome/default.nix
@@ -0,0 +1,38 @@
+{ stdenv
+, fetchFromGitHub
+, glib
+, lib
+}:
+
+stdenv.mkDerivation rec {
+ pname = "flat-remix-gnome";
+ version = "20210623";
+
+ src = fetchFromGitHub {
+ owner = "daniruiz";
+ repo = pname;
+ rev = version;
+ hash = "sha256-FKsbAvjhXb2ipe3XqACM6OwGYwbBbzvDjsUQYCIQ8NM=";
+ };
+
+ nativeBuildInputs = [ glib ];
+ makeFlags = [ "PREFIX=$(out)" ];
+ preInstall = ''
+ # make install will back up this file, it will fail if the file doesn't exist.
+ # https://github.com/daniruiz/flat-remix-gnome/blob/20210623/Makefile#L50
+ mkdir -p $out/share/gnome-shell/
+ touch $out/share/gnome-shell/gnome-shell-theme.gresource
+ '';
+
+ postInstall = ''
+ rm $out/share/gnome-shell/gnome-shell-theme.gresource.old
+ '';
+
+ meta = with lib; {
+ description = "GNOME Shell theme inspired by material design.";
+ homepage = "https://drasite.com/flat-remix-gnome";
+ license = licenses.cc-by-sa-40;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.vanilla ];
+ };
+}
diff --git a/pkgs/development/interpreters/dhall/build-dhall-github-package.nix b/pkgs/development/interpreters/dhall/build-dhall-github-package.nix
index 53adc5a9b125..8f9e4d835511 100644
--- a/pkgs/development/interpreters/dhall/build-dhall-github-package.nix
+++ b/pkgs/development/interpreters/dhall/build-dhall-github-package.nix
@@ -43,7 +43,7 @@ lib.makePackageOverridable
"rev"
]);
- prefix = lib.optionalString (directory != "") "${directory}/";
+ prefix = lib.optionalString (directory != "") "/${directory}";
in
buildDhallPackage
@@ -51,9 +51,12 @@ lib.makePackageOverridable
name = versionedName;
- code = "${src}/${prefix}${file}";
+ code = "${src}${prefix}/${file}";
}
// lib.optionalAttrs document
- { documentationRoot = "${src}/${prefix}"; }
+ { documentationRoot = "${src}/${prefix}";
+
+ baseImportUrl = "https://raw.githubusercontent.com/${owner}/${repo}/${rev}${prefix}";
+ }
)
)
diff --git a/pkgs/development/interpreters/dhall/build-dhall-package.nix b/pkgs/development/interpreters/dhall/build-dhall-package.nix
index 9fc9a4412156..86797e9f136f 100644
--- a/pkgs/development/interpreters/dhall/build-dhall-package.nix
+++ b/pkgs/development/interpreters/dhall/build-dhall-package.nix
@@ -37,6 +37,12 @@
#
# If `null`, then no documentation is generated.
, documentationRoot ? null
+
+ # Base URL prepended to paths copied to the clipboard
+ #
+ # This is used in conjunction with `documentationRoot`, and is unused if
+ # `documentationRoot` is `null`.
+, baseImportUrl ? null
}:
let
@@ -85,6 +91,12 @@ in
${lib.optionalString (documentationRoot != null) ''
mkdir -p $out/${dataDhall}
- XDG_DATA_HOME=$out/${data} ${dhall-docs}/bin/dhall-docs --input '${documentationRoot}' --package-name '${name}' --output-link $out/docs
+ XDG_DATA_HOME=$out/${data} ${dhall-docs}/bin/dhall-docs --output-link $out/docs ${lib.cli.toGNUCommandLineShell { } {
+ base-import-url = baseImportUrl;
+
+ input = documentationRoot;
+
+ package-name = name;
+ }}
''}
''
diff --git a/pkgs/development/libraries/libstatgrab/default.nix b/pkgs/development/libraries/libstatgrab/default.nix
index 6d874fe23678..fe2717cfeb36 100644
--- a/pkgs/development/libraries/libstatgrab/default.nix
+++ b/pkgs/development/libraries/libstatgrab/default.nix
@@ -1,5 +1,8 @@
-{ lib, stdenv, fetchurl
-, IOKit ? null }:
+{ lib
+, stdenv
+, fetchurl
+, IOKit
+}:
stdenv.mkDerivation rec {
name = "libstatgrab-0.92";
@@ -9,11 +12,12 @@ stdenv.mkDerivation rec {
sha256 = "15m1sl990l85ijf8pnc6hdfha6fqyiq74mijrzm3xz4zzxm91wav";
};
- buildInputs = [] ++ lib.optional stdenv.isDarwin IOKit;
+ buildInputs = lib.optional stdenv.isDarwin IOKit;
meta = with lib; {
homepage = "https://www.i-scream.org/libstatgrab/";
description = "A library that provides cross platforms access to statistics about the running system";
+ maintainers = with maintainers; [ ];
license = licenses.gpl2;
platforms = platforms.unix;
};
diff --git a/pkgs/development/libraries/science/math/p4est-sc/default.nix b/pkgs/development/libraries/science/math/p4est-sc/default.nix
new file mode 100644
index 000000000000..222380e15b24
--- /dev/null
+++ b/pkgs/development/libraries/science/math/p4est-sc/default.nix
@@ -0,0 +1,62 @@
+{ lib, stdenv, fetchFromGitHub
+, autoreconfHook, pkg-config
+, p4est-sc-debugEnable ? true, p4est-sc-mpiSupport ? true
+, mpi, openmpi, openssh, zlib
+}:
+
+let
+ dbg = if debugEnable then "-dbg" else "";
+ debugEnable = p4est-sc-debugEnable;
+ mpiSupport = p4est-sc-mpiSupport;
+in
+stdenv.mkDerivation {
+ pname = "p4est-sc${dbg}";
+ version = "unstable-2021-06-14";
+
+ # fetch an untagged snapshot of the prev3-develop branch
+ src = fetchFromGitHub {
+ owner = "cburstedde";
+ repo = "libsc";
+ rev = "1ae814e3fb1cc5456652e0d77550386842cb9bfb";
+ sha256 = "14vm0b162jh8399pgpsikbwq4z5lkrw9vfzy3drqykw09n6nc53z";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkg-config ];
+ propagatedBuildInputs = [ zlib ]
+ ++ lib.optional mpiSupport mpi
+ ++ lib.optional (mpiSupport && mpi == openmpi) openssh
+ ;
+ inherit debugEnable mpiSupport;
+
+ postPatch = ''
+ echo "dist_scaclocal_DATA += config/sc_v4l2.m4" >> Makefile.am
+ '';
+ preConfigure = ''
+ echo "2.8.0" > .tarball-version
+ ${if mpiSupport then "unset CC" else ""}
+ '';
+
+ configureFlags = lib.optional debugEnable "--enable-debug"
+ ++ lib.optional mpiSupport "--enable-mpi"
+ ;
+
+ makeFlags = [ "V=0" ];
+
+ dontDisableStatic = true;
+ enableParallelBuilding = true;
+ doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
+
+ meta = {
+ branch = "prev3-develop";
+ description = "Support for parallel scientific applications";
+ longDescription = ''
+ The SC library provides support for parallel scientific applications.
+ Its main purpose is to support the p4est software library, hence
+ this package is called p4est-sc, but it works standalone, too.
+ '';
+ homepage = "https://www.p4est.org/";
+ downloadPage = "https://github.com/cburstedde/libsc.git";
+ license = lib.licenses.lgpl21Plus;
+ maintainers = [ lib.maintainers.cburstedde ];
+ };
+}
diff --git a/pkgs/development/libraries/science/math/p4est/default.nix b/pkgs/development/libraries/science/math/p4est/default.nix
new file mode 100644
index 000000000000..99c4b0be3f30
--- /dev/null
+++ b/pkgs/development/libraries/science/math/p4est/default.nix
@@ -0,0 +1,59 @@
+{ lib, stdenv, fetchFromGitHub
+, autoreconfHook, pkg-config
+, p4est-withMetis ? true, metis
+, p4est-sc
+}:
+
+let
+ inherit (p4est-sc) debugEnable mpiSupport;
+ dbg = if debugEnable then "-dbg" else "";
+ withMetis = p4est-withMetis;
+in
+stdenv.mkDerivation {
+ pname = "p4est${dbg}";
+ version = "unstable-2021-06-22";
+
+ # fetch an untagged snapshot of the prev3-develop branch
+ src = fetchFromGitHub {
+ owner = "cburstedde";
+ repo = "p4est";
+ rev = "7423ac5f2b2b64490a7a92e5ddcbd251053c4dee";
+ sha256 = "0vffnf48rzw6d0as4c3x1f31b4kapmdzr1hfj5rz5ngah72gqrph";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkg-config ];
+ propagatedBuildInputs = [ p4est-sc ];
+ buildInputs = lib.optional withMetis metis;
+ inherit debugEnable mpiSupport withMetis;
+
+ patches = [ ./p4est-metis.patch ];
+ postPatch = ''
+ sed -i -e "s:\(^\s*ACLOCAL_AMFLAGS.*\)\s@P4EST_SC_AMFLAGS@\s*$:\1 -I ${p4est-sc}/share/aclocal:" Makefile.am
+ '';
+ preConfigure = ''
+ echo "2.8.0" > .tarball-version
+ ${if mpiSupport then "unset CC" else ""}
+ '';
+
+ configureFlags = [ "--with-sc=${p4est-sc}" ]
+ ++ lib.optional withMetis "--with-metis"
+ ++ lib.optional debugEnable "--enable-debug"
+ ++ lib.optional mpiSupport "--enable-mpi"
+ ;
+
+ inherit (p4est-sc) makeFlags dontDisableStatic enableParallelBuilding doCheck;
+
+ meta = {
+ branch = "prev3-develop";
+ description = "Parallel AMR on Forests of Octrees";
+ longDescription = ''
+ The p4est software library provides algorithms for parallel AMR.
+ AMR refers to Adaptive Mesh Refinement, a technique in scientific
+ computing to cover the domain of a simulation with an adaptive mesh.
+ '';
+ homepage = "https://www.p4est.org/";
+ downloadPage = "https://github.com/cburstedde/p4est.git";
+ license = lib.licenses.gpl2Plus;
+ maintainers = [ lib.maintainers.cburstedde ];
+ };
+}
diff --git a/pkgs/development/libraries/science/math/p4est/p4est-metis.patch b/pkgs/development/libraries/science/math/p4est/p4est-metis.patch
new file mode 100644
index 000000000000..46b8dc8af08c
--- /dev/null
+++ b/pkgs/development/libraries/science/math/p4est/p4est-metis.patch
@@ -0,0 +1,26 @@
+diff --git a/src/p4est_connectivity.c b/src/p4est_connectivity.c
+index 95339136..c93528f2 100644
+--- a/src/p4est_connectivity.c
++++ b/src/p4est_connectivity.c
+@@ -3715,6 +3715,7 @@ p4est_connectivity_reorder_newid (sc_MPI_Comm comm, int k,
+ sc_array_t * newid)
+ {
+ const int n = (int) conn->num_trees;
++ int metis_n;
+ int *xadj;
+ int *adjncy;
+ int *part;
+@@ -3862,10 +3863,12 @@ p4est_connectivity_reorder_newid (sc_MPI_Comm comm, int k,
+
+ P4EST_GLOBAL_INFO ("Entering metis\n");
+ /* now call metis */
++ metis_n = n;
+ P4EST_EXECUTE_ASSERT_INT
+- (METIS_PartGraphRecursive (&n, &ncon, xadj, adjncy, NULL, NULL,
++ (METIS_PartGraphRecursive (&metis_n, &ncon, xadj, adjncy, NULL, NULL,
+ NULL, &k, NULL, NULL, NULL, &volume, part),
+ METIS_OK);
++ P4EST_ASSERT (metis_n == n);
+ P4EST_GLOBAL_INFO ("Done metis\n");
+
+ P4EST_GLOBAL_STATISTICSF ("metis volume %d\n", volume);
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index 92a931bd4bba..27ca53ba6adb 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -49,13 +49,13 @@ let
sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww==";
};
};
- "@angular-devkit/architect-0.1200.5" = {
+ "@angular-devkit/architect-0.1201.0" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1200.5";
+ version = "0.1201.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1200.5.tgz";
- sha512 = "222VZ4OeaDK3vON8V5m+w15SRWfUs5uOb4H9ij/H9/6tyHD83uWfCDoOGg+ax4wJVdWEFJIS+Vn4ijGcZCq9WQ==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1201.0.tgz";
+ sha512 = "tqIhGccWjI32xmLs0UIr2umET18Le+r5PxCf30ueOE5pv1q7XKD06EzGx9J05B1aUgDFb3LP/ArlKel5JnD+3g==";
};
};
"@angular-devkit/core-11.2.4" = {
@@ -76,13 +76,13 @@ let
sha512 = "3dA0Z6sIIxCDjZS/DucgmIKti7EZ/LgHoHgCO72Q50H5ZXbUSNBz5wGl5hVq2+gzrnFgU/0u40MIs6eptk30ZA==";
};
};
- "@angular-devkit/core-12.0.5" = {
+ "@angular-devkit/core-12.1.0" = {
name = "_at_angular-devkit_slash_core";
packageName = "@angular-devkit/core";
- version = "12.0.5";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.0.5.tgz";
- sha512 = "zVSQV+8/vjUjsUKGlj8Kf5LioA6AXJTGI0yhHW9q1dFX4dPpbW63k0R1UoIB2wJ0F/AbYVgpnPGPe9BBm2fvZA==";
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.1.0.tgz";
+ sha512 = "y6q/hn9/j6LwNgDzTBXe5pTXouU7nuc3KZFq3JwfTdo4yTIxN1Rdv9+zfzDkzEcYtyFoqLqqskQFme/DqdbEZw==";
};
};
"@angular-devkit/schematics-11.2.4" = {
@@ -103,13 +103,13 @@ let
sha512 = "bhi2+5xtVAjtr3bsXKT8pnoBamQrArd/Y20ueA4Od7cd38YT97nzTA1wyHBFG0vWd0HMyg42ZS0aycNBuOebaA==";
};
};
- "@angular-devkit/schematics-12.0.5" = {
+ "@angular-devkit/schematics-12.1.0" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
- version = "12.0.5";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.0.5.tgz";
- sha512 = "iW3XuDHScr3TXuunlEjF5O01zBpwpLgfr1oEny8PvseFGDlHK4Nj8zNIoIn3Yg936aiFO4GJAC/UXsT8g5vKxQ==";
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.1.0.tgz";
+ sha512 = "KlE1fnvqWItt9dYCaQ89b9WoqFvOK64kemCLGGx49CllQ3con1lwXW2iauzT/29UoK1rSzvTVMvTJcDQOJ7isQ==";
};
};
"@angular-devkit/schematics-cli-0.1102.6" = {
@@ -1552,13 +1552,13 @@ let
sha512 = "GcIY79elgB+azP74j8vqkiXz8xLFfIzbQJdlwOPisgbKT00tviJQuEghOXSMVxJ00HoYJbGswr4kcllUc4xCcg==";
};
};
- "@bugsnag/browser-7.10.1" = {
+ "@bugsnag/browser-7.10.4" = {
name = "_at_bugsnag_slash_browser";
packageName = "@bugsnag/browser";
- version = "7.10.1";
+ version = "7.10.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.10.1.tgz";
- sha512 = "Yxm/DheT/NHX2PhadBDuafuHBhP547Iav6Y9jf+skBBSi1n0ZYkGhtVxh8ZWLgqz5W8MsJ0HFiLBqcg/mulSvQ==";
+ url = "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.10.4.tgz";
+ sha512 = "1lPhUBIHUCxCyOfMHCfM+rt2cpV49LEeodFBPx8D8+7LJNmxX0JwfQ0OB+7Lv8JNRcnAI3j6Uq6OOTVakhaxBw==";
};
};
"@bugsnag/core-7.10.0" = {
@@ -1579,13 +1579,13 @@ let
sha512 = "LOt8aaBI+KvOQGneBtpuCz3YqzyEAehd1f3nC5yr9TIYW1+IzYKa2xWS4EiMz5pPOnRPHkyyS5t/wmSmN51Gjg==";
};
};
- "@bugsnag/js-7.10.1" = {
+ "@bugsnag/js-7.10.4" = {
name = "_at_bugsnag_slash_js";
packageName = "@bugsnag/js";
- version = "7.10.1";
+ version = "7.10.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@bugsnag/js/-/js-7.10.1.tgz";
- sha512 = "1/MK/Bw2ViFx1hMG2TOX8MOq/LzT2VRd0VswknF4LYsZSgzohkRzz/hi6P2TSlLeapRs+bkDC6u2RCq4zYvyiA==";
+ url = "https://registry.npmjs.org/@bugsnag/js/-/js-7.10.4.tgz";
+ sha512 = "XnH3JlG9w1elhmMsByIsQ6JODYdoDlJ75QwvkPjkdybikEm8Zw+OK16JKyxY2scD4RSNbzYMWnbNZvCiFgcDPA==";
};
};
"@bugsnag/node-7.10.1" = {
@@ -2047,22 +2047,22 @@ let
sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==";
};
};
- "@expo/config-4.0.4" = {
+ "@expo/config-5.0.2" = {
name = "_at_expo_slash_config";
packageName = "@expo/config";
- version = "4.0.4";
+ version = "5.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/config/-/config-4.0.4.tgz";
- sha512 = "O3xRlwMCidOgk1WHIy6eOjh2yp0h/kgBDRNKqPe21+YDiOufyTGGNvbWgHwoax8goa1iMg443WQO7GhvaH286g==";
+ url = "https://registry.npmjs.org/@expo/config/-/config-5.0.2.tgz";
+ sha512 = "NJd2iQDIWNn6vVv4NEeUMrRPFtV27loaR9w1I0d+lhbfrfIqY7JxI7OgDS8udwjBi0iWnO+BUb0l4C5SmfHuhA==";
};
};
- "@expo/config-plugins-2.0.4" = {
+ "@expo/config-plugins-3.0.2" = {
name = "_at_expo_slash_config-plugins";
packageName = "@expo/config-plugins";
- version = "2.0.4";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-2.0.4.tgz";
- sha512 = "JGt/X2tFr7H8KBQrKfbGo9hmCubQraMxq5sj3bqDdKmDOLcE1a/EDCP9g0U4GHsa425J8VDIkQUHYz3h3ndEXQ==";
+ url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-3.0.2.tgz";
+ sha512 = "bS7t9JbPBK1lCcMo2mp7QSDq2a4xsc8E6sEYVwD+YS5RKx7nxEtSYohnFWlKthm624dHCaVzqEbKxhIGO3M3Uw==";
};
};
"@expo/config-types-41.0.0" = {
@@ -2074,31 +2074,22 @@ let
sha512 = "Ax0pHuY5OQaSrzplOkT9DdpdmNzaVDnq9VySb4Ujq7UJ4U4jriLy8u93W98zunOXpcu0iiKubPsqD6lCiq0pig==";
};
};
- "@expo/configure-splash-screen-0.4.0" = {
- name = "_at_expo_slash_configure-splash-screen";
- packageName = "@expo/configure-splash-screen";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@expo/configure-splash-screen/-/configure-splash-screen-0.4.0.tgz";
- sha512 = "IDPnr2/DW1tYpDHqedFYNCDzRTf9HYinWFQ7fOelNZLuOCMoErLbSStA5zfkv46o69AgcCpteqgKHSoxsIBz5g==";
- };
- };
- "@expo/dev-server-0.1.74" = {
+ "@expo/dev-server-0.1.77" = {
name = "_at_expo_slash_dev-server";
packageName = "@expo/dev-server";
- version = "0.1.74";
+ version = "0.1.77";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.74.tgz";
- sha512 = "b0yHZH0HB28plFf2/d53ZP91QNANy5Sz9fDYfWfMznHTg1tx6xkjBNu6WiVtlDqBq4UBdbXqSu5AIZWAziss2Q==";
+ url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.77.tgz";
+ sha512 = "gOnJ3YAVVMsi+lZY39O9KRCVRCPs61dhONJ0OLuOdtt8N5/VG+CTKNiyls1k5jAxsAzeOPzZsPqRNMTKvnxsOg==";
};
};
- "@expo/dev-tools-0.13.104" = {
+ "@expo/dev-tools-0.13.107" = {
name = "_at_expo_slash_dev-tools";
packageName = "@expo/dev-tools";
- version = "0.13.104";
+ version = "0.13.107";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.104.tgz";
- sha512 = "q0ozFDgMzfjJIpVyp3awA3L2jQ+t+suhfrJvKk58uYiCiVAicQYaqoxMj7jVgRdd45WJwPcUSA6lAbFx1PMkmQ==";
+ url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.107.tgz";
+ sha512 = "F60wit5+MiXzFPZ1R2rQuM0wC4vdesKtUrV8ipQyGdEkjogZ2mdq7OJbxofnzslkyAGImWfyKRJhqMflRBD/9w==";
};
};
"@expo/devcert-1.0.0" = {
@@ -2128,13 +2119,13 @@ let
sha512 = "vrgGyPEXBoFI5NY70IegusCSoSVIFV3T3ry4tjJg1MFQKTUlR7E0r+8g8XR6qC705rc2PawaZQjqXMAVtV6s2A==";
};
};
- "@expo/metro-config-0.1.74" = {
+ "@expo/metro-config-0.1.77" = {
name = "_at_expo_slash_metro-config";
packageName = "@expo/metro-config";
- version = "0.1.74";
+ version = "0.1.77";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.74.tgz";
- sha512 = "1FzFJCXhdEMzDivZ+AKxrNBsgSRNPwQqz++KwN1ooeL9oPgxXWOQtStMB0Y2N2FSaHtLe/94D4EmzNWFGyz15A==";
+ url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.77.tgz";
+ sha512 = "PGxcxkN1AJjzn82Fb3zBxbG0kI6V6BrYVhICPL3jenreKQYaHN0+/owkAwX+8MxKqaJqJR6outw8I+Gypp4ZcQ==";
};
};
"@expo/osascript-2.0.28" = {
@@ -2164,13 +2155,13 @@ let
sha512 = "zGPSq9OrCn7lWvwLLHLpHUUq2E40KptUFXn53xyZXPViI0k9lbApcR9KlonQZ95C+ELsf0BQ3gRficwK92Ivcw==";
};
};
- "@expo/prebuild-config-1.0.5" = {
+ "@expo/prebuild-config-2.0.2" = {
name = "_at_expo_slash_prebuild-config";
packageName = "@expo/prebuild-config";
- version = "1.0.5";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-1.0.5.tgz";
- sha512 = "tBVB3n70t/jWqOZOxo85WsIp9gJ/hZT8aii72S7BLarXa0oPmAy+TmPD19IR4U6+TcrR0B2Qwr/6mVNnZhuBtg==";
+ url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-2.0.2.tgz";
+ sha512 = "wyAPiu1tnUghDoE5cUbjD92rF/rtyNqrfdwmcn56q8EG7MKuO47CxFrkhAL0EBVplPhSdzZ3zPFOtWzYK7E+6Q==";
};
};
"@expo/results-1.0.0" = {
@@ -2209,22 +2200,22 @@ let
sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==";
};
};
- "@expo/webpack-config-0.12.78" = {
+ "@expo/webpack-config-0.12.81" = {
name = "_at_expo_slash_webpack-config";
packageName = "@expo/webpack-config";
- version = "0.12.78";
+ version = "0.12.81";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.12.78.tgz";
- sha512 = "oYR9fTuO2qWkZOHhA20NPpG0P+C4EBSsWT3RavHSREFPWSNqQB6BYnTIAFmK29QaVcY370qvqfBo+p7vCaRQ4w==";
+ url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.12.81.tgz";
+ sha512 = "hsWI3EwYcwsG2E1VKlkaQwiLofgH6g7qNRpnoncnvbVEsfHhvA5+aI8/CMiUO+sHh6RPJWgux12O89TXS/DeBg==";
};
};
- "@expo/xcpretty-3.1.3" = {
+ "@expo/xcpretty-3.1.4" = {
name = "_at_expo_slash_xcpretty";
packageName = "@expo/xcpretty";
- version = "3.1.3";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-3.1.3.tgz";
- sha512 = "Kgp2eXR8LB/m7UxOwL1fi6JzRv6DGT+rXfrtyUR3J9L0O66KDKem3A9NWACnihn/1RiL8Xb5ryb0vBUFYYeieg==";
+ url = "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-3.1.4.tgz";
+ sha512 = "zjZo89YkDW/C2wh10wAkAHYrdXwLdiMbKrGmADLJvz25yp7QpXgDR8KOaa1FUU/vYqmHZ6lshjrMMJpJWEqTRw==";
};
};
"@fast-csv/format-4.3.5" = {
@@ -2344,13 +2335,13 @@ let
sha512 = "d4VSA86eL/AFTe5xtyZX+ePUjE8dIFu2T8zmdeNBSa5/kNgXPCx/o/wbFNHAGLJdGnk1vddRuMESD9HbOC8irw==";
};
};
- "@google-cloud/pubsub-2.14.0" = {
+ "@google-cloud/pubsub-2.15.1" = {
name = "_at_google-cloud_slash_pubsub";
packageName = "@google-cloud/pubsub";
- version = "2.14.0";
+ version = "2.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.14.0.tgz";
- sha512 = "pP8pwQ9d+p5KNmccEuwM4W9MM8Z9NP+Zzu3P9ewo/z+obK8mEvh5suC2at60MUWaDQOneTcUICpL6DXLRx957A==";
+ url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.15.1.tgz";
+ sha512 = "avBYmN1n9BsY8RzntkEP3SG1gSfEm0iOoUwoWjtrmWAk+6QZw0C093HJCGClteo+EwIQDhgyn2cXc5QInegSeg==";
};
};
"@graphql-cli/common-4.1.0" = {
@@ -2497,13 +2488,13 @@ let
sha512 = "UXepkOKCATJrhHGsxt+CGfpZy9zUn1q9mop5kfcXq1fBkTePxVNPOdnISlCbJFlCtld+pSLGyZCzr9/zVprFKA==";
};
};
- "@grpc/grpc-js-1.3.3" = {
+ "@grpc/grpc-js-1.3.4" = {
name = "_at_grpc_slash_grpc-js";
packageName = "@grpc/grpc-js";
- version = "1.3.3";
+ version = "1.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.3.tgz";
- sha512 = "KkKZrX3fVTBYCtUk8I+Y4xWaauEEOIR1mIGoPFUK8C+a9TTub5dmjowJpFGz0dqYj//wJcgVR9fqpoNhSYFfHQ==";
+ url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.4.tgz";
+ sha512 = "AxtZcm0mArQhY9z8T3TynCYVEaSKxNCa9mVhVwBCUnsuUEe8Zn94bPYYKVQSLt+hJJ1y0ukr3mUvtWfcATL/IQ==";
};
};
"@grpc/proto-loader-0.5.6" = {
@@ -2524,6 +2515,15 @@ let
sha512 = "q2Qle60Ht2OQBCp9S5hv1JbI4uBBq6/mqSevFNK3ZEgRDBCAkWqZPUhD/K9gXOHrHKluliHiVq2L9sw1mVyAIg==";
};
};
+ "@grpc/proto-loader-0.6.3" = {
+ name = "_at_grpc_slash_proto-loader";
+ packageName = "@grpc/proto-loader";
+ version = "0.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.3.tgz";
+ sha512 = "AtMWwb7kY8DdtwIQh2hC4YFM1MzZ22lMA+gjbnCYDgICt14vX2tCa59bDrEjFyOI4LvORjpvT/UhHUdKvsX8og==";
+ };
+ };
"@gulp-sourcemaps/identity-map-1.0.2" = {
name = "_at_gulp-sourcemaps_slash_identity-map";
packageName = "@gulp-sourcemaps/identity-map";
@@ -3091,31 +3091,31 @@ let
sha512 = "EjPkDQOzV/oZfbolEUgFT6SE++PtCccVBvjuACkttyCfl0P2jnpR49SwstyVLc2u8AwBAZEHHAw9lPYaMjtbXQ==";
};
};
- "@joplin/fork-htmlparser2-4.1.27" = {
+ "@joplin/fork-htmlparser2-4.1.28" = {
name = "_at_joplin_slash_fork-htmlparser2";
packageName = "@joplin/fork-htmlparser2";
- version = "4.1.27";
+ version = "4.1.28";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.27.tgz";
- sha512 = "4rR2spWO9eLWGoGXS0ulxzarl/tNq3bIcqTKLu3Qh6C5putae7A01gJssg1BtO+0hLADuzfQK7FWb4W6Z6fymA==";
+ url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.28.tgz";
+ sha512 = "aY8o+hi42Rn0BCcjI33nXC/tHwm1mYoAMrqnEfNVQ1ZDGJbbKVnYWADf6o5tGMR+Klkn9lbbR9tn+U8hKHbFhA==";
};
};
- "@joplin/fork-sax-1.2.31" = {
+ "@joplin/fork-sax-1.2.32" = {
name = "_at_joplin_slash_fork-sax";
packageName = "@joplin/fork-sax";
- version = "1.2.31";
+ version = "1.2.32";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.31.tgz";
- sha512 = "EIRijEi10yuCSoSkGjvOes0yljEGBWjLf38NnIbadfByWUNPkdlSL+yEq9b8bc2WupAxmJiNA4tfi1i8Th2xDQ==";
+ url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.32.tgz";
+ sha512 = "N6Nk2qdsmCM31zIYjyIEH2hTSFd9rZv6tcvN9bjsuxTQ97WW74d6fI8+ReBWz2cFs7joXxaPay0iNwwDDXV0Kg==";
};
};
- "@joplin/lib-2.0.3" = {
+ "@joplin/lib-2.1.1" = {
name = "_at_joplin_slash_lib";
packageName = "@joplin/lib";
- version = "2.0.3";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/lib/-/lib-2.0.3.tgz";
- sha512 = "0LYqc8JY75TMFwapYcj0aJrCSVjBsXH15520fZehy1iheh5yQO6YV3MMqLHwpa4/CofCT4SlOs3pd6LIbSyh1w==";
+ url = "https://registry.npmjs.org/@joplin/lib/-/lib-2.1.1.tgz";
+ sha512 = "mePMxOEC7+T7gTRuIO3ZWxkyDhAhuoNNGi3wsf4g633TcYD0SEX9peokCdjAnQC5l4BjrqxmgY1qTmk2sx+9TA==";
};
};
"@joplin/renderer-1.8.2" = {
@@ -3127,31 +3127,31 @@ let
sha512 = "Khl2DoM1aFEy15RX9JaMaYinjoNEYQHOgQqzMHq4wuWr+QuAQaX8/SofTe1FU2rS4SJrkObPA+XPavhVSAxpOQ==";
};
};
- "@joplin/renderer-2.0.3" = {
+ "@joplin/renderer-2.1.1" = {
name = "_at_joplin_slash_renderer";
packageName = "@joplin/renderer";
- version = "2.0.3";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-2.0.3.tgz";
- sha512 = "FKXFR212wjStu2wRJ7pe5KyCm4uwiXrrSd9g8Vp38FuQu8Db6J5MNiqno/EcwvibshCxn0cE/odEM7ld/Aukng==";
+ url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-2.1.1.tgz";
+ sha512 = "XxmquKGZxlrjUorx924ogAACc39p22pzWp06DJX/eElU2kLZ/s+RC0EXAFj503EuDj/dd2voV+Tciz0wfCPc0Q==";
};
};
- "@joplin/turndown-4.0.49" = {
+ "@joplin/turndown-4.0.50" = {
name = "_at_joplin_slash_turndown";
packageName = "@joplin/turndown";
- version = "4.0.49";
+ version = "4.0.50";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.49.tgz";
- sha512 = "TIGJLjSDwy2j00+XGxTi7GaoqPOmDqmfhVsTCZK7C7JDfYzFQWzMixmEKSJkw3rWnFHA5q4omGeIWZP6DAkoGA==";
+ url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.50.tgz";
+ sha512 = "oqMCmkudn3OUxkI68mbBy5AWqnmgWBlIL9lz3XSoq3iYJZdXYCDyYUA0Wb64eRHf6muUN8V23WdeVjc02dsbEQ==";
};
};
- "@joplin/turndown-plugin-gfm-1.0.31" = {
+ "@joplin/turndown-plugin-gfm-1.0.32" = {
name = "_at_joplin_slash_turndown-plugin-gfm";
packageName = "@joplin/turndown-plugin-gfm";
- version = "1.0.31";
+ version = "1.0.32";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.31.tgz";
- sha512 = "6PqxgmOIJ8CUR/aFno88JM2a0QTlFtz50ofTz8/hhD4jDD8qQ8DROy6yexCeZle4Gj45yLt8/WhmOlu32FkO/w==";
+ url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.32.tgz";
+ sha512 = "5jodAeZz90xt4p5FSvnRi4V1NyiPS0L9O7WufG8lN55sacZ9pkXUvELex4PQ7kiHvmOv67x4XcvTjfqX/mnKnA==";
};
};
"@josephg/resolvable-1.0.1" = {
@@ -3802,13 +3802,13 @@ let
sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==";
};
};
- "@microsoft/load-themed-styles-1.10.185" = {
+ "@microsoft/load-themed-styles-1.10.186" = {
name = "_at_microsoft_slash_load-themed-styles";
packageName = "@microsoft/load-themed-styles";
- version = "1.10.185";
+ version = "1.10.186";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.185.tgz";
- sha512 = "IyjxBy64JnmlOPjI0F/J+JoeQu/gDCoqLQ4zEmWgd2EDCg2Sd03CrkwqR40q1B5QzC2bUbP3KwnFhoaTS4pBsA==";
+ url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.186.tgz";
+ sha512 = "1EmEk1+ms0637dejhkMpSnWvAkZa+L85qUmsQClK+ClAlp4jmWbolWJIirmCpcUbTwkr1I/O6SAFiqKkVkhB5A==";
};
};
"@mitmaro/errors-1.0.0" = {
@@ -3883,13 +3883,13 @@ let
sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==";
};
};
- "@netlify/build-12.7.2" = {
+ "@netlify/build-12.11.0" = {
name = "_at_netlify_slash_build";
packageName = "@netlify/build";
- version = "12.7.2";
+ version = "12.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/build/-/build-12.7.2.tgz";
- sha512 = "AQCtlVBQFEpcQzglzAiXqfaXAss/+ufBhfuc6BuWM24ze+dD+ywyUb9IHfe6ceHdHZIKhfST6AYWT7my39NGmg==";
+ url = "https://registry.npmjs.org/@netlify/build/-/build-12.11.0.tgz";
+ sha512 = "kPY8qLpcAKOrjkgxil+c/C2Ivt0Vobklez+WFEQ5pQBYCPyjtw5kTAHABb8USc+CBaE4CWL1kehcvdbSJiO6Kg==";
};
};
"@netlify/cache-utils-1.0.7" = {
@@ -3901,22 +3901,13 @@ let
sha512 = "yrdrnQkzg/qMovoFYwQ24UVt/OyHtP+t0KpQFd7eBl6gnuuGGgxFocaFFv6eKpMVwzHTsOwx/y9B/FcC3/6cfA==";
};
};
- "@netlify/config-7.7.1" = {
+ "@netlify/config-9.1.0" = {
name = "_at_netlify_slash_config";
packageName = "@netlify/config";
- version = "7.7.1";
+ version = "9.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/config/-/config-7.7.1.tgz";
- sha512 = "ReVy0Dqcvubldo9ZzmI6jCwUqFwDdq9v4enQu/uM6B2UVueKSgombKO8r0BlyNtLlKbbCOlaG7Gpbu0KsBvsPw==";
- };
- };
- "@netlify/config-8.0.0" = {
- name = "_at_netlify_slash_config";
- packageName = "@netlify/config";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/config/-/config-8.0.0.tgz";
- sha512 = "zEgClyq8RZ79FPJHEK3xIPnXOPbji0N5ucPpk17lFyccPeKTsEG2cfEJ94vP2T809AUHa90cRvZVg8j7UtpR4A==";
+ url = "https://registry.npmjs.org/@netlify/config/-/config-9.1.0.tgz";
+ sha512 = "XP3z4bm/D5KsZZB85lzgciJp6v2tF3jxJaeuq7hB7bEfVaHqGJfHesalhrqEXjB9lATD63UR6h7YmzRq2DmIpQ==";
};
};
"@netlify/esbuild-0.13.6" = {
@@ -3928,22 +3919,22 @@ let
sha512 = "tiKmDcHM2riSVN79c0mJY/67EBDafXQAMitHuLiCDAMdtz3kfv+NqdVG5krgf5lWR8Uf8AeZrUW5Q9RP25REvw==";
};
};
- "@netlify/framework-info-5.3.0" = {
+ "@netlify/framework-info-5.4.0" = {
name = "_at_netlify_slash_framework-info";
packageName = "@netlify/framework-info";
- version = "5.3.0";
+ version = "5.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-5.3.0.tgz";
- sha512 = "9pgfafCGv2pt2l82JfPxst3QasuA40DFF0QdLm/3NNdSje8Ro3/i4rUATMCisaGJcScrAYljRlMFOhT4vFVlDg==";
+ url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-5.4.0.tgz";
+ sha512 = "eelZCGCm0F3wUClqSfKqeYXHn/hHyHzm+QhMBr3iBVcOQI7uujfwXjq5mS1gD3quJHF3jGrJ3QgzPa9X5v5Fwg==";
};
};
- "@netlify/functions-utils-1.3.46" = {
+ "@netlify/functions-utils-1.3.47" = {
name = "_at_netlify_slash_functions-utils";
packageName = "@netlify/functions-utils";
- version = "1.3.46";
+ version = "1.3.47";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.46.tgz";
- sha512 = "BXJxaj4fQ//zYUdRO9Mib35hOinRVBIjAWgD2YiW4fJv98Adcr33LMbPxxTnc/zP3Oh6c56YAUIBh5FA3VIe5g==";
+ url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.47.tgz";
+ sha512 = "lJoa3aIuyBiPNo7XawtGQRTDFCmO9wSpoVDhO+e6t2YoCoCFXlJxZulZdalJ+JnRphlEMKHCMA3jeaVhVjjHuQ==";
};
};
"@netlify/git-utils-1.0.11" = {
@@ -4009,15 +4000,6 @@ let
sha512 = "627ZNqfc4mdhU5mYDpcKUbmx8RoAUu8ZQiW/RIt5s7uDhruba3bK776Ygzog5b14hYWthT41/bf+9wQ+O9NFWw==";
};
};
- "@netlify/zip-it-and-ship-it-4.5.1" = {
- name = "_at_netlify_slash_zip-it-and-ship-it";
- packageName = "@netlify/zip-it-and-ship-it";
- version = "4.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.5.1.tgz";
- sha512 = "zU2ztAEwLxIL7oy1nl0NXZC9Mbzb2QVkdjztZcpY76Ne5q0hBYpBv85SJFgrz75QMSC5C/eeQxs8iUYpmdZH4Q==";
- };
- };
"@node-red/editor-api-1.3.5" = {
name = "_at_node-red_slash_editor-api";
packageName = "@node-red/editor-api";
@@ -4108,13 +4090,13 @@ let
sha512 = "BTIhocbPBSrRmHxOAJFtR18oLhxTtAFDAvL8hY1S3iU8k+E60W/YFs4jrixGzQjMpF4qPXxIQHcjVD9dz1C2QA==";
};
};
- "@npmcli/arborist-2.6.3" = {
+ "@npmcli/arborist-2.6.4" = {
name = "_at_npmcli_slash_arborist";
packageName = "@npmcli/arborist";
- version = "2.6.3";
+ version = "2.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.6.3.tgz";
- sha512 = "R8U2dZ8+jeE7go+qNU4Mt6aiXyBu3mM75iRIugNCA4P0OWlsLOpuDPPhsaRcOVbtXheOGZXrqe36qP1g+M68KQ==";
+ url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.6.4.tgz";
+ sha512 = "A/pDQ/VZpdxaqsQS5XOWrhrPuC+ER7HLq+4ZkEmnO2yo/USFCWEsiUPYKhfY+sWXK3pgKjN7B7CEFmAnSoAt3g==";
};
};
"@npmcli/ci-detect-1.3.0" = {
@@ -4189,6 +4171,15 @@ let
sha512 = "yrJUe6reVMpktcvagumoqD9r08fH1iRo01gn1u0zoCApa9lnZGEigVKUd2hzsCId4gdtkZZIVscLhNxMECKgRg==";
};
};
+ "@npmcli/package-json-1.0.1" = {
+ name = "_at_npmcli_slash_package-json";
+ packageName = "@npmcli/package-json";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@npmcli/package-json/-/package-json-1.0.1.tgz";
+ sha512 = "y6jnu76E9C23osz8gEMBayZmaZ69vFOIk8vR1FJL/wbEJ54+9aVG9rLTjQKSXfgYZEr50nw1txBBFfBZZe+bYg==";
+ };
+ };
"@npmcli/promise-spawn-1.3.2" = {
name = "_at_npmcli_slash_promise-spawn";
packageName = "@npmcli/promise-spawn";
@@ -4297,13 +4288,13 @@ let
sha512 = "G440PCuMi/OT8b71aWkR+kCWikngGtyRjOR24sPMDbpUFV4+B3r51fz1fcqeUiiEOYqUpr0Uy/sneUe1O/NfBg==";
};
};
- "@oclif/plugin-plugins-1.10.0" = {
+ "@oclif/plugin-plugins-1.10.1" = {
name = "_at_oclif_slash_plugin-plugins";
packageName = "@oclif/plugin-plugins";
- version = "1.10.0";
+ version = "1.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-1.10.0.tgz";
- sha512 = "lfHNiuuCrCUtH9A912T/ztxRA9lS1lCZm+gcmVWksIJG/gwKH/fMn+GdLTbRzU2k6ojtMhBblYk1RWKxUEJuzA==";
+ url = "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-1.10.1.tgz";
+ sha512 = "JDUA3NtOa4OlH8ofUBXQMTFlpEkSmeE9BxoQTD6+BeUvMgqFuZThENucRvCD00sywhCmDngmIYN59gKcXpGJeQ==";
};
};
"@oclif/screen-1.0.4" = {
@@ -4360,13 +4351,13 @@ let
sha512 = "SWTdXsVheRmlotWNjKzPOb6Js6tjSqA2a8z9+glDJng0Aqjzti8MEWOtuT8ZSu6wHnci7LZNuarE87+WJBG4vg==";
};
};
- "@octokit/openapi-types-7.3.2" = {
+ "@octokit/openapi-types-7.3.5" = {
name = "_at_octokit_slash_openapi-types";
packageName = "@octokit/openapi-types";
- version = "7.3.2";
+ version = "7.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-7.3.2.tgz";
- sha512 = "oJhK/yhl9Gt430OrZOzAl2wJqR0No9445vmZ9Ey8GjUZUpwuu/vmEFP0TDhDXdpGDoxD6/EIFHJEcY8nHXpDTA==";
+ url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-7.3.5.tgz";
+ sha512 = "6bm5lzGDOeSnWHM5W8OZ86RD2KpchynU+/Qlm5hNEFjfLDhwfAY2lSe68YRUEYFGlxSHe0HmakyhvmtWoD3Zog==";
};
};
"@octokit/plugin-enterprise-rest-6.0.1" = {
@@ -4396,13 +4387,13 @@ let
sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==";
};
};
- "@octokit/plugin-rest-endpoint-methods-5.3.1" = {
+ "@octokit/plugin-rest-endpoint-methods-5.3.4" = {
name = "_at_octokit_slash_plugin-rest-endpoint-methods";
packageName = "@octokit/plugin-rest-endpoint-methods";
- version = "5.3.1";
+ version = "5.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.3.1.tgz";
- sha512 = "3B2iguGmkh6bQQaVOtCsS0gixrz8Lg0v4JuXPqBcFqLKuJtxAUf3K88RxMEf/naDOI73spD+goJ/o7Ie7Cvdjg==";
+ url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.3.4.tgz";
+ sha512 = "2Y2q/FYCsW5tcwIqgnLOgzZXEb3I1VoSQGyHs/Zki/Ufs5H+uT0maPVHatLKw90LQbqK7ON8NpL3Y8IyzG6pNA==";
};
};
"@octokit/request-5.6.0" = {
@@ -4423,22 +4414,22 @@ let
sha512 = "1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==";
};
};
- "@octokit/rest-18.6.0" = {
+ "@octokit/rest-18.6.3" = {
name = "_at_octokit_slash_rest";
packageName = "@octokit/rest";
- version = "18.6.0";
+ version = "18.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.6.0.tgz";
- sha512 = "MdHuXHDJM7e5sUBe3K9tt7th0cs4csKU5Bb52LRi2oHAeIMrMZ4XqaTrEv660HoUPoM1iDlnj27Ab/Nh3MtwlA==";
+ url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.6.3.tgz";
+ sha512 = "BeV2P48RR3MVPhSBq6KXXHMVHEJg5vnFBkFN1GKPXBohXTp+eb0gJq+5iYgkjbOMG6biNvkKllPDWJchpQHHiA==";
};
};
- "@octokit/types-6.16.4" = {
+ "@octokit/types-6.16.7" = {
name = "_at_octokit_slash_types";
packageName = "@octokit/types";
- version = "6.16.4";
+ version = "6.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/types/-/types-6.16.4.tgz";
- sha512 = "UxhWCdSzloULfUyamfOg4dJxV9B+XjgrIZscI0VCbp4eNrjmorGEw+4qdwcpTsu6DIrm9tQsFQS2pK5QkqQ04A==";
+ url = "https://registry.npmjs.org/@octokit/types/-/types-6.16.7.tgz";
+ sha512 = "OuQELiwIKeDySgNID52vm33wDRc2aaX8lKYgAw9Hmw939ITow1HspT8/AH3M3jgGFUMDmHlMNBNEmH7xV7ggXQ==";
};
};
"@open-policy-agent/opa-wasm-1.2.0" = {
@@ -4477,22 +4468,22 @@ let
sha512 = "PffXX2AL8Sh0VHQ52jJC4u3T0H6wDK6N/4bg7xh4ngMYOIi13aR1kzVvX1sVDBgfGwDOkMbl4c54Xm3tlPx/+A==";
};
};
- "@opentelemetry/api-0.20.0" = {
+ "@opentelemetry/api-1.0.1" = {
name = "_at_opentelemetry_slash_api";
packageName = "@opentelemetry/api";
- version = "0.20.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@opentelemetry/api/-/api-0.20.0.tgz";
- sha512 = "n06MtDYEc2H07S/NTvGMlxF2Ijp0YbNrI/rBgLcxpEh3hxOkPZA12gxlUoZkBHWCZYau2j3b/uL+QFpiQKOjSw==";
+ url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.1.tgz";
+ sha512 = "H5Djcc2txGAINgf3TNaq4yFofYSIK3722PM89S/3R8FuI/eqi1UscajlXk7EBkG9s2pxss/q6SHlpturaavXaw==";
};
};
- "@opentelemetry/semantic-conventions-0.20.0" = {
+ "@opentelemetry/semantic-conventions-0.22.0" = {
name = "_at_opentelemetry_slash_semantic-conventions";
packageName = "@opentelemetry/semantic-conventions";
- version = "0.20.0";
+ version = "0.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-0.20.0.tgz";
- sha512 = "x40C3vQMttFlnNEfhFwO49jHrY6AoWnntL35TCem3LINr/aw1W0hGhdKY/zweC64CBJEyiHumaae480rqF8eOA==";
+ url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-0.22.0.tgz";
+ sha512 = "t4fKikazahwNKmwD+CE/icHyuZldWvNMupJhjxdk9T/KxHFx3zCGjHT3MKavwYP6abzgAAm5WwzD1oHlmj7dyg==";
};
};
"@ot-builder/bin-composite-types-1.0.9" = {
@@ -5152,13 +5143,13 @@ let
sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==";
};
};
- "@schematics/angular-12.0.5" = {
+ "@schematics/angular-12.1.0" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "12.0.5";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.0.5.tgz";
- sha512 = "gMT66T33az+uGLDSc7UkJVg+vloPeTpQNgWddBVGnW/Lkl1tGaWUxyqUJAp8AvusPNU+NCP+ZFB3qUm+pc7tCg==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.1.0.tgz";
+ sha512 = "BUCBiW+DQsOofSs4TE26M2OhlS0g9Mdyd0xWF4FD2Ab3xwQgkV1gogZgCl9dZtNfiimYebdM9LOeHqYWmvqCdw==";
};
};
"@schematics/schematics-0.1102.6" = {
@@ -5512,13 +5503,13 @@ let
sha512 = "E/Pfdze/WFfxwyuTFcfhQN1SwyUsc43yuCoW63RVBCaxTD6OzhVD2Pvc/Sy7BjiWUfmelzyKkIBpoow8zZX7Zg==";
};
};
- "@snyk/fix-1.642.0" = {
+ "@snyk/fix-1.649.0" = {
name = "_at_snyk_slash_fix";
packageName = "@snyk/fix";
- version = "1.642.0";
+ version = "1.649.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/fix/-/fix-1.642.0.tgz";
- sha512 = "wA1hjH/eH0y/4/psauKFkK8pO29NSv1uEfheckvkoBB8BVrj3zDDBJhrxx2RRH2395XZxk977GLU9oTgUwSzlw==";
+ url = "https://registry.npmjs.org/@snyk/fix/-/fix-1.649.0.tgz";
+ sha512 = "yYm6f8UmRPeQglDde8mDZU6ymQTyvlKcgJfG2dWjA0nQTbIo+aSqLGB9A5JyqVcJCEbwJrylNcPbYaxE9udnFg==";
};
};
"@snyk/fix-pipenv-pipfile-0.5.4" = {
@@ -6070,13 +6061,13 @@ let
sha512 = "NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==";
};
};
- "@types/babel__traverse-7.11.1" = {
+ "@types/babel__traverse-7.14.0" = {
name = "_at_types_slash_babel__traverse";
packageName = "@types/babel__traverse";
- version = "7.11.1";
+ version = "7.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.1.tgz";
- sha512 = "Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw==";
+ url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.0.tgz";
+ sha512 = "IilJZ1hJBUZwMOVDNTdflOOLzJB/ZtljYVa7k3gEZN/jqIJIPkWHC6dvbX+DD2CwZDHB9wAKzZPzzqMIkW37/w==";
};
};
"@types/babylon-6.16.5" = {
@@ -6376,13 +6367,13 @@ let
sha512 = "wLhcKh3PMlyA2cNAB9sjM1BntnhPMiM0JOBwPBqttjHev2428MLEB4AYVN+d8s2iyCVZac+o41Pflm/ZH5vLXQ==";
};
};
- "@types/express-serve-static-core-4.17.21" = {
+ "@types/express-serve-static-core-4.17.22" = {
name = "_at_types_slash_express-serve-static-core";
packageName = "@types/express-serve-static-core";
- version = "4.17.21";
+ version = "4.17.22";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.21.tgz";
- sha512 = "gwCiEZqW6f7EoR8TTEfalyEhb1zA5jQJnRngr97+3pzMaO1RKoI1w2bw07TK72renMUVWcWS5mLI6rk1NqN0nA==";
+ url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.22.tgz";
+ sha512 = "WdqmrUsRS4ootGha6tVwk/IVHM1iorU8tGehftQD2NWiPniw/sm7xdJOIlXLwqdInL9wBw/p7oO8vaYEF3NDmA==";
};
};
"@types/fancy-log-1.3.0" = {
@@ -6889,6 +6880,15 @@ let
sha512 = "zrNj1+yqYF4WskCMOHwN+w9iuD12+dGm0rQ35HLl9/Ouuq52cEtd0CH9qMgrdNmi5ejC1/V7vKEXYubB+65DkA==";
};
};
+ "@types/node-15.12.5" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "15.12.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-15.12.5.tgz";
+ sha512 = "se3yX7UHv5Bscf8f1ERKvQOD6sTyycH3hdaoozvaLxgUiY5lIGEeH37AD0G0Qi9kPqihPn0HOfd2yaIEN9VwEg==";
+ };
+ };
"@types/node-15.6.1" = {
name = "_at_types_slash_node";
packageName = "@types/node";
@@ -7582,13 +7582,13 @@ let
sha512 = "sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==";
};
};
- "@unicode/unicode-13.0.0-1.0.6" = {
+ "@unicode/unicode-13.0.0-1.1.0" = {
name = "_at_unicode_slash_unicode-13.0.0";
packageName = "@unicode/unicode-13.0.0";
- version = "1.0.6";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@unicode/unicode-13.0.0/-/unicode-13.0.0-1.0.6.tgz";
- sha512 = "ywSlML1wdeBSGH12b6PkblGtjzsQNMZ7+JlJj+eoPj0VuCeg52hcUTeVWfd4GmISU+zOQHWjNC6c0xmsIuVy8Q==";
+ url = "https://registry.npmjs.org/@unicode/unicode-13.0.0/-/unicode-13.0.0-1.1.0.tgz";
+ sha512 = "iOVqHDBzYSb4EOLBirZM9qNur+J7hAb6YyzGlUoAFx2ubb3Qidc+VhAuRQAxnOOWEqMcIZpnVnJ/OkTxbNmgEA==";
};
};
"@uphold/request-logger-2.0.0" = {
@@ -8518,13 +8518,13 @@ let
sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==";
};
};
- "acorn-8.4.0" = {
+ "acorn-8.4.1" = {
name = "acorn";
packageName = "acorn";
- version = "8.4.0";
+ version = "8.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-8.4.0.tgz";
- sha512 = "ULr0LDaEqQrMFGyQ3bhJkLsbtrQ8QibAseGZeaSUiT/6zb9IvIkomWHJIvgvwad+hinRAgsI51JcWk2yvwyL+w==";
+ url = "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz";
+ sha512 = "asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==";
};
};
"acorn-globals-1.0.9" = {
@@ -8869,15 +8869,6 @@ let
sha512 = "LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg==";
};
};
- "ajv-8.2.0" = {
- name = "ajv";
- packageName = "ajv";
- version = "8.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-8.2.0.tgz";
- sha512 = "WSNGFuyWd//XO8n/m/EaOlNLtO0yL8EXT/74LqT4khdhpZjP7lkj/kT5uwRmGitKEVp/Oj7ZUHeGfPtgHhQ5CA==";
- };
- };
"ajv-8.6.0" = {
name = "ajv";
packageName = "ajv";
@@ -8896,15 +8887,6 @@ let
sha512 = "DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==";
};
};
- "ajv-formats-2.0.2" = {
- name = "ajv-formats";
- packageName = "ajv-formats";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.0.2.tgz";
- sha512 = "Brah4Uo5/U8v76c6euTwtjVFFaVishwnJrQBYpev1JRh4vjA1F4HY3UzQez41YUCszUCXKagG8v6eVRBHV1gkw==";
- };
- };
"ajv-formats-2.1.0" = {
name = "ajv-formats";
packageName = "ajv-formats";
@@ -9400,22 +9382,22 @@ let
sha1 = "d8a3f26615379398a1b53ca6cc1a666a0fbfe150";
};
};
- "apache-crypt-1.2.4" = {
+ "apache-crypt-1.2.5" = {
name = "apache-crypt";
packageName = "apache-crypt";
- version = "1.2.4";
+ version = "1.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/apache-crypt/-/apache-crypt-1.2.4.tgz";
- sha512 = "Icze5ny5W5uv3xgMgl8U+iGmRCC0iIDrb2PVPuRBtL3Zy1Y5TMewXP1Vtc4r5X9eNNBEk7KYPu0Qby9m/PmcHg==";
+ url = "https://registry.npmjs.org/apache-crypt/-/apache-crypt-1.2.5.tgz";
+ sha512 = "ICnYQH+DFVmw+S4Q0QY2XRXD8Ne8ewh8HgbuFH4K7022zCxgHM0Hz1xkRnUlEfAXNbwp1Cnhbedu60USIfDxvg==";
};
};
- "apache-md5-1.1.5" = {
+ "apache-md5-1.1.7" = {
name = "apache-md5";
packageName = "apache-md5";
- version = "1.1.5";
+ version = "1.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.5.tgz";
- sha512 = "sbLEIMQrkV7RkIruqTPXxeCMkAAycv4yzTkBzRgOR1BrR5UB7qZtupqxkersTJSf0HZ3sbaNRrNV80TnnM7cUw==";
+ url = "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.7.tgz";
+ sha512 = "JtHjzZmJxtzfTSjsCyHgPR155HBe5WGyUyHTaEkfy46qhwCFKx1Epm6nAxgUG3WfUZP1dWhGqj9Z2NOBeZ+uBw==";
};
};
"apollo-cache-control-0.14.0" = {
@@ -10858,13 +10840,13 @@ let
sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg==";
};
};
- "aws-sdk-2.932.0" = {
+ "aws-sdk-2.935.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.932.0";
+ version = "2.935.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.932.0.tgz";
- sha512 = "U6MWUtFD0npWa+ReVEgm0fCIM0fMOYahFp14GLv8fC+BWOTvh5Iwt/gF8NrLomx42bBjA1Abaw6yhmiaSJDQHQ==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.935.0.tgz";
+ sha512 = "OeoqkZ0fXPC1xjumoFQmPccASXmGBBNBsI3l9vs/NCQk3WyBfiYh07H6RO5owtCmp0a8hAjKSZAHjnRe2JlmEA==";
};
};
"aws-sign2-0.6.0" = {
@@ -14296,13 +14278,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001239" = {
+ "caniuse-lite-1.0.30001240" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001239";
+ version = "1.0.30001240";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001239.tgz";
- sha512 = "cyBkXJDMeI4wthy8xJ2FvDU6+0dtcZSJW3voUF8+e9f1bBeuvyZfc3PNbkOETyhbR+dGCPzn9E7MA3iwzusOhQ==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001240.tgz";
+ sha512 = "nb8mDzfMdxBDN7ZKx8chWafAdBp5DAAlpWvNyUGe5tcDWd838zpzDN3Rah9cjCqhfOKkrvx40G2SDtP0qiWX/w==";
};
};
"canvas-2.8.0" = {
@@ -14836,15 +14818,6 @@ let
sha512 = "0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==";
};
};
- "cheerio-1.0.0-rc.5" = {
- name = "cheerio";
- packageName = "cheerio";
- version = "1.0.0-rc.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.5.tgz";
- sha512 = "yoqps/VCaZgN4pfXtenwHROTp8NG6/Hlt4Jpz2FEP0ZJQ+ZUkVDd0hAPDNKhj3nakpfPt/CNs57yEtxD1bXQiw==";
- };
- };
"cheerio-select-1.5.0" = {
name = "cheerio-select";
packageName = "cheerio-select";
@@ -14854,15 +14827,6 @@ let
sha512 = "qocaHPv5ypefh6YNxvnbABM07KMxExbtbfuJoIie3iZXX1ERwYmJcIiRrr9H05ucQP1k28dav8rpdDgjQd8drg==";
};
};
- "cheerio-select-tmp-0.1.1" = {
- name = "cheerio-select-tmp";
- packageName = "cheerio-select-tmp";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cheerio-select-tmp/-/cheerio-select-tmp-0.1.1.tgz";
- sha512 = "YYs5JvbpU19VYJyj+F7oYrIE2BOll1/hRU7rEy/5+v9BzkSo3bK81iAeeQEMI92vRIxz677m72UmJUiVwwgjfQ==";
- };
- };
"child-process-1.0.2" = {
name = "child-process";
packageName = "child-process";
@@ -15223,13 +15187,13 @@ let
sha512 = "VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==";
};
};
- "clean-css-5.1.2" = {
+ "clean-css-5.1.3" = {
name = "clean-css";
packageName = "clean-css";
- version = "5.1.2";
+ version = "5.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/clean-css/-/clean-css-5.1.2.tgz";
- sha512 = "QcaGg9OuMo+0Ds933yLOY+gHPWbxhxqF0HDexmToPf8pczvmvZGYzd+QqWp9/mkucAOKViI+dSFOqoZIvXbeBw==";
+ url = "https://registry.npmjs.org/clean-css/-/clean-css-5.1.3.tgz";
+ sha512 = "qGXzUCDpLwAlPx0kYeU4QXjzQIcIYZbJjD4FNm7NnSjoP0hYMVZhHOpUYJ6AwfkMX2cceLRq54MeCgHy/va1cA==";
};
};
"clean-deep-3.4.0" = {
@@ -15547,15 +15511,6 @@ let
sha512 = "0tOHJNMF9+4R3qcbBL+4IxLErpaYSYvzs10aXuECDbZdJOuJHdagJMAqvLdeaUQTI/o2uSCDRpet6ywDiKOAYw==";
};
};
- "clipboard-2.0.8" = {
- name = "clipboard";
- packageName = "clipboard";
- version = "2.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/clipboard/-/clipboard-2.0.8.tgz";
- sha512 = "Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ==";
- };
- };
"clipboardy-1.2.3" = {
name = "clipboardy";
packageName = "clipboardy";
@@ -16483,6 +16438,15 @@ let
sha512 = "QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==";
};
};
+ "commander-8.0.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "8.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commander/-/commander-8.0.0.tgz";
+ sha512 = "Xvf85aAtu6v22+E5hfVoLHqyul/jyxh91zvqk/ioJTQuJR7Z78n7H558vMPKanPSRgIEeZemT92I2g9Y8LPbSQ==";
+ };
+ };
"commandpost-1.4.0" = {
name = "commandpost";
packageName = "commandpost";
@@ -16996,13 +16960,13 @@ let
sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
};
};
- "constructs-3.3.87" = {
+ "constructs-3.3.92" = {
name = "constructs";
packageName = "constructs";
- version = "3.3.87";
+ version = "3.3.92";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-3.3.87.tgz";
- sha512 = "/SQrY1RP9KQsSyyVeyBTSMIiC5yOJO635YVqPH6XBsS5MMkBHd4gsPOX4FkpkDLMC1shAoK0FSTLatgxFiS4+A==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-3.3.92.tgz";
+ sha512 = "fy4mwH1yyNZe+fykEsVeBYhBI2GNYBoJoRS3St8Scl/RcoFUj1inHvxMDrcRHm78K0kZ/U1oZ5gzuMHBnQxWlQ==";
};
};
"consume-http-header-1.0.0" = {
@@ -18023,15 +17987,6 @@ let
sha512 = "DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==";
};
};
- "css-b64-images-0.2.5" = {
- name = "css-b64-images";
- packageName = "css-b64-images";
- version = "0.2.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/css-b64-images/-/css-b64-images-0.2.5.tgz";
- sha1 = "42005d83204b2b4a5d93b6b1a5644133b5927a02";
- };
- };
"css-color-keywords-1.0.0" = {
name = "css-color-keywords";
packageName = "css-color-keywords";
@@ -18140,15 +18095,6 @@ let
sha512 = "Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==";
};
};
- "css-select-3.1.2" = {
- name = "css-select";
- packageName = "css-select";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/css-select/-/css-select-3.1.2.tgz";
- sha512 = "qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA==";
- };
- };
"css-select-4.1.3" = {
name = "css-select";
packageName = "css-select";
@@ -18230,15 +18176,6 @@ let
sha512 = "ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==";
};
};
- "css-what-4.0.0" = {
- name = "css-what";
- packageName = "css-what";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/css-what/-/css-what-4.0.0.tgz";
- sha512 = "teijzG7kwYfNVsUh2H/YN62xW3KK9YhXEgSlbxMlcyjPNvdKJqFx5lrwlJgoFP1ZHlB89iGDlo/JyshKeRhv5A==";
- };
- };
"css-what-5.0.1" = {
name = "css-what";
packageName = "css-what";
@@ -19580,13 +19517,13 @@ let
sha1 = "d171a87933252807eb3cb61dc1c1445d078df2d9";
};
};
- "decimal.js-10.3.0" = {
+ "decimal.js-10.3.1" = {
name = "decimal.js";
packageName = "decimal.js";
- version = "10.3.0";
+ version = "10.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.0.tgz";
- sha512 = "MrQRs2gyD//7NeHi9TtsfClkf+cFAewDz+PZHR8ILKglLmBMyVX3ymQ+oeznE3tjrS7beTN+6JXb2C3JDHm7ug==";
+ url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz";
+ sha512 = "V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==";
};
};
"decimal.js-7.5.1" = {
@@ -20102,15 +20039,6 @@ let
sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
};
};
- "delegate-3.2.0" = {
- name = "delegate";
- packageName = "delegate";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz";
- sha512 = "IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==";
- };
- };
"delegates-1.0.0" = {
name = "delegates";
packageName = "delegates";
@@ -20435,15 +20363,6 @@ let
sha512 = "y/Ev98AleGvl43YKTNcA2Q+lyFmsmCfTTNWy4cjEJxoLkbobcXtRS0Kvx06daCgr2GdtlwLfNzL553BkktfJoA==";
};
};
- "devtools-protocol-0.0.854822" = {
- name = "devtools-protocol";
- packageName = "devtools-protocol";
- version = "0.0.854822";
- src = fetchurl {
- url = "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.854822.tgz";
- sha512 = "xd4D8kHQtB0KtWW0c9xBZD5LVtm9chkMOfs/3Yn01RhT/sFIsVtzTtypfKoFfWBaL+7xCYLxjOLkhwPXaX/Kcg==";
- };
- };
"devtools-protocol-0.0.883894" = {
name = "devtools-protocol";
packageName = "devtools-protocol";
@@ -20984,15 +20903,6 @@ let
sha512 = "2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==";
};
};
- "dom-serializer-1.2.0" = {
- name = "dom-serializer";
- packageName = "dom-serializer";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.2.0.tgz";
- sha512 = "n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA==";
- };
- };
"dom-serializer-1.3.2" = {
name = "dom-serializer";
packageName = "dom-serializer";
@@ -21650,13 +21560,13 @@ let
sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ==";
};
};
- "electron-to-chromium-1.3.755" = {
+ "electron-to-chromium-1.3.759" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.3.755";
+ version = "1.3.759";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.755.tgz";
- sha512 = "BJ1s/kuUuOeo1bF/EM2E4yqW9te0Hpof3wgwBx40AWJE18zsD1Tqo0kr7ijnOc+lRsrlrqKPauJAHqaxOItoUA==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.759.tgz";
+ sha512 = "nM76xH0t2FBH5iMEZDVc3S/qbdKjGH7TThezxC8k1Q7w7WHvIAyJh8lAe2UamGfdRqBTjHfPDn82LJ0ksCiB9g==";
};
};
"electrum-client-git://github.com/janoside/electrum-client" = {
@@ -22741,13 +22651,13 @@ let
sha512 = "Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ==";
};
};
- "eslint-plugin-vue-7.11.1" = {
+ "eslint-plugin-vue-7.12.1" = {
name = "eslint-plugin-vue";
packageName = "eslint-plugin-vue";
- version = "7.11.1";
+ version = "7.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.11.1.tgz";
- sha512 = "lbw3vkEAGqYjqd1HpPFWHXtYaS8mILTJ5KOpJfRxO3Fo7o0wCf1zD7vSOasbm6nTA9xIgvZQ4VcyGIzQXxznHw==";
+ url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.12.1.tgz";
+ sha512 = "xHf/wCt88qmzqQerjaSteUFGASj7fPreglKD4ijnvoKRkoSJ3/H3kuJE8QFFtc+2wjw6hRDs834HH7vpuTJQzg==";
};
};
"eslint-scope-3.7.3" = {
@@ -23614,13 +23524,13 @@ let
sha1 = "a793d3ac0cad4c6ab571e9968fbbab6cb2532929";
};
};
- "expo-pwa-0.0.84" = {
+ "expo-pwa-0.0.87" = {
name = "expo-pwa";
packageName = "expo-pwa";
- version = "0.0.84";
+ version = "0.0.87";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.84.tgz";
- sha512 = "esZ6a5ObdnWn8h9METs3WuUbGEq16vh4wq1jwSK81oBJKIxijd5M0JbqDqhOsT4rIjuH8ZfQKsl0C1AtLIAfgQ==";
+ url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.87.tgz";
+ sha512 = "ijNE0hKcOcCTU4Ve0AC69VLCe2d3xLcyU38oCXm2s/r/kuzMvs6bb1ecIrwWUt6Y7JpAPFYGemzxInDW5zcXQg==";
};
};
"express-2.5.11" = {
@@ -24154,13 +24064,13 @@ let
sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==";
};
};
- "fast-glob-3.2.5" = {
+ "fast-glob-3.2.6" = {
name = "fast-glob";
packageName = "fast-glob";
- version = "3.2.5";
+ version = "3.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz";
- sha512 = "2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==";
+ url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.6.tgz";
+ sha512 = "GnLuqj/pvQ7pX8/L4J84nijv6sAnlwvSDpMkJi9i7nPmPxGtRPkBSStfvDW5l6nMdX9VWe+pkKWFTgD+vF2QSQ==";
};
};
"fast-json-parse-1.0.3" = {
@@ -25189,13 +25099,13 @@ let
sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg==";
};
};
- "flow-parser-0.153.0" = {
+ "flow-parser-0.154.0" = {
name = "flow-parser";
packageName = "flow-parser";
- version = "0.153.0";
+ version = "0.154.0";
src = fetchurl {
- url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.153.0.tgz";
- sha512 = "qa7UODgbofQyruRWqNQ+KM5hO37CenByxhNfAztiwjBsPhWZ5AFh5g+gtLpTWPlzG7X66QdjBB9DuHNUBcaF+Q==";
+ url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.154.0.tgz";
+ sha512 = "cH9xY/ljOgmqG1n7PU1jffiHhRggoloauwOrOlCWBEX4Y+ml6GA8g//tCVKU+6PO4BXoPF22TFHkS5E1bN3JOQ==";
};
};
"fluent-ffmpeg-2.1.2" = {
@@ -27278,15 +27188,6 @@ let
sha512 = "otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==";
};
};
- "good-listener-1.2.2" = {
- name = "good-listener";
- packageName = "good-listener";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz";
- sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50";
- };
- };
"google-auth-library-6.1.6" = {
name = "google-auth-library";
packageName = "google-auth-library";
@@ -27314,13 +27215,13 @@ let
sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew==";
};
};
- "google-gax-2.16.0" = {
+ "google-gax-2.17.0" = {
name = "google-gax";
packageName = "google-gax";
- version = "2.16.0";
+ version = "2.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/google-gax/-/google-gax-2.16.0.tgz";
- sha512 = "IwHxHs9gEbvQ0Ne12taqDjJT9cpoLqM7tJamvctIGmkyqnQrdnbDJTGK2Rf85piMYGzmOuPKas9TkhCaoTVIJA==";
+ url = "https://registry.npmjs.org/google-gax/-/google-gax-2.17.0.tgz";
+ sha512 = "Ze/Oq0atVNKyKvDzQFU8B82V9w36GELQruXGsiY1jnySbieZ9vS75v98V/Z10PktmSVqis4sQ+FwK2gkgwIiiw==";
};
};
"google-p12-pem-3.1.0" = {
@@ -27584,13 +27485,13 @@ let
sha512 = "95yD/tKi24q8xYa7Q9rhQN16AYj5wPbrb8tmHGM3WRc9EBmWrG/0kkMl+tQG8wcEuE9ibR4zyOM31p5Sdr2v4g==";
};
};
- "graphql-tag-2.12.4" = {
+ "graphql-tag-2.12.5" = {
name = "graphql-tag";
packageName = "graphql-tag";
- version = "2.12.4";
+ version = "2.12.5";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.4.tgz";
- sha512 = "VV1U4O+9x99EkNpNmCUV5RZwq6MnK4+pGbRYWG+lA/m3uo7TSqJF81OkcOP148gFP6fzdl7JWYBrwWVTS9jXww==";
+ url = "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.5.tgz";
+ sha512 = "5xNhP4063d16Pz3HBtKprutsPrmHZi5IdUGOWRxA2B6VF7BIRGOHZ5WQvDmJXZuPcBg7rYwaFxvQYjqkSdR3TQ==";
};
};
"graphql-tools-3.0.0" = {
@@ -28781,15 +28682,6 @@ let
sha512 = "LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==";
};
};
- "html-minifier-4.0.0" = {
- name = "html-minifier";
- packageName = "html-minifier";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/html-minifier/-/html-minifier-4.0.0.tgz";
- sha512 = "aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==";
- };
- };
"html-minifier-terser-5.1.1" = {
name = "html-minifier-terser";
packageName = "html-minifier-terser";
@@ -30087,15 +29979,6 @@ let
sha512 = "JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==";
};
};
- "inquirer-8.0.0" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-8.0.0.tgz";
- sha512 = "ON8pEJPPCdyjxj+cxsYRe6XfCJepTxANdNnTebsTuQgXpRyZRRT9t4dJwjRubgmvn20CLSEnozRUayXyM9VTXA==";
- };
- };
"inquirer-8.1.1" = {
name = "inquirer";
packageName = "inquirer";
@@ -32805,13 +32688,13 @@ let
sha512 = "ChFg5qhvxCaM2bspCqizs48yMtsm5YLHjBoNZLCkbXyc3yMM5l8pnn787B5ww5TI3+tKxKYWkbiKf356kQ1OgQ==";
};
};
- "jsii-srcmak-0.1.290" = {
+ "jsii-srcmak-0.1.295" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.290";
+ version = "0.1.295";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.290.tgz";
- sha512 = "kKyb2kUBCbecbQRx467QGHUCcuCvD2gXzMNYACMgxbKLakRq3qZ3CMb8Pc8/7mnlbgU9e3suh49t8E3D6Q0yhw==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.295.tgz";
+ sha512 = "xqi5ItFZktdHGzc2XsgNhHsz7egFoFxMpnT0r3ZIbdS6CI1GgBChLEnwxlrE1D6L7c4O4CUImczWgA8b63adPA==";
};
};
"json-bigint-0.2.3" = {
@@ -33111,13 +32994,13 @@ let
sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A==";
};
};
- "json2jsii-0.1.257" = {
+ "json2jsii-0.1.262" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.1.257";
+ version = "0.1.262";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.257.tgz";
- sha512 = "MMMMK6Oa9U3FtISKuOow6iwd/nJqk9i9C1HkkOO7AyBaD0IDhvgss3cRj37a390AVMnJKeQGWPm8whRsno/N+Q==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.262.tgz";
+ sha512 = "EuPkRDhoG5nH95KzXeDrD6ZExFQp6wwRHsz/h1+hrcRBMX5xusEx0kJoYx7R65i7WNavIw/zdJzVVPwhEl+qHw==";
};
};
"json3-3.2.6" = {
@@ -34651,13 +34534,13 @@ let
sha512 = "ETaASkbv5v2gcrob/xonsjy0deKSxIHfKOTfOXQicxhZed02plQ2oAUx/K3yxIhRnm7YS45Z/gYQLxUqHkI4ow==";
};
};
- "ln-telegram-3.2.5" = {
+ "ln-telegram-3.2.6" = {
name = "ln-telegram";
packageName = "ln-telegram";
- version = "3.2.5";
+ version = "3.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.2.5.tgz";
- sha512 = "odHaSJDF1asxW74D4JaoLIGkVqX5KMBDk310sPoM0LJ5Fqljjc2K/Mo+zW+NQtIyaEcFrQTH207jZy2sb4niUQ==";
+ url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.2.6.tgz";
+ sha512 = "8Cd/f5v8tz6v7Tu9AMss3Gn71njnfMK9FC8+wBz+LoYLwI1VRj5yS4koWf7dVXD8qsA4DU4TnqZRrGbdSODWyQ==";
};
};
"load-bmfont-1.4.1" = {
@@ -36694,6 +36577,15 @@ let
sha512 = "zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==";
};
};
+ "luxon-1.27.0" = {
+ name = "luxon";
+ packageName = "luxon";
+ version = "1.27.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/luxon/-/luxon-1.27.0.tgz";
+ sha512 = "VKsFsPggTA0DvnxtJdiExAucKdAnwbCCNlMM5ENvHlxubqWd0xhZcdb4XgZ7QFNhaRhilXCFxHuoObP5BNA4PA==";
+ };
+ };
"lzma-native-6.0.1" = {
name = "lzma-native";
packageName = "lzma-native";
@@ -37279,13 +37171,13 @@ let
sha512 = "c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg==";
};
};
- "marked-2.1.2" = {
+ "marked-2.1.3" = {
name = "marked";
packageName = "marked";
- version = "2.1.2";
+ version = "2.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/marked/-/marked-2.1.2.tgz";
- sha512 = "ueJhIvklJJw04qxQbGIAu63EXwwOCYc7yKMBjgagTM4rjC5QtWyqSNgW7jCosV1/Km/1TUfs5qEpAqcGG0Mo5g==";
+ url = "https://registry.npmjs.org/marked/-/marked-2.1.3.tgz";
+ sha512 = "/Q+7MGzaETqifOMWYEA7HVMaZb4XbcRfaOzcSsHZEith83KGlvaSG33u0SKu89Mj5h+T8V2hM+8O45Qc5XTgwA==";
};
};
"marked-terminal-3.3.0" = {
@@ -38098,13 +37990,13 @@ let
sha1 = "f8a064760d37e7978ad5f9f6d3c119a494f57081";
};
};
- "mermaid-8.10.2" = {
+ "mermaid-8.11.0" = {
name = "mermaid";
packageName = "mermaid";
- version = "8.10.2";
+ version = "8.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mermaid/-/mermaid-8.10.2.tgz";
- sha512 = "Za5MrbAOMbEsyY4ONgGjfYz06sbwF1iNGRzp1sQqpOtvXxjxGu/J1jRJ8QyE9kD/D9zj1/KlRrYegWEvA7eZ5Q==";
+ url = "https://registry.npmjs.org/mermaid/-/mermaid-8.11.0.tgz";
+ sha512 = "c/SprR4mJ2Pj7A+3mEvva7XrhEkXQJUal7fIyOkMhOhsPX2u5gQjjm5CEhHQ6WdGsqP+yiR+Fcgnd1i8mpFK8w==";
};
};
"meros-1.1.4" = {
@@ -38701,15 +38593,6 @@ let
sha512 = "LfHUYIA047rrqIZEn0gwbqbzarU5bmZ8yZ9SizeoiPwVq5cemE3foJTJZ3pCktUq/IPkKNGghFHJk1O8149mOA==";
};
};
- "minify-4.1.3" = {
- name = "minify";
- packageName = "minify";
- version = "4.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/minify/-/minify-4.1.3.tgz";
- sha512 = "ykuscavxivSmVpcCzsXmsVTukWYLUUtPhHj0w2ILvHDGqC+hsuTCihBn9+PJBd58JNvWTNg9132J9nrrI2anzA==";
- };
- };
"minilog-3.1.0" = {
name = "minilog";
packageName = "minilog";
@@ -40349,15 +40232,6 @@ let
sha512 = "Gd1aexpJ3RrOzkssdE8ipS67PuppOAkJNhRqQPp2in2XnJKPm5kvYonYMNVadasSFlNdmVCk9nELV3TnbAfklw==";
};
};
- "netlify-redirect-parser-7.0.0" = {
- name = "netlify-redirect-parser";
- packageName = "netlify-redirect-parser";
- version = "7.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-7.0.0.tgz";
- sha512 = "O+4b18XZG1Y8Jaki02T58xRFoEAXIH4qxMSlhQXd8qP5WPIicwcQKylC4fdoA2+puQzGkXvEY9Yc5jn8Zpb2pQ==";
- };
- };
"netlify-redirect-parser-8.0.0" = {
name = "netlify-redirect-parser";
packageName = "netlify-redirect-parser";
@@ -41349,6 +41223,15 @@ let
sha512 = "U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==";
};
};
+ "normalize-url-4.5.0" = {
+ name = "normalize-url";
+ packageName = "normalize-url";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz";
+ sha512 = "2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==";
+ };
+ };
"normalize-url-4.5.1" = {
name = "normalize-url";
packageName = "normalize-url";
@@ -41475,15 +41358,6 @@ let
sha512 = "xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==";
};
};
- "npm-package-arg-8.1.2" = {
- name = "npm-package-arg";
- packageName = "npm-package-arg";
- version = "8.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.2.tgz";
- sha512 = "6Eem455JsSMJY6Kpd3EyWE+n5hC+g9bSyHr9K9U2zqZb7+02+hObQ2c0+8iDk/mNF+8r1MhY44WypKJAkySIYA==";
- };
- };
"npm-package-arg-8.1.5" = {
name = "npm-package-arg";
packageName = "npm-package-arg";
@@ -41547,15 +41421,6 @@ let
sha512 = "Qs6P6nnopig+Y8gbzpeN/dkt+n7IyVd8f45NTMotGk6Qo7GfBmzwYx6jRLoOOgKiMnaQfYxsuyQlD8Mc3guBhg==";
};
};
- "npm-registry-fetch-10.1.2" = {
- name = "npm-registry-fetch";
- packageName = "npm-registry-fetch";
- version = "10.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-10.1.2.tgz";
- sha512 = "KsM/TdPmntqgBFlfsbkOLkkE9ovZo7VpVcd+/eTdYszCrgy5zFl5JzWm+OxavFaEWlbkirpkou+ZYI00RmOBFA==";
- };
- };
"npm-registry-fetch-11.0.0" = {
name = "npm-registry-fetch";
packageName = "npm-registry-fetch";
@@ -42430,15 +42295,6 @@ let
sha512 = "MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==";
};
};
- "open-8.0.2" = {
- name = "open";
- packageName = "open";
- version = "8.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/open/-/open-8.0.2.tgz";
- sha512 = "NV5QmWJrTaNBLHABJyrb+nd5dXI5zfea/suWawBhkHzAbVhLLiJdrqMgxMypGK9Eznp2Ltoh7SAVkQ3XAucX7Q==";
- };
- };
"open-8.1.0" = {
name = "open";
packageName = "open";
@@ -42691,13 +42547,13 @@ let
sha512 = "ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==";
};
};
- "openid-2.0.8" = {
+ "openid-2.0.9" = {
name = "openid";
packageName = "openid";
- version = "2.0.8";
+ version = "2.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/openid/-/openid-2.0.8.tgz";
- sha512 = "ljI4GE6p4RYn9dLftlXw6TvlA+untAkoWBRpj4qIB4AJQWcDZ2lOVOJQ2tq346ok38mtGDBYRBvp3Q+AsuCBnQ==";
+ url = "https://registry.npmjs.org/openid/-/openid-2.0.9.tgz";
+ sha512 = "LzsGBHUDU2FjW/aHjB99GXxuyEPVkFyU4Ub/df3K0hYGxD1qvYu7atPORLXddCufVkcZBpgbYxdLVG8uiY0fCA==";
};
};
"openpgp-4.10.10" = {
@@ -43591,15 +43447,6 @@ let
sha512 = "LUL4NK7sz01jdSUdCu3z1LyphCiFdQaFouaEDsAWmJpzS0lbeNfvZoX4bi1Tm1ilzheK5VAoD96QskDCZQr+jA==";
};
};
- "pacote-11.3.2" = {
- name = "pacote";
- packageName = "pacote";
- version = "11.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pacote/-/pacote-11.3.2.tgz";
- sha512 = "lMO7V9aMhyE5gfaSFxKfW3OTdXuFBNQJfuNuet3NPzWWhOYIW90t85vHcHLDjdhgmfAdAHyh9q1HAap96ea0XA==";
- };
- };
"pacote-11.3.4" = {
name = "pacote";
packageName = "pacote";
@@ -44023,13 +43870,13 @@ let
sha1 = "32d4b6afde631420e5f415919a222b774b575707";
};
};
- "parse-url-5.0.3" = {
+ "parse-url-5.0.6" = {
name = "parse-url";
packageName = "parse-url";
- version = "5.0.3";
+ version = "5.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/parse-url/-/parse-url-5.0.3.tgz";
- sha512 = "nrLCVMJpqo12X8uUJT4GJPd5AFaTOrGx/QpJy3HNcVtq0AZSstVIsnxS5fqNPuoqMUs3MyfBoOP6Zvu2Arok5A==";
+ url = "https://registry.npmjs.org/parse-url/-/parse-url-5.0.6.tgz";
+ sha512 = "nZp+U7NFVTsBXTh6oGxdwvd7ncz3hJCl74q0lC0pLc3ypXJMKFUpfUEAd4r1x8zVVF5UHFik+CBNOQKN0ayByA==";
};
};
"parse5-1.5.1" = {
@@ -46157,13 +46004,13 @@ let
sha512 = "kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==";
};
};
- "prettier-2.3.1" = {
+ "prettier-2.3.2" = {
name = "prettier";
packageName = "prettier";
- version = "2.3.1";
+ version = "2.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-2.3.1.tgz";
- sha512 = "p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==";
+ url = "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz";
+ sha512 = "lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==";
};
};
"prettier-bytes-1.0.4" = {
@@ -46400,13 +46247,13 @@ let
sha512 = "dG2w7WtovUa4SiYTdWn9H8Bd4JNdei2djtkP/Bk9fXq81j5Q15ZPHYSwhUVvBRbp5zMkGtu0Yk62HuMcly0pRw==";
};
};
- "prismjs-1.23.0" = {
+ "prismjs-1.24.0" = {
name = "prismjs";
packageName = "prismjs";
- version = "1.23.0";
+ version = "1.24.0";
src = fetchurl {
- url = "https://registry.npmjs.org/prismjs/-/prismjs-1.23.0.tgz";
- sha512 = "c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA==";
+ url = "https://registry.npmjs.org/prismjs/-/prismjs-1.24.0.tgz";
+ sha512 = "SqV5GRsNqnzCL8k5dfAjCNhUrF3pR0A9lTDSCUZeh/LIshheXJEaP0hwLz2t4XHivd2J/v2HR+gRnigzeKe3cQ==";
};
};
"private-0.1.8" = {
@@ -47894,15 +47741,6 @@ let
sha512 = "AxHvCb9IWmmP3gMW+epxdj92Gglii+6Z4sb+W+zc2hTTu10HF0yg6hGXot5O74uYkVqG3lfDRLfnRpi6WOwi5A==";
};
};
- "puppeteer-8.0.0" = {
- name = "puppeteer";
- packageName = "puppeteer";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/puppeteer/-/puppeteer-8.0.0.tgz";
- sha512 = "D0RzSWlepeWkxPPdK3xhTcefj8rjah1791GE82Pdjsri49sy11ci/JQsAO8K2NRukqvwEtcI+ImP5F4ZiMvtIQ==";
- };
- };
"purgecss-2.3.0" = {
name = "purgecss";
packageName = "purgecss";
@@ -47948,13 +47786,13 @@ let
sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7";
};
};
- "pyright-1.1.151" = {
+ "pyright-1.1.153" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.151";
+ version = "1.1.153";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.151.tgz";
- sha512 = "R/Zr6VqXghuFLm7y3a8HoCrA+mfy+Zp+mp6P8gFZeJO9Rl1kQLJhfc/y4QKSQHZWxXOBGo+AFDi/rWLZfNBEgQ==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.153.tgz";
+ sha512 = "t5Y9IojL2Sifm1Q04BEBJDLP86rF4RpXma28HEP/EXJRHyyNxu8css77HC+tZqJXXXZVtAjaJxJSAEwq5afGjg==";
};
};
"q-0.9.7" = {
@@ -50594,13 +50432,13 @@ let
sha1 = "6f697e50a0e4ddc8c8f7fb547a9b60dead43678d";
};
};
- "retry-request-4.1.3" = {
+ "retry-request-4.2.0" = {
name = "retry-request";
packageName = "retry-request";
- version = "4.1.3";
+ version = "4.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/retry-request/-/retry-request-4.1.3.tgz";
- sha512 = "QnRZUpuPNgX0+D1xVxul6DbJ9slvo4Rm6iV/dn63e048MvGbUZiKySVt6Tenp04JqmchxjiLltGerOJys7kJYQ==";
+ url = "https://registry.npmjs.org/retry-request/-/retry-request-4.2.0.tgz";
+ sha512 = "rIwHm2pipUX7MFTpscNr9CNfOsW3gzcosqUOvS7MbuURgdDeIzNVjA/sNgs4BTt0g3L748hB7Q/Yt6StRFHD4w==";
};
};
"reusify-1.0.4" = {
@@ -50801,13 +50639,13 @@ let
sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==";
};
};
- "rollup-2.52.2" = {
+ "rollup-2.52.3" = {
name = "rollup";
packageName = "rollup";
- version = "2.52.2";
+ version = "2.52.3";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.52.2.tgz";
- sha512 = "4RlFC3k2BIHlUsJ9mGd8OO+9Lm2eDF5P7+6DNQOp5sx+7N/1tFM01kELfbxlMX3MxT6owvLB1ln4S3QvvQlbUA==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.52.3.tgz";
+ sha512 = "QF3Sju8Kl2z0osI4unyOLyUudyhOMK6G0AeqJWgfiyigqLAlnNrfBcDWDx+f1cqn+JU2iIYVkDrgQ6/KtwEfrg==";
};
};
"rollup-plugin-babel-4.4.0" = {
@@ -51503,15 +51341,6 @@ let
sha512 = "e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==";
};
};
- "select-1.1.2" = {
- name = "select";
- packageName = "select";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/select/-/select-1.1.2.tgz";
- sha1 = "0e7350acdec80b1108528786ec1d4418d11b396d";
- };
- };
"select-hose-2.0.0" = {
name = "select-hose";
packageName = "select-hose";
@@ -51863,6 +51692,15 @@ let
sha512 = "SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==";
};
};
+ "serialize-javascript-6.0.0" = {
+ name = "serialize-javascript";
+ packageName = "serialize-javascript";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz";
+ sha512 = "Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==";
+ };
+ };
"serialize-to-js-3.1.1" = {
name = "serialize-to-js";
packageName = "serialize-to-js";
@@ -52997,13 +52835,13 @@ let
sha512 = "Bmtr7QdRL2b3Js+mPDmvXbkprOpzO8aUFXqR0nJKAOlUVQqZ84yiuT0n/mssEiJJ0vP+k0kZvTeiTwgio4KZRg==";
};
};
- "snyk-sbt-plugin-2.11.0" = {
+ "snyk-sbt-plugin-2.11.1" = {
name = "snyk-sbt-plugin";
packageName = "snyk-sbt-plugin";
- version = "2.11.0";
+ version = "2.11.1";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-2.11.0.tgz";
- sha512 = "wUqHLAa3MzV6sVO+05MnV+lwc+T6o87FZZaY+43tQPytBI2Wq23O3j4POREM4fa2iFfiQJoEYD6c7xmhiEUsSA==";
+ url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-2.11.1.tgz";
+ sha512 = "WKSV4MivovUHqdD2EYrkCuESjVLSbtsKpNnHeDCRIvv/GZ7YkvDsDqRLBUzDl6SvhGzaCv9rwEVUl+ZwJITL1w==";
};
};
"snyk-tree-1.0.0" = {
@@ -53924,13 +53762,13 @@ let
sha512 = "VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==";
};
};
- "sprintf-kit-2.0.0" = {
+ "sprintf-kit-2.0.1" = {
name = "sprintf-kit";
packageName = "sprintf-kit";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sprintf-kit/-/sprintf-kit-2.0.0.tgz";
- sha512 = "/0d2YTn8ZFVpIPAU230S9ZLF8WDkSSRWvh/UOLM7zzvkCchum1TtouRgyV8OfgOaYilSGU4lSSqzwBXJVlAwUw==";
+ url = "https://registry.npmjs.org/sprintf-kit/-/sprintf-kit-2.0.1.tgz";
+ sha512 = "2PNlcs3j5JflQKcg4wpdqpZ+AjhQJ2OZEo34NXDtlB0tIPG84xaaXhpA8XFacFiwjKA4m49UOYG83y3hbMn/gQ==";
};
};
"sqlite3-5.0.0" = {
@@ -54041,13 +53879,13 @@ let
sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung==";
};
};
- "ssb-db2-2.1.3" = {
+ "ssb-db2-2.1.4" = {
name = "ssb-db2";
packageName = "ssb-db2";
- version = "2.1.3";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.1.3.tgz";
- sha512 = "neA96dzAzxuH5/btqtbZ3h3RoWVdAT4b8rJrK/oZPfaOHMkQHL75IBuviTqkgfXoMqx1exegt4AI4bVroCJPmg==";
+ url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.1.4.tgz";
+ sha512 = "r70wOz0taaIgpFX/I1DbzT1mucfLSHMmXfNMaenmLcrV6vDZFyFvZVyQTn26xgv7JwDkrdD9B/1Y85AH0qjYow==";
};
};
"ssb-ebt-5.6.7" = {
@@ -54320,13 +54158,13 @@ let
sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA==";
};
};
- "sscaff-1.2.10" = {
+ "sscaff-1.2.15" = {
name = "sscaff";
packageName = "sscaff";
- version = "1.2.10";
+ version = "1.2.15";
src = fetchurl {
- url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.10.tgz";
- sha512 = "okh9hLxPkZl22XpK+4rLOnR3SHG2hEI92KKevDI8e6wZPIP5Dgsxx8RQUogdm3/a87kgyoWaCoOABekYIeXx9g==";
+ url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.15.tgz";
+ sha512 = "yGGLgLcLpd/wCs01BGWZwkT9s5qsvpUXm2+DQ0aBGCCPvA/eJbC7aNCL3eips1R3z/XJ9R7azWvi7VhCMeg/Dg==";
};
};
"ssh-config-1.1.6" = {
@@ -56111,13 +55949,13 @@ let
sha512 = "xk5CMbwoQVI53rTq9o/iMojAqXP5NT4/+TMeTP4uXWDIH18pB9AXgO5Olqt0RXuf3jH032DA4DS4qzem6XdXAw==";
};
};
- "swagger-ui-dist-3.50.0" = {
+ "swagger-ui-dist-3.51.0" = {
name = "swagger-ui-dist";
packageName = "swagger-ui-dist";
- version = "3.50.0";
+ version = "3.51.0";
src = fetchurl {
- url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.50.0.tgz";
- sha512 = "BklniOBPlvZ6M9oGkhUwOf5HvxhkHBIycXN3ndju8WlLmi1xfMSdOA2AR6pNswlwURzsZUe1rh80aUyjnpD+Zw==";
+ url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.51.0.tgz";
+ sha512 = "DX8RuAyXBjd2J4mjCLLUaodbtZ2z6dF05l6IF3hO++erXM+CR3QVX9TqYX3374hW5BOeLrr7gujoSdY8jIvI2A==";
};
};
"swagger2openapi-7.0.7" = {
@@ -56796,13 +56634,13 @@ let
sha512 = "EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==";
};
};
- "terser-5.7.0" = {
+ "terser-5.7.1" = {
name = "terser";
packageName = "terser";
- version = "5.7.0";
+ version = "5.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/terser/-/terser-5.7.0.tgz";
- sha512 = "HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g==";
+ url = "https://registry.npmjs.org/terser/-/terser-5.7.1.tgz";
+ sha512 = "b3e+d5JbHAe/JSjwsC3Zn55wsBIM7AsHLjKxT31kGCldgbpFePaFo+PiddtO6uwRZWRw7sPXmAN8dTW61xmnSg==";
};
};
"terser-webpack-plugin-1.4.5" = {
@@ -56832,13 +56670,13 @@ let
sha512 = "3qAQpykRTD5DReLu5/cwpsg7EZFzP3Q0Hp2XUWJUw2mpq2jfgOKTZr8IZKKnNieRVVo1UauROTdhbQJZveGKtQ==";
};
};
- "terser-webpack-plugin-5.1.3" = {
+ "terser-webpack-plugin-5.1.4" = {
name = "terser-webpack-plugin";
packageName = "terser-webpack-plugin";
- version = "5.1.3";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.3.tgz";
- sha512 = "cxGbMqr6+A2hrIB5ehFIF+F/iST5ZOxvOmy9zih9ySbP1C2oEWQSOUS+2SNBTjzx5xLKO4xnod9eywdfq1Nb9A==";
+ url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.4.tgz";
+ sha512 = "C2WkFwstHDhVEmsmlCxrXUtVklS+Ir1A7twrYzrDrQQOIMOaVAYykaoo/Aq1K0QRkMoY2hhvDQY1cm4jnIMFwA==";
};
};
"test-exclude-6.0.0" = {
@@ -58083,15 +57921,6 @@ let
sha1 = "405923909592d56f78a5818434b0b78489ca5f2b";
};
};
- "try-catch-2.0.1" = {
- name = "try-catch";
- packageName = "try-catch";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/try-catch/-/try-catch-2.0.1.tgz";
- sha512 = "LsOrmObN/2WdM+y2xG+t16vhYrQsnV8wftXIcIOWZhQcBJvKGYuamJGwnU98A7Jxs2oZNkJztXlphEOoA0DWqg==";
- };
- };
"try-resolve-1.0.1" = {
name = "try-resolve";
packageName = "try-resolve";
@@ -58101,15 +57930,6 @@ let
sha1 = "cfde6fabd72d63e5797cfaab873abbe8e700e912";
};
};
- "try-to-catch-1.1.1" = {
- name = "try-to-catch";
- packageName = "try-to-catch";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/try-to-catch/-/try-to-catch-1.1.1.tgz";
- sha512 = "ikUlS+/BcImLhNYyIgZcEmq4byc31QpC+46/6Jm5ECWkVFhf8SM2Fp/0pMVXPX6vk45SMCwrP4Taxucne8I0VA==";
- };
- };
"tryer-1.0.1" = {
name = "tryer";
packageName = "tryer";
@@ -58884,6 +58704,15 @@ let
sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
};
};
+ "uglify-js-3.13.10" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "3.13.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.10.tgz";
+ sha512 = "57H3ACYFXeo1IaZ1w02sfA71wI60MGco/IQFjOqK+WtKoprh7Go2/yvd2HPtoJILO2Or84ncLccI4xoHMTSbGg==";
+ };
+ };
"uglify-js-3.13.3" = {
name = "uglify-js";
packageName = "uglify-js";
@@ -58893,15 +58722,6 @@ let
sha512 = "otIc7O9LyxpUcQoXzj2hL4LPWKklO6LJWoJUzNa8A17Xgi4fOeDC8FBDOLHnC/Slo1CQgsZMcM6as0M76BZaig==";
};
};
- "uglify-js-3.13.9" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "3.13.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.9.tgz";
- sha512 = "wZbyTQ1w6Y7fHdt8sJnHfSIuWeDgk6B5rCb4E/AM6QNNPbOMIZph21PW5dRB3h7Df0GszN+t7RuUH6sWK5bF0g==";
- };
- };
"uglify-js-3.4.10" = {
name = "uglify-js";
packageName = "uglify-js";
@@ -62512,13 +62332,13 @@ let
sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==";
};
};
- "webtorrent-1.0.1" = {
+ "webtorrent-1.0.2" = {
name = "webtorrent";
packageName = "webtorrent";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.0.1.tgz";
- sha512 = "A0l8T7iRJ+Cc/TUQqPAX/7hemrEEfIimaRiEYMTPAs1TM99Yd5tfKe00jTkjmI6a0nqx7d7+r5GgXSO/uFs7GA==";
+ url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.0.2.tgz";
+ sha512 = "uv9fq5md/98JyeDDyziy1H28Wc/idO80AKv+9pQ4XK0WNNjdE3FMtCKfrvU2VNS1PdAOrA6sFuUq2x0mV7k7WQ==";
};
};
"well-known-symbols-2.0.0" = {
@@ -62575,13 +62395,13 @@ let
sha512 = "WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==";
};
};
- "whatwg-url-8.6.0" = {
+ "whatwg-url-8.7.0" = {
name = "whatwg-url";
packageName = "whatwg-url";
- version = "8.6.0";
+ version = "8.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.6.0.tgz";
- sha512 = "os0KkeeqUOl7ccdDT1qqUcS4KH4tcBTSKK5Nl5WKb2lyxInIZ/CpjkqKa1Ss12mjfdcRX9mHmPPs7/SxG1Hbdw==";
+ url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz";
+ sha512 = "gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==";
};
};
"whatwg-url-compat-0.6.5" = {
@@ -63547,13 +63367,13 @@ let
sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ==";
};
};
- "xdl-59.0.44" = {
+ "xdl-59.0.47" = {
name = "xdl";
packageName = "xdl";
- version = "59.0.44";
+ version = "59.0.47";
src = fetchurl {
- url = "https://registry.npmjs.org/xdl/-/xdl-59.0.44.tgz";
- sha512 = "p9zwI5w0juiKdq5v0tIYojyqpomhMWg7C3W1tILSE48aPdkNgOlatSgAPJ9qbjBha6berKYtdOnpnfyEYOAtWQ==";
+ url = "https://registry.npmjs.org/xdl/-/xdl-59.0.47.tgz";
+ sha512 = "y6oA1/0RAOQ0pVl2nxRE40r/YUCPGcg+JS9mEiKDYZo6U8bIYhWx/X1gdBwvzzDOjfDZV34ls0fyTgLjeq0Xvg==";
};
};
"xenvar-0.5.1" = {
@@ -63953,13 +63773,13 @@ let
sha512 = "2t7FahYnGJys6DpHLhajusId7R0Pm2yTmuL0GV9+mV0ZlaLSnb2toBmppATfg5sWIhZQGlsTLoecSzya+l4EAQ==";
};
};
- "xstate-4.20.0" = {
+ "xstate-4.20.1" = {
name = "xstate";
packageName = "xstate";
- version = "4.20.0";
+ version = "4.20.1";
src = fetchurl {
- url = "https://registry.npmjs.org/xstate/-/xstate-4.20.0.tgz";
- sha512 = "u5Ou1CMo/oWApasmv1TYTHgj38k69DJdTqQdBBwt+/ooNhPJQiSIKTB3Y3HvX0h5tulwfSo6xAwZgBgjRsK3LA==";
+ url = "https://registry.npmjs.org/xstate/-/xstate-4.20.1.tgz";
+ sha512 = "oLqFEYKUG3Y4t3Pg5tb7ZXz2kZcrRA1inrEVfzDVf1JoBb+KGpKlNaLzxF5bE7swo0xcc8H+B/gdPb1feyO1gg==";
};
};
"xstream-11.14.0" = {
@@ -64616,30 +64436,30 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "12.0.5";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-12.0.5.tgz";
- sha512 = "MdgJ9DY3bWYsMFr9Xa+60gtVaYErhAE8ULGnUyI8zLMhWqrV1ZpJJ1WfP8pMQYx4HaKJIgx7wd8az7ZXAcF8hg==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-12.1.0.tgz";
+ sha512 = "3xvweF9oiR1X9KlXIFPGQtylctqPi9t7SjI/8M2z/qRP4GkMu2CiScNysWFMdJsNsrRvLGQdtAbJFBWfW1vmkA==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1200.5"
- sources."@angular-devkit/core-12.0.5"
- sources."@angular-devkit/schematics-12.0.5"
+ sources."@angular-devkit/architect-0.1201.0"
+ sources."@angular-devkit/core-12.1.0"
+ sources."@angular-devkit/schematics-12.1.0"
sources."@npmcli/git-2.1.0"
sources."@npmcli/installed-package-contents-1.0.7"
sources."@npmcli/move-file-1.1.2"
sources."@npmcli/node-gyp-1.0.2"
sources."@npmcli/promise-spawn-1.3.2"
sources."@npmcli/run-script-1.8.5"
- sources."@schematics/angular-12.0.5"
+ sources."@schematics/angular-12.1.0"
sources."@tootallnate/once-1.1.2"
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-1.1.1"
sources."agent-base-6.0.2"
sources."agentkeepalive-4.1.4"
sources."aggregate-error-3.1.0"
- sources."ajv-8.2.0"
- sources."ajv-formats-2.0.2"
+ sources."ajv-8.6.0"
+ sources."ajv-formats-2.1.0"
sources."ansi-colors-4.1.1"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.0"
@@ -64745,7 +64565,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-2.0.0"
- sources."inquirer-8.0.0"
+ sources."inquirer-8.1.1"
sources."ip-1.1.5"
sources."is-core-module-2.4.0"
sources."is-docker-2.2.1"
@@ -64770,7 +64590,7 @@ in
sources."log-symbols-4.1.0"
sources."lru-cache-6.0.0"
sources."magic-string-0.25.7"
- sources."make-fetch-happen-8.0.14"
+ sources."make-fetch-happen-9.0.3"
sources."mime-db-1.48.0"
sources."mime-types-2.1.31"
sources."mimic-fn-2.1.0"
@@ -64786,26 +64606,27 @@ in
sources."mkdirp-1.0.4"
sources."ms-2.1.2"
sources."mute-stream-0.0.8"
+ sources."negotiator-0.6.2"
sources."node-gyp-7.1.2"
sources."nopt-5.0.0"
sources."npm-bundled-1.1.2"
sources."npm-install-checks-4.0.0"
sources."npm-normalize-package-bin-1.0.1"
- sources."npm-package-arg-8.1.2"
+ sources."npm-package-arg-8.1.5"
sources."npm-packlist-2.2.2"
sources."npm-pick-manifest-6.1.1"
- sources."npm-registry-fetch-10.1.2"
+ sources."npm-registry-fetch-11.0.0"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."open-8.0.2"
- sources."ora-5.4.0"
+ sources."open-8.2.1"
+ sources."ora-5.4.1"
sources."os-tmpdir-1.0.2"
sources."p-map-4.0.0"
- sources."pacote-11.3.2"
+ sources."pacote-11.3.4"
sources."path-is-absolute-1.0.1"
sources."path-parse-1.0.7"
sources."performance-now-2.1.0"
@@ -65200,7 +65021,7 @@ in
];
})
sources."to-utf8-0.0.1"
- sources."uglify-js-3.13.9"
+ sources."uglify-js-3.13.10"
sources."unc-path-regex-0.1.2"
sources."unique-stream-2.3.1"
sources."universalify-0.1.2"
@@ -65447,7 +65268,7 @@ in
sources."@types/estree-0.0.46"
sources."@types/json-schema-7.0.7"
sources."@types/json5-0.0.29"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.0"
sources."@webassemblyjs/floating-point-hex-parser-1.11.0"
@@ -65466,7 +65287,7 @@ in
sources."@webassemblyjs/wast-printer-1.11.0"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.4.0"
+ sources."acorn-8.4.1"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
sources."ansi-colors-4.1.1"
@@ -65485,7 +65306,7 @@ in
sources."buffer-5.7.1"
sources."buffer-from-1.1.1"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.5.1"
@@ -65505,7 +65326,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.3.755"
+ sources."electron-to-chromium-1.3.759"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
(sources."enhanced-resolve-5.8.2" // {
@@ -65645,7 +65466,7 @@ in
sources."safer-buffer-2.1.2"
sources."schema-utils-2.7.0"
sources."semver-7.3.5"
- sources."serialize-javascript-5.0.1"
+ sources."serialize-javascript-6.0.0"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."shelljs-0.8.4"
@@ -65671,12 +65492,12 @@ in
sources."supports-color-7.2.0"
sources."symbol-observable-3.0.0"
sources."tapable-1.1.3"
- (sources."terser-5.7.0" // {
+ (sources."terser-5.7.1" // {
dependencies = [
sources."commander-2.20.3"
];
})
- (sources."terser-webpack-plugin-5.1.3" // {
+ (sources."terser-webpack-plugin-5.1.4" // {
dependencies = [
sources."schema-utils-3.0.0"
sources."source-map-0.6.1"
@@ -65891,7 +65712,7 @@ in
sources."@types/cors-2.8.10"
sources."@types/ejs-2.7.0"
sources."@types/express-4.17.12"
- sources."@types/express-serve-static-core-4.17.21"
+ sources."@types/express-serve-static-core-4.17.22"
sources."@types/fs-capacitor-2.0.0"
sources."@types/glob-7.1.3"
sources."@types/http-assert-1.5.1"
@@ -65910,7 +65731,7 @@ in
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
sources."@types/minimatch-3.0.4"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/normalize-package-data-2.4.0"
sources."@types/qs-6.9.6"
sources."@types/range-parser-1.2.3"
@@ -66053,7 +65874,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.30001239"
+ sources."caniuse-lite-1.0.30001240"
sources."caseless-0.12.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -66080,7 +65901,6 @@ in
sources."cli-cursor-2.1.0"
sources."cli-spinners-2.6.0"
sources."cli-width-3.0.0"
- sources."clipboard-2.0.8"
sources."cliui-7.0.4"
sources."clone-1.0.4"
sources."clone-deep-4.0.1"
@@ -66166,7 +65986,6 @@ in
sources."define-properties-1.1.3"
sources."define-property-2.0.2"
sources."delayed-stream-1.0.0"
- sources."delegate-3.2.0"
sources."depd-1.1.2"
sources."deprecated-decorator-0.1.6"
sources."destroy-1.0.4"
@@ -66183,7 +66002,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.755"
+ sources."electron-to-chromium-1.3.759"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -66266,7 +66085,7 @@ in
})
sources."find-up-3.0.0"
sources."fkill-6.2.0"
- sources."flow-parser-0.153.0"
+ sources."flow-parser-0.154.0"
sources."for-each-0.3.3"
sources."for-in-1.0.2"
sources."forever-agent-0.6.1"
@@ -66308,7 +66127,6 @@ in
sources."slash-2.0.0"
];
})
- sources."good-listener-1.2.2"
(sources."got-8.3.2" // {
dependencies = [
sources."get-stream-3.0.0"
@@ -66319,7 +66137,7 @@ in
sources."graphql-14.7.0"
sources."graphql-extensions-0.15.0"
sources."graphql-subscriptions-1.2.1"
- (sources."graphql-tag-2.12.4" // {
+ (sources."graphql-tag-2.12.5" // {
dependencies = [
sources."tslib-2.3.0"
];
@@ -66608,7 +66426,7 @@ in
})
sources."posix-character-classes-0.1.1"
sources."prepend-http-2.0.0"
- sources."prismjs-1.23.0"
+ sources."prismjs-1.24.0"
sources."private-0.1.8"
sources."process-exists-3.1.0"
sources."process-nextick-args-2.0.1"
@@ -66680,7 +66498,6 @@ in
sources."sax-1.2.4"
sources."sec-1.0.0"
sources."seek-bzip-1.0.6"
- sources."select-1.1.2"
sources."semver-6.3.0"
(sources."send-0.17.1" // {
dependencies = [
@@ -66834,7 +66651,6 @@ in
sources."through-2.3.8"
sources."through2-2.0.5"
sources."timed-out-4.0.1"
- sources."tiny-emitter-2.1.0"
sources."tmp-0.0.33"
sources."to-buffer-1.1.1"
sources."to-fast-properties-2.0.0"
@@ -66899,7 +66715,7 @@ in
sources."array-union-2.1.0"
sources."braces-3.0.2"
sources."dir-glob-3.0.1"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fill-range-7.0.1"
sources."glob-parent-5.1.2"
sources."globby-11.0.4"
@@ -67196,7 +67012,7 @@ in
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."browserslist-4.16.6"
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -67207,7 +67023,7 @@ in
sources."convert-source-map-1.8.0"
sources."debug-4.3.2"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.3.755"
+ sources."electron-to-chromium-1.3.759"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -67301,7 +67117,7 @@ in
dependencies = [
sources."@types/glob-7.1.3"
sources."@types/minimatch-3.0.4"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -67329,25 +67145,21 @@ in
aws-azure-login = nodeEnv.buildNodePackage {
name = "aws-azure-login";
packageName = "aws-azure-login";
- version = "3.3.0";
+ version = "3.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-azure-login/-/aws-azure-login-3.3.0.tgz";
- sha512 = "gwcHKwovQOpVY4F87M46ppqop2/KXgvJGFqZDZvtGALvFihP1olhna5lnJk/Gbl5topHZj8oXefNoWhj/L19aA==";
+ url = "https://registry.npmjs.org/aws-azure-login/-/aws-azure-login-3.4.0.tgz";
+ sha512 = "7PXkWdq+3NL7hUmLOV1yoO6OnVNcT54UVtC6WT1gE9C9dYGG0bEL9nsZz8qiV75hvX1E6fABjw1/Q7KaXgvHfg==";
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/yauzl-2.9.1"
sources."agent-base-6.0.2"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
- (sources."ast-types-0.13.4" // {
- dependencies = [
- sources."tslib-2.3.0"
- ];
- })
- (sources."aws-sdk-2.932.0" // {
+ sources."ast-types-0.13.4"
+ (sources."aws-sdk-2.935.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -67357,8 +67169,6 @@ in
(sources."bl-4.1.0" // {
dependencies = [
sources."buffer-5.7.1"
- sources."readable-stream-3.6.0"
- sources."string_decoder-1.3.0"
];
})
sources."bluebird-3.7.2"
@@ -67369,31 +67179,34 @@ in
sources."bytes-3.1.0"
sources."chalk-4.1.1"
sources."chardet-0.7.0"
- sources."cheerio-1.0.0-rc.5"
- sources."cheerio-select-tmp-0.1.1"
+ sources."cheerio-1.0.0-rc.10"
+ sources."cheerio-select-1.5.0"
sources."chownr-1.1.4"
sources."cli-cursor-3.1.0"
+ sources."cli-spinners-2.6.0"
sources."cli-width-3.0.0"
+ sources."clone-1.0.4"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."commander-6.2.1"
+ sources."commander-8.0.0"
sources."concat-map-0.0.1"
sources."core-util-is-1.0.2"
- sources."css-select-3.1.2"
- sources."css-what-4.0.0"
+ sources."css-select-4.1.3"
+ sources."css-what-5.0.1"
sources."data-uri-to-buffer-3.0.1"
sources."debug-4.3.2"
sources."deep-is-0.1.3"
+ sources."defaults-1.0.3"
sources."degenerator-2.2.0"
sources."depd-1.1.2"
- sources."devtools-protocol-0.0.854822"
- sources."dom-serializer-1.2.0"
+ sources."devtools-protocol-0.0.883894"
+ sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
sources."domhandler-4.2.0"
sources."domutils-2.7.0"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
- sources."entities-2.1.0"
+ sources."entities-2.2.0"
sources."escape-string-regexp-1.0.5"
sources."escodegen-1.14.3"
sources."esprima-4.0.1"
@@ -67410,7 +67223,13 @@ in
sources."fs-constants-1.0.0"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
- sources."ftp-0.3.10"
+ (sources."ftp-0.3.10" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
sources."get-stream-5.2.0"
sources."get-uri-3.0.2"
sources."glob-7.1.7"
@@ -67425,20 +67244,23 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-2.0.0"
- sources."inquirer-7.3.3"
+ sources."inquirer-8.1.1"
sources."ip-1.1.5"
sources."is-fullwidth-code-point-3.0.0"
+ sources."is-interactive-1.0.0"
+ sources."is-unicode-supported-0.1.0"
sources."isarray-1.0.0"
sources."jmespath-0.15.0"
sources."jsonfile-4.0.0"
sources."levn-0.3.0"
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
+ sources."log-symbols-4.1.0"
sources."lru-cache-5.1.1"
sources."mimic-fn-2.1.0"
sources."minimatch-3.0.4"
+ sources."minimist-1.2.5"
sources."mkdirp-1.0.4"
- sources."mkdirp-classic-0.5.3"
sources."ms-2.1.2"
sources."mute-stream-0.0.8"
sources."netmask-2.0.2"
@@ -67447,6 +67269,7 @@ in
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."optionator-0.8.3"
+ sources."ora-5.4.1"
sources."os-tmpdir-1.0.2"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
@@ -67460,23 +67283,27 @@ in
sources."pend-1.2.0"
sources."pkg-dir-4.2.0"
sources."prelude-ls-1.1.2"
- sources."progress-2.0.3"
+ sources."progress-2.0.1"
sources."proxy-agent-4.0.1"
sources."proxy-from-env-1.1.0"
sources."pump-3.0.0"
sources."punycode-1.3.2"
- sources."puppeteer-8.0.0"
- sources."querystring-0.2.0"
- sources."raw-body-2.4.1"
- (sources."readable-stream-1.1.14" // {
+ (sources."puppeteer-10.0.0" // {
dependencies = [
- sources."isarray-0.0.1"
+ sources."debug-4.3.1"
];
})
+ sources."querystring-0.2.0"
+ sources."raw-body-2.4.1"
+ sources."readable-stream-3.6.0"
sources."restore-cursor-3.1.0"
sources."rimraf-3.0.2"
sources."run-async-2.4.1"
- sources."rxjs-6.6.7"
+ (sources."rxjs-6.6.7" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."sax-1.2.1"
@@ -67488,23 +67315,22 @@ in
sources."source-map-0.6.1"
sources."statuses-1.5.0"
sources."string-width-4.2.2"
- sources."string_decoder-0.10.31"
+ sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.0"
sources."supports-color-7.2.0"
- sources."tar-fs-2.1.1"
- (sources."tar-stream-2.2.0" // {
+ (sources."tar-fs-2.0.0" // {
dependencies = [
- sources."readable-stream-3.6.0"
- sources."string_decoder-1.3.0"
+ sources."mkdirp-0.5.5"
];
})
+ sources."tar-stream-2.2.0"
sources."through-2.3.8"
sources."tmp-0.0.33"
sources."toidentifier-1.0.0"
- sources."tslib-1.14.1"
+ sources."tslib-2.3.0"
sources."type-check-0.3.2"
sources."type-fest-0.21.3"
- (sources."unbzip2-stream-1.4.3" // {
+ (sources."unbzip2-stream-1.3.3" // {
dependencies = [
sources."buffer-5.7.1"
];
@@ -67514,9 +67340,10 @@ in
sources."url-0.10.3"
sources."util-deprecate-1.0.2"
sources."uuid-8.3.2"
+ sources."wcwidth-1.0.1"
sources."word-wrap-1.2.3"
sources."wrappy-1.0.2"
- sources."ws-7.5.0"
+ sources."ws-7.4.6"
sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.7"
sources."xregexp-2.0.0"
@@ -67536,10 +67363,10 @@ in
balanceofsatoshis = nodeEnv.buildNodePackage {
name = "balanceofsatoshis";
packageName = "balanceofsatoshis";
- version = "10.1.0";
+ version = "10.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.1.0.tgz";
- sha512 = "ZKHOfZkyXhevLUbQMijz6PEGBZuBdeUS6oqdqrmeYlOB2xZPC/KxCPmKTD7igbq7eD2E/XixtzpHub8bQnxRIg==";
+ url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.4.1.tgz";
+ sha512 = "IuMSykvEN1aMW0E+BvNo1CoTfcO1+EPB59D8NVKkNuoafb+dZbIvk1f9T6UfPEwzlOHdXLOsjmQ5AkBKumwo/A==";
};
dependencies = [
sources."@alexbosworth/html2unicode-1.1.5"
@@ -67552,7 +67379,7 @@ in
sources."@cto.af/textdecoder-0.0.0"
(sources."@grpc/grpc-js-1.3.2" // {
dependencies = [
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
];
})
sources."@grpc/proto-loader-0.6.2"
@@ -67575,7 +67402,7 @@ in
sources."@types/caseless-0.12.2"
sources."@types/connect-3.4.34"
sources."@types/express-4.17.12"
- sources."@types/express-serve-static-core-4.17.21"
+ sources."@types/express-serve-static-core-4.17.22"
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
sources."@types/node-10.12.18"
@@ -67964,13 +67791,7 @@ in
sources."psbt-1.1.8"
];
})
- (sources."ln-telegram-3.2.5" // {
- dependencies = [
- sources."bn.js-5.2.0"
- sources."goldengate-10.0.6"
- sources."ln-service-51.8.2"
- ];
- })
+ sources."ln-telegram-3.2.6"
sources."lodash-4.17.21"
sources."lodash.camelcase-4.3.0"
sources."lodash.clonedeep-4.5.0"
@@ -67991,6 +67812,7 @@ in
sources."long-4.0.0"
sources."lowercase-keys-1.0.1"
sources."lru-cache-6.0.0"
+ sources."luxon-1.27.0"
(sources."macaroon-3.0.4" // {
dependencies = [
sources."tweetnacl-1.0.3"
@@ -68070,7 +67892,7 @@ in
sources."process-nextick-args-2.0.1"
(sources."protobufjs-6.11.2" // {
dependencies = [
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
];
})
sources."proxy-addr-2.0.7"
@@ -68904,7 +68726,7 @@ in
sources."map-obj-1.0.1"
];
})
- sources."decimal.js-10.3.0"
+ sources."decimal.js-10.3.1"
sources."delayed-stream-1.0.0"
sources."denque-1.5.0"
sources."depd-1.1.2"
@@ -69247,7 +69069,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."addr-to-ip-port-1.5.1"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -69309,7 +69131,7 @@ in
sources."co-3.1.0"
sources."codepage-1.4.0"
sources."combined-stream-1.0.8"
- sources."commander-7.2.0"
+ sources."commander-8.0.0"
sources."compact2string-1.4.1"
sources."concat-map-0.0.1"
(sources."concat-stream-2.0.0" // {
@@ -69681,7 +69503,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.29.3"
- sources."constructs-3.3.87"
+ sources."constructs-3.3.92"
sources."date-format-3.0.0"
sources."debug-4.3.2"
sources."decamelize-5.0.0"
@@ -69754,13 +69576,13 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.290" // {
+ (sources."jsii-srcmak-0.1.295" // {
dependencies = [
sources."fs-extra-9.1.0"
];
})
sources."json-schema-0.3.0"
- sources."json2jsii-0.1.257"
+ sources."json2jsii-0.1.262"
sources."jsonfile-6.1.0"
sources."jsonschema-1.4.0"
sources."locate-path-5.0.0"
@@ -69796,7 +69618,7 @@ in
sources."snake-case-3.0.4"
sources."sort-json-2.0.0"
sources."spdx-license-list-6.4.0"
- sources."sscaff-1.2.10"
+ sources."sscaff-1.2.15"
(sources."streamroller-2.2.4" // {
dependencies = [
sources."date-format-2.1.0"
@@ -69911,7 +69733,7 @@ in
sources."commonmark-0.29.3"
sources."compress-commons-4.1.1"
sources."concat-map-0.0.1"
- sources."constructs-3.3.87"
+ sources."constructs-3.3.92"
sources."convert-to-spaces-1.0.2"
sources."core-util-is-1.0.2"
sources."crc-32-1.2.0"
@@ -70030,7 +69852,7 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.290" // {
+ (sources."jsii-srcmak-0.1.295" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -70113,7 +69935,7 @@ in
sources."slice-ansi-3.0.0"
sources."sort-json-2.0.0"
sources."spdx-license-list-6.4.0"
- sources."sscaff-1.2.10"
+ sources."sscaff-1.2.15"
sources."stack-utils-2.0.3"
sources."stream-buffers-3.0.2"
(sources."streamroller-2.2.4" // {
@@ -70191,7 +70013,7 @@ in
dependencies = [
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."clean-css-5.1.2"
+ sources."clean-css-5.1.3"
sources."commander-7.2.0"
sources."concat-map-0.0.1"
sources."fs.realpath-1.0.0"
@@ -70926,10 +70748,10 @@ in
coc-prettier = nodeEnv.buildNodePackage {
name = "coc-prettier";
packageName = "coc-prettier";
- version = "1.1.23";
+ version = "1.1.24";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-prettier/-/coc-prettier-1.1.23.tgz";
- sha512 = "9tjbN4O13DXlrNaZWtXozthLSW0LE+YjmBZf4LDdrpbfmzqLDvncDtOtqcRCd9LStoLPY7pv2o4Tucb2IrHjMw==";
+ url = "https://registry.npmjs.org/coc-prettier/-/coc-prettier-1.1.24.tgz";
+ sha512 = "nVsvnTFI02RBEs+O7geMsVdhoDQDW/b7GQN9GJRiLbyPS7LTArKf1G6dkX6gQgLBR5lOYQWiuw54iIyMgqc29Q==";
};
dependencies = [
sources."@babel/code-frame-7.12.11"
@@ -71010,7 +70832,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
sources."capture-stack-trace-1.0.1"
sources."ccount-1.1.0"
(sources."chalk-4.1.1" // {
@@ -71108,7 +70930,7 @@ in
sources."domutils-1.7.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.3.755"
+ sources."electron-to-chromium-1.3.759"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enquirer-2.3.6"
@@ -71564,7 +71386,7 @@ in
sources."prelude-ls-1.2.1"
sources."prepend-http-1.0.4"
sources."preserve-0.2.0"
- sources."prettier-2.3.1"
+ sources."prettier-2.3.2"
sources."prettier-eslint-12.0.0"
(sources."prettier-stylelint-0.4.2" // {
dependencies = [
@@ -71907,13 +71729,13 @@ in
coc-pyright = nodeEnv.buildNodePackage {
name = "coc-pyright";
packageName = "coc-pyright";
- version = "1.1.150";
+ version = "1.1.152";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.150.tgz";
- sha512 = "+dWSYM9AfBsYeOclQNmuHcw9aKWwL6XICmPm64N9peWE+oXqMOAShaH5xO+JV+r88R0wTN/LJaEwGHlkxJD2XA==";
+ url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.152.tgz";
+ sha512 = "drJV17TbLxAqfl1oXfab66CW51TxDbbppmP9yM4+NnpDRn/ESYwY0Uf9wp2EzfkfLhoavUTbrB9o/z14FuuScw==";
};
dependencies = [
- sources."pyright-1.1.151"
+ sources."pyright-1.1.153"
];
buildInputs = globalBuildInputs;
meta = {
@@ -71987,10 +71809,10 @@ in
coc-rust-analyzer = nodeEnv.buildNodePackage {
name = "coc-rust-analyzer";
packageName = "coc-rust-analyzer";
- version = "0.46.2";
+ version = "0.46.3";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.46.2.tgz";
- sha512 = "uEFyQAaWQ60qY2q74jXn8Wk73QMekHVSRKuBP178uVV/xAhyd24psr+pNrdZxXVZGBRwuRLgHFd+N5YhikOBMw==";
+ url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.46.3.tgz";
+ sha512 = "eaHTqrFLwtTgjOMSiVIc3Z4I575LZ0xzY6rvrMEKmxWiRHB8c26LzrhKN8dbK+An6XxryUceijBMrfz4dsiOVw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -72119,7 +71941,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
(sources."chalk-4.1.1" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -72157,7 +71979,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.755"
+ sources."electron-to-chromium-1.3.759"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -72167,7 +71989,7 @@ in
sources."extend-3.0.2"
sources."fast-deep-equal-3.1.3"
sources."fast-diff-1.2.0"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fastest-levenshtein-1.0.12"
sources."fastq-1.11.0"
sources."file-entry-cache-6.0.1"
@@ -72601,7 +72423,7 @@ in
sources."enquirer-2.3.6"
sources."escape-string-regexp-4.0.0"
sources."eslint-7.29.0"
- sources."eslint-plugin-vue-7.11.1"
+ sources."eslint-plugin-vue-7.12.1"
sources."eslint-scope-5.1.1"
(sources."eslint-utils-2.1.0" // {
dependencies = [
@@ -72673,7 +72495,7 @@ in
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."prelude-ls-1.2.1"
- sources."prettier-2.3.1"
+ sources."prettier-2.3.2"
sources."progress-2.0.3"
sources."punycode-2.1.1"
sources."regexpp-3.2.0"
@@ -73191,7 +73013,7 @@ in
})
sources."extsprintf-1.4.0"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fast-json-parse-1.0.3"
sources."fast-json-stable-stringify-2.1.0"
sources."fastq-1.11.0"
@@ -73619,7 +73441,7 @@ in
sources."@types/glob-7.1.3"
sources."@types/minimatch-3.0.4"
sources."@types/minimist-1.2.1"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/normalize-package-data-2.4.0"
sources."aggregate-error-3.1.0"
sources."ansi-styles-3.2.1"
@@ -73990,7 +73812,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -74985,7 +74807,7 @@ in
sources."crypto-random-string-2.0.0"
sources."del-6.0.0"
sources."dir-glob-3.0.1"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fastq-1.11.0"
sources."fill-range-7.0.1"
sources."find-up-4.1.0"
@@ -75304,7 +75126,7 @@ in
sources."@types/http-cache-semantics-4.0.0"
sources."@types/keyv-3.1.1"
sources."@types/minimatch-3.0.4"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/responselike-1.0.0"
sources."@types/yauzl-2.9.1"
sources."abbrev-1.1.1"
@@ -75936,7 +75758,7 @@ in
sources."@types/http-cache-semantics-4.0.0"
sources."@types/keyv-3.1.1"
sources."@types/minimist-1.2.1"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/normalize-package-data-2.4.0"
sources."@types/responselike-1.0.0"
sources."@types/yoga-layout-1.9.2"
@@ -75971,7 +75793,7 @@ in
sources."quick-lru-4.0.1"
];
})
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -76008,7 +75830,7 @@ in
})
sources."defer-to-connect-2.0.1"
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.3.755"
+ sources."electron-to-chromium-1.3.759"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -76283,7 +76105,7 @@ in
sources."normalize-path-2.1.1"
];
})
- sources."@microsoft/load-themed-styles-1.10.185"
+ sources."@microsoft/load-themed-styles-1.10.186"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.7"
@@ -76301,7 +76123,7 @@ in
sources."@types/connect-3.4.34"
sources."@types/engine.io-3.1.5"
sources."@types/express-4.17.8"
- sources."@types/express-serve-static-core-4.17.21"
+ sources."@types/express-serve-static-core-4.17.22"
sources."@types/fancy-log-1.3.0"
sources."@types/glob-7.1.3"
sources."@types/hls.js-0.13.1"
@@ -76816,7 +76638,7 @@ in
sources."extsprintf-1.3.0"
sources."fancy-log-1.3.3"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-1.1.4"
sources."fastq-1.11.0"
@@ -77722,7 +77544,7 @@ in
sources."yallist-3.1.1"
];
})
- (sources."terser-5.7.0" // {
+ (sources."terser-5.7.1" // {
dependencies = [
sources."source-map-0.7.3"
];
@@ -78292,10 +78114,10 @@ in
expo-cli = nodeEnv.buildNodePackage {
name = "expo-cli";
packageName = "expo-cli";
- version = "4.6.0";
+ version = "4.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.6.0.tgz";
- sha512 = "hvsfWKLsPG8oUMTEAVcGxp3JR/28H2KkZP2TW6iXqCv4EXwOYydnr1WjnYLZgN+wDRtoyGhYn7GFra5tXZJhrA==";
+ url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.7.2.tgz";
+ sha512 = "svwjCPWCk7KMwGBxYIwSm65ypkTIBvjdfR/v7El3365krTPY6sf5to6hY3+NKWUA9m5IZoUn3LUfpTIOyZIuUQ==";
};
dependencies = [
sources."@babel/code-frame-7.14.5"
@@ -78431,16 +78253,10 @@ in
sources."@babel/types-7.14.5"
sources."@expo/apple-utils-0.0.0-alpha.20"
sources."@expo/bunyan-4.0.0"
- sources."@expo/config-4.0.4"
- sources."@expo/config-plugins-2.0.4"
+ sources."@expo/config-5.0.2"
+ sources."@expo/config-plugins-3.0.2"
sources."@expo/config-types-41.0.0"
- (sources."@expo/configure-splash-screen-0.4.0" // {
- dependencies = [
- sources."commander-5.1.0"
- sources."pngjs-5.0.0"
- ];
- })
- (sources."@expo/dev-server-0.1.74" // {
+ (sources."@expo/dev-server-0.1.77" // {
dependencies = [
sources."body-parser-1.19.0"
sources."bytes-3.1.0"
@@ -78457,7 +78273,7 @@ in
sources."temp-dir-2.0.0"
];
})
- sources."@expo/dev-tools-0.13.104"
+ sources."@expo/dev-tools-0.13.107"
(sources."@expo/devcert-1.0.0" // {
dependencies = [
sources."debug-3.2.7"
@@ -78477,7 +78293,7 @@ in
sources."json5-1.0.1"
];
})
- sources."@expo/metro-config-0.1.74"
+ sources."@expo/metro-config-0.1.77"
sources."@expo/osascript-2.0.28"
(sources."@expo/package-manager-0.0.43" // {
dependencies = [
@@ -78491,7 +78307,7 @@ in
sources."xmlbuilder-14.0.0"
];
})
- sources."@expo/prebuild-config-1.0.5"
+ sources."@expo/prebuild-config-2.0.2"
sources."@expo/results-1.0.0"
(sources."@expo/schemer-1.3.29" // {
dependencies = [
@@ -78502,13 +78318,13 @@ in
})
sources."@expo/simple-spinner-1.0.2"
sources."@expo/spawn-async-1.5.0"
- (sources."@expo/webpack-config-0.12.78" // {
+ (sources."@expo/webpack-config-0.12.81" // {
dependencies = [
sources."@babel/runtime-7.9.0"
sources."react-refresh-0.8.3"
];
})
- (sources."@expo/xcpretty-3.1.3" // {
+ (sources."@expo/xcpretty-3.1.4" // {
dependencies = [
sources."@babel/code-frame-7.10.4"
sources."js-yaml-4.1.0"
@@ -78846,7 +78662,7 @@ in
})
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
sources."caseless-0.12.0"
(sources."chalk-4.1.1" // {
dependencies = [
@@ -79114,7 +78930,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.755"
+ sources."electron-to-chromium-1.3.759"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -79141,11 +78957,7 @@ in
sources."eol-0.9.1"
sources."err-code-2.0.3"
sources."errno-0.1.8"
- (sources."error-ex-1.3.2" // {
- dependencies = [
- sources."is-arrayish-0.2.1"
- ];
- })
+ sources."error-ex-1.3.2"
sources."error-stack-parser-2.0.6"
sources."errorhandler-1.5.1"
sources."es-abstract-1.18.3"
@@ -79195,7 +79007,7 @@ in
sources."ms-2.0.0"
];
})
- (sources."expo-pwa-0.0.84" // {
+ (sources."expo-pwa-0.0.87" // {
dependencies = [
sources."commander-2.20.0"
];
@@ -79220,7 +79032,7 @@ in
})
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fast-json-stable-stringify-2.1.0"
sources."fastq-1.11.0"
sources."faye-websocket-0.10.0"
@@ -79423,7 +79235,7 @@ in
sources."is-absolute-url-2.1.0"
sources."is-accessor-descriptor-1.0.0"
sources."is-arguments-1.1.0"
- sources."is-arrayish-0.3.2"
+ sources."is-arrayish-0.2.1"
sources."is-bigint-1.0.2"
sources."is-binary-path-2.1.0"
sources."is-boolean-object-1.1.1"
@@ -80237,7 +80049,11 @@ in
sources."shell-quote-1.7.2"
sources."signal-exit-3.0.3"
sources."simple-plist-1.1.1"
- sources."simple-swizzle-0.2.2"
+ (sources."simple-swizzle-0.2.2" // {
+ dependencies = [
+ sources."is-arrayish-0.3.2"
+ ];
+ })
sources."sisteransi-1.0.5"
sources."slash-3.0.0"
(sources."slugid-1.1.0" // {
@@ -80747,7 +80563,7 @@ in
sources."uuid-7.0.3"
];
})
- (sources."xdl-59.0.44" // {
+ (sources."xdl-59.0.47" // {
dependencies = [
sources."chownr-1.1.4"
sources."fs-minipass-1.2.7"
@@ -80760,7 +80576,6 @@ 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" // {
dependencies = [
@@ -81242,7 +81057,7 @@ in
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
sources."fast-diff-1.2.0"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
sources."fastq-1.11.0"
@@ -81442,7 +81257,7 @@ in
sources."posix-character-classes-0.1.1"
sources."prelude-ls-1.1.2"
sources."prepend-http-2.0.0"
- sources."prettier-2.3.1"
+ sources."prettier-2.3.2"
sources."prettier-linter-helpers-1.0.0"
sources."process-nextick-args-2.0.1"
sources."psl-1.8.0"
@@ -81622,21 +81437,21 @@ in
sources."@google-cloud/precise-date-2.0.3"
sources."@google-cloud/projectify-2.1.0"
sources."@google-cloud/promisify-2.0.3"
- (sources."@google-cloud/pubsub-2.14.0" // {
+ (sources."@google-cloud/pubsub-2.15.1" // {
dependencies = [
sources."google-auth-library-7.1.2"
];
})
- sources."@grpc/grpc-js-1.3.3"
- sources."@grpc/proto-loader-0.6.2"
+ sources."@grpc/grpc-js-1.3.4"
+ sources."@grpc/proto-loader-0.6.3"
sources."@jsdevtools/ono-7.1.3"
(sources."@npmcli/move-file-1.1.2" // {
dependencies = [
sources."mkdirp-1.0.4"
];
})
- sources."@opentelemetry/api-0.20.0"
- sources."@opentelemetry/semantic-conventions-0.20.0"
+ sources."@opentelemetry/api-1.0.1"
+ sources."@opentelemetry/semantic-conventions-0.22.0"
sources."@protobufjs/aspromise-1.1.2"
sources."@protobufjs/base64-1.1.2"
sources."@protobufjs/codegen-2.0.4"
@@ -81656,7 +81471,7 @@ in
sources."@types/json-schema-7.0.7"
sources."@types/long-4.0.1"
sources."@types/minimatch-3.0.4"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."JSONStream-1.3.5"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -82008,7 +81823,7 @@ in
sources."glob-slasher-1.0.1"
sources."global-dirs-2.1.0"
sources."google-auth-library-6.1.6"
- (sources."google-gax-2.16.0" // {
+ (sources."google-gax-2.17.0" // {
dependencies = [
sources."google-auth-library-7.1.2"
];
@@ -82308,7 +82123,7 @@ in
sources."responselike-1.0.2"
sources."restore-cursor-2.0.0"
sources."retry-0.12.0"
- sources."retry-request-4.1.3"
+ sources."retry-request-4.2.0"
sources."rimraf-3.0.2"
(sources."router-1.3.5" // {
dependencies = [
@@ -82765,7 +82580,7 @@ in
dependencies = [
sources."@types/atob-2.1.2"
sources."@types/inquirer-6.5.0"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/through-0.0.30"
sources."ajv-6.12.6"
sources."ansi-escapes-4.3.2"
@@ -83551,7 +83366,7 @@ in
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-patch-0.0.30"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/node-fetch-2.5.10"
sources."@types/readable-stream-2.3.10"
sources."@types/unist-2.0.3"
@@ -83559,7 +83374,7 @@ in
sources."@types/yargs-parser-20.2.0"
sources."@types/yoga-layout-1.9.2"
sources."accepts-1.3.7"
- sources."acorn-8.4.0"
+ sources."acorn-8.4.1"
sources."acorn-jsx-5.3.1"
sources."address-1.1.2"
(sources."ansi-align-3.0.0" // {
@@ -83613,13 +83428,12 @@ in
dependencies = [
sources."get-stream-5.2.0"
sources."lowercase-keys-2.0.0"
- sources."normalize-url-4.5.1"
];
})
sources."call-bind-1.0.2"
sources."camel-case-4.1.2"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
sources."ccount-1.1.0"
(sources."chalk-4.1.1" // {
dependencies = [
@@ -83715,7 +83529,7 @@ in
sources."dotenv-8.6.0"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.755"
+ sources."electron-to-chromium-1.3.759"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -83964,7 +83778,7 @@ in
sources."node-object-hash-2.3.7"
sources."node-releases-1.1.73"
sources."normalize-path-3.0.0"
- sources."normalize-url-6.1.0"
+ sources."normalize-url-4.5.0"
sources."npm-run-path-2.0.2"
sources."nth-check-2.0.0"
sources."object-assign-4.1.1"
@@ -83988,7 +83802,7 @@ in
})
sources."parse-entities-2.0.0"
sources."parse-path-4.0.3"
- sources."parse-url-5.0.3"
+ sources."parse-url-5.0.6"
sources."parseurl-1.3.3"
sources."pascal-case-3.1.2"
sources."path-exists-4.0.0"
@@ -84000,7 +83814,7 @@ in
sources."picomatch-2.3.0"
sources."pkg-dir-4.2.0"
sources."prepend-http-2.0.0"
- sources."prettier-2.3.1"
+ sources."prettier-2.3.2"
sources."pretty-error-2.1.2"
(sources."pretty-format-25.5.0" // {
dependencies = [
@@ -84195,7 +84009,7 @@ in
sources."write-file-atomic-3.0.3"
sources."ws-7.5.0"
sources."xdg-basedir-4.0.0"
- sources."xstate-4.20.0"
+ sources."xstate-4.20.1"
sources."xtend-4.0.2"
sources."y18n-4.0.3"
sources."yallist-4.0.0"
@@ -84942,7 +84756,7 @@ in
sources."@nodelib/fs.walk-1.2.7"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -85055,7 +84869,7 @@ in
sources."extract-files-9.0.0"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-safe-stringify-2.0.7"
sources."fastq-1.11.0"
@@ -85660,7 +85474,7 @@ in
sources."lodash-4.17.21"
sources."lodash.toarray-4.4.0"
sources."map-canvas-0.1.5"
- sources."marked-2.1.2"
+ sources."marked-2.1.3"
(sources."marked-terminal-4.1.1" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -86583,7 +86397,7 @@ in
sources."param-case-2.1.1"
sources."relateurl-0.2.7"
sources."source-map-0.6.1"
- sources."uglify-js-3.13.9"
+ sources."uglify-js-3.13.10"
sources."upper-case-1.1.3"
];
buildInputs = globalBuildInputs;
@@ -87248,21 +87062,18 @@ in
sources."arch-2.2.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."clipboard-2.0.8"
sources."clipboardy-2.3.0"
sources."clone-1.0.4"
sources."concat-map-0.0.1"
sources."cross-spawn-6.0.5"
sources."decimal.js-7.5.1"
sources."defaults-1.0.3"
- sources."delegate-3.2.0"
sources."end-of-stream-1.4.4"
sources."execa-1.0.0"
sources."fs-extra-0.24.0"
sources."fs.realpath-1.0.0"
sources."get-stream-4.1.0"
sources."glob-7.1.7"
- sources."good-listener-1.2.2"
sources."graceful-fs-4.2.6"
sources."historic-readline-1.0.8"
sources."inflight-1.0.6"
@@ -87284,16 +87095,14 @@ in
sources."p-finally-1.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."prismjs-1.23.0"
+ sources."prismjs-1.24.0"
sources."pump-3.0.0"
sources."rimraf-2.7.1"
- sources."select-1.1.2"
sources."semver-5.7.1"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."signal-exit-3.0.3"
sources."strip-eof-1.0.0"
- sources."tiny-emitter-2.1.0"
sources."wcwidth-1.0.1"
sources."which-1.3.1"
sources."wrappy-1.0.2"
@@ -87691,7 +87500,7 @@ in
sources."@ot-builder/trace-1.0.9"
sources."@ot-builder/var-store-1.0.9"
sources."@ot-builder/variance-1.0.9"
- sources."@unicode/unicode-13.0.0-1.0.6"
+ sources."@unicode/unicode-13.0.0-1.1.0"
sources."aglfn-1.0.2"
sources."amdefine-1.0.1"
sources."ansi-regex-5.0.0"
@@ -88002,17 +87811,17 @@ in
joplin = nodeEnv.buildNodePackage {
name = "joplin";
packageName = "joplin";
- version = "2.0.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/joplin/-/joplin-2.0.1.tgz";
- sha512 = "NFjW9O1SZp6zN8RUjQA8DGTuoAljN1zKNUpDcEX7uY3hG/V4nqZtZVF0wzZ3EN/UWkx/lIP2FohRv4cUtdrO+A==";
+ url = "https://registry.npmjs.org/joplin/-/joplin-2.1.2.tgz";
+ sha512 = "8xDS/I9zMH0wHuZGZ0xENBn/Ml4gHk2WLMDfShN7L2VNRK/9xowunf2c/fAwI0eNXn/aw2QcMrcgqj37uZ0gbw==";
};
dependencies = [
sources."@braintree/sanitize-url-3.1.0"
sources."@cronvel/get-pixels-3.4.0"
- sources."@joplin/fork-htmlparser2-4.1.27"
- sources."@joplin/fork-sax-1.2.31"
- (sources."@joplin/lib-2.0.3" // {
+ sources."@joplin/fork-htmlparser2-4.1.28"
+ sources."@joplin/fork-sax-1.2.32"
+ (sources."@joplin/lib-2.1.1" // {
dependencies = [
(sources."@joplin/renderer-1.8.2" // {
dependencies = [
@@ -88022,18 +87831,18 @@ in
})
];
})
- (sources."@joplin/renderer-2.0.3" // {
+ (sources."@joplin/renderer-2.1.1" // {
dependencies = [
sources."fs-extra-8.1.0"
sources."uslug-git+https://github.com/laurent22/uslug.git#emoji-support"
];
})
- (sources."@joplin/turndown-4.0.49" // {
+ (sources."@joplin/turndown-4.0.50" // {
dependencies = [
sources."css-2.2.4"
];
})
- sources."@joplin/turndown-plugin-gfm-1.0.31"
+ sources."@joplin/turndown-plugin-gfm-1.0.32"
sources."abab-2.0.5"
sources."abbrev-1.1.1"
sources."acorn-7.4.1"
@@ -88073,7 +87882,7 @@ in
sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.932.0" // {
+ (sources."aws-sdk-2.935.0" // {
dependencies = [
sources."sax-1.2.1"
sources."uuid-3.3.2"
@@ -88100,7 +87909,6 @@ in
sources."braces-3.0.2"
sources."browser-process-hrtime-1.0.0"
sources."buffer-4.9.2"
- sources."buffer-from-1.1.1"
sources."builtin-modules-3.2.0"
sources."camel-case-3.0.0"
sources."camelcase-4.1.0"
@@ -88133,7 +87941,6 @@ in
sources."source-map-resolve-0.6.0"
];
})
- sources."css-b64-images-0.2.5"
sources."cssom-0.4.4"
(sources."cssstyle-2.3.0" // {
dependencies = [
@@ -88181,7 +87988,7 @@ in
sources."dagre-d3-0.6.4"
sources."dashdash-1.14.1"
sources."data-urls-1.1.0"
- sources."debug-4.3.2"
+ sources."debug-3.2.7"
sources."decode-uri-component-0.2.0"
sources."decompress-response-4.2.1"
sources."deep-extend-0.6.0"
@@ -88280,11 +88087,6 @@ in
(sources."html-minifier-3.5.21" // {
dependencies = [
sources."commander-2.17.1"
- (sources."uglify-js-3.4.10" // {
- dependencies = [
- sources."commander-2.19.0"
- ];
- })
];
})
sources."http-errors-1.8.0"
@@ -88417,16 +88219,10 @@ in
sources."md5-2.3.0"
sources."md5-file-4.0.0"
sources."mdurl-1.0.1"
- sources."mermaid-8.10.2"
+ sources."mermaid-8.11.0"
sources."mime-db-1.48.0"
sources."mime-types-2.1.31"
sources."mimic-response-2.1.0"
- (sources."minify-4.1.3" // {
- dependencies = [
- sources."commander-2.20.3"
- sources."html-minifier-4.0.0"
- ];
- })
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
(sources."minipass-2.9.0" // {
@@ -88439,18 +88235,14 @@ in
sources."mkdirp-classic-0.5.3"
sources."moment-2.29.1"
sources."moment-mini-2.24.0"
- sources."ms-2.1.2"
+ sources."ms-2.1.3"
sources."multiparty-4.2.2"
sources."mustache-4.2.0"
sources."nanoid-3.1.23"
sources."napi-build-utils-1.0.2"
sources."ndarray-1.0.19"
sources."ndarray-pack-1.2.1"
- (sources."needle-2.6.0" // {
- dependencies = [
- sources."debug-3.2.7"
- ];
- })
+ sources."needle-2.6.0"
sources."nextgen-events-1.5.2"
sources."no-case-2.3.2"
(sources."node-abi-2.30.0" // {
@@ -88596,7 +88388,6 @@ in
})
sources."source-map-0.6.1"
sources."source-map-resolve-0.5.3"
- sources."source-map-support-0.5.19"
sources."source-map-url-0.4.1"
sources."split-skip-0.0.2"
sources."sprintf-js-1.1.2"
@@ -88653,11 +88444,6 @@ in
];
})
sources."terminal-kit-1.49.3"
- (sources."terser-4.8.0" // {
- dependencies = [
- sources."commander-2.20.3"
- ];
- })
(sources."tkwidgets-0.5.26" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -88674,14 +88460,16 @@ in
sources."tough-cookie-3.0.1"
sources."tr46-1.0.1"
sources."tree-kit-0.6.2"
- sources."try-catch-2.0.1"
- sources."try-to-catch-1.1.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
sources."typical-2.6.1"
sources."uc.micro-1.0.6"
- sources."uglify-js-3.13.9"
+ (sources."uglify-js-3.4.10" // {
+ dependencies = [
+ sources."commander-2.19.0"
+ ];
+ })
sources."uglifycss-0.0.29"
sources."uid-safe-2.1.5"
sources."unc-path-regex-0.1.2"
@@ -88824,7 +88612,7 @@ in
sources."lodash-4.17.21"
sources."markdown-it-10.0.0"
sources."markdown-it-anchor-5.3.0"
- sources."marked-2.1.2"
+ sources."marked-2.1.3"
sources."mdurl-1.0.1"
sources."mkdirp-1.0.4"
sources."requizzle-0.2.3"
@@ -89385,7 +89173,7 @@ in
sources."external-editor-3.1.0"
sources."extract-stack-2.0.0"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fast-json-stable-stringify-2.1.0"
sources."fastq-1.11.0"
(sources."figures-3.2.0" // {
@@ -89556,7 +89344,7 @@ in
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.0"
sources."@types/cors-2.8.10"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
@@ -89887,7 +89675,7 @@ in
sources."path-parse-1.0.7"
sources."path-platform-0.11.15"
sources."pbkdf2-3.1.2"
- sources."prettier-2.3.1"
+ sources."prettier-2.3.2"
sources."process-0.11.10"
sources."process-nextick-args-2.0.1"
(sources."public-encrypt-4.0.3" // {
@@ -90699,19 +90487,19 @@ in
];
})
sources."@octokit/graphql-4.6.4"
- sources."@octokit/openapi-types-7.3.2"
+ sources."@octokit/openapi-types-7.3.5"
sources."@octokit/plugin-enterprise-rest-6.0.1"
sources."@octokit/plugin-paginate-rest-2.13.5"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.3.1"
+ sources."@octokit/plugin-rest-endpoint-methods-5.3.4"
(sources."@octokit/request-5.6.0" // {
dependencies = [
sources."is-plain-object-5.0.0"
];
})
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.6.0"
- sources."@octokit/types-6.16.4"
+ sources."@octokit/rest-18.6.3"
+ sources."@octokit/types-6.16.7"
sources."@tootallnate/once-1.1.2"
sources."@types/minimatch-3.0.4"
sources."@types/minimist-1.2.1"
@@ -90860,7 +90648,7 @@ in
})
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fast-json-stable-stringify-2.1.0"
sources."fastq-1.11.0"
sources."figures-3.2.0"
@@ -91101,7 +90889,7 @@ in
sources."semver-5.7.1"
];
})
- sources."normalize-url-6.1.0"
+ sources."normalize-url-4.5.0"
sources."npm-bundled-1.1.2"
sources."npm-install-checks-4.0.0"
(sources."npm-lifecycle-3.1.5" // {
@@ -91160,7 +90948,7 @@ in
sources."qs-6.10.1"
];
})
- sources."parse-url-5.0.3"
+ sources."parse-url-5.0.6"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
@@ -91291,7 +91079,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.9"
+ sources."uglify-js-3.13.10"
sources."uid-number-0.0.6"
sources."umask-1.1.0"
sources."unbox-primitive-1.0.1"
@@ -91309,7 +91097,7 @@ in
sources."verror-1.10.0"
sources."wcwidth-1.0.1"
sources."webidl-conversions-6.1.0"
- sources."whatwg-url-8.6.0"
+ sources."whatwg-url-8.7.0"
sources."which-2.0.2"
sources."which-boxed-primitive-1.0.2"
(sources."wide-align-1.1.3" // {
@@ -91439,8 +91227,8 @@ in
sources."normalize-path-2.1.1"
];
})
- sources."apache-crypt-1.2.4"
- sources."apache-md5-1.1.5"
+ sources."apache-crypt-1.2.5"
+ sources."apache-md5-1.1.7"
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
sources."arr-union-3.1.0"
@@ -92378,14 +92166,14 @@ in
sources."@types/babel__core-7.1.14"
sources."@types/babel__generator-7.6.2"
sources."@types/babel__template-7.4.0"
- sources."@types/babel__traverse-7.11.1"
+ sources."@types/babel__traverse-7.14.0"
sources."@types/estree-0.0.48"
sources."@types/graceful-fs-4.1.5"
sources."@types/istanbul-lib-coverage-2.0.3"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-schema-7.0.7"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/normalize-package-data-2.4.0"
sources."@types/resolve-0.0.8"
sources."@types/yargs-15.0.13"
@@ -92558,7 +92346,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.30001239"
+ sources."caniuse-lite-1.0.30001240"
sources."capture-exit-2.0.0"
sources."caseless-0.12.0"
(sources."chalk-3.0.0" // {
@@ -92682,7 +92470,7 @@ in
sources."duplexer2-0.1.4"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.3.755"
+ sources."electron-to-chromium-1.3.759"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -93537,7 +93325,7 @@ in
sources."link-check-4.5.4"
sources."lodash-4.17.21"
sources."markdown-link-extractor-1.3.0"
- sources."marked-2.1.2"
+ sources."marked-2.1.3"
sources."mime-db-1.48.0"
sources."mime-types-2.1.31"
sources."ms-2.1.3"
@@ -93572,10 +93360,10 @@ in
mastodon-bot = nodeEnv.buildNodePackage {
name = "mastodon-bot";
packageName = "mastodon-bot";
- version = "1.12.1-20210623060235";
+ version = "1.12.1-20210625203706";
src = fetchurl {
- url = "https://registry.npmjs.org/mastodon-bot/-/mastodon-bot-1.12.1-20210623060235.tgz";
- sha512 = "eXao5YnfoIQ4hqVmzCN2HT6GXfgYuReCPNlDz54Yn8YtUxwdhQZ9KnQo9t0ex4Bl6rrAZ0Po8GuVIzTVn22o4Q==";
+ url = "https://registry.npmjs.org/mastodon-bot/-/mastodon-bot-1.12.1-20210625203706.tgz";
+ sha512 = "WRIp5LGsTxBO0zGm2KjaxLZCVsUX1Lv15hu96W0vx2sKflGAgiHUSf3RFxQFaNhII1hdglnyuwulmOu/0/gHNA==";
};
dependencies = [
sources."acorn-5.7.4"
@@ -93923,14 +93711,14 @@ in
"@mermaid-js/mermaid-cli" = nodeEnv.buildNodePackage {
name = "_at_mermaid-js_slash_mermaid-cli";
packageName = "@mermaid-js/mermaid-cli";
- version = "8.10.2";
+ version = "8.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.10.2.tgz";
- sha512 = "aoGVAZC/goUc6iWYef5aRjCwITojjWvlEj+qPHCEbAGisR4md3fi3+3iDD3ra+zhagfXJZ1Qyo5+3lVkJPaC6Q==";
+ url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.11.0.tgz";
+ sha512 = "UyYOnVhvKcfh9e2S4QnK53uRa2hvdgQVo3ZT+FcaP56ZeBDNWKB3IZI/sNzAbxqJBEuRpW6HxoEzHCleis1dFw==";
};
dependencies = [
sources."@braintree/sanitize-url-3.1.0"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/yauzl-2.9.1"
sources."agent-base-6.0.2"
sources."ansi-styles-4.3.0"
@@ -93940,16 +93728,12 @@ in
sources."brace-expansion-1.1.11"
sources."buffer-5.7.1"
sources."buffer-crc32-0.2.13"
- sources."buffer-from-1.1.1"
- sources."camel-case-3.0.0"
sources."chalk-4.1.1"
sources."chownr-1.1.4"
- sources."clean-css-4.2.3"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."commander-7.2.0"
+ sources."commander-8.0.0"
sources."concat-map-0.0.1"
- sources."css-b64-images-0.2.5"
sources."d3-5.16.0"
sources."d3-array-1.2.4"
sources."d3-axis-1.0.12"
@@ -94002,11 +93786,6 @@ in
sources."graphlib-2.1.8"
sources."has-flag-4.0.0"
sources."he-1.2.0"
- (sources."html-minifier-4.0.0" // {
- dependencies = [
- sources."commander-2.20.3"
- ];
- })
sources."https-proxy-agent-5.0.0"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
@@ -94015,21 +93794,17 @@ in
sources."khroma-1.4.1"
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
- sources."lower-case-1.1.4"
- sources."mermaid-8.10.2"
- sources."minify-4.1.3"
+ sources."mermaid-8.11.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
sources."moment-mini-2.24.0"
sources."ms-2.1.2"
- sources."no-case-2.3.2"
sources."node-fetch-2.6.1"
sources."once-1.4.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
- sources."param-case-2.1.1"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."pend-1.2.0"
@@ -94039,29 +93814,17 @@ in
sources."pump-3.0.0"
sources."puppeteer-10.0.0"
sources."readable-stream-3.6.0"
- sources."relateurl-0.2.7"
sources."rimraf-3.0.2"
sources."rw-1.3.3"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- sources."source-map-0.6.1"
- sources."source-map-support-0.5.19"
sources."string_decoder-1.3.0"
sources."stylis-3.5.4"
sources."supports-color-7.2.0"
sources."tar-fs-2.0.0"
sources."tar-stream-2.2.0"
- (sources."terser-4.8.0" // {
- dependencies = [
- sources."commander-2.20.3"
- ];
- })
sources."through-2.3.8"
- sources."try-catch-2.0.1"
- sources."try-to-catch-1.1.1"
- sources."uglify-js-3.13.9"
sources."unbzip2-stream-1.3.3"
- sources."upper-case-1.1.3"
sources."util-deprecate-1.0.2"
sources."wrappy-1.0.2"
sources."ws-7.4.6"
@@ -94093,7 +93856,7 @@ in
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.185"
+ sources."@microsoft/load-themed-styles-1.10.186"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@uifabric/foundation-7.9.26"
@@ -94320,7 +94083,7 @@ in
sources."strip-json-comments-2.0.1"
sources."supports-color-2.0.0"
sources."swagger-schema-official-2.0.0-bab6bed"
- sources."swagger-ui-dist-3.50.0"
+ sources."swagger-ui-dist-3.51.0"
sources."tail-2.2.3"
sources."through-2.3.8"
sources."tmp-0.0.33"
@@ -94606,10 +94369,10 @@ in
netlify-cli = nodeEnv.buildNodePackage {
name = "netlify-cli";
packageName = "netlify-cli";
- version = "3.38.7";
+ version = "3.39.0";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.38.7.tgz";
- sha512 = "q95l1GhUbv1VgePfCHuNREvmGO7dN9H+kSw5esaxNITa/+67xXP4PA2dzJaylTXciEF3NdIhTdXCC9j/CUs4EQ==";
+ url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.39.0.tgz";
+ sha512 = "XYkFp1WuWTcO7Q3LbY79ilobfCNWoL6UEYq2vhCHHKNLICSPxZtkzjDvNP628eGVzxe0L+D+Z9ce3sLdFiitMw==";
};
dependencies = [
sources."@babel/code-frame-7.14.5"
@@ -94734,37 +94497,23 @@ in
sources."@babel/template-7.14.5"
sources."@babel/traverse-7.14.7"
sources."@babel/types-7.14.5"
- sources."@bugsnag/browser-7.10.1"
+ sources."@bugsnag/browser-7.10.4"
sources."@bugsnag/core-7.10.0"
sources."@bugsnag/cuid-3.0.0"
- sources."@bugsnag/js-7.10.1"
+ sources."@bugsnag/js-7.10.4"
sources."@bugsnag/node-7.10.1"
sources."@bugsnag/safe-json-stringify-6.0.0"
sources."@dabh/diagnostics-2.0.2"
sources."@jest/types-24.9.0"
sources."@mrmlnc/readdir-enhanced-2.2.1"
- (sources."@netlify/build-12.7.2" // {
+ (sources."@netlify/build-12.11.0" // {
dependencies = [
- sources."@netlify/config-7.7.1"
- (sources."@netlify/zip-it-and-ship-it-4.4.2" // {
- dependencies = [
- sources."find-up-5.0.0"
- sources."locate-path-6.0.0"
- sources."p-locate-5.0.0"
- sources."pkg-dir-5.0.0"
- sources."semver-7.3.5"
- sources."yargs-16.2.0"
- ];
- })
sources."ansi-styles-4.3.0"
sources."chalk-3.0.0"
- sources."cp-file-9.1.0"
sources."dot-prop-5.3.0"
sources."execa-3.4.0"
- sources."find-up-4.1.0"
sources."is-plain-obj-2.1.0"
sources."locate-path-5.0.0"
- sources."netlify-redirect-parser-7.0.0"
sources."resolve-2.0.0-next.3"
sources."semver-6.3.0"
sources."update-notifier-4.1.3"
@@ -94778,7 +94527,7 @@ in
sources."slash-3.0.0"
];
})
- (sources."@netlify/config-8.0.0" // {
+ (sources."@netlify/config-9.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-3.0.0"
@@ -94790,20 +94539,13 @@ in
];
})
sources."@netlify/esbuild-0.13.6"
- (sources."@netlify/framework-info-5.3.0" // {
+ (sources."@netlify/framework-info-5.4.0" // {
dependencies = [
+ sources."p-limit-3.1.0"
sources."p-locate-5.0.0"
];
})
- (sources."@netlify/functions-utils-1.3.46" // {
- dependencies = [
- sources."@netlify/zip-it-and-ship-it-4.4.2"
- sources."cp-file-9.1.0"
- sources."pkg-dir-5.0.0"
- sources."resolve-2.0.0-next.3"
- sources."yargs-16.2.0"
- ];
- })
+ sources."@netlify/functions-utils-1.3.47"
(sources."@netlify/git-utils-1.0.11" // {
dependencies = [
sources."braces-3.0.2"
@@ -94818,7 +94560,6 @@ in
(sources."@netlify/plugin-edge-handlers-1.11.19" // {
dependencies = [
sources."@types/node-14.17.4"
- sources."typescript-4.3.4"
];
})
sources."@netlify/plugins-list-2.18.0"
@@ -94828,12 +94569,15 @@ in
sources."execa-3.4.0"
];
})
- (sources."@netlify/zip-it-and-ship-it-4.5.1" // {
+ (sources."@netlify/zip-it-and-ship-it-4.4.2" // {
dependencies = [
+ sources."cliui-7.0.4"
sources."cp-file-9.1.0"
sources."pkg-dir-5.0.0"
sources."resolve-2.0.0-next.3"
+ sources."y18n-5.0.8"
sources."yargs-16.2.0"
+ sources."yargs-parser-20.2.9"
];
})
(sources."@nodelib/fs.scandir-2.1.5" // {
@@ -94872,7 +94616,7 @@ in
sources."array-union-2.1.0"
sources."braces-3.0.2"
sources."dir-glob-3.0.1"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fill-range-7.0.1"
sources."glob-parent-5.1.2"
sources."globby-11.0.4"
@@ -94931,7 +94675,7 @@ in
sources."supports-color-5.5.0"
];
})
- (sources."@oclif/plugin-plugins-1.10.0" // {
+ (sources."@oclif/plugin-plugins-1.10.1" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -94948,18 +94692,18 @@ in
];
})
sources."@octokit/graphql-4.6.4"
- sources."@octokit/openapi-types-7.3.2"
+ sources."@octokit/openapi-types-7.3.5"
sources."@octokit/plugin-paginate-rest-2.13.5"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.3.1"
+ sources."@octokit/plugin-rest-endpoint-methods-5.3.4"
(sources."@octokit/request-5.6.0" // {
dependencies = [
sources."is-plain-object-5.0.0"
];
})
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.6.0"
- sources."@octokit/types-6.16.4"
+ sources."@octokit/rest-18.6.3"
+ sources."@octokit/types-6.16.7"
sources."@rollup/plugin-babel-5.3.0"
(sources."@rollup/plugin-commonjs-18.1.0" // {
dependencies = [
@@ -94996,7 +94740,7 @@ in
sources."@types/istanbul-reports-1.1.2"
sources."@types/keyv-3.1.1"
sources."@types/minimatch-3.0.4"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/node-fetch-2.5.10"
sources."@types/normalize-package-data-2.4.0"
sources."@types/resolve-1.17.1"
@@ -95011,7 +94755,7 @@ in
sources."array-union-2.1.0"
sources."braces-3.0.2"
sources."dir-glob-3.0.1"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fill-range-7.0.1"
sources."glob-parent-5.1.2"
sources."globby-11.0.4"
@@ -95025,7 +94769,6 @@ in
sources."@typescript-eslint/visitor-keys-4.28.0"
sources."@ungap/from-entries-0.2.1"
sources."accepts-1.3.7"
- sources."acorn-8.4.0"
sources."agent-base-6.0.2"
sources."aggregate-error-3.1.0"
sources."ajv-8.6.0"
@@ -95085,7 +94828,7 @@ in
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.932.0" // {
+ (sources."aws-sdk-2.935.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -95161,7 +94904,7 @@ in
sources."call-me-maybe-1.0.1"
sources."callsite-1.0.0"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
sources."cardinal-2.1.1"
(sources."chalk-4.1.1" // {
dependencies = [
@@ -95229,7 +94972,12 @@ in
];
})
sources."cli-width-2.2.1"
- sources."cliui-7.0.4"
+ (sources."cliui-6.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
sources."clone-1.0.4"
sources."clone-response-1.0.2"
sources."code-point-at-1.1.0"
@@ -95362,7 +95110,7 @@ in
sources."array-union-2.1.0"
sources."braces-3.0.2"
sources."dir-glob-3.0.1"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fill-range-7.0.1"
sources."glob-parent-5.1.2"
sources."globby-11.0.4"
@@ -95385,7 +95133,11 @@ in
sources."detective-sass-3.0.1"
sources."detective-scss-2.0.1"
sources."detective-stylus-1.0.0"
- sources."detective-typescript-7.0.0"
+ (sources."detective-typescript-7.0.0" // {
+ dependencies = [
+ sources."typescript-3.9.10"
+ ];
+ })
(sources."dir-glob-2.2.2" // {
dependencies = [
sources."path-type-3.0.0"
@@ -95423,7 +95175,7 @@ in
})
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.755"
+ sources."electron-to-chromium-1.3.759"
sources."elegant-spinner-1.0.1"
sources."elf-cam-0.1.1"
sources."emoji-regex-8.0.0"
@@ -95613,7 +95365,7 @@ in
sources."array-union-2.1.0"
sources."braces-3.0.2"
sources."dir-glob-3.0.1"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fill-range-7.0.1"
sources."glob-parent-5.1.2"
sources."ignore-5.1.8"
@@ -95858,6 +95610,7 @@ in
})
(sources."locate-path-6.0.0" // {
dependencies = [
+ sources."p-limit-3.1.0"
sources."p-locate-5.0.0"
];
})
@@ -96092,12 +95845,8 @@ in
})
sources."p-finally-2.0.1"
sources."p-is-promise-1.1.0"
- sources."p-limit-3.1.0"
- (sources."p-locate-4.1.0" // {
- dependencies = [
- sources."p-limit-2.3.0"
- ];
- })
+ sources."p-limit-2.3.0"
+ sources."p-locate-4.1.0"
sources."p-map-4.0.0"
sources."p-reduce-2.1.0"
(sources."p-timeout-2.0.1" // {
@@ -96247,7 +95996,7 @@ in
sources."ret-0.1.15"
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
- sources."rollup-2.52.2"
+ sources."rollup-2.52.3"
(sources."rollup-plugin-inject-3.0.2" // {
dependencies = [
sources."estree-walker-0.6.1"
@@ -96433,7 +96182,7 @@ in
];
})
sources."term-size-2.2.1"
- (sources."terser-5.7.0" // {
+ (sources."terser-5.7.1" // {
dependencies = [
sources."source-map-0.7.3"
];
@@ -96475,7 +96224,7 @@ in
sources."type-fest-0.21.3"
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
- sources."typescript-3.9.10"
+ sources."typescript-4.3.4"
sources."uid-safe-2.1.5"
sources."unbzip2-stream-1.4.3"
sources."unicode-canonical-property-names-ecmascript-1.0.4"
@@ -96579,20 +96328,15 @@ in
sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.7"
sources."xtend-4.0.2"
- sources."y18n-5.0.8"
+ sources."y18n-4.0.3"
sources."yallist-4.0.0"
(sources."yargs-15.4.1" // {
dependencies = [
- sources."ansi-styles-4.3.0"
- sources."cliui-6.0.0"
sources."find-up-4.1.0"
sources."locate-path-5.0.0"
- sources."wrap-ansi-6.2.0"
- sources."y18n-4.0.3"
- sources."yargs-parser-18.1.3"
];
})
- sources."yargs-parser-20.2.9"
+ sources."yargs-parser-18.1.3"
sources."yarn-1.22.10"
sources."yauzl-2.10.0"
sources."yocto-queue-0.1.0"
@@ -98019,7 +97763,7 @@ in
sources."@types/http-cache-semantics-4.0.0"
sources."@types/keyv-3.1.1"
sources."@types/minimist-1.2.1"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/normalize-package-data-2.4.0"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-1.0.0"
@@ -98114,7 +97858,7 @@ in
sources."escape-string-regexp-4.0.0"
sources."execa-5.1.1"
sources."external-editor-3.1.0"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fastq-1.11.0"
(sources."figures-3.2.0" // {
dependencies = [
@@ -98523,10 +98267,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "7.18.1";
+ version = "7.19.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-7.18.1.tgz";
- sha512 = "fu7rMtc4ZaDnFlZsiLhqwWWs6KixOcBGiBLoJH+AbuaznwtT8mYQnq5nGNN14Jib+E9OjkjNRgg+X45Ia9xtKQ==";
+ url = "https://registry.npmjs.org/npm/-/npm-7.19.0.tgz";
+ sha512 = "bak/ZycWS8kalVFJ2m1JEo2pgvSwEDA9FMGthGnufAKciu4X4kpJMDZKe8VZKNaA/cXehd9XI7QdSZXmZauR8Q==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -98646,7 +98390,7 @@ in
sources."extend-3.0.2"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fast-json-stable-stringify-2.1.0"
sources."fastq-1.11.0"
sources."figgy-pudding-3.5.2"
@@ -99370,7 +99114,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -99508,7 +99252,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.755"
+ sources."electron-to-chromium-1.3.759"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -99616,7 +99360,7 @@ in
sources."posthtml-0.15.2"
sources."posthtml-parser-0.7.2"
sources."source-map-0.7.3"
- sources."terser-5.7.0"
+ sources."terser-5.7.1"
];
})
(sources."htmlparser2-6.1.0" // {
@@ -100379,7 +100123,7 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-is-1.6.18"
- sources."uglify-js-3.13.9"
+ sources."uglify-js-3.13.10"
sources."unix-dgram-2.0.4"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
@@ -101397,10 +101141,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "6.9.0";
+ version = "6.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-6.9.0.tgz";
- sha512 = "PYB3AujuDut50PAe7m8jAggruh0D8/Zm+nO2QprVfG1Xug1zAOsMMJEc+wjvEC9irFwT20Qu4qvr+lEiXyK1HA==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-6.9.1.tgz";
+ sha512 = "2qlbvmHB+ULAoTCMpJ75oADYoVQnsxD1ipCemdDJA2KW4auGwoTUzyowVYEiAe4DIDOqw3axhHVkNAo7P6goZA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -101469,7 +101213,7 @@ in
sources."dir-glob-3.0.1"
sources."emoji-regex-8.0.0"
sources."escalade-3.1.1"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fastq-1.11.0"
sources."fill-range-7.0.1"
sources."fs-extra-9.1.0"
@@ -101536,10 +101280,10 @@ in
prettier = nodeEnv.buildNodePackage {
name = "prettier";
packageName = "prettier";
- version = "2.3.1";
+ version = "2.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-2.3.1.tgz";
- sha512 = "p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==";
+ url = "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz";
+ sha512 = "lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -101922,10 +101666,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.151";
+ version = "1.1.153";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.151.tgz";
- sha512 = "R/Zr6VqXghuFLm7y3a8HoCrA+mfy+Zp+mp6P8gFZeJO9Rl1kQLJhfc/y4QKSQHZWxXOBGo+AFDi/rWLZfNBEgQ==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.153.tgz";
+ sha512 = "t5Y9IojL2Sifm1Q04BEBJDLP86rF4RpXma28HEP/EXJRHyyNxu8css77HC+tZqJXXXZVtAjaJxJSAEwq5afGjg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -102408,7 +102152,7 @@ in
sources."@types/glob-7.1.3"
sources."@types/json-schema-7.0.7"
sources."@types/minimatch-3.0.4"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.4"
sources."@webassemblyjs/ast-1.9.0"
@@ -102596,7 +102340,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caw-2.0.1"
(sources."chalk-2.4.2" // {
@@ -102825,7 +102569,7 @@ in
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.755"
+ sources."electron-to-chromium-1.3.759"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -104082,7 +103826,7 @@ in
sources."@mozilla/readability-0.4.1"
sources."@tootallnate/once-1.1.2"
sources."abab-2.0.5"
- sources."acorn-8.4.0"
+ sources."acorn-8.4.1"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -104106,7 +103850,7 @@ in
})
sources."data-urls-2.0.0"
sources."debug-4.3.2"
- sources."decimal.js-10.3.0"
+ sources."decimal.js-10.3.1"
sources."deep-is-0.1.3"
sources."delayed-stream-1.0.0"
(sources."domexception-2.0.1" // {
@@ -104158,7 +103902,7 @@ in
sources."webidl-conversions-6.1.0"
sources."whatwg-encoding-1.0.5"
sources."whatwg-mimetype-2.3.0"
- sources."whatwg-url-8.6.0"
+ sources."whatwg-url-8.7.0"
sources."word-wrap-1.2.3"
sources."wrap-ansi-7.0.0"
sources."ws-7.5.0"
@@ -104219,7 +103963,7 @@ in
})
sources."@redocly/react-dropdown-aria-2.0.12"
sources."@types/json-schema-7.0.7"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."ansi-regex-5.0.0"
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.2"
@@ -104267,7 +104011,6 @@ in
sources."chokidar-3.5.2"
sources."cipher-base-1.0.4"
sources."classnames-2.3.1"
- sources."clipboard-2.0.8"
sources."cliui-7.0.4"
sources."clsx-1.1.1"
sources."color-convert-1.9.3"
@@ -104289,7 +104032,6 @@ in
sources."css-to-react-native-3.0.0"
sources."debug-4.3.2"
sources."decko-1.2.0"
- sources."delegate-3.2.0"
sources."des.js-1.0.1"
(sources."diffie-hellman-5.0.3" // {
dependencies = [
@@ -104321,7 +104063,6 @@ in
sources."get-caller-file-2.0.5"
sources."glob-parent-5.1.2"
sources."globals-11.12.0"
- sources."good-listener-1.2.2"
sources."handlebars-4.7.7"
sources."has-flag-3.0.0"
(sources."hash-base-3.1.0" // {
@@ -104397,7 +104138,7 @@ in
sources."picomatch-2.3.0"
sources."polished-4.1.3"
sources."postcss-value-parser-4.1.0"
- sources."prismjs-1.23.0"
+ sources."prismjs-1.24.0"
sources."process-0.11.10"
sources."process-nextick-args-2.0.1"
sources."prop-types-15.7.2"
@@ -104436,7 +104177,6 @@ in
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."scheduler-0.20.2"
- sources."select-1.1.2"
sources."setimmediate-1.0.5"
sources."sha.js-2.4.11"
sources."shallowequal-1.1.0"
@@ -104459,12 +104199,11 @@ in
sources."supports-color-5.5.0"
sources."swagger2openapi-7.0.7"
sources."timers-browserify-2.0.12"
- sources."tiny-emitter-2.1.0"
sources."to-arraybuffer-1.0.1"
sources."to-fast-properties-2.0.0"
sources."to-regex-range-5.0.1"
sources."tty-browserify-0.0.0"
- sources."uglify-js-3.13.9"
+ sources."uglify-js-3.13.10"
(sources."uri-js-4.4.1" // {
dependencies = [
sources."punycode-2.1.1"
@@ -104700,10 +104439,10 @@ in
rollup = nodeEnv.buildNodePackage {
name = "rollup";
packageName = "rollup";
- version = "2.52.2";
+ version = "2.52.3";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.52.2.tgz";
- sha512 = "4RlFC3k2BIHlUsJ9mGd8OO+9Lm2eDF5P7+6DNQOp5sx+7N/1tFM01kELfbxlMX3MxT6owvLB1ln4S3QvvQlbUA==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.52.3.tgz";
+ sha512 = "QF3Sju8Kl2z0osI4unyOLyUudyhOMK6G0AeqJWgfiyigqLAlnNrfBcDWDx+f1cqn+JU2iIYVkDrgQ6/KtwEfrg==";
};
dependencies = [
sources."fsevents-2.3.2"
@@ -104878,7 +104617,7 @@ in
sources."estree-walker-2.0.2"
sources."esutils-2.0.3"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
sources."fastq-1.11.0"
@@ -105027,7 +104766,7 @@ in
sources."resolve-from-4.0.0"
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
- sources."rollup-2.52.2"
+ sources."rollup-2.52.3"
sources."run-parallel-1.2.0"
sources."safe-buffer-5.2.1"
sources."semver-7.3.5"
@@ -105142,19 +104881,12 @@ in
sha1 = "c8fa1fffb8258ce68adf75df73f90fbb6f23d198";
};
dependencies = [
- sources."ajv-6.12.6"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."asynckit-0.4.0"
sources."aws-sdk-1.18.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.11.0"
- sources."bcrypt-pbkdf-1.0.2"
+ sources."axios-0.21.1"
sources."buffer-crc32-0.2.1"
sources."bytes-0.2.1"
- sources."caseless-0.12.0"
+ sources."call-bind-1.0.2"
sources."coffee-script-1.6.3"
- sources."combined-stream-1.0.8"
sources."commander-2.0.0"
(sources."connect-2.11.0" // {
dependencies = [
@@ -105166,10 +104898,7 @@ in
sources."core-util-is-1.0.2"
sources."crc-0.2.0"
sources."crypto-0.0.3"
- sources."dashdash-1.14.1"
sources."debug-4.3.2"
- sources."delayed-stream-1.0.0"
- sources."ecc-jsbn-0.1.2"
sources."events.node-0.4.9"
(sources."everyauth-0.4.5" // {
dependencies = [
@@ -105188,33 +104917,19 @@ in
sources."commander-1.3.2"
];
})
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-3.1.3"
- sources."fast-json-stable-stringify-2.1.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.3"
+ sources."follow-redirects-1.14.1"
sources."formidable-1.0.11"
sources."fresh-0.2.0"
- sources."getpass-0.1.7"
- sources."har-schema-2.0.0"
- sources."har-validator-5.1.5"
+ sources."function-bind-1.1.1"
+ sources."get-intrinsic-1.1.1"
+ sources."has-1.0.3"
+ sources."has-symbols-1.0.2"
sources."http-auth-2.0.7"
- sources."http-signature-1.2.0"
sources."inherits-2.0.4"
- sources."is-typedarray-1.0.0"
sources."isarray-0.0.1"
- sources."isstream-0.1.2"
- sources."jsbn-0.1.1"
- 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."keypress-0.1.0"
sources."methods-0.1.0"
sources."mime-1.2.11"
- sources."mime-db-1.48.0"
- sources."mime-types-2.1.31"
sources."mkdirp-0.3.5"
sources."ms-2.1.2"
sources."multiparty-2.2.0"
@@ -105223,38 +104938,26 @@ in
sources."node-uuid-1.4.1"
sources."node-wsfederation-0.1.1"
sources."oauth-https://github.com/ciaranj/node-oauth/tarball/master"
- sources."oauth-sign-0.9.0"
- (sources."openid-2.0.8" // {
+ sources."object-inspect-1.10.3"
+ (sources."openid-2.0.9" // {
dependencies = [
- sources."qs-6.5.2"
- sources."request-2.88.2"
+ sources."qs-6.10.1"
];
})
sources."pause-0.0.1"
- sources."performance-now-2.1.0"
- sources."psl-1.8.0"
- sources."punycode-2.1.1"
sources."qs-0.6.5"
sources."range-parser-0.0.4"
sources."raw-body-0.0.3"
sources."readable-stream-1.1.14"
sources."request-2.9.203"
- sources."safe-buffer-5.2.1"
- sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
sources."send-0.1.4"
- sources."sshpk-1.16.1"
+ sources."side-channel-1.0.4"
sources."stream-counter-0.2.0"
sources."string-1.6.1"
sources."string_decoder-0.10.31"
- sources."tough-cookie-2.5.0"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
sources."uid2-0.0.3"
- sources."uri-js-4.4.1"
sources."util-0.4.9"
- sources."uuid-3.4.0"
- sources."verror-1.10.0"
sources."xml2js-0.2.4"
sources."xmlbuilder-0.4.2"
];
@@ -105441,10 +105144,10 @@ in
serverless = nodeEnv.buildNodePackage {
name = "serverless";
packageName = "serverless";
- version = "2.48.0";
+ version = "2.48.1";
src = fetchurl {
- url = "https://registry.npmjs.org/serverless/-/serverless-2.48.0.tgz";
- sha512 = "1CGCKr+7226psdyuGYFC54khCMUUBlLt2QPEAZtY00ZHMy8yOxvjMXAdfHAVnCdo+YH419MW3jFJhGuwVUsDyw==";
+ url = "https://registry.npmjs.org/serverless/-/serverless-2.48.1.tgz";
+ sha512 = "G61WEeJwDWsmsXW3jBzYnnNOJzw3ysqL5/3b0UHy1Zi8RhpkzzI9J7poteJHVmDchw9Ru5tczIKYq2dCfufxsA==";
};
dependencies = [
sources."2-thenable-1.0.0"
@@ -105546,7 +105249,7 @@ in
sources."@types/keyv-3.1.1"
sources."@types/lodash-4.14.170"
sources."@types/long-4.0.1"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/readable-stream-2.3.10"
sources."@types/request-2.48.5"
sources."@types/request-promise-native-1.0.17"
@@ -105608,7 +105311,7 @@ in
sources."async-2.6.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.932.0" // {
+ (sources."aws-sdk-2.935.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -105821,7 +105524,7 @@ in
sources."external-editor-3.1.0"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-safe-stringify-2.0.7"
sources."fastest-levenshtein-1.0.12"
@@ -106168,7 +105871,7 @@ in
sources."sort-keys-length-1.0.1"
sources."split2-3.2.2"
sources."sprintf-js-1.0.3"
- sources."sprintf-kit-2.0.0"
+ sources."sprintf-kit-2.0.1"
sources."sshpk-1.16.1"
sources."stack-trace-0.0.10"
sources."stealthy-require-1.1.1"
@@ -106954,10 +106657,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.642.0";
+ version = "1.649.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.642.0.tgz";
- sha512 = "rrEZuPD1olFg8+MoNAHXeS+HuPQE/RpL4R2Yhizg/NIzYd/PC2peNx0jOOywqqqRseQY8Vhyr19KIrriFEIFJg==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.649.0.tgz";
+ sha512 = "KIJYCxfuxUwaZhmtSQyOxv2Ya5ZX/r7FTqXujpCWV4X/Cx354GYFSxSX1uvi0AQk8GVO6xkzKKVNn14CtpnHiw==";
};
dependencies = [
sources."@arcanis/slice-ansi-1.0.2"
@@ -106981,7 +106684,7 @@ in
})
sources."@snyk/docker-registry-v2-client-2.2.2"
sources."@snyk/fast-glob-3.2.6-patch"
- (sources."@snyk/fix-1.642.0" // {
+ (sources."@snyk/fix-1.649.0" // {
dependencies = [
sources."chalk-4.1.1"
sources."strip-ansi-6.0.0"
@@ -107217,7 +106920,11 @@ in
})
sources."execa-1.0.0"
sources."external-editor-3.1.0"
- sources."fast-glob-3.2.5"
+ (sources."fast-glob-3.2.6" // {
+ dependencies = [
+ sources."micromatch-4.0.4"
+ ];
+ })
sources."fastq-1.11.0"
sources."figures-3.2.0"
sources."fill-range-7.0.1"
@@ -107572,7 +107279,7 @@ in
sources."yallist-2.1.2"
];
})
- (sources."snyk-sbt-plugin-2.11.0" // {
+ (sources."snyk-sbt-plugin-2.11.1" // {
dependencies = [
sources."tmp-0.1.0"
];
@@ -107704,7 +107411,7 @@ in
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.0"
sources."@types/cors-2.8.10"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."accepts-1.3.7"
sources."base64-arraybuffer-0.1.4"
sources."base64id-2.0.0"
@@ -108441,7 +108148,7 @@ in
sources."polyraf-1.1.0"
sources."posix-character-classes-0.1.1"
sources."preserve-0.2.0"
- sources."prettier-2.3.1"
+ sources."prettier-2.3.2"
(sources."pretty-quick-3.1.1" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -108704,7 +108411,7 @@ in
sources."ssb-client-4.9.0"
sources."ssb-config-3.4.5"
sources."ssb-db-19.2.0"
- (sources."ssb-db2-2.1.3" // {
+ (sources."ssb-db2-2.1.4" // {
dependencies = [
sources."abstract-leveldown-6.2.3"
(sources."flumecodec-0.0.1" // {
@@ -108970,13 +108677,14 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.932.0" // {
+ (sources."aws-sdk-2.935.0" // {
dependencies = [
sources."uuid-3.3.2"
];
})
sources."aws-sign2-0.6.0"
sources."aws4-1.11.0"
+ sources."axios-0.21.1"
sources."babel-runtime-6.26.0"
sources."babel-types-6.26.0"
sources."babylon-6.18.0"
@@ -109359,7 +109067,11 @@ in
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
- sources."openid-2.0.8"
+ (sources."openid-2.0.9" // {
+ dependencies = [
+ sources."qs-6.10.1"
+ ];
+ })
sources."options-0.0.6"
sources."optjs-3.2.2"
sources."os-locale-3.1.0"
@@ -109803,7 +109515,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
(sources."chalk-4.1.1" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -109841,7 +109553,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.755"
+ sources."electron-to-chromium-1.3.759"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -109850,7 +109562,7 @@ in
sources."execall-2.0.0"
sources."extend-3.0.2"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fastest-levenshtein-1.0.12"
sources."fastq-1.11.0"
sources."file-entry-cache-6.0.1"
@@ -110083,7 +109795,7 @@ in
sources."@emmetio/abbreviation-2.2.2"
sources."@emmetio/css-abbreviation-2.1.4"
sources."@emmetio/scanner-1.0.0"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/pug-2.0.4"
sources."@types/sass-1.16.0"
sources."anymatch-3.1.2"
@@ -110159,10 +109871,10 @@ in
svgo = nodeEnv.buildNodePackage {
name = "svgo";
packageName = "svgo";
- version = "2.3.0";
+ version = "2.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/svgo/-/svgo-2.3.0.tgz";
- sha512 = "fz4IKjNO6HDPgIQxu4IxwtubtbSfGEAJUq/IXyTPIkGhWck/faiiwfkvsB8LnBkKLvSoyNNIY6d13lZprJMc9Q==";
+ url = "https://registry.npmjs.org/svgo/-/svgo-2.3.1.tgz";
+ sha512 = "riDDIQgXpEnn0BEl9Gvhh1LNLIyiusSpt64IR8upJu7MwxnzetmF/Y57pXQD2NMX2lVyMRzXt5f2M5rO4wG7Dw==";
};
dependencies = [
sources."@trysound/sax-0.1.1"
@@ -110172,9 +109884,9 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."commander-7.2.0"
- sources."css-select-3.1.2"
+ sources."css-select-4.1.3"
sources."css-tree-1.1.3"
- sources."css-what-4.0.0"
+ sources."css-what-5.0.1"
sources."csso-4.2.0"
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
@@ -110777,7 +110489,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.9"
+ sources."uglify-js-3.13.10"
sources."undefsafe-2.0.3"
(sources."union-value-1.0.1" // {
dependencies = [
@@ -111407,7 +111119,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.4.0"
+ sources."acorn-8.4.1"
sources."acorn-jsx-5.3.1"
sources."alex-9.1.0"
(sources."ansi-align-3.0.0" // {
@@ -112207,7 +111919,7 @@ in
sources."@types/debug-4.1.5"
sources."@types/http-cache-semantics-4.0.0"
sources."@types/keyv-3.1.1"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -113126,10 +112838,10 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.13.9";
+ version = "3.13.10";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.9.tgz";
- sha512 = "wZbyTQ1w6Y7fHdt8sJnHfSIuWeDgk6B5rCb4E/AM6QNNPbOMIZph21PW5dRB3h7Df0GszN+t7RuUH6sWK5bF0g==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.10.tgz";
+ sha512 = "57H3ACYFXeo1IaZ1w02sfA71wI60MGco/IQFjOqK+WtKoprh7Go2/yvd2HPtoJILO2Or84ncLccI4xoHMTSbGg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -113742,7 +113454,7 @@ in
sources."enquirer-2.3.6"
sources."escape-string-regexp-4.0.0"
sources."eslint-7.29.0"
- sources."eslint-plugin-vue-7.11.1"
+ sources."eslint-plugin-vue-7.12.1"
sources."eslint-scope-5.1.1"
(sources."eslint-utils-2.1.0" // {
dependencies = [
@@ -113814,7 +113526,7 @@ in
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."prelude-ls-1.2.1"
- sources."prettier-2.3.1"
+ sources."prettier-2.3.2"
sources."progress-2.0.3"
sources."punycode-2.1.1"
sources."regexpp-3.2.0"
@@ -114076,7 +113788,7 @@ in
sources."@webpack-cli/serve-1.5.1"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.4.0"
+ sources."acorn-8.4.1"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
sources."ansi-colors-4.1.1"
@@ -114097,7 +113809,7 @@ in
sources."buffer-from-1.1.1"
sources."call-bind-1.0.2"
sources."camelcase-6.2.0"
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
(sources."chalk-4.1.1" // {
dependencies = [
sources."supports-color-7.2.0"
@@ -114137,7 +113849,7 @@ in
sources."domelementtype-2.2.0"
sources."domhandler-4.2.0"
sources."domutils-2.7.0"
- sources."electron-to-chromium-1.3.755"
+ sources."electron-to-chromium-1.3.759"
sources."emoji-regex-8.0.0"
sources."emojis-list-3.0.0"
sources."enhanced-resolve-5.8.2"
@@ -114303,13 +114015,17 @@ in
sources."strip-json-comments-3.1.1"
sources."supports-color-8.1.1"
sources."tapable-2.2.0"
- (sources."terser-5.7.0" // {
+ (sources."terser-5.7.1" // {
dependencies = [
sources."commander-2.20.3"
sources."source-map-0.7.3"
];
})
- sources."terser-webpack-plugin-5.1.3"
+ (sources."terser-webpack-plugin-5.1.4" // {
+ dependencies = [
+ sources."serialize-javascript-6.0.0"
+ ];
+ })
sources."tmp-0.0.29"
sources."to-regex-range-5.0.1"
(sources."ts-loader-8.3.0" // {
@@ -114641,7 +114357,7 @@ in
sources."tslib-1.14.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."uglify-js-3.13.9"
+ sources."uglify-js-3.13.10"
sources."uid-0.0.2"
sources."unbzip2-stream-1.4.3"
sources."unyield-0.0.1"
@@ -114700,7 +114416,7 @@ in
sources."@starptech/rehype-webparser-0.10.0"
sources."@starptech/webparser-0.10.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/unist-2.0.3"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -115625,7 +115341,7 @@ in
sources."@types/raf-3.4.0"
sources."abab-2.0.5"
sources."abbrev-1.1.1"
- sources."acorn-8.4.0"
+ sources."acorn-8.4.1"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -115681,7 +115397,7 @@ in
})
sources."data-urls-2.0.0"
sources."debug-4.3.2"
- sources."decimal.js-10.3.0"
+ sources."decimal.js-10.3.1"
sources."decompress-response-4.2.1"
sources."deep-is-0.1.3"
sources."delayed-stream-1.0.0"
@@ -115795,7 +115511,7 @@ in
sources."webidl-conversions-6.1.0"
sources."whatwg-encoding-1.0.5"
sources."whatwg-mimetype-2.3.0"
- sources."whatwg-url-8.6.0"
+ sources."whatwg-url-8.7.0"
sources."wide-align-1.1.3"
sources."word-wrap-1.2.3"
(sources."wrap-ansi-7.0.0" // {
@@ -115868,7 +115584,7 @@ in
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/minimatch-3.0.4"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/yauzl-2.9.1"
sources."acorn-7.4.1"
sources."acorn-jsx-5.3.1"
@@ -116431,7 +116147,7 @@ in
sources."@types/eslint-scope-3.7.0"
sources."@types/estree-0.0.47"
sources."@types/json-schema-7.0.7"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@webassemblyjs/ast-1.11.0"
sources."@webassemblyjs/floating-point-hex-parser-1.11.0"
sources."@webassemblyjs/helper-api-error-1.11.0"
@@ -116449,16 +116165,16 @@ in
sources."@webassemblyjs/wast-printer-1.11.0"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.4.0"
+ sources."acorn-8.4.1"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
sources."browserslist-4.16.6"
sources."buffer-from-1.1.1"
- sources."caniuse-lite-1.0.30001239"
+ sources."caniuse-lite-1.0.30001240"
sources."chrome-trace-event-1.0.3"
sources."colorette-1.2.2"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.3.755"
+ sources."electron-to-chromium-1.3.759"
sources."enhanced-resolve-5.8.2"
sources."es-module-lexer-0.6.0"
sources."escalade-3.1.1"
@@ -116489,18 +116205,18 @@ in
sources."randombytes-2.1.0"
sources."safe-buffer-5.2.1"
sources."schema-utils-3.0.0"
- sources."serialize-javascript-5.0.1"
+ sources."serialize-javascript-6.0.0"
sources."source-list-map-2.0.1"
sources."source-map-0.6.1"
sources."source-map-support-0.5.19"
sources."supports-color-8.1.1"
sources."tapable-2.2.0"
- (sources."terser-5.7.0" // {
+ (sources."terser-5.7.1" // {
dependencies = [
sources."source-map-0.7.3"
];
})
- sources."terser-webpack-plugin-5.1.3"
+ sources."terser-webpack-plugin-5.1.4"
sources."uri-js-4.4.1"
sources."watchpack-2.2.0"
sources."webpack-sources-2.3.0"
@@ -116596,7 +116312,7 @@ in
dependencies = [
sources."@types/glob-7.1.3"
sources."@types/minimatch-3.0.4"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."accepts-1.3.7"
sources."ajv-6.12.6"
sources."ajv-errors-1.0.1"
@@ -117169,10 +116885,10 @@ in
copy-webpack-plugin = nodeEnv.buildNodePackage {
name = "copy-webpack-plugin";
packageName = "copy-webpack-plugin";
- version = "9.0.0";
+ version = "9.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.0.0.tgz";
- sha512 = "k8UB2jLIb1Jip2nZbCz83T/XfhfjX6mB1yLJNYKrpYi7FQimfOoFv/0//iT6HV1K8FwUB5yUbCcnpLebJXJTug==";
+ url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.0.1.tgz";
+ sha512 = "14gHKKdYIxF84jCEgPgYXCPpldbwpxxLbCmA7LReY7gvbaT555DgeBWBgBZM116tv/fO6RRJrsivBqRyRlukhw==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.5"
@@ -117185,7 +116901,7 @@ in
sources."braces-3.0.2"
sources."dir-glob-3.0.1"
sources."fast-deep-equal-3.1.3"
- (sources."fast-glob-3.2.5" // {
+ (sources."fast-glob-3.2.6" // {
dependencies = [
sources."glob-parent-5.1.2"
];
@@ -117213,7 +116929,7 @@ in
sources."run-parallel-1.2.0"
sources."safe-buffer-5.2.1"
sources."schema-utils-3.0.0"
- sources."serialize-javascript-5.0.1"
+ sources."serialize-javascript-6.0.0"
sources."slash-3.0.0"
sources."to-regex-range-5.0.1"
sources."uri-js-4.4.1"
@@ -117249,7 +116965,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."addr-to-ip-port-1.5.1"
sources."airplay-js-0.3.0"
sources."balanced-match-1.0.2"
@@ -117527,7 +117243,7 @@ in
sources."utp-native-2.5.1"
sources."videostream-3.2.2"
sources."vlc-command-1.2.0"
- (sources."webtorrent-1.0.1" // {
+ (sources."webtorrent-1.0.2" // {
dependencies = [
sources."debug-4.3.2"
sources."decompress-response-6.0.0"
@@ -117678,7 +117394,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.7"
- (sources."@npmcli/arborist-2.6.3" // {
+ (sources."@npmcli/arborist-2.6.4" // {
dependencies = [
sources."semver-7.3.5"
];
@@ -117704,13 +117420,14 @@ in
})
sources."@npmcli/name-from-folder-1.0.1"
sources."@npmcli/node-gyp-1.0.2"
+ sources."@npmcli/package-json-1.0.1"
sources."@npmcli/promise-spawn-1.3.2"
sources."@npmcli/run-script-1.8.5"
sources."@sindresorhus/is-0.7.0"
sources."@tootallnate/once-1.1.2"
sources."@types/expect-1.20.4"
sources."@types/minimatch-3.0.4"
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/vinyl-2.0.4"
sources."abbrev-1.1.1"
(sources."agent-base-6.0.2" // {
@@ -117889,7 +117606,7 @@ in
sources."external-editor-3.1.0"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.5"
+ sources."fast-glob-3.2.6"
sources."fast-json-stable-stringify-2.1.0"
sources."fastq-1.11.0"
sources."figures-2.0.0"
@@ -118606,7 +118323,7 @@ in
sha512 = "omgqRVve+5dqbFrogFSjJXLUCUr4xHF2Gan+Njn/z4fumhIj3tMTFEA9iV+HgiobZ5Mgl5N96z4S4fwhaas4Pw==";
};
dependencies = [
- sources."@types/node-15.12.4"
+ sources."@types/node-15.12.5"
sources."@types/node-fetch-2.5.10"
sources."ansi-styles-4.3.0"
sources."asynckit-0.4.0"
diff --git a/pkgs/development/perl-modules/strip-nondeterminism/default.nix b/pkgs/development/perl-modules/strip-nondeterminism/default.nix
index 20463ed24250..bdbd1a816434 100644
--- a/pkgs/development/perl-modules/strip-nondeterminism/default.nix
+++ b/pkgs/development/perl-modules/strip-nondeterminism/default.nix
@@ -18,7 +18,8 @@ buildPerlPackage rec {
doCheck = false;
nativeBuildInputs = lib.optionals stdenv.isDarwin [ shortenPerlShebang ];
- buildInputs = [ ArchiveZip ArchiveCpio file ];
+ buildInputs = [ ArchiveZip ArchiveCpio ];
+ propagatedNativeBuildInputs = [ file ];
perlPostHook = ''
# we don’t need the debhelper script
diff --git a/pkgs/development/python-modules/adafruit-pureio/default.nix b/pkgs/development/python-modules/adafruit-pureio/default.nix
index 36bafb0f7a07..d3712ba46c24 100644
--- a/pkgs/development/python-modules/adafruit-pureio/default.nix
+++ b/pkgs/development/python-modules/adafruit-pureio/default.nix
@@ -6,12 +6,12 @@
buildPythonPackage rec {
pname = "Adafruit-PureIO";
- version = "1.1.8";
+ version = "1.1.9";
src = fetchPypi {
pname = "Adafruit_PureIO";
inherit version;
- sha256 = "1mfa6sfz7qwgajz3lqw0s69ivvwbwvblwkjzbrwdrxjbma4jaw66";
+ sha256 = "0yd8hw676s7plq75gac4z0ilfcfydjkk3wv76bc73xy70zxj5brc";
};
nativeBuildInputs = [ setuptools-scm ];
diff --git a/pkgs/development/python-modules/aiosignal/default.nix b/pkgs/development/python-modules/aiosignal/default.nix
index 9b9ef3b12ae1..9d919becd439 100644
--- a/pkgs/development/python-modules/aiosignal/default.nix
+++ b/pkgs/development/python-modules/aiosignal/default.nix
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "aiosignal";
- version = "1.1.1";
+ version = "1.1.2";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "aio-libs";
repo = pname;
rev = "v${version}";
- sha256 = "0a9md2dy83qwg2an57nqrzp9nb7krq27y9zz0f7qxcrv0xd42djy";
+ sha256 = "1gyvisccx25py85wwwlljai5qa20jvwyvacgrgkk1h18dkc262fw";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/asyncstdlib/default.nix b/pkgs/development/python-modules/asyncstdlib/default.nix
index 63e096bdc0f2..dc68584d668f 100644
--- a/pkgs/development/python-modules/asyncstdlib/default.nix
+++ b/pkgs/development/python-modules/asyncstdlib/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "asyncstdlib";
- version = "3.9.1";
+ version = "3.9.2";
disabled = pythonOlder "3.7";
format = "flit";
@@ -16,7 +16,7 @@ buildPythonPackage rec {
owner = "maxfischer2781";
repo = pname;
rev = "v${version}";
- sha256 = "13ranr7zi61w52vfrxwkf32bbhk88j0r5c5z2x2h5vw268001lk2";
+ sha256 = "04z0x2n4a7503h6xf853p7if218magi98x397648wb21l4gh3zwv";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/enturclient/default.nix b/pkgs/development/python-modules/enturclient/default.nix
index 8ac474b6e5f8..f98b38396efc 100644
--- a/pkgs/development/python-modules/enturclient/default.nix
+++ b/pkgs/development/python-modules/enturclient/default.nix
@@ -3,21 +3,27 @@
, async-timeout
, buildPythonPackage
, fetchFromGitHub
+, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "enturclient";
- version = "0.2.1";
- disabled = pythonOlder "3.7";
+ version = "0.2.2";
+ disabled = pythonOlder "3.8";
+ format = "pyproject";
src = fetchFromGitHub {
owner = "hfurubotten";
repo = pname;
rev = "v${version}";
- sha256 = "158xzv9c2drjgrdhfqm0xzx2d34v45gr5rnjfsi94scffvprgwrg";
+ sha256 = "1kl44ch8p31pr70yv6na2m0w40frackdwzph9rpb05sc83va701i";
};
+ nativeBuildInputs = [
+ poetry-core
+ ];
+
propagatedBuildInputs = [
aiohttp
async-timeout
diff --git a/pkgs/development/python-modules/mcstatus/default.nix b/pkgs/development/python-modules/mcstatus/default.nix
index 43906cd95aae..895485cd72ce 100644
--- a/pkgs/development/python-modules/mcstatus/default.nix
+++ b/pkgs/development/python-modules/mcstatus/default.nix
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "mcstatus";
- version = "6.1.0";
+ version = "6.1.2";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "Dinnerbone";
repo = pname;
rev = "v${version}";
- sha256 = "068dc2ilw1kkvw394vqhqgkia5smnvzaca5zbdd2xyl3nch3rk4x";
+ sha256 = "sha256-RSxysVIP/niQh8WRSk6Z9TSz/W97PkPYIR0NXIZfAbQ=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/msal-extensions/default.nix b/pkgs/development/python-modules/msal-extensions/default.nix
index 82ef6fc77f03..a673d96893fa 100644
--- a/pkgs/development/python-modules/msal-extensions/default.nix
+++ b/pkgs/development/python-modules/msal-extensions/default.nix
@@ -25,12 +25,18 @@ buildPythonPackage rec {
pathlib2
];
+ # upstream doesn't update this requirement probably because they use pip
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace "portalocker~=1.0" "portalocker"
+ '';
+
# No tests found
doCheck = false;
meta = with lib; {
description = "The Microsoft Authentication Library Extensions (MSAL-Extensions) for Python";
- homepage = "https://github.com/AzureAD/microsoft-authentication-library-for-python";
+ homepage = "https://github.com/AzureAD/microsoft-authentication-extensions-for-python";
license = licenses.mit;
maintainers = with maintainers; [
kamadorueda
diff --git a/pkgs/development/python-modules/portalocker/default.nix b/pkgs/development/python-modules/portalocker/default.nix
index d79f6201b6fd..7b4fc177bc11 100644
--- a/pkgs/development/python-modules/portalocker/default.nix
+++ b/pkgs/development/python-modules/portalocker/default.nix
@@ -1,34 +1,27 @@
-{ lib, buildPythonPackage, fetchPypi, fetchpatch
-, sphinx
-, pytest
+{ lib, buildPythonPackage, fetchPypi
+, pytestCheckHook
, pytestcov
, pytest-flake8
+, pytest-mypy
+, redis
}:
buildPythonPackage rec {
- version = "1.7.0";
+ version = "2.3.0";
pname = "portalocker";
src = fetchPypi {
inherit pname version;
- sha256 = "1p32v16va780mjjdbyp3v702aqg5s618khlila7bdyynis1n84q9";
+ sha256 = "0k08c0qg21mwz3iqbd20ab22nq705q7cal4a1qr8qnd6ga03v4af";
};
- patches = [
- # remove pytest-flakes from test dependencies
- # merged into master, remove > 1.7.0 release
- (fetchpatch {
- url = "https://github.com/WoLpH/portalocker/commit/42e4c0a16bbc987c7e33b5cbc7676a63a164ceb5.patch";
- sha256 = "01mlr41nhh7mh3qhqy5fhp3br4nps745iy4ns9fjcnm5xhabg5rr";
- excludes = [ "pytest.ini" ];
- })
+ propagatedBuildInputs = [
+ redis
];
checkInputs = [
- sphinx
- pytest
- pytestcov
- pytest-flake8
+ pytestCheckHook
+ pytest-mypy
];
meta = with lib; {
diff --git a/pkgs/development/python-modules/python-http-client/default.nix b/pkgs/development/python-modules/python-http-client/default.nix
index f4b19ba379e4..8eece2ed4fee 100644
--- a/pkgs/development/python-modules/python-http-client/default.nix
+++ b/pkgs/development/python-modules/python-http-client/default.nix
@@ -7,13 +7,13 @@
buildPythonPackage rec {
pname = "python_http_client";
- version = "3.3.1";
+ version = "3.3.2";
src = fetchFromGitHub {
owner = "sendgrid";
repo = "python-http-client";
rev = version;
- sha256 = "0mbcg0vb9v41v7hbvycrxx5wyrf3ysvfgxkix8hn8c4x5l2lmidc";
+ sha256 = "0z7nvfq9wdcprwh88xn9p3vm15gb3ijdc8pxn0a133ini9hxxlpx";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/python-ipmi/default.nix b/pkgs/development/python-modules/python-ipmi/default.nix
new file mode 100644
index 000000000000..7f8b8fe58a77
--- /dev/null
+++ b/pkgs/development/python-modules/python-ipmi/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, future
+, mock
+, nose
+, pytestCheckHook
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+ pname = "python-ipmi";
+ version = "0.5.1";
+ disabled = pythonOlder "3.6";
+
+ src = fetchFromGitHub {
+ owner = "kontron";
+ repo = pname;
+ rev = version;
+ sha256 = "0rcix3q845zsmfj5857kq1r5b8m7m3sad34i23k65m0p58clwdqm";
+ };
+
+ propagatedBuildInputs = [
+ future
+ ];
+
+ checkInputs = [
+ mock
+ nose
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [ "pyipmi" ];
+
+ meta = with lib; {
+ description = "Python IPMI Library";
+ homepage = "https://github.com/kontron/python-ipmi";
+ license = with licenses; [ lgpl2Plus ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/tools/analysis/smatch/default.nix b/pkgs/development/tools/analysis/smatch/default.nix
index 4330ec3d7426..2780c8552fc0 100644
--- a/pkgs/development/tools/analysis/smatch/default.nix
+++ b/pkgs/development/tools/analysis/smatch/default.nix
@@ -1,14 +1,12 @@
{ lib, stdenv, fetchgit, sqlite, pkg-config, perl
, buildllvmsparse ? true
, buildc2xml ? true
-, llvm ? null, libxml2 ? null
+, llvm, libxml2
}:
-assert buildllvmsparse -> llvm != null;
-assert buildc2xml -> libxml2 != null;
-
stdenv.mkDerivation {
- name = "smatch-20120924";
+ pname = "smatch";
+ version = "20120924";
src = fetchgit {
url = "git://repo.or.cz/smatch.git";
@@ -17,19 +15,20 @@ stdenv.mkDerivation {
};
nativeBuildInputs = [ pkg-config ];
- buildInputs = [sqlite perl]
+ buildInputs = [ sqlite perl ]
++ lib.optional buildllvmsparse llvm
++ lib.optional buildc2xml libxml2;
- preBuild =
- '' sed -i Makefile \
- -e "s|^PREFIX=.*|PREFIX = $out|g"
- '';
+ preBuild = ''
+ sed -i Makefile \
+ -e "s|^PREFIX=.*|PREFIX = $out|g"
+ '';
- meta = {
+ meta = with lib; {
description = "A semantic analysis tool for C";
homepage = "http://smatch.sourceforge.net/";
- license = lib.licenses.free; /* OSL, see http://www.opensource.org */
- platforms = lib.platforms.linux;
+ maintainers = with maintainers; [];
+ license = licenses.free; /* OSL, see http://www.opensource.org */
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/development/tools/esbuild/default.nix b/pkgs/development/tools/esbuild/default.nix
index 64229272073a..309845df80a8 100644
--- a/pkgs/development/tools/esbuild/default.nix
+++ b/pkgs/development/tools/esbuild/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "esbuild";
- version = "0.12.11";
+ version = "0.12.12";
src = fetchFromGitHub {
owner = "evanw";
repo = "esbuild";
rev = "v${version}";
- sha256 = "sha256-fn1PQZxZbizer226c9bI1kQ7/p8Z5PbdPiYv2ekll7U=";
+ sha256 = "sha256-4Ooadv8r6GUBiayiv4WKVurUeRPIv6LPlMhieH4VL8o=";
};
vendorSha256 = "sha256-2ABWPqhK2Cf4ipQH7XvRrd+ZscJhYPc3SV2cGT0apdg=";
diff --git a/pkgs/development/tools/rust/rust-analyzer/default.nix b/pkgs/development/tools/rust/rust-analyzer/default.nix
index 07b00deb9c36..b3c75d9747e5 100644
--- a/pkgs/development/tools/rust/rust-analyzer/default.nix
+++ b/pkgs/development/tools/rust/rust-analyzer/default.nix
@@ -7,14 +7,14 @@
rustPlatform.buildRustPackage rec {
pname = "rust-analyzer-unwrapped";
- version = "2021-06-21";
- cargoSha256 = "sha256-OpfcxBeNwXSD830Sz3o07kgIdXTbZNNVGpaPeCIGGV8=";
+ version = "2021-06-28";
+ cargoSha256 = "sha256-Xpo/VK/w6BVbHUc+m/70AE0Cag8D3fT+wosOA8Lzz2A=";
src = fetchFromGitHub {
owner = "rust-analyzer";
repo = "rust-analyzer";
rev = version;
- sha256 = "sha256-nL5lSvxpOS+fw4iH/Gnl/DI86T9tUtguOy+wLGRkoeY=";
+ sha256 = "sha256-aWLqcCSeKRmCsETu4ri+SPQ5iB6nqaYELj0Qt3zW9/E=";
};
patches = [
diff --git a/pkgs/development/tools/rust/rust-analyzer/no-rust-1-53-features.patch b/pkgs/development/tools/rust/rust-analyzer/no-rust-1-53-features.patch
index 9fa54e8a9039..864dc749b270 100644
--- a/pkgs/development/tools/rust/rust-analyzer/no-rust-1-53-features.patch
+++ b/pkgs/development/tools/rust/rust-analyzer/no-rust-1-53-features.patch
@@ -34,7 +34,7 @@ index 43162797e..613266e07 100644
Some(TypeNs::TypeAliasId((*alias).into()))
}
diff --git a/crates/hir_def/src/item_tree/pretty.rs b/crates/hir_def/src/item_tree/pretty.rs
-index e63bc8232..b1e1b70d0 100644
+index 8b12e5a67..d03c11377 100644
--- a/crates/hir_def/src/item_tree/pretty.rs
+++ b/crates/hir_def/src/item_tree/pretty.rs
@@ -63,7 +63,7 @@ impl<'a> Printer<'a> {
@@ -56,7 +56,7 @@ index e63bc8232..b1e1b70d0 100644
}
}
diff --git a/crates/hir_def/src/nameres/collector.rs b/crates/hir_def/src/nameres/collector.rs
-index 927a7b6e8..fc2c50fb8 100644
+index 634e02205..250eb1c3e 100644
--- a/crates/hir_def/src/nameres/collector.rs
+++ b/crates/hir_def/src/nameres/collector.rs
@@ -1260,7 +1260,7 @@ impl DefCollector<'_> {
@@ -69,7 +69,7 @@ index 927a7b6e8..fc2c50fb8 100644
continue;
}
diff --git a/crates/hir_def/src/resolver.rs b/crates/hir_def/src/resolver.rs
-index 49c573087..5edd93a2a 100644
+index a11439c3b..1841fe989 100644
--- a/crates/hir_def/src/resolver.rs
+++ b/crates/hir_def/src/resolver.rs
@@ -605,7 +605,8 @@ fn to_value_ns(per_ns: PerNs) -> Option {
@@ -362,7 +362,7 @@ index ffa8bd182..93d3760bf 100644
fn compute_ws(left: SyntaxKind, right: SyntaxKind) -> &'static str {
diff --git a/crates/ide/src/references.rs b/crates/ide/src/references.rs
-index 5808562a7..945c9b9e1 100644
+index 2d3a0f598..7a7654b6c 100644
--- a/crates/ide/src/references.rs
+++ b/crates/ide/src/references.rs
@@ -79,7 +79,8 @@ pub(crate) fn find_all_refs(
@@ -376,10 +376,10 @@ index 5808562a7..945c9b9e1 100644
it.retain(|reference| {
reference.name.as_name_ref().map_or(false, is_lit_name_ref)
diff --git a/crates/ide/src/syntax_highlighting.rs b/crates/ide/src/syntax_highlighting.rs
-index d44a1b45f..e186b82b7 100644
+index 5259d86d2..365d0c4de 100644
--- a/crates/ide/src/syntax_highlighting.rs
+++ b/crates/ide/src/syntax_highlighting.rs
-@@ -294,7 +294,7 @@ fn traverse(
+@@ -295,7 +295,7 @@ fn traverse(
Some(parent) => {
// We only care Name and Name_ref
match (token.kind(), parent.kind()) {
@@ -388,7 +388,7 @@ index d44a1b45f..e186b82b7 100644
_ => token.into(),
}
}
-@@ -310,7 +310,7 @@ fn traverse(
+@@ -311,7 +311,7 @@ fn traverse(
Some(parent) => {
// We only care Name and Name_ref
match (token.kind(), parent.kind()) {
@@ -398,10 +398,10 @@ index d44a1b45f..e186b82b7 100644
}
}
diff --git a/crates/ide_assists/src/handlers/extract_function.rs b/crates/ide_assists/src/handlers/extract_function.rs
-index ac7f0959b..9b78cf4b1 100644
+index 870d4f665..454de2645 100644
--- a/crates/ide_assists/src/handlers/extract_function.rs
+++ b/crates/ide_assists/src/handlers/extract_function.rs
-@@ -1384,7 +1384,7 @@ fn fix_param_usages(ctx: &AssistContext, params: &[Param], syntax: &SyntaxNode)
+@@ -1398,7 +1398,7 @@ fn fix_param_usages(ctx: &AssistContext, params: &[Param], syntax: &SyntaxNode)
for (param, usages) in usages_for_param {
for usage in usages {
match usage.syntax().ancestors().skip(1).find_map(ast::Expr::cast) {
@@ -429,7 +429,7 @@ index 841537c77..d9d9124b6 100644
}
(None, ExpectedResult::NotApplicable) => (),
diff --git a/crates/ide_completion/src/completions/qualified_path.rs b/crates/ide_completion/src/completions/qualified_path.rs
-index f5dbd203b..88f4d940d 100644
+index 1b8997ecf..aaaef27d2 100644
--- a/crates/ide_completion/src/completions/qualified_path.rs
+++ b/crates/ide_completion/src/completions/qualified_path.rs
@@ -65,11 +65,9 @@ pub(crate) fn complete_qualified_path(acc: &mut Completions, ctx: &CompletionCon
@@ -465,10 +465,19 @@ index f5dbd203b..88f4d940d 100644
add_enum_variants(acc, ctx, e);
}
diff --git a/crates/ide_completion/src/completions/unqualified_path.rs b/crates/ide_completion/src/completions/unqualified_path.rs
-index 81c4fb305..8ea5a2d5b 100644
+index 5abd6ee37..5e6a2e661 100644
--- a/crates/ide_completion/src/completions/unqualified_path.rs
+++ b/crates/ide_completion/src/completions/unqualified_path.rs
-@@ -74,11 +74,9 @@ pub(crate) fn complete_unqualified_path(acc: &mut Completions, ctx: &CompletionC
+@@ -40,7 +40,7 @@ pub(crate) fn complete_unqualified_path(acc: &mut Completions, ctx: &CompletionC
+ ctx.scope.process_all_names(&mut |name, res| {
+ let add_resolution = match res {
+ ScopeDef::MacroDef(mac) => mac.is_fn_like(),
+- ScopeDef::ModuleDef(hir::ModuleDef::Trait(_) | hir::ModuleDef::Module(_)) => true,
++ ScopeDef::ModuleDef(hir::ModuleDef::Trait(_)) | ScopeDef::ModuleDef(hir::ModuleDef::Module(_)) => true,
+ _ => false,
+ };
+ if add_resolution {
+@@ -88,11 +88,9 @@ pub(crate) fn complete_unqualified_path(acc: &mut Completions, ctx: &CompletionC
// Don't suggest attribute macros and derives.
ScopeDef::MacroDef(mac) => mac.is_fn_like(),
// no values in type places
@@ -484,7 +493,7 @@ index 81c4fb305..8ea5a2d5b 100644
// unless its a constant in a generic arg list position
ScopeDef::ModuleDef(hir::ModuleDef::Const(_))
diff --git a/crates/ide_completion/src/context.rs b/crates/ide_completion/src/context.rs
-index 7b76600df..09eb953fd 100644
+index f0da98739..ea1e110da 100644
--- a/crates/ide_completion/src/context.rs
+++ b/crates/ide_completion/src/context.rs
@@ -242,23 +242,24 @@ impl<'a> CompletionContext<'a> {
@@ -518,7 +527,7 @@ index 7b76600df..09eb953fd 100644
_ => None,
}
}
-@@ -282,7 +283,7 @@ impl<'a> CompletionContext<'a> {
+@@ -282,28 +283,28 @@ impl<'a> CompletionContext<'a> {
pub(crate) fn expects_ident_pat_or_ref_expr(&self) -> bool {
matches!(
self.completion_location,
@@ -527,7 +536,14 @@ index 7b76600df..09eb953fd 100644
)
}
-@@ -293,14 +294,14 @@ impl<'a> CompletionContext<'a> {
+ pub(crate) fn expect_field(&self) -> bool {
+ matches!(
+ self.completion_location,
+- Some(ImmediateLocation::RecordField | ImmediateLocation::TupleField)
++ Some(ImmediateLocation::RecordField) | Some(ImmediateLocation::TupleField)
+ )
+ }
+
pub(crate) fn in_use_tree(&self) -> bool {
matches!(
self.completion_location,
@@ -544,7 +560,7 @@ index 7b76600df..09eb953fd 100644
)
}
-@@ -321,16 +322,14 @@ impl<'a> CompletionContext<'a> {
+@@ -324,16 +325,14 @@ impl<'a> CompletionContext<'a> {
|| self.previous_token_is(T![unsafe])
|| matches!(
self.prev_sibling,
@@ -566,7 +582,7 @@ index 7b76600df..09eb953fd 100644
)
}
-@@ -704,8 +703,8 @@ fn path_or_use_tree_qualifier(path: &ast::Path) -> Option<(ast::Path, bool)> {
+@@ -707,8 +706,8 @@ fn path_or_use_tree_qualifier(path: &ast::Path) -> Option<(ast::Path, bool)> {
fn has_ref(token: &SyntaxToken) -> bool {
let mut token = token.clone();
@@ -591,7 +607,7 @@ index 33d3a5ee1..749dfc665 100644
ctx.completion_location,
Some(ImmediateLocation::MethodCall { has_parens: true, .. })
diff --git a/crates/mbe/src/expander/matcher.rs b/crates/mbe/src/expander/matcher.rs
-index b4f2fe9a4..c2a9a38c9 100644
+index 0d694b1a7..5c4680d19 100644
--- a/crates/mbe/src/expander/matcher.rs
+++ b/crates/mbe/src/expander/matcher.rs
@@ -804,17 +804,33 @@ impl<'a> TtIter<'a> {
diff --git a/pkgs/games/xonotic/default.nix b/pkgs/games/xonotic/default.nix
index 0a5a58885d0f..19cd1941ddc0 100644
--- a/pkgs/games/xonotic/default.nix
+++ b/pkgs/games/xonotic/default.nix
@@ -58,8 +58,8 @@ let
inherit version;
src = fetchurl {
- url = "https://dl.xonotic.org/${pname}-${version}-source.zip";
- sha256 = "0axxw04fyz6jlfqd0kp7hdrqa0li31sx1pbipf2j5qp9wvqicsay";
+ url = "https://dl.xonotic.org/xonotic-${version}.zip";
+ sha256 = "sha256-oi9yMPSGxYJbVc/a3XM5nJsPrpjJ4IHdisduygg1mtU=";
};
nativeBuildInputs = [ unzip ];
diff --git a/pkgs/misc/scrcpy/default.nix b/pkgs/misc/scrcpy/default.nix
index 50383fd005d7..00b143b1b585 100644
--- a/pkgs/misc/scrcpy/default.nix
+++ b/pkgs/misc/scrcpy/default.nix
@@ -10,10 +10,10 @@
}:
let
- version = "1.17";
+ version = "1.18";
prebuilt_server = fetchurl {
url = "https://github.com/Genymobile/scrcpy/releases/download/v${version}/scrcpy-server-v${version}";
- sha256 = "sha256-EbWtLRvJuXMPtyVKeO/XGo/0axk4/0aOR6IbZTobZyU=";
+ sha256 = "18si7k9hyqa77yy9w747kl2x2pivyigny49dwzx9sfd9xmmmq734";
};
in
stdenv.mkDerivation rec {
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
owner = "Genymobile";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-xCzrbWhMve0bJerFNHiUdSzp5O1pSaKRkcJSs/0nHpk=";
+ sha256 = "019948v63qhmp742hmar7a98ss673m0wdycpphjhfl1kg4iihiya";
};
# postPatch:
diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix
index a004c77af45f..49a45d6d24d4 100644
--- a/pkgs/misc/vim-plugins/generated.nix
+++ b/pkgs/misc/vim-plugins/generated.nix
@@ -65,12 +65,12 @@ final: prev:
ale = buildVimPluginFrom2Nix {
pname = "ale";
- version = "2021-06-22";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "dense-analysis";
repo = "ale";
- rev = "a4ba421803d030a8967ede111ce921d439aa5fbb";
- sha256 = "115n81dssyxsi3hlrfbga2w2vkyshf3jiy8m27pafl4adp7n3yqf";
+ rev = "7862633d9d0e35157d54ad1487bd5a73c618fc7f";
+ sha256 = "0m7hh7h4jxfw9j5fq00a11qaz8khyrxcn4ka81qn73wzg28hdv11";
};
meta.homepage = "https://github.com/dense-analysis/ale/";
};
@@ -413,12 +413,12 @@ final: prev:
chadtree = buildVimPluginFrom2Nix {
pname = "chadtree";
- version = "2021-06-27";
+ version = "2021-06-30";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "chadtree";
- rev = "9bac6b4623c8b24615bc1f0cfb582e1a8578060f";
- sha256 = "0f0birbvd4s28bqb6jp8pc8r24f4k5789gqqg7mwgrf06zhsa8dh";
+ rev = "01507625b76291bb41a3c92ca8a056d655b674cb";
+ sha256 = "16n1vdgrn9rv7pzwzgisdhin81d5fhlyicp0m0md4g6sd6jfydqh";
};
meta.homepage = "https://github.com/ms-jpq/chadtree/";
};
@@ -557,12 +557,12 @@ final: prev:
coc-nvim = buildVimPluginFrom2Nix {
pname = "coc-nvim";
- version = "2021-06-25";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc.nvim";
- rev = "91b144b090311c29e40832e76ec8624e5e3599b0";
- sha256 = "0cwhzk9lkwj0mndjmxny1y5hps0qgmib50flkvlvhl39j6zbrixx";
+ rev = "34d9d52f4e030a7f1c5e15afa1928cad6d9d903d";
+ sha256 = "0mp71zwaiavn8crw64srgcg4fic69dl0rssd1y5jkwfy25r7jnfv";
};
meta.homepage = "https://github.com/neoclide/coc.nvim/";
};
@@ -858,12 +858,12 @@ final: prev:
csv-vim = buildVimPluginFrom2Nix {
pname = "csv-vim";
- version = "2021-05-09";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "chrisbra";
repo = "csv.vim";
- rev = "a7baf1ce934e725fbcd61b7e6aa27572c0439681";
- sha256 = "1bfi90h3xn0iz9kp2jglxsw22aq72si6xccvsfhxhjsz329rw239";
+ rev = "7555c28930686b36071c96cca51477f332224231";
+ sha256 = "0dr4yvv319aydcfaww8xyrvrh1x7g99c3k7wvvayfa1qwsi2w0bl";
};
meta.homepage = "https://github.com/chrisbra/csv.vim/";
};
@@ -1014,12 +1014,12 @@ final: prev:
denite-nvim = buildVimPluginFrom2Nix {
pname = "denite-nvim";
- version = "2021-06-25";
+ version = "2021-06-27";
src = fetchFromGitHub {
owner = "Shougo";
repo = "denite.nvim";
- rev = "cfee6f43aaead875bdc5351627e344698064108c";
- sha256 = "1yciacr1fh5d155b5d2an4hjy8h0kdp94qrkp9vdi4a46ljrcy9s";
+ rev = "54abca453ae90607a3f70cc316cba9b384bfaac1";
+ sha256 = "0hhsrw2pkp0pb8sjdr4hmqnnbnfviir56mdwl8m0vzci7zx4409x";
};
meta.homepage = "https://github.com/Shougo/denite.nvim/";
};
@@ -1256,12 +1256,12 @@ final: prev:
deoplete-nvim = buildVimPluginFrom2Nix {
pname = "deoplete-nvim";
- version = "2021-06-24";
+ version = "2021-06-27";
src = fetchFromGitHub {
owner = "Shougo";
repo = "deoplete.nvim";
- rev = "a25b3262f7b5ec7e7188560202b680b2763a8359";
- sha256 = "0q9cc641x0jwdvd51dwm3grmgj9y9lhlgz5zpgnwwwbx894i55sn";
+ rev = "6fc33bed8f5c75a08b14af285d7775d893037cc4";
+ sha256 = "1cg4lvb1py6q838rvd2z3kvcr3xa9cziz0wgsjlg7392ivkss8hd";
};
meta.homepage = "https://github.com/Shougo/deoplete.nvim/";
};
@@ -1304,12 +1304,12 @@ final: prev:
diffview-nvim = buildVimPluginFrom2Nix {
pname = "diffview-nvim";
- version = "2021-06-15";
+ version = "2021-06-28";
src = fetchFromGitHub {
owner = "sindrets";
repo = "diffview.nvim";
- rev = "f06495b12ba47460c61e8ad1388326e3f94e5637";
- sha256 = "0lxv2c8wa0a6nknw2vfms9fzgjrmjk8klavhs8ay1qcgzis9s1iq";
+ rev = "451fdee6e4c0f32ccfde89081bc73bacf0ee05a0";
+ sha256 = "0zpkqdg1cd5a9lr0cqwf50x3jx55dkkbdv0sijfighrx9fxs7ixl";
};
meta.homepage = "https://github.com/sindrets/diffview.nvim/";
};
@@ -1619,12 +1619,12 @@ final: prev:
friendly-snippets = buildVimPluginFrom2Nix {
pname = "friendly-snippets";
- version = "2021-06-25";
+ version = "2021-06-27";
src = fetchFromGitHub {
owner = "rafamadriz";
repo = "friendly-snippets";
- rev = "3dca3fc854b72a72233341f4ae51cebd7a864234";
- sha256 = "1saasvazmxq5ll0fna0a8kx5q8lq9mg0ldkj1k4g13h9g34sdwgg";
+ rev = "3361919766dde206849b901163abd7cb820e59a7";
+ sha256 = "0q25v9qlyjv58wlq6yzjajmnzi3rw8yiz9amjia6h0bzhnfxwn3l";
};
meta.homepage = "https://github.com/rafamadriz/friendly-snippets/";
};
@@ -2039,12 +2039,12 @@ final: prev:
hop-nvim = buildVimPluginFrom2Nix {
pname = "hop-nvim";
- version = "2021-06-23";
+ version = "2021-06-27";
src = fetchFromGitHub {
owner = "phaazon";
repo = "hop.nvim";
- rev = "a6cd8df18dc2f667e2d10b5fea79d73a7d084cd7";
- sha256 = "1j5l012vxrcqs5x4ry8cfpvz3a289xsr6h969avd4b8ic8w7dkwb";
+ rev = "00b0f865efdcb329629315c63e9dac5aa6a6e736";
+ sha256 = "1c3bzhrsdbkwj9hj832bb9snr7b78yf8mbx9gm4fc2lbbnrxqvvp";
};
meta.homepage = "https://github.com/phaazon/hop.nvim/";
};
@@ -2316,12 +2316,12 @@ final: prev:
julia-vim = buildVimPluginFrom2Nix {
pname = "julia-vim";
- version = "2021-06-17";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "JuliaEditorSupport";
repo = "julia-vim";
- rev = "c3c35958e56993337d6517cf5d6e974aca1da99f";
- sha256 = "0qlx267mpyphpxzfr6y0x87hkxisfmsivd2617sbbwxkv05z2kw1";
+ rev = "26beb1213019d56767e7f14ba1f2cbc33cb315b8";
+ sha256 = "05bqimb70r646q9v7nshwapqs8n9hvbx55cxx6khd6gwvpckh22w";
};
meta.homepage = "https://github.com/JuliaEditorSupport/julia-vim/";
};
@@ -2556,12 +2556,12 @@ final: prev:
lightspeed-nvim = buildVimPluginFrom2Nix {
pname = "lightspeed-nvim";
- version = "2021-06-26";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "ggandor";
repo = "lightspeed.nvim";
- rev = "1a213ae1a9587afd4083309098b3a3e63cf6ea80";
- sha256 = "053drg668sbp0q7xfjm9cx29d87brf02xn86ind81vd039csjd7z";
+ rev = "b93922421bd41e8349cf46640b5742feb5e0031a";
+ sha256 = "1sb0z6nrq9nmrqlv6p6xvk1plndc347s3ydsgq6n6p8c2xgfb1ch";
};
meta.homepage = "https://github.com/ggandor/lightspeed.nvim/";
};
@@ -2628,12 +2628,12 @@ final: prev:
lsp_signature-nvim = buildVimPluginFrom2Nix {
pname = "lsp_signature-nvim";
- version = "2021-06-25";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "ray-x";
repo = "lsp_signature.nvim";
- rev = "69142caa4e48a265467d1c43112de0790f0e5090";
- sha256 = "0m69fdblnxydlix5cx1rnrcyxsfvl85ica2vn0d58vpls20hnibd";
+ rev = "ef20fad69270f4d3df356be3c01bd079739e72c4";
+ sha256 = "0whmqkz6k27hrsjmbw841bsdg8xkiv8gj01sw40cg99mcdyags70";
};
meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/";
};
@@ -2676,24 +2676,24 @@ final: prev:
luasnip = buildVimPluginFrom2Nix {
pname = "luasnip";
- version = "2021-06-26";
+ version = "2021-06-27";
src = fetchFromGitHub {
owner = "l3mon4d3";
repo = "luasnip";
- rev = "8c96627d42aeb00b7595bb9fd812762ca4a27019";
- sha256 = "0cjphgly8y2gb5izwl670qy58ky6wjfw1qzarfkxi5wmbk1mawv9";
+ rev = "1e79310e57404e86e00ceca2c4657bb9a9072673";
+ sha256 = "0v6kgjjy9ygr2vygh4zizfbnms33w3bn1b4zdljx79c358firgcx";
};
meta.homepage = "https://github.com/l3mon4d3/luasnip/";
};
lush-nvim = buildVimPluginFrom2Nix {
pname = "lush-nvim";
- version = "2021-06-01";
+ version = "2021-06-28";
src = fetchFromGitHub {
owner = "rktjmp";
repo = "lush.nvim";
- rev = "684c06d4879a38e50a247ce23b32beaacc75c4d1";
- sha256 = "1khws788sww2dw4s3nqyigyxi7099kqh60dabs66hj9byb84irql";
+ rev = "850a2aa8366bbe8b07088a19e6b6f2e8e76f2c9f";
+ sha256 = "048fjsxrshlgcscs9c1y29fgpcb9l9cnhpghkj9ailpzjv4j5hxf";
};
meta.homepage = "https://github.com/rktjmp/lush.nvim/";
};
@@ -2772,12 +2772,12 @@ final: prev:
minimap-vim = buildVimPluginFrom2Nix {
pname = "minimap-vim";
- version = "2021-06-21";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "wfxr";
repo = "minimap.vim";
- rev = "14f0a76ccb965bd935818039168cbb4df87f53e4";
- sha256 = "0cphjh7p8j4i2q89q4lisbs1ir017h1pphg95d4x5ds4ms4rnbjg";
+ rev = "8ff65412c76eb25731d96089660c9591b87f104b";
+ sha256 = "1r2n1mvs5zxxz0khg2dsy6m2w6d3wj7jds9swg5n08wa4m8zl05w";
};
meta.homepage = "https://github.com/wfxr/minimap.vim/";
};
@@ -3084,24 +3084,24 @@ final: prev:
neoformat = buildVimPluginFrom2Nix {
pname = "neoformat";
- version = "2021-06-26";
+ version = "2021-06-28";
src = fetchFromGitHub {
owner = "sbdchd";
repo = "neoformat";
- rev = "cdf38b33fc4a78c5aa369b8074956a3ebf184f4b";
- sha256 = "1cp3p117ij5k2zsmyrg3c01n9hv2a6h5p09i2gllz88ii5x3965y";
+ rev = "b03c121c66d859fa165aaab05ba9c1c1b2098007";
+ sha256 = "0b72c14sqjq8bb0xz1spp5lq2bs1fsbp651qiwvvcdlma5yf5vxk";
};
meta.homepage = "https://github.com/sbdchd/neoformat/";
};
neogit = buildVimPluginFrom2Nix {
pname = "neogit";
- version = "2021-06-25";
+ version = "2021-06-27";
src = fetchFromGitHub {
owner = "TimUntersberger";
repo = "neogit";
- rev = "6bf4bfcf36e701658ddb062f1214e3942e339442";
- sha256 = "1wgchrv6piykzpwg42yl23qn1qxangf58cv97rj73m80ws8hhwb8";
+ rev = "3b5fa08467a77c289027bbc01ce8f8341f8d911c";
+ sha256 = "1q1dz06msbw68wf7vs482y77nlmbz797hsdpqimfh65liz6bjh77";
};
meta.homepage = "https://github.com/TimUntersberger/neogit/";
};
@@ -3144,12 +3144,12 @@ final: prev:
neorg = buildVimPluginFrom2Nix {
pname = "neorg";
- version = "2021-06-26";
+ version = "2021-06-27";
src = fetchFromGitHub {
owner = "vhyrro";
repo = "neorg";
- rev = "950ed23a61ba0b4bb455033f191f15b9b8170fd6";
- sha256 = "0c8zqkyjlkbz109k3321ys7jjggwk9w13p72907k64ypfmr70p30";
+ rev = "639a2deb5e3783aeb8f7cddaade8e84575f3bc1e";
+ sha256 = "0q890252cpcjy5a9xy6m5qlziqbqmfgy43l305aslv05yxbckk11";
};
meta.homepage = "https://github.com/vhyrro/neorg/";
};
@@ -3396,12 +3396,12 @@ final: prev:
nvim-autopairs = buildVimPluginFrom2Nix {
pname = "nvim-autopairs";
- version = "2021-06-26";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "windwp";
repo = "nvim-autopairs";
- rev = "3069e5a6cea7e69a75f042740e66fc15169336e8";
- sha256 = "1ldsx96x8asc6hlywkba4rn2dx9j1fl682pv1gyjr1x9m9pgjvg0";
+ rev = "b64fa0d85e9e1b6aa86c8c44cf8a604840a571af";
+ sha256 = "1sqjxf5w77aa0jxzk3yz9l2qw9xja7i9vxnrajajf1m7wa3zm4nl";
};
meta.homepage = "https://github.com/windwp/nvim-autopairs/";
};
@@ -3432,12 +3432,12 @@ final: prev:
nvim-bufferline-lua = buildVimPluginFrom2Nix {
pname = "nvim-bufferline-lua";
- version = "2021-06-20";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "akinsho";
repo = "nvim-bufferline.lua";
- rev = "fad981fd11b68b1a7a48b9283bc04ea5b48e55ff";
- sha256 = "1i2zm5rrx65dzrmxlc89szr7dghjgd7cwcdd4wm1b0hdv0if89p8";
+ rev = "165114f65c267ee912018ef3565d70cba7183fc3";
+ sha256 = "07km6dn0mc60zzqbyymxmzgy2wjrw6q2a8lmzc55iqyflfhza8qn";
};
meta.homepage = "https://github.com/akinsho/nvim-bufferline.lua/";
};
@@ -3468,12 +3468,12 @@ final: prev:
nvim-compe = buildVimPluginFrom2Nix {
pname = "nvim-compe";
- version = "2021-06-19";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "nvim-compe";
- rev = "f176c41f1e67bffe2dbd28f371fa55c172cf1c56";
- sha256 = "1yys3m1wmpwr44zx2my975rg2bj2d7j4pzcvfkyccqi36z3g7d8m";
+ rev = "9a1ab398bfdb4bda1134b7a0e7a379017d3bdefa";
+ sha256 = "04khvbxx5qsfzhg5ari55ka8ff9gpd2kh7s3vc27z1jz43vizrsa";
};
meta.homepage = "https://github.com/hrsh7th/nvim-compe/";
};
@@ -3504,12 +3504,12 @@ final: prev:
nvim-dap-ui = buildVimPluginFrom2Nix {
pname = "nvim-dap-ui";
- version = "2021-06-19";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "rcarriga";
repo = "nvim-dap-ui";
- rev = "be9e71d7809f3b1e6a2f5765d782ce74b6b76b64";
- sha256 = "1648nn9h4h8fiszm626iq09kswsr644mr6kkjy2gnrkrqwkw76l7";
+ rev = "e32b33dae9d8d738f86f84699d4f978f8d9deb02";
+ sha256 = "0sdx890gk79qyyjs946kq3anyq8yyxvkg9sfphiavq5xs9840ps1";
};
meta.homepage = "https://github.com/rcarriga/nvim-dap-ui/";
};
@@ -3540,12 +3540,12 @@ final: prev:
nvim-highlite = buildVimPluginFrom2Nix {
pname = "nvim-highlite";
- version = "2021-06-14";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "Iron-E";
repo = "nvim-highlite";
- rev = "d0bdf0cb2d11064ac09d57bcfd48b53f0ee77124";
- sha256 = "0smkmaz36zjisnlfzjmqgvljb0xk7j07xja69va3bf7k4kcg326y";
+ rev = "20ff07b00545daad1c3e90c6484d838b43cf3660";
+ sha256 = "1pb8v2yzrljqmgjhqzhv03zvdqwbqqyly6vkfdscbq7ra9afiw2j";
};
meta.homepage = "https://github.com/Iron-E/nvim-highlite/";
};
@@ -3576,12 +3576,12 @@ final: prev:
nvim-jdtls = buildVimPluginFrom2Nix {
pname = "nvim-jdtls";
- version = "2021-06-15";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "mfussenegger";
repo = "nvim-jdtls";
- rev = "a26e1818fa62cfbcbd9728ad11bc3fc312d6e50e";
- sha256 = "00w6jdpqfzxi9kfvwig052g8c0184pq71fs9p2dryx9klcxkcjnb";
+ rev = "018b013d5ee873dfaa9fa2d487d166c5f6dd3aee";
+ sha256 = "0liwxdfalm85i2ck9hx5pj4ih58ypil8fw3ricrc6r7czfv6gfmf";
};
meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/";
};
@@ -3600,12 +3600,12 @@ final: prev:
nvim-lspconfig = buildVimPluginFrom2Nix {
pname = "nvim-lspconfig";
- version = "2021-06-20";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "neovim";
repo = "nvim-lspconfig";
- rev = "48e47b4d26e45977d27c06dc1bc116416ca9276d";
- sha256 = "1zf4sv91i3qkr9d8cbn9vzk2sc5bknjsjdhzvpf1zjr72bxx3q37";
+ rev = "234a8cdad1104dd562796e6ca2c6c41e22e5f77a";
+ sha256 = "0w10mx66p9sil1aa6jhkfb7k2p4m2vwjbyr8f1dr2apn07cr72w8";
};
meta.homepage = "https://github.com/neovim/nvim-lspconfig/";
};
@@ -3684,24 +3684,24 @@ final: prev:
nvim-tree-lua = buildVimPluginFrom2Nix {
pname = "nvim-tree-lua";
- version = "2021-06-15";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "kyazdani42";
repo = "nvim-tree.lua";
- rev = "bfeaf4c8ef5ff24e93005da2561407a13ba69d4d";
- sha256 = "0sqydjvcjrqzw91b7sk7y9rrcs0l2j34hshcbwwwz8nrilfk6ak7";
+ rev = "a80ea23b4c765efe3b6eaa9440d19d298e4c709b";
+ sha256 = "11m62asv3qrv5kh4gb8xvhjmxwbzxf26902cxn8gncclc79cr42i";
};
meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/";
};
nvim-treesitter = buildVimPluginFrom2Nix {
pname = "nvim-treesitter";
- version = "2021-06-26";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter";
- rev = "c04aa172a3feab61f8f4fbfa0e3d47fa12513485";
- sha256 = "00sp2v423j10rh6hfiwkl7cfnq5y1zjzsfi87sy01phcw5i4aa25";
+ rev = "917ae3da7c0d827c819405cc747aafc8bb041dbd";
+ sha256 = "00mh980ffh3k0cp4dm1qvx5x803kw8xajgvv86hw0yspmjb98d5d";
};
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/";
};
@@ -3744,12 +3744,12 @@ final: prev:
nvim-treesitter-textobjects = buildVimPluginFrom2Nix {
pname = "nvim-treesitter-textobjects";
- version = "2021-06-25";
+ version = "2021-06-28";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter-textobjects";
- rev = "2271ffecd5fad9c74fb12c125f39a21ffb5a7673";
- sha256 = "1acmhal848jjxv12cp4ihd3jmg6rj8q31v2si15chzap4iizhchc";
+ rev = "63a6d3c85d6625f90093808d15c72c378f5fc2d5";
+ sha256 = "15l9624ggvbxrm4cr97p9hhsjpdli1iqkm32ffvvfhaa1kzv9lfd";
};
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/";
};
@@ -3900,12 +3900,12 @@ final: prev:
packer-nvim = buildVimPluginFrom2Nix {
pname = "packer-nvim";
- version = "2021-06-22";
+ version = "2021-06-28";
src = fetchFromGitHub {
owner = "wbthomason";
repo = "packer.nvim";
- rev = "40663b4e515ea65c51a17d1135cbda516e0e0917";
- sha256 = "1yfl16a7vdj6g3k2mg1f805xzxdfsnkqfgccbppzbpqy7m2896cr";
+ rev = "78a42c3bc7b153a621b5f9d35623db88d6d0d0ee";
+ sha256 = "0awmwcj3a27m81180k52i5gvvbf6r115qkbfskpxbvrsc8h5qqx5";
};
meta.homepage = "https://github.com/wbthomason/packer.nvim/";
};
@@ -4550,12 +4550,12 @@ final: prev:
snap = buildVimPluginFrom2Nix {
pname = "snap";
- version = "2021-06-26";
+ version = "2021-06-28";
src = fetchFromGitHub {
owner = "camspiers";
repo = "snap";
- rev = "9410aa77fb8771288ef0a882cd7e8ee81af51107";
- sha256 = "165a8hdkg0ma5s6gbnrhw0sqx37ilmfka6lq5k843sm5h98xyad7";
+ rev = "1fbd674dc53401fd643a2bb8bf07dd3e7125d430";
+ sha256 = "0lwhl74yfzd34fv241i9ra6w72qhf1jxf6fkyl1h0c427sz09mmj";
};
meta.homepage = "https://github.com/camspiers/snap/";
};
@@ -4682,12 +4682,12 @@ final: prev:
splitjoin-vim = buildVimPluginFrom2Nix {
pname = "splitjoin-vim";
- version = "2021-06-07";
+ version = "2021-06-28";
src = fetchFromGitHub {
owner = "AndrewRadev";
repo = "splitjoin.vim";
- rev = "a8c4af3d69839cd2c03d458044fb3d3b128e450d";
- sha256 = "0s87vzdb3j3hna5yda4jay1k4zw419mqd8yn3h4q22qhhsr36q0k";
+ rev = "03af68c1ecec4a01b4fe713393c1b3fa4dd21e77";
+ sha256 = "15qja2ywi83qv365b19xrcw02j693bhrdn0wanxdhbqzpp9kwsb9";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/AndrewRadev/splitjoin.vim/";
@@ -4984,12 +4984,12 @@ final: prev:
telescope-nvim = buildVimPluginFrom2Nix {
pname = "telescope-nvim";
- version = "2021-06-14";
+ version = "2021-06-27";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope.nvim";
- rev = "6ac5ee0854fe02d651cadf2fc97a2463ff92f322";
- sha256 = "1k2glya8cd000kzfvx5fif9fcqvcq1k2vrkwyzhfm4yngz7bxm1p";
+ rev = "e5bd4963da81b5d044749ee4507061801aeb0f78";
+ sha256 = "1dskr91qiark1z08yfjkbrnf1zvy2mci4avkdn574b7pz8v72lzb";
};
meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/";
};
@@ -5080,12 +5080,12 @@ final: prev:
todo-comments-nvim = buildVimPluginFrom2Nix {
pname = "todo-comments-nvim";
- version = "2021-06-17";
+ version = "2021-06-28";
src = fetchFromGitHub {
owner = "folke";
repo = "todo-comments.nvim";
- rev = "edbe161856eacc859987eaf28d41b67163d49791";
- sha256 = "0mq5bx767zw1k7sxxrkijz3rz5hwi93xsxidppfg13qybi519jai";
+ rev = "12758792a0d207b5a4a4fb5a11a0d321a4608108";
+ sha256 = "1w4z3x1d36cf0zjlz5kshvf5d5lz126rhcl55p2qd4ibrcfw8cwg";
};
meta.homepage = "https://github.com/folke/todo-comments.nvim/";
};
@@ -6725,12 +6725,12 @@ final: prev:
vim-go = buildVimPluginFrom2Nix {
pname = "vim-go";
- version = "2021-06-26";
+ version = "2021-06-28";
src = fetchFromGitHub {
owner = "fatih";
repo = "vim-go";
- rev = "e32b1a46ad5fc1fcb6765ef6150726c0af174c68";
- sha256 = "04pbqwi4n0dyhhfwi3kp78dnyxdza2bg5pn7wbbkz7c6k3jhjysa";
+ rev = "32bcf757e455ab3b87c9201247b9a6b091d44ea0";
+ sha256 = "1ymd4dqd8725962iz12slrdgjp2sxqrrmznq18za4q14psy6dcin";
};
meta.homepage = "https://github.com/fatih/vim-go/";
};
@@ -7844,12 +7844,12 @@ final: prev:
vim-orgmode = buildVimPluginFrom2Nix {
pname = "vim-orgmode";
- version = "2021-01-20";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "jceb";
repo = "vim-orgmode";
- rev = "3aeea0648f485f002cfcaf1b3e6a25ef43a12a66";
- sha256 = "0jx5vw72p8s5np31g0macwx3iqghfgzvx30akyk5fspfayjivaxl";
+ rev = "4ad432d7da4e01e7fce86d25528a6587efce6ca4";
+ sha256 = "0lhgph6hp130sbbc1frsmrjp9qrf6gqk12azjq63bb0rs5884q5h";
};
meta.homepage = "https://github.com/jceb/vim-orgmode/";
};
@@ -8060,12 +8060,12 @@ final: prev:
vim-polyglot = buildVimPluginFrom2Nix {
pname = "vim-polyglot";
- version = "2021-06-09";
+ version = "2021-06-27";
src = fetchFromGitHub {
owner = "sheerun";
repo = "vim-polyglot";
- rev = "4899585281beab51e5dff1d9ae4d3159244a8275";
- sha256 = "1518dvxf99nvky0mrvgv65if0wjhpiv3021rddhn52j04vri4pdd";
+ rev = "4f5388350be1052f610b830c8fce8fbc17370ec6";
+ sha256 = "04cljqrywz3y3r336ahri2b2jig9a6pvxljkkjnlssgjlx0azvv9";
};
meta.homepage = "https://github.com/sheerun/vim-polyglot/";
};
@@ -8216,12 +8216,12 @@ final: prev:
vim-quickrun = buildVimPluginFrom2Nix {
pname = "vim-quickrun";
- version = "2021-06-18";
+ version = "2021-06-29";
src = fetchFromGitHub {
owner = "thinca";
repo = "vim-quickrun";
- rev = "e5e83bfd613bd58aa6bbbfaaed2f7eef1ed0b378";
- sha256 = "1zcjlz5d4bp0y28mxlzlyb76klpwr49i0kgzpab2v5vy8qlzsvxb";
+ rev = "b39b1f6c69f7086e500ad7a6318c7bc97249b944";
+ sha256 = "1cwsbscbfmjjr9grxgdprfydlybmwdf7qxdmcwbfj18xqbjx6cjq";
};
meta.homepage = "https://github.com/thinca/vim-quickrun/";
};
@@ -8600,12 +8600,12 @@ final: prev:
vim-snippets = buildVimPluginFrom2Nix {
pname = "vim-snippets";
- version = "2021-06-24";
+ version = "2021-06-28";
src = fetchFromGitHub {
owner = "honza";
repo = "vim-snippets";
- rev = "7bb2385aca2288845999c05d9eca83e2e8eaed90";
- sha256 = "0r41cd27dzfq4pnafr4an1zlafwmi7sa44w4yxmxyn7wky4rhf61";
+ rev = "749460bc5b05b1f4015a041508031d99b1b24982";
+ sha256 = "0f1n0gg8asz0sg81dwc3gg5nl5j142qyd960f7fzdiv7grv7l0xk";
};
meta.homepage = "https://github.com/honza/vim-snippets/";
};
@@ -8684,12 +8684,12 @@ final: prev:
vim-startuptime = buildVimPluginFrom2Nix {
pname = "vim-startuptime";
- version = "2021-05-29";
+ version = "2021-06-28";
src = fetchFromGitHub {
owner = "dstein64";
repo = "vim-startuptime";
- rev = "7a97baae32bedbf6f62d5a573777e4d1652787d1";
- sha256 = "1sphykwbjd35kwsibm9wcxbs2iwjkzkg7madqvlxzi7sqh4vkc7y";
+ rev = "3b8fcc0b21fd28eaabb5feac786462926e5a5069";
+ sha256 = "19aj7d24qwkpyfgk8adrr5nz30inblsrhm56vp6l3phai1c7rbn2";
};
meta.homepage = "https://github.com/dstein64/vim-startuptime/";
};
@@ -9069,12 +9069,12 @@ final: prev:
vim-ultest = buildVimPluginFrom2Nix {
pname = "vim-ultest";
- version = "2021-06-24";
+ version = "2021-06-27";
src = fetchFromGitHub {
owner = "rcarriga";
repo = "vim-ultest";
- rev = "eaa0eeaaa2bcc8f4400a7d2e8ff56cf1141074e4";
- sha256 = "148yy7f88jvavz8n0r2lfjn51bfdi2pbs192srf82kikmfg0lxk7";
+ rev = "8b551f7fe1f87c832a7aada741eac25d2944407c";
+ sha256 = "1vfns3srdskncy2s3z58s2k35vlz8gvf8yrh5s49r7d9nzrv45rq";
};
meta.homepage = "https://github.com/rcarriga/vim-ultest/";
};
@@ -9502,12 +9502,12 @@ final: prev:
vimtex = buildVimPluginFrom2Nix {
pname = "vimtex";
- version = "2021-06-25";
+ version = "2021-06-28";
src = fetchFromGitHub {
owner = "lervag";
repo = "vimtex";
- rev = "78789f5c9e73d7b66f87104544d521333b09a33b";
- sha256 = "1rrblrip8xa1wxp8kj0kjry63n4pbja4fnnjbvw07bnihr6igjx1";
+ rev = "299363d651c5a8c26a4440f434df613cdf66a4c4";
+ sha256 = "18c9b35cjjrw2bf62j6ss5i7i21rz32nrm102bljybf2cfs700lf";
};
meta.homepage = "https://github.com/lervag/vimtex/";
};
diff --git a/pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json b/pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
index 20dd6593abff..d54ad42b1f6d 100644
--- a/pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
+++ b/pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
@@ -4,7 +4,7 @@
"dependencies": {
"https-proxy-agent": "^5.0.0",
"node-fetch": "^2.6.1",
- "vscode-languageclient": "^7.1.0-next.4",
+ "vscode-languageclient": "^7.1.0-next.5",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@types/glob": "^7.1.3",
diff --git a/pkgs/os-specific/linux/tuigreet/default.nix b/pkgs/os-specific/linux/tuigreet/default.nix
index daa5a4faa9c2..89dfe85c082d 100644
--- a/pkgs/os-specific/linux/tuigreet/default.nix
+++ b/pkgs/os-specific/linux/tuigreet/default.nix
@@ -5,16 +5,16 @@
rustPlatform.buildRustPackage rec {
pname = "tuigreet";
- version = "0.4.0";
+ version = "0.5.0";
src = fetchFromGitHub {
owner = "apognu";
repo = pname;
rev = version;
- sha256 = "1v16gl6ajqdbl265nh8akr2far5qhiqv7787hvqlzpr3rd39vnij";
+ sha256 = "sha256-Ip/GhpHgTgWFyCdujcCni1CLFDDirUbJuzCj8QiUsFc=";
};
- cargoSha256 = "072zvvgf9m1afjz15m8pwslh2mav37ahjqgg33pdvzdnvg5j1q2h";
+ cargoSha256 = "sha256-G/E/2wjeSY57bQJgrZYUA1sWUwtk5mRavmLwy1EgHRM=";
meta = with lib; {
description = "Graphical console greter for greetd";
diff --git a/pkgs/tools/admin/awscli2/default.nix b/pkgs/tools/admin/awscli2/default.nix
index 0824a26855dd..1ce3cb452b8c 100644
--- a/pkgs/tools/admin/awscli2/default.nix
+++ b/pkgs/tools/admin/awscli2/default.nix
@@ -3,12 +3,12 @@ let
py = python3.override {
packageOverrides = self: super: {
botocore = super.botocore.overridePythonAttrs (oldAttrs: rec {
- version = "2.0.0dev112";
+ version = "2.0.0dev122";
src = fetchFromGitHub {
owner = "boto";
repo = "botocore";
- rev = "221c0aa5dbad42f096e00fed45d2e2071561b1da";
- sha256 = "sha256-uJCP3bUK/xACQVG4kMBDIIP+zPjre+uWbqWEC/gBTD4=";
+ rev = "8dd916418c8193f56226b7772f263b2435eae27a";
+ sha256 = "sha256-iAZmqnffqrmFuxlQyOpEQzSCcL/hRAjuXKulOXoy4hY=";
};
});
prompt_toolkit = super.prompt_toolkit.overridePythonAttrs (oldAttrs: rec {
@@ -18,34 +18,29 @@ let
sha256 = "1nr990i4b04rnlw1ghd0xmgvvvhih698mb6lb6jylr76cs7zcnpi";
};
});
- s3transfer = super.s3transfer.overridePythonAttrs (oldAttrs: rec {
- version = "0.4.2";
- src = oldAttrs.src.override {
- inherit version;
- sha256 = "sha256-ywIvSxZVHt67sxo3fT8JYA262nNj2MXbeXbn9Hcy4bI=";
- };
- });
};
};
in
with py.pkgs; buildPythonApplication rec {
pname = "awscli2";
- version = "2.2.4"; # N.B: if you change this, change botocore to a matching version too
+ version = "2.2.14"; # N.B: if you change this, change botocore to a matching version too
src = fetchFromGitHub {
owner = "aws";
repo = "aws-cli";
rev = version;
- sha256 = "sha256-MctW31X012DXY16qS6AP6nLiaAt/cuA8iMwGm0oXi6M=";
+ sha256 = "sha256-LU9Tqzdi8ULZ5y3FbfSXdrip4NcxFkXRCTpVGo05LcM=";
};
postPatch = ''
- substituteInPlace setup.py --replace "colorama>=0.2.5,<0.4.4" "colorama>=0.2.5"
- substituteInPlace setup.py --replace "cryptography>=3.3.2,<3.4.0" "cryptography>=3.3.2"
- substituteInPlace setup.py --replace "docutils>=0.10,<0.16" "docutils>=0.10"
- substituteInPlace setup.py --replace "ruamel.yaml>=0.15.0,<0.16.0" "ruamel.yaml>=0.15.0"
- substituteInPlace setup.py --replace "wcwidth<0.2.0" "wcwidth"
+ substituteInPlace setup.py \
+ --replace "awscrt==0.11.13" "awscrt" \
+ --replace "colorama>=0.2.5,<0.4.4" "colorama" \
+ --replace "cryptography>=3.3.2,<3.4.0" "cryptography" \
+ --replace "docutils>=0.10,<0.16" "docutils" \
+ --replace "ruamel.yaml>=0.15.0,<0.16.0" "ruamel.yaml" \
+ --replace "wcwidth<0.2.0" "wcwidth"
'';
checkInputs = [ jsonschema mock nose ];
diff --git a/pkgs/tools/admin/azure-cli/python-packages.nix b/pkgs/tools/admin/azure-cli/python-packages.nix
index 228fb4503cf6..64823278d6da 100644
--- a/pkgs/tools/admin/azure-cli/python-packages.nix
+++ b/pkgs/tools/admin/azure-cli/python-packages.nix
@@ -6,7 +6,7 @@ let
prePatch = (attrs.prePatch or "") + ''
rm -f azure_bdist_wheel.py tox.ini
substituteInPlace setup.py \
- --replace "cryptography>=2.3.1,<3.0.0" "cryptography"
+ --replace "cryptography>=3.2,<3.4" "cryptography"
sed -i "/azure-namespace-package/c\ " setup.cfg
'';
@@ -119,6 +119,12 @@ let
portalocker
];
+ # upstream doesn't update this requirement probably because they use pip
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace "portalocker~=1.6" "portalocker"
+ '';
+
# ignore flaky test
checkPhase = ''
cd azure
diff --git a/pkgs/tools/graphics/yaxg/default.nix b/pkgs/tools/graphics/yaxg/default.nix
index 349303346f42..9d83ae71d333 100644
--- a/pkgs/tools/graphics/yaxg/default.nix
+++ b/pkgs/tools/graphics/yaxg/default.nix
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, makeWrapper,
- maim, slop, ffmpeg_3, byzanz, libnotify, xdpyinfo }:
+ maim, slop, ffmpeg, byzanz, libnotify, xdpyinfo }:
stdenv.mkDerivation rec {
pname = "yaxg";
@@ -13,13 +13,13 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ makeWrapper ];
- buildInputs = [ maim slop ffmpeg_3 byzanz libnotify xdpyinfo ];
+ buildInputs = [ maim slop ffmpeg byzanz libnotify xdpyinfo ];
installPhase = ''
mkdir -p $out/bin/
mv yaxg $out/bin/
chmod +x $out/bin/yaxg
- wrapProgram $out/bin/yaxg --prefix PATH : ${ lib.makeBinPath [ maim slop ffmpeg_3 byzanz libnotify xdpyinfo ]}
+ wrapProgram $out/bin/yaxg --prefix PATH : ${ lib.makeBinPath [ maim slop ffmpeg byzanz libnotify xdpyinfo ]}
'';
meta = with lib; {
diff --git a/pkgs/tools/misc/flashrom/default.nix b/pkgs/tools/misc/flashrom/default.nix
index 66a8b213403c..07a2d02b0b2a 100644
--- a/pkgs/tools/misc/flashrom/default.nix
+++ b/pkgs/tools/misc/flashrom/default.nix
@@ -19,11 +19,17 @@ stdenv.mkDerivation rec {
sha256 = "0ax4kqnh7kd3z120ypgp73qy1knz47l6qxsqzrfkd97mh5cdky71";
};
+ postPatch = ''
+ substituteInPlace util/z60_flashrom.rules \
+ --replace "plugdev" "flashrom"
+ '';
+
# Meson build doesn't build and install manpage. Only Makefile can.
# Build manpage from source directory. Here we're inside the ./build subdirectory
postInstall = ''
make flashrom.8 -C ..
installManPage ../flashrom.8
+ install -Dm644 ../util/z60_flashrom.rules $out/etc/udev/rules.d/flashrom.rules
'';
mesonFlags = lib.optionals stdenv.isAarch64 [ "-Dpciutils=false" ];
diff --git a/pkgs/tools/misc/tmuxp/default.nix b/pkgs/tools/misc/tmuxp/default.nix
index 9e97f0d892bf..5820cbbba2c0 100644
--- a/pkgs/tools/misc/tmuxp/default.nix
+++ b/pkgs/tools/misc/tmuxp/default.nix
@@ -1,36 +1,32 @@
-{ lib, python }:
+{ lib, python3Packages }:
-with python.pkgs;
+let
+ pypkgs = python3Packages;
-buildPythonApplication rec {
+in
+pypkgs.buildPythonApplication rec {
pname = "tmuxp";
- version = "1.7.2";
+ version = "1.9.2";
- src = fetchPypi {
+ src = pypkgs.fetchPypi {
inherit pname version;
- sha256 = "14296b62db260420d4600dcd805408ea908b3a78d4ea0a6a403d092fdbf6d075";
+ sha256 = "sha256-3RlTbIq7UGvEESMvncq97bhjJw8O4m+0aFVZgBQOwkM=";
};
- postPatch = ''
- sed -i 's/==.*$//' requirements/base.txt requirements/test.txt
- '';
-
- checkInputs = [
- pytest
- pytest-rerunfailures
- ];
-
# No tests in archive
doCheck = false;
- propagatedBuildInputs = [
- click colorama kaptan libtmux
+ propagatedBuildInputs = with pypkgs; [
+ click
+ colorama
+ kaptan
+ libtmux
];
meta = with lib; {
description = "Manage tmux workspaces from JSON and YAML";
homepage = "https://tmuxp.git-pull.com/";
license = licenses.bsd3;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ peterhoeg ];
};
}
diff --git a/pkgs/tools/networking/stevenblack-blocklist/default.nix b/pkgs/tools/networking/stevenblack-blocklist/default.nix
index 2a907dcf1280..9edb878a53f2 100644
--- a/pkgs/tools/networking/stevenblack-blocklist/default.nix
+++ b/pkgs/tools/networking/stevenblack-blocklist/default.nix
@@ -1,7 +1,7 @@
{ lib, fetchFromGitHub }:
let
- version = "3.7.10";
+ version = "3.7.11";
in
fetchFromGitHub {
name = "stevenblack-blocklist-${version}";
@@ -9,7 +9,7 @@ fetchFromGitHub {
owner = "StevenBlack";
repo = "hosts";
rev = version;
- sha256 = "sha256-22k52aW7Uu41414tGOHViBM8zxAwoZYY5Mi/TJH9mtE=";
+ sha256 = "sha256-hoYh2FdZGY/4/QmrqZubJYHP3bBcnUQFR9C7dfVTnWE=";
meta = with lib; {
description = "Unified hosts file with base extensions";
diff --git a/pkgs/tools/system/natscli/default.nix b/pkgs/tools/system/natscli/default.nix
index dbf85f9b7329..1b4a173d504a 100644
--- a/pkgs/tools/system/natscli/default.nix
+++ b/pkgs/tools/system/natscli/default.nix
@@ -5,16 +5,16 @@
buildGoModule rec {
pname = "natscli";
- version = "0.0.22";
+ version = "0.0.24";
src = fetchFromGitHub {
owner = "nats-io";
repo = pname;
rev = version;
- sha256 = "1qc6lpgl878kc316z10x59px6jyfzdwsj7fdr8k4ayln0lplvbq3";
+ sha256 = "11rpgvcnd2m4g0jnv6g0zdvnhs37jwn1c4hc86xgnk2vipvy0nw2";
};
- vendorSha256 = "1a9d7hqj43qdh0h7pc5wckqshi8lacf6m2107wymzzz62j1msy26";
+ vendorSha256 = "0nrgbwc10pp7adj0w1jjj6677y2dpqq969ij7i0pmvr08ni95sxw";
meta = with lib; {
description = "NATS Command Line Interface";
diff --git a/pkgs/tools/video/bento4/default.nix b/pkgs/tools/video/bento4/default.nix
index 6ee7c844994e..00180078d9d9 100644
--- a/pkgs/tools/video/bento4/default.nix
+++ b/pkgs/tools/video/bento4/default.nix
@@ -3,25 +3,29 @@
}:
stdenv.mkDerivation rec {
pname = "bento4";
- version = "1.6.0-637";
+ version = "1.6.0-638";
src = fetchFromGitHub {
owner = "axiomatic-systems";
repo = "Bento4";
rev = "v${version}";
- sha256 = "0iwqi71nj0iczffvpxmz0prvmmnyiqypfwvzivkh38wl0br82bkp";
+ sha256 = "1hxr4lds4dl46advshk7azg28fcpcjaa5pzk2zzpsc9l69s0bnxk";
};
- patches = [ ./libap4.patch ];
+ patches = [
+ ./libap4.patch # include all libraries as shared, not static
+ ];
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
installPhase = ''
+ runHook preInstall
mkdir -p $out/{lib,bin}
find -iname '*.so' -exec mv --target-directory="$out/lib" {} \;
find -maxdepth 1 -executable -type f -exec mv --target-directory="$out/bin" {} \;
+ runHook postInstall
'';
meta = with lib; {
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 88f2d2548ee0..0e616c611939 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1300,6 +1300,8 @@ in
bcachefs-tools = callPackage ../tools/filesystems/bcachefs-tools { };
+ bisq-desktop = callPackage ../applications/blockchains/bisq-desktop { };
+
bit = callPackage ../applications/version-management/git-and-tools/bit { };
bitwarden = callPackage ../tools/security/bitwarden { };
@@ -22084,6 +22086,7 @@ in
inherit (plasma5Packages) breeze-icons;
};
flat-remix-gtk = callPackage ../data/themes/flat-remix-gtk { };
+ flat-remix-gnome = callPackage ../data/themes/flat-remix-gnome { };
font-awesome_4 = (callPackage ../data/fonts/font-awesome-5 { }).v4;
font-awesome_5 = (callPackage ../data/fonts/font-awesome-5 { }).v5;
@@ -23659,6 +23662,8 @@ in
haruna = libsForQt5.callPackage ../applications/video/haruna { };
+ helix = callPackage ../applications/editors/helix { };
+
icesl = callPackage ../applications/misc/icesl { };
keepassx = callPackage ../applications/misc/keepassx { };
@@ -25712,6 +25717,8 @@ in
nwg-menu = callPackage ../applications/misc/nwg-menu { };
+ nwg-panel = callPackage ../applications/misc/nwg-panel { };
+
ocenaudio = callPackage ../applications/audio/ocenaudio { };
onlyoffice-bin = callPackage ../applications/office/onlyoffice-bin { };
@@ -27258,6 +27265,8 @@ in
trayer = callPackage ../applications/window-managers/trayer { };
+ tinywl = callPackage ../applications/window-managers/tinywl { };
+
tinywm = callPackage ../applications/window-managers/tinywm { };
tree-from-tags = callPackage ../applications/audio/tree-from-tags { };
@@ -29881,6 +29890,18 @@ in
rubiks = callPackage ../development/libraries/science/math/rubiks { };
+ p4est-sc = callPackage ../development/libraries/science/math/p4est-sc {
+ p4est-sc-debugEnable = false;
+ };
+
+ p4est-sc-dbg = callPackage ../development/libraries/science/math/p4est-sc { };
+
+ p4est = callPackage ../development/libraries/science/math/p4est { };
+
+ p4est-dbg = callPackage ../development/libraries/science/math/p4est {
+ p4est-sc = p4est-sc-dbg;
+ };
+
petsc = callPackage ../development/libraries/science/math/petsc { };
parmetis = callPackage ../development/libraries/science/math/parmetis { };
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index f79b7a4fc76e..99c6294ecadb 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -5363,6 +5363,8 @@ in {
python-ecobee-api = callPackage ../development/python-modules/python-ecobee-api { };
+ python-ipmi = callPackage ../development/python-modules/python-ipmi { };
+
python-izone = callPackage ../development/python-modules/python-izone { };
python-juicenet = callPackage ../development/python-modules/python-juicenet { };