diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 8e77ec4ff31..6e3cba91d33 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -6466,6 +6466,12 @@
fingerprint = "86E6 792F C27B FD47 8860 C110 91F3 B339 B9A0 2A3D";
}];
};
+ psanford = {
+ email = "psanford@sanford.io";
+ github = "psanford";
+ githubId = 33375;
+ name = "Peter Sanford";
+ };
pshendry = {
email = "paul@pshendry.com";
github = "pshendry";
diff --git a/nixos/modules/services/networking/wg-quick.nix b/nixos/modules/services/networking/wg-quick.nix
index ff1bdeed9f4..02fe40a22a1 100644
--- a/nixos/modules/services/networking/wg-quick.nix
+++ b/nixos/modules/services/networking/wg-quick.nix
@@ -29,7 +29,7 @@ let
type = with types; nullOr str;
default = null;
description = ''
- Base64 private key generated by wg genkey.
+ Base64 private key generated by wg genkey.
Warning: Consider using privateKeyFile instead if you do not
want to store the key in the world-readable Nix store.
@@ -41,7 +41,7 @@ let
type = with types; nullOr str;
default = null;
description = ''
- Private key file as generated by wg genkey.
+ Private key file as generated by wg genkey.
'';
};
@@ -106,9 +106,9 @@ let
description = ''
The kernel routing table to add this interface's
associated routes to. Setting this is useful for e.g. policy routing
- ("ip rule") or virtual routing and forwarding ("ip vrf"). Both numeric
- table IDs and table names (/etc/rt_tables) can be used. Defaults to
- "main".
+ ("ip rule") or virtual routing and forwarding ("ip vrf"). Both
+ numeric table IDs and table names (/etc/rt_tables) can be used.
+ Defaults to "main".
'';
};
@@ -139,7 +139,7 @@ let
publicKey = mkOption {
example = "xTIBA5rboUvnH4htodjb6e697QjLERt1NAB4mZqp8Dg=";
type = types.str;
- description = "The base64 public key the peer.";
+ description = "The base64 public key to the peer.";
};
presharedKey = mkOption {
@@ -147,8 +147,8 @@ let
example = "rVXs/Ni9tu3oDBLS4hOyAUAa1qTWVA3loR8eL20os3I=";
type = with types; nullOr str;
description = ''
- Base64 preshared key generated by wg genpsk. Optional,
- and may be omitted. This option adds an additional layer of
+ Base64 preshared key generated by wg genpsk.
+ Optional, and may be omitted. This option adds an additional layer of
symmetric-key cryptography to be mixed into the already existing
public-key cryptography, for post-quantum resistance.
@@ -162,8 +162,8 @@ let
example = "/private/wireguard_psk";
type = with types; nullOr str;
description = ''
- File pointing to preshared key as generated by wg pensk. Optional,
- and may be omitted. This option adds an additional layer of
+ File pointing to preshared key as generated by wg genpsk.
+ Optional, and may be omitted. This option adds an additional layer of
symmetric-key cryptography to be mixed into the already existing
public-key cryptography, for post-quantum resistance.
'';
diff --git a/nixos/modules/services/networking/wireguard.nix b/nixos/modules/services/networking/wireguard.nix
index e8f83f6dd8b..e07020349cf 100644
--- a/nixos/modules/services/networking/wireguard.nix
+++ b/nixos/modules/services/networking/wireguard.nix
@@ -91,11 +91,13 @@ let
table = mkOption {
default = "main";
type = types.str;
- description = ''The kernel routing table to add this interface's
- associated routes to. Setting this is useful for e.g. policy routing
- ("ip rule") or virtual routing and forwarding ("ip vrf"). Both numeric
- table IDs and table names (/etc/rt_tables) can be used. Defaults to
- "main".'';
+ description = ''
+ The kernel routing table to add this interface's
+ associated routes to. Setting this is useful for e.g. policy routing
+ ("ip rule") or virtual routing and forwarding ("ip vrf"). Both
+ numeric table IDs and table names (/etc/rt_tables) can be used.
+ Defaults to "main".
+ '';
};
peers = mkOption {
@@ -174,7 +176,7 @@ let
example = "/private/wireguard_psk";
type = with types; nullOr str;
description = ''
- File pointing to preshared key as generated by wg pensk.
+ File pointing to preshared key as generated by wg genpsk.
Optional, and may be omitted. This option adds an additional layer of
symmetric-key cryptography to be mixed into the already existing
public-key cryptography, for post-quantum resistance.
@@ -217,7 +219,6 @@ let
};
-
generatePathUnit = name: values:
assert (values.privateKey == null);
assert (values.privateKeyFile != null);
diff --git a/nixos/modules/virtualisation/containers.nix b/nixos/modules/virtualisation/containers.nix
index 55546ebfda8..3a6767d84a9 100644
--- a/nixos/modules/virtualisation/containers.nix
+++ b/nixos/modules/virtualisation/containers.nix
@@ -28,7 +28,7 @@ in
(
lib.mkRemovedOptionModule
[ "virtualisation" "containers" "users" ]
- "All users with `isNormaUser = true` set now get appropriate subuid/subgid mappings."
+ "All users with `isNormalUser = true` set now get appropriate subuid/subgid mappings."
)
];
diff --git a/pkgs/applications/audio/bsequencer/default.nix b/pkgs/applications/audio/bsequencer/default.nix
index bb45a846b1b..37dcada961d 100644
--- a/pkgs/applications/audio/bsequencer/default.nix
+++ b/pkgs/applications/audio/bsequencer/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "BSEQuencer";
- version = "1.4.2";
+ version = "1.6.0";
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = "${version}";
- sha256 = "1fz0p0ba00b7k7a8q9mxwj01jwl8xwh9a2npn00pbbdrg9zv4fdr";
+ sha256 = "0w21kzq695xy4i1r6xvvh7sad5m0rlmdgc7ykmrlzfsm1252dz80";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/applications/graphics/mypaint/default.nix b/pkgs/applications/graphics/mypaint/default.nix
index 5ebbee0e4d6..b4dd86c3726 100644
--- a/pkgs/applications/graphics/mypaint/default.nix
+++ b/pkgs/applications/graphics/mypaint/default.nix
@@ -1,7 +1,7 @@
{ stdenv
, fetchFromGitHub
, gtk3
-, intltool
+, gettext
, json_c
, lcms2
, libpng
@@ -20,18 +20,18 @@ let
inherit (python3.pkgs) pycairo pygobject3 numpy buildPythonApplication;
in buildPythonApplication rec {
pname = "mypaint";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchFromGitHub {
owner = "mypaint";
repo = "mypaint";
rev = "v${version}";
- sha256 = "180kyilhf81ndhwl1hlvy82gh6hxpcvka2d1nkghbpgy431rls6r";
+ sha256 = "rVKcxzWZRLcuxK8xRyRgvitXAh4uOEyqHswLeTdA2Mk=";
fetchSubmodules = true;
};
nativeBuildInputs = [
- intltool
+ gettext
pkgconfig
swig
wrapGAppsHook
diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix
index 7eef4049e6a..3fdc20b0c5e 100644
--- a/pkgs/applications/kde/default.nix
+++ b/pkgs/applications/kde/default.nix
@@ -83,6 +83,7 @@ let
eventviews = callPackage ./eventviews.nix {};
ffmpegthumbs = callPackage ./ffmpegthumbs.nix { };
filelight = callPackage ./filelight.nix {};
+ granatier = callPackage ./granatier.nix {};
grantleetheme = callPackage ./grantleetheme {};
gwenview = callPackage ./gwenview.nix {};
incidenceeditor = callPackage ./incidenceeditor.nix {};
diff --git a/pkgs/applications/kde/granatier.nix b/pkgs/applications/kde/granatier.nix
new file mode 100644
index 00000000000..f0b7cde5b2c
--- /dev/null
+++ b/pkgs/applications/kde/granatier.nix
@@ -0,0 +1,23 @@
+{ mkDerivation, lib
+, libkdegames, extra-cmake-modules
+, kdeclarative, knewstuff
+}:
+
+mkDerivation {
+ name = "granatier";
+ meta = with lib; {
+ homepage = "https://kde.org/applications/en/games/org.kde.granatier";
+ description = "Granatier is a clone of the classic Bomberman game";
+ maintainers = with maintainers; [ freezeboy ];
+ license = licenses.gpl2Plus;
+ platforms = platforms.linux;
+ };
+ nativeBuildInputs = [
+ extra-cmake-modules
+ ];
+ buildInputs = [
+ kdeclarative
+ knewstuff
+ libkdegames
+ ];
+}
diff --git a/pkgs/applications/misc/pdfarranger/default.nix b/pkgs/applications/misc/pdfarranger/default.nix
index c43ae1de9a1..b8f7c4641d2 100644
--- a/pkgs/applications/misc/pdfarranger/default.nix
+++ b/pkgs/applications/misc/pdfarranger/default.nix
@@ -5,13 +5,13 @@
python3Packages.buildPythonApplication rec {
pname = "pdfarranger";
- version = "1.5.3";
+ version = "1.6.0";
src = fetchFromGitHub {
owner = "jeromerobert";
repo = pname;
rev = version;
- sha256 = "0a9ap7p8iw57sn5nmhim7gp5as8gj6ir6l3p0bpmg4iqjsr4169h";
+ sha256 = "03siz4ar6flyvrrgh7hr7sslc6n9x5d9i13lc5rm2qnssd0qdich";
};
nativeBuildInputs = [
@@ -27,6 +27,7 @@ python3Packages.buildPythonApplication rec {
propagatedBuildInputs = with python3Packages; [
pygobject3
pikepdf
+ img2pdf
setuptools
];
diff --git a/pkgs/applications/networking/browsers/asuka/cargo-lock.patch b/pkgs/applications/networking/browsers/asuka/cargo-lock.patch
deleted file mode 100644
index 1d3990bc62f..00000000000
--- a/pkgs/applications/networking/browsers/asuka/cargo-lock.patch
+++ /dev/null
@@ -1,1351 +0,0 @@
-diff --git i/Cargo.lock w/Cargo.lock
-index 6807c00..00b2c60 100644
---- i/Cargo.lock
-+++ w/Cargo.lock
-@@ -4,29 +4,34 @@
- name = "aho-corasick"
- version = "0.7.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d"
- dependencies = [
-- "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "memchr",
- ]
-
- [[package]]
- name = "arc-swap"
- version = "0.4.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d7b8a9123b8027467bce0099fe556c628a53c8d83df0507084c31e9ba2e39aff"
-
- [[package]]
- name = "array-macro"
- version = "1.0.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7d034edd76d4e7adc314c95400941dedc89bd4337d565bf87f6b69d3b20dc4de"
-
- [[package]]
- name = "arrayref"
- version = "0.3.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee"
-
- [[package]]
- name = "arrayvec"
- version = "0.5.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
-
- [[package]]
- name = "asuka"
-@@ -38,8 +43,6 @@ dependencies = [
- "lazy_static",
- "native-tls",
- "open",
-- "openssl",
-- "openssl-sys",
- "regex",
- "tempfile",
- "textwrap",
-@@ -50,769 +53,861 @@ dependencies = [
- name = "autocfg"
- version = "0.1.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
-
- [[package]]
- name = "backtrace"
- version = "0.3.40"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea"
- dependencies = [
-- "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)",
-- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "backtrace-sys",
-+ "cfg-if",
-+ "libc",
-+ "rustc-demangle",
- ]
-
- [[package]]
- name = "backtrace-sys"
- version = "0.1.32"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491"
- dependencies = [
-- "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cc",
-+ "libc",
- ]
-
- [[package]]
- name = "base64"
- version = "0.10.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
- dependencies = [
-- "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "byteorder",
- ]
-
- [[package]]
- name = "bitflags"
- version = "1.2.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
-
- [[package]]
- name = "blake2b_simd"
- version = "0.5.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b83b7baab1e671718d78204225800d6b170e648188ac7dc992e9d6bddf87d0c0"
- dependencies = [
-- "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
-- "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
-- "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "arrayref",
-+ "arrayvec",
-+ "constant_time_eq",
- ]
-
- [[package]]
- name = "byteorder"
- version = "1.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
-
- [[package]]
- name = "c2-chacha"
- version = "0.2.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb"
- dependencies = [
-- "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "ppv-lite86",
- ]
-
- [[package]]
- name = "cc"
- version = "1.0.47"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "aa87058dce70a3ff5621797f1506cb837edd02ac4c0ae642b4542dce802908b8"
-
- [[package]]
- name = "cfg-if"
- version = "0.1.10"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
-
- [[package]]
- name = "chrono"
- version = "0.4.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68"
- dependencies = [
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
-- "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc",
-+ "num-integer",
-+ "num-traits",
-+ "time",
- ]
-
- [[package]]
- name = "cloudabi"
- version = "0.0.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
- dependencies = [
-- "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "bitflags",
- ]
-
- [[package]]
- name = "constant_time_eq"
- version = "0.1.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "995a44c877f9212528ccc74b21a232f66ad69001e40ede5bcee2ac9ef2657120"
-
- [[package]]
- name = "core-foundation"
- version = "0.6.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d"
- dependencies = [
-- "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "core-foundation-sys",
-+ "libc",
- ]
-
- [[package]]
- name = "core-foundation-sys"
- version = "0.6.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b"
-
- [[package]]
- name = "crossbeam-channel"
- version = "0.3.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa"
- dependencies = [
-- "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "crossbeam-utils",
- ]
-
- [[package]]
- name = "crossbeam-utils"
- version = "0.6.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6"
- dependencies = [
-- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cfg-if",
-+ "lazy_static",
- ]
-
- [[package]]
- name = "cursive"
- version = "0.13.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6261747aa936aab19fc4ac3a2c1a8eee8fb5862ba96fb1e524ee56cb520d9caf"
- dependencies = [
-- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-- "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
-- "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
-- "enum-map 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
-- "enumset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
-- "hashbrown 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-- "maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "ncurses 5.99.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "signal-hook 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
-- "term_size 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-- "toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
-- "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
-- "xi-unicode 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cfg-if",
-+ "chrono",
-+ "crossbeam-channel",
-+ "enum-map",
-+ "enumset",
-+ "hashbrown",
-+ "lazy_static",
-+ "libc",
-+ "log",
-+ "maplit",
-+ "ncurses",
-+ "num",
-+ "owning_ref",
-+ "signal-hook",
-+ "term_size",
-+ "toml",
-+ "unicode-segmentation",
-+ "unicode-width",
-+ "xi-unicode",
- ]
-
- [[package]]
- name = "darling"
- version = "0.10.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
- dependencies = [
-- "darling_core 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "darling_macro 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "darling_core",
-+ "darling_macro",
- ]
-
- [[package]]
- name = "darling_core"
- version = "0.10.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
- dependencies = [
-- "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
-- "ident_case 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
-- "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
-- "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "strsim 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "fnv",
-+ "ident_case",
-+ "proc-macro2",
-+ "quote",
-+ "strsim",
-+ "syn",
- ]
-
- [[package]]
- name = "darling_macro"
- version = "0.10.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
- dependencies = [
-- "darling_core 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "darling_core",
-+ "quote",
-+ "syn",
- ]
-
- [[package]]
- name = "dirs"
- version = "2.0.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
- dependencies = [
-- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-- "dirs-sys 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cfg-if",
-+ "dirs-sys",
- ]
-
- [[package]]
- name = "dirs-sys"
- version = "0.3.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "afa0b23de8fd801745c471deffa6e12d248f962c9fd4b4c33787b055599bde7b"
- dependencies = [
-- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cfg-if",
-+ "libc",
-+ "redox_users",
-+ "winapi 0.3.8",
- ]
-
- [[package]]
- name = "enum-map"
- version = "0.6.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "75eb4afb8170adb4120b13700c1af58c3137cd72e4c56e282045af5c29ab5329"
- dependencies = [
-- "array-macro 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
-- "enum-map-derive 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "array-macro",
-+ "enum-map-derive",
- ]
-
- [[package]]
- name = "enum-map-derive"
- version = "0.4.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e57001dfb2532f5a103ff869656887fae9a8defa7d236f3e39d2ee86ed629ad7"
- dependencies = [
-- "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
-- "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "proc-macro2",
-+ "quote",
-+ "syn",
- ]
-
- [[package]]
- name = "enumset"
- version = "0.4.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "57b811aef4ff1cc938f13bbec348f0ecbfc2bb565b7ab90161c9f0b2805edc8a"
- dependencies = [
-- "enumset_derive 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "enumset_derive",
-+ "num-traits",
- ]
-
- [[package]]
- name = "enumset_derive"
- version = "0.4.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b184c2d0714bbeeb6440481a19c78530aa210654d99529f13d2f860a1b447598"
- dependencies = [
-- "darling 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
-- "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "darling",
-+ "proc-macro2",
-+ "quote",
-+ "syn",
- ]
-
- [[package]]
- name = "failure"
- version = "0.1.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f8273f13c977665c5db7eb2b99ae520952fe5ac831ae4cd09d80c4c7042b5ed9"
- dependencies = [
-- "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)",
-- "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "backtrace",
-+ "failure_derive",
- ]
-
- [[package]]
- name = "failure_derive"
- version = "0.1.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0bc225b78e0391e4b8683440bf2e63c2deeeb2ce5189eab46e2b68c6d3725d08"
- dependencies = [
-- "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
-- "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
-- "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+ "synstructure",
- ]
-
- [[package]]
- name = "fnv"
- version = "1.0.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"
-
- [[package]]
- name = "foreign-types"
- version = "0.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
- dependencies = [
-- "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "foreign-types-shared",
- ]
-
- [[package]]
- name = "foreign-types-shared"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
-
- [[package]]
- name = "fuchsia-cprng"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
-
- [[package]]
- name = "getrandom"
- version = "0.1.13"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e7db7ca94ed4cd01190ceee0d8a8052f08a247aa1b469a7f68c6a3b71afcf407"
- dependencies = [
-- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cfg-if",
-+ "libc",
-+ "wasi",
- ]
-
- [[package]]
- name = "hashbrown"
- version = "0.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e1de41fb8dba9714efd92241565cdff73f78508c95697dd56787d3cba27e2353"
-
- [[package]]
- name = "ident_case"
- version = "1.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
-
- [[package]]
- name = "idna"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
- dependencies = [
-- "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
-- "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
-- "unicode-normalization 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "matches",
-+ "unicode-bidi",
-+ "unicode-normalization",
- ]
-
- [[package]]
- name = "json"
- version = "0.12.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b3ca41abbeb7615d56322a984e63be5e5d0a117dfaca86c14393e32a762ccac1"
-
- [[package]]
- name = "kernel32-sys"
- version = "0.2.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
- dependencies = [
-- "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
-- "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.2.8",
-+ "winapi-build",
- ]
-
- [[package]]
- name = "lazy_static"
- version = "1.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
-
- [[package]]
- name = "libc"
- version = "0.2.65"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8"
-
- [[package]]
- name = "log"
- version = "0.4.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
- dependencies = [
-- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cfg-if",
- ]
-
- [[package]]
- name = "maplit"
- version = "1.0.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
-
- [[package]]
- name = "matches"
- version = "0.1.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
-
- [[package]]
- name = "maybe-uninit"
- version = "2.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
-
- [[package]]
- name = "memchr"
- version = "2.2.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e"
-
- [[package]]
- name = "native-tls"
- version = "0.2.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e"
- dependencies = [
-- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
-- "openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)",
-- "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)",
-- "schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
-- "security-framework 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
-- "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
-- "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "lazy_static",
-+ "libc",
-+ "log",
-+ "openssl",
-+ "openssl-probe",
-+ "openssl-sys",
-+ "schannel",
-+ "security-framework",
-+ "security-framework-sys",
-+ "tempfile",
- ]
-
- [[package]]
- name = "ncurses"
- version = "5.99.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "15699bee2f37e9f8828c7b35b2bc70d13846db453f2d507713b758fabe536b82"
- dependencies = [
-- "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cc",
-+ "libc",
-+ "pkg-config",
- ]
-
- [[package]]
- name = "num"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cf4825417e1e1406b3782a8ce92f4d53f26ec055e3622e1881ca8e9f5f9e08db"
- dependencies = [
-- "num-complex 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-iter 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "num-complex",
-+ "num-integer",
-+ "num-iter",
-+ "num-rational",
-+ "num-traits",
- ]
-
- [[package]]
- name = "num-complex"
- version = "0.2.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "fcb0cf31fb3ff77e6d2a6ebd6800df7fdcd106f2ad89113c9130bcd07f93dffc"
- dependencies = [
-- "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "autocfg",
-+ "num-traits",
- ]
-
- [[package]]
- name = "num-integer"
- version = "0.1.41"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09"
- dependencies = [
-- "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "autocfg",
-+ "num-traits",
- ]
-
- [[package]]
- name = "num-iter"
- version = "0.1.39"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "76bd5272412d173d6bf9afdf98db8612bbabc9a7a830b7bfc9c188911716132e"
- dependencies = [
-- "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "autocfg",
-+ "num-integer",
-+ "num-traits",
- ]
-
- [[package]]
- name = "num-rational"
- version = "0.2.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f2885278d5fe2adc2f75ced642d52d879bffaceb5a2e0b1d4309ffdfb239b454"
- dependencies = [
-- "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
-- "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "autocfg",
-+ "num-integer",
-+ "num-traits",
- ]
-
- [[package]]
- name = "num-traits"
- version = "0.2.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "443c53b3c3531dfcbfa499d8893944db78474ad7a1d87fa2d94d1a2231693ac6"
- dependencies = [
-- "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "autocfg",
- ]
-
- [[package]]
- name = "open"
- version = "1.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "94b424e1086328b0df10235c6ff47be63708071881bead9e76997d9291c0134b"
- dependencies = [
-- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.3.8",
- ]
-
- [[package]]
- name = "openssl"
- version = "0.10.25"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2f372b2b53ce10fb823a337aaa674e3a7d072b957c6264d0f4ff0bd86e657449"
- dependencies = [
-- "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
-- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-- "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "bitflags",
-+ "cfg-if",
-+ "foreign-types",
-+ "lazy_static",
-+ "libc",
-+ "openssl-sys",
- ]
-
- [[package]]
- name = "openssl-probe"
- version = "0.1.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
-
- [[package]]
- name = "openssl-sys"
- version = "0.9.52"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c977d08e1312e2f7e4b86f9ebaa0ed3b19d1daff75fae88bbb88108afbd801fc"
- dependencies = [
-- "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
-- "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)",
-- "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "autocfg",
-+ "cc",
-+ "libc",
-+ "pkg-config",
-+ "vcpkg",
- ]
-
- [[package]]
- name = "owning_ref"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13"
- dependencies = [
-- "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "stable_deref_trait",
- ]
-
- [[package]]
- name = "percent-encoding"
- version = "2.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
-
- [[package]]
- name = "pkg-config"
- version = "0.3.17"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677"
-
- [[package]]
- name = "ppv-lite86"
- version = "0.2.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
-
- [[package]]
- name = "proc-macro2"
- version = "1.0.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27"
- dependencies = [
-- "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "unicode-xid",
- ]
-
- [[package]]
- name = "quote"
- version = "1.0.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
- dependencies = [
-- "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "proc-macro2",
- ]
-
- [[package]]
- name = "rand"
- version = "0.7.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412"
- dependencies = [
-- "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
-- "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
-- "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "getrandom",
-+ "libc",
-+ "rand_chacha",
-+ "rand_core 0.5.1",
-+ "rand_hc",
- ]
-
- [[package]]
- name = "rand_chacha"
- version = "0.2.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853"
- dependencies = [
-- "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
-- "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "c2-chacha",
-+ "rand_core 0.5.1",
- ]
-
- [[package]]
- name = "rand_core"
- version = "0.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
- dependencies = [
-- "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_core 0.4.2",
- ]
-
- [[package]]
- name = "rand_core"
- version = "0.4.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
-
- [[package]]
- name = "rand_core"
- version = "0.5.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
- dependencies = [
-- "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "getrandom",
- ]
-
- [[package]]
- name = "rand_hc"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
- dependencies = [
-- "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_core 0.5.1",
- ]
-
- [[package]]
- name = "rand_os"
- version = "0.1.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
- dependencies = [
-- "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
-- "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cloudabi",
-+ "fuchsia-cprng",
-+ "libc",
-+ "rand_core 0.4.2",
-+ "rdrand",
-+ "winapi 0.3.8",
- ]
-
- [[package]]
- name = "rdrand"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
- dependencies = [
-- "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "rand_core 0.3.1",
- ]
-
- [[package]]
- name = "redox_syscall"
- version = "0.1.56"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
-
- [[package]]
- name = "redox_users"
- version = "0.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4ecedbca3bf205f8d8f5c2b44d83cd0690e39ee84b951ed649e9f1841132b66d"
- dependencies = [
-- "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
-- "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
-- "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
-- "rust-argon2 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "failure",
-+ "rand_os",
-+ "redox_syscall",
-+ "rust-argon2",
- ]
-
- [[package]]
- name = "regex"
- version = "1.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd"
- dependencies = [
-- "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
-- "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
-- "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
-- "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "aho-corasick",
-+ "memchr",
-+ "regex-syntax",
-+ "thread_local",
- ]
-
- [[package]]
- name = "regex-syntax"
- version = "0.6.12"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716"
-
- [[package]]
- name = "remove_dir_all"
- version = "0.5.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
- dependencies = [
-- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi 0.3.8",
- ]
-
- [[package]]
- name = "rust-argon2"
- version = "0.5.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4ca4eaef519b494d1f2848fc602d18816fed808a981aedf4f1f00ceb7c9d32cf"
- dependencies = [
-- "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
-- "blake2b_simd 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)",
-- "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "base64",
-+ "blake2b_simd",
-+ "crossbeam-utils",
- ]
-
- [[package]]
- name = "rustc-demangle"
- version = "0.1.16"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
-
- [[package]]
- name = "schannel"
- version = "0.1.16"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "87f550b06b6cba9c8b8be3ee73f391990116bf527450d2556e9b9ce263b9a021"
- dependencies = [
-- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "lazy_static",
-+ "winapi 0.3.8",
- ]
-
- [[package]]
- name = "security-framework"
- version = "0.3.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "301c862a6d0ee78f124c5e1710205965fc5c553100dcda6d98f13ef87a763f04"
- dependencies = [
-- "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
-- "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "core-foundation",
-+ "core-foundation-sys",
-+ "libc",
-+ "security-framework-sys",
- ]
-
- [[package]]
- name = "security-framework-sys"
- version = "0.3.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e31493fc37615debb8c5090a7aeb4a9730bc61e77ab10b9af59f1a202284f895"
- dependencies = [
-- "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "core-foundation-sys",
- ]
-
- [[package]]
- name = "serde"
- version = "1.0.102"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0"
-
- [[package]]
- name = "signal-hook"
- version = "0.1.11"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cb543aecec4ba8b867f41284729ddfdb7e8fcd70ec3d7d37fca3007a4b53675f"
- dependencies = [
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "signal-hook-registry 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc",
-+ "signal-hook-registry",
- ]
-
- [[package]]
- name = "signal-hook-registry"
- version = "1.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "1797d48f38f91643908bb14e35e79928f9f4b3cefb2420a564dde0991b4358dc"
- dependencies = [
-- "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "arc-swap",
-+ "libc",
- ]
-
- [[package]]
- name = "smallvec"
- version = "0.6.13"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"
- dependencies = [
-- "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "maybe-uninit",
- ]
-
- [[package]]
- name = "stable_deref_trait"
- version = "1.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
-
- [[package]]
- name = "strsim"
- version = "0.9.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "032c03039aae92b350aad2e3779c352e104d919cb192ba2fabbd7b831ce4f0f6"
-
- [[package]]
- name = "syn"
- version = "1.0.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92"
- dependencies = [
-- "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
-- "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "proc-macro2",
-+ "quote",
-+ "unicode-xid",
- ]
-
- [[package]]
- name = "synstructure"
- version = "0.12.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545"
- dependencies = [
-- "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
-- "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
-- "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "proc-macro2",
-+ "quote",
-+ "syn",
-+ "unicode-xid",
- ]
-
- [[package]]
- name = "tempfile"
- version = "3.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
- dependencies = [
-- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
-- "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "cfg-if",
-+ "libc",
-+ "rand",
-+ "redox_syscall",
-+ "remove_dir_all",
-+ "winapi 0.3.8",
- ]
-
- [[package]]
- name = "term_size"
- version = "0.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9e5b9a66db815dcfd2da92db471106457082577c3c278d4138ab3e3b4e189327"
- dependencies = [
-- "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "kernel32-sys",
-+ "libc",
-+ "winapi 0.2.8",
- ]
-
- [[package]]
-@@ -828,225 +923,126 @@ dependencies = [
- name = "thread_local"
- version = "0.3.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
- dependencies = [
-- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "lazy_static",
- ]
-
- [[package]]
- name = "time"
- version = "0.1.42"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
- dependencies = [
-- "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
-- "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
-- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "libc",
-+ "redox_syscall",
-+ "winapi 0.3.8",
- ]
-
- [[package]]
- name = "toml"
- version = "0.5.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "01d1404644c8b12b16bfcffa4322403a91a451584daaaa7c28d3152e6cbc98cf"
- dependencies = [
-- "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "serde",
- ]
-
- [[package]]
- name = "unicode-bidi"
- version = "0.3.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
- dependencies = [
-- "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "matches",
- ]
-
- [[package]]
- name = "unicode-normalization"
- version = "0.1.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "09c8070a9942f5e7cfccd93f490fdebd230ee3c3c9f107cb25bad5351ef671cf"
- dependencies = [
-- "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "smallvec",
- ]
-
- [[package]]
- name = "unicode-segmentation"
- version = "1.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
-
- [[package]]
- name = "unicode-width"
- version = "0.1.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20"
-
- [[package]]
- name = "unicode-xid"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
-
- [[package]]
- name = "url"
- version = "2.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "75b414f6c464c879d7f9babf951f23bc3743fb7313c081b2e6ca719067ea9d61"
- dependencies = [
-- "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
-- "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "idna",
-+ "matches",
-+ "percent-encoding",
- ]
-
- [[package]]
- name = "vcpkg"
- version = "0.2.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "33dd455d0f96e90a75803cfeb7f948768c08d70a6de9a8d2362461935698bf95"
-
- [[package]]
- name = "wasi"
- version = "0.7.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d"
-
- [[package]]
- name = "winapi"
- version = "0.2.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
-
- [[package]]
- name = "winapi"
- version = "0.3.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
- dependencies = [
-- "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-- "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
-+ "winapi-i686-pc-windows-gnu",
-+ "winapi-x86_64-pc-windows-gnu",
- ]
-
- [[package]]
- name = "winapi-build"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
-
- [[package]]
- name = "winapi-i686-pc-windows-gnu"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
-
- [[package]]
- name = "winapi-x86_64-pc-windows-gnu"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
-
- [[package]]
- name = "xi-unicode"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
--
--[metadata]
--"checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d"
--"checksum arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d7b8a9123b8027467bce0099fe556c628a53c8d83df0507084c31e9ba2e39aff"
--"checksum array-macro 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7d034edd76d4e7adc314c95400941dedc89bd4337d565bf87f6b69d3b20dc4de"
--"checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee"
--"checksum arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
--"checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
--"checksum backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)" = "924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea"
--"checksum backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491"
--"checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
--"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
--"checksum blake2b_simd 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b83b7baab1e671718d78204225800d6b170e648188ac7dc992e9d6bddf87d0c0"
--"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
--"checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb"
--"checksum cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" = "aa87058dce70a3ff5621797f1506cb837edd02ac4c0ae642b4542dce802908b8"
--"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
--"checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68"
--"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
--"checksum constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "995a44c877f9212528ccc74b21a232f66ad69001e40ede5bcee2ac9ef2657120"
--"checksum core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d"
--"checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b"
--"checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa"
--"checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6"
--"checksum cursive 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6261747aa936aab19fc4ac3a2c1a8eee8fb5862ba96fb1e524ee56cb520d9caf"
--"checksum darling 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
--"checksum darling_core 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
--"checksum darling_macro 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
--"checksum dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
--"checksum dirs-sys 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "afa0b23de8fd801745c471deffa6e12d248f962c9fd4b4c33787b055599bde7b"
--"checksum enum-map 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75eb4afb8170adb4120b13700c1af58c3137cd72e4c56e282045af5c29ab5329"
--"checksum enum-map-derive 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e57001dfb2532f5a103ff869656887fae9a8defa7d236f3e39d2ee86ed629ad7"
--"checksum enumset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "57b811aef4ff1cc938f13bbec348f0ecbfc2bb565b7ab90161c9f0b2805edc8a"
--"checksum enumset_derive 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b184c2d0714bbeeb6440481a19c78530aa210654d99529f13d2f860a1b447598"
--"checksum failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f8273f13c977665c5db7eb2b99ae520952fe5ac831ae4cd09d80c4c7042b5ed9"
--"checksum failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0bc225b78e0391e4b8683440bf2e63c2deeeb2ce5189eab46e2b68c6d3725d08"
--"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"
--"checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
--"checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
--"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
--"checksum getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e7db7ca94ed4cd01190ceee0d8a8052f08a247aa1b469a7f68c6a3b71afcf407"
--"checksum hashbrown 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e1de41fb8dba9714efd92241565cdff73f78508c95697dd56787d3cba27e2353"
--"checksum ident_case 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
--"checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
--"checksum json 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b3ca41abbeb7615d56322a984e63be5e5d0a117dfaca86c14393e32a762ccac1"
--"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
--"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
--"checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8"
--"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
--"checksum maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
--"checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
--"checksum maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
--"checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e"
--"checksum native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e"
--"checksum ncurses 5.99.0 (registry+https://github.com/rust-lang/crates.io-index)" = "15699bee2f37e9f8828c7b35b2bc70d13846db453f2d507713b758fabe536b82"
--"checksum num 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cf4825417e1e1406b3782a8ce92f4d53f26ec055e3622e1881ca8e9f5f9e08db"
--"checksum num-complex 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fcb0cf31fb3ff77e6d2a6ebd6800df7fdcd106f2ad89113c9130bcd07f93dffc"
--"checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09"
--"checksum num-iter 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "76bd5272412d173d6bf9afdf98db8612bbabc9a7a830b7bfc9c188911716132e"
--"checksum num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2885278d5fe2adc2f75ced642d52d879bffaceb5a2e0b1d4309ffdfb239b454"
--"checksum num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "443c53b3c3531dfcbfa499d8893944db78474ad7a1d87fa2d94d1a2231693ac6"
--"checksum open 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "94b424e1086328b0df10235c6ff47be63708071881bead9e76997d9291c0134b"
--"checksum openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2f372b2b53ce10fb823a337aaa674e3a7d072b957c6264d0f4ff0bd86e657449"
--"checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
--"checksum openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)" = "c977d08e1312e2f7e4b86f9ebaa0ed3b19d1daff75fae88bbb88108afbd801fc"
--"checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13"
--"checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
--"checksum pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677"
--"checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
--"checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27"
--"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
--"checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412"
--"checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853"
--"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
--"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
--"checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
--"checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
--"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
--"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
--"checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
--"checksum redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ecedbca3bf205f8d8f5c2b44d83cd0690e39ee84b951ed649e9f1841132b66d"
--"checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd"
--"checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716"
--"checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
--"checksum rust-argon2 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ca4eaef519b494d1f2848fc602d18816fed808a981aedf4f1f00ceb7c9d32cf"
--"checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
--"checksum schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "87f550b06b6cba9c8b8be3ee73f391990116bf527450d2556e9b9ce263b9a021"
--"checksum security-framework 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "301c862a6d0ee78f124c5e1710205965fc5c553100dcda6d98f13ef87a763f04"
--"checksum security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e31493fc37615debb8c5090a7aeb4a9730bc61e77ab10b9af59f1a202284f895"
--"checksum serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0"
--"checksum signal-hook 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "cb543aecec4ba8b867f41284729ddfdb7e8fcd70ec3d7d37fca3007a4b53675f"
--"checksum signal-hook-registry 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1797d48f38f91643908bb14e35e79928f9f4b3cefb2420a564dde0991b4358dc"
--"checksum smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"
--"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
--"checksum strsim 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "032c03039aae92b350aad2e3779c352e104d919cb192ba2fabbd7b831ce4f0f6"
--"checksum syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92"
--"checksum synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545"
--"checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
--"checksum term_size 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9e5b9a66db815dcfd2da92db471106457082577c3c278d4138ab3e3b4e189327"
--"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
--"checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
--"checksum toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "01d1404644c8b12b16bfcffa4322403a91a451584daaaa7c28d3152e6cbc98cf"
--"checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
--"checksum unicode-normalization 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "09c8070a9942f5e7cfccd93f490fdebd230ee3c3c9f107cb25bad5351ef671cf"
--"checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
--"checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20"
--"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
--"checksum url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "75b414f6c464c879d7f9babf951f23bc3743fb7313c081b2e6ca719067ea9d61"
--"checksum vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "33dd455d0f96e90a75803cfeb7f948768c08d70a6de9a8d2362461935698bf95"
--"checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d"
--"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
--"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
--"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
--"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
--"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
--"checksum xi-unicode 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7395cdb9d0a6219fa0ea77d08c946adf9c1984c72fcd443ace30365f3daadef7"
-+checksum = "7395cdb9d0a6219fa0ea77d08c946adf9c1984c72fcd443ace30365f3daadef7"
diff --git a/pkgs/applications/networking/browsers/asuka/default.nix b/pkgs/applications/networking/browsers/asuka/default.nix
index 458ab3064a9..89f4fda88a1 100644
--- a/pkgs/applications/networking/browsers/asuka/default.nix
+++ b/pkgs/applications/networking/browsers/asuka/default.nix
@@ -2,16 +2,14 @@
rustPlatform.buildRustPackage rec {
pname = "asuka";
- version = "0.8.0";
+ version = "0.8.1";
src = fetchurl {
url = "https://git.sr.ht/~julienxx/${pname}/archive/${version}.tar.gz";
- sha256 = "10hmsdwf2nrsmpycqa08vd31c6vhx7w5fhvv5a9f92sqp0lcavf0";
+ sha256 = "07i80qmdpwfdgwrk1gzs10wln91v23qjrsk0x134xf5mjnakxc06";
};
- cargoPatches = [ ./cargo-lock.patch ];
-
- cargoSha256 = "0csj63x77nkdh543pzl9cbaip6xp8anw0942hc6j19y7yicd29ns";
+ cargoSha256 = "0p0x4ch04kydg76bfal5zqzr9hvn5268wf3k2v9h7g8r4y8xqlhw";
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/applications/networking/browsers/chromium/plugins.nix b/pkgs/applications/networking/browsers/chromium/plugins.nix
index fb5b89ba4e7..54da49b9e30 100644
--- a/pkgs/applications/networking/browsers/chromium/plugins.nix
+++ b/pkgs/applications/networking/browsers/chromium/plugins.nix
@@ -44,11 +44,11 @@ let
flash = stdenv.mkDerivation rec {
pname = "flashplayer-ppapi";
- version = "32.0.0.387";
+ version = "32.0.0.403";
src = fetchzip {
url = "https://fpdownload.adobe.com/pub/flashplayer/pdc/${version}/flash_player_ppapi_linux.x86_64.tar.gz";
- sha256 = "1igs8nh3zpfcps97ahzh7kknx3rddh6yliig8lxf6jskbpf0qgzf";
+ sha256 = "1xirngiqypylgm8f3ddvny2ghqxgj8i98bm1carcj2vryw53wwal";
stripRoot = false;
};
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix
index e967578a7ce..76b4884aae5 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix
@@ -74,7 +74,7 @@ let
in
stdenv.mkDerivation rec {
pname = "flashplayer";
- version = "32.0.0.387";
+ version = "32.0.0.403";
src = fetchurl {
url =
@@ -85,14 +85,14 @@ stdenv.mkDerivation rec {
sha256 =
if debug then
if arch == "x86_64" then
- "1wmk60lnlrj9f8dvk4b6j7pqyl00w00qbzbdw4awzx91wmgfc4x0"
+ "0nx0fxa6l438hvzgsxa561nrin8lx7l9ccqscjn9mdg42yw36k63"
else
- "1afjxhi5jzn8zbkva940i9fayzxj1r3n6rqsiny02fpnv0waypfy"
+ "0vbg4ijsbmn71kq5mynx0hfhazy10ghcxsxwbwaxdl11ilxikrli"
else
if arch == "x86_64" then
- "0si8rx955kyfsprk5465hfzafxvrdm7g686q7p5xykmh88nck6k2"
+ "1paz9y3pcisw5ck3v6a740sr7plmsbg6bjqrj2yfqdixf95fk2pl"
else
- "02pw2knvgdkahyp7lmy7fmynmplaz5wswdz48h3sdj6ibr066h97";
+ "1b2r20yc94ibsw0vpr6xl1x1vbjgjw6qzxzr374ppck8famikyj2";
};
nativeBuildInputs = [ unzip ];
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix
index 9d7d6eeeee8..5c4f85ee717 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix
@@ -50,7 +50,7 @@
stdenv.mkDerivation {
pname = "flashplayer-standalone";
- version = "32.0.0.387";
+ version = "32.0.0.403";
src = fetchurl {
url =
@@ -60,9 +60,9 @@ stdenv.mkDerivation {
"https://fpdownload.macromedia.com/pub/flashplayer/updaters/32/flash_player_sa_linux.x86_64.tar.gz";
sha256 =
if debug then
- "1yxdwmm2gz162rmc9hwlccqgq613gnrihjicnzgan4vk7hjlga5y"
+ "164cah1h78vs068y19v0c40243sy2ip1n4jc6qvzv9acawy12ckw"
else
- "0hm5is3giz45a4v9m77q0i1dgyhpqqkagpjndbnynsnl9a61r0ly";
+ "0508jzaji3z52dyp49xx2m7impz1fdpp20af0h8dwdph1q3mxn32";
};
nativeBuildInputs = [ unzip ];
diff --git a/pkgs/applications/networking/cluster/kpt/default.nix b/pkgs/applications/networking/cluster/kpt/default.nix
new file mode 100644
index 00000000000..46fc928b205
--- /dev/null
+++ b/pkgs/applications/networking/cluster/kpt/default.nix
@@ -0,0 +1,27 @@
+{ buildGoModule, fetchFromGitHub, lib }:
+
+buildGoModule rec {
+ pname = "kpt";
+ version = "0.31.0";
+
+ src = fetchFromGitHub {
+ owner = "GoogleContainerTools";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1l5mpml6pf37b76wdq6il00k5q6rvw9ds7807m103k27p7pcqgdx";
+ };
+
+ vendorSha256 = "1yb6dwbnimqfamdg57vq68q853fq04qfnh3sfbjg82sd8pz8069g";
+
+ postInstall = ''
+ rm $out/bin/{mdtogo,formula}
+ '';
+
+ meta = with lib; {
+ description = "A toolkit to help you manage, manipulate, customize, and apply Kubernetes Resource configuration data files";
+ homepage = "https://googlecontainertools.github.io/kpt/";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ mikefaille ];
+ platforms = platforms.linux ++ platforms.darwin;
+ };
+}
diff --git a/pkgs/applications/networking/feedreaders/rssguard/default.nix b/pkgs/applications/networking/feedreaders/rssguard/default.nix
index b95d272e651..93356dfb4f8 100644
--- a/pkgs/applications/networking/feedreaders/rssguard/default.nix
+++ b/pkgs/applications/networking/feedreaders/rssguard/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "rssguard";
- version = "3.6.2";
+ version = "3.7.0";
src = fetchFromGitHub {
owner = "martinrotter";
repo = pname;
rev = version;
- sha256 = "1dx7gcmrjyi115lf6d36i129zmxfb16z7wy4ff8z9m65paci24mw";
+ sha256 = "1maiazjsnjalx09rq1l84kd86s48cvljnwynv4rj6cln1h0al030";
};
buildInputs = [ qtwebengine qttools ];
diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
index 2346beb356b..78272695459 100644
--- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
+++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
@@ -6,7 +6,7 @@
, qtquickcontrols2, qtscript, qtsvg , qttools, qtwayland, qtwebchannel
, qtwebengine
# Runtime
-, coreutils, libjpeg_turbo, pciutils, procps, utillinux
+, coreutils, libjpeg_turbo, faac, pciutils, procps, utillinux
, pulseaudioSupport ? true, libpulseaudio ? null
}:
@@ -40,7 +40,7 @@ in mkDerivation {
nativeBuildInputs = [ autoPatchelfHook ];
buildInputs = [
- dbus glib libGL libX11 libXfixes libuuid libxcb libjpeg_turbo qtbase
+ dbus glib libGL libX11 libXfixes libuuid libxcb libjpeg_turbo faac qtbase
qtdeclarative qtgraphicaleffects qtlocation qtquickcontrols qtquickcontrols2
qtscript qtwebchannel qtwebengine qtimageformats qtsvg qttools qtwayland
];
@@ -72,6 +72,9 @@ in mkDerivation {
# TODO Patch this somehow; tries to dlopen './libturbojpeg.so' from cwd
ln -s $(readlink -e "${libjpeg_turbo.out}/lib/libturbojpeg.so") $out/share/zoom-us/libturbojpeg.so
+ # Again, requires faac with a nonstandard filename.
+ ln -s $(readlink -e "${faac}/lib/libfaac.so") $out/share/zoom-us/libfaac1.so
+
runHook postInstall
'';
diff --git a/pkgs/applications/networking/irc/convos/default.nix b/pkgs/applications/networking/irc/convos/default.nix
index 8dd545494d1..d4b140815cc 100644
--- a/pkgs/applications/networking/irc/convos/default.nix
+++ b/pkgs/applications/networking/irc/convos/default.nix
@@ -32,16 +32,26 @@ perlPackages.buildPerlPackage rec {
patchShebangs script/convos
'';
- # A test fails since gethostbyaddr(127.0.0.1) fails to resolve to localhost in
- # the sandbox, we replace the this out from a substitution expression
- #
- # Module::Install is a runtime dependency not covered by the tests, so we add
- # a test for it.
- #
preCheck = ''
+ # A test fails since gethostbyaddr(127.0.0.1) fails to resolve to localhost in
+ # the sandbox, we replace the this out from a substitution expression
+ #
substituteInPlace t/web-register-open-to-public.t \
--replace '!127.0.0.1!' '!localhost!'
+ # Time-impurity in test, (fixed in master)
+ #
+ substituteInPlace t/web-load-user.t \
+ --replace '400' '410'
+
+ # Disk-space check fails on zfs, (fixed in master)
+ #
+ substituteInPlace t/web-admin.t \
+ --replace 'qr{/dev/}' 'qr{\w}'
+
+ # Module::Install is a runtime dependency not covered by the tests, so we add
+ # a test for it.
+ #
echo "use Test::More tests => 1;require_ok('Module::Install')" \
> t/00_nixpkgs_module_install.t
'';
diff --git a/pkgs/applications/networking/irc/weechat/default.nix b/pkgs/applications/networking/irc/weechat/default.nix
index a05ec290629..bd1dd979c9d 100644
--- a/pkgs/applications/networking/irc/weechat/default.nix
+++ b/pkgs/applications/networking/irc/weechat/default.nix
@@ -27,12 +27,12 @@ let
in
assert lib.all (p: p.enabled -> ! (builtins.elem null p.buildInputs)) plugins;
stdenv.mkDerivation rec {
- version = "2.8";
+ version = "2.9";
pname = "weechat";
src = fetchurl {
url = "https://weechat.org/files/src/weechat-${version}.tar.bz2";
- sha256 = "0xpzl7985j47rpmly4r833jxd448xpy7chqphaxmhlql2c0gc08z";
+ sha256 = "12h4m4ag8cdab7q6f5n357mfg0fdayab1gcikncjkkid3bjd4r4g";
};
outputs = [ "out" "man" ] ++ map (p: p.name) enabledPlugins;
diff --git a/pkgs/applications/office/beamerpresenter/default.nix b/pkgs/applications/office/beamerpresenter/default.nix
index ea0c321f8cf..cd15d3723d1 100644
--- a/pkgs/applications/office/beamerpresenter/default.nix
+++ b/pkgs/applications/office/beamerpresenter/default.nix
@@ -1,15 +1,15 @@
-{ stdenv, mkDerivation, fetchFromGitHub, makeDesktopItem, installShellFiles,
+{ stdenv, mkDerivation, fetchFromGitHub, installShellFiles,
qmake, qtbase, poppler, qtmultimedia }:
mkDerivation rec {
pname = "beamerpresenter";
- version = "0.1.1";
+ version = "0.1.2";
src = fetchFromGitHub {
owner = "stiglers-eponym";
repo = "BeamerPresenter";
rev = "v${version}";
- sha256 = "0j7wx3qqwhda33ig2464bi0j0a473y5p7ndy5f7f8x9cqdal1d01";
+ sha256 = "12xngnhwa3haf0pdxczgvhq1j20zbsr30y2bfn9qwmlhbwklhkj2";
};
nativeBuildInputs = [ qmake installShellFiles ];
@@ -26,23 +26,10 @@ mkDerivation rec {
installPhase = ''
install -m755 beamerpresenter -Dt $out/bin/
install -m644 src/icons/beamerpresenter.svg -Dt $out/share/icons/hicolor/scalable/apps/
- install -m644 $desktopItem/share/applications/*.desktop -Dt $out/share/applications/
+ install -m644 share/applications/beamerpresenter.desktop -Dt $out/share/applications/
installManPage man/*.{1,5}
'';
- # TODO: replace with upstream's .desktop file once available.
- # https://github.com/stiglers-eponym/BeamerPresenter/pull/4
- desktopItem = makeDesktopItem {
- name = pname;
- desktopName = "BeamerPresenter";
- genericName = "Beamer presentation viewer";
- comment = "Simple dual screen pdf presentation software";
- icon = "beamerpresenter";
- categories = "Office;";
- exec = "beamerpresenter %F";
- mimeType = "application/pdf;application/x-pdf;";
- };
-
meta = with stdenv.lib; {
description = "Simple dual screen pdf presentation software";
homepage = "https://github.com/stiglers-eponym/BeamerPresenter";
diff --git a/pkgs/applications/radio/dsd/default.nix b/pkgs/applications/radio/dsd/default.nix
new file mode 100644
index 00000000000..a369486278b
--- /dev/null
+++ b/pkgs/applications/radio/dsd/default.nix
@@ -0,0 +1,44 @@
+{ stdenv, fetchFromGitHub, cmake
+, mbelib, libsndfile, itpp
+, portaudioSupport ? true, portaudio ? null
+}:
+
+assert portaudioSupport -> portaudio != null;
+
+stdenv.mkDerivation rec {
+ pname = "dsd";
+ version = "2018-07-01";
+
+ src = fetchFromGitHub {
+ owner = "szechyjs";
+ repo = "dsd";
+ rev = "f175834e45a1a190171dff4597165b27d6b0157b";
+ sha256 = "0w4r13sxvjwacdwxr326zr6p77a8p6ny0g6im574jliw5j3shlhr";
+ };
+
+ nativeBuildInputs = [ cmake ];
+ buildInputs = [
+ mbelib libsndfile itpp
+ ] ++ stdenv.lib.optionals portaudioSupport [ portaudio ];
+
+ enableParallelBuilding = true;
+
+ doCheck = true;
+ preCheck = ''
+ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$PWD
+ export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH''${DYLD_LIBRARY_PATH:+:}$PWD
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Digital Speech Decoder";
+ longDescription = ''
+ DSD is able to decode several digital voice formats from discriminator
+ tap audio and synthesize the decoded speech. Speech synthesis requires
+ mbelib, which is a separate package.
+ '';
+ homepage = https://github.com/szechyjs/dsd;
+ license = licenses.gpl2;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ andrew-d ];
+ };
+}
diff --git a/pkgs/applications/science/geometry/gama/default.nix b/pkgs/applications/science/geometry/gama/default.nix
new file mode 100644
index 00000000000..fe606125c55
--- /dev/null
+++ b/pkgs/applications/science/geometry/gama/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, lib, expat, octave, libxml2, texinfo }:
+stdenv.mkDerivation rec {
+ pname = "gama";
+ version = "2.09";
+
+ src = fetchurl {
+ url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
+ sha256 = "0c1b28frl6109arj09v4zr1xs859krn8871mkvis517g5pb55dc9";
+ };
+
+ buildInputs = [ expat ];
+
+ nativeBuildInputs = [ texinfo ];
+
+ checkInputs = [ octave libxml2 ];
+ doCheck = true;
+
+ meta = with lib ; {
+ description = "Tools for adjustment of geodetic networks";
+ homepage = "https://www.gnu.org/software/gama/";
+ license = licenses.gpl3Plus;
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/applications/science/logic/cvc4/default.nix b/pkgs/applications/science/logic/cvc4/default.nix
index a6e9bc69a12..54a2f022551 100644
--- a/pkgs/applications/science/logic/cvc4/default.nix
+++ b/pkgs/applications/science/logic/cvc4/default.nix
@@ -1,19 +1,20 @@
-{ stdenv, fetchurl, cln, gmp, swig, pkgconfig
-, readline, libantlr3c, boost, jdk, autoreconfHook
-, python3, antlr3_4
+{ stdenv, fetchFromGitHub, cmake, cln, gmp, git, swig, pkgconfig
+, readline, libantlr3c, boost, jdk, python3, antlr3_4
}:
stdenv.mkDerivation rec {
pname = "cvc4";
- version = "1.6";
+ version = "1.8";
- src = fetchurl {
- url = "https://cvc4.cs.stanford.edu/downloads/builds/src/cvc4-${version}.tar.gz";
- sha256 = "1iw793zsi48q91lxpf8xl8lnvv0jsj4whdad79rakywkm1gbs62w";
+ src = fetchFromGitHub {
+ owner = "cvc4";
+ repo = "cvc4";
+ rev = version;
+ sha256 = "1rhs4pvzaa1wk00czrczp58b2cxfghpsnq534m0l3snnya2958jp";
};
- nativeBuildInputs = [ autoreconfHook pkgconfig ];
- buildInputs = [ gmp cln readline swig libantlr3c antlr3_4 boost jdk python3 ];
+ nativeBuildInputs = [ pkgconfig cmake ];
+ buildInputs = [ gmp git python3.pkgs.toml cln readline swig libantlr3c antlr3_4 boost jdk python3 ];
configureFlags = [
"--enable-language-bindings=c,c++,java"
"--enable-gpl"
@@ -30,6 +31,10 @@ stdenv.mkDerivation rec {
preConfigure = ''
patchShebangs ./src/
'';
+ cmakeFlags = [
+ "-DCMAKE_BUILD_TYPE=Production"
+ ];
+
enableParallelBuilding = true;
diff --git a/pkgs/applications/science/math/gfan/default.nix b/pkgs/applications/science/math/gfan/default.nix
index 72d1a548c53..adac92f376c 100644
--- a/pkgs/applications/science/math/gfan/default.nix
+++ b/pkgs/applications/science/math/gfan/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "02pihqb1lb76a0xbfwjzs1cd6ay3ldfxsm8dvsbl6qs3vkjxax56";
};
- patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
+ patchPhase = stdenv.lib.optionalString stdenv.cc.isClang ''
substituteInPlace Makefile --replace "-fno-guess-branch-probability" ""
'';
diff --git a/pkgs/applications/version-management/bcompare/default.nix b/pkgs/applications/version-management/bcompare/default.nix
index d9a98ecce28..1af64f8e6df 100644
--- a/pkgs/applications/version-management/bcompare/default.nix
+++ b/pkgs/applications/version-management/bcompare/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "bcompare";
- version = "4.3.4.24657";
+ version = "4.3.5.24893";
src = fetchurl {
url = "https://www.scootersoftware.com/${pname}-${version}_amd64.deb";
- sha256 = "031ivmpy0mk43skb30r7p5zwf0m90pmsqhaq5kc08gzy6g4s0wd0";
+ sha256 = "1gm8d6hgdg8f3hd83wqac28gkvz5nyn62wj7x44vmr60dh4i2jfn";
};
unpackPhase = ''
diff --git a/pkgs/data/fonts/3270font/default.nix b/pkgs/data/fonts/3270font/default.nix
new file mode 100644
index 00000000000..3338b778415
--- /dev/null
+++ b/pkgs/data/fonts/3270font/default.nix
@@ -0,0 +1,26 @@
+{ lib, fetchzip }:
+let
+ version = "2.0.4";
+in
+fetchzip rec {
+ name = "3270font-${version}";
+
+ url = "https://github.com/rbanffy/3270font/releases/download/v${version}/3270_fonts_ece94f6.zip";
+
+ sha256 = "04q7dnrlq5hm30iibh3jafb33m5lwsgb3g9n9i188sg02ydkrsl9";
+
+ postFetch = ''
+ mkdir -p $out/share/fonts/
+ unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
+ unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
+ unzip -j $downloadedFile \*.woff -d $out/share/fonts/woff
+ '';
+
+ meta = with lib; {
+ description = "Monospaced font based on IBM 3270 terminals";
+ homepage = "https://github.com/rbanffy/3270font";
+ license = [ licenses.bsd3 licenses.ofl ];
+ maintainers = [ maintainers.marsam ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/data/fonts/barlow/default.nix b/pkgs/data/fonts/barlow/default.nix
new file mode 100644
index 00000000000..e9257260ea2
--- /dev/null
+++ b/pkgs/data/fonts/barlow/default.nix
@@ -0,0 +1,28 @@
+{ lib, fetchzip }:
+let
+ version = "1.422";
+in
+fetchzip rec {
+ name = "barlow-${version}";
+
+ url = "https://tribby.com/fonts/barlow/download/barlow-${version}.zip";
+
+ sha256 = "08ld4c3zq4d1px07lc64i7l8848zsc61ddy3654w2sh0hx5sm5ld";
+
+ postFetch = ''
+ mkdir -p $out/share/fonts/
+ unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
+ unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
+ unzip -j $downloadedFile \*.eot -d $out/share/fonts/eot
+ unzip -j $downloadedFile \*.woff -d $out/share/fonts/woff
+ unzip -j $downloadedFile \*.woff2 -d $out/share/fonts/woff2
+ '';
+
+ meta = with lib; {
+ description = "A grotesk variable font superfamily";
+ homepage = "https://tribby.com/fonts/barlow/";
+ license = licenses.ofl;
+ maintainers = [ maintainers.marsam ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/development/coq-modules/math-classes/default.nix b/pkgs/development/coq-modules/math-classes/default.nix
index 9ab77418cce..73e420b326d 100644
--- a/pkgs/development/coq-modules/math-classes/default.nix
+++ b/pkgs/development/coq-modules/math-classes/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "coq${coq.coq-version}-math-classes-${version}";
- version = "8.9.1";
+ version = "8.11.0";
src = fetchFromGitHub {
owner = "coq-community";
repo = "math-classes";
rev = version;
- sha256 = "1lw89js07m1wcaycpnyd85sf0snil2rrsfmry9lna2x66ah1mzn5";
+ sha256 = "1hjgncvm1m46lw6264w4dqsy8dbh74vhmzq52x0fba2yqlvy94sf";
};
buildInputs = [ coq bignums ];
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
};
passthru = {
- compatibleCoqVersions = v: builtins.elem v [ "8.6" "8.7" "8.8" "8.9" "8.10" ];
+ compatibleCoqVersions = v: builtins.elem v [ "8.6" "8.7" "8.8" "8.9" "8.10" "8.11" ];
};
}
diff --git a/pkgs/development/libraries/audio/mbelib/default.nix b/pkgs/development/libraries/audio/mbelib/default.nix
new file mode 100644
index 00000000000..1fda3a91926
--- /dev/null
+++ b/pkgs/development/libraries/audio/mbelib/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, cmake }:
+
+stdenv.mkDerivation rec {
+ pname = "mbelib";
+ version = "1.3.0";
+
+ src = fetchFromGitHub {
+ owner = "szechyjs";
+ repo = "mbelib";
+ rev = "v${version}";
+ sha256 = "0v6b7nf8fgxy7vzgcwffqyql5zhldrz30c88k1ylbjp78hwh4rif";
+ };
+
+ nativeBuildInputs = [ cmake ];
+
+ enableParallelBuilding = true;
+
+ doCheck = true;
+ preCheck = ''
+ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$PWD
+ export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH''${DYLD_LIBRARY_PATH:+:}$PWD
+ '';
+
+ meta = with stdenv.lib; {
+ description = "P25 Phase 1 and ProVoice vocoder";
+ homepage = https://github.com/szechyjs/mbelib;
+ license = licenses.isc;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ andrew-d ];
+ };
+}
diff --git a/pkgs/development/libraries/flatbuffers/default.nix b/pkgs/development/libraries/flatbuffers/default.nix
index 825e052ad87..0b0e0fd9e22 100644
--- a/pkgs/development/libraries/flatbuffers/default.nix
+++ b/pkgs/development/libraries/flatbuffers/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, fetchpatch, cmake }:
-stdenv.mkDerivation (rec {
+stdenv.mkDerivation rec {
pname = "flatbuffers";
- version = "1.11.0";
+ version = "1.12.0";
src = fetchFromGitHub {
owner = "google";
repo = "flatbuffers";
rev = "v${version}";
- sha256 = "1gl8pnykzifh7pnnvl80f5prmj5ga60dp44inpv9az2k9zaqx3qr";
+ sha256 = "0f7xd66vc1lzjbn7jzd5kyqrgxpsfxi4zc7iymhb5xrwyxipjl1g";
};
preConfigure = stdenv.lib.optional stdenv.buildPlatform.isDarwin ''
@@ -36,12 +36,4 @@ stdenv.mkDerivation (rec {
platforms = stdenv.lib.platforms.unix;
homepage = "https://google.github.io/flatbuffers/";
};
-} // stdenv.lib.optionalAttrs stdenv.hostPlatform.isMusl {
- # Remove when updating to the next version.
- patches = [
- (fetchpatch {
- url = "https://github.com/google/flatbuffers/commit/2b52494047fb6e97af03e1801b42adc7ed3fd78a.diff";
- sha256 = "01k07ws0f4w7nnl8nli795wgjm4p94lxd3kva4yf7nf3pg4p8arx";
- })
- ];
-})
+}
diff --git a/pkgs/development/libraries/gperftools/default.nix b/pkgs/development/libraries/gperftools/default.nix
index 410e790255f..1899f4fdc92 100644
--- a/pkgs/development/libraries/gperftools/default.nix
+++ b/pkgs/development/libraries/gperftools/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, libunwind }:
stdenv.mkDerivation rec {
- name = "gperftools-2.7";
+ name = "gperftools-2.8";
src = fetchurl {
url = "https://github.com/gperftools/gperftools/releases/download/${name}/${name}.tar.gz";
- sha256 = "1jb30zxmw7h9qxa8yi76rfxj4ssk60rv8n9y41m6pzqfk9lwis0y";
+ sha256 = "0gjiplvday50x695pwjrysnvm5wfvg2b0gmqf6b4bdi8sv6yl394";
};
# tcmalloc uses libunwind in a way that works correctly only on non-ARM linux
diff --git a/pkgs/development/libraries/intel-media-driver/default.nix b/pkgs/development/libraries/intel-media-driver/default.nix
index 366e34ddf4d..c43787c29dd 100644
--- a/pkgs/development/libraries/intel-media-driver/default.nix
+++ b/pkgs/development/libraries/intel-media-driver/default.nix
@@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
pname = "intel-media-driver";
- version = "20.1.1";
+ version = "20.2.0";
src = fetchFromGitHub {
owner = "intel";
repo = "media-driver";
rev = "intel-media-${version}";
- sha256 = "1mww20c9r7a57njqa2835ayjvk46lrv2yks9a2y8i0s5qzdi8m1i";
+ sha256 = "02a9wm7cz0nkpyfwic4a0dfm9bx1d2sybgh5rv0c618pl41mla33";
};
cmakeFlags = [
diff --git a/pkgs/development/libraries/kde-frameworks/krunner.nix b/pkgs/development/libraries/kde-frameworks/krunner.nix
index afea827aeb8..7dd91ffb247 100644
--- a/pkgs/development/libraries/kde-frameworks/krunner.nix
+++ b/pkgs/development/libraries/kde-frameworks/krunner.nix
@@ -13,7 +13,7 @@ let
# Un-deprecate virtual method to restore binary compatibility.
(assert !(lib.versionOlder "5.72" self.version); fetchpatch {
url = "https://invent.kde.org/frameworks/krunner/-/commit/8f7ce559b84ee0c21de0256e6591793e4b95f411.diff";
- sha256 = "06h9g04syv6x3hqi0iy9wll78yf9ys95r5vm104sc25pnszvjbxv";
+ sha256 = "124xqxpgmc5fdn1mcf8x1564pqc5y81j7lhzcirql2xcs0sbcyby";
})
];
nativeBuildInputs = [ extra-cmake-modules ];
diff --git a/pkgs/development/libraries/libcrafter/default.nix b/pkgs/development/libraries/libcrafter/default.nix
index d91032126eb..20bcc9183ec 100644
--- a/pkgs/development/libraries/libcrafter/default.nix
+++ b/pkgs/development/libraries/libcrafter/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "libcrafter";
- version = "0.3";
+ version = "1.0";
src = fetchzip {
url = "https://github.com/pellegre/libcrafter/archive/version-${version}.zip";
- sha256 = "04lpmshh4wb1dav03p6rnskpd1zmmvhv80xwn8v7l8faps5gvjp4";
+ sha256 = "1d2vgxawdwk2zg3scxclxdby1rhghmivly8azdjja89kw7gls9xl";
};
preConfigure = "cd libcrafter";
diff --git a/pkgs/development/libraries/libfilezilla/default.nix b/pkgs/development/libraries/libfilezilla/default.nix
index 3bd54951994..ed9de3aaa4c 100644
--- a/pkgs/development/libraries/libfilezilla/default.nix
+++ b/pkgs/development/libraries/libfilezilla/default.nix
@@ -5,20 +5,23 @@
, gnutls
, nettle
, pkgconfig
+, libiconv
+, ApplicationServices
}:
stdenv.mkDerivation rec {
pname = "libfilezilla";
- version = "0.22.0";
+ version = "0.23.0";
src = fetchurl {
url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
- sha256 = "0ylgxw1lxdqvayy5285mlfrkr9cvsgasy2zci6g6mv9rng261xn5";
+ sha256 = "0lk84aw5ylrhpy26djdw3byhjbn9qrzx5k98r0i4nwfizckw3smd";
};
nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ gettext gnutls nettle ];
+ buildInputs = [ gettext gnutls nettle ]
+ ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ApplicationServices ];
enableParallelBuilding = true;
@@ -27,6 +30,6 @@ stdenv.mkDerivation rec {
description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ pSub ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/openmpi/default.nix b/pkgs/development/libraries/openmpi/default.nix
index 13f633ac0df..61e3165dd3f 100644
--- a/pkgs/development/libraries/openmpi/default.nix
+++ b/pkgs/development/libraries/openmpi/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, fetchpatch, gfortran, perl, libnl
, rdma-core, zlib, numactl, libevent, hwloc, targetPackages, symlinkJoin
-, libpsm2, libfabric, pmix
+, libpsm2, libfabric, pmix, ucx
# Enable CUDA support
, cudaSupport ? false, cudatoolkit ? null
@@ -46,7 +46,7 @@ in stdenv.mkDerivation rec {
'';
buildInputs = with stdenv; [ gfortran zlib ]
- ++ lib.optionals isLinux [ libnl numactl pmix ]
+ ++ lib.optionals isLinux [ libnl numactl pmix ucx ]
++ lib.optionals cudaSupport [ cudatoolkit ]
++ [ libevent hwloc ]
++ lib.optional (isLinux || isFreeBSD) rdma-core
diff --git a/pkgs/development/libraries/qt-5/5.12/default.nix b/pkgs/development/libraries/qt-5/5.12/default.nix
index bdefca45a9a..d522feac3cd 100644
--- a/pkgs/development/libraries/qt-5/5.12/default.nix
+++ b/pkgs/development/libraries/qt-5/5.12/default.nix
@@ -158,6 +158,7 @@ let
qtquickcontrols2 = callPackage ../modules/qtquickcontrols2.nix {};
qtscript = callPackage ../modules/qtscript.nix {};
qtsensors = callPackage ../modules/qtsensors.nix {};
+ qtserialbus = callPackage ../modules/qtserialbus.nix {};
qtserialport = callPackage ../modules/qtserialport.nix {};
qtspeech = callPackage ../modules/qtspeech.nix {};
qtsvg = callPackage ../modules/qtsvg.nix {};
diff --git a/pkgs/development/libraries/qt-5/modules/qtserialbus.nix b/pkgs/development/libraries/qt-5/modules/qtserialbus.nix
new file mode 100644
index 00000000000..48968a254c6
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/modules/qtserialbus.nix
@@ -0,0 +1,6 @@
+{ qtModule, qtbase, qtserialport }:
+
+qtModule {
+ name = "qtserialbus";
+ qtInputs = [ qtbase qtserialport ];
+}
diff --git a/pkgs/development/libraries/rocksdb/default.nix b/pkgs/development/libraries/rocksdb/default.nix
index 6606f57bc4b..9bc3770f21e 100644
--- a/pkgs/development/libraries/rocksdb/default.nix
+++ b/pkgs/development/libraries/rocksdb/default.nix
@@ -1,42 +1,49 @@
-{ stdenv, fetchFromGitHub, fetchpatch
-, cmake, ninja
-, bzip2, lz4, snappy, zlib, zstd
+{ stdenv
+, fetchFromGitHub
+, fetchpatch
+, cmake
+, ninja
+, bzip2
+, lz4
+, snappy
+, zlib
+, zstd
, enableLite ? false
}:
stdenv.mkDerivation rec {
pname = "rocksdb";
- version = "6.4.6";
+ version = "6.10.2";
src = fetchFromGitHub {
owner = "facebook";
repo = pname;
rev = "v${version}";
- sha256 = "0s0n4p1b4jzmslz9d2xd4ajra0m6l9x26mjwlbgw0klxjggmy8qn";
+ sha256 = "1f2wqb6px812ijcivq3rsknqgkv01wblc6sd8wavhrw8qljgr3s1";
};
nativeBuildInputs = [ cmake ninja ];
+
buildInputs = [ bzip2 lz4 snappy zlib zstd ];
patches = [
- # https://github.com/facebook/rocksdb/pull/6076
+ # Without this change private dependencies are exported.
+ # Can be removed after the next release.
+ # https://github.com/facebook/rocksdb/pull/6790
(fetchpatch {
- url = "https://github.com/facebook/rocksdb/commit/c0be4b2ff1a5393419673fab961cb9b09ba38752.diff";
- sha256 = "1f2wg9kqlmf2hiiihmbp8m5fr2wnn7896g6i9yg9hdgi40pw30w6";
+ url = "https://github.com/facebook/rocksdb/commit/07204837ce8d66e1e6e4893178f3fd040f9c1044.patch";
+ sha256 = "17097ybkhy0i089zzkpvcj65c7g5skvjvdzi1k09x4i1d719wm39";
})
];
- postPatch = ''
- substituteInPlace CMakeLists.txt --replace "find_package(zlib " "find_package(ZLIB "
- '';
-
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isGNU "-Wno-error=deprecated-copy -Wno-error=pessimizing-move";
cmakeFlags = [
"-DPORTABLE=1"
"-DWITH_JEMALLOC=0"
"-DWITH_JNI=0"
- "-DWITH_TESTS=0"
+ "-DWITH_BENCHMARK_TOOLS=0"
+ "-DWITH_TESTS=1"
"-DWITH_TOOLS=0"
"-DWITH_BZ2=1"
"-DWITH_LZ4=1"
diff --git a/pkgs/development/libraries/science/math/itpp/default.nix b/pkgs/development/libraries/science/math/itpp/default.nix
new file mode 100644
index 00000000000..d7fae9ae479
--- /dev/null
+++ b/pkgs/development/libraries/science/math/itpp/default.nix
@@ -0,0 +1,55 @@
+{ stdenv
+, fetchurl
+, cmake
+, gtest
+, blas
+, fftw
+, liblapack
+, gfortran
+}:
+
+stdenv.mkDerivation rec {
+ pname = "it++";
+ version = "4.3.1";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/itpp/itpp-${version}.tar.bz2";
+ sha256 = "0xxqag9wi0lg78xgw7b40rp6wxqp5grqlbs9z0ifvdfzqlhpcwah";
+ };
+
+ nativeBuildInputs = [ cmake gfortran ];
+ buildInputs = [
+ fftw
+ liblapack
+
+ # NOTE: OpenBLAS doesn't work here because IT++ doesn't pass aligned
+ # buffers, which causes segfaults in the optimized kernels :-(
+ blas
+ ];
+
+ cmakeFlags = [
+ "-DBLAS_FOUND:BOOL=TRUE"
+ "-DBLAS_LIBRARIES:STRING=${blas}/lib/libblas.so"
+ "-DLAPACK_FOUND:BOOL=TRUE"
+ "-DLAPACK_LIBRARIES:STRING=${liblapack}/lib/liblapack.so"
+ "-DGTEST_DIR:PATH=${gtest.src}/googletest"
+ ];
+
+ enableParallelBuilding = true;
+
+ doCheck = true;
+
+ checkPhase = ''
+ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$PWD/itpp
+ export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH''${DYLD_LIBRARY_PATH:+:}$PWD/itpp
+ ./gtests/itpp_gtests
+ '';
+
+ meta = with stdenv.lib; {
+ description = "IT++ is a C++ library of mathematical, signal processing and communication classes and functions.";
+ homepage = http://itpp.sourceforge.net/;
+ license = licenses.gpl3;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ andrew-d ];
+ };
+}
diff --git a/pkgs/development/libraries/science/math/petsc/default.nix b/pkgs/development/libraries/science/math/petsc/default.nix
index a4d0850c77f..dd3d6ab787f 100644
--- a/pkgs/development/libraries/science/math/petsc/default.nix
+++ b/pkgs/development/libraries/science/math/petsc/default.nix
@@ -1,4 +1,4 @@
-{ stdenv , fetchurl , blas , gfortran , lapack , python }:
+{ stdenv , darwin , fetchurl , blas , gfortran , lapack , python }:
stdenv.mkDerivation rec {
pname = "petsc";
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
--replace /bin/sh /usr/bin/python
'' + stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace config/install.py \
- --replace /usr/bin/install_name_tool install_name_tool
+ --replace /usr/bin/install_name_tool ${darwin.cctools}/bin/install_name_tool
'';
preConfigure = ''
diff --git a/pkgs/development/libraries/ucx/default.nix b/pkgs/development/libraries/ucx/default.nix
index 9ec8ca660cf..1961e8aef68 100644
--- a/pkgs/development/libraries/ucx/default.nix
+++ b/pkgs/development/libraries/ucx/default.nix
@@ -3,7 +3,7 @@
}:
let
- version = "1.7.0";
+ version = "1.8.1";
in stdenv.mkDerivation {
name = "ucx-${version}";
@@ -12,7 +12,7 @@ in stdenv.mkDerivation {
owner = "openucx";
repo = "ucx";
rev = "v${version}";
- sha256 = "149p8s7jrg7pbbq0hw0qm8va119bsl19q4scgk94vjqliyc1s33h";
+ sha256 = "0yfnx4shgydkp447kipavjzgl6z58jan6l7znhdi8ry4zbgk568a";
};
nativeBuildInputs = [ autoreconfHook doxygen ];
diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json
index af3a7e9a296..4c9603307c7 100644
--- a/pkgs/development/node-packages/node-packages.json
+++ b/pkgs/development/node-packages/node-packages.json
@@ -146,6 +146,7 @@
, "purescript-language-server"
, "purescript-psa"
, "purty"
+, "pyright"
, "react-native-cli"
, "react-tools"
, "reveal.js"
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index a010165bc09..3083a208150 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -22,22 +22,22 @@ let
sha512 = "t4WmWoGV9gyzypwG3y3JlcK2t8fKLtvzBA7xEoFTj9SMPvOuLsf13uh4ikK0RRaaa9RPPWLgFUdOyIRaQvCpwQ==";
};
};
- "@angular-devkit/architect-0.1000.2" = {
+ "@angular-devkit/architect-0.1000.3" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1000.2";
+ version = "0.1000.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1000.2.tgz";
- sha512 = "n1e/ZdE70C6hDauTWLAiofKDI6m88nhb91Ddqum0eeUh3HL3Ppv/sT9O+UYsab3gIdIOFJwHBpZ96SM/2Ja5NA==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1000.3.tgz";
+ sha512 = "8ZszTAkRvGGMXERFvyLT6SJPfJXjNNfHamA76uDPTBXy+EijJ1XVTUr1+SYEe73E4ovtxqxAnsApEFxS7/Ni5w==";
};
};
- "@angular-devkit/core-10.0.2" = {
+ "@angular-devkit/core-10.0.3" = {
name = "_at_angular-devkit_slash_core";
packageName = "@angular-devkit/core";
- version = "10.0.2";
+ version = "10.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/core/-/core-10.0.2.tgz";
- sha512 = "gD8iUP28GscsHqGKKu+NtX97bt7aXDZmIYqWTv4SThrcsPYY2A4tBw+NBbNAwjHkNfn4jflpqTmcN9gBAoLoSg==";
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-10.0.3.tgz";
+ sha512 = "m27ogjq44j80x64RnEswSvy8UewUqeCVJBbEuY6fzrWoaiCf12sgPlrSCwjwfhtQrLgl1e/i9zYA7U6ulGRXyg==";
};
};
"@angular-devkit/core-9.1.7" = {
@@ -58,13 +58,13 @@ let
sha512 = "SWgBh4an/Vezjw2BZ5S+bKvuK5lH6gOtR8d5YjN9vxpJSZ0GimrGjfnLlWOkwWAsU8jfn4JzofECUHwX/7EW6Q==";
};
};
- "@angular-devkit/schematics-10.0.2" = {
+ "@angular-devkit/schematics-10.0.3" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
- version = "10.0.2";
+ version = "10.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-10.0.2.tgz";
- sha512 = "BUUWAreHoxk4Z91Xhr+wtFUhK6+7AOczsIxlZmJnQwSUhN2ZdiDjOXeO3NFkDdL8CtNOz5khGu2iNBqn08FpUw==";
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-10.0.3.tgz";
+ sha512 = "TjA2ZSPCgUK9l4FiRTIQY7DceXMAvNzOMWffy9o3kv2HPtxG9kuBrQXk++Z99zpylK0cAsugV7t/5ANpUkrIiA==";
};
};
"@angular-devkit/schematics-9.1.7" = {
@@ -319,22 +319,22 @@ let
sha512 = "vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==";
};
};
- "@babel/compat-data-7.10.4" = {
+ "@babel/compat-data-7.10.5" = {
name = "_at_babel_slash_compat-data";
packageName = "@babel/compat-data";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.10.4.tgz";
- sha512 = "t+rjExOrSVvjQQXNp5zAIYDp00KjdvGl/TpDX5REPr0S9IAIPQMTilcfG6q8c0QFmj9lSTVySV2VTsyggvtNIw==";
+ url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.10.5.tgz";
+ sha512 = "mPVoWNzIpYJHbWje0if7Ck36bpbtTvIxOi9+6WSK9wjGEXearAqlwBoTQvVjsAY2VIwgcs8V940geY3okzRCEw==";
};
};
- "@babel/core-7.10.4" = {
+ "@babel/core-7.10.5" = {
name = "_at_babel_slash_core";
packageName = "@babel/core";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/core/-/core-7.10.4.tgz";
- sha512 = "3A0tS0HWpy4XujGc7QtOIHTeNwUgWaZc/WuS5YQrfhU67jnVmsD6OGPc1AKHH0LJHQICGncy3+YUjIhVlfDdcA==";
+ url = "https://registry.npmjs.org/@babel/core/-/core-7.10.5.tgz";
+ sha512 = "O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==";
};
};
"@babel/generator-7.10.4" = {
@@ -346,6 +346,15 @@ let
sha512 = "toLIHUIAgcQygFZRAQcsLQV3CBuX6yOIru1kJk/qqqvcRmZrYe6WavZTSG+bB8MxhnL9YPf+pKQfuiP161q7ng==";
};
};
+ "@babel/generator-7.10.5" = {
+ name = "_at_babel_slash_generator";
+ packageName = "@babel/generator";
+ version = "7.10.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/generator/-/generator-7.10.5.tgz";
+ sha512 = "3vXxr3FEW7E7lJZiWQ3bM4+v/Vyr9C+hpolQ8BGFr9Y8Ri2tFLWTixmwKBafDujO1WVah4fhZBeU1bieKdghig==";
+ };
+ };
"@babel/helper-annotate-as-pure-7.10.4" = {
name = "_at_babel_slash_helper-annotate-as-pure";
packageName = "@babel/helper-annotate-as-pure";
@@ -373,13 +382,13 @@ let
sha512 = "5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==";
};
};
- "@babel/helper-builder-react-jsx-experimental-7.10.4" = {
+ "@babel/helper-builder-react-jsx-experimental-7.10.5" = {
name = "_at_babel_slash_helper-builder-react-jsx-experimental";
packageName = "@babel/helper-builder-react-jsx-experimental";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.4.tgz";
- sha512 = "LyacH/kgQPgLAuaWrvvq1+E7f5bLyT8jXCh7nM67sRsy2cpIGfgWJ+FCnAKQXfY+F0tXUaN6FqLkp4JiCzdK8Q==";
+ url = "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.5.tgz";
+ sha512 = "Buewnx6M4ttG+NLkKyt7baQn7ScC/Td+e99G914fRU8fGIUivDDgVIQeDHFa5e4CRSJQt58WpNHhsAZgtzVhsg==";
};
};
"@babel/helper-compilation-targets-7.10.4" = {
@@ -391,13 +400,13 @@ let
sha512 = "a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ==";
};
};
- "@babel/helper-create-class-features-plugin-7.10.4" = {
+ "@babel/helper-create-class-features-plugin-7.10.5" = {
name = "_at_babel_slash_helper-create-class-features-plugin";
packageName = "@babel/helper-create-class-features-plugin";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.4.tgz";
- sha512 = "9raUiOsXPxzzLjCXeosApJItoMnX3uyT4QdM2UldffuGApNrF8e938MwNpDCK9CPoyxrEoCgT+hObJc3mZa6lQ==";
+ url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz";
+ sha512 = "0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==";
};
};
"@babel/helper-create-regexp-features-plugin-7.10.4" = {
@@ -409,13 +418,13 @@ let
sha512 = "2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==";
};
};
- "@babel/helper-define-map-7.10.4" = {
+ "@babel/helper-define-map-7.10.5" = {
name = "_at_babel_slash_helper-define-map";
packageName = "@babel/helper-define-map";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.4.tgz";
- sha512 = "nIij0oKErfCnLUCWaCaHW0Bmtl2RO9cN7+u2QT8yqTywgALKlyUVOvHDElh+b5DwVC6YB1FOYFOTWcN/+41EDA==";
+ url = "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz";
+ sha512 = "fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==";
};
};
"@babel/helper-explode-assignable-expression-7.10.4" = {
@@ -454,13 +463,13 @@ let
sha512 = "wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==";
};
};
- "@babel/helper-member-expression-to-functions-7.10.4" = {
+ "@babel/helper-member-expression-to-functions-7.10.5" = {
name = "_at_babel_slash_helper-member-expression-to-functions";
packageName = "@babel/helper-member-expression-to-functions";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.4.tgz";
- sha512 = "m5j85pK/KZhuSdM/8cHUABQTAslV47OjfIB9Cc7P+PvlAoBzdb79BGNfw8RhT5Mq3p+xGd0ZfAKixbrUZx0C7A==";
+ url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.5.tgz";
+ sha512 = "HiqJpYD5+WopCXIAbQDG0zye5XYVvcO9w/DHp5GsaGkRUaamLj2bEtu6i8rnGGprAhHM3qidCMgp71HF4endhA==";
};
};
"@babel/helper-module-imports-7.10.4" = {
@@ -472,13 +481,13 @@ let
sha512 = "nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==";
};
};
- "@babel/helper-module-transforms-7.10.4" = {
+ "@babel/helper-module-transforms-7.10.5" = {
name = "_at_babel_slash_helper-module-transforms";
packageName = "@babel/helper-module-transforms";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.10.4.tgz";
- sha512 = "Er2FQX0oa3nV7eM1o0tNCTx7izmQtwAQsIiaLRWtavAAEcskb0XJ5OjJbVrYXWOTr8om921Scabn4/tzlx7j1Q==";
+ url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.10.5.tgz";
+ sha512 = "4P+CWMJ6/j1W915ITJaUkadLObmCRRSC234uctJfn/vHrsLNxsR8dwlcXv9ZhJWzl77awf+mWXSZEKt5t0OnlA==";
};
};
"@babel/helper-optimise-call-expression-7.10.4" = {
@@ -499,13 +508,13 @@ let
sha512 = "O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==";
};
};
- "@babel/helper-regex-7.10.4" = {
+ "@babel/helper-regex-7.10.5" = {
name = "_at_babel_slash_helper-regex";
packageName = "@babel/helper-regex";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.4.tgz";
- sha512 = "inWpnHGgtg5NOF0eyHlC0/74/VkdRITY9dtTpB2PrxKKn+AkVMRiZz/Adrx+Ssg+MLDesi2zohBW6MVq6b4pOQ==";
+ url = "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz";
+ sha512 = "68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==";
};
};
"@babel/helper-remap-async-to-generator-7.10.4" = {
@@ -580,13 +589,13 @@ let
sha512 = "i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==";
};
};
- "@babel/parser-7.10.4" = {
+ "@babel/parser-7.10.5" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.10.4.tgz";
- sha512 = "8jHII4hf+YVDsskTF6WuMB3X4Eh+PsUkC2ljq22so5rHvH+T8BzyL94VOdyFLNR8tBSVXOTbNHOKpR4TfRxVtA==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.10.5.tgz";
+ sha512 = "wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ==";
};
};
"@babel/plugin-external-helpers-7.8.3" = {
@@ -598,13 +607,13 @@ let
sha512 = "mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw==";
};
};
- "@babel/plugin-proposal-async-generator-functions-7.10.4" = {
+ "@babel/plugin-proposal-async-generator-functions-7.10.5" = {
name = "_at_babel_slash_plugin-proposal-async-generator-functions";
packageName = "@babel/plugin-proposal-async-generator-functions";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.4.tgz";
- sha512 = "MJbxGSmejEFVOANAezdO39SObkURO5o/8b6fSH6D1pi9RZQt+ldppKPXfqgUWpSQ9asM6xaSaSJIaeWMDRP0Zg==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz";
+ sha512 = "cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg==";
};
};
"@babel/plugin-proposal-class-properties-7.10.4" = {
@@ -868,13 +877,13 @@ let
sha512 = "WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA==";
};
};
- "@babel/plugin-transform-block-scoping-7.10.4" = {
+ "@babel/plugin-transform-block-scoping-7.10.5" = {
name = "_at_babel_slash_plugin-transform-block-scoping";
packageName = "@babel/plugin-transform-block-scoping";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.4.tgz";
- sha512 = "J3b5CluMg3hPUii2onJDRiaVbPtKFPLEaV5dOPY5OeAbDi1iU/UbbFFTgwb7WnanaDy7bjU35kc26W3eM5Qa0A==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.5.tgz";
+ sha512 = "6Ycw3hjpQti0qssQcA6AMSFDHeNJ++R6dIMnpRqUjFeBBTmTDPa8zgF90OVfTvAo11mXZTlVUViY1g8ffrURLg==";
};
};
"@babel/plugin-transform-classes-7.10.4" = {
@@ -976,13 +985,13 @@ let
sha512 = "0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw==";
};
};
- "@babel/plugin-transform-modules-amd-7.10.4" = {
+ "@babel/plugin-transform-modules-amd-7.10.5" = {
name = "_at_babel_slash_plugin-transform-modules-amd";
packageName = "@babel/plugin-transform-modules-amd";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.4.tgz";
- sha512 = "3Fw+H3WLUrTlzi3zMiZWp3AR4xadAEMv6XRCYnd5jAlLM61Rn+CRJaZMaNvIpcJpQ3vs1kyifYvEVPFfoSkKOA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz";
+ sha512 = "elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw==";
};
};
"@babel/plugin-transform-modules-commonjs-7.10.4" = {
@@ -994,13 +1003,13 @@ let
sha512 = "Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==";
};
};
- "@babel/plugin-transform-modules-systemjs-7.10.4" = {
+ "@babel/plugin-transform-modules-systemjs-7.10.5" = {
name = "_at_babel_slash_plugin-transform-modules-systemjs";
packageName = "@babel/plugin-transform-modules-systemjs";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.4.tgz";
- sha512 = "Tb28LlfxrTiOTGtZFsvkjpyjCl9IoaRI52AEU/VIwOwvDQWtbNJsAqTXzh+5R7i74e/OZHH2c2w2fsOqAfnQYQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz";
+ sha512 = "f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw==";
};
};
"@babel/plugin-transform-modules-umd-7.10.4" = {
@@ -1039,13 +1048,13 @@ let
sha512 = "5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ==";
};
};
- "@babel/plugin-transform-parameters-7.10.4" = {
+ "@babel/plugin-transform-parameters-7.10.5" = {
name = "_at_babel_slash_plugin-transform-parameters";
packageName = "@babel/plugin-transform-parameters";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.4.tgz";
- sha512 = "RurVtZ/D5nYfEg0iVERXYKEgDFeesHrHfx8RT05Sq57ucj2eOYAP6eu5fynL4Adju4I/mP/I6SO0DqNWAXjfLQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz";
+ sha512 = "xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==";
};
};
"@babel/plugin-transform-property-literals-7.10.4" = {
@@ -1084,13 +1093,13 @@ let
sha512 = "hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ==";
};
};
- "@babel/plugin-transform-runtime-7.10.4" = {
+ "@babel/plugin-transform-runtime-7.10.5" = {
name = "_at_babel_slash_plugin-transform-runtime";
packageName = "@babel/plugin-transform-runtime";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.10.4.tgz";
- sha512 = "8ULlGv8p+Vuxu+kz2Y1dk6MYS2b/Dki+NO6/0ZlfSj5tMalfDL7jI/o/2a+rrWLqSXvnadEqc2WguB4gdQIxZw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.10.5.tgz";
+ sha512 = "tV4V/FjElJ9lQtyjr5xD2IFFbgY46r7EeVu5a8CpEKT5laheHKSlFeHjpkPppW3PqzGLAuv5k2qZX5LgVZIX5w==";
};
};
"@babel/plugin-transform-shorthand-properties-7.10.4" = {
@@ -1120,13 +1129,13 @@ let
sha512 = "Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==";
};
};
- "@babel/plugin-transform-template-literals-7.10.4" = {
+ "@babel/plugin-transform-template-literals-7.10.5" = {
name = "_at_babel_slash_plugin-transform-template-literals";
packageName = "@babel/plugin-transform-template-literals";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.4.tgz";
- sha512 = "4NErciJkAYe+xI5cqfS8pV/0ntlY5N5Ske/4ImxAVX7mk9Rxt2bwDTGv1Msc2BRJvWQcmYEC+yoMLdX22aE4VQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz";
+ sha512 = "V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==";
};
};
"@babel/plugin-transform-typeof-symbol-7.10.4" = {
@@ -1138,13 +1147,13 @@ let
sha512 = "QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA==";
};
};
- "@babel/plugin-transform-typescript-7.10.4" = {
+ "@babel/plugin-transform-typescript-7.10.5" = {
name = "_at_babel_slash_plugin-transform-typescript";
packageName = "@babel/plugin-transform-typescript";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.10.4.tgz";
- sha512 = "3WpXIKDJl/MHoAN0fNkSr7iHdUMHZoppXjf2HJ9/ed5Xht5wNIsXllJXdityKOxeA3Z8heYRb1D3p2H5rfCdPw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.10.5.tgz";
+ sha512 = "YCyYsFrrRMZ3qR7wRwtSSJovPG5vGyG4ZdcSAivGwTfoasMp3VOB/AKhohu3dFtmB4cCDcsndCSxGtrdliCsZQ==";
};
};
"@babel/plugin-transform-unicode-escapes-7.10.4" = {
@@ -1219,13 +1228,13 @@ let
sha512 = "SdYnvGPv+bLlwkF2VkJnaX/ni1sMNetcGI1+nThF1gyv6Ph8Qucc4ZZAjM5yZcE/AKRXIOTZz7eSRDWOEjPyRQ==";
};
};
- "@babel/register-7.10.4" = {
+ "@babel/register-7.10.5" = {
name = "_at_babel_slash_register";
packageName = "@babel/register";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/register/-/register-7.10.4.tgz";
- sha512 = "whHmgGiWNVyTVnYTSawtDWhaeYsc+noeU8Rmi+MPnbGhDYmr5QpEDMrQcIA07D2RUv0BlThPcN89XcHCqq/O4g==";
+ url = "https://registry.npmjs.org/@babel/register/-/register-7.10.5.tgz";
+ sha512 = "eYHdLv43nyvmPn9bfNfrcC4+iYNwdQ8Pxk1MFJuU/U5LpSYl/PH4dFMazCYZDFVi8ueG3shvO+AQfLrxpYulQw==";
};
};
"@babel/runtime-7.10.2" = {
@@ -1237,13 +1246,13 @@ let
sha512 = "6sF3uQw2ivImfVIl62RZ7MXhO2tap69WeWK57vAaimT6AZbE4FbqjdEJIN1UqoD6wI6B+1n9UiagafH1sxjOtg==";
};
};
- "@babel/runtime-7.10.4" = {
+ "@babel/runtime-7.10.5" = {
name = "_at_babel_slash_runtime";
packageName = "@babel/runtime";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.10.4.tgz";
- sha512 = "UpTN5yUJr9b4EX2CnGNWIvER7Ab83ibv0pcvvHc4UOdrBI5jb8bj+32cCwPX6xu0mt2daFNjYhoi+X7beH0RSw==";
+ url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.10.5.tgz";
+ sha512 = "otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg==";
};
};
"@babel/runtime-7.7.7" = {
@@ -1255,13 +1264,13 @@ let
sha512 = "uCnC2JEVAu8AKB5do1WRIsvrdJ0flYx/A/9f/6chdacnEZ7LmavjdsDXr5ksYBegxtuTPR5Va9/+13QF/kFkCA==";
};
};
- "@babel/runtime-corejs3-7.10.4" = {
+ "@babel/runtime-corejs3-7.10.5" = {
name = "_at_babel_slash_runtime-corejs3";
packageName = "@babel/runtime-corejs3";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.10.4.tgz";
- sha512 = "BFlgP2SoLO9HJX9WBwN67gHWMBhDX/eDz64Jajd6mR/UAUzqrNMm99d4qHnVaKscAElZoFiPv+JpR/Siud5lXw==";
+ url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.10.5.tgz";
+ sha512 = "RMafpmrNB5E/bwdSphLr8a8++9TosnyJp98RZzI6VOx2R2CCMpsXXXRvmI700O9oEKpXdZat6oEK68/F0zjd4A==";
};
};
"@babel/template-7.10.4" = {
@@ -1273,13 +1282,13 @@ let
sha512 = "ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==";
};
};
- "@babel/traverse-7.10.4" = {
+ "@babel/traverse-7.10.5" = {
name = "_at_babel_slash_traverse";
packageName = "@babel/traverse";
- version = "7.10.4";
+ version = "7.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.10.4.tgz";
- sha512 = "aSy7p5THgSYm4YyxNGz6jZpXf+Ok40QF3aA2LyIONkDHpAcJzDUqlCKXv6peqYUs2gmic849C/t2HKw2a2K20Q==";
+ url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.10.5.tgz";
+ sha512 = "yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ==";
};
};
"@babel/types-7.10.4" = {
@@ -1291,6 +1300,15 @@ let
sha512 = "UTCFOxC3FsFHb7lkRMVvgLzaRVamXuAs2Tz4wajva4WxtVY82eZeaUBtC2Zt95FU9TiznuC0Zk35tsim8jeVpg==";
};
};
+ "@babel/types-7.10.5" = {
+ name = "_at_babel_slash_types";
+ packageName = "@babel/types";
+ version = "7.10.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz";
+ sha512 = "ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==";
+ };
+ };
"@chemzqm/neovim-5.1.9" = {
name = "_at_chemzqm_slash_neovim";
packageName = "@chemzqm/neovim";
@@ -1480,94 +1498,94 @@ let
sha512 = "oJZb4PScX25ZGObpw9n7/bJBE7R0oF6hJ4ABe+WvMqSCI3kxaReMTgJJNIrxpmbXscxWM8U1ndLefP5IjPcU7Q==";
};
};
- "@graphql-tools/delegate-6.0.12" = {
+ "@graphql-tools/delegate-6.0.14" = {
name = "_at_graphql-tools_slash_delegate";
packageName = "@graphql-tools/delegate";
- version = "6.0.12";
+ version = "6.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-6.0.12.tgz";
- sha512 = "52bac1Ct1s0c8aSTVCbnc5FI2LC+NqUFSs+5/mP1k5hIEW2GROGBeZdbRs2GQaHir1vKUYIyHzlZIIBMzOZ/gA==";
+ url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-6.0.14.tgz";
+ sha512 = "RVqwL+PLj6aQFmkUjHTQzkAOaWUNOe7BoAdldoXhTmzL8tgGvWWzlqFNBv54sj1FAaqP1p8DtAztH3mph97sSw==";
};
};
- "@graphql-tools/graphql-file-loader-6.0.12" = {
+ "@graphql-tools/graphql-file-loader-6.0.14" = {
name = "_at_graphql-tools_slash_graphql-file-loader";
packageName = "@graphql-tools/graphql-file-loader";
- version = "6.0.12";
+ version = "6.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-6.0.12.tgz";
- sha512 = "DUoby0HXQ5fGR9U3tMN3V/6l1XdRzg2XF0kuZy/9TUEH9VBFKYT7PLEVb6ZKDh9xWe0OgHUjgpfJhjtcJwn+fw==";
+ url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-6.0.14.tgz";
+ sha512 = "zYQ8OTHlKQj0YrT012QLnnqNLvPbqw1vmSU3u/4OJ571nQ75CUbUnwyjU+eb7n9sFG2lgrlN4ZOtgoRp0rJ1tQ==";
};
};
- "@graphql-tools/import-6.0.12" = {
+ "@graphql-tools/import-6.0.14" = {
name = "_at_graphql-tools_slash_import";
packageName = "@graphql-tools/import";
- version = "6.0.12";
+ version = "6.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.0.12.tgz";
- sha512 = "tSY8EVTl4UDo4cwbKfMfyGqd0aPd4GH81YcYIgoy4hXMJPZyImGWjjChM0A579IsI7NFzm8eXzDU2dIFb8QSWA==";
+ url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.0.14.tgz";
+ sha512 = "KohPGp6P56Vh50pOfQEkFc64JT5OCqJei+kC5QD8rdlZLvIeVczgQ70zSrsqHf8bCHZAIoM2LwU+R61ZucCrTA==";
};
};
- "@graphql-tools/json-file-loader-6.0.12" = {
+ "@graphql-tools/json-file-loader-6.0.14" = {
name = "_at_graphql-tools_slash_json-file-loader";
packageName = "@graphql-tools/json-file-loader";
- version = "6.0.12";
+ version = "6.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-6.0.12.tgz";
- sha512 = "WLSqEfcHcu8LYMdtz3ipzu3CdlkhuHqvuCmCUt5Yq3SvLhWXu+39BLVS6FtfQdNAdM2Bl+C7YRrYYsDA9Rzeag==";
+ url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-6.0.14.tgz";
+ sha512 = "uq2fkiXobZd63K43+t97tbMeqWhdw2wG9kFeEcLpikj+CJSH+UiRbm1AS/+BeMpWXlpRjseXUn8nMkbkI7hnaw==";
};
};
- "@graphql-tools/load-6.0.12" = {
+ "@graphql-tools/load-6.0.14" = {
name = "_at_graphql-tools_slash_load";
packageName = "@graphql-tools/load";
- version = "6.0.12";
+ version = "6.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/load/-/load-6.0.12.tgz";
- sha512 = "BlGptzuY6+/SunejobN+P3RTxl5QKiMrIikttUZROrgObOBlkSFxsjW1cOw+HX2BL4dPUyN9usOKYoMxKHoWpA==";
+ url = "https://registry.npmjs.org/@graphql-tools/load/-/load-6.0.14.tgz";
+ sha512 = "XI6KNoTUJL4wQSKTYNFA0yIs2NGGmBWwWOVxFPqIJA4uX6iZQmdtwEK+HRzdMG75IPYiO8XJDqZ8sEcuAOJIBw==";
};
};
- "@graphql-tools/merge-6.0.12" = {
+ "@graphql-tools/merge-6.0.14" = {
name = "_at_graphql-tools_slash_merge";
packageName = "@graphql-tools/merge";
- version = "6.0.12";
+ version = "6.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.0.12.tgz";
- sha512 = "GGvdIoTad6PJk/d1omPlGQ25pCFWmjuGkARYZ71qWI/c4FEA8EdGoOoPz3shhaKXyLdRiu84S758z4ZtDQiYVw==";
+ url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.0.14.tgz";
+ sha512 = "j/Gi+9qFKip0nHIU/7G2Gy/sV1WX1XK90FaGmfpdduuRjuET+44X/XBQbYMWMTtSFKHU+nzqv4J7vVxbi0m3lg==";
};
};
- "@graphql-tools/schema-6.0.12" = {
+ "@graphql-tools/schema-6.0.14" = {
name = "_at_graphql-tools_slash_schema";
packageName = "@graphql-tools/schema";
- version = "6.0.12";
+ version = "6.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-6.0.12.tgz";
- sha512 = "XUmKJ+ipENaxuXIX4GapsLAUl1dFQBUg+S4ZbgtKVlwrPhZJ9bkjIqnUHk3wg4S4VXqzLX97ol1e4g9N6XLkYg==";
+ url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-6.0.14.tgz";
+ sha512 = "vXRme8I8r3Ps2xTGrs614L+PRvNMxW0PW1EEtkV7CHdFWl1w5qkVeWWriZuqdj9r/AxHj950ilAf6V/k+2oAZw==";
};
};
- "@graphql-tools/url-loader-6.0.12" = {
+ "@graphql-tools/url-loader-6.0.14" = {
name = "_at_graphql-tools_slash_url-loader";
packageName = "@graphql-tools/url-loader";
- version = "6.0.12";
+ version = "6.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.0.12.tgz";
- sha512 = "XK3D9oXshhlwQCNA92qqRIGPwCrhZGrGguYEkCyvEB4Y4e/MbzRPCExyeiZLI8mEepMJKhbAfx0ieQFPRbhx9Q==";
+ url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.0.14.tgz";
+ sha512 = "dBgN1Gk5mqW5UxfiYI8pd40CMA08DoJbcGR7VPpMNxowh6OOWJmBmDD8k97UfxC50xSEYqqYrKJqFw2SqyWI5w==";
};
};
- "@graphql-tools/utils-6.0.12" = {
+ "@graphql-tools/utils-6.0.14" = {
name = "_at_graphql-tools_slash_utils";
packageName = "@graphql-tools/utils";
- version = "6.0.12";
+ version = "6.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-6.0.12.tgz";
- sha512 = "MuFSkxXCe2QoD5QJPJ/1WIm0YnBzzXpkq9d/XznVAWptHFRwtwIbZ1xcREjYquFvoZ7ddsjZfyvUN/5ulmHhhg==";
+ url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-6.0.14.tgz";
+ sha512 = "2VCOJtbVOde5m553JJE8NhP/eYR63Zqo/YdSlhZkpTGmWXg0sJKIIJ0c1eozCm+JSVMu3P08BatgnEC7DIl92A==";
};
};
- "@graphql-tools/wrap-6.0.12" = {
+ "@graphql-tools/wrap-6.0.14" = {
name = "_at_graphql-tools_slash_wrap";
packageName = "@graphql-tools/wrap";
- version = "6.0.12";
+ version = "6.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-6.0.12.tgz";
- sha512 = "x/t6004aNLzTbOFzZiau15fY2+TBy0wbFqP2du+I+yh8j6KmAU1YkPolBJ4bAI04WD3qcLNh7Rai+VhOxidOkw==";
+ url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-6.0.14.tgz";
+ sha512 = "DM29MsOjgxcdMntC4C8eA4ElI/2ERXtEmsZjowCW/fwpPkMONX1yNcw8xwiyZC7x1UGE4VkhqTGB9FUTMnYRog==";
};
};
"@gulp-sourcemaps/identity-map-1.0.2" = {
@@ -2443,13 +2461,13 @@ let
sha512 = "1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==";
};
};
- "@npmcli/ci-detect-1.2.0" = {
+ "@npmcli/ci-detect-1.3.0" = {
name = "_at_npmcli_slash_ci-detect";
packageName = "@npmcli/ci-detect";
- version = "1.2.0";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-1.2.0.tgz";
- sha512 = "JtktVH7ASBVIWsQTFlFpeOzhBJskvoBCTfeeRhhZy7ybATcUvwiwotZ8j5rkqUUyB69lIy/AvboiiiGBjYBKBA==";
+ url = "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-1.3.0.tgz";
+ sha512 = "oN3y7FAROHhrAt7Rr7PnTSwrHrZVRTS2ZbyxeQwSSYD0ifwM3YNgQqbaRmjcWoPyq77MjchusjJDspbzMmip1Q==";
};
};
"@npmcli/git-2.0.3" = {
@@ -2623,13 +2641,13 @@ let
sha512 = "jE/lE/IKIz2v1+/P0u4fJqv0kYwXOTujKemJMFr6FeopsxlIK3+wKDCJGnysg81XID5TgZQbIfuJ5J0lnTiuyQ==";
};
};
- "@octokit/endpoint-6.0.3" = {
+ "@octokit/endpoint-6.0.4" = {
name = "_at_octokit_slash_endpoint";
packageName = "@octokit/endpoint";
- version = "6.0.3";
+ version = "6.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.3.tgz";
- sha512 = "Y900+r0gIz+cWp6ytnkibbD95ucEzDSKzlEnaWS52hbCDNcCJYO5mRmWW7HRAnDc7am+N/5Lnd8MppSaTYx1Yg==";
+ url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.4.tgz";
+ sha512 = "ZJHIsvsClEE+6LaZXskDvWIqD3Ao7+2gc66pRG5Ov4MQtMvCU9wGu1TItw9aGNmRuU9x3Fei1yb+uqGaQnm0nw==";
};
};
"@octokit/plugin-enterprise-rest-6.0.1" = {
@@ -2668,13 +2686,13 @@ let
sha512 = "EZi/AWhtkdfAYi01obpX0DF7U6b1VRr30QNQ5xSFPITMdLSfhcBqjamE3F+sKcxPbD7eZuMHu3Qkk2V+JGxBDQ==";
};
};
- "@octokit/request-5.4.5" = {
+ "@octokit/request-5.4.6" = {
name = "_at_octokit_slash_request";
packageName = "@octokit/request";
- version = "5.4.5";
+ version = "5.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/request/-/request-5.4.5.tgz";
- sha512 = "atAs5GAGbZedvJXXdjtKljin+e2SltEs48B3naJjqWupYl2IUBbB/CJisyjbNHcKpHzb3E+OYEZ46G8eakXgQg==";
+ url = "https://registry.npmjs.org/@octokit/request/-/request-5.4.6.tgz";
+ sha512 = "9r8Sn4CvqFI9LDLHl9P17EZHwj3ehwQnTpTE+LEneb0VBBqSiI/VS4rWIBfBhDrDs/aIGEGZRSB0QWAck8u+2g==";
};
};
"@octokit/request-error-1.2.1" = {
@@ -2713,13 +2731,13 @@ let
sha512 = "O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q==";
};
};
- "@octokit/types-5.0.1" = {
+ "@octokit/types-5.1.0" = {
name = "_at_octokit_slash_types";
packageName = "@octokit/types";
- version = "5.0.1";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/types/-/types-5.0.1.tgz";
- sha512 = "GorvORVwp244fGKEt3cgt/P+M0MGy4xEDbckw+K5ojEezxyMDgCaYPKVct+/eWQfZXOT7uq0xRpmrl/+hliabA==";
+ url = "https://registry.npmjs.org/@octokit/types/-/types-5.1.0.tgz";
+ sha512 = "OFxUBgrEllAbdEmWp/wNmKIu5EuumKHG4sgy56vjZ8lXPgMhF05c76hmulfOdFHHYRpPj49ygOZJ8wgVsPecuA==";
};
};
"@parcel/fs-1.11.0" = {
@@ -2911,13 +2929,13 @@ let
sha512 = "MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg==";
};
};
- "@schematics/angular-10.0.2" = {
+ "@schematics/angular-10.0.3" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "10.0.2";
+ version = "10.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-10.0.2.tgz";
- sha512 = "viSf1HQH2vxZAonkfdAjJ/0Z8VgKptsi4UYtJDwabKRbbyp2EQ/vhEPI/ddV4QgrQqR8mkOl7nu8JqL2M0+v6A==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-10.0.3.tgz";
+ sha512 = "Or2pCqjpPbAvmbxtfMosGwQbNbSL4xodK5Key7678ZAPGB+rcxrVkBI9yxEJ/qzF/LrmMoKqy0JCmVLK7Grpog==";
};
};
"@schematics/schematics-0.901.9" = {
@@ -2929,13 +2947,13 @@ let
sha512 = "Nca8Ig/mFFnhLmosbdWysX4N2HiwVOzA4gQj2TZnMCJ98Cftdebs388LstjsJwGtJyvAa2v4yoaPaUMIGVgQ9w==";
};
};
- "@schematics/update-0.1000.2" = {
+ "@schematics/update-0.1000.3" = {
name = "_at_schematics_slash_update";
packageName = "@schematics/update";
- version = "0.1000.2";
+ version = "0.1000.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/update/-/update-0.1000.2.tgz";
- sha512 = "6PSJ+WexBqY0ESo0Kp6fa9wPWAXKE9oyLNjISJ1S9QKCVowoHa8FV+7BalVOUYwUhnUzwPCF6n7PqcJiZR632g==";
+ url = "https://registry.npmjs.org/@schematics/update/-/update-0.1000.3.tgz";
+ sha512 = "Nncdklmzi1tyzkoAh7GlSslxriRhftlmfqPVmFHrrPRttYACtT/QH5qcWsrPgTPpHGINYEHrPjpeljsMoMchBQ==";
};
};
"@serverless/cli-1.5.1" = {
@@ -2956,13 +2974,13 @@ let
sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang==";
};
};
- "@serverless/components-2.31.12" = {
+ "@serverless/components-2.32.0" = {
name = "_at_serverless_slash_components";
packageName = "@serverless/components";
- version = "2.31.12";
+ version = "2.32.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/components/-/components-2.31.12.tgz";
- sha512 = "ew721nj0Tz1ffS5nBCxZ1CtNGymGCCN+thld5yS4j3alwug605RVTUG/C9nxO59Lq2Jm3WbPe5qroYbvntpx0w==";
+ url = "https://registry.npmjs.org/@serverless/components/-/components-2.32.0.tgz";
+ sha512 = "BkSC/5Ln/wfkxcReyqCwrJz+4gPdzS5w6nMQxXZrEfCPj/kND8+ryGmpE1X3zAQg54L+sRFELJB8Xfgg1E8c4w==";
};
};
"@serverless/core-1.1.2" = {
@@ -2974,13 +2992,13 @@ let
sha512 = "PY7gH+7aQ+MltcUD7SRDuQODJ9Sav9HhFJsgOiyf8IVo7XVD6FxZIsSnpMI6paSkptOB7n+0Jz03gNlEkKetQQ==";
};
};
- "@serverless/enterprise-plugin-3.6.15" = {
+ "@serverless/enterprise-plugin-3.6.16" = {
name = "_at_serverless_slash_enterprise-plugin";
packageName = "@serverless/enterprise-plugin";
- version = "3.6.15";
+ version = "3.6.16";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/enterprise-plugin/-/enterprise-plugin-3.6.15.tgz";
- sha512 = "g0qCNei+nV+CaP+D/k89PnhSoYEtT13t1A+wW38EjC6IhfsnVUQuHyNObUuu469gJbLr1D856CjVvGQ5H23Wng==";
+ url = "https://registry.npmjs.org/@serverless/enterprise-plugin/-/enterprise-plugin-3.6.16.tgz";
+ sha512 = "lucCz18gfpUQWgoca1QKWwQFthB38wVrQMwZ16W+4lxW5nNKUu1ptgO2dU/s8UkXoJtWhAgC77dUOkYW4ozkXw==";
};
};
"@serverless/event-mocks-1.1.1" = {
@@ -3001,31 +3019,22 @@ let
sha512 = "2c5A6HSWwXluknPNJ2s+Z4WfBwP7Kn6kgsEKD+5xlXpDpBFsRku/xJyO9eqRCwxTM41stgHNC6TRsZ03+wH/rw==";
};
};
- "@serverless/platform-client-0.25.14" = {
+ "@serverless/platform-client-1.0.10" = {
name = "_at_serverless_slash_platform-client";
packageName = "@serverless/platform-client";
- version = "0.25.14";
+ version = "1.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/platform-client/-/platform-client-0.25.14.tgz";
- sha512 = "ww5GBt5QEHYppLH8X+gEFiuMoFu9xdXK0bEROYbuxUliiB0IfXTXLzWR5whhi/S94R7pTnJ4O+WUiFj0PcV/tQ==";
+ url = "https://registry.npmjs.org/@serverless/platform-client/-/platform-client-1.0.10.tgz";
+ sha512 = "+Y+u8wSO67oIsNuI1spfwTjN1zw0OwsU/wQ4IDZsKiyAxs+ww0STDoJfVQdwNzuhw0IwnBO0Wtv8AaLHdNQYTw==";
};
};
- "@serverless/platform-client-1.0.9" = {
- name = "_at_serverless_slash_platform-client";
- packageName = "@serverless/platform-client";
- version = "1.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/platform-client/-/platform-client-1.0.9.tgz";
- sha512 = "1y2oMld4QzuhM00GCEE65XrVL+Vy4dvqzkWMNHGJwSkcetj6wc5bAQep+h+FP4s+m/0lRMGTe2QXrJsE2RScig==";
- };
- };
- "@serverless/platform-client-china-1.0.25" = {
+ "@serverless/platform-client-china-1.0.26" = {
name = "_at_serverless_slash_platform-client-china";
packageName = "@serverless/platform-client-china";
- version = "1.0.25";
+ version = "1.0.26";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-1.0.25.tgz";
- sha512 = "8SYd0kKAuLyrpljr1gvW5g2Q7GC2JMUXr1m09H2rhNKYTpPEDgNSUgfnhE4r5Z2bvpfLEPhgM43mUFRDwqTBhA==";
+ url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-1.0.26.tgz";
+ sha512 = "AYkxcAVmGZqr2mByZNOhb5+cnyCtKThE3/F4DoWgHIIVgSl/y9nPlyWP8W7ss571+x8yDJb8GVnrJ0YCJBfr5Q==";
};
};
"@serverless/platform-sdk-2.3.1" = {
@@ -3055,13 +3064,13 @@ let
sha512 = "aI/cpGVUhWbJUR8QDMtPue28EU4ViG/L4/XKuZDfAN2uNQv3NRjwEFIBi/cxyfQnMTYVtMLe9wDjuwzOT4ENzA==";
};
};
- "@serverless/utils-china-0.1.17" = {
+ "@serverless/utils-china-0.1.18" = {
name = "_at_serverless_slash_utils-china";
packageName = "@serverless/utils-china";
- version = "0.1.17";
+ version = "0.1.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/utils-china/-/utils-china-0.1.17.tgz";
- sha512 = "GhveUbvj32whixPOztLhHJdLZUP5L3Ni+giOyM2vOl00Dnf1oklau2QCiDxvSWj5+ZlBGxyDMRJUXAfO1F6SPA==";
+ url = "https://registry.npmjs.org/@serverless/utils-china/-/utils-china-0.1.18.tgz";
+ sha512 = "wrE9SHtzHMSKDuIRVp2I/AJ09aZOkjStRBiASIpG4HgJPaTQ82AP0FPU3ln8QfgmZitApgSrSxd83wWtq7gnzA==";
};
};
"@sindresorhus/is-0.14.0" = {
@@ -4270,13 +4279,13 @@ let
sha512 = "c88dKrpSle9BtTqR6ifdaxu1Lvjsl3C5OsfvuUbUwdXymshv1TkufUAXBajCCUM/f/TmnkZC/Esb03MinzSiXQ==";
};
};
- "@types/websocket-1.0.0" = {
+ "@types/websocket-1.0.1" = {
name = "_at_types_slash_websocket";
packageName = "@types/websocket";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/websocket/-/websocket-1.0.0.tgz";
- sha512 = "MLr8hDM8y7vvdAdnoDEP5LotRoYJj7wgT6mWzCUQH/gHqzS4qcnOT/K4dhC0WimWIUiA3Arj9QAJGGKNRiRZKA==";
+ url = "https://registry.npmjs.org/@types/websocket/-/websocket-1.0.1.tgz";
+ sha512 = "f5WLMpezwVxCLm1xQe/kdPpQIOmL0TXYx2O15VYfYzc7hTIdxiOoOvez+McSIw3b7z/1zGovew9YSL7+h4h7/Q==";
};
};
"@types/ws-7.2.6" = {
@@ -5971,13 +5980,13 @@ let
sha512 = "sbLEIMQrkV7RkIruqTPXxeCMkAAycv4yzTkBzRgOR1BrR5UB7qZtupqxkersTJSf0HZ3sbaNRrNV80TnnM7cUw==";
};
};
- "apollo-2.29.1" = {
+ "apollo-2.30.1" = {
name = "apollo";
packageName = "apollo";
- version = "2.29.1";
+ version = "2.30.1";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo/-/apollo-2.29.1.tgz";
- sha512 = "2wobALKlgjQsSPEjP4jN+ceH7DnZdOkcY28owNP6v1hdPhsznOdc0AYYvR9dMlb+NzcBqTOlqJekFUkzfM00Ig==";
+ url = "https://registry.npmjs.org/apollo/-/apollo-2.30.1.tgz";
+ sha512 = "poh2tja2U8U5bGMxfPQjQP1voz2ZaNm/attwC8zpobdeLoT43LeQfFSTqCVmCMZJAfbMa40Cb54yV66DP2w9fw==";
};
};
"apollo-cache-1.3.5" = {
@@ -6016,49 +6025,49 @@ let
sha512 = "jiPlMTN6/5CjZpJOkGeUV0mb4zxx33uXWdj/xQCfAMkuNAC3HN7CvYDyMHHEzmcQ5GV12LszWoQ/VlxET24CtA==";
};
};
- "apollo-codegen-core-0.37.5" = {
+ "apollo-codegen-core-0.37.7" = {
name = "apollo-codegen-core";
packageName = "apollo-codegen-core";
- version = "0.37.5";
+ version = "0.37.7";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-codegen-core/-/apollo-codegen-core-0.37.5.tgz";
- sha512 = "mCfizUDuYsHQlZOwizc5Z2YRlvTakvQDjpDDQUAHW2ULMaCAnRSFEo+ksN+e1VdR4fAOZ1cEtCmIZ+HqpL2Bpw==";
+ url = "https://registry.npmjs.org/apollo-codegen-core/-/apollo-codegen-core-0.37.7.tgz";
+ sha512 = "7AMnzS+X7z91eUSctc0mQoQzVJrrKo+zLXevMDkGyTH+q541dYfpAdKQ5nffPcb1ZwwOONZCyl8kc8faJzD0Kw==";
};
};
- "apollo-codegen-flow-0.35.5" = {
+ "apollo-codegen-flow-0.35.7" = {
name = "apollo-codegen-flow";
packageName = "apollo-codegen-flow";
- version = "0.35.5";
+ version = "0.35.7";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-codegen-flow/-/apollo-codegen-flow-0.35.5.tgz";
- sha512 = "1/fPPehm758yFuZIcMWKbYjJtapa6Pwuqo0broYKBSQ9lp42LSvbCfwtANktBnmxrFmlIFPFrBOnsjrz2eW+5w==";
+ url = "https://registry.npmjs.org/apollo-codegen-flow/-/apollo-codegen-flow-0.35.7.tgz";
+ sha512 = "q7GsbHE0UtqXFat8wGyidUJRdGkbtfUqCtuQkV5qKOOnudFR32G7dz+6i/Z9R5IqOqWVMpxLq7UeiYRiz8c1dg==";
};
};
- "apollo-codegen-scala-0.36.5" = {
+ "apollo-codegen-scala-0.36.7" = {
name = "apollo-codegen-scala";
packageName = "apollo-codegen-scala";
- version = "0.36.5";
+ version = "0.36.7";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-codegen-scala/-/apollo-codegen-scala-0.36.5.tgz";
- sha512 = "QCtD1rV5OtYjlxiLJ7rfrRxALNRYUwYdlxXiyqfZrIRqtpGVHwPp/nDqFF0bYUIT135vj7dXz7xzzlvK5x+z6A==";
+ url = "https://registry.npmjs.org/apollo-codegen-scala/-/apollo-codegen-scala-0.36.7.tgz";
+ sha512 = "x8EWMOrW4e/kl5QFUHCJsJzemPk1Fa0hMCyjgnlBGQHBrAkHzc33qMMs6WTGvLLL8x8sMvqxCX+NiE/jgtYEvg==";
};
};
- "apollo-codegen-swift-0.37.5" = {
+ "apollo-codegen-swift-0.37.7" = {
name = "apollo-codegen-swift";
packageName = "apollo-codegen-swift";
- version = "0.37.5";
+ version = "0.37.7";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-codegen-swift/-/apollo-codegen-swift-0.37.5.tgz";
- sha512 = "5WdO4IEA/tvEhnbBbbMYujUT/L65Dy3LNS88s/Wa5MkgG0g603wRgFsFOETFXiBiPIVguCszKIqFcK/uGBfsYQ==";
+ url = "https://registry.npmjs.org/apollo-codegen-swift/-/apollo-codegen-swift-0.37.7.tgz";
+ sha512 = "97uCfBt3UVq0hlAWIBZpQoZjgdeKGObxsNp2L2R5ldMLoD3cQzjzuUDJGG1DoAsn5RMqv2gGNEk5QZMrWhidLw==";
};
};
- "apollo-codegen-typescript-0.37.5" = {
+ "apollo-codegen-typescript-0.37.7" = {
name = "apollo-codegen-typescript";
packageName = "apollo-codegen-typescript";
- version = "0.37.5";
+ version = "0.37.7";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-codegen-typescript/-/apollo-codegen-typescript-0.37.5.tgz";
- sha512 = "vfyr2P1ywUedepc410TwaX/+4M4KT/GOBWWL+fbeicWnxlecsDz5BMbD94nahRsvP8Iqd6ZIp3oxq4UeCSZbHQ==";
+ url = "https://registry.npmjs.org/apollo-codegen-typescript/-/apollo-codegen-typescript-0.37.7.tgz";
+ sha512 = "LIx1tsWqRrhTcYcRPjhbzBwSaCbMK3UKSN+AlOzNDvG/Rm6wFutHznj14kn/iqcIHmCbGGuFNjiZNbLwCJ3SyQ==";
};
};
"apollo-datasource-0.7.2" = {
@@ -6070,13 +6079,13 @@ let
sha512 = "ibnW+s4BMp4K2AgzLEtvzkjg7dJgCaw9M5b5N0YKNmeRZRnl/I/qBTQae648FsRKgMwTbRQIvBhQ0URUFAqFOw==";
};
};
- "apollo-engine-reporting-2.2.1" = {
+ "apollo-engine-reporting-2.3.0" = {
name = "apollo-engine-reporting";
packageName = "apollo-engine-reporting";
- version = "2.2.1";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-engine-reporting/-/apollo-engine-reporting-2.2.1.tgz";
- sha512 = "HPwf70p4VbxKEagHYWTwldqfYNekBE33BXcryHI9owxMm5B8/vutQfx67+4Bf351kOpndCG9I91aOiFBfC2/iQ==";
+ url = "https://registry.npmjs.org/apollo-engine-reporting/-/apollo-engine-reporting-2.3.0.tgz";
+ sha512 = "SbcPLFuUZcRqDEZ6mSs8uHM9Ftr8yyt2IEu0JA8c3LNBmYXSLM7MHqFe80SVcosYSTBgtMz8mLJO8orhYoSYZw==";
};
};
"apollo-engine-reporting-protobuf-0.5.2" = {
@@ -6115,13 +6124,13 @@ let
sha512 = "YSdF/BKPbsnQpxWpmCE53pBJX44aaoif31Y22I/qKpB6ZSGzYijV5YBoCL5Q15H2oA/v/02Oazh9lbp4ek3eig==";
};
};
- "apollo-language-server-1.23.1" = {
+ "apollo-language-server-1.23.2" = {
name = "apollo-language-server";
packageName = "apollo-language-server";
- version = "1.23.1";
+ version = "1.23.2";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-language-server/-/apollo-language-server-1.23.1.tgz";
- sha512 = "tP+B4jvs5KO/l1HYy4V6S302ypbmkyyDaWheQzlu0KStO9hlECDWk67nInmvKbRQ1Rov9oHDkujLADvH3pJkBA==";
+ url = "https://registry.npmjs.org/apollo-language-server/-/apollo-language-server-1.23.2.tgz";
+ sha512 = "2EfnA0DUVhGk018XYPb44EM+KuBnAqdciRD+j9BuUT3+nVq7pc8pjjcS7M8r5ea8hnOYrAoxC6f4I2YNdhjHJg==";
};
};
"apollo-link-1.2.14" = {
@@ -6205,13 +6214,13 @@ let
sha512 = "HUcP3TlgRsuGgeTOn8QMbkdx0hLPXyEJehZIPrcof0ATz7j7aTPA4at7gaiFHCo8gk07DaWYGB3PFgjboXRcWQ==";
};
};
- "apollo-server-core-2.15.1" = {
+ "apollo-server-core-2.16.0" = {
name = "apollo-server-core";
packageName = "apollo-server-core";
- version = "2.15.1";
+ version = "2.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.15.1.tgz";
- sha512 = "ZRSK3uVPS6YkIV3brm2CjzVphg6NHY0PRhFojZD8BjoQlGo3+pPRP1IHFDvC3UzybGWfyCelcfF4YiVqh4GJHw==";
+ url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.16.0.tgz";
+ sha512 = "mnvg2cPvsQtjFXIqIhEAbPqGyiSXDSbiBgNQ8rY8g7r2eRMhHKZePqGF03gP1/w87yVaSDRAZBDk6o+jiBXjVQ==";
};
};
"apollo-server-env-2.4.5" = {
@@ -6232,13 +6241,13 @@ let
sha512 = "FeGxW3Batn6sUtX3OVVUm7o56EgjxDlmgpTLNyWcLb0j6P8mw9oLNyAm3B+deHA4KNdNHO5BmHS2g1SJYjqPCQ==";
};
};
- "apollo-server-express-2.15.1" = {
+ "apollo-server-express-2.16.0" = {
name = "apollo-server-express";
packageName = "apollo-server-express";
- version = "2.15.1";
+ version = "2.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.15.1.tgz";
- sha512 = "anNb9HJo+KTpgvUqiPOjEl4wPq8y8NmWaIUz/QqPZlhIEDdf7wd/kQo3Sdbov++7J9JNJx6Ownnvw+wxfogUgA==";
+ url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.16.0.tgz";
+ sha512 = "mBIvKcF8gApj7wbmqe0A4Tsy+Pw66mI6cmtD912bG59KhUBveSCZ21dDlRSvnXUyK+GOo2ItwcUEtmks+Z2Pqw==";
};
};
"apollo-server-plugin-base-0.9.1" = {
@@ -7465,13 +7474,13 @@ let
sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3";
};
};
- "aws-sdk-2.713.0" = {
+ "aws-sdk-2.715.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.713.0";
+ version = "2.715.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.713.0.tgz";
- sha512 = "axR1eOVn134KXJc1IT+Au2TXcK6oswY+4nvGe5GfU3pXeehhe0xNeP9Bw9yF36TRBxuvu4IJ2hRHDKma05smgA==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.715.0.tgz";
+ sha512 = "O6ytb66IXFCowp0Ng2bSPM6v/cZVOhjJWFTR1CG4ieG4IroAaVgB3YQKkfPKA0Cy9B/Ovlsm7B737iuroKsd0w==";
};
};
"aws-sign2-0.6.0" = {
@@ -8455,13 +8464,13 @@ let
sha512 = "fvb6M58Ceiv/S94nu6zeaiMoJvUYOeIqRbgaClm+kJTzCAqJPtAR/31pXNYB5iEReOoKqQB5zY33gY0W6ZRWQQ==";
};
};
- "bittorrent-peerid-1.3.2" = {
+ "bittorrent-peerid-1.3.3" = {
name = "bittorrent-peerid";
packageName = "bittorrent-peerid";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-peerid/-/bittorrent-peerid-1.3.2.tgz";
- sha512 = "3xPhNfklf4xzxFVw9Y7W5dnGNhubVF0r8BK3imIsB6E3aDA4d6WhsceK1Yusos0TiiB9QZrdCsVXVqs26sFMxw==";
+ url = "https://registry.npmjs.org/bittorrent-peerid/-/bittorrent-peerid-1.3.3.tgz";
+ sha512 = "tSh9HdQgwyEAfo1jzoGEis6o/zs4CcdRTchG93XVl5jct+DCAN90M5MVUV76k2vJ9Xg3GAzLB5NLsY/vnVTh6w==";
};
};
"bittorrent-protocol-3.1.1" = {
@@ -9868,13 +9877,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001099" = {
+ "caniuse-lite-1.0.30001103" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001099";
+ version = "1.0.30001103";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001099.tgz";
- sha512 = "sdS9A+sQTk7wKoeuZBN/YMAHVztUfVnjDi4/UV3sDE8xoh7YR12hKW+pIdB3oqKGwr9XaFL2ovfzt9w8eUI5CA==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001103.tgz";
+ sha512 = "EJkTPrZrgy712tjZ7GQDye5A67SQOyNS6X9b6GS/e5QFu5Renv5qfkx3GHq1S+vObxKzbWWYuPO/7nt4kYW/gA==";
};
};
"capital-case-1.0.3" = {
@@ -10363,6 +10372,15 @@ let
sha512 = "aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ==";
};
};
+ "chokidar-3.4.1" = {
+ name = "chokidar";
+ packageName = "chokidar";
+ version = "3.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chokidar/-/chokidar-3.4.1.tgz";
+ sha512 = "TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g==";
+ };
+ };
"chownr-0.0.2" = {
name = "chownr";
packageName = "chownr";
@@ -10489,13 +10507,13 @@ let
sha1 = "04a106672c18b085ab774d983dfa3ea138f22205";
};
};
- "chunk-store-stream-4.1.0" = {
+ "chunk-store-stream-4.1.1" = {
name = "chunk-store-stream";
packageName = "chunk-store-stream";
- version = "4.1.0";
+ version = "4.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/chunk-store-stream/-/chunk-store-stream-4.1.0.tgz";
- sha512 = "GjkZ16bFKMFnb8LrGZXAPeRoLXZTLu9ges6LCErJe28bMp6zKLxjWuJ7TYzR0jWq9nwo58hXG3BXZYy66Vze0Q==";
+ url = "https://registry.npmjs.org/chunk-store-stream/-/chunk-store-stream-4.1.1.tgz";
+ sha512 = "2nVS+VLMCHNW+S1Y3bOlCtUL4ABPA4zeAcP8E/m15AAc+8fw1elEKIhs/Wg5EZNSfqIk24kUd9rvewmGNPehGQ==";
};
};
"ci-info-1.6.0" = {
@@ -10750,13 +10768,13 @@ let
sha512 = "1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==";
};
};
- "cli-spinners-2.3.0" = {
+ "cli-spinners-2.4.0" = {
name = "cli-spinners";
packageName = "cli-spinners";
- version = "2.3.0";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.3.0.tgz";
- sha512 = "Xs2Hf2nzrvJMFKimOR7YR0QwZ8fc0u98kdtwN1eNAZzNQgH3vK2pXzff6GJtKh7S5hoJ87ECiAiZFS2fb5Ii2w==";
+ url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.4.0.tgz";
+ sha512 = "sJAofoarcm76ZGpuooaO0eDy8saEy+YoZBLjC4h8srt4jeBnkYeOgqxgsJQTpyt2LjI5PTfLJHSL+41Yu4fEJA==";
};
};
"cli-table-0.3.1" = {
@@ -11668,6 +11686,15 @@ let
sha512 = "P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==";
};
};
+ "commander-6.0.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commander/-/commander-6.0.0.tgz";
+ sha512 = "s7EA+hDtTYNhuXkTlhqew4txMZVdszBmKWSPEMxGr8ru8JXR7bLUFIAtPhcSuFdJQ0ILMxnJi8GkQL0yvDy/YA==";
+ };
+ };
"commandpost-1.4.0" = {
name = "commandpost";
packageName = "commandpost";
@@ -14234,13 +14261,13 @@ let
sha512 = "BLHItGr82rUbHhjMu41d+vw9Md49i81jmZSV00HdTq4t+RTHywmEht/23mNFpUl2YeLYJZJyGz4rdlMAyOxNeg==";
};
};
- "delay-4.3.0" = {
+ "delay-4.4.0" = {
name = "delay";
packageName = "delay";
- version = "4.3.0";
+ version = "4.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/delay/-/delay-4.3.0.tgz";
- sha512 = "Lwaf3zVFDMBop1yDuFZ19F9WyGcZcGacsbdlZtWjQmM50tOcMntm1njF/Nb/Vjij3KaSvCF+sEYGKrrjObu2NA==";
+ url = "https://registry.npmjs.org/delay/-/delay-4.4.0.tgz";
+ sha512 = "txgOrJu3OdtOfTiEOT2e76dJVfG/1dz2NZ4F0Pyt4UGZJryssMRp5vdM5wQoLwSOBNdrJv3F9PAhp/heqd7vrA==";
};
};
"delayed-stream-1.0.0" = {
@@ -15134,13 +15161,13 @@ let
sha512 = "eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw==";
};
};
- "domino-2.1.5" = {
+ "domino-2.1.6" = {
name = "domino";
packageName = "domino";
- version = "2.1.5";
+ version = "2.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/domino/-/domino-2.1.5.tgz";
- sha512 = "vMDo7f6ogUV9PkzmxXLiXzJkJZqU09Le4C40mj+HmAGS/2FPmdetoNOQZXpu2kekn0GJKvtwKMAVoruTj60Xww==";
+ url = "https://registry.npmjs.org/domino/-/domino-2.1.6.tgz";
+ sha512 = "3VdM/SXBZX2omc9JF9nOPCtDaYQ67BGp5CoLpIQlO2KCAPETs8TcDHacF26jXadGbvUteZzRTeos2fhID5+ucQ==";
};
};
"domutils-1.4.3" = {
@@ -15602,13 +15629,13 @@ let
sha512 = "wmtrUGyfSC23GC/B1SMv2ogAUgbQEtDmTIhfqielrG5ExIM9TP4UoYdi90jLF1aTcsWCJNEO0UrgKzP0y3nTSg==";
};
};
- "electron-to-chromium-1.3.497" = {
+ "electron-to-chromium-1.3.501" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.3.497";
+ version = "1.3.501";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.497.tgz";
- sha512 = "sPdW5bUDZwiFtoonuZCUwRGzsZmKzcLM0bMVhp6SMCfUG+B3faENLx3cE+o+K0Jl+MPuNA9s9cScyFjOlixZpQ==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.501.tgz";
+ sha512 = "tyzuKaV2POw2mtqBBzQGNBojMZzH0MRu8bT8T/50x+hWeucyG/9pkgAATy+PcM2ySNM9+8eG2VllY9c6j4i+bg==";
};
};
"elegant-spinner-1.0.1" = {
@@ -15936,13 +15963,13 @@ let
sha1 = "a115c32504b6302e85a76269d7a57ccdd962e359";
};
};
- "enhanced-resolve-4.2.0" = {
+ "enhanced-resolve-4.3.0" = {
name = "enhanced-resolve";
packageName = "enhanced-resolve";
- version = "4.2.0";
+ version = "4.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.2.0.tgz";
- sha512 = "S7eiFb/erugyd1rLb6mQ3Vuq+EXHv5cpCkNqqIkYkBgN2QdFnyCZzFBleqwGEx4lgNGYij81BWnCrFNK7vxvjQ==";
+ url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz";
+ sha512 = "3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==";
};
};
"enquirer-2.3.6" = {
@@ -16314,13 +16341,13 @@ let
sha512 = "VHDcDg9AwFoeQU9ULPCJCw6P95gr9Er65M+bccefEVD/OOb+WMyQIYw58rpm0F+zcfRJNf394I+BMH8JeU97Hw==";
};
};
- "escalade-3.0.1" = {
+ "escalade-3.0.2" = {
name = "escalade";
packageName = "escalade";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/escalade/-/escalade-3.0.1.tgz";
- sha512 = "DR6NO3h9niOT+MZs7bjxlj2a1k+POu5RN8CLTPX2+i78bRi9eLe7+0zXgUHMnGXWybYcL61E9hGhPKqedy8tQA==";
+ url = "https://registry.npmjs.org/escalade/-/escalade-3.0.2.tgz";
+ sha512 = "gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ==";
};
};
"escape-goat-2.1.1" = {
@@ -16467,13 +16494,13 @@ let
sha512 = "K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==";
};
};
- "eslint-7.4.0" = {
+ "eslint-7.5.0" = {
name = "eslint";
packageName = "eslint";
- version = "7.4.0";
+ version = "7.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-7.4.0.tgz";
- sha512 = "gU+lxhlPHu45H3JkEGgYhWhkR9wLHHEXC9FbWFnTlEkbKyZKWgWRLgf61E8zWmBuI6g5xKBph9ltg3NtZMVF8g==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-7.5.0.tgz";
+ sha512 = "vlUP10xse9sWt9SGRtcr1LAC67BENcQMFeV+w5EvLEoFe3xJ8cF1Skd0msziRx/VMC+72B4DxreCE+OR12OA6Q==";
};
};
"eslint-plugin-no-unsanitized-3.1.2" = {
@@ -16611,13 +16638,13 @@ let
sha512 = "ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==";
};
};
- "espree-7.1.0" = {
+ "espree-7.2.0" = {
name = "espree";
packageName = "espree";
- version = "7.1.0";
+ version = "7.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/espree/-/espree-7.1.0.tgz";
- sha512 = "dcorZSyfmm4WTuTnE5Y7MEN1DyoPYy1ZR783QW1FJoenn7RailyWFsq/UL6ZAAA7uXurN9FIpYyUs3OfiIW+Qw==";
+ url = "https://registry.npmjs.org/espree/-/espree-7.2.0.tgz";
+ sha512 = "H+cQ3+3JYRMEIOl87e7QdHX70ocly5iW4+dttuR8iYSPr/hXKFb+7dBsZ7+u1adC4VrnPlTkv0+OwuPnDop19g==";
};
};
"esprima-1.1.1" = {
@@ -18672,13 +18699,13 @@ let
sha512 = "CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==";
};
};
- "form-urlencoded-4.1.4" = {
+ "form-urlencoded-4.2.1" = {
name = "form-urlencoded";
packageName = "form-urlencoded";
- version = "4.1.4";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/form-urlencoded/-/form-urlencoded-4.1.4.tgz";
- sha512 = "R7Vytos0gMYuPQTMwnNzvK9PBItNV+Qkm/pvghEZI3j2kMrzZmJlczAgHFmt12VV+IRYQXgTlSGP1PKAsMCIUA==";
+ url = "https://registry.npmjs.org/form-urlencoded/-/form-urlencoded-4.2.1.tgz";
+ sha512 = "0eFJroOH2qaqc/630d4YZpmsyKmh6sfq/1z3YMXvFab0O6teGnf8640C7gufikwbQJFaC6nPlG4d/GiYVN+Dcw==";
};
};
"format-0.2.2" = {
@@ -20194,13 +20221,13 @@ let
sha512 = "aWTDeNw9g+XqEZNcTjMMZSy7B7yE9toWOFYip7ofFTLleJhvZwUxxTxkTpKvF+p1SAA4VHmuEy7PiHTHyq8tJg==";
};
};
- "got-11.5.0" = {
+ "got-11.5.1" = {
name = "got";
packageName = "got";
- version = "11.5.0";
+ version = "11.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/got/-/got-11.5.0.tgz";
- sha512 = "vOZEcEaK0b6x11uniY0HcblZObKPRO75Jvz53VKuqGSaKCM/zEt0sj2LGYVdqDYJzO3wYdG+FPQQ1hsgoXy7vQ==";
+ url = "https://registry.npmjs.org/got/-/got-11.5.1.tgz";
+ sha512 = "reQEZcEBMTGnujmQ+Wm97mJs/OK6INtO6HmLI+xt3+9CvnRwWjXutUvb2mqr+Ao4Lu05Rx6+udx9sOQAmExMxA==";
};
};
"got-6.7.1" = {
@@ -20374,15 +20401,6 @@ let
sha512 = "6WzlBFC0lWmXJbIVE8OgFgXIP4RJi3OQgTPa0DVMsDXdpRDjTsM1K9wfl5HSYX7R87QAGlvcv2Y4BIZa/ItonA==";
};
};
- "graphql-tag-2.10.3" = {
- name = "graphql-tag";
- packageName = "graphql-tag";
- version = "2.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.10.3.tgz";
- sha512 = "4FOv3ZKfA4WdOKJeHdz6B3F/vxBLSgmBcGeAFPf4n1F64ltJUvOOerNj0rsJxONQGdhUMynQIvd6LzB+1J5oKA==";
- };
- };
"graphql-tag-2.10.4" = {
name = "graphql-tag";
packageName = "graphql-tag";
@@ -21418,13 +21436,13 @@ let
sha1 = "3a03edc2214bca3b66424a3e7959349509cb0351";
};
};
- "htmlnano-0.2.5" = {
+ "htmlnano-0.2.6" = {
name = "htmlnano";
packageName = "htmlnano";
- version = "0.2.5";
+ version = "0.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/htmlnano/-/htmlnano-0.2.5.tgz";
- sha512 = "X1iPSwXG/iF9bVs+/obt2n6F64uH0ETkA8zp7qFDmLW9/+A6ueHGeb/+qD67T21qUY22owZPMdawljN50ajkqA==";
+ url = "https://registry.npmjs.org/htmlnano/-/htmlnano-0.2.6.tgz";
+ sha512 = "HUY/99maFsWX2LRoGJpZ/8QRLCkyY0UU1El3wgLLFAHQlD3mCxCJJNcWJk5SBqaU49MLhIWVDW6cGBeuemvaPQ==";
};
};
"htmlparser2-3.10.1" = {
@@ -27945,13 +27963,13 @@ let
sha1 = "79cc6d65a00bb5b7ef5c25ae60ebbb5d9a7681a8";
};
};
- "magnet-uri-5.2.4" = {
+ "magnet-uri-5.3.0" = {
name = "magnet-uri";
packageName = "magnet-uri";
- version = "5.2.4";
+ version = "5.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-5.2.4.tgz";
- sha512 = "VYaJMxhr8B9BrCiNINUsuhaEe40YnG+AQBwcqUKO66lSVaI9I3A1iH/6EmEwRI8OYUg5Gt+4lLE7achg676lrg==";
+ url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-5.3.0.tgz";
+ sha512 = "8GuTc9mXYfaKrXz687kzx2YTEhMR/X1Qgt6tkTNwPlb2fUy3QfU+O9zuoB5DKAa/IyVdLGxe9xSFUtaA+ZG5tQ==";
};
};
"make-dir-1.3.0" = {
@@ -28917,13 +28935,13 @@ let
sha1 = "401fdec7ec21cdb9e03cd3d3021398da21b27085";
};
};
- "metals-languageclient-0.2.7" = {
+ "metals-languageclient-0.2.8" = {
name = "metals-languageclient";
packageName = "metals-languageclient";
- version = "0.2.7";
+ version = "0.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/metals-languageclient/-/metals-languageclient-0.2.7.tgz";
- sha512 = "iZfEI/gAzAmzuc8M+ALBbWGHgk3VjwWaEKkgJChHdl2Ase/DSkNvnCkJwfG3JD4aksS9YA1C0nSf+pLIU7r6kA==";
+ url = "https://registry.npmjs.org/metals-languageclient/-/metals-languageclient-0.2.8.tgz";
+ sha512 = "RGy28w9iYwGt3im5Da6YjD9eF6GTKtrRvluWy8StfwbHvI/KsobF1zmyVX/fD0wvNUCY0am867rImkjs1paTzA==";
};
};
"metalsmith-2.3.0" = {
@@ -30339,13 +30357,13 @@ let
sha1 = "20a318c30cb45f71fe7adfbf7b21c99c1472ef11";
};
};
- "native-request-1.0.5" = {
+ "native-request-1.0.7" = {
name = "native-request";
packageName = "native-request";
- version = "1.0.5";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/native-request/-/native-request-1.0.5.tgz";
- sha512 = "7wU3DvBGAJQxWuMR3F62zrhB7hxNj2DdlC/eBVrCgavc6+ZpFZOqS/PsR7QyUPLMkFk0GvvzoeeOAZGLLnObnA==";
+ url = "https://registry.npmjs.org/native-request/-/native-request-1.0.7.tgz";
+ sha512 = "9nRjinI9bmz+S7dgNtf4A70+/vPhnd+2krGpy4SUlADuOuSa24IDkNaZ+R/QT1wQ6S8jBdi6wE7fLekFZNfUpQ==";
};
};
"natives-1.1.6" = {
@@ -30465,13 +30483,13 @@ let
sha1 = "ae603b36b134bcec347b452422b0bf98d5832ec8";
};
};
- "nearley-2.19.4" = {
+ "nearley-2.19.5" = {
name = "nearley";
packageName = "nearley";
- version = "2.19.4";
+ version = "2.19.5";
src = fetchurl {
- url = "https://registry.npmjs.org/nearley/-/nearley-2.19.4.tgz";
- sha512 = "oqj3m4oqwKsN77pETa9IPvxHHHLW68KrDc2KYoWMUOhDlrNUo7finubwffQMBRnwNCOXc4kRxCZO0Rvx4L6Zrw==";
+ url = "https://registry.npmjs.org/nearley/-/nearley-2.19.5.tgz";
+ sha512 = "qoh1ZXXl0Kpn40tFhmgvffUAlbpRMcjLUagNVnT1JmliUIsB4tFabmCNhD97+tkf9FZ/SLhhYzNow0V3GitzDg==";
};
};
"neat-csv-2.1.0" = {
@@ -32583,6 +32601,15 @@ let
sha512 = "77iGeVU1cIdRhgFzCK8aw1fbtT1B/iZAvWjS+l/o1x0RShMgxHUZaD2yDpWsNCPwXg9z1ZA78Kbdvr8kBmG/Ww==";
};
};
+ "ora-4.0.5" = {
+ name = "ora";
+ packageName = "ora";
+ version = "4.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ora/-/ora-4.0.5.tgz";
+ sha512 = "jCDgm9DqvRcNIAEv2wZPrh7E5PcQiDUnbnWbAfu4NGAE2ZNqPFbDixmWldy1YG2QfLeQhuiu6/h5VRrk6cG50w==";
+ };
+ };
"orchestrator-0.3.8" = {
name = "orchestrator";
packageName = "orchestrator";
@@ -32880,15 +32907,6 @@ let
sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==";
};
};
- "p-limit-3.0.1" = {
- name = "p-limit";
- packageName = "p-limit";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-limit/-/p-limit-3.0.1.tgz";
- sha512 = "mw/p92EyOzl2MhauKodw54Rx5ZK4624rNfgNaBguFZkHzyUG9WsDzFF5/yQVEJinbJDdP4jEfMN+uBquiGnaLg==";
- };
- };
"p-limit-3.0.2" = {
name = "p-limit";
packageName = "p-limit";
@@ -35050,13 +35068,13 @@ let
sha512 = "C2hrAPzmRdpuL3iH0TDdQ6XCc9M7Dcc3zEW5BLerY65G4tWWszwv6nG/ksi6ul5i2mx22ubdljgktXCtNkydkw==";
};
};
- "posthtml-0.12.3" = {
+ "posthtml-0.13.1" = {
name = "posthtml";
packageName = "posthtml";
- version = "0.12.3";
+ version = "0.13.1";
src = fetchurl {
- url = "https://registry.npmjs.org/posthtml/-/posthtml-0.12.3.tgz";
- sha512 = "Fbpi95+JJyR0tqU7pUy1zTSQFjAsluuwB9pJ1h0jtnGk7n/O2TBtP5nDl9rV0JVACjQ1Lm5wSp4ppChr8u3MhA==";
+ url = "https://registry.npmjs.org/posthtml/-/posthtml-0.13.1.tgz";
+ sha512 = "8aJZ63WYL9YsAZVcrIn6U0dSYbna7hcTceZjnbH7dilg01t4t3JDx0UovbhGFscFJg/++qhECCjGEQuJAqD7dA==";
};
};
"posthtml-parser-0.4.2" = {
@@ -35644,13 +35662,13 @@ let
sha1 = "bc826e34c3af4697e8d0af7a669e4d612aedcd17";
};
};
- "protobufjs-6.10.0" = {
+ "protobufjs-6.10.1" = {
name = "protobufjs";
packageName = "protobufjs";
- version = "6.10.0";
+ version = "6.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/protobufjs/-/protobufjs-6.10.0.tgz";
- sha512 = "Hdz1+CXkrlmGDKkP6DczxysdnUyUuhM1mjeaydnBxOcjxQPbJldLZ8eGE1gX0UTsgv+0QkFfn6dioo5yt9XORw==";
+ url = "https://registry.npmjs.org/protobufjs/-/protobufjs-6.10.1.tgz";
+ sha512 = "pb8kTchL+1Ceg4lFd5XUpK8PdWacbvV5SK2ULH2ebrYtl4GjJmS24m6CKME67jzV53tbJxHlnNOSqQHbTsR9JQ==";
};
};
"protocol-buffers-encodings-1.1.0" = {
@@ -36517,13 +36535,13 @@ let
sha512 = "hEJH0s8PXLY/cdXh66tNEQGndDrIKNqNC5xmrysZy3i5C3oEoLna7YAOad+7u125+zH1HNXUmGEkrhb3c2VriA==";
};
};
- "purgecss-1.4.2" = {
+ "purgecss-2.3.0" = {
name = "purgecss";
packageName = "purgecss";
- version = "1.4.2";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/purgecss/-/purgecss-1.4.2.tgz";
- sha512 = "hkOreFTgiyMHMmC2BxzdIw5DuC6kxAbP/gGOGd3MEsF3+5m69rIvUEPaxrnoUtfODTFKe9hcXjGwC6jcjoyhOw==";
+ url = "https://registry.npmjs.org/purgecss/-/purgecss-2.3.0.tgz";
+ sha512 = "BE5CROfVGsx2XIhxGuZAT7rTH9lLeQx/6M0P7DTXQH4IUc3BBzs9JUzt4yzGf3JrH9enkeq6YJBe9CTtkm1WmQ==";
};
};
"push-stream-10.1.2" = {
@@ -38758,13 +38776,13 @@ let
sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==";
};
};
- "rollup-2.21.0" = {
+ "rollup-2.22.1" = {
name = "rollup";
packageName = "rollup";
- version = "2.21.0";
+ version = "2.22.1";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.21.0.tgz";
- sha512 = "BEGgy+wSzux7Ycq58pRiWEOBZaXRXTuvzl1gsm7gqmsAHxkWf9nyA5V2LN9fGSHhhDQd0/C13iRzSh4bbIpWZQ==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.22.1.tgz";
+ sha512 = "K9AUQUCJkVqC+A7uUDacfhmpEeAjc2uOmSpvGI5xaYsm8pXgy4ZWEM8wHPfKj11xvCwFZppkRDo8a0RESJXCnw==";
};
};
"rollup-plugin-babel-4.4.0" = {
@@ -39199,13 +39217,13 @@ let
sha512 = "y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==";
};
};
- "sass-formatter-0.4.10" = {
+ "sass-formatter-0.4.12" = {
name = "sass-formatter";
packageName = "sass-formatter";
- version = "0.4.10";
+ version = "0.4.12";
src = fetchurl {
- url = "https://registry.npmjs.org/sass-formatter/-/sass-formatter-0.4.10.tgz";
- sha512 = "PGLPkmVH5D88rglknE+safJvtOG4uYhcNVD4opSDX4Ho5l5fkKmEMU526TPOXgfmpOGxi54lb42gzXfRiT6sZw==";
+ url = "https://registry.npmjs.org/sass-formatter/-/sass-formatter-0.4.12.tgz";
+ sha512 = "dGDTzujNHdj2nnHPZ1y+5ybJOdrGDmkzwRwwzYVlprXs0QBiACydA3h+1KUEbAJbZ84CtiVHAuBLfakWqcbGEA==";
};
};
"sass-lookup-3.0.0" = {
@@ -40171,13 +40189,13 @@ let
sha1 = "50a9989da7c98c2c61dad119bc97470ef8528129";
};
};
- "simple-concat-1.0.0" = {
+ "simple-concat-1.0.1" = {
name = "simple-concat";
packageName = "simple-concat";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz";
- sha1 = "7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6";
+ url = "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz";
+ sha512 = "cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==";
};
};
"simple-get-2.8.1" = {
@@ -40990,13 +41008,13 @@ let
sha512 = "csdVyakzHJRyCevY4aZC2Eacda8paf+4nmRGF2N7KxCLKY2Ajn72JsExaQlJQ2BiXJncp44p3T+b80cU+2TTsg==";
};
};
- "sonic-boom-1.0.1" = {
+ "sonic-boom-1.0.2" = {
name = "sonic-boom";
packageName = "sonic-boom";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-1.0.1.tgz";
- sha512 = "o9tx+bonVEXSaPtptyXQXpP8l6UV9Bi3im2geZskvWw2a/o/hrbWI7EBbbv+rOx6Hubnzun9GgH4WfbgEA3MFQ==";
+ url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-1.0.2.tgz";
+ sha512 = "sRMmXu7uFDXoniGvtLHuQk5KWovLWoi6WKASn7rw0ro41mPf0fOolkGp4NE6680CbxvNh26zWNyFQYYWXe33EA==";
};
};
"sorcery-0.10.0" = {
@@ -41602,13 +41620,13 @@ let
sha512 = "J3fsWb5nS6PqObZLW2tclEz/bkRQ5pcF9goXanYGVsoH71F6W4f5sOnck9szeubI8srNaiL9pa0kPRv/lojHiw==";
};
};
- "ssb-db-20.2.0" = {
+ "ssb-db-20.2.2" = {
name = "ssb-db";
packageName = "ssb-db";
- version = "20.2.0";
+ version = "20.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-db/-/ssb-db-20.2.0.tgz";
- sha512 = "1JMUGGmxfoDNuFG56dfAZnzxtzKDtME/SITE3nlVX684n7zHih46NTFAF721PttQVkS1wcXJXmb3fbY2Rpvy1g==";
+ url = "https://registry.npmjs.org/ssb-db/-/ssb-db-20.2.2.tgz";
+ sha512 = "Gfdss0LWdfkRSALCaT1ggE7FhwNaIl/NcY2RMC9BFt3SWP1QGJweDw4TsxIawpRQp7JxNN+WQKra/wtFSsfPig==";
};
};
"ssb-ebt-5.6.7" = {
@@ -42367,13 +42385,13 @@ let
sha1 = "7d8e6b4e03ac4781778f8c79517501bfb0762a9f";
};
};
- "stream-with-known-length-to-buffer-1.0.3" = {
+ "stream-with-known-length-to-buffer-1.0.4" = {
name = "stream-with-known-length-to-buffer";
packageName = "stream-with-known-length-to-buffer";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/stream-with-known-length-to-buffer/-/stream-with-known-length-to-buffer-1.0.3.tgz";
- sha512 = "4Wi2v47HMkNdRWrlFJNlIsrhV6z6nCyVKVAIiq14MAnc7wILEAINmn96IiPWTcXzT8y2S6yfBoX++MUxqiovag==";
+ url = "https://registry.npmjs.org/stream-with-known-length-to-buffer/-/stream-with-known-length-to-buffer-1.0.4.tgz";
+ sha512 = "ztP79ug6S+I7td0Nd2GBeIKCm+vA54c+e60FY87metz5n/l6ydPELd2lxsljz8OpIhsRM9HkIiAwz85+S5G5/A==";
};
};
"stream.finished-1.2.0" = {
@@ -43042,13 +43060,13 @@ let
sha512 = "luHn2OAMGJouOnadm6Fim6WXodQ2AWDkWjYq0rMdyEwzO5PdE4LzoXAEn9LL2snmBAlwUp1URVOTF7lZR3KU+Q==";
};
};
- "stylus-0.54.7" = {
+ "stylus-0.54.8" = {
name = "stylus";
packageName = "stylus";
- version = "0.54.7";
+ version = "0.54.8";
src = fetchurl {
- url = "https://registry.npmjs.org/stylus/-/stylus-0.54.7.tgz";
- sha512 = "Yw3WMTzVwevT6ZTrLCYNHAFmanMxdylelL3hkWNgPMeTCpMwpV3nXjpOHuBXtFv7aiO2xRuQS6OoAdgkNcSNug==";
+ url = "https://registry.npmjs.org/stylus/-/stylus-0.54.8.tgz";
+ sha512 = "vr54Or4BZ7pJafo2mpf0ZcwA74rpuYCZbxrHBsH8kbcXOwSfvBFwsRfpGO5OD5fhG5HDCFW737PKaawI7OqEAg==";
};
};
"stylus-lookup-3.0.2" = {
@@ -43087,15 +43105,6 @@ let
sha512 = "cm7TQq9I8dA5LKUr+r8W7RzQlLsmTdCr6wXmjYueOoh/bQu55ODEw7GFhT42pUyoaLtO2rgmx1+8cSIjY9lR9g==";
};
};
- "subscriptions-transport-ws-0.9.16" = {
- name = "subscriptions-transport-ws";
- packageName = "subscriptions-transport-ws";
- version = "0.9.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.16.tgz";
- sha512 = "pQdoU7nC+EpStXnCfh/+ho0zE0Z+ma+i7xvj7bkXKb1dvYHSZxgRPaU6spRP+Bjzow67c/rRDoix5RT0uU9omw==";
- };
- };
"subscriptions-transport-ws-0.9.17" = {
name = "subscriptions-transport-ws";
packageName = "subscriptions-transport-ws";
@@ -43474,13 +43483,13 @@ let
sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==";
};
};
- "systeminformation-4.26.9" = {
+ "systeminformation-4.26.10" = {
name = "systeminformation";
packageName = "systeminformation";
- version = "4.26.9";
+ version = "4.26.10";
src = fetchurl {
- url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.26.9.tgz";
- sha512 = "69MTIX9j//wnteJzQWuGL6FiMxlfS3wTWyhROI6pNUaQALYqJb3W9VtLVcEcKFOjO1vrGRgilJVFzJeRRi//Pg==";
+ url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.26.10.tgz";
+ sha512 = "bO4FIzrjESAfh4KHwkUJym3jvKtJ4oJ2PG0BBQGBmKa0pF2oanpkB7CF4ZsSX7vfp3+GKaLzioVwpV/3Tyk+lQ==";
};
};
"syswide-cas-5.3.0" = {
@@ -43880,13 +43889,13 @@ let
sha512 = "a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw==";
};
};
- "terminal-kit-1.36.0" = {
+ "terminal-kit-1.37.0" = {
name = "terminal-kit";
packageName = "terminal-kit";
- version = "1.36.0";
+ version = "1.37.0";
src = fetchurl {
- url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.36.0.tgz";
- sha512 = "RZqiGd9Ykh+CDcXuVWt3jwSr5WNjo9jKdIajWxdLS+PknnfwZebois0Qd5kY7H/d/mal1S51ILaNX3nBOM/xog==";
+ url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.37.0.tgz";
+ sha512 = "/lb76HOwjVKHIbv+1897c2F/7Rv94QmVIEMKjFZDHPhZhpmCM4wsJ1VNWDdIGcWYRtr+eotob2BvjLQE5BlgMw==";
};
};
"terser-3.17.0" = {
@@ -45419,13 +45428,13 @@ let
sha512 = "hSAifV3k+i6lEoCJ2k6R2Z/rp/H3+8sdmcn5NrS3/3kE7+RyZXm9aqvxWqjEXHAd8b0pShatpcdMTvEdvAJltQ==";
};
};
- "typescript-3.9.6" = {
+ "typescript-3.9.7" = {
name = "typescript";
packageName = "typescript";
- version = "3.9.6";
+ version = "3.9.7";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-3.9.6.tgz";
- sha512 = "Pspx3oKAPJtjNwE92YS05HQoY7z2SFyOpHo9MqJor3BXAGNaPUs83CuVp9VISFkSjyRfiTpmKuAYGJB7S7hOxw==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-3.9.7.tgz";
+ sha512 = "BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==";
};
};
"typescript-eslint-parser-16.0.1" = {
@@ -46229,13 +46238,13 @@ let
sha512 = "LnST3ebHwVL2aNe4mejI9IQh2HfZ1RLo8Io2HugSif8ekzD1TlWpHpColOB/eh8JHMLkGH3Akqf040I+4ylNxg==";
};
};
- "universal-user-agent-5.0.0" = {
+ "universal-user-agent-6.0.0" = {
name = "universal-user-agent";
packageName = "universal-user-agent";
- version = "5.0.0";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-5.0.0.tgz";
- sha512 = "B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==";
+ url = "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz";
+ sha512 = "isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==";
};
};
"universalify-0.1.2" = {
@@ -46679,13 +46688,13 @@ let
sha1 = "b9a22f0914e0a86140633dacc302e5f4fa450677";
};
};
- "ut_metadata-3.5.0" = {
+ "ut_metadata-3.5.1" = {
name = "ut_metadata";
packageName = "ut_metadata";
- version = "3.5.0";
+ version = "3.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ut_metadata/-/ut_metadata-3.5.0.tgz";
- sha512 = "eqiRaDYiDl94uVB9oR8Yor+xl0rSKUovsqDxMt+hXzJt1yLYAo0HksVLlSiPPwkXBGFpERQADPanCi0EGhixnw==";
+ url = "https://registry.npmjs.org/ut_metadata/-/ut_metadata-3.5.1.tgz";
+ sha512 = "D98YM9dKGHzNFUuqLHLV1vXqbHNfyvTx/rADtvF9P6D1HYV/0JuArlpnQIHhOuWXQGUVyR5XJGRVLKbeNu0o5A==";
};
};
"ut_pex-2.0.0" = {
@@ -49863,17 +49872,17 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "10.0.2";
+ version = "10.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-10.0.2.tgz";
- sha512 = "L/uLUrZNIwbYzIeU9R3SC2hblDgtxP57msmRjoOQBpSzwlOME+z0wlCXPv+h9NOzNPvVVbEtLtjBgZxUw0IHzg==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-10.0.3.tgz";
+ sha512 = "ONK8YG20KuakQetY0lPKDAOA3uBoLurdpSfFspFkcECyDimwJYSEydi3FUnCxEexeoKvrQWcol+q+u9YPoHCyg==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1000.2"
- sources."@angular-devkit/core-10.0.2"
- sources."@angular-devkit/schematics-10.0.2"
- sources."@schematics/angular-10.0.2"
- sources."@schematics/update-0.1000.2"
+ sources."@angular-devkit/architect-0.1000.3"
+ sources."@angular-devkit/core-10.0.3"
+ sources."@angular-devkit/schematics-10.0.3"
+ sources."@schematics/angular-10.0.3"
+ sources."@schematics/update-0.1000.3"
sources."@types/color-name-1.1.1"
sources."@yarnpkg/lockfile-1.1.0"
sources."JSONStream-1.3.5"
@@ -49909,7 +49918,7 @@ in
sources."chardet-0.7.0"
sources."chownr-1.1.4"
sources."cli-cursor-3.1.0"
- sources."cli-spinners-2.3.0"
+ sources."cli-spinners-2.4.0"
sources."cli-width-2.2.1"
sources."clone-1.0.4"
sources."color-convert-2.0.1"
@@ -50504,7 +50513,7 @@ in
sources."responselike-1.0.2"
sources."safe-buffer-5.2.1"
sources."sha.js-2.4.11"
- sources."simple-concat-1.0.0"
+ sources."simple-concat-1.0.1"
sources."simple-get-3.1.0"
sources."source-map-0.6.1"
sources."sprintf-js-1.0.3"
@@ -50906,7 +50915,7 @@ in
];
})
sources."cli-cursor-3.1.0"
- sources."cli-spinners-2.3.0"
+ sources."cli-spinners-2.4.0"
(sources."cli-table3-0.5.1" // {
dependencies = [
sources."ansi-regex-3.0.0"
@@ -50967,7 +50976,7 @@ in
sources."emoji-regex-8.0.0"
sources."emojis-list-3.0.0"
sources."end-of-stream-1.4.4"
- sources."enhanced-resolve-4.2.0"
+ sources."enhanced-resolve-4.3.0"
sources."errno-0.1.7"
sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
@@ -51368,7 +51377,7 @@ in
sources."tty-browserify-0.0.0"
sources."type-fest-0.11.0"
sources."typedarray-0.0.6"
- sources."typescript-3.9.6"
+ sources."typescript-3.9.7"
sources."union-value-1.0.1"
sources."unique-filename-1.1.1"
sources."unique-slug-2.0.2"
@@ -51460,7 +51469,11 @@ in
};
dependencies = [
sources."@akryum/winattr-3.0.0"
- sources."@apollo/federation-0.17.0"
+ (sources."@apollo/federation-0.17.0" // {
+ dependencies = [
+ sources."apollo-graphql-0.4.5"
+ ];
+ })
(sources."@apollo/protobufjs-1.0.4" // {
dependencies = [
sources."@types/node-10.17.27"
@@ -51473,25 +51486,25 @@ in
sources."@apollographql/graphql-language-service-utils-2.0.2"
sources."@apollographql/graphql-playground-html-1.6.26"
sources."@babel/code-frame-7.10.4"
- sources."@babel/compat-data-7.10.4"
- sources."@babel/core-7.10.4"
- sources."@babel/generator-7.10.4"
+ sources."@babel/compat-data-7.10.5"
+ sources."@babel/core-7.10.5"
+ sources."@babel/generator-7.10.5"
sources."@babel/helper-annotate-as-pure-7.10.4"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.10.4"
sources."@babel/helper-compilation-targets-7.10.4"
- sources."@babel/helper-create-class-features-plugin-7.10.4"
+ sources."@babel/helper-create-class-features-plugin-7.10.5"
sources."@babel/helper-create-regexp-features-plugin-7.10.4"
- sources."@babel/helper-define-map-7.10.4"
+ sources."@babel/helper-define-map-7.10.5"
sources."@babel/helper-explode-assignable-expression-7.10.4"
sources."@babel/helper-function-name-7.10.4"
sources."@babel/helper-get-function-arity-7.10.4"
sources."@babel/helper-hoist-variables-7.10.4"
- sources."@babel/helper-member-expression-to-functions-7.10.4"
+ sources."@babel/helper-member-expression-to-functions-7.10.5"
sources."@babel/helper-module-imports-7.10.4"
- sources."@babel/helper-module-transforms-7.10.4"
+ sources."@babel/helper-module-transforms-7.10.5"
sources."@babel/helper-optimise-call-expression-7.10.4"
sources."@babel/helper-plugin-utils-7.10.4"
- sources."@babel/helper-regex-7.10.4"
+ sources."@babel/helper-regex-7.10.5"
sources."@babel/helper-remap-async-to-generator-7.10.4"
sources."@babel/helper-replace-supers-7.10.4"
sources."@babel/helper-simple-access-7.10.4"
@@ -51500,8 +51513,8 @@ in
sources."@babel/helper-wrap-function-7.10.4"
sources."@babel/helpers-7.10.4"
sources."@babel/highlight-7.10.4"
- sources."@babel/parser-7.10.4"
- sources."@babel/plugin-proposal-async-generator-functions-7.10.4"
+ sources."@babel/parser-7.10.5"
+ sources."@babel/plugin-proposal-async-generator-functions-7.10.5"
sources."@babel/plugin-proposal-class-properties-7.10.4"
sources."@babel/plugin-proposal-dynamic-import-7.10.4"
sources."@babel/plugin-proposal-json-strings-7.10.4"
@@ -51527,7 +51540,7 @@ in
sources."@babel/plugin-transform-arrow-functions-7.10.4"
sources."@babel/plugin-transform-async-to-generator-7.10.4"
sources."@babel/plugin-transform-block-scoped-functions-7.10.4"
- sources."@babel/plugin-transform-block-scoping-7.10.4"
+ sources."@babel/plugin-transform-block-scoping-7.10.5"
sources."@babel/plugin-transform-classes-7.10.4"
sources."@babel/plugin-transform-computed-properties-7.10.4"
sources."@babel/plugin-transform-destructuring-7.10.4"
@@ -51539,39 +51552,39 @@ in
sources."@babel/plugin-transform-function-name-7.10.4"
sources."@babel/plugin-transform-literals-7.10.4"
sources."@babel/plugin-transform-member-expression-literals-7.10.4"
- sources."@babel/plugin-transform-modules-amd-7.10.4"
+ sources."@babel/plugin-transform-modules-amd-7.10.5"
sources."@babel/plugin-transform-modules-commonjs-7.10.4"
- sources."@babel/plugin-transform-modules-systemjs-7.10.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.10.5"
sources."@babel/plugin-transform-modules-umd-7.10.4"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.10.4"
sources."@babel/plugin-transform-new-target-7.10.4"
sources."@babel/plugin-transform-object-super-7.10.4"
- sources."@babel/plugin-transform-parameters-7.10.4"
+ sources."@babel/plugin-transform-parameters-7.10.5"
sources."@babel/plugin-transform-property-literals-7.10.4"
sources."@babel/plugin-transform-regenerator-7.10.4"
sources."@babel/plugin-transform-reserved-words-7.10.4"
sources."@babel/plugin-transform-shorthand-properties-7.10.4"
sources."@babel/plugin-transform-spread-7.10.4"
sources."@babel/plugin-transform-sticky-regex-7.10.4"
- sources."@babel/plugin-transform-template-literals-7.10.4"
+ sources."@babel/plugin-transform-template-literals-7.10.5"
sources."@babel/plugin-transform-typeof-symbol-7.10.4"
- sources."@babel/plugin-transform-typescript-7.10.4"
+ sources."@babel/plugin-transform-typescript-7.10.5"
sources."@babel/plugin-transform-unicode-escapes-7.10.4"
sources."@babel/plugin-transform-unicode-regex-7.10.4"
sources."@babel/preset-env-7.10.4"
sources."@babel/preset-flow-7.10.4"
sources."@babel/preset-modules-0.1.3"
sources."@babel/preset-typescript-7.10.4"
- (sources."@babel/register-7.10.4" // {
+ (sources."@babel/register-7.10.5" // {
dependencies = [
sources."make-dir-2.1.0"
sources."pify-4.0.1"
];
})
- sources."@babel/runtime-7.10.4"
+ sources."@babel/runtime-7.10.5"
sources."@babel/template-7.10.4"
- sources."@babel/traverse-7.10.4"
- sources."@babel/types-7.10.4"
+ sources."@babel/traverse-7.10.5"
+ sources."@babel/types-7.10.5"
sources."@endemolshinegroup/cosmiconfig-typescript-loader-1.0.2"
sources."@hapi/address-2.1.4"
sources."@hapi/bourne-1.3.2"
@@ -51744,10 +51757,8 @@ in
sources."to-regex-range-2.1.1"
];
})
- (sources."apollo-2.29.1" // {
+ (sources."apollo-2.30.1" // {
dependencies = [
- sources."apollo-graphql-0.5.0"
- sources."graphql-tag-2.10.3"
sources."strip-ansi-5.2.0"
];
})
@@ -51755,30 +51766,38 @@ in
sources."apollo-cache-control-0.11.1"
sources."apollo-cache-inmemory-1.6.6"
sources."apollo-client-2.6.10"
- (sources."apollo-codegen-core-0.37.5" // {
+ (sources."apollo-codegen-core-0.37.7" // {
dependencies = [
+ sources."@babel/generator-7.10.4"
+ sources."@babel/types-7.10.4"
sources."recast-0.19.1"
sources."source-map-0.6.1"
];
})
- sources."apollo-codegen-flow-0.35.5"
- sources."apollo-codegen-scala-0.36.5"
- sources."apollo-codegen-swift-0.37.5"
- sources."apollo-codegen-typescript-0.37.5"
+ (sources."apollo-codegen-flow-0.35.7" // {
+ dependencies = [
+ sources."@babel/generator-7.10.4"
+ sources."@babel/types-7.10.4"
+ ];
+ })
+ sources."apollo-codegen-scala-0.36.7"
+ sources."apollo-codegen-swift-0.37.7"
+ (sources."apollo-codegen-typescript-0.37.7" // {
+ dependencies = [
+ sources."@babel/generator-7.10.4"
+ sources."@babel/types-7.10.4"
+ ];
+ })
sources."apollo-datasource-0.7.2"
- (sources."apollo-engine-reporting-2.2.1" // {
+ (sources."apollo-engine-reporting-2.3.0" // {
dependencies = [
sources."uuid-8.2.0"
];
})
sources."apollo-engine-reporting-protobuf-0.5.2"
sources."apollo-env-0.6.5"
- sources."apollo-graphql-0.4.5"
- (sources."apollo-language-server-1.23.1" // {
- dependencies = [
- sources."apollo-graphql-0.5.0"
- ];
- })
+ sources."apollo-graphql-0.5.0"
+ sources."apollo-language-server-1.23.2"
sources."apollo-link-1.2.14"
sources."apollo-link-context-1.0.20"
sources."apollo-link-error-1.1.13"
@@ -51788,10 +51807,10 @@ in
sources."apollo-link-state-0.4.2"
sources."apollo-link-ws-1.0.20"
sources."apollo-server-caching-0.5.2"
- sources."apollo-server-core-2.15.1"
+ sources."apollo-server-core-2.16.0"
sources."apollo-server-env-2.4.5"
sources."apollo-server-errors-2.4.2"
- sources."apollo-server-express-2.15.1"
+ sources."apollo-server-express-2.16.0"
sources."apollo-server-plugin-base-0.9.1"
sources."apollo-server-types-0.5.1"
sources."apollo-tracing-0.11.1"
@@ -51909,7 +51928,7 @@ in
sources."callsites-2.0.0"
sources."camel-case-4.1.1"
sources."camelcase-4.1.0"
- sources."caniuse-lite-1.0.30001099"
+ sources."caniuse-lite-1.0.30001103"
sources."capital-case-1.0.3"
sources."capture-stack-trace-1.0.1"
sources."cardinal-2.1.1"
@@ -51961,7 +51980,7 @@ in
sources."string-width-4.2.0"
];
})
- sources."cli-spinners-2.3.0"
+ sources."cli-spinners-2.4.0"
(sources."cli-truncate-0.2.1" // {
dependencies = [
sources."ansi-regex-2.1.1"
@@ -52127,7 +52146,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.497"
+ sources."electron-to-chromium-1.3.501"
sources."elegant-spinner-1.0.1"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
@@ -52138,7 +52157,7 @@ in
sources."error-ex-1.3.2"
sources."es-abstract-1.17.6"
sources."es-to-primitive-1.2.1"
- sources."escalade-3.0.1"
+ sources."escalade-3.0.2"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
sources."esm-3.2.25"
@@ -53012,7 +53031,7 @@ in
sources."tweetnacl-0.14.5"
sources."type-fest-0.6.0"
sources."type-is-1.6.18"
- sources."typescript-3.9.6"
+ sources."typescript-3.9.7"
sources."unbzip2-stream-1.4.3"
(sources."undefsafe-2.0.3" // {
dependencies = [
@@ -53266,12 +53285,12 @@ in
};
dependencies = [
sources."@babel/code-frame-7.10.4"
- sources."@babel/generator-7.10.4"
+ sources."@babel/generator-7.10.5"
sources."@babel/helper-validator-identifier-7.10.4"
sources."@babel/highlight-7.10.4"
- sources."@babel/parser-7.10.4"
+ sources."@babel/parser-7.10.5"
sources."@babel/template-7.10.4"
- sources."@babel/types-7.10.4"
+ sources."@babel/types-7.10.5"
sources."@webassemblyjs/ast-1.9.0"
sources."@webassemblyjs/floating-point-hex-parser-1.9.0"
sources."@webassemblyjs/helper-api-error-1.9.0"
@@ -53351,21 +53370,21 @@ in
};
dependencies = [
sources."@babel/code-frame-7.10.4"
- (sources."@babel/core-7.10.4" // {
+ (sources."@babel/core-7.10.5" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.10.4" // {
+ (sources."@babel/generator-7.10.5" // {
dependencies = [
sources."source-map-0.5.7"
];
})
sources."@babel/helper-function-name-7.10.4"
sources."@babel/helper-get-function-arity-7.10.4"
- sources."@babel/helper-member-expression-to-functions-7.10.4"
+ sources."@babel/helper-member-expression-to-functions-7.10.5"
sources."@babel/helper-module-imports-7.10.4"
- sources."@babel/helper-module-transforms-7.10.4"
+ sources."@babel/helper-module-transforms-7.10.5"
sources."@babel/helper-optimise-call-expression-7.10.4"
sources."@babel/helper-replace-supers-7.10.4"
sources."@babel/helper-simple-access-7.10.4"
@@ -53373,10 +53392,10 @@ in
sources."@babel/helper-validator-identifier-7.10.4"
sources."@babel/helpers-7.10.4"
sources."@babel/highlight-7.10.4"
- sources."@babel/parser-7.10.4"
+ sources."@babel/parser-7.10.5"
sources."@babel/template-7.10.4"
- sources."@babel/traverse-7.10.4"
- sources."@babel/types-7.10.4"
+ sources."@babel/traverse-7.10.5"
+ sources."@babel/types-7.10.5"
sources."JSV-4.0.2"
sources."ansi-styles-3.2.1"
sources."array-unique-0.3.2"
@@ -53955,7 +53974,7 @@ in
sources."shasum-1.0.2"
sources."shasum-object-1.0.0"
sources."shell-quote-1.7.2"
- sources."simple-concat-1.0.0"
+ sources."simple-concat-1.0.1"
sources."source-map-0.5.7"
sources."stream-browserify-2.0.2"
sources."stream-combiner2-1.1.1"
@@ -54081,7 +54100,7 @@ in
sources."co-3.1.0"
sources."codepage-1.4.0"
sources."combined-stream-1.0.8"
- sources."commander-5.1.0"
+ sources."commander-6.0.0"
sources."compact2string-1.4.1"
sources."concat-map-0.0.1"
(sources."concat-stream-2.0.0" // {
@@ -54182,7 +54201,7 @@ in
sources."long-4.0.0"
sources."loud-rejection-1.6.0"
sources."lru-2.0.1"
- sources."magnet-uri-5.2.4"
+ sources."magnet-uri-5.3.0"
sources."map-obj-1.0.1"
(sources."mdns-js-1.0.3" // {
dependencies = [
@@ -54261,7 +54280,7 @@ in
sources."plist-3.0.1"
sources."process-nextick-args-2.0.1"
sources."promiscuous-0.6.0"
- sources."protobufjs-6.10.0"
+ sources."protobufjs-6.10.1"
sources."psl-1.8.0"
(sources."pump-0.3.5" // {
dependencies = [
@@ -54313,7 +54332,7 @@ in
sources."sax-1.2.4"
sources."semver-5.7.1"
sources."signal-exit-3.0.3"
- sources."simple-concat-1.0.0"
+ sources."simple-concat-1.0.1"
sources."simple-get-2.8.1"
(sources."simple-peer-6.4.4" // {
dependencies = [
@@ -54508,10 +54527,10 @@ in
coc-git = nodeEnv.buildNodePackage {
name = "coc-git";
packageName = "coc-git";
- version = "1.8.0";
+ version = "1.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-git/-/coc-git-1.8.0.tgz";
- sha512 = "uEoTWDBXyNROUbVVxHOwedAGrN7Liy8VUgLZnU52BH6h15bFA9XwcwW7o+gAbRhH5u+Vg29npQSJkXJKNC1C0g==";
+ url = "https://registry.npmjs.org/coc-git/-/coc-git-1.8.1.tgz";
+ sha512 = "C9un9MiSk9rZ2ATOdBeTTH/39sHzQJf5rJnuVqNNyjTECIdzsL0Hbb8/CffFrB82z4tDfru2dncjd5fnz/OTOQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -54526,10 +54545,10 @@ in
coc-go = nodeEnv.buildNodePackage {
name = "coc-go";
packageName = "coc-go";
- version = "0.9.1";
+ version = "0.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-go/-/coc-go-0.9.1.tgz";
- sha512 = "4a7LdxkDtSHXrH41jKJ8ENePXQCuKclrUoiPDe9uuOmj00jbGYSLnksGJxBLHl2cOPslfq5JooTrakp8AGrwfg==";
+ url = "https://registry.npmjs.org/coc-go/-/coc-go-0.9.2.tgz";
+ sha512 = "2w3kFR0SG4zBJ1mEd4eaCXB+LIdbZxkaSpivojRbiwNBc6Z6gfcqcAl841lGxr9Ry4R4jPGjnGH0N+08Ectg1Q==";
};
dependencies = [
sources."isexe-2.0.0"
@@ -54572,7 +54591,7 @@ in
sha512 = "gr0GBKeew88n8hcn4fkzIcBruhih7YAqBd7ldsYjoG2qZhjPEj/arYESFOYgooX1jYuxCpQYH526EXXzs4BGRQ==";
};
dependencies = [
- sources."typescript-3.9.6"
+ sources."typescript-3.9.7"
];
buildInputs = globalBuildInputs;
meta = {
@@ -54675,10 +54694,10 @@ in
coc-metals = nodeEnv.buildNodePackage {
name = "coc-metals";
packageName = "coc-metals";
- version = "0.9.0";
+ version = "0.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-metals/-/coc-metals-0.9.0.tgz";
- sha512 = "rQPCK+x+/Aij/YqjGTIS5c5WA3dPba2RwubGouXSRkl8+F1I4NyAXiXtHAx2V4W1LYvmjd990i6Dtzr3JLx+5A==";
+ url = "https://registry.npmjs.org/coc-metals/-/coc-metals-0.9.1.tgz";
+ sha512 = "BMM8RIPR7HPAqOeQ+tqf+emtuUFATz5Kam9TUN3I4g1URFrI3pthnx6N5s6h/sdtRiwdCLo8vPie58y+Bhx4EQ==";
};
dependencies = [
sources."@chemzqm/neovim-5.1.9"
@@ -54722,7 +54741,7 @@ in
})
sources."lodash-4.17.19"
sources."log4js-5.3.0"
- (sources."metals-languageclient-0.2.7" // {
+ (sources."metals-languageclient-0.2.8" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."semver-7.3.2"
@@ -54880,7 +54899,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
- sources."caniuse-lite-1.0.30001099"
+ sources."caniuse-lite-1.0.30001103"
sources."capture-stack-trace-1.0.1"
sources."ccount-1.0.5"
sources."chalk-2.4.2"
@@ -54977,7 +54996,7 @@ in
sources."domutils-1.7.0"
sources."dot-prop-5.2.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.3.497"
+ sources."electron-to-chromium-1.3.501"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."entities-1.1.2"
@@ -55664,7 +55683,7 @@ in
sources."tsutils-3.17.1"
sources."type-check-0.3.2"
sources."type-fest-0.8.1"
- sources."typescript-3.9.6"
+ sources."typescript-3.9.7"
sources."unherit-1.1.3"
sources."unified-6.2.0"
sources."union-value-1.0.1"
@@ -55807,10 +55826,10 @@ in
coc-rust-analyzer = nodeEnv.buildNodePackage {
name = "coc-rust-analyzer";
packageName = "coc-rust-analyzer";
- version = "0.7.12";
+ version = "0.7.13";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.7.12.tgz";
- sha512 = "J+NXI2biHfi3EXAYLxi35bSMdZl7C11BUs5ur3jS5ToycxkpJeN+LQZ2VPgEQgMJswcWsL/pKC3n3hsQkF+46A==";
+ url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.7.13.tgz";
+ sha512 = "bt3lTGwEKy5wkBBeHu715hIZUsCaCdKk53qmnIWFXBym6I7SOSdlGDVni/M0be+3ereup9CkTDZVvEoMq1eksg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -55884,13 +55903,13 @@ in
};
dependencies = [
sources."@babel/code-frame-7.10.4"
- sources."@babel/core-7.10.4"
- sources."@babel/generator-7.10.4"
+ sources."@babel/core-7.10.5"
+ sources."@babel/generator-7.10.5"
sources."@babel/helper-function-name-7.10.4"
sources."@babel/helper-get-function-arity-7.10.4"
- sources."@babel/helper-member-expression-to-functions-7.10.4"
+ sources."@babel/helper-member-expression-to-functions-7.10.5"
sources."@babel/helper-module-imports-7.10.4"
- sources."@babel/helper-module-transforms-7.10.4"
+ sources."@babel/helper-module-transforms-7.10.5"
sources."@babel/helper-optimise-call-expression-7.10.4"
sources."@babel/helper-replace-supers-7.10.4"
sources."@babel/helper-simple-access-7.10.4"
@@ -55898,10 +55917,10 @@ in
sources."@babel/helper-validator-identifier-7.10.4"
sources."@babel/helpers-7.10.4"
sources."@babel/highlight-7.10.4"
- sources."@babel/parser-7.10.4"
+ sources."@babel/parser-7.10.5"
sources."@babel/template-7.10.4"
- sources."@babel/traverse-7.10.4"
- sources."@babel/types-7.10.4"
+ sources."@babel/traverse-7.10.5"
+ sources."@babel/types-7.10.5"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
sources."@types/glob-7.1.3"
@@ -55957,7 +55976,7 @@ in
sources."callsites-2.0.0"
sources."camelcase-4.1.0"
sources."camelcase-keys-4.2.0"
- sources."caniuse-lite-1.0.30001099"
+ sources."caniuse-lite-1.0.30001103"
sources."ccount-1.0.5"
sources."chalk-2.4.2"
sources."character-entities-1.2.4"
@@ -56017,11 +56036,11 @@ in
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
sources."dot-prop-5.2.0"
- sources."electron-to-chromium-1.3.497"
+ sources."electron-to-chromium-1.3.501"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
- sources."escalade-3.0.1"
+ sources."escalade-3.0.2"
sources."escape-string-regexp-1.0.5"
sources."esprima-4.0.1"
sources."execall-2.0.0"
@@ -56513,7 +56532,7 @@ in
sources."tslib-1.13.0"
sources."tslint-5.20.1"
sources."tsutils-2.29.0"
- sources."typescript-3.9.6"
+ sources."typescript-3.9.7"
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -57318,7 +57337,7 @@ in
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
- sources."sass-formatter-0.4.10"
+ sources."sass-formatter-0.4.12"
sources."sax-1.2.4"
sources."semver-5.7.1"
sources."semver-diff-2.1.0"
@@ -57433,9 +57452,10 @@ in
sources."yargs-parser-2.4.1"
];
})
- (sources."stylus-0.54.7" // {
+ (sources."stylus-0.54.8" // {
dependencies = [
sources."debug-3.1.0"
+ sources."mkdirp-1.0.4"
sources."ms-2.0.0"
sources."semver-6.3.0"
sources."source-map-0.7.3"
@@ -57478,7 +57498,7 @@ in
sources."type-check-0.3.2"
sources."type-fest-0.3.1"
sources."typedarray-0.0.6"
- sources."typescript-3.9.6"
+ sources."typescript-3.9.7"
sources."unherit-1.1.3"
(sources."unified-7.1.0" // {
dependencies = [
@@ -59628,7 +59648,7 @@ in
sources."varint-5.0.0"
];
})
- sources."simple-concat-1.0.0"
+ sources."simple-concat-1.0.1"
sources."simple-get-3.1.0"
sources."simple-sha1-2.1.2"
sources."siphash24-1.1.1"
@@ -59876,7 +59896,7 @@ in
sources."assert-plus-1.0.0"
sources."async-2.6.3"
sources."asynckit-0.4.0"
- sources."aws-sdk-2.713.0"
+ sources."aws-sdk-2.715.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.10.0"
sources."base64-js-1.3.1"
@@ -59889,7 +59909,7 @@ in
sources."combined-stream-1.0.8"
sources."core-util-is-1.0.2"
sources."dashdash-1.14.1"
- sources."delay-4.3.0"
+ sources."delay-4.4.0"
sources."delayed-stream-1.0.0"
sources."ecc-jsbn-0.1.2"
sources."eventemitter3-4.0.4"
@@ -60020,16 +60040,16 @@ in
};
dependencies = [
sources."@babel/code-frame-7.10.4"
- sources."@babel/core-7.10.4"
- sources."@babel/generator-7.10.4"
+ sources."@babel/core-7.10.5"
+ sources."@babel/generator-7.10.5"
sources."@babel/helper-annotate-as-pure-7.10.4"
sources."@babel/helper-builder-react-jsx-7.10.4"
- sources."@babel/helper-builder-react-jsx-experimental-7.10.4"
+ sources."@babel/helper-builder-react-jsx-experimental-7.10.5"
sources."@babel/helper-function-name-7.10.4"
sources."@babel/helper-get-function-arity-7.10.4"
- sources."@babel/helper-member-expression-to-functions-7.10.4"
+ sources."@babel/helper-member-expression-to-functions-7.10.5"
sources."@babel/helper-module-imports-7.10.4"
- sources."@babel/helper-module-transforms-7.10.4"
+ sources."@babel/helper-module-transforms-7.10.5"
sources."@babel/helper-optimise-call-expression-7.10.4"
sources."@babel/helper-plugin-utils-7.10.4"
sources."@babel/helper-replace-supers-7.10.4"
@@ -60038,16 +60058,16 @@ in
sources."@babel/helper-validator-identifier-7.10.4"
sources."@babel/helpers-7.10.4"
sources."@babel/highlight-7.10.4"
- sources."@babel/parser-7.10.4"
+ sources."@babel/parser-7.10.5"
sources."@babel/plugin-proposal-object-rest-spread-7.10.4"
sources."@babel/plugin-syntax-jsx-7.10.4"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
sources."@babel/plugin-transform-destructuring-7.10.4"
- sources."@babel/plugin-transform-parameters-7.10.4"
+ sources."@babel/plugin-transform-parameters-7.10.5"
sources."@babel/plugin-transform-react-jsx-7.10.4"
sources."@babel/template-7.10.4"
- sources."@babel/traverse-7.10.4"
- sources."@babel/types-7.10.4"
+ sources."@babel/traverse-7.10.5"
+ sources."@babel/types-7.10.5"
sources."@sindresorhus/is-2.1.1"
sources."@szmarczak/http-timer-4.0.5"
sources."@types/cacheable-request-6.0.1"
@@ -60373,10 +60393,10 @@ in
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";
- version = "7.4.0";
+ version = "7.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-7.4.0.tgz";
- sha512 = "gU+lxhlPHu45H3JkEGgYhWhkR9wLHHEXC9FbWFnTlEkbKyZKWgWRLgf61E8zWmBuI6g5xKBph9ltg3NtZMVF8g==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-7.5.0.tgz";
+ sha512 = "vlUP10xse9sWt9SGRtcr1LAC67BENcQMFeV+w5EvLEoFe3xJ8cF1Skd0msziRx/VMC+72B4DxreCE+OR12OA6Q==";
};
dependencies = [
sources."@babel/code-frame-7.10.4"
@@ -60420,7 +60440,7 @@ in
sources."eslint-scope-5.1.0"
sources."eslint-utils-2.1.0"
sources."eslint-visitor-keys-1.3.0"
- sources."espree-7.1.0"
+ sources."espree-7.2.0"
sources."esprima-4.0.1"
(sources."esquery-1.3.1" // {
dependencies = [
@@ -60556,11 +60576,11 @@ in
sources."emoji-regex-7.0.3"
sources."enquirer-2.3.6"
sources."escape-string-regexp-1.0.5"
- sources."eslint-7.4.0"
+ sources."eslint-7.5.0"
sources."eslint-scope-5.1.0"
sources."eslint-utils-2.1.0"
sources."eslint-visitor-keys-1.3.0"
- sources."espree-7.1.0"
+ sources."espree-7.2.0"
sources."esprima-4.0.1"
(sources."esquery-1.3.1" // {
dependencies = [
@@ -61521,7 +61541,7 @@ in
sources."multiserver-scopes-1.0.0"
sources."muxrpc-6.5.0"
sources."nan-2.14.1"
- sources."nearley-2.19.4"
+ sources."nearley-2.19.5"
sources."node-gyp-build-4.2.2"
sources."node-polyglot-1.0.0"
sources."non-private-ip-1.4.4"
@@ -61724,7 +61744,7 @@ in
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.0"
sources."cli-cursor-3.1.0"
- sources."cli-spinners-2.3.0"
+ sources."cli-spinners-2.4.0"
sources."cli-width-3.0.0"
sources."clone-1.0.4"
sources."clone-response-1.0.2"
@@ -61851,7 +61871,7 @@ in
sources."npm-run-path-4.0.1"
sources."once-1.4.0"
sources."onetime-5.1.0"
- (sources."ora-4.0.4" // {
+ (sources."ora-4.0.5" // {
dependencies = [
sources."chalk-3.0.0"
];
@@ -61968,35 +61988,35 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@babel/runtime-7.10.4"
+ sources."@babel/runtime-7.10.5"
sources."@graphql-cli/common-4.0.0"
sources."@graphql-cli/init-4.0.0"
- sources."@graphql-tools/delegate-6.0.12"
- (sources."@graphql-tools/graphql-file-loader-6.0.12" // {
+ sources."@graphql-tools/delegate-6.0.14"
+ (sources."@graphql-tools/graphql-file-loader-6.0.14" // {
dependencies = [
sources."fs-extra-9.0.1"
];
})
- (sources."@graphql-tools/import-6.0.12" // {
+ (sources."@graphql-tools/import-6.0.14" // {
dependencies = [
sources."fs-extra-9.0.1"
];
})
- (sources."@graphql-tools/json-file-loader-6.0.12" // {
+ (sources."@graphql-tools/json-file-loader-6.0.14" // {
dependencies = [
sources."fs-extra-9.0.1"
];
})
- sources."@graphql-tools/load-6.0.12"
- sources."@graphql-tools/merge-6.0.12"
- sources."@graphql-tools/schema-6.0.12"
- (sources."@graphql-tools/url-loader-6.0.12" // {
+ sources."@graphql-tools/load-6.0.14"
+ sources."@graphql-tools/merge-6.0.14"
+ sources."@graphql-tools/schema-6.0.14"
+ (sources."@graphql-tools/url-loader-6.0.14" // {
dependencies = [
sources."cross-fetch-3.0.5"
];
})
- sources."@graphql-tools/utils-6.0.12"
- sources."@graphql-tools/wrap-6.0.12"
+ sources."@graphql-tools/utils-6.0.14"
+ sources."@graphql-tools/wrap-6.0.14"
sources."@kwsites/exec-p-0.4.0"
sources."@nodelib/fs.scandir-2.1.3"
sources."@nodelib/fs.stat-2.0.3"
@@ -62006,7 +62026,7 @@ in
sources."@types/color-name-1.1.1"
sources."@types/node-14.0.23"
sources."@types/parse-json-4.0.0"
- sources."@types/websocket-1.0.0"
+ sources."@types/websocket-1.0.1"
sources."aggregate-error-3.0.1"
sources."ajv-5.5.2"
(sources."ansi-escapes-4.3.1" // {
@@ -62061,7 +62081,7 @@ in
sources."chardet-0.7.0"
sources."clean-stack-2.2.0"
sources."cli-cursor-3.1.0"
- sources."cli-spinners-2.3.0"
+ sources."cli-spinners-2.4.0"
sources."cli-width-2.2.1"
(sources."cliui-4.1.0" // {
dependencies = [
@@ -62137,7 +62157,7 @@ in
sources."foreach-2.0.5"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
- sources."form-urlencoded-4.1.4"
+ sources."form-urlencoded-4.2.1"
sources."fs-extra-9.0.0"
sources."fs.realpath-1.0.0"
sources."fullname-4.0.1"
@@ -62312,7 +62332,7 @@ in
sources."p-defer-1.0.0"
sources."p-finally-1.0.0"
sources."p-is-promise-2.1.0"
- sources."p-limit-3.0.1"
+ sources."p-limit-3.0.2"
(sources."p-locate-3.0.0" // {
dependencies = [
sources."p-limit-2.3.0"
@@ -62392,7 +62412,7 @@ in
sources."strip-ansi-6.0.0"
sources."strip-eof-1.0.0"
sources."strip-json-comments-2.0.1"
- sources."subscriptions-transport-ws-0.9.16"
+ sources."subscriptions-transport-ws-0.9.17"
sources."supports-color-7.1.0"
(sources."swagger2openapi-5.4.0" // {
dependencies = [
@@ -62813,7 +62833,7 @@ in
sources."supports-color-7.1.0"
];
})
- sources."systeminformation-4.26.9"
+ sources."systeminformation-4.26.10"
sources."term-canvas-0.0.5"
sources."type-fest-0.11.0"
sources."wordwrap-0.0.3"
@@ -64533,11 +64553,12 @@ in
];
})
sources."minizlib-1.3.3"
- sources."mkdirp-0.5.5"
+ sources."mkdirp-1.0.4"
sources."ms-2.0.0"
sources."nan-2.14.1"
(sources."node-gyp-4.0.0" // {
dependencies = [
+ sources."mkdirp-0.5.5"
sources."semver-5.3.0"
sources."which-1.3.1"
];
@@ -64645,7 +64666,7 @@ in
sources."strip-bom-2.0.0"
sources."strip-bom-buf-2.0.0"
sources."strip-bom-stream-4.0.0"
- (sources."stylus-0.54.7" // {
+ (sources."stylus-0.54.8" // {
dependencies = [
sources."semver-6.3.0"
sources."source-map-0.7.3"
@@ -64654,6 +64675,7 @@ in
sources."supports-color-5.5.0"
(sources."tar-4.4.13" // {
dependencies = [
+ sources."mkdirp-0.5.5"
sources."yallist-3.1.1"
];
})
@@ -65449,7 +65471,7 @@ in
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."signal-exit-3.0.3"
- sources."simple-concat-1.0.0"
+ sources."simple-concat-1.0.1"
sources."simple-get-3.1.0"
sources."simple-swizzle-0.2.2"
sources."slash-2.0.0"
@@ -65562,7 +65584,7 @@ in
sources."q-0.9.7"
];
})
- sources."terminal-kit-1.36.0"
+ sources."terminal-kit-1.37.0"
(sources."tkwidgets-0.5.26" // {
dependencies = [
sources."is-fullwidth-code-point-2.0.0"
@@ -65734,7 +65756,7 @@ in
sha512 = "3G9d37VHv7MFdheviDCjUfQoIjdv4TC5zTTf5G9VODLtOnVS6La1eoYBDlbWfsRT3/Xo+j2MIqki2EV12BZfwA==";
};
dependencies = [
- sources."@babel/parser-7.10.4"
+ sources."@babel/parser-7.10.5"
sources."argparse-1.0.10"
sources."bluebird-3.7.2"
sources."catharsis-0.8.11"
@@ -66256,7 +66278,7 @@ in
sources."bytes-3.1.0"
sources."callsite-1.0.0"
sources."camelcase-5.3.1"
- sources."chokidar-3.4.0"
+ sources."chokidar-3.4.1"
sources."cliui-6.0.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
@@ -66890,10 +66912,10 @@ in
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
sources."@octokit/auth-token-2.4.2"
- (sources."@octokit/endpoint-6.0.3" // {
+ (sources."@octokit/endpoint-6.0.4" // {
dependencies = [
sources."is-plain-object-3.0.1"
- sources."universal-user-agent-5.0.0"
+ sources."universal-user-agent-6.0.0"
];
})
sources."@octokit/plugin-enterprise-rest-6.0.1"
@@ -66908,11 +66930,11 @@ in
sources."@octokit/types-2.16.2"
];
})
- (sources."@octokit/request-5.4.5" // {
+ (sources."@octokit/request-5.4.6" // {
dependencies = [
sources."@octokit/request-error-2.0.2"
sources."is-plain-object-3.0.1"
- sources."universal-user-agent-5.0.0"
+ sources."universal-user-agent-6.0.0"
];
})
(sources."@octokit/request-error-1.2.1" // {
@@ -66921,7 +66943,7 @@ in
];
})
sources."@octokit/rest-16.43.2"
- sources."@octokit/types-5.0.1"
+ sources."@octokit/types-5.1.0"
sources."@types/glob-7.1.3"
sources."@types/minimatch-3.0.3"
sources."@types/minimist-1.2.0"
@@ -67815,10 +67837,10 @@ in
less = nodeEnv.buildNodePackage {
name = "less";
packageName = "less";
- version = "3.12.0";
+ version = "3.12.2";
src = fetchurl {
- url = "https://registry.npmjs.org/less/-/less-3.12.0.tgz";
- sha512 = "3mmSHFRP9hGxxQgAKgChfau1LO3ksV/zyZf1qd2ENyBV778NA9Ids99wFRA20jE+5prT7oScKod8PoGlxSe1gg==";
+ url = "https://registry.npmjs.org/less/-/less-3.12.2.tgz";
+ sha512 = "+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==";
};
dependencies = [
sources."errno-0.1.7"
@@ -67826,7 +67848,7 @@ in
sources."image-size-0.5.5"
sources."make-dir-2.1.0"
sources."mime-1.6.0"
- sources."native-request-1.0.5"
+ sources."native-request-1.0.7"
sources."pify-4.0.1"
sources."prr-1.0.1"
sources."semver-5.7.1"
@@ -68715,25 +68737,25 @@ in
src = ../interpreters/clojurescript/lumo;
dependencies = [
sources."@babel/code-frame-7.10.4"
- sources."@babel/compat-data-7.10.4"
- sources."@babel/core-7.10.4"
- sources."@babel/generator-7.10.4"
+ sources."@babel/compat-data-7.10.5"
+ sources."@babel/core-7.10.5"
+ sources."@babel/generator-7.10.5"
sources."@babel/helper-annotate-as-pure-7.10.4"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.10.4"
sources."@babel/helper-compilation-targets-7.10.4"
- sources."@babel/helper-create-class-features-plugin-7.10.4"
+ sources."@babel/helper-create-class-features-plugin-7.10.5"
sources."@babel/helper-create-regexp-features-plugin-7.10.4"
- sources."@babel/helper-define-map-7.10.4"
+ sources."@babel/helper-define-map-7.10.5"
sources."@babel/helper-explode-assignable-expression-7.10.4"
sources."@babel/helper-function-name-7.10.4"
sources."@babel/helper-get-function-arity-7.10.4"
sources."@babel/helper-hoist-variables-7.10.4"
- sources."@babel/helper-member-expression-to-functions-7.10.4"
+ sources."@babel/helper-member-expression-to-functions-7.10.5"
sources."@babel/helper-module-imports-7.10.4"
- sources."@babel/helper-module-transforms-7.10.4"
+ sources."@babel/helper-module-transforms-7.10.5"
sources."@babel/helper-optimise-call-expression-7.10.4"
sources."@babel/helper-plugin-utils-7.10.4"
- sources."@babel/helper-regex-7.10.4"
+ sources."@babel/helper-regex-7.10.5"
sources."@babel/helper-remap-async-to-generator-7.10.4"
sources."@babel/helper-replace-supers-7.10.4"
sources."@babel/helper-simple-access-7.10.4"
@@ -68746,9 +68768,9 @@ in
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.10.4"
+ sources."@babel/parser-7.10.5"
sources."@babel/plugin-external-helpers-7.8.3"
- sources."@babel/plugin-proposal-async-generator-functions-7.10.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.10.5"
sources."@babel/plugin-proposal-class-properties-7.10.4"
sources."@babel/plugin-proposal-dynamic-import-7.10.4"
sources."@babel/plugin-proposal-json-strings-7.10.4"
@@ -68775,7 +68797,7 @@ in
sources."@babel/plugin-transform-arrow-functions-7.10.4"
sources."@babel/plugin-transform-async-to-generator-7.10.4"
sources."@babel/plugin-transform-block-scoped-functions-7.10.4"
- sources."@babel/plugin-transform-block-scoping-7.10.4"
+ sources."@babel/plugin-transform-block-scoping-7.10.5"
sources."@babel/plugin-transform-classes-7.10.4"
sources."@babel/plugin-transform-computed-properties-7.10.4"
sources."@babel/plugin-transform-destructuring-7.10.4"
@@ -68786,32 +68808,32 @@ in
sources."@babel/plugin-transform-function-name-7.10.4"
sources."@babel/plugin-transform-literals-7.10.4"
sources."@babel/plugin-transform-member-expression-literals-7.10.4"
- sources."@babel/plugin-transform-modules-amd-7.10.4"
+ sources."@babel/plugin-transform-modules-amd-7.10.5"
sources."@babel/plugin-transform-modules-commonjs-7.10.4"
- sources."@babel/plugin-transform-modules-systemjs-7.10.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.10.5"
sources."@babel/plugin-transform-modules-umd-7.10.4"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.10.4"
sources."@babel/plugin-transform-new-target-7.10.4"
sources."@babel/plugin-transform-object-super-7.10.4"
- sources."@babel/plugin-transform-parameters-7.10.4"
+ sources."@babel/plugin-transform-parameters-7.10.5"
sources."@babel/plugin-transform-property-literals-7.10.4"
sources."@babel/plugin-transform-regenerator-7.10.4"
sources."@babel/plugin-transform-reserved-words-7.10.4"
- sources."@babel/plugin-transform-runtime-7.10.4"
+ sources."@babel/plugin-transform-runtime-7.10.5"
sources."@babel/plugin-transform-shorthand-properties-7.10.4"
sources."@babel/plugin-transform-spread-7.10.4"
sources."@babel/plugin-transform-sticky-regex-7.10.4"
- sources."@babel/plugin-transform-template-literals-7.10.4"
+ sources."@babel/plugin-transform-template-literals-7.10.5"
sources."@babel/plugin-transform-typeof-symbol-7.10.4"
sources."@babel/plugin-transform-unicode-escapes-7.10.4"
sources."@babel/plugin-transform-unicode-regex-7.10.4"
sources."@babel/preset-env-7.10.4"
sources."@babel/preset-modules-0.1.3"
sources."@babel/preset-stage-2-7.8.3"
- sources."@babel/runtime-7.10.4"
+ sources."@babel/runtime-7.10.5"
sources."@babel/template-7.10.4"
- sources."@babel/traverse-7.10.4"
- sources."@babel/types-7.10.4"
+ sources."@babel/traverse-7.10.5"
+ sources."@babel/types-7.10.5"
sources."@cnakazawa/watch-1.0.4"
sources."@comandeer/babel-plugin-banner-5.0.0"
sources."@istanbuljs/load-nyc-config-1.1.0"
@@ -69014,7 +69036,7 @@ in
sources."cache-base-1.0.1"
sources."cached-path-relative-1.0.2"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001099"
+ sources."caniuse-lite-1.0.30001103"
sources."capture-exit-2.0.0"
sources."caseless-0.12.0"
(sources."chalk-3.0.0" // {
@@ -69026,7 +69048,7 @@ in
sources."supports-color-7.1.0"
];
})
- (sources."chokidar-3.4.0" // {
+ (sources."chokidar-3.4.1" // {
dependencies = [
sources."braces-3.0.2"
sources."fill-range-7.0.1"
@@ -69136,7 +69158,7 @@ in
sources."duplexer2-0.1.4"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.3.497"
+ sources."electron-to-chromium-1.3.501"
(sources."elliptic-6.5.3" // {
dependencies = [
sources."bn.js-4.11.9"
@@ -69145,14 +69167,14 @@ in
sources."emoji-regex-7.0.3"
sources."emojis-list-3.0.0"
sources."end-of-stream-1.4.4"
- (sources."enhanced-resolve-4.2.0" // {
+ (sources."enhanced-resolve-4.3.0" // {
dependencies = [
sources."memory-fs-0.5.0"
];
})
sources."errno-0.1.7"
sources."error-ex-1.3.2"
- sources."escalade-3.0.1"
+ sources."escalade-3.0.2"
sources."escape-string-regexp-1.0.5"
sources."eslint-scope-4.0.3"
sources."eslint-visitor-keys-1.3.0"
@@ -69606,7 +69628,7 @@ in
sources."shebang-regex-1.0.0"
sources."shell-quote-1.7.2"
sources."signal-exit-3.0.3"
- sources."simple-concat-1.0.0"
+ sources."simple-concat-1.0.1"
sources."slash-3.0.0"
(sources."snapdragon-0.8.2" // {
dependencies = [
@@ -70968,7 +70990,7 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-1.2.0"
- sources."typescript-3.9.6"
+ sources."typescript-3.9.7"
sources."uglify-js-3.10.0"
sources."uglify-to-browserify-1.0.2"
sources."unc-path-regex-0.1.2"
@@ -71854,7 +71876,7 @@ in
sha512 = "In2GzDLER2Bm5SkuEQVrekrSFtPljpkMaEYcZxNkbTomYixI63PrCm1IJEZjEBjSkFaK5zY1t3sfEHKdAla+MQ==";
};
dependencies = [
- sources."@babel/runtime-7.10.4"
+ sources."@babel/runtime-7.10.5"
sources."@node-red/editor-api-1.1.2"
sources."@node-red/editor-client-1.1.2"
(sources."@node-red/nodes-1.1.2" // {
@@ -72578,7 +72600,7 @@ in
sources."supports-color-7.1.0"
];
})
- sources."chokidar-3.4.0"
+ sources."chokidar-3.4.1"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.0"
sources."clone-response-1.0.2"
@@ -72724,13 +72746,13 @@ in
npm-check-updates = nodeEnv.buildNodePackage {
name = "npm-check-updates";
packageName = "npm-check-updates";
- version = "7.0.1";
+ version = "7.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-7.0.1.tgz";
- sha512 = "z/i1nhxW1OJ2a8wZtm92PS+4vCZ5Y5d86pLDPJScWf8G3vTYJlxd11UqUymnaZWK2nYPMmgxnneAKnFGODDxjw==";
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-7.0.2.tgz";
+ sha512 = "MyH17fUCFbYShuIyxZj6yqB6YZ47+AjPCgXQiH1oqNe3vElBoJ0toY7nwy88qJbfXnFqjTFigzs9lsoKSK0iUw==";
};
dependencies = [
- sources."@npmcli/ci-detect-1.2.0"
+ sources."@npmcli/ci-detect-1.3.0"
sources."@npmcli/git-2.0.3"
sources."@npmcli/installed-package-contents-1.0.5"
sources."@npmcli/move-file-1.0.1"
@@ -73310,14 +73332,14 @@ in
};
dependencies = [
sources."@babel/code-frame-7.10.4"
- sources."@babel/compat-data-7.10.4"
- (sources."@babel/core-7.10.4" // {
+ sources."@babel/compat-data-7.10.5"
+ (sources."@babel/core-7.10.5" // {
dependencies = [
sources."json5-2.1.3"
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.10.4" // {
+ (sources."@babel/generator-7.10.5" // {
dependencies = [
sources."source-map-0.5.7"
];
@@ -73325,21 +73347,21 @@ in
sources."@babel/helper-annotate-as-pure-7.10.4"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.10.4"
sources."@babel/helper-builder-react-jsx-7.10.4"
- sources."@babel/helper-builder-react-jsx-experimental-7.10.4"
+ sources."@babel/helper-builder-react-jsx-experimental-7.10.5"
sources."@babel/helper-compilation-targets-7.10.4"
- sources."@babel/helper-create-class-features-plugin-7.10.4"
+ sources."@babel/helper-create-class-features-plugin-7.10.5"
sources."@babel/helper-create-regexp-features-plugin-7.10.4"
- sources."@babel/helper-define-map-7.10.4"
+ sources."@babel/helper-define-map-7.10.5"
sources."@babel/helper-explode-assignable-expression-7.10.4"
sources."@babel/helper-function-name-7.10.4"
sources."@babel/helper-get-function-arity-7.10.4"
sources."@babel/helper-hoist-variables-7.10.4"
- sources."@babel/helper-member-expression-to-functions-7.10.4"
+ sources."@babel/helper-member-expression-to-functions-7.10.5"
sources."@babel/helper-module-imports-7.10.4"
- sources."@babel/helper-module-transforms-7.10.4"
+ sources."@babel/helper-module-transforms-7.10.5"
sources."@babel/helper-optimise-call-expression-7.10.4"
sources."@babel/helper-plugin-utils-7.10.4"
- sources."@babel/helper-regex-7.10.4"
+ sources."@babel/helper-regex-7.10.5"
sources."@babel/helper-remap-async-to-generator-7.10.4"
sources."@babel/helper-replace-supers-7.10.4"
sources."@babel/helper-simple-access-7.10.4"
@@ -73348,8 +73370,8 @@ in
sources."@babel/helper-wrap-function-7.10.4"
sources."@babel/helpers-7.10.4"
sources."@babel/highlight-7.10.4"
- sources."@babel/parser-7.10.4"
- sources."@babel/plugin-proposal-async-generator-functions-7.10.4"
+ sources."@babel/parser-7.10.5"
+ sources."@babel/plugin-proposal-async-generator-functions-7.10.5"
sources."@babel/plugin-proposal-class-properties-7.10.4"
sources."@babel/plugin-proposal-dynamic-import-7.10.4"
sources."@babel/plugin-proposal-json-strings-7.10.4"
@@ -73375,7 +73397,7 @@ in
sources."@babel/plugin-transform-arrow-functions-7.10.4"
sources."@babel/plugin-transform-async-to-generator-7.10.4"
sources."@babel/plugin-transform-block-scoped-functions-7.10.4"
- sources."@babel/plugin-transform-block-scoping-7.10.4"
+ sources."@babel/plugin-transform-block-scoping-7.10.5"
sources."@babel/plugin-transform-classes-7.10.4"
sources."@babel/plugin-transform-computed-properties-7.10.4"
sources."@babel/plugin-transform-destructuring-7.10.4"
@@ -73387,14 +73409,14 @@ in
sources."@babel/plugin-transform-function-name-7.10.4"
sources."@babel/plugin-transform-literals-7.10.4"
sources."@babel/plugin-transform-member-expression-literals-7.10.4"
- sources."@babel/plugin-transform-modules-amd-7.10.4"
+ sources."@babel/plugin-transform-modules-amd-7.10.5"
sources."@babel/plugin-transform-modules-commonjs-7.10.4"
- sources."@babel/plugin-transform-modules-systemjs-7.10.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.10.5"
sources."@babel/plugin-transform-modules-umd-7.10.4"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.10.4"
sources."@babel/plugin-transform-new-target-7.10.4"
sources."@babel/plugin-transform-object-super-7.10.4"
- sources."@babel/plugin-transform-parameters-7.10.4"
+ sources."@babel/plugin-transform-parameters-7.10.5"
sources."@babel/plugin-transform-property-literals-7.10.4"
sources."@babel/plugin-transform-react-jsx-7.10.4"
sources."@babel/plugin-transform-regenerator-7.10.4"
@@ -73402,16 +73424,16 @@ in
sources."@babel/plugin-transform-shorthand-properties-7.10.4"
sources."@babel/plugin-transform-spread-7.10.4"
sources."@babel/plugin-transform-sticky-regex-7.10.4"
- sources."@babel/plugin-transform-template-literals-7.10.4"
+ sources."@babel/plugin-transform-template-literals-7.10.5"
sources."@babel/plugin-transform-typeof-symbol-7.10.4"
sources."@babel/plugin-transform-unicode-escapes-7.10.4"
sources."@babel/plugin-transform-unicode-regex-7.10.4"
sources."@babel/preset-env-7.10.4"
sources."@babel/preset-modules-0.1.3"
- sources."@babel/runtime-7.10.4"
+ sources."@babel/runtime-7.10.5"
sources."@babel/template-7.10.4"
- sources."@babel/traverse-7.10.4"
- sources."@babel/types-7.10.4"
+ sources."@babel/traverse-7.10.5"
+ sources."@babel/types-7.10.5"
sources."@iarna/toml-2.2.5"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
@@ -73528,9 +73550,8 @@ in
sources."caller-callsite-2.0.0"
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
- sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001099"
+ sources."caniuse-lite-1.0.30001103"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -73538,12 +73559,6 @@ in
sources."class-utils-0.3.6"
sources."cli-cursor-2.1.0"
sources."cli-spinners-1.3.1"
- (sources."cliui-5.0.0" // {
- dependencies = [
- sources."ansi-regex-4.1.0"
- sources."strip-ansi-5.2.0"
- ];
- })
sources."clone-2.1.2"
sources."coa-2.0.2"
sources."collection-visit-1.0.0"
@@ -73620,7 +73635,6 @@ in
sources."data-urls-1.1.0"
sources."deasync-0.1.20"
sources."debug-4.2.0"
- sources."decamelize-1.2.0"
sources."decode-uri-component-0.2.0"
sources."deep-is-0.1.3"
(sources."defaults-1.0.3" // {
@@ -73671,13 +73685,12 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.497"
+ sources."electron-to-chromium-1.3.501"
(sources."elliptic-6.5.3" // {
dependencies = [
sources."bn.js-4.11.9"
];
})
- sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."entities-1.1.2"
sources."envinfo-7.5.1"
@@ -73688,7 +73701,7 @@ in
];
})
sources."es-to-primitive-1.2.1"
- sources."escalade-3.0.1"
+ sources."escalade-3.0.2"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
sources."escodegen-1.9.1"
@@ -73721,7 +73734,6 @@ in
sources."file-uri-to-path-1.0.0"
sources."filesize-3.6.1"
sources."fill-range-4.0.0"
- sources."find-up-3.0.0"
sources."for-in-1.0.2"
sources."foreach-2.0.5"
sources."forever-agent-0.6.1"
@@ -73732,7 +73744,6 @@ in
sources."fsevents-1.2.13"
sources."function-bind-1.1.1"
sources."gensync-1.0.0-beta.1"
- sources."get-caller-file-2.0.5"
sources."get-port-3.2.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
@@ -73776,9 +73787,9 @@ in
sources."html-comment-regex-1.1.2"
sources."html-encoding-sniffer-1.0.2"
sources."html-tags-1.2.0"
- (sources."htmlnano-0.2.5" // {
+ (sources."htmlnano-0.2.6" // {
dependencies = [
- sources."posthtml-0.12.3"
+ sources."posthtml-0.13.1"
sources."terser-4.8.0"
];
})
@@ -73823,7 +73834,6 @@ in
sources."is-directory-0.3.1"
sources."is-extendable-0.1.1"
sources."is-extglob-2.1.1"
- sources."is-fullwidth-code-point-2.0.0"
sources."is-glob-4.0.1"
sources."is-html-1.1.0"
sources."is-number-3.0.0"
@@ -73867,7 +73877,6 @@ in
sources."leven-3.1.0"
sources."levenary-1.1.1"
sources."levn-0.3.0"
- sources."locate-path-3.0.0"
sources."lodash-4.17.19"
sources."lodash.clone-4.5.0"
sources."lodash.memoize-4.1.2"
@@ -73954,9 +73963,6 @@ in
sources."optionator-0.8.3"
sources."ora-2.1.0"
sources."os-browserify-0.3.0"
- sources."p-limit-2.3.0"
- sources."p-locate-3.0.0"
- sources."p-try-2.2.0"
sources."pako-0.2.9"
sources."parse-asn1-5.1.5"
sources."parse-json-4.0.0"
@@ -73965,7 +73971,6 @@ in
sources."pascalcase-0.1.1"
sources."path-browserify-0.0.1"
sources."path-dirname-1.0.2"
- sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
sources."path-parse-1.0.6"
@@ -74053,7 +74058,11 @@ in
];
})
sources."punycode-2.1.1"
- sources."purgecss-1.4.2"
+ (sources."purgecss-2.3.0" // {
+ dependencies = [
+ sources."commander-5.1.0"
+ ];
+ })
sources."q-1.5.1"
sources."qs-6.5.2"
sources."querystring-0.2.0"
@@ -74091,8 +74100,6 @@ in
sources."request-2.88.2"
sources."request-promise-core-1.1.3"
sources."request-promise-native-1.0.8"
- sources."require-directory-2.1.1"
- sources."require-main-filename-2.0.0"
sources."resolve-1.17.0"
sources."resolve-from-3.0.0"
sources."resolve-url-0.2.1"
@@ -74120,7 +74127,6 @@ in
})
sources."serialize-to-js-3.1.1"
sources."serve-static-1.14.1"
- sources."set-blocking-2.0.0"
sources."set-value-2.0.1"
sources."setimmediate-1.0.5"
sources."setprototypeof-1.1.1"
@@ -74172,12 +74178,6 @@ in
sources."stealthy-require-1.1.1"
sources."stream-browserify-2.0.2"
sources."stream-http-2.8.3"
- (sources."string-width-3.1.0" // {
- dependencies = [
- sources."ansi-regex-4.1.0"
- sources."strip-ansi-5.2.0"
- ];
- })
sources."string.prototype.trimend-1.0.1"
sources."string.prototype.trimstart-1.0.1"
sources."string_decoder-1.1.1"
@@ -74269,22 +74269,12 @@ in
sources."whatwg-mimetype-2.3.0"
sources."whatwg-url-7.1.0"
sources."which-1.3.1"
- sources."which-module-2.0.0"
sources."word-wrap-1.2.3"
- (sources."wrap-ansi-5.1.0" // {
- dependencies = [
- sources."ansi-regex-4.1.0"
- sources."strip-ansi-5.2.0"
- ];
- })
sources."wrappy-1.0.2"
sources."ws-5.2.2"
sources."xml-name-validator-3.0.0"
sources."xmlchars-2.2.0"
sources."xtend-4.0.2"
- sources."y18n-4.0.0"
- sources."yargs-14.2.3"
- sources."yargs-parser-15.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -74367,7 +74357,7 @@ in
sources."dicer-0.3.0"
sources."dnscache-1.0.2"
sources."dom-storage-2.1.0"
- sources."domino-2.1.5"
+ sources."domino-2.1.6"
sources."dtrace-provider-0.8.8"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
@@ -74726,7 +74716,7 @@ in
sources."lodash-3.10.1"
sources."loud-rejection-1.6.0"
sources."lru-2.0.1"
- sources."magnet-uri-5.2.4"
+ sources."magnet-uri-5.3.0"
sources."map-obj-1.0.1"
sources."meow-3.7.0"
sources."mime-2.4.6"
@@ -74817,7 +74807,7 @@ in
sources."semver-5.7.1"
sources."server-destroy-1.0.1"
sources."signal-exit-3.0.3"
- sources."simple-concat-1.0.0"
+ sources."simple-concat-1.0.1"
sources."simple-get-2.8.1"
sources."simple-peer-6.4.4"
sources."simple-sha1-2.1.2"
@@ -75167,7 +75157,7 @@ in
})
sources."serve-static-1.14.1"
sources."setprototypeof-1.1.1"
- sources."simple-concat-1.0.0"
+ sources."simple-concat-1.0.1"
sources."simple-get-2.8.1"
(sources."simple-peer-6.4.4" // {
dependencies = [
@@ -75305,7 +75295,7 @@ in
sources."callsites-2.0.0"
sources."camelcase-5.3.1"
sources."chalk-4.1.0"
- sources."chokidar-3.4.0"
+ sources."chokidar-3.4.1"
sources."cliui-6.0.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
@@ -75695,7 +75685,7 @@ in
sources."shasum-1.0.2"
sources."shasum-object-1.0.0"
sources."shell-quote-1.7.2"
- sources."simple-concat-1.0.0"
+ sources."simple-concat-1.0.1"
sources."sorcery-0.10.0"
sources."source-map-0.5.7"
sources."sourcemap-codec-1.4.8"
@@ -75814,6 +75804,24 @@ in
bypassCache = true;
reconstructLock = true;
};
+ pyright = nodeEnv.buildNodePackage {
+ name = "pyright";
+ packageName = "pyright";
+ version = "1.1.54";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.54.tgz";
+ sha512 = "IGNhLdclyqCQ7sOFsJVD98Qj0tvKKhigh2IRpFrUd/JYvWKZZM58KIif060qRYcZ3SibweO5hEGgae8hk4zL3g==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Type checker for the Python language";
+ homepage = "https://github.com/Microsoft/pyright#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
react-native-cli = nodeEnv.buildNodePackage {
name = "react-native-cli";
packageName = "react-native-cli";
@@ -75987,10 +75995,10 @@ in
rollup = nodeEnv.buildNodePackage {
name = "rollup";
packageName = "rollup";
- version = "2.21.0";
+ version = "2.22.1";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.21.0.tgz";
- sha512 = "BEGgy+wSzux7Ycq58pRiWEOBZaXRXTuvzl1gsm7gqmsAHxkWf9nyA5V2LN9fGSHhhDQd0/C13iRzSh4bbIpWZQ==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.22.1.tgz";
+ sha512 = "K9AUQUCJkVqC+A7uUDacfhmpEeAjc2uOmSpvGI5xaYsm8pXgy4ZWEM8wHPfKj11xvCwFZppkRDo8a0RESJXCnw==";
};
dependencies = [
sources."fsevents-2.1.3"
@@ -76125,7 +76133,7 @@ in
sources."es6-promise-4.2.8"
sources."es6-promisify-5.0.0"
sources."escape-string-regexp-1.0.5"
- (sources."eslint-7.4.0" // {
+ (sources."eslint-7.5.0" // {
dependencies = [
sources."semver-7.3.2"
];
@@ -76133,7 +76141,7 @@ in
sources."eslint-scope-5.1.0"
sources."eslint-utils-2.1.0"
sources."eslint-visitor-keys-1.3.0"
- sources."espree-7.1.0"
+ sources."espree-7.2.0"
sources."esprima-4.0.1"
(sources."esquery-1.3.1" // {
dependencies = [
@@ -76287,7 +76295,7 @@ in
sources."resolve-1.17.0"
sources."resolve-from-4.0.0"
sources."rimraf-2.6.3"
- sources."rollup-2.21.0"
+ sources."rollup-2.22.1"
sources."safe-buffer-5.2.1"
sources."semver-6.3.0"
sources."serialize-javascript-3.0.0"
@@ -76324,7 +76332,7 @@ in
sources."type-check-0.4.0"
sources."type-fest-0.8.1"
sources."typed-rest-client-1.2.0"
- sources."typescript-3.9.6"
+ sources."typescript-3.9.7"
sources."typescript-formatter-7.2.2"
sources."uc.micro-1.0.6"
sources."underscore-1.8.3"
@@ -76643,14 +76651,14 @@ in
serverless = nodeEnv.buildNodePackage {
name = "serverless";
packageName = "serverless";
- version = "1.74.1";
+ version = "1.75.1";
src = fetchurl {
- url = "https://registry.npmjs.org/serverless/-/serverless-1.74.1.tgz";
- sha512 = "j/IlaoAb20/RADC3+WE95Elk/1UW88FzXCPsj8DX8YHXNWe+V+mMJpHP33xdCwPjEIH/0dt/YbT4+yVCoGzrqg==";
+ url = "https://registry.npmjs.org/serverless/-/serverless-1.75.1.tgz";
+ sha512 = "aKCn/9qUh6SAG2Mb3Djqldzz8ft0W7+7L9Bg4wkj/lBXgSyjP6xcJR/NQJaMM81Eeu9jCfCcBB9Xs7VbRCking==";
};
dependencies = [
sources."2-thenable-1.0.0"
- sources."@babel/parser-7.10.4"
+ sources."@babel/parser-7.10.5"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.scandir-2.1.3"
sources."@nodelib/fs.stat-2.0.3"
@@ -76667,7 +76675,7 @@ in
sources."@protobufjs/utf8-1.1.0"
sources."@serverless/cli-1.5.1"
sources."@serverless/component-metrics-1.0.8"
- (sources."@serverless/components-2.31.12" // {
+ (sources."@serverless/components-2.32.0" // {
dependencies = [
sources."globby-10.0.2"
sources."semver-7.3.2"
@@ -76678,15 +76686,11 @@ in
sources."fs-extra-7.0.1"
];
})
- (sources."@serverless/enterprise-plugin-3.6.15" // {
- dependencies = [
- sources."@serverless/platform-client-0.25.14"
- ];
- })
+ sources."@serverless/enterprise-plugin-3.6.16"
sources."@serverless/event-mocks-1.1.1"
sources."@serverless/inquirer-1.1.2"
- sources."@serverless/platform-client-1.0.9"
- (sources."@serverless/platform-client-china-1.0.25" // {
+ sources."@serverless/platform-client-1.0.10"
+ (sources."@serverless/platform-client-china-1.0.26" // {
dependencies = [
sources."archiver-4.0.2"
sources."async-3.2.0"
@@ -76703,7 +76707,7 @@ in
})
sources."@serverless/template-1.1.3"
sources."@serverless/utils-1.2.0"
- sources."@serverless/utils-china-0.1.17"
+ sources."@serverless/utils-china-0.1.18"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@tencent-sdk/capi-0.2.17"
@@ -76782,7 +76786,7 @@ in
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.713.0" // {
+ (sources."aws-sdk-2.715.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."isarray-1.0.0"
@@ -76848,7 +76852,7 @@ in
sources."semver-5.7.1"
];
})
- sources."chokidar-3.4.0"
+ sources."chokidar-3.4.1"
sources."ci-info-1.6.0"
(sources."class-utils-0.3.6" // {
dependencies = [
@@ -77050,7 +77054,7 @@ in
];
})
sources."engine.io-parser-2.2.0"
- sources."enhanced-resolve-4.2.0"
+ sources."enhanced-resolve-4.3.0"
sources."env-variable-0.0.6"
sources."errno-0.1.7"
sources."es5-ext-0.10.53"
@@ -77517,7 +77521,7 @@ in
sources."process-nextick-args-2.0.1"
sources."promise-queue-2.2.5"
sources."proto-list-1.2.4"
- (sources."protobufjs-6.10.0" // {
+ (sources."protobufjs-6.10.1" // {
dependencies = [
sources."@types/node-13.13.14"
];
@@ -77735,7 +77739,7 @@ in
sources."type-2.0.0"
sources."type-check-0.3.2"
sources."type-fest-0.11.0"
- sources."typescript-3.9.6"
+ sources."typescript-3.9.7"
sources."unbzip2-stream-1.4.3"
sources."union-value-1.0.1"
sources."uniq-1.0.1"
@@ -78446,10 +78450,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.361.3";
+ version = "1.362.1";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.361.3.tgz";
- sha512 = "93SxV9WD+pN/9bGRizfoiYwfKHy5mDyTCdOYtWcVbTFMi7Gf+I4Q5YprunHBTeJLLh0+qsD6l77QBo9GiYyiaA==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.362.1.tgz";
+ sha512 = "zMi1gcEiySvOyLWWXUJ8+Vc7Yz6NnHjuddUidc295P5SficdniC7gPFrjJFIki0d/CTS0fm4zi17usvPgnJy4A==";
};
dependencies = [
sources."@arcanis/slice-ansi-1.0.2"
@@ -78716,7 +78720,7 @@ in
sources."glob-parent-5.1.1"
sources."global-dirs-2.0.1"
sources."globby-10.0.2"
- sources."got-11.5.0"
+ sources."got-11.5.1"
sources."graceful-fs-4.2.4"
sources."grapheme-splitter-1.0.4"
sources."gunzip-maybe-1.4.2"
@@ -79242,7 +79246,7 @@ in
sources."ci-info-1.6.0"
sources."cli-boxes-1.0.0"
sources."cli-cursor-2.1.0"
- sources."cli-spinners-2.3.0"
+ sources."cli-spinners-2.4.0"
sources."clone-1.0.4"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -79761,6 +79765,7 @@ in
sources."libnested-1.5.0"
sources."libsodium-0.7.6"
sources."libsodium-wrappers-0.7.6"
+ sources."lodash.clonedeep-4.5.0"
sources."lodash.get-4.4.2"
sources."log-symbols-1.0.2"
sources."log-update-1.0.2"
@@ -79812,7 +79817,7 @@ in
})
sources."napi-macros-2.0.0"
sources."ncp-2.0.0"
- sources."nearley-2.19.4"
+ sources."nearley-2.19.5"
sources."nice-try-1.0.5"
sources."node-gyp-build-4.2.2"
sources."non-private-ip-1.4.4"
@@ -80088,7 +80093,7 @@ in
sources."ssb-caps-1.1.0"
sources."ssb-client-4.9.0"
sources."ssb-config-3.4.4"
- (sources."ssb-db-20.2.0" // {
+ (sources."ssb-db-20.2.2" // {
dependencies = [
sources."glob-7.1.6"
sources."mkdirp-1.0.4"
@@ -80331,7 +80336,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.713.0" // {
+ (sources."aws-sdk-2.715.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -83862,10 +83867,10 @@ in
typescript = nodeEnv.buildNodePackage {
name = "typescript";
packageName = "typescript";
- version = "3.9.6";
+ version = "3.9.7";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-3.9.6.tgz";
- sha512 = "Pspx3oKAPJtjNwE92YS05HQoY7z2SFyOpHo9MqJor3BXAGNaPUs83CuVp9VISFkSjyRfiTpmKuAYGJB7S7hOxw==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-3.9.7.tgz";
+ sha512 = "BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -85382,9 +85387,10 @@ in
sources."yargs-parser-2.4.1"
];
})
- (sources."stylus-0.54.7" // {
+ (sources."stylus-0.54.8" // {
dependencies = [
sources."debug-3.1.0"
+ sources."mkdirp-1.0.4"
sources."ms-2.0.0"
sources."semver-6.3.0"
sources."source-map-0.7.3"
@@ -85424,7 +85430,7 @@ in
sources."type-check-0.3.2"
sources."type-fest-0.3.1"
sources."typedarray-0.0.6"
- sources."typescript-3.9.6"
+ sources."typescript-3.9.7"
(sources."typescript-eslint-parser-16.0.1" // {
dependencies = [
sources."semver-5.5.0"
@@ -85583,7 +85589,7 @@ in
})
sources."@babel/polyfill-7.7.0"
sources."@babel/runtime-7.7.7"
- sources."@babel/runtime-corejs3-7.10.4"
+ sources."@babel/runtime-corejs3-7.10.5"
sources."@cliqz-oss/firefox-client-0.3.1"
sources."@cliqz-oss/node-firefox-connect-1.2.1"
sources."@sindresorhus/is-0.14.0"
@@ -86387,7 +86393,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."sonic-boom-1.0.1"
+ sources."sonic-boom-1.0.2"
sources."source-map-0.6.1"
sources."source-map-resolve-0.5.3"
sources."source-map-support-0.5.19"
@@ -86682,7 +86688,7 @@ in
sources."builtin-status-codes-3.0.0"
sources."cacache-12.0.4"
sources."cache-base-1.0.1"
- (sources."chokidar-3.4.0" // {
+ (sources."chokidar-3.4.1" // {
dependencies = [
sources."braces-3.0.2"
sources."fill-range-7.0.1"
@@ -86748,7 +86754,7 @@ in
})
sources."emojis-list-3.0.0"
sources."end-of-stream-1.4.4"
- (sources."enhanced-resolve-4.2.0" // {
+ (sources."enhanced-resolve-4.3.0" // {
dependencies = [
sources."memory-fs-0.5.0"
];
@@ -87183,7 +87189,7 @@ in
sources."detect-file-1.0.0"
sources."emoji-regex-7.0.3"
sources."emojis-list-3.0.0"
- sources."enhanced-resolve-4.2.0"
+ sources."enhanced-resolve-4.3.0"
sources."errno-0.1.7"
sources."escape-string-regexp-1.0.5"
(sources."expand-brackets-2.1.4" // {
@@ -88160,7 +88166,7 @@ in
sources."ms-2.1.2"
];
})
- sources."bittorrent-peerid-1.3.2"
+ sources."bittorrent-peerid-1.3.3"
(sources."bittorrent-protocol-3.1.1" // {
dependencies = [
sources."debug-4.2.0"
@@ -88203,7 +88209,7 @@ in
sources."mime-1.6.0"
];
})
- sources."chunk-store-stream-4.1.0"
+ sources."chunk-store-stream-4.1.1"
sources."clivas-0.2.0"
sources."common-tags-1.8.0"
sources."compact2string-1.4.1"
@@ -88272,7 +88278,7 @@ in
})
sources."long-4.0.0"
sources."lru-3.1.0"
- sources."magnet-uri-5.2.4"
+ sources."magnet-uri-5.3.0"
sources."mdns-js-0.5.0"
sources."mdns-js-packet-0.2.0"
sources."mediasource-2.3.0"
@@ -88320,7 +88326,7 @@ in
})
sources."prettier-bytes-1.0.4"
sources."process-nextick-args-2.0.1"
- sources."protobufjs-6.10.0"
+ sources."protobufjs-6.10.1"
sources."pump-3.0.0"
sources."qap-3.3.1"
sources."queue-microtask-1.1.3"
@@ -88346,7 +88352,7 @@ in
sources."safe-buffer-5.2.1"
sources."sax-1.1.4"
sources."semver-5.1.1"
- sources."simple-concat-1.0.0"
+ sources."simple-concat-1.0.1"
sources."simple-get-2.8.1"
(sources."simple-peer-9.7.2" // {
dependencies = [
@@ -88365,7 +88371,7 @@ in
sources."split-1.0.1"
sources."stream-to-blob-2.0.1"
sources."stream-to-blob-url-3.0.2"
- sources."stream-with-known-length-to-buffer-1.0.3"
+ sources."stream-with-known-length-to-buffer-1.0.4"
sources."string2compact-1.3.0"
sources."string_decoder-1.3.0"
sources."thirty-two-1.0.2"
@@ -88382,12 +88388,11 @@ in
sources."typedarray-0.0.6"
sources."typedarray-to-buffer-3.1.5"
sources."uint64be-2.0.2"
- sources."uniq-1.0.1"
sources."unordered-array-remove-1.0.2"
sources."upnp-device-client-1.0.2"
sources."upnp-mediarenderer-client-1.4.0"
sources."url-join-4.0.1"
- (sources."ut_metadata-3.5.0" // {
+ (sources."ut_metadata-3.5.1" // {
dependencies = [
sources."debug-4.2.0"
sources."ms-2.1.2"
@@ -88550,7 +88555,7 @@ in
sources."@babel/code-frame-7.10.4"
sources."@babel/helper-validator-identifier-7.10.4"
sources."@babel/highlight-7.10.4"
- sources."@babel/runtime-7.10.4"
+ sources."@babel/runtime-7.10.5"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
sources."@sindresorhus/is-0.7.0"
diff --git a/pkgs/development/perl-modules/strip-nondeterminism/default.nix b/pkgs/development/perl-modules/strip-nondeterminism/default.nix
index 7ac0b82ed10..3557ed68cec 100644
--- a/pkgs/development/perl-modules/strip-nondeterminism/default.nix
+++ b/pkgs/development/perl-modules/strip-nondeterminism/default.nix
@@ -1,4 +1,4 @@
-{ lib, file, fetchFromGitLab, buildPerlPackage, ArchiveZip, ArchiveCpio }:
+{ stdenv, file, fetchFromGitLab, buildPerlPackage, ArchiveZip, ArchiveCpio, shortenPerlShebang }:
buildPerlPackage rec {
pname = "strip-nondeterminism";
@@ -17,6 +17,7 @@ buildPerlPackage rec {
# stray test failure
doCheck = false;
+ nativeBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ shortenPerlShebang ];
buildInputs = [ ArchiveZip ArchiveCpio file ];
perlPostHook = ''
@@ -25,7 +26,11 @@ buildPerlPackage rec {
rm $out/share/man/man1/dh_strip_nondeterminism.1.gz
'';
- meta = with lib; {
+ postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
+ shortenPerlShebang $out/bin/strip-nondeterminism
+ '';
+
+ meta = with stdenv.lib; {
description = "A Perl module for stripping bits of non-deterministic information";
homepage = "https://reproducible-builds.org/";
license = licenses.gpl3;
diff --git a/pkgs/applications/misc/img2pdf/default.nix b/pkgs/development/python-modules/img2pdf/default.nix
similarity index 78%
rename from pkgs/applications/misc/img2pdf/default.nix
rename to pkgs/development/python-modules/img2pdf/default.nix
index b9c06d5122c..2fa46c2ed9d 100644
--- a/pkgs/applications/misc/img2pdf/default.nix
+++ b/pkgs/development/python-modules/img2pdf/default.nix
@@ -1,10 +1,9 @@
-{ stdenv, python3Packages }:
+{ lib, pillow, fetchPypi, buildPythonPackage, isPy27 }:
-with python3Packages;
-
-buildPythonApplication rec {
+buildPythonPackage rec {
pname = "img2pdf";
version = "0.3.6";
+ disabled = isPy27;
src = fetchPypi {
inherit pname version;
@@ -15,7 +14,7 @@ buildPythonApplication rec {
pillow
];
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "Convert images to PDF via direct JPEG inclusion";
homepage = "https://gitlab.mister-muffin.de/josch/img2pdf";
license = licenses.lgpl2;
diff --git a/pkgs/development/python-modules/jedi/default.nix b/pkgs/development/python-modules/jedi/default.nix
index 77d3e3e4d8a..8976e90b5f4 100644
--- a/pkgs/development/python-modules/jedi/default.nix
+++ b/pkgs/development/python-modules/jedi/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "jedi";
- version = "0.17.0";
+ version = "0.17.1";
src = fetchPypi {
inherit pname version;
- sha256 = "df40c97641cb943661d2db4c33c2e1ff75d491189423249e989bcea4464f3030";
+ sha256 = "0qrgyn0znpib485hk0mi68wab6nhwqd3pyjxvp7jn6kijr7mszc0";
};
checkInputs = [ pytest glibcLocales tox pytestcov ];
diff --git a/pkgs/development/python-modules/limnoria/default.nix b/pkgs/development/python-modules/limnoria/default.nix
index a4800e70ffc..4a5e1386730 100644
--- a/pkgs/development/python-modules/limnoria/default.nix
+++ b/pkgs/development/python-modules/limnoria/default.nix
@@ -7,12 +7,12 @@
buildPythonPackage rec {
pname = "limnoria";
- version = "2020.04.11";
+ version = "2020.07.01";
disabled = isPy27; # abandoned upstream
src = fetchPypi {
inherit pname version;
- sha256 = "41e27cae66aeb1e811bebe64140a9b5eb3ccb208103a0f42ac61369d9a7ca339";
+ sha256 = "08q8krq8dqlvzz3wjgnki3n8d8qmk99pn7n3lfsim5rnrnx1jchb";
};
patchPhase = ''
diff --git a/pkgs/development/python-modules/numexpr/default.nix b/pkgs/development/python-modules/numexpr/default.nix
index d0bb0a88cff..3e3316788ed 100644
--- a/pkgs/development/python-modules/numexpr/default.nix
+++ b/pkgs/development/python-modules/numexpr/default.nix
@@ -21,17 +21,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [ numpy ];
- # Run the test suite.
- # It requires the build path to be in the python search path.
checkPhase = ''
- pushd $out
- ${python}/bin/${python.executable} < $out/bin/${pname}
#!${stdenv.shell}
${jre}/bin/java -jar $out/opt/STM32CubeMX/STM32CubeMX.exe
@@ -63,7 +50,8 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
- description = ''
+ description = "A graphical tool for configuring STM32 microcontrollers and microprocessors";
+ longDescription = ''
A graphical tool that allows a very easy configuration of STM32
microcontrollers and microprocessors, as well as the generation of the
corresponding initialization C code for the Arm® Cortex®-M core or a
diff --git a/pkgs/games/steam/runtime.nix b/pkgs/games/steam/runtime.nix
index 6d81d6c775e..f2e023e056f 100644
--- a/pkgs/games/steam/runtime.nix
+++ b/pkgs/games/steam/runtime.nix
@@ -4,11 +4,11 @@ stdenv.mkDerivation rec {
name = "steam-runtime";
# from https://repo.steampowered.com/steamrt-images-scout/snapshots/
- version = "0.20200417.0";
+ version = "0.20200604.0";
src = fetchurl {
url = "https://repo.steampowered.com/steamrt-images-scout/snapshots/${version}/steam-runtime.tar.xz";
- sha256 = "0d4dfl6i31i8187wj8rr9yvmrg32bx96bsgs2ya21b00czf070sy";
+ sha256 = "04ficg3lnf6ijwkj08094vgcsskfncnlhk61v2csls3wfwvkrmhv";
name = "scout-runtime-${version}.tar.gz";
};
diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix
index 60ea77c33df..2a1ce4a7110 100644
--- a/pkgs/misc/vim-plugins/generated.nix
+++ b/pkgs/misc/vim-plugins/generated.nix
@@ -65,12 +65,12 @@ let
ale = buildVimPluginFrom2Nix {
pname = "ale";
- version = "2020-07-01";
+ version = "2020-07-15";
src = fetchFromGitHub {
owner = "dense-analysis";
repo = "ale";
- rev = "b3c6db173a019c37c83d4600c0c68872e91086dd";
- sha256 = "0il34czgidxdy8hpwn6aa3mjs4rzplixyvx58cqy7cbcbs0vk933";
+ rev = "54aeeec97ff14197a8ede31493035b4fefb44a2f";
+ sha256 = "0nrkf66bb91p04173790h90wm5k5kya43wcv9rg37033d8rs9jv7";
};
meta.homepage = "https://github.com/dense-analysis/ale/";
};
@@ -89,12 +89,12 @@ let
ansible-vim = buildVimPluginFrom2Nix {
pname = "ansible-vim";
- version = "2020-05-14";
+ version = "2020-07-13";
src = fetchFromGitHub {
owner = "pearofducks";
repo = "ansible-vim";
- rev = "fa0192fe508000d904e79d17706471732075c653";
- sha256 = "12nhiz5hnbi4l5ksb26xhj47r5g5z68zncgdlmqkkfqzqw1cj9c3";
+ rev = "cfdde31672bce2f60bedc36842ab9bca8d28ba5b";
+ sha256 = "01lpnvdym9izaq29kbgwa7kl303nnzsn0cpqq75bv7glymglbn0m";
};
meta.homepage = "https://github.com/pearofducks/ansible-vim/";
};
@@ -269,12 +269,12 @@ let
calendar-vim = buildVimPluginFrom2Nix {
pname = "calendar-vim";
- version = "2020-07-07";
+ version = "2020-07-12";
src = fetchFromGitHub {
owner = "itchyny";
repo = "calendar.vim";
- rev = "dec99ba2de364773f06b23b907db137f1b52a449";
- sha256 = "1c89x4a4mrbb1l0avxazcxgwqapdw1ndqjhviij69ifybpi81jrn";
+ rev = "e022467f359e6589d51cf43637fce7c31b4baa0f";
+ sha256 = "0gga3hrwx2skkkmcc5lz8jgn8q87gkh29fz24clvx1k16l2gc98p";
};
meta.homepage = "https://github.com/itchyny/calendar.vim/";
};
@@ -377,12 +377,12 @@ let
coc-emmet = buildVimPluginFrom2Nix {
pname = "coc-emmet";
- version = "2020-07-06";
+ version = "2020-07-16";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc-emmet";
- rev = "6e00ae0643b199ce0d037eae16affb36152ed9bd";
- sha256 = "1gr9c7vkrlnrgii66m1f56izggd4rpbnvqgff7qw7yyngr571zyi";
+ rev = "8f25e0b7deb1cd54ce096cf713147662c43781f6";
+ sha256 = "0z9y8nxzjqf78l7hmq59by559f178jxhadn82h1hwqmdjpq72jcm";
};
meta.homepage = "https://github.com/neoclide/coc-emmet/";
};
@@ -413,24 +413,24 @@ let
coc-git = buildVimPluginFrom2Nix {
pname = "coc-git";
- version = "2020-07-07";
+ version = "2020-07-17";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc-git";
- rev = "ea1a4e35445a24147f27967dce61fb3f9f927e15";
- sha256 = "0j71qk4hybbs96gwqnkpa2i5lzkgc0v6zsmyijn0binfn37ya3dc";
+ rev = "691870e1bc0e868bdf872855f07b4aa9a81b3414";
+ sha256 = "1qg5zqqk4py6mlzv4bbwv4w8sn8jj5ayqn4ia0k1vpaidspxrhl1";
};
meta.homepage = "https://github.com/neoclide/coc-git/";
};
coc-go = buildVimPluginFrom2Nix {
pname = "coc-go";
- version = "2020-06-10";
+ version = "2020-07-18";
src = fetchFromGitHub {
owner = "josa42";
repo = "coc-go";
- rev = "38b0b30355f85a7952a2e6602fdb1cdf9141a501";
- sha256 = "0wmdfcglvixfqahjg3lc5q7y36wk6lzczr5nhnwixh9cis1nybx6";
+ rev = "6d13daa46c7c8707e7dcaa96815dad1c7a41acab";
+ sha256 = "0d3ny7bfa5pwbfm23gsrl7x09r9k53n25rsfw5jqkfl2m47jxw1l";
};
meta.homepage = "https://github.com/josa42/coc-go/";
};
@@ -521,12 +521,12 @@ let
coc-metals = buildVimPluginFrom2Nix {
pname = "coc-metals";
- version = "2020-07-04";
+ version = "2020-07-15";
src = fetchFromGitHub {
owner = "ckipp01";
repo = "coc-metals";
- rev = "3dbe29b9462a1dd910ff653564cadd72146386c8";
- sha256 = "1j2z557lzsr25s9ijdfiyg8zd7f967qnq8imacwn6qzfs1r337nj";
+ rev = "af657d38eb3fccf3ffe4b45f6c73a7c5b38a8f1d";
+ sha256 = "175f205jdr9yfrilj8bl8rls1n63ck5wjv327zi9vb44algifkfh";
};
meta.homepage = "https://github.com/ckipp01/coc-metals/";
};
@@ -557,12 +557,12 @@ let
coc-prettier = buildVimPluginFrom2Nix {
pname = "coc-prettier";
- version = "2020-07-06";
+ version = "2020-07-09";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc-prettier";
- rev = "47096dd3ed613abcf9f07a27e33aac37a87b5aef";
- sha256 = "1hpwyfsx09hmfn0azn2nawavkn8cjnj7nafimxmqkl0ifdmkybby";
+ rev = "6705200e02810d2cbaccd30880e3b9edb3af2bf1";
+ sha256 = "11p2f1vs3mssg39ywrf6b0ks34qzfsv0f53r2gag12j6g1x11vsz";
};
meta.homepage = "https://github.com/neoclide/coc-prettier/";
};
@@ -605,12 +605,12 @@ let
coc-rust-analyzer = buildVimPluginFrom2Nix {
pname = "coc-rust-analyzer";
- version = "2020-07-07";
+ version = "2020-07-16";
src = fetchFromGitHub {
owner = "fannheyward";
repo = "coc-rust-analyzer";
- rev = "1599b021dbc276645f6e224423ce576a89763ca0";
- sha256 = "0n9b9fjd31kl3yd5bpc1z5i0yzj7x8rnbknas706x78mrf6bjl3z";
+ rev = "590a3105e6704d8842aacb6ea283711859d0cea2";
+ sha256 = "1jp384g4n845436jxqmsbcng6szrb6jb93ijc8r8qwayvjmrxnnv";
};
meta.homepage = "https://github.com/fannheyward/coc-rust-analyzer/";
};
@@ -713,12 +713,12 @@ let
coc-tsserver = buildVimPluginFrom2Nix {
pname = "coc-tsserver";
- version = "2020-06-29";
+ version = "2020-07-14";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc-tsserver";
- rev = "a45d50acca1c79c72485811cd9bf308b9fbf4ec3";
- sha256 = "0b8cr9xaqigs1nn7vqyvs2frawfz20pn28xp1q6fbx089rddiv0a";
+ rev = "6d73216417ae85f9cdf82aec494ab78043e9ca42";
+ sha256 = "0sg46bvmqpqi8bfxywvx0a6pln9q60j70dylhk4102dxgk9cc1kq";
};
meta.homepage = "https://github.com/neoclide/coc-tsserver/";
};
@@ -785,12 +785,12 @@ let
coc-nvim = buildVimPluginFrom2Nix {
pname = "coc-nvim";
- version = "2020-07-06";
+ version = "2020-07-17";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc.nvim";
- rev = "a6f403c0fa7a94719d3cc9f056cc56879b534295";
- sha256 = "12fgrgnyk8l50gfld8fa4ac0cibg86732xc5cnkhw9bx7waa90nv";
+ rev = "d033fbfe526be910ea0be61e1ae1c220937bc17f";
+ sha256 = "0wf72ww5dcbpsycfm866ajfbz8h04z19q55nns2163x0ql6vyj5m";
};
meta.homepage = "https://github.com/neoclide/coc.nvim/";
};
@@ -846,12 +846,12 @@ let
completion-nvim = buildVimPluginFrom2Nix {
pname = "completion-nvim";
- version = "2020-07-06";
+ version = "2020-07-17";
src = fetchFromGitHub {
owner = "nvim-lua";
repo = "completion-nvim";
- rev = "2fa537d355e8e578f7ddf282e5d73b9ad76204ab";
- sha256 = "1qi37f9dvb9rqsh9sqprbhwv8fl2a5y9p1zb4jhw6n9w3mir4y4c";
+ rev = "895a12fe62f65688299086e1db4e3a364de6ba96";
+ sha256 = "1nyyky6ac1jxg7fybpvbm49q12mkvd568c451q8qa4sd23fnbx0k";
};
meta.homepage = "https://github.com/nvim-lua/completion-nvim/";
};
@@ -882,12 +882,12 @@ let
conjure = buildVimPluginFrom2Nix {
pname = "conjure";
- version = "2020-06-30";
+ version = "2020-07-17";
src = fetchFromGitHub {
owner = "Olical";
repo = "conjure";
- rev = "9ad1c3423d4174ebff09039387eeb3c85fc848f9";
- sha256 = "1kshivd4gaq6kx2idhjndjmca2np5r3hfzq09wk4ivzxjmcwg94p";
+ rev = "95ae79d91365d6078a9f5b6ce235b685906aa55e";
+ sha256 = "1w6170fwda4wvn7rpcjll2389hibz2fr6ckjf4qcs6hqlvcrjl8b";
};
meta.homepage = "https://github.com/Olical/conjure/";
};
@@ -942,12 +942,12 @@ let
csv-vim = buildVimPluginFrom2Nix {
pname = "csv-vim";
- version = "2020-06-16";
+ version = "2020-07-11";
src = fetchFromGitHub {
owner = "chrisbra";
repo = "csv.vim";
- rev = "e999936dc4873708b524f94ae0a42df950900ff8";
- sha256 = "1im11fpavcsyk7pjhnk2kkdnl0q9a6ai3nk3g3av0drm2qvia41x";
+ rev = "528766a549dc5022f3d89e84cbb80c7b911994f1";
+ sha256 = "160h9b59znbb0i6c7lh132mn5bl4njazfqsadz3p995vb9yc0sa6";
};
meta.homepage = "https://github.com/chrisbra/csv.vim/";
};
@@ -1038,12 +1038,12 @@ let
defx-nvim = buildVimPluginFrom2Nix {
pname = "defx-nvim";
- version = "2020-07-06";
+ version = "2020-07-18";
src = fetchFromGitHub {
owner = "Shougo";
repo = "defx.nvim";
- rev = "87da3129bc9bc97c24633f2343c1d249e51139a6";
- sha256 = "0lx7maacr3j4gmj2zl60crb1mgxiwxmlsb0x0nc7r7kwaj5av24f";
+ rev = "a31779723d35f4980d8e69e9d56a0e8fcec42d6b";
+ sha256 = "00fy01mj3c65nam5dajr130jnnvq4fynws8516dwq4x9hdlqn9j8";
};
meta.homepage = "https://github.com/Shougo/defx.nvim/";
};
@@ -1086,24 +1086,24 @@ let
denite-nvim = buildVimPluginFrom2Nix {
pname = "denite-nvim";
- version = "2020-06-28";
+ version = "2020-07-15";
src = fetchFromGitHub {
owner = "Shougo";
repo = "denite.nvim";
- rev = "1923d69eff4b1f9a9a70d9978a447bdccadecd4c";
- sha256 = "0h30z8zq34ps1qxp85kyhb1v8cbx3l9iz77zrjgddk6pf6hx31yh";
+ rev = "15f05df993c526c271d7cc3994403d305e6b4b92";
+ sha256 = "1sy5klszn8d9cb7qrqmnxvyr5nf197jrfv7z4mchpwx53k84dy15";
};
meta.homepage = "https://github.com/Shougo/denite.nvim/";
};
deol-nvim = buildVimPluginFrom2Nix {
pname = "deol-nvim";
- version = "2020-07-04";
+ version = "2020-07-11";
src = fetchFromGitHub {
owner = "Shougo";
repo = "deol.nvim";
- rev = "b07a1f2a23a4e68010c53a1e4e1d2a9e46e37ec5";
- sha256 = "0dac5q55cqzl2xawfb2dnqnvbwribbbc58lsm612iz425bhv2yn3";
+ rev = "d620b34fe5035807ad680004812080edc0f2a794";
+ sha256 = "09s86h14nrscpn16xppyz8nnjchyfv91z2cx4p0a2m46hqx962jj";
};
meta.homepage = "https://github.com/Shougo/deol.nvim/";
};
@@ -1232,12 +1232,12 @@ let
deoplete-lsp = buildVimPluginFrom2Nix {
pname = "deoplete-lsp";
- version = "2020-06-11";
+ version = "2020-07-13";
src = fetchFromGitHub {
owner = "Shougo";
repo = "deoplete-lsp";
- rev = "64a8663e529686fc43390942672ff2b33beda0e3";
- sha256 = "1z8axvcrzip4bgmnn62p3q7rr3y7avkf7l4k2r266bkxwgsmh50k";
+ rev = "ae0b7d023a33f0692652a21f532051e8718e1800";
+ sha256 = "00008andpp08l6fm8qadp8ycm59s8gx2m1vskmzg3lw905fk0gra";
};
meta.homepage = "https://github.com/Shougo/deoplete-lsp/";
};
@@ -1316,24 +1316,24 @@ let
deoplete-nvim = buildVimPluginFrom2Nix {
pname = "deoplete-nvim";
- version = "2020-06-28";
+ version = "2020-07-16";
src = fetchFromGitHub {
owner = "Shougo";
repo = "deoplete.nvim";
- rev = "a57980ab9d08b11affddc30439f6975e4eb01b41";
- sha256 = "0aiq70q82w6la4969nmbqz86innm7siz420yy87g9zwadja8nx6c";
+ rev = "99dee7d326cfed77d5e46dc6107325c7529ad639";
+ sha256 = "13hx8q25n0f5cal9fb67rhpblnirz0gqkl7nyglzgrqgyafgrn02";
};
meta.homepage = "https://github.com/Shougo/deoplete.nvim/";
};
dhall-vim = buildVimPluginFrom2Nix {
pname = "dhall-vim";
- version = "2020-07-06";
+ version = "2020-07-15";
src = fetchFromGitHub {
owner = "vmchale";
repo = "dhall-vim";
- rev = "9ced78806ce439f84d5dc264b212cd87db148c53";
- sha256 = "1ac8cy8nqqn9dz0r36w4lrwfqyv44jkd8md376v6awjfj4kn7xjc";
+ rev = "2b89ae34b07fc305741a58ba2c584a4cfc3377fc";
+ sha256 = "0jnxy5wy2mf4j01rgxjirqp3pyjwhsf3z2zxdzwz1bykhlwp7xhl";
};
meta.homepage = "https://github.com/vmchale/dhall-vim/";
};
@@ -1399,6 +1399,18 @@ let
meta.homepage = "https://github.com/elmcast/elm-vim/";
};
+ elvish-vim = buildVimPluginFrom2Nix {
+ pname = "elvish-vim";
+ version = "2019-06-29";
+ src = fetchFromGitHub {
+ owner = "dmix";
+ repo = "elvish.vim";
+ rev = "67ef8e89bff7cb8ea936f2164c8c268bbb3295f0";
+ sha256 = "133hr3i7zxysf2gnnimhz3gf3nda3fyfxmqq7mhq544v2mki4x9m";
+ };
+ meta.homepage = "https://github.com/dmix/elvish.vim/";
+ };
+
emmet-vim = buildVimPluginFrom2Nix {
pname = "emmet-vim";
version = "2020-06-20";
@@ -1775,12 +1787,12 @@ let
iceberg-vim = buildVimPluginFrom2Nix {
pname = "iceberg-vim";
- version = "2020-06-27";
+ version = "2020-07-12";
src = fetchFromGitHub {
owner = "cocopon";
repo = "iceberg.vim";
- rev = "8e9b8717121c1b9ce93bbf6ef3372e9a567abbcd";
- sha256 = "0rimchajc7slqid9s4dhhy5fjfspsg66b4ddfik3djgzvq088rpn";
+ rev = "a356b3eaccf0a5f0dc9468b76271a46cc090e040";
+ sha256 = "0kwpbygg1rfgn4rsbhpqi75ydl78csklk07kx0r95481qa7509wc";
};
meta.homepage = "https://github.com/cocopon/iceberg.vim/";
};
@@ -1919,12 +1931,12 @@ let
jedi-vim = buildVimPluginFrom2Nix {
pname = "jedi-vim";
- version = "2020-06-30";
+ version = "2020-07-17";
src = fetchFromGitHub {
owner = "davidhalter";
repo = "jedi-vim";
- rev = "a0207fadf9f165adac61f01abc07db0ae898cbe6";
- sha256 = "0hdnswwp0nw8z2rm4dij958arb13rlqr4izqydbh046lh1ksc9b1";
+ rev = "a17b0333031bd3652ad4c6169caaed05ffb7c49d";
+ sha256 = "0xqsh0mw64s9ph4sd550fc129q567dld3vk7fciwd2905h9q0k8q";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/davidhalter/jedi-vim/";
@@ -1980,12 +1992,12 @@ let
kotlin-vim = buildVimPluginFrom2Nix {
pname = "kotlin-vim";
- version = "2019-05-26";
+ version = "2020-07-12";
src = fetchFromGitHub {
owner = "udalov";
repo = "kotlin-vim";
- rev = "b9fa728701a0aa0b9a2ffe92f10880348fc27a8f";
- sha256 = "1yqzxabhpc4jbdlzhsysp0vi1ayqg0vnpysvx4ynd9961q2fk3sz";
+ rev = "33606c3163a2dd8c6a1924d6c7ed9e091de9743d";
+ sha256 = "0idnxblirl2493yxpmh69hkikf4w18a4br9mhwpvswzm52dwz5a4";
};
meta.homepage = "https://github.com/udalov/kotlin-vim/";
};
@@ -2100,12 +2112,12 @@ let
lh-vim-lib = buildVimPluginFrom2Nix {
pname = "lh-vim-lib";
- version = "2020-07-01";
+ version = "2020-07-18";
src = fetchFromGitHub {
owner = "LucHermitte";
repo = "lh-vim-lib";
- rev = "d704949896e56b1a54c8947abe090068ee12d8a9";
- sha256 = "0bv3036l1r1jkdwc0j9w9842n3his799ggwii3m65pvsk62ghcjf";
+ rev = "9fbc874d34ad9dd91b4c6cf302f444d532b6274f";
+ sha256 = "03ainjik7dng41n2m1g21b2yx4gs40rj19qnprxpm99aci482gm7";
};
meta.homepage = "https://github.com/LucHermitte/lh-vim-lib/";
};
@@ -2136,12 +2148,12 @@ let
lightline-vim = buildVimPluginFrom2Nix {
pname = "lightline-vim";
- version = "2020-06-21";
+ version = "2020-07-09";
src = fetchFromGitHub {
owner = "itchyny";
repo = "lightline.vim";
- rev = "afd88109a6e24c4cc0cb55ae70ca66c108f1c540";
- sha256 = "1cjb7klyigsqxv827bxdgp22b8cc5wihb1jfk7a8l63skliyqmg2";
+ rev = "079dc5754c87b4d18b40f916273c2fe56810c4a1";
+ sha256 = "0nva7vjdsa5h4c3j6hwmm8hb4s9vkkc4d5pqnyy2vm3ggnvl5nzn";
};
meta.homepage = "https://github.com/itchyny/lightline.vim/";
};
@@ -2242,6 +2254,54 @@ let
meta.homepage = "https://github.com/ncm2/ncm2-bufword/";
};
+ ncm2-cssomni = buildVimPluginFrom2Nix {
+ pname = "ncm2-cssomni";
+ version = "2018-07-09";
+ src = fetchFromGitHub {
+ owner = "ncm2";
+ repo = "ncm2-cssomni";
+ rev = "adaf78b921ee4320fd9d7adaa5bff7f3794f373a";
+ sha256 = "0z79n1fivw60whx2fy6239lq8c2xnbzzadijplj51gy34jk4hki0";
+ };
+ meta.homepage = "https://github.com/ncm2/ncm2-cssomni/";
+ };
+
+ ncm2-dictionary = buildVimPluginFrom2Nix {
+ pname = "ncm2-dictionary";
+ version = "2018-11-15";
+ src = fetchFromGitHub {
+ owner = "yuki-ycino";
+ repo = "ncm2-dictionary";
+ rev = "c93b52ab0cd1a9ebe5711414c3134f4bba9be6af";
+ sha256 = "096l8prqm7zb2s27j2cpnydggszicaji7xjlmhrav7dzc51avafy";
+ };
+ meta.homepage = "https://github.com/yuki-ycino/ncm2-dictionary/";
+ };
+
+ ncm2-github = buildVimPluginFrom2Nix {
+ pname = "ncm2-github";
+ version = "2018-08-01";
+ src = fetchFromGitHub {
+ owner = "ncm2";
+ repo = "ncm2-github";
+ rev = "2d7ed04a8fe5b8c27cfef5781a944d9865eed61f";
+ sha256 = "1dcxknbjm2mxrw1l2i56xrjyxlp0vr6gr5l62x5hcd5wfkzi74a1";
+ };
+ meta.homepage = "https://github.com/ncm2/ncm2-github/";
+ };
+
+ ncm2-html-subscope = buildVimPluginFrom2Nix {
+ pname = "ncm2-html-subscope";
+ version = "2018-07-01";
+ src = fetchFromGitHub {
+ owner = "ncm2";
+ repo = "ncm2-html-subscope";
+ rev = "8294cf1bb55fb805454a9230aeb91dbb0f733a14";
+ sha256 = "19h1jjqv6jwv5fnxxa6gv0qiyc3rbnxf0zibqxzdclmskrdgjacq";
+ };
+ meta.homepage = "https://github.com/ncm2/ncm2-html-subscope/";
+ };
+
ncm2-jedi = buildVimPluginFrom2Nix {
pname = "ncm2-jedi";
version = "2019-11-19";
@@ -2254,6 +2314,42 @@ let
meta.homepage = "https://github.com/ncm2/ncm2-jedi/";
};
+ ncm2-markdown-subscope = buildVimPluginFrom2Nix {
+ pname = "ncm2-markdown-subscope";
+ version = "2020-03-09";
+ src = fetchFromGitHub {
+ owner = "ncm2";
+ repo = "ncm2-markdown-subscope";
+ rev = "beeef1e88df29d2718f0fb73cdd4702eaf449f13";
+ sha256 = "0hh5bs76k5jsjzdp5lm53gma517s8ijrdp0acjjvsagz7r7gymq7";
+ };
+ meta.homepage = "https://github.com/ncm2/ncm2-markdown-subscope/";
+ };
+
+ ncm2-neoinclude = buildVimPluginFrom2Nix {
+ pname = "ncm2-neoinclude";
+ version = "2020-01-09";
+ src = fetchFromGitHub {
+ owner = "ncm2";
+ repo = "ncm2-neoinclude";
+ rev = "068ea09b8afa3f8bc97d34d2e96ee824e57816f7";
+ sha256 = "1s3l83g5j57xjszajdm3l98g4jkcqkxa3i249ms18000s2wmfrlj";
+ };
+ meta.homepage = "https://github.com/ncm2/ncm2-neoinclude/";
+ };
+
+ ncm2-neosnippet = buildVimPluginFrom2Nix {
+ pname = "ncm2-neosnippet";
+ version = "2019-01-26";
+ src = fetchFromGitHub {
+ owner = "ncm2";
+ repo = "ncm2-neosnippet";
+ rev = "650552528a2297179b8bb3afc1d9bb44ea97911b";
+ sha256 = "14ammx1qa72m6mafd64mc9qw3sgnmjqgq5vvcylqzqwy26wwla1b";
+ };
+ meta.homepage = "https://github.com/ncm2/ncm2-neosnippet/";
+ };
+
ncm2-path = buildVimPluginFrom2Nix {
pname = "ncm2-path";
version = "2019-02-20";
@@ -2266,6 +2362,30 @@ let
meta.homepage = "https://github.com/ncm2/ncm2-path/";
};
+ ncm2-syntax = buildVimPluginFrom2Nix {
+ pname = "ncm2-syntax";
+ version = "2018-12-11";
+ src = fetchFromGitHub {
+ owner = "ncm2";
+ repo = "ncm2-syntax";
+ rev = "7cd3857001a219be4bc7593b7378034b462415e4";
+ sha256 = "0l36qvsclhg8vr1ix1kpdl0kh739gp6b7s03f18vf9f0aj0im6w2";
+ };
+ meta.homepage = "https://github.com/ncm2/ncm2-syntax/";
+ };
+
+ ncm2-tagprefix = buildVimPluginFrom2Nix {
+ pname = "ncm2-tagprefix";
+ version = "2018-11-08";
+ src = fetchFromGitHub {
+ owner = "ncm2";
+ repo = "ncm2-tagprefix";
+ rev = "6bff80cbd3edb02a0c91a26820606d0dcbfeb3bd";
+ sha256 = "0a3dgvs3jflhh5015jw7iahlblvnlq7vllh9avwh9pggd7zwc42k";
+ };
+ meta.homepage = "https://github.com/ncm2/ncm2-tagprefix/";
+ };
+
ncm2-tmux = buildVimPluginFrom2Nix {
pname = "ncm2-tmux";
version = "2019-01-11";
@@ -2290,6 +2410,18 @@ let
meta.homepage = "https://github.com/ncm2/ncm2-ultisnips/";
};
+ ncm2-vim = buildVimPluginFrom2Nix {
+ pname = "ncm2-vim";
+ version = "2018-08-15";
+ src = fetchFromGitHub {
+ owner = "ncm2";
+ repo = "ncm2-vim";
+ rev = "4ee5d3e8b5710890cb5da7875790bdd5a8b3ca07";
+ sha256 = "0m4rs2bs0j74l7gqyzcdhprvvx2n7hw64bbls877av6kix4azr31";
+ };
+ meta.homepage = "https://github.com/ncm2/ncm2-vim/";
+ };
+
neco-ghc = buildVimPluginFrom2Nix {
pname = "neco-ghc";
version = "2020-06-06";
@@ -2364,12 +2496,12 @@ let
neoformat = buildVimPluginFrom2Nix {
pname = "neoformat";
- version = "2020-07-04";
+ version = "2020-07-16";
src = fetchFromGitHub {
owner = "sbdchd";
repo = "neoformat";
- rev = "0182a798813f974f21d5779d76747fa68e9717e8";
- sha256 = "02jh8ph55bns8dhxd1rpl62b4z7i5rx8v28b1ldrrvc29y1ymqs2";
+ rev = "166ab5d9084d4beccd5bebbe407dbef621d96171";
+ sha256 = "0lkll3ayxi311qh9ywjwymy02h66vvdz71i0apbjwlqs5ar10rwp";
};
meta.homepage = "https://github.com/sbdchd/neoformat/";
};
@@ -2388,12 +2520,12 @@ let
neomake = buildVimPluginFrom2Nix {
pname = "neomake";
- version = "2020-06-22";
+ version = "2020-07-15";
src = fetchFromGitHub {
owner = "neomake";
repo = "neomake";
- rev = "3193bd1c96b1071ed6c1316641acdcc977934d36";
- sha256 = "1gnnnmnzb0nsfsj2iq20dpycmfzk48vfsc06968srzpkzbpw2glf";
+ rev = "a3082cca83424e28730c738cf33157326b0be5ba";
+ sha256 = "0jxxy6ibj73xh77rvfkcqr98q1pr563zsmzq1qdm3s9lb6xvzka6";
};
meta.homepage = "https://github.com/neomake/neomake/";
};
@@ -2424,12 +2556,12 @@ let
neosnippet-vim = buildVimPluginFrom2Nix {
pname = "neosnippet-vim";
- version = "2020-06-28";
+ version = "2020-07-10";
src = fetchFromGitHub {
owner = "Shougo";
repo = "neosnippet.vim";
- rev = "ad04263359412e1dbfd687e861f3d28cd702a7f9";
- sha256 = "1mlvs8wxj8d3yh8srn0zr8bz753mhcyixsrfwcr90qcibglc1ihy";
+ rev = "16cddad16ba27fb1205d601c97d499be7d408b68";
+ sha256 = "0j459nxzdrx5mcgzyf9hai8zbn2mbdnilsn3vz4rg68ccngjlz68";
};
meta.homepage = "https://github.com/Shougo/neosnippet.vim/";
};
@@ -2508,12 +2640,12 @@ let
nerdtree = buildVimPluginFrom2Nix {
pname = "nerdtree";
- version = "2020-06-23";
+ version = "2020-07-17";
src = fetchFromGitHub {
owner = "preservim";
repo = "nerdtree";
- rev = "6571452857fd1b14f15a3886f9fffc113c36bbac";
- sha256 = "11hnzc2glnwzn24pz9fixwv87skqf024y0fpfs7jlsklvgs5pw8f";
+ rev = "e571d3e95b610fc4435e01524bb594d642f5db79";
+ sha256 = "1jlzwwx2p3hhadabxwhv6yaivn488vnaysxirf57w39n9wp4886c";
};
meta.homepage = "https://github.com/preservim/nerdtree/";
};
@@ -2532,12 +2664,12 @@ let
neuron-vim = buildVimPluginFrom2Nix {
pname = "neuron-vim";
- version = "2020-07-05";
+ version = "2020-07-11";
src = fetchFromGitHub {
owner = "ihsanturk";
repo = "neuron.vim";
- rev = "4ccd13f95a2c9f3dafef2d4adf633e0b18a16019";
- sha256 = "1z7i0szajykhdqckjydgh297k6b83ni9yds809skx90dlgbxwpfx";
+ rev = "13a538fc9141d9f567a11dffcf0796fc87770b5b";
+ sha256 = "1jbdwy44zx3fvz1dfzzclzxmfzg69ibqsl5cw5dxaqqm3wick8rp";
};
meta.homepage = "https://github.com/ihsanturk/neuron.vim/";
};
@@ -2628,12 +2760,12 @@ let
nvim-lsp = buildVimPluginFrom2Nix {
pname = "nvim-lsp";
- version = "2020-07-06";
+ version = "2020-07-08";
src = fetchFromGitHub {
owner = "neovim";
repo = "nvim-lsp";
- rev = "63527c33b51cbd6decdbf9a4285fd1b05be249b2";
- sha256 = "1yrnlqci1n6xqm2k3yd0klx1gybjcd0zizn2zd3yh30h23p4ak1v";
+ rev = "3f7223659f39273c5fe4f2f2d7ee8baa827a9cfb";
+ sha256 = "104439qy1nqgzxrj8pfvd05shnpywm0qj1w68rm701hwpig6j7q6";
};
meta.homepage = "https://github.com/neovim/nvim-lsp/";
};
@@ -2652,12 +2784,12 @@ let
nvim-treesitter = buildVimPluginFrom2Nix {
pname = "nvim-treesitter";
- version = "2020-07-06";
+ version = "2020-07-17";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter";
- rev = "3e8b5a30e2640d47ce07e7b32af07b1e4f5e6e33";
- sha256 = "128nvivv1d5qyzy91kcgxdahfrsblj81kn1x2mj3ijr5xph6b945";
+ rev = "dee2dd65ee1ab86a9249cc54a5f577a6dbf8a98a";
+ sha256 = "1d0a9sb7px48zvn798dcxap8lm34ildkslc5fiyj2a6cfrgxc772";
};
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/";
};
@@ -2700,12 +2832,12 @@ let
onedark-vim = buildVimPluginFrom2Nix {
pname = "onedark-vim";
- version = "2020-05-01";
+ version = "2020-07-17";
src = fetchFromGitHub {
owner = "joshdick";
repo = "onedark.vim";
- rev = "4bd965e29811e29e1c1b0819f3a63671d3e6ef28";
- sha256 = "168zim0ifkg441iwwpxdb93fq4ap2ps0rnrad5lqycpgwr0v0bg2";
+ rev = "c0f22072c8780494afce1bc0c5ea4de252c4516f";
+ sha256 = "05wbkxwmbb546k647ylsy33xl3pv5giz1v47qw9lpspx4mknx1ay";
};
meta.homepage = "https://github.com/joshdick/onedark.vim/";
};
@@ -2724,12 +2856,12 @@ let
open-browser-github-vim = buildVimPluginFrom2Nix {
pname = "open-browser-github-vim";
- version = "2020-03-16";
+ version = "2020-07-08";
src = fetchFromGitHub {
owner = "tyru";
repo = "open-browser-github.vim";
- rev = "db483ae17f02a8561e85b2071b90359a9a3bd18d";
- sha256 = "09x9lfyi9gfhy4m1vp6z1kxpvi31rr8dnlqhh6fgskkziiqch3jw";
+ rev = "7c31cd0093fdf89d53fa02b210c82b1326b00a8c";
+ sha256 = "1r3b16b7siyxj3n44z899spma5vamc5g76p947h95m9d0rc6sfnk";
};
meta.homepage = "https://github.com/tyru/open-browser-github.vim/";
};
@@ -3276,12 +3408,12 @@ let
splitjoin-vim = buildVimPluginFrom2Nix {
pname = "splitjoin-vim";
- version = "2020-07-05";
+ version = "2020-07-09";
src = fetchFromGitHub {
owner = "AndrewRadev";
repo = "splitjoin.vim";
- rev = "f60b6c5ee3341e66373457d3d8007c8b9c2e0a74";
- sha256 = "1vyirnzswjipimc14gdxnm07wvbkw1sp3kpsggqccwjkibh3fxhh";
+ rev = "c72cacf35e24aaf7cf3ca3e619655d24f52e370f";
+ sha256 = "19a1cbdyp09862jrzpvwi8ph911ylmvizdc6k3il9inmznby0ly2";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/AndrewRadev/splitjoin.vim/";
@@ -3518,12 +3650,12 @@ let
traces-vim = buildVimPluginFrom2Nix {
pname = "traces-vim";
- version = "2020-06-22";
+ version = "2020-07-13";
src = fetchFromGitHub {
owner = "markonm";
repo = "traces.vim";
- rev = "baed959ee85a3f7631a68104beee512a78233800";
- sha256 = "0nvl238fd7rnnwdf8xbzz5nzw9r74k86qhaw6khjvl5gydyzg1ah";
+ rev = "d8ff43209d6464d5239db724207d588e4153767d";
+ sha256 = "0gf7jdisll5cz9myh67947xwh0v8513n64jxbsh2fbxh8rq5wb21";
};
meta.homepage = "https://github.com/markonm/traces.vim/";
};
@@ -3662,12 +3794,12 @@ let
vim = buildVimPluginFrom2Nix {
pname = "vim";
- version = "2020-07-06";
+ version = "2020-07-09";
src = fetchFromGitHub {
owner = "dracula";
repo = "vim";
- rev = "10932ddaaf560e1ae5bc12137515dc7007a0afc3";
- sha256 = "1h85ynngkz921zr9gshcl0kk5s9dgjk0kifz4r7v8pvnjq5kbfk8";
+ rev = "922e2ba1ee6ec23e8daa8814c7819adeda98ea1b";
+ sha256 = "0c0pvj0br1y7nzxqkw63vx80wizzh335plk0xnzlk4yxfq33m7sc";
};
meta.homepage = "https://github.com/dracula/vim/";
};
@@ -3914,12 +4046,12 @@ let
vim-airline = buildVimPluginFrom2Nix {
pname = "vim-airline";
- version = "2020-07-05";
+ version = "2020-07-17";
src = fetchFromGitHub {
owner = "vim-airline";
repo = "vim-airline";
- rev = "b843321428209c892f4a1fab7a5fe473f0b7d386";
- sha256 = "143x1235p2wdnifpv637lbhi6jsxwdws07z6hrf6915qjc39zi53";
+ rev = "7fc51f69521eb9d1acb5f01ddd929e2cdf5d31fa";
+ sha256 = "1l468bzxl6frg77nn8jd8sij28k66xr69afflf2manzgn7c6srb3";
};
meta.homepage = "https://github.com/vim-airline/vim-airline/";
};
@@ -4334,12 +4466,12 @@ let
vim-dasht = buildVimPluginFrom2Nix {
pname = "vim-dasht";
- version = "2020-05-18";
+ version = "2020-07-11";
src = fetchFromGitHub {
owner = "sunaku";
repo = "vim-dasht";
- rev = "efee6525f7f61f2b201cbb09c888941c3e5a5e27";
- sha256 = "186rvr9vw140sin219q6psvh70vlqas9vfnbbg5ms6n7wvhz6a19";
+ rev = "c1c91ecfd30f0e4e946854a6f7c67eb2d1e21c98";
+ sha256 = "0ldkyzsn4b555pb9qdr0k6w6m3w7ziy7v6bcnx0n8ppq4fl68pz2";
};
meta.homepage = "https://github.com/sunaku/vim-dasht/";
};
@@ -4658,12 +4790,12 @@ let
vim-flutter = buildVimPluginFrom2Nix {
pname = "vim-flutter";
- version = "2020-07-06";
+ version = "2020-07-08";
src = fetchFromGitHub {
owner = "thosakwe";
repo = "vim-flutter";
- rev = "a865e5f0df4faaedfda1c2b5679b42d1a0267d44";
- sha256 = "04vl8cfk58m9p59j8hh0f9sp15dg7rm971nhmwhbbj7pq6b8dq8w";
+ rev = "359052369690541a9ede6e897fde4dca867a5109";
+ sha256 = "1303dskqbg1c5n3hczzw7x3gn5kl7hlfha824klwlkx91ga2jhck";
};
meta.homepage = "https://github.com/thosakwe/vim-flutter/";
};
@@ -4790,12 +4922,12 @@ let
vim-go = buildVimPluginFrom2Nix {
pname = "vim-go";
- version = "2020-07-06";
+ version = "2020-07-18";
src = fetchFromGitHub {
owner = "fatih";
repo = "vim-go";
- rev = "2c6bffb492f4f9b101e45610b0d7b9c328916894";
- sha256 = "1mcrs5n7l2syy5h52frv9259mw294s18czirbn3f8waf0n4b40s1";
+ rev = "124b73da9ab34c48c3a67763c9326c272763b5ee";
+ sha256 = "1d7jqisjqzi2mwqy3cz996lplf3vz7zbwjdpqzgw0z5q6ywgax85";
};
meta.homepage = "https://github.com/fatih/vim-go/";
};
@@ -4826,12 +4958,12 @@ let
vim-grepper = buildVimPluginFrom2Nix {
pname = "vim-grepper";
- version = "2019-12-09";
+ version = "2020-07-12";
src = fetchFromGitHub {
owner = "mhinz";
repo = "vim-grepper";
- rev = "dde6a660c7dd4e02b331da238ea477770073aca2";
- sha256 = "0c411yg2s6wb8141lqpgasg7iwgvfwy88z6l0c0gccmk8knypxhm";
+ rev = "e9004ce564891412cfe433cfbb97295cccd06b39";
+ sha256 = "1cs72x3wv4i11x7ch3gna1sxqn5zj3bd34smchfd00g4mf201lhs";
};
meta.homepage = "https://github.com/mhinz/vim-grepper/";
};
@@ -5102,12 +5234,12 @@ let
vim-isort = buildVimPluginFrom2Nix {
pname = "vim-isort";
- version = "2019-06-08";
+ version = "2020-07-17";
src = fetchFromGitHub {
owner = "fisadev";
repo = "vim-isort";
- rev = "b749d009075a333634dc61a039a2dc0e7f34609c";
- sha256 = "1h8s21kwbjdg632jvd46r2va7il4f1dbgwfw8fkds0n08rbnpdjw";
+ rev = "9794a4af68eccac74c23d7bfa151785ff88496fc";
+ sha256 = "172b1bpvn01nl67sh7v85mn7s21irzqjxxrcgkscpjifqaq8zvwi";
};
meta.homepage = "https://github.com/fisadev/vim-isort/";
};
@@ -5235,12 +5367,12 @@ let
vim-jsx-typescript = buildVimPluginFrom2Nix {
pname = "vim-jsx-typescript";
- version = "2020-07-02";
+ version = "2020-07-08";
src = fetchFromGitHub {
owner = "peitalin";
repo = "vim-jsx-typescript";
- rev = "f93f121335ae99bac123a6fecc9fa45a4790bb64";
- sha256 = "0a9p8d8hgd32gwp2lvzm9v354985pp0pqm36qn9cblgikgm9plgz";
+ rev = "07370d48c605ec027543b52762930165b1b27779";
+ sha256 = "190nyy7kr6i3xr6nrjlfv643s1c48kxlbh8ynk8p53yf32gcxwz7";
};
meta.homepage = "https://github.com/peitalin/vim-jsx-typescript/";
};
@@ -5331,12 +5463,12 @@ let
vim-lion = buildVimPluginFrom2Nix {
pname = "vim-lion";
- version = "2018-02-05";
+ version = "2020-07-18";
src = fetchFromGitHub {
owner = "tommcdo";
repo = "vim-lion";
- rev = "75306ac1922952ca1a401aee43ddbb304029926d";
- sha256 = "0kkf91ppn5jhvnpmmjsp6rvf97pqj57jrbn3qmmy925ncfqh90ld";
+ rev = "ce46593ecd60e6051fb6e4d3986d2fc9f5a618b1";
+ sha256 = "1ci9yi55wcg6388fv3dqhjsyp3nvmf9dz7q2nqsxpyd6yj1szrh7";
};
meta.homepage = "https://github.com/tommcdo/vim-lion/";
};
@@ -5379,12 +5511,12 @@ let
vim-lsc = buildVimPluginFrom2Nix {
pname = "vim-lsc";
- version = "2020-07-06";
+ version = "2020-07-12";
src = fetchFromGitHub {
owner = "natebosch";
repo = "vim-lsc";
- rev = "e24d328b59df69de1b594f1836b54fa1040ab4ef";
- sha256 = "0d7wrkmnz1023rz6b7cm98akph2hv543f6nid8bd1amskh4i9y4k";
+ rev = "632d49bf7a227e13bea6ef341de35f89e45c55b0";
+ sha256 = "1an37vkr9di0abxfnidlbij37xxy5z1cwnvpcnink4gman1msyzy";
};
meta.homepage = "https://github.com/natebosch/vim-lsc/";
};
@@ -5415,12 +5547,12 @@ let
vim-markdown = buildVimPluginFrom2Nix {
pname = "vim-markdown";
- version = "2020-06-21";
+ version = "2020-07-14";
src = fetchFromGitHub {
owner = "plasticboy";
repo = "vim-markdown";
- rev = "139b6f666cd00e2c3180454fb794fd6cee788f0f";
- sha256 = "1yk185l6g5ga2wlbxf0mcwc0dsc6c1nmz1ynl0hfnrbpfnn4sw1p";
+ rev = "8e5d86f7b85234d3d1b4207dceebc43a768ed5d4";
+ sha256 = "013vh2rnfifm5j56imar03rvchz68ll4lbgy9y8fbw7s9a0k6yaa";
};
meta.homepage = "https://github.com/plasticboy/vim-markdown/";
};
@@ -5487,12 +5619,12 @@ let
vim-move = buildVimPluginFrom2Nix {
pname = "vim-move";
- version = "2020-07-05";
+ version = "2020-07-13";
src = fetchFromGitHub {
owner = "matze";
repo = "vim-move";
- rev = "07459060d9166a19a2279740fedef2412eeee807";
- sha256 = "1xikw6cq2pp5j2w0n8sckyq6l91y8gzqs2y1cs0h3bd5qba62nna";
+ rev = "b244c7e709ee735ac0f81ce50ec269c66a88ed87";
+ sha256 = "0qwzmy318c1nwda53yfdin5h06xym2adjkhxfy1sw4xlhw71i2gl";
};
meta.homepage = "https://github.com/matze/vim-move/";
};
@@ -5667,16 +5799,28 @@ let
vim-orgmode = buildVimPluginFrom2Nix {
pname = "vim-orgmode";
- version = "2020-05-09";
+ version = "2020-07-14";
src = fetchFromGitHub {
owner = "jceb";
repo = "vim-orgmode";
- rev = "ecdc5b279d7b4e0ae4ebfb9e0f139e3ca6698033";
- sha256 = "00yihsp5fmpw1ch013brrjkxb6h4slkxms1n154glz8pm95bqsm0";
+ rev = "ad5f154a5bd9daffb7cf50719f0cc945f445af85";
+ sha256 = "09x3x53vf2fir9jhi38v9sai7dx5i40ylx1yk42459bgig2vv1aa";
};
meta.homepage = "https://github.com/jceb/vim-orgmode/";
};
+ vim-packer = buildVimPluginFrom2Nix {
+ pname = "vim-packer";
+ version = "2018-11-11";
+ src = fetchFromGitHub {
+ owner = "hashivim";
+ repo = "vim-packer";
+ rev = "c2561f41e46df8a78a6b51226f60607582052134";
+ sha256 = "070ncbmwh8wxxfzf7phx0hb0dk9krlvsj5mvrn7kr5y3mngdg9v4";
+ };
+ meta.homepage = "https://github.com/hashivim/vim-packer/";
+ };
+
vim-pager = buildVimPluginFrom2Nix {
pname = "vim-pager";
version = "2015-08-26";
@@ -5691,12 +5835,12 @@ let
vim-pandoc = buildVimPluginFrom2Nix {
pname = "vim-pandoc";
- version = "2020-05-15";
+ version = "2020-07-18";
src = fetchFromGitHub {
owner = "vim-pandoc";
repo = "vim-pandoc";
- rev = "e49f9e7e3fc041dab0e9a1de4b564b3ddd8f77aa";
- sha256 = "0i1zcnsc962bzm3q6kw8bldd9xh6vb7kw0j72c4dzwdw4ayx0wf1";
+ rev = "9be2bbeb826ce8b7827ee37326ac90e221c83736";
+ sha256 = "1bprfbsccp7v9maq1vm50d1zx835psaccw3yf726v10a7n8pvm58";
};
meta.homepage = "https://github.com/vim-pandoc/vim-pandoc/";
};
@@ -6027,12 +6171,12 @@ let
vim-ruby = buildVimPluginFrom2Nix {
pname = "vim-ruby";
- version = "2020-06-28";
+ version = "2020-07-18";
src = fetchFromGitHub {
owner = "vim-ruby";
repo = "vim-ruby";
- rev = "416be2b00de6390f05da2f60f18aa15a4397eef7";
- sha256 = "1nlda38bp67hzmp851haxs5g48kd8dav53484jzdfmxxq0lwy0mb";
+ rev = "c13aa57ed4f822dc4f035597afa55f3fd54f96fa";
+ sha256 = "16iyjggjfqkvbc1frlyswq96614wwb322h2dyxhyw0dpv7x841g7";
};
meta.homepage = "https://github.com/vim-ruby/vim-ruby/";
};
@@ -6051,12 +6195,12 @@ let
vim-sandwich = buildVimPluginFrom2Nix {
pname = "vim-sandwich";
- version = "2020-02-13";
+ version = "2020-07-18";
src = fetchFromGitHub {
owner = "machakann";
repo = "vim-sandwich";
- rev = "02e3b6d1ff9ce346c115166855137b318b63c536";
- sha256 = "1jd5i0ykvwf5jnm3g3rm2r0zn64xqk38p2xl55la9a1a99j9mfxh";
+ rev = "bb5a3270ed010e0fe3343945c8d1f6c814341d72";
+ sha256 = "1sd8ni2plj93jjcyavrnkdz3iwnkz9p0mci329gn8jm0jxn3qbwy";
};
meta.homepage = "https://github.com/machakann/vim-sandwich/";
};
@@ -6255,12 +6399,12 @@ let
vim-snippets = buildVimPluginFrom2Nix {
pname = "vim-snippets";
- version = "2020-06-28";
+ version = "2020-07-16";
src = fetchFromGitHub {
owner = "honza";
repo = "vim-snippets";
- rev = "3f805a0101e5fdfea4eab992af5aa50e8a242459";
- sha256 = "0ybysjzxpka7lkqd9fjj1nk8byr8g96a3ykmcq0m6xwwyv8732x5";
+ rev = "bf94550e930e1b79cd27c04b9bb2c5aa32ee8a0e";
+ sha256 = "075faj7hy5914bzh693rhph1z39q1k1i5fcbp6wrs9yf1g1x98fj";
};
meta.homepage = "https://github.com/honza/vim-snippets/";
};
@@ -6447,24 +6591,37 @@ let
vim-terraform = buildVimPluginFrom2Nix {
pname = "vim-terraform";
- version = "2020-03-03";
+ version = "2020-07-09";
src = fetchFromGitHub {
owner = "hashivim";
repo = "vim-terraform";
- rev = "89c47c6c68f6260ba34ee0733437d863046fbe95";
- sha256 = "1gkr3akvx44802i8cv4zw8j3bk5qk0h0rgz5k9jgkfch2yc76gzg";
+ rev = "552daab4e560141a72cd8bc41d063b8d3d219a17";
+ sha256 = "068zv6rxi9zxwf0fsd6pangdbwa7f9gd4ljliglblmgbwm4dvzjq";
};
meta.homepage = "https://github.com/hashivim/vim-terraform/";
};
+ vim-terraform-completion = buildVimPluginFrom2Nix {
+ pname = "vim-terraform-completion";
+ version = "2019-07-28";
+ src = fetchFromGitHub {
+ owner = "juliosueiras";
+ repo = "vim-terraform-completion";
+ rev = "1c8792d1e85154aa6fc05eb746711bf2df2274d9";
+ sha256 = "0j87vhxkrv8sdrlv9w5p2zkiv9ssb3rckbffjcfhn9365d41bhgr";
+ fetchSubmodules = true;
+ };
+ meta.homepage = "https://github.com/juliosueiras/vim-terraform-completion/";
+ };
+
vim-test = buildVimPluginFrom2Nix {
pname = "vim-test";
- version = "2020-06-20";
+ version = "2020-07-15";
src = fetchFromGitHub {
owner = "vim-test";
repo = "vim-test";
- rev = "a125012ad09d4531dc7f13097fa4a5e3f1ad09a7";
- sha256 = "1dhg81glzfbmcrna45062n41vcfnd7mliphpa6rpd5d9ci54hl08";
+ rev = "0b3c5d7adf7892c018d2d97177f9d2d445ec92ff";
+ sha256 = "1k41l4747zv6i89068p0gh1qbn4hd2qpd5qnk8g13dg5ryhsq6fc";
};
meta.homepage = "https://github.com/vim-test/vim-test/";
};
@@ -6673,6 +6830,18 @@ let
meta.homepage = "https://github.com/tpope/vim-unimpaired/";
};
+ vim-vagrant = buildVimPluginFrom2Nix {
+ pname = "vim-vagrant";
+ version = "2018-11-11";
+ src = fetchFromGitHub {
+ owner = "hashivim";
+ repo = "vim-vagrant";
+ rev = "7741242ed9617ed53ba7e47e801634b819047ac0";
+ sha256 = "0inpgcrca955h0ic7pgl6bfzs7rssjgssvrvqq3y93j5addmh60m";
+ };
+ meta.homepage = "https://github.com/hashivim/vim-vagrant/";
+ };
+
vim-vinegar = buildVimPluginFrom2Nix {
pname = "vim-vinegar";
version = "2020-06-27";
@@ -6759,12 +6928,12 @@ let
vim-which-key = buildVimPluginFrom2Nix {
pname = "vim-which-key";
- version = "2020-06-20";
+ version = "2020-07-18";
src = fetchFromGitHub {
owner = "liuchengxu";
repo = "vim-which-key";
- rev = "b9409149a5a8a386322cc4246d890c8c4c07d11d";
- sha256 = "0jrz1v63a9kv7bkksdw7vxq83d49f0dvhp1sd9vaiya7a93raxdx";
+ rev = "4e5bd491badecfcd3ecbe0f813d3b31625a8eb4f";
+ sha256 = "1rz2cshvdmfl3wna4kcj2l6sf78mh0qwydr76frzd3ahp9pjghsk";
};
meta.homepage = "https://github.com/liuchengxu/vim-which-key/";
};
@@ -6879,12 +7048,12 @@ let
vimfiler-vim = buildVimPluginFrom2Nix {
pname = "vimfiler-vim";
- version = "2019-07-30";
+ version = "2020-07-13";
src = fetchFromGitHub {
owner = "Shougo";
repo = "vimfiler.vim";
- rev = "26d3fec10cb8921d510064411784301794229a93";
- sha256 = "0iv1smk0999sfm3iqdlpb2il74l01lxfahwg87g7h3gq9frky2wd";
+ rev = "0fdf9f2f7e6014a49625433058c1665f72a3b86f";
+ sha256 = "028hcmr7xxqmb55m9q2h2x9kr5xq5866ivr0in23jm44s897yr25";
};
meta.homepage = "https://github.com/Shougo/vimfiler.vim/";
};
@@ -6951,12 +7120,12 @@ let
vimtex = buildVimPluginFrom2Nix {
pname = "vimtex";
- version = "2020-07-02";
+ version = "2020-07-16";
src = fetchFromGitHub {
owner = "lervag";
repo = "vimtex";
- rev = "0019dc6182ef5fa232887118b46119bd6f5d4063";
- sha256 = "1p0hgrjhzlg1a5f33mj68db123m71r0icqaxbj6mhmkr97887jym";
+ rev = "7552bb5494d2305bed0adee3fbf695d1b11a331c";
+ sha256 = "0p3fhpn96r2344wry9zl318iyk40y3xqmdrgi1wba5f8zglyz9fp";
};
meta.homepage = "https://github.com/lervag/vimtex/";
};
@@ -6999,12 +7168,12 @@ let
vista-vim = buildVimPluginFrom2Nix {
pname = "vista-vim";
- version = "2020-06-26";
+ version = "2020-07-17";
src = fetchFromGitHub {
owner = "liuchengxu";
repo = "vista.vim";
- rev = "0cbf100215f2136aaea53386bc7f9b2aef7d7021";
- sha256 = "1vdmcwmdrfka03px7rm1hg7irmv8wfq3rzr7qgv255jv65mblvid";
+ rev = "de344a69ee01eef8a905660cd793173698fa62dd";
+ sha256 = "1ngh9nal0p0xgd9xzsalirdc59kqxssx8dax97jcasmxqrp8wf8h";
};
meta.homepage = "https://github.com/liuchengxu/vista.vim/";
};
@@ -7119,12 +7288,12 @@ let
yats-vim = buildVimPluginFrom2Nix {
pname = "yats-vim";
- version = "2020-07-04";
+ version = "2020-07-16";
src = fetchFromGitHub {
owner = "HerringtonDarkholme";
repo = "yats.vim";
- rev = "e6f121561506f011d878855b66ca8116a46121ae";
- sha256 = "09241155jwrwqqifkh7a64nk5x8yf96835jkywwysl554ppjz8s5";
+ rev = "920ac02981644d637ab89a40d7a80d70b413521e";
+ sha256 = "0ysk9xdyvvhkdjm22sg4m0f6gl4b938x2m38c44sp3rzgryz93s7";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/HerringtonDarkholme/yats.vim/";
@@ -7132,12 +7301,12 @@ let
YouCompleteMe = buildVimPluginFrom2Nix {
pname = "YouCompleteMe";
- version = "2020-07-07";
+ version = "2020-07-15";
src = fetchFromGitHub {
owner = "ycm-core";
repo = "YouCompleteMe";
- rev = "9309f77732bde34b7ecf9c2e154b9fcdf14c5295";
- sha256 = "1m6hyqywdrprm91dkwgnp8r50la933k4a7wdnjw7knvfdiywj7sx";
+ rev = "321700e848595af129d5d75afac92d0060d3cdf9";
+ sha256 = "17kfnh1pp7ldbj7rhfsfvrbl0ny50bm3y6h9ih23r76cws2097zf";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/ycm-core/YouCompleteMe/";
@@ -7181,12 +7350,12 @@ let
zig-vim = buildVimPluginFrom2Nix {
pname = "zig-vim";
- version = "2020-06-23";
+ version = "2020-07-14";
src = fetchFromGitHub {
owner = "ziglang";
repo = "zig.vim";
- rev = "6e4e34862c82b66fd939042018b334f66ee4847c";
- sha256 = "1g1k2myhpyd58qj6amwq7ynsl2hvqmn6gd638i8k3hk7kxr1n22a";
+ rev = "09fa2d8be89d05ecb394a19138372de27675a7cd";
+ sha256 = "1kg02li4bjkdra1vfw25qc370xyh70m0q9l5klx2a0hmhnh2jl8j";
};
meta.homepage = "https://github.com/ziglang/zig.vim/";
};
diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix
index d3893934900..a016207a02d 100644
--- a/pkgs/misc/vim-plugins/overrides.nix
+++ b/pkgs/misc/vim-plugins/overrides.nix
@@ -440,6 +440,18 @@ self: super: {
passthru.python3Dependencies = ps: with ps; [ jedi ];
});
+ ncm2-neoinclude = super.ncm2-neoinclude.overrideAttrs(old: {
+ dependencies = with super; [ neoinclude-vim ];
+ });
+
+ ncm2-neosnippet = super.ncm2-neosnippet.overrideAttrs(old: {
+ dependencies = with super; [ neosnippet-vim ];
+ });
+
+ ncm2-syntax = super.ncm2-syntax.overrideAttrs(old: {
+ dependencies = with super; [ neco-syntax ];
+ });
+
ncm2-ultisnips = super.ncm2-ultisnips.overrideAttrs(old: {
dependencies = with super; [ ultisnips ];
});
diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names
index 816c9872ac8..8b3eb8ccc1a 100644
--- a/pkgs/misc/vim-plugins/vim-plugin-names
+++ b/pkgs/misc/vim-plugins/vim-plugin-names
@@ -81,6 +81,7 @@ dhruvasagar/vim-table-mode
digitaltoad/vim-pug
direnv/direnv.vim
dleonard0/pony-vim-syntax
+dmix/elvish.vim
dracula/vim
drewtempelmeyer/palenight.vim
drmingdrmer/xptemplate
@@ -130,7 +131,9 @@ guns/vim-clojure-highlight
guns/vim-clojure-static
guns/vim-sexp
guns/xterm-color-table.vim
+hashivim/vim-packer
hashivim/vim-terraform
+hashivim/vim-vagrant
haya14busa/incsearch-easymotion.vim
haya14busa/incsearch.vim
haya14busa/is.vim
@@ -188,6 +191,7 @@ jsfaint/gen_tags.vim
JuliaEditorSupport/deoplete-julia
JuliaEditorSupport/julia-vim
Julian/vim-textobj-variable-segment
+juliosueiras/vim-terraform-completion
junegunn/fzf.vim
junegunn/goyo.vim
junegunn/gv.vim
@@ -314,10 +318,19 @@ nbouscal/vim-stylish-haskell
ncm2/float-preview.nvim
ncm2/ncm2
ncm2/ncm2-bufword
+ncm2/ncm2-cssomni
+ncm2/ncm2-github
+ncm2/ncm2-html-subscope
ncm2/ncm2-jedi
+ncm2/ncm2-markdown-subscope
+ncm2/ncm2-neoinclude
+ncm2/ncm2-neosnippet
ncm2/ncm2-path
+ncm2/ncm2-syntax
+ncm2/ncm2-tagprefix
ncm2/ncm2-tmux
ncm2/ncm2-ultisnips
+ncm2/ncm2-vim
ndmitchell/ghcid
neoclide/coc-css
neoclide/coc-denite
@@ -595,5 +608,6 @@ xolox/vim-misc
xuhdev/vim-latex-live-preview
ycm-core/YouCompleteMe
Yggdroot/indentLine
+yuki-ycino/ncm2-dictionary
zah/nim.vim
ziglang/zig.vim
diff --git a/pkgs/os-specific/linux/sd-switch/default.nix b/pkgs/os-specific/linux/sd-switch/default.nix
new file mode 100644
index 00000000000..df929278e92
--- /dev/null
+++ b/pkgs/os-specific/linux/sd-switch/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitLab, rustPlatform, pkg-config, dbus }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "sd-switch";
+ version = "0.1.0";
+
+ src = fetchFromGitLab {
+ owner = "rycee";
+ repo = pname;
+ rev = version;
+ sha256 = "0njihfqvvp4lm2572sw5xadwg3nrvx2i1qrfm7fi0i3v5pxdc7g0";
+ };
+
+ cargoSha256 = "0ba2j0v2z90fivwdr5akdrsz9f479gz20yh85yiy05rkjhjy8cvv";
+
+ nativeBuildInputs = [ pkg-config ];
+ buildInputs = [ dbus ];
+
+ meta = with stdenv.lib; {
+ description = "A systemd unit switcher for Home Manager";
+ homepage = "https://gitlab.com/rycee/sd-switch";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ rycee ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/servers/etcd/3.4.nix b/pkgs/servers/etcd/3.4.nix
index 699ec033d3f..18a380746b5 100644
--- a/pkgs/servers/etcd/3.4.nix
+++ b/pkgs/servers/etcd/3.4.nix
@@ -2,9 +2,9 @@
buildGoModule rec {
pname = "etcd";
- version = "3.4.9";
+ version = "3.4.10";
- #vendorSha256 = null; revert to `null` for > 3.4.9
+ #vendorSha256 = null; revert to `null` for > 3.4.10
vendorSha256 = "1fhrycl8m8ddb7mwasbyfiwrl4d9lfdk7zd3mxb7ahkipdp2c94z";
deleteVendor = true;
@@ -13,7 +13,7 @@ buildGoModule rec {
owner = "etcd-io";
repo = "etcd";
rev = "v${version}";
- sha256 = "16l4wmnm7mkhpb2vzf6xnhhyx6lj8xx3z6x1bfs05idajnrw824p";
+ sha256 = "07kzgh2rm7kzprlpnay6fq8lziiyhiqyikf1qjx8gjjsdsjy180f";
};
buildPhase = ''
diff --git a/pkgs/servers/mail/exim/default.nix b/pkgs/servers/mail/exim/default.nix
index a85cb92a3fb..4d63a7b39c7 100644
--- a/pkgs/servers/mail/exim/default.nix
+++ b/pkgs/servers/mail/exim/default.nix
@@ -8,11 +8,11 @@
stdenv.mkDerivation rec {
pname = "exim";
- version = "4.93.0.4";
+ version = "4.94";
src = fetchurl {
- url = "https://ftp.exim.org/pub/exim/exim4/fixes/${pname}-${version}.tar.xz";
- sha256 = "01g4sfycv13glnmfrapwhjbdw6z1z7w5bwjldxjmglwfw5p3czak";
+ url = "https://ftp.exim.org/pub/exim/exim4/${pname}-${version}.tar.xz";
+ sha256 = "1nsb2i5mqxfz1sl1bmbxmpb2qiaf3wffhfiw4j9vfpagy3xfhzpp";
};
nativeBuildInputs = [ pkgconfig ];
@@ -92,11 +92,11 @@ stdenv.mkDerivation rec {
done )
'';
- meta = {
+ meta = with stdenv.lib; {
homepage = "http://exim.org/";
description = "A mail transfer agent (MTA)";
- license = stdenv.lib.licenses.gpl3;
- platforms = stdenv.lib.platforms.linux;
- maintainers = [ stdenv.lib.maintainers.tv ];
+ license = with licenses; [ gpl2Plus bsd3 ];
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ tv ajs124 das_j ];
};
}
diff --git a/pkgs/servers/search/elasticsearch/plugins.nix b/pkgs/servers/search/elasticsearch/plugins.nix
index 8e086ac5e66..846fb33000b 100644
--- a/pkgs/servers/search/elasticsearch/plugins.nix
+++ b/pkgs/servers/search/elasticsearch/plugins.nix
@@ -64,6 +64,23 @@ in {
};
};
+ analysis-phonetic = esPlugin rec {
+ pluginName = "analysis-phonetic";
+ version = esVersion;
+ src = fetchurl {
+ url = "https://artifacts.elastic.co/downloads/elasticsearch-plugins/${pluginName}/${pluginName}-${version}.zip";
+ sha256 =
+ if version == "7.5.1" then "0znmbdf99bli4kvyb3vxr5x48yb6n64nl38gpa63iqsv3nlbi0hp"
+ else if version == "6.8.3" then "0ggdhf7w50bxsffmcznrjy14b578fps0f8arg3v54qvj94v9jc37"
+ else throw "unsupported version ${version} for plugin ${pluginName}";
+ };
+ meta = with lib; {
+ homepage = "https://github.com/elastic/elasticsearch/tree/master/plugins/analysis-phonetic";
+ description = "The Phonetic Analysis plugin integrates phonetic token filter analysis with elasticsearch";
+ license = licenses.asl20;
+ };
+ };
+
discovery-ec2 = esPlugin rec {
pluginName = "discovery-ec2";
version = esVersion;
diff --git a/pkgs/servers/sslh/default.nix b/pkgs/servers/sslh/default.nix
index 68fe9c4b08e..5be4805909d 100644
--- a/pkgs/servers/sslh/default.nix
+++ b/pkgs/servers/sslh/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "sslh";
- version = "1.20";
+ version = "1.21";
src = fetchurl {
url = "https://www.rutschle.net/tech/sslh/sslh-v${version}.tar.gz";
- sha256 = "05jihpjxx094h7hqzgd9v5jmy77ipwrakzzmjyfvpdzw3h59px57";
+ sha256 = "1am63nslvv9xkbn9xavpf1zl6f7g1snz8cvnzlya7dq4la4y97d7";
};
postPatch = "patchShebangs *.sh";
diff --git a/pkgs/servers/web-apps/moodle/moodle-utils.nix b/pkgs/servers/web-apps/moodle/moodle-utils.nix
index 52fddecc66d..168482bffe6 100644
--- a/pkgs/servers/web-apps/moodle/moodle-utils.nix
+++ b/pkgs/servers/web-apps/moodle/moodle-utils.nix
@@ -5,7 +5,7 @@ let
name,
src,
pluginType,
- configuraPhase ? ":",
+ configurePhase ? ":",
buildPhase ? ":",
buildInputs ? [ ],
...
@@ -14,7 +14,7 @@ let
name = name;
inherit pluginType;
- inherit configuraPhase buildPhase;
+ inherit configurePhase buildPhase;
buildInputs = [ unzip ] ++ buildInputs;
diff --git a/pkgs/shells/elvish/default.nix b/pkgs/shells/elvish/default.nix
index 2aa23cd063e..7d9fe0da17c 100644
--- a/pkgs/shells/elvish/default.nix
+++ b/pkgs/shells/elvish/default.nix
@@ -2,23 +2,20 @@
buildGoModule rec {
pname = "elvish";
- version = "0.13.1";
+ version = "0.14.0";
- goPackagePath = "github.com/elves/elvish";
excludedPackages = [ "website" ];
- buildFlagsArray = ''
- -ldflags=
- -X ${goPackagePath}/buildinfo.Version=${version}
- '';
+
+ buildFlagsArray = [ "-ldflags=-s -w -X github.com/elves/elvish/pkg/buildinfo.Version==${version} -X github.com/elves/elvish/pkg/buildinfo.Reproducible=true" ];
src = fetchFromGitHub {
owner = "elves";
repo = pname;
rev = "v${version}";
- sha256 = "0lz9lf1swrn67kymcp2wh67lh3c0ifqm9035gpkd3zynlq3wzqfm";
+ sha256 = "1jsxhnm82pjzwvcjq7vrlldyjnv5j6c83a13dj6zphlqq99z68l4";
};
- vendorSha256 = null;
+ vendorSha256 = "1f971n17h9bc0qcgs9ipiaw0x9807mz761fqm605br4ch1kp0897";
meta = with stdenv.lib; {
description = "A friendly and expressive command shell";
@@ -36,4 +33,4 @@ buildGoModule rec {
passthru = {
shellPath = "/bin/elvish";
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/tools/archivers/p7zip/default.nix b/pkgs/tools/archivers/p7zip/default.nix
index 773d37f0b75..a155c1717eb 100644
--- a/pkgs/tools/archivers/p7zip/default.nix
+++ b/pkgs/tools/archivers/p7zip/default.nix
@@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
# Default makefile is full of impurities on Darwin. The patch doesn't hurt Linux so I'm leaving it unconditional
postPatch = ''
sed -i '/CC=\/usr/d' makefile.macosx_llvm_64bits
+ chmod +x install.sh
# I think this is a typo and should be CXX? Either way let's kill it
sed -i '/XX=\/usr/d' makefile.macosx_llvm_64bits
@@ -28,7 +29,6 @@ stdenv.mkDerivation rec {
# (see DOC/License.txt, https://fedoraproject.org/wiki/Licensing:Unrar)
rm -r CPP/7zip/Compress/Rar*
find . -name makefile'*' -exec sed -i '/Rar/d' {} +
- chmod +x install.sh
'';
preConfigure = ''
diff --git a/pkgs/tools/misc/bdf2sfd/default.nix b/pkgs/tools/misc/bdf2sfd/default.nix
index ca67525bb8c..e7a9d98aaf2 100644
--- a/pkgs/tools/misc/bdf2sfd/default.nix
+++ b/pkgs/tools/misc/bdf2sfd/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "bdf2sfd";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchFromGitHub {
owner = "fcambus";
repo = pname;
rev = version;
- sha256 = "1fhdl739a4v8296wpn2390fhlb6vlg9m1zik7mql4l9008ncd5mv";
+ sha256 = "0v1kkds35qfyv1h5kxc2m7f2gsprg9c7jzpsm3p4f71qn982wry6";
};
nativeBuildInputs = [ cmake ];
@@ -17,6 +17,7 @@ stdenv.mkDerivation rec {
description = "BDF to SFD converter";
homepage = "https://github.com/fcambus/bdf2sfd";
license = licenses.bsd2;
+ platforms = platforms.all;
maintainers = with maintainers; [ dtzWill ];
};
}
diff --git a/pkgs/tools/misc/coreboot-utils/default.nix b/pkgs/tools/misc/coreboot-utils/default.nix
index 533b4eefc2a..39e2e041e32 100644
--- a/pkgs/tools/misc/coreboot-utils/default.nix
+++ b/pkgs/tools/misc/coreboot-utils/default.nix
@@ -3,7 +3,7 @@
let
version = "4.12";
- meta = with stdenv.lib; {
+ commonMeta = with stdenv.lib; {
description = "Various coreboot-related tools";
homepage = "https://www.coreboot.org";
license = licenses.gpl2;
@@ -12,7 +12,7 @@ let
};
generic = { pname, path ? "util/${pname}", ... }@args: stdenv.mkDerivation (rec {
- inherit pname version meta;
+ inherit pname version;
src = fetchurl {
url = "https://coreboot.org/releases/coreboot-${version}.tar.xz";
@@ -29,7 +29,9 @@ let
"INSTALL=install"
"PREFIX=${placeholder "out"}"
];
- } // args);
+
+ meta = commonMeta // args.meta;
+ } // (removeAttrs args ["meta"]));
utils = {
msrtool = generic {
@@ -99,6 +101,7 @@ in utils // {
paths = stdenv.lib.attrValues utils;
postBuild = "rm -rf $out/sbin";
}) // {
- inherit meta version;
+ inherit version;
+ meta = commonMeta;
};
}
diff --git a/pkgs/tools/misc/pistol/default.nix b/pkgs/tools/misc/pistol/default.nix
index 5c92b70c098..ada2bf5f25a 100644
--- a/pkgs/tools/misc/pistol/default.nix
+++ b/pkgs/tools/misc/pistol/default.nix
@@ -6,16 +6,16 @@
buildGoModule rec {
pname = "pistol";
- version = "0.1.2";
+ version = "0.1.4";
src = fetchFromGitHub {
owner = "doronbehar";
repo = pname;
rev = "v${version}";
- sha256 = "1ar8c7s8ihcwrwfspmqw7cb5560wkbdc5qyvddkx8lj03cjhcslj";
+ sha256 = "1x9wb0gj5l71xz15ia0i2hrnhcpf457i21w41jzw2ink2fbdxp3b";
};
- vendorSha256 = "1mhxb72fzpa2n88i9h154aci346dgcs2njznkjxchivz28crbqr8";
+ vendorSha256 = "0dg4f9g6895nv3c6d74ijl6hzsyn620ndspbcq7ynvb1z0hsg6iz";
subPackages = [ "cmd/pistol" ];
@@ -23,10 +23,12 @@ buildGoModule rec {
file
];
+ buildFlagsArray = [ "-ldflags=-s -w -X main.Version=${version}" ];
+
meta = with stdenv.lib; {
description = "General purpose file previewer designed for Ranger, Lf to make scope.sh redundant";
homepage = "https://github.com/doronbehar/pistol";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar ];
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/tools/networking/wormhole-william/default.nix b/pkgs/tools/networking/wormhole-william/default.nix
new file mode 100644
index 00000000000..c7e580b2681
--- /dev/null
+++ b/pkgs/tools/networking/wormhole-william/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+ pname = "wormhole-william";
+ version = "1.0.4";
+
+ src = fetchFromGitHub {
+ owner = "psanford";
+ repo = "wormhole-william";
+ rev = "v${version}";
+ sha256 = "1v6kw10gqhyd1adj0wwrr5bmpjqbshdnywsrjpqgg9bl61m5j3wr";
+ };
+
+ vendorSha256 = "1niky252gcxai6vz0cx7pvflg530bc1lmcd2wm2hqg6446r1yxsq";
+
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/psanford/wormhole-william";
+ description = "End-to-end encrypted file transfers";
+ changelog = "https://github.com/psanford/wormhole-william/releases/tag/v${version}";
+ license = licenses.mit;
+ maintainers = with maintainers; [ psanford ];
+ };
+}
diff --git a/pkgs/tools/system/facter/default.nix b/pkgs/tools/system/facter/default.nix
index a4065cce864..01fd10d6777 100644
--- a/pkgs/tools/system/facter/default.nix
+++ b/pkgs/tools/system/facter/default.nix
@@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
pname = "facter";
- version = "3.14.11";
+ version = "3.14.12";
src = fetchFromGitHub {
- sha256 = "1x7m11bda86xkr8mncy50nga9q3gnvnklcvwwpa7frka99kgai26";
+ sha256 = "1n0m2w133bpbbpc1imp89xlinmny7xaz1w87cs18p1lnk2w043lc";
rev = version;
repo = pname;
owner = "puppetlabs";
diff --git a/pkgs/tools/text/fanficfare/default.nix b/pkgs/tools/text/fanficfare/default.nix
index 6fc27bdf00c..1dbe4514363 100644
--- a/pkgs/tools/text/fanficfare/default.nix
+++ b/pkgs/tools/text/fanficfare/default.nix
@@ -2,11 +2,11 @@
python3Packages.buildPythonApplication rec {
pname = "FanFicFare";
- version = "3.19.0";
+ version = "3.21.0";
src = python3Packages.fetchPypi {
inherit pname version;
- sha256 = "01cr4941sg6is6k6sajlbr6hs5s47aq9xhp7gadhq4h3x6dilj40";
+ sha256 = "16hklfbww6ibmjr32gg98nlnzl4dwanz6lm3fzg2x3vd7d54m92c";
};
propagatedBuildInputs = with python3Packages; [
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 58e44e8acea..1a926f1d2a1 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -990,6 +990,8 @@ in
gaia = callPackage ../development/libraries/gaia { };
+ gama = callPackage ../applications/science/geometry/gama { };
+
gamecube-tools = callPackage ../development/tools/gamecube-tools { };
gammy = qt5.callPackage ../tools/misc/gammy { };
@@ -6616,6 +6618,8 @@ in
inherit (darwin.apple_sdk.frameworks) Security;
};
+ sd-switch = callPackage ../os-specific/linux/sd-switch { };
+
sdate = callPackage ../tools/misc/sdate { };
sdcv = callPackage ../applications/misc/sdcv { };
@@ -7540,6 +7544,8 @@ in
inherit (xorg) libxkbfile;
};
+ wormhole-william = callPackage ../tools/networking/wormhole-william { };
+
wpscan = callPackage ../tools/security/wpscan { };
wsmancli = callPackage ../tools/system/wsmancli {};
@@ -13045,7 +13051,9 @@ in
libfido2 = callPackage ../development/libraries/libfido2 { };
- libfilezilla = callPackage ../development/libraries/libfilezilla { };
+ libfilezilla = callPackage ../development/libraries/libfilezilla {
+ inherit (darwin.apple_sdk.frameworks) ApplicationServices;
+ };
libfishsound = callPackage ../development/libraries/libfishsound { };
@@ -16870,6 +16878,8 @@ in
dropwatch = callPackage ../os-specific/linux/dropwatch { };
+ dsd = callPackage ../applications/radio/dsd { };
+
dstat = callPackage ../os-specific/linux/dstat { };
# unstable until the first 1.x release
@@ -16995,6 +17005,8 @@ in
irqbalance = callPackage ../os-specific/linux/irqbalance { };
+ itpp = callPackage ../development/libraries/science/math/itpp { };
+
iw = callPackage ../os-specific/linux/iw { };
iwd = callPackage ../os-specific/linux/iwd { };
@@ -17572,6 +17584,8 @@ in
enableCmdlib = true;
};
+ mbelib = callPackage ../development/libraries/audio/mbelib { };
+
mbpfan = callPackage ../os-specific/linux/mbpfan { };
mdadm = mdadm4;
@@ -18030,6 +18044,8 @@ in
### DATA
+ _3270font = callPackage ../data/fonts/3270font { };
+
adapta-backgrounds = callPackage ../data/misc/adapta-backgrounds { };
adapta-gtk-theme = callPackage ../data/themes/adapta { };
@@ -18091,6 +18107,8 @@ in
bakoma_ttf = callPackage ../data/fonts/bakoma-ttf { };
+ barlow = callPackage ../data/fonts/barlow { };
+
bgnet = callPackage ../data/documentation/bgnet { };
bibata-cursors = callPackage ../data/icons/bibata-cursors { };
@@ -20589,7 +20607,7 @@ in
inherit (nodePackages) imapnotify;
- img2pdf = callPackage ../applications/misc/img2pdf { };
+ img2pdf = with python3Packages; toPythonApplication img2pdf;
imgcat = callPackage ../applications/graphics/imgcat { };
@@ -20716,7 +20734,7 @@ in
recurseIntoAttrs (makeOverridable mkApplications attrs);
inherit (kdeApplications)
- akonadi akregator ark bovo dolphin dragon elisa ffmpegthumbs filelight gwenview k3b
+ akonadi akregator ark bovo dolphin dragon elisa ffmpegthumbs filelight granatier gwenview k3b
kaddressbook kapptemplate kate kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog
keditbookmarks kfind kget kgpg khelpcenter kig kleopatra kmail kmix kmplot kolourpaint kompare konsole yakuake
kpkpass kitinerary kontact korganizer krdc krfb ksystemlog ktouch kwalletmanager marble minuet okular picmi spectacle;
@@ -20799,6 +20817,8 @@ in
kotatogram-desktop = qt5.callPackage ../applications/networking/instant-messengers/telegram/kotatogram-desktop { };
+ kpt = callPackage ../applications/networking/cluster/kpt { };
+
krita = libsForQt5.callPackage ../applications/graphics/krita {
openjpeg = openjpeg_1;
};
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 62e79e83d6c..ebf2585bfff 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -2433,6 +2433,8 @@ in {
impacket = callPackage ../development/python-modules/impacket { };
+ img2pdf = callPackage ../development/python-modules/img2pdf { };
+
jsonlines = callPackage ../development/python-modules/jsonlines { };
json-merge-patch = callPackage ../development/python-modules/json-merge-patch { };