diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 719f61203d22..d85ff2d08a57 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -219,9 +219,9 @@
# Podman, CRI-O modules and related
/nixos/modules/virtualisation/containers.nix @NixOS/podman @zowoq @adisbladis
/nixos/modules/virtualisation/cri-o.nix @NixOS/podman @zowoq @adisbladis
-/nixos/modules/virtualisation/podman.nix @NixOS/podman @zowoq @adisbladis
+/nixos/modules/virtualisation/podman @NixOS/podman @zowoq @adisbladis
/nixos/tests/cri-o.nix @NixOS/podman @zowoq @adisbladis
-/nixos/tests/podman.nix @NixOS/podman @zowoq @adisbladis
+/nixos/tests/podman @NixOS/podman @zowoq @adisbladis
# Docker tools
/pkgs/build-support/docker @roberth @utdemir
diff --git a/maintainers/scripts/pluginupdate.py b/maintainers/scripts/pluginupdate.py
index 2c2cb3b6dd36..f19cd8638e28 100644
--- a/maintainers/scripts/pluginupdate.py
+++ b/maintainers/scripts/pluginupdate.py
@@ -385,7 +385,7 @@ def check_results(
sys.exit(1)
def parse_plugin_line(line: str) -> PluginDesc:
- branch = "master"
+ branch = "HEAD"
alias = None
name, repo = line.split("/")
if " as " in repo:
diff --git a/nixos/modules/hardware/keyboard/zsa.nix b/nixos/modules/hardware/keyboard/zsa.nix
index 5cb09e5af499..bb69cfa0bf09 100644
--- a/nixos/modules/hardware/keyboard/zsa.nix
+++ b/nixos/modules/hardware/keyboard/zsa.nix
@@ -5,7 +5,6 @@ let
cfg = config.hardware.keyboard.zsa;
in
{
- # TODO: make group configurable like in https://github.com/NixOS/nixpkgs/blob/0b2b4b8c4e729535a61db56468809c5c2d3d175c/pkgs/tools/security/nitrokey-app/udev-rules.nix ?
options.hardware.keyboard.zsa = {
enable = mkOption {
type = types.bool;
@@ -14,7 +13,6 @@ in
Enables udev rules for keyboards from ZSA like the ErgoDox EZ, Planck EZ and Moonlander Mark I.
You need it when you want to flash a new configuration on the keyboard
or use their live training in the browser.
- Access to the keyboard is granted to users in the "plugdev" group.
You may want to install the wally-cli package.
'';
};
@@ -22,6 +20,5 @@ in
config = mkIf cfg.enable {
services.udev.packages = [ pkgs.zsa-udev-rules ];
- users.groups.plugdev = {};
};
}
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 8cb7c39005c5..c83a69233384 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -1192,8 +1192,7 @@
./virtualisation/kvmgt.nix
./virtualisation/openvswitch.nix
./virtualisation/parallels-guest.nix
- ./virtualisation/podman.nix
- ./virtualisation/podman-network-socket-ghostunnel.nix
+ ./virtualisation/podman/default.nix
./virtualisation/qemu-guest-agent.nix
./virtualisation/railcar.nix
./virtualisation/spice-usb-redirection.nix
diff --git a/nixos/modules/security/pam.nix b/nixos/modules/security/pam.nix
index 8ed7a721a3ef..0944b36c6d19 100644
--- a/nixos/modules/security/pam.nix
+++ b/nixos/modules/security/pam.nix
@@ -295,9 +295,14 @@ let
};
limits = mkOption {
+ default = [];
+ type = limitsType;
description = ''
Attribute set describing resource limits. Defaults to the
value of .
+ The meaning of the values is explained in
+ limits.conf5
+ .
'';
};
@@ -648,6 +653,51 @@ let
"${domain} ${type} ${item} ${toString value}\n")
limits);
+ limitsType = with lib.types; listOf (submodule ({ ... }: {
+ options = {
+ domain = mkOption {
+ description = "Username, groupname, or wildcard this limit applies to";
+ example = "@wheel";
+ type = str;
+ };
+
+ type = mkOption {
+ description = "Type of this limit";
+ type = enum [ "-" "hard" "soft" ];
+ default = "-";
+ };
+
+ item = mkOption {
+ description = "Item this limit applies to";
+ type = enum [
+ "core"
+ "data"
+ "fsize"
+ "memlock"
+ "nofile"
+ "rss"
+ "stack"
+ "cpu"
+ "nproc"
+ "as"
+ "maxlogins"
+ "maxsyslogins"
+ "priority"
+ "locks"
+ "sigpending"
+ "msgqueue"
+ "nice"
+ "rtprio"
+ ];
+ };
+
+ value = mkOption {
+ description = "Value of this limit";
+ type = oneOf [ str int ];
+ };
+ };
+ }));
+
motd = pkgs.writeText "motd" config.users.motd;
makePAMService = name: service:
@@ -669,6 +719,7 @@ in
security.pam.loginLimits = mkOption {
default = [];
+ type = limitsType;
example =
[ { domain = "ftp";
type = "hard";
@@ -688,7 +739,8 @@ in
domain, type,
item, and value
attribute. The syntax and semantics of these attributes
- must be that described in the limits.conf(5) man page.
+ must be that described in limits.conf
+ 5.
Note that these limits do not apply to systemd services,
whose limits can be changed via
diff --git a/nixos/modules/services/web-apps/dokuwiki.nix b/nixos/modules/services/web-apps/dokuwiki.nix
index fc0e23729b3c..9b9ae931f9a7 100644
--- a/nixos/modules/services/web-apps/dokuwiki.nix
+++ b/nixos/modules/services/web-apps/dokuwiki.nix
@@ -308,6 +308,9 @@ in
inherit user;
group = webserver.group;
+ # Not yet compatible with php 8 https://www.dokuwiki.org/requirements
+ # https://github.com/splitbrain/dokuwiki/issues/3545
+ phpPackage = pkgs.php74;
phpEnv = {
DOKUWIKI_LOCAL_CONFIG = "${dokuwikiLocalConfig hostName cfg}";
DOKUWIKI_PLUGINS_LOCAL_CONFIG = "${dokuwikiPluginsLocalConfig hostName cfg}";
@@ -446,5 +449,6 @@ in
meta.maintainers = with maintainers; [
_1000101
onny
+ dandellion
];
}
diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix
index 83654b88dbdc..1145831ee2ea 100644
--- a/nixos/modules/system/boot/networkd.nix
+++ b/nixos/modules/system/boot/networkd.nix
@@ -823,6 +823,16 @@ let
(assertValueOneOf "OnLink" boolValues)
];
+ sectionDHCPServerStaticLease = checkUnitConfig "DHCPServerStaticLease" [
+ (assertOnlyFields [
+ "MACAddress"
+ "Address"
+ ])
+ (assertHasField "MACAddress")
+ (assertHasField "Address")
+ (assertMacAddress "MACAddress")
+ ];
+
};
};
@@ -1163,6 +1173,25 @@ let
};
};
+ dhcpServerStaticLeaseOptions = {
+ options = {
+ dhcpServerStaticLeaseConfig = mkOption {
+ default = {};
+ example = { MACAddress = "65:43:4a:5b:d8:5f"; Address = "192.168.1.42"; };
+ type = types.addCheck (types.attrsOf unitOption) check.network.sectionDHCPServerStaticLease;
+ description = ''
+ Each attribute in this set specifies an option in the
+ [DHCPServerStaticLease] section of the unit. See
+ systemd.network
+ 5 for details.
+
+ Make sure to configure the corresponding client interface to use
+ ClientIdentifier=mac.
+ '';
+ };
+ };
+ };
+
networkOptions = commonNetworkOptions // {
linkConfig = mkOption {
@@ -1275,6 +1304,17 @@ let
'';
};
+ dhcpServerStaticLeases = mkOption {
+ default = [];
+ example = [ { MACAddress = "65:43:4a:5b:d8:5f"; Address = "192.168.1.42"; } ];
+ type = with types; listOf (submodule dhcpServerStaticLeaseOptions);
+ description = ''
+ A list of DHCPServerStaticLease sections to be added to the unit. See
+ systemd.network
+ 5 for details.
+ '';
+ };
+
ipv6Prefixes = mkOption {
default = [];
example = [ { AddressAutoconfiguration = true; OnLink = true; } ];
@@ -1646,6 +1686,10 @@ let
[IPv6Prefix]
${attrsToSection x.ipv6PrefixConfig}
'')
+ + flip concatMapStrings def.dhcpServerStaticLeases (x: ''
+ [DHCPServerStaticLease]
+ ${attrsToSection x.dhcpServerStaticLeaseConfig}
+ '')
+ def.extraConfig;
};
diff --git a/nixos/modules/virtualisation/podman.nix b/nixos/modules/virtualisation/podman/default.nix
similarity index 98%
rename from nixos/modules/virtualisation/podman.nix
rename to nixos/modules/virtualisation/podman/default.nix
index 385475c84a1a..94fd727a4b56 100644
--- a/nixos/modules/virtualisation/podman.nix
+++ b/nixos/modules/virtualisation/podman/default.nix
@@ -39,8 +39,8 @@ let
in
{
imports = [
- ./podman-dnsname.nix
- ./podman-network-socket.nix
+ ./dnsname.nix
+ ./network-socket.nix
(lib.mkRenamedOptionModule [ "virtualisation" "podman" "libpod" ] [ "virtualisation" "containers" "containersConf" ])
];
diff --git a/nixos/modules/virtualisation/podman-dnsname.nix b/nixos/modules/virtualisation/podman/dnsname.nix
similarity index 100%
rename from nixos/modules/virtualisation/podman-dnsname.nix
rename to nixos/modules/virtualisation/podman/dnsname.nix
diff --git a/nixos/modules/virtualisation/podman-network-socket-ghostunnel.nix b/nixos/modules/virtualisation/podman/network-socket-ghostunnel.nix
similarity index 100%
rename from nixos/modules/virtualisation/podman-network-socket-ghostunnel.nix
rename to nixos/modules/virtualisation/podman/network-socket-ghostunnel.nix
diff --git a/nixos/modules/virtualisation/podman-network-socket.nix b/nixos/modules/virtualisation/podman/network-socket.nix
similarity index 97%
rename from nixos/modules/virtualisation/podman-network-socket.nix
rename to nixos/modules/virtualisation/podman/network-socket.nix
index 1429164630b3..94d8da9d2b61 100644
--- a/nixos/modules/virtualisation/podman-network-socket.nix
+++ b/nixos/modules/virtualisation/podman/network-socket.nix
@@ -9,6 +9,10 @@ let
in
{
+ imports = [
+ ./network-socket-ghostunnel.nix
+ ];
+
options.virtualisation.podman.networkSocket = {
enable = mkOption {
type = types.bool;
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 63be67892017..06305460c6ac 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -369,9 +369,9 @@ in
plikd = handleTest ./plikd.nix {};
plotinus = handleTest ./plotinus.nix {};
podgrab = handleTest ./podgrab.nix {};
- podman = handleTestOn ["x86_64-linux"] ./podman.nix {};
- podman-dnsname = handleTestOn ["x86_64-linux"] ./podman-dnsname.nix {};
- podman-tls-ghostunnel = handleTestOn ["x86_64-linux"] ./podman-tls-ghostunnel.nix {};
+ podman = handleTestOn ["x86_64-linux"] ./podman/default.nix {};
+ podman-dnsname = handleTestOn ["x86_64-linux"] ./podman/dnsname.nix {};
+ podman-tls-ghostunnel = handleTestOn ["x86_64-linux"] ./podman/tls-ghostunnel.nix {};
pomerium = handleTestOn ["x86_64-linux"] ./pomerium.nix {};
postfix = handleTest ./postfix.nix {};
postfix-raise-smtpd-tls-security-level = handleTest ./postfix-raise-smtpd-tls-security-level.nix {};
@@ -454,6 +454,7 @@ in
systemd-journal = handleTest ./systemd-journal.nix {};
systemd-networkd = handleTest ./systemd-networkd.nix {};
systemd-networkd-dhcpserver = handleTest ./systemd-networkd-dhcpserver.nix {};
+ systemd-networkd-dhcpserver-static-leases = handleTest ./systemd-networkd-dhcpserver-static-leases.nix {};
systemd-networkd-ipv6-prefix-delegation = handleTest ./systemd-networkd-ipv6-prefix-delegation.nix {};
systemd-networkd-vrf = handleTest ./systemd-networkd-vrf.nix {};
systemd-nspawn = handleTest ./systemd-nspawn.nix {};
diff --git a/nixos/tests/os-prober.nix b/nixos/tests/os-prober.nix
index a7b955d44721..c1e29b0f68b4 100644
--- a/nixos/tests/os-prober.nix
+++ b/nixos/tests/os-prober.nix
@@ -53,12 +53,12 @@ let
};
# /etc/nixos/configuration.nix for the vm
configFile = pkgs.writeText "configuration.nix" ''
- {config, pkgs, ...}: ({
+ {config, pkgs, lib, ...}: ({
imports =
[ ./hardware-configuration.nix
];
- } // pkgs.lib.importJSON ${
+ } // lib.importJSON ${
pkgs.writeText "simpleConfig.json" (builtins.toJSON simpleConfig)
})
'';
@@ -114,7 +114,7 @@ in {
"${configFile}",
"/etc/nixos/configuration.nix",
)
- machine.succeed("nixos-rebuild boot >&2")
+ machine.succeed("nixos-rebuild boot --show-trace >&2")
machine.succeed("egrep 'menuentry.*debian' /boot/grub/grub.cfg")
'';
diff --git a/nixos/tests/podman.nix b/nixos/tests/podman/default.nix
similarity index 83%
rename from nixos/tests/podman.nix
rename to nixos/tests/podman/default.nix
index 6184561e6ddd..b52a7f060ad6 100644
--- a/nixos/tests/podman.nix
+++ b/nixos/tests/podman/default.nix
@@ -1,6 +1,6 @@
# This test runs podman and checks if simple container starts
-import ./make-test-python.nix (
+import ../make-test-python.nix (
{ pkgs, lib, ... }: {
name = "podman";
meta = {
@@ -48,7 +48,7 @@ import ./make-test-python.nix (
start_all()
with subtest("Run container as root with runc"):
- podman.succeed("tar cvf scratchimg.tar --files-from /dev/null && podman import scratchimg.tar scratchimg")
+ podman.succeed("tar cv --files-from /dev/null | podman import - scratchimg")
podman.succeed(
"podman run --runtime=runc -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10"
)
@@ -57,7 +57,7 @@ import ./make-test-python.nix (
podman.succeed("podman rm sleeping")
with subtest("Run container as root with crun"):
- podman.succeed("tar cvf scratchimg.tar --files-from /dev/null && podman import scratchimg.tar scratchimg")
+ podman.succeed("tar cv --files-from /dev/null | podman import - scratchimg")
podman.succeed(
"podman run --runtime=crun -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10"
)
@@ -66,7 +66,7 @@ import ./make-test-python.nix (
podman.succeed("podman rm sleeping")
with subtest("Run container as root with the default backend"):
- podman.succeed("tar cvf scratchimg.tar --files-from /dev/null && podman import scratchimg.tar scratchimg")
+ podman.succeed("tar cv --files-from /dev/null | podman import - scratchimg")
podman.succeed(
"podman run -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10"
)
@@ -78,7 +78,7 @@ import ./make-test-python.nix (
podman.succeed("loginctl enable-linger alice")
with subtest("Run container rootless with runc"):
- podman.succeed(su_cmd("tar cvf scratchimg.tar --files-from /dev/null && podman import scratchimg.tar scratchimg"))
+ podman.succeed(su_cmd("tar cv --files-from /dev/null | podman import - scratchimg"))
podman.succeed(
su_cmd(
"podman run --runtime=runc -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10"
@@ -89,7 +89,7 @@ import ./make-test-python.nix (
podman.succeed(su_cmd("podman rm sleeping"))
with subtest("Run container rootless with crun"):
- podman.succeed(su_cmd("tar cvf scratchimg.tar --files-from /dev/null && podman import scratchimg.tar scratchimg"))
+ podman.succeed(su_cmd("tar cv --files-from /dev/null | podman import - scratchimg"))
podman.succeed(
su_cmd(
"podman run --runtime=crun -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10"
@@ -100,7 +100,7 @@ import ./make-test-python.nix (
podman.succeed(su_cmd("podman rm sleeping"))
with subtest("Run container rootless with the default backend"):
- podman.succeed(su_cmd("tar cvf scratchimg.tar --files-from /dev/null && podman import scratchimg.tar scratchimg"))
+ podman.succeed(su_cmd("tar cv --files-from /dev/null | podman import - scratchimg"))
podman.succeed(
su_cmd(
"podman run -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10"
@@ -112,7 +112,7 @@ import ./make-test-python.nix (
with subtest("Run container with init"):
podman.succeed(
- "tar cvf busybox.tar -C ${pkgs.pkgsStatic.busybox} . && podman import busybox.tar busybox"
+ "tar cv -C ${pkgs.pkgsStatic.busybox} . | podman import - busybox"
)
pid = podman.succeed("podman run --rm busybox readlink /proc/self").strip()
assert pid == "1"
@@ -124,7 +124,7 @@ import ./make-test-python.nix (
with subtest("Run container via docker cli"):
podman.succeed("docker network create default")
- podman.succeed("tar cvf scratchimg.tar --files-from /dev/null && podman import scratchimg.tar scratchimg")
+ podman.succeed("tar cv --files-from /dev/null | podman import - scratchimg")
podman.succeed(
"docker run -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10"
)
diff --git a/nixos/tests/podman-dnsname.nix b/nixos/tests/podman/dnsname.nix
similarity index 89%
rename from nixos/tests/podman-dnsname.nix
rename to nixos/tests/podman/dnsname.nix
index 9e4e8fdb08a2..3768ae79e067 100644
--- a/nixos/tests/podman-dnsname.nix
+++ b/nixos/tests/podman/dnsname.nix
@@ -1,4 +1,4 @@
-import ./make-test-python.nix (
+import ../make-test-python.nix (
{ pkgs, lib, ... }:
let
inherit (pkgs) writeTextDir python3 curl;
@@ -21,7 +21,7 @@ import ./make-test-python.nix (
podman.wait_for_unit("sockets.target")
with subtest("DNS works"): # also tests inter-container tcp routing
- podman.succeed("tar cvf scratchimg.tar --files-from /dev/null && podman import scratchimg.tar scratchimg")
+ podman.succeed("tar cv --files-from /dev/null | podman import - scratchimg")
podman.succeed(
"podman run -d --name=webserver -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin -w ${webroot} scratchimg ${python3}/bin/python -m http.server 8000"
)
diff --git a/nixos/tests/podman-tls-ghostunnel.nix b/nixos/tests/podman/tls-ghostunnel.nix
similarity index 97%
rename from nixos/tests/podman-tls-ghostunnel.nix
rename to nixos/tests/podman/tls-ghostunnel.nix
index b5836c436497..c0bc47cc40b1 100644
--- a/nixos/tests/podman-tls-ghostunnel.nix
+++ b/nixos/tests/podman/tls-ghostunnel.nix
@@ -1,7 +1,7 @@
/*
This test runs podman as a backend for the Docker CLI.
*/
-import ./make-test-python.nix (
+import ../make-test-python.nix (
{ pkgs, lib, ... }:
let gen-ca = pkgs.writeScript "gen-ca" ''
@@ -126,7 +126,7 @@ import ./make-test-python.nix (
client.succeed("docker version")
# via socket would be nicer
- podman.succeed("tar cvf scratchimg.tar --files-from /dev/null && podman import scratchimg.tar scratchimg")
+ podman.succeed("tar cv --files-from /dev/null | podman import - scratchimg")
client.succeed(
"docker run -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10"
diff --git a/nixos/tests/systemd-networkd-dhcpserver-static-leases.nix b/nixos/tests/systemd-networkd-dhcpserver-static-leases.nix
new file mode 100644
index 000000000000..a8254a158016
--- /dev/null
+++ b/nixos/tests/systemd-networkd-dhcpserver-static-leases.nix
@@ -0,0 +1,81 @@
+# In contrast to systemd-networkd-dhcpserver, this test configures
+# the router with a static DHCP lease for the client's MAC address.
+import ./make-test-python.nix ({ lib, ... }: {
+ name = "systemd-networkd-dhcpserver-static-leases";
+ meta = with lib.maintainers; {
+ maintainers = [ veehaitch tomfitzhenry ];
+ };
+ nodes = {
+ router = {
+ virtualisation.vlans = [ 1 ];
+ systemd.services.systemd-networkd.environment.SYSTEMD_LOG_LEVEL = "debug";
+ networking = {
+ useNetworkd = true;
+ useDHCP = false;
+ firewall.enable = false;
+ };
+ systemd.network = {
+ networks = {
+ # systemd-networkd will load the first network unit file
+ # that matches, ordered lexiographically by filename.
+ # /etc/systemd/network/{40-eth1,99-main}.network already
+ # exists. This network unit must be loaded for the test,
+ # however, hence why this network is named such.
+ "01-eth1" = {
+ name = "eth1";
+ networkConfig = {
+ DHCPServer = true;
+ Address = "10.0.0.1/24";
+ };
+ dhcpServerStaticLeases = [{
+ dhcpServerStaticLeaseConfig = {
+ MACAddress = "02:de:ad:be:ef:01";
+ Address = "10.0.0.10";
+ };
+ }];
+ };
+ };
+ };
+ };
+
+ client = {
+ virtualisation.vlans = [ 1 ];
+ systemd.services.systemd-networkd.environment.SYSTEMD_LOG_LEVEL = "debug";
+ networking = {
+ useNetworkd = true;
+ useDHCP = false;
+ firewall.enable = false;
+ interfaces.eth1 = {
+ useDHCP = true;
+ macAddress = "02:de:ad:be:ef:01";
+ };
+ };
+
+ # This setting is important to have the router assign the
+ # configured lease based on the client's MAC address. Also see:
+ # https://github.com/systemd/systemd/issues/21368#issuecomment-982193546
+ systemd.network.networks."40-eth1".dhcpV4Config.ClientIdentifier = "mac";
+ };
+ };
+ testScript = ''
+ start_all()
+
+ with subtest("check router network configuration"):
+ router.wait_for_unit("systemd-networkd-wait-online.service")
+ eth1_status = router.succeed("networkctl status eth1")
+ assert "Network File: /etc/systemd/network/01-eth1.network" in eth1_status, \
+ "The router interface eth1 is not using the expected network file"
+ assert "10.0.0.1" in eth1_status, "Did not find expected router IPv4"
+
+ with subtest("check client network configuration"):
+ client.wait_for_unit("systemd-networkd-wait-online.service")
+ eth1_status = client.succeed("networkctl status eth1")
+ assert "Network File: /etc/systemd/network/40-eth1.network" in eth1_status, \
+ "The client interface eth1 is not using the expected network file"
+ assert "10.0.0.10" in eth1_status, "Did not find expected client IPv4"
+
+ with subtest("router and client can reach each other"):
+ client.wait_until_succeeds("ping -c 5 10.0.0.1")
+ router.wait_until_succeeds("ping -c 5 10.0.0.10")
+ '';
+})
diff --git a/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix b/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix
index aa3ed2c8b3d2..a071b36abf0a 100644
--- a/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix
+++ b/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix
@@ -6,11 +6,11 @@
stdenv.mkDerivation rec {
pname = "bitwig-studio";
- version = "4.1";
+ version = "4.1.1";
src = fetchurl {
url = "https://downloads.bitwig.com/stable/${version}/${pname}-${version}.deb";
- sha256 = "sha256-h6TNlfKgN7CPhtY8DxESrydtEsdVPT+Uf+VKcqKVuXw=";
+ sha256 = "sha256-bhd3Ij4y1r5pHrpQkbHuMTNl8Z3w0HsbCkr1C0CVFvQ=";
};
nativeBuildInputs = [ dpkg makeWrapper wrapGAppsHook ];
diff --git a/pkgs/applications/audio/gnome-podcasts/default.nix b/pkgs/applications/audio/gnome-podcasts/default.nix
index a053dda46a3b..b91e861c5d5a 100644
--- a/pkgs/applications/audio/gnome-podcasts/default.nix
+++ b/pkgs/applications/audio/gnome-podcasts/default.nix
@@ -21,20 +21,20 @@
stdenv.mkDerivation rec {
pname = "gnome-podcasts";
- version = "0.4.9";
+ version = "0.5.0";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = "podcasts";
rev = version;
- sha256 = "1ah59ac3xm3sqai8zhil8ar30pviw83cm8in1n4id77rv24xkvgm";
+ hash = "sha256-Jk++/QrQt/fjOz2OaEIr1Imq2DmqTjcormCebjO4/Kk=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
- sha256 = "1iihpfvkli09ysn46cnif53xizkwzk0m91bljmlzsygp3ip5i5yw";
+ hash = "sha256-jlXpeVabc1h2GU1j9Ff6GZJec+JgFyOdJzsOtdkrEWI=";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/audio/linuxband/default.nix b/pkgs/applications/audio/linuxband/default.nix
deleted file mode 100644
index ec034ae238de..000000000000
--- a/pkgs/applications/audio/linuxband/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ lib, stdenv, fetchurl, makeWrapper, pkg-config, MMA, libjack2, libsmf, python2Packages }:
-
-let
- inherit (python2Packages) pyGtkGlade pygtksourceview python;
-in stdenv.mkDerivation rec {
- version = "12.02.1";
- pname = "linuxband";
-
- src = fetchurl {
- url = "https://linuxband.org/assets/sources/${pname}-${version}.tar.gz";
- sha256 = "1r71h4yg775m4gax4irrvygmrsclgn503ykmc2qwjsxa42ri4n2n";
- };
-
- nativeBuildInputs = [ pkg-config makeWrapper ];
- buildInputs = [ MMA libjack2 libsmf python pyGtkGlade pygtksourceview ];
-
- patchPhase = ''
- sed -i 's@/usr/@${MMA}/@g' src/main/config/linuxband.rc.in
- cat src/main/config/linuxband.rc.in
- '';
-
- postFixup = ''
- PYTHONPATH=$pyGtkGlade/share/:pygtksourceview/share/:$PYTHONPATH
- for f in $out/bin/*; do
- wrapProgram $f \
- --prefix PYTHONPATH : $PYTHONPATH
- done
- '';
-
- meta = {
- description = "A GUI front-end for MMA: Type in the chords, choose the groove and it will play an accompaniment";
- homepage = "https://linuxband.org/";
- license = lib.licenses.gpl2;
- maintainers = [ lib.maintainers.magnetophon ];
- platforms = lib.platforms.linux;
- };
-}
diff --git a/pkgs/applications/audio/mpc/default.nix b/pkgs/applications/audio/mpc/default.nix
index e4ecc9202476..0511367db3b8 100644
--- a/pkgs/applications/audio/mpc/default.nix
+++ b/pkgs/applications/audio/mpc/default.nix
@@ -11,13 +11,13 @@
stdenv.mkDerivation rec {
pname = "mpc";
- version = "0.33";
+ version = "0.34";
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "mpc";
rev = "v${version}";
- sha256 = "1qbi0i9cq54rj8z2kapk8x8g1jkw2jz781niwb9i7kw4xfhvy5zx";
+ sha256 = "sha256-2FjYBfak0IjibuU+CNQ0y9Ei8hTZhynS/BK2DNerhVw=";
};
buildInputs = [ libmpdclient ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
diff --git a/pkgs/applications/audio/ncmpc/default.nix b/pkgs/applications/audio/ncmpc/default.nix
index e397534d126c..67c4efc04be3 100644
--- a/pkgs/applications/audio/ncmpc/default.nix
+++ b/pkgs/applications/audio/ncmpc/default.nix
@@ -18,13 +18,13 @@ assert pcreSupport -> pcre != null;
stdenv.mkDerivation rec {
pname = "ncmpc";
- version = "0.45";
+ version = "0.46";
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "ncmpc";
rev = "v${version}";
- sha256 = "sha256-KDSHbEZ2PJLEIlXqPvBQ2ZPWno+IoajTjkl9faAXIko=";
+ sha256 = "sha256-FyuN0jkHaJLXqcVbW+OggHkNBjmqH7bS7W/QXUoDjJk=";
};
buildInputs = [ glib ncurses libmpdclient boost ]
diff --git a/pkgs/applications/editors/emacs/macport.nix b/pkgs/applications/editors/emacs/macport.nix
index 8c395219aeb3..867f7214d318 100644
--- a/pkgs/applications/editors/emacs/macport.nix
+++ b/pkgs/applications/editors/emacs/macport.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
version = "27.2";
emacsName = "emacs-${version}";
- macportVersion = "8.2";
+ macportVersion = "8.3";
name = "emacs-mac-${version}-${macportVersion}";
src = fetchurl {
@@ -18,7 +18,8 @@ stdenv.mkDerivation rec {
macportSrc = fetchurl {
url = "ftp://ftp.math.s.chiba-u.ac.jp/emacs/${emacsName}-mac-${macportVersion}.tar.gz";
- sha256 = "1bgm2g3ky7rkj1l27wnmyzqsqxzjng7y9bf72ym37wiyhyi2a9za";
+ sha256 = "0q4lbk3nb8rz1ibmf23plgsh8sx2wvhry5bf5mivgz4m4b6s2yij";
+ name = "${emacsName}-mac-${macportVersion}.tar.xz"; # It's actually compressed with xz, not gz
};
hiresSrc = fetchurl {
@@ -37,11 +38,11 @@ stdenv.mkDerivation rec {
postUnpack = ''
mv $sourceRoot $name
- tar xzf $macportSrc -C $name --strip-components=1
+ tar xf $macportSrc -C $name --strip-components=1
mv $name $sourceRoot
# extract retina image resources
- tar xzfv $hiresSrc --strip 1 -C $sourceRoot
+ tar xfv $hiresSrc --strip 1 -C $sourceRoot
'';
postPatch = ''
diff --git a/pkgs/applications/editors/vscode/generic.nix b/pkgs/applications/editors/vscode/generic.nix
index 8924b669c4a8..f2c262ece95d 100644
--- a/pkgs/applications/editors/vscode/generic.nix
+++ b/pkgs/applications/editors/vscode/generic.nix
@@ -118,7 +118,7 @@ let
packed="resources/app/node_modules.asar"
unpacked="resources/app/node_modules"
${nodePackages.asar}/bin/asar extract "$packed" "$unpacked"
- substituteInPlace $unpacked/sudo-prompt/index.js \
+ substituteInPlace $unpacked/@vscode/sudo-prompt/index.js \
--replace "/usr/bin/pkexec" "/run/wrappers/bin/pkexec" \
--replace "/bin/bash" "${bash}/bin/bash"
rm -rf "$packed"
diff --git a/pkgs/applications/editors/vscode/vscode.nix b/pkgs/applications/editors/vscode/vscode.nix
index 082979605f7b..fd56434e7b04 100644
--- a/pkgs/applications/editors/vscode/vscode.nix
+++ b/pkgs/applications/editors/vscode/vscode.nix
@@ -14,17 +14,17 @@ let
archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz";
sha256 = {
- x86_64-linux = "0wf8bmzag49n81kjb46kj2nkksimm8f7cf4ihpqcw8k5iwasn3j9";
- x86_64-darwin = "1s7i5087bvckg66mcb32krv12vxhaw7ii9vm3i6p72wr0sv7dddh";
- aarch64-linux = "0yzh5javinvas3zz0lliyc77vbcs1jrmxbkr7nic4snscg6wjhcd";
- aarch64-darwin = "13l6ymz7v18s7ikxbwvkwb0f5ff2j82j5pfj04yy75kq9b5gh0vx";
- armv7l-linux = "129wffj9cidk9ysjpq3p0ddn6liwkmrkxhxgz7bqzj8sdhwyq8pz";
+ x86_64-linux = "1w28rmb9fi45s85rrlzzh6r826dnyisd6lh3j8ir4hx6d34cawsf";
+ x86_64-darwin = "1fyg3ygqk0z3jcj5bskgprlq8k9j134y75xq06z4xbv1dhgwhswj";
+ aarch64-linux = "0hha9ksbj51zmq0p3d1fwni4jd0yp0wab0w19carmbhnydhrgh22";
+ aarch64-darwin = "1cmrh621z7ddl4qh95hm0nwzazshl71a43c6113jf4w6b1kvy5m5";
+ armv7l-linux = "1kipvqc5hrpgsfw7x2ab5jydf7zksdd3q8qr2mg20kjsdi4skwy4";
}.${system};
in
callPackage ./generic.nix rec {
# Please backport all compatible updates to the stable release.
# This is important for the extension ecosystem.
- version = "1.62.3";
+ version = "1.63.0";
pname = "vscode";
executableName = "code" + lib.optionalString isInsiders "-insiders";
diff --git a/pkgs/applications/editors/vscode/vscodium.nix b/pkgs/applications/editors/vscode/vscodium.nix
index 75ac5f160eae..4b795fceba2d 100644
--- a/pkgs/applications/editors/vscode/vscodium.nix
+++ b/pkgs/applications/editors/vscode/vscodium.nix
@@ -13,10 +13,10 @@ let
archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz";
sha256 = {
- x86_64-linux = "0g1c88i0nkg4hys00vhqp0i2n3kjl395fd2rimi2p49y042b5c9g";
- x86_64-darwin = "1521aqrv9zx2r5cy8h2011iz3v5lvayizlgv8j7j8qi272mmvx5k";
- aarch64-linux = "1kk0jrhqx6q325zmfg553pqmk6v9cx3a99bsh9rzvdlca94nmpj0";
- armv7l-linux = "08hy61a9pp18b1x7lnsc7b9y3bvnjmavazz7qkhp5qxl2gs802wm";
+ x86_64-linux = "17kck7pkklhifm6hpsd93wmnyk06vi9sa55gp62m3diymp1b129z";
+ x86_64-darwin = "1japc6yyvw07rll53pf2jfg89m2g9jqj5daghg10v1gqk98j7r3x";
+ aarch64-linux = "0zg05q0hyldnw5g8b9zdf0ls4s07fixib7v830wa5dyi2sjcv149";
+ armv7l-linux = "0mky66cyxhx3cfm35sa4vlwh8m1878rc80jml9mqxdhlrpnxgdiy";
}.${system};
sourceRoot = {
@@ -31,7 +31,7 @@ in
# Please backport all compatible updates to the stable release.
# This is important for the extension ecosystem.
- version = "1.62.3";
+ version = "1.63.0";
pname = "vscodium";
executableName = "codium";
diff --git a/pkgs/applications/editors/your-editor/default.nix b/pkgs/applications/editors/your-editor/default.nix
index dd3bde160c37..4fd6ca0ad864 100644
--- a/pkgs/applications/editors/your-editor/default.nix
+++ b/pkgs/applications/editors/your-editor/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "your-editor";
- version = "1206";
+ version = "1303";
src = fetchFromGitHub {
- owner = "kammerdienerb";
+ owner = "your-editor";
repo = "yed";
- rev = "6cdd99fe1359899b26d8967bd376fd5caa5451eb";
- sha256 = "0XECSolW/xPXd1v3sv9HbJMWuHGnwCOwmHoPNCUsE+w=";
+ rev = version;
+ sha256 = "BWy/icQs8hVtNeM/mCi6LOah1UG0elU/DgCmfaIPD64=";
};
installPhase = ''
@@ -21,8 +21,9 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Your-editor (yed) is a small and simple terminal editor core that is meant to be extended through a powerful plugin architecture";
homepage = "https://your-editor.org/";
+ changelog = "https://github.com/your-editor/yed/blob/${version}/CHANGELOG.md";
license = with licenses; [ mit ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = with maintainers; [ uniquepointer ];
mainProgram = "yed";
};
diff --git a/pkgs/applications/misc/hugo/default.nix b/pkgs/applications/misc/hugo/default.nix
index 67bbd2b947eb..4b4a31b601fc 100644
--- a/pkgs/applications/misc/hugo/default.nix
+++ b/pkgs/applications/misc/hugo/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "hugo";
- version = "0.89.4";
+ version = "0.90.0";
src = fetchFromGitHub {
owner = "gohugoio";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-yXOe+SCMvr3xi0kd2AuWm1CzzBuODCED6p7kaWGXvpM=";
+ sha256 = "sha256-1qa7RHSkwQLMJr0l3JtdcHQsmSiKlRjF5ETSVhpo4jY=";
};
- vendorSha256 = "sha256-NqWi9n8H5IeMmkBwTX3HN1RLLtWA5sM1iy1L2BZCH7M=";
+ vendorSha256 = "sha256-hRebd50RQ0JZGDf5zJX21UTjq5JwvPWWF/KA6/7JxVw=";
doCheck = false;
diff --git a/pkgs/applications/networking/cluster/driftctl/default.nix b/pkgs/applications/networking/cluster/driftctl/default.nix
index c42fb87d8079..212f15329213 100644
--- a/pkgs/applications/networking/cluster/driftctl/default.nix
+++ b/pkgs/applications/networking/cluster/driftctl/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "driftctl";
- version = "0.15.0";
+ version = "0.17";
src = fetchFromGitHub {
owner = "cloudskiff";
repo = "driftctl";
rev = "v${version}";
- sha256 = "sha256-rWC4jqquVWJmHV/dnH+DsxlNiAY01xnq9z0/owS4Yis=";
+ sha256 = "sha256-JloeRoW+1tepSJzhcOQu38TDQfY10NtG2EyeVhP26BQ=";
};
- vendorSha256 = "sha256-d8vASP8KnUeUkaHRU8kCE7FCt2QLGu5ET5BN3GM2O9c=";
+ vendorSha256 = "sha256-aaJ5fpS+BiVq1K8OxN+/CBD96wy3flGDhch8O2ACIh8=";
postUnpack = ''
# Without this, tests fail to locate aws/3.19.0.json
diff --git a/pkgs/applications/networking/cluster/kube3d/default.nix b/pkgs/applications/networking/cluster/kube3d/default.nix
index 86fcb2c72229..861fa2eb97ef 100644
--- a/pkgs/applications/networking/cluster/kube3d/default.nix
+++ b/pkgs/applications/networking/cluster/kube3d/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "kube3d";
- version = "5.2.0";
+ version = "5.2.1";
src = fetchFromGitHub {
owner = "rancher";
repo = "k3d";
rev = "v${version}";
- sha256 = "sha256-xtYoyA5tcCjNbDysZn5yFQtMKLIu6DOHKH5vDMDCrZQ=";
+ sha256 = "sha256-rKiOPpRupoCRtGJ3DVBUY9483EEBxaaECZRdWiyxaEk=";
};
vendorSha256 = null;
diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix
index 036ee7d8243f..0d2ebc6bdba4 100644
--- a/pkgs/applications/networking/cluster/terraform/default.nix
+++ b/pkgs/applications/networking/cluster/terraform/default.nix
@@ -27,6 +27,8 @@ let
inherit sha256;
};
+ ldflags = [ "-s" "-w" ];
+
postConfigure = ''
# speakeasy hardcodes /bin/stty https://github.com/bgentry/speakeasy/issues/22
substituteInPlace vendor/github.com/bgentry/speakeasy/speakeasy_unix.go \
diff --git a/pkgs/applications/networking/instant-messengers/element/element-desktop-package.json b/pkgs/applications/networking/instant-messengers/element/element-desktop-package.json
index d00efd5ac872..c958137ab9f8 100644
--- a/pkgs/applications/networking/instant-messengers/element/element-desktop-package.json
+++ b/pkgs/applications/networking/instant-messengers/element/element-desktop-package.json
@@ -2,7 +2,7 @@
"name": "element-desktop",
"productName": "Element",
"main": "lib/electron-main.js",
- "version": "1.9.5",
+ "version": "1.9.6",
"description": "A feature-rich client for Matrix.org",
"author": "Element",
"repository": {
@@ -54,7 +54,7 @@
"@types/minimist": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
- "allchange": "^1.0.5",
+ "allchange": "^1.0.6",
"asar": "^2.0.1",
"chokidar": "^3.5.2",
"electron": "13.5",
diff --git a/pkgs/applications/networking/instant-messengers/element/pin.json b/pkgs/applications/networking/instant-messengers/element/pin.json
index 7697c0d5b9a4..599f0a1754cf 100644
--- a/pkgs/applications/networking/instant-messengers/element/pin.json
+++ b/pkgs/applications/networking/instant-messengers/element/pin.json
@@ -1,6 +1,6 @@
{
- "version": "1.9.5",
- "desktopSrcHash": "8x3TBu0zSNEVWp+ULydule8bPSd01pMkCZHdJbQf82U=",
- "desktopYarnHash": "0axz0d5qryd0k89lrziah1r6j1154c1cibf1qsjk1azlri3k4298",
- "webHash": "04pabvvb3l88gp866fkbjngl9r20s300pvw7qykynl0ps8fjms0l"
+ "version": "1.9.6",
+ "desktopSrcHash": "AJLKp9VbNF0XvcQe6t0/pw1hiVCgRiRb27KJooQ2NlQ=",
+ "desktopYarnHash": "1xa8vrqj3g3hfhzrk8m7yr57my9ipyyhw8vsx4m86v8i1iqrpmnm",
+ "webHash": "161w6i122i81jyb23mpxlf7k5wx2v4c6ai2liywn89q74hj3axr5"
}
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/packages.nix b/pkgs/applications/networking/mailreaders/thunderbird/packages.nix
index c1b5c755f3b5..8f16523512bd 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird/packages.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird/packages.nix
@@ -10,12 +10,12 @@ in
rec {
thunderbird = common rec {
pname = "thunderbird";
- version = "91.3.2";
+ version = "91.4.0";
application = "comm/mail";
binaryName = pname;
src = fetchurl {
url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz";
- sha512 = "954be27795935e494d27d57da99b49ff61db8a2b26fa8e159a30d6c272033b015790735b40129d7de94f861af23cf748f88a7a45df3861f753d6e15d28fb366c";
+ sha512 = "f19eba17b8018d11358258f6c9fbe4b2d20858f5afdf82ad5a81de5f6191f833ecf01ee4631297b0880dfa8b76baa1f9cd09a976cab2d2206ca5a902283fa102";
};
patches = [
# The file to be patched is different from firefox's `no-buildconfig-ffx90.patch`.
diff --git a/pkgs/applications/networking/p2p/torrential/default.nix b/pkgs/applications/networking/p2p/torrential/default.nix
index 1954ebe543da..50dd38d8d246 100644
--- a/pkgs/applications/networking/p2p/torrential/default.nix
+++ b/pkgs/applications/networking/p2p/torrential/default.nix
@@ -25,13 +25,13 @@
stdenv.mkDerivation rec {
pname = "torrential";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchFromGitHub {
owner = "davidmhewitt";
repo = "torrential";
rev = version;
- sha256 = "sha256-78eNIz7Lgeq4LTog04TMNuL27Gv0UZ0poBaw8ia1R/g=";
+ sha256 = "sha256-W9Is6l8y5XSlPER2BLlf+cyMPPdEQuaP4xM59VhfDE0=";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/science/logic/coq/default.nix b/pkgs/applications/science/logic/coq/default.nix
index 02082663516e..12c455d2fc0a 100644
--- a/pkgs/applications/science/logic/coq/default.nix
+++ b/pkgs/applications/science/logic/coq/default.nix
@@ -46,6 +46,7 @@ let
"8.13.2".sha256 = "1884vbmwmqwn9ngibax6dhnqh4cc02l0s2ajc6jb1xgr0i60whjk";
"8.14.0".sha256 = "04y2z0qyvag66zanfyc3f9agvmzbn4lsr0p1l7ck6yjhqx7vbm17";
"8.14.1".sha256 = "0sx78pgx0qw8v7v2r32zzy3l161zipzq95iacda628girim7psnl";
+ "8.15+rc1".sha256 = "sha256:0v9vnx5z2mbsmhdx08rpg0n8jn0d82mimpghn55vkwsscxmcrgnm";
};
releaseRev = v: "V${v}";
fetched = import ../../../../build-support/coq/meta-fetch/default.nix
diff --git a/pkgs/applications/science/logic/proverif/default.nix b/pkgs/applications/science/logic/proverif/default.nix
index fbc9eb2d8a15..b6d15162fec3 100644
--- a/pkgs/applications/science/logic/proverif/default.nix
+++ b/pkgs/applications/science/logic/proverif/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "proverif";
- version = "2.03";
+ version = "2.04";
src = fetchurl {
url = "https://bblanche.gitlabpages.inria.fr/proverif/proverif${version}.tar.gz";
- sha256 = "sha256:1q5mp9il09jylimcaqczb3kh34gb5px88js127gxv0jj5b4bqfc7";
+ sha256 = "sha256:0xgwnp59779xc40sb7ck8rmfn620pilxyq79l3bymj9m7z0mwvm9";
};
buildInputs = with ocamlPackages; [ ocaml findlib ];
diff --git a/pkgs/applications/version-management/gitlab/gitaly/default.nix b/pkgs/applications/version-management/gitlab/gitaly/default.nix
index 8db31b58b21e..b4eceb190446 100644
--- a/pkgs/applications/version-management/gitlab/gitaly/default.nix
+++ b/pkgs/applications/version-management/gitlab/gitaly/default.nix
@@ -72,7 +72,7 @@ buildGoModule {
meta = with lib; {
homepage = "https://gitlab.com/gitlab-org/gitaly";
description = "A Git RPC service for handling all the git calls made by GitLab";
- platforms = platforms.linux;
+ platforms = platforms.linux ++ [ "x86_64-darwin" ];
maintainers = with maintainers; [ roblabla globin fpletz talyz ];
license = licenses.mit;
};
diff --git a/pkgs/applications/video/obs-studio/plugins/obs-nvfbc.nix b/pkgs/applications/video/obs-studio/plugins/obs-nvfbc.nix
index e64031ce7bbe..50abb96bac59 100644
--- a/pkgs/applications/video/obs-studio/plugins/obs-nvfbc.nix
+++ b/pkgs/applications/video/obs-studio/plugins/obs-nvfbc.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
pname = "obs-nvfbc";
- version = "0.0.3";
+ version = "0.0.4";
src = fetchFromGitLab {
owner = "fzwoch";
repo = "obs-nvfbc";
rev = "v${version}";
- sha256 = "0zyvks6gc6fr0a1j5b4y20rcx6ah35v6yiz05f6g3x6bhqi92l33";
+ sha256 = "sha256-U/zma1BrOTRAJAYMOcmaeL0UqF3ihysDwceyeW1r0b8=";
};
nativeBuildInputs = [ meson pkg-config ninja ];
diff --git a/pkgs/applications/virtualization/podman/default.nix b/pkgs/applications/virtualization/podman/default.nix
index 235578b965c2..0dad4d9123dc 100644
--- a/pkgs/applications/virtualization/podman/default.nix
+++ b/pkgs/applications/virtualization/podman/default.nix
@@ -17,13 +17,13 @@
buildGoModule rec {
pname = "podman";
- version = "3.4.3";
+ version = "3.4.4";
src = fetchFromGitHub {
owner = "containers";
repo = "podman";
rev = "v${version}";
- sha256 = "sha256-SZHonZdUTJisFMjvUBst1HErvKWEcYZYhK++G+S4sEg=";
+ sha256 = "sha256-5Y0+xfoMCe3a6kX+OhmxURZXZLAnrS1t8TFyHqjGCeA=";
};
vendorSha256 = null;
diff --git a/pkgs/data/fonts/fira-code/default.nix b/pkgs/data/fonts/fira-code/default.nix
index f69cd8990565..8bdc411a7eb3 100644
--- a/pkgs/data/fonts/fira-code/default.nix
+++ b/pkgs/data/fonts/fira-code/default.nix
@@ -1,7 +1,7 @@
{ lib, fetchzip }:
let
- version = "6";
+ version = "6.2";
in fetchzip {
name = "fira-code-${version}";
@@ -13,7 +13,7 @@ in fetchzip {
unzip -j $downloadedFile '*-VF.ttf' -d $out/share/fonts/truetype
'';
- sha256 = "h2Q63rT26SxXeZ76CRCcFg+NfDAc0IgYaYD2ok09Jh4=";
+ sha256 = "0l02ivxz3jbk0rhgaq83cqarqxr07xgp7n27l0fh8fbgxwi52djl";
meta = with lib; {
homepage = "https://github.com/tonsky/FiraCode";
diff --git a/pkgs/data/icons/numix-icon-theme-square/default.nix b/pkgs/data/icons/numix-icon-theme-square/default.nix
index 9c7b1786a6e6..d8d22f867cab 100644
--- a/pkgs/data/icons/numix-icon-theme-square/default.nix
+++ b/pkgs/data/icons/numix-icon-theme-square/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "numix-icon-theme-square";
- version = "21.04.14";
+ version = "21.11.29";
src = fetchFromGitHub {
owner = "numixproject";
repo = pname;
rev = version;
- sha256 = "0ndxjp173dwz78m41mn818mh4bdsxa2ypv4wrwicx0v4d8z90ddj";
+ sha256 = "sha256-3zZ/LpjYhYOHPpgRysGYXFLvYux5GgurItuYm7zAZ2M=";
};
nativeBuildInputs = [ gtk3 ];
diff --git a/pkgs/development/coq-modules/StructTact/default.nix b/pkgs/development/coq-modules/StructTact/default.nix
index 08976c689893..965a13eadfb9 100644
--- a/pkgs/development/coq-modules/StructTact/default.nix
+++ b/pkgs/development/coq-modules/StructTact/default.nix
@@ -5,7 +5,7 @@ with lib; mkCoqDerivation {
owner = "uwplse";
inherit version;
defaultVersion = with versions; switch coq.coq-version [
- { case = range "8.6" "8.14"; out = "20210328"; }
+ { case = range "8.6" "8.15"; out = "20210328"; }
{ case = range "8.5" "8.13"; out = "20181102"; }
] null;
release."20210328".rev = "179bd5312e9d8b63fc3f4071c628cddfc496d741";
diff --git a/pkgs/development/coq-modules/bignums/default.nix b/pkgs/development/coq-modules/bignums/default.nix
index cb83a9fdc339..0001ae1ded4d 100644
--- a/pkgs/development/coq-modules/bignums/default.nix
+++ b/pkgs/development/coq-modules/bignums/default.nix
@@ -8,6 +8,7 @@ with lib; mkCoqDerivation {
defaultVersion = if versions.isGe "8.5" coq.coq-version
then "${coq.coq-version}.0" else null;
+ release."8.15.0".sha256 = "093klwlhclgyrba1iv18dyz1qp5f0lwiaa7y0qwvgmai8rll5fns";
release."8.14.0".sha256 = "0jsgdvj0ddhkls32krprp34r64y1rb5mwxl34fgaxk2k4664yq06";
release."8.13.0".sha256 = "1n66i7hd9222b2ks606mak7m4f0dgy02xgygjskmmav6h7g2sx7y";
release."8.12.0".sha256 = "14ijb3qy2hin3g4djx437jmnswxxq7lkfh3dwh9qvrds9a015yg8";
diff --git a/pkgs/development/coq-modules/coqeal/default.nix b/pkgs/development/coq-modules/coqeal/default.nix
index 3921104cb54b..cbbddefffffe 100644
--- a/pkgs/development/coq-modules/coqeal/default.nix
+++ b/pkgs/development/coq-modules/coqeal/default.nix
@@ -10,7 +10,7 @@ with lib;
inherit version;
defaultVersion = with versions; switch [ coq.version mathcomp.version ] [
- { cases = [ (isGe "8.10") (isGe "1.12.0") ]; out = "1.1.0"; }
+ { cases = [ (range "8.10" "8.14") (isGe "1.12.0") ]; out = "1.1.0"; }
{ cases = [ (isGe "8.10") (range "1.11.0" "1.12.0") ]; out = "1.0.5"; }
{ cases = [ (isGe "8.7") "1.11.0" ]; out = "1.0.4"; }
{ cases = [ (isGe "8.7") "1.10.0" ]; out = "1.0.3"; }
diff --git a/pkgs/development/coq-modules/gappalib/default.nix b/pkgs/development/coq-modules/gappalib/default.nix
index cd5aaa49025e..440c9395a37f 100644
--- a/pkgs/development/coq-modules/gappalib/default.nix
+++ b/pkgs/development/coq-modules/gappalib/default.nix
@@ -6,7 +6,7 @@ with lib; mkCoqDerivation {
owner = "gappa";
domain = "gitlab.inria.fr";
inherit version;
- defaultVersion = if versions.isGe "8.8" coq.coq-version then "1.5.0" else null;
+ defaultVersion = if versions.range "8.8" "8.14" coq.coq-version then "1.5.0" else null;
release."1.5.0".sha256 = "1i1c0gakffxqqqqw064cbvc243yl325hxd50jmczr6mk18igk41n";
release."1.4.5".sha256 = "081hib1d9wfm29kis390qsqch8v6fs3q71g2rgbbzx5y5cf48n9k";
release."1.4.4".sha256 = "114q2hgw64j6kqa9mg3qcp1nlf0ia46z2xadq81fnkxqm856ml7l";
diff --git a/pkgs/development/coq-modules/graph-theory/default.nix b/pkgs/development/coq-modules/graph-theory/default.nix
index 5607d342a2eb..6374ede7970b 100644
--- a/pkgs/development/coq-modules/graph-theory/default.nix
+++ b/pkgs/development/coq-modules/graph-theory/default.nix
@@ -12,7 +12,7 @@ mkCoqDerivation {
inherit version;
defaultVersion = with versions; switch coq.coq-version [
- { case = isGe "8.13"; out = "0.9"; }
+ { case = range "8.13" "8.14"; out = "0.9"; }
] null;
propagatedBuildInputs = [ mathcomp-algebra mathcomp-finmap hierarchy-builder ];
diff --git a/pkgs/development/coq-modules/interval/default.nix b/pkgs/development/coq-modules/interval/default.nix
index 12fe66b50da6..117eafae9239 100644
--- a/pkgs/development/coq-modules/interval/default.nix
+++ b/pkgs/development/coq-modules/interval/default.nix
@@ -6,7 +6,7 @@ mkCoqDerivation rec {
domain = "gitlab.inria.fr";
inherit version;
defaultVersion = with lib.versions; lib.switch coq.coq-version [
- { case = isGe "8.8" ; out = "4.3.0"; }
+ { case = range "8.8" "8.14"; out = "4.3.0"; }
{ case = range "8.8" "8.12"; out = "4.0.0"; }
{ case = range "8.7" "8.11"; out = "3.4.2"; }
{ case = range "8.5" "8.6"; out = "3.3.0"; }
diff --git a/pkgs/development/coq-modules/iris/default.nix b/pkgs/development/coq-modules/iris/default.nix
index 606b4b11f44f..4fceb7a2fd94 100644
--- a/pkgs/development/coq-modules/iris/default.nix
+++ b/pkgs/development/coq-modules/iris/default.nix
@@ -6,7 +6,7 @@ with lib; mkCoqDerivation rec {
owner = "iris";
inherit version;
defaultVersion = with versions; switch coq.coq-version [
- { case = isGe "8.14"; out = "3.5.0"; }
+ { case = isEq "8.14"; out = "3.5.0"; }
{ case = range "8.11" "8.13"; out = "3.4.0"; }
{ case = range "8.9" "8.10"; out = "3.3.0"; }
] null;
diff --git a/pkgs/development/coq-modules/stdpp/default.nix b/pkgs/development/coq-modules/stdpp/default.nix
index 0c9c4fb49c8e..097293d58161 100644
--- a/pkgs/development/coq-modules/stdpp/default.nix
+++ b/pkgs/development/coq-modules/stdpp/default.nix
@@ -6,7 +6,7 @@ with lib; mkCoqDerivation rec {
domain = "gitlab.mpi-sws.org";
owner = "iris";
defaultVersion = with versions; switch coq.coq-version [
- { case = isGe "8.14"; out = "1.6.0"; }
+ { case = isEq "8.14"; out = "1.6.0"; }
{ case = range "8.11" "8.13"; out = "1.5.0"; }
{ case = range "8.8" "8.10"; out = "1.4.0"; }
] null;
diff --git a/pkgs/development/embedded/fpga/openfpgaloader/default.nix b/pkgs/development/embedded/fpga/openfpgaloader/default.nix
index b08c94439b9f..b44f78c03c46 100644
--- a/pkgs/development/embedded/fpga/openfpgaloader/default.nix
+++ b/pkgs/development/embedded/fpga/openfpgaloader/default.nix
@@ -10,13 +10,13 @@
stdenv.mkDerivation rec {
pname = "openfpgaloader";
- version = "0.5.0";
+ version = "0.6.0";
src = fetchFromGitHub {
owner = "trabucayre";
repo = "openFPGALoader";
rev = "v${version}";
- sha256 = "sha256-g1mr7S9Z70A+dXWptZPLHt90JpuclJAEDwUTicpxtic=";
+ sha256 = "sha256-gPRBHy7WVra4IlGvzrhNqbEbOQtYtUC+zQ+SnJTMvRA=";
};
nativeBuildInputs = [ cmake pkg-config ];
diff --git a/pkgs/development/gnuradio-modules/grnet/default.nix b/pkgs/development/gnuradio-modules/grnet/default.nix
new file mode 100644
index 000000000000..568e63a77b8b
--- /dev/null
+++ b/pkgs/development/gnuradio-modules/grnet/default.nix
@@ -0,0 +1,84 @@
+{ lib
+, mkDerivation
+, fetchFromGitHub
+, gnuradio
+, cmake
+, pkg-config
+, boost
+, log4cpp
+, python
+, swig
+, mpir
+, gmp
+, doxygen
+, libpcap
+, icu
+, thrift
+}:
+
+let
+ # Each GR major version requires us to pull a specific git revision of the repository
+ version = {
+ "3.7" = {
+ # Last git revision from the `maint-3.7` branch:
+ # https://github.com/ghostop14/gr-grnet/tree/maint-3.7
+ name = "unstable-2019-08-06";
+ gitHash = "beb1cd75d006a982c0a9536e923800c5a0575451";
+ };
+ "3.8" = {
+ # Last git revision from the `maint-3.8` branch:
+ # https://github.com/ghostop14/gr-grnet/tree/maint-3.8
+ name = "unstable-2020-11-20";
+ gitHash = "b02016043b67a15f27134a4f0b0d43f5d1b9ed6d";
+ };
+ "3.9" = {
+ # This revision is taken from the `master` branch.
+ name = "unstable-2020-12-30";
+ gitHash = "e6dfd140cfda715de9bcef4c1116fcacfeb0c606";
+ };
+ }.${gnuradio.versionAttr.major};
+ src = fetchFromGitHub {
+ owner = "ghostop14";
+ repo = "gr-grnet";
+ rev = "${version.gitHash}";
+ sha256 = {
+ "3.7" = "LLQ0Jf0Oapecu9gj4IgxOdK7O/OSbHnwNk000GlODxk=";
+ "3.8" = "vO8l8nV1/yEQf7pKqBbzIg4KkyCyWu+OkKgISyI3PaQ=";
+ "3.9" = "NsL7HCOQmGyexzpH2qbzv8Bq4bsfiDTNEUi96QDOA/g=";
+ }.${gnuradio.versionAttr.major};
+ };
+in
+mkDerivation {
+ pname = "gr-grnet";
+ version = version.name;
+ inherit src;
+
+ buildInputs = [
+ boost
+ log4cpp
+ doxygen
+ mpir
+ gmp
+ libpcap
+ icu
+ ] ++ (if lib.versionAtLeast gnuradio.versionAttr.major "3.9" then with python.pkgs; [
+ pybind11
+ numpy
+ ] else [
+ swig
+ thrift
+ python.pkgs.thrift
+ ]);
+ nativeBuildInputs = [
+ cmake
+ pkg-config
+ ];
+
+ meta = with lib; {
+ description = "GNURadio TCP/UDP source and sink blocks rewritten in C++/Boost";
+ homepage = "https://github.com/ghostop14/gr-grnet";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ chuangzhu ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/interpreters/spidermonkey/91.nix b/pkgs/development/interpreters/spidermonkey/91.nix
index 953a4c506b5c..a8927e79f9a4 100644
--- a/pkgs/development/interpreters/spidermonkey/91.nix
+++ b/pkgs/development/interpreters/spidermonkey/91.nix
@@ -20,11 +20,11 @@
stdenv.mkDerivation rec {
pname = "spidermonkey";
- version = "91.3.0";
+ version = "91.4.0";
src = fetchurl {
url = "mirror://mozilla/firefox/releases/${version}esr/source/firefox-${version}esr.source.tar.xz";
- sha256 = "0v79c435vfbhsx7pqyq4jm5rv8iysig69wwqhvys1n0jy54m72qj";
+ sha256 = "09xkzk27krzyj1qx8cjjn2zpnws1cncka75828kk7ychnjfq48p7";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/development/libraries/bashup-events/generic.nix b/pkgs/development/libraries/bashup-events/generic.nix
index fd4e2cfe9f5f..2f99a2616816 100644
--- a/pkgs/development/libraries/bashup-events/generic.nix
+++ b/pkgs/development/libraries/bashup-events/generic.nix
@@ -3,7 +3,6 @@
lib
, resholvePackage
, bash
-, shellcheck
, doCheck ? true
, doInstallCheck ? true
# variant-specific
@@ -50,12 +49,10 @@ resholvePackage rec {
'';
inherit doCheck;
- checkInputs = [ shellcheck bash ];
+ checkInputs = [ bash ];
- # check based on https://github.com/bashup/events/blob/master/.dkrc
checkPhase = ''
runHook preCheck
- SHELLCHECK_OPTS='-e SC2016,SC2145' ${shellcheck}/bin/shellcheck ./bashup.events
${bash}/bin/bash -n ./bashup.events
${bash}/bin/bash ./bashup.events
runHook postCheck
diff --git a/pkgs/development/libraries/openwsman/default.nix b/pkgs/development/libraries/openwsman/default.nix
index 9276ccac6fd2..446952b30051 100644
--- a/pkgs/development/libraries/openwsman/default.nix
+++ b/pkgs/development/libraries/openwsman/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
pname = "openwsman";
- version = "2.7.0";
+ version = "2.7.1";
src = fetchFromGitHub {
owner = "Openwsman";
repo = "openwsman";
rev = "v${version}";
- sha256 = "19dj38jyzhhhvk863cikcwk5awzlq3337pxmsaqqm4wrcygrkfmx";
+ sha256 = "sha256-/fSVzpGPObMkJIu7j6eR6A7Gtf2jttoPhcSayBvn3IU=";
};
nativeBuildInputs = [ cmake pkg-config ];
diff --git a/pkgs/development/libraries/spdk/default.nix b/pkgs/development/libraries/spdk/default.nix
index 862547043ed8..e4884b85b4ae 100644
--- a/pkgs/development/libraries/spdk/default.nix
+++ b/pkgs/development/libraries/spdk/default.nix
@@ -1,5 +1,5 @@
{ lib, stdenv
-, fetchurl
+, fetchpatch
, fetchFromGitHub
, ncurses
, python3
@@ -14,19 +14,25 @@
stdenv.mkDerivation rec {
pname = "spdk";
- version = "21.07";
+ version = "21.10";
src = fetchFromGitHub {
owner = "spdk";
repo = "spdk";
rev = "v${version}";
- sha256 = "sha256-/hynuYVdzIfiHUUfuuOY8SBJ18DqJr2Fos2JjQQVvbg=";
+ sha256 = "sha256-pFynTbbSF1g58VD9bOhe3c4oCozeqE+35kECTQwDBDM=";
};
patches = [
# Backport of upstream patch for ncurses-6.3 support.
# Will be in next release after 21.10.
./ncurses-6.3.patch
+
+ # DPDK 21.11 compatibility.
+ (fetchpatch {
+ url = "https://github.com/spdk/spdk/commit/f72cab94dd35d7b45ec5a4f35967adf3184ca616.patch";
+ sha256 = "sha256-sSetvyNjlM/hSOUsUO3/dmPzAliVcteNDvy34yM5d4A=";
+ })
];
nativeBuildInputs = [
diff --git a/pkgs/development/lua-modules/generated-packages.nix b/pkgs/development/lua-modules/generated-packages.nix
index 66b8396c0838..d4d0a02d81bd 100644
--- a/pkgs/development/lua-modules/generated-packages.nix
+++ b/pkgs/development/lua-modules/generated-packages.nix
@@ -15,7 +15,7 @@ buildLuarocksPackage {
pname = "alt-getopt";
version = "0.8.0-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/alt-getopt-0.8.0-1.rockspec";
+ url = "https://luafr.org/luarocks/alt-getopt-0.8.0-1.rockspec";
sha256 = "17yxi1lsrbkmwzcn1x48x8758d7v1frsz1bmnpqfv4vfnlh0x210";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -159,7 +159,7 @@ buildLuarocksPackage {
pname = "busted";
version = "2.0.0-1";
knownRockspec = (fetchurl {
- url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/busted-2.0.0-1.rockspec";
+ url = "https://luafr.org/luarocks/busted-2.0.0-1.rockspec";
sha256 = "0cbw95bjxl667n9apcgng2kr5hq6bc7gp3vryw4dzixmfabxkcbw";
}).outPath;
src = fetchurl {
@@ -184,7 +184,7 @@ buildLuarocksPackage {
pname = "cassowary";
version = "2.3.1-2";
knownRockspec = (fetchurl {
- url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/cassowary-2.3.1-2.rockspec";
+ url = "https://luafr.org/luarocks/cassowary-2.3.1-2.rockspec";
sha256 = "04y882f9ai1jhk0zwla2g0fvl56a75rwnxhsl9r3m0qa5i0ia1i5";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -244,7 +244,7 @@ buildLuarocksPackage {
pname = "cosmo";
version = "16.06.04-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/cosmo-16.06.04-1.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/cosmo-16.06.04-1.rockspec";
sha256 = "0ipv1hrlhvaz1myz6qxabq7b7kb3bz456cya3r292487a3g9h9pb";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -276,7 +276,7 @@ buildLuarocksPackage {
pname = "coxpcall";
version = "1.17.0-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/coxpcall-1.17.0-1.rockspec";
+ url = "https://luafr.org/luarocks/coxpcall-1.17.0-1.rockspec";
sha256 = "0mf0nggg4ajahy5y1q5zh2zx9rmgzw06572bxx6k8b736b8j7gca";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -307,7 +307,7 @@ buildLuarocksPackage {
pname = "cqueues";
version = "20200726.52-0";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/cqueues-20200726.52-0.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/cqueues-20200726.52-0.rockspec";
sha256 = "0w2kq9w0wda56k02rjmvmzccz6bc3mn70s9v7npjadh85i5zlhhp";
}).outPath;
src = fetchurl {
@@ -393,7 +393,7 @@ buildLuarocksPackage {
pname = "dkjson";
version = "2.5-3";
knownRockspec = (fetchurl {
- url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/dkjson-2.5-3.rockspec";
+ url = "https://luafr.org/luarocks/dkjson-2.5-3.rockspec";
sha256 = "18xngdzl2q207cil64aj81qi6qvj1g269pf07j5x4pbvamd6a1l3";
}).outPath;
src = fetchurl {
@@ -418,7 +418,7 @@ buildLuarocksPackage {
pname = "fifo";
version = "0.2-0";
knownRockspec = (fetchurl {
- url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/fifo-0.2-0.rockspec";
+ url = "https://luafr.org/luarocks/fifo-0.2-0.rockspec";
sha256 = "0vr9apmai2cyra2n573nr3dyk929gzcs4nm1096jdxcixmvh2ymq";
}).outPath;
src = fetchurl {
@@ -444,10 +444,10 @@ buildLuarocksPackage {
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
"url": "https://github.com/lewis6991/gitsigns.nvim",
- "rev": "552f114caeaec4ce97822cb55dfa7c7e5368136b",
- "date": "2021-10-15T13:31:44+01:00",
- "path": "/nix/store/40vkv3sc4h6gh9ac88k7pilszxmy38yv-gitsigns.nvim",
- "sha256": "0qdafm3arjf8bcqpvv085dwzbikad3sr3xzvrn3gfa0dsls8pg6q",
+ "rev": "5eb87a0b05914d3763277ebe257bd5bafcdde8cd",
+ "date": "2021-12-06T18:02:22+00:00",
+ "path": "/nix/store/c5l5bz7m5f48l57p4yrpxfhqga0cxsny-gitsigns.nvim",
+ "sha256": "02cmgc3fgrwx6v6ylzqxdwgk9jsmd8j2q6fdnfbllg3zjwx3agcd",
"fetchLFS": false,
"fetchSubmodules": true,
"deepClone": false,
@@ -496,14 +496,14 @@ inspect = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
}:
buildLuarocksPackage {
pname = "inspect";
- version = "3.1.1-0";
+ version = "3.1.2-0";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/inspect-3.1.1-0.rockspec";
- sha256 = "00spibq2h4an8v0204vr1hny4vv6za720c37ipsahpjk198ayf1p";
+ url = "https://luarocks.org/inspect-3.1.2-0.rockspec";
+ sha256 = "13jbv3rhj4mv2farrxns88g7j34ljag7vz0kma0fm2pzdz3686vx";
}).outPath;
src = fetchurl {
- url = "https://github.com/kikito/inspect.lua/archive/v3.1.1.tar.gz";
- sha256 = "1nz0yqhkd0nkymghrj99gb2id40g50drh4a96g3v5k7h1sbg94h2";
+ url = "https://github.com/kikito/inspect.lua/archive/v3.1.2.tar.gz";
+ sha256 = "08ln4p5bmvcs8wj8hzs4ny66m63abyxjkmcxhjji5ay99g85cn3b";
};
disabled = with lua; (luaOlder "5.1");
@@ -524,14 +524,14 @@ buildLuarocksPackage {
version = "scm-0";
knownRockspec = (fetchurl {
url = "mirror://luarocks/ldbus-scm-0.rockspec";
- sha256 = "1yhkw5y8h1qf44vx31934k042cmnc7zcv2k0pv0g27wsmlxrlznx";
+ sha256 = "1c0h6fx7avzh89hl17v6simy1p4mjg8bimlsbjybks0zxznd8rbm";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
"url": "https://github.com/daurnimator/ldbus.git",
- "rev": "9e176fe851006037a643610e6d8f3a8e597d4073",
- "date": "2019-08-16T14:26:05+10:00",
- "path": "/nix/store/gg4zldd6kx048d6p65b9cimg3arma8yh-ldbus",
- "sha256": "06wcz4i5b7kphqbry274q3ivnsh331rxiyf7n4qk3zx2kvarq08s",
+ "rev": "6d4909c983c8a0e2c7384bac8055c628aa524ea2",
+ "date": "2021-11-10T23:58:54+11:00",
+ "path": "/nix/store/j830jk2hkanz7abkdsbvg2warsyr0a2c-ldbus",
+ "sha256": "18q98b98mfvjzbyssf18bpnlx4hsx4s9lwcwia4z9dxiaiw7b77j",
"fetchLFS": false,
"fetchSubmodules": true,
"deepClone": false,
@@ -539,7 +539,7 @@ buildLuarocksPackage {
}
'') ["date" "path"]) ;
- disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
+ disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.5");
propagatedBuildInputs = [ lua ];
meta = {
@@ -585,7 +585,7 @@ buildLuarocksPackage {
pname = "lgi";
version = "0.9.2-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/lgi-0.9.2-1.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/lgi-0.9.2-1.rockspec";
sha256 = "1gqi07m4bs7xibsy4vx8qgyp3yb1wnh0gdq1cpwqzv35y6hn5ds3";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -666,7 +666,7 @@ buildLuarocksPackage {
pname = "lpeg";
version = "1.0.2-1";
knownRockspec = (fetchurl {
- url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/lpeg-1.0.2-1.rockspec";
+ url = "https://luafr.org/luarocks/lpeg-1.0.2-1.rockspec";
sha256 = "08a8p5cwlwpjawk8sczb7bq2whdsng4mmhphahyklf1bkvl2li89";
}).outPath;
src = fetchurl {
@@ -692,7 +692,7 @@ buildLuarocksPackage {
pname = "lpeg_patterns";
version = "0.5-0";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/lpeg_patterns-0.5-0.rockspec";
+ url = "https://luafr.org/luarocks/lpeg_patterns-0.5-0.rockspec";
sha256 = "1vzl3ryryc624mchclzsfl3hsrprb9q214zbi1xsjcc4ckq5qfh7";
}).outPath;
src = fetchurl {
@@ -716,7 +716,7 @@ buildLuarocksPackage {
pname = "lpeglabel";
version = "1.6.0-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/lpeglabel-1.6.0-1.rockspec";
+ url = "https://luafr.org/luarocks/lpeglabel-1.6.0-1.rockspec";
sha256 = "13gc32pggng6f95xx5zw9n9ian518wlgb26mna9kh4q2xa1k42pm";
}).outPath;
src = fetchurl {
@@ -741,7 +741,7 @@ buildLuarocksPackage {
pname = "lpty";
version = "1.2.2-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/lpty-1.2.2-1.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/lpty-1.2.2-1.rockspec";
sha256 = "04af4mhiqrw3br4qzz7yznw9zy2m50wddwzgvzkvhd99ng71fkzg";
}).outPath;
src = fetchurl {
@@ -766,7 +766,7 @@ buildLuarocksPackage {
pname = "lrexlib-gnu";
version = "2.9.1-1";
knownRockspec = (fetchurl {
- url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/lrexlib-gnu-2.9.1-1.rockspec";
+ url = "https://luafr.org/luarocks/lrexlib-gnu-2.9.1-1.rockspec";
sha256 = "1jfjxh26iwsavipkwmscwv52l77qxzvibfmlvpskcpawyii7xcw8";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -799,7 +799,7 @@ buildLuarocksPackage {
pname = "lrexlib-pcre";
version = "2.9.1-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/lrexlib-pcre-2.9.1-1.rockspec";
+ url = "https://luafr.org/luarocks/lrexlib-pcre-2.9.1-1.rockspec";
sha256 = "036k27xaplxn128b3p67xiqm8k40s7bxvh87wc8v2cx1cc4b9ia4";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -833,7 +833,7 @@ buildLuarocksPackage {
pname = "lrexlib-posix";
version = "2.9.1-1";
knownRockspec = (fetchurl {
- url = "https://luafr.org/luarocks/lrexlib-posix-2.9.1-1.rockspec";
+ url = "https://luarocks.org/lrexlib-posix-2.9.1-1.rockspec";
sha256 = "1zxrx9yifm9ry4wbjgv86rlvq3ff6qivldvib3ha4767azla0j0r";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -1111,17 +1111,17 @@ lua-resty-openssl = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
, fetchgit}:
buildLuarocksPackage {
pname = "lua-resty-openssl";
- version = "0.7.5-1";
+ version = "0.8.2-1";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/lua-resty-openssl-0.7.5-1.rockspec";
- sha256 = "13v14in9cgmjgarmy6br9629ns1qlhw7a30c061y6gncjannnv6y";
+ url = "https://luarocks.org/lua-resty-openssl-0.8.2-1.rockspec";
+ sha256 = "1dxaxh3l4vhrv5p2pwphl7jn7jpcjq3dmawfl9wbp3a88121gbsx";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
"url": "https://github.com/fffonion/lua-resty-openssl.git",
- "rev": "6a7f4a1649da7e0499b542b73c61e8dbdf91f57e",
- "date": "2021-09-18T06:15:54+08:00",
- "path": "/nix/store/01bninsbgix30zl97lk0p10ycqkc37kx-lua-resty-openssl",
- "sha256": "1ypji678lna9z3a48lhxs7wrw8d1prln7yfvqfm96lbmfvr5wfxw",
+ "rev": "53e2d4ba7e8c31181c1fd71d3817911da0533675",
+ "date": "2021-11-22T12:07:07+08:00",
+ "path": "/nix/store/x7s51wf9ysxs2xs4adixf7ypmadfwp5c-lua-resty-openssl",
+ "sha256": "19cvqz81d0lxql55pgsbgynval0jxh8sicps94nzapvj90xqjviy",
"fetchLFS": false,
"fetchSubmodules": true,
"deepClone": false,
@@ -1176,7 +1176,7 @@ buildLuarocksPackage {
pname = "lua-term";
version = "0.7-1";
knownRockspec = (fetchurl {
- url = "https://luafr.org/luarocks/lua-term-0.7-1.rockspec";
+ url = "https://luarocks.org/lua-term-0.7-1.rockspec";
sha256 = "0r9g5jw7pqr1dyj6w58dqlr7y7l0jp077n8nnji4phf10biyrvg2";
}).outPath;
src = fetchurl {
@@ -1232,7 +1232,7 @@ buildLuarocksPackage {
pname = "lua-yajl";
version = "2.0-1";
knownRockspec = (fetchurl {
- url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/lua-yajl-2.0-1.rockspec";
+ url = "https://luarocks.org/lua-yajl-2.0-1.rockspec";
sha256 = "0h600zgq5qc9z3cid1kr35q3qb98alg0m3qf0a3mfj33hya6pcxp";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -1266,7 +1266,7 @@ buildLuarocksPackage {
pname = "lua-zlib";
version = "1.2-1";
knownRockspec = (fetchurl {
- url = "https://luafr.org/luarocks/lua-zlib-1.2-1.rockspec";
+ url = "https://luarocks.org/lua-zlib-1.2-1.rockspec";
sha256 = "18rpbg9b4vsnh3svapiqrvwwshw1abb5l5fd7441byx1nm3fjq9w";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -1385,7 +1385,7 @@ buildLuarocksPackage {
pname = "luacov";
version = "0.15.0-1";
knownRockspec = (fetchurl {
- url = "https://luafr.org/luarocks/luacov-0.15.0-1.rockspec";
+ url = "https://luarocks.org/luacov-0.15.0-1.rockspec";
sha256 = "18byfl23c73pazi60hsx0vd74hqq80mzixab76j36cyn8k4ni9db";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -1484,7 +1484,7 @@ buildLuarocksPackage {
pname = "luadbi-postgresql";
version = "0.7.2-1";
knownRockspec = (fetchurl {
- url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/luadbi-postgresql-0.7.2-1.rockspec";
+ url = "https://luarocks.org/luadbi-postgresql-0.7.2-1.rockspec";
sha256 = "07rx4agw4hjyzf8157apdwfqh9s26nqndmkr3wm7v09ygjvdjiix";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -1550,7 +1550,7 @@ buildLuarocksPackage {
pname = "luaepnf";
version = "0.3-2";
knownRockspec = (fetchurl {
- url = "https://luafr.org/luarocks/luaepnf-0.3-2.rockspec";
+ url = "https://luarocks.org/luaepnf-0.3-2.rockspec";
sha256 = "0kqmnj11wmfpc9mz04zzq8ab4mnbkrhcgc525wrq6pgl3p5li8aa";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -1667,7 +1667,7 @@ buildLuarocksPackage {
pname = "luafilesystem";
version = "1.7.0-2";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/luafilesystem-1.7.0-2.rockspec";
+ url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/luafilesystem-1.7.0-2.rockspec";
sha256 = "0xivgn8bbkx1g5a30jrjcv4hg5mpiiyrm3fhlz9lndgbh4cnjrq6";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
@@ -1699,17 +1699,17 @@ lualogging = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
}:
buildLuarocksPackage {
pname = "lualogging";
- version = "1.5.2-1";
+ version = "1.6.0-2";
knownRockspec = (fetchurl {
- url = "https://luarocks.org/lualogging-1.5.2-1.rockspec";
- sha256 = "0jlqjhr5p9ji51bkmz8n9jc55i3vzqjfwjxvxp2ib9h4gmh2zqk3";
+ url = "https://luarocks.org/lualogging-1.6.0-2.rockspec";
+ sha256 = "1235sfss0gmcw744rnhzfffhd1z732g2b2vsbpbz9kcvvhznmamb";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
"url": "https://github.com/lunarmodules/lualogging.git",
- "rev": "8b4d8dd5a311245a197890405ba9324b9f5f5ab1",
- "date": "2021-08-12T19:29:39+02:00",
- "path": "/nix/store/q1v28n04hh3r7aw37cxakzksfa3kw5qa-lualogging",
- "sha256": "0nj0ik91lgl9rwgizdkn7vy9brddsz1kxfn70c01x861vaxi63iz",
+ "rev": "0bc4415de03ff1a99c92c02a5bed14a45b078079",
+ "date": "2021-11-09T20:20:42+01:00",
+ "path": "/nix/store/p3cyhqjw12bj7s6y4hndzqdkdfwq3958-lualogging",
+ "sha256": "18664k4kfi4zq9n0217j57h42li6ws8s3f6d4yj0rcqsl19fxa7c",
"fetchLFS": false,
"fetchSubmodules": true,
"deepClone": false,
@@ -2060,7 +2060,7 @@ buildLuarocksPackage {
pname = "lyaml";
version = "6.2.7-1";
knownRockspec = (fetchurl {
- url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/lyaml-6.2.7-1.rockspec";
+ url = "https://luarocks.org/lyaml-6.2.7-1.rockspec";
sha256 = "0m5bnzg24nyk35gcn4rydgzk0ysk1f6rslxwxd0w3drl1bg64zja";
}).outPath;
src = fetchurl {
@@ -2252,10 +2252,10 @@ buildLuarocksPackage {
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
"url": "https://github.com/nvim-lua/plenary.nvim",
- "rev": "80bb2b9bb74bdca38a46480b6f2e15af990406e4",
- "date": "2021-10-06T19:20:08+02:00",
- "path": "/nix/store/mw4r562qxr7giy1n43iylp3qb8ch0jqs-plenary.nvim",
- "sha256": "11akcpxcp4m997a2y76ajknnmsifac2hj4nq9i4a8b1j08bxinim",
+ "rev": "c2bb2d8fd5b44bfc6aad3a5463c84576a98dd4a9",
+ "date": "2021-12-06T21:11:29+01:00",
+ "path": "/nix/store/h376md0lpbv31n5wyrq0cilkpx2lkr18-plenary.nvim",
+ "sha256": "12csjz882yv9wwhzx964fq210655m8820491xjsrjlwccfc09i35",
"fetchLFS": false,
"fetchSubmodules": true,
"deepClone": false,
diff --git a/pkgs/development/node-packages/composition.nix b/pkgs/development/node-packages/composition.nix
index 53bdef1f9864..4dfddf3e5bca 100644
--- a/pkgs/development/node-packages/composition.nix
+++ b/pkgs/development/node-packages/composition.nix
@@ -2,7 +2,7 @@
{pkgs ? import {
inherit system;
- }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}:
+ }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-14_x"}:
let
nodeEnv = import ./node-env.nix {
diff --git a/pkgs/development/node-packages/generate.sh b/pkgs/development/node-packages/generate.sh
index 9e5162676dc3..869303a064b5 100755
--- a/pkgs/development/node-packages/generate.sh
+++ b/pkgs/development/node-packages/generate.sh
@@ -1,9 +1,20 @@
#!/usr/bin/env bash
+
set -eu -o pipefail
+
cd "$( dirname "${BASH_SOURCE[0]}" )"
+
node2nix=$(nix-build ../../.. -A nodePackages.node2nix)
+
rm -f ./node-env.nix
-${node2nix}/bin/node2nix -i node-packages.json -o node-packages.nix -c composition.nix
+
+# Track the latest active nodejs LTS here: https://nodejs.org/en/about/releases/
+${node2nix}/bin/node2nix \
+ -i node-packages.json \
+ -o node-packages.nix \
+ -c composition.nix \
+ --pkg-name nodejs-14_x
+
# using --no-out-link in nix-build argument would cause the
# gc to run before the script finishes
# which would cause a failure
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index e2ff662b12e4..d6e4287e3c50 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -58,13 +58,13 @@ let
sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww==";
};
};
- "@angular-devkit/architect-0.1300.3" = {
+ "@angular-devkit/architect-0.1300.4" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1300.3";
+ version = "0.1300.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1300.3.tgz";
- sha512 = "XY3sjRLk06Q+uAU0BePuIWcK1n3Jr0ksNV0ACNAct+MnI3QFfPPaYA/Tdhp9uWobuZ4lUrL0drc2uppNu0wKmA==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1300.4.tgz";
+ sha512 = "COW2W6rI9D69QEXGc/MyTbJY9gT+u8yMTpONpIjopd+KoSK/q2wGr0RleUf7XSCunZCs0SRI7z3Pw1EAdQCP7Q==";
};
};
"@angular-devkit/core-13.0.2" = {
@@ -85,6 +85,15 @@ let
sha512 = "5yTYW6m4pkDPSYNxThm+47h+UZ6XVEfdfsXR3o+WlRG0hc18EuQ+sXZkzhvZrk5KMLlXFex4eO40RPq2vvWS/w==";
};
};
+ "@angular-devkit/core-13.0.4" = {
+ name = "_at_angular-devkit_slash_core";
+ packageName = "@angular-devkit/core";
+ version = "13.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.0.4.tgz";
+ sha512 = "AzgLvERLC6qzY5aZWUpkz5nx+pZChrq3DSt6azMPALwzzoABrwiO6XqzRnj17mXtANXLH2oe9FuHr9jzgFbF1g==";
+ };
+ };
"@angular-devkit/schematics-13.0.2" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
@@ -103,6 +112,15 @@ let
sha512 = "+Va1E0zJBCg5jqSfITusghoMJgPAwlU+WUs49fuGVCzfJPwfSjTKSrsbhanahMd27+Ys3rovGZq0F2JUdL801A==";
};
};
+ "@angular-devkit/schematics-13.0.4" = {
+ name = "_at_angular-devkit_slash_schematics";
+ packageName = "@angular-devkit/schematics";
+ version = "13.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.0.4.tgz";
+ sha512 = "3LsmpfAEOxwPyachrktCHtGUYBzQCCzD0++CUjhK8W99v8/IAplkm4dgovFb1RiRkUm44l+HIS7387AbvEIf5A==";
+ };
+ };
"@angular-devkit/schematics-cli-13.0.3" = {
name = "_at_angular-devkit_slash_schematics-cli";
packageName = "@angular-devkit/schematics-cli";
@@ -229,15 +247,6 @@ let
sha512 = "GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==";
};
};
- "@apollo/client-3.5.5" = {
- name = "_at_apollo_slash_client";
- packageName = "@apollo/client";
- version = "3.5.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/@apollo/client/-/client-3.5.5.tgz";
- sha512 = "EiQstc8VjeqosS2h21bwY9fhL3MCRRmACtRrRh2KYpp9vkDyx5pUfMnN3swgiBVYw1twdXg9jHmyZa1gZlvlog==";
- };
- };
"@apollo/protobufjs-1.2.2" = {
name = "_at_apollo_slash_protobufjs";
packageName = "@apollo/protobufjs";
@@ -265,15 +274,6 @@ let
sha512 = "tea2LweZvn6y6xFV11K0KC8ETjmm52mQrW+ezgB2O/aTQf8JGyFmMcRPFgUaQZeHbWdm8iisDC6EjOKsXu0nfw==";
};
};
- "@apollographql/graphql-playground-html-1.6.29" = {
- name = "_at_apollographql_slash_graphql-playground-html";
- packageName = "@apollographql/graphql-playground-html";
- version = "1.6.29";
- src = fetchurl {
- url = "https://registry.npmjs.org/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.29.tgz";
- sha512 = "xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==";
- };
- };
"@apollographql/graphql-upload-8-fork-8.1.3" = {
name = "_at_apollographql_slash_graphql-upload-8-fork";
packageName = "@apollographql/graphql-upload-8-fork";
@@ -1597,31 +1597,31 @@ let
sha512 = "GcIY79elgB+azP74j8vqkiXz8xLFfIzbQJdlwOPisgbKT00tviJQuEghOXSMVxJ00HoYJbGswr4kcllUc4xCcg==";
};
};
- "@cdktf/hcl2cdk-0.7.0" = {
+ "@cdktf/hcl2cdk-0.8.1" = {
name = "_at_cdktf_slash_hcl2cdk";
packageName = "@cdktf/hcl2cdk";
- version = "0.7.0";
+ version = "0.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.7.0.tgz";
- sha512 = "HASCRZcHX/qnDYD8sgdh/AY3Npj3AW6zZlFKUAyWM3veutWoYcUl+sPC7HwpQYkREhoNRMYWbrcq6VurgrpnOg==";
+ url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.8.1.tgz";
+ sha512 = "HI7LJ5ENAxL/K25c0rdNd6IKzKKlicImasYneXLRPZwnwobue2x7kRwpwAl/Lqk0MxYJPbPFdZmtuFOF0cISgA==";
};
};
- "@cdktf/hcl2json-0.7.0" = {
+ "@cdktf/hcl2json-0.8.1" = {
name = "_at_cdktf_slash_hcl2json";
packageName = "@cdktf/hcl2json";
- version = "0.7.0";
+ version = "0.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.7.0.tgz";
- sha512 = "YwZnPwEYplGalUsfJzptlIer2w7o/FmtGNblZEVlLRXqioALvDXMRrmwSeOFAQ1ycPaCMTllB4nXIaqftfTVWg==";
+ url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.8.1.tgz";
+ sha512 = "cCXobcITma0CVa8aqCmAKnmLpTC/7T62tJpIUe82LXB+b8XZQb54yFgrgHF1pJiOLqO9CkEOSRztzbUvtzDqPw==";
};
};
- "@cdktf/provider-generator-0.7.0" = {
+ "@cdktf/provider-generator-0.8.1" = {
name = "_at_cdktf_slash_provider-generator";
packageName = "@cdktf/provider-generator";
- version = "0.7.0";
+ version = "0.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.7.0.tgz";
- sha512 = "PzL3qTxZEnXWFGB+nQOHub8xmEykJKhHLgc6CUEfu9z8PCmK9dnPLK6BKvDgvQtnTT2/aXmFjDr9GVbuOZ5Gsw==";
+ url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.8.1.tgz";
+ sha512 = "50PhWgIDs5m/OjXqy3UrnYPnrjhk7nhSSCDKBUIhuA0oFNfKDLRJDqnKAkNrcD1Kspea7N0/ckPHW7D84lNAIw==";
};
};
"@chemzqm/neovim-5.4.0" = {
@@ -2236,13 +2236,13 @@ let
sha512 = "HilPrVrCosYWqSyjfpDtaaN1kJwdlBpS+IAflP3z+e7nsEgk3JGJf1Vg0NgHJooTf5HDfXSyZqMVg+5jvXCK0g==";
};
};
- "@discoveryjs/json-ext-0.5.5" = {
+ "@discoveryjs/json-ext-0.5.6" = {
name = "_at_discoveryjs_slash_json-ext";
packageName = "@discoveryjs/json-ext";
- version = "0.5.5";
+ version = "0.5.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.5.tgz";
- sha512 = "6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA==";
+ url = "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.6.tgz";
+ sha512 = "ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==";
};
};
"@electron-forge/async-ora-6.0.0-beta.61" = {
@@ -2506,13 +2506,13 @@ let
sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==";
};
};
- "@eslint/eslintrc-1.0.4" = {
+ "@eslint/eslintrc-1.0.5" = {
name = "_at_eslint_slash_eslintrc";
packageName = "@eslint/eslintrc";
- version = "1.0.4";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.4.tgz";
- sha512 = "h8Vx6MdxwWI2WM8/zREHMoqdgLNXEL4QX3MWSVMdyNJGvXVOs+6lp+m2hc3FnuMHDc4poxFNI20vCk0OmI4G0Q==";
+ url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.5.tgz";
+ sha512 = "BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ==";
};
};
"@exodus/schemasafe-1.0.0-rc.6" = {
@@ -2767,13 +2767,13 @@ let
sha512 = "iT1bU56rKrKEOfODoW6fScY11qj3iaYrZ+z11T6fo5+TDm84UGkkXjLXJTE57ZJzg0/gbccHQWYv+chY7bJN8Q==";
};
};
- "@fluentui/react-7.179.5" = {
+ "@fluentui/react-7.180.0" = {
name = "_at_fluentui_slash_react";
packageName = "@fluentui/react";
- version = "7.179.5";
+ version = "7.180.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react/-/react-7.179.5.tgz";
- sha512 = "41Je7h5d12xrOjtUcdLnocalTallh8Z0QkPV8lhHBKJ8TpFvMzO2KVDzGMc8chv0V4Oa1K7w5EJr7891TpYZHw==";
+ url = "https://registry.npmjs.org/@fluentui/react/-/react-7.180.0.tgz";
+ sha512 = "De0Nt9sib9iWNc1uHVnf4PdyFHdh8VDcPYztywno2BnL8VDgoiqeIEFhmuub+txdNOm1hQtGsKKt2oVlbJV9GQ==";
};
};
"@fluentui/react-focus-7.18.1" = {
@@ -2812,31 +2812,31 @@ let
sha512 = "82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==";
};
};
- "@gitbeaker/core-34.6.0" = {
+ "@gitbeaker/core-35.1.0" = {
name = "_at_gitbeaker_slash_core";
packageName = "@gitbeaker/core";
- version = "34.6.0";
+ version = "35.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@gitbeaker/core/-/core-34.6.0.tgz";
- sha512 = "yKF+oxffPyzOnyuHCqLGJrBHhcFHuGHtcmqKhGKtnYPfqcNYA8rt4INAHaE5wMz4ILua9b4sB8p42fki+xn6WA==";
+ url = "https://registry.npmjs.org/@gitbeaker/core/-/core-35.1.0.tgz";
+ sha512 = "DM9w3wgrS8GoXMLJb0DL2VSxTvP3yoaGDfX2d8n3wMGSjZbCknh3YnbVG/OfnaPbh9PH71kGll3SY5rJgz7XJg==";
};
};
- "@gitbeaker/node-34.6.0" = {
+ "@gitbeaker/node-35.1.0" = {
name = "_at_gitbeaker_slash_node";
packageName = "@gitbeaker/node";
- version = "34.6.0";
+ version = "35.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@gitbeaker/node/-/node-34.6.0.tgz";
- sha512 = "gVV4Wuev43Jbyoy1fszC885+bkvWH4zWiUhtIu0PSAm628j/OxO7idLIqUEMV0hDf6wm/PE/vOSP6PhjE0N+fA==";
+ url = "https://registry.npmjs.org/@gitbeaker/node/-/node-35.1.0.tgz";
+ sha512 = "t0lXqSuY93jVffo6WMeo4tvZtkMQXPKuGb1qNh3HOuW4+KyEqmrdQnorGyyRYH7uRTmQeHEe33BL1Ttc5F5YrA==";
};
};
- "@gitbeaker/requester-utils-34.6.0" = {
+ "@gitbeaker/requester-utils-35.1.0" = {
name = "_at_gitbeaker_slash_requester-utils";
packageName = "@gitbeaker/requester-utils";
- version = "34.6.0";
+ version = "35.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-34.6.0.tgz";
- sha512 = "H8utxbSP1kEdX0KcyVYrTDTT0A3UcPwrIV1ahyufX9ZLybYSUsA56B8Wx5kJSbWGFT1ffu2f8H2YDMwNCKKsBg==";
+ url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-35.1.0.tgz";
+ sha512 = "00aQYCxs3wBHrD5HGWh0l1FRsX1NYJ1GEq4Reyo1NpVgjwzO/T1jjMFy3jikjJ+UGeg0sfqV9h91mwtCQ4SmRA==";
};
};
"@google-cloud/paginator-3.0.6" = {
@@ -2992,15 +2992,6 @@ let
sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg==";
};
};
- "@graphql-tools/load-6.2.8" = {
- name = "_at_graphql-tools_slash_load";
- packageName = "@graphql-tools/load";
- version = "6.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/load/-/load-6.2.8.tgz";
- sha512 = "JpbyXOXd8fJXdBh2ta0Q4w8ia6uK5FHzrTNmcvYBvflFuWly2LDTk2abbSl81zKkzswQMEd2UIYghXELRg8eTA==";
- };
- };
"@graphql-tools/load-7.4.1" = {
name = "_at_graphql-tools_slash_load";
packageName = "@graphql-tools/load";
@@ -3028,15 +3019,6 @@ let
sha512 = "Q240kcUszhXiAYudjuJgNuLgy9CryDP3wp83NOZQezfA6h3ByYKU7xI6DiKrdjyVaGpYN3ppUmdj0uf5GaXzMA==";
};
};
- "@graphql-tools/mock-8.4.4" = {
- name = "_at_graphql-tools_slash_mock";
- packageName = "@graphql-tools/mock";
- version = "8.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.4.4.tgz";
- sha512 = "lRdU6XaKxZk7qv4G+1IhbVF7gvb3AaOQUC3Xx1M0/1/fRwt+zcUOWzgC/LNjxAIOI2T8Eh9eqKyQXBIWbTA02Q==";
- };
- };
"@graphql-tools/schema-7.1.5" = {
name = "_at_graphql-tools_slash_schema";
packageName = "@graphql-tools/schema";
@@ -3127,15 +3109,6 @@ let
sha512 = "7DcOBFB+Dd84x9dxSm7qS4iJONMyfLnCJb8A19vGPffpu4SMJ3sFcgwibKFu5l6mMUiigKgXna2RRgWI+02bKQ==";
};
};
- "@graphql-typed-document-node/core-3.1.1" = {
- name = "_at_graphql-typed-document-node_slash_core";
- packageName = "@graphql-typed-document-node/core";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz";
- sha512 = "NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==";
- };
- };
"@grpc/grpc-js-1.3.8" = {
name = "_at_grpc_slash_grpc-js";
packageName = "@grpc/grpc-js";
@@ -3298,6 +3271,15 @@ let
sha512 = "JQlEKbcgEUjBFhLIF4iqM7u/9lwgHRBcpHrmUNCALK0Q3amXN6lxdoXLnF0sm11E9VqTmBALR87IlUg1bZ8A9A==";
};
};
+ "@humanwhocodes/config-array-0.9.2" = {
+ name = "_at_humanwhocodes_slash_config-array";
+ packageName = "@humanwhocodes/config-array";
+ version = "0.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.2.tgz";
+ sha512 = "UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA==";
+ };
+ };
"@humanwhocodes/object-schema-1.2.1" = {
name = "_at_humanwhocodes_slash_object-schema";
packageName = "@humanwhocodes/object-schema";
@@ -3631,31 +3613,22 @@ let
sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==";
};
};
- "@jsii/check-node-1.37.0" = {
+ "@jsii/check-node-1.47.0" = {
name = "_at_jsii_slash_check-node";
packageName = "@jsii/check-node";
- version = "1.37.0";
+ version = "1.47.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.37.0.tgz";
- sha512 = "s0jhnq/1X1IQQpKcAoUAd3KZ6X58nEjIi+vL4aC0iyDW6v2pmt8J5G/ilUZSbvplyJ2GdTMYi7NOCz2f3QAGZA==";
+ url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.47.0.tgz";
+ sha512 = "LSlbKTpMVYw1R3Be70sJJdJbuLWEFAMbGEHE731Je1QDTXTRm6Gc3NDvPUvTTuHEry8f2Wys+1pXNX06X4PKxQ==";
};
};
- "@jsii/check-node-1.46.0" = {
- name = "_at_jsii_slash_check-node";
- packageName = "@jsii/check-node";
- version = "1.46.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.46.0.tgz";
- sha512 = "dIJGSQrF4BXvzTG8idcimu2VCNctlDyoNsc+ETsoHu7T9pije0U0BnOrjUQ6ZJFpBvLZ6qzNA46gynzwWCXB6g==";
- };
- };
- "@jsii/spec-1.46.0" = {
+ "@jsii/spec-1.47.0" = {
name = "_at_jsii_slash_spec";
packageName = "@jsii/spec";
- version = "1.46.0";
+ version = "1.47.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.46.0.tgz";
- sha512 = "yp6rN23ve+F1/6g8Gwmp8PbrtqpMB05GMwJ8GGhvwmCLa0kBO8eALWvB/KtmuDJ4wllSojVvuK4rluUTTkvBWg==";
+ url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.47.0.tgz";
+ sha512 = "5F9Qw0lnK8mCumHvpA+XhoBJezgW6q92sLM2jsvo7bzXWXyRRfr1cHl1g5fxQ0yS82B5NMa1fN2n28BsEKs+Gw==";
};
};
"@kwsites/file-exists-1.1.1" = {
@@ -4558,13 +4531,13 @@ let
sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==";
};
};
- "@microsoft/load-themed-styles-1.10.231" = {
+ "@microsoft/load-themed-styles-1.10.234" = {
name = "_at_microsoft_slash_load-themed-styles";
packageName = "@microsoft/load-themed-styles";
- version = "1.10.231";
+ version = "1.10.234";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.231.tgz";
- sha512 = "F0XkQKGTRrAQJnexI8EARXyuxrNb9YFJbd/2TuTZO8tVKtbr2JhW4WxLoWX6u5VhZetUG5dcsO1LHiRbDWQ/pQ==";
+ url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.234.tgz";
+ sha512 = "kDCxWdgqPs5+Kb0e9+lxyGDOvdXDUvtqw0UVlQD2Qh19BOSTbadxn4jlSjGe0tY3Z9EOWhIeQ7Wshmgf5H66LA==";
};
};
"@mitmaro/errors-1.0.0" = {
@@ -4648,58 +4621,58 @@ let
sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==";
};
};
- "@node-red/editor-api-2.1.3" = {
+ "@node-red/editor-api-2.1.4" = {
name = "_at_node-red_slash_editor-api";
packageName = "@node-red/editor-api";
- version = "2.1.3";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-2.1.3.tgz";
- sha512 = "57r4f5/8Sz8Q7HEjlNWgzaMIavoWHas3boJhXpU0yLL1LBytzwZZh1jBCdYitROT37wruwPGH8XKR3s2FvBEjQ==";
+ url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-2.1.4.tgz";
+ sha512 = "FQn/lAIEa/1oJqkq8cPWMQ/RMiLkZDOFoYw6gM3WjAKwpX7AN/FuZi8R6qUfcn0cylwQzYzx43ggUq2/3f81xQ==";
};
};
- "@node-red/editor-client-2.1.3" = {
+ "@node-red/editor-client-2.1.4" = {
name = "_at_node-red_slash_editor-client";
packageName = "@node-red/editor-client";
- version = "2.1.3";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-2.1.3.tgz";
- sha512 = "omSk73AKgVTrSsEphEOFQtl4SBtATWPihGJJ4UabPkeY+OBcHRfgjroMHERZ80pXPmjwVLfC0GUN0OYUs08TYA==";
+ url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-2.1.4.tgz";
+ sha512 = "Q9HUZDnEw6VbQBs14yW01uV4KbIgqxqriFkwfEzfbi5dNag2sqQSrf6XSfg7OuqIf3iC10Wbm5/0Y67rMtV9gA==";
};
};
- "@node-red/nodes-2.1.3" = {
+ "@node-red/nodes-2.1.4" = {
name = "_at_node-red_slash_nodes";
packageName = "@node-red/nodes";
- version = "2.1.3";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-2.1.3.tgz";
- sha512 = "J2GOKY/4AoUK9BGBXEuPjhJQLGaaYbYtaH0GKQXfD6ROBiPQzbSOYIEWq8ZMXLdUXVcyyFTVBSIsy+2+RCdqEg==";
+ url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-2.1.4.tgz";
+ sha512 = "di57I/0BUMfpRL9vLBomOp1QIyStDwvb+TXUd54b8FEopfAn5h3E7avL6te7yZSUuKVipqUd54CHJepRubRxBQ==";
};
};
- "@node-red/registry-2.1.3" = {
+ "@node-red/registry-2.1.4" = {
name = "_at_node-red_slash_registry";
packageName = "@node-red/registry";
- version = "2.1.3";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/registry/-/registry-2.1.3.tgz";
- sha512 = "78FoG2AsMHiMYdV1fCMvAkwTKkdF+rP8mv5OfNa+iPhTU66n24AtnwFeWOdasc2ZIP4zd7Tbxr3pcT/+m0kFIw==";
+ url = "https://registry.npmjs.org/@node-red/registry/-/registry-2.1.4.tgz";
+ sha512 = "OinEVN4js8ewEf4q89FJxoCdGELXIjuZo+3AtlXDqZD8uJOnKnB48avXhrWuMFjYCJhQN8PUqulHj6Ru596lPA==";
};
};
- "@node-red/runtime-2.1.3" = {
+ "@node-red/runtime-2.1.4" = {
name = "_at_node-red_slash_runtime";
packageName = "@node-red/runtime";
- version = "2.1.3";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-2.1.3.tgz";
- sha512 = "+Vu7a14CcODQh/fQyYP7sanPc7CFWOK4JI2l9K0n4Oy3d/4TOQ12k3ync0cFpgmJ1I/foFIN/oIg7T2ZVjQvDA==";
+ url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-2.1.4.tgz";
+ sha512 = "fU6lvgmpcnxQPc0CEyvgvDtGmNsgS5k6zJ9No+9jPCAkUAO069pFrecCddo9j/sN+8FRw4ikwqvKI0uAgTFx1Q==";
};
};
- "@node-red/util-2.1.3" = {
+ "@node-red/util-2.1.4" = {
name = "_at_node-red_slash_util";
packageName = "@node-red/util";
- version = "2.1.3";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/util/-/util-2.1.3.tgz";
- sha512 = "FMqNwd7Lac3jm83uSQurR3N7E62jY6QDvOP2pQ4LCCtGYRKRFwukfzG9mzumioKS740vN8If8EBTIPQgRTSZ6A==";
+ url = "https://registry.npmjs.org/@node-red/util/-/util-2.1.4.tgz";
+ sha512 = "OdlMz2Q2ivfw1NoW2qi4ymB+WMRe3ICGkPkPhc1dlp1NSsuXXXNdi9jXglYo/cTF8v/QLihnXZf2ppCm4iiqRQ==";
};
};
"@nodelib/fs.scandir-2.1.5" = {
@@ -4738,13 +4711,13 @@ let
sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==";
};
};
- "@npmcli/arborist-4.0.5" = {
+ "@npmcli/arborist-4.1.0" = {
name = "_at_npmcli_slash_arborist";
packageName = "@npmcli/arborist";
- version = "4.0.5";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-4.0.5.tgz";
- sha512 = "WR2cqxzjsvmHJ9sKCdqBYG/qeiAXB9ev1iq1W2Rry7LxeJ7eDtTr4mOWe/TBvp6xFzevGecQc2YEWwExTuLZLg==";
+ url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-4.1.0.tgz";
+ sha512 = "bkaOqCuTUtpVOe1vaAP7TUihu64wIbnSDpsbqBJUsGFTLYXbjKwi6xj8Zx5cfHkM3nqyeEEbPYlGkt0TXjKrUg==";
};
};
"@npmcli/ci-detect-1.4.0" = {
@@ -4873,13 +4846,13 @@ let
sha512 = "5vwpq6kbvwkQwKqAoOU3L72GZ3Ta8RRrewKj9OJRolx28KLJJ8Dg9Rf7obRwt5jQA9bkYd8gqzMTrI7H3xLfaw==";
};
};
- "@oclif/command-1.8.6" = {
+ "@oclif/command-1.8.9" = {
name = "_at_oclif_slash_command";
packageName = "@oclif/command";
- version = "1.8.6";
+ version = "1.8.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.6.tgz";
- sha512 = "tIcGPpf7ndGe0Sp22RbPhZbwKjfrebHzCfe1SHRlqlJNy2xS3FT50i9p+dZmF+7Zpn4CEcBHag1TCdfFCTc1vQ==";
+ url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.9.tgz";
+ sha512 = "lrtLau+rCXlVyE4LWaDyhs5cFOYcI8+PRCshlKoRUuI6bC3wd+gQ6j5SxXtnR9XxOR6eDXnGZg7/0LB3GGGTpw==";
};
};
"@oclif/config-1.17.0" = {
@@ -4891,13 +4864,13 @@ let
sha512 = "Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA==";
};
};
- "@oclif/config-1.18.1" = {
+ "@oclif/config-1.18.2" = {
name = "_at_oclif_slash_config";
packageName = "@oclif/config";
- version = "1.18.1";
+ version = "1.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@oclif/config/-/config-1.18.1.tgz";
- sha512 = "twRJO5RRl3CCDaAASb6LiynfFQl/SbkWWOQy1l0kJZSMPysEhz+fk3BKfmlCCm451Btkp4UezHUwI1JtH+/zYg==";
+ url = "https://registry.npmjs.org/@oclif/config/-/config-1.18.2.tgz";
+ sha512 = "cE3qfHWv8hGRCP31j7fIS7BfCflm/BNZ2HNqHexH+fDrdF2f1D5S8VmXWLC77ffv3oDvWyvE9AZeR0RfmHCCaA==";
};
};
"@oclif/core-0.5.41" = {
@@ -5080,6 +5053,15 @@ let
sha512 = "r+fArdP5+TG6l1Rv/C9hVoty6tldw6cE2pRHNGmFPdyfrc696R6JjrQ3d7HdVqGwuzfyrcaLAKD7K8TX8aehUQ==";
};
};
+ "@octokit/plugin-throttling-3.5.2" = {
+ name = "_at_octokit_slash_plugin-throttling";
+ packageName = "@octokit/plugin-throttling";
+ version = "3.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-3.5.2.tgz";
+ sha512 = "Eu7kfJxU8vmHqWGNszWpg+GVp2tnAfax3XQV5CkYPEE69C+KvInJXW9WajgSeW+cxYe0UVdouzCtcreGNuJo7A==";
+ };
+ };
"@octokit/request-5.6.2" = {
name = "_at_octokit_slash_request";
packageName = "@octokit/request";
@@ -5809,13 +5791,13 @@ let
sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==";
};
};
- "@schematics/angular-13.0.3" = {
+ "@schematics/angular-13.0.4" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "13.0.3";
+ version = "13.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.0.3.tgz";
- sha512 = "qH6mnmGaDCuG1FM3vLdvSFDG394TeZO0ZvRDrw3iCYlX5Nkbz0Kvt0MPtWNZmlohwFhGlbXKVQiR++1dxa6eEA==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.0.4.tgz";
+ sha512 = "P9F5c8ApLbEyfNO4TZNsTyAdrtOjwIhrM/P+eEC4/x6nklWlEFE6TGMYTNjiK/RRhkbX1tBs8gcdJLYxtEqPSg==";
};
};
"@segment/loosely-validate-event-2.0.0" = {
@@ -5944,13 +5926,13 @@ let
sha512 = "8s73M1k+mST7Z/Rp8wgmZh50tjpwX+fqsbYYRuFGgyuWTvgqAlUflDOWAeQuDx4pEndWEqjbG09ZrZNqlHuZqQ==";
};
};
- "@sideway/address-4.1.2" = {
+ "@sideway/address-4.1.3" = {
name = "_at_sideway_slash_address";
packageName = "@sideway/address";
- version = "4.1.2";
+ version = "4.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@sideway/address/-/address-4.1.2.tgz";
- sha512 = "idTz8ibqWFrPU8kMirL0CoPH/A29XOzzAzpyN3zQ4kAWnzmNfFmRaoMNN6VI8ske5M73HZyhIaW4OuSFIdM4oA==";
+ url = "https://registry.npmjs.org/@sideway/address/-/address-4.1.3.tgz";
+ sha512 = "8ncEUtmnTsMmL7z1YPB47kPUq7LpKWJNFPsRzHiIajGC5uXlWGn+AmkYPcHNl8S4tcEGx+cnORnNYaw2wvL+LQ==";
};
};
"@sideway/formula-3.0.0" = {
@@ -6034,33 +6016,6 @@ let
sha512 = "ikwHOfJF0umx1eV/JpQDMsFxODvCSdD9zdIQVDEjcTNpfofz7+PZrjfKUFkG3iQ9mSUG3BwODv0XOEvTRNdovw==";
};
};
- "@skorfmann/ink-confirm-input-3.0.0" = {
- name = "_at_skorfmann_slash_ink-confirm-input";
- packageName = "@skorfmann/ink-confirm-input";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@skorfmann/ink-confirm-input/-/ink-confirm-input-3.0.0.tgz";
- sha512 = "mPZe3gBAV4ZDeYZbEs6WpNZuHHj7Hse9p44z6lrKBcbAMWnvApVOC7zZUpeQsUuWPTOWQRu/QSYElDKNajQ2oA==";
- };
- };
- "@skorfmann/jsii-srcmak-0.1.374" = {
- name = "_at_skorfmann_slash_jsii-srcmak";
- packageName = "@skorfmann/jsii-srcmak";
- version = "0.1.374";
- src = fetchurl {
- url = "https://registry.npmjs.org/@skorfmann/jsii-srcmak/-/jsii-srcmak-0.1.374.tgz";
- sha512 = "laXjQBxKD/592o4GXQVpGwR66Hdi0o4jn5lOl3ff3Mk3NnTQmeMYWeQYfk+CI5fJPkipy/brnqtxk3IoFjr2TA==";
- };
- };
- "@skorfmann/terraform-cloud-1.10.1" = {
- name = "_at_skorfmann_slash_terraform-cloud";
- packageName = "@skorfmann/terraform-cloud";
- version = "1.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@skorfmann/terraform-cloud/-/terraform-cloud-1.10.1.tgz";
- sha512 = "yQpxfH1VbwIcsyRQ8eN8qLJ76pZ4CQ1Ck1SmFtiKE7J790KFwC8o2r1dlTU130M/bv1eb/8gdPY1T3DLj40D8w==";
- };
- };
"@slack/client-3.16.0" = {
name = "_at_slack_slash_client";
packageName = "@slack/client";
@@ -6223,13 +6178,13 @@ let
sha512 = "AmyMQndtxMsM59eDeA0gGiw8T2LzNvDhx/xl+ygFXXrsw+yb/mit73ndHkiHKcRA1EpNHTyD1PN9ATxghzplfg==";
};
};
- "@textlint/ast-node-types-12.0.0" = {
+ "@textlint/ast-node-types-12.1.0" = {
name = "_at_textlint_slash_ast-node-types";
packageName = "@textlint/ast-node-types";
- version = "12.0.0";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-12.0.0.tgz";
- sha512 = "qUjmlpz1vR3AStBA9RPDCVT0/pGtePvBJ5Vb/0PzTrnr04iFktG6P6B1VOmgTh8J9Kl/FonQFo3A9M1Q3UH+JA==";
+ url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-12.1.0.tgz";
+ sha512 = "UlxqemrV/EnGTCl26OU7JhtFJpH7NZdgXvnsuII604orcIkvywUA1GGlg51grfbfqi+ar4zRsOb6fVbcbMZnKA==";
};
};
"@textlint/ast-node-types-4.4.3" = {
@@ -6241,67 +6196,67 @@ let
sha512 = "qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A==";
};
};
- "@textlint/ast-tester-12.0.2" = {
+ "@textlint/ast-tester-12.1.0" = {
name = "_at_textlint_slash_ast-tester";
packageName = "@textlint/ast-tester";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-12.0.2.tgz";
- sha512 = "kHta27+SJC0YxEyEdlNux6m2JepX920gc5x98lVBVYK6Wq6cAF67EEGl1o9ynqroIHEc3wTSEDOFwxXpnlfsNA==";
+ url = "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-12.1.0.tgz";
+ sha512 = "s3VHRDaULFYhxjJ3vP9LUIt2aHLnUB4XFUSRhUVnW4/GDOb1EXCGWFd+wtYy6jTtBg/5TR5ApdC6sNu/SLcb5w==";
};
};
- "@textlint/ast-traverse-12.0.2" = {
+ "@textlint/ast-traverse-12.1.0" = {
name = "_at_textlint_slash_ast-traverse";
packageName = "@textlint/ast-traverse";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-12.0.2.tgz";
- sha512 = "OrbGnwtqNAsX7jVSRKecc1Lp2tg54ntnTuvOHkYrZrlC72Hk7+7V/UFQBmFNQCe0cH6Tjb5FFFcgp6f8gM+ehw==";
+ url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-12.1.0.tgz";
+ sha512 = "NJCCMS7lxZ6Ed15zsosbe/5i/SyynqQsxOYxhsMHuyU/adx27WzNWLoFbgTdz6Wmn3Ok1PSFf0442MpoS6SP7g==";
};
};
- "@textlint/feature-flag-12.0.2" = {
+ "@textlint/feature-flag-12.1.0" = {
name = "_at_textlint_slash_feature-flag";
packageName = "@textlint/feature-flag";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-12.0.2.tgz";
- sha512 = "yNq5uErjFrVq1gghg3A8D77+E36wLXRws5LwSsoRC4LVPIGR+LYZ9BlkoyNTas8dOzGwTs6XZIcWCIWXy77M8Q==";
+ url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-12.1.0.tgz";
+ sha512 = "pQfA2bUXimBQjxT5hVmGGuFf1Cwwx26kbrcwkGHsgxgXlXkg1zboby5UCMOjWda/TbJjynzqDO0JaU24Ms9fZg==";
};
};
- "@textlint/fixer-formatter-12.0.2" = {
+ "@textlint/fixer-formatter-12.1.0" = {
name = "_at_textlint_slash_fixer-formatter";
packageName = "@textlint/fixer-formatter";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-12.0.2.tgz";
- sha512 = "ii49bDLVcgnnxmnaZFX0rDFEIGH3o6DGKnr76cfqy6+DWkGQlhBPyRdbx2bIF65KT+7nAMU0JjfEK+n/WIYFTA==";
+ url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-12.1.0.tgz";
+ sha512 = "ELG9ehkid+J0sRd0mVRbZ+2UOnLqowycrYsaHxDE+xf2s33OcogZa9i3Uact7y2oSCadX00oNLEhsQcwkAqvpw==";
};
};
- "@textlint/kernel-12.0.2" = {
+ "@textlint/kernel-12.1.0" = {
name = "_at_textlint_slash_kernel";
packageName = "@textlint/kernel";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-12.0.2.tgz";
- sha512 = "IVWC5xyHj58X3/sUXAOndOPMQMkvGaXXPCtLITm8rSwKRc4D/qF2hhwAisOu8XImIwBGzvhFlq+IM7cUW1qDtA==";
+ url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-12.1.0.tgz";
+ sha512 = "6crFn0Ng4Y8PnUvD8HdGMZUlxURx3YgbDv/Grp+7kg8qLlNAkvbyJ1cE8ZYJTF+PfJ1dK1FZmmlZsvrieI4KBQ==";
};
};
- "@textlint/linter-formatter-12.0.2" = {
+ "@textlint/linter-formatter-12.1.0" = {
name = "_at_textlint_slash_linter-formatter";
packageName = "@textlint/linter-formatter";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-12.0.2.tgz";
- sha512 = "xRTkLmMUnxW5Y6UXsIc9iLo8hyj5toYXVA/u5ABO4t3QObgtUllWi9W2eauZeY19pLTXweBHYxqG/tl3jTCpJQ==";
+ url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-12.1.0.tgz";
+ sha512 = "OoDvn7wD+pAV+W2loCKgxO9V11rYo14GVKkp8UktsqzeOzxxRY5iZUOALMOOde19fOklb2mEvs8AJ4lDaRDJVQ==";
};
};
- "@textlint/markdown-to-ast-12.0.2" = {
+ "@textlint/markdown-to-ast-12.1.0" = {
name = "_at_textlint_slash_markdown-to-ast";
packageName = "@textlint/markdown-to-ast";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-12.0.2.tgz";
- sha512 = "xAJ4U/fOL7FoX4bYeYRCsSIeTxFqzKd944AsVxAYrz2ZfKH0TtBSNDDtN22uBEXOrSCCR12Z7QuMcp+URyYWlw==";
+ url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-12.1.0.tgz";
+ sha512 = "22FRiXRxTrNVe1gbE18V8TxAtrWb9rKUb1+2mt5vXdgByZ+rHUJuEc4UonAiye/8+0eTrJ4brjPNXgYsJGeMKg==";
};
};
"@textlint/markdown-to-ast-6.1.7" = {
@@ -6313,49 +6268,49 @@ let
sha512 = "B0QtokeQR4a9+4q0NQr8T9l7A1fFihTN5Ze57tVgqW+3ymzXEouh8DvPHeNQ4T6jEkAThvdjk95mxAMpGRJ79w==";
};
};
- "@textlint/module-interop-12.0.2" = {
+ "@textlint/module-interop-12.1.0" = {
name = "_at_textlint_slash_module-interop";
packageName = "@textlint/module-interop";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-12.0.2.tgz";
- sha512 = "jnFx7B7Q/au49n5Kt/ttPhecvnJGj7643KzPxRNXy422nmafi1EfOZDMGkNEJhlVsQ9WzAnliTTXTFTrBhtVYA==";
+ url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-12.1.0.tgz";
+ sha512 = "J1VhFZ7lK1V3Ue7DCvZlGIFEuaongBCkir1XFL+f1yfhfQlgfM5TCp3OBBB6NhKPff8T6sPA9niBzMYr+NyKyA==";
};
};
- "@textlint/source-code-fixer-12.0.2" = {
+ "@textlint/source-code-fixer-12.1.0" = {
name = "_at_textlint_slash_source-code-fixer";
packageName = "@textlint/source-code-fixer";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-12.0.2.tgz";
- sha512 = "lWNndH7Z+KGo8NhM4e3I5fR0SfZeS25AW7MRQGsKbxHL8NSi6KmCXVK8unEls82+DKXW4VdjTTgVYTTOVGa3BA==";
+ url = "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-12.1.0.tgz";
+ sha512 = "3HEWCu8XlRpxK0UmUxGEzc4u0deaO0GtisqaEsCVHzlQFq6tzE+5VTdZ4ffon64UN8UV57EAC2ralEV/VgxkBQ==";
};
};
- "@textlint/text-to-ast-12.0.2" = {
+ "@textlint/text-to-ast-12.1.0" = {
name = "_at_textlint_slash_text-to-ast";
packageName = "@textlint/text-to-ast";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-12.0.2.tgz";
- sha512 = "vgB4k4CpY59XVrcvWLyFkCoMIVpiUheuy2FC1+Qb44hmoEYT26uglX7SEkBRTQvlzsjChgryzA2PFf2c1wkL0Q==";
+ url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-12.1.0.tgz";
+ sha512 = "s45+d0E9+gMKz+LC9+sJamU7SVrPyGYsXVLDRM5oxqjdb0MeIfjIFj7xl52MUpAHnywbPSgakB6HHiryiEAmqQ==";
};
};
- "@textlint/textlint-plugin-markdown-12.0.2" = {
+ "@textlint/textlint-plugin-markdown-12.1.0" = {
name = "_at_textlint_slash_textlint-plugin-markdown";
packageName = "@textlint/textlint-plugin-markdown";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-12.0.2.tgz";
- sha512 = "3qizGxt/cz0foqmUuqpk0hnQzXdDehG0CBrzUINJVa7btpDn8bD9fRYn88OdmGLtejVJR/pUDOOZk3RYYEVmlQ==";
+ url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-12.1.0.tgz";
+ sha512 = "bS67fq4Ea2JdKO4mJM4sGSATVI1bw9++IfOIsx2rc01NfZlTxwz4kM8lrhvNFHGY4URaN1kCULSgupeI/u/Seg==";
};
};
- "@textlint/textlint-plugin-text-12.0.2" = {
+ "@textlint/textlint-plugin-text-12.1.0" = {
name = "_at_textlint_slash_textlint-plugin-text";
packageName = "@textlint/textlint-plugin-text";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-12.0.2.tgz";
- sha512 = "giCTwrioT6bYlOZ+xf/c9ML1GYitQVrtToHzWI6AAs8szg+Q5+h3KCG921sDEGgZfqnljuBaYcHJsW/iNG1+UA==";
+ url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-12.1.0.tgz";
+ sha512 = "ItqpVEYLDYQkEk0ixeD4wElqkgkDErAGGDN/QK4cmIvtBeVd/GSIQFS1pwC1/Abmd4dTK3j/9z/dov1gVFZB1Q==";
};
};
"@textlint/types-1.5.5" = {
@@ -6367,22 +6322,22 @@ let
sha512 = "80P6fcqgsG9bP6JgR6W/E/oIx+71pplaicYCvvB4vMIeGk0OnWls4Q21kCpDYmq/C/ABtZ/Gy/Ov/8ExQPeQ7A==";
};
};
- "@textlint/types-12.0.2" = {
+ "@textlint/types-12.1.0" = {
name = "_at_textlint_slash_types";
packageName = "@textlint/types";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/types/-/types-12.0.2.tgz";
- sha512 = "w5aWSCd1sot1waiYw8KnmJNY1q+k9LDoaA6xjGbBuVBGJl0TLXIZoOP8HYFUcKFfJRpqGGob1geTHiyFdnyS0w==";
+ url = "https://registry.npmjs.org/@textlint/types/-/types-12.1.0.tgz";
+ sha512 = "O8RQUiGnBvBrwV/fLHp2vU+y3w223G+qKUzvW/k2eFwAdbtmCfordoKESXAIGuqAUZjgiM2+Mt3We1pY+tMR3g==";
};
};
- "@textlint/utils-12.0.2" = {
+ "@textlint/utils-12.1.0" = {
name = "_at_textlint_slash_utils";
packageName = "@textlint/utils";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/utils/-/utils-12.0.2.tgz";
- sha512 = "IYmibhDMWd8EmRvk8ii9AA/ecrZk5Wj5NNcKuB78+ae2PIVI1zWzQoieSvQyX7DLPRVH4S22RORiEpruRcDzng==";
+ url = "https://registry.npmjs.org/@textlint/utils/-/utils-12.1.0.tgz";
+ sha512 = "WE0bxQ/q+PgSslqEBuDi4Z8ZskBA0ZEehmKqcsd0hpDWU4VRU/R9o/WVXwia0APbQxgXPYWaHf1Rb7FAKUcVcg==";
};
};
"@tokenizer/token-0.1.1" = {
@@ -6520,13 +6475,13 @@ let
sha512 = "pkPtJUUY+Vwv6B1inAz55rQvivClHJxc9aVEPPmaq2cbyeMLCiDpbKpcKyX4LAwpNGi+SHBv0tHv6+0gXv0P2A==";
};
};
- "@types/babel__core-7.1.16" = {
+ "@types/babel__core-7.1.17" = {
name = "_at_types_slash_babel__core";
packageName = "@types/babel__core";
- version = "7.1.16";
+ version = "7.1.17";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.16.tgz";
- sha512 = "EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==";
+ url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.17.tgz";
+ sha512 = "6zzkezS9QEIL8yCBvXWxPTJPNuMeECJVxSOhxNY/jfq9LxOTHivaYTqr37n9LknWWRTIkzqH2UilS5QFvfa90A==";
};
};
"@types/babel__generator-7.6.3" = {
@@ -6592,15 +6547,6 @@ let
sha512 = "W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==";
};
};
- "@types/body-parser-1.19.1" = {
- name = "_at_types_slash_body-parser";
- packageName = "@types/body-parser";
- version = "1.19.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.1.tgz";
- sha512 = "a6bTJ21vFOGIkwM0kzh9Yr89ziVxq4vYH2fQ6N8AeipEzai/cFK6aGMArIkUeIdRIgpwQa+2bXiLuUJCpSf2Cg==";
- };
- };
"@types/body-parser-1.19.2" = {
name = "_at_types_slash_body-parser";
packageName = "@types/body-parser";
@@ -6826,13 +6772,13 @@ let
sha512 = "VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==";
};
};
- "@types/eslint-8.2.0" = {
+ "@types/eslint-8.2.1" = {
name = "_at_types_slash_eslint";
packageName = "@types/eslint";
- version = "8.2.0";
+ version = "8.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.2.0.tgz";
- sha512 = "74hbvsnc+7TEDa1z5YLSe4/q8hGYB3USNvCuzHUJrjPV6hXaq8IXcngCrHkuvFt0+8rFz7xYXrHgNayIX0UZvQ==";
+ url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.2.1.tgz";
+ sha512 = "UP9rzNn/XyGwb5RQ2fok+DzcIRIYwc16qTXse5+Smsy8MOIccCChT15KAwnsgQx4PzJkaMq4myFyZ4CL5TjhIQ==";
};
};
"@types/eslint-scope-3.7.1" = {
@@ -6898,15 +6844,6 @@ let
sha512 = "wLhcKh3PMlyA2cNAB9sjM1BntnhPMiM0JOBwPBqttjHev2428MLEB4AYVN+d8s2iyCVZac+o41Pflm/ZH5vLXQ==";
};
};
- "@types/express-serve-static-core-4.17.24" = {
- name = "_at_types_slash_express-serve-static-core";
- packageName = "@types/express-serve-static-core";
- version = "4.17.24";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.24.tgz";
- sha512 = "3UJuW+Qxhzwjq3xhwXm2onQcFHn76frIYVbTu+kn24LFxI+dEhdfISDFovPB8VpEgW8oQCTpRuCe+0zJxB7NEA==";
- };
- };
"@types/express-serve-static-core-4.17.26" = {
name = "_at_types_slash_express-serve-static-core";
packageName = "@types/express-serve-static-core";
@@ -7438,6 +7375,15 @@ let
sha512 = "USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg==";
};
};
+ "@types/node-14.18.0" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "14.18.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-14.18.0.tgz";
+ sha512 = "0GeIl2kmVMXEnx8tg1SlG6Gg8vkqirrW752KqolYo1PHevhhZN3bhJ67qHj+bQaINhX0Ra3TlWwRvMCd9iEfNQ==";
+ };
+ };
"@types/node-15.14.9" = {
name = "_at_types_slash_node";
packageName = "@types/node";
@@ -7447,15 +7393,6 @@ let
sha512 = "qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==";
};
};
- "@types/node-16.11.10" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "16.11.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz";
- sha512 = "3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==";
- };
- };
"@types/node-16.11.11" = {
name = "_at_types_slash_node";
packageName = "@types/node";
@@ -7465,6 +7402,15 @@ let
sha512 = "KB0sixD67CeecHC33MYn+eYARkqTheIRNuu97y2XMjR7Wu3XibO1vaY6VBV6O/a89SPI81cEUIYT87UqUWlZNw==";
};
};
+ "@types/node-16.11.12" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "16.11.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-16.11.12.tgz";
+ sha512 = "+2Iggwg7PxoO5Kyhvsq9VarmPbIelXP070HMImEpbtGCoyWNINQj4wzjbQCXzdHTRXnqufutJb5KAURZANNBAw==";
+ };
+ };
"@types/node-16.11.7" = {
name = "_at_types_slash_node";
packageName = "@types/node";
@@ -8005,6 +7951,15 @@ let
sha512 = "SqQ+LhVZaJi7c7sYVkjWALDigi/Wy7h7Iu72gkQp8Y8OWw/DddEVBrTSKu86pQftV2+Gm8lYM61hadPKqyaIeg==";
};
};
+ "@types/ws-8.2.2" = {
+ name = "_at_types_slash_ws";
+ packageName = "@types/ws";
+ version = "8.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/ws/-/ws-8.2.2.tgz";
+ sha512 = "NOn5eIcgWLOo6qW8AcuLZ7G8PycXu0xTxxkS6Q18VWFxgPUSOwV0pBj2a/4viNZVu25i7RIB7GttdkAIUUXOOg==";
+ };
+ };
"@types/yargs-15.0.14" = {
name = "_at_types_slash_yargs";
packageName = "@types/yargs";
@@ -8320,31 +8275,31 @@ let
sha512 = "B4Rc4wGgxTAOivy0tmBEuPAbSYeTzv3dusoQUOW1CVT3N5zYkEuxVj8OXmUQ1YECWaK+IjvQQMFkBuXt//lp7g==";
};
};
- "@vue/compiler-core-3.2.23" = {
+ "@vue/compiler-core-3.2.24" = {
name = "_at_vue_slash_compiler-core";
packageName = "@vue/compiler-core";
- version = "3.2.23";
+ version = "3.2.24";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.23.tgz";
- sha512 = "4ZhiI/orx+7EJ1B+0zjgvXMV2uRN+XBfG06UN2sJfND9rH5gtEQT3QmO4erum1o6Irl7y754W8/KSaDJh4EUQg==";
+ url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.24.tgz";
+ sha512 = "A0SxB2HAggKzP57LDin5gfgWOTwFyGCtQ5MTMNBADnfQYALWnYuC8kMI0DhRSplGTWRvn9Z2DAnG8f35BnojuA==";
};
};
- "@vue/compiler-dom-3.2.23" = {
+ "@vue/compiler-dom-3.2.24" = {
name = "_at_vue_slash_compiler-dom";
packageName = "@vue/compiler-dom";
- version = "3.2.23";
+ version = "3.2.24";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.23.tgz";
- sha512 = "X2Nw8QFc5lgoK3kio5ktM95nqmLUH+q+N/PbV4kCHzF1avqv/EGLnAhaaF0Iu4bewNvHJAAhhwPZFeoV/22nbw==";
+ url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.24.tgz";
+ sha512 = "KQEm8r0JFsrNNIfbD28pcwMvHpcJcwjVR1XWFcD0yyQ8eREd7IXhT7J6j7iNCSE/TIo78NOvkwbyX+lnIm836w==";
};
};
- "@vue/shared-3.2.23" = {
+ "@vue/shared-3.2.24" = {
name = "_at_vue_slash_shared";
packageName = "@vue/shared";
- version = "3.2.23";
+ version = "3.2.24";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.23.tgz";
- sha512 = "U+/Jefa0QfXUF2qVy9Dqlrb6HKJSr9/wJcM66wXmWcTOoqg7hOWzF4qruDle51pyF4x3wMn6TSH54UdjKjCKMA==";
+ url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.24.tgz";
+ sha512 = "BUgRiZCkCrqDps5aQ9av05xcge3rn092ztKIh17tHkeEFgP4zfXMQWBA2zfdoCdCEdBL26xtOv+FZYiOp9RUDA==";
};
};
"@webassemblyjs/ast-1.11.1" = {
@@ -8869,15 +8824,6 @@ let
sha512 = "ZkVeqEmRpBV2GHvjjUZqEai2PpUbuq8Bqd//vEYsp63J8WyexI8ppCqVS3Zs0QADf6aWuPdU+0XsPI647PVlQA==";
};
};
- "@wry/context-0.6.1" = {
- name = "_at_wry_slash_context";
- packageName = "@wry/context";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@wry/context/-/context-0.6.1.tgz";
- sha512 = "LOmVnY1iTU2D8tv4Xf6MVMZZ+juIJ87Kt/plMijjN20NMAXGmH4u8bS1t0uT74cZ5gwpocYueV58YwyI8y+GKw==";
- };
- };
"@wry/equality-0.1.11" = {
name = "_at_wry_slash_equality";
packageName = "@wry/equality";
@@ -8887,24 +8833,6 @@ let
sha512 = "mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA==";
};
};
- "@wry/equality-0.5.2" = {
- name = "_at_wry_slash_equality";
- packageName = "@wry/equality";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@wry/equality/-/equality-0.5.2.tgz";
- sha512 = "oVMxbUXL48EV/C0/M7gLVsoK6qRHPS85x8zECofEZOVvxGmIPLA9o5Z27cc2PoAyZz1S2VoM2A7FLAnpfGlneA==";
- };
- };
- "@wry/trie-0.3.1" = {
- name = "_at_wry_slash_trie";
- packageName = "@wry/trie";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@wry/trie/-/trie-0.3.1.tgz";
- sha512 = "WwB53ikYudh9pIorgxrkHKrQZcCqNM/Q/bDzZBffEaGUKGuHrRb3zZUT9Sh2qw9yogC7SsdRmQ1ER0pqvd3bfw==";
- };
- };
"@xmldom/xmldom-0.7.5" = {
name = "_at_xmldom_slash_xmldom";
packageName = "@xmldom/xmldom";
@@ -9445,15 +9373,6 @@ let
sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==";
};
};
- "acorn-8.5.0" = {
- name = "acorn";
- packageName = "acorn";
- version = "8.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz";
- sha512 = "yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==";
- };
- };
"acorn-8.6.0" = {
name = "acorn";
packageName = "acorn";
@@ -10444,15 +10363,6 @@ let
sha512 = "y8H99NExU1Sk4TvcaUxTdzfq2SZo6uSj5dyh75XSQvbpH6gdAXIW9MaBcvlNC7n0cVPsidHmOcHOWxJ/pTXGjA==";
};
};
- "apollo-datasource-3.3.0" = {
- name = "apollo-datasource";
- packageName = "apollo-datasource";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-3.3.0.tgz";
- sha512 = "It8POTZTOCAnedRj2izEVeySN06LIfojigZjWaOY7voLe0DIgtvhql91xr27fuIWsR/Ew9twO3dLBjjvy34J4Q==";
- };
- };
"apollo-graphql-0.9.5" = {
name = "apollo-graphql";
packageName = "apollo-graphql";
@@ -10489,15 +10399,6 @@ let
sha512 = "B3XmnkH6Y458iV6OsA7AhfwvTgeZnFq9nPVjbxmLKnvfkEl8hYADtz724uPa0WeBiD7DSFcnLtqg9yGmCkBohg==";
};
};
- "apollo-reporting-protobuf-3.2.0" = {
- name = "apollo-reporting-protobuf";
- packageName = "apollo-reporting-protobuf";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.2.0.tgz";
- sha512 = "2v/5IRJeTGakCJo8kS2LeKUcLsgqxO/HpEyu1EaW79F0CsvrIk10tOIGxouoOgtVl5e1wfGePJ849CUWWczx2A==";
- };
- };
"apollo-server-caching-0.7.0" = {
name = "apollo-server-caching";
packageName = "apollo-server-caching";
@@ -10507,15 +10408,6 @@ let
sha512 = "MsVCuf/2FxuTFVhGLK13B+TZH9tBd2qkyoXKKILIiGcZ5CDUEBO14vIV63aNkMkS1xxvK2U4wBcuuNj/VH2Mkw==";
};
};
- "apollo-server-caching-3.3.0" = {
- name = "apollo-server-caching";
- packageName = "apollo-server-caching";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-3.3.0.tgz";
- sha512 = "Wgcb0ArjZ5DjQ7ID+tvxUcZ7Yxdbk5l1MxZL8D8gkyjooOkhPNzjRVQ7ubPoXqO54PrOMOTm1ejVhsF+AfIirQ==";
- };
- };
"apollo-server-core-2.25.3" = {
name = "apollo-server-core";
packageName = "apollo-server-core";
@@ -10525,15 +10417,6 @@ let
sha512 = "Midow3uZoJ9TjFNeCNSiWElTVZlvmB7G7tG6PPoxIR9Px90/v16Q6EzunDIO0rTJHRC3+yCwZkwtf8w2AcP0sA==";
};
};
- "apollo-server-core-3.5.0" = {
- name = "apollo-server-core";
- packageName = "apollo-server-core";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.5.0.tgz";
- sha512 = "c3wEnPSnzvWvYvRJq1B+yIpa+vBvm0kq0tvD4j/IOw/F1s3sadu43Xr4FiLw++UfeLyh3aS5Wk68hjvrW1ceiQ==";
- };
- };
"apollo-server-env-3.1.0" = {
name = "apollo-server-env";
packageName = "apollo-server-env";
@@ -10543,15 +10426,6 @@ let
sha512 = "iGdZgEOAuVop3vb0F2J3+kaBVi4caMoxefHosxmgzAbbSpvWehB8Y1QiSyyMeouYC38XNVk5wnZl+jdGSsWsIQ==";
};
};
- "apollo-server-env-4.2.0" = {
- name = "apollo-server-env";
- packageName = "apollo-server-env";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-4.2.0.tgz";
- sha512 = "4xJ+PCoWsFLj4rU6iXrIhqD7nI42goi4Iqrhsof9680ljSzkzd+PCwZsja3mHOFXKUQQUvJ7StVSgwaiRu45+A==";
- };
- };
"apollo-server-errors-2.5.0" = {
name = "apollo-server-errors";
packageName = "apollo-server-errors";
@@ -10561,15 +10435,6 @@ let
sha512 = "lO5oTjgiC3vlVg2RKr3RiXIIQ5pGXBFxYGGUkKDhTud3jMIhs+gel8L8zsEjKaKxkjHhCQAA/bcEfYiKkGQIvA==";
};
};
- "apollo-server-errors-3.3.0" = {
- name = "apollo-server-errors";
- packageName = "apollo-server-errors";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-3.3.0.tgz";
- sha512 = "9/MNlPZBbEjcCdJcUSbKbVEBT9xZS8GSpX7T/TyzcxHSbsXJszSDSipQNGC+PRKTKAUnv61IONScVyLKEZ5XEQ==";
- };
- };
"apollo-server-express-2.25.3" = {
name = "apollo-server-express";
packageName = "apollo-server-express";
@@ -10579,15 +10444,6 @@ let
sha512 = "tTFYn0oKH2qqLwVj7Ez2+MiKleXACODiGh5IxsB7VuYCPMAi9Yl8iUSlwTjQUvgCWfReZjnf0vFL2k5YhDlrtQ==";
};
};
- "apollo-server-express-3.5.0" = {
- name = "apollo-server-express";
- packageName = "apollo-server-express";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.5.0.tgz";
- sha512 = "eFyBC4ate/g5GrvxM+HrtiElxCEbvG+CiJ0/R1i62L+wzXDhgD6MU0SW17ceS1mpBJgDxURu/VS5hUSNyWMa3Q==";
- };
- };
"apollo-server-plugin-base-0.13.0" = {
name = "apollo-server-plugin-base";
packageName = "apollo-server-plugin-base";
@@ -10597,15 +10453,6 @@ let
sha512 = "L3TMmq2YE6BU6I4Tmgygmd0W55L+6XfD9137k+cWEBFu50vRY4Re+d+fL5WuPkk5xSPKd/PIaqzidu5V/zz8Kg==";
};
};
- "apollo-server-plugin-base-3.4.0" = {
- name = "apollo-server-plugin-base";
- packageName = "apollo-server-plugin-base";
- version = "3.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-3.4.0.tgz";
- sha512 = "Z9musk7Z/1v+Db6aOoxcHfmsgej2yEBzBz5kVGOc81/XAtdv6bjasKSLC3RiySAUzWSLBJRUeEGIEVhhk/j2Zg==";
- };
- };
"apollo-server-types-0.9.0" = {
name = "apollo-server-types";
packageName = "apollo-server-types";
@@ -10615,15 +10462,6 @@ let
sha512 = "qk9tg4Imwpk732JJHBkhW0jzfG0nFsLqK2DY6UhvJf7jLnRePYsPxWfPiNkxni27pLE2tiNlCwoDFSeWqpZyBg==";
};
};
- "apollo-server-types-3.4.0" = {
- name = "apollo-server-types";
- packageName = "apollo-server-types";
- version = "3.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-3.4.0.tgz";
- sha512 = "iFNRENtxDoFWoY+KxpGP+TYyRnqUPqUTubMJVgiXPDvOPFL8dzqGGmqq1g/VCeWFHRJTPBLWhOfQU7ktwDEjnQ==";
- };
- };
"apollo-tracing-0.15.0" = {
name = "apollo-tracing";
packageName = "apollo-tracing";
@@ -12064,13 +11902,13 @@ let
sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3";
};
};
- "aws-sdk-2.1039.0" = {
+ "aws-sdk-2.1044.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.1039.0";
+ version = "2.1044.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1039.0.tgz";
- sha512 = "vrWWUNkRp+psMj56tKhTSKAXtROz2ccQ0NamMt/OS8jEt54ZIhjMeJDkbRucMEPQCeWR8Ma2g6ITmZPVDwUYaw==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1044.0.tgz";
+ sha512 = "n55uGUONQGXteGGG1QlZ1rKx447KSuV/x6jUGNf2nOl41qMI8ZgLUhNUt0uOtw3qJrCTanzCyR/JKBq2PMiqEQ==";
};
};
"aws-sdk-2.920.0" = {
@@ -15710,13 +15548,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001283" = {
+ "caniuse-lite-1.0.30001285" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001283";
+ version = "1.0.30001285";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001283.tgz";
- sha512 = "9RoKo841j1GQFSJz/nCXOj0sD7tHBtlowjYlrqIUS812x9/emfBLBt6IyMz1zIaYc/eRL8Cs6HPUVi2Hzq4sIg==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001285.tgz";
+ sha512 = "KAOkuUtcQ901MtmvxfKD+ODHH9YVDYnBt+TGYSz2KIfnq22CiArbUxXPN9067gNbgMlnNYRSwho8OPXZPALB9Q==";
};
};
"canvas-2.8.0" = {
@@ -15881,31 +15719,31 @@ let
sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==";
};
};
- "cdk8s-1.1.48" = {
+ "cdk8s-1.2.5" = {
name = "cdk8s";
packageName = "cdk8s";
- version = "1.1.48";
+ version = "1.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.1.48.tgz";
- sha512 = "62+8+/jikWROpKZxRCG8vL3NrCMoAA0eqY+SyvIi8+7RGHUv7ELnGJ9kbVqAZJHljhwCablBMTEnOb2UFB91QA==";
+ url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.2.5.tgz";
+ sha512 = "P+6kP/wGZoKEK6BYsFe13yEHF90tnz1sbPuz9ReIJ9HlKbrgfBpr8ZfUnMcwK505LrFRzjB2LJ2z516swq30/A==";
};
};
- "cdk8s-plus-22-1.0.0-beta.54" = {
+ "cdk8s-plus-22-1.0.0-beta.57" = {
name = "cdk8s-plus-22";
packageName = "cdk8s-plus-22";
- version = "1.0.0-beta.54";
+ version = "1.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.54.tgz";
- sha512 = "I7UmjEaPd59dXtwAkmYtVXrbyXWEq2li4NeCmL8fmtJsM3ZYxMhTPxbBlHbjCP/Pm2MYr7kRNnu7LVHGlgC48w==";
+ url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.57.tgz";
+ sha512 = "qoIEUIRjNnDwcC+avBMXDBnFNnJkBNlZbuFMIhTg3HF3VOVVrxSMj0luIW8uxvJs+/iRmucacggfZX4tC614Sw==";
};
};
- "cdktf-0.7.0" = {
+ "cdktf-0.8.1" = {
name = "cdktf";
packageName = "cdktf";
- version = "0.7.0";
+ version = "0.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cdktf/-/cdktf-0.7.0.tgz";
- sha512 = "AhT3I6O3XAeBh2t2MiiAuPelPXmtaD4P3wIbcDtPxtlAX4gO5jTGVNHqHp11SdwvbncbDuhetdI7Egyor/EsEQ==";
+ url = "https://registry.npmjs.org/cdktf/-/cdktf-0.8.1.tgz";
+ sha512 = "12SZiQvl8r6/Y77dDVlIeYym8ny4Mh3M8WNwWNXV0Gy9S4xJyODKYuKYCleaiJxwtHOkkN7Hn0S3RxAZyx3eRg==";
};
};
"center-align-0.1.3" = {
@@ -16043,6 +15881,15 @@ let
sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==";
};
};
+ "chalk-5.0.0" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chalk/-/chalk-5.0.0.tgz";
+ sha512 = "/duVOqst+luxCQRKEo4bNxinsOQtMP80ZYm7mMqzuh5PociNL0PvmHFvREJ9ueYL2TxlHjBcmLCdmocx9Vg+IQ==";
+ };
+ };
"chance-1.0.18" = {
name = "chance";
packageName = "chance";
@@ -16196,13 +16043,13 @@ let
sha512 = "+2jlOobSk52c1VU6fzkh3UwqHMdSlgH1xFv9FKMqHiNCpXsGPQa/+81AFa+i3jZ253Mq9aAycPwDjnn1XbRNNw==";
};
};
- "chart.js-3.6.0" = {
+ "chart.js-3.6.2" = {
name = "chart.js";
packageName = "chart.js";
- version = "3.6.0";
+ version = "3.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/chart.js/-/chart.js-3.6.0.tgz";
- sha512 = "iOzzDKePL+bj+ccIsVAgWQehCXv8xOKGbaU2fO/myivH736zcx535PGJzQGanvcSGVOqX6yuLZsN3ygcQ35UgQ==";
+ url = "https://registry.npmjs.org/chart.js/-/chart.js-3.6.2.tgz";
+ sha512 = "Xz7f/fgtVltfQYWq0zL1Xbv7N2inpG+B54p3D5FSvpCdy3sM+oZhbqa42eNuYXltaVvajgX5UpKCU2GeeJIgxg==";
};
};
"chartjs-color-2.4.1" = {
@@ -16907,15 +16754,6 @@ let
sha512 = "1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==";
};
};
- "cli-spinners-2.6.0" = {
- name = "cli-spinners";
- packageName = "cli-spinners";
- version = "2.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz";
- sha512 = "t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q==";
- };
- };
"cli-spinners-2.6.1" = {
name = "cli-spinners";
packageName = "cli-spinners";
@@ -16934,13 +16772,13 @@ let
sha512 = "t3LcCdPvrypZovStadWdRS4a186gsq9aoHJYTIer55VY20YdVjGVHDV4uPWcWCXTw1tPjfwlRGE7zKMWJ663Sw==";
};
};
- "cli-table-0.3.9" = {
+ "cli-table-0.3.11" = {
name = "cli-table";
packageName = "cli-table";
- version = "0.3.9";
+ version = "0.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.9.tgz";
- sha512 = "7eA6hFtAZwVx3dWAGoaBqTrzWko5jRUFKpHT64ZHkJpaA3y5wf5NlLjguqTRmqycatJZiwftODYYyGNLbQ7MuA==";
+ url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz";
+ sha512 = "IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==";
};
};
"cli-table3-0.5.1" = {
@@ -17015,13 +16853,13 @@ let
sha512 = "/1owvF0SZ5Gn54cgrikJ0QskgTzeg30HGjkmjFoaHDJzAqFpuX1DBpFR8aLvsE1J5s9MgeYRENQK4BFwOag5VA==";
};
};
- "cli-ux-5.6.4" = {
+ "cli-ux-5.6.6" = {
name = "cli-ux";
packageName = "cli-ux";
- version = "5.6.4";
+ version = "5.6.6";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-ux/-/cli-ux-5.6.4.tgz";
- sha512 = "jW2oROKZdb3NlIHCMjjtaanuElHB/IhYPE5kgsbhmNtiBcUg/4L5QYyDbJ0n/wF+LAb/tl+Bh30lAHq5bmsbMA==";
+ url = "https://registry.npmjs.org/cli-ux/-/cli-ux-5.6.6.tgz";
+ sha512 = "4wUB34zoFklcZV0z5YiOM5IqVMMt9c3TK3QYRK3dqyk3XoRC0ybiWDWHfsMDjkKrzsVTw95rXn9NrzSHbae4pg==";
};
};
"cli-width-1.1.1" = {
@@ -17519,13 +17357,13 @@ let
sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg==";
};
};
- "codemaker-1.46.0" = {
+ "codemaker-1.47.0" = {
name = "codemaker";
packageName = "codemaker";
- version = "1.46.0";
+ version = "1.47.0";
src = fetchurl {
- url = "https://registry.npmjs.org/codemaker/-/codemaker-1.46.0.tgz";
- sha512 = "sCGZXQkc6DOkchW9S1J5RPzQx7DP9HW2BtfThaCkiDGoKytbvDsUDFGxRX/6823jQxvjkOwZVooOwD+0+hYYEg==";
+ url = "https://registry.npmjs.org/codemaker/-/codemaker-1.47.0.tgz";
+ sha512 = "3Ab891O2IKCAOJE1rrgHS1z91AKlxoeQ2gfvL9bDv2K7zSrEN0IwI/YCgrIsUsf1RQFIOKDnizhFjn2PAap8Wg==";
};
};
"codepage-1.4.0" = {
@@ -17645,13 +17483,13 @@ let
sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==";
};
};
- "color-string-1.8.1" = {
+ "color-string-1.9.0" = {
name = "color-string";
packageName = "color-string";
- version = "1.8.1";
+ version = "1.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/color-string/-/color-string-1.8.1.tgz";
- sha512 = "AGfGNQbnXlYqPStIx3QB2XA3Wy8vjbreqklmCiGVwcoHSLN5KIpDZDflYnXlBliKHI8CTBX3PsCgG+xfZgqK8A==";
+ url = "https://registry.npmjs.org/color-string/-/color-string-1.9.0.tgz";
+ sha512 = "9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==";
};
};
"color-support-1.1.3" = {
@@ -18554,22 +18392,22 @@ let
sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
};
};
- "constructs-10.0.9" = {
+ "constructs-10.0.10" = {
name = "constructs";
packageName = "constructs";
- version = "10.0.9";
+ version = "10.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-10.0.9.tgz";
- sha512 = "C9la/fcnCKe3XIjKPbWuD49mnOYqSWdiMI6TNJmF0ao3pJw6Hap03Q4nsmCxpWMXuMzM546Kw/WnW7ElB3g4OA==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-10.0.10.tgz";
+ sha512 = "lQqY39wuQksXfm63rxcplif8CpW7ZuGWqQNGG/qoxfVeBjG4DWpCzD3K3pVukRCe+EhvsIvLpZxfL6SKLAfvlw==";
};
};
- "constructs-3.3.161" = {
+ "constructs-3.3.162" = {
name = "constructs";
packageName = "constructs";
- version = "3.3.161";
+ version = "3.3.162";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-3.3.161.tgz";
- sha512 = "/27vW3fo0iyb3py4vKI1BduEYmv8vv8uJgLXvI+5F0Jbnn0/E+As2wkGMa7bumhzCd0Ckv/USkAXstGYVXTYQA==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-3.3.162.tgz";
+ sha512 = "ODzbe3frWuIyIhBJs86pqWQWQYFRHHiM0DW4mnJcFgrMn6pyt2viUaAy38RFLDIGrlejy2oOFrEaOArx/CqFRw==";
};
};
"consume-http-header-1.0.0" = {
@@ -18645,22 +18483,22 @@ let
sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
};
};
- "contentful-management-7.45.2" = {
+ "contentful-management-7.45.5" = {
name = "contentful-management";
packageName = "contentful-management";
- version = "7.45.2";
+ version = "7.45.5";
src = fetchurl {
- url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.45.2.tgz";
- sha512 = "NFAkV6mxqOW4SIx8pAhraQq234Gl8+Np8cxaw7+bB9DCelpxmWvySyaoDczAaYmXLZcejeOFt/NS+Rhp7hPvJA==";
+ url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.45.5.tgz";
+ sha512 = "1HtdEmBySFvOg9tlBdl+2SvpgVX4nB6nWy7XwVzA/6tjpp57IKLEWEa+I46JlMmw8dcl2w+Yw8i3EOKoZJktrQ==";
};
};
- "contentful-sdk-core-6.10.3" = {
+ "contentful-sdk-core-6.10.4" = {
name = "contentful-sdk-core";
packageName = "contentful-sdk-core";
- version = "6.10.3";
+ version = "6.10.4";
src = fetchurl {
- url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.10.3.tgz";
- sha512 = "IUBkAU1sJuVaEa2Nv1NKK5ImqpBZ5Q3EmaCFmMZx/UHKa+i98nDCSTUBOL1aJnpZ/s3AaSramsh73VQ4aK2kyA==";
+ url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.10.4.tgz";
+ sha512 = "vnivU13pKqFzs/eEugqOaDkKce6ZljBkpp6l25MsG8LA1HPCQNBnIkqP5VUbwk/ub7tkHteV9HtoTnmpdvB+Zg==";
};
};
"continuable-1.1.8" = {
@@ -18969,15 +18807,6 @@ let
sha512 = "ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==";
};
};
- "cookie-parser-1.4.5" = {
- name = "cookie-parser";
- packageName = "cookie-parser";
- version = "1.4.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.5.tgz";
- sha512 = "f13bPUj/gG/5mDr+xLmSxxDsB9DQiTIfhJS/sqjrmfAWiAN+x2O4i/XguTL9yDZ+/IFDanJ+5x7hC4CXT9Tdzw==";
- };
- };
"cookie-parser-1.4.6" = {
name = "cookie-parser";
packageName = "cookie-parser";
@@ -19158,31 +18987,31 @@ let
sha512 = "WJeQqq6jOYgVgg4NrXKL0KLQhi0CT4ZOCvFL+3CQ5o7I6J8HkT5wd53EadMfqTDp1so/MT1J+w2ujhWcCJtN7w==";
};
};
- "core-js-3.19.2" = {
+ "core-js-3.19.3" = {
name = "core-js";
packageName = "core-js";
- version = "3.19.2";
+ version = "3.19.3";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.19.2.tgz";
- sha512 = "ciYCResnLIATSsXuXnIOH4CbdfgV+H1Ltg16hJFN7/v6OxqnFr/IFGeLacaZ+fHLAm0TBbXwNK9/DNBzBUrO/g==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.19.3.tgz";
+ sha512 = "LeLBMgEGSsG7giquSzvgBrTS7V5UL6ks3eQlUSbN8dJStlLFiRzUm5iqsRyzUB8carhfKjkJ2vzKqE6z1Vga9g==";
};
};
- "core-js-compat-3.19.2" = {
+ "core-js-compat-3.19.3" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.19.2";
+ version = "3.19.3";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.19.2.tgz";
- sha512 = "ObBY1W5vx/LFFMaL1P5Udo4Npib6fu+cMokeziWkA8Tns4FcDemKF5j9JvaI5JhdkW8EQJQGJN1EcrzmEwuAqQ==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.19.3.tgz";
+ sha512 = "59tYzuWgEEVU9r+SRgceIGXSSUn47JknoiXW6Oq7RW8QHjXWz3/vp8pa7dbtuVu40sewz3OP3JmQEcDdztrLhA==";
};
};
- "core-js-pure-3.19.2" = {
+ "core-js-pure-3.19.3" = {
name = "core-js-pure";
packageName = "core-js-pure";
- version = "3.19.2";
+ version = "3.19.3";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.19.2.tgz";
- sha512 = "5LkcgQEy8pFeVnd/zomkUBSwnmIxuF1C8E9KrMAbOc8f34IBT9RGvTYeNDdp1PnvMJrrVhvk1hg/yVV5h/znlg==";
+ url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.19.3.tgz";
+ sha512 = "N3JruInmCyt7EJj5mAq3csCgGYgiSqu7p7TQp2KOztr180/OAIxyIvL1FCjzgmQk/t3Yniua50Fsak7FShI9lA==";
};
};
"core-util-is-1.0.2" = {
@@ -19428,13 +19257,13 @@ let
sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6";
};
};
- "create-gatsby-2.2.0" = {
+ "create-gatsby-2.3.0" = {
name = "create-gatsby";
packageName = "create-gatsby";
- version = "2.2.0";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.2.0.tgz";
- sha512 = "nQ3t2+qpSnepqxFeBrkL6os5TR2TN4Nc1cCX/3YCWzbMQ7etc54Yjsw/PRFBUFtbt9RJk/7CURtJKFHDNsHtZw==";
+ url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.3.0.tgz";
+ sha512 = "nnscdTqSZ/LUUg825sY+XkbEKbUdoJKPpuMfOuTli1ZbmClOdwEa25CSFN7MgXZvvD2BXbw5BezLcSPvMvpCoA==";
};
};
"create-graphback-1.0.1" = {
@@ -20346,13 +20175,13 @@ let
sha512 = "4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw==";
};
};
- "d3-7.1.1" = {
+ "d3-7.2.0" = {
name = "d3";
packageName = "d3";
- version = "7.1.1";
+ version = "7.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/d3/-/d3-7.1.1.tgz";
- sha512 = "8zkLMwSvUAnfN9pcJDfkuxU0Nvg4RLUD0A4BZN1KxJPtlnCGzMx3xM5cRl4m8fym/Vy8rlq52tl90UF3m91OnA==";
+ url = "https://registry.npmjs.org/d3/-/d3-7.2.0.tgz";
+ sha512 = "0bh5lPzD6R/I/SjkcgyQlMaIsrZDgh40yMkdJaiZ/58YEbh4zz5EvtjaudzmI6ruwQNvxGm00trYUyPa992NSQ==";
};
};
"d3-array-1.2.4" = {
@@ -20679,13 +20508,13 @@ let
sha512 = "Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==";
};
};
- "d3-format-3.0.1" = {
+ "d3-format-3.1.0" = {
name = "d3-format";
packageName = "d3-format";
- version = "3.0.1";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/d3-format/-/d3-format-3.0.1.tgz";
- sha512 = "hdL7+HBIohpgfolhBxr1KX47VMD6+vVD/oEFrxk5yhmzV2prk99EkFKYpXuhVkFpTgHdJ6/4bYcjdLPPXV4tIA==";
+ url = "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz";
+ sha512 = "YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==";
};
};
"d3-geo-1.12.1" = {
@@ -20751,13 +20580,13 @@ let
sha512 = "SwIdqM3HxQX2214EG9GTjgmCc/mbSx4mQBn+DuEETubhOw6/U3fmnji4uCVrmzOydMHSO1nZle5gh6HB/wdOzw==";
};
};
- "d3-hierarchy-3.0.1" = {
+ "d3-hierarchy-3.1.0" = {
name = "d3-hierarchy";
packageName = "d3-hierarchy";
- version = "3.0.1";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.0.1.tgz";
- sha512 = "RlLTaofEoOrMK1JoXYIGhKTkJFI/6rFrYPgxy6QlZo2BcVc4HGTqEU0rPpzuMq5T/5XcMtAzv1XiLA3zRTfygw==";
+ url = "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.0.tgz";
+ sha512 = "RZWnhsvcrf81F+khYxu2IOfoSwfCGla9je0JQaRIEuPOgJd+3cKdvAYyMXvTt0MDbluiHThYBQzIb0xxXfnqmA==";
};
};
"d3-interpolate-1.4.0" = {
@@ -21021,13 +20850,13 @@ let
sha512 = "UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==";
};
};
- "d3-time-format-4.0.0" = {
+ "d3-time-format-4.1.0" = {
name = "d3-time-format";
packageName = "d3-time-format";
- version = "4.0.0";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.0.0.tgz";
- sha512 = "nzaCwlj+ZVBIlFuVOT1RmU+6xb/7D5IcnhHzHQcBgS/aTa5K9fWZNN5LCXA27LgF5WxoSNJqKBbLcGMtM6Ca6A==";
+ url = "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz";
+ sha512 = "dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==";
};
};
"d3-timer-1.0.10" = {
@@ -21741,13 +21570,13 @@ let
sha1 = "fd43c735e967b8013306884a56fbe665996b6817";
};
};
- "decode-named-character-reference-1.0.0" = {
+ "decode-named-character-reference-1.0.1" = {
name = "decode-named-character-reference";
packageName = "decode-named-character-reference";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.0.tgz";
- sha512 = "KTiXDlRp9MMm/nlgI8rDGKoNNKiTJBl0RPjnBM680m2HlgJEA4JTASspK44lsvE4GQJildMRFp2HdEBiG+nqng==";
+ url = "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.1.tgz";
+ sha512 = "YV/0HQHreRwKb7uBopyIkLG17jG6Sv2qUchk9qSoVJ2f+flwRsPNBO0hAnjt6mTNYUT+vw9Gy2ihXg4sUWPi2w==";
};
};
"decode-uri-component-0.2.0" = {
@@ -23811,13 +23640,13 @@ let
sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==";
};
};
- "electron-13.6.2" = {
+ "electron-13.6.3" = {
name = "electron";
packageName = "electron";
- version = "13.6.2";
+ version = "13.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/electron/-/electron-13.6.2.tgz";
- sha512 = "ZXx9t68yXftvNZVnQ7v2XHcnH+MPUF6LNStoz4MMXuWpkF9gq3qwjcYSqnbM4wiVkvWVHIyYvt1yemmStza9dQ==";
+ url = "https://registry.npmjs.org/electron/-/electron-13.6.3.tgz";
+ sha512 = "kevgR6/RuEhchJQbgCKhHle9HvJhi2dOJlicFZJqbbqa9BVpZARqqFDlwTSatYxmUPUJwu09FvyMwJG2DMQIng==";
};
};
"electron-notarize-1.1.1" = {
@@ -23856,13 +23685,13 @@ let
sha512 = "U9dKi10V9w/BdIVB8a8dTKYLK3Q1d2WZ+Yo5qfM3XX/O4jI7KpnwgvWgGoVv0jTWPC2NlebF00ffWS/8NfUAtA==";
};
};
- "electron-to-chromium-1.4.5" = {
+ "electron-to-chromium-1.4.12" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.4.5";
+ version = "1.4.12";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.5.tgz";
- sha512 = "YKaB+t8ul5crdh6OeqT2qXdxJGI0fAYb6/X8pDIyye+c3a7ndOCk5gVeKX+ABwivCGNS56vOAif3TN0qJMpEHw==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.12.tgz";
+ sha512 = "zjfhG9Us/hIy8AlQ5OzfbR/C4aBv1Dg/ak4GX35CELYlJ4tDAtoEcQivXvyBdqdNQ+R6PhlgQqV8UNPJmhkJog==";
};
};
"electrum-client-git://github.com/janoside/electrum-client" = {
@@ -25154,6 +24983,15 @@ let
sha512 = "ZgYLvCS1wxOczBYGcQT9DDWgicXwJ4dbocr9uYN+/eresBAUuBu+O4WzB21ufQ/JqQT8gyp7hJ3z8SHii32mTQ==";
};
};
+ "espree-9.2.0" = {
+ name = "espree";
+ packageName = "espree";
+ version = "9.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/espree/-/espree-9.2.0.tgz";
+ sha512 = "oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg==";
+ };
+ };
"esprima-1.1.1" = {
name = "esprima";
packageName = "esprima";
@@ -27539,13 +27377,13 @@ let
sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg==";
};
};
- "flow-parser-0.165.1" = {
+ "flow-parser-0.166.1" = {
name = "flow-parser";
packageName = "flow-parser";
- version = "0.165.1";
+ version = "0.166.1";
src = fetchurl {
- url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.165.1.tgz";
- sha512 = "vz/5MZIePDCZO9FfnRaH398cc+XSwtgoUzR6pC5zbekpk5ttCaXOnxypho+hb0NzUyQNFV+6vpU8joRZ1llrCw==";
+ url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.166.1.tgz";
+ sha512 = "7iJ1cPcOYL/eOPGpGPaxwW8MytKGeXSnfvJA0uIvymXI4MnjjhZLWz1qPIqj2hfYJ7p/yXssbv7k2H3C90cyDw==";
};
};
"fluent-ffmpeg-2.1.2" = {
@@ -28484,31 +28322,31 @@ let
sha1 = "cbed2d20a40c1f5679a35908e2b9415733e78db9";
};
};
- "gatsby-core-utils-3.2.0" = {
+ "gatsby-core-utils-3.3.0" = {
name = "gatsby-core-utils";
packageName = "gatsby-core-utils";
- version = "3.2.0";
+ version = "3.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.2.0.tgz";
- sha512 = "gPz02QD1kOGQmu49TZL8Fdo9rX8QBsA7XID0oXyIkZqkK80Tm1Uq1pOOfPE3cWSMEkzc71M79iKISCntk/wNuw==";
+ url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.3.0.tgz";
+ sha512 = "Mr90+2T5mUie2fCkQS3dM6oHzTyt1vLbpJ2nU2OsdF95LHnLBt0kDgK+qEIuz7Ypr91gFN8y2HoP08vuokq7ZQ==";
};
};
- "gatsby-recipes-1.2.0" = {
+ "gatsby-recipes-1.3.0" = {
name = "gatsby-recipes";
packageName = "gatsby-recipes";
- version = "1.2.0";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-1.2.0.tgz";
- sha512 = "v76Kt1EYBHwf5c9Ic8b0w/eEaDaRh3B/6spAVU6zN+VzEvQX3Oi/VckUyS2/anBOuSnOl3PJVWhFA3/aZpGuxw==";
+ url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-1.3.0.tgz";
+ sha512 = "4+Yvkp+JFtvH1bQBt1k0PrELHga5OrGUpfFeE35TmvTUIRl0hUaSexJ3VVbTHV40MxWnzI1q39/LkKoN8oI38w==";
};
};
- "gatsby-telemetry-3.2.0" = {
+ "gatsby-telemetry-3.3.0" = {
name = "gatsby-telemetry";
packageName = "gatsby-telemetry";
- version = "3.2.0";
+ version = "3.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.2.0.tgz";
- sha512 = "nLs/PPTPn7xPOiJxRe1Lmd8C0EVaH4rPT3KRT36ftaJBVDT5XhKfhR/tW9zirADD1k6pYW6vYvAQNFfKG5dpDg==";
+ url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.3.0.tgz";
+ sha512 = "O/9YDrxzvNDEnkpGykGq9VrUqipt8+IshDJs4TEBVZS5OaIy9KwtoOzyEeHZE+SsmhBodiUZMG1qRh1hKmp/Hw==";
};
};
"gauge-1.2.7" = {
@@ -29565,15 +29403,6 @@ let
sha512 = "iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==";
};
};
- "globby-11.0.3" = {
- name = "globby";
- packageName = "globby";
- version = "11.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz";
- sha512 = "ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==";
- };
- };
"globby-11.0.4" = {
name = "globby";
packageName = "globby";
@@ -29709,13 +29538,13 @@ let
sha512 = "Q+ZjUEvLQj/lrVHF/IQwRo6p3s8Nc44Zk/DALsN+ac3T4HY/g/3rrufkgtl+nZ1TW7DNAw5cTChdVp4apUXVgQ==";
};
};
- "google-auth-library-7.10.2" = {
+ "google-auth-library-7.10.3" = {
name = "google-auth-library";
packageName = "google-auth-library";
- version = "7.10.2";
+ version = "7.10.3";
src = fetchurl {
- url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.10.2.tgz";
- sha512 = "M37o9Kxa/TLvOLgF71SXvLeVEP5sbSTmKl1zlIgl72SFy5PtsU3pOdu8G8MIHHpQ3/NZabDI8rQkA9DvQVKkPA==";
+ url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.10.3.tgz";
+ sha512 = "VBwUCrjR+/p/J4ifSZRXG0XEc3Cm+2xnFrJi3A9DC2GzbCUK5j+R6CfqS7jyu1Hureb1PV53ZXZS1QV9PYUCrw==";
};
};
"google-closure-compiler-js-20170910.0.1" = {
@@ -30033,31 +29862,31 @@ let
sha512 = "bVddVO8YFJPwuACn+3pgmrEg6I8iBuYLuwvxiE+lcQQ7POotVZxm2rgGw0PvVYmWWf3DT7nTVDZ5ROh/ALp8mA==";
};
};
- "graphql-language-service-interface-2.9.4" = {
+ "graphql-language-service-interface-2.10.1" = {
name = "graphql-language-service-interface";
packageName = "graphql-language-service-interface";
- version = "2.9.4";
+ version = "2.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-language-service-interface/-/graphql-language-service-interface-2.9.4.tgz";
- sha512 = "AVzes7j0Q5fHfqzZ2JcAUaIGn2PimxwZpPv6ag1xtmGrKl/FNTi8y5Z3QuL/576NvQxaNzVmlUKMzZDIvoFNxg==";
+ url = "https://registry.npmjs.org/graphql-language-service-interface/-/graphql-language-service-interface-2.10.1.tgz";
+ sha512 = "2n/nrt0QD8UnxzDKKHWomYuLK9uxGxyPztA6wI24Kng8Iw7jQk/doIti63z4xPKNi4CtbumSjk1TRYUZ/bgViw==";
};
};
- "graphql-language-service-parser-1.10.3" = {
+ "graphql-language-service-parser-1.10.4" = {
name = "graphql-language-service-parser";
packageName = "graphql-language-service-parser";
- version = "1.10.3";
+ version = "1.10.4";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-language-service-parser/-/graphql-language-service-parser-1.10.3.tgz";
- sha512 = "vGHf7g4zxwIt2RxJI0YKkN5Zhjp3s4RmqRij2FS96K08V8lzPvGcaDRcr8Bzoeb20YZPwPAidZjSt/yYqzyX1w==";
+ url = "https://registry.npmjs.org/graphql-language-service-parser/-/graphql-language-service-parser-1.10.4.tgz";
+ sha512 = "duDE+0aeKLFVrb9Kf28U84ZEHhHcvTjWIT6dJbIAQJWBaDoht0D4BK9EIhd94I3DtKRc1JCJb2+70y1lvP/hiA==";
};
};
- "graphql-language-service-types-1.8.6" = {
+ "graphql-language-service-types-1.8.7" = {
name = "graphql-language-service-types";
packageName = "graphql-language-service-types";
- version = "1.8.6";
+ version = "1.8.7";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-language-service-types/-/graphql-language-service-types-1.8.6.tgz";
- sha512 = "1xH2kqkgKjvfsc/+fyDnzP21aSSofbVYfzyH8QcNCsxVF0zEvUij+3qyO/dHmQljIyc+Ss62J2udlnZEZM0hcA==";
+ url = "https://registry.npmjs.org/graphql-language-service-types/-/graphql-language-service-types-1.8.7.tgz";
+ sha512 = "LP/Mx0nFBshYEyD0Ny6EVGfacJAGVx+qXtlJP4hLzUdBNOGimfDNtMVIdZANBXHXcM41MDgMHTnyEx2g6/Ttbw==";
};
};
"graphql-language-service-utils-2.5.1" = {
@@ -30069,13 +29898,13 @@ let
sha512 = "Lzz723cYrYlVN4WVzIyFGg3ogoe+QYAIBfdtDboiIILoy0FTmqbyC2TOErqbmWKqO4NK9xDA95cSRFbWiHYj0g==";
};
};
- "graphql-language-service-utils-2.6.3" = {
+ "graphql-language-service-utils-2.7.1" = {
name = "graphql-language-service-utils";
packageName = "graphql-language-service-utils";
- version = "2.6.3";
+ version = "2.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-language-service-utils/-/graphql-language-service-utils-2.6.3.tgz";
- sha512 = "rc5SToegDZ3VlnC0J7EriWe3G9zxFsPspxNV/rqcMcMq2hON9Q53bxTdg75KTNRUY78h+1ZHsXPEgecQtVk+0w==";
+ url = "https://registry.npmjs.org/graphql-language-service-utils/-/graphql-language-service-utils-2.7.1.tgz";
+ sha512 = "Wci5MbrQj+6d7rfvbORrA9uDlfMysBWYaG49ST5TKylNaXYFf3ixFOa74iM1KtM9eidosUbI3E1JlWi0JaidJA==";
};
};
"graphql-sse-1.0.6" = {
@@ -30870,13 +30699,13 @@ let
sha512 = "oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ==";
};
};
- "hast-util-is-element-2.1.1" = {
+ "hast-util-is-element-2.1.2" = {
name = "hast-util-is-element";
packageName = "hast-util-is-element";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-2.1.1.tgz";
- sha512 = "ag0fiZfRWsPiR1udvnSbaazJLGv8qd8E+/e3rW8rUZhbKG4HNJmFL4QkEceN+22BgE+uozXY30z/s+2dL6Z++g==";
+ url = "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-2.1.2.tgz";
+ sha512 = "thjnlGAnwP8ef/GSO1Q8BfVk2gundnc2peGQqEg2kUt/IqesiGg/5mSwN2fE7nLzy61pg88NG6xV+UrGOrx9EA==";
};
};
"hast-util-parse-selector-2.2.5" = {
@@ -31050,13 +30879,13 @@ let
sha1 = "6e62fae668947f88184d5c156ede7c5695a7e9c8";
};
};
- "heap-0.2.6" = {
+ "heap-0.2.7" = {
name = "heap";
packageName = "heap";
- version = "0.2.6";
+ version = "0.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/heap/-/heap-0.2.6.tgz";
- sha1 = "087e1f10b046932fc8594dd9e6d378afc9d1e5ac";
+ url = "https://registry.npmjs.org/heap/-/heap-0.2.7.tgz";
+ sha512 = "2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==";
};
};
"heapdump-0.3.15" = {
@@ -32221,13 +32050,13 @@ let
sha512 = "FYz4wlXgkQwIPqhzC5TdNMLSE5+GS1IIDJZY/1ZiEPCT2S3COUVZeT5OW4BmW4r5LHLQuOosSwsvnroG9GR59Q==";
};
};
- "i18next-21.3.1" = {
+ "i18next-21.5.4" = {
name = "i18next";
packageName = "i18next";
- version = "21.3.1";
+ version = "21.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/i18next/-/i18next-21.3.1.tgz";
- sha512 = "VElMm+LoeEuhViVwnDw1gR3snTItK9NJqgok8PZ5WU870MVO1x+5KEbzLO/6GC1zu42Uc3EuGj3nsGMGMNwT0A==";
+ url = "https://registry.npmjs.org/i18next/-/i18next-21.5.4.tgz";
+ sha512 = "ukwRJpLhYg4EUfCOtbaKjlwF71qyel1XMXQN78OkQMcaQG68UzlYgLC6g2fhoTNBvoH2tJkaaqzDumhC9skAhA==";
};
};
"iconv-lite-0.4.19" = {
@@ -32896,15 +32725,6 @@ let
sha512 = "euuugcNExOx5E+qNM1c+pDF7V8yw/xzCRWEfFk1KjQT9CYtaVAYre13YbMFsYPkGD26dvX6XAffUgkwXme/p5Q==";
};
};
- "ink-use-stdout-dimensions-1.0.5" = {
- name = "ink-use-stdout-dimensions";
- packageName = "ink-use-stdout-dimensions";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ink-use-stdout-dimensions/-/ink-use-stdout-dimensions-1.0.5.tgz";
- sha512 = "rVsqnw4tQEAJUoknU09+zHdDf30GJdkumkHr0iz/TOYMYEZJkYqziQSGJAM+Z+M603EDfO89+Nxyn/Ko2Zknfw==";
- };
- };
"inline-process-browser-1.0.0" = {
name = "inline-process-browser";
packageName = "inline-process-browser";
@@ -35488,13 +35308,13 @@ let
sha512 = "dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==";
};
};
- "jitdb-3.5.1" = {
+ "jitdb-3.5.2" = {
name = "jitdb";
packageName = "jitdb";
- version = "3.5.1";
+ version = "3.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jitdb/-/jitdb-3.5.1.tgz";
- sha512 = "qg+JNxL/5AdE5wtAuQ+SFiLWusVpv3n1Cp4TtINEeblwipm/GT7Uby9csLhrFQCr8c7xz/azYt9hGNCW8f5FAA==";
+ url = "https://registry.npmjs.org/jitdb/-/jitdb-3.5.2.tgz";
+ sha512 = "aEfZNQe/xpUP9bs4jx9nEtoedey1ypWt6ex6YIK843Lh2wNXsVBtyNlu5LrVHyE/B9RnSJKhzwZbgZSge4RoaA==";
};
};
"jju-1.4.0" = {
@@ -35533,13 +35353,13 @@ let
sha1 = "06d4912255093419477d425633606e0e90782967";
};
};
- "joi-17.4.2" = {
+ "joi-17.5.0" = {
name = "joi";
packageName = "joi";
- version = "17.4.2";
+ version = "17.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/joi/-/joi-17.4.2.tgz";
- sha512 = "Lm56PP+n0+Z2A2rfRvsfWVDXGEWjXxatPopkQ8qQ5mxCEhwHG+Ettgg5o98FFaxilOxozoa14cFhrE/hOzh/Nw==";
+ url = "https://registry.npmjs.org/joi/-/joi-17.5.0.tgz";
+ sha512 = "R7hR50COp7StzLnDi4ywOXHrBrgNXuUUfJWIR5lPY5Bm/pOD3jZaTwpluUXVLRWcoWZxkrHBBJ5hLxgnlehbdw==";
};
};
"join-component-1.1.0" = {
@@ -35939,67 +35759,49 @@ let
sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==";
};
};
- "jsii-1.37.0" = {
+ "jsii-1.47.0" = {
name = "jsii";
packageName = "jsii";
- version = "1.37.0";
+ version = "1.47.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii/-/jsii-1.37.0.tgz";
- sha512 = "M+opnlcNb1Ne5igms/OJn/e2ZyQgcCwmqqljuOsHXBMFm7vMOVLSjEUcBYcW7ifJeM1+XYg8+wfuAoZhqY1zCg==";
+ url = "https://registry.npmjs.org/jsii/-/jsii-1.47.0.tgz";
+ sha512 = "cJ1cQfanSl+0vLVRJTwaWdx0dZ4DxIxYhydRlhuv/EFbQzeAVosy6fEnZ5IlPtWR89tF3k89R6w8DHVhPigjjQ==";
};
};
- "jsii-1.46.0" = {
- name = "jsii";
- packageName = "jsii";
- version = "1.46.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsii/-/jsii-1.46.0.tgz";
- sha512 = "PuO7cwz3XDBOMIVKJ822GtJeq9wAu/7S8/Xqn2BuvBjGHaAxksCYR7MEOnhOK9Kj2y43fBGXo0MtHx4eZOHIEg==";
- };
- };
- "jsii-pacmak-1.37.0" = {
+ "jsii-pacmak-1.47.0" = {
name = "jsii-pacmak";
packageName = "jsii-pacmak";
- version = "1.37.0";
+ version = "1.47.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.37.0.tgz";
- sha512 = "cXLXAOyCqd/QNBy+OfcmMgj8UdNVbJJsKoM/C3SvRgdi+fpQlxh1iDTOcKUwd3/QgMuDMDLvKCCpLmq/YRjreA==";
+ url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.47.0.tgz";
+ sha512 = "VGrHZsK2jv7NuPBULvJBJGF0hLpGwdJa7esI2qzOeX1UbHxXSOah9oboheYELbX5KCH3hSe2uDbcPSnEqIT68Q==";
};
};
- "jsii-pacmak-1.46.0" = {
- name = "jsii-pacmak";
- packageName = "jsii-pacmak";
- version = "1.46.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.46.0.tgz";
- sha512 = "2nVdi3lv8IDFKyfYKtBPGBJVMB1wB/6/TZKqz7VIXFdBUHDYb8Z+wjfwhvOW9aiP07/YD357TTTMS7qKUNopew==";
- };
- };
- "jsii-reflect-1.46.0" = {
+ "jsii-reflect-1.47.0" = {
name = "jsii-reflect";
packageName = "jsii-reflect";
- version = "1.46.0";
+ version = "1.47.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.46.0.tgz";
- sha512 = "wiVKwnxVcgrC1LJGR43AKaTbBqI7Ybkr+i9RQKFwGM/PTDG1BfIMzCFc/sLLyyQ/Ba8E0uZ8UfglBm/9H1GSVw==";
+ url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.47.0.tgz";
+ sha512 = "UgRWqkPI03wB6dGrTPA9UqUa37ORAnvaHGthWxNTcHIGIRHb4EfM29lYdbsRYO/+4/OiQLvdnZno1kw5rMyYcw==";
};
};
- "jsii-rosetta-1.46.0" = {
+ "jsii-rosetta-1.47.0" = {
name = "jsii-rosetta";
packageName = "jsii-rosetta";
- version = "1.46.0";
+ version = "1.47.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.46.0.tgz";
- sha512 = "EyGFTMcSiLw03aCcDmN8tjwIJ2+XbW7LZJiq8VkyHoKdMz6urHKtYGZTNDns9iNH2/WxfjFRt+d3S9tYi2AfRw==";
+ url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.47.0.tgz";
+ sha512 = "2XyGNsTOr027bRhDuVy0Ygfkg3/u0jV7F5jvpGWq8lbl0yw90mgfi7epQxFfcFZ7zYgEIx5pXfC5UInl/Ntaqw==";
};
};
- "jsii-srcmak-0.1.413" = {
+ "jsii-srcmak-0.1.420" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.413";
+ version = "0.1.420";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.413.tgz";
- sha512 = "q4qD7M0MUGuMG4dq7qkoEyfhYlX/erNmLFeRBfrufjucftEKdNlK22xcAfj0ykh6GWsHh19Ri5NC5D5b5wtGIA==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.420.tgz";
+ sha512 = "mUVW8b2ITfKU/GHAqnOijr/lE33/yjS3BHvN+IZEj34T1o9/6s4Ri//d40jMYpWXxTQq+FBqz7vjJ+hGRVVPbA==";
};
};
"json-bigint-1.0.0" = {
@@ -36290,13 +36092,13 @@ let
sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A==";
};
};
- "json2jsii-0.2.66" = {
+ "json2jsii-0.2.75" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.2.66";
+ version = "0.2.75";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.66.tgz";
- sha512 = "jgSlVm3jObEE/xNWZEzA/rhLAJfl+feqxrMeo9AtYbMjIEOm84nSBCgOjA3o+fJFNQQ2CDC2g2FzaYcqftJclQ==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.75.tgz";
+ sha512 = "gi78uFP+EPqQ8bOxK3sDl0Eix67xYMQbWX1LlW49R/WH4+HDu5bMkz5+d7jC7ti8I54AfMEHnzLj2WJ7e2au0Q==";
};
};
"json3-3.2.6" = {
@@ -37766,13 +37568,13 @@ let
sha512 = "5i0XgY+PSaGmMQTuVdtnzDg0LiTp1krfH4seefFLJNFb6Hunxic00D/roybGgd9hlbqeGmGYXZ+YQpATKQtblA==";
};
};
- "lightning-5.1.0" = {
+ "lightning-5.1.1" = {
name = "lightning";
packageName = "lightning";
- version = "5.1.0";
+ version = "5.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lightning/-/lightning-5.1.0.tgz";
- sha512 = "atn40qRDGYr6H1i/OGTth/7JzmB650ZBao4ktLv1TPslPPRmdrJ7kvlP0O2ormXEl8aiBewNoreSEDC4Co9crw==";
+ url = "https://registry.npmjs.org/lightning/-/lightning-5.1.1.tgz";
+ sha512 = "KsLcijLhonCRwa9HiAyluIeH3Iju2W0w365/Nd5f6I157zHhnRIZAyCc2QgzklhN1yiDl2CbBJ7AGgM1RUOm7w==";
};
};
"lilconfig-2.0.4" = {
@@ -37955,13 +37757,13 @@ let
sha512 = "20ZIPPyGI4odh/Jxq6Lawtc+Zx7MkPuxnn34TuhZpM6ppwVbSGJSuJPctLrhZvWdaYYeboz3BITiqI/o4KvChQ==";
};
};
- "ln-service-53.1.1" = {
+ "ln-service-53.1.2" = {
name = "ln-service";
packageName = "ln-service";
- version = "53.1.1";
+ version = "53.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ln-service/-/ln-service-53.1.1.tgz";
- sha512 = "xwgQrw1Lj7qsarKps13QQOzZtL3KXgov7yFN6CmbgLhAJ7iZ8HehoqJVTTtJuQRPAXjwNUjTTMZXCdJvr7JPyw==";
+ url = "https://registry.npmjs.org/ln-service/-/ln-service-53.1.2.tgz";
+ sha512 = "suXjhDhulSS5pruRaFQdY3FLf6VMrnDqo1f+RcCFNQN7nvA1mFIT2L6bSrnduRGMFofhlOwUWB5DuLBQgTal5w==";
};
};
"ln-sync-3.0.1" = {
@@ -37973,6 +37775,15 @@ let
sha512 = "rCH59pxjqsWrcwse8hL9FdWGMj7L3tGMTzxussOnbM2oEfj9LsvRPxrcj7+mEMhuJ+/OZ8V31jIUwCGwUTMz6w==";
};
};
+ "ln-sync-3.1.0" = {
+ name = "ln-sync";
+ packageName = "ln-sync";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.1.0.tgz";
+ sha512 = "7HRMDoW+dB0A3mQ1TJstvj8VKQyV2M6z+7xUuFDpQ0V2Nmd+qEWDvUrQfc4ONsm+1YfFDaR6+6ILEnO1olpQrA==";
+ };
+ };
"ln-telegram-3.4.2" = {
name = "ln-telegram";
packageName = "ln-telegram";
@@ -39467,13 +39278,13 @@ let
sha512 = "8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==";
};
};
- "log-symbols-5.0.0" = {
+ "log-symbols-5.1.0" = {
name = "log-symbols";
packageName = "log-symbols";
- version = "5.0.0";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/log-symbols/-/log-symbols-5.0.0.tgz";
- sha512 = "zBsSKauX7sM0kcqrf8VpMRPqcWzU6a/Wi7iEl0QlVSCiIZ4CctaLdfVdiZUn6q2/nenyt392qJqpw9FhNAwqxQ==";
+ url = "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz";
+ sha512 = "l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==";
};
};
"log-update-1.0.2" = {
@@ -40512,13 +40323,13 @@ let
sha512 = "Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==";
};
};
- "markdown-table-3.0.1" = {
+ "markdown-table-3.0.2" = {
name = "markdown-table";
packageName = "markdown-table";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.1.tgz";
- sha512 = "CBbaYXKSGnE1uLRpKA1SWgIRb2PQrpkllNWpZtZe6VojOJ4ysqiq7/2glYcmKsOYN09QgH/HEBX5hIshAeiK6A==";
+ url = "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.2.tgz";
+ sha512 = "y8j3a5/DkJCmS5x4dMCQL+OR0+2EAq3DOtio1COSHsmW2BGXnNCK3v12hJt1LrUz5iZH5g0LmuYOjDdI+czghA==";
};
};
"markdownlint-0.24.0" = {
@@ -41637,22 +41448,22 @@ let
sha512 = "+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==";
};
};
- "micromark-3.0.9" = {
+ "micromark-3.0.10" = {
name = "micromark";
packageName = "micromark";
- version = "3.0.9";
+ version = "3.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/micromark/-/micromark-3.0.9.tgz";
- sha512 = "aWPjuXAqiFab4+oKLjH1vSNQm8S9GMnnf5sFNLrQaIggGYMBcQ9CS0Tt7+BJH6hbyv783zk3vgDhaORl3K33IQ==";
+ url = "https://registry.npmjs.org/micromark/-/micromark-3.0.10.tgz";
+ sha512 = "ryTDy6UUunOXy2HPjelppgJ2sNfcPz1pLlMdA6Rz9jPzhLikWXv/irpWV/I2jd68Uhmny7hHxAlAhk4+vWggpg==";
};
};
- "micromark-core-commonmark-1.0.5" = {
+ "micromark-core-commonmark-1.0.6" = {
name = "micromark-core-commonmark";
packageName = "micromark-core-commonmark";
- version = "1.0.5";
+ version = "1.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.5.tgz";
- sha512 = "ZNtWumX94lpiyAu/lxvth6I5+XzxF+BLVUB7u60XzOBy4RojrbZqrx0mcRmbfqEMO6489vyvDfIQNv5hdulrPg==";
+ url = "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz";
+ sha512 = "K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==";
};
};
"micromark-extension-footnote-0.3.2" = {
@@ -42015,13 +41826,13 @@ let
sha512 = "d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==";
};
};
- "micromark-util-symbol-1.0.0" = {
+ "micromark-util-symbol-1.0.1" = {
name = "micromark-util-symbol";
packageName = "micromark-util-symbol";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.0.tgz";
- sha512 = "NZA01jHRNCt4KlOROn8/bGi6vvpEmlXld7EHcRH+aYWUfL3Wc8JLUNNlqUMKa0hhz6GrpUWsHtzPmKof57v0gQ==";
+ url = "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz";
+ sha512 = "oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==";
};
};
"micromark-util-types-1.0.2" = {
@@ -42447,13 +42258,13 @@ let
sha512 = "wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==";
};
};
- "minipass-3.1.5" = {
+ "minipass-3.1.6" = {
name = "minipass";
packageName = "minipass";
- version = "3.1.5";
+ version = "3.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/minipass/-/minipass-3.1.5.tgz";
- sha512 = "+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw==";
+ url = "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz";
+ sha512 = "rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==";
};
};
"minipass-collect-1.0.2" = {
@@ -42825,15 +42636,6 @@ let
sha512 = "9ARkWHBs+6YJIvrIp0Ik5tyTTtP9PoV0Ssu2Ocq5y9v8+NOOpWiRshAp8c4rZVWTOe+157on/5G+zj5pwIQFEQ==";
};
};
- "moment-timezone-0.5.33" = {
- name = "moment-timezone";
- packageName = "moment-timezone";
- version = "0.5.33";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.33.tgz";
- sha512 = "PTc2vcT8K9J5/9rDEPe5czSIKgLoGsH8UNpA4qZTVw0Vd/Uz19geE9abbIOQKaAQFcnQ3v5YEXrbSc5BpshH+w==";
- };
- };
"moment-timezone-0.5.34" = {
name = "moment-timezone";
packageName = "moment-timezone";
@@ -44398,8 +44200,8 @@ let
version = "1.8.1";
src = fetchgit {
url = "https://github.com/laurent22/node-emoji.git";
- rev = "9fa01eac463e94dde1316ef8c53089eeef4973b5";
- sha256 = "224950cc405150c37dbd3c4aa65dc0cfb799b1a57f674e9bb76f993268106406";
+ rev = "ef775119be3527cea88a1e51603458098de18d71";
+ sha256 = "431fc4f1499305d2f8247b6648367fab9c8cf537c343416a482cd1a0dd7e0286";
};
};
"node-environment-flags-1.0.6" = {
@@ -45627,13 +45429,13 @@ let
sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==";
};
};
- "oauth2orize-1.11.0" = {
+ "oauth2orize-1.11.1" = {
name = "oauth2orize";
packageName = "oauth2orize";
- version = "1.11.0";
+ version = "1.11.1";
src = fetchurl {
- url = "https://registry.npmjs.org/oauth2orize/-/oauth2orize-1.11.0.tgz";
- sha1 = "793cef251d45ebdeac32ae40a8b6814faab1d483";
+ url = "https://registry.npmjs.org/oauth2orize/-/oauth2orize-1.11.1.tgz";
+ sha512 = "9dSx/Gwm0J2Rvj4RH9+h7iXVnRXZ6biwWRgb2dCeQhCosODS0nYdM9I/G7BUGsjbgn0pHjGcn1zcCRtzj2SlRA==";
};
};
"object-assign-1.0.0" = {
@@ -45717,13 +45519,13 @@ let
sha512 = "gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==";
};
};
- "object-inspect-1.11.0" = {
+ "object-inspect-1.11.1" = {
name = "object-inspect";
packageName = "object-inspect";
- version = "1.11.0";
+ version = "1.11.1";
src = fetchurl {
- url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz";
- sha512 = "jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==";
+ url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.1.tgz";
+ sha512 = "If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==";
};
};
"object-inspect-1.4.1" = {
@@ -45978,13 +45780,13 @@ let
sha512 = "rH3U4eLHsV+OgkOS29ULiC9JLspwMCyCIH/+BglLPXDxQs13IK8AGD+nVmkGXqGN5JefZu85YhfIi05CsOKWPw==";
};
};
- "office-ui-fabric-react-7.179.5" = {
+ "office-ui-fabric-react-7.180.0" = {
name = "office-ui-fabric-react";
packageName = "office-ui-fabric-react";
- version = "7.179.5";
+ version = "7.180.0";
src = fetchurl {
- url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.179.5.tgz";
- sha512 = "Mwm6asYClXbguWoOOLsMTvbA+4dKP/tn7yds2n/KqDxeH6aCTXsdwSmhFClkJLoB9oeCIvEnjIvuuBm/5X2KNA==";
+ url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.180.0.tgz";
+ sha512 = "bayPgo2gyJEqYOOwsGT8KZtOj3yWe252PqMFw0Gx/2TKOXweQ/btror1D2SGxins8RogTtwhkmvgTbnWYMn2jw==";
};
};
"omggif-1.0.10" = {
@@ -46167,13 +45969,13 @@ let
sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA==";
};
};
- "oo-ascii-tree-1.46.0" = {
+ "oo-ascii-tree-1.47.0" = {
name = "oo-ascii-tree";
packageName = "oo-ascii-tree";
- version = "1.46.0";
+ version = "1.47.0";
src = fetchurl {
- url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.46.0.tgz";
- sha512 = "OhOxq9sLUGDAZOs2Vxr2ih3Su0EDPntcBa0zWvc9XJcjlyd3z/J3C/Gr7eVJOTynCu8iNftzyyXuqkZWjMv8Mw==";
+ url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.47.0.tgz";
+ sha512 = "m8ZGdK0JSMFOZyjV0kkzBwcbPMGqW5WhCYp4CgPrJz4/y128hwhWGB8x4G7b5CAKRNo583y51kL0UCklaxt1Nw==";
};
};
"opal-runtime-1.0.11" = {
@@ -46581,15 +46383,6 @@ let
sha512 = "I9PKfIZC+e4RXZ/qr1RhgyCnGgYX0UEIlXgWnCOVACIvFgaC9rz6Won7xbdhoHrd8IIhV7YEpHjreNUNkqCGkQ==";
};
};
- "optimism-0.16.1" = {
- name = "optimism";
- packageName = "optimism";
- version = "0.16.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/optimism/-/optimism-0.16.1.tgz";
- sha512 = "64i+Uw3otrndfq5kaoGNoY7pvOhSsjFEN4bdEFh80MWVk/dbgJfMv7VFDeCT8LxNAlEVhQmdVEbfE7X2nWNIIg==";
- };
- };
"optimist-0.2.8" = {
name = "optimist";
packageName = "optimist";
@@ -47535,13 +47328,13 @@ let
sha1 = "ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac";
};
};
- "paid-services-3.1.2" = {
+ "paid-services-3.2.0" = {
name = "paid-services";
packageName = "paid-services";
- version = "3.1.2";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/paid-services/-/paid-services-3.1.2.tgz";
- sha512 = "aVjouLGNT4q45PnBt0WoDJBHA6TVG/lQwKgcZAe9EDYOzjWfHonQK7zcN8tB6wZY8kb0FUHXDdfg4oQbR3LQXQ==";
+ url = "https://registry.npmjs.org/paid-services/-/paid-services-3.2.0.tgz";
+ sha512 = "kktETjyuk7ptb1OLdT6pv5eNCzQclfig+Ys+9SSEYvJWklI3QXnoxI1Wpo8FWlAm9tu6SFlr3EcnsncAcu7pZw==";
};
};
"pako-0.2.9" = {
@@ -50443,13 +50236,13 @@ let
sha512 = "9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==";
};
};
- "prettier-2.5.0" = {
+ "prettier-2.5.1" = {
name = "prettier";
packageName = "prettier";
- version = "2.5.0";
+ version = "2.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-2.5.0.tgz";
- sha512 = "FM/zAKgWTxj40rH03VxzIPdXmj39SwSjwG0heUcNFwI+EMZJnY93yAiKXM3dObIKAM5TA88werc8T/EwhB45eg==";
+ url = "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz";
+ sha512 = "vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==";
};
};
"prettier-bytes-1.0.4" = {
@@ -52288,13 +52081,13 @@ let
sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7";
};
};
- "pyright-1.1.191" = {
+ "pyright-1.1.193" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.191";
+ version = "1.1.193";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.191.tgz";
- sha512 = "1WyWpfLudnT+wBNYoaqQV2yOmpzI8otmDIGrEdLG0pikHWktuVSq8rvcqLF2QzzZVgb67TWCXp9u+wBt214lzA==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.193.tgz";
+ sha512 = "01hkfhK1PYKPSWbJrYgNwwlsVH+Thp1xmkKZjxVZrGFqavkJbhETlg1RcAHMnmU8Sg7G4Ry99dW6IsSGyCdzXg==";
};
};
"q-0.9.7" = {
@@ -52432,13 +52225,13 @@ let
sha1 = "c31d9b74ec27df75e543a86c78728ed8d4623607";
};
};
- "qs-6.10.1" = {
+ "qs-6.10.2" = {
name = "qs";
packageName = "qs";
- version = "6.10.1";
+ version = "6.10.2";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz";
- sha512 = "M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==";
+ url = "https://registry.npmjs.org/qs/-/qs-6.10.2.tgz";
+ sha512 = "mSIdjzqznWgfd4pMii7sHtaYF8rx8861hBO80SraY5GT0XQibWZWJSid0avzHGkDIZLImux2S5mXO0Hfct2QCw==";
};
};
"qs-6.2.3" = {
@@ -52999,15 +52792,6 @@ let
sha512 = "4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==";
};
};
- "raw-body-2.4.1" = {
- name = "raw-body";
- packageName = "raw-body";
- version = "2.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz";
- sha512 = "9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==";
- };
- };
"raw-body-2.4.2" = {
name = "raw-body";
packageName = "raw-body";
@@ -53098,13 +52882,13 @@ let
sha512 = "wuygyq8TXUlSdVXv2kigXxQNOgdb9m7LbIjwfTNGSpaY1riLd5e+VeQjlQMyUtrk0oiyhi1AqIVynworl3qxHA==";
};
};
- "re2-1.16.0" = {
+ "re2-1.17.1" = {
name = "re2";
packageName = "re2";
- version = "1.16.0";
+ version = "1.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/re2/-/re2-1.16.0.tgz";
- sha512 = "eizTZL2ZO0ZseLqfD4t3Qd0M3b3Nr0MBWpX81EbPMIud/1d/CSfUIx2GQK8fWiAeHoSekO5EOeFib2udTZLwYw==";
+ url = "https://registry.npmjs.org/re2/-/re2-1.17.1.tgz";
+ sha512 = "TrhxVzakyO/WJsErkc01zjlEiDLCuuRuddbVi2I8YasIbh6MEJfkRoajBRj+ggm00gnGI2EMemE9GrlKrgUZ8Q==";
};
};
"reachdown-1.1.0" = {
@@ -55213,15 +54997,6 @@ let
sha512 = "y3cj3wDwpXTE1boMco/nsquHj2noK0mtnXwBC8FJ/CtU06y66jOBWX1kLknluBl06pYbxtx1ypAOHKvjgT4vsA==";
};
};
- "remark-mdx-2.0.0-rc.2" = {
- name = "remark-mdx";
- packageName = "remark-mdx";
- version = "2.0.0-rc.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.0.0-rc.2.tgz";
- sha512 = "TMgFSEVx42/YzJWjDY+GKw7CGSbp3XKqBraXPxFS27r8iD9U6zuOZKXH4MoLl9JqiTOmQi0M1zJwT2YhPs32ug==";
- };
- };
"remark-mdxjs-2.0.0-next.8" = {
name = "remark-mdxjs";
packageName = "remark-mdxjs";
@@ -56914,13 +56689,13 @@ let
sha512 = "ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw==";
};
};
- "safe-stable-stringify-2.3.0" = {
+ "safe-stable-stringify-2.3.1" = {
name = "safe-stable-stringify";
packageName = "safe-stable-stringify";
- version = "2.3.0";
+ version = "2.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.0.tgz";
- sha512 = "VFlmNrvZ44a0QnRY2yfEIUhbMh8BjTFWf2mRG/8mCEAKTfQYV8xxfn6P+00OLej0gznC5C+hfgcEF7AGrN5Stw==";
+ url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz";
+ sha512 = "kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg==";
};
};
"safer-buffer-2.1.2" = {
@@ -58210,13 +57985,13 @@ let
sha512 = "rohCHmEjD/ESXFLxF4bVeqgdb4Awc65ZyyuCKl3f7BvgMbZOBa/Ye3HN/GFnvruiUOAWWNupxhz3Rz5/3vJLTg==";
};
};
- "simple-git-2.47.1" = {
+ "simple-git-2.48.0" = {
name = "simple-git";
packageName = "simple-git";
- version = "2.47.1";
+ version = "2.48.0";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-git/-/simple-git-2.47.1.tgz";
- sha512 = "DF4rnBr4uzMQsreqxHg8t1wN4Pi3kj/shBVT1OO+aBkBnscCZ02tynKHc9cx3StNPnItHWAaoN31qkRNDhh5Ow==";
+ url = "https://registry.npmjs.org/simple-git/-/simple-git-2.48.0.tgz";
+ sha512 = "z4qtrRuaAFJS4PUd0g+xy7aN4y+RvEt/QTJpR184lhJguBA1S/LsVlvE/CM95RsYMOFJG3NGGDjqFCzKU19S/A==";
};
};
"simple-handshake-3.0.0" = {
@@ -58903,13 +58678,13 @@ let
sha512 = "SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA==";
};
};
- "sockjs-0.3.21" = {
+ "sockjs-0.3.24" = {
name = "sockjs";
packageName = "sockjs";
- version = "0.3.21";
+ version = "0.3.24";
src = fetchurl {
- url = "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz";
- sha512 = "DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==";
+ url = "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz";
+ sha512 = "GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==";
};
};
"sockjs-client-1.4.0" = {
@@ -59065,13 +58840,13 @@ let
sha512 = "WnBQ0GDo/82shKQHZBZT9h4q4miCtxkbzcwVLsCBPWNq4qbq8BXhKICt9nPwQAsJ43ct/rF61FKu4t0druUBug==";
};
};
- "sonic-boom-2.4.0" = {
+ "sonic-boom-2.4.1" = {
name = "sonic-boom";
packageName = "sonic-boom";
- version = "2.4.0";
+ version = "2.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.4.0.tgz";
- sha512 = "2jSXeHjrovvsrnQ0tvG6eUjDdtMBxtYDAHr18mGDM/Pno/Wdw+pQ1AXUWKCZgriZ9MvCVdUEXXOUfVEwPcrieg==";
+ url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.4.1.tgz";
+ sha512 = "WgtVLfGl347/zS1oTuLaOAvVD5zijgjphAJHgbbnBJGgexnr+C1ULSj0j7ftoGxpuxR4PaV635NkwFemG8m/5w==";
};
};
"sorcery-0.10.0" = {
@@ -60190,13 +59965,13 @@ let
sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA==";
};
};
- "sscaff-1.2.141" = {
+ "sscaff-1.2.145" = {
name = "sscaff";
packageName = "sscaff";
- version = "1.2.141";
+ version = "1.2.145";
src = fetchurl {
- url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.141.tgz";
- sha512 = "6ZsCtDrfu+0fN7rR0IHToIJkHujfisN40lSD34Nj3bkSfaIE3xsjYNVtDXN/cXhU8ZCncWLws5txKIE8urRYQQ==";
+ url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.145.tgz";
+ sha512 = "FMFZvweqWr1TDDw1Blb++KWq/YTnRW7f2ULFM/I46cwC+71UZzr0dukX7BddVlmzIZU1S/8X5uq/xR+e4WW26w==";
};
};
"ssh-config-1.1.6" = {
@@ -60568,15 +60343,6 @@ let
sha1 = "91d5f5130d1cef96dcfa7f726945188741d09ee4";
};
};
- "stream-buffers-3.0.2" = {
- name = "stream-buffers";
- packageName = "stream-buffers";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-buffers/-/stream-buffers-3.0.2.tgz";
- sha512 = "DQi1h8VEBA/lURbSwFtEHnSTb9s2/pwLEaFuNhXwy1Dx3Sa0lOuYT2yNUr4/j2fs8oCAMANtrZ5OrPZtyVs3MQ==";
- };
- };
"stream-chain-2.2.4" = {
name = "stream-chain";
packageName = "stream-chain";
@@ -62260,13 +62026,13 @@ let
sha512 = "33+lQwlLxXoxy0o9WLOgw8OjbXeS3Jv+pSl+nxKc2AOClBI28HsdRPpH0u9Xa9OVjHLT9vonnOMw1ug7YXI0dA==";
};
};
- "systeminformation-5.9.15" = {
+ "systeminformation-5.9.17" = {
name = "systeminformation";
packageName = "systeminformation";
- version = "5.9.15";
+ version = "5.9.17";
src = fetchurl {
- url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.9.15.tgz";
- sha512 = "0tUYPXffFEsme8n/iTAMk09jpGgqtaGf46QOx7oFmiON9zDUQCahfSymQaCRr4tsq9BkKolaOzp8nqMVNrKIqQ==";
+ url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.9.17.tgz";
+ sha512 = "hbJtPsG63PCst4PLXFq8hycbkeR5oGDquRowfLK0gNX7nJ1qx3tCbsWu83OL4GP1dkcLMKsVooLUn5x2K1Epgg==";
};
};
"sywac-1.3.0" = {
@@ -62323,6 +62089,15 @@ let
sha512 = "5DkIxeA7XERBqMwJq0aHZOdMadBx4e6eDoFRuyT5VR82J0Ycg2DwM6GfA/EQAhJ+toRTaS1lIdSQCqgrmhPnlw==";
};
};
+ "table-6.7.5" = {
+ name = "table";
+ packageName = "table";
+ version = "6.7.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/table/-/table-6.7.5.tgz";
+ sha512 = "LFNeryOqiQHqCVKzhkymKwt6ozeRhlm8IL1mE8rNUurkir4heF6PzMyRgaTa4tlyPTGGgXuvVOF/OLWiH09Lqw==";
+ };
+ };
"table-layout-0.4.5" = {
name = "table-layout";
packageName = "table-layout";
@@ -64241,15 +64016,6 @@ let
sha512 = "uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==";
};
};
- "ts-invariant-0.9.3" = {
- name = "ts-invariant";
- packageName = "ts-invariant";
- version = "0.9.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.9.3.tgz";
- sha512 = "HinBlTbFslQI0OHP07JLsSXPibSegec6r9ai5xxq/qHYCsIQbzpymLpDhAUsnXcSrDEcd0L62L8vsOEdzM0qlA==";
- };
- };
"ts-loader-8.0.4" = {
name = "ts-loader";
packageName = "ts-loader";
@@ -64799,13 +64565,13 @@ let
sha512 = "yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==";
};
};
- "type-fest-2.6.0" = {
+ "type-fest-2.8.0" = {
name = "type-fest";
packageName = "type-fest";
- version = "2.6.0";
+ version = "2.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/type-fest/-/type-fest-2.6.0.tgz";
- sha512 = "XN1FDGGtaSDA6CFsCW5iolTQqFsnJ+ZF6JqSz0SqXoh4F8GY0xqUv5RYnTilpmL+sOH8OH4FX8tf9YyAPM2LDA==";
+ url = "https://registry.npmjs.org/type-fest/-/type-fest-2.8.0.tgz";
+ sha512 = "O+V9pAshf9C6loGaH0idwsmugI2LxVNR7DtS40gVo2EXZVYFgz9OuNtOhgHLdHdapOEWNdvz9Ob/eeuaWwwlxA==";
};
};
"type-is-1.6.18" = {
@@ -65069,22 +64835,13 @@ let
sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
};
};
- "uglify-js-3.14.2" = {
+ "uglify-js-3.14.4" = {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.14.2";
+ version = "3.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.2.tgz";
- sha512 = "rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A==";
- };
- };
- "uglify-js-3.14.3" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "3.14.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.3.tgz";
- sha512 = "mic3aOdiq01DuSVx0TseaEzMIVqebMZ0Z3vaeDhFEh9bsc24hV1TFvN74reA2vs08D0ZWfNjAcJ3UbVLaBss+g==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.4.tgz";
+ sha512 = "AbiSR44J0GoCeV81+oxcy/jDOElO2Bx3d0MfQCUShq7JRXaM4KtQopZsq2vFv8bCq2yMaGrw1FgygUd03RyRDA==";
};
};
"uglify-js-3.4.10" = {
@@ -65402,13 +65159,13 @@ let
sha1 = "5e4bda308e4a8a2ae584f9b9a4359a499825cc50";
};
};
- "undici-4.10.3" = {
+ "undici-4.11.0" = {
name = "undici";
packageName = "undici";
- version = "4.10.3";
+ version = "4.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/undici/-/undici-4.10.3.tgz";
- sha512 = "oMfhoSsFdu7ft+10gBpQ98gfIGT6qovXXRxYPOe07xfUJwpVTcFs0xvuAEpNqtObhf4HQWuMW5kWzaD768YS4Q==";
+ url = "https://registry.npmjs.org/undici/-/undici-4.11.0.tgz";
+ sha512 = "gofXRqAdm81rzaZgPbMf98qvrNGd3ptJ26+mCcF3EXoC817p//MtL8XcDpTvHUXxdW27rAM2jvTae+KyAchorw==";
};
};
"unherit-1.1.3" = {
@@ -66608,13 +66365,13 @@ let
sha1 = "23f89069a6c62f46cf3a1d3b00169cefb90be0c6";
};
};
- "usb-1.9.1" = {
+ "usb-1.9.2" = {
name = "usb";
packageName = "usb";
- version = "1.9.1";
+ version = "1.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/usb/-/usb-1.9.1.tgz";
- sha512 = "T6DZbJAFNcxhY1FzaYdXhV2oqoRlvLhtSSmnbFAqyCxahUkc+g0BPZVXv7hIeQQxDCAQnr4Ia8bfOk1JlzNzzw==";
+ url = "https://registry.npmjs.org/usb/-/usb-1.9.2.tgz";
+ sha512 = "dryNz030LWBPAf6gj8vyq0Iev3vPbCLHCT8dBw3gQRXRzVNsIdeuU+VjPp3ksmSPkeMAl1k+kQ14Ij0QHyeiAg==";
};
};
"use-3.1.1" = {
@@ -66668,8 +66425,8 @@ let
version = "1.0.4";
src = fetchgit {
url = "https://github.com/laurent22/uslug.git";
- rev = "ba2834d79beb0435318709958b2f5e817d96674d";
- sha256 = "e23c172456a8fa0af48dba3f89ca0d525dd870408f7bd6ad1d776cdbe13f0489";
+ rev = "8c12bc7678eaefa752e673ea9cfbc0b1a14d7237";
+ sha256 = "679cfa6f5c73bc070a567b942a648a213beb608efdff876c715f008ba11f5039";
};
};
"ut_metadata-3.5.2" = {
@@ -66879,15 +66636,6 @@ let
sha1 = "1352c340eb820e4d8ddba039a4fbfaa32ed4ef3a";
};
};
- "utility-types-3.10.0" = {
- name = "utility-types";
- packageName = "utility-types";
- version = "3.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/utility-types/-/utility-types-3.10.0.tgz";
- sha512 = "O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==";
- };
- };
"utils-merge-1.0.1" = {
name = "utils-merge";
packageName = "utils-merge";
@@ -67770,13 +67518,13 @@ let
sha512 = "GN2bH2gs4eLnw/4jPSgfBjo+XCuvnX9elHICJZjVD4+NM0nsUrMTvdjGY5Sc/XG69XVTgLwj7hknQVc6M9FukA==";
};
};
- "vfile-reporter-7.0.2" = {
+ "vfile-reporter-7.0.3" = {
name = "vfile-reporter";
packageName = "vfile-reporter";
- version = "7.0.2";
+ version = "7.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/vfile-reporter/-/vfile-reporter-7.0.2.tgz";
- sha512 = "1bYxpyhl8vhAICiKR59vYyZHIOWsF7P1nV6xjaz3ZWAyOQDQhR4DjlOZo14+PiV9oLEWIrolvGHs0/2Bnaw5Vw==";
+ url = "https://registry.npmjs.org/vfile-reporter/-/vfile-reporter-7.0.3.tgz";
+ sha512 = "q+ruTWxFHbow359TDqoNJn5THdwRDeV+XUOtzdT/OESgaGw05CjL68ImlbzRzqS5xL62Y1IaIWb8x+RbaNjayA==";
};
};
"vfile-reporter-pretty-5.0.0" = {
@@ -67995,6 +67743,15 @@ let
sha1 = "614f7fbf8d801f0bb5f0661f5b2f5785750e4f09";
};
};
+ "vsce-1.103.1" = {
+ name = "vsce";
+ packageName = "vsce";
+ version = "1.103.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vsce/-/vsce-1.103.1.tgz";
+ sha512 = "98oKQKKRp7J/vTIk1cuzom5cezZpYpRHs3WlySdsrTCrAEipB/HvaPTc4VZ3hGZHzHXS9P5p2L0IllntJeXwiQ==";
+ };
+ };
"vsce-1.88.0" = {
name = "vsce";
packageName = "vsce";
@@ -68004,15 +67761,6 @@ let
sha512 = "FS5ou3G+WRnPPr/tWVs8b/jVzeDacgZHy/y7/QQW7maSPFEAmRt2bFGUJtJVEUDLBqtDm/3VGMJ7D31cF2U1tw==";
};
};
- "vsce-1.95.1" = {
- name = "vsce";
- packageName = "vsce";
- version = "1.95.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vsce/-/vsce-1.95.1.tgz";
- sha512 = "2v8g3ZtZkaOTscRjjCAtM3Au6YYWJtg9UNt1iyyWko7ZHejbt5raClcNzQ7/WYVLYhYHc+otHQifV0gCBREgNg==";
- };
- };
"vscode-css-languageservice-3.0.13" = {
name = "vscode-css-languageservice";
packageName = "vscode-css-languageservice";
@@ -68040,22 +67788,22 @@ let
sha512 = "/tFOWeZBL3Oc9Zc+2MAi3rEwiXJTSZsvjB+M7nSjWLbGPUIjukUA7YzLgsBoUfR35sPJYnXWUkL56PdfIYM8GA==";
};
};
- "vscode-debugadapter-testsupport-1.50.0" = {
+ "vscode-debugadapter-testsupport-1.51.0" = {
name = "vscode-debugadapter-testsupport";
packageName = "vscode-debugadapter-testsupport";
- version = "1.50.0";
+ version = "1.51.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-debugadapter-testsupport/-/vscode-debugadapter-testsupport-1.50.0.tgz";
- sha512 = "stS8yE8le59FLeKvCvdSY6PoYtmUXMxR1WiAW2JS65Sg7ip+yQm+WMKQZz8Dat0vtUF4ALcaKf/P+KjPTdzVww==";
+ url = "https://registry.npmjs.org/vscode-debugadapter-testsupport/-/vscode-debugadapter-testsupport-1.51.0.tgz";
+ sha512 = "rb8tfn7J3kxLi1rRhEyG5ggGkFcJH2WrYYrq6Vb1tDAcHoFXF580M1dAA2jPOrc0I14GuWxMnndvfGkfG10VxA==";
};
};
- "vscode-debugprotocol-1.50.1" = {
+ "vscode-debugprotocol-1.51.0" = {
name = "vscode-debugprotocol";
packageName = "vscode-debugprotocol";
- version = "1.50.1";
+ version = "1.51.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.50.1.tgz";
- sha512 = "kIHIipklHnSjBm2KkRqTJLKL2FMZlJl0+/qpJt2y62YOamMNwcxNATnXXRgAwnzKKRMweqp93tJ83UTJ8+O7SQ==";
+ url = "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.51.0.tgz";
+ sha512 = "dzKWTMMyebIMPF1VYMuuQj7gGFq7guR8AFya0mKacu+ayptJfaRuM0mdHCqiOth4FnRP8mPhEroFPx6Ift8wHA==";
};
};
"vscode-emmet-helper-1.2.17" = {
@@ -68841,13 +68589,13 @@ let
sha512 = "Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw==";
};
};
- "watchpack-2.3.0" = {
+ "watchpack-2.3.1" = {
name = "watchpack";
packageName = "watchpack";
- version = "2.3.0";
+ version = "2.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/watchpack/-/watchpack-2.3.0.tgz";
- sha512 = "MnN0Q1OsvB/GGHETrFeZPQaOelWh/7O+EiFlj8sM9GPjtQkis7k01aAxrg/18kTfoIVcLL+haEVFlXDaSRwKRw==";
+ url = "https://registry.npmjs.org/watchpack/-/watchpack-2.3.1.tgz";
+ sha512 = "x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==";
};
};
"watchpack-chokidar2-2.0.1" = {
@@ -69084,13 +68832,13 @@ let
sha512 = "b4FHmRgaaAjP+aVOVz41a9Qa5SmkUPQ+u8FntTQ1roPHahSComB6rXnLwc976VhUY4CqTaLu5mCswuHiNhOfVw==";
};
};
- "webpack-5.64.4" = {
+ "webpack-5.65.0" = {
name = "webpack";
packageName = "webpack";
- version = "5.64.4";
+ version = "5.65.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.64.4.tgz";
- sha512 = "LWhqfKjCLoYJLKJY8wk2C3h77i8VyHowG3qYNZiIqD6D0ZS40439S/KVuc/PY48jp2yQmy0mhMknq8cys4jFMw==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.65.0.tgz";
+ sha512 = "Q5or2o6EKs7+oKmJo7LaqZaMOlDWQse9Tm5l1WAfU/ujLGN5Pb0SqGeVkN/4bpPmEqEP5RnVhiqsOtWtUVwGRw==";
};
};
"webpack-bundle-analyzer-3.9.0" = {
@@ -71020,6 +70768,15 @@ let
sha512 = "XfR8du6ua4K6uLGm5S6fA+FIJom/MdJcFNVY8geLlp2v8GYbOXD4EB1tPNZsRn4vBzKGMgb5DRZMeWuFc2GO8Q==";
};
};
+ "yargs-17.3.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "17.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-17.3.0.tgz";
+ sha512 = "GQl1pWyDoGptFPJx9b9L6kmR33TGusZvXIZUT+BOz9f7X2L94oeAskFYLEg/FkhV06zZPBYLvLZRWeYId29lew==";
+ };
+ };
"yargs-3.10.0" = {
name = "yargs";
packageName = "yargs";
@@ -71146,6 +70903,15 @@ let
sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==";
};
};
+ "yargs-parser-21.0.0" = {
+ name = "yargs-parser";
+ packageName = "yargs-parser";
+ version = "21.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.0.tgz";
+ sha512 = "z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA==";
+ };
+ };
"yargs-parser-4.2.1" = {
name = "yargs-parser";
packageName = "yargs-parser";
@@ -71371,15 +71137,6 @@ let
sha512 = "Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg==";
};
};
- "zen-observable-ts-1.2.3" = {
- name = "zen-observable-ts";
- packageName = "zen-observable-ts";
- version = "1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.3.tgz";
- sha512 = "hc/TGiPkAWpByykMwDcem3SdUgA4We+0Qb36bItSuJC9xD0XVBZoFHYoadAomDSNf64CG8Ydj0Qb8Od8BUWz5g==";
- };
- };
"zeromq-5.2.8" = {
name = "zeromq";
packageName = "zeromq";
@@ -71476,15 +71233,15 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "13.0.3";
+ version = "13.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-13.0.3.tgz";
- sha512 = "LDXDXDbQ1MBHVUstu4aNjFbyg5f9hLP52gEKB8Z6fQlf5CB1X5zD6UPcR4IvoYt03EFxg3DHco+ueJQ20oZUWQ==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-13.0.4.tgz";
+ sha512 = "0QMJXFNn57LVg7ZwZFPO90g6aZHDnoe5yCB7fo3nskOhDw1AW/rnbbaNVMVX/SvP30hOOTLsfVJ1Y3I6eKDgRA==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1300.3"
- sources."@angular-devkit/core-13.0.3"
- sources."@angular-devkit/schematics-13.0.3"
+ sources."@angular-devkit/architect-0.1300.4"
+ sources."@angular-devkit/core-13.0.4"
+ sources."@angular-devkit/schematics-13.0.4"
sources."@gar/promisify-1.1.2"
sources."@npmcli/fs-1.0.0"
sources."@npmcli/git-2.1.0"
@@ -71493,7 +71250,7 @@ in
sources."@npmcli/node-gyp-1.0.3"
sources."@npmcli/promise-spawn-1.3.2"
sources."@npmcli/run-script-2.0.0"
- sources."@schematics/angular-13.0.3"
+ sources."@schematics/angular-13.0.4"
sources."@tootallnate/once-1.1.2"
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-1.1.1"
@@ -71595,7 +71352,7 @@ in
sources."make-fetch-happen-9.1.0"
sources."mimic-fn-2.1.0"
sources."minimatch-3.0.4"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minipass-collect-1.0.2"
sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
@@ -71997,7 +71754,7 @@ in
];
})
sources."to-utf8-0.0.1"
- sources."uglify-js-3.14.3"
+ sources."uglify-js-3.14.4"
sources."unc-path-regex-0.1.2"
sources."unique-stream-2.3.1"
sources."universalify-0.1.2"
@@ -72037,10 +71794,10 @@ in
"@astrojs/language-server" = nodeEnv.buildNodePackage {
name = "_at_astrojs_slash_language-server";
packageName = "@astrojs/language-server";
- version = "0.8.1";
+ version = "0.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.8.1.tgz";
- sha512 = "em6H0HxGIgziVHjK2D+/XHihglQAp0d/c1T359OwT+2ydqGR1WthCvI3O+BLYgqHoPgk/27gtZs4kokTAZOGPA==";
+ url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.8.3.tgz";
+ sha512 = "9cgKUK/onWROvSOvzwNGMXL31D0B3J4xk62X6I23JbqlF/hR1nbMJcqb+/YiMN+hMXu/ImvVQUQIkCMkaIxWyA==";
};
dependencies = [
sources."@emmetio/abbreviation-2.2.2"
@@ -72078,7 +71835,7 @@ in
sources."to-regex-range-5.0.1"
sources."ts-morph-12.2.0"
sources."typescript-4.5.2"
- sources."vscode-css-languageservice-5.1.8"
+ sources."vscode-css-languageservice-5.1.9"
(sources."vscode-emmet-helper-2.1.2" // {
dependencies = [
sources."vscode-uri-2.1.2"
@@ -72452,7 +72209,11 @@ in
sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yaml-1.10.2"
- sources."yargs-17.2.1"
+ (sources."yargs-17.3.0" // {
+ dependencies = [
+ sources."yargs-parser-21.0.0"
+ ];
+ })
sources."yargs-parser-20.2.9"
sources."yn-3.1.1"
sources."yocto-queue-0.1.0"
@@ -72512,7 +72273,7 @@ in
sources."@hyperswarm/hypersign-2.1.1"
sources."@hyperswarm/network-2.1.0"
sources."@leichtgewicht/ip-codec-2.0.3"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."abstract-extension-3.1.1"
sources."abstract-leveldown-6.2.3"
sources."ansi-colors-3.2.3"
@@ -72800,7 +72561,7 @@ in
sources."normalize-path-3.0.0"
sources."npm-run-path-1.0.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-keys-1.1.1"
sources."object.assign-4.1.0"
sources."object.getownpropertydescriptors-2.1.3"
@@ -73013,7 +72774,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/glob-7.2.0"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/tough-cookie-2.3.8"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -73114,12 +72875,7 @@ in
];
})
sources."cli-cursor-2.1.0"
- (sources."cli-table-0.3.9" // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- sources."strip-ansi-6.0.1"
- ];
- })
+ sources."cli-table-0.3.11"
sources."cli-width-2.2.1"
(sources."cliui-4.1.0" // {
dependencies = [
@@ -73817,7 +73573,7 @@ in
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
sources."uc.micro-1.0.6"
- sources."uglify-js-3.14.3"
+ sources."uglify-js-3.14.4"
sources."underscore-1.13.1"
sources."union-value-1.0.1"
(sources."universal-url-2.0.0" // {
@@ -73894,10 +73650,10 @@ in
"@nerdwallet/shepherd" = nodeEnv.buildNodePackage {
name = "_at_nerdwallet_slash_shepherd";
packageName = "@nerdwallet/shepherd";
- version = "1.15.5";
+ version = "1.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@nerdwallet/shepherd/-/shepherd-1.15.5.tgz";
- sha512 = "1/Y4YtYQYBZLJJThAZbN4fz+9QfFcS3AvYAYTDYHL5ifMX358ZpQrqtdSSe1c3uGTPs6lQrT+gho/+Pk9dgNEQ==";
+ url = "https://registry.npmjs.org/@nerdwallet/shepherd/-/shepherd-1.16.0.tgz";
+ sha512 = "wNbAzVF3G4zjGkxATccYtiSgiWXseDRacra71ozH5JOUX4L3RRbd1iaqKRwILLKzcyxsvsOWbV47CSBRR6bK5g==";
};
dependencies = [
sources."@hapi/hoek-9.2.1"
@@ -73913,11 +73669,12 @@ in
sources."@octokit/plugin-request-log-1.0.4"
sources."@octokit/plugin-rest-endpoint-methods-5.13.0"
sources."@octokit/plugin-retry-3.0.9"
+ sources."@octokit/plugin-throttling-3.5.2"
sources."@octokit/request-5.6.2"
sources."@octokit/request-error-2.1.0"
sources."@octokit/rest-18.12.0"
sources."@octokit/types-6.34.0"
- sources."@sideway/address-4.1.2"
+ sources."@sideway/address-4.1.3"
sources."@sideway/formula-3.0.0"
sources."@sideway/pinpoint-2.0.0"
sources."@types/js-yaml-3.12.7"
@@ -73952,7 +73709,7 @@ in
sources."is-plain-object-5.0.0"
sources."is-unicode-supported-0.1.0"
sources."isexe-2.0.0"
- sources."joi-17.4.2"
+ sources."joi-17.5.0"
sources."js-yaml-3.14.1"
sources."jsonfile-6.1.0"
sources."lodash-4.17.21"
@@ -73973,7 +73730,7 @@ in
sources."restore-cursor-3.1.0"
sources."safe-buffer-5.2.1"
sources."signal-exit-3.0.6"
- sources."simple-git-2.47.1"
+ sources."simple-git-2.48.0"
sources."sprintf-js-1.0.3"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.1"
@@ -74037,12 +73794,12 @@ in
sources."@angular-devkit/schematics-13.0.2"
];
})
- sources."@types/eslint-8.2.0"
+ sources."@types/eslint-8.2.1"
sources."@types/eslint-scope-3.7.1"
sources."@types/estree-0.0.50"
sources."@types/json-schema-7.0.9"
sources."@types/json5-0.0.29"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
@@ -74082,7 +73839,7 @@ in
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.5.2"
@@ -74101,7 +73858,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
(sources."enhanced-resolve-5.8.3" // {
@@ -74294,7 +74051,7 @@ in
sources."universalify-2.0.0"
sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
- sources."watchpack-2.3.0"
+ sources."watchpack-2.3.1"
sources."wcwidth-1.0.1"
(sources."webpack-5.64.1" // {
dependencies = [
@@ -74578,7 +74335,7 @@ in
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/normalize-package-data-2.4.1"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -74593,13 +74350,13 @@ in
})
sources."@vue/cli-ui-addon-webpack-4.5.15"
sources."@vue/cli-ui-addon-widgets-4.5.15"
- (sources."@vue/compiler-core-3.2.23" // {
+ (sources."@vue/compiler-core-3.2.24" // {
dependencies = [
sources."source-map-0.6.1"
];
})
- sources."@vue/compiler-dom-3.2.23"
- sources."@vue/shared-3.2.23"
+ sources."@vue/compiler-dom-3.2.24"
+ sources."@vue/shared-3.2.24"
sources."@wry/equality-0.1.11"
sources."accepts-1.3.7"
sources."aggregate-error-3.1.0"
@@ -74717,7 +74474,7 @@ in
sources."call-bind-1.0.2"
sources."call-me-maybe-1.0.1"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."caseless-0.12.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -74773,12 +74530,12 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- (sources."core-js-compat-3.19.2" // {
+ (sources."core-js-compat-3.19.3" // {
dependencies = [
sources."semver-7.0.0"
];
})
- sources."core-js-pure-3.19.2"
+ sources."core-js-pure-3.19.3"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
(sources."cross-spawn-6.0.5" // {
@@ -74844,7 +74601,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -74927,7 +74684,7 @@ in
})
sources."find-up-3.0.0"
sources."fkill-6.2.0"
- sources."flow-parser-0.165.1"
+ sources."flow-parser-0.166.1"
sources."for-each-0.3.3"
sources."for-in-1.0.2"
sources."forever-agent-0.6.1"
@@ -75211,7 +74968,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-keys-1.1.1"
sources."object-path-0.11.8"
sources."object-visit-1.0.1"
@@ -75840,7 +75597,7 @@ in
sources."@types/minimist-1.2.2"
sources."@types/ms-0.7.31"
sources."@types/nlcst-1.0.0"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse5-6.0.3"
sources."@types/supports-color-8.1.1"
@@ -75910,7 +75667,7 @@ in
sources."map-obj-1.0.1"
];
})
- sources."decode-named-character-reference-1.0.0"
+ sources."decode-named-character-reference-1.0.1"
sources."decompress-response-3.3.0"
sources."deep-extend-0.6.0"
sources."defer-to-connect-1.1.3"
@@ -75963,7 +75720,7 @@ in
sources."hast-util-is-element-1.1.0"
];
})
- sources."hast-util-is-element-2.1.1"
+ sources."hast-util-is-element-2.1.2"
sources."hast-util-parse-selector-3.1.0"
sources."hast-util-phrasing-2.0.0"
sources."hast-util-to-nlcst-2.2.0"
@@ -76029,7 +75786,7 @@ in
})
sources."map-obj-4.3.0"
sources."map-stream-0.1.0"
- sources."markdown-table-3.0.1"
+ sources."markdown-table-3.0.2"
sources."mdast-comment-marker-2.1.0"
(sources."mdast-util-find-and-replace-2.1.0" // {
dependencies = [
@@ -76052,8 +75809,8 @@ in
sources."mdast-util-to-nlcst-5.2.1"
sources."mdast-util-to-string-3.1.0"
sources."meow-10.1.2"
- sources."micromark-3.0.9"
- sources."micromark-core-commonmark-1.0.5"
+ sources."micromark-3.0.10"
+ sources."micromark-core-commonmark-1.0.6"
sources."micromark-extension-frontmatter-1.0.0"
sources."micromark-extension-gfm-2.0.0"
sources."micromark-extension-gfm-autolink-literal-1.0.2"
@@ -76086,7 +75843,7 @@ in
sources."micromark-util-resolve-all-1.0.0"
sources."micromark-util-sanitize-uri-1.0.0"
sources."micromark-util-subtokenize-1.0.2"
- sources."micromark-util-symbol-1.0.0"
+ sources."micromark-util-symbol-1.0.1"
sources."micromark-util-types-1.0.2"
sources."mimic-response-1.0.1"
sources."min-indent-1.0.1"
@@ -76257,7 +76014,7 @@ in
sources."vfile-find-up-6.0.0"
sources."vfile-location-4.0.1"
sources."vfile-message-3.0.2"
- (sources."vfile-reporter-7.0.2" // {
+ (sources."vfile-reporter-7.0.3" // {
dependencies = [
sources."ansi-regex-6.0.1"
sources."emoji-regex-9.2.2"
@@ -76344,7 +76101,7 @@ in
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."browserslist-4.18.1"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -76354,7 +76111,7 @@ in
sources."convert-source-map-1.8.0"
sources."debug-4.3.3"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -76449,7 +76206,7 @@ in
dependencies = [
sources."@types/glob-7.2.0"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -76534,8 +76291,8 @@ in
};
dependencies = [
sources."browserslist-4.18.1"
- sources."caniuse-lite-1.0.30001283"
- sources."electron-to-chromium-1.4.5"
+ sources."caniuse-lite-1.0.30001285"
+ sources."electron-to-chromium-1.4.12"
sources."escalade-3.1.1"
sources."fraction.js-4.1.2"
sources."node-releases-2.0.1"
@@ -76563,14 +76320,14 @@ in
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/yauzl-2.9.2"
sources."agent-base-6.0.2"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
sources."ast-types-0.13.4"
- (sources."aws-sdk-2.1039.0" // {
+ (sources."aws-sdk-2.1044.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -77191,10 +76948,10 @@ in
balanceofsatoshis = nodeEnv.buildNodePackage {
name = "balanceofsatoshis";
packageName = "balanceofsatoshis";
- version = "11.12.1";
+ version = "11.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.12.1.tgz";
- sha512 = "4Rp1kKiAaycYGGnDHoYN34KrvF2rcMnUTsb5YcW9D35wrvjWAkXKQU3tZWU3RrtNUhIklkeaOQayuO8fk5ANww==";
+ url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.14.0.tgz";
+ sha512 = "gO6IVnyqSy1QQ0Qnq/dCO2UaqeG1Ll/8rnTgtVoDujkLgfphsIT+6joSgONTiB/uj+O3aeplL4Z1Hooj4FHtLA==";
};
dependencies = [
sources."@alexbosworth/fiat-1.0.0"
@@ -77225,7 +76982,7 @@ in
sources."@types/express-serve-static-core-4.17.26"
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/request-2.48.7"
@@ -77540,20 +77297,32 @@ in
sources."ln-service-52.16.0"
];
})
- (sources."ln-service-53.1.1" // {
+ (sources."ln-service-53.1.2" // {
dependencies = [
sources."@grpc/proto-loader-0.6.7"
- sources."@types/node-16.11.10"
- sources."lightning-5.1.0"
- sources."type-fest-2.6.0"
+ sources."@types/node-16.11.11"
+ sources."@types/ws-8.2.1"
+ sources."lightning-5.1.1"
+ sources."type-fest-2.8.0"
sources."ws-8.3.0"
];
})
- (sources."ln-sync-3.0.1" // {
+ (sources."ln-sync-3.1.0" // {
+ dependencies = [
+ sources."@grpc/proto-loader-0.6.7"
+ sources."@types/node-16.11.11"
+ sources."@types/ws-8.2.1"
+ sources."lightning-5.1.1"
+ sources."type-fest-2.8.0"
+ ];
+ })
+ (sources."ln-telegram-3.4.2" // {
dependencies = [
sources."@types/node-16.11.7"
+ sources."ansi-regex-5.0.1"
sources."bech32-1.1.4"
sources."bitcoinjs-lib-6.0.0"
+ sources."cbor-8.0.2"
(sources."invoices-2.0.1" // {
dependencies = [
sources."bech32-2.0.0"
@@ -77564,17 +77333,17 @@ in
})
];
})
+ sources."is-fullwidth-code-point-3.0.0"
(sources."lightning-4.13.3" // {
dependencies = [
sources."bitcoinjs-lib-5.2.0"
- sources."cbor-8.0.2"
];
})
- ];
- })
- (sources."ln-telegram-3.4.2" // {
- dependencies = [
sources."ln-service-52.16.0"
+ sources."ln-sync-3.0.1"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ sources."table-6.7.3"
];
})
sources."lodash-4.17.21"
@@ -77662,11 +77431,7 @@ in
sources."semver-6.3.0"
];
})
- (sources."paid-services-3.1.2" // {
- dependencies = [
- sources."ln-service-52.16.0"
- ];
- })
+ sources."paid-services-3.2.0"
sources."parseurl-1.3.3"
sources."path-to-regexp-0.1.7"
sources."pinkie-2.0.4"
@@ -77749,7 +77514,7 @@ in
sources."strip-ansi-4.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-2.0.0"
- (sources."table-6.7.3" // {
+ (sources."table-6.7.5" // {
dependencies = [
sources."ansi-regex-5.0.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -78464,7 +78229,7 @@ in
sources."mkdirp-classic-0.5.3"
sources."module-deps-6.2.3"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."once-1.4.0"
@@ -78879,7 +78644,7 @@ in
sources."chalk-2.4.2"
sources."character-parser-2.2.0"
sources."charenc-0.0.2"
- sources."chart.js-3.6.0"
+ sources."chart.js-3.6.2"
sources."cipher-base-1.0.4"
sources."cliui-6.0.0"
sources."color-convert-1.9.3"
@@ -79181,7 +78946,7 @@ in
sources."set-blocking-2.0.0"
sources."setprototypeof-1.1.1"
sources."sha.js-2.4.11"
- sources."simple-git-2.47.1"
+ sources."simple-git-2.48.0"
sources."spdx-correct-3.1.1"
sources."spdx-exceptions-2.3.0"
sources."spdx-expression-parse-3.0.1"
@@ -79273,7 +79038,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -80277,14 +80042,14 @@ in
cdk8s-cli = nodeEnv.buildNodePackage {
name = "cdk8s-cli";
packageName = "cdk8s-cli";
- version = "1.0.41";
+ version = "1.0.47";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.41.tgz";
- sha512 = "UBHotWsAEqWx9GrY7Fd0tSstKo6vKcufGbi+oB1O6RRSOAZK2i8oNq1CokpNzNNI9pYwYXN4jgWvfr0GfrVE6w==";
+ url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.47.tgz";
+ sha512 = "vHCqAuCK2z4R3o8XSiPhp4Dz6WPGDyiX6olqdImd8rzxupst6/pOq0XtNOR7SkqcCqqV0eHwa80/ktantPyGvw==";
};
dependencies = [
- sources."@jsii/check-node-1.46.0"
- sources."@jsii/spec-1.46.0"
+ sources."@jsii/check-node-1.47.0"
+ sources."@jsii/spec-1.47.0"
sources."@types/node-12.20.37"
sources."@xmldom/xmldom-0.7.5"
sources."ajv-8.8.2"
@@ -80295,12 +80060,12 @@ in
sources."call-bind-1.0.2"
sources."camelcase-6.2.1"
sources."case-1.6.3"
- sources."cdk8s-1.1.48"
- sources."cdk8s-plus-22-1.0.0-beta.54"
+ sources."cdk8s-1.2.5"
+ sources."cdk8s-plus-22-1.0.0-beta.57"
sources."chalk-4.1.2"
sources."cliui-7.0.4"
sources."clone-2.1.2"
- (sources."codemaker-1.46.0" // {
+ (sources."codemaker-1.47.0" // {
dependencies = [
sources."fs-extra-9.1.0"
];
@@ -80309,7 +80074,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.30.0"
- sources."constructs-3.3.161"
+ sources."constructs-3.3.162"
sources."date-format-3.0.0"
sources."debug-4.3.3"
sources."decamelize-5.0.1"
@@ -80365,38 +80130,38 @@ in
sources."is-weakref-1.0.1"
sources."is-weakset-2.0.1"
sources."isarray-2.0.5"
- (sources."jsii-1.46.0" // {
+ (sources."jsii-1.47.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-pacmak-1.46.0" // {
+ (sources."jsii-pacmak-1.47.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-reflect-1.46.0" // {
+ (sources."jsii-reflect-1.47.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-rosetta-1.46.0" // {
+ (sources."jsii-rosetta-1.47.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.413" // {
+ (sources."jsii-srcmak-0.1.420" // {
dependencies = [
sources."fs-extra-9.1.0"
];
})
sources."json-schema-0.4.0"
sources."json-schema-traverse-1.0.0"
- sources."json2jsii-0.2.66"
+ sources."json2jsii-0.2.75"
sources."jsonfile-6.1.0"
sources."jsonschema-1.4.0"
sources."locate-path-5.0.0"
@@ -80408,11 +80173,11 @@ in
sources."ms-2.1.2"
sources."ncp-2.0.0"
sources."no-case-3.0.4"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
- sources."oo-ascii-tree-1.46.0"
+ sources."oo-ascii-tree-1.47.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
@@ -80434,7 +80199,7 @@ in
sources."snake-case-3.0.4"
sources."sort-json-2.0.0"
sources."spdx-license-list-6.4.0"
- sources."sscaff-1.2.141"
+ sources."sscaff-1.2.145"
(sources."streamroller-2.2.4" // {
dependencies = [
sources."date-format-2.1.0"
@@ -80475,7 +80240,7 @@ in
];
buildInputs = globalBuildInputs;
meta = {
- description = "CDK for Kubernetes CLI";
+ description = "This is the command line tool for Cloud Development Kit (CDK) for Kubernetes (cdk8s).";
license = "Apache-2.0";
};
production = true;
@@ -80485,668 +80250,260 @@ in
cdktf-cli = nodeEnv.buildNodePackage {
name = "cdktf-cli";
packageName = "cdktf-cli";
- version = "0.7.0";
+ version = "0.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.7.0.tgz";
- sha512 = "N0U5YgquMYZTqfO+SSIdP6K/EAnFqS5gHj8eISvP2ZjrphfSFM7hs4VO0bVvzNoMe/ByBbUtQMHXCs5r1XdB9Q==";
+ url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.8.1.tgz";
+ sha512 = "pc+zelNhkYIiGY/9rWeKpUD6zh66gbXSS66u+VnA8r7PfXhLuL+uLXJ6YHQUV1zOyrF1KamMk3GoGY/9/PuQWw==";
};
dependencies = [
- sources."@apollo/client-3.5.5"
- (sources."@apollo/protobufjs-1.2.2" // {
- dependencies = [
- sources."@types/node-10.17.60"
- ];
- })
- sources."@apollographql/apollo-tools-0.5.2"
- sources."@apollographql/graphql-playground-html-1.6.29"
- (sources."@ardatan/aggregate-error-0.0.6" // {
- dependencies = [
- sources."tslib-2.0.3"
- ];
- })
sources."@babel/code-frame-7.16.0"
sources."@babel/generator-7.16.0"
sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
- dependencies = [
- sources."chalk-2.4.2"
- ];
- })
+ sources."@babel/highlight-7.16.0"
sources."@babel/parser-7.16.4"
sources."@babel/template-7.16.0"
sources."@babel/types-7.16.0"
- sources."@cdktf/hcl2cdk-0.7.0"
- sources."@cdktf/hcl2json-0.7.0"
- sources."@cdktf/provider-generator-0.7.0"
- (sources."@graphql-tools/graphql-file-loader-6.2.7" // {
- dependencies = [
- sources."tslib-2.1.0"
- ];
- })
- (sources."@graphql-tools/import-6.6.1" // {
- dependencies = [
- sources."@graphql-tools/utils-8.5.3"
- ];
- })
- (sources."@graphql-tools/load-6.2.8" // {
- dependencies = [
- sources."tslib-2.2.0"
- ];
- })
- (sources."@graphql-tools/merge-6.2.17" // {
- dependencies = [
- sources."@graphql-tools/utils-8.0.2"
- ];
- })
- (sources."@graphql-tools/mock-8.4.4" // {
- dependencies = [
- sources."@graphql-tools/utils-8.5.3"
- ];
- })
- (sources."@graphql-tools/schema-8.3.1" // {
- dependencies = [
- sources."@graphql-tools/merge-8.2.1"
- sources."@graphql-tools/utils-8.5.3"
- ];
- })
- (sources."@graphql-tools/utils-7.10.0" // {
- dependencies = [
- sources."tslib-2.2.0"
- ];
- })
- sources."@graphql-typed-document-node/core-3.1.1"
- sources."@josephg/resolvable-1.0.1"
- sources."@jsii/check-node-1.46.0"
- sources."@jsii/spec-1.46.0"
- sources."@nodelib/fs.scandir-2.1.5"
- sources."@nodelib/fs.stat-2.0.5"
- sources."@nodelib/fs.walk-1.2.8"
- sources."@npmcli/ci-detect-1.4.0"
- sources."@protobufjs/aspromise-1.1.2"
- sources."@protobufjs/base64-1.1.2"
- sources."@protobufjs/codegen-2.0.4"
- sources."@protobufjs/eventemitter-1.1.0"
- sources."@protobufjs/fetch-1.1.0"
- sources."@protobufjs/float-1.0.2"
- sources."@protobufjs/inquire-1.1.0"
- sources."@protobufjs/path-1.1.2"
- sources."@protobufjs/pool-1.1.0"
- sources."@protobufjs/utf8-1.1.0"
- sources."@skorfmann/ink-confirm-input-3.0.0"
- (sources."@skorfmann/jsii-srcmak-0.1.374" // {
- dependencies = [
- sources."@jsii/check-node-1.37.0"
- sources."ansi-styles-4.3.0"
- sources."camelcase-5.3.1"
- sources."cliui-6.0.0"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- sources."decamelize-1.2.0"
- sources."fs-extra-9.1.0"
- (sources."jsii-1.37.0" // {
- dependencies = [
- sources."yargs-16.2.0"
- ];
- })
- sources."wrap-ansi-6.2.0"
- sources."y18n-4.0.3"
- sources."yargs-15.4.1"
- sources."yargs-parser-18.1.3"
- ];
- })
- sources."@skorfmann/terraform-cloud-1.10.1"
- sources."@types/accepts-1.3.5"
- sources."@types/body-parser-1.19.1"
- sources."@types/connect-3.4.35"
- sources."@types/cors-2.8.12"
- sources."@types/express-4.17.13"
- sources."@types/express-serve-static-core-4.17.24"
- sources."@types/long-4.0.1"
- sources."@types/mime-1.3.2"
- sources."@types/node-14.17.34"
- sources."@types/node-fetch-2.5.12"
- sources."@types/qs-6.9.7"
- sources."@types/range-parser-1.2.4"
- sources."@types/serve-static-1.13.10"
- sources."@types/yauzl-2.9.2"
- sources."@types/yoga-layout-1.9.2"
- sources."@wry/context-0.6.1"
- sources."@wry/equality-0.5.2"
- sources."@wry/trie-0.3.1"
- sources."@xmldom/xmldom-0.7.5"
- sources."accepts-1.3.7"
- sources."address-1.1.2"
- (sources."ansi-escapes-4.3.2" // {
- dependencies = [
- sources."type-fest-0.21.3"
- ];
- })
- sources."ansi-regex-5.0.1"
- sources."ansi-styles-3.2.1"
- (sources."anymatch-3.1.2" // {
- dependencies = [
- sources."normalize-path-3.0.0"
- ];
- })
- sources."apollo-datasource-3.3.0"
- sources."apollo-graphql-0.9.5"
- sources."apollo-reporting-protobuf-3.2.0"
- sources."apollo-server-caching-3.3.0"
- (sources."apollo-server-core-3.5.0" // {
- dependencies = [
- sources."@graphql-tools/utils-8.5.3"
- ];
- })
- sources."apollo-server-env-4.2.0"
- sources."apollo-server-errors-3.3.0"
- sources."apollo-server-express-3.5.0"
- sources."apollo-server-plugin-base-3.4.0"
- sources."apollo-server-types-3.4.0"
- sources."archiver-5.3.0"
- (sources."archiver-utils-2.1.0" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."normalize-path-3.0.0"
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- ];
- })
- sources."array-flatten-1.1.1"
- sources."array-union-2.1.0"
- sources."astral-regex-2.0.0"
- sources."async-3.2.2"
- sources."async-retry-1.3.3"
- sources."asynckit-0.4.0"
- sources."at-least-node-1.0.0"
- sources."auto-bind-4.0.0"
- sources."available-typed-arrays-1.0.5"
- sources."axios-0.21.4"
- sources."backo2-1.0.2"
- sources."balanced-match-1.0.2"
- sources."base64-js-1.5.1"
- sources."binary-extensions-2.2.0"
- sources."bl-4.1.0"
- sources."body-parser-1.19.0"
- sources."brace-expansion-1.1.11"
- sources."braces-3.0.2"
- sources."buffer-5.7.1"
- sources."buffer-crc32-0.2.13"
- sources."bytes-3.1.0"
- sources."call-bind-1.0.2"
- sources."camel-case-4.1.2"
- sources."camelcase-6.2.1"
- (sources."camelcase-keys-6.2.2" // {
- dependencies = [
- sources."camelcase-5.3.1"
- ];
- })
- sources."case-1.6.3"
- sources."cdktf-0.7.0"
- (sources."chalk-4.1.2" // {
+ sources."@cdktf/hcl2cdk-0.8.1"
+ sources."@cdktf/hcl2json-0.8.1"
+ sources."@cdktf/provider-generator-0.8.1"
+ (sources."@jsii/check-node-1.47.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.2"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."has-flag-4.0.0"
sources."supports-color-7.2.0"
];
})
- sources."chardet-0.7.0"
- (sources."chokidar-3.5.2" // {
- dependencies = [
- sources."normalize-path-3.0.0"
- ];
- })
- sources."ci-info-2.0.0"
- sources."cli-boxes-2.2.1"
- sources."cli-cursor-3.1.0"
- sources."cli-spinners-2.6.0"
- sources."cli-truncate-2.1.0"
- sources."cli-width-3.0.0"
- sources."cliui-7.0.4"
+ sources."@jsii/spec-1.47.0"
+ sources."@types/node-16.11.12"
+ sources."@types/node-fetch-2.5.12"
+ sources."@xmldom/xmldom-0.7.5"
+ sources."ansi-regex-5.0.1"
+ sources."ansi-styles-3.2.1"
+ sources."asynckit-0.4.0"
+ sources."at-least-node-1.0.0"
+ sources."available-typed-arrays-1.0.5"
+ sources."balanced-match-1.0.2"
+ sources."brace-expansion-1.1.11"
+ sources."call-bind-1.0.2"
+ sources."camelcase-6.2.1"
+ sources."case-1.6.3"
+ sources."cdktf-0.8.1"
+ sources."chalk-2.4.2"
+ sources."cliui-6.0.0"
sources."clone-2.1.2"
- sources."code-excerpt-3.0.0"
(sources."codemaker-0.22.0" // {
dependencies = [
sources."camelcase-5.3.1"
- sources."decamelize-1.2.0"
];
})
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."colors-1.4.0"
sources."combined-stream-1.0.8"
- sources."commander-2.20.3"
sources."commonmark-0.30.0"
- (sources."compress-commons-4.1.1" // {
- dependencies = [
- sources."normalize-path-3.0.0"
- ];
- })
sources."concat-map-0.0.1"
- sources."constructs-10.0.9"
- (sources."content-disposition-0.5.3" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
- sources."content-type-1.0.4"
- sources."convert-to-spaces-1.0.2"
- sources."cookie-0.4.0"
- sources."cookie-signature-1.0.6"
- sources."core-js-pure-3.19.2"
- sources."core-util-is-1.0.3"
- sources."cors-2.8.5"
- sources."crc-32-1.2.0"
- sources."crc32-stream-4.0.2"
- (sources."cross-fetch-3.1.4" // {
- dependencies = [
- sources."node-fetch-2.6.1"
- ];
- })
- sources."cross-spawn-7.0.3"
- sources."cssfilter-0.0.10"
- sources."date-fns-2.27.0"
+ sources."constructs-10.0.10"
sources."date-format-3.0.0"
- sources."debug-2.6.9"
- sources."decamelize-5.0.1"
+ sources."debug-4.3.3"
+ sources."decamelize-1.2.0"
sources."deep-equal-2.0.5"
- (sources."defaults-1.0.3" // {
- dependencies = [
- sources."clone-1.0.4"
- ];
- })
sources."define-properties-1.1.3"
- sources."delay-5.0.0"
sources."delayed-stream-1.0.0"
- sources."depd-1.1.2"
- sources."destroy-1.0.4"
sources."detect-indent-5.0.0"
sources."detect-newline-2.1.0"
- sources."detect-port-1.3.0"
- sources."dir-glob-3.0.1"
- sources."ee-first-1.1.1"
sources."emoji-regex-8.0.0"
- sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.4"
sources."entities-2.0.3"
sources."es-abstract-1.19.1"
sources."es-get-iterator-1.1.2"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
- sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
- sources."etag-1.8.1"
- sources."eventemitter3-3.1.2"
sources."events-3.3.0"
- sources."execa-5.1.1"
- sources."exit-on-epipe-1.0.1"
- (sources."express-4.17.1" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
- sources."external-editor-3.1.0"
- (sources."extract-zip-2.0.1" // {
- dependencies = [
- sources."debug-4.3.3"
- sources."get-stream-5.2.0"
- sources."ms-2.1.2"
- ];
- })
- sources."fast-glob-3.2.7"
- sources."fast-json-stable-stringify-2.1.0"
- sources."fastq-1.13.0"
- sources."fd-slicer-1.1.0"
- sources."figures-3.2.0"
- sources."fill-range-7.0.1"
- sources."finalhandler-1.1.2"
sources."find-up-4.1.0"
sources."flatted-2.0.2"
- sources."follow-redirects-1.14.5"
sources."foreach-2.0.5"
sources."form-data-3.0.1"
- sources."forwarded-0.2.0"
- sources."fresh-0.5.2"
- sources."fs-constants-1.0.0"
- (sources."fs-extra-8.1.0" // {
- dependencies = [
- sources."jsonfile-4.0.0"
- sources."universalify-0.1.2"
- ];
- })
+ sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
- sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
- sources."get-stream-6.0.1"
sources."get-symbol-description-1.0.0"
sources."glob-7.1.7"
- sources."glob-parent-5.1.2"
- sources."globby-11.0.3"
sources."graceful-fs-4.2.8"
sources."graphology-0.20.0"
sources."graphology-types-0.19.5"
- sources."graphql-15.7.2"
- sources."graphql-subscriptions-1.2.1"
- sources."graphql-tag-2.12.6"
sources."has-1.0.3"
sources."has-bigints-1.0.1"
sources."has-flag-3.0.0"
sources."has-symbols-1.0.2"
sources."has-tostringtag-1.0.0"
- sources."hoist-non-react-statics-3.3.2"
- (sources."http-errors-1.7.2" // {
- dependencies = [
- sources."inherits-2.0.3"
- ];
- })
- sources."human-signals-2.1.0"
- sources."iconv-lite-0.4.24"
- sources."ieee754-1.2.1"
- sources."ignore-5.1.9"
- sources."import-from-3.0.0"
- sources."indent-string-4.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- (sources."ink-3.2.0" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- sources."type-fest-0.12.0"
- sources."wrap-ansi-6.2.0"
- ];
- })
- sources."ink-spinner-4.0.3"
- sources."ink-text-input-4.0.2"
- sources."ink-use-stdout-dimensions-1.0.5"
- sources."inquirer-8.2.0"
sources."internal-slot-1.0.3"
- sources."ipaddr.js-1.9.1"
sources."is-arguments-1.1.1"
sources."is-bigint-1.0.4"
- sources."is-binary-path-2.1.0"
sources."is-boolean-object-1.1.2"
sources."is-callable-1.2.4"
- sources."is-ci-2.0.0"
sources."is-date-object-1.0.5"
- sources."is-docker-2.2.1"
- sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
- sources."is-glob-4.0.1"
- sources."is-interactive-1.0.0"
sources."is-map-2.0.2"
sources."is-negative-zero-2.0.1"
- sources."is-number-7.0.0"
sources."is-number-object-1.0.6"
sources."is-regex-1.1.4"
sources."is-set-2.0.2"
sources."is-shared-array-buffer-1.0.1"
- sources."is-stream-2.0.1"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
sources."is-typed-array-1.1.8"
- sources."is-unicode-supported-0.1.0"
sources."is-valid-domain-0.1.5"
sources."is-weakmap-2.0.1"
sources."is-weakref-1.0.1"
sources."is-weakset-2.0.1"
- sources."is-wsl-2.2.0"
sources."isarray-2.0.5"
- sources."isexe-2.0.0"
- sources."iterall-1.3.0"
sources."js-tokens-4.0.0"
sources."jsesc-2.5.2"
- (sources."jsii-1.46.0" // {
+ (sources."jsii-1.47.0" // {
dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."cliui-7.0.4"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
sources."fs-extra-9.1.0"
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.0"
+ sources."wrap-ansi-7.0.0"
+ sources."y18n-5.0.8"
sources."yargs-16.2.0"
+ sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-pacmak-1.37.0" // {
+ (sources."jsii-pacmak-1.47.0" // {
dependencies = [
- sources."@jsii/check-node-1.37.0"
- sources."codemaker-1.46.0"
+ sources."ansi-styles-4.3.0"
+ sources."cliui-7.0.4"
+ sources."codemaker-1.47.0"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."decamelize-5.0.1"
sources."escape-string-regexp-4.0.0"
sources."fs-extra-9.1.0"
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.0"
+ sources."wrap-ansi-7.0.0"
+ sources."y18n-5.0.8"
sources."yargs-16.2.0"
+ sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-reflect-1.46.0" // {
+ (sources."jsii-reflect-1.47.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."cliui-7.0.4"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."fs-extra-9.1.0"
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.0"
+ sources."wrap-ansi-7.0.0"
+ sources."y18n-5.0.8"
+ sources."yargs-16.2.0"
+ sources."yargs-parser-20.2.9"
+ ];
+ })
+ (sources."jsii-rosetta-1.47.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."cliui-7.0.4"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."fs-extra-9.1.0"
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.0"
+ sources."wrap-ansi-7.0.0"
+ sources."y18n-5.0.8"
+ sources."yargs-16.2.0"
+ sources."yargs-parser-20.2.9"
+ ];
+ })
+ (sources."jsii-srcmak-0.1.420" // {
dependencies = [
sources."fs-extra-9.1.0"
- sources."yargs-16.2.0"
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.0"
+ sources."yargs-15.4.1"
];
})
- (sources."jsii-rosetta-1.46.0" // {
- dependencies = [
- sources."fs-extra-9.1.0"
- sources."yargs-16.2.0"
- ];
- })
- sources."jsonfile-6.1.0"
+ sources."jsonfile-4.0.0"
sources."jsonschema-1.4.0"
- (sources."lazystream-1.0.1" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- ];
- })
sources."locate-path-5.0.0"
- sources."lodash-4.17.21"
- sources."lodash.defaults-4.2.0"
- sources."lodash.difference-4.5.0"
- sources."lodash.flatten-4.4.0"
- sources."lodash.isequal-4.5.0"
- sources."lodash.isplainobject-4.0.6"
- sources."lodash.sortby-4.7.0"
- sources."lodash.union-4.6.0"
- sources."log-symbols-4.1.0"
- (sources."log4js-6.3.0" // {
- dependencies = [
- sources."debug-4.3.3"
- sources."ms-2.1.2"
- ];
- })
- sources."loglevel-1.8.0"
- sources."long-4.0.0"
- sources."loose-envify-1.4.0"
- sources."lower-case-2.0.2"
+ sources."log4js-6.3.0"
sources."lru-cache-6.0.0"
- sources."map-obj-4.3.0"
sources."mdurl-1.0.1"
- sources."media-typer-0.3.0"
- sources."merge-descriptors-1.0.1"
- sources."merge-stream-2.0.0"
- sources."merge2-1.4.1"
- sources."methods-1.1.2"
- sources."micromatch-4.0.4"
- sources."mime-1.6.0"
sources."mime-db-1.51.0"
sources."mime-types-2.1.34"
- sources."mimic-fn-2.1.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."ms-2.0.0"
- sources."mute-stream-0.0.8"
+ sources."ms-2.1.2"
sources."ncp-2.0.0"
- sources."negotiator-0.6.2"
- sources."no-case-3.0.4"
sources."node-fetch-2.6.6"
- sources."normalize-path-2.1.1"
- sources."npm-run-path-4.0.1"
- sources."object-assign-4.1.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."obliterator-1.6.1"
- sources."on-finished-2.3.0"
sources."once-1.4.0"
- sources."onetime-5.1.2"
- sources."oo-ascii-tree-1.46.0"
- sources."open-7.4.2"
- sources."optimism-0.16.1"
- sources."ora-5.4.1"
- sources."os-tmpdir-1.0.2"
- sources."p-limit-3.1.0"
- (sources."p-locate-4.1.0" // {
- dependencies = [
- sources."p-limit-2.3.0"
- ];
- })
+ sources."oo-ascii-tree-1.47.0"
+ sources."p-limit-2.3.0"
+ sources."p-locate-4.1.0"
sources."p-try-2.2.0"
- sources."parse-gitignore-1.0.1"
- sources."parseurl-1.3.3"
- sources."pascal-case-3.1.2"
- sources."patch-console-1.0.0"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
- sources."path-key-3.1.1"
- sources."path-to-regexp-0.1.7"
- sources."path-type-4.0.0"
- sources."pend-1.2.0"
- sources."picomatch-2.3.0"
- sources."prettier-2.5.0"
- sources."printj-1.1.2"
- sources."process-nextick-args-2.0.1"
- sources."prop-types-15.7.2"
- sources."proxy-addr-2.0.7"
- sources."pump-3.0.0"
+ sources."prettier-2.5.1"
sources."punycode-2.1.1"
- sources."qs-6.7.0"
- sources."queue-microtask-1.2.3"
- sources."quick-lru-4.0.1"
- sources."range-parser-1.2.1"
- sources."raw-body-2.4.0"
- sources."react-16.14.0"
- sources."react-devtools-core-4.21.0"
- sources."react-is-16.13.1"
- sources."react-reconciler-0.26.2"
- sources."readable-stream-3.6.0"
- sources."readdir-glob-1.1.1"
- sources."readdirp-3.6.0"
sources."regexp.prototype.flags-1.3.1"
- sources."remove-trailing-separator-1.1.0"
sources."require-directory-2.1.1"
sources."require-main-filename-2.0.0"
sources."reserved-words-0.1.2"
- sources."resolve-from-5.0.0"
- sources."restore-cursor-3.1.0"
- sources."retry-0.13.1"
- sources."reusify-1.0.4"
sources."rfdc-1.3.0"
- sources."run-async-2.4.1"
- sources."run-parallel-1.2.0"
- (sources."rxjs-7.4.0" // {
- dependencies = [
- sources."tslib-2.1.0"
- ];
- })
- sources."safe-buffer-5.2.1"
- sources."safer-buffer-2.1.2"
- sources."scheduler-0.20.2"
sources."semver-7.3.5"
(sources."semver-intersect-1.4.0" // {
dependencies = [
sources."semver-5.7.1"
];
})
- (sources."send-0.17.1" // {
- dependencies = [
- sources."ms-2.1.1"
- ];
- })
- sources."serve-static-1.14.1"
sources."set-blocking-2.0.0"
- sources."setprototypeof-1.1.1"
- sources."sha.js-2.4.11"
- sources."shebang-command-2.0.0"
- sources."shebang-regex-3.0.0"
- sources."shell-quote-1.7.3"
sources."side-channel-1.0.4"
- sources."signal-exit-3.0.6"
- sources."slash-3.0.0"
- (sources."slice-ansi-3.0.0" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- ];
- })
sources."sort-json-2.0.0"
sources."source-map-0.5.7"
sources."spdx-license-list-6.4.0"
- sources."sscaff-1.2.141"
- (sources."stack-utils-2.0.5" // {
- dependencies = [
- sources."escape-string-regexp-2.0.0"
- ];
- })
- sources."statuses-1.5.0"
- sources."stream-buffers-3.0.2"
(sources."streamroller-2.2.4" // {
dependencies = [
sources."date-format-2.1.0"
- sources."debug-4.3.3"
- sources."ms-2.1.2"
];
})
sources."string-width-4.2.3"
sources."string.prototype.repeat-0.2.0"
sources."string.prototype.trimend-1.0.4"
sources."string.prototype.trimstart-1.0.4"
- (sources."string_decoder-1.1.1" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
sources."strip-ansi-6.0.1"
- sources."strip-final-newline-2.0.0"
- (sources."subscriptions-transport-ws-0.9.19" // {
- dependencies = [
- sources."symbol-observable-1.2.0"
- ];
- })
sources."supports-color-5.5.0"
- sources."symbol-observable-4.0.0"
- sources."tar-stream-2.2.0"
- sources."through-2.3.8"
- sources."tmp-0.0.33"
sources."to-fast-properties-2.0.0"
- sources."to-regex-range-5.0.1"
- sources."toidentifier-1.0.0"
sources."tr46-0.0.3"
- sources."ts-invariant-0.9.3"
- sources."tslib-2.3.1"
- sources."type-fest-0.15.1"
- sources."type-is-1.6.18"
sources."typescript-3.9.10"
sources."unbox-primitive-1.0.1"
- sources."universalify-2.0.0"
- sources."unixify-1.0.0"
- sources."unpipe-1.0.0"
- sources."util-deprecate-1.0.2"
- sources."utility-types-3.10.0"
- sources."utils-merge-1.0.1"
- sources."uuid-8.3.2"
- sources."valid-url-1.0.9"
- sources."value-or-promise-1.0.11"
- sources."vary-1.1.2"
- sources."wcwidth-1.0.1"
+ sources."universalify-0.1.2"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
- sources."which-2.0.2"
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.1"
sources."which-module-2.0.0"
sources."which-typed-array-1.1.7"
- sources."widest-line-3.1.0"
sources."workerpool-6.1.5"
- (sources."wrap-ansi-7.0.0" // {
+ (sources."wrap-ansi-6.2.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."color-convert-2.0.1"
@@ -81154,20 +80511,25 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.5.6"
sources."xmlbuilder-15.1.1"
- sources."xss-1.0.10"
- sources."y18n-5.0.8"
+ sources."y18n-4.0.3"
sources."yallist-4.0.0"
- sources."yargs-17.2.1"
- sources."yargs-parser-20.2.9"
- sources."yauzl-2.10.0"
- sources."yn-3.1.1"
- sources."yocto-queue-0.1.0"
- sources."yoga-layout-prebuilt-1.10.0"
- sources."zen-observable-0.8.15"
- sources."zen-observable-ts-1.2.3"
- sources."zip-stream-4.1.0"
+ (sources."yargs-17.3.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."cliui-7.0.4"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."wrap-ansi-7.0.0"
+ sources."y18n-5.0.8"
+ sources."yargs-parser-21.0.0"
+ ];
+ })
+ (sources."yargs-parser-18.1.3" // {
+ dependencies = [
+ sources."camelcase-5.3.1"
+ ];
+ })
sources."zod-1.11.17"
];
buildInputs = globalBuildInputs;
@@ -81441,10 +80803,10 @@ in
coc-diagnostic = nodeEnv.buildNodePackage {
name = "coc-diagnostic";
packageName = "coc-diagnostic";
- version = "0.22.1";
+ version = "0.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.22.1.tgz";
- sha512 = "ejpSHqbHDl6cW6H0LXCktHpYriMVk+k3cLB7+JGYM44pTOPNwnXmOZKRCk62kFHIOk0YsHM/F/LnHiGf9+YImw==";
+ url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.23.0.tgz";
+ sha512 = "wGpS2ieusia2OpCaZpT7XRopfUCjKIqH5ksfrLzxwPOi3uT9nfv2exJA6JLk6DEfpwcyBzEnLMQ/JI1BUXDrcg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -81909,7 +81271,7 @@ in
sources."metals-languageclient-0.4.2"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minizlib-2.1.2"
sources."mkdirp-1.0.4"
sources."ms-2.1.2"
@@ -81926,7 +81288,7 @@ in
sources."node-fetch-2.6.6"
sources."node-int64-0.4.0"
sources."npm-run-path-2.0.2"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."once-1.4.0"
@@ -82101,7 +81463,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."capture-stack-trace-1.0.1"
sources."ccount-1.1.0"
(sources."chalk-4.1.2" // {
@@ -82163,7 +81525,7 @@ in
];
})
sources."copy-descriptor-0.1.1"
- sources."core-js-3.19.2"
+ sources."core-js-3.19.3"
sources."cosmiconfig-3.1.0"
sources."create-error-class-3.0.2"
sources."cross-spawn-7.0.3"
@@ -82199,7 +81561,7 @@ in
sources."domutils-1.7.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enquirer-2.3.6"
@@ -82654,7 +82016,7 @@ in
sources."prelude-ls-1.2.1"
sources."prepend-http-1.0.4"
sources."preserve-0.2.0"
- sources."prettier-2.5.0"
+ sources."prettier-2.5.1"
sources."prettier-eslint-12.0.0"
(sources."prettier-stylelint-0.4.2" // {
dependencies = [
@@ -82863,7 +82225,7 @@ in
sources."sugarss-1.0.1"
sources."supports-color-5.5.0"
sources."svg-tags-1.0.0"
- (sources."table-6.7.3" // {
+ (sources."table-6.7.5" // {
dependencies = [
sources."ajv-8.8.2"
sources."json-schema-traverse-1.0.0"
@@ -83003,7 +82365,7 @@ in
sha512 = "/cqW+D5QU/nDzhkh9veNO6JQRFkQ5fxGNsvIAtbhhfkNYgBTwMjUoAdaSUcZRcBvYNUjCQ4OpEqWqFmDGx6Sqg==";
};
dependencies = [
- sources."pyright-1.1.191"
+ sources."pyright-1.1.193"
];
buildInputs = globalBuildInputs;
meta = {
@@ -83213,7 +82575,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -83250,7 +82612,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -83443,7 +82805,7 @@ in
sources."sugarss-2.0.0"
sources."supports-color-5.5.0"
sources."svg-tags-1.0.0"
- sources."table-6.7.3"
+ sources."table-6.7.5"
sources."to-fast-properties-2.0.0"
sources."to-regex-range-5.0.1"
sources."trim-newlines-3.0.1"
@@ -83792,7 +83154,7 @@ in
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."prelude-ls-1.2.1"
- sources."prettier-2.5.0"
+ sources."prettier-2.5.1"
sources."progress-2.0.3"
sources."pug-error-2.0.0"
sources."pug-lexer-5.0.1"
@@ -83817,7 +83179,7 @@ in
sources."strip-ansi-6.0.1"
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
- (sources."table-6.7.3" // {
+ (sources."table-6.7.5" // {
dependencies = [
sources."ajv-8.8.2"
sources."json-schema-traverse-1.0.0"
@@ -84286,7 +83648,7 @@ in
sources."color-3.2.1"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."color-string-1.8.1"
+ sources."color-string-1.9.0"
sources."colors-1.4.0"
sources."colorspace-1.1.4"
sources."commander-8.0.0"
@@ -84532,7 +83894,7 @@ in
sources."through2-4.0.2"
sources."trim-newlines-3.0.1"
sources."type-fest-0.18.1"
- sources."uglify-js-3.14.3"
+ sources."uglify-js-3.14.4"
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
sources."validate-npm-package-license-3.0.4"
@@ -84919,7 +84281,7 @@ in
sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minipass-collect-1.0.2"
sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
@@ -85180,7 +84542,7 @@ in
sources."@types/glob-7.2.0"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/normalize-package-data-2.4.1"
sources."aggregate-error-3.1.0"
sources."ansi-styles-3.2.1"
@@ -85551,7 +84913,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -85640,14 +85002,14 @@ in
sources."mute-stream-0.0.7"
sources."next-tick-1.0.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-keys-1.1.1"
sources."onetime-2.0.1"
sources."os-tmpdir-1.0.2"
sources."performance-now-2.1.0"
sources."process-nextick-args-2.0.1"
sources."pseudomap-1.0.2"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."quicktask-1.1.0"
sources."raf-3.3.2"
sources."readable-stream-2.3.7"
@@ -86840,7 +86202,7 @@ in
sources."@types/geojson-7946.0.8"
sources."@types/mapbox-gl-0.54.5"
sources."@types/mime-types-2.1.1"
- sources."@types/node-14.17.34"
+ sources."@types/node-14.18.0"
sources."@types/node-fetch-2.5.12"
sources."@types/prop-types-15.7.4"
sources."@types/rc-1.2.0"
@@ -86897,7 +86259,7 @@ in
];
})
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
(sources."class-utils-0.3.6" // {
@@ -86938,7 +86300,7 @@ in
];
})
sources."copy-descriptor-0.1.1"
- (sources."core-js-compat-3.19.2" // {
+ (sources."core-js-compat-3.19.3" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -86963,8 +86325,8 @@ in
sources."dom4-2.1.6"
sources."duplexer3-0.1.4"
sources."earcut-2.2.3"
- sources."electron-13.6.2"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-13.6.3"
+ sources."electron-to-chromium-1.4.12"
sources."emoji-js-clean-4.0.0"
sources."emoji-mart-3.0.1"
sources."emoji-regex-9.2.2"
@@ -87422,10 +86784,10 @@ in
diagnostic-languageserver = nodeEnv.buildNodePackage {
name = "diagnostic-languageserver";
packageName = "diagnostic-languageserver";
- version = "1.14.0";
+ version = "1.14.1";
src = fetchurl {
- url = "https://registry.npmjs.org/diagnostic-languageserver/-/diagnostic-languageserver-1.14.0.tgz";
- sha512 = "nR5VV/KqlsbrkkOrk+NlnDwVOfHviMHC3zYhD1I2Tko6xXuw6t/zqo3xbbvHoCTECqoWeIOGseECObMP6hFeug==";
+ url = "https://registry.npmjs.org/diagnostic-languageserver/-/diagnostic-languageserver-1.14.1.tgz";
+ sha512 = "68I1b1ZRLYn9IDKJ03r+AGYWu5aI7KmAGf4nnxUXUiAerf5+vI3hcKtgJcmQKD+bURPQ/tQ1pBxlUAsKArAvxw==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.5"
@@ -87548,7 +86910,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.17.34"
+ sources."@types/node-14.18.0"
sources."JSONStream-1.3.5"
sources."ajv-6.12.6"
sources."asn1-0.2.6"
@@ -87751,7 +87113,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/responselike-1.0.0"
sources."@types/yauzl-2.9.2"
sources."abbrev-1.1.1"
@@ -88056,7 +87418,7 @@ in
sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minipass-collect-1.0.2"
sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
@@ -88269,7 +87631,11 @@ in
sources."xtend-2.1.2"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.2.1"
+ (sources."yargs-17.3.0" // {
+ dependencies = [
+ sources."yargs-parser-21.0.0"
+ ];
+ })
sources."yargs-parser-20.2.9"
(sources."yarn-or-npm-3.0.1" // {
dependencies = [
@@ -88384,7 +87750,7 @@ in
sources."callsites-2.0.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -88413,7 +87779,7 @@ in
];
})
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -88657,7 +88023,7 @@ in
sources."@fluentui/date-time-utilities-7.9.1"
sources."@fluentui/dom-utilities-1.1.2"
sources."@fluentui/keyboard-key-0.2.17"
- sources."@fluentui/react-7.179.5"
+ sources."@fluentui/react-7.180.0"
sources."@fluentui/react-focus-7.18.1"
sources."@fluentui/react-window-provider-1.0.2"
sources."@fluentui/theme-1.7.4"
@@ -88672,7 +88038,7 @@ in
sources."normalize-path-2.1.1"
];
})
- sources."@microsoft/load-themed-styles-1.10.231"
+ sources."@microsoft/load-themed-styles-1.10.234"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -88911,7 +88277,7 @@ in
dependencies = [
sources."chownr-2.0.0"
sources."fs-minipass-2.1.0"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minizlib-2.1.2"
sources."p-map-4.0.0"
sources."rimraf-3.0.2"
@@ -89550,17 +88916,17 @@ in
})
(sources."minipass-collect-1.0.2" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
(sources."minipass-flush-1.0.5" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
(sources."minipass-pipeline-1.2.4" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
sources."minizlib-1.3.3"
@@ -89701,7 +89067,7 @@ in
sources."object.map-1.0.1"
sources."object.pick-1.3.0"
sources."object.reduce-1.0.1"
- sources."office-ui-fabric-react-7.179.5"
+ sources."office-ui-fabric-react-7.180.0"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -90038,7 +89404,7 @@ in
sources."sshpk-1.16.1"
(sources."ssri-8.0.1" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
sources."stack-trace-0.0.10"
@@ -90349,14 +89715,14 @@ in
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";
- version = "8.3.0";
+ version = "8.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-8.3.0.tgz";
- sha512 = "aIay56Ph6RxOTC7xyr59Kt3ewX185SaGnAr8eWukoPLeriCrvGjvAubxuvaXOfsxhtwV5g0uBOsyhAom4qJdww==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-8.4.1.tgz";
+ sha512 = "TxU/p7LB1KxQ6+7aztTnO7K0i+h0tDi81YRY9VzB6Id71kNz+fFYnf5HD5UOQmxkzcoa0TlVZf9dpMtUv0GpWg==";
};
dependencies = [
- sources."@eslint/eslintrc-1.0.4"
- sources."@humanwhocodes/config-array-0.6.0"
+ sources."@eslint/eslintrc-1.0.5"
+ sources."@humanwhocodes/config-array-0.9.2"
sources."@humanwhocodes/object-schema-1.2.1"
sources."acorn-8.6.0"
sources."acorn-jsx-5.3.2"
@@ -90385,7 +89751,7 @@ in
];
})
sources."eslint-visitor-keys-3.1.0"
- sources."espree-9.1.0"
+ sources."espree-9.2.0"
sources."esquery-1.4.0"
sources."esrecurse-4.3.0"
sources."estraverse-5.3.0"
@@ -90594,7 +89960,7 @@ in
sources."strip-ansi-6.0.1"
sources."strip-json-comments-3.1.1"
sources."supports-color-8.1.1"
- (sources."table-6.7.3" // {
+ (sources."table-6.7.5" // {
dependencies = [
sources."ajv-8.8.2"
sources."json-schema-traverse-1.0.0"
@@ -90790,7 +90156,7 @@ in
})
sources."@react-native/normalize-color-2.0.0"
sources."@segment/loosely-validate-event-2.0.0"
- sources."@sideway/address-4.1.2"
+ sources."@sideway/address-4.1.3"
sources."@sideway/formula-3.0.0"
sources."@sideway/pinpoint-2.0.0"
sources."@sindresorhus/is-4.2.0"
@@ -90806,7 +90172,7 @@ in
sources."@types/json-schema-7.0.9"
sources."@types/keyv-3.1.3"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/q-1.5.5"
sources."@types/responselike-1.0.0"
sources."@types/retry-0.12.1"
@@ -90988,7 +90354,7 @@ in
sources."bytes-3.0.0"
(sources."cacache-15.3.0" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."mkdirp-1.0.4"
sources."rimraf-3.0.2"
];
@@ -91008,7 +90374,7 @@ in
})
sources."camelcase-6.2.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."caseless-0.12.0"
(sources."chalk-4.1.2" // {
dependencies = [
@@ -91084,7 +90450,7 @@ in
sources."color-3.2.1"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."color-string-1.8.1"
+ sources."color-string-1.9.0"
sources."colors-1.4.0"
sources."combined-stream-1.0.8"
sources."command-exists-1.2.9"
@@ -91266,7 +90632,7 @@ in
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -91436,7 +90802,7 @@ in
sources."fs-extra-9.0.0"
(sources."fs-minipass-2.1.0" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
sources."fs-write-stream-atomic-1.0.10"
@@ -91666,7 +91032,7 @@ in
];
})
sources."jimp-compact-0.16.1"
- sources."joi-17.4.2"
+ sources."joi-17.5.0"
sources."join-component-1.1.0"
sources."js-tokens-4.0.0"
(sources."js-yaml-3.14.1" // {
@@ -91740,7 +91106,7 @@ in
})
(sources."make-fetch-happen-9.1.0" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
sources."map-cache-0.2.2"
@@ -91786,37 +91152,37 @@ in
})
(sources."minipass-collect-1.0.2" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
(sources."minipass-fetch-1.4.1" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
(sources."minipass-flush-1.0.5" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
(sources."minipass-json-stream-1.0.1" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
(sources."minipass-pipeline-1.2.4" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
(sources."minipass-sized-1.0.3" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
(sources."minizlib-2.1.2" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
sources."mississippi-3.0.0"
@@ -91893,7 +91259,7 @@ in
(sources."npm-registry-fetch-11.0.0" // {
dependencies = [
sources."hosted-git-info-4.0.2"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."npm-package-arg-8.1.5"
sources."semver-7.3.5"
];
@@ -91918,7 +91284,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object-visit-1.0.1"
@@ -91994,7 +91360,7 @@ in
(sources."pacote-11.3.5" // {
dependencies = [
sources."hosted-git-info-4.0.2"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."mkdirp-1.0.4"
sources."npm-package-arg-8.1.5"
sources."rimraf-3.0.2"
@@ -92453,7 +91819,7 @@ in
sources."sshpk-1.16.1"
(sources."ssri-8.0.1" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
];
})
sources."stable-0.1.8"
@@ -92542,7 +91908,7 @@ in
sources."tapable-1.1.3"
(sources."tar-6.1.11" // {
dependencies = [
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."mkdirp-1.0.4"
];
})
@@ -92901,7 +92267,7 @@ in
sources."@babel/traverse-7.16.3"
sources."@babel/types-7.16.0"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/normalize-package-data-2.4.1"
sources."@types/yauzl-2.9.2"
sources."@types/yoga-layout-1.9.2"
@@ -92928,7 +92294,7 @@ in
sources."callsites-2.0.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."chalk-2.4.2"
sources."chownr-1.1.4"
sources."ci-info-2.0.0"
@@ -92952,7 +92318,7 @@ in
})
sources."delay-5.0.0"
sources."devtools-protocol-0.0.869402"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
@@ -93164,15 +92530,15 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- (sources."@oclif/command-1.8.6" // {
+ (sources."@oclif/command-1.8.9" // {
dependencies = [
sources."@oclif/plugin-help-3.3.0"
];
})
- sources."@oclif/config-1.18.1"
+ sources."@oclif/config-1.18.2"
(sources."@oclif/core-0.5.41" // {
dependencies = [
- (sources."cli-ux-5.6.4" // {
+ (sources."cli-ux-5.6.6" // {
dependencies = [
sources."fs-extra-8.1.0"
];
@@ -93268,7 +92634,7 @@ in
sources."cli-cursor-3.1.0"
sources."cli-progress-3.9.1"
sources."cli-spinners-2.6.1"
- (sources."cli-table-0.3.9" // {
+ (sources."cli-table-0.3.11" // {
dependencies = [
sources."colors-1.0.3"
];
@@ -93476,7 +92842,7 @@ in
sources."pify-3.0.0"
sources."prelude-ls-1.1.2"
sources."prepend-http-2.0.0"
- sources."prettier-2.5.0"
+ sources."prettier-2.5.1"
sources."process-nextick-args-2.0.1"
sources."psl-1.8.0"
sources."punycode-2.1.1"
@@ -93595,7 +92961,7 @@ in
sources."@google-cloud/promisify-2.0.4"
(sources."@google-cloud/pubsub-2.18.3" // {
dependencies = [
- sources."google-auth-library-7.10.2"
+ sources."google-auth-library-7.10.3"
];
})
sources."@grpc/grpc-js-1.3.8"
@@ -93632,7 +92998,7 @@ in
sources."@types/json-schema-7.0.9"
sources."@types/long-4.0.1"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."JSONStream-1.3.5"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -93743,7 +93109,7 @@ in
})
sources."cli-cursor-2.1.0"
sources."cli-spinners-2.6.1"
- sources."cli-table-0.3.9"
+ sources."cli-table-0.3.11"
sources."cli-width-2.2.1"
sources."cliui-7.0.4"
sources."clone-1.0.4"
@@ -93756,7 +93122,7 @@ in
})
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."color-string-1.8.1"
+ sources."color-string-1.9.0"
sources."color-support-1.1.3"
sources."colors-1.0.3"
sources."colorspace-1.1.4"
@@ -93961,7 +93327,7 @@ in
sources."google-auth-library-6.1.6"
(sources."google-gax-2.25.3" // {
dependencies = [
- sources."google-auth-library-7.10.2"
+ sources."google-auth-library-7.10.3"
];
})
sources."google-p12-pem-3.1.2"
@@ -94138,7 +93504,7 @@ in
sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minipass-collect-1.0.2"
sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
@@ -94246,7 +93612,7 @@ in
sources."range-parser-1.2.1"
sources."raw-body-2.4.0"
sources."rc-1.2.8"
- sources."re2-1.16.0"
+ sources."re2-1.17.1"
sources."readable-stream-3.6.0"
sources."readdir-glob-1.1.1"
sources."readdirp-3.6.0"
@@ -94759,7 +94125,7 @@ in
sources."@types/atob-2.1.2"
sources."@types/bn.js-5.1.0"
sources."@types/inquirer-6.5.0"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/pbkdf2-3.1.0"
sources."@types/secp256k1-4.0.3"
sources."@types/through-0.0.30"
@@ -95236,7 +94602,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object-visit-1.0.1"
@@ -95463,10 +94829,10 @@ in
gatsby-cli = nodeEnv.buildNodePackage {
name = "gatsby-cli";
packageName = "gatsby-cli";
- version = "4.2.0";
+ version = "4.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.2.0.tgz";
- sha512 = "WC8sIdMpzTSsLcbvrvrfYazq1exTM+lZBoibLTxCBqKVcQ3dNMCSbzIbGieLtKaPs4pOKKvkivOSWEfPqMOdug==";
+ url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.3.0.tgz";
+ sha512 = "yp+w7UMLTlnYYS+gHsFQI811qt9q4ecwhNTLS5PCoibJB74oAFDSnKK/4wiZgRScGc28us/NHbwKlfRNDoTYRA==";
};
dependencies = [
(sources."@ardatan/aggregate-error-0.0.6" // {
@@ -95544,7 +94910,7 @@ in
];
})
sources."@mdx-js/util-2.0.0-next.8"
- (sources."@sideway/address-4.1.2" // {
+ (sources."@sideway/address-4.1.3" // {
dependencies = [
sources."@hapi/hoek-9.2.1"
];
@@ -95556,21 +94922,15 @@ in
sources."@tokenizer/token-0.3.0"
sources."@turist/fetch-7.1.7"
sources."@turist/time-0.0.2"
- sources."@types/acorn-4.0.6"
sources."@types/cacheable-request-6.0.2"
sources."@types/common-tags-1.8.1"
- sources."@types/debug-4.1.7"
- sources."@types/estree-0.0.50"
- sources."@types/estree-jsx-0.0.1"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/istanbul-lib-coverage-2.0.3"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-patch-0.0.30"
sources."@types/keyv-3.1.3"
- sources."@types/mdast-3.0.10"
- sources."@types/ms-0.7.31"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/node-fetch-2.5.12"
sources."@types/responselike-1.0.0"
sources."@types/unist-2.0.6"
@@ -95578,8 +94938,6 @@ in
sources."@types/yargs-parser-20.2.1"
sources."@types/yoga-layout-1.9.2"
sources."accepts-1.3.7"
- sources."acorn-8.6.0"
- sources."acorn-jsx-5.3.2"
sources."address-1.1.2"
sources."ansi-align-3.0.1"
(sources."ansi-escapes-4.3.2" // {
@@ -95623,7 +94981,7 @@ in
sources."call-bind-1.0.2"
sources."camel-case-4.1.2"
sources."camelcase-6.2.1"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."ccount-1.1.0"
(sources."chalk-4.1.2" // {
dependencies = [
@@ -95634,10 +94992,10 @@ in
sources."supports-color-7.2.0"
];
})
- sources."character-entities-2.0.1"
- sources."character-entities-html4-2.1.0"
- sources."character-entities-legacy-3.0.0"
- sources."character-reference-invalid-2.0.1"
+ sources."character-entities-1.2.4"
+ sources."character-entities-html4-1.1.4"
+ sources."character-entities-legacy-1.1.4"
+ sources."character-reference-invalid-1.1.4"
sources."chardet-0.7.0"
sources."chokidar-3.5.2"
sources."ci-info-2.0.0"
@@ -95672,12 +95030,12 @@ in
];
})
sources."content-type-1.0.4"
- (sources."contentful-management-7.45.2" // {
+ (sources."contentful-management-7.45.5" // {
dependencies = [
- sources."type-fest-2.6.0"
+ sources."type-fest-2.8.0"
];
})
- sources."contentful-sdk-core-6.10.3"
+ sources."contentful-sdk-core-6.10.4"
sources."convert-hrtime-3.0.0"
(sources."convert-source-map-1.8.0" // {
dependencies = [
@@ -95687,7 +95045,7 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."cors-2.8.5"
- sources."create-gatsby-2.2.0"
+ sources."create-gatsby-2.3.0"
(sources."cross-spawn-6.0.5" // {
dependencies = [
sources."semver-5.7.1"
@@ -95698,7 +95056,6 @@ in
sources."css-what-5.1.0"
sources."debug-4.3.3"
sources."decamelize-1.2.0"
- sources."decode-named-character-reference-1.0.0"
sources."decode-uri-component-0.2.0"
(sources."decompress-response-6.0.0" // {
dependencies = [
@@ -95709,7 +95066,6 @@ in
sources."defer-to-connect-2.0.1"
sources."delayed-stream-1.0.0"
sources."depd-1.1.2"
- sources."dequal-2.0.2"
sources."destroy-1.0.4"
sources."detect-newline-1.0.3"
(sources."detect-port-1.3.0" // {
@@ -95718,7 +95074,6 @@ in
sources."ms-2.0.0"
];
})
- sources."diff-5.0.0"
sources."diff-sequences-25.2.6"
sources."dom-converter-0.2.0"
sources."dom-serializer-1.3.2"
@@ -95729,7 +95084,7 @@ in
sources."dotenv-8.6.0"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -95739,8 +95094,6 @@ in
sources."escape-goat-2.1.1"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
- sources."estree-util-is-identifier-name-2.0.0"
- sources."estree-util-visit-1.1.0"
sources."etag-1.8.1"
(sources."execa-5.1.1" // {
dependencies = [
@@ -95802,13 +95155,13 @@ in
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
- sources."gatsby-core-utils-3.2.0"
- (sources."gatsby-recipes-1.2.0" // {
+ sources."gatsby-core-utils-3.3.0"
+ (sources."gatsby-recipes-1.3.0" // {
dependencies = [
sources."strip-ansi-6.0.1"
];
})
- (sources."gatsby-telemetry-3.2.0" // {
+ (sources."gatsby-telemetry-3.3.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."boxen-4.2.0"
@@ -95867,19 +95220,19 @@ in
];
})
sources."ipaddr.js-1.9.1"
- sources."is-alphabetical-2.0.1"
+ sources."is-alphabetical-1.0.4"
sources."is-alphanumeric-1.0.0"
- sources."is-alphanumerical-2.0.1"
+ sources."is-alphanumerical-1.0.4"
sources."is-binary-path-2.1.0"
sources."is-buffer-2.0.5"
sources."is-ci-2.0.0"
sources."is-core-module-2.8.0"
- sources."is-decimal-2.0.1"
+ sources."is-decimal-1.0.4"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
- sources."is-hexadecimal-2.0.1"
+ sources."is-hexadecimal-1.0.4"
sources."is-installed-globally-0.4.0"
(sources."is-invalid-path-0.1.0" // {
dependencies = [
@@ -95914,7 +95267,7 @@ in
];
})
sources."jest-get-type-25.2.6"
- (sources."joi-17.4.2" // {
+ (sources."joi-17.5.0" // {
dependencies = [
sources."@hapi/hoek-9.2.1"
sources."@hapi/topo-5.1.0"
@@ -95926,14 +95279,14 @@ in
sources."json5-2.2.0"
sources."jsonfile-6.1.0"
sources."keyv-4.0.4"
- sources."kleur-4.1.4"
+ sources."kleur-3.0.3"
sources."latest-version-5.1.0"
sources."locate-path-5.0.0"
sources."lock-1.1.0"
sources."lodash-4.17.21"
sources."lodash.isplainobject-4.0.6"
sources."lodash.isstring-4.0.1"
- sources."longest-streak-3.0.1"
+ sources."longest-streak-2.0.4"
sources."loose-envify-1.4.0"
sources."lower-case-2.0.2"
sources."lowercase-keys-2.0.0"
@@ -95946,60 +95299,21 @@ in
sources."markdown-escapes-1.0.4"
sources."markdown-table-2.0.0"
sources."mdast-util-compact-2.0.1"
- sources."mdast-util-from-markdown-1.2.0"
- sources."mdast-util-mdx-1.1.0"
- sources."mdast-util-mdx-expression-1.1.1"
- sources."mdast-util-mdx-jsx-1.2.0"
- sources."mdast-util-mdxjs-esm-1.1.1"
- (sources."mdast-util-to-markdown-1.2.6" // {
- dependencies = [
- sources."unist-util-visit-4.1.0"
- ];
- })
- sources."mdast-util-to-string-3.1.0"
sources."meant-1.0.3"
sources."media-typer-0.3.0"
sources."merge-descriptors-1.0.1"
sources."merge-stream-2.0.0"
sources."methods-1.1.2"
- sources."micromark-3.0.9"
- sources."micromark-core-commonmark-1.0.5"
- sources."micromark-extension-mdx-expression-1.0.3"
- sources."micromark-extension-mdx-jsx-1.0.2"
- sources."micromark-extension-mdx-md-1.0.0"
- sources."micromark-extension-mdxjs-1.0.0"
- sources."micromark-extension-mdxjs-esm-1.0.2"
- sources."micromark-factory-destination-1.0.0"
- sources."micromark-factory-label-1.0.2"
- sources."micromark-factory-mdx-expression-1.0.5"
- sources."micromark-factory-space-1.0.0"
- sources."micromark-factory-title-1.0.2"
- sources."micromark-factory-whitespace-1.0.0"
- sources."micromark-util-character-1.1.0"
- sources."micromark-util-chunked-1.0.0"
- sources."micromark-util-classify-character-1.0.0"
- sources."micromark-util-combine-extensions-1.0.0"
- sources."micromark-util-decode-numeric-character-reference-1.0.0"
- sources."micromark-util-decode-string-1.0.2"
- sources."micromark-util-encode-1.0.0"
- sources."micromark-util-events-to-acorn-1.0.4"
- sources."micromark-util-html-tag-name-1.0.0"
- sources."micromark-util-normalize-identifier-1.0.0"
- sources."micromark-util-resolve-all-1.0.0"
- sources."micromark-util-sanitize-uri-1.0.0"
- sources."micromark-util-subtokenize-1.0.2"
- sources."micromark-util-symbol-1.0.0"
- sources."micromark-util-types-1.0.2"
sources."mime-1.6.0"
sources."mime-db-1.51.0"
sources."mime-types-2.1.34"
sources."mimic-fn-2.1.0"
sources."mimic-response-1.0.1"
+ sources."min-indent-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mitt-1.2.0"
sources."mkdirp-0.5.5"
- sources."mri-1.2.0"
sources."ms-2.1.2"
sources."mute-stream-0.0.8"
sources."negotiator-0.6.2"
@@ -96014,7 +95328,7 @@ in
sources."npm-run-path-2.0.2"
sources."nth-check-2.0.1"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-path-0.11.5"
sources."on-finished-2.3.0"
sources."once-1.4.0"
@@ -96050,7 +95364,7 @@ in
sources."semver-6.3.0"
];
})
- sources."parse-entities-4.0.0"
+ sources."parse-entities-2.0.0"
sources."parse-path-4.0.3"
sources."parse-url-6.0.0"
sources."parseurl-1.3.3"
@@ -96065,7 +95379,7 @@ in
sources."picomatch-2.3.0"
sources."pkg-dir-4.2.0"
sources."prepend-http-2.0.0"
- sources."prettier-2.5.0"
+ sources."prettier-2.5.1"
sources."pretty-error-2.1.2"
(sources."pretty-format-25.5.0" // {
dependencies = [
@@ -96075,18 +95389,14 @@ in
];
})
sources."progress-2.0.3"
- (sources."prompts-2.4.2" // {
- dependencies = [
- sources."kleur-3.0.3"
- ];
- })
+ sources."prompts-2.4.2"
sources."prop-types-15.7.2"
sources."proper-lockfile-4.1.2"
sources."protocols-1.4.8"
sources."proxy-addr-2.0.7"
sources."pump-3.0.0"
sources."pupa-2.1.1"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."query-string-6.14.1"
sources."quick-lru-5.1.1"
sources."range-parser-1.2.1"
@@ -96105,7 +95415,7 @@ in
sources."regenerator-runtime-0.13.9"
sources."registry-auth-token-4.2.1"
sources."registry-url-5.1.0"
- sources."remark-mdx-2.0.0-rc.2"
+ sources."remark-mdx-2.0.0-next.7"
(sources."remark-mdxjs-2.0.0-next.8" // {
dependencies = [
sources."@babel/core-7.10.5"
@@ -96117,35 +95427,10 @@ in
})
(sources."remark-parse-6.0.3" // {
dependencies = [
- sources."character-entities-1.2.4"
- sources."character-entities-legacy-1.1.4"
- sources."character-reference-invalid-1.1.4"
- sources."is-alphabetical-1.0.4"
- sources."is-alphanumerical-1.0.4"
- sources."is-decimal-1.0.4"
- sources."is-hexadecimal-1.0.4"
sources."parse-entities-1.2.2"
- sources."unist-util-is-3.0.0"
- sources."unist-util-remove-position-1.1.4"
- sources."unist-util-visit-1.4.1"
- sources."unist-util-visit-parents-2.1.2"
- ];
- })
- (sources."remark-stringify-8.1.1" // {
- dependencies = [
- sources."character-entities-1.2.4"
- sources."character-entities-html4-1.1.4"
- sources."character-entities-legacy-1.1.4"
- sources."character-reference-invalid-1.1.4"
- sources."is-alphabetical-1.0.4"
- sources."is-alphanumerical-1.0.4"
- sources."is-decimal-1.0.4"
- sources."is-hexadecimal-1.0.4"
- sources."longest-streak-2.0.4"
- sources."parse-entities-2.0.0"
- sources."stringify-entities-3.1.0"
];
})
+ sources."remark-stringify-8.1.1"
(sources."renderkid-2.0.7" // {
dependencies = [
sources."ansi-regex-2.1.1"
@@ -96169,7 +95454,6 @@ in
sources."tslib-1.14.1"
];
})
- sources."sade-1.7.4"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.3.5"
@@ -96209,7 +95493,7 @@ in
];
})
sources."string_decoder-1.3.0"
- sources."stringify-entities-4.0.2"
+ sources."stringify-entities-3.1.0"
(sources."strip-ansi-5.2.0" // {
dependencies = [
sources."ansi-regex-4.1.0"
@@ -96217,6 +95501,7 @@ in
})
sources."strip-eof-1.0.0"
sources."strip-final-newline-2.0.0"
+ sources."strip-indent-3.0.0"
sources."strip-json-comments-2.0.1"
sources."strtok3-6.2.4"
sources."style-to-object-0.3.0"
@@ -96229,7 +95514,6 @@ in
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.0"
sources."token-types-4.1.1"
- sources."totalist-2.0.0"
sources."tr46-0.0.3"
sources."trim-0.0.1"
sources."trim-trailing-lines-1.1.4"
@@ -96241,26 +95525,25 @@ in
sources."unherit-1.1.3"
sources."unified-8.4.2"
sources."unique-string-2.0.0"
- sources."unist-util-is-5.1.1"
- sources."unist-util-position-from-estree-1.1.1"
+ sources."unist-util-is-3.0.0"
(sources."unist-util-remove-2.1.0" // {
dependencies = [
sources."unist-util-is-4.1.0"
];
})
- (sources."unist-util-remove-position-4.0.1" // {
+ (sources."unist-util-remove-position-1.1.4" // {
dependencies = [
- sources."unist-util-visit-4.1.0"
+ sources."unist-util-visit-1.4.1"
];
})
- sources."unist-util-stringify-position-3.0.0"
+ sources."unist-util-stringify-position-2.0.3"
(sources."unist-util-visit-2.0.3" // {
dependencies = [
sources."unist-util-is-4.1.0"
sources."unist-util-visit-parents-3.1.1"
];
})
- sources."unist-util-visit-parents-5.1.0"
+ sources."unist-util-visit-parents-2.1.2"
sources."universalify-2.0.0"
sources."unpipe-1.0.0"
sources."update-notifier-5.1.0"
@@ -96269,17 +95552,11 @@ in
sources."utila-0.4.0"
sources."utils-merge-1.0.1"
sources."uuid-3.4.0"
- sources."uvu-0.5.2"
sources."value-or-promise-1.0.6"
sources."vary-1.1.2"
- (sources."vfile-4.2.1" // {
- dependencies = [
- sources."unist-util-stringify-position-2.0.3"
- sources."vfile-message-2.0.4"
- ];
- })
+ sources."vfile-4.2.1"
sources."vfile-location-2.0.6"
- sources."vfile-message-3.0.2"
+ sources."vfile-message-2.0.4"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-1.3.1"
@@ -96313,7 +95590,6 @@ in
sources."chalk-2.4.2"
];
})
- sources."zwitch-2.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -96328,10 +95604,10 @@ in
generator-code = nodeEnv.buildNodePackage {
name = "generator-code";
packageName = "generator-code";
- version = "1.6.4";
+ version = "1.6.5";
src = fetchurl {
- url = "https://registry.npmjs.org/generator-code/-/generator-code-1.6.4.tgz";
- sha512 = "CV/+bGzFQg052xtWXdD6Xi9IxtfZHzSMu3brvseHttt8ldgcLdopCMg1Nvnj2+weJ0+862QlYyaaju6tLjui1A==";
+ url = "https://registry.npmjs.org/generator-code/-/generator-code-1.6.5.tgz";
+ sha512 = "iNIWQw9R2XxY2epw0NZjFvy3lzhhe1K5UipEn11PmYFQqMhbQdL6SQsM9KFdwSBiVbzOJ1BWrzk/r9Zcp+RyMw==";
};
dependencies = [
sources."@babel/code-frame-7.16.0"
@@ -96776,21 +96052,21 @@ in
"@gitbeaker/cli" = nodeEnv.buildNodePackage {
name = "_at_gitbeaker_slash_cli";
packageName = "@gitbeaker/cli";
- version = "34.6.0";
+ version = "35.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-34.6.0.tgz";
- sha512 = "CztjBIMUgD/2RbcHjDDDqKfduBARokquYnF6pUql/9v1iodq5ch4DdBqVJuLbXehyOE/UkF/RsAtnAiKy0qbxQ==";
+ url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-35.1.0.tgz";
+ sha512 = "hQ+sXT//GPp5ZwqujZ6p5O7MmvO4sgF8D5mhnRCBmp5oPGyJ3+1r9pfFnWI+BIFOpO9pi0+L1ZljNJS3175SfA==";
};
dependencies = [
- sources."@gitbeaker/core-34.6.0"
- sources."@gitbeaker/node-34.6.0"
- sources."@gitbeaker/requester-utils-34.6.0"
+ sources."@gitbeaker/core-35.1.0"
+ sources."@gitbeaker/node-35.1.0"
+ sources."@gitbeaker/requester-utils-35.1.0"
sources."@sindresorhus/is-4.2.0"
sources."@szmarczak/http-timer-4.0.6"
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/responselike-1.0.0"
sources."ansi-regex-6.0.1"
sources."ansi-styles-4.3.0"
@@ -96838,7 +96114,11 @@ in
sources."json-buffer-3.0.1"
sources."keyv-4.0.4"
sources."li-1.3.0"
- sources."log-symbols-5.0.0"
+ (sources."log-symbols-5.1.0" // {
+ dependencies = [
+ sources."chalk-5.0.0"
+ ];
+ })
sources."lowercase-keys-2.0.0"
sources."mime-3.0.0"
sources."mime-db-1.51.0"
@@ -96846,13 +96126,13 @@ in
sources."mimic-fn-2.1.0"
sources."mimic-response-1.0.1"
sources."normalize-url-6.1.0"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."ora-6.0.1"
sources."p-cancelable-2.1.1"
sources."pump-3.0.0"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."query-string-7.0.1"
sources."quick-lru-5.1.1"
sources."readable-stream-3.6.0"
@@ -97412,8 +96692,8 @@ in
sources."wrappy-1.0.2"
sources."xtend-4.0.2"
sources."y18n-5.0.8"
- sources."yargs-17.2.1"
- sources."yargs-parser-20.2.9"
+ sources."yargs-17.3.0"
+ sources."yargs-parser-21.0.0"
sources."yauzl-2.10.0"
];
buildInputs = globalBuildInputs;
@@ -97540,7 +96820,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -97813,7 +97093,7 @@ in
sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minizlib-2.1.2"
sources."mkdirp-1.0.4"
sources."ms-2.1.2"
@@ -97835,13 +97115,13 @@ in
sources."oas-linter-3.2.2"
(sources."oas-resolver-2.5.6" // {
dependencies = [
- sources."yargs-17.2.1"
+ sources."yargs-17.3.0"
];
})
sources."oas-schema-walker-1.1.5"
sources."oas-validator-5.0.8"
sources."oauth-sign-0.9.0"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
@@ -97948,7 +97228,7 @@ in
sources."supports-color-7.2.0"
(sources."swagger2openapi-7.0.8" // {
dependencies = [
- sources."yargs-17.2.1"
+ sources."yargs-17.3.0"
];
})
sources."symbol-observable-1.2.0"
@@ -97988,8 +97268,12 @@ in
sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yaml-1.10.2"
- sources."yargs-16.0.3"
- sources."yargs-parser-20.2.9"
+ (sources."yargs-16.0.3" // {
+ dependencies = [
+ sources."yargs-parser-20.2.9"
+ ];
+ })
+ sources."yargs-parser-21.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -98075,10 +97359,11 @@ in
];
})
sources."@oclif/screen-1.0.4"
- sources."@types/node-16.11.11"
+ sources."@types/json-schema-7.0.9"
+ sources."@types/node-16.11.12"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.4"
- sources."@types/ws-8.2.1"
+ sources."@types/ws-8.2.2"
sources."abort-controller-3.0.0"
sources."accepts-1.3.7"
sources."ansi-escapes-3.2.0"
@@ -98199,13 +97484,13 @@ in
sources."graceful-fs-4.2.8"
sources."graphql-15.4.0"
sources."graphql-config-4.1.0"
- (sources."graphql-language-service-interface-2.9.4" // {
+ (sources."graphql-language-service-interface-2.10.1" // {
dependencies = [
- sources."graphql-language-service-utils-2.6.3"
+ sources."graphql-language-service-utils-2.7.1"
];
})
- sources."graphql-language-service-parser-1.10.3"
- sources."graphql-language-service-types-1.8.6"
+ sources."graphql-language-service-parser-1.10.4"
+ sources."graphql-language-service-types-1.8.7"
sources."graphql-language-service-utils-2.5.1"
sources."graphql-sse-1.0.6"
sources."graphql-ws-5.5.5"
@@ -98346,7 +97631,7 @@ in
sources."ts-node-9.1.1"
sources."tslib-2.3.1"
sources."type-is-1.6.18"
- sources."undici-4.10.3"
+ sources."undici-4.11.0"
sources."uniq-1.0.1"
sources."universalify-0.1.2"
sources."unixify-1.0.0"
@@ -98675,7 +97960,7 @@ in
sources."supports-color-7.2.0"
];
})
- sources."systeminformation-5.9.15"
+ sources."systeminformation-5.9.17"
sources."term-canvas-0.0.5"
sources."type-fest-0.21.3"
sources."wordwrap-0.0.3"
@@ -99571,7 +98856,7 @@ in
sources."param-case-2.1.1"
sources."relateurl-0.2.7"
sources."source-map-0.6.1"
- sources."uglify-js-3.14.3"
+ sources."uglify-js-3.14.4"
sources."upper-case-1.1.3"
];
buildInputs = globalBuildInputs;
@@ -99665,10 +98950,10 @@ in
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
sources."ms-2.1.3"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."opener-1.5.2"
sources."portfinder-1.0.28"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."requires-port-1.0.0"
sources."safe-buffer-5.1.2"
sources."safer-buffer-2.1.2"
@@ -99861,7 +99146,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.17.34"
+ sources."@types/node-14.18.0"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -99870,7 +99155,7 @@ in
sources."assert-plus-1.0.0"
sources."async-2.6.3"
sources."asynckit-0.4.0"
- sources."aws-sdk-2.1039.0"
+ sources."aws-sdk-2.1044.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."base64-js-1.5.1"
@@ -100480,10 +99765,10 @@ in
intelephense = nodeEnv.buildNodePackage {
name = "intelephense";
packageName = "intelephense";
- version = "1.7.1";
+ version = "1.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/intelephense/-/intelephense-1.7.1.tgz";
- sha512 = "fIAeUVrsGs2/yX/GopLwXIw17t3aekM1KrOJ7r9xJhA1VlGoR+YtIFxdXLcOnC1oRRdBkEz46xZEHZh5W+3vwQ==";
+ url = "https://registry.npmjs.org/intelephense/-/intelephense-1.8.0.tgz";
+ sha512 = "DigAEcRfvGX1f/FExvvHTuImCu9EC7XtvAFDISsXvMTFTnMlAnNKcQvcVcZDWREa9NRKXSH5HD8a7lV+a25eBg==";
};
dependencies = [
sources."@bmewburn/js-beautify-1.13.0"
@@ -100882,7 +100167,7 @@ in
sources."path-key-2.0.1"
];
})
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."once-1.4.0"
sources."onetime-2.0.1"
sources."open-7.4.2"
@@ -100903,7 +100188,7 @@ in
sources."proxy-agent-4.0.1"
sources."proxy-from-env-1.1.0"
sources."pump-3.0.0"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."raw-body-2.4.2"
sources."readable-stream-3.6.0"
sources."restore-cursor-2.0.0"
@@ -101191,7 +100476,8 @@ in
sources."color-name-1.1.4"
sources."has-flag-4.0.0"
sources."supports-color-7.2.0"
- sources."yargs-17.2.1"
+ sources."yargs-17.3.0"
+ sources."yargs-parser-21.0.0"
];
})
sources."wawoff2-2.0.0"
@@ -101400,7 +100686,7 @@ in
sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.1039.0" // {
+ (sources."aws-sdk-2.1044.0" // {
dependencies = [
sources."sax-1.2.1"
sources."uuid-3.3.2"
@@ -101442,7 +100728,7 @@ in
sources."color-3.1.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."color-string-1.8.1"
+ sources."color-string-1.9.0"
sources."combined-stream-1.0.8"
sources."command-line-usage-4.1.0"
sources."commander-2.17.1"
@@ -101466,7 +100752,7 @@ in
];
})
sources."cwise-compiler-1.1.3"
- sources."d3-7.1.1"
+ sources."d3-7.2.0"
sources."d3-array-3.1.1"
sources."d3-axis-3.0.0"
sources."d3-brush-3.0.0"
@@ -101486,9 +100772,9 @@ in
sources."d3-ease-3.0.1"
sources."d3-fetch-3.0.1"
sources."d3-force-3.0.0"
- sources."d3-format-3.0.1"
+ sources."d3-format-3.1.0"
sources."d3-geo-3.0.1"
- sources."d3-hierarchy-3.0.1"
+ sources."d3-hierarchy-3.1.0"
sources."d3-interpolate-3.0.1"
sources."d3-path-3.0.1"
sources."d3-polygon-3.0.1"
@@ -101499,7 +100785,7 @@ in
sources."d3-selection-3.0.0"
sources."d3-shape-3.0.1"
sources."d3-time-3.0.0"
- sources."d3-time-format-4.0.0"
+ sources."d3-time-format-4.1.0"
sources."d3-timer-3.0.1"
sources."d3-transition-3.0.1"
sources."d3-voronoi-1.1.4"
@@ -102280,7 +101566,7 @@ in
sources."difflib-0.2.4"
sources."dreamopt-0.6.0"
sources."es5-ext-0.8.2"
- sources."heap-0.2.6"
+ sources."heap-0.2.7"
sources."wordwrap-1.0.0"
];
buildInputs = globalBuildInputs;
@@ -102330,11 +101616,11 @@ in
sources."mime-types-2.1.34"
sources."ms-2.1.3"
sources."native-promise-only-0.8.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."path-loader-1.0.10"
sources."process-nextick-args-2.0.1"
sources."punycode-2.1.1"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
sources."side-channel-1.0.4"
@@ -102564,8 +101850,8 @@ in
sources."xdg-basedir-4.0.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.2.1"
- sources."yargs-parser-20.2.9"
+ sources."yargs-17.3.0"
+ sources."yargs-parser-21.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -103181,8 +102467,8 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@oclif/command-1.8.6"
- sources."@oclif/config-1.18.1"
+ sources."@oclif/command-1.8.9"
+ sources."@oclif/config-1.18.2"
(sources."@oclif/core-0.5.41" // {
dependencies = [
sources."fs-extra-9.1.0"
@@ -103224,7 +102510,7 @@ in
sources."clean-stack-3.0.1"
sources."cli-cursor-3.1.0"
sources."cli-progress-3.9.1"
- (sources."cli-ux-5.6.4" // {
+ (sources."cli-ux-5.6.6" // {
dependencies = [
sources."supports-color-8.1.1"
];
@@ -103332,7 +102618,7 @@ in
sources."next-tick-1.0.0"
sources."nice-try-1.0.5"
sources."node-downloader-helper-1.0.19"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-treeify-1.1.33"
sources."onetime-5.1.2"
sources."os-tmpdir-1.0.2"
@@ -103350,7 +102636,7 @@ in
sources."picomatch-2.3.0"
sources."pkg-up-3.1.0"
sources."punycode-2.1.1"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."queue-microtask-1.2.3"
sources."redeyed-2.1.1"
sources."restore-cursor-3.1.0"
@@ -103434,7 +102720,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -103697,7 +102983,7 @@ in
sources."bytes-3.1.0"
sources."bytesish-0.4.4"
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chardet-1.4.0"
@@ -103715,7 +103001,7 @@ in
sources."convert-source-map-1.8.0"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.19.2"
+ sources."core-js-3.19.3"
sources."cors-2.8.5"
sources."create-hash-1.2.0"
sources."create-hmac-1.1.7"
@@ -103748,7 +103034,7 @@ in
})
sources."dotenv-8.6.0"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."enquirer-2.3.6"
@@ -103883,7 +103169,7 @@ in
sources."node-releases-2.0.1"
sources."nwsapi-2.2.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."object.getownpropertydescriptors-2.1.3"
@@ -105103,7 +104389,7 @@ in
sources."arrify-1.0.1"
];
})
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minipass-collect-1.0.2"
sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
@@ -105164,7 +104450,7 @@ in
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."object.getownpropertydescriptors-2.1.3"
@@ -105189,7 +104475,7 @@ in
sources."parse-json-5.2.0"
(sources."parse-path-4.0.3" // {
dependencies = [
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
];
})
sources."parse-url-6.0.0"
@@ -105317,7 +104603,7 @@ in
sources."type-fest-0.4.1"
sources."typedarray-0.0.6"
sources."typedarray-to-buffer-3.1.5"
- sources."uglify-js-3.14.3"
+ sources."uglify-js-3.14.4"
sources."uid-number-0.0.6"
sources."umask-1.1.0"
sources."unbox-primitive-1.0.1"
@@ -106416,7 +105702,7 @@ in
];
})
sources."@jest/types-25.5.0"
- sources."@types/babel__core-7.1.16"
+ sources."@types/babel__core-7.1.17"
sources."@types/babel__generator-7.6.3"
sources."@types/babel__template-7.4.1"
sources."@types/babel__traverse-7.14.2"
@@ -106426,7 +105712,7 @@ in
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/normalize-package-data-2.4.1"
sources."@types/resolve-0.0.8"
sources."@types/yargs-15.0.14"
@@ -106599,7 +105885,7 @@ in
sources."cached-path-relative-1.0.2"
sources."call-bind-1.0.2"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."capture-exit-2.0.0"
sources."caseless-0.12.0"
(sources."chalk-3.0.0" // {
@@ -106670,7 +105956,7 @@ in
})
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.19.2" // {
+ (sources."core-js-compat-3.19.3" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -106722,7 +106008,7 @@ in
sources."duplexer2-0.1.4"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -107460,7 +106746,7 @@ in
sources."@types/commander-2.12.2"
sources."@types/diff-3.5.4"
sources."@types/get-stdin-5.0.1"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."commander-2.20.3"
sources."diff-3.5.0"
sources."get-stdin-5.0.1"
@@ -108327,7 +107613,7 @@ in
};
dependencies = [
sources."@braintree/sanitize-url-3.1.0"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/yauzl-2.9.2"
sources."agent-base-6.0.2"
sources."ansi-styles-4.3.0"
@@ -108343,7 +107629,7 @@ in
sources."color-name-1.1.4"
sources."commander-8.3.0"
sources."concat-map-0.0.1"
- sources."d3-7.1.1"
+ sources."d3-7.2.0"
sources."d3-array-3.1.1"
sources."d3-axis-3.0.0"
sources."d3-brush-3.0.0"
@@ -108362,9 +107648,9 @@ in
sources."d3-ease-3.0.1"
sources."d3-fetch-3.0.1"
sources."d3-force-3.0.0"
- sources."d3-format-3.0.1"
+ sources."d3-format-3.1.0"
sources."d3-geo-3.0.1"
- sources."d3-hierarchy-3.0.1"
+ sources."d3-hierarchy-3.1.0"
sources."d3-interpolate-3.0.1"
sources."d3-path-3.0.1"
sources."d3-polygon-3.0.1"
@@ -108375,7 +107661,7 @@ in
sources."d3-selection-3.0.0"
sources."d3-shape-3.0.1"
sources."d3-time-3.0.0"
- sources."d3-time-format-4.0.0"
+ sources."d3-time-format-4.1.0"
sources."d3-timer-3.0.1"
sources."d3-transition-3.0.1"
sources."d3-voronoi-1.1.4"
@@ -108637,11 +107923,11 @@ in
sources."mime-types-2.1.34"
sources."ms-2.1.3"
sources."native-promise-only-0.8.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."path-loader-1.0.10"
sources."process-nextick-args-2.0.1"
sources."punycode-2.1.1"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
sources."side-channel-1.0.4"
@@ -108754,7 +108040,7 @@ in
sources."color-3.2.1"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."color-string-1.8.1"
+ sources."color-string-1.9.0"
sources."colornames-1.1.1"
sources."colors-1.4.0"
sources."colorspace-1.1.4"
@@ -108880,7 +108166,7 @@ in
sources."lru-cache-6.0.0"
sources."make-fetch-happen-9.1.0"
sources."minimatch-3.0.4"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minipass-collect-1.0.2"
sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
@@ -109340,42 +108626,45 @@ in
node-red = nodeEnv.buildNodePackage {
name = "node-red";
packageName = "node-red";
- version = "2.1.3";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red/-/node-red-2.1.3.tgz";
- sha512 = "IRpc8+1CR3jeZQOSX+iAE7ggu/sRfVsv6Cp/flRElIyhuZeFanbsU319KOIPnfuqF4ijwPiwWFj2zjtDllN++Q==";
+ url = "https://registry.npmjs.org/node-red/-/node-red-2.1.4.tgz";
+ sha512 = "ScpFFE0G+NlxFWrHnMcIkaF8gW+6jwK7n5qRGId66fCTICYnBGkOxXBvV3Q45H+4iQUro5aIRj737Gu7shjsJw==";
};
dependencies = [
sources."@babel/runtime-7.16.3"
sources."@mapbox/node-pre-gyp-1.0.7"
- sources."@node-red/editor-api-2.1.3"
- sources."@node-red/editor-client-2.1.3"
- (sources."@node-red/nodes-2.1.3" // {
+ sources."@node-red/editor-api-2.1.4"
+ sources."@node-red/editor-client-2.1.4"
+ (sources."@node-red/nodes-2.1.4" // {
dependencies = [
- sources."http-errors-1.7.3"
+ sources."bytes-3.1.1"
+ sources."http-errors-1.8.1"
sources."iconv-lite-0.6.3"
sources."inherits-2.0.4"
sources."media-typer-1.1.0"
- (sources."raw-body-2.4.1" // {
+ (sources."raw-body-2.4.2" // {
dependencies = [
sources."iconv-lite-0.4.24"
];
})
+ sources."setprototypeof-1.2.0"
+ sources."toidentifier-1.0.1"
];
})
- sources."@node-red/registry-2.1.3"
- sources."@node-red/runtime-2.1.3"
- sources."@node-red/util-2.1.3"
+ sources."@node-red/registry-2.1.4"
+ sources."@node-red/runtime-2.1.4"
+ sources."@node-red/util-2.1.4"
sources."@sindresorhus/is-4.2.0"
sources."@szmarczak/http-timer-4.0.6"
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
- sources."acorn-8.5.0"
+ sources."acorn-8.6.0"
sources."acorn-walk-8.2.0"
(sources."agent-base-6.0.2" // {
dependencies = [
@@ -109383,7 +108672,7 @@ in
sources."ms-2.1.2"
];
})
- sources."ajv-8.6.3"
+ sources."ajv-8.8.2"
sources."ansi-colors-4.1.1"
sources."ansi-regex-5.0.1"
sources."append-field-1.0.0"
@@ -109428,7 +108717,7 @@ in
sources."cheerio-1.0.0-rc.10"
sources."cheerio-select-1.5.0"
sources."chownr-2.0.0"
- sources."cli-table-0.3.9"
+ sources."cli-table-0.3.11"
sources."clone-2.1.2"
sources."clone-response-1.0.2"
sources."color-support-1.1.3"
@@ -109452,11 +108741,7 @@ in
})
sources."content-type-1.0.4"
sources."cookie-0.4.1"
- (sources."cookie-parser-1.4.5" // {
- dependencies = [
- sources."cookie-0.4.0"
- ];
- })
+ sources."cookie-parser-1.4.6"
sources."cookie-signature-1.0.6"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
@@ -109524,7 +108809,7 @@ in
sources."gauge-4.0.0"
sources."get-stream-5.2.0"
sources."glob-7.2.0"
- sources."got-11.8.2"
+ sources."got-11.8.3"
sources."graceful-fs-4.2.8"
sources."has-unicode-2.0.1"
sources."hash-sum-2.0.0"
@@ -109545,7 +108830,7 @@ in
sources."ms-2.1.2"
];
})
- sources."i18next-21.3.1"
+ sources."i18next-21.5.4"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."inflight-1.0.6"
@@ -109589,7 +108874,7 @@ in
sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- (sources."minipass-3.1.5" // {
+ (sources."minipass-3.1.6" // {
dependencies = [
sources."yallist-4.0.0"
];
@@ -109601,7 +108886,7 @@ in
})
sources."mkdirp-0.5.5"
sources."moment-2.29.1"
- sources."moment-timezone-0.5.33"
+ sources."moment-timezone-0.5.34"
(sources."mqtt-4.2.8" // {
dependencies = [
sources."concat-stream-2.0.0"
@@ -109629,7 +108914,7 @@ in
sources."normalize-url-6.1.0"
sources."npmlog-6.0.0"
sources."nth-check-2.0.1"
- sources."oauth2orize-1.11.0"
+ sources."oauth2orize-1.11.1"
sources."object-assign-4.1.1"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
@@ -109709,7 +108994,7 @@ in
sources."tslib-2.3.1"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- sources."uglify-js-3.14.2"
+ sources."uglify-js-3.14.4"
sources."uid-safe-2.1.5"
sources."uid2-0.0.4"
sources."universalify-0.1.2"
@@ -109819,7 +109104,7 @@ in
sources."mime-types-2.1.34"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minizlib-2.1.2"
sources."mkdirp-0.3.5"
sources."ncp-0.4.2"
@@ -110127,7 +109412,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-1.0.0"
@@ -110620,10 +109905,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "8.1.4";
+ version = "8.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-8.1.4.tgz";
- sha512 = "CRwzIUmJQiBCkME3nZj/4tLExlWwdEFl/4dUhKoa/NpW8dbwRO5pb7YzHAU1y2AJvS0B+Ju7sXeBlWsr6OH5rw==";
+ url = "https://registry.npmjs.org/npm/-/npm-8.2.0.tgz";
+ sha512 = "doYfni7IWhc5xJdikZK3PKENz3QcTcV5Y2EtF8HA3eEPePeemdgGl3j2OyNPT25+UBschVWSVgz4ER1/wnjF7Q==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -110638,10 +109923,10 @@ in
npm-check-updates = nodeEnv.buildNodePackage {
name = "npm-check-updates";
packageName = "npm-check-updates";
- version = "12.0.2";
+ version = "12.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-12.0.2.tgz";
- sha512 = "VzMNuUXqRta1qpBkFiE0hKfpOGP2FbYwpBBTcJXoJWppOPBSi/paWFVhPVWf7PgRoDWegK+PDAWKhIvhyrBrIg==";
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-12.0.3.tgz";
+ sha512 = "MTHzkDZY1ebhPaDvzWOU9bt4UYdHmY4tIcMCaZjgguGKUgwqokH/aB0Nrc4WcZ4rD491Spuj5DILo/RvKAefvw==";
};
dependencies = [
sources."@gar/promisify-1.1.2"
@@ -110689,13 +109974,13 @@ in
sources."cint-8.2.1"
sources."clean-stack-2.2.0"
sources."cli-boxes-2.2.1"
- sources."cli-table-0.3.9"
+ sources."cli-table-0.3.11"
sources."clone-response-1.0.2"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."color-support-1.1.3"
sources."colors-1.0.3"
- sources."commander-6.2.1"
+ sources."commander-8.3.0"
sources."concat-map-0.0.1"
sources."configstore-5.0.1"
sources."console-control-strings-1.1.0"
@@ -110804,7 +110089,7 @@ in
sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minipass-collect-1.0.2"
sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
@@ -111475,7 +110760,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -111489,7 +110774,7 @@ in
sources."color-3.2.1"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."color-string-1.8.1"
+ sources."color-string-1.9.0"
sources."combined-stream-1.0.8"
sources."command-exists-1.2.9"
sources."commander-2.20.3"
@@ -111501,7 +110786,7 @@ in
sources."convert-source-map-1.8.0"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.19.2" // {
+ (sources."core-js-compat-3.19.3" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -111612,7 +110897,7 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -111624,7 +110909,7 @@ in
sources."error-ex-1.3.2"
(sources."es-abstract-1.19.1" // {
dependencies = [
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
];
})
sources."es-to-primitive-1.2.1"
@@ -112085,7 +111370,7 @@ in
sources."shebang-regex-1.0.0"
(sources."side-channel-1.0.4" // {
dependencies = [
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
];
})
sources."signal-exit-3.0.6"
@@ -112494,7 +111779,7 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-is-1.6.18"
- sources."uglify-js-3.14.3"
+ sources."uglify-js-3.14.4"
sources."unix-dgram-2.0.4"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
@@ -113673,7 +112958,7 @@ in
sources."statuses-1.5.0"
sources."string_decoder-0.10.31"
sources."supports-color-7.2.0"
- sources."systeminformation-5.9.15"
+ sources."systeminformation-5.9.17"
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.1"
sources."tslib-2.3.1"
@@ -113709,10 +112994,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "6.23.2";
+ version = "6.23.6";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-6.23.2.tgz";
- sha512 = "mb18ZY03mn1wxxco5COfyZgqAxBOfO8F3UU41p1XVSNnkVEUXHIKLRh9UBZjjZS2vO92EqgXd0ewsE3syDmfYw==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-6.23.6.tgz";
+ sha512 = "H6PIzO4W2zg2Jqms13uS5U3fU8yBdWk8rXcpJLjs/in+nutgVA8GGlasEAI2eAiTpc9FYJUkCklbJ4a/M36N0w==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -113851,8 +113136,8 @@ in
sources."wrap-ansi-7.0.0"
sources."y18n-5.0.8"
sources."yaml-1.10.2"
- sources."yargs-17.2.1"
- sources."yargs-parser-20.2.9"
+ sources."yargs-17.3.0"
+ sources."yargs-parser-21.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -113867,10 +113152,10 @@ in
prettier = nodeEnv.buildNodePackage {
name = "prettier";
packageName = "prettier";
- version = "2.5.0";
+ version = "2.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-2.5.0.tgz";
- sha512 = "FM/zAKgWTxj40rH03VxzIPdXmj39SwSjwG0heUcNFwI+EMZJnY93yAiKXM3dObIKAM5TA88werc8T/EwhB45eg==";
+ url = "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz";
+ sha512 = "vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -114274,10 +113559,10 @@ in
purescript-language-server = nodeEnv.buildNodePackage {
name = "purescript-language-server";
packageName = "purescript-language-server";
- version = "0.16.0";
+ version = "0.16.1";
src = fetchurl {
- url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.16.0.tgz";
- sha512 = "G+Ky8G6TZKnRsuSl8U9yozo4A/2nnn5pOupf/qTbvJ70XWOS8lwr48ALzkWivwJ+qQd4EoIjUGx7GFq/PQjiGQ==";
+ url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.16.1.tgz";
+ sha512 = "TX18OnuIZYDySoYxENH7dTQmjwewyoSt8x4chQcLd/zZjgYyiJCr7rDs7LP7Z8bse3iyvQte+HS1OoEIQnauqw==";
};
dependencies = [
sources."ajv-6.12.6"
@@ -114565,7 +113850,7 @@ in
sources."moment-2.29.1"
sources."ms-2.1.2"
sources."normalize-url-4.5.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."once-1.4.0"
sources."open-7.4.2"
sources."p-cancelable-1.1.0"
@@ -114574,7 +113859,7 @@ in
sources."prepend-http-2.0.0"
sources."prompts-2.4.2"
sources."pump-3.0.0"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."rc-1.2.8"
sources."readline-sync-1.4.10"
sources."register-protocol-win32-1.1.0"
@@ -114607,10 +113892,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.191";
+ version = "1.1.193";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.191.tgz";
- sha512 = "1WyWpfLudnT+wBNYoaqQV2yOmpzI8otmDIGrEdLG0pikHWktuVSq8rvcqLF2QzzZVgb67TWCXp9u+wBt214lzA==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.193.tgz";
+ sha512 = "01hkfhK1PYKPSWbJrYgNwwlsVH+Thp1xmkKZjxVZrGFqavkJbhETlg1RcAHMnmU8Sg7G4Ry99dW6IsSGyCdzXg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -114916,7 +114201,7 @@ in
sources."mkdirp-0.5.5"
sources."mute-stream-0.0.8"
sources."ncp-0.4.2"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
@@ -115102,7 +114387,7 @@ in
sources."@types/glob-7.2.0"
sources."@types/json-schema-7.0.9"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
sources."@webassemblyjs/ast-1.9.0"
@@ -115294,7 +114579,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -115347,7 +114632,7 @@ in
sources."color-3.2.1"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."color-string-1.8.1"
+ sources."color-string-1.9.0"
sources."commander-4.1.1"
sources."commondir-1.0.1"
sources."component-bind-1.0.0"
@@ -115374,7 +114659,7 @@ in
sources."copy-concurrently-1.0.5"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.19.2" // {
+ (sources."core-js-compat-3.19.3" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -115518,7 +114803,7 @@ in
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -115993,7 +115278,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object-visit-1.0.1"
@@ -116411,7 +115696,7 @@ in
sources."isarray-2.0.1"
];
})
- sources."sockjs-0.3.21"
+ sources."sockjs-0.3.24"
(sources."sockjs-client-1.5.2" // {
dependencies = [
sources."debug-3.2.7"
@@ -116596,7 +115881,7 @@ in
sources."util.promisify-1.0.0"
sources."utila-0.4.0"
sources."utils-merge-1.0.1"
- sources."uuid-3.4.0"
+ sources."uuid-8.3.2"
sources."vary-1.1.2"
sources."vendors-1.0.4"
sources."vm-browserify-1.1.2"
@@ -116672,7 +115957,11 @@ in
];
})
sources."webpack-flush-chunks-2.0.3"
- sources."webpack-log-2.0.0"
+ (sources."webpack-log-2.0.0" // {
+ dependencies = [
+ sources."uuid-3.4.0"
+ ];
+ })
sources."webpack-node-externals-1.7.2"
(sources."webpack-sources-1.4.3" // {
dependencies = [
@@ -116861,8 +116150,8 @@ in
sources."xml-name-validator-4.0.0"
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
- sources."yargs-17.2.1"
- sources."yargs-parser-20.2.9"
+ sources."yargs-17.3.0"
+ sources."yargs-parser-21.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -116911,7 +116200,7 @@ in
sources."@redocly/openapi-core-1.0.0-beta.69"
sources."@redocly/react-dropdown-aria-2.0.12"
sources."@types/json-schema-7.0.9"
- sources."@types/node-14.17.34"
+ sources."@types/node-14.18.0"
sources."ansi-regex-5.0.1"
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.2"
@@ -117151,7 +116440,7 @@ in
sources."to-regex-range-5.0.1"
sources."tr46-0.0.3"
sources."tty-browserify-0.0.0"
- sources."uglify-js-3.14.3"
+ sources."uglify-js-3.14.4"
(sources."uri-js-4.4.1" // {
dependencies = [
sources."punycode-2.1.1"
@@ -117184,8 +116473,8 @@ in
sources."y18n-5.0.8"
sources."yaml-1.10.2"
sources."yaml-ast-parser-0.0.43"
- sources."yargs-17.2.1"
- sources."yargs-parser-20.2.9"
+ sources."yargs-17.3.0"
+ sources."yargs-parser-21.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -117340,10 +116629,10 @@ in
"reveal.js" = nodeEnv.buildNodePackage {
name = "reveal.js";
packageName = "reveal.js";
- version = "4.2.0";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/reveal.js/-/reveal.js-4.2.0.tgz";
- sha512 = "ukvq+a/kBu88jCJaQBCkYQ+vjaNUhlI50Y2GlNl4MS6OVnFHL+2Jb6XBZS4MDRWs3lLZAA3wXEu3xKFn8ebX0A==";
+ url = "https://registry.npmjs.org/reveal.js/-/reveal.js-4.2.1.tgz";
+ sha512 = "OXH4qT5Gs9di6lZPDmRuanIvdiVzltCe8W9ELz6Q3EhoWS+RjRp5HBwFHr+k1fbbP82/Z83sQiK+/ZYFBwrrsQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -117694,7 +116983,7 @@ in
"rust-analyzer-build-deps-../../misc/vscode-extensions/rust-analyzer/build-deps" = nodeEnv.buildNodePackage {
name = "rust-analyzer";
packageName = "rust-analyzer";
- version = "0.2.792";
+ version = "0.2.834";
src = ../../misc/vscode-extensions/rust-analyzer/build-deps;
dependencies = [
sources."@babel/code-frame-7.12.11"
@@ -117740,20 +117029,29 @@ in
sources."ansi-regex-5.0.1"
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.2"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.7"
sources."argparse-1.0.10"
sources."array-union-2.1.0"
sources."astral-regex-2.0.0"
sources."asynckit-0.4.0"
sources."azure-devops-node-api-11.1.0"
sources."balanced-match-1.0.2"
+ sources."base64-js-1.5.1"
sources."big-integer-1.6.51"
sources."binary-0.3.0"
sources."binary-extensions-2.2.0"
+ (sources."bl-4.1.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
sources."bluebird-3.4.7"
sources."boolbase-1.0.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."browser-stdout-1.3.1"
+ sources."buffer-5.7.1"
sources."buffer-crc32-0.2.13"
sources."buffer-indexof-polyfill-1.0.2"
sources."buffers-0.1.1"
@@ -117773,18 +117071,21 @@ in
sources."cheerio-1.0.0-rc.10"
sources."cheerio-select-1.5.0"
sources."chokidar-3.5.2"
+ sources."chownr-1.1.4"
sources."cliui-7.0.4"
+ sources."code-point-at-1.1.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."combined-stream-1.0.8"
sources."commander-7.2.0"
sources."commandpost-1.4.0"
sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
sources."css-select-4.1.3"
sources."css-what-5.1.0"
- sources."d3-7.1.1"
+ sources."d3-7.2.0"
sources."d3-array-3.1.1"
sources."d3-axis-3.0.0"
sources."d3-brush-3.0.0"
@@ -117798,7 +117099,7 @@ in
sources."d3-ease-3.0.1"
sources."d3-fetch-3.0.1"
sources."d3-force-3.0.0"
- sources."d3-format-3.0.1"
+ sources."d3-format-3.1.0"
sources."d3-geo-3.0.1"
(sources."d3-graphviz-4.0.0" // {
dependencies = [
@@ -117815,7 +117116,7 @@ in
sources."d3-zoom-2.0.0"
];
})
- sources."d3-hierarchy-3.0.1"
+ sources."d3-hierarchy-3.1.0"
sources."d3-interpolate-3.0.1"
sources."d3-path-3.0.1"
sources."d3-polygon-3.0.1"
@@ -117826,16 +117127,20 @@ in
sources."d3-selection-3.0.0"
sources."d3-shape-3.0.1"
sources."d3-time-3.0.0"
- sources."d3-time-format-4.0.0"
+ sources."d3-time-format-4.1.0"
sources."d3-timer-3.0.1"
sources."d3-transition-3.0.1"
sources."d3-zoom-3.0.0"
sources."debug-4.3.3"
sources."decamelize-4.0.0"
+ sources."decompress-response-4.2.1"
+ sources."deep-extend-0.6.0"
sources."deep-is-0.1.4"
sources."delaunator-5.0.0"
sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
sources."denodeify-1.2.1"
+ sources."detect-libc-1.0.3"
sources."diff-5.0.0"
sources."dir-glob-3.0.1"
sources."doctrine-3.0.0"
@@ -117853,6 +117158,7 @@ in
];
})
sources."emoji-regex-8.0.0"
+ sources."end-of-stream-1.4.4"
sources."enquirer-2.3.6"
sources."entities-2.2.0"
sources."escalade-3.1.1"
@@ -117888,6 +117194,7 @@ in
})
sources."estraverse-4.3.0"
sources."esutils-2.0.3"
+ sources."expand-template-2.0.3"
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.2.7"
sources."fast-json-stable-stringify-2.1.0"
@@ -117901,6 +117208,7 @@ in
sources."flat-cache-3.0.4"
sources."flatted-3.2.4"
sources."form-data-3.0.1"
+ sources."fs-constants-1.0.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
(sources."fstream-1.0.12" // {
@@ -117910,8 +117218,17 @@ in
})
sources."function-bind-1.1.1"
sources."functional-red-black-tree-1.0.1"
+ (sources."gauge-2.7.4" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
+ sources."github-from-package-0.0.0"
sources."glob-7.2.0"
sources."glob-parent-5.1.2"
sources."globals-13.12.0"
@@ -117921,16 +117238,20 @@ in
sources."has-1.0.3"
sources."has-flag-3.0.0"
sources."has-symbols-1.0.2"
+ sources."has-unicode-2.0.1"
sources."he-1.2.0"
+ sources."hosted-git-info-4.0.2"
sources."htmlparser2-6.1.0"
sources."http-proxy-agent-4.0.1"
sources."https-proxy-agent-5.0.0"
sources."iconv-lite-0.6.3"
+ sources."ieee754-1.2.1"
sources."ignore-5.1.9"
sources."import-fresh-3.3.0"
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
+ sources."ini-1.3.8"
sources."internmap-2.0.3"
sources."is-binary-path-2.1.0"
sources."is-extglob-2.1.1"
@@ -117945,6 +117266,7 @@ in
sources."js-yaml-3.14.1"
sources."json-schema-traverse-0.4.1"
sources."json-stable-stringify-without-jsonify-1.0.1"
+ sources."keytar-7.7.0"
sources."leven-3.1.0"
sources."levn-0.4.1"
sources."linkify-it-2.2.0"
@@ -117966,9 +117288,11 @@ in
sources."mime-1.6.0"
sources."mime-db-1.51.0"
sources."mime-types-2.1.34"
+ sources."mimic-response-2.1.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
+ sources."mkdirp-classic-0.5.3"
(sources."mocha-9.1.3" // {
dependencies = [
sources."argparse-2.0.1"
@@ -117987,11 +117311,21 @@ in
sources."ms-2.1.2"
sources."mute-stream-0.0.8"
sources."nanoid-3.1.25"
+ sources."napi-build-utils-1.0.2"
sources."natural-compare-1.4.0"
+ (sources."node-abi-2.30.1" // {
+ dependencies = [
+ sources."semver-5.7.1"
+ ];
+ })
+ sources."node-addon-api-3.2.1"
sources."node-fetch-2.6.6"
sources."normalize-path-3.0.0"
+ sources."npmlog-4.1.2"
sources."nth-check-2.0.1"
- sources."object-inspect-1.11.0"
+ sources."number-is-nan-1.0.1"
+ sources."object-assign-4.1.1"
+ sources."object-inspect-1.11.1"
sources."once-1.4.0"
sources."optionator-0.9.1"
sources."os-homedir-1.0.2"
@@ -118013,14 +117347,21 @@ in
sources."path-type-4.0.0"
sources."pend-1.2.0"
sources."picomatch-2.3.0"
+ sources."prebuild-install-6.1.4"
sources."prelude-ls-1.2.1"
sources."process-nextick-args-2.0.1"
sources."progress-2.0.3"
sources."pseudomap-1.0.2"
+ sources."pump-3.0.0"
sources."punycode-2.1.1"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."queue-microtask-1.2.3"
sources."randombytes-2.1.0"
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."strip-json-comments-2.0.1"
+ ];
+ })
sources."read-1.0.7"
(sources."readable-stream-2.3.7" // {
dependencies = [
@@ -118039,13 +117380,18 @@ in
sources."rw-1.3.3"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
sources."semver-7.3.5"
sources."serialize-javascript-6.0.0"
+ sources."set-blocking-2.0.0"
sources."setimmediate-1.0.5"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."side-channel-1.0.4"
sources."sigmund-1.0.1"
+ sources."signal-exit-3.0.6"
+ sources."simple-concat-1.0.1"
+ sources."simple-get-3.1.0"
sources."slash-3.0.0"
(sources."slice-ansi-4.0.0" // {
dependencies = [
@@ -118064,12 +117410,18 @@ in
sources."strip-ansi-6.0.1"
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
- (sources."table-6.7.3" // {
+ (sources."table-6.7.5" // {
dependencies = [
sources."ajv-8.8.2"
sources."json-schema-traverse-1.0.0"
];
})
+ sources."tar-fs-2.1.1"
+ (sources."tar-stream-2.2.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
sources."text-table-0.2.0"
sources."tmp-0.2.1"
sources."to-regex-range-5.0.1"
@@ -118082,6 +117434,7 @@ in
];
})
sources."tunnel-0.0.6"
+ sources."tunnel-agent-0.6.0"
sources."type-check-0.4.0"
sources."type-fest-0.20.2"
sources."typed-rest-client-1.8.6"
@@ -118094,7 +117447,7 @@ in
sources."url-join-1.1.0"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-2.3.0"
- (sources."vsce-1.95.1" // {
+ (sources."vsce-1.103.1" // {
dependencies = [
sources."chalk-2.4.2"
sources."commander-6.2.1"
@@ -118110,6 +117463,7 @@ in
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-2.0.2"
+ sources."wide-align-1.1.5"
sources."word-wrap-1.2.3"
sources."workerpool-6.1.5"
(sources."wrap-ansi-7.0.0" // {
@@ -118120,6 +117474,8 @@ in
];
})
sources."wrappy-1.0.2"
+ sources."xml2js-0.4.23"
+ sources."xmlbuilder-11.0.1"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yargs-16.2.0"
@@ -118233,10 +117589,10 @@ in
sources."node-uuid-1.4.1"
sources."node-wsfederation-0.1.1"
sources."oauth-https://github.com/ciaranj/node-oauth/tarball/master"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
(sources."openid-2.0.10" // {
dependencies = [
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
];
})
sources."pause-0.0.1"
@@ -118445,10 +117801,10 @@ in
serverless = nodeEnv.buildNodePackage {
name = "serverless";
packageName = "serverless";
- version = "2.67.0";
+ version = "2.68.0";
src = fetchurl {
- url = "https://registry.npmjs.org/serverless/-/serverless-2.67.0.tgz";
- sha512 = "FbiUlsQnpcVK5nffOS2T4YmHZHHxjadPCJi6NIFOWWWbcDr0Bbai225KF3oO+znF0zSkc0vPmXfkT0Tvm91/lA==";
+ url = "https://registry.npmjs.org/serverless/-/serverless-2.68.0.tgz";
+ sha512 = "RFhbwobdTEy/GsisYgLijjamKMpQpPdqD7rKXIFB8Ahfllnk+yFbP0fp/UdOH9qGATik8SISO+0wn5zjrhahxg==";
};
dependencies = [
sources."2-thenable-1.0.0"
@@ -118540,7 +117896,7 @@ in
sources."@types/keyv-3.1.3"
sources."@types/lodash-4.14.177"
sources."@types/long-4.0.1"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/request-2.48.7"
sources."@types/request-promise-native-1.0.18"
sources."@types/responselike-1.0.0"
@@ -118600,7 +117956,7 @@ in
sources."async-2.6.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.1039.0" // {
+ (sources."aws-sdk-2.1044.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -118696,7 +118052,7 @@ in
sources."color-3.2.1"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."color-string-1.8.1"
+ sources."color-string-1.9.0"
sources."colornames-1.1.1"
sources."colors-1.3.3"
sources."colorspace-1.1.4"
@@ -119014,7 +118370,7 @@ in
sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minizlib-2.1.2"
sources."mkdirp-0.5.5"
sources."ms-2.0.0"
@@ -119138,7 +118494,7 @@ in
sources."signal-exit-3.0.6"
sources."simple-concat-1.0.1"
sources."simple-get-2.8.1"
- (sources."simple-git-2.47.1" // {
+ (sources."simple-git-2.48.0" // {
dependencies = [
sources."debug-4.3.3"
sources."ms-2.1.2"
@@ -119577,7 +118933,6 @@ in
sha512 = "8XJnwCFR4DatLz1s0nGFe6IJPJ+5pjRFhoBuBKq8SLgFI40eD7ak6jOXpzeG0tmIpyOc1zCs9bjKAxMFm1451A==";
};
dependencies = [
- sources."ansi-regex-5.0.1"
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
sources."arr-union-3.1.0"
@@ -119613,7 +118968,7 @@ in
sources."kind-of-5.1.0"
];
})
- sources."cli-table-0.3.9"
+ sources."cli-table-0.3.11"
sources."collection-visit-1.0.0"
sources."colors-1.0.3"
sources."commander-2.9.0"
@@ -119777,7 +119132,6 @@ in
];
})
sources."string_decoder-1.1.1"
- sources."strip-ansi-6.0.1"
(sources."to-object-path-0.3.0" // {
dependencies = [
sources."kind-of-3.2.2"
@@ -119966,10 +119320,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.779.0";
+ version = "1.785.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.779.0.tgz";
- sha512 = "rlDIT5MCZE8u/pLhf1PhZML56qwU7s9nVWYMneAjXhLcyYIL51V4qW+UETeX0psfmpijDhq16nOdmVy6dwLLrA==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.785.0.tgz";
+ sha512 = "31gEyIyeSsXya9wnWyJ10jR/etvd7gliLxNgSM8tR5gjojZyEYcs/zXbOjBl8tUIqVfJQxc7sjPa5CPQLJ9f3w==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -119993,7 +119347,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."accepts-1.3.7"
sources."base64-arraybuffer-1.0.1"
sources."base64id-2.0.0"
@@ -120099,7 +119453,11 @@ in
sources."kind-of-6.0.3"
sources."lines-and-columns-1.2.4"
sources."locate-path-6.0.0"
- sources."log-symbols-5.0.0"
+ (sources."log-symbols-5.1.0" // {
+ dependencies = [
+ sources."chalk-5.0.0"
+ ];
+ })
sources."log-update-5.0.0"
sources."lru-cache-6.0.0"
sources."map-obj-4.3.0"
@@ -120463,7 +119821,7 @@ in
})
sources."hashlru-2.3.0"
sources."he-0.5.0"
- sources."heap-0.2.6"
+ sources."heap-0.2.7"
sources."hoox-0.0.1"
sources."idb-kv-store-4.5.0"
sources."ieee754-1.2.1"
@@ -120537,7 +119895,7 @@ in
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isobject-2.1.0"
- (sources."jitdb-3.5.1" // {
+ (sources."jitdb-3.5.2" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."push-stream-11.0.1"
@@ -120651,7 +120009,7 @@ in
})
];
})
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
(sources."object-visit-1.0.1" // {
@@ -121220,7 +120578,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.1039.0" // {
+ (sources."aws-sdk-2.1044.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -121607,13 +120965,13 @@ in
sources."oauth-sign-0.8.2"
sources."object-assign-4.1.1"
sources."object-hash-0.3.0"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
(sources."openid-2.0.10" // {
dependencies = [
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
];
})
sources."options-0.0.6"
@@ -121819,7 +121177,7 @@ in
dependencies = [
sources."debug-3.2.7"
sources."form-data-2.5.1"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."readable-stream-2.3.7"
sources."string_decoder-1.1.1"
];
@@ -121832,7 +121190,7 @@ in
sources."esprima-4.0.1"
sources."js-yaml-3.14.1"
sources."lodash-3.10.1"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
];
})
sources."swagger-schema-official-2.0.0-bab6bed"
@@ -122178,7 +121536,7 @@ in
sources."style-search-0.1.0"
sources."supports-color-5.5.0"
sources."svg-tags-1.0.0"
- sources."table-6.7.3"
+ sources."table-6.7.5"
sources."to-regex-range-5.0.1"
sources."trim-newlines-3.0.1"
sources."type-fest-0.18.1"
@@ -122216,7 +121574,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/pug-2.0.5"
sources."@types/sass-1.43.1"
sources."ansi-styles-4.3.0"
@@ -122306,7 +121664,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/pug-2.0.5"
sources."@types/sass-1.43.1"
sources."anymatch-3.1.2"
@@ -122804,7 +122162,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-visit-1.0.1"
sources."object.pick-1.3.0"
sources."on-finished-2.3.0"
@@ -122822,7 +122180,7 @@ in
dependencies = [
sources."debug-3.2.7"
sources."ms-2.1.3"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."superagent-3.8.3"
];
})
@@ -123000,7 +122358,7 @@ in
sources."truncate-utf8-bytes-1.0.2"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- sources."uglify-js-3.14.3"
+ sources."uglify-js-3.14.4"
sources."undefsafe-2.0.5"
(sources."union-value-1.0.1" // {
dependencies = [
@@ -123195,7 +122553,7 @@ in
sources."node-addon-api-4.2.0"
sources."node-gyp-build-4.3.0"
sources."q-1.5.1"
- sources."usb-1.9.1"
+ sources."usb-1.9.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -123287,29 +122645,29 @@ in
textlint = nodeEnv.buildNodePackage {
name = "textlint";
packageName = "textlint";
- version = "12.0.2";
+ version = "12.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/textlint/-/textlint-12.0.2.tgz";
- sha512 = "pg453CN2xtLoqss9YVSKkEFJtJ1AB/9SWTxl11fgdqFPCOK2W/320CJRqSxo5bJFpIn5+6bjqkuPHS0cZWLPvg==";
+ url = "https://registry.npmjs.org/textlint/-/textlint-12.1.0.tgz";
+ sha512 = "VZ0iVepE0jUchMfIW0uKGdEdv3l0ajOFvUBcpB1xGOLAz3gVwpdWvlagVlFXuwjc2N+9mcjTM0PCIXNwIs2vQA==";
};
dependencies = [
sources."@azu/format-text-1.0.1"
sources."@azu/style-format-1.0.0"
- sources."@textlint/ast-node-types-12.0.0"
- sources."@textlint/ast-tester-12.0.2"
- sources."@textlint/ast-traverse-12.0.2"
- sources."@textlint/feature-flag-12.0.2"
- sources."@textlint/fixer-formatter-12.0.2"
- sources."@textlint/kernel-12.0.2"
- sources."@textlint/linter-formatter-12.0.2"
- sources."@textlint/markdown-to-ast-12.0.2"
- sources."@textlint/module-interop-12.0.2"
- sources."@textlint/source-code-fixer-12.0.2"
- sources."@textlint/text-to-ast-12.0.2"
- sources."@textlint/textlint-plugin-markdown-12.0.2"
- sources."@textlint/textlint-plugin-text-12.0.2"
- sources."@textlint/types-12.0.2"
- sources."@textlint/utils-12.0.2"
+ sources."@textlint/ast-node-types-12.1.0"
+ sources."@textlint/ast-tester-12.1.0"
+ sources."@textlint/ast-traverse-12.1.0"
+ sources."@textlint/feature-flag-12.1.0"
+ sources."@textlint/fixer-formatter-12.1.0"
+ sources."@textlint/kernel-12.1.0"
+ sources."@textlint/linter-formatter-12.1.0"
+ sources."@textlint/markdown-to-ast-12.1.0"
+ sources."@textlint/module-interop-12.1.0"
+ sources."@textlint/source-code-fixer-12.1.0"
+ sources."@textlint/text-to-ast-12.1.0"
+ sources."@textlint/textlint-plugin-markdown-12.1.0"
+ sources."@textlint/textlint-plugin-text-12.1.0"
+ sources."@textlint/types-12.1.0"
+ sources."@textlint/utils-12.1.0"
sources."@types/mdast-3.0.10"
sources."@types/unist-2.0.6"
sources."ajv-8.8.2"
@@ -123494,7 +122852,7 @@ in
sources."strip-bom-2.0.0"
sources."structured-source-3.0.2"
sources."supports-color-2.0.0"
- (sources."table-6.7.3" // {
+ (sources."table-6.7.5" // {
dependencies = [
sources."is-fullwidth-code-point-3.0.0"
sources."string-width-4.2.3"
@@ -124202,7 +123560,7 @@ in
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
sources."is-weakref-1.0.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."side-channel-1.0.4"
@@ -124315,7 +123673,7 @@ in
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
sources."is-weakref-1.0.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."side-channel-1.0.4"
@@ -124388,7 +123746,7 @@ in
sources."@types/cors-2.8.12"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -124454,7 +123812,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.19.2"
+ sources."core-js-3.19.3"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
sources."css-select-4.1.3"
@@ -124654,7 +124012,7 @@ in
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."on-finished-2.3.0"
@@ -125399,10 +124757,10 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.14.3";
+ version = "3.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.3.tgz";
- sha512 = "mic3aOdiq01DuSVx0TseaEzMIVqebMZ0Z3vaeDhFEh9bsc24hV1TFvN74reA2vs08D0ZWfNjAcJ3UbVLaBss+g==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.4.tgz";
+ sha512 = "AbiSR44J0GoCeV81+oxcy/jDOElO2Bx3d0MfQCUShq7JRXaM4KtQopZsq2vFv8bCq2yMaGrw1FgygUd03RyRDA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -125448,7 +124806,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-14.17.34"
+ sources."@types/node-14.18.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.1"
@@ -125480,7 +124838,7 @@ in
sources."color-3.2.1"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."color-string-1.8.1"
+ sources."color-string-1.9.0"
sources."colors-1.4.0"
sources."colorspace-1.1.4"
sources."component-emitter-1.3.0"
@@ -125731,7 +125089,7 @@ in
sha512 = "N+ENrder8z9zJQF9UM7K3/1LcfVW60omqeyaQsu6GN1BGdCgPm8gdHssn7WRD7vx+ABKc82IE1+pJyHOPkwe+w==";
};
dependencies = [
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -125949,7 +125307,7 @@ in
})
sources."mimic-response-2.1.0"
sources."minimatch-3.0.4"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minizlib-2.1.2"
sources."mkdirp-1.0.4"
sources."ms-2.1.2"
@@ -126016,8 +125374,8 @@ in
sources."wrappy-1.0.2"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.2.1"
- sources."yargs-parser-20.2.9"
+ sources."yargs-17.3.0"
+ sources."yargs-parser-21.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -126087,7 +125445,7 @@ in
dependencies = [
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@vercel/build-utils-2.12.2"
sources."@vercel/go-1.2.3"
sources."@vercel/node-1.12.1"
@@ -126349,7 +125707,7 @@ in
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."prelude-ls-1.2.1"
- sources."prettier-2.5.0"
+ sources."prettier-2.5.1"
sources."progress-2.0.3"
sources."pug-error-2.0.0"
sources."pug-lexer-5.0.1"
@@ -126374,7 +125732,7 @@ in
sources."strip-ansi-6.0.1"
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
- (sources."table-6.7.3" // {
+ (sources."table-6.7.5" // {
dependencies = [
sources."ajv-8.8.2"
sources."json-schema-traverse-1.0.0"
@@ -126618,8 +125976,8 @@ in
version = "1.6.8";
src = ../../misc/vscode-extensions/vscode-lldb/build-deps;
dependencies = [
- sources."@discoveryjs/json-ext-0.5.5"
- sources."@types/eslint-8.2.0"
+ sources."@discoveryjs/json-ext-0.5.6"
+ sources."@types/eslint-8.2.1"
sources."@types/eslint-scope-3.7.1"
sources."@types/estree-0.0.50"
sources."@types/json-schema-7.0.9"
@@ -126670,7 +126028,7 @@ in
sources."buffer-from-1.1.2"
sources."call-bind-1.0.2"
sources."camelcase-6.2.1"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
(sources."chalk-4.1.2" // {
dependencies = [
sources."supports-color-7.2.0"
@@ -126710,7 +126068,7 @@ in
sources."domelementtype-2.2.0"
sources."domhandler-4.3.0"
sources."domutils-2.8.0"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
sources."emoji-regex-8.0.0"
sources."emojis-list-3.0.0"
sources."enhanced-resolve-5.8.3"
@@ -126816,7 +126174,7 @@ in
sources."normalize-path-3.0.0"
sources."npm-run-path-4.0.1"
sources."nth-check-2.0.1"
- sources."object-inspect-1.11.0"
+ sources."object-inspect-1.11.1"
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."os-homedir-1.0.2"
@@ -126846,7 +126204,7 @@ in
sources."process-nextick-args-2.0.1"
sources."prr-1.0.1"
sources."punycode-2.1.1"
- sources."qs-6.10.1"
+ sources."qs-6.10.2"
sources."randombytes-2.1.0"
sources."read-1.0.7"
sources."readable-stream-1.0.34"
@@ -126916,10 +126274,10 @@ in
sources."supports-color-5.5.0"
];
})
- sources."vscode-debugadapter-testsupport-1.50.0"
- sources."vscode-debugprotocol-1.50.1"
- sources."watchpack-2.3.0"
- sources."webpack-5.64.4"
+ sources."vscode-debugadapter-testsupport-1.51.0"
+ sources."vscode-debugprotocol-1.51.0"
+ sources."watchpack-2.3.1"
+ sources."webpack-5.65.0"
(sources."webpack-cli-4.9.1" // {
dependencies = [
sources."commander-7.2.0"
@@ -127217,7 +126575,7 @@ in
sources."tslib-1.14.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."uglify-js-3.14.3"
+ sources."uglify-js-3.14.4"
sources."uid-0.0.2"
sources."unbzip2-stream-1.4.3"
sources."unyield-0.0.1"
@@ -127280,7 +126638,7 @@ in
sources."@starptech/rehype-webparser-0.10.0"
sources."@starptech/webparser-0.10.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -128240,7 +127598,7 @@ in
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."core-js-pure-3.19.2"
+ sources."core-js-pure-3.19.3"
sources."cssom-0.4.4"
(sources."cssstyle-2.3.0" // {
dependencies = [
@@ -128313,7 +127671,7 @@ in
sources."mimic-response-2.1.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minizlib-2.1.2"
sources."mkdirp-1.0.4"
sources."ms-2.1.2"
@@ -128381,8 +127739,8 @@ in
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.2.1"
- sources."yargs-parser-20.2.9"
+ sources."yargs-17.3.0"
+ sources."yargs-parser-21.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -128420,9 +127778,10 @@ in
sources."@devicefarmer/adbkit-2.11.3"
sources."@devicefarmer/adbkit-logcat-1.1.0"
sources."@devicefarmer/adbkit-monkey-1.0.1"
- (sources."@eslint/eslintrc-1.0.4" // {
+ (sources."@eslint/eslintrc-1.0.5" // {
dependencies = [
sources."debug-4.3.3"
+ sources."espree-9.2.0"
sources."ms-2.1.2"
];
})
@@ -128437,7 +127796,7 @@ in
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/yauzl-2.9.2"
sources."acorn-8.6.0"
sources."acorn-jsx-5.3.2"
@@ -128852,7 +128211,7 @@ in
sources."rimraf-3.0.2"
sources."safe-buffer-5.2.1"
sources."safe-json-stringify-1.2.0"
- sources."safe-stable-stringify-2.3.0"
+ sources."safe-stable-stringify-2.3.1"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
sources."semver-7.3.5"
@@ -128873,7 +128232,7 @@ in
];
})
sources."signal-exit-3.0.6"
- sources."sonic-boom-2.4.0"
+ sources."sonic-boom-2.4.1"
sources."source-map-0.6.1"
sources."source-map-js-0.6.2"
sources."source-map-support-0.5.20"
@@ -128972,17 +128331,17 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "5.64.4";
+ version = "5.65.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.64.4.tgz";
- sha512 = "LWhqfKjCLoYJLKJY8wk2C3h77i8VyHowG3qYNZiIqD6D0ZS40439S/KVuc/PY48jp2yQmy0mhMknq8cys4jFMw==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.65.0.tgz";
+ sha512 = "Q5or2o6EKs7+oKmJo7LaqZaMOlDWQse9Tm5l1WAfU/ujLGN5Pb0SqGeVkN/4bpPmEqEP5RnVhiqsOtWtUVwGRw==";
};
dependencies = [
- sources."@types/eslint-8.2.0"
+ sources."@types/eslint-8.2.1"
sources."@types/eslint-scope-3.7.1"
sources."@types/estree-0.0.50"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -129006,10 +128365,10 @@ in
sources."ajv-keywords-3.5.2"
sources."browserslist-4.18.1"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001283"
+ sources."caniuse-lite-1.0.30001285"
sources."chrome-trace-event-1.0.3"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.4.5"
+ sources."electron-to-chromium-1.4.12"
sources."enhanced-resolve-5.8.3"
sources."es-module-lexer-0.9.3"
sources."escalade-3.1.1"
@@ -129052,7 +128411,7 @@ in
})
sources."terser-webpack-plugin-5.2.5"
sources."uri-js-4.4.1"
- sources."watchpack-2.3.0"
+ sources."watchpack-2.3.1"
sources."webpack-sources-3.2.2"
];
buildInputs = globalBuildInputs;
@@ -129074,7 +128433,7 @@ in
sha512 = "JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ==";
};
dependencies = [
- sources."@discoveryjs/json-ext-0.5.5"
+ sources."@discoveryjs/json-ext-0.5.6"
sources."@webpack-cli/configtest-1.1.0"
sources."@webpack-cli/info-1.4.0"
sources."@webpack-cli/serve-1.6.0"
@@ -129147,7 +128506,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/http-proxy-1.17.7"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/retry-0.12.1"
sources."accepts-1.3.7"
sources."aggregate-error-3.1.0"
@@ -129376,7 +128735,7 @@ in
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.6"
sources."slash-3.0.0"
- sources."sockjs-0.3.21"
+ sources."sockjs-0.3.24"
(sources."spdy-4.0.2" // {
dependencies = [
sources."debug-4.3.3"
@@ -129410,7 +128769,7 @@ in
})
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
- sources."uuid-3.4.0"
+ sources."uuid-8.3.2"
sources."vary-1.1.2"
sources."wbuf-1.7.3"
sources."webpack-dev-middleware-5.2.2"
@@ -129513,7 +128872,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.3.0"
sources."ansi-regex-5.0.1"
@@ -129824,8 +129183,8 @@ in
sources."xmlbuilder-11.0.1"
sources."xmldom-0.1.31"
sources."y18n-5.0.8"
- sources."yargs-17.2.1"
- sources."yargs-parser-20.2.9"
+ sources."yargs-17.3.0"
+ sources."yargs-parser-21.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -130006,7 +129365,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- (sources."@npmcli/arborist-4.0.5" // {
+ (sources."@npmcli/arborist-4.1.0" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."semver-7.3.5"
@@ -130137,12 +129496,7 @@ in
sources."cli-cursor-2.1.0"
sources."cli-list-0.2.0"
sources."cli-spinners-2.6.1"
- (sources."cli-table-0.3.9" // {
- dependencies = [
- sources."ansi-regex-5.0.1"
- sources."strip-ansi-6.0.1"
- ];
- })
+ sources."cli-table-0.3.11"
sources."cli-width-2.2.1"
sources."clone-1.0.4"
sources."clone-buffer-1.0.0"
@@ -130166,7 +129520,7 @@ in
sources."config-chain-1.1.13"
sources."configstore-3.1.5"
sources."console-control-strings-1.1.0"
- sources."core-js-3.19.2"
+ sources."core-js-3.19.3"
sources."core-util-is-1.0.3"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
@@ -130426,7 +129780,7 @@ in
sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."minipass-3.1.5"
+ sources."minipass-3.1.6"
sources."minipass-collect-1.0.2"
sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
@@ -130952,7 +130306,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/fs-extra-9.0.13"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.11.11"
+ sources."@types/node-16.11.12"
sources."@types/node-fetch-2.5.12"
sources."ansi-styles-4.3.0"
sources."array-union-3.0.1"
diff --git a/pkgs/development/ocaml-modules/graphics/default.nix b/pkgs/development/ocaml-modules/graphics/default.nix
index 10d0b4ea6fc7..38db74fc9faf 100644
--- a/pkgs/development/ocaml-modules/graphics/default.nix
+++ b/pkgs/development/ocaml-modules/graphics/default.nix
@@ -3,13 +3,13 @@
buildDunePackage rec {
pname = "graphics";
- version = "5.1.1";
+ version = "5.1.2";
useDune2 = true;
src = fetchurl {
url = "https://github.com/ocaml/graphics/releases/download/${version}/graphics-${version}.tbz";
- sha256 = "sha256-KGyD497ZKHA2xeXHezmh3P1zoSlre1h5N9zjkAFmMo4=";
+ sha256 = "sha256-QA/YHSPxy0FGuWl5NCwkeXHdVPWHn/0vgOx80CEuMtQ=";
};
buildInputs = [ dune-configurator ];
diff --git a/pkgs/development/ocaml-modules/ocaml-lsp/default.nix b/pkgs/development/ocaml-modules/ocaml-lsp/default.nix
index 13ae64292ec7..602f5eb77fe7 100644
--- a/pkgs/development/ocaml-modules/ocaml-lsp/default.nix
+++ b/pkgs/development/ocaml-modules/ocaml-lsp/default.nix
@@ -1,4 +1,4 @@
-{ buildDunePackage, jsonrpc, lsp, re, makeWrapper, dot-merlin-reader }:
+{ lib, buildDunePackage, jsonrpc, lsp, re, makeWrapper, dot-merlin-reader, spawn }:
buildDunePackage {
pname = "ocaml-lsp-server";
@@ -7,7 +7,8 @@ buildDunePackage {
inherit (lsp) preBuild;
- buildInputs = lsp.buildInputs ++ [ lsp re ];
+ buildInputs = lsp.buildInputs ++ [ lsp re ]
+ ++ lib.optional (lib.versionAtLeast jsonrpc.version "1.9") spawn;
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix b/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix
index 004b7854107e..26deb2f05970 100644
--- a/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix
+++ b/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix
@@ -10,10 +10,14 @@
}:
let params =
- if lib.versionAtLeast ocaml.version "4.12"
+ if lib.versionAtLeast ocaml.version "4.13"
then {
- version = "1.8.3";
- sha256 = "sha256-WO9ap78XZxJCi04LEBX+r21nfL2UdPiCLRMrJSI7FOk=";
+ version = "1.9.1";
+ sha256 = "sha256:1vnwdpjppihprc8q2i5zcqq7vp67255jclg90ldfvwafgljxn76g";
+ } else if lib.versionAtLeast ocaml.version "4.12"
+ then {
+ version = "1.9.0";
+ sha256 = "sha256:1ac44n6g3rf84gvhcca545avgf9vpkwkkkm0s8ipshfhp4g4jikh";
} else {
version = "1.4.1";
sha256 = "1ssyazc0yrdng98cypwa9m3nzfisdzpp7hqnx684rqj8f0g3gs6f";
@@ -29,7 +33,7 @@ buildDunePackage rec {
};
useDune2 = true;
- minimumOCamlVersion = "4.06";
+ minimalOCamlVersion = "4.06";
buildInputs =
if lib.versionAtLeast version "1.7.0" then
diff --git a/pkgs/development/python-modules/buildout-nix/default.nix b/pkgs/development/python-modules/buildout-nix/default.nix
deleted file mode 100644
index 834dd42bc087..000000000000
--- a/pkgs/development/python-modules/buildout-nix/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ lib, buildPythonPackage, fetchPypi }:
-
-buildPythonPackage rec {
- pname = "zc.buildout";
- version = "2.13.4";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "b978b2f9317b317ee4191f78fcc4f05b1ac41bdaaae47f0956f14c8285feef63";
- };
-
- patches = [ ./nix.patch ];
-
- postInstall = "mv $out/bin/buildout{,-nix}";
-
- meta = with lib; {
- homepage = "http://www.buildout.org";
- description = "A software build and configuration system";
- license = licenses.zpl21;
- maintainers = [ maintainers.goibhniu ];
- };
-}
diff --git a/pkgs/development/python-modules/buildout-nix/nix.patch b/pkgs/development/python-modules/buildout-nix/nix.patch
deleted file mode 100644
index 49f3c6d90f0a..000000000000
--- a/pkgs/development/python-modules/buildout-nix/nix.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- a/src/zc/buildout/buildout.py 2017-08-18 10:06:24.946428977 +0300
-+++ b/src/zc/buildout/buildout.py 2017-08-18 10:08:49.115613364 +0300
-@@ -382,6 +382,10 @@
- if k not in versions
- ))
-
-+ # Override versions with available (nix) system packages
-+ for dist in pkg_resources.working_set:
-+ versions[dist.project_name] = SectionKey(dist.version, dist.location)
-+
- # Absolutize some particular directory, handling also the ~/foo form,
- # and considering the location of the configuration file that generated
- # the setting as the base path, falling back to the main configuration
---- a/src/zc/buildout/easy_install.py 2017-08-18 10:06:24.948428980 +0300
-+++ b/src/zc/buildout/easy_install.py 2017-08-18 10:07:37.462521740 +0300
-@@ -321,6 +321,12 @@
-
- def _satisfied(self, req, source=None):
- dists = [dist for dist in self._env[req.project_name] if dist in req]
-+ try:
-+ dists = ([dist for dist in dists
-+ if dist.precedence == pkg_resources.DEVELOP_DIST]
-+ + [pkg_resources.get_distribution(req.project_name)])
-+ except pkg_resources.DistributionNotFound:
-+ pass
- if not dists:
- logger.debug('We have no distributions for %s that satisfies %r.',
- req.project_name, str(req))
diff --git a/pkgs/development/python-modules/cartopy/default.nix b/pkgs/development/python-modules/cartopy/default.nix
index 73d172941c2e..d55c1e9b0c53 100644
--- a/pkgs/development/python-modules/cartopy/default.nix
+++ b/pkgs/development/python-modules/cartopy/default.nix
@@ -8,12 +8,12 @@
buildPythonPackage rec {
pname = "cartopy";
- version = "0.20.0";
+ version = "0.20.1";
src = fetchPypi {
inherit version;
pname = "Cartopy";
- sha256 = "eae58aff26806e63cf115b2bce9477cedc4aa9f578c5e477b2c25cfa404f2b7a";
+ sha256 = "91f87b130e2574547a20cd634498df97d797abd12dcfd0235bc0cdbcec8b05e3";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/certbot/default.nix b/pkgs/development/python-modules/certbot/default.nix
index 31cb3fd5ffe4..e65e6f0d808e 100644
--- a/pkgs/development/python-modules/certbot/default.nix
+++ b/pkgs/development/python-modules/certbot/default.nix
@@ -9,13 +9,13 @@
buildPythonPackage rec {
pname = "certbot";
- version = "1.21.0";
+ version = "1.22.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
- sha256 = "0sbhg8gdcszi4q5091s1by0hz6qxpkdfazs5lbfrlw33fkck2d3i";
+ sha256 = "1wrk5rhds6a69vbs1bda0zhwpvjhd8i20did6j3kydbas3zbr516";
};
sourceRoot = "source/${pname}";
diff --git a/pkgs/development/python-modules/cloudsplaining/default.nix b/pkgs/development/python-modules/cloudsplaining/default.nix
index 2a5dc7efcdf8..23c911f8e4a6 100644
--- a/pkgs/development/python-modules/cloudsplaining/default.nix
+++ b/pkgs/development/python-modules/cloudsplaining/default.nix
@@ -17,7 +17,7 @@
buildPythonPackage rec {
pname = "cloudsplaining";
- version = "0.4.8";
+ version = "0.4.9";
disabled = pythonOlder "3.6";
@@ -25,7 +25,7 @@ buildPythonPackage rec {
owner = "salesforce";
repo = pname;
rev = version;
- sha256 = "sha256-t1eSPa1KqzUB2xYGkU10lVIZQ3CcIHiZZtTa0j2TUGc=";
+ sha256 = "sha256-87ZUYHN64gnbF2g9BjPFNbwMaGFxAy3Yb8UdT3BUqC0=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/cpyparsing/default.nix b/pkgs/development/python-modules/cpyparsing/default.nix
index 638824a87ee9..cea3df8eeae1 100644
--- a/pkgs/development/python-modules/cpyparsing/default.nix
+++ b/pkgs/development/python-modules/cpyparsing/default.nix
@@ -2,13 +2,13 @@
buildPythonPackage rec {
pname = "cpyparsing";
- version = "2.4.7.1.0.0";
+ version = "2.4.7.1.1.0";
src = fetchFromGitHub {
owner = "evhub";
repo = pname;
- rev = "09073751d92cb40fb71c927c006baddc082df1db"; # No tags on repo
- sha256 = "O9IdHipAxxbFcDFYNvmczue/wT4AF9Xb5uc3ZTAlTlo=";
+ rev = "v${version}";
+ sha256 = "1rqj89mb4dz0xk8djh506nrlqfqqdva9qgb5llrvvwjqv3vqnrj4";
};
nativeBuildInputs = [ cython ];
diff --git a/pkgs/development/python-modules/deezer-python/default.nix b/pkgs/development/python-modules/deezer-python/default.nix
index bece30159537..ee47645ddc73 100644
--- a/pkgs/development/python-modules/deezer-python/default.nix
+++ b/pkgs/development/python-modules/deezer-python/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "deezer-python";
- version = "4.1.0";
+ version = "4.2.0";
format = "pyproject";
disabled = pythonOlder "3.6";
@@ -22,7 +22,7 @@ buildPythonPackage rec {
owner = "browniebroke";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-E1xXtvAcYIi2xxaX+3yMkkvRz+Gt6Nx0JRqV1nI/Ldo=";
+ sha256 = "0wljf3ri8jcg4df6m61k8s5nm9rncwa8c46pfv901bc737kyslpl";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/discordpy/default.nix b/pkgs/development/python-modules/discordpy/default.nix
index 7dfd6e071fe0..aa88147ae7fd 100644
--- a/pkgs/development/python-modules/discordpy/default.nix
+++ b/pkgs/development/python-modules/discordpy/default.nix
@@ -6,6 +6,7 @@
, pynacl
, pythonOlder
, withVoice ? true
+, ffmpeg
}:
buildPythonPackage rec {
@@ -24,9 +25,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [
aiohttp
- ] ++ lib.optionalString withVoice [
+ ] ++ lib.optionals withVoice [
libopus
pynacl
+ ffmpeg
];
patchPhase = ''
@@ -34,6 +36,9 @@ buildPythonPackage rec {
--replace "ctypes.util.find_library('opus')" "'${libopus}/lib/libopus.so.0'"
substituteInPlace requirements.txt \
--replace "aiohttp>=3.6.0,<3.8.0" "aiohttp>=3.6.0,<4"
+ '' + lib.optionalString withVoice ''
+ substituteInPlace "discord/player.py" \
+ --replace "executable='ffmpeg'" "executable='${ffmpeg}/bin/ffmpeg'"
'';
# Only have integration tests with discord
diff --git a/pkgs/development/python-modules/emoji/default.nix b/pkgs/development/python-modules/emoji/default.nix
index f7cdca223078..1497b412d741 100644
--- a/pkgs/development/python-modules/emoji/default.nix
+++ b/pkgs/development/python-modules/emoji/default.nix
@@ -6,13 +6,13 @@
buildPythonPackage rec {
pname = "emoji";
- version = "1.6.1";
+ version = "1.6.2";
src = fetchFromGitHub {
owner = "carpedm20";
repo = pname;
rev = "v${version}";
- sha256 = "0x18l8jgbki9yqx994w97dagfaqrbxi3sy2l2101is1dfjr0kib6";
+ sha256 = "1g927w9l3j5mycg6pqa4vjk2lyy35sppfp8pbzb6mvca500001rk";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/jc/default.nix b/pkgs/development/python-modules/jc/default.nix
index 3a9d24c29dd8..ea1715c9b37c 100644
--- a/pkgs/development/python-modules/jc/default.nix
+++ b/pkgs/development/python-modules/jc/default.nix
@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "jc";
- version = "1.17.1";
+ version = "1.17.3";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "kellyjonbrazil";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-ISggj6oOF0B7TKIQAlZtauRrDAWP88OOFezLJK6edjI=";
+ sha256 = "sha256-LoefoKrYZF0REF3EEd9/rxd5VQfpU+lYX/siRlQw00o=";
};
propagatedBuildInputs = [ ruamel-yaml xmltodict pygments ];
diff --git a/pkgs/development/python-modules/keyring/default.nix b/pkgs/development/python-modules/keyring/default.nix
index 799b0459c3fa..68043f268ba5 100644
--- a/pkgs/development/python-modules/keyring/default.nix
+++ b/pkgs/development/python-modules/keyring/default.nix
@@ -13,12 +13,12 @@
buildPythonPackage rec {
pname = "keyring";
- version = "23.3.0";
+ version = "23.4.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-Ct7Khr6zoveTYtksf7cZSb51HnJGPywTUOKrXA+9NwE=";
+ sha256 = "sha256-iPIGAkKV48b7FrsKYPtLt+wRhWKdxacp8SqnwjbQE4c=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/lc7001/default.nix b/pkgs/development/python-modules/lc7001/default.nix
index 32c3ddd5a135..0683794eda50 100644
--- a/pkgs/development/python-modules/lc7001/default.nix
+++ b/pkgs/development/python-modules/lc7001/default.nix
@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "lc7001";
- version = "1.0.4";
+ version = "1.0.5";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-1qObmGpu6mU3gdxS8stH+4Zc2NA7W1+pS7fOXALC0Ug=";
+ sha256 = "sha256-I4I3vwW1kJsgLFPMGpe9hkD3iEeC3AqI4pCi6SCWPx4=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/monkeyhex/default.nix b/pkgs/development/python-modules/monkeyhex/default.nix
index f627505cbddd..a6261805427d 100644
--- a/pkgs/development/python-modules/monkeyhex/default.nix
+++ b/pkgs/development/python-modules/monkeyhex/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "monkeyhex";
- version = "1.7.2";
+ version = "1.7.3";
src = fetchPypi {
inherit pname version;
- sha256 = "e2add1f7f1f620be9ccec0618342e6a9e47de50e0d2252628bffd452bfd3762b";
+ sha256 = "c121e734ccae8f1be6f1ecaf9100f3f8bde0a2dd03979b8ba42c474b1978806e";
};
propagatedBuildInputs = [ future ];
diff --git a/pkgs/development/python-modules/phonenumbers/default.nix b/pkgs/development/python-modules/phonenumbers/default.nix
index 52ba61cf712b..43a684e10dfa 100644
--- a/pkgs/development/python-modules/phonenumbers/default.nix
+++ b/pkgs/development/python-modules/phonenumbers/default.nix
@@ -6,12 +6,12 @@
buildPythonPackage rec {
pname = "phonenumbers";
- version = "8.12.38";
+ version = "8.12.39";
format = "setuptools";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-PNodHOqaaAG6v4JebA9ql3bqbYpouBslYXj45aqBM0Q=";
+ sha256 = "0f7745e1f108654db347d885e814cbb5f225b8c5f5ce336024b193c79291ddaa";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/plaid-python/default.nix b/pkgs/development/python-modules/plaid-python/default.nix
index 2f07117a460b..babca1715d91 100644
--- a/pkgs/development/python-modules/plaid-python/default.nix
+++ b/pkgs/development/python-modules/plaid-python/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "plaid-python";
- version = "8.6.0";
+ version = "8.7.0";
src = fetchPypi {
inherit pname version;
- sha256 = "da3570fedbc096aa058affa72fc71905401b373a5b0d28b7c27e7af7998859d9";
+ sha256 = "16b23f61deab24d406536a1fd172da77bcbb28b3ca322245b8ee9203350fb57d";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/pyatspi/default.nix b/pkgs/development/python-modules/pyatspi/default.nix
index b566edef64d1..f839dc4df312 100644
--- a/pkgs/development/python-modules/pyatspi/default.nix
+++ b/pkgs/development/python-modules/pyatspi/default.nix
@@ -2,12 +2,12 @@
buildPythonPackage rec {
pname = "pyatspi";
- version = "2.38.1";
+ version = "2.38.2";
format = "other";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
- sha256 = "0lc1p6p296c9q3lffi03v902jlsj34i7yyl3rcyaq94wwbljg7z4";
+ sha256 = "DnCJwLYwlhS1NiCDazRi1/kShOQ2/kkpuhYZqEHPEYU=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/development/python-modules/pynvml/default.nix b/pkgs/development/python-modules/pynvml/default.nix
index 59698fa18767..63d445e0923f 100644
--- a/pkgs/development/python-modules/pynvml/default.nix
+++ b/pkgs/development/python-modules/pynvml/default.nix
@@ -7,12 +7,12 @@
buildPythonPackage rec {
pname = "pynvml";
- version = "11.0.0";
+ version = "11.4.1";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-1fxKItNVtAw0HWugqoiKLU0iUxd9JDkA+EAbfmyssbs=";
+ sha256 = "b2e4a33b80569d093b513f5804db0c7f40cfc86f15a013ae7a8e99c5e175d5dd";
};
propagatedBuildInputs = [ cudatoolkit ];
diff --git a/pkgs/development/python-modules/pyskyqremote/default.nix b/pkgs/development/python-modules/pyskyqremote/default.nix
new file mode 100644
index 000000000000..7f76407f033d
--- /dev/null
+++ b/pkgs/development/python-modules/pyskyqremote/default.nix
@@ -0,0 +1,45 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pycountry
+, pythonOlder
+, requests
+, websocket-client
+, xmltodict
+}:
+
+buildPythonPackage rec {
+ pname = "pyskyqremote";
+ version = "0.2.49";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
+
+ src = fetchFromGitHub {
+ owner = "RogerSelwyn";
+ repo = "skyq_remote";
+ rev = version;
+ sha256 = "sha256-Xhr+p/kIp3Sm7swqCsjXHaECntwJnBLyGlcSg2lsxZc=";
+ };
+
+ propagatedBuildInputs = [
+ pycountry
+ requests
+ websocket-client
+ xmltodict
+ ];
+
+ # Project has no tests, only a test script which looks like anusage example
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "pyskyqremote"
+ ];
+
+ meta = with lib; {
+ description = "Python module for accessing SkyQ boxes";
+ homepage = "https://github.com/RogerSelwyn/skyq_remote";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/pystache/default.nix b/pkgs/development/python-modules/pystache/default.nix
index c93655e10a8e..67ee0063827f 100644
--- a/pkgs/development/python-modules/pystache/default.nix
+++ b/pkgs/development/python-modules/pystache/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "pystache";
- version = "0.5.4";
+ version = "0.6.0";
src = fetchPypi {
inherit pname version;
- sha256 = "f7bbc265fb957b4d6c7c042b336563179444ab313fb93a719759111eabd3b85a";
+ sha256 = "93bf92b2149a4c4b58d12142e2c4c6dd5c08d89e4c95afccd4b6efe2ee1d470d";
};
LC_ALL = "en_US.UTF-8";
diff --git a/pkgs/development/python-modules/pytest-flakes/default.nix b/pkgs/development/python-modules/pytest-flakes/default.nix
index ef06ed1bf4f0..afa04dfe937a 100644
--- a/pkgs/development/python-modules/pytest-flakes/default.nix
+++ b/pkgs/development/python-modules/pytest-flakes/default.nix
@@ -7,12 +7,12 @@ buildPythonPackage rec {
# upstream has abandoned project in favor of pytest-flake8
# retaining package to not break other packages
pname = "pytest-flakes";
- version = "4.0.4";
+ version = "4.0.5";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
- sha256 = "551467a129331bed83596f3145d9eaf6541c26a03dc1b36419efef8ae231341b";
+ sha256 = "953134e97215ae31f6879fbd7368c18d43f709dc2fab5b7777db2bb2bac3a924";
};
buildInputs = [ pytest ];
diff --git a/pkgs/development/python-modules/python-lsp-black/default.nix b/pkgs/development/python-modules/python-lsp-black/default.nix
index 3c18d291e37f..bd557c402ffb 100644
--- a/pkgs/development/python-modules/python-lsp-black/default.nix
+++ b/pkgs/development/python-modules/python-lsp-black/default.nix
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "python-lsp-black";
- version = "1.0.0";
+ version = "1.0.1";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "python-lsp";
repo = "python-lsp-black";
rev = "v${version}";
- sha256 = "1blxhj70jxb9xfbd4dxqikd262n6dn9dw5qhyml5yvdwxbv0bybc";
+ sha256 = "03k32m4jfqfzrawj69yxhk9kwzsdcwginip77kxdbra2xwgqfc3w";
};
checkInputs = [ pytestCheckHook ];
diff --git a/pkgs/development/python-modules/pytradfri/default.nix b/pkgs/development/python-modules/pytradfri/default.nix
index 88e3e448ade9..98bf1b1da4e2 100644
--- a/pkgs/development/python-modules/pytradfri/default.nix
+++ b/pkgs/development/python-modules/pytradfri/default.nix
@@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "pytradfri";
- version = "7.2.0";
+ version = "7.2.1";
disabled = pythonOlder "3.7";
@@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "home-assistant-libs";
repo = "pytradfri";
rev = version;
- sha256 = "sha256-/1K2jBgDuOIUb4WUownoceprZbOwSkQIqeEt07HfZrY=";
+ sha256 = "sha256-4+QdMuwDMLhIIzffHXG+LehuwR9QMcI/CeL5g8wOQfU=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/sentry-sdk/default.nix b/pkgs/development/python-modules/sentry-sdk/default.nix
index b7349caa233f..a5a738187183 100644
--- a/pkgs/development/python-modules/sentry-sdk/default.nix
+++ b/pkgs/development/python-modules/sentry-sdk/default.nix
@@ -1,4 +1,7 @@
-{ aiohttp
+{ lib
+, stdenv
+, aiohttp
+, asttokens
, blinker
, botocore
, bottle
@@ -7,61 +10,127 @@
, certifi
, chalice
, django
+, executing
+, fakeredis
, falcon
-, fetchPypi
-, flask
+, fetchFromGitHub
+, flask_login
+, gevent
+, httpx
, iana-etc
, isPy3k
+, jsonschema
, libredirect
+, pure-eval
, pyramid
+, pyspark
+, pytest-django
+, pytest-forked
+, pytest-localserver
+, pytestCheckHook
, rq
, sanic
+, sanic-testing
, sqlalchemy
-, lib
, tornado
-, urllib3
, trytond
+, urllib3
, werkzeug
-, executing
-, pure-eval
-, asttokens
}:
buildPythonPackage rec {
pname = "sentry-sdk";
- version = "1.4.3";
+ version = "1.5.0";
+ format = "setuptools";
- src = fetchPypi {
- inherit pname version;
- sha256 = "b9844751e40710e84a457c5bc29b21c383ccb2b63d76eeaad72f7f1c808c8828";
+ src = fetchFromGitHub {
+ owner = "getsentry";
+ repo = "sentry-python";
+ rev = version;
+ sha256 = "sha256-hJqopR/kvqU0trniHMOahi3oeIzeMvc74ujmfJ2iG48=";
};
- checkInputs = [ blinker botocore chalice django flask tornado bottle rq falcon sqlalchemy werkzeug trytond
- executing pure-eval asttokens ]
- ++ lib.optionals isPy3k [ celery pyramid sanic aiohttp ];
+ propagatedBuildInputs = [
+ certifi
+ urllib3
+ ];
- propagatedBuildInputs = [ urllib3 certifi ];
+ checkInputs = [
+ asttokens
+ blinker
+ botocore
+ bottle
+ chalice
+ django
+ executing
+ fakeredis
+ falcon
+ flask_login
+ gevent
+ jsonschema
+ pure-eval
+ pytest-django
+ pytest-forked
+ pytest-localserver
+ pytestCheckHook
+ rq
+ sqlalchemy
+ tornado
+ trytond
+ werkzeug
+ ] ++ lib.optionals isPy3k [
+ aiohttp
+ celery
+ httpx
+ pyramid
+ pyspark
+ sanic
+ sanic-testing
+ ];
+ doCheck = !stdenv.isDarwin;
- # The Sentry tests need access to `/etc/protocols` (the tests call
- # `socket.getprotobyname('tcp')`, which reads from this file). Normally
- # this path isn't available in the sandbox. Therefore, use libredirect
- # to make on eavailable from `iana-etc`. This is a test-only operation.
- preCheck = lib.optionalString doCheck ''
- export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols
- export LD_PRELOAD=${libredirect}/lib/libredirect.so
- '';
+ disabledTests = [
+ # Issue with the asseration
+ "test_auto_enabling_integrations_catches_import_error"
+ # Output mismatch in sqlalchemy test
+ "test_too_large_event_truncated"
+ # Failing falcon tests
+ "test_has_context"
+ "uri_template-"
+ "path-"
+ "test_falcon_large_json_request"
+ "test_falcon_empty_json_request"
+ "test_falcon_raw_data_request"
+ # Failing spark tests
+ "test_set_app_properties"
+ "test_start_sentry_listener"
+ # Failing threading test
+ "test_circular_references"
+ # Failing wsgi test
+ "test_session_mode_defaults_to_request_mode_in_wsgi_handler"
+ ];
- postCheck = "unset NIX_REDIRECTS LD_PRELOAD";
+ disabledTestPaths = [
+ # Some tests are failing (network access, assertion errors)
+ "tests/integrations/aiohttp/"
+ "tests/integrations/gcp/"
+ "tests/integrations/httpx/"
+ "tests/integrations/stdlib/test_httplib.py"
+ # Tests are blocking
+ "tests/integrations/celery/"
+ # pytest-chalice is not available in nixpkgs yet
+ "tests/integrations/chalice/"
+ ];
- # no tests
- doCheck = false;
- pythonImportsCheck = [ "sentry_sdk" ];
+ pythonImportsCheck = [
+ "sentry_sdk"
+ ];
meta = with lib; {
+ description = "Python SDK for Sentry.io";
homepage = "https://github.com/getsentry/sentry-python";
- description = "New Python SDK for Sentry.io";
license = licenses.bsd2;
- maintainers = with maintainers; [ gebner ];
+ maintainers = with maintainers; [ fab gebner ];
};
}
diff --git a/pkgs/development/python-modules/softlayer/default.nix b/pkgs/development/python-modules/softlayer/default.nix
index ef0bb8a07170..b0705346abdb 100644
--- a/pkgs/development/python-modules/softlayer/default.nix
+++ b/pkgs/development/python-modules/softlayer/default.nix
@@ -17,14 +17,14 @@
buildPythonPackage rec {
pname = "softlayer";
- version = "5.9.7";
+ version = "5.9.8";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = pname;
repo = "softlayer-python";
rev = "v${version}";
- sha256 = "0zwhykrpckx3ln4w6vlgp0nrkkr8343ni1w43hxznm55qmrllrpg";
+ sha256 = "087kyl2yacvh12i4x3357659mgq4xycv8a4y9rl3rj57kp5jc6ah";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/spiderpy/default.nix b/pkgs/development/python-modules/spiderpy/default.nix
index 7970bbb84783..82007997ccb8 100644
--- a/pkgs/development/python-modules/spiderpy/default.nix
+++ b/pkgs/development/python-modules/spiderpy/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "spiderpy";
- version = "1.7.1";
+ version = "1.7.2";
format = "pyproject";
disabled = isPy27;
@@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "peternijssen";
repo = "spiderpy";
rev = version;
- sha256 = "sha256-gQ/Y5c8+aSvoJzXI6eQ9rk0xDPxpi0xgO3xBKR+vVrY=";
+ sha256 = "sha256-Yujy8HSMbK2DQ/913r2c74hKPYDfcHFKq04ysqxG+go=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/teslajsonpy/default.nix b/pkgs/development/python-modules/teslajsonpy/default.nix
index 5d3416d889b2..64911736cfa2 100644
--- a/pkgs/development/python-modules/teslajsonpy/default.nix
+++ b/pkgs/development/python-modules/teslajsonpy/default.nix
@@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "teslajsonpy";
- version = "1.4.0";
+ version = "1.4.1";
format = "pyproject";
disabled = pythonOlder "3.6";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "zabuldon";
repo = pname;
rev = "v${version}";
- sha256 = "17ld1ciylfc8kmf5iazzrlqqdf434wi5dfjzm68nm5d539gccfss";
+ sha256 = "1hnlymdi27rjxaivn5csqrj9ahk86cwvbpvdl29v7qal0y2bc433";
};
nativeBuildInputs = [
diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix
index 193db8bacb76..64b9d9ca4c22 100644
--- a/pkgs/development/ruby-modules/gem-config/default.nix
+++ b/pkgs/development/ruby-modules/gem-config/default.nix
@@ -26,7 +26,7 @@
, file, libvirt, glib, vips, taglib, libopus, linux-pam, libidn, protobuf, fribidi, harfbuzz
, bison, flex, pango, python3, patchelf, binutils, freetds, wrapGAppsHook, atk
, bundler, libsass, libexif, libselinux, libsepol, shared-mime-info, libthai, libdatrie
-, CoreServices, DarwinTools, cctools
+, CoreServices, DarwinTools, cctools, libtool
}@args:
let
@@ -280,7 +280,7 @@ in
};
grpc = attrs: {
- nativeBuildInputs = [ pkg-config ];
+ nativeBuildInputs = [ pkg-config ] ++ lib.optional stdenv.isDarwin libtool;
buildInputs = [ openssl ];
hardeningDisable = [ "format" ];
NIX_CFLAGS_COMPILE = toString [
@@ -297,6 +297,9 @@ in
postPatch = ''
substituteInPlace Makefile \
--replace '-Wno-invalid-source-encoding' ""
+ '' + lib.optionalString stdenv.isDarwin ''
+ substituteInPlace src/ruby/ext/grpc/extconf.rb \
+ --replace "ENV['AR'] = 'libtool -o' if RUBY_PLATFORM =~ /darwin/" ""
'';
};
@@ -570,7 +573,7 @@ in
};
rugged = attrs: {
- nativeBuildInputs = [ cmake pkg-config which ];
+ nativeBuildInputs = [ cmake pkg-config which ] ++ lib.optional stdenv.isDarwin libiconv;
buildInputs = [ openssl libssh2 zlib ];
dontUseCmakeConfigure = true;
};
diff --git a/pkgs/development/tools/analysis/checkov/default.nix b/pkgs/development/tools/analysis/checkov/default.nix
index 071843772708..61b56a181337 100644
--- a/pkgs/development/tools/analysis/checkov/default.nix
+++ b/pkgs/development/tools/analysis/checkov/default.nix
@@ -46,13 +46,13 @@ with py.pkgs;
buildPythonApplication rec {
pname = "checkov";
- version = "2.0.632";
+ version = "2.0.641";
src = fetchFromGitHub {
owner = "bridgecrewio";
repo = pname;
rev = version;
- sha256 = "sha256-SDMp+QOZy2Ml5V8RHLvmTl/3/KB8iYaW0muakE8PnhA=";
+ sha256 = "sha256-/WmzMffHaD13aZsz6Ib/yaI+6b3UrexWpPv1oLR+PuM=";
};
nativeBuildInputs = with py.pkgs; [
diff --git a/pkgs/development/tools/database/litestream/default.nix b/pkgs/development/tools/database/litestream/default.nix
index 7468aa55d618..6a7e53e6cf20 100644
--- a/pkgs/development/tools/database/litestream/default.nix
+++ b/pkgs/development/tools/database/litestream/default.nix
@@ -4,13 +4,13 @@
}:
buildGoModule rec {
pname = "litestream";
- version = "0.3.6";
+ version = "0.3.7";
src = fetchFromGitHub {
owner = "benbjohnson";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-A1okmeX3njyRXFKcXJPSV7Hg8Q/P7WqpGz2HThDdUQo=";
+ sha256 = "sha256-IEdTLf+fEp19FhwL3IaGT9HGKQoa6HwFox2gf0lvFu4=";
};
ldflags = [
diff --git a/pkgs/development/tools/misc/spruce/default.nix b/pkgs/development/tools/misc/spruce/default.nix
index ff95242681bb..16fd6cde043d 100644
--- a/pkgs/development/tools/misc/spruce/default.nix
+++ b/pkgs/development/tools/misc/spruce/default.nix
@@ -2,17 +2,17 @@
buildGoModule rec {
pname = "spruce";
- version = "1.28.0";
+ version = "1.29.0";
src = fetchFromGitHub {
owner = "geofffranks";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-cNO+6rMQPO1e4Hen8vcFU1FRnnCv2+fDYtXXbuR2UCU=";
+ sha256 = "sha256-HjJWiBYd1YFDZ+XOFcU2Df6bmKFBwVQ6YbiZv1IVN3A=";
};
deleteVendor = true;
- vendorSha256 = "sha256-5EM4Z9AN1Mjy7DayII0Iu+XrjM9lyUqrScMT/fe43dw=";
+ vendorSha256 = "sha256-67PGSW3wV8i3mAt3rCuWbFmeOe+QhHXn2rTUmeN6YMA=";
meta = with lib; {
description = "A BOSH template merge tool";
diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_yarn_lock.js b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_yarn_lock.js
index 86e92f852087..3c067fc99aaa 100755
--- a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_yarn_lock.js
+++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_yarn_lock.js
@@ -25,14 +25,14 @@ const result = []
readFile
.on('line', line => {
- const arr = line.match(/^ {2}resolved "([^#]+)#([^"]+)"$/)
+ const arr = line.match(/^ {2}resolved "([^#]+)(#[^"]+)?"$/)
if (arr !== null) {
const [_, url, shaOrRev] = arr
const fileName = urlToName(url)
- result.push(` resolved "${fileName}#${shaOrRev}"`)
+ result.push(` resolved "${fileName}${shaOrRev ?? ''}"`)
} else {
result.push(line)
}
diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/generateNix.js b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/generateNix.js
index 1e7b4f341002..5004e6f3903d 100644
--- a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/generateNix.js
+++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/generateNix.js
@@ -69,7 +69,7 @@ function fetchgit(fileName, url, rev, branch, builtinFetchGit) {
function fetchLockedDep(builtinFetchGit) {
return function (pkg) {
- const { nameWithVersion, resolved } = pkg
+ const { integrity, nameWithVersion, resolved } = pkg
if (!resolved) {
console.error(
@@ -102,14 +102,14 @@ function fetchLockedDep(builtinFetchGit) {
return fetchgit(fileName, urlForGit, rev, branch || 'master', builtinFetchGit)
}
- const sha = sha1OrRev
+ const [algo, hash] = integrity ? integrity.split('-') : ['sha1', sha1OrRev]
return ` {
name = "${fileName}";
path = fetchurl {
name = "${fileName}";
url = "${url}";
- sha1 = "${sha}";
+ ${algo} = "${hash}";
};
}`
}
diff --git a/pkgs/development/web/flyctl/default.nix b/pkgs/development/web/flyctl/default.nix
index 1b0748182dfc..7bef336a5f3e 100644
--- a/pkgs/development/web/flyctl/default.nix
+++ b/pkgs/development/web/flyctl/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "flyctl";
- version = "0.0.250";
+ version = "0.0.260";
src = fetchFromGitHub {
owner = "superfly";
repo = "flyctl";
rev = "v${version}";
- sha256 = "sha256-QhEstfzx0zqC+dDgqfgmi1zOdc491YbzVAgXVaoTVUU=";
+ sha256 = "sha256-xjvZp6LAKVYgZpiSHlfZzZ/OBp/UutjvndM46okC0b4=";
};
preBuild = ''
@@ -17,7 +17,7 @@ buildGoModule rec {
subPackages = [ "." ];
- vendorSha256 = "sha256-JxEl23bwfvd8jNBYqIXBIu1pNu2rt+jvdEl0RdXCidE=";
+ vendorSha256 = "sha256-lwayHq4uByCkiwzRd3lPaSAW4XvKNMVNcN4Cfct74e8=";
doCheck = false;
diff --git a/pkgs/games/odamex/default.nix b/pkgs/games/odamex/default.nix
index 8b58ec67eda4..7905cfaa3855 100644
--- a/pkgs/games/odamex/default.nix
+++ b/pkgs/games/odamex/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "odamex";
- version = "0.8.2";
+ version = "0.9.5";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-src-${version}.tar.bz2";
- sha256 = "0d4v1l7kghkz1xz92jxlx50x3iy94z7ix1i3209m5j5545qzxrqq";
+ sha256 = "sha256-WBqO5fWzemw1kYlY192v0nnZkbIEVuWmjWYMy+1ODPQ=";
};
nativeBuildInputs = [ cmake pkg-config ];
diff --git a/pkgs/misc/vim-plugins/deprecated.json b/pkgs/misc/vim-plugins/deprecated.json
index b76cefa153b7..d25c35a9b219 100644
--- a/pkgs/misc/vim-plugins/deprecated.json
+++ b/pkgs/misc/vim-plugins/deprecated.json
@@ -1,4 +1,8 @@
{
+ "compe-tmux": {
+ "date": "2021-12-07",
+ "new": "cmp-tmux"
+ },
"gist-vim": {
"date": "2020-03-27",
"new": "vim-gist"
diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix
index 994665f9bf09..fe44761aba70 100644
--- a/pkgs/misc/vim-plugins/generated.nix
+++ b/pkgs/misc/vim-plugins/generated.nix
@@ -41,12 +41,12 @@ final: prev:
aerial-nvim = buildVimPluginFrom2Nix {
pname = "aerial.nvim";
- version = "2021-12-01";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "stevearc";
repo = "aerial.nvim";
- rev = "ab68f4f07b0f382f61b14b67599a59b1f6fead87";
- sha256 = "1jlav2mbsizwnkkgp1v15sw765q24kc5sss34y16hdxsap6113vd";
+ rev = "24825561e22832d5a99365243d62a19b93892fb1";
+ sha256 = "0a6fh4m8zb303lmdvwlfxckzwynlr50g3x8driwshg7bkqbayx8m";
};
meta.homepage = "https://github.com/stevearc/aerial.nvim/";
};
@@ -173,12 +173,12 @@ final: prev:
asyncomplete-vim = buildVimPluginFrom2Nix {
pname = "asyncomplete.vim";
- version = "2021-08-19";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "prabirshrestha";
repo = "asyncomplete.vim";
- rev = "73ac8e4e4525ba48e82d0f30643987b015233d4e";
- sha256 = "0gbmkxrxcwr5adzp2j7dd64dpzc775m1b9sv0si96gh9pb6119q2";
+ rev = "9c7651894c2c6d656c0dc71e87cfabbbb71b9c78";
+ sha256 = "1vjai1v9nnn7vbckclz85bhl6mx4d5d3155pg2vv1d2s4lzqplhv";
};
meta.homepage = "https://github.com/prabirshrestha/asyncomplete.vim/";
};
@@ -233,12 +233,12 @@ final: prev:
auto-session = buildVimPluginFrom2Nix {
pname = "auto-session";
- version = "2021-11-24";
+ version = "2021-12-07";
src = fetchFromGitHub {
owner = "rmagatti";
repo = "auto-session";
- rev = "1b4b4b7a993aae6d6281bc98194675b97ce9e962";
- sha256 = "0axs3l0cr6c8226x897wlpvs9i61x6d7s8g4sidjzkdic62ch1s8";
+ rev = "08e766c1467d3fa3b53ca1dafdfa9815ea830b3c";
+ sha256 = "0xrj7hr5dx6xkwcjs6yl474f3i8vb0pyj42g0d1lxcqmw55fm7gw";
};
meta.homepage = "https://github.com/rmagatti/auto-session/";
};
@@ -257,12 +257,12 @@ final: prev:
awesome-vim-colorschemes = buildVimPluginFrom2Nix {
pname = "awesome-vim-colorschemes";
- version = "2021-08-15";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "rafi";
repo = "awesome-vim-colorschemes";
- rev = "facbd7269201b1766369be9abc8bfc183938a9ae";
- sha256 = "11bdzds9qyr56sqwl2c7cy7gll32dd3fzy8bx1b0rg7ylwlyqllf";
+ rev = "8844314af7aa10db30fc743656bf26eceb24cbe6";
+ sha256 = "0203vqi3dmlhcmhir25wb4lvvdca9ryqzbrvabxa3jsfz3s01c9l";
};
meta.homepage = "https://github.com/rafi/awesome-vim-colorschemes/";
};
@@ -473,12 +473,12 @@ final: prev:
chadtree = buildVimPluginFrom2Nix {
pname = "chadtree";
- version = "2021-12-01";
+ version = "2021-12-07";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "chadtree";
- rev = "d034dcc738c8fd2217199e5db76066223ab8750c";
- sha256 = "1s97snn5g5bd3sfqj5n2a76f0r9d3ywi0q08xbxv6y3p83c1dn10";
+ rev = "737cd727845dbf5ef153867805abaef2c379d2b3";
+ sha256 = "0bqfk5p9l9gm84y01xsgm884ic042fbms7za2nz9j0lr04kfprxr";
};
meta.homepage = "https://github.com/ms-jpq/chadtree/";
};
@@ -713,12 +713,12 @@ final: prev:
cmp-path = buildVimPluginFrom2Nix {
pname = "cmp-path";
- version = "2021-11-29";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "cmp-path";
- rev = "e30d3fdee650a07330654efab1951b2f1b91435e";
- sha256 = "1sf79aqq41qbz69b29yzyn27qb9x8spyqxpay8fgzhn8jfkapvxv";
+ rev = "d83839ae510d18530c6d36b662a9e806d4dceb73";
+ sha256 = "0vpm0g65zziyv6cfagaknqs1ar5ldpjrkssqhy0yd3421708hq79";
};
meta.homepage = "https://github.com/hrsh7th/cmp-path/";
};
@@ -749,12 +749,12 @@ final: prev:
cmp-treesitter = buildVimPluginFrom2Nix {
pname = "cmp-treesitter";
- version = "2021-10-31";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "ray-x";
repo = "cmp-treesitter";
- rev = "fb1964fa6347467e1685507c4c9f56b25c266fb5";
- sha256 = "196lk52ljsf5msgf1kxslgb5agk6dd9nwz4ms92wz2jg3qlnmbjm";
+ rev = "a6b4c95ee922cace635b5a46c7fcc691d2559fbb";
+ sha256 = "068x8n63iavycf5fsc5jf2p8i3cs697r60k54j7rm076bpbmnisa";
};
meta.homepage = "https://github.com/ray-x/cmp-treesitter/";
};
@@ -785,12 +785,12 @@ final: prev:
cmp_luasnip = buildVimPluginFrom2Nix {
pname = "cmp_luasnip";
- version = "2021-10-28";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "saadparwaiz1";
repo = "cmp_luasnip";
- rev = "16832bb50e760223a403ffa3042859845dd9ef9d";
- sha256 = "0hc6flnvdgd7a93p8y9msp92bc1r10nh00wvw9msr40442m8viqc";
+ rev = "75bf6434f175206cd219f9d2bbcae154a009346c";
+ sha256 = "0ax6wm6ymcw9ysy4c2vd9rdq91njr3bsg0xdd2l0c87951yawvlg";
};
meta.homepage = "https://github.com/saadparwaiz1/cmp_luasnip/";
};
@@ -893,12 +893,12 @@ final: prev:
colorbuddy-nvim = buildVimPluginFrom2Nix {
pname = "colorbuddy.nvim";
- version = "2021-10-25";
+ version = "2021-12-01";
src = fetchFromGitHub {
owner = "tjdevries";
repo = "colorbuddy.nvim";
- rev = "e231f7ebb9b81b082adb0d312eb8817b2c5d2505";
- sha256 = "0j87harnc1j997rq1qwh0iys89r6mj1vaskdkbxf1nk2l6gjs6n4";
+ rev = "c678edd8113274574f9d9ef440773d1123e1431d";
+ sha256 = "095347cz5idcb09l4sl236agzi89lyr9r40nix2c8vk5pbskvp8f";
};
meta.homepage = "https://github.com/tjdevries/colorbuddy.nvim/";
};
@@ -942,12 +942,12 @@ final: prev:
comment-nvim = buildVimPluginFrom2Nix {
pname = "comment.nvim";
- version = "2021-11-24";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "numtostr";
repo = "comment.nvim";
- rev = "a6e1c127fa7f19ec4e3edbffab1aacb2852b6db3";
- sha256 = "0ds0z93gdqc7v6ndgsc2jz5ac06s6vbf26p17cc4h4a6l0sgn9pw";
+ rev = "00aff9f0fb75328c686a8484cd090ad72c355cb1";
+ sha256 = "01zssi8vqyfm3s0zpgwkm0dmk5i4fng6wjkcfp0z7ad26ca0iklp";
};
meta.homepage = "https://github.com/numtostr/comment.nvim/";
};
@@ -1170,12 +1170,12 @@ final: prev:
crates-nvim = buildVimPluginFrom2Nix {
pname = "crates.nvim";
- version = "2021-11-29";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "saecki";
repo = "crates.nvim";
- rev = "cdfb2df434ff57a00f2f3f90dc5c6e11c2bd3079";
- sha256 = "0f7wwn3x579qm0klq4h2hmmvh5srb1fvsgmcnhm2il4j2mgdhykh";
+ rev = "4800f99b81fa3a9b6b110d6f5c87aabf9d413a56";
+ sha256 = "12040gnk0zw7929vgb0sa3j8p51ir7gvbg7lmrm3qvykd6arsijg";
};
meta.homepage = "https://github.com/saecki/crates.nvim/";
};
@@ -1242,12 +1242,12 @@ final: prev:
ctrlp-vim = buildVimPluginFrom2Nix {
pname = "ctrlp.vim";
- version = "2021-11-24";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "ctrlpvim";
repo = "ctrlp.vim";
- rev = "fff74986c5439015cf5cc69cf2c6390a40fdd79f";
- sha256 = "1f7dw1zgz5h8f6wdrdrrs46prcsj5hx8x1pvjkr4grjafismxcpd";
+ rev = "5d798ad8ef9844e86dec7bb75c579674bf35cbd9";
+ sha256 = "1qjznw2jkw3s9a47q0y624v40h4cd0jzfxrckmy7kb0cgxpz9sa5";
};
meta.homepage = "https://github.com/ctrlpvim/ctrlp.vim/";
};
@@ -1302,12 +1302,12 @@ final: prev:
defx-nvim = buildVimPluginFrom2Nix {
pname = "defx.nvim";
- version = "2021-11-20";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "Shougo";
repo = "defx.nvim";
- rev = "01865ddf803b63efd03a4780a75b0a126329b1f0";
- sha256 = "09ri81nqc5ii05inz23y4xlwfmx8xx8f5d3sq9k98xjzwyc2aki4";
+ rev = "183e0d8a5f2a30edc4c46f06e1f1aae66b06e0fd";
+ sha256 = "03wh2kiilwc8iqn7nwm1hlwnp6skv7gklc6zacg3cjcv79hk4mya";
};
meta.homepage = "https://github.com/Shougo/defx.nvim/";
};
@@ -1640,12 +1640,12 @@ final: prev:
diffview-nvim = buildVimPluginFrom2Nix {
pname = "diffview.nvim";
- version = "2021-11-30";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "sindrets";
repo = "diffview.nvim";
- rev = "2c0f5af509a9e0f42430c0b561ab7e49aec84f72";
- sha256 = "16ap4kdb5gghnn6x9fiafphpr7gvkq5baiba0vzxiv8h2la0jhw1";
+ rev = "a603c236bf6212d33011f5e81c89c504b4aec929";
+ sha256 = "150g8cb5a3b6zifsym9m24gyfg9jv12nn6lbxizanmbi4aqb4gj6";
};
meta.homepage = "https://github.com/sindrets/diffview.nvim/";
};
@@ -1785,12 +1785,12 @@ final: prev:
emmet-vim = buildVimPluginFrom2Nix {
pname = "emmet-vim";
- version = "2021-09-30";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "mattn";
repo = "emmet-vim";
- rev = "1b7e460de071b7ed45cae3b5bec47310e7d12ed5";
- sha256 = "0i8r9a8phmdphlgdyybnkkg6qc1nsnblrs52zdlybh32qnkjljsg";
+ rev = "def5d57a1ae5afb1b96ebe83c4652d1c03640f4d";
+ sha256 = "1x9v455q4z71dqzalvswd0l4lsp7ic0h1sr1z6pcgwf8ik3j7f7x";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/mattn/emmet-vim/";
@@ -2015,12 +2015,12 @@ final: prev:
friendly-snippets = buildVimPluginFrom2Nix {
pname = "friendly-snippets";
- version = "2021-11-26";
+ version = "2021-12-01";
src = fetchFromGitHub {
owner = "rafamadriz";
repo = "friendly-snippets";
- rev = "0806607c4c49b6823cf4155cf0c30bc28934dea2";
- sha256 = "1wvny8ggbcfdzna24ry3p3ikql9m0wb54c589iny8lkncv272v72";
+ rev = "e3506d575e120253b4aa47ec2100786fd1e9c38d";
+ sha256 = "1bcxxp3g8vb39c1mimll6172rlfsiaah0i28bisab9jyxsgahhq3";
};
meta.homepage = "https://github.com/rafamadriz/friendly-snippets/";
};
@@ -2255,12 +2255,12 @@ final: prev:
gitsigns-nvim = buildVimPluginFrom2Nix {
pname = "gitsigns.nvim";
- version = "2021-12-01";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "lewis6991";
repo = "gitsigns.nvim";
- rev = "9678750f209671551c335c4f22658a6554c2f439";
- sha256 = "1i8xlj40a80p3s7pkxqqdxpfz0330akfqd7q2rr4gakqc927aqgy";
+ rev = "5eb87a0b05914d3763277ebe257bd5bafcdde8cd";
+ sha256 = "02cmgc3fgrwx6v6ylzqxdwgk9jsmd8j2q6fdnfbllg3zjwx3agcd";
};
meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/";
};
@@ -2435,12 +2435,12 @@ final: prev:
harpoon = buildVimPluginFrom2Nix {
pname = "harpoon";
- version = "2021-11-24";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "ThePrimeagen";
repo = "harpoon";
- rev = "0c0b37d06507ba8ee8411c675d6718182de18d5e";
- sha256 = "18nqyjg5cnsl4qc3ma5zgvyjmrk9aw6ra58gyll29b25n36d666y";
+ rev = "6948a402c2d7b1a66826d28d50ad86c0b2c8a6cf";
+ sha256 = "0bg5ax66fsrqbr4385fh1klljrmh3ycrda8fzk3lm9wggf0z93js";
};
meta.homepage = "https://github.com/ThePrimeagen/harpoon/";
};
@@ -2519,12 +2519,12 @@ final: prev:
hop-nvim = buildVimPluginFrom2Nix {
pname = "hop.nvim";
- version = "2021-11-21";
+ version = "2021-12-03";
src = fetchFromGitHub {
owner = "phaazon";
repo = "hop.nvim";
- rev = "e3c9fc3ab1e1db6bfb4f19377c53d0e457e0e2e9";
- sha256 = "1za5cpvkdxm8n7y6ac0gzm5zq8ld4q7ay48bag4vd6kwr9140nd7";
+ rev = "563ccb63195fb1274e846f6f031af7743c7214f0";
+ sha256 = "1zwjqg6zzs0y7ki63brsxf2k64xv4nld8jrixw0naajn4pip43r3";
};
meta.homepage = "https://github.com/phaazon/hop.nvim/";
};
@@ -2820,12 +2820,12 @@ final: prev:
kommentary = buildVimPluginFrom2Nix {
pname = "kommentary";
- version = "2021-10-13";
+ version = "2021-12-03";
src = fetchFromGitHub {
owner = "b3nj5m1n";
repo = "kommentary";
- rev = "8f1cd74ad28de7d7c4fda5d8e8557ff240904b42";
- sha256 = "0avd7v0nzz31nf5vj29npw5g7c2rrlirvkyd042qlh5y2vas7b2g";
+ rev = "2e1c3be90d555cd2c1f70b1c24867cee08d352f4";
+ sha256 = "1rsfc0a8pg1iipcs690hndwycllgyqrjizn3rzix2jgknzbzbbsa";
};
meta.homepage = "https://github.com/b3nj5m1n/kommentary/";
};
@@ -2856,12 +2856,12 @@ final: prev:
LanguageClient-neovim = buildVimPluginFrom2Nix {
pname = "LanguageClient-neovim";
- version = "2018-08-07";
+ version = "2020-12-10";
src = fetchFromGitHub {
owner = "autozimu";
repo = "LanguageClient-neovim";
- rev = "dd45e31449511152f2127fe862d955237caa130f";
- sha256 = "1i1c98r9fg1mzyl15b3grk6v7s7frwadh86rr1ggz7aq1gwfy7dq";
+ rev = "a42594c9c320b1283e9b9058b85a8097d8325fed";
+ sha256 = "0lj9na3g2cl0vj56jz8rhz9lm2d3xps5glk8ds491i2ixy4vdm37";
};
meta.homepage = "https://github.com/autozimu/LanguageClient-neovim/";
};
@@ -2916,24 +2916,24 @@ final: prev:
LeaderF = buildVimPluginFrom2Nix {
pname = "LeaderF";
- version = "2021-11-22";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "Yggdroot";
repo = "LeaderF";
- rev = "ac3618745d1a4184ef45213b42de372c8fbbc42d";
- sha256 = "0jzjfcswyix32fmk5mba8swrp0cv3jv1w553dkwgj0v8m1f4rk16";
+ rev = "7a7a50d443f4eba81dec0e885f2662db5f492c3b";
+ sha256 = "05abpl8yy7s4xif5260cw50hgixn0w6j0ll3sjbfx0l3qjn58y8i";
};
meta.homepage = "https://github.com/Yggdroot/LeaderF/";
};
lean-nvim = buildVimPluginFrom2Nix {
pname = "lean.nvim";
- version = "2021-12-01";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "Julian";
repo = "lean.nvim";
- rev = "0283251541b44508cf80a25be660d1a856cbe9de";
- sha256 = "16nvzgx6h11br4v5vw1sjm0lv84727xlxrfs9zc54whxhs4bscd8";
+ rev = "651125a88863853e891ebec9ef67bb7870cce773";
+ sha256 = "1bfr8s4rlgy68dvg07h5hqgvkd0zyglz23z5h0nj87limw668fsb";
};
meta.homepage = "https://github.com/Julian/lean.nvim/";
};
@@ -2976,12 +2976,12 @@ final: prev:
lexima-vim = buildVimPluginFrom2Nix {
pname = "lexima.vim";
- version = "2021-11-19";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "cohama";
repo = "lexima.vim";
- rev = "8a1a0af09e494cbb9384f38874a6d1ccb9facf69";
- sha256 = "0sgjz30limqs2hafkqjglfxg0p4mf0bfqscjhk2n1xfrlj957hbg";
+ rev = "5d84c57a143b3218d25225328ec2fb9735ac0284";
+ sha256 = "1z9zvysfb84wxrqd0ys0pf1lk3pqa0vgig6m8mrdl7d9n718d1dc";
};
meta.homepage = "https://github.com/cohama/lexima.vim/";
};
@@ -3072,12 +3072,12 @@ final: prev:
lightspeed-nvim = buildVimPluginFrom2Nix {
pname = "lightspeed.nvim";
- version = "2021-11-24";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "ggandor";
repo = "lightspeed.nvim";
- rev = "153e6cb81b1360c67ec6c6138dc8df574264da5f";
- sha256 = "078654vq673qhf7g3qhhp8m8s81msj6g5ydgph9dgxmgdb81ld64";
+ rev = "1c2cb8ddd7263147b4f8229223827d3e821e1f23";
+ sha256 = "17hmbi2nqb61skhmf66jny57c1xyanrkvbp2iih6l3jhmjfwfjmb";
};
meta.homepage = "https://github.com/ggandor/lightspeed.nvim/";
};
@@ -3108,12 +3108,12 @@ final: prev:
lir-nvim = buildVimPluginFrom2Nix {
pname = "lir.nvim";
- version = "2021-11-25";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "tamago324";
repo = "lir.nvim";
- rev = "4909d6081ff3e6177a149c2f1cfc85ce473a4b2c";
- sha256 = "1w6hpib3fdpvk3z023nrfj2scj0ivb5r89gi8c183gzc9kigy01v";
+ rev = "334ac76c6b3308176d9d90ff661ac6f90e9ee749";
+ sha256 = "07s58v1c92bib6pmpc62mszs9jz0mwlik5qmv4b9y56rw4sa94xc";
};
meta.homepage = "https://github.com/tamago324/lir.nvim/";
};
@@ -3180,24 +3180,24 @@ final: prev:
lsp_signature-nvim = buildVimPluginFrom2Nix {
pname = "lsp_signature.nvim";
- version = "2021-11-23";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "ray-x";
repo = "lsp_signature.nvim";
- rev = "c7b2b2e14b597c077804ae201f1ec9a7dac76ad0";
- sha256 = "0qasjnbgv0h80ix5zqpkdrrl6jbrbhginywrh9rcaa4z6sxg88fk";
+ rev = "a4ea841be9014b73a31376ad78d97f41432e002a";
+ sha256 = "0m5jzi5hczm1z67djk1rv408jzy48rpdf4n8p5z2flmz1xd39mzx";
};
meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/";
};
lspkind-nvim = buildVimPluginFrom2Nix {
pname = "lspkind-nvim";
- version = "2021-10-25";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "onsails";
repo = "lspkind-nvim";
- rev = "1557ce5b3b8e497c1cb1d0b9d967a873136b0c23";
- sha256 = "0qrfrwd7mz311hjmpkjfjg1d2dkar675vflizpj0p09b5dp8zkbv";
+ rev = "f3b5efa11f0665accb7bd0258260b9d08dd4956e";
+ sha256 = "0v3apm4r41id6ij7mgblik4bb1mip8qs7fcpvrc6xlhmwbj3m2x8";
};
meta.homepage = "https://github.com/onsails/lspkind-nvim/";
};
@@ -3228,36 +3228,36 @@ final: prev:
lualine-nvim = buildVimPluginFrom2Nix {
pname = "lualine.nvim";
- version = "2021-11-28";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "nvim-lualine";
repo = "lualine.nvim";
- rev = "1ae4f0aa74f0b34222c5ef3281b34602a76b2b00";
- sha256 = "0d2474dj95cdg5qk4cwygjlvzp9cn2xb6kq454bxvmmghjj72bsq";
+ rev = "d68631d2c02bd31d937349d739c625cc81dd9ac1";
+ sha256 = "0v30frbm26w45hpfc00vz1vii9bhjp0rb3cw5clbn35yfh4h2dp4";
};
meta.homepage = "https://github.com/nvim-lualine/lualine.nvim/";
};
luasnip = buildVimPluginFrom2Nix {
pname = "luasnip";
- version = "2021-11-30";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "l3mon4d3";
repo = "luasnip";
- rev = "f40a378f969de864289399334017c98875100799";
- sha256 = "002wwfyiydr9r240c1x9zxs1dgym4zkwv0zk7pm6ivc67287avp9";
+ rev = "052807223ba4d9babb412f12f08da0b34bc083cf";
+ sha256 = "0g843iclw04wpcp7kf3ms0y9zfr417rg5dxrm97lymmpibyrq3mc";
};
meta.homepage = "https://github.com/l3mon4d3/luasnip/";
};
luatab-nvim = buildVimPluginFrom2Nix {
pname = "luatab.nvim";
- version = "2021-11-08";
+ version = "2021-12-05";
src = fetchFromGitHub {
owner = "alvarosevilla95";
repo = "luatab.nvim";
- rev = "05eacdfd818741ff3f92bae6213c026a91711be4";
- sha256 = "0iy45hmn6f6dp3pym0yl091kngnrg25hrk5dlm93mj3yxbmgss4r";
+ rev = "79d53c11bd77274b49b50f1d6fdb10529d7354b7";
+ sha256 = "0cn244bh82b52pysimvqwl0spj6jadxb673jw6mnmd52nlv634f5";
};
meta.homepage = "https://github.com/alvarosevilla95/luatab.nvim/";
};
@@ -3384,12 +3384,12 @@ final: prev:
mkdx = buildVimPluginFrom2Nix {
pname = "mkdx";
- version = "2021-11-12";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "SidOfc";
repo = "mkdx";
- rev = "aeb41655826fbeb6c412b32f2cd3acd1c7e5e958";
- sha256 = "14bslsyrxc1x13mijybcinx39nmc3gp3skn05i537xzl7lq5dnlr";
+ rev = "a6fc41f7630e675ca5f0aeb829ad1b88c73a7c63";
+ sha256 = "08lls5zzlzglxx7hw19vid4kiqdsdnwahgw306vhqlhhx8wc00w3";
};
meta.homepage = "https://github.com/SidOfc/mkdx/";
};
@@ -3696,12 +3696,12 @@ final: prev:
neogit = buildVimPluginFrom2Nix {
pname = "neogit";
- version = "2021-11-24";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "TimUntersberger";
repo = "neogit";
- rev = "f5b7e32bf126cf3480d2a4fe1c0a2cd13d7f755a";
- sha256 = "1y0jsb84cgr3g52mkxvj7n8jvyi8bqrkj26mb33ipd4gf37d1ihd";
+ rev = "0ff8e0c53092a9cb3a2bf138b05f7efd1f6d2481";
+ sha256 = "08mdpgc6rmyldh9sfm4sic2shs69aln5jrgdx75amblcm0p42g1j";
};
meta.homepage = "https://github.com/TimUntersberger/neogit/";
};
@@ -3828,12 +3828,12 @@ final: prev:
neovim-ayu = buildVimPluginFrom2Nix {
pname = "neovim-ayu";
- version = "2021-11-30";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "Shatur";
repo = "neovim-ayu";
- rev = "0f203f0b7964170f0dd2610ccb2307dc03d6dffd";
- sha256 = "1qsr5i2zc7ika9v6b16771lxbyaajciabmyc0n96c4fzgc584h3a";
+ rev = "1464a9af6d35034809a26bd1e14fd5a5bb425e34";
+ sha256 = "0bj7vhzsw0zk1mbc0ylrhspz6rhidnf8ddwbnlr89szkph1s26vg";
};
meta.homepage = "https://github.com/Shatur/neovim-ayu/";
};
@@ -3912,12 +3912,12 @@ final: prev:
neuron-nvim = buildVimPluginFrom2Nix {
pname = "neuron.nvim";
- version = "2021-11-08";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "oberblastmeister";
repo = "neuron.nvim";
- rev = "a7280d4923f51c8af8cecc53aa06ed49cbbd412d";
- sha256 = "0qanc7r9z5ry3xxbvpv9xbmxnx0f8yj10fi887yhrcms7kj73al9";
+ rev = "d89a2f701eceae882dca1f9bbb754d2a89b0beda";
+ sha256 = "0xjf5wiwy57g1rpq08lw32xyk0yx27p6z1m1bycq4wnxd1faqm8s";
};
meta.homepage = "https://github.com/oberblastmeister/neuron.nvim/";
};
@@ -3948,12 +3948,12 @@ final: prev:
nightfox-nvim = buildVimPluginFrom2Nix {
pname = "nightfox.nvim";
- version = "2021-11-01";
+ version = "2021-12-03";
src = fetchFromGitHub {
owner = "EdenEast";
repo = "nightfox.nvim";
- rev = "6df32a7283f86c5ec7cf50a6996b39d3db5c1ac2";
- sha256 = "000vf833ajysbl5210a40kg9iq43mw77k7pnf4rg84pxjx49kvvd";
+ rev = "16da66f0b0303e20a8a54e2aa95820d7ed74c8ec";
+ sha256 = "0irk76ldsn1cymki52sc0s2bpip3kqs7vk2crf91pbwqiq4y570b";
};
meta.homepage = "https://github.com/EdenEast/nightfox.nvim/";
};
@@ -3984,12 +3984,12 @@ final: prev:
nnn-vim = buildVimPluginFrom2Nix {
pname = "nnn.vim";
- version = "2021-11-05";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "mcchrish";
repo = "nnn.vim";
- rev = "98b00d03ba1df60aa7f2fe8e21d40250bd67109b";
- sha256 = "0slvmz25ics4bbqfcfv23mplkkpvbwhyalh8qkl1gs0klmdp1lj1";
+ rev = "32d106a121eb4c88a8f4d0c6d779065b731c9fcb";
+ sha256 = "12n3i813019q4j1lhgkpigjbi6yjywhhdib0xhw9qsjw2s7nvpk8";
};
meta.homepage = "https://github.com/mcchrish/nnn.vim/";
};
@@ -4012,20 +4012,20 @@ final: prev:
src = fetchFromGitHub {
owner = "shaunsingh";
repo = "nord.nvim";
- rev = "d96e7e3fa955ef89788f4d6e14cdff07a162cf15";
- sha256 = "0fn3ijhyjdvy4aq12hwgg5mpmh2vfd848bycz0gpifkigmhb1dwj";
+ rev = "3df247377b292ed084c3bc0ef300db473c1c8254";
+ sha256 = "1li8h2lf7pyy51hm81pnnc9d9wa9yazrkqskd0jpz7vlxi1sd3ah";
};
meta.homepage = "https://github.com/shaunsingh/nord.nvim/";
};
NrrwRgn = buildVimPluginFrom2Nix {
pname = "NrrwRgn";
- version = "2020-05-29";
+ version = "2021-12-01";
src = fetchFromGitHub {
owner = "chrisbra";
repo = "NrrwRgn";
- rev = "82a0fc6a3415db9a891f9d9f19b512041c865109";
- sha256 = "00fd466i5860bazd4pj69k8piicgckxj68lkn2l7haawj9chslzs";
+ rev = "be7f06308bddd493d436372ee71d6b366af97fbb";
+ sha256 = "15f5alvp8lybyijpjp0h4ma7wyy5pgki4i3v88dwlkvd7gznjkqx";
};
meta.homepage = "https://github.com/chrisbra/NrrwRgn/";
};
@@ -4044,24 +4044,24 @@ final: prev:
nui-nvim = buildVimPluginFrom2Nix {
pname = "nui.nvim";
- version = "2021-11-27";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "MunifTanjim";
repo = "nui.nvim";
- rev = "a37e38b6801ccdbffb4b69507aa234b8d0509977";
- sha256 = "0v290zncw2p5ygisjy68r77kx175bbhz73bcbf0k8wg173y4hhsl";
+ rev = "5db390110bf9944b678c84cd7bcd2a28af712481";
+ sha256 = "16idbx00sw7dpwfjw7hdp9gk83phih3dd6ha46h7x79gxrynrn2f";
};
meta.homepage = "https://github.com/MunifTanjim/nui.nvim/";
};
null-ls-nvim = buildVimPluginFrom2Nix {
pname = "null-ls.nvim";
- version = "2021-11-30";
+ version = "2021-12-05";
src = fetchFromGitHub {
owner = "jose-elias-alvarez";
repo = "null-ls.nvim";
- rev = "357b9a1afedd0d708b48fc1f39fffb92a73840a3";
- sha256 = "0lfhfri2507mkp8d6klwkhkxi2mdzjywkx910pbc0lmzcvfsprna";
+ rev = "6afc24d6cc8a78bfbd9c7605364118323c1825ef";
+ sha256 = "0vq9ahvbc69mjwn5sxmasm6dxak6fw72zv5ahbvxzdp1i0mrjjqv";
};
meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/";
};
@@ -4104,36 +4104,36 @@ final: prev:
nvim-autopairs = buildVimPluginFrom2Nix {
pname = "nvim-autopairs";
- version = "2021-11-21";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "windwp";
repo = "nvim-autopairs";
- rev = "fba2503bd8cd0d8861054523aae39c4ac0680c07";
- sha256 = "19s5g4g0nvcj55if7h11g1k1gspx7lnxyd0hv7yq88xqxykls1ps";
+ rev = "18fe311bb967d16ddf2cc28e7e71f234c37d3e26";
+ sha256 = "0kykdf2yiyc50xy0wprpqr6hgm2hz91ngky0bnars4732ymgqn9y";
};
meta.homepage = "https://github.com/windwp/nvim-autopairs/";
};
nvim-base16 = buildVimPluginFrom2Nix {
pname = "nvim-base16";
- version = "2021-11-03";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "RRethy";
repo = "nvim-base16";
- rev = "e26952fbb030865c6d44e9875467177d7d0e1db7";
- sha256 = "0mxf7ikqzqx54j5dc74v6c146vmhahbcbv9apshvkb6vdm23i3wq";
+ rev = "7344e741b459c527b84df05a231b7e76d8b4fde9";
+ sha256 = "0qsywl7fg8j4w57ichhgif6vph3iq9iz9i67jzpyc2v66kph0yfb";
};
meta.homepage = "https://github.com/RRethy/nvim-base16/";
};
nvim-bqf = buildVimPluginFrom2Nix {
pname = "nvim-bqf";
- version = "2021-11-29";
+ version = "2021-12-03";
src = fetchFromGitHub {
owner = "kevinhwang91";
repo = "nvim-bqf";
- rev = "eb044199ce46ff597da6efc7d3e4d3bf7e7b17aa";
- sha256 = "14viwfxiazqc8k1zrabqhwv3yxv1ycvcwk7ql2gpnxp3fak3rp8g";
+ rev = "3c3960891db6e6ad69b5251b325a6ff87ce0c14d";
+ sha256 = "1cq68ypbpsixgprzwl6yb94zkvicabw71g5y3njnp0q7n9sg7j2c";
};
meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/";
};
@@ -4164,12 +4164,12 @@ final: prev:
nvim-cmp = buildVimPluginFrom2Nix {
pname = "nvim-cmp";
- version = "2021-12-01";
+ version = "2021-12-07";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "nvim-cmp";
- rev = "a61c36a639a1662a5d27b1a88086b9c91d7d49a8";
- sha256 = "0a8b9i7sg71hw25r3k1g7niajp3x4qivb33i14gi991p87mdnmfq";
+ rev = "af07ff9b7973e95eff9e0275e13fe0350281208b";
+ sha256 = "08rdchki0g25l6myxql5im8k15vzjmqaws0hzjp56q45vvw2drzk";
};
meta.homepage = "https://github.com/hrsh7th/nvim-cmp/";
};
@@ -4236,36 +4236,36 @@ final: prev:
nvim-dap = buildVimPluginFrom2Nix {
pname = "nvim-dap";
- version = "2021-11-20";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "mfussenegger";
repo = "nvim-dap";
- rev = "4e8bb7ca12dc8ca6f7a500cbb4ecea185665c7f1";
- sha256 = "1y5plkzyqry8ihjz3ckz5a6dcgp57fccvq34yp3xxnq6imbsf23y";
+ rev = "ce4e56f76598881d020e68037ae91310ea8b9d54";
+ sha256 = "126irwfalwgp0z1jiamqflhgwx53l8np6xamij16kc2dcj0lagcq";
};
meta.homepage = "https://github.com/mfussenegger/nvim-dap/";
};
nvim-dap-ui = buildVimPluginFrom2Nix {
pname = "nvim-dap-ui";
- version = "2021-11-30";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "rcarriga";
repo = "nvim-dap-ui";
- rev = "a5183531c2b29199a8a0ad0187697ee7c9cdcee2";
- sha256 = "0hvj2jknbr87fg14hnm28l3gpccpgkhf7czsjvi5qjqi1bi3s12j";
+ rev = "96813c9a42651b729f50f5d880a8919a155e9721";
+ sha256 = "1z53bfch6f8ld67jg2g57c29g8xhfbxlxxv1q86l62bdgy2pq15h";
};
meta.homepage = "https://github.com/rcarriga/nvim-dap-ui/";
};
nvim-dap-virtual-text = buildVimPluginFrom2Nix {
pname = "nvim-dap-virtual-text";
- version = "2021-11-27";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "theHamsta";
repo = "nvim-dap-virtual-text";
- rev = "ccfbf7bd8cb9983b1804f3ca9fab3ee5fd7462ec";
- sha256 = "0h1kmmq27jqph0ynx8pvnl4nvp3zi4md8dh8i7jcjslvwmpx2k0y";
+ rev = "fb176ca8cf666331fcfa75b7dcc238116d66f801";
+ sha256 = "1ksn4k2bhrc588wximrgc6z9pghvwmbkvls1999nvykzrkcpggmd";
};
meta.homepage = "https://github.com/theHamsta/nvim-dap-virtual-text/";
};
@@ -4284,12 +4284,12 @@ final: prev:
nvim-gdb = buildVimPluginFrom2Nix {
pname = "nvim-gdb";
- version = "2021-11-22";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "sakhnik";
repo = "nvim-gdb";
- rev = "f02059bbdb87dfbf88b284bd660ab40583fd16f9";
- sha256 = "1la3xwk3hwssi7a37mgm95nqpb3vs62jlbrl02nrm87b4vlc2bgd";
+ rev = "1c18991417400b7993da4e1310c7f7b383e3a2cd";
+ sha256 = "1mmwr7jbschss17xmip94pcs87hwj3pac1q8l3llrc5s6w25j3qh";
};
meta.homepage = "https://github.com/sakhnik/nvim-gdb/";
};
@@ -4320,12 +4320,12 @@ final: prev:
nvim-hlslens = buildVimPluginFrom2Nix {
pname = "nvim-hlslens";
- version = "2021-12-01";
+ version = "2021-12-07";
src = fetchFromGitHub {
owner = "kevinhwang91";
repo = "nvim-hlslens";
- rev = "2e2a5f041cb5a9acf3e6ae61735b32fa877ae69e";
- sha256 = "0swrx2ipcxd01df0aplm3066mvy2ad9mj07cybgz4g1qh5f7mpim";
+ rev = "2a92b44859758cfcf0585240416b7e9dc74e3e11";
+ sha256 = "0m31xwsl7cwqczyzwqfldcmk0k5jrwi4psbv8mvhbxxga6h43915";
};
meta.homepage = "https://github.com/kevinhwang91/nvim-hlslens/";
};
@@ -4344,24 +4344,24 @@ final: prev:
nvim-jdtls = buildVimPluginFrom2Nix {
pname = "nvim-jdtls";
- version = "2021-11-19";
+ version = "2021-12-01";
src = fetchFromGitHub {
owner = "mfussenegger";
repo = "nvim-jdtls";
- rev = "3fa992f33378fd811aed74c56e0affd33f42dae0";
- sha256 = "1hf21ayvq7cvlpm2gdrkd801vj09s0lv9vr5irfcdkxaxajvhqmz";
+ rev = "46809aaebf802e01f68bda0fb6ddddf58a44b0ee";
+ sha256 = "1qqak741lvw7bkdc7cspllnpd2lmjj01xga0lhkps5v8w3qcv741";
};
meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/";
};
nvim-jqx = buildVimPluginFrom2Nix {
pname = "nvim-jqx";
- version = "2021-11-25";
+ version = "2021-12-03";
src = fetchFromGitHub {
owner = "gennaro-tedesco";
repo = "nvim-jqx";
- rev = "433040c73b68796e2ebed049075b8c46d2222ac2";
- sha256 = "1dh4yb6rr593nx8kbhskpbb50l211b9z47rvhxd1n07d31bc0lmc";
+ rev = "03b678e5cb293d0e952a649fce3cdba02424bf57";
+ sha256 = "1bfw8s3z9nj1zxixrmnqgcqbgjil00y8isiq2ipw3rrcprxgkmix";
};
meta.homepage = "https://github.com/gennaro-tedesco/nvim-jqx/";
};
@@ -4380,36 +4380,36 @@ final: prev:
nvim-lint = buildVimPluginFrom2Nix {
pname = "nvim-lint";
- version = "2021-11-27";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "mfussenegger";
repo = "nvim-lint";
- rev = "9e7c11b62b2cc4528527b690b330ae85e1ff72bf";
- sha256 = "0j9d1s923i6r3h0w0dki3wgbkcz83h0rdagnl939pzv2yl70phpr";
+ rev = "fe160818db1b0a11302c8715f3a397ebfbd5e06a";
+ sha256 = "1fhnn8llbifd2fs67ggqx3ai8ks6v61j9a0xmf5v1fl1vdhvn11y";
};
meta.homepage = "https://github.com/mfussenegger/nvim-lint/";
};
nvim-lsp-ts-utils = buildVimPluginFrom2Nix {
pname = "nvim-lsp-ts-utils";
- version = "2021-11-21";
+ version = "2021-12-05";
src = fetchFromGitHub {
owner = "jose-elias-alvarez";
repo = "nvim-lsp-ts-utils";
- rev = "6814f3b7b4661213a837746bb461bad80c2fe526";
- sha256 = "0g91j0w8yh70sp025f8y8d9mnmfm2h55xa86d6xzkzmw96jq5b96";
+ rev = "e02284705399b0c8ca7d5220ad5381baa124a0ce";
+ sha256 = "15f4458x8kw7irrj5ss5m0y6zjfw24428x3cxw2nm3yk0i8r7j73";
};
meta.homepage = "https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/";
};
nvim-lspconfig = buildVimPluginFrom2Nix {
pname = "nvim-lspconfig";
- version = "2021-11-30";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "neovim";
repo = "nvim-lspconfig";
- rev = "622b155fb608d5366658de12a08b3050f5ca5772";
- sha256 = "0sadswm4bywsr4vznknqpdzq00jb5zdk1b3gv2g5m938y417pim7";
+ rev = "22b21bc000a8320675ea10f4f50f1bbd48d09ff2";
+ sha256 = "13pd0fnwzal4cznb1bpwjjm1g9kxnnh13bk31dckb9ibpgmc0apm";
};
meta.homepage = "https://github.com/neovim/nvim-lspconfig/";
};
@@ -4428,12 +4428,12 @@ final: prev:
nvim-metals = buildVimPluginFrom2Nix {
pname = "nvim-metals";
- version = "2021-11-29";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "scalameta";
repo = "nvim-metals";
- rev = "25d148b6b03c7aeea917f296a5c2a60829810eb3";
- sha256 = "1b7h5h6n1b2mpqnqpkmha689bpy6k85w40s65c2v7cbj7zn92ycw";
+ rev = "208176a3d3c8e6cec027e6e5315fbddee5d004d3";
+ sha256 = "1grl9cv36v73s8a3758psknbbr7ir80d08j8z38a1w9lk95q3kw8";
};
meta.homepage = "https://github.com/scalameta/nvim-metals/";
};
@@ -4452,24 +4452,24 @@ final: prev:
nvim-nonicons = buildVimPluginFrom2Nix {
pname = "nvim-nonicons";
- version = "2021-10-25";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "yamatsum";
repo = "nvim-nonicons";
- rev = "27465e577d7871d4029e01eb7db95ca969c2054c";
- sha256 = "1kf2093641pyxamhv0dldkm6lml1asbq3vyicgnzxbf3qks3v5xk";
+ rev = "cdb104f58c46a62ff9f484f49f8660d46db6326f";
+ sha256 = "0xqhcfp9qxnqn96ykycsyamwjjqrp7qfv7hshs9h4xa6c51yaqy4";
};
meta.homepage = "https://github.com/yamatsum/nvim-nonicons/";
};
nvim-notify = buildVimPluginFrom2Nix {
pname = "nvim-notify";
- version = "2021-11-30";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "rcarriga";
repo = "nvim-notify";
- rev = "36012703049bc7be9d4de97cb96c6d17ccf978cd";
- sha256 = "0gv3czqrcbbyvcvhz3lb0xzyc2agxf20wgc0mxwsvcn9339ymzmw";
+ rev = "ef027e34b618eac42fb0111c1db670ba01793039";
+ sha256 = "07fihx2arp0ivzkh4jqpyk0l6yr5pajnmb20a1mvbakh3j99471w";
};
meta.homepage = "https://github.com/rcarriga/nvim-notify/";
};
@@ -4488,24 +4488,24 @@ final: prev:
nvim-scrollview = buildVimPluginFrom2Nix {
pname = "nvim-scrollview";
- version = "2021-11-30";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "dstein64";
repo = "nvim-scrollview";
- rev = "b962a67f6bb5ac7c415003748f2088b522ca4390";
- sha256 = "1krj8jjd5x0f5bfzhhasxisp6kxf0jq5nilx5ik4fl6az3p5q2za";
+ rev = "e2a9472b1f91360aea76e242b149dc7dc6b21329";
+ sha256 = "0brs6fz3mr39aby35xjpk14jr6fhj18j62i602piy41blcikm8z3";
};
meta.homepage = "https://github.com/dstein64/nvim-scrollview/";
};
nvim-solarized-lua = buildVimPluginFrom2Nix {
pname = "nvim-solarized-lua";
- version = "2021-11-27";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "ishan9299";
repo = "nvim-solarized-lua";
- rev = "b8e8bd97cdf4fda3c255820b15e62bcebf69c223";
- sha256 = "00f25pnyrak0pcif4dxnlvg0my3vphs0jb5sviw6nlb8rqg06045";
+ rev = "670c7d06d658fdc10c324c5359bbec5da1bbfc47";
+ sha256 = "0lm2fvsj0cgqilz4gqlpl0kzqgaim6rscvar7b9qwx2l7zw97pxg";
};
meta.homepage = "https://github.com/ishan9299/nvim-solarized-lua/";
};
@@ -4514,12 +4514,12 @@ final: prev:
pname = "nvim-spectre";
version = "2021-11-14";
src = fetchFromGitHub {
- owner = "windwp";
+ owner = "nvim-pack";
repo = "nvim-spectre";
rev = "b630e04fa176ffb4e8c188b651561973a5ace077";
sha256 = "1x0ndsgywkjb51y3zqhaxkrv9g7qjra6is3cxgiszl18d42g7nrd";
};
- meta.homepage = "https://github.com/windwp/nvim-spectre/";
+ meta.homepage = "https://github.com/nvim-pack/nvim-spectre/";
};
nvim-terminal-lua = buildVimPluginFrom2Nix {
@@ -4536,24 +4536,24 @@ final: prev:
nvim-tree-lua = buildVimPluginFrom2Nix {
pname = "nvim-tree.lua";
- version = "2021-11-28";
+ version = "2021-12-05";
src = fetchFromGitHub {
owner = "kyazdani42";
repo = "nvim-tree.lua";
- rev = "e842f088847c98da59e14eb543bde11c45c87ef7";
- sha256 = "0n5mcyidcrn4s674c12j050yh207x8yrm4g07iz324mh4cm6mzca";
+ rev = "2e33b1654384921ec1cc9656a2018744f3f1ce81";
+ sha256 = "14bbcr49hxv4s211idiblc2ffg9a313gajsh5fr382xgvqk9jn2l";
};
meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/";
};
nvim-treesitter = buildVimPluginFrom2Nix {
pname = "nvim-treesitter";
- version = "2021-11-30";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter";
- rev = "8d1547f0bcd0831876678eeb238c3ba9a528189b";
- sha256 = "141ns7ap27v1ybly2jbpp4qi1p1m1g9cfja545iyb1x1936wzcya";
+ rev = "1d66657e6d0f1f8f79ddc48ff1dac9788694cc2d";
+ sha256 = "1xv3x2w93xiaq8pxq0nn4l3rn3lvflrn17mzb567666zl3v9d8h3";
};
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/";
};
@@ -4596,12 +4596,12 @@ final: prev:
nvim-treesitter-textobjects = buildVimPluginFrom2Nix {
pname = "nvim-treesitter-textobjects";
- version = "2021-11-27";
+ version = "2021-12-07";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter-textobjects";
- rev = "6311b7eeebad214747018a95896f53f0c2485ef0";
- sha256 = "0ndb3hmyr0vrg25178rpbwby7zzjfda5bw63ix5d9b77zk6896ab";
+ rev = "11fdf5865290d7f5bec253790a1fe235cccb9f75";
+ sha256 = "0si26vx85v76pmflxz93zj675p2ywwp38xh9h4nhkky474vgifmd";
};
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/";
};
@@ -4632,12 +4632,12 @@ final: prev:
nvim-web-devicons = buildVimPluginFrom2Nix {
pname = "nvim-web-devicons";
- version = "2021-11-21";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "kyazdani42";
repo = "nvim-web-devicons";
- rev = "8df4988ecf8599fc1f8f387bbf2eae790e4c5ffb";
- sha256 = "1b7q0s3z9lwf43dchwz49x431md8ld2af1chrc4rlss0wd3fbavb";
+ rev = "344331467509802e1af200f08ec3da278be5cbba";
+ sha256 = "13lxngcsi4crkjajgjf47nwgf7s6makqqahw1m95ygs2wqc28rkf";
};
meta.homepage = "https://github.com/kyazdani42/nvim-web-devicons/";
};
@@ -4788,12 +4788,12 @@ final: prev:
orgmode = buildVimPluginFrom2Nix {
pname = "orgmode";
- version = "2021-11-28";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "nvim-orgmode";
repo = "orgmode";
- rev = "9cf968e5d5651c33cdc9de18ca7f02dc502502e7";
- sha256 = "1smkn83gxjs72i6zd8vfhqxkaanda4nwacgm3y0129z18q78p90m";
+ rev = "2b5edda4565187d55e7058ee964af12779954dda";
+ sha256 = "1qmilnvcilnik19pg4b06vcbc7xy0d7wsk11a3ym57x1c6l481x3";
};
meta.homepage = "https://github.com/nvim-orgmode/orgmode/";
};
@@ -4812,12 +4812,12 @@ final: prev:
packer-nvim = buildVimPluginFrom2Nix {
pname = "packer.nvim";
- version = "2021-11-30";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "wbthomason";
repo = "packer.nvim";
- rev = "db3c3e3379613443d94e677a6ac3f61278e36e47";
- sha256 = "0zn6a11j2fp8lmc6kkkmi5nmz4xmrnrymdxpzrxmq8a5iw9cg2bg";
+ rev = "851c62c5ecd3b5adc91665feda8f977e104162a5";
+ sha256 = "1d5zydsxgf8jfl1jy0l1w3xyz57a0p1irmc6d4l0d3wcbr5gbw5r";
};
meta.homepage = "https://github.com/wbthomason/packer.nvim/";
};
@@ -4920,12 +4920,12 @@ final: prev:
plenary-nvim = buildVimPluginFrom2Nix {
pname = "plenary.nvim";
- version = "2021-11-14";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "nvim-lua";
repo = "plenary.nvim";
- rev = "1c31adb35fcebe921f65e5c6ff6d5481fa5fa5ac";
- sha256 = "075b6ak0hl3wqhsy1qmi91s30lh6p6vpbvqllzvyhlz3pxabh314";
+ rev = "c2bb2d8fd5b44bfc6aad3a5463c84576a98dd4a9";
+ sha256 = "12csjz882yv9wwhzx964fq210655m8820491xjsrjlwccfc09i35";
};
meta.homepage = "https://github.com/nvim-lua/plenary.nvim/";
};
@@ -5029,24 +5029,25 @@ final: prev:
purescript-vim = buildVimPluginFrom2Nix {
pname = "purescript-vim";
- version = "2020-10-08";
+ version = "2021-04-21";
src = fetchFromGitHub {
owner = "purescript-contrib";
repo = "purescript-vim";
- rev = "5b4fa3e2970be1353f7d77735c0c9b42dc9885f3";
- sha256 = "11d2jfzimdi6idvs61gjhy7d1g8yk90dfvvw5m8rn9620xrypbgn";
+ rev = "d493b57406d2742f6f6c6545de5a3492f2e5b888";
+ sha256 = "1qnf8lg4a6xxn335z57nqb4yp7ij62yr408nbc8m6xwnznck3wa7";
};
meta.homepage = "https://github.com/purescript-contrib/purescript-vim/";
};
python-mode = buildVimPluginFrom2Nix {
pname = "python-mode";
- version = "2018-04-29";
+ version = "2021-11-14";
src = fetchFromGitHub {
owner = "python-mode";
repo = "python-mode";
- rev = "f94b0d7b21714f950f5878b430fbfde21c3b7ad9";
- sha256 = "0zxsa1agigzb9adrwq54pdyl984drdqzz3kkixaijkq77kkdvj0n";
+ rev = "50ced6be5ceab94a11615b5abb89ff28b0e73a9e";
+ sha256 = "023mrdc5ih1q3dz6qm1f8a97kgwbnvfjbh7z3k1r4s9c5wvg9hyz";
+ fetchSubmodules = true;
};
meta.homepage = "https://github.com/python-mode/python-mode/";
};
@@ -5185,24 +5186,24 @@ final: prev:
Recover-vim = buildVimPluginFrom2Nix {
pname = "Recover.vim";
- version = "2021-09-29";
+ version = "2015-08-14";
src = fetchFromGitHub {
owner = "chrisbra";
repo = "Recover.vim";
- rev = "5b496fbf6d2b989d93f1748340d1a43c6d80766f";
- sha256 = "0k3xjnv57gsckias6l0lig87vdxlwdlvvly698b882kpgw2igih6";
+ rev = "efa491f6121f65e025f42d79a93081abb8db69d4";
+ sha256 = "17szim82bwnhf9q4n0n4jfmqkmhq6p0lh0j4y77a2x6lkn0pns5s";
};
meta.homepage = "https://github.com/chrisbra/Recover.vim/";
};
refactoring-nvim = buildVimPluginFrom2Nix {
pname = "refactoring.nvim";
- version = "2021-11-27";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "theprimeagen";
repo = "refactoring.nvim";
- rev = "fd1b6fe63e09b1915c22eb7047b3c3f6a492b31d";
- sha256 = "0drfp56pni183xwx9b6s68qfvafgqf92wlsnjqxnv1kpzbg3ygk7";
+ rev = "9dfdb14d5a9c3057f19aaea00cebe84c8f87d165";
+ sha256 = "0np1agv7zclz88rq60dbp28365v2jsvadnwzszrzwn8szy2xhhnd";
};
meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/";
};
@@ -5257,12 +5258,12 @@ final: prev:
rnvimr = buildVimPluginFrom2Nix {
pname = "rnvimr";
- version = "2021-11-04";
+ version = "2021-12-03";
src = fetchFromGitHub {
owner = "kevinhwang91";
repo = "rnvimr";
- rev = "ded689fbf40d8ab939d2596427cdb623fbc0e88d";
- sha256 = "0jd3ffkgmcl2brdgz68zdwaifgfvvph3j58xmm4yq8dpl1h7k4xr";
+ rev = "3d02dc4a4b78a771a944e62af70f9931e9412763";
+ sha256 = "0650sx14mp05lcxh5saa906nf81xl2ch5ihl8sscy8niadykj47b";
};
meta.homepage = "https://github.com/kevinhwang91/rnvimr/";
};
@@ -5317,12 +5318,12 @@ final: prev:
rust-tools-nvim = buildVimPluginFrom2Nix {
pname = "rust-tools.nvim";
- version = "2021-11-16";
+ version = "2021-12-05";
src = fetchFromGitHub {
owner = "simrat39";
repo = "rust-tools.nvim";
- rev = "9f98538d36b5f2e3ac1a11a524b52d11bafdff74";
- sha256 = "0dfian3xi8cn4r537c8jp5qlnhgvppifgr9crrylvgj28y7vj9mw";
+ rev = "7cb8baf3891b567f6eac5bbad93aac2a1dc45b6e";
+ sha256 = "0gnpafnnhhi8z8al7s7igf7f72mqbm41689b2sqpl59q9csnvxmr";
};
meta.homepage = "https://github.com/simrat39/rust-tools.nvim/";
};
@@ -5365,12 +5366,12 @@ final: prev:
SchemaStore-nvim = buildVimPluginFrom2Nix {
pname = "SchemaStore.nvim";
- version = "2021-11-30";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "b0o";
repo = "SchemaStore.nvim";
- rev = "cdf9fd7a8cb41ad89e8f7dcccdd4a79d186f1f54";
- sha256 = "18irbz0lcg6a8iv7qpyzjssk7j7fvw57jwn9c4w59k5h53yhz0kq";
+ rev = "90d092c80eec80e95feda75ed8527f0931512cea";
+ sha256 = "1x36crzgr3qgl0nq6fgf71lyyd5s67l37cbrva34g1kn10dpcbn4";
};
meta.homepage = "https://github.com/b0o/SchemaStore.nvim/";
};
@@ -5739,12 +5740,12 @@ final: prev:
stabilize-nvim = buildVimPluginFrom2Nix {
pname = "stabilize.nvim";
- version = "2021-11-25";
+ version = "2021-12-03";
src = fetchFromGitHub {
owner = "luukvbaal";
repo = "stabilize.nvim";
- rev = "9f4d09bde013ab062c4a4a6e32506c15936ae221";
- sha256 = "0rscybfd4scslrzbaf4zqdxhb8dwk6xrpyiq8vqzzg83w749wvvf";
+ rev = "191d102fd48d9067c5be267b72da4ac28051dc12";
+ sha256 = "11vz8dwpr32yd3bmkqdhlxk4dy6k5vci7phmfh57ag8vh902fpza";
};
meta.homepage = "https://github.com/luukvbaal/stabilize.nvim/";
};
@@ -6004,12 +6005,12 @@ final: prev:
telescope-cheat-nvim = buildVimPluginFrom2Nix {
pname = "telescope-cheat.nvim";
- version = "2021-09-24";
+ version = "2021-12-05";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope-cheat.nvim";
- rev = "4a58b92fc70af622ddc115f843b0e552ca5bd6ea";
- sha256 = "132drgpak97sbwjma6h7zwflg386xhqmdb3rqvzgxav36p9f0xsw";
+ rev = "8a169767c19db2f2ef2fb3fffe6adbac5a630282";
+ sha256 = "0x68zb1x1v7dkrbgz88wh9ffij0ngjr23k5axxhhi07ppynmhvag";
};
meta.homepage = "https://github.com/nvim-telescope/telescope-cheat.nvim/";
};
@@ -6040,12 +6041,12 @@ final: prev:
telescope-frecency-nvim = buildVimPluginFrom2Nix {
pname = "telescope-frecency.nvim";
- version = "2021-11-23";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope-frecency.nvim";
- rev = "ea44b316f4232e1e3bcff62d329b4b9c0e52be7c";
- sha256 = "1g9242z83yfc80prdlqx1s03hxpdcajgap5i372qigngha3bgwsq";
+ rev = "979a6f3d882b7b5352cc6a751faa9c9427d40e74";
+ sha256 = "0fy357m0pb1r3ficlkf89hcl4p8pxqr5il83zv5kzdai4zdnqwa8";
};
meta.homepage = "https://github.com/nvim-telescope/telescope-frecency.nvim/";
};
@@ -6137,24 +6138,24 @@ final: prev:
telescope-z-nvim = buildVimPluginFrom2Nix {
pname = "telescope-z.nvim";
- version = "2021-10-10";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope-z.nvim";
- rev = "11cb74a421156a39c41e480d5dba3fbcaf35f84f";
- sha256 = "06gznf97xl08czifv6lcb1nd00lmqb85phdxh5p7r38hjr4lfvah";
+ rev = "6b67c31f007720ffc53360cb91bf0aa0a41408f3";
+ sha256 = "11zsvwrkakrxagkwvapv5d53fn91yl7m0kb6c0ij68qpjbhc8ljv";
};
meta.homepage = "https://github.com/nvim-telescope/telescope-z.nvim/";
};
telescope-nvim = buildVimPluginFrom2Nix {
pname = "telescope.nvim";
- version = "2021-11-30";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope.nvim";
- rev = "ef245548a858690fa8f2db1f1a0eaf41b93a6ef6";
- sha256 = "1fsbd4cjc13f1mylpg7i4rdsqj2y4ib2kzph91xnnjf6zsi6bmp0";
+ rev = "6b1579741a0e8f1e0e63d0c6c364b968c157338e";
+ sha256 = "1s68cjc2fdkbp91rmk2hqh4glav1ymq5nqbk53zig4jn0zqpygxc";
};
meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/";
};
@@ -6269,12 +6270,12 @@ final: prev:
todo-comments-nvim = buildVimPluginFrom2Nix {
pname = "todo-comments.nvim";
- version = "2021-10-22";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "folke";
repo = "todo-comments.nvim";
- rev = "9983edc5ef38c7a035c17c85f60ee13dbd75dcc8";
- sha256 = "177syll14r0s7hbdv34rnjwc1r8gg7avcz6g9g08j1qzbb3sijh3";
+ rev = "6570fd271d17fec1966522f3a19cc6f4c88824c4";
+ sha256 = "0bn5fkj0m0nxypkn4yyz828x9p926n24r2pw6yffafiwsh66pi6n";
};
meta.homepage = "https://github.com/folke/todo-comments.nvim/";
};
@@ -6306,12 +6307,12 @@ final: prev:
tokyonight-nvim = buildVimPluginFrom2Nix {
pname = "tokyonight.nvim";
- version = "2021-11-30";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "folke";
repo = "tokyonight.nvim";
- rev = "3cbf86cf045ea19253f9c8614863e22beb531868";
- sha256 = "0b5r1nsb9gllg75gqr27jj8ksmd42lzfv6alk60fqw6l98avvzr3";
+ rev = "b3a829d2ba6344b5364fda71b5b7501f707d1bdf";
+ sha256 = "0n8ix7sh092fw0fw49sfli91ma51acxp4kk908bxyv2kbc82ckcz";
};
meta.homepage = "https://github.com/folke/tokyonight.nvim/";
};
@@ -6354,12 +6355,12 @@ final: prev:
trouble-nvim = buildVimPluginFrom2Nix {
pname = "trouble.nvim";
- version = "2021-11-24";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "folke";
repo = "trouble.nvim";
- rev = "ce335ab551f2c3d26bbdbae36fdae916a451d832";
- sha256 = "19lva058znlnmj4nbcg9vr3qq05gy50x6vdvq37023n54m21gv78";
+ rev = "4a45782db943f95500b61ffce187bf4cada954ae";
+ sha256 = "164m9rwcs2qf91lkyi86jwqqywsv067mq83cranmqlb6zhq68hma";
};
meta.homepage = "https://github.com/folke/trouble.nvim/";
};
@@ -6798,12 +6799,12 @@ final: prev:
vim-airline = buildVimPluginFrom2Nix {
pname = "vim-airline";
- version = "2021-11-26";
+ version = "2021-12-05";
src = fetchFromGitHub {
owner = "vim-airline";
repo = "vim-airline";
- rev = "841a3551965e729e9f1ccd1aca758bdc84af2abf";
- sha256 = "0ivbd25j80af1nrjw34p3qjdq5mnli1nsnv62a98js8k9mqlvy79";
+ rev = "8e36c0a8ed0c8243c253f8b7ce068f4e012004fc";
+ sha256 = "0fm07lhykjpk22nmdyaxxqim2wp4d3f2ihpv772f8wdld9zy341f";
};
meta.homepage = "https://github.com/vim-airline/vim-airline/";
};
@@ -7122,24 +7123,24 @@ final: prev:
vim-clang-format = buildVimPluginFrom2Nix {
pname = "vim-clang-format";
- version = "2021-11-27";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "rhysd";
repo = "vim-clang-format";
- rev = "b8ca314c9d60add2b6d68fc857c6a528cc47a029";
- sha256 = "1c063230h2qksm3g1mz34w2vrj6i77p5yvagfb57barchcr731jl";
+ rev = "6b791825ff478061ad1c57b21bb1ed5a5fd0eb29";
+ sha256 = "00l0flcgbl7dipzq6yxqwlqfi43jrdgbs4bi14lw2wzki5wy3wmr";
};
meta.homepage = "https://github.com/rhysd/vim-clang-format/";
};
vim-clap = buildVimPluginFrom2Nix {
pname = "vim-clap";
- version = "2021-11-21";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "liuchengxu";
repo = "vim-clap";
- rev = "3a4cbf34b66581907d51e3682099428ab42f6f4d";
- sha256 = "1qizh5h6kgrlkszpxg0q6xnfl8a3ac8770pznnb8698145lhb8rh";
+ rev = "39006bd54273f55dc120a95b6c2299d5acb20652";
+ sha256 = "17arly3kpy78vsnjlanx4c6jnwkgkg3wix35ngw981bv06lcdyvx";
};
meta.homepage = "https://github.com/liuchengxu/vim-clap/";
};
@@ -7530,12 +7531,12 @@ final: prev:
vim-dispatch = buildVimPluginFrom2Nix {
pname = "vim-dispatch";
- version = "2021-11-27";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-dispatch";
- rev = "f2ae53daaab394dfe3ffe5a0d8a80420f46d81c7";
- sha256 = "1yrmxpy9dfzgrjqfzzprz2layrcz45a2hf9yzxd3q76gr5qmf1kx";
+ rev = "3505862b3898be5db3c78ba1b92c703349478d68";
+ sha256 = "0y9fbjrrghzlwxlgkz7zn13bd9p3p2nix5b7fflhkmg1iwb7amfv";
};
meta.homepage = "https://github.com/tpope/vim-dispatch/";
};
@@ -7938,12 +7939,12 @@ final: prev:
vim-fugitive = buildVimPluginFrom2Nix {
pname = "vim-fugitive";
- version = "2021-11-25";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-fugitive";
- rev = "5a24c2527584e4e61a706ad7ecb3514ac7031307";
- sha256 = "14lz15cmf5qg3xv1bp6r7zg7aalnkzzcb7z4hihg1k3sbp6m7a9a";
+ rev = "2064312ad7bb80050baf9acbdfb7641162919e53";
+ sha256 = "1mjhvbr1ngh85ab306kjl44bd6caq04vp0bbwgkmvpc6c3r1b2d3";
};
meta.homepage = "https://github.com/tpope/vim-fugitive/";
};
@@ -9141,12 +9142,12 @@ final: prev:
vim-numbertoggle = buildVimPluginFrom2Nix {
pname = "vim-numbertoggle";
- version = "2021-01-12";
+ version = "2021-07-14";
src = fetchFromGitHub {
owner = "jeffkreeftmeijer";
repo = "vim-numbertoggle";
- rev = "df9b1fe616507340718716204ba7f434125bdf7a";
- sha256 = "02zgzkwv2fk4zyg6agvski054nwkrm1m9dw0jpva57ksbf8rvqrg";
+ rev = "075b7478777e694fbac330ee34a74590dad0fee1";
+ sha256 = "1d6wjl20f80kqqb2k13gq7d0vr7kk2mgjpnqf37dzhv1w1g74l2c";
};
meta.homepage = "https://github.com/jeffkreeftmeijer/vim-numbertoggle/";
};
@@ -9441,12 +9442,12 @@ final: prev:
vim-plug = buildVimPluginFrom2Nix {
pname = "vim-plug";
- version = "2021-08-31";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "junegunn";
repo = "vim-plug";
- rev = "c9971346bb486ccff354aaee8606cc0d2d5a0c97";
- sha256 = "0w2sk2fvjw3g8bjnrp0lkalbrawl2nn2akr92rji3ycggsnxb6ai";
+ rev = "68488fd7a388d31704643a3257eb97920bcdd54a";
+ sha256 = "025xwbzip1p7m8jhv0qh5m6bcf6yw6rr3zm22sknhzzls3byphmm";
};
meta.homepage = "https://github.com/junegunn/vim-plug/";
};
@@ -9537,24 +9538,24 @@ final: prev:
vim-projectionist = buildVimPluginFrom2Nix {
pname = "vim-projectionist";
- version = "2021-10-19";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-projectionist";
- rev = "438b58aab54624e554d71063a69ba3d1e1bfbc2f";
- sha256 = "1x9x7nb1r4x1lyj16l337dflccx7mbkqrhk7pz02zqnb7qip032f";
+ rev = "ddfa49f9ece73aca44d2b45d693e7b58adbf8f8c";
+ sha256 = "0kr79qila32j24mlcq044g07wwvaii5mqra6bjmpnxdlr535s08m";
};
meta.homepage = "https://github.com/tpope/vim-projectionist/";
};
vim-prosession = buildVimPluginFrom2Nix {
pname = "vim-prosession";
- version = "2021-03-21";
+ version = "2021-12-01";
src = fetchFromGitHub {
owner = "dhruvasagar";
repo = "vim-prosession";
- rev = "976f3e61c2dd4ab709ea5eccbbab9e42d35d7e8c";
- sha256 = "01dbiwj1x8rd5yy19cphxysga3fi5l3il2ph8hr1v4adzvw8269z";
+ rev = "13ee508149743d8c2ac1372a575f94279eb1752a";
+ sha256 = "1w1g47xh7jk6xk44ldy7ig38b7cwbwvh6h4ya6x0gxq938g3fa9l";
};
meta.homepage = "https://github.com/dhruvasagar/vim-prosession/";
};
@@ -9981,12 +9982,12 @@ final: prev:
vim-sleuth = buildVimPluginFrom2Nix {
pname = "vim-sleuth";
- version = "2021-04-01";
+ version = "2021-12-07";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-sleuth";
- rev = "38bd4010110614822cde523ebc5724963312ab63";
- sha256 = "1qng5ndxsmkjgrdhlbdysr97b6pyz6faiqaayjkwpc69hnv2y79v";
+ rev = "5bf4c73d08b29194fbae5559bb6b32dfd1626bee";
+ sha256 = "0rjrhgh7200ba0xfg2mjs4mlr91qldfhhj5104nmwgfvs44l3frs";
};
meta.homepage = "https://github.com/tpope/vim-sleuth/";
};
@@ -10161,12 +10162,12 @@ final: prev:
vim-startuptime = buildVimPluginFrom2Nix {
pname = "vim-startuptime";
- version = "2021-08-06";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "dstein64";
repo = "vim-startuptime";
- rev = "5e4c41a744523a7e300d3e1613cf3201709b0b03";
- sha256 = "036dyas04hrhhv1s747g4pv2qhi4pfyyxjifidrg5s1dx68zd6p2";
+ rev = "89c81d1d3bc3ef14e09575a3967b66e0a3e4c458";
+ sha256 = "0w3yijmb66ni2kf49g88jw1m70m14d063bs4qkaxhn8xl2wn06n5";
};
meta.homepage = "https://github.com/dstein64/vim-startuptime/";
};
@@ -10257,12 +10258,12 @@ final: prev:
vim-table-mode = buildVimPluginFrom2Nix {
pname = "vim-table-mode";
- version = "2021-10-26";
+ version = "2021-12-01";
src = fetchFromGitHub {
owner = "dhruvasagar";
repo = "vim-table-mode";
- rev = "01a395df00adbb57813e852f2e83ffb12375f1b6";
- sha256 = "1lrlwlrrvgbjlgdz1ywsz4ayhrrf905idkh6lh29j91m2118gvfj";
+ rev = "c547471c0ed32b8511f62752974cde5277e13df4";
+ sha256 = "1qdrd87b91013z1br67j1j45s4iva7ah1r52zkkr0sj0pbiiqh7r";
};
meta.homepage = "https://github.com/dhruvasagar/vim-table-mode/";
};
@@ -10414,12 +10415,12 @@ final: prev:
vim-themis = buildVimPluginFrom2Nix {
pname = "vim-themis";
- version = "2021-09-29";
+ version = "2021-12-03";
src = fetchFromGitHub {
owner = "thinca";
repo = "vim-themis";
- rev = "3a01ba98782aa13e125b02748cb65718b5c1510b";
- sha256 = "1bzfb3imj512p3jbf4z90bmcy8x3k6x0kqf309j6rqwr9y8f0sw9";
+ rev = "737e5444713ba53a9dcfbe3b962239bd0bd9162e";
+ sha256 = "0wj3v45p7pxm7f4pdzdbvy78vhq57jki0ldgfb3229hb101k1sgh";
};
meta.homepage = "https://github.com/thinca/vim-themis/";
};
@@ -10486,24 +10487,24 @@ final: prev:
vim-toml = buildVimPluginFrom2Nix {
pname = "vim-toml";
- version = "2021-10-09";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "cespare";
repo = "vim-toml";
- rev = "717bd87ef928293e0cc6cfc12ebf2e007cb25311";
- sha256 = "1pbpj0wlh65hf474lrylwcsqfpv5wy4m7mhbkplgch7v8iabshqv";
+ rev = "2c8983cc391287e5e26e015c3ab9c38de9f9b759";
+ sha256 = "1mxn2z3p3lnk3ibwxhqb3dih25qalpqfwy0rx7i393vpjbkn79py";
};
meta.homepage = "https://github.com/cespare/vim-toml/";
};
vim-tpipeline = buildVimPluginFrom2Nix {
pname = "vim-tpipeline";
- version = "2021-12-01";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "vimpostor";
repo = "vim-tpipeline";
- rev = "109fd94dcb15a37a21735ac458071ab2dfacd4f3";
- sha256 = "1s1xk9wvcznj2sffdfkwr599jypyrsjmqs93lgxiq224sj2161j9";
+ rev = "7e4e7dd133f4be0cf19ad3ce0b83d95da04b2690";
+ sha256 = "12hsi5iyykhz77fs4hcd8f5vh5zcfhh5rav3ajm3avm9pjd9515q";
};
meta.homepage = "https://github.com/vimpostor/vim-tpipeline/";
};
@@ -10558,12 +10559,12 @@ final: prev:
vim-ultest = buildVimPluginFrom2Nix {
pname = "vim-ultest";
- version = "2021-11-30";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "rcarriga";
repo = "vim-ultest";
- rev = "f925585c8cd6d062b62ba94cd0a4d9bc1d61844c";
- sha256 = "0mz721biz6yqipy5c3ab1aqmacs1kn5glv10jlj0sdmzwjziqrgi";
+ rev = "1b010c6214c51d37bd37ebd8ecd6602e3c4954f5";
+ sha256 = "0vyiz94jkvn5krcqp8c7yzqc5m0ygcj8rmymjbbi3q8cxnx1ls4d";
};
meta.homepage = "https://github.com/rcarriga/vim-ultest/";
};
@@ -10690,12 +10691,12 @@ final: prev:
vim-wakatime = buildVimPluginFrom2Nix {
pname = "vim-wakatime";
- version = "2021-11-17";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "wakatime";
repo = "vim-wakatime";
- rev = "0d66dd3596e414368e2b2b77e694e431a4b0bca3";
- sha256 = "157shaarg4xdnfzp47v5nv34py0wii6s7fdgzagh4h1b5czgszyv";
+ rev = "02405f1b4077a0bcc99b8111de967582f45ec776";
+ sha256 = "1m1n986gdxb2xnrgsgnkay16ck27j0cwbpp3z49agb4pkmgbw1l5";
};
meta.homepage = "https://github.com/wakatime/vim-wakatime/";
};
@@ -10858,12 +10859,12 @@ final: prev:
vimade = buildVimPluginFrom2Nix {
pname = "vimade";
- version = "2021-11-09";
+ version = "2021-12-02";
src = fetchFromGitHub {
owner = "TaDaa";
repo = "vimade";
- rev = "25ac9e6e3b8f127ab81dc996c69bb7a2c8f26329";
- sha256 = "1nkqmxvamziyavpfqlpn24wqzmrjwzb0s53avkw06h437mpzxzgy";
+ rev = "4f7f2ae1821dabffce52a566e7bc653012cb4940";
+ sha256 = "088yi1bb7dn2jsa4i42pi7viils3xcqln6cn84571ri5p1fs59vi";
};
meta.homepage = "https://github.com/TaDaa/vimade/";
};
@@ -10978,12 +10979,12 @@ final: prev:
vimspector = buildVimPluginFrom2Nix {
pname = "vimspector";
- version = "2021-11-29";
+ version = "2021-12-01";
src = fetchFromGitHub {
owner = "puremourning";
repo = "vimspector";
- rev = "49ad167416e58bdfadc181e3cc225683c8a82851";
- sha256 = "0hqc0jpgm1z9qm25fzk5ygjr6467jw9bf9iigv78g505qp4g3l8z";
+ rev = "a371a162c3378bc50b74a4e5536228c2cc2c9c35";
+ sha256 = "1wyivi8j6p2899qd936mh8k2zll4xv0pixwd2mjs271i7fqbsmc1";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/puremourning/vimspector/";
@@ -10991,12 +10992,12 @@ final: prev:
vimtex = buildVimPluginFrom2Nix {
pname = "vimtex";
- version = "2021-11-30";
+ version = "2021-12-06";
src = fetchFromGitHub {
owner = "lervag";
repo = "vimtex";
- rev = "3e079a1a35235847c6d767df5709fc246a2f05f8";
- sha256 = "04zrll1lk93yxcalygdp1iry85jp5jrsplkh40d50kgz4mkl5nf2";
+ rev = "cfffd051e1521e0c842483db3552fbfd2c6d4718";
+ sha256 = "0dc740j5c40sls0lmd0pgdn3pi236s6n9lxjn57wg9jhdadhnfz6";
};
meta.homepage = "https://github.com/lervag/vimtex/";
};
@@ -11232,12 +11233,12 @@ final: prev:
YouCompleteMe = buildVimPluginFrom2Nix {
pname = "YouCompleteMe";
- version = "2021-11-25";
+ version = "2021-12-04";
src = fetchFromGitHub {
owner = "ycm-core";
repo = "YouCompleteMe";
- rev = "9ee19df6bdfbda8e0e5771e117537963a8471cb5";
- sha256 = "0lmxv6gvscpck6qsy773xq09qiq1yb72zk0slq9bi7jifj08xn16";
+ rev = "ab28bd7ac96eb0e16aca0e55208b096f2c06360d";
+ sha256 = "0nlmw67fl1gch7d5kh0zrbrhr9894pd0b1vi5v7grvbzhv6k0wwj";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/ycm-core/YouCompleteMe/";
diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix
index a5ce61897f89..88c89f0e96cd 100644
--- a/pkgs/misc/vim-plugins/overrides.nix
+++ b/pkgs/misc/vim-plugins/overrides.nix
@@ -748,7 +748,7 @@ self: super: {
libiconv
];
- cargoSha256 = "sha256-XFo3FLaeLnXVQAEZol9PipqYYZ9C1z23S/qijxf0uIE=";
+ cargoSha256 = "sha256-zYm+7qAvhVGa/afddHhI2aQxmiLOkus5PHZBDP9S/Qg=";
};
in
''
diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names
index b2a4aed1fcca..0269c7302d26 100644
--- a/pkgs/misc/vim-plugins/vim-plugin-names
+++ b/pkgs/misc/vim-plugins/vim-plugin-names
@@ -1,16 +1,16 @@
907th/vim-auto-save
aca/completion-tabnine
-AckslD/nvim-neoclip.lua@main
-AckslD/nvim-whichkey-setup.lua@main
-ackyshake/Spacegray.vim@main
-ahmedkhalf/lsp-rooter.nvim@main
+AckslD/nvim-neoclip.lua
+AckslD/nvim-whichkey-setup.lua
+ackyshake/Spacegray.vim
+ahmedkhalf/lsp-rooter.nvim
airblade/vim-gitgutter
airblade/vim-rooter
ajmwagar/vim-deus
akinsho/bufferline.nvim
akinsho/toggleterm.nvim
aklt/plantuml-syntax
-allendang/nvim-expand-expr@main
+allendang/nvim-expand-expr
altercation/vim-colors-solarized
alvan/vim-closetag
alvarosevilla95/luatab.nvim
@@ -20,26 +20,26 @@ amiorin/ctrlp-z
andersevenrud/compe-tmux@cmp
andrep/vimacs
andreshazard/vim-logreview
-AndrewRadev/sideways.vim@main
-AndrewRadev/splitjoin.vim@main
+AndrewRadev/sideways.vim
+AndrewRadev/splitjoin.vim
AndrewRadev/tagalong.vim
andsild/peskcolor.vim
andviro/flake8-vim
-andweeb/presence.nvim@main
+andweeb/presence.nvim
andymass/vim-matchup
andys8/vim-elm-syntax
antoinemadec/coc-fzf
antoinemadec/FixCursorHold.nvim
ap/vim-css-color
-arcticicestudio/nord-vim
+arcticicestudio/nord-vim@master
arkav/lualine-lsp-progress
arthurxavierx/vim-unicoder
artur-shaik/vim-javacomplete2
autozimu/LanguageClient-neovim
axelf4/vim-strip-trailing-whitespace
ayu-theme/ayu-vim
-b0o/SchemaStore.nvim@main
-b3nj5m1n/kommentary@main
+b0o/SchemaStore.nvim
+b3nj5m1n/kommentary
bakpakin/fennel.vim
bazelbuild/vim-bazel
bbchung/clighter8
@@ -53,15 +53,15 @@ blueballs-theme/blueballs-neovim
blueyed/vim-diminactive
bogado/file-line
bohlender/vim-smt2
-brennanfee/vim-gui-position@main
+brennanfee/vim-gui-position
bronson/vim-trailing-whitespace
brooth/far.vim
buoto/gotests-vim
camspiers/lens.vim
-camspiers/snap@main
+camspiers/snap
carlitux/deoplete-ternjs
ccarpita/rtorrent-syntax-file
-cespare/vim-toml@main
+cespare/vim-toml
chaoren/vim-wordmotion
chentau/marks.nvim
chikatoike/concealedyank.vim
@@ -121,7 +121,7 @@ dpelle/vim-LanguageTool
dracula/vim as dracula-vim
drewtempelmeyer/palenight.vim
drmingdrmer/xptemplate
-dstein64/nvim-scrollview@main
+dstein64/nvim-scrollview
dstein64/vim-startuptime
dylanaraps/wal.vim
eagletmt/ghcmod-vim
@@ -129,21 +129,21 @@ eagletmt/neco-ghc
easymotion/vim-easymotion
eddiebergman/nvim-treesitter-pyfold
eddyekofo94/gruvbox-flat.nvim
-EdenEast/nightfox.nvim@main
+EdenEast/nightfox.nvim
editorconfig/editorconfig-vim
edkolev/tmuxline.vim
-edluffy/hologram.nvim@main
-edluffy/specs.nvim@main
+edluffy/hologram.nvim
+edluffy/specs.nvim
edwinb/idris2-vim
ehamberg/vim-cute-python
eigenfoo/stan-vim
eikenb/acp
elixir-editors/vim-elixir
-ellisonleao/glow.nvim@main
-ellisonleao/gruvbox.nvim@main
+ellisonleao/glow.nvim
+ellisonleao/gruvbox.nvim
elmcast/elm-vim
elzr/vim-json
-embark-theme/vim@main as embark-vim
+embark-theme/vim as embark-vim
embear/vim-localvimrc
enomsg/vim-haskellConcealPlus
enricobacis/vim-airline-clock
@@ -167,12 +167,12 @@ fiatjaf/neuron.vim
fisadev/vim-isort
flazz/vim-colorschemes
floobits/floobits-neovim
-folke/lsp-colors.nvim@main
-folke/todo-comments.nvim@main
-folke/tokyonight.nvim@main
-folke/trouble.nvim@main
-folke/twilight.nvim@main
-folke/which-key.nvim@main
+folke/lsp-colors.nvim
+folke/todo-comments.nvim
+folke/tokyonight.nvim
+folke/trouble.nvim
+folke/twilight.nvim
+folke/which-key.nvim
FooSoft/vim-argwrap
freitass/todo.txt-vim
frigoeu/psc-ide-vim
@@ -180,7 +180,7 @@ fruit-in/brainfuck-vim
fruit-in/vim-nong-theme
fsharp/vim-fsharp
garbas/vim-snipmate
-gbrlsnchs/telescope-lsp-handlers.nvim@trunk
+gbrlsnchs/telescope-lsp-handlers.nvim
gcmt/taboo.vim
gcmt/wildfire.vim
gelguy/wilder.nvim
@@ -188,16 +188,16 @@ gennaro-tedesco/nvim-jqx
gennaro-tedesco/nvim-peekup
gentoo/gentoo-syntax
GEverding/vim-hocon
-gfanto/fzf-lsp.nvim@main
-ggandor/lightspeed.nvim@main
+gfanto/fzf-lsp.nvim
+ggandor/lightspeed.nvim
gibiansky/vim-textobj-haskell
gioele/vim-autoswap
gleam-lang/gleam.vim
glepnir/dashboard-nvim
-glepnir/galaxyline.nvim@main
-glepnir/lspsaga.nvim@main
+glepnir/galaxyline.nvim
+glepnir/lspsaga.nvim
glepnir/oceanic-material
-glepnir/zephyr-nvim@main
+glepnir/zephyr-nvim
glts/vim-textobj-comment
godlygeek/csapprox
godlygeek/tabular
@@ -231,17 +231,17 @@ henrik/vim-indexed-search
HerringtonDarkholme/yats.vim
honza/vim-snippets
hotwatermorning/auto-git-diff
-hrsh7th/cmp-buffer@main
-hrsh7th/cmp-calc@main
-hrsh7th/cmp-cmdline@main
-hrsh7th/cmp-emoji@main
-hrsh7th/cmp-nvim-lsp-document-symbol@main
-hrsh7th/cmp-nvim-lsp@main
-hrsh7th/cmp-nvim-lua@main
-hrsh7th/cmp-omni@main
-hrsh7th/cmp-path@main
-hrsh7th/cmp-vsnip@main
-hrsh7th/nvim-cmp@main
+hrsh7th/cmp-buffer
+hrsh7th/cmp-calc
+hrsh7th/cmp-cmdline
+hrsh7th/cmp-emoji
+hrsh7th/cmp-nvim-lsp
+hrsh7th/cmp-nvim-lsp-document-symbol
+hrsh7th/cmp-nvim-lua
+hrsh7th/cmp-omni
+hrsh7th/cmp-path
+hrsh7th/cmp-vsnip
+hrsh7th/nvim-cmp
hrsh7th/nvim-compe
hrsh7th/vim-vsnip
hrsh7th/vim-vsnip-integ
@@ -270,12 +270,12 @@ ivanov/vim-ipython
jackguo380/vim-lsp-cxx-highlight
jacoborus/tender.vim
jakwings/vim-pony
-jamessan/vim-gnupg@main
+jamessan/vim-gnupg
jaredgorski/SpaceCamp
jasonccox/vim-wayland-clipboard
jaxbot/semantic-highlight.vim
JazzCore/ctrlp-cmatcher
-jbyuki/venn.nvim@main
+jbyuki/venn.nvim
jc-doyle/cmp-pandoc-references
jceb/vim-hier
jceb/vim-orgmode
@@ -284,7 +284,7 @@ jeetsukumaran/vim-indentwise
jeffkreeftmeijer/neovim-sensible
jeffkreeftmeijer/vim-numbertoggle
jelera/vim-javascript-syntax
-jgdavey/tslime.vim@main
+jgdavey/tslime.vim
jhradilek/vim-docbk
jhradilek/vim-snippets as vim-docbk-snippets
jiangmiao/auto-pairs
@@ -296,22 +296,22 @@ jnurmine/zenburn
jonbri/vim-colorstepper
jonsmithers/vim-html-template-literals
joonty/vim-xdebug
-joosepalviste/nvim-ts-context-commentstring@main
+joosepalviste/nvim-ts-context-commentstring
jordwalke/vim-reasonml
josa42/coc-lua
josa42/vim-lightline-coc
-jose-elias-alvarez/minsnip.nvim@main
-jose-elias-alvarez/null-ls.nvim@main
-jose-elias-alvarez/nvim-lsp-ts-utils@main
-joshdick/onedark.vim@main
-jpalardy/vim-slime@main
+jose-elias-alvarez/minsnip.nvim
+jose-elias-alvarez/null-ls.nvim
+jose-elias-alvarez/nvim-lsp-ts-utils
+joshdick/onedark.vim
+jpalardy/vim-slime
jparise/vim-graphql
jparise/vim-phabricator
jreybert/vimagit
jsfaint/gen_tags.vim
JuliaEditorSupport/deoplete-julia
JuliaEditorSupport/julia-vim
-Julian/lean.nvim@main
+Julian/lean.nvim
Julian/vim-textobj-variable-segment
juliosueiras/vim-terraform-completion
junegunn/fzf.vim
@@ -347,16 +347,16 @@ karb94/neoscroll.nvim
kassio/neoterm
kbenzie/vim-spirv
kchmck/vim-coffee-script
-kdheepak/cmp-latex-symbols@main
+kdheepak/cmp-latex-symbols
kdheepak/lazygit.nvim
-kdheepak/tabline.nvim@main
+kdheepak/tabline.nvim
KeitaNakamura/neodark.vim
keith/investigate.vim
keith/rspec.vim
keith/swift.vim
-kevinhwang91/nvim-bqf@main
-kevinhwang91/nvim-hlslens@main
-kevinhwang91/rnvimr@main
+kevinhwang91/nvim-bqf
+kevinhwang91/nvim-hlslens
+kevinhwang91/rnvimr
kien/rainbow_parentheses.vim
knubie/vim-kitty-navigator
konfekt/fastfold
@@ -388,8 +388,8 @@ leanprover/lean.vim
ledger/vim-ledger
lepture/vim-jinja
lervag/vimtex
-lewis6991/gitsigns.nvim@main
-lf-lang/lingua-franca.vim@main
+lewis6991/gitsigns.nvim
+lf-lang/lingua-franca.vim
lfe-support/vim-lfe
lfilho/cosco.vim
lifepillar/vim-gruvbox8
@@ -456,7 +456,7 @@ megaannum/forms
megaannum/self
mengelbrecht/lightline-bufferline
metakirby5/codi.vim
-metalelf0/jellybeans-nvim@main
+metalelf0/jellybeans-nvim
mfukar/robotframework-vim
mfussenegger/nvim-dap
mfussenegger/nvim-jdtls
@@ -475,7 +475,7 @@ michaeljsmith/vim-indent-object
mileszs/ack.vim
milkypostman/vim-togglelist
mindriot101/vim-yapf
-mk12/vim-lean@main
+mk12/vim-lean
mkasa/lushtags
mlr-msft/vim-loves-dafny
moll/vim-bbye
@@ -485,7 +485,7 @@ motus/pig.vim
mpickering/hlint-refactor-vim
ms-jpq/chadtree@chad
mtikekar/vim-bsv
-MunifTanjim/nui.nvim@main
+MunifTanjim/nui.nvim
mzlogin/vim-markdown-toc
mzlogin/vim-smali
nacro90/numb.nvim
@@ -493,7 +493,7 @@ nanotech/jellybeans.vim
natebosch/vim-lsc
nathanaelkane/vim-indent-guides
nathangrigg/vim-beancount
-nathanmsmith/nvim-ale-diagnostic@main
+nathanmsmith/nvim-ale-diagnostic
navicore/vissort.vim
nbouscal/vim-stylish-haskell
ncm2/float-preview.nvim
@@ -548,32 +548,33 @@ nvim-lua/lsp_extensions.nvim
nvim-lua/plenary.nvim
nvim-lua/popup.nvim
nvim-lualine/lualine.nvim
-nvim-neorg/neorg@main
+nvim-neorg/neorg
nvim-orgmode/orgmode
+nvim-pack/nvim-spectre
nvim-telescope/telescope-cheat.nvim
nvim-telescope/telescope-dap.nvim
nvim-telescope/telescope-frecency.nvim
-nvim-telescope/telescope-fzf-native.nvim@main
+nvim-telescope/telescope-fzf-native.nvim
nvim-telescope/telescope-fzf-writer.nvim
nvim-telescope/telescope-fzy-native.nvim
nvim-telescope/telescope-project.nvim
nvim-telescope/telescope-symbols.nvim
-nvim-telescope/telescope-z.nvim@main
+nvim-telescope/telescope-z.nvim
nvim-telescope/telescope.nvim
nvim-treesitter/completion-treesitter
+nvim-treesitter/nvim-treesitter
nvim-treesitter/nvim-treesitter-refactor
nvim-treesitter/nvim-treesitter-textobjects
-nvim-treesitter/nvim-treesitter
nvim-treesitter/playground
oberblastmeister/neuron.nvim
oberblastmeister/termwrapper.nvim
ocaml/vim-ocaml
octol/vim-cpp-enhanced-highlight
-ojroques/nvim-bufdel@main
-ojroques/vim-oscyank@main
+ojroques/nvim-bufdel
+ojroques/vim-oscyank
Olical/aniseed
Olical/conjure
-olimorris/onedarkpro.nvim@main
+olimorris/onedarkpro.nvim
onsails/diaglist.nvim
onsails/lspkind-nvim
OrangeT/vim-csharp
@@ -597,7 +598,7 @@ petRUShka/vim-opencl
phaazon/hop.nvim
phanviet/vim-monokai-pro
plasticboy/vim-markdown
-Pocco81/TrueZen.nvim@main
+Pocco81/TrueZen.nvim
ponko2/deoplete-fish
posva/vim-vue
powerman/vim-plugin-AnsiEsc
@@ -622,8 +623,8 @@ qpkorr/vim-bufkill
Quramy/tsuquyomi
racer-rust/vim-racer
radenling/vim-dispatch-neovim
-rafamadriz/friendly-snippets@main
-rafamadriz/neon@main
+rafamadriz/friendly-snippets
+rafamadriz/neon
rafaqz/ranger.vim
rafi/awesome-vim-colorschemes
raghur/fruzzy
@@ -648,10 +649,10 @@ rhysd/vim-grammarous
rhysd/vim-operator-surround
RishabhRD/nvim-lsputils
RishabhRD/popfix
-rktjmp/fwatch.nvim@main
-rktjmp/lush.nvim@main
-rmagatti/auto-session@main
-rmagatti/goto-preview@main
+rktjmp/fwatch.nvim
+rktjmp/lush.nvim
+rmagatti/auto-session
+rmagatti/goto-preview
RobertAudi/securemodelines
rodjek/vim-puppet
romainl/vim-cool
@@ -676,7 +677,7 @@ rust-lang/rust.vim
ryanoasis/vim-devicons
ryvnf/readline.vim
saadparwaiz1/cmp_luasnip
-saecki/crates.nvim@main
+saecki/crates.nvim
sainnhe/edge
sainnhe/gruvbox-material
sainnhe/sonokai
@@ -684,7 +685,7 @@ sakhnik/nvim-gdb
saltstack/salt-vim
samoshkin/vim-mergetool
sbdchd/neoformat
-scalameta/nvim-metals@main
+scalameta/nvim-metals
sdiehl/vim-ormolu
sebastianmarkow/deoplete-rust
SevereOverfl0w/deoplete-github
@@ -718,7 +719,7 @@ SidOfc/mkdx
simnalamburt/vim-mundo
simrat39/rust-tools.nvim
simrat39/symbols-outline.nvim
-sindrets/diffview.nvim@main
+sindrets/diffview.nvim
SirVer/ultisnips
sjl/gundo.vim
sjl/splice.vim
@@ -755,7 +756,7 @@ ternjs/tern_for_vim
terryma/vim-expand-region
terryma/vim-multiple-cursors
tex/vimpreviewpandoc
-Th3Whit3Wolf/one-nvim@main
+Th3Whit3Wolf/one-nvim
theHamsta/nvim-dap-virtual-text
ThePrimeagen/git-worktree.nvim
ThePrimeagen/harpoon
@@ -779,7 +780,7 @@ tmhedberg/SimpylFold
tmsvg/pear-tree
tmux-plugins/vim-tmux
tmux-plugins/vim-tmux-focus-events
-tom-anders/telescope-vim-bookmarks.nvim@main
+tom-anders/telescope-vim-bookmarks.nvim
tomasiser/vim-code-dark
tomasr/molokai
tomlion/vim-solidity
@@ -822,11 +823,11 @@ tpope/vim-tbone
tpope/vim-unimpaired
tpope/vim-vinegar
travitch/hasksyn
-tremor-rs/tremor-vim@main
+tremor-rs/tremor-vim
triglav/vim-visual-increment
troydm/zoomwintab.vim
turbio/bracey.vim
-tversteeg/registers.nvim@main
+tversteeg/registers.nvim
tweekmonster/wstrip.vim
twerth/ir_black
twinside/vim-haskellconceal
@@ -834,8 +835,8 @@ Twinside/vim-hoogle
tyru/caw.vim
tyru/open-browser-github.vim
tyru/open-browser.vim
-tzachar/cmp-tabnine@main
-tzachar/compe-tabnine@main
+tzachar/cmp-tabnine
+tzachar/compe-tabnine
uarun/vim-protobuf
udalov/kotlin-vim
ujihisa/neco-look
@@ -905,7 +906,7 @@ w0ng/vim-hybrid
wakatime/vim-wakatime
wannesm/wmgraphviz.vim
wbthomason/packer.nvim
-weilbith/nvim-code-action-menu@main
+weilbith/nvim-code-action-menu
wellle/targets.vim
wellle/tmux-complete.vim
wfxr/minimap.vim
@@ -915,7 +916,6 @@ wincent/command-t
wincent/ferret
wincent/terminus
windwp/nvim-autopairs
-windwp/nvim-spectre
winston0410/cmd-parser.nvim
winston0410/range-highlight.nvim
wlangstroth/vim-racket
@@ -926,8 +926,8 @@ xolox/vim-misc
xuhdev/vim-latex-live-preview
Xuyuanp/nerdtree-git-plugin
Xuyuanp/scrollbar.nvim
-yamatsum/nvim-cursorline@main
-yamatsum/nvim-nonicons@main
+yamatsum/nvim-cursorline
+yamatsum/nvim-nonicons
ycm-core/YouCompleteMe
Yggdroot/hiPairs
Yggdroot/indentLine
diff --git a/pkgs/misc/vscode-extensions/rust-analyzer/default.nix b/pkgs/misc/vscode-extensions/rust-analyzer/default.nix
index 82491389791e..668d87767803 100644
--- a/pkgs/misc/vscode-extensions/rust-analyzer/default.nix
+++ b/pkgs/misc/vscode-extensions/rust-analyzer/default.nix
@@ -6,6 +6,8 @@
, nodePackages
, moreutils
, esbuild
+, pkg-config
+, libsecret
, setDefaultServerPath ? true
}:
@@ -22,7 +24,11 @@ let
releaseTag = rust-analyzer.version;
- nativeBuildInputs = [ jq moreutils esbuild ];
+ nativeBuildInputs = [
+ jq moreutils esbuild
+ # Required by `keytar`, which is a dependency of `vsce`.
+ pkg-config libsecret
+ ];
# Follows https://github.com/rust-analyzer/rust-analyzer/blob/41949748a6123fd6061eb984a47f4fe780525e63/xtask/src/dist.rs#L39-L65
postInstall = ''
@@ -34,7 +40,9 @@ let
' package.json | sponge package.json
mkdir -p $vsix
- npx vsce package -o $vsix/${pname}.zip
+ # vsce ask for continue due to missing LICENSE.md
+ # Should be removed after https://github.com/rust-analyzer/rust-analyzer/commit/acd5c1f19bf7246107aaae7b6fe3f676a516c6d2
+ echo y | npx vsce package -o $vsix/${pname}.zip
'';
};
diff --git a/pkgs/os-specific/linux/ddcci/default.nix b/pkgs/os-specific/linux/ddcci/default.nix
index 086373f1ab5a..fe16d283ffc8 100644
--- a/pkgs/os-specific/linux/ddcci/default.nix
+++ b/pkgs/os-specific/linux/ddcci/default.nix
@@ -1,18 +1,15 @@
-{ lib, stdenv, fetchpatch, fetchFromGitLab, kernel }:
+{ lib, stdenv, fetchFromGitLab, kernel }:
stdenv.mkDerivation rec {
pname = "ddcci-driver";
- # XXX: We apply a patch for the upcoming version to the source of version 0.4.1
- # XXX: When 0.4.2 is actually released, don't forget to remove this comment,
- # XXX: fix the rev in fetchFromGitLab, and remove the patch.
version = "0.4.2";
name = "${pname}-${kernel.version}-${version}";
src = fetchFromGitLab {
owner = "${pname}-linux";
repo = "${pname}-linux";
- rev = "v0.4.1";
- sha256 = "1qhsm0ccwfmwn0r6sbc6ms4lf4a3iqfcgqmbs6afr6hhxkqll3fg";
+ rev = "v${version}";
+ sha256 = "sSmL8PqxqHHQiume62si/Kc9El58/b4wkB93iG0dnNM=";
};
hardeningDisable = [ "pic" ];
@@ -28,13 +25,6 @@ stdenv.mkDerivation rec {
--replace depmod \#
'';
- patches = [
- (fetchpatch {
- url = "https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux/-/commit/bf9d79852cbd0aa5c2e288ce51b8280f74a1f5d2.patch";
- sha256 = "sha256-ShqVzkoRnlX4Y5ARY11YVYatFI1K7bAtLulP3/8/nwg=";
- })
- ];
-
makeFlags = kernel.makeFlags ++ [
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
"KVER=${kernel.modDirVersion}"
diff --git a/pkgs/os-specific/linux/dpdk/default.nix b/pkgs/os-specific/linux/dpdk/default.nix
index ca8905e62402..7592be483f53 100644
--- a/pkgs/os-specific/linux/dpdk/default.nix
+++ b/pkgs/os-specific/linux/dpdk/default.nix
@@ -2,21 +2,21 @@
, kernel
, fetchurl
, pkg-config, meson, ninja
-, libbsd, numactl, libbpf, zlib, libelf, jansson, openssl, libpcap
+, libbsd, numactl, libbpf, zlib, libelf, jansson, openssl, libpcap, rdma-core
, doxygen, python3
, withExamples ? []
, shared ? false }:
let
mod = kernel != null;
- dpdkVersion = "21.05";
+ dpdkVersion = "21.11";
in stdenv.mkDerivation rec {
pname = "dpdk";
version = "${dpdkVersion}" + lib.optionalString mod "-${kernel.version}";
src = fetchurl {
url = "https://fast.dpdk.org/rel/dpdk-${dpdkVersion}.tar.xz";
- sha256 = "sha256-HhJJm0xfzbV8g+X+GE6mvs3ffPCSiTwsXvLvsO7BLws=";
+ sha256 = "sha256-Mkbj7WjuKzaaXYviwGzxCKZp4Vf01Bxby7sha/Wr06E=";
};
nativeBuildInputs = [
@@ -39,6 +39,12 @@ in stdenv.mkDerivation rec {
zlib
] ++ lib.optionals mod kernel.moduleBuildDependencies;
+ # Propagated to support current DPDK users in nixpkgs which statically link
+ # with the framework (e.g. odp-dpdk).
+ propagatedBuildInputs = [
+ rdma-core
+ ];
+
postPatch = ''
patchShebangs config/arm buildtools
'';
@@ -52,6 +58,7 @@ in stdenv.mkDerivation rec {
++ lib.optional (mod && kernel.kernelOlder "5.11") "-Ddisable_drivers=kni"
++ lib.optional (!shared) "-Ddefault_library=static"
++ lib.optional stdenv.isx86_64 "-Dmachine=nehalem"
+ ++ lib.optional stdenv.isAarch64 "-Dmachine=generic"
++ lib.optional mod "-Dkernel_dir=${placeholder "kmod"}/lib/modules/${kernel.modDirVersion}"
++ lib.optional (withExamples != []) "-Dexamples=${builtins.concatStringsSep "," withExamples}";
@@ -67,7 +74,11 @@ in stdenv.mkDerivation rec {
rm -f $kmod/lib/modules/${kernel.modDirVersion}/build
'';
- postInstall = lib.optionalString (withExamples != []) ''
+ postInstall = ''
+ # Remove Sphinx cache files. Not only are they not useful, but they also
+ # contain store paths causing spurious dependencies.
+ rm -rf $out/share/doc/dpdk/html/.doctrees
+ '' + lib.optionalString (withExamples != []) ''
find examples -type f -executable -exec install {} $out/bin \;
'';
diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json
index a02d34f2e24f..faeff2148e18 100644
--- a/pkgs/os-specific/linux/kernel/hardened/patches.json
+++ b/pkgs/os-specific/linux/kernel/hardened/patches.json
@@ -2,51 +2,51 @@
"4.14": {
"patch": {
"extra": "-hardened1",
- "name": "linux-hardened-4.14.256-hardened1.patch",
- "sha256": "0dxp40jq9xwrc8v81yyiy6vachqdwlviws152yzinh0k3j4s1c3g",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.256-hardened1/linux-hardened-4.14.256-hardened1.patch"
+ "name": "linux-hardened-4.14.257-hardened1.patch",
+ "sha256": "1jqd7drkjpfs9ajkvz0m0l6p0hp74ffchffcrkivqqc99cgzi666",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.257-hardened1/linux-hardened-4.14.257-hardened1.patch"
},
- "sha256": "180s2zmkfxk7af9nnkmfi2cs56af6vwyd21hjcfdxiygjm7j114p",
- "version": "4.14.256"
+ "sha256": "0jnw02jphvm9zcviwwymxyhq8kd0bk0v1827ninnv6bdy3140izv",
+ "version": "4.14.257"
},
"4.19": {
"patch": {
"extra": "-hardened1",
- "name": "linux-hardened-4.19.219-hardened1.patch",
- "sha256": "0447km2z1ww6yzixln1a3b7ymrj3ymxag7ny1d60d0d5064id6vj",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.219-hardened1/linux-hardened-4.19.219-hardened1.patch"
+ "name": "linux-hardened-4.19.220-hardened1.patch",
+ "sha256": "0i2vcwcan23h6vq9xy2fpi95saw6cgk2l2sfmy7xspkff1avhnns",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.220-hardened1/linux-hardened-4.19.220-hardened1.patch"
},
- "sha256": "1nq9228zm24d8azvv6d6r5iw8lfkb7z5lblyhk137mydzdqwsklg",
- "version": "4.19.219"
+ "sha256": "0q5hrh6q2f2r97nff136db7367p3hn0la2gl7q4knms3g8fis1jq",
+ "version": "4.19.220"
},
"5.10": {
"patch": {
"extra": "-hardened1",
- "name": "linux-hardened-5.10.83-hardened1.patch",
- "sha256": "1ipx6ad7n2lzlrr02fk2qif5ac2mqpis0qghvms95dd3lpi4lj5r",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.83-hardened1/linux-hardened-5.10.83-hardened1.patch"
+ "name": "linux-hardened-5.10.84-hardened1.patch",
+ "sha256": "1hl213iwf3gv81w68win2z4zwbkq6vxpg3dwy9h8md3kdm9pnhzr",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.84-hardened1/linux-hardened-5.10.84-hardened1.patch"
},
- "sha256": "0w4vq8wby3m9f5ryssh6z948m6zj1bjz9x432805dnrxyd1rl9gg",
- "version": "5.10.83"
+ "sha256": "0g935v0khv0i2qlrwr656hxl28m6zlbclc9rv15nq46xf8fjg5kf",
+ "version": "5.10.84"
},
"5.15": {
"patch": {
"extra": "-hardened1",
- "name": "linux-hardened-5.15.6-hardened1.patch",
- "sha256": "1ndj0dsxpailr12pp5kg8qqsvrmcdkhzlnxarl1jsp6c70g051r1",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.6-hardened1/linux-hardened-5.15.6-hardened1.patch"
+ "name": "linux-hardened-5.15.7-hardened1.patch",
+ "sha256": "0s3lh59lgl5ki5wvpigiv0n3psa9k0aq058aiyxykaw36qdwahy6",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.7-hardened1/linux-hardened-5.15.7-hardened1.patch"
},
- "sha256": "1w0plw9rzk2c0g8yxzwj7c6wkq538sy56mx1skmf58wrl83bmsdk",
- "version": "5.15.6"
+ "sha256": "1caxpqmik6gkhk3437pcgfq6vvlbs962hylgbh64iizd76l5142x",
+ "version": "5.15.7"
},
"5.4": {
"patch": {
"extra": "-hardened1",
- "name": "linux-hardened-5.4.163-hardened1.patch",
- "sha256": "1yybid435c466grsfx53iax5x0b1ycz7a02ymx9r85gixp6qd3bp",
- "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.163-hardened1/linux-hardened-5.4.163-hardened1.patch"
+ "name": "linux-hardened-5.4.164-hardened1.patch",
+ "sha256": "1kynk3979jx7b03gkan7b92vf3719wvkdzn5dmdrliy1g5pzx87k",
+ "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.164-hardened1/linux-hardened-5.4.164-hardened1.patch"
},
- "sha256": "1glh0azkrqdwydvbz9rp3czc5ppb72gq7svl3zbkjc6qfqbzwik2",
- "version": "5.4.163"
+ "sha256": "0142nic300xjdz9s6w1cp6cyhk2c2wpks9wxzqca6jz4da7k0l9r",
+ "version": "5.4.164"
}
}
diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix
index 7fbd38d43602..1fd9c6f6bbb7 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.14.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "4.14.256";
+ version = "4.14.257";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "180s2zmkfxk7af9nnkmfi2cs56af6vwyd21hjcfdxiygjm7j114p";
+ sha256 = "0jnw02jphvm9zcviwwymxyhq8kd0bk0v1827ninnv6bdy3140izv";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix
index 6f6cb7527f34..1b649138911b 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "4.19.219";
+ version = "4.19.220";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1nq9228zm24d8azvv6d6r5iw8lfkb7z5lblyhk137mydzdqwsklg";
+ sha256 = "0q5hrh6q2f2r97nff136db7367p3hn0la2gl7q4knms3g8fis1jq";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix
index a9470ecb625f..ef4448021a28 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.4.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.4.nix
@@ -1,12 +1,12 @@
{ buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args:
buildLinux (args // rec {
- version = "4.4.293";
+ version = "4.4.294";
extraMeta.branch = "4.4";
extraMeta.broken = stdenv.isAarch64;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1z9hc68v8fvph29l2w3md4734hhgp36sy8mzdlkmdrlkjihq6bvd";
+ sha256 = "0k0h5m1ng2049d5ggrq4q81vgsfmdpkqla73vg2a3bf2v6ycjmc7";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-4.9.nix b/pkgs/os-specific/linux/kernel/linux-4.9.nix
index 50feb2c821ca..2b1b53adb01b 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.9.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.9.nix
@@ -1,12 +1,12 @@
{ buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args:
buildLinux (args // rec {
- version = "4.9.291";
+ version = "4.9.292";
extraMeta.branch = "4.9";
extraMeta.broken = stdenv.isAarch64;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "0lwb9mb4s6qnwklygvfsr5ap85k83w1apkbbfdzzacfn9rvpfpdm";
+ sha256 = "0y3b6qqv6vrh2p5wwv5bicvbqrvxf1y5xm4myy5pk6yp2igws3kd";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-5.10.nix b/pkgs/os-specific/linux/kernel/linux-5.10.nix
index c49d248a3662..43b0d7d1a323 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.10.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.10.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.10.83";
+ version = "5.10.84";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "0w4vq8wby3m9f5ryssh6z948m6zj1bjz9x432805dnrxyd1rl9gg";
+ sha256 = "0g935v0khv0i2qlrwr656hxl28m6zlbclc9rv15nq46xf8fjg5kf";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-5.15.nix b/pkgs/os-specific/linux/kernel/linux-5.15.nix
index 5a6d55b94b67..603182325bb9 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.15.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.15.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.15.6";
+ version = "5.15.7";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "1w0plw9rzk2c0g8yxzwj7c6wkq538sy56mx1skmf58wrl83bmsdk";
+ sha256 = "1caxpqmik6gkhk3437pcgfq6vvlbs962hylgbh64iizd76l5142x";
};
} // (args.argsOverride or { }))
diff --git a/pkgs/os-specific/linux/kernel/linux-5.4.nix b/pkgs/os-specific/linux/kernel/linux-5.4.nix
index d0ba457959dc..9587229daa60 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.4.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.4.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.4.163";
+ version = "5.4.164";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "1glh0azkrqdwydvbz9rp3czc5ppb72gq7svl3zbkjc6qfqbzwik2";
+ sha256 = "0142nic300xjdz9s6w1cp6cyhk2c2wpks9wxzqca6jz4da7k0l9r";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix b/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
index db5b6bb3b6bb..a4a1bf5be013 100644
--- a/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
+++ b/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
@@ -6,7 +6,7 @@
, ... } @ args:
let
- version = "5.10.78-rt56"; # updated by ./update-rt.sh
+ version = "5.10.83-rt58"; # updated by ./update-rt.sh
branch = lib.versions.majorMinor version;
kversion = builtins.elemAt (lib.splitString "-" version) 0;
in buildLinux (args // {
@@ -18,14 +18,14 @@ in buildLinux (args // {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
- sha256 = "03q5lrv8gr9hnm7984pxi9kwsvxrn21qwykj60amisi2wac6r05y";
+ sha256 = "0w4vq8wby3m9f5ryssh6z948m6zj1bjz9x432805dnrxyd1rl9gg";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
- sha256 = "0fg627hd0yq2cnbli2v795qfdwhgqqyzmxrq03vyqwg8471kdqzb";
+ sha256 = "1n1jj7zyhnk4d5imf5v0cblqxv7q0ybc3i17yd224qmkj3bmly9w";
};
}; in [ rt-patch ] ++ kernelPatches;
diff --git a/pkgs/os-specific/linux/kernel/linux-rt-5.4.nix b/pkgs/os-specific/linux/kernel/linux-rt-5.4.nix
index c80a6b3c3bcd..0d827ad653e4 100644
--- a/pkgs/os-specific/linux/kernel/linux-rt-5.4.nix
+++ b/pkgs/os-specific/linux/kernel/linux-rt-5.4.nix
@@ -6,7 +6,7 @@
, ... } @ args:
let
- version = "5.4.161-rt66"; # updated by ./update-rt.sh
+ version = "5.4.161-rt67"; # updated by ./update-rt.sh
branch = lib.versions.majorMinor version;
kversion = builtins.elemAt (lib.splitString "-" version) 0;
in buildLinux (args // {
@@ -21,7 +21,7 @@ in buildLinux (args // {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
- sha256 = "1prjfvymk4zp94vlgp3nqf1k184blx14kakpikbnk8nck5p9z02m";
+ sha256 = "1xn3i1m0n4zcsnw5k52iyrd994zxmrla4rkjmdr71ra7csbrvkbx";
};
}; in [ rt-patch ] ++ kernelPatches;
diff --git a/pkgs/os-specific/linux/kernel/linux-xanmod.nix b/pkgs/os-specific/linux/kernel/linux-xanmod.nix
index 772e90c3f914..6f1bfc55e7d5 100644
--- a/pkgs/os-specific/linux/kernel/linux-xanmod.nix
+++ b/pkgs/os-specific/linux/kernel/linux-xanmod.nix
@@ -1,8 +1,8 @@
{ lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args:
let
- version = "5.15.6";
- release = "2";
+ version = "5.15.7";
+ release = "1";
suffix = "xanmod${release}-tt";
in
buildLinux (args // rec {
@@ -13,7 +13,7 @@ buildLinux (args // rec {
owner = "xanmod";
repo = "linux";
rev = modDirVersion;
- sha256 = "sha256-7wK/KIITQT3qmn4WMZHR9wigYgiq88njGn/FLYwI1ls=";
+ sha256 = "sha256-SeqPnzT3SApFozgQsiGtS9uUqxk8aXcDp7adcERlL1A=";
};
structuredExtraConfig = with lib.kernel; {
diff --git a/pkgs/os-specific/linux/pktgen/default.nix b/pkgs/os-specific/linux/pktgen/default.nix
index 5a1a56ab6919..36dea8ed6e0e 100644
--- a/pkgs/os-specific/linux/pktgen/default.nix
+++ b/pkgs/os-specific/linux/pktgen/default.nix
@@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
pname = "pktgen";
- version = "21.05.0";
+ version = "21.11.0";
src = fetchFromGitHub {
owner = "pktgen";
repo = "Pktgen-DPDK";
rev = "pktgen-${version}";
- sha256 = "sha256-7lLDtbd14olEHO+1BuI6KTEUNRM/zAyRXau/OZbYbGA=";
+ sha256 = "sha256-3z5DSkggHTwjzsRzRG5zzZTcNsn/5YankJT8CKSN8b4=";
};
nativeBuildInputs = [ meson ninja pkg-config ];
@@ -25,7 +25,6 @@ stdenv.mkDerivation rec {
RTE_SDK = dpdk;
GUI = lib.optionalString withGtk "true";
- NIX_CFLAGS_COMPILE = "-msse3";
# requires symbols from this file
NIX_LDFLAGS = "-lrte_net_bond";
@@ -43,7 +42,7 @@ stdenv.mkDerivation rec {
description = "Traffic generator powered by DPDK";
homepage = "http://dpdk.org/";
license = licenses.bsdOriginal;
- platforms = [ "x86_64-linux" ];
+ platforms = platforms.linux;
maintainers = [ maintainers.abuibrahim ];
};
}
diff --git a/pkgs/os-specific/linux/zsa-udev-rules/default.nix b/pkgs/os-specific/linux/zsa-udev-rules/default.nix
index ac69dc13b474..3dfc2354fae3 100644
--- a/pkgs/os-specific/linux/zsa-udev-rules/default.nix
+++ b/pkgs/os-specific/linux/zsa-udev-rules/default.nix
@@ -1,18 +1,17 @@
{ lib, stdenv, fetchFromGitHub }:
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "zsa-udev-rules";
- version = "unstable-2020-12-16";
+ version = "2.1.3";
- # TODO: use version and source from nixpkgs/pkgs/development/tools/wally-cli/default.nix after next release
src = fetchFromGitHub {
owner = "zsa";
repo = "wally";
- rev = "e5dde3c700beab39fb941c6941e55535bf9b2af6";
- sha256 = "0pkybi32r1hrmpa1mc8qlzhv7xy5n5rr5ah25lbr0cipp1bda417";
+ rev = "${version}-linux";
+ sha256 = "mZzXKFKlO/jAitnqzfvmIHp46A+R3xt2gOhVC3qN6gM=";
};
- # it only installs files
+ # Only copies udevs rules
dontConfigure = true;
dontBuild = true;
dontFixup = true;
diff --git a/pkgs/servers/dns/knot-resolver/default.nix b/pkgs/servers/dns/knot-resolver/default.nix
index 26f35145b67c..94fa36c5b03d 100644
--- a/pkgs/servers/dns/knot-resolver/default.nix
+++ b/pkgs/servers/dns/knot-resolver/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl
+{ lib, stdenv, fetchurl, fetchpatch
# native deps.
, runCommand, pkg-config, meson, ninja, makeWrapper
# build+runtime deps.
@@ -26,6 +26,14 @@ unwrapped = stdenv.mkDerivation rec {
outputs = [ "out" "dev" ];
+ patches = [
+ (fetchpatch { # https://gitlab.nic.cz/knot/knot-resolver/-/merge_requests/1237
+ name = "console.aws.amazon.com-fix.patch";
+ url = "https://gitlab.nic.cz/knot/knot-resolver/-/commit/f4dabfbec9273703.diff";
+ sha256 = "3J+FDwNQ6CqIGo9pSzhrQZlHX99vXFDpPOBpwpCnOxs=";
+ })
+ ];
+
# Path fixups for the NixOS service.
postPatch = ''
patch meson.build < {
@@ -56,10 +56,10 @@ index 6e05e34..656eef3 100644
));
}
diff --git a/tools/yabridgectl/src/main.rs b/tools/yabridgectl/src/main.rs
-index ce701b8..b6b9633 100644
+index 8c273f92..432619ec 100644
--- a/tools/yabridgectl/src/main.rs
+++ b/tools/yabridgectl/src/main.rs
-@@ -150,7 +150,7 @@ fn main() -> Result<()> {
+@@ -148,7 +148,7 @@ fn main() -> Result<()> {
.about("Path to the directory containing 'libyabridge-{vst2,vst3}.so'")
.long_about(
"Path to the directory containing 'libyabridge-{vst2,vst3}.so'. If this \
diff --git a/pkgs/tools/cd-dvd/nrg2iso/default.nix b/pkgs/tools/cd-dvd/nrg2iso/default.nix
index e57948a80dd6..c0f74b8cddc7 100644
--- a/pkgs/tools/cd-dvd/nrg2iso/default.nix
+++ b/pkgs/tools/cd-dvd/nrg2iso/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "nrg2iso";
- version = "0.4";
+ version = "0.4.1";
src = fetchurl {
url = "http://gregory.kokanosky.free.fr/v4/linux/${pname}-${version}.tar.gz";
- sha256 = "18sam7yy50rbfhjixwd7wx7kmfn1x1y5j80vwfxi5v408s39s115";
+ sha256 = "sha256-O+NqQWdY/BkQRztJqNrfKiqj1R8ZdhlzNrwXS8HjBuU=";
};
installPhase = ''
diff --git a/pkgs/tools/filesystems/ceph/default.nix b/pkgs/tools/filesystems/ceph/default.nix
index 913367084ed2..5975b30ac143 100644
--- a/pkgs/tools/filesystems/ceph/default.nix
+++ b/pkgs/tools/filesystems/ceph/default.nix
@@ -104,21 +104,7 @@ let
meta = getMeta "Ceph common module for code shared by manager modules";
};
- python = python3.override {
- packageOverrides = self: super: {
- # scipy > 1.3 breaks diskprediction_local, leading to mgr hang on startup
- # Bump once these issues are resolved:
- # https://tracker.ceph.com/issues/42764 https://tracker.ceph.com/issues/45147
- scipy = super.scipy.overridePythonAttrs (oldAttrs: rec {
- version = "1.3.3";
- src = oldAttrs.src.override {
- inherit version;
- sha256 = "02iqb7ws7fw5fd1a83hx705pzrw1imj7z0bphjsl4bfvw254xgv4";
- };
- doCheck = false;
- });
- };
- };
+ python = python3;
ceph-python-env = python.withPackages (ps: [
ps.sphinx
@@ -146,10 +132,10 @@ let
]);
sitePackages = ceph-python-env.python.sitePackages;
- version = "16.2.6";
+ version = "16.2.7";
src = fetchurl {
url = "http://download.ceph.com/tarballs/ceph-${version}.tar.gz";
- sha256 = "sha256-TXGyZnyVTYAf7G7BcTv3dAfK/54JfOKObcyTRhCrnYA=";
+ sha256 = "0n7vpdcxji49bqaa5b7zxif1r80rrkbh0dfacbibvf20kzzbn2fz";
};
in rec {
ceph = stdenv.mkDerivation {
diff --git a/pkgs/tools/graphics/blockhash/default.nix b/pkgs/tools/graphics/blockhash/default.nix
index b3426722f79f..ed2c422e7525 100644
--- a/pkgs/tools/graphics/blockhash/default.nix
+++ b/pkgs/tools/graphics/blockhash/default.nix
@@ -1,17 +1,17 @@
-{ lib, stdenv, fetchFromGitHub, python2, pkg-config, imagemagick, wafHook }:
+{ lib, stdenv, fetchFromGitHub, python3, pkg-config, imagemagick, wafHook }:
stdenv.mkDerivation rec {
pname = "blockhash";
- version = "0.3.1";
+ version = "0.3.2";
src = fetchFromGitHub {
owner = "commonsmachinery";
repo = "blockhash";
rev = "v${version}";
- sha256 = "0m7ikppl42iicgmwsb7baajmag7v0p1ab06xckifvrr0zm21bq9p";
+ sha256 = "0x3lvhnkb4c3pyq6p81qnnqimz35wpippiac506dgjx3b1848v35";
};
- nativeBuildInputs = [ python2 pkg-config wafHook ];
+ nativeBuildInputs = [ python3 pkg-config wafHook ];
buildInputs = [ imagemagick ];
strictDeps = true;
diff --git a/pkgs/tools/misc/cloud-sql-proxy/default.nix b/pkgs/tools/misc/cloud-sql-proxy/default.nix
index 7228fb84cb72..5eff549a6517 100644
--- a/pkgs/tools/misc/cloud-sql-proxy/default.nix
+++ b/pkgs/tools/misc/cloud-sql-proxy/default.nix
@@ -2,21 +2,20 @@
buildGoModule rec {
pname = "cloud-sql-proxy";
- version = "1.27.0";
+ version = "1.27.1";
src = fetchFromGitHub {
owner = "GoogleCloudPlatform";
repo = "cloudsql-proxy";
rev = "v${version}";
- sha256 = "sha256-x44nG5M2ycBaf/Fbw5crmAV//yv/WtIYbTjJ7/6TnoI=";
+ sha256 = "sha256-xVPs7D639KY2ryDZpivineH4yZSNXi78FWk2SFKX1sk=";
};
subPackages = [ "cmd/cloud_sql_proxy" ];
- vendorSha256 = "sha256-Uw8YJ1qzLYlTkx6wR/FKeDRHGSwZm2za/c0f/OKHiE0=";
+ vendorSha256 = "sha256-913GJ/rPvDavQQMqDDTe4gBXziPPeQRPpUUG3DAz96g=";
- # Disables tests that require running fuse with a hardcoded path
- doCheck = false;
+ checkFlags = [ "-short" ];
meta = with lib; {
description = "An authenticating proxy for Second Generation Google Cloud SQL databases";
diff --git a/pkgs/tools/misc/moreutils/default.nix b/pkgs/tools/misc/moreutils/default.nix
index 5a1452007af2..2b2d6ca0a868 100644
--- a/pkgs/tools/misc/moreutils/default.nix
+++ b/pkgs/tools/misc/moreutils/default.nix
@@ -3,12 +3,12 @@
with lib;
stdenv.mkDerivation rec {
pname = "moreutils";
- version = "0.65";
+ version = "0.66";
src = fetchgit {
url = "git://git.joeyh.name/moreutils";
rev = "refs/tags/${version}";
- sha256 = "17r80xs756c5vv4ghh901c8abraqqfp7ncagv9ys4il3jngfqbrb";
+ sha256 = "sha256-y+imKvLbaegpI4GTVPuHFT43OGFGnzOnWP2J3LSX1BQ=";
};
preBuild = ''
diff --git a/pkgs/tools/misc/neo-cowsay/default.nix b/pkgs/tools/misc/neo-cowsay/default.nix
index e6e95968a09f..233ad9fcb66c 100644
--- a/pkgs/tools/misc/neo-cowsay/default.nix
+++ b/pkgs/tools/misc/neo-cowsay/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "neo-cowsay";
- version = "1.0.3";
+ version = "2.0.1";
src = fetchFromGitHub {
owner = "Code-Hex";
repo = "Neo-cowsay";
rev = "v${version}";
- sha256 = "sha256-n01C6Z9nV2DDbSqgbOIZTqZAWXo6h4/NJdyFiOCh79A=";
+ sha256 = "sha256-VswknPs/yCUOUsXoGlGNF22i7dK8FrYzWkUWlfIPrNo=";
};
- vendorSha256 = "sha256-4qMsyNFD2MclsseE+IAaNm5r0wHWdcwLLPsZ0JJ3qpw=";
+ vendorSha256 = "sha256-kJSKDqw2NpnPjotUM6Ck6sixCJt3nVOdx800/+JBiWM=";
doCheck = false;
diff --git a/pkgs/tools/misc/os-prober/default.nix b/pkgs/tools/misc/os-prober/default.nix
index bc5dbe4672e8..7fdbbc1fae65 100644
--- a/pkgs/tools/misc/os-prober/default.nix
+++ b/pkgs/tools/misc/os-prober/default.nix
@@ -11,14 +11,14 @@ lvm2 # lvs
}:
stdenv.mkDerivation rec {
- version = "1.78";
+ version = "1.79";
pname = "os-prober";
src = fetchFromGitLab {
domain = "salsa.debian.org";
owner = "installer-team";
repo = pname;
rev = version;
- sha256 = "sha256-mfv1b40n/opXdyj6IXWVf/32sWlS+/DbXIRwE1zX4KM=";
+ sha256 = "sha256-ntwH5TIA18IOgYPkHMLU0EVykkHs6Z0wseYEPsU0KvQ=";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/tools/networking/obfs4/default.nix b/pkgs/tools/networking/obfs4/default.nix
index 0a74deea17d5..31979d3aa979 100644
--- a/pkgs/tools/networking/obfs4/default.nix
+++ b/pkgs/tools/networking/obfs4/default.nix
@@ -2,15 +2,15 @@
buildGoModule rec {
pname = "obfs4";
- version = "0.0.10";
+ version = "0.0.11";
src = fetchgit {
url = meta.repositories.git;
rev = "refs/tags/${pname}proxy-${version}";
- sha256 = "05aqmw8x8s0yqyqmdj5zcsq06gsbcmrlcd52gaqm20m1pg9503ad";
+ sha256 = "sha256-VjJ/Pc1YjNB2iLnN/5CxuaxolcaR1IMWgoESMzOXU/g=";
};
- vendorSha256 = "0h3gjxv26pc6cysvy1hny2f4abw6i847dk8fx0m113ixx9qghk87";
+ vendorSha256 = "sha256-xGCK8biTYcrmKbsl6ZyCjpRrVP9x5xGrC3VcMsR7ETo=";
doCheck = false;
diff --git a/pkgs/tools/networking/ofono/default.nix b/pkgs/tools/networking/ofono/default.nix
index 647cfd4a44ff..de8b3d699603 100644
--- a/pkgs/tools/networking/ofono/default.nix
+++ b/pkgs/tools/networking/ofono/default.nix
@@ -12,14 +12,14 @@
stdenv.mkDerivation rec {
pname = "ofono";
- version = "1.32";
+ version = "1.33";
outputs = [ "out" "dev" ];
src = fetchgit {
url = "git://git.kernel.org/pub/scm/network/ofono/ofono.git";
rev = version;
- sha256 = "sha256-bJ7Qgau5soPiptrhcMZ8rWxfprRCTeR7OjQ5HZQ9hbc=";
+ sha256 = "sha256-UTFP69yv1epVrqBoRKCRcR2WiKBG01sLTzrsh/Nude4=";
};
patches = [
diff --git a/pkgs/tools/networking/openfortivpn/default.nix b/pkgs/tools/networking/openfortivpn/default.nix
index e02782cccbfd..30495b918462 100644
--- a/pkgs/tools/networking/openfortivpn/default.nix
+++ b/pkgs/tools/networking/openfortivpn/default.nix
@@ -8,13 +8,13 @@ let
in
stdenv.mkDerivation rec {
pname = "openfortivpn";
- version = "1.16.0";
+ version = "1.17.1";
src = fetchFromGitHub {
owner = "adrienverge";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-wijP9VGKXlxCAU3xN6+cv9+NGwBS55ql8WsZZ592b/k=";
+ sha256 = "sha256-wSbE3vq9/o1r80zRT1rO9zAG6ws1nG18ALXYd9BAbLA=";
};
# we cannot write the config file to /etc and as we don't need the file, so drop it
diff --git a/pkgs/tools/networking/privoxy/default.nix b/pkgs/tools/networking/privoxy/default.nix
index 9fc159d810c1..dd663df10ad1 100644
--- a/pkgs/tools/networking/privoxy/default.nix
+++ b/pkgs/tools/networking/privoxy/default.nix
@@ -8,11 +8,11 @@
stdenv.mkDerivation rec {
pname = "privoxy";
- version = "3.0.32";
+ version = "3.0.33";
src = fetchurl {
url = "mirror://sourceforge/ijbswa/Sources/${version}%20%28stable%29/${pname}-${version}-stable-src.tar.gz";
- sha256 = "sha256-xh3kAIxiRF7Bjx8nBAfL8jcuq6k76szcnjI4uy3v7tc=";
+ sha256 = "sha256-BLEE5w2sYVYbndEQaEslD6/IwT2+Q3pg+uGN3ZqIH64=";
};
hardeningEnable = [ "pie" ];
diff --git a/pkgs/tools/package-management/cargo-update/default.nix b/pkgs/tools/package-management/cargo-update/default.nix
index f49a74615d12..de37ffa215e8 100644
--- a/pkgs/tools/package-management/cargo-update/default.nix
+++ b/pkgs/tools/package-management/cargo-update/default.nix
@@ -15,14 +15,14 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-update";
- version = "7.0.1";
+ version = "8.0.0";
src = fetchCrate {
inherit pname version;
- sha256 = "sha256-qUrQWXiK4Gb79Wtcj9nM/FFT/C+b3vAgm9JohvIY2NU=";
+ sha256 = "sha256-S03Wl99T+dVgGb1TaFJBOZGaPAaqbPDC9+cqQHbYGqY=";
};
- cargoSha256 = "sha256-jCaP6e/z9/gjKJfBKIq+dq7pWs5tWyct+JCnUFVVHBY=";
+ cargoSha256 = "sha256-bBAepKOeRHFJbHSjoBj94b5vnQhX1J2uh8BZHkwWW7E=";
nativeBuildInputs = [ cmake installShellFiles pkg-config ronn ];
diff --git a/pkgs/tools/package-management/microdnf/default.nix b/pkgs/tools/package-management/microdnf/default.nix
index 498d6d21f39c..03324a447105 100644
--- a/pkgs/tools/package-management/microdnf/default.nix
+++ b/pkgs/tools/package-management/microdnf/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "microdnf";
- version = "3.7.1";
+ version = "3.8.0";
src = fetchFromGitHub {
owner = "rpm-software-management";
repo = pname;
rev = version;
- sha256 = "1is8hqckjdz1h9w44iq1ljyfs5b0qd2cyivl30ny4dv8m8zba4zv";
+ sha256 = "sha256-Ip1XcE8fPXhdgVaR4VPH+ElP6JbnK4JekZuWyT5ot/M=";
};
nativeBuildInputs = [ pkg-config cmake gettext help2man ];
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index a57079ca1a01..722ec3016792 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -466,6 +466,7 @@ mapAliases ({
libwnck3 = libwnck;
lilypond-unstable = lilypond; # added 2021-03-11
links = links2; # added 2016-01-31
+ linuxband = throw "linuxband has been removed from nixpkgs, as it's abandoned upstream."; # added 2021-12-09
linux_rpi0 = linuxKernel.kernels.linux_rpi1;
linuxPackages_rpi0 = linuxKernel.packages.linux_rpi1;
linuxPackages_rt_5_4 = linuxKernel.packages.linux_rt_5_4;
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index b91eac47b72a..337b830a3485 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -21048,7 +21048,7 @@ with pkgs;
# See https://github.com/NixOS/nixpkgs/pull/10474#discussion_r42369334
modules = [ nginxModules.rtmp nginxModules.dav nginxModules.moreheaders ];
# Use latest boringssl to allow http3 support
- openssl = boringssl;
+ openssl = quictls;
};
nginxStable = callPackage ../servers/http/nginx/stable.nix {
@@ -26597,8 +26597,6 @@ with pkgs;
lingot = callPackage ../applications/audio/lingot { };
- linuxband = callPackage ../applications/audio/linuxband { };
-
littlegptracker = callPackage ../applications/audio/littlegptracker {
inherit (darwin.apple_sdk.frameworks) Foundation;
};
@@ -29588,7 +29586,7 @@ with pkgs;
yoshimi = callPackage ../applications/audio/yoshimi { };
- your-editor = callPackage ../applications/editors/your-editor { };
+ your-editor = callPackage ../applications/editors/your-editor { stdenv = gccStdenv; };
youtube-dl = with python3Packages; toPythonApplication youtube-dl;
@@ -31646,6 +31644,7 @@ with pkgs;
coqPackages_8_12 coq_8_12
coqPackages_8_13 coq_8_13
coqPackages_8_14 coq_8_14
+ coqPackages_8_15 coq_8_15
coqPackages coq
;
diff --git a/pkgs/top-level/coq-packages.nix b/pkgs/top-level/coq-packages.nix
index 3d6f6df61148..7d5a0ace03bd 100644
--- a/pkgs/top-level/coq-packages.nix
+++ b/pkgs/top-level/coq-packages.nix
@@ -144,6 +144,7 @@ in rec {
coq_8_12 = mkCoq "8.12";
coq_8_13 = mkCoq "8.13";
coq_8_14 = mkCoq "8.14";
+ coq_8_15 = mkCoq "8.15";
coqPackages_8_5 = mkCoqPackages coq_8_5;
coqPackages_8_6 = mkCoqPackages coq_8_6;
@@ -155,6 +156,7 @@ in rec {
coqPackages_8_12 = mkCoqPackages coq_8_12;
coqPackages_8_13 = mkCoqPackages coq_8_13;
coqPackages_8_14 = mkCoqPackages coq_8_14;
+ coqPackages_8_15 = mkCoqPackages coq_8_15;
coqPackages = recurseIntoAttrs coqPackages_8_13;
coq = coqPackages.coq;
diff --git a/pkgs/top-level/gnuradio-packages.nix b/pkgs/top-level/gnuradio-packages.nix
index eaffce4c6e2c..d291c1e830cd 100644
--- a/pkgs/top-level/gnuradio-packages.nix
+++ b/pkgs/top-level/gnuradio-packages.nix
@@ -37,6 +37,8 @@ in {
ais = callPackage ../development/gnuradio-modules/ais/default.nix { };
+ grnet = callPackage ../development/gnuradio-modules/grnet/default.nix { };
+
gsm = callPackage ../development/gnuradio-modules/gsm/default.nix { };
nacl = callPackage ../development/gnuradio-modules/nacl/default.nix { };
diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix
index 4c14877d1558..f8c8306f8313 100644
--- a/pkgs/top-level/python-aliases.nix
+++ b/pkgs/top-level/python-aliases.nix
@@ -106,4 +106,5 @@ mapAliases ({
WazeRouteCalculator = wazeroutecalculator; # added 2021-09-29
websocket_client = websocket-client; # added 2021-06-15
zc-buildout221 = zc-buildout; # added 2021-07-21
+ zc_buildout_nix = throw "zc_buildout_nix was pinned to a version no longer compatible with other modules";
})
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 923021d96659..40e0c5b44ff8 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -5879,6 +5879,8 @@ in {
pyskyqhub = callPackage ../development/python-modules/pyskyqhub { };
+ pyskyqremote = callPackage ../development/python-modules/pyskyqremote { };
+
pysolcast = callPackage ../development/python-modules/pysolcast { };
pysyncthru = callPackage ../development/python-modules/pysyncthru { };
@@ -10357,8 +10359,6 @@ in {
zc-buildout = callPackage ../development/python-modules/buildout { };
- zc_buildout_nix = callPackage ../development/python-modules/buildout-nix { };
-
zc_lockfile = callPackage ../development/python-modules/zc_lockfile { };
zconfig = callPackage ../development/python-modules/zconfig { };
diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix
index 888401d16720..205558d666a1 100644
--- a/pkgs/top-level/release-cross.nix
+++ b/pkgs/top-level/release-cross.nix
@@ -134,8 +134,9 @@ in
/* Test some cross builds on 64 bit mingw-w64 */
crossMingwW64 = mapTestOnCross lib.systems.examples.mingwW64 windowsCommon;
- /* Linux on the fuloong */
+ /* Linux on mipsel */
fuloongminipc = mapTestOnCross lib.systems.examples.fuloongminipc linuxCommon;
+ ben-nanonote = mapTestOnCross lib.systems.examples.ben-nanonote linuxCommon;
/* Javacript */
ghcjs = mapTestOnCross lib.systems.examples.ghcjs {
@@ -146,9 +147,32 @@ in
rpi = mapTestOnCross lib.systems.examples.raspberryPi rpiCommon;
rpi-musl = mapTestOnCross lib.systems.examples.muslpi rpiCommon;
+ /* Linux on the Remarkable */
+ remarkable1 = mapTestOnCross lib.systems.examples.remarkable1 linuxCommon;
+ remarkable2 = mapTestOnCross lib.systems.examples.remarkable2 linuxCommon;
+
+ /* Linux on armv7l-hf */
+ armv7l-hf = mapTestOnCross lib.systems.examples.armv7l-hf-multiplatform linuxCommon;
+ scaleway-c1 = mapTestOnCross lib.systems.examples.scaleway-c1 linuxCommon;
+
+ pogoplug4 = mapTestOnCross lib.systems.examples.pogoplug4 linuxCommon;
+
+ /* Linux on aarch64 */
+ aarch64 = mapTestOnCross lib.systems.examples.aarch64-multiplatform linuxCommon;
aarch64-musl = mapTestOnCross lib.systems.examples.aarch64-multiplatform-musl linuxCommon;
+ /* Linux on RISCV */
+ riscv64 = mapTestOnCross lib.systems.examples.riscv64 linuxCommon;
+ riscv32 = mapTestOnCross lib.systems.examples.riscv32 linuxCommon;
+
+ m68k = mapTestOnCross lib.systems.examples.m68k linuxCommon;
+ s390x = mapTestOnCross lib.systems.examples.s390x linuxCommon;
+
+ /* (Cross-compiled) Linux on x86 */
x86_64-musl = mapTestOnCross lib.systems.examples.musl64 linuxCommon;
+ x86_64-gnu = mapTestOnCross lib.systems.examples.gnu64 linuxCommon;
+ i686-musl = mapTestOnCross lib.systems.examples.musl32 linuxCommon;
+ i686-gnu = mapTestOnCross lib.systems.examples.gnu32 linuxCommon;
ppc64le = mapTestOnCross lib.systems.examples.powernv linuxCommon;
ppc64le-musl = mapTestOnCross lib.systems.examples.musl-power linuxCommon;
@@ -159,12 +183,20 @@ in
wasi32 = mapTestOnCross lib.systems.examples.wasi32 wasiCommon;
msp430 = mapTestOnCross lib.systems.examples.msp430 embedded;
+ mmix = mapTestOnCross lib.systems.examples.mmix embedded;
+ vc4 = mapTestOnCross lib.systems.examples.vc4 embedded;
+ or1k = mapTestOnCross lib.systems.examples.or1k embedded;
avr = mapTestOnCross lib.systems.examples.avr embedded;
arm-embedded = mapTestOnCross lib.systems.examples.arm-embedded embedded;
- powerpc-embedded = mapTestOnCross lib.systems.examples.ppc-embedded embedded;
+ armhf-embedded = mapTestOnCross lib.systems.examples.armhf-embedded embedded;
aarch64-embedded = mapTestOnCross lib.systems.examples.aarch64-embedded embedded;
+ aarch64be-embedded = mapTestOnCross lib.systems.examples.aarch64be-embedded embedded;
+ powerpc-embedded = mapTestOnCross lib.systems.examples.ppc-embedded embedded;
+ powerpcle-embedded = mapTestOnCross lib.systems.examples.ppcle-embedded embedded;
i686-embedded = mapTestOnCross lib.systems.examples.i686-embedded embedded;
x86_64-embedded = mapTestOnCross lib.systems.examples.x86_64-embedded embedded;
+ riscv64-embedded = mapTestOnCross lib.systems.examples.riscv64 embedded;
+ riscv32-embedded = mapTestOnCross lib.systems.examples.riscv32 embedded;
x86_64-netbsd = mapTestOnCross lib.systems.examples.x86_64-netbsd common;